wit-2.31a/0000755000175000017500000000000012655737612012207 5ustar michaelmichaelwit-2.31a/gen-text-file.sh0000755000175000017500000000237712655737310015222 0ustar michaelmichael#!/usr/bin/env bash dir="$1" shift if [[ ! -d $dir ]] then echo "Directory not found: $dir" >&2 exit 1 fi function gen_text() { local varname="$1" local src="$2" printf "\nconst char %s[] =\n{\n" "$varname" if [[ $varname =~ _cr$ ]] then grep -v '^~' "$src" \ | sed 's/\\/\\\\/g; s/"/\\"/g; s/^/ "/; s/#FF#/#\\f/; s/$/\\r\\n"/' else grep -v '^~' "$src" \ | sed 's/\\/\\\\/g; s/"/\\"/g; s/^/ "/; s/#FF#/#\\f/; s/$/\\n"/' fi printf "};\n\n" } for src in "$@" do src="${src##*/}" name="${src%.*}" name="text_${name//[-.]/_}" cname="$( echo "SZS_${name}_INC" | awk '{print toupper($0)}' )" #echo "$name : $src -> $dest" { printf "\n#ifndef %s\n#define %s 1\n" "$cname" "$cname" if [[ -f "$dir/$src" ]] then gen_text "$name" "$dir/$src" echo "$src: $dir/$src" >"$src.d" elif [[ -d "$dir/$src" ]] then printf '%s:' "$src" >"$src.d" for inc in "$dir/$src"/*.inc do name="${inc##*/}" name="${name%.*}" name="text_${name//[-.]/_}" gen_text "$name" "$inc" printf ' \\\n\t%s' "$inc" >>"$src.d" done printf '\n' >>"$src.d" else printf '\n!! Text not found: %s\n' "$dir/$src" exit 1 fi printf "#endif // %s\n\n" "$cname" } >"$src" done wit-2.31a/Makefile0000644000175000017500000007021012655737310013642 0ustar michaelmichael ##################################################################### ## __ __ _ ___________ ## ## \ \ / /| |____ ____| ## ## \ \ / / | | | | ## ## \ \ /\ / / | | | | ## ## \ \/ \/ / | | | | ## ## \ /\ / | | | | ## ## \/ \/ |_| |_| ## ## ## ## Wiimms ISO Tools ## ## http://wit.wiimm.de/ ## ## ## ##################################################################### ## ## ## This file is part of the WIT project. ## ## Visit http://wit.wiimm.de/ for project details and sources. ## ## ## ## Copyright (c) 2009-2015 by Dirk Clemens ## ## ## ##################################################################### #---------------------------------------------------------------- # make manual: http://www.gnu.org/software/make/manual/make.html #---------------------------------------------------------------- #------------------------------------------------------------------------------- # global settings #SHELL = /bin/bash SHELL = /usr/bin/env bash AUTHOR = Dirk Clemens TOOLSET_SHORT = WIT TOOLSET_LONG = Wiimms ISO Tools WIT_SHORT = wit WIT_LONG = Wiimms ISO Tool WWT_SHORT = wwt WWT_LONG = Wiimms WBFS Tool WDF_SHORT = wdf WDF_LONG = Wiimms WDF Tool WFUSE_SHORT = wfuse WFUSE_LONG = Wiimms FUSE Tool VERSION_NUM = 2.31a BETA_VERSION = 0 # 0:off -1:"beta" >0:"beta#" URI_HOME = http://wit.wiimm.de/ URI_DOWNLOAD = http://wit.wiimm.de/download URI_FILE = http://wit.wiimm.de/file ifeq ($(BETA_VERSION),0) URI_REPOS = http://opensvn.wiimm.de/wii/trunk/wiimms-iso-tools/ URI_VIEWVC = http://wit.wiimm.de/r/viewvc else URI_REPOS = http://opensvn.wiimm.de/wii/branches/public/wiimms-iso-tools/ URI_VIEWVC = http://wit.wiimm.de/r/viewvc-beta endif URI_WDF = http://wit.wiimm.de/r/wdf URI_CISO = http://wit.wiimm.de/r/ciso URI_QTWITGUI = http://wit.wiimm.de/r/qtwitgui URI_WIIBAFU = http://wit.wiimm.de/r/wiibafu #URI_WCDWM = http://wit.wiimm.de/r/wcdwm #URI_WIIJMANAGER = http://wit.wiimm.de/r/wiijman URI_MACWITGUI = http://wit.wiimm.de/r/mac-witgui URI_GBATEMP = http://gbatemp.net/index.php?showtopic=182236\#entry2286365 URI_DOWNLOAD_I386 = $(URI_DOWNLOAD)/$(DISTRIB_I386) URI_DOWNLOAD_X86_64 = $(URI_DOWNLOAD)/$(DISTRIB_X86_64) URI_DOWNLOAD_MAC = $(URI_DOWNLOAD)/$(DISTRIB_MAC) URI_DOWNLOAD_CYGWIN = $(URI_DOWNLOAD)/$(DISTRIB_CYGWIN) URI_TITLES = http://gametdb.com/titles.txt DOWNLOAD_DIR = /cygdrive/n/www/wit.wiimm.de/download DUMMY := $(shell $(SHELL) ./setup.sh) include Makefile.setup # format for logging messages, $1=job, $2=object, $3=more info LOGFORMAT := *** %7s %-17s %s\n #------------------------------------------------------------------------------- # version+beta settings ifeq ($(BETA_VERSION),0) BETA_SUFFIX := else ifeq ($(BETA_VERSION),-1) BETA_SUFFIX := .beta else BETA_SUFFIX := .beta$(BETA_VERSION) endif VERSION := $(VERSION_NUM)$(BETA_SUFFIX) #------------------------------------------------------------------------------- # compiler settings PRE ?= CC = $(PRE)gcc CPP = $(PRE)g++ STRIP = $(PRE)strip #------------------------------------------------------------------------------- # files DIR_LIST = RM_FILES = *.{a,o,d,tmp,bak,exe} */*.{tmp,bak} */*/*.{tmp,bak} RM_FILES2 = *.{iso,ciso,wdf,wbfs} templates.sed MODE_FILE = ./_mode.flag MODE = $(shell test -s $(MODE_FILE) && cat $(MODE_FILE)) RM_FILES += $(MODE_FILE) # wbfs: files / size in GiB of WBFS partition / number of ISO files to copy WBFS_FILE ?= a.wbfs WBFS_FILES ?= $(WBFS_FILE) b.wbfs c.wbfs d.wbfs WBFS_SIZE ?= 20 WBFS_COUNT ?= 4 #------------------------------------------------------------------------------- # tools MAIN_TOOLS := wit wwt wdf TEST_TOOLS := wtest EXTRA_TOOLS := ifeq ($(HAVE_FUSE),1) MAIN_TOOLS += wfuse else EXTRA_TOOLS := wfuse endif ALL_TOOLS := $(sort $(MAIN_TOOLS) $(TEST_TOOLS)) ALL_TOOLS_X := $(sort $(MAIN_TOOLS) $(TEST_TOOLS) $(EXTRA_TOOLS)) HELPER_TOOLS := gen-ui WDF_TEST_LINKS := WdfCat UnWdf WdfCmp WdfDump Ciso CisoCat UnCiso Wbi WDF_LINKS := wdf-cat wdf-dump RM_FILES += $(ALL_TOOLS_X) $(HELPER_TOOLS) $(WDF_LINKS) $(WDF_TEST_LINKS) #------------------------------------------------------------------------------- # tool dependent options and objects ifeq ($(STATIC),1) OPT_STATIC := -static else OPT_STATIC := endif #--------------- TOPT_wit := $(OPT_STATIC) TOPT_wwt := $(OPT_STATIC) TOPT_wdf := $(OPT_STATIC) TOPT_wfuse := -lfuse -lpthread -ldl #TOPT_ALL := $(TOPT_wit) $(TOPT_wwt) $(TOPT_wdf) $(TOPT_wfuse) #--------------- TOBJ_wit := wit-mix.o TOBJ_wwt := TOBJ_wdf := TOBJ_wfuse := TOBJ_ALL := $(TOBJ_wit) $(TOBJ_wwt) $(TOBJ_wdf) $(TOBJ_wfuse) #------------------------------------------------------------------------------- # sub libs # libbz2 & lzma LIBBZ2_SRC = $(shell echo src/libbz2/*.c) LIBBZ2_OBJ = $(patsubst %.c,%.o,$(LIBBZ2_SRC)) LZMA_SRC = $(shell echo src/lzma/*.c) LZMA_OBJ = $(patsubst %.c,%.o,$(LZMA_SRC)) ifeq ($(SYSTEM),cygwin) LZMA_FLAGS = -Wno-unused-but-set-variable BZIP2_FLAGS = -Wno-maybe-uninitialized else LZMA_FLAGS = BZIP2_FLAGS = endif # lib summary LIB_LIST += libbz2 lzma LIB_OBJECTS += $(LIBBZ2_OBJ) $(LZMA_OBJ) RM_FILES += $(foreach l,$(LIB_LIST),src/$(l)/*.{d,o}) #------------------------------------------------------------------------------- # source files UI_FILES = ui.def UI_FILES += $(patsubst %,ui-%.c,$(MAIN_TOOLS) $(EXTRA_TOOLS)) UI_FILES += $(patsubst %,ui-%.h,$(MAIN_TOOLS) $(EXTRA_TOOLS)) UI_TABS = $(patsubst %,tab-%.inc,$(MAIN_TOOLS) $(EXTRA_TOOLS)) SETUP_DIR = ./setup SETUP_INFO = INSTALL.txt SETUP_FILES = version.h install.sh cygwin-copy.sh wit.def \ $(SETUP_INFO) $(CYGWIN_SCRIPTS) DIR_LIST += $(SETUP_DIR) RM_FILES2 += $(SETUP_FILES) TEXT_DIR = ./text-files TEXT_FILES = logo.inc ui-head.inc DIR_LIST += $(TEXT_DIR) RM_FILES2 += $(TEXT_FILES) #------------------------------------------------------------------------------- # object files # objects of tools MAIN_TOOLS_OBJ := $(patsubst %,%.o,$(MAIN_TOOLS) $(EXTRA_TOOLS)) OTHER_TOOLS_OBJ := $(patsubst %,%.o,$(TEST_TOOLS) $(HELPER_TOOLS)) # other objects WIT_O := debug.o lib-std.o lib-file.o lib-sf.o \ lib-bzip2.o lib-lzma.o \ lib-wdf.o lib-wia.o lib-ciso.o lib-gcz.o \ ui.o iso-interface.o wbfs-interface.o patch.o \ titles.o match-pattern.o dclib-utf8.o \ sha1dgst.o sha1_one.o LIBWBFS_O := tools.o file-formats.o libwbfs.o wiidisc.o cert.o rijndael.o ifeq ($(SYSTEM),cygwin) WIT_O += winapi.o endif # object groups UI_OBJECTS := $(sort $(MAIN_TOOLS_OBJ)) #C_OBJECTS := $(sort $(OTHER_TOOLS_OBJ) $(WIT_O) $(LIBWBFS_O) $(LZMA_O) $(TOBJ_ALL)) C_OBJECTS := $(sort $(OTHER_TOOLS_OBJ) $(WIT_O) $(LIBWBFS_O) $(TOBJ_ALL)) ASM_OBJECTS := ssl-asm.o # all objects + sources #ALL_OBJECTS = $(sort $(WIT_O) $(LIBWBFS_O) $(LZMA_O) $(ASM_OBJECTS) $(LIB_OBJECTS)) ALL_OBJECTS = $(sort $(WIT_O) $(LIBWBFS_O) $(ASM_OBJECTS) $(LIB_OBJECTS)) ALL_SOURCES = $(patsubst %.o,%.c,$(UI_OBJECTS) $(C_OBJECTS) $(ASM_OBJECTS)) #------------------------------------------------------------------------------- SHARE_PATH = $(INSTALL_PATH)/share/wit INSTALL_SCRIPTS = install.sh load-titles.sh RM_FILES += $(INSTALL_SCRIPTS) SCRIPTS = ./scripts TEMPLATES = ./templates MODULES = $(TEMPLATES)/module GEN_TEMPLATE = ./gen-template.sh GEN_TEXT_FILE = ./gen-text-file.sh UI = ./src/ui DIR_LIST += $(SCRIPTS) $(TEMPLATES) $(MODULES) #VPATH += src src/libwbfs src/lzma src/crypto $(UI) work #DIR_LIST += src src/libwbfs src/lzma src/crypto $(UI) work VPATH += src src/libwbfs src/crypto $(UI) work DIR_LIST += src src/libwbfs src/crypto $(UI) work DEFINES1 += -DLARGE_FILES -D_FILE_OFFSET_BITS=64 DEFINES1 += -DWIT # compile wit tools (for shared sources (e.g. libwbfs)) DEFINES1 += -DDEBUG_ASSERT # enable ASSERTions in release version too DEFINES1 += -DEXTENDED_ERRORS=1 # enable extended error messages (function,line,file) DEFINES1 += -D_7ZIP_ST=1 # disable 7zip multi threading DEFINES1 += -D_LZMA_PROB32=1 # LZMA option DEFINES = $(strip $(DEFINES1) $(MODE) $(XDEF)) CFLAGS += -fomit-frame-pointer -fno-strict-aliasing -funroll-loops CFLAGS += -Wall -Wno-parentheses -Wno-unused-function #CFLAGS += -O3 -Isrc/libwbfs -Isrc/lzma -Isrc -I$(UI) -I. -Iwork CFLAGS += -O3 -Isrc/libwbfs -Isrc -I$(UI) -I. -Iwork ifeq ($(SYSTEM),mac) CFLAGS += -I/usr/local/include endif CFLAGS += $(XFLAGS) CFLAGS := $(strip $(CFLAGS)) DEPFLAGS += -MMD LDFLAGS += -static-libgcc LDFLAGS := $(strip $(LDFLAGS)) ifeq ($(HAVE_ZLIB),1) LIBS += -lz endif LIBS += $(XLIBS) DISTRIB_RM = ./wit-v$(VERSION)-r DISTRIB_BASE = wit-v$(VERSION)-r$(REVISION_NEXT) DISTRIB_PATH = ./$(DISTRIB_BASE)-$(SYSTEM) DISTRIB_I386 = $(DISTRIB_BASE)-i386.tar.gz DISTRIB_X86_64 = $(DISTRIB_BASE)-x86_64.tar.gz DISTRIB_MAC = $(DISTRIB_BASE)-mac.tar.gz DISTRIB_CYGWIN = $(DISTRIB_BASE)-cygwin.zip DISTRIB_FILES = gpl-2.0.txt $(INSTALL_SCRIPTS) $(SETUP_INFO) DOC_FILES = doc/*.txt IGNORE_DOC_FILES= HISTORY-v*.txt TITLE_FILES = titles.txt $(patsubst %,titles-%.txt,$(LANGUAGES)) LANGUAGES = de es fr it ja ko nl pt ru zhcn zhtw BIN_FILES = $(MAIN_TOOLS) $(EXTRA_TOOLS) SHARE_FILES = $(TITLE_FILES) system-menu.txt magic.txt CYGWIN_DIR = /usr/bin CYGWIN_TOOLS = bash cp diff env grep mkdir mv realpath regtool rm stat tr wget CYGWIN_SCRIPTS = load-titles.sh load-titles.bat \ windows-install.sh windows-uninstall.sh CYGWIN_INSTALLER= $(SETUP_DIR)/windows-install.exe WIN_INSTALL_PATH= Wiimm/WIT DIR_LIST_BIN = $(SCRIPTS) bin DIR_LIST += $(DIR_LIST_BIN) DIR_LIST += share work pool makefiles-local edit-list #------------------------------------------------------------------------------- # sub projects SUB_PROJECTS += test-libwbfs RM_FILES += $(foreach p,$(SUB_PROJECTS),$(p)/*.{d,o} $(p)/$(p)) # ############################################################################### # default rule default_rule: all @echo "HINT: try 'make help'" # include this behind the default rule -include $(ALL_SOURCES:.c=.d) # ############################################################################### # general rules $(ALL_TOOLS_X): %: %.o $(ALL_OBJECTS) $(TOBJ_ALL) Makefile | $(HELPER_TOOLS) @printf "$(LOGFORMAT)" tool "$@" "$(MODE) $(TOPT_$@) $(TOBJ_$@)" @$(CC) $(CFLAGS) $(DEFINES) $(LDFLAGS) $@.o \ $(ALL_OBJECTS) $(TOBJ_$@) $(LIBS) $(TOPT_$@) -o $@ @if test -f $@.exe; then $(STRIP) $@.exe; else $(STRIP) $@; fi @mkdir -p bin/$(SYSTEM) bin/$(SYSTEM)/debug @if test -s $(MODE_FILE) && grep -Fq -e -DDEBUG $(MODE_FILE); \ then cp -p $@ bin/$(SYSTEM)/debug/; \ else cp -p $@ bin/; cp -p $@ bin/$(SYSTEM)/; fi #-------------------------- $(HELPER_TOOLS): %: %.o $(ALL_OBJECTS) $(UI_TABS) Makefile @printf "$(LOGFORMAT)" helper "$@ $(TOBJ_$@)" "$(MODE)" @$(CC) $(CFLAGS) $(DEFINES) $(LDFLAGS) $@.o \ $(ALL_OBJECTS) $(TOBJ_$@) $(LIBS) -o $@ #-------------------------- $(WDF_LINKS): wdf @printf "$(LOGFORMAT)" "link" "wdf -> $@" "" @ln -f wdf "$@" #-------------------------- $(UI_OBJECTS): %.o: %.c ui-%.c ui-%.h version.h Makefile @printf "$(LOGFORMAT)" +object "$@" "$(MODE)" @$(CC) $(CFLAGS) $(DEPFLAGS) $(DEFINES) -c $< -o $@ #-------------------------- $(C_OBJECTS): %.o: %.c version.h Makefile $(TEXT_FILES) @printf "$(LOGFORMAT)" object "$@" "$(MODE)" @$(CC) $(CFLAGS) $(DEPFLAGS) $(DEFINES) -c $< -o $@ #-------------------------- $(ASM_OBJECTS): %.o: %.S Makefile @printf "$(LOGFORMAT)" asm "$@" "$(MODE)" @$(CC) $(CFLAGS) $(DEPFLAGS) $(DEFINES) -c $< -o $@ #-------------------------- $(SETUP_FILES): templates.sed $(SETUP_DIR)/$@ @printf "$(LOGFORMAT)" create "$@" "" @chmod 775 $(GEN_TEMPLATE) @$(GEN_TEMPLATE) $@ #-------------------------- $(TEXT_FILES): $(GEN_TEXT_FILE) $(TEXT_DIR)/$@ @printf "$(LOGFORMAT)" text "$@" "" @chmod 775 $(GEN_TEXT_FILE) @$(GEN_TEXT_FILE) $(TEXT_DIR) $@ #-------------------------- $(UI_FILES): gen-ui.c tab-ui.c ui.h $(UI_TABS) | gen-ui @printf "$(LOGFORMAT)" run gen-ui "" @./gen-ui .PHONY : ui ui : gen-ui @printf "$(LOGFORMAT)" run gen-ui "" @./gen-ui # ############################################################################### # lib specific rules $(LIBBZ2_OBJ): %.o: %.c Makefile @printf "$(LOGFORMAT)" object "$(subst src/libbz2/,,$@)" "$(MODE) [libbz2]" @$(CC) $(CFLAGS) $(DEPFLAGS) $(BZIP2_FLAGS) $(DEFINES) -c $< -o $@ $(LZMA_OBJ): %.o: %.c Makefile @printf "$(LOGFORMAT)" object "$(subst src/lzma/,,$@)" "$(MODE) [lzma]" @$(CC) $(CFLAGS) $(DEPFLAGS) $(LZMA_FLAGS) $(DEFINES) -c $< -o $@ # ############################################################################### # specific rules in alphabetic order .PHONY : all all: $(HELPER_TOOLS) $(ALL_TOOLS) $(WDF_LINKS) $(INSTALL_SCRIPTS) $(SETUP_INFO) .PHONY : all+ all+: clean+ all distrib .PHONY : all++ all++: clean+ all titles distrib # #-------------------------- .PHONY : ch+ ch+: chmod chown chgrp # #-------------------------- .PHONY : chmod chmod: @printf "$(LOGFORMAT)" chmod 775/664 "" @for d in . $(DIR_LIST); do test -d "$$d" && chmod ug+rw "$$d"/*; done @for d in $(DIR_LIST); do test -d "$$d" && chmod 775 "$$d"; done @find . -name '*.sh' -exec chmod 775 {} + @for t in $(ALL_TOOLS_X); do test -f "$$t" && chmod 775 "$$t"; done || true # #-------------------------- .PHONY : chown chown: @printf "$(LOGFORMAT)" chown "-R $$( stat -c%u . 2>/dev/null || stat -f%u . ) ." "" @chown -R "$$( stat -c%u . 2>/dev/null || stat -f%u . )" . # #-------------------------- .PHONY : chgrp chgrp: @printf "$(LOGFORMAT)" chgrp "-R $$( stat -c%g . 2>/dev/null || stat -f%g . ) ." "" @chgrp -R "$$( stat -c%g . 2>/dev/null || stat -f%g . )" . # #-------------------------- .PHONY : clean clean: @printf "$(LOGFORMAT)" rm "output files + distrib" "" @rm -f $(RM_FILES) @rm -fr $(DISTRIB_RM)* .PHONY : clean+ clean+: clean @printf "$(LOGFORMAT)" rm "test files + template output" "" @rm -f $(RM_FILES2) -@rm -fr doc .PHONY : clean++ clean++: clean+ @test -d .svn && svn st | sort -k2 || true # #-------------------------- .PHONY : debug debug: @printf "$(LOGFORMAT)" enable debug "-> define -DDEBUG" @rm -f *.o $(ALL_TOOLS_X) @echo "-DDEBUG" >>$(MODE_FILE) @sort $(MODE_FILE) | uniq > $(MODE_FILE).tmp # 2 steps to bypass a cygwin mv failure @cp $(MODE_FILE).tmp $(MODE_FILE) @rm -f $(MODE_FILE).tmp # #-------------------------- .PHONY : distrib2 distrib2: ifeq ($(SYSTEM_LINUX),1) @printf "\n---------- BUILDING LINUX/I386 ----------\n\n" @for t in $(ALL_TOOLS_X); do rm -f bin/$$t; done @M32=1 $(MAKE) --no-print-directory clean+ distrib @mv "$(DISTRIB_I386)" "save-$(DISTRIB_I386)" @printf "\n---------- BUILDING LINUX/X86_64 ----------\n\n" @for t in $(ALL_TOOLS_X); do rm -f bin/$$t; done @$(MAKE) --no-print-directory clean+ distrib @mv "save-$(DISTRIB_I386)" "$(DISTRIB_I386)" else @$(MAKE) --no-print-directory clean+ distrib endif #----- .PHONY : distrib distrib: ifeq ($(SYSTEM),mac) @$(MAKE) --no-print-directory mac-distrib else ifeq ($(SYSTEM),cygwin) $(MAKE) --no-print-directory all doc cygwin-copy.sh \ $(CYGWIN_SCRIPTS) gen-distrib wit.def else @STATIC=1 $(MAKE) --no-print-directory all doc gen-distrib wit.def endif #----- .PHONY : gen-distrib gen-distrib: @printf "$(LOGFORMAT)" create "$(DISTRIB_PATH)" "" ifeq ($(SYSTEM),cygwin) @rm -rf $(DISTRIB_PATH)/* 2>/dev/null || true @rm -rf $(DISTRIB_PATH) 2>/dev/null || true @mkdir -p $(DISTRIB_PATH)/bin $(DISTRIB_PATH)/doc @./cygwin-copy.sh @printf '@cmd\r\n' >$(DISTRIB_PATH)/bin/wit-console.bat @cp -p gpl-2.0.txt $(SETUP_INFO) $(DISTRIB_PATH) @ln -f $(MAIN_TOOLS) $(WDF_LINKS) $(CYGWIN_SCRIPTS) $(DISTRIB_PATH)/bin @ln -f $(CYGWIN_INSTALLER) $(DISTRIB_PATH)/windows-install.exe @ln -f $(CYGWIN_INSTALLER) $(DISTRIB_PATH)/windows-uninstall.exe @ln -f $(CYGWIN_INSTALLER) $(DISTRIB_PATH)/bin/windows-install.exe @ln -f $(CYGWIN_INSTALLER) $(DISTRIB_PATH)/bin/windows-uninstall.exe @( cd share; cp $(SHARE_FILES) ../$(DISTRIB_PATH)/bin ) @cp -p $(DOC_FILES) $(DISTRIB_PATH)/doc @rm -f $(DISTRIB_PATH)/doc/$(IGNORE_DOC_FILES) @zip -roq $(DISTRIB_PATH).zip $(DISTRIB_PATH) @chmod 664 $(DISTRIB_PATH).zip else @rm -rf $(DISTRIB_PATH) @mkdir -p $(DISTRIB_PATH)/bin $(DISTRIB_PATH)/scripts @mkdir -p $(DISTRIB_PATH)/share $(DISTRIB_PATH)/doc @cp -p $(DISTRIB_FILES) $(DISTRIB_PATH) @ln -f $(MAIN_TOOLS) $(WDF_LINKS) $(DISTRIB_PATH)/bin @for t in $(EXTRA_TOOLS); do [[ -f bin/$(SYSTEM)/$$t ]] \ && ln -f bin/$(SYSTEM)/$$t $(DISTRIB_PATH)/bin; done || true @cp -p share/*.txt $(DISTRIB_PATH)/share @cp -p $(DOC_FILES) $(DISTRIB_PATH)/doc @rm -f $(DISTRIB_PATH)/doc/$(IGNORE_DOC_FILES) @cp -p $(SCRIPTS)/*.{sh,txt} $(DISTRIB_PATH)/scripts @chmod -R 664 $(DISTRIB_PATH) @chmod a+x $(DISTRIB_PATH)/*.sh $(DISTRIB_PATH)/scripts/*.sh $(DISTRIB_PATH)/bin*/* @chmod -R a+X $(DISTRIB_PATH) @tar -czf $(DISTRIB_PATH).tar.gz $(DISTRIB_PATH) @chmod 664 $(DISTRIB_PATH).tar.gz endif #----- .PHONY : copy-distrib copy-distrib: distrib2 @printf "$(LOGFORMAT)" copy "$(DISTRIB_BASE).*" "-> $(DOWNLOAD_DIR)" @[[ -s "$(DISTRIB_I386)" ]] \ && cp --preserve=time "$(DISTRIB_I386)" "$(DOWNLOAD_DIR)" \ || true @[[ -s "$(DISTRIB_X86_64)" ]] \ && cp --preserve=time "$(DISTRIB_X86_64)" "$(DOWNLOAD_DIR)" \ || true @[[ -s "$(DISTRIB_CYGWIN)" ]] \ && cp --preserve=time "$(DISTRIB_CYGWIN)" "$(DOWNLOAD_DIR)" \ || true # #-------------------------- .PHONY : doc doc: $(MAIN_TOOLS) templates.sed gen-doc .PHONY : gen-doc gen-doc: @printf "$(LOGFORMAT)" create documentation "" @chmod ug+x $(GEN_TEMPLATE) @$(GEN_TEMPLATE) @cp -p doc/WDF.txt . # #-------------------------- .PHONY : flags flags: @echo "" @echo "DEFINES: $(DEFINES)" @echo "" @echo "CFLAGS: $(CFLAGS)" @echo "" @echo "LDFLAGS: $(LDFLAGS)" @echo "" @echo "LIBS: $(LIBS)" @echo "" @echo "LIBBZ2_OBJ: $(LIBBZ2_OBJ)" @echo "" @echo "LZMA_OBJ: $(LZMA_OBJ)" @echo "" @echo "C_OBJECTS: $(C_OBJECTS)" @echo "" # #-------------------------- .PHONY : install install: all ifeq ($(SYSTEM),cygwin) @[[ -d $(DISTRIB_PATH)/bin ]] || make distrib @( cd "$(DISTRIB_PATH)/bin" && ./windows-install.sh --cygwin ) else @chmod a+x install.sh @./install.sh --make endif .PHONY : install+ install+: clean+ all @chmod a+x install.sh @./install.sh --make #-------------------------- .PHONY : install2 install2: ifeq ($(SYSTEM_LINUX),1) @printf "\n---------- BUILDING LINUX/I386 ----------\n\n" @for t in $(ALL_TOOLS_X); do rm -f bin/$$t; done @M32=1 $(MAKE) --no-print-directory clean+ install ifeq ($(HAVE_INSTBIN_32),1) @printf "$(LOGFORMAT)" copy "$(INSTBIN)/* to $(INSTBIN_32)" @for f in $(BIN_FILES); do [[ -f $(INSTBIN)/$$f ]] \ && cp -p $(INSTBIN)/$$f $(INSTBIN_32); done; true @for f in $(WDF_LINKS); do ln -f $(INSTBIN_32)/wdf $(INSTBIN_32)/$$f; done endif @printf "\n---------- BUILDING LINUX/X86_64 ----------\n\n" @for t in $(ALL_TOOLS_X); do rm -f bin/$$t; done @$(MAKE) --no-print-directory clean+ install doc ifeq ($(HAVE_INSTBIN_64),1) @printf "$(LOGFORMAT)" copy "$(INSTBIN)/* to $(INSTBIN_64)" @for f in $(BIN_FILES); do [[ -f $(INSTBIN)/$$f ]] \ && cp -p $(INSTBIN)/$$f $(INSTBIN_64); done; true @for f in $(WDF_LINKS); do ln -f $(INSTBIN_64)/wdf $(INSTBIN_64)/$$f; done endif else @$(MAKE) --no-print-directory clean+ install endif # #-------------------------- .PHONY : new new: @printf "$(LOGFORMAT)" enable new "-> define -DNEW_FEATURES" @rm -f *.o $(ALL_TOOLS_X) @echo "-DNEW_FEATURES" >>$(MODE_FILE) @sort $(MODE_FILE) | uniq > $(MODE_FILE).tmp # 2 steps to bypass a cygwin mv failure @cp $(MODE_FILE).tmp $(MODE_FILE) @rm -f $(MODE_FILE).tmp # #-------------------------- .PHONY : old old: @printf "$(LOGFORMAT)" enable old "-> define -DOLD_FEATURES" @rm -f *.o $(ALL_TOOLS_X) @echo "-DOLD_FEATURES" >>$(MODE_FILE) @sort $(MODE_FILE) | uniq > $(MODE_FILE).tmp # 2 steps to bypass a cygwin mv failure @cp $(MODE_FILE).tmp $(MODE_FILE) @rm -f $(MODE_FILE).tmp # #-------------------------- .PHONY : predef predef: @gcc -E -dM none.c | sort # #-------------------------- .PHONY : $(SUB_PROJECTS) $(SUB_PROJECTS): @printf "$(LOGFORMAT)" make "$@" "" @$(MAKE) -C "$@" # #-------------------------- templates.sed: Makefile @printf "$(LOGFORMAT)" create templates.sed "" @echo -e '' \ '/^~/ d;\n' \ 's|@.@@@|$(VERSION_NUM)|g;\n' \ 's|@@@@-@@-@@|$(DATE)|g;\n' \ 's|@@:@@:@@|$(TIME)|g;\n' \ 's|@@AUTHOR@@|$(AUTHOR)|g;\n' \ 's|@@TOOLSET-SHORT@@|$(TOOLSET_SHORT)|g;\n' \ 's|@@TOOLSET-LONG@@|$(TOOLSET_LONG)|g;\n' \ 's|@@WIT-SHORT@@|$(WIT_SHORT)|g;\n' \ 's|@@WIT-LONG@@|$(WIT_LONG)|g;\n' \ 's|@@WWT-SHORT@@|$(WWT_SHORT)|g;\n' \ 's|@@WWT-LONG@@|$(WWT_LONG)|g;\n' \ 's|@@WDF-SHORT@@|$(WDF_SHORT)|g;\n' \ 's|@@WDF-LONG@@|$(WDF_LONG)|g;\n' \ 's|@@WFUSE-SHORT@@|$(WFUSE_SHORT)|g;\n' \ 's|@@WFUSE-LONG@@|$(WFUSE_LONG)|g;\n' \ 's|@@VERSION@@|$(VERSION)|g;\n' \ 's|@@VERSION-NUM@@|$(VERSION_NUM)|g;\n' \ 's|@@BETA-VERSION@@|$(BETA_VERSION)|g;\n' \ 's|@@BETA-SUFFIX@@|$(BETA_SUFFIX)|g;\n' \ 's|@@REV@@|$(REVISION)|g;\n' \ 's|@@REV-NUM@@|$(REVISION_NUM)|g;\n' \ 's|@@REV-NEXT@@|$(REVISION_NEXT)|g;\n' \ 's|@@BINTIME@@|$(BINTIME)|g;\n' \ 's|@@DATE@@|$(DATE)|g;\n' \ 's|@@TIME@@|$(TIME)|g;\n' \ 's|@@INSTALL-PATH@@|$(INSTALL_PATH)|g;\n' \ 's|@@SHARE-PATH@@|$(SHARE_PATH)|g;\n' \ 's|@@BIN-FILES@@|$(BIN_FILES)|g;\n' \ 's|@@SHARE-FILES@@|$(SHARE_FILES)|g;\n' \ 's|@@WDF-LINKS@@|$(WDF_LINKS)|g;\n' \ 's|@@CYGWIN-DIR@@|$(CYGWIN_DIR)|g;\n' \ 's|@@CYGWIN-TOOLS@@|$(CYGWIN_TOOLS)|g;\n' \ 's|@@WIN-INSTALL-PATH@@|$(WIN_INSTALL_PATH)|g;\n' \ 's|@@LANGUAGES@@|$(LANGUAGES)|g;\n' \ 's|@@DISTRIB-PATH@@|$(DISTRIB_PATH)|g;\n' \ 's|@@DISTRIB-I386@@|$(DISTRIB_I386)|g;\n' \ 's|@@DISTRIB-X86_64@@|$(DISTRIB_X86_64)|g;\n' \ 's|@@DISTRIB-MAC@@|$(DISTRIB_MAC)|g;\n' \ 's|@@DISTRIB-CYGWIN@@|$(DISTRIB_CYGWIN)|g;\n' \ 's|@@URI-FILE@@|$(URI_FILE)|g;\n' \ 's|@@URI-REPOS@@|$(URI_REPOS)|g;\n' \ 's|@@URI-VIEWVC@@|$(URI_VIEWVC)|g;\n' \ 's|@@URI-HOME@@|$(URI_HOME)|g;\n' \ 's|@@URI-DOWNLOAD@@|$(URI_DOWNLOAD)|g;\n' \ 's|@@URI-WDF@@|$(URI_WDF)|g;\n' \ 's|@@URI-CISO@@|$(URI_CISO)|g;\n' \ 's|@@URI-QTWITGUI@@|$(URI_QTWITGUI)|g;\n' \ 's|@@URI-WIIBAFU@@|$(URI_WIIBAFU)|g;\n' \ 's|@@URI-MACWITGUI@@|$(URI_MACWITGUI)|g;\n' \ 's|@@URI-GBATEMP@@|$(URI_GBATEMP)|g;\n' \ 's|@@URI-DOWNLOAD-I386@@|$(URI_DOWNLOAD_I386)|g;\n' \ 's|@@URI-DOWNLOAD-X86_64@@|$(URI_DOWNLOAD_X86_64)|g;\n' \ 's|@@URI-DOWNLOAD-MAC@@|$(URI_DOWNLOAD_MAC)|g;\n' \ 's|@@URI-DOWNLOAD-CYGWIN@@|$(URI_DOWNLOAD_CYGWIN)|g;\n' \ 's|@@URI-TITLES@@|$(URI_TITLES)|g;\n' \ >templates.sed # #-------------------------- .PHONY : test test: @printf "$(LOGFORMAT)" enable test "-> define -DTEST" @rm -f *.o $(ALL_TOOLS_X) @echo "-DTEST" >>$(MODE_FILE) @sort $(MODE_FILE) | uniq > $(MODE_FILE).tmp # 2 steps to bypass a cygwin mv failure @cp $(MODE_FILE).tmp $(MODE_FILE) @rm -f $(MODE_FILE).tmp # #-------------------------- .PHONY : test-trace test-trace: @printf "$(LOGFORMAT)" enable testtrace "-> define -DTESTTRACE" @rm -f *.o $(ALL_TOOLS_X) @echo "-DTESTTRACE" >>$(MODE_FILE) @sort $(MODE_FILE) | uniq > $(MODE_FILE).tmp # 2 steps to bypass a cygwin mv failure @cp $(MODE_FILE).tmp $(MODE_FILE) @rm -f $(MODE_FILE).tmp # #-------------------------- .PHONY : titles titles: wit load-titles.sh gen-titles .PHONY : gen-titles gen-titles: @chmod a+x load-titles.sh @./load-titles.sh --make # #-------------------------- .PHONY : tools tools: $(ALL_TOOLS) # #-------------------------- .PHONY : up up: clean++ do_up ch+ .PHONY : do_up do_up: clean @printf "$(LOGFORMAT)" svn update @svn update # #-------------------------- .PHONY : wait wait: @printf "$(LOGFORMAT)" enable wait "-> define -DWAIT_ENABLED" @rm -f *.o $(ALL_TOOLS_X) @echo "-DWAIT_ENABLED" >>$(MODE_FILE) @sort $(MODE_FILE) | uniq > $(MODE_FILE).tmp # 2 steps to bypass a cygwin mv failure @cp $(MODE_FILE).tmp $(MODE_FILE) @rm -f $(MODE_FILE).tmp # #-------------------------- %.wbfs: wwt @printf "$(LOGFORMAT)" create "$@" "$(WBFS_SIZE)G, add smallest $(WBFS_COUNT) ISOs" @rm -f $@ @./wwt format --force --inode --size $(WBFS_SIZE)- "$@" @stat --format="%b|%n" pool/wdf/*.wdf \ | sort -n \ | awk '-F|' '{print $$2}' \ | head -n$(WBFS_COUNT) \ | ./wwt -A -p "$@" add @- -v # #-------------------------- .PHONY : format-wbfs format-wbfs: @printf "$(LOGFORMAT)" create "$(WBFS_FILES)," "size=$(WBFS_SIZE)G" @rm -f $(WBFS_FILES) @s=512; \ for w in $(WBFS_FILES); \ do ./wwt format -qfs $(WBFS_SIZE)- --sector-size=$$s --inode "$$w"; \ let s*=2; \ done # #-------------------------- .PHONY : wbfs wbfs: wwt format-wbfs gen-wbfs .PHONY : gen-wbfs gen-wbfs: format-wbfs @printf "$(LOGFORMAT)" charge "$(WBFS_FILE)" "" @stat --format="%b|%n" pool/wdf/*.wdf \ | sort -n \ | awk '-F|' '{print $$2}' \ | head -n$(WBFS_COUNT) \ | ./wwt -A -p @<(ls $(WBFS_FILE)) add @- @echo @./wwt f -l $(WBFS_FILES) @./wwt lf $(WBFS_FILE) --mtime # #-------------------------- .PHONY : wbfs+ wbfs+: wwt format-wbfs gen-wbfs+ .PHONY : gen-wbfs+ gen-wbfs+: format-wbfs @printf "$(LOGFORMAT)" charge "$(WBFS_FILES)" "" @stat --format="%b|%n" pool/iso/*.iso \ | sort -n \ | awk '-F|' '{print $$2}' \ | head -n$(WBFS_COUNT) \ | ./wwt -A -p @<(ls $(WBFS_FILES)) add @- @echo @./wwt f -l $(WBFS_FILES) @./wwt lf $(WBFS_FILES) @echo "WBFS: this is not a wbfs file" >no.wbfs # #-------------------------- .PHONY : xwbfs xwbfs: wwt @printf "$(LOGFORMAT)" create x.wbfs "1TB, sec-size=2048 and then with sec-size=512" @./wwt init -qfs1t x.wbfs --inode --sector-size=2048 @sleep 2 @./wwt init -qfs1t x.wbfs --inode --sector-size=512 #-------------------------- .PHONY : bad-wbfs bad-wbfs: wwt a.wbfs @printf "$(LOGFORMAT)" edit "a.wbfs" "(create errors)" # @./wwt edit -p a.wbfs -f rm=10 act=0 @./wwt edit -p a.wbfs -f free=4 act=0-1 R64P01=10:1 # @./wwt check -p a.wbfs -vv # #-------------------------- .PHONY : wdf-links wdf-links: @printf "$(LOGFORMAT)" link "$(WDF_TEST_LINKS) -> wdf" "" @for l in $(WDF_TEST_LINKS); do rm -f $$l; ln -s wdf $$l; done # ############################################################################### # help rule .PHONY : help help: @echo "" @echo "$(DATE) $(TIME) - $(VERSION) - svn r$(REVISION):$(REVISION_NEXT)" @echo "" @echo " make := make all" @echo " make all make all tools and install scripts" @echo " make all+ := make clean+ all distrib" @echo " make all++ := make clean+ all titles distrib" @echo " make _tool_ compile only the named '_tool_' (wit,wwt,...)" @echo " make tools make all tools" @echo "" @echo " make clean remove all output files" @echo " make clean+ make clean & rm test_files & rm template_output" @echo "" @echo " make debug enable '-DDEBUG'" @echo " make test enable '-DTEST'" @echo " make new enable '-DNEW_FEATURES'" @echo " make old enable '-DOLD_FEATURES'" @echo " make wait enable '-DWAIT'" @echo " make testtrace enable '-DTESTTRACE'" @echo " make flags print DEFINES, CFLAGS and LDFLAGS" @echo "" @echo " make doc generate doc files from their templates" @echo " make distrib make all & build $(DISTRIB_PATH)" @echo " make titles get titles from $(URI_TITLES)" @echo " make install make all & copy tools to $(INSTALL_PATH)" @echo " make install+ := make clean+ install" @echo "" @echo " make chmod change mode 775/644 for known dirs and files" @echo " make chown change owner of all dirs+files to owner of ." @echo " make chgrp change group of all dirs+files to group of ." @echo " make ch+ := make chmod chown chgrp" @echo "" @echo " make %.wbfs gen %.wbfs, $(WBFS_SIZE)G, add smallest $(WBFS_COUNT) ISOs" @echo " make wbfs gen $(WBFS_FILE), $(WBFS_SIZE)G, add smallest $(WBFS_COUNT) ISOs" @echo " make wbfs+ gen $(WBFS_FILES), $(WBFS_SIZE)G, add smallest $(WBFS_COUNT) ISOs" @echo "" @echo " make help print this help" @echo "" # ############################################################################### # local definitions -include makefiles-local/Makefile.local.$(SYSTEM) -include Makefile.user wit-2.31a/setup.sh0000644000175000017500000000505312655737310013701 0ustar michaelmichael#!/usr/bin/env bash revision=0 if [[ -d .svn ]] && which svn >/dev/null 2>&1 then revision="$( svn info . | awk '$1=="Revision:" {print $2}' )" if which svnversion >/dev/null 2>&1 then rev="$(svnversion|sed 's/.*://')" (( ${revision//[!0-9]/} < ${rev//[!0-9]/} )) && revision=$rev fi fi revision_num="${revision//[!0-9]/}" revision_next=$revision_num [[ $revision = $revision_num ]] || let revision_next++ tim=($(date '+%s %Y-%m-%d %T')) defines= have_fuse=0 [[ $NO_FUSE != 1 && -r /usr/include/fuse.h || -r /usr/local/include/fuse.h ]] \ && have_fuse=1 have_zlib=0 if [[ $NO_ZLIB != 1 && -r /usr/include/zlib.h || -r /usr/local/include/zlib.h ]] then have_zlib=1 defines="$defines -DHAVE_ZLIB=1" fi if [[ $M32 = 1 ]] then force_m32=1 have_fuse=0 xflags="-m32" defines="$defines -DFORCE_M32=1" else force_m32=0 xflags= fi [[ -r /usr/include/bits/fcntl.h ]] \ && grep -qw fallocate /usr/include/bits/fcntl.h \ && defines="$defines -DHAVE_FALLOCATE=1" [[ -r /usr/include/fcntl.h ]] \ && grep -qw posix_fallocate /usr/include/fcntl.h \ && defines="$defines -DHAVE_POSIX_FALLOCATE=1" [[ -r /usr/include/linux/fiemap.h ]] \ && grep -qw fiemap_extent /usr/include/linux/fiemap.h \ && defines="$defines -DHAVE_FIEMAP=1" [[ $STATIC = 1 ]] || STATIC=0 #-------------------------------------------------- INSTALL_PATH=/usr/local if [[ -d $INSTALL_PATH/bin ]] then HAVE_INSTBIN=1 INSTBIN=$INSTALL_PATH/bin else HAVE_INSTBIN=0 INSTBIN=/tmp fi if [[ -d $INSTALL_PATH/bin32 ]] then HAVE_INSTBIN_32=1 INSTBIN_32=$INSTALL_PATH/bin32 else HAVE_INSTBIN_32=0 INSTBIN_32=/tmp fi if [[ -d $INSTALL_PATH/bin64 ]] then HAVE_INSTBIN_64=1 INSTBIN_64=$INSTALL_PATH/bin64 elif [[ -d $INSTALL_PATH/bin-x86_64 ]] then HAVE_INSTBIN_64=1 INSTBIN_64=$INSTALL_PATH/bin-x86_64 else HAVE_INSTBIN_64=0 INSTBIN_64=/tmp fi #-------------------------------------------------- cat <<- ---EOT--- >Makefile.setup REVISION := $revision REVISION_NUM := $revision_num REVISION_NEXT := $revision_next BINTIME := ${tim[0]} DATE := ${tim[1]} TIME := ${tim[2]} FORCE_M32 := $force_m32 HAVE_FUSE := $have_fuse HAVE_ZLIB := $have_zlib STATIC := $STATIC XFLAGS += $xflags DEFINES1 := $defines HAVE_INSTBIN := $HAVE_INSTBIN HAVE_INSTBIN_32 := $HAVE_INSTBIN_32 HAVE_INSTBIN_64 := $HAVE_INSTBIN_64 INSTALL_PATH := $INSTALL_PATH INSTBIN := $INSTBIN INSTBIN_32 := $INSTBIN_32 INSTBIN_64 := $INSTBIN_64 ---EOT--- gcc $xflags system.c -o system.tmp && ./system.tmp >>Makefile.setup rm -f system.tmp wit-2.31a/text-files/0000755000175000017500000000000012655737310014266 5ustar michaelmichaelwit-2.31a/text-files/logo.inc0000644000175000017500000000107412655737310015723 0ustar michaelmichael ***************************************** * __ __ _ ___________ * * \ \ / /| |____ ____| * * \ \ / / | | | | * * \ \ /\ / / | | | | * * \ \/ \/ / | | | | * * \ /\ / | | | | * * \/ \/ |_| |_| * * * * Wiimms ISO Tools * * http://wit.wiimm.de/ * * * ***************************************** wit-2.31a/text-files/ui-head.inc0000644000175000017500000000567612655737310016313 0ustar michaelmichael /*************************************************************************** * __ __ _ ___________ * * \ \ / /| |____ ____| * * \ \ / / | | | | * * \ \ /\ / / | | | | * * \ \/ \/ / | | | | * * \ /\ / | | | | * * \/ \/ |_| |_| * * * * Wiimms ISO Tools * * http://wit.wiimm.de/ * * * *************************************************************************** * * * This file is part of the WIT project. * * Visit http://wit.wiimm.de/ for project details and sources. * * * * Copyright (c) 2009-2015 by Dirk Clemens * * * *************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * See file gpl-2.0.txt or http://www.gnu.org/licenses/gpl-2.0.txt * * * *************************************************************************** * * * >>> This file is automatically generated by './src/gen-ui.c'. <<< * * >>> Do not edit this file! <<< * * * ***************************************************************************/ wit-2.31a/system.c0000644000175000017500000000544412655737310013701 0ustar michaelmichael /*************************************************************************** * __ __ _ ___________ * * \ \ / /| |____ ____| * * \ \ / / | | | | * * \ \ /\ / / | | | | * * \ \/ \/ / | | | | * * \ /\ / | | | | * * \/ \/ |_| |_| * * * * Wiimms ISO Tools * * http://wit.wiimm.de/ * * * *************************************************************************** * * * This file is part of the WIT project. * * Visit http://wit.wiimm.de/ for project details and sources. * * * * Copyright (c) 2009-2012 by Dirk Clemens * * * *************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * See file gpl-2.0.txt or http://www.gnu.org/licenses/gpl-2.0.txt * * * ***************************************************************************/ #include #include "src/system.h" int main ( int argc, char ** argv ) { printf( "SYSTEM\t\t:= %s\n" "SYSTEMID\t:= 0x%x\n" #ifdef SYSTEM_LINUX "SYSTEM_LINUX\t:= 1\n" #endif , SYSTEM, SYSTEMID ); return 0; } wit-2.31a/test-libwbfs/0000755000175000017500000000000012655737310014607 5ustar michaelmichaelwit-2.31a/test-libwbfs/readme.txt0000644000175000017500000000020512655737310016602 0ustar michaelmichaelThis directory is only for test purposes. 'test-libwbfs' should confirm that libwbfs can be used independently of the WIT project. wit-2.31a/test-libwbfs/test-libwbfs.c0000644000175000017500000000340512655737310017362 0ustar michaelmichael/*************************************************************************** * * * Copyright (c) 2009-2010 by Dirk Clemens * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * See file gpl-2.0.txt or http://www.gnu.org/licenses/gpl-2.0.txt * * * ***************************************************************************/ #define _GNU_SOURCE 1 #include "libwbfs.h" #include "wiidisc.h" // /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// int main ( int argc, char ** argv ) { printf("hello world\n"); #if 1 // test warnings wbfs_warning(0); wbfs_warning("%d Warning",1); wbfs_error("Error"); OUT_OF_MEMORY; wbfs_fatal("should not reached"); #endif return 0; } wit-2.31a/test-libwbfs/libwbfs_os.h0000644000175000017500000000003612655737310017110 0ustar michaelmichael#include "libwbfs_os.posix.h" wit-2.31a/test-libwbfs/Makefile0000644000175000017500000000562312655737310016255 0ustar michaelmichael#---------------------------------------------------------------- # make manual: http://www.gnu.org/software/make/manual/make.html #---------------------------------------------------------------- #------------------------------------------------------------------------------- # global settings SHELL = /bin/bash PRE ?= CC = $(PRE)gcc CPP = $(PRE)g++ STRIP = $(PRE)strip #------------------------------------------------------------------------------- # files RM_FILES = *.{o,d,tmp,bak,exe} #------------------------------------------------------------------------------- # tools TOOLS := test-libwbfs RM_FILES += $(TOOLS) #------------------------------------------------------------------------------- # object files # objects of tools TOOLS_O := $(patsubst %,%.o,$(TOOLS)) # other objects LIBWBFS_O := file-formats.o libwbfs.o wiidisc.o rijndael.o # object groups C_OBJECTS := $(sort $(TOOLS_O) $(LIBWBFS_O)) # all objects + sources ALL_OBJECTS := $(sort $(LIBWBFS_O)) ALL_SOURCES := $(patsubst %.o,%.c,$(ALL_OBJECTS)) #------------------------------------------------------------------------------- VPATH += ../src/libwbfs DEFINES = -DLARGE_FILES -D_FILE_OFFSET_BITS=64 $(XDEF) DEFINES := $(strip $(DEFINES)) CFLAGS = -fomit-frame-pointer -fno-strict-aliasing CFLAGS += -Wall -Wno-parentheses -Wno-unused-function CFLAGS += -O3 -I../src/libwbfs -I. CFLAGS += $(XFLAGS) CFLAGS := $(strip $(CFLAGS)) DEPFLAGS += -MMD LDFLAGS += -static-libgcc #LDFLAGS += -static LDFLAGS := $(strip $(LDFLAGS)) LIBS += $(XLIBS) # ############################################################################### # default rule default_rule: all # @echo "HINT: try 'make help'" # include this behind the default rule -include $(ALL_SOURCES:.c=.d) # ############################################################################### # general rules $(TOOLS): %: %.o $(ALL_OBJECTS) Makefile @echo "*** tool $@ $(MODE)" @$(CC) $(CFLAGS) $(DEFINES) $(LDFLAGS) $@.o $(ALL_OBJECTS) $(LIBS) -o $@ @if test -f $@.exe; then $(STRIP) $@.exe; else $(STRIP) $@; fi #-------------------------- $(C_OBJECTS): %.o: %.c Makefile @echo "*** object $@ $(MODE)" @$(CC) $(CFLAGS) $(DEPFLAGS) $(DEFINES) -c $< -o $@ #-------------------------- $(ASM_OBJECTS): %.o: %.S Makefile @echo "*** asm $@ $(MODE)" @$(CC) $(CFLAGS) $(DEPFLAGS) $(DEFINES) -c $< -o $@ # ############################################################################### # specific rules in alphabetic order .PHONY : all all: $(TOOLS) .PHONY : all+ all+: clean all # #-------------------------- .PHONY : clean clean: @echo "*** rm output files" @rm -f $(RM_FILES) # #-------------------------- .PHONY : flags flags: @echo "" @echo "DEFINES: $(DEFINES)" @echo "" @echo "CFLAGS: $(CFLAGS)" @echo "" @echo "LDFLAGS: $(LDFLAGS)" @echo "" @echo "LIBS: $(LIBS)" @echo "" # #-------------------------- .PHONY : tools tools: $(ALL_TOOLS) wit-2.31a/share/0000755000175000017500000000000012655737310013304 5ustar michaelmichaelwit-2.31a/share/titles-zhtw.txt0000644000175000017500000113630712655737310016356 0ustar michaelmichael010E01 = Wii 備份光碟 v1.31(美) 301E01 = GameCube Service Disc AFRE01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 8. AMEE01 = New Super Mario Bros. Wii 11 American Revolution AMNE01 = 另一個超級瑪利歐兄弟Wii(美) AMOR04 = 自製 吉他英雄3 HARDcore(歐) APRP01 = 自製 ANDY AFRO的復古自製(歐) APRP02 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 3. APRP03 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 6. APRP04 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 7. APRP06 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 5. APRP08 = 自製 ANDY AFRO的新超級馬裡奧兄弟Wii 自製第一輯(歐) ASMB01 = 另一個超級瑪利歐兄弟Wii(自) BEPS01 = 自制 吉他英雄 下載版(西) BOWE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh C3BE52 = 自制 吉他英雄3 下載版(美) C3FP52 = 自制 吉他英雄3 下載版(歐) C3KE52 = 自製 吉他英雄3 Kyle第一版(美) C3ME52 = 自制 吉他英雄3 下載版(美) C3PP52 = 自制 吉他英雄3 現代流行與搖滾(歐) C80E52 = 自制 吉他英雄 下載版(美) C80P52 = 自制 吉他英雄3 下載版(歐) C93E = Last Ninja 2 C93P = The Last Ninja 2 C94E = Tower Toppler C94P = Nebulus C95P = Impossible Mission C96E = Summer Games II C96P = Summer Games 2 C97E = California Games C97P = California Games C98P = Paradroid C99P = Uridium C9EP = Winter Games C9GP = Mayhem in Monsterland C9HE = Boulder Dash C9HP = Boulder Dash C9IE = Cybernoid C9IP = Cybernoid C9ME = Pitstop II C9MJ = Pitstop Two C9MP = Pitstop II C9PP = The Last Ninja 3 C9QP = Jumpman C9RP = International Karate + C9SP = 不可能的任務 II(歐) C9XE = The Last Ninja C9XJ = The Last Ninja C9XP = The Last Ninja C9YE = International Karate C9YJ = International Karate C9YP = International Karate C9ZP = World Games CANE52 = 自制 吉他英雄 下載版(美) CCPE01 = 自製 瑪利歐賽車 大師賽事(美) CEMU69 = PunEmu CFEE52 = 自製 吉他英雄3 麥可傑克森版(美) CG1E52 = 自制 吉他英雄3 下載版(美) CG1P52 = 自制 吉他英雄3 下載版(歐) CG2E52 = 自制 吉他英雄3 下載版(美) CG2EFL = 自制 吉他英雄3 下載版(美) CG2P52 = 自制 吉他英雄3 下載版(歐) CG3ECS = 自制 吉他英雄3 下載版(美) CG3PCS = 自制 吉他英雄 下載版(歐) CGBE52 = 自制 搖滾樂團(美) CGBP52 = 自制 吉他英雄3 搖滾樂隊(歐) CGH370 = 自製 吉他英雄3 70新曲(?) CGH3IM = 自制 吉他英雄3 下載版(歐) CGH3LM = 自製 吉他英雄3 傳奇音樂(?) CGH3ME = 自制 吉他英雄3 下載版(歐) CGH3NE = 自製 吉他英雄3 懷舊版(?) CGH3WD = 自制 吉他英雄3 下載版(歐) CGHCE1 = 自製 吉他英雄3 自製版(?) CGHE87 = 自制 吉他英雄3 下載版(美) CGHE88 = 自制 吉他英雄3 下載版(美) CGHE89 = 自制 吉他英雄3 下載版(美) CGHE90 = 自制 吉他英雄3 下載版(美) CGHE91 = 自制 吉他英雄3 下載版(美) CGHE92 = 自制 吉他英雄3 下載版(美) CGHE93 = 自制 吉他英雄3 下載版(美) CGHE94 = 自制 吉他英雄3 下載版(美) CGHE95 = 自制 吉他英雄3 下載版(美) CGHE96 = 自制 吉他英雄3 下載版(美) CGHE97 = 自制 吉他英雄3 下載版(美) CGHE98 = 自制 吉他英雄3 下載版(美) CGHE99 = 自制 吉他英雄3 下載版(美) CGHECB = 自制 吉他英雄3 下載版(美) CGHEDC = 自制 吉他英雄3 下載版(美) CGHEDM = 自制 吉他英雄3 下載版(美) CGHEMC = 自制 吉他英雄3 下載版(美) CGHENC = 自制 吉他英雄3 下載版(美) CGHEPH = 自制 吉他英雄3 下載版(美) CGHER2 = 自制 吉他英雄3 下載版(美) CGHERF = 自製 吉他英雄3 Rockfest 2010(美) CGHJ52 = 自制 吉他英雄3 Jumapa(美) CGHKY2 = 自制 吉他英雄3 Kyle第二版(韓) CGHPF2 = 自制 吉他英雄3 下載版(歐) CGHPF3 = 自制 吉他英雄3 下載版(歐) CGHPF4 = 自制 吉他英雄3 下載版(歐) CGHPF5 = 自制 吉他英雄3 下載版(歐) CGHPNT = 自制 吉他英雄 下載版(歐) CGHRH2 = 自制 吉他英雄3 搖滾精選v2(自) CGHSKV = 自制 吉他英雄3 Starchildren和Kneos版(歐) CGIE52 = 自制 吉他英雄 下載版(美) CGSP52 = 自制 吉他英雄 下載版(歐) CGVECD = 自制 吉他英雄 下載版(美) CGVEM2 = 自制 吉他英雄 下載版(美) CGVEMC = 自制 吉他英雄 下載版(美) CGVEUV = 自制 吉他英雄 下載版(美) CKBE88 = 瑪莉歐賽車黑化版(美) CLAPSI = 自制 唱吧 下載版(歐) CMDE52 = 自制 吉他英雄3 下載版(美) CMKE01 = Mario Kart Wii Dragon Road CS0P00 = StarSing : Bollywood v2.0 CS0PZZ = StarSing : Pop Part. I v2.0 CS1P00 = StarSing : Country v2.0 CS1PZZ = StarSing : Pop Part. II v2.0 CS2P00 = StarSing : Placebo v2.0 CS2PZZ = StarSing : '80s Volume 1 v2.0 CS3P00 = StarSing : Volume 1 v2.0 CS3PZZ = StarSing : Anthems v2.0 CS4P00 = StarSing : NRJ Music Tour v2.0 CS4PZZ = StarSing : Legends v2.0 CS5P00 = StarSing : '70s v2.1 CS5PZZ = StarSing : Songs For My Jedi v1.0 CS6P00 = StarSing : Douce France v2.0 CS6PZZ = StarSing : Amped Part. I v2.0 CS7P00 = StarSing : Red Hot Chili Peppers v1.0 CS7PZZ = StarSing : Amped Part. II v2.0 CS8P00 = StarSing : '90s Volume 1 v2.0 CS8PZZ = StarSing : Disco-Funk v1.0 CS9P00 = StarSing : '80s Volume 2 v2.1 CS9PZZ = StarSing : Pop Hits 9 v1.0 CSAP00 = StarSing : '80s Volume 3 v2.1 CSAPZZ = StarSing : Best of Goldman v1.0 CSBP00 = StarSing : '90s Volume 2 v2.1 CSCP00 = StarSing : Michael Jackson v2.2 CSCPZZ = StarSing : Hottest Hits v2.0 CSDP00 = StarSing : Rocks! Volume 2 v2.0 CSDPZZ = StarSing : Boy Bands Vs. Girl Bands v2.0 CSEP00 = StarSing : Pop Hits 5 v1.3 CSFP00 = StarSing : Pop Hits 6 v1.3 CSGP00 = StarSing : Chansons Magiques de Disney v1.4 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = StarSing : Pop Hits 7 v1.3 CSJP00 = StarSing : Après-Ski Party v1.2 CSKP00 = StarSing : ABBA v1.1 CSLP00 = StarSing : Queen v2.0 CSMP00 = StarSing : Electro-Dancefloor Volume 1 v2.0 CSNP00 = StarSing : Electro-Dancefloor Volume 2 v2.0 CSOP00 = StarSing : Electro-Dancefloor Volume 3 v2.0 CSPP00 = StarSing : Linkin Park Live at Webster Hall New York v2.0 CSQP00 = StarSing : Muse v2.0 CSRP00 = StarSing : International Volume 3 v1.0 CSSP00 = StarSing : Après-Ski Party 2 v2.0 CSTP00 = StarSing : Depeche Mode v2.0 CSUP00 = StarSing : Pop Hits 8 v1.3 CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = StarSing : Génériques TV v2.0 CSYP00 = StarSing : Electro-Dancefloor Volume 4 v2.0 CSZP00 = StarSing : Glee Volume 1 v2.1 CT0P00 = StarSing : Pop Part. I v2.1 CT1P00 = StarSing : Pop Part. II v2.1 CT2P00 = StarSing : '80s Volume 1 v2.1 CT3P00 = StarSing : Anthems v2.1 CT4P00 = StarSing : Legends v2.1 CT5P00 = StarSing : Songs For My Jedi v2.0 CT6P00 = StarSing : Amped Part. I v2.1 CT7P00 = StarSing : Amped Part. II v2.1 CT8P00 = StarSing : Disco-Funk v2.0 CT9P00 = StarSing : Pop Hits 9 v1.3 CTAP00 = StarSing : Best of Goldman v2.0 CTBP00 = StarSing : Glee Volume 3 v1.0 CTCP00 = StarSing : Hottest Hits v2.0 CTDP00 = StarSing : Boy Bands Vs. Girl Bands v2.1 CTEP00 = StarSing : R&B v2.0 CTFP00 = StarSing : Rock Ballads v2.0 CTGP00 = StarSing : Take That v2.0 CTHP00 = StarSing : Summer Party v2.0 CTIP00 = StarSing : Rocks! Part. I v2.0 CTJP00 = StarSing : Rocks! Part. II v2.0 CTKP00 = StarSing : Pop Hits v2.0 CTLP00 = StarSing : Britney Spears v2.0 CTMP00 = StarSing : Shakira v1.1 CTNP00 = StarSing : Pop Hits 10 v1.3 CTOP00 = StarSing : The Beatles Volume 2 v2.0 CTPP00 = StarSing : Motown v2.0 CTQP00 = StarSing : Glee Volume 2 v1.0 CTRP00 = StarSing : International Volume 1 v1.0 CTSP00 = StarSing : International Volume 2 v1.0 CTTP00 = StarSing : '80s Volume 4 v1.0 CTUP00 = StarSing : Rihanna v1.0 CTVP00 = StarSing : Lady GaGa v1.0 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CVLE38 = 瑪利歐賽車 勝利賽道[WiFi](美) D01A = Wiimmfi Patcher D02A = Engine02 D03A = BrainSlug Wii D05A = Bash the Castle D06A = Bit Streamer D07A = BlisterBall D08A = Blob Wars: Metal Blob Solid D09A = Blobby Volley 2 Wii D0AA = MPlayer Wii Youtube D0BA = MPlayer Wii D0CA = Ocarina D0DA = MPlayer Dvdlib Edition D0EA = MPlayer Wii By Rodries D0FA = Signcheck D0GA = GCBoot D0HA = Memview D0IA = IOS Check D0JA = Open Sram Lang Modifier D0KA = WiiBServer D0LA = LibWiiGameLoad D0MA = Wiireader D0NA = lsusb D0OA = Move The Pussy Demo D0PA = Wiilax Minitro D0QA = Fission Engine Project D0RA = GRRLIB 4.0 Demo D0SA = OSDM-BAR D0TA = Homebrew Menu Demo D0UA = LibMii Example D0VA = The Scary Demo D0WA = Starfield Demo D0XA = Wire3D Demo D0YA = Something D0ZA = GRRLIB 4.3.0 Promote Intro D10A = cIOSFix D11A = ASCII Pong D12A = BuscaWiinas D13A = C-Dogs SDL D14A = Castles of Dr. Creep D15A = Wii Shop and IOS51 Installer D16A = Centipede D17A = Cobra Arcade D18A = Dump Espresso OTP D1LA = Blind D1PA = 1bit Invaders D1RA = MinimaLauncher D21A = Xroar D22A = cIOS222 installer D24A = 24 Points D26A = Wii2600 D29J01 = Monthly Nintendo Shop Demo May 2002 D2AA = Wii Deadly Cobra D2AJAF = 運動生活 探險家 試玩版(日) D2BA = Jump N Bump D2CA = Wiiflow Advanced D2DA = Box2D Balls D2EA = Wiiflow Start Configurator D2GA = Wadinstallerbatch D2QA = Sqrxz 2 D2SE18 = 運動大集錦2 試玩版(美) D2ZA = Console Shooter D32J01 = Monthly Nintendo Shop Demo June 2002 D33A = Time Frack 2D D33J01 = Monthly Nintendo Shop Demo July 2002 D34J01 = Monthly Nintendo Shop Demo July 2002 D36A = cIOS36 installer D37A = WiiConnect D38A = cIOS38 installer D38J01 = Monthly Nintendo Shop Demo September 2002 D39A = Ctr Gts DacoTaco Edition D3DA = Time Frack 3D D3DE18 = 運動大集錦3 試玩版(美) D3JA = NDSLoad D3KA = Button Tester D3LA = BootMii Booter D3MA = Custom NAND Loader D3OA = cIOS USB 2 Installer D3QA = Sqrxz 3 D3WA = Warheads D40A = Luigi and the Island of Mystery D42A = ArianeB D43A = Wii Virtual Jaguar D43E01 = The Legend of Zelda: Ocarina of Time / Master Quest D43J01 = Zelda no Densetsu: Toki no Ocarina GC / Ura Zelda D43P01 = The Legend of Zelda: Ocarina of Time / Master Quest D43U01 = The Legend of Zelda: Ocarina of Time (Bonus Disc) D43W01 = The Legend of Zelda: Ocarina of Time / Master Quest D46A = Newo Escape D4BE08 = Resident Evil 4: Preview Disc D4BP01 = Resident Evil 4: Bonus Disc D4BP08 = Resident Evil Four Preview Disc D4BU01 = Resident Evil 4: Bonus Disc D4KA = Aleph WOne D4LA = Yawnd D4NA = Disc Dumper D4PA = DVD Dumper D4QA = Sqrxz 4 D4SA = USB Loader GUI FX D51A = IOS51 Update D52A = cboot252 D53J01 = Monthly Nintendo Shop Demo May 2003 D54A = cIOS Patchmii Installer D55A = PID Extractor D55J01 = Interactive Disc Catalog Summer 2003 D56A = Shopping Channel Fixer D56E01 = Interactive Multi-Game Demo Disc - Version 35 D56J01 = Pokémon Channel (Bonus Disc) D57A = Hijill GUI D57E01 = Interactive Multi-Game Demo Disc - Version 34 D58A = Priiloader HacksDen Edition D58E01 = Interactive Multi-Game Demo Disc - Version 33 D59A = TheUntitledProject D59E01 = Interactive Multi Game Demo Disc Version 32 D5AA = Alarmii D5BA = WiiFont D5CA = cLoader D5FA = Txted Mod D5HA = Title Lister D5JA = Tidy Up D5LA = Switchtosneek D5RA = Botoning D60A = Ultimate USB Loader D61A = Sand Traps Extra Levels D62A = Newo Puzzle D62E01 = Interactive Multi-Game Demo Disc - Version 31 D63A = 3D Maze D63E01 = Interactive Multi-Game Demo Disc - Version 30 D64A = 任天堂N64模擬器(歐) D64E01 = Interactive Multi-Game Demo Disc - Version 29 D65A = Transitory Vectors D65E01 = Interactive Multi Game Demo Disc Version 28 D65P01 = Interactive Multi-Game Demo Disc - December 2002 D66A = Secret Maryo Chronicles D66E01 = Interactive Multi-Game Demo Disc - Version 27 D67E01 = Interactive Multi-Game Demo Disc - Version 26 D67J01 = Monthly Nintendo Shop Demo December 2003 D68A = TheyDoNotDie2 D68E01 = Interactive Multi-Game Demo Disc - Version 25 D68J01 = Monthly Nintendo Shop Demo January 2004 D69A = IOS60 Installer D69E01 = Interactive Multi-Game Demo Disc - Version 24 D6AA = Pussieloader D6BA = Updatersafe D6DA = Savegame Manager Mod D6EA = Sneek FS Dumper D6FA = Anytitle Deleter Mod D6HA = AnyTitle Deleter Mod DB D6IA = DVD Info D6KA = AnyTitle Deleter DB D6MA = Banana Saves D6OA = DOP Shop D6QA = BootMii Checker D6TA = MiiPlayer D70A = Dungeon Crawl Stone Soup D71A = Panic in the Mushroom Kingdom D72A = Bfi D72E01 = Interactive Multi-Game Demo Disc - Version 23 D73E01 = Interactive Multi-Game Demo Disc - Version 22 D74E01 = Interactive Multi Game Demo Disc Version 21 D75E01 = Interactive Multi-Game Demo Disc - Version 20 D76E01 = Interactive Multi-Game Demo Disc - Version 19 D77E01 = Interactive Multi-Game Demo Disc - Version 18 D77P01 = Interactive Multi Game Demo Disc April 2006 D78A = Wii7800 D78E01 = Interactive Multi-Game Demo Disc - Version 17 D78J01 = Interactive Multi-Game Demo Disc - May 2004 D78P01 = Interactive Multi-Game Demo Disc - October 2005 D79A = Newo Defence D79E01 = Interactive Multi-Game Demo Disc - Version 16 D79P01 = Interactive Multi Game Demo Disc May 2005 D7AA = Action Replay Loader D7DA = Depanbrew D7GA = Channel Loader D7KA = RawkSD D7LA = Rumbler D7MA = IS Wad D7OA = Recovery Manager D7QA = Reboot D7SA = Childproof USB Loader D7TA = Power Mii Off D7VA = Power Off D7WA = Abbaye des Morts D7XA = NuGaSa D7YA = Resistor D81A = Newo Asteroids D82A = cIOS Patchmii Installer with Korean Disc Support D82E01 = Interactive Multi-Game Demo Disc - Version 15 D82J01 = Monthly Nintendo Shop Demo July 2004 D82P01 = Interactive Multi Game Demo Disc April 2005 D83A = Wii MFE Port D83E01 = Interactive Multi-Game Demo Disc - Version 14 D83P01 = Interactive Multi Game Demo Disc February 2005 D84A = Gambol D84E01 = Interactive Multi-Game Demo Disc - Version 13 D84P01 = Interactive Multi-Game Demo Disc - November 2004 D85A = Wii EDuke32 D85E01 = Interactive Multi-Game Demo Disc - Version 12 D85P01 = Interactive Multi Game Demo Disc July 2004 D86A = Firewii D86E01 = Interactive Multi-Game Demo Disc - Version 11 D86P01 = Interactive Multi-Game Demo Disc - May 2004 D87A = Tick Tock Boat Race D87E01 = Gamecube Preview Disc D87P01 = Interactive Multi-Game Demo Disc - March 2004 D88A = Quasi88 D88E01 = Interactive Multi-Game Demo Disc - Version 10 D88P01 = Interactive Multi-Game Demo Disc - November 2003 D89A = Wiimote Led Flasher D89E01 = Interactive Multi-Game Demo Disc - Version 9 D89J01 = Club Nintendo Original e-Catalog 2004 D89P01 = Interactive Multi-Game Demo Disc - September 2003 D8AA = Front SD ELF Loader D8BA = GameCube Homebrew Launcher D8CA = WiiSend D8DA = Menu D8EA = Gecko Loader D8FA = Shell D8JA = Calc D8QA = Brick OS D8RA = Lotto D8SA = Brainf**k D8UA = TCPLoader D8VA = Snort48 D8WA = Wiisixty D8XA = All In One Emuloader D8YA = Swissloader D8ZA = Tick Tock Zombie Shooter D91A = Jenny Thinks D92E01 = Interactive Multi-Game Demo Disc - Version 8 D92P01 = Interactive Multi Game Demo Disc June 2003 D93A = Wiiraytracer D93E01 = Interactive Multi-Game Demo Disc - Version 7 D93P01 = Interactive Multi Game Demo Disc April 2003 D94A = Nowhere D94P01 = Interactive Multi-Game Demo Disc - February 2003 D95A = RenderMii D95P01 = Interactive Multi-Game Demo Disc - December 2002 D96A = WiiMotionDemo D96P01 = Interactive Multi-Game Demo Disc - November 2002 D97A = Fire D98A = InstallMii D99A = System Channels Updater D9BA = Info D9CA = cIOS USB2 Installer D9FA = Dump D9GA = Wad Creator D9HA = WakeMiiUp D9IA = SNES9xGX Channel Installer D9KA = Txtread D9LA = Forwarder DA1A = Radianwars DA2A = Moonstone DA3A = Wiitch DA4A = arCard+Wii DA6A = Automatii DA7A = Astronomy DA8A = Beer Belly Bill 3 Grillieren DA9A = Achtung Wii Kurve DAAA = WiiNetPuzzle DAHA = Accio Hacks DALJ01 = Dairantou Smash Brothers DX (Demo) DAMA = MegaCodeDownloader DAPA = Map Maker DARA = Anyregion Changer DASA = Aspirin DASE4Q = 傳奇米老鼠 試玩版(美) DATA = AnyTitle Deleter DATD = AnyTitle Deleter DAUEPZ = Country Dance (Demo) DAVA = Avoidance DAVE01 = Mystery Case Files: The Malgrave Incident (Demo) DAWA = Abuse Wii DAXE01 = 薩爾達傳說 天空之劍 試玩版(歐) DAXP01 = 薩爾達傳說 天空之劍 試玩版(歐) DB0A = Spitits DB2A = Mad Bomber DB3A = Squarez DB5A = mapbf DB7A = Blacks Dash DB9A = Robi DBAA = BowFishing Action DBBA = Balance Board Tools DBBE18 = 戰鬥陀螺 爆神須佐之男來襲 試玩版(美) DBCA = BootMii Configuration Editor DBDA = Bluedump DBGA = BlastGuy DBIA = Boot It DBKE69 = 轟炸方塊 試玩版(美) DBKP69 = 轟炸方塊 試玩版(歐) DBLA = BlueMSX-wii DBMA = BootIOS DBPA = Balance Board Pro DBRA = WiiBrowser DBSA = BrawlStats DBTA = Bolt Thrower DBUA = Buttoncast DBWA = Reversmii DBXA = Biniax 2 DBZJ08 = Biohazard Zero: Trial Edition DC6A = Frodo (C64-network.org) DC7A = Calculate DCAA = Wiicasino DCAE18 = 鬼來電 黑暗來信 試玩版(美) DCBA = CascadeBeneath DCCA = Christmascountdown DCDA = cIOS Downgrader DCEA = Cheat Manager DCFA = Coverfloader DCGA = Ctr-Gcs DCHA = Wiichatter DCHEAF = 我們的啦啦隊 試玩版(美) DCHJAF = 大家的啦啦隊 限定收藏版(日) DCIA = cIOS Installer DCLA = Configurable USB Loader DCMA = Wiicm DCNA = Nandclean DCOA = Connectmii DCPA = Splatter Castle DCRA = 都市打靶(歐) DCSA = Cert.sys Extractor DCTA = Christmas-Type Adventure Time DCUA = cIOS Uninstaller DCVA = WiiColEm DCWA = WiiMC Channel Installer DCXA = ComixChannel DCYA = Cylinder Dodge DD2A = Double Dash Wii DD2P41 = 舞力全開2 試玩版(歐) DD3A = Dario DD5A = Dcvg5k DD9A = Dungeons DDAA = Darkcorp DDBA = DOSBox Wii DDCA = d2x cIOS Installer DDDA = Disk Drive Lighter DDEA = WiiModder DDFA = Defendguin DDHA = Homebrew Disc Launcher DDIA = DiiLC DDLA = 磁盤裝載軟件(歐) DDMA = 龍媒播放器(歐) DDOA = DOP-Mii DDRA = 頂級王牌 神秘博士(歐) DDSA = DeSmuME DDVA = Devolution DDWA = DOP Mii Wiibrew Edition DDWE18 = 黑影之塔 試玩版(美) DDWX18 = Lost In Shadow - Best Buy (Demo) DE2A = Doubledown DE5A = Pictogrid DE7A = Commander Keen DE9A = Wii Bash DEAA = Headtracking Demo DEBA = Pong Breaker DEDA = Txted DEEA = Eeeek Eeeeek Hooooook DEFA = Fuse DEHA = Chess DEME = PunEmu DEPA = Pacman DERA = Elongated Reptile DETA = MPlayer TT DEWA = Wii Exhibit DEZP8P = Billy Hatcher and the Giant Egg (Demo) DF0A = Mini FSToolbox DF2A = Da ShAmAn DF3A = Briickout DF4A = Star Catching DF5A = Strobe Alarm Clock DF6A = Wii Quizz DF7A = Chatnoir DF8A = Trinary DF9A = Chunk Munch DFBA = Fsbrowser DFEA = FlipEm DFFA = Simple fs dumper DFGA = Smashing! DFIA = Fceugx Channel Installer DFLA = Starfall DFMA = FMyLife DFRA = FridgeMagnets DFSA = Fstoolbox DFTA = FTP服務器(歐) DFUA = Fuse DG3A = Giddy 3 DG7A = WiiPeng DG8A = Abusimbel Deluxe DG9A = Garnatron DGBA = GeexBox播放器(歐) DGCA = GC備份加載器(歐) DGEA = GeckoOS DGFA = Guitars On Fire DGGA = Wii Rick Dangerous DGIA = Gravitii DGKA = ProjectGMC DGMA = GCMM DGPA = 世嘉MD模擬器(歐) DGSA = Shooting Gallery DGWA = Goodbye World DGXA = GxGeo DH7A = Harmony's Nightmare DH9A = Prophecy DHBA = 自制頻道瀏覽器(歐) DHCA = Hero City DHDA = Hidtest DHEA = Helium Boy DHFA = Homebrew Filter DHGA = HuGo-GX DHHA = HHexen DHHJ8J = 涼宮春日的激動(日) DHIA = HackMii Installer DHKE18 = 努力工作的人 試玩版(美) DHLA = Heli DHMA = CharioMan DHSA = Homebrew Sorter DHTA = Hatari DHWA = We are nowhere DHXA = Hex DI5A = Tanks DI7A = ExistenzE DI8A = Ios58 Installer DI9A = Barrage DIBA = Revolt of the Binary Couriers DICA = Cubic DIEA = EasyIOS DIGA = Categorii DIIA = iiii DIMA = Inspectmii DINA = Mii Installer DIRA = Ironing Maiden DISA = Wii Supersonic DITA = IOS236 Installer DIXA = cIOSx installer DIYP01 = New Super Mario Bros. Wii 0-4 D.I.Y. DJAA = Arcade Jigsaw DJCA = Wii JellyCar DJFA = Joyflow DJJA = Jumping Jack DJQA = 寶石探秘(歐) DJWA = Wii System Menu DJZA = JzintvWii DK1A = Karaokii DK3A = Sketch Fight DK4A = Drawingbox DK6A = King of Fighters: Flames of Courage DK6E18 = 轉轉球迷宮2 試玩版(美) DK6J18 = 轉轉球迷宮2 試玩版[平衡板][WiFi](日) DK7A = Uschtris DKBA = RPG Baker DKCA = Tick Tock Car Race DKCP01 = Darky Kart Riivo DKDA = Darkcube DKHA = Katakana and Hiragana Practice DKKA = Koreankii DKOA = Komopong DKPA = Kidspaint DKSA = Wii Stpp DKTA = Taiko DKWA = Kurushi DKWE01 = Darky Kart Wii Vol. 1 DKWE02 = Darky Kart Wii Vol. 2 DKWE03 = Darky Kart Wii Vol. 3 DKWE04 = Darky Kart Wii Vol. 4 DL3A = Ballion DL4A = LPairs DL5A = Gameload DL7A = LabClone DLBA = My Little Ball DLCA = Dance Clone DLDA = Devilock DLEA = Preloader DLFA = LifeMii DLGA = Gravity Glider DLIA = WiiMod Lite DLLA = Lolicopocalypse DLMA = 自制程序裝載器(歐) DLNA = Lander DLOA = Lightsout DLPA = Lopan DLSE64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLSP64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLTA = Leveltool DLUA = WiiLauncher DLXA = Linux Installer DLZEPW = Super Smash Bros Phoenix Wings DM0A = Pom DM5A = Missle Command DM7A = Matches DM9A = Checkregion DMAA = Mame Wii DMBA = Multiboot(美) DMCA = Cleanrip mod DMDA = WiiMod DMEA = Mii Extractor DMFA = WiiMednafen DMGA = Mighty Channels DMHA = NanoMechas DMHE08 = 魔物獵人 3 試玩版(美) DMHJ08 = 魔物獵人 3 試玩版[WiFi](日) DMIA = DIOS MIOS Booter DMJA = 自制 麻將 Wii(歐) DMKE01 = Mario Kart Wii 2 DMLA = Mighty Loader DMMA = 我的自制菜單(美) DMNA = Magic Number DMOA = cMIOS installer DMPA = MPlayerCE播放器(歐) DMRA = MIOS Patcher DMSA = ShutMiiReboot DMSP4Q = 迪斯尼電影 想唱就唱(歐) DMTA = Metronome DMUA = Multi Mod Manager DMWA = Wakemiiup DN0A = Thatother DN7A = Alien Breed DN9A = Point and No Click DNAA = Ncard DNCA = NeoCD-Wii DNDA = Nintendont DNEA = Gravity DNGA = NeoGammA加載器(歐) DNHA = Headings DNIA = Bugin DNKA = Neko Project II DNMA = Newo Model Viewer DNNA = Save installer DNOA = O.T.T.F. DNPA = NeoPopWii DNRA = Newo Runner DNSA = Newo Shooter DNTA = NeoTanks DNUEDA = Naruto Clash of Ninja 2 (Demo) DNWA = Nowell DO2A = O2EM DO3A = Three Point O DO4A = MTP DO5A = Planet Hively DO6A = Mini MP3 Player DOCA = Code Downloader DOEA = ShowTest DOGA = Wii Maze of Galious DOHA = HighOctane DOIA = Neogamma IOS Switcher DOMA = Mole DONA = Offline Network Enabler DOOA = Doom DOPA = PowerCheck DORA = Rebooter DOTA = OpenTTD DP0A = Starplit DP1A = Italian Parking DP2A = Pong2 DP3A = Inkpoly DP4A = Piirates DP5A = Pix DP6A = IOS36 patcher DP7A = Brawl+ Updatifier DP8A = Timeless DP9A = Alien Puzzle Wii DPAA = WiiPaintBall DPBA = Priibootergui DPCA = Cherophobe DPEA = PieChart DPFA = Pwiictogrid DPGA = Pingus DPIA = Patched IOS 80 Installer for vWii DPIE18 = 裝扮聚會 試玩版(美) DPJA = Project M Launcher DPKA = Physco DPLA = Priiloader(歐) DPMA = Music Painter DPNA = RPG Pineapple Apocalypse DPNP08 = P.N.03 (Promo) DPOA = Postloader DPPA = Project Panic DPRA = PlasmaRaketti DPSA = Playstats DPTA = Two Point Five DPVA = Pattview DPWA = Pimp my Wii DQ1A = Q1rev DQ2A = Q2rev DQ6A = Light DQ7A = Quake DQ8A = LuaFWii DQ9A = Wiihttpd DQAJK2 = 水瓶座棒球(日) DQAJSC = 水瓶座棒球 (猫星汉化版) DQBA = Bible Quiz DQCA = Q2ctfrev DQGP69 = 我的模擬人生 賽車 試玩版(歐) DQRA = Qrevpak DQWA = Quakegx DR0A = Rokoban DR1A = Wii Whiteboard DR3A = Death Star Run DR4A = Rock Paper Scissors DR5A = Briicks DR6A = Reader DR7A = RockBlueMet DR8A = Operation DR9A = PixelPlot DRAA = RetroArch-Wii DRBA = Rock Band 2 Wad Installer DRCA = Wiicross DRDA = Drawmii DREA = Wiirecipe DRFA = Radiofeeds DRGA = Reggie Dumper DRIA = Cleanrip DRKA = Robotfindskitten DRMA = Mr. Sitwell DRME18 = 奇幻房間 試玩版(美) DROA = SlimeRoll DRP22Q = 自制 唱吧 下載版(歐) DRPA = Marcos Lopez Part II DRRA = Riiper DRSA = RedSquare DRTA = Tetris Custom DRUA = Radiofeeds Updater DRVA = Residualvm DRWA = Winterman DRZA = Zerace DS0A = ShootMii DS1A = Another Rock Paper Scissors DS2A = Swingball2 DS3A = Senet DS4A = Sar DS5A = Snaketwo DS6A = Scogger DS7A = Swing Ball DS8A = Scape DS9A = Minesweeper DSAA = Schism Tracker DSBA = SpaceBubble DSCA = Softchip DSDA = SuperDump 1.3(美) DSEA = Settings Editor GUI DSFA = Sciifii DSFE7U = 朧村正(美) DSGA = Savegame Manager DSHA = SysCheck HacksDen Edition DSIA = Simple IOS Patcher DSKA = SockDreams DSLA = Wii Stella DSMA = 世嘉SMS模擬器(歐) DSNA = SNES9x超任模擬器(美) DSOA = Bermuda Syndrome Wii DSPA = Super Star Shooter DSQA = Sqrxz DSRA = Wiistrobe DSRJ8P = 音速小子 索尼克與秘密的戒指 試玩版(日) DSSA = RSSMii DSTA = Wii紙牌(歐) DSUA = Super Mario War DSVA = ScummVM模擬器(美) DSWA = SuperTux Wii DSXA = Super Pixel Jumper DSYA = Syscheck DT0A = Tower Defense DT1A = Turnip DT2A = Matching Cards DT3A = Bichejos DT4A = Soduku DT5A = Poker DT6A = Simon DT7A = TheyDoNotDie DTAA = Wii Tac Toe DTCA = The Catachthonic DTDA = Descent DTEA = Topedit DTFA = 模擬NAND中遊戲運行器(美) DTHA = Heretic DTIA = Wiitriis DTJA = Trojan DTKA = Tick Tock Tank Fight DTLA = TailTale DTLX01 = Action Replay DTMA = Tetrominos DTNA = Tunnel DTOA = Tong DTPA = Paintown DTRA = Trucha Bug Restorer DTSA = Desert Bus DTTA = Toddtris DTWA = Wiitweet DTXA = Texttris DU0A = Dumpmiinand DU7A = Uno DU8A = RealWnd DU9A = Harmonium DUAA = UAE Wii DUAP01 = DU Super Mario Bros. : Anniversary Edition DUBA = Multibu DUCE01 = Kustom Mariokart Wii DUDA = Duck Hunt DUDE01 = New Super Mario Bros. Wii Scooby-Doo! Hack DUGA = Guitar Fun DUIA = ChessUI DULA = USB Loader GX DUNA = Uname DUSA = bootOperaModUSB DUTG = DU Tag Channel DUWA = Waninkoko's USB Loader DV0A = Remove Preloader Hacks DV3A = DVD Browser DV9A = SensorMii DVDA = cIOS DVD Dumper DVGA = The Video Game DVHA = Horror Vacui DVIA = Vbagx Channel Installer DVJP08 = Viewtiful Joe (Promotional demo) DVLA = Vigiroth le livreur DVNA = Wiivnc DVOA = Vectoroids DVPA = Progressiveswitch DVSA = GameCube Saver DVXA = VectrexWii DW1A = Intuitwars DW5A = Marel DW6A = Wiicraft DW7A = Ravewild DWAA = WiiApple DWBA = WiirtualBoy DWCA = WiiFlow Channel Installer DWDA = Wiiflow Banner Downloader DWEA = Wii地球(歐) DWEPA4 = 實況足球2008 試玩版(歐) DWFA = WiiFlow DWHA = WiiHandySDL DWJA = Jewel DWKA = Wiibreaker DWLA = Wii-Linux DWMA = Wad管理器 v1.5(美) DWNA = Nwancat DWPA = WiiPhysics DWRA = Wii電臺(美) DWSA = WiiSX DWTA = Wiituka DWUA = Wufe DWWA = Winters End DWXA = Wii資源管理器(歐) DX3A = Midway Space Invaders Emulator DX4A = Brawl DX Launcher DX5A = MP3+G Player DX6A = Build Blocks DX7A = Roxoptr2 DX8A = Hexen DX9A = Sand Traps DXBA = Wii X Ball DXCA = CorsixTH DXDA = DVDX DXEA = SDExplorer DXHA = Texas Holdem Poker DXIA = Piixelator DXLA = WiiXL DXNA = bootnetflix DXPA = Xeempongwii DXQA = Quadrax DXSA = Save extractor DXSE18 = 運動大集錦 試玩版(美) DXTA = The Lone Pixel DXXA = Hexxagon DXYA = xyzzy DXZA = Megazeux DY5A = Darkcorp Lite DY6A = Liqwiid Wars DY9A = TetWiis DYAA = Syasokoban DYBA = Yabause DYCA = Tetricycle DYEA = Epilepsii DYGA = Yog DYHA = Hypno Blast DYIA = Chippy DYMA = YAWMM DYOA = Toy Wars DYPA = PongYourWii DYSA = Shiny tank DYTA = Newo Tokyo DYUA = UFO Racer DYWA = Yahtzwii DYYA = System Setting Replace Tool DZ0A = Eject DZ7A = SameGame DZ8A = WiiMPC DZ9A = Teeter Torture DZDE01 = 薩爾達傳說 曙光公主 試玩版(美) DZDP01 = 薩爾達傳說 曙光公主 試玩版(歐) DZIA = Ziip DZPA = Puzsion DZQA = Quizz DZRA = Rezerwar DZSA = Szigoy DZXA = FBZX Wii DZYA = Snake Two DZZA = OpenJazz E52E = 1942 E52J = 1942 E52P = 1942 E53E = Black Tiger E53J = Black Dragon E53P = Black Tiger E54E = Ghosts 'n Goblins E54J = Makaimura E54P = Ghost'n Goblins E55E = Commando E55J = Senji no Ookami E55P = Commando E56E = Exed Exes E56J = Exed Eyes E56P = Exed Exes E57E = SonSon E57J = Son Son E57P = SonSon E58J = Mr. Do! E59J = Karate Dou E5AJ = Ikki E5BJ = Shanghai E5VJ = Renegade E5WE = Wonder Boy in Monster Land E5WJ = Wonder Boy in Monster Land E5XJ = Puyo Puyo Tsu E5YJ = Puyo Puyo E5ZE = Super Hang-On E5ZJ = Super Hang-On E62E = Space Harrier E62J = Space Harrier E62P = Space Harrier E63E = Shinobi E63J = Shinobi Virtual Arcade E63P = Shinobi E64J = Rolling Thunder 2 E65J = Valkyrie no Densetsu E66J = Ordyne E67J = Dig Dug E68J = Galaga E69J = Baraduke E6AJ = Moon Cresta E6BJ = Crazy Climber E6CJ = Rompers E6DJ = Toy Pop E6EJ = Libble Rabble E6FJ = Galaxian E6GJ = Namco Quester E6HJ = Face Off E6IJ = Trink Force E6JJ = Bakutotsu Kijuutei: BaRaDuKe II E6KJ = Chouzetsu Rinjin - Berabow Man E6LJ = Marchen Maze E6ME = Tecmo Bowl E6MJ = Tecmo Bowl E6NE = Solomon's Key E6NJ = Solomon no Kagi E6NP = Solomon's Key E6OJ = Bomb Jack Arcade E6PE = Ninja Gaiden E6PJ = Ninja Ryukenden Arcade E6PP = Ninja Gaiden E6QE = Rygar E6QJ = Argos no Senshi E6QP = Rygar E6SJ = New Rally-X E6VE = Zaxxon 3-D E6VJ = Zaxxon E6VP = Zaxxon E6WE = Golden Axe E6WJ = Golden Axe E6WP = 戰斧(歐) E6XE = Altered Beast E6XP = Altered Beast E6YJ = Space Invaders E6ZE = Starforce E6ZJ = Star Force E6ZP = Star Force E72J = Starblade E73E = Mappy E73J = Mappy E73P = Mappy E74J = Cosmo Gang the Puzzle E75J = Genpei Toumaden E76J = Emeraldia E77J = The Return of Ishtar E78J = Solvalou E79E = Gaplus E79J = Gaplus E79P = Gaplus E7AJ = Grobda E7BJ = Dig Dug II E7CJ = Bosconian E7EJ = Dragon Buster E7FJ = Dragon Saber E7GJ = Dragon Spirit E7HJ = Xevious E7IJ = Finest Hour E7JJ = Knuckle Heads E7KJ = Pac-Mania E7LJ = Cosmo Gang the Video E7MJ = Phelios E7NJ = Rolling Thunder E7OJ = Burning Force E7PJ = Marvel Land E7QJ = Galaga '88 E7RJ = Wonder Momo E7SJ = Assault E7TJ = Hopping Mappy E7UJ = Splatterhouse E7VJ = Cyber Sled E7WJ = Numan Athletics E7XJ = Youkai Douchuki E7YJ = Sky Kid E7ZE = The Tower of Druaga E7ZJ = Druaga no Tou E7ZP = The Tower of Druaga EA2E = Metal Slug 2 EA2J = Metal Slug 2 EA2P = Metal Slug 2 EA3J = Galaxy Fight: Universal Warriors EA4E = Samurai Showdown III EA4J = Samurai Spirits Kibeniro Musouken EA4P = Samurai Shodown III EA5E = Fatal Fury 3: Road to the Final Victory EA5J = Garou Densetsu 3: Road to the Final Victory EA5P = Fatal Fury 3: Road To The Final Victory EA6E = The King of Fighters '96 EA6J = The King of Fighters '96 EA7E = Samurai Shodown IV: Amakusa's Revenge EA7J = Samurai Spirits: Amakusa Kourin EA8E = Ironclad EA8J = Ironclad: Chotetsu Brikinger EA8M = Iron Clad EA9J = Waku Waku 7 EAAE = Fatal Fury EAAJ = Garou Densetsu: Shukumei no Takatai EAAP = Fatal Fury EABE = World Heroes EABJ = World Heroes EABP = World Heroes EACE = Magician Lord EACJ = Magician Lord EACP = Magician Lord EADE = Art of Fighting EADJ = Ryuuko no Ken EADP = Art of Fighting EAEE = Samurai Showdown EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen EAEP = Samurai Showdown EAFE = Blue's Journey EAFJ = Raguy EAFP = Blue's Journey EAGE = The King of Fighters '94 EAGJ = The King of Fighters '94 EAGP = The King of Fighters '94 EAHE = Baseball Stars 2 EAHJ = Baseball Stars 2 EAHP = Baseball Stars 2 EAIE = Top Hunter EAIJ = Top Hunter EAIP = Top Hunter EAJE = Metal Slug EAJJ = Metal Slug EAJP = Metal Slug EAKE = Burning Fight EAKJ = Burning Fight EAKP = Burning Fight EALE = Art of Fighting 2 EALJ = Ryuuko no Ken 2 EALP = Art of Fighting 2 EAME = Ninja Combat EAMJ = Ninja Combat EAMP = Ninja Combat EANE = Fatal Fury 2 EANJ = Garou Densetsu 2: Aratanaru Tatakai EANP = Fatal Fury 2 EAOE = King of the Monsters EAOJ = King of the Monsters EAOP = King of the Monsters EAPE = Ninja Commando EAPJ = Ninja Commando EAPP = Ninja Commando EAQE = WORLD HEROES 2 EAQJ = World Heroes 2 EARE = Neo Turf Masters EARJ = Neo Turf Masters EARP = Neo Turf Masters EASE = Samurai Showdown 2 EASJ = Shin Samurai Spirits Haoumaru Jigokuhen EASP = Samurai Shodown II EATE = WORLD HEROES 2 JET EATJ = World Heroes 2 Jet EAUJ = Twinkle Star Sprites EAVE = The King of Fighters ’95 EAVJ = The King of Fighters '95 EAVP = The King of Fighters '95 EAWE = Fatal Fury Special EAWJ = Garou Densetsu Special EAWP = Fatal Fury Special EAYJ = King of The Monsters 2 EAZE = WORLD HEROES PERFECT EAZJ = World Heroes Perfect EB2E = REAL BOUT FATAL FURY SPECIAL EB2J = Real Bout Garou Densetsu Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB6E = Metal Slug 3 EB6J = Metal Slug 3 EB6P = Metal Slug 3 EB7J = The Super Spy EB8E = SHOCK TROOPERS EB8J = Shock Troopers EB9J = Pulstar EBAE = Magical Drop II EBAJ = Magical Drop 2 EBAP = Magical Drop II EBBE = Fighters History Dynamite EBBJ = Fighter's History Dynamite EBBP = Karnov's Revenge EBCJ = Flying Power Disc EBDE = Magical Drop III EBDJ = Magical Drop III EBDP = Magical Drop 3 EBEE = Street Slam EBEJ = Dunk Dream EBEP = Street Hoop EBFE = Spin Master EBFJ = Miracle Adventure EBFP = Spin master EBGE = The King of Fighters '97 EBGJ = The King of Fighters '97 EBKJ = Last Resort EBLJ = Tsuukai GanGan Koushinkyoku EBMJ = Fire Suplex EBNJ = Fu'un Mokushiroku: Kakutou Sousei EBOJ = Fu'un Super Tag Battle EBPJ = League Bowling EBQE = NINJA MASTER'S EBQJ = Ninja Master's Haou Ninpou-chou EBRJ = Joy Joy Kid EBSE = The Path of the Warrior: Art of Fighting 3 EBSJ = Art of Fighting: Ryuuko no Ken Gaiden EBTJ = Crossed Swords EBUE = 2020 SUPER BASEBALL EBUJ = Super Baseball 2020 EBVJ = Shin-Oh-Ken EBWE = SENGOKU EBWJ = Sengoku Denshou EBXE = SENGOKU 2 EBXJ = Sengoku 2 EBZE = REAL BOUT FATAL FURY EBZJ = Real Bout Garou Densetsu ECAE = Real Bout Fatal Fury 2: The Newcomers ECAJ = Real Bout Garou Densetsu 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECDJ = Stakes Winner: G1 Kanzen Seihahe no Michi ECEE = THE LAST BLADE 2 ECEJ = Bakumatsu Rouman Dai Ni Maku: Gekka no Kenshi ECFJ = Blazing Star ECGE = Shock Troopers: 2nd Squad ECGJ = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECJE = The King of Fighters '99 ECJJ = Metal Slug 4 ECKE = NAM-1975 ECKJ = NAM-1975 ECLJ = Stakes Winner 2 ECMJ = Tokuten Oh: Honoo no Libero ECNE = Sengoku 3 ECNJ = Sengoku Denshou 2001 ENDP01 = New SUPER MARIO BROS. Wii 20 The End For Now EVOP01 = New Super Mario Bros. Wii 0-5 Evolution FA2J = Exerion FA3J = Formation Z FA4J = Devil World FA4P = Devil World FA5J = Fire Emblem: Ankoku Ryu to Hikari no Tsurugi FA6E = Donkey Kong Jr. Math FA6J = Donkey Kong Jr. no Sansuu Asobi FA6P = Donkey Kong Jr. Math FA7E = Yoshi FA7J = Yoshi no Tamago FA7K = Yoshi FA7P = Mario & Yoshi FA8E = Kirby's Adventure FA8F = Kirby's Adventure FA8J = Hoshi no Kirby: Yume no Izumi no Monogatari FA8K = Kirby's Adventure FA8P = Kirby's Adventure FA9E = Zelda II: The Adventure of Link FA9J = The Legend of Zelda 2: Link no Bouken FA9P = Zelda II: The Adventure of Link FAAE = Donkey Kong FAAJ = Donkey Kong FAAK = Donkey Kong FAAP = Donkey Kong FABE = Donkey Kong Jr. FABJ = Donkey Kong Jr. FABP = Donkey Kong Jr. FACE = Pinball FACJ = Pinball FACP = Pinball FADJ = Gomoku Narabe Renju FAFE = Mario Bros. FAFJ = Mario Bros. FAFK = Mario Bros. FAFP = Mario Bros. FAGE = Super Mario Bros. FAGJ = Super Mario Bros. FAGK = Super Mario Bros. FAGP = Super Mario Bros. FAHE = Tennis FAHJ = Tennis FAHP = Tennis FAIE = Soccer FAIJ = Soccer FAIP = Soccer FAJE = Ice Hockey FAJJ = Ice Hockey FAJP = Ice Hockey FAKE = The Legend of Zelda FAKJ = Zelda no Densetsu FAKK = The Legend of Zelda FAKP = The Legend of Zelda FALE = Baseball FALJ = Baseball FALP = Baseball FAME = Wario's Woods FAMJ = Wario no Mori FAMP = Wario's Woods FANE = Urban Champion FANJ = Urban Champion FANK = Urban Champion FANP = Urban Champion FAOE = Solomon's Key FAOJ = Solomon no Kagi FAOP = Solomon's Key FAPE = NES Open Tournament Golf FAPJ = Mario Open Golf FAPK = NES Open Tournament Golf FAPP = NES Open Tournament Golf FAQJ = Ninja Jajamaru-kun FAQL = Ninja JaJaMaru-kun FAQN = Ninja JaJaMaru-kun FARE = Gradius FARJ = Gradius FARP = Gradius FASE = Xevious FASJ = Xevious FASK = Xevious FASP = Xevious FATE = The Legend of Kage FATJ = Kage no Densetsu FAVE = Tecmo Bowl FAVJ = Tecmo Bowl FAWE = Elevator Action FAWJ = Elevator Action FAXE = Pac-Man FAXJ = Pac-Man FAXK = Pac-Man FAXP = Pac-Man FAYJ = Ikki FAZJ = Field Combat FAZK = Downtown Nekketsu Koushinkyoku: Soreyuke Daiundoukai FB2J = Super Mario Bros. 2 FB2L = Super Mario Bros.: The Lost Levels FB2N = Super Mario Bros.: The Lost Levels FB3J = Valkyrie no Bouken: Toki no Kagi Densetsu FB4E = Lunar Pool FB4J = Lunar Ball FB4P = Lunar Pool FB5E = Zanac FB5J = Zanac FB6J = Front Line FB7J = Nuts & Milk FB8J = Challenger FB9J = Pooyan FBAJ = Smash Ping Pong FBAL = Smash Table Tennis FBBE = Mach Rider FBBJ = Mach Rider FBBP = Mach Rider FBCE = Excitebike FBCJ = Excitebike FBCP = Excitebike FBDE = Kid Icarus FBDJ = Hikari Shinwa: Palutena no Kagami FBDK = Kid Icarus FBDP = Kid Icarus FBEE = Ice Climber FBEJ = Ice Climber FBEP = Ice Climber FBHE = Castlevania FBHJ = Akumajou Dracula FBHP = Castlevania FBIE = Punch Out!! Featuring Mr. Dream FBIJ = Punch-Out!! FBIP = Punch-Out!! FBJE = Mighty Bomb Jack FBJJ = Mighty Bomb Jack FBJP = Mighty Bomb Jack FBKE = Teenage Mutant Ninja Turtles FBKJ = Gekikame Ninja Den FBKP = Teenage Mutant Ninja Turles FBLE = Lode Runner FBLJ = Lode Runner FBLM = Lode Runner FBNE = Ninja Gaiden FBNJ = Ninja Ryuukenden FBNM = Ninja Gaiden FBOJ = Gradius II FBQJ = Druaga no Tou FBRE = Galaga FBRJ = Galaga FBRK = Galaga FBRP = Galaga FBSE = Milon's Secret Castle FBSJ = Meikyuu Kumikyoku: Milon no Daibouken FBSM = Milon's Secret Castle FBUE = Adventures of Lolo FBUJ = Adventures of Lolo FBUK = Adventures of Lolo FBUP = Adventures of Lolo FBVJ = Tsuppari Oozumou FBWJ = Joy Mech Fight FBWK = Joy Mech Fight FBXJ = Famicom Wars FBYE = Super Mario Bros. 2 FBYJ = Super Mario USA FBYK = Super Mario USA FBYP = Super Mario Bros. 2 FBZE = Metroid FBZJ = Metroid FBZP = Metroid FC2J = Hanjuku Hero FC3E = Bubble Bobble FC3J = Bubble Bobble FC3K = Bubble Bobble FC3P = Bubble Bobble FC4J = Chack'n Pop FC5J = Ganbare Goemon Karakuki Douchuu FC6E = StarTropics FC6J = Startropics FC6P = StarTropics FC7E = NES Play Action Football FC7J = NES Play Action Football FC8E = Castlevania II Simon's Quest FC8J = Dracula II: Noroi no Fuuin FC8P = Castlevania II: Simon's Quest FC9J = Metal Slader Glory FCAE = Star Soldier FCAJ = Star Soldier FCEJ = Esper Dream FCEU = FCE Ultra任天堂FC模擬器(歐) FCFJ = Yie Ar Kung Fu FCGJ = TwinBee FCHJ = Flappy FCIJ = Volguard 2 FCJJ = SD Gundam World: Gachapon Senshi 2 - Capsule Senki FCNJ = Kekkyoku Nankyoku Daibouken FCNK = Antarctic Adventure FCOJ = Battle City FCPE = Balloon Fight FCPJ = Balloon Fight FCPP = Balloon Fight FCQE = Ninja Gaiden II: The Dark Sword of Chaos FCQJ = Ninja Gaiden Two FCRE = Adventure Island FCRJ = Takahashi Meijin no Boukenjima FCRK = Hudson's Adventure Island FCRP = Adventure Island FCSE = Super C FCSJ = Super Contra FCSP = Probotector II: Return of the Evil Forces FCTE = Mega Man FCTJ = RockMan FCTP = Mega Man FCUE = Volleyball FCUJ = Volleyball FCUP = Volleyball FCVE = Wrecking Crew FCVJ = Wrecking Crew FCVP = Wrecking Crew FCWE = Super Mario Bros. 3 FCWJ = Super Mario Bros. 3 FCWK = Super Mario Bros. 3 FCWP = 超級瑪莉歐兄弟3(歐) FCYE = Yoshi’s Cookie FCYJ = Yoshi no Cookie FCYK = Yoshi's Cookie FCYP = Yoshi’s Cookie FCZE = King's Knight FCZJ = Kings Knight FD2E = Double Dragon FD2J = Double Dragon FD2P = Double Dragon FD3J = Nekketsu Koukou Dodgeball-bu Soccer-hen FD3K = Nekketsu Koukou Dodgeball-bu Soccer-hen FD6E = Adventures of Lolo 2 FD6P = Adventures of Lolo 2 FD7E = Mega Man 3 FD7J = RockMan 3: Dr. Wily no Saigo?! FD7P = 洛克人3(歐) FDAE = Spelunker FDAJ = Spelunker FDAM = Spelunker FDBJ = Famicom Mukashi Banashi: Shin Onigashima - Kouhen FDCJ = Star Luster FDEJ = Mappy FDFE = Bases Loaded FDFJ = Moero!! Pro Yakyuu FDGE = Ghosts'n Goblins FDGJ = Makai-Mura FDGP = Ghosts'n Goblins FDIJ = Bokosuka Wars FDLE = Ninja Gaiden III: The Ancient Ship of Doom FDLJ = Ninja Gaiden Three FDNE = Mega Man 2 FDNJ = RockMan 2 FDNP = Mega Man 2 FDOE = Operation Wolf FDOJ = Operation Wolf FDOP = Operation Wolf FDPE = Blades of Steel FDPP = Blades of Steel FDQE = Double Dribble FDQP = Double Dribble FDRP = Skate or Die FDSJ = Famicom Tantei Club: Kieta Koukeisha (Kouhen) FDTE = Renegade FDTJ = Renegade FDUE = Super Dodge Ball FDUJ = Nekketsu Koukou Dodge Ball Bu FDVE = River City Ransom FDVJ = Downtown Nekketsu Monogatari FDVK = Downtown Nekketsu Monogatari FDVP = Street Gangs FDWJ = Downtown Special: Kunio-kun no Jidaigeki Dayo Zenin Shuugou! FDXJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo (Kouhen) FDYJ = Fire Emblem Gaiden FDZJ = Downtown Nekketsu Koushinkyoku FE5J = Toukaidou Gojuusan Tsugi FE6J = Ninja kun Majyou no Bouken FE7J = Ninja kun Ashura no Shou FE8J = Takeshi no Chousenjou FE9J = Ike Ike! Nekketsu Hockey-bu: Subette Koronde Dairantou FECE = Skykid FECJ = Sky Kid FEDJ = Dig Dug FEDL = Dig Dug FEDN = Dig Dug FEEJ = Tantei Jinguji Saburo: Shinjuku Chuo Koen Satsujin Jiken FEFJ = Detective Saburo Jinguji 2: Yokohama-Ko Renzoku Satsujin Jiken FEGJ = Tantei Jinguuji Saburo - Kikenna Futari - Zenkouhen FEHJ = Tantei Jinguuji Saburo: Toki no Sugiyuku Mama ni FEIE = City Connection FEIJ = City Connection FEIP = City Connection FEJJ = Nazo no Murasame Jou FELJ = Transformers: Convoy no Nazo FEMJ = Bio-Miracle Bokutte Upa FEML = Bio Miracle Bokutte UPA FEMN = Bio Miracle Bokutte UPA FENE = Life Force FENJ = Salamander FEOJ = Zoids: Mokushiroku FEPJ = Getsu Fuuma Den FEQE = Castlevania III: Dracula's Curse FEQJ = Akumajo Densetsu FEQP = Castlevania III Dracula's Curse FERE = Zoda’s Revenge: StarTropics II FERJ = Zoda's Revenge FERM = Startropics II: Zoda's Revenge FESE = Clu Clu Land FESJ = Clu Clu Land FESP = Clu Clu Land FEUE = Donkey Kong 3 FEUJ = Donkey Kong 3 FEUP = Donkey Kong 3 FEVJ = Atlantis no Nazo FEWJ = Dragon Buster FEXJ = Wagyan Land FF2J = Sugoro Quest: Dice no Senshi Tachi FF4E = BurgerTime FF4J = BurgerTime FF5E = Double Dragon II: The Revenge FF5J = Double Dragon 2: The Revenge FF6J = Ganbare Goemon 2 FF7J = Ganbare Goemon Gaiden: Kieta Ougon Kiseru FFAE = Final Fantasy FFAJ = Final Fantasy FFAM = Final Fantasy FFBJ = Final Fantasy II FFDE = Crash 'N The Boys Street Challenge FFDJ = Bikkuri Nekketsu Shin Kiroku! Harukanaru Kin Medal FFEE = A Boy and His Blob: Trouble on Blobolonia FFEP = A Boy and His Blob: Trouble on Blobolonia FFFJ = Final Fantasy III FFGJ = SD Gundam World: Gachapon Senshi - Scramble Wars FFJJ = Metal Max FFKJ = Championship Lode Runner FFLE = Princess Tomato in the Salad Kingdom FFLJ = Salad no Kuni no Tomato Hime FFME = Blaster Master FFMJ = Chou-Wakusei Senki MetaFight FFMP = Blaster Master FFNE = Mega Man 4 FFNJ = RockMan 4: Aratanaru Yabou!! FFNP = Mega Man 4 FFOJ = Moero TwinBee: Cinnamon Hakase o Sukue! FFPB = Ufouria: The Saga FFPJ = Furu Furu Park FFQE = Shadow of the Ninja FFQM = Shadow of the Ninja FFRE = Faxanadu FFRJ = Faxanadu FFRP = 沙納多(歐) FFTJ = Binary Land FFUE = Adventure Island 2 FFUJ = Takahashi Meijin no Bouken Jima II FFUP = Adventure Island 2 FFVE = S.C.A.T. FFVP = S.C.A.T.: Special Cybernetic Attack Team FFWP = Donkey Kong: Original Edition FFXJ = 25th Anniversary SUPER MARIO BROS. FFXP = Super Mario Brothers: 25th Anniversary Exclusive FFYE = Mega Man 5 FFYJ = RockMan 5: Blues no Wana!? FFZJ = Seicross FFZY = Contra FJOR = Kung Fu FMCA = The Goonies G01E01 = Super Smash Bros. Melee: SD Remix G01J01 = Super Smash Bros. Melee: SD Remix G01P01 = Super Smash Bros. Melee: SD Remix G02E01 = Super Smash Bros. Melee: 20XX Training Pack G02J01 = Super Smash Bros. Melee: 20XX Training Pack G02P01 = Super Smash Bros. Melee: 20XX Training Pack G2BE5G = Black & Bruised G2BP7D = Black & Bruised G2CD52 = True Crime: New York City G2CE52 = True Crime: New York City G2CP52 = True Crime: New York City G2CX52 = True Crime: New York City G2FD78 = Tak 2: The Staff of Dreams G2FE78 = Tak 2: The Staff of Dreams G2FF78 = Tak 2: The Staff of Dreams G2FP78 = Tak 2: The Staff of Dreams G2GJB2 = Mobile Suit Gundam: Gundam vs. Z Gundam G2KE8P = NHL 2K3 G2KP8P = NHL 2K3 G2ME01 = Metroid Prime 2: Echoes G2MEAB = Metroid Prime 3 (E3 Beta) G2MJ01 = Metroid Prime 2: Dark Echoes G2MP01 = Metroid Prime 2: Echoes G2OE41 = Prince of Persia: Warrior Within G2OP41 = Prince of Persia: Warrior Within G2PE6U = Spirits And Spells G2RE52 = Shrek SuperSlam G2SJGE = Shikigami no Shiro II G2TE52 = Tony Hawk's Underground 2 G2TP52 = Tony Hawk's Underground 2 G2VE08 = Viewtiful Joe 2 G2VJ08 = Viewtiful Joe 2: Blackfilm no Nazo G2VP08 = Viewtiful Joe 2 G2XE8P = Sonic Gems Collection G2XP8P = Sonic Gems Collection G3AD69 = Lord of the Rings: The Third Age G3AE69 = Lord of the Rings: The Third Age G3AF69 = Lord of the Rings: The Third Age G3AP69 = Lord of the Rings: The Third Age G3AS69 = Lord of the Rings: The Third Age G3BE9G = Serious Sam: Next Encounter G3BP54 = Serious Sam: Next Encounter G3BP9G = Serious Sam: Next Encounter G3DE6L = Carmen Sandiego: The Secret of the Stolen Drums G3DP6L = Carmen Sandiego: The Secret of the Stolen Drums G3DX6L = Carmen Sandiego: The Secret of the Stolen Drums G3EE51 = XGIII: Extreme G Racing G3EJ51 = XGIII: Extreme G Racing G3EP51 = XGIII: Extreme G Racing G3FD69 = TimeSplitters: Future Perfect G3FE69 = TimeSplitters: Future Perfect G3FF69 = TimeSplitters: Future Perfect G3FP69 = TimeSplitters: Future Perfect G3FS69 = TimeSplitters: Future Perfect G3JEAF = Curious George G3LE8P = Super Monkey Ball Adventure G3LP8P = Super Monkey Ball Adventure G3ME41 = Tom Clancy's The Sum of All Fears G3MP41 = The Sum of All Fears G3NJDA = NARUTO Gekitô Ninja Taisen! 3 G3QEA4 = Teenage Mutant Ninja Turtles 3: Mutant Nightmare G3RD52 = Shrek 2 G3RE52 = Shrek 2 G3RF52 = Shrek 2 G3RP52 = Shrek 2 G3SE41 = Bust-A-Move 3000 G3TJ8P = Derby Tsuku 3: Derby Uma O Tsukurou! G3VE69 = NBA Street Vol.3 G3VP69 = NBA Street Vol.3 G3XE52 = X-Men: The Official Game G3XP52 = X-Men: The Official Game G3YP52 = Shrek Super Slam G3YX52 = Shrek Super Slam G3YY52 = Shrek Super Slam G4AEE9 = Harvest Moon: Magical Melody G4BE08 = Resident Evil 4 G4BJ08 = Biohazard 4 G4BP08 = Resident Evil 4 G4CE54 = Charlie and the Chocolate Factory G4CP54 = Charlie and the Chocolate Factory G4FD69 = FIFA 07 G4FE69 = FIFA Soccer 07 G4FF69 = FIFA 07 G4FP69 = FIFA 07 G4GEE9 = Harvest Moon: Another Wonderful Life G4IE52 = Shrek Smash n' Crash Racing G4IP52 = Shrek Smash n' Crash Racing G4ME69 = The Sims Bustin' Out G4MP69 = The Sims: Bustin' Out G4NJDA = NARUTO Gekitô Ninja Taisen! 4 G4OE69 = The Sims 2 : Pets G4OP69 = The Sims 2 : Pets G4QE01 = Super Mario Strikers G4QJ01 = Super Mario Strikers G4QP01 = Mario Smash Football G4SE01 = The Legend of Zelda: Four Swords Adventures G4SJ01 = The Legend of Zelda: Four Swords + G4SP01 = The Legend of Zelda: Four Swords Adventures G4ZE69 = The Sims 2 G4ZP69 = The Sims 2 G5BE4Z = Strike Force Bowling G5DE78 = Scooby-Doo! - Unmasked G5DP78 = Scooby-Doo! - Unmasked G5NEAF = Namco Museum 50th Anniversary G5NP69 = Namco Museum 50th Anniversary G5SE7D = Spyro: A Hero's Tail G5SP7D = Spyro: A Hero's Tail G5TE69 = Tiger Woods PGA Tour 2005 G5TP69 = Tiger Woods PGA Tour 2005 G62E54 = Major League Baseball 2k6 G63E41 = Tom Clancy's Rainbow Six 3 G63P41 = Tom Clancy's Rainbow Six 3 G6FD69 = 2006 FIFA World Cup G6FE69 = 2006 FIFA World Cup G6FF69 = 2006 FIFA World Cup G6FP69 = 2006 FIFA World Cup G6ME69 = Madden NFL 06 G6MP69 = Madden NFL 06 G6NE69 = NBA Live 06 G6NP69 = NBA Live 06 G6QE08 = Mega Man Anniversary Collection G6SE7D = The Legend of Spyro: A New Beginning G6SP7D = The Legend of Spyro: A New Beginning G6TE5G = Teen Titans G6TP5G = Teen Titans G6TP78 = Teen Titans G6WE69 = Tiger Woods PGA Tour 06 G6WP69 = Tiger Woods PGA Tour 06 G7ME69 = Madden NFL 07 G89EAF = Pac-Man World Rally G8FE8P = Virtua Quest G8ME01 = Paper Mario: The Thousand-Year Door G8MJ01 = Paper Mario RPG G8MP01 = Paper Mario: The Thousand-year Door G8OJ18 = Bobobo-bo Bo-bobo Dassutsu! Hajike Royale G8SJAF = Battle Stadium D.O.N G8WE01 = Battalion Wars G8WP01 = Battalion Wars G94E01 = Interactive Multi-Game Demo Disc - August 2002 G95E01 = Interactive Multi-Game Demo Disc - July 2002 G96E01 = Interactive Multi-Game Demo Disc - June 2002 G97E01 = Interactive Multi-Game Demo Disc - March 2002 G97P01 = Interactive Multi Game Demo Disc - September 2002 G97U01 = Interactive Multi-Game Demo Disc - September 2002 G98E01 = Interactive Multi-Game Demo Disc - January 2002 G98P01 = Interactive Multi Game Demo Disc May 2002 G99E01 = Interactive Multi-Game Demo Disc - October 2001 G99P01 = Interactive Multi Game Demo Disc March 2002 G9BEE9 = Mark Davis Pro Bass Challenge G9RD7D = Crash Tag Team Racing G9RE7D = Crash Tag Team Racing G9RF7D = Crash Tag Team Racing G9RP7D = Crash Tag Team Racing G9SE8P = Sonic Heroes G9SJ8P = Sonic Heroes G9SP8P = Sonic Heroes G9TD52 = Shark Tale G9TE52 = Shark Tale G9TF52 = Shark Tale G9TI52 = Shark Tale G9TJC0 = Shark Tale G9TP52 = Shark Tale GA2E51 = All-Star Baseball 2002 GA3E51 = All-Star Baseball 2003 GA4E51 = All-Star Baseball 2004 GA7E70 = Backyard Sports Baseball 2007 GAAJ08 = Disney's Mickey & Minnie Trick & Chase GABEAF = Zatch Bell! Mamodo Fury GACE5H = Army Men: Air Combat The Elite Missions GAEJ01 = Doubutu no Mori e+ GAFE01 = Animal Crossing GAFJ01 = Animal Forest + GAFP01 = Animal Crossing GAFU01 = Animal Crossing GAGP70 = Asterix & Obelix XXL GAHEGG = Alien Hominid GAKE5D = Midway Arcade Treasures GALE01 = Super Smash Bros. Melee GALJ01 = Dairantou Smash Brothers DX GALP01 = Super Smash Bros. Melee GAME5H = Army Men Sarges War GANE7U = Animaniacs: The Great Edgar Hunt GANP7U = Animaniacs: The Great Edgar Hunt GAPE52 = American Chopper 2 - Full Throttle GAQE6S = Aquaman: Battle of Atlantis GARE5H = Army Men: RTS GASE8P = Sonic Adventure DX: Director's Cut (Review Prototype) GASJ8P = Sonic Adventure DX GATE51 = ATV Quad Power Racing 2 GATP51 = ATV Quad Power Racing 2 GAUE08 = Auto Modellista GAUJ08 = Auto Modellista: U.S.-tuned GAVE78 = Avatar The Last Airbender GAVP78 = Avatar: The Legend of Aang GAVY78 = Avatar: The Legend of Aang GAXE5D = The Ant Bully GAYE5D = Midway Arcade Treasures 2 GAZD69 = Harry Potter and the Prisoner of Azkaban GAZE69 = Harry Potter and the Prisoner of Azkaban GAZF69 = Harry Potter and the Prisoner of Azkaban GAZH69 = Harry Potter and the Prisoner of Azkaban GAZI69 = Harry Potter and the Prisoner of Azkaban GAZJ69 = Harry Potter to Azkaban no Shuujin GAZM69 = Harry Potter and the Prisoner of Azkaban GAZP69 = Harry Potter and the Prisoner of Azkaban GAZS69 = Harry Potter and the Prisoner of Azkaban GB2J18 = Bomberman Land 2 GB3E51 = BMX XXX GB3P51 = BMX XXX GB4E51 = Burnout 2: Point of Impact GB4P51 = Burnout 2: Point of Impact GBAE8P = NBA 2K2 GBDE5G = BloodRayne GBDP7D = BloodRayne GBDS7D = BloodRayne GBFE70 = Backyard Football GBGE5G = Bomberman Generation GBGP7D = Bomberman Generation GBHDC8 = Mystic Heroes GBHEC8 = Mystic Heroes GBHFC8 = Mystic Heroes GBHJC8 = 戰鬥封神 GBHPC8 = Mystic Heroes GBIE08 = Resident Evil GBIJ08 = Biohazard GBIP08 = Resident Evil GBKE70 = Backyard Baseball GBLE52 = Bloody Roar: Primal Fury GBLP52 = Bloody Roar: Primal Fury GBME7F = Batman: Dark Tomorrow GBMP7F = Batman: Dark Tomorrow GBNJC0 = Warrior Blade: Rastan vs. Barbarian GBOE51 = Burnout GBOP51 = Burnout GBQE78 = Rocket Power: Beach Bandits GBQP78 = Rocket Power: Beach Bandits GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTP70 = Beyblade VForce - Super Tournament Battle GBVE41 = Batman: Vengeance GBVP41 = Batman Vengeance GBWD64 = Star Wars Bounty Hunter GBWE64 = Star Wars Bounty Hunter GBWF64 = Star Wars Bounty Hunter GBWP64 = Star Wars Bounty Hunter GBWS64 = Star Wars Bounty Hunter GBXE51 = Dave Mirra Freestyle BMX 2 GBXP51 = Dave Mirra Freestyle BMX 2 GBYE0A = Super Bubble Pop GBZE08 = Resident Evil Zero GBZJ08 = Resident Evil Zero GBZP08 = Resident Evil Zero GC2E9G = Conflict: Desert Storm II: Back to Baghdad GC2P75 = Conflict: Desert Storm II: Back to Baghdad GC3D78 = Scooby-Doo!: Mystery Mayhem GC3E78 = Scooby-Doo!: Mystery Mayhem GC3F78 = Scooby-Doo!: Mystery Mayhem GC3P78 = Scooby-Doo!: Mystery Mayhem GC4JBN = Shinseiki GPX Cyber Formula Road To The EVOLUTION GC5PNK = Cocoto: Kart Racer GC6E01 = Pokémon Colosseum GC6J01 = Pokémon Colosseum GC6P01 = Pokémon Colosseum GC7PNK = Cocoto Platform Jumper GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBP7D = Crash Bandicoot: The Wrath of Cortex GCCE01 = Final Fantasy Crystal Chronicles GCCJ01 = Final Fantasy Crystal Chronicles GCCJGC = Final Fantasy Crystal Chronicles GCCP01 = Final Fantasy Crystal Chronicles GCDE08 = Resident Evil Code: Veronica X GCDJ08 = Biohazard: Code Veronica GCDP08 = Resident Evil Code Veronica X GCEE41 = Tom Clancy's Splinter Cell GCEP41 = Tom Clancy's Splinter Cell GCFE9G = Conflict: Desert Storm GCFP75 = Conflict: Desert Storm GCGE41 = Charlie's Angels GCGP41 = Charlie's Angels GCHE78 = WWE Crush Hour GCHP78 = WWE Crush Hour GCIE69 = The Sims GCIP69 = The Sims GCJE41 = Tom Clancy's Splinter Cell: Chaos Theory GCJP41 = Tom Clancy's Splinter Cell: Chaos Theory GCLE69 = Cel Damage GCLP69 = Cel Damage GCMJA4 = Muscle Champion ~Battle of Muscle Island~ GCNE7D = Crash Nitro Kart GCNP7D = Crash Nitro Kart GCOD52 = Call of Duty: Finest Hour GCOE52 = Call of Duty: Finest Hour GCOF52 = Call of Duty: Finest Hour GCOP52 = Call of Duty: Finest Hour GCPE6S = Casper: Spirit Dimensions GCPP6S = Casper: Spirit Dimensions GCQD7D = Buffy The Vampire Slayer Chaos Bleeds GCQE7D = Buffy the Vampire Slayer: Chaos Bleeds GCQF7D = Buffy The Vampire Slayer Chaos Bleeds GCQP7D = Buffy The Vampire Slayer Chaos Bleeds GCSEAF = Street Racing Syndicate GCSPAF = Street Racing Syndicate GCTE51 = Crazy Taxi GCTP51 = Crazy Taxi GCUE69 = NCAA Football 2005 GCVEEB = Cubivore: Survival of the Fittest GCWP6X = Castleween GCZE69 = Catwoman GCZP69 = Catwoman GD4E6S = Dinotopia - The Sunstone Odyssey GD5JB2 = Dragon Drive: D-Masters Shot GD6EB2 = Digimon Rumble Arena 2 GD6P70 = Digimon Rumble Arena 2 GD7E70 = Dragon Ball Z - Budokai GD7JB2 = Dragon Ball Z - Budokai GD7P70 = Dragon Ball Z - Budokai GD7PB2 = Dragon Ball Z Budokai GD9E69 = Drome Racers GD9P69 = Drome Racers GDAJE5 = Doraemon Minna De Asobou! GDBJ01 = Doubutsu Bancho GDCE51 = Speed Kings GDCP51 = Speed Kings GDDE41 = Disney's Donald Duck: Goin' Quackers GDDP41 = Disney's Donald Duck: Qu@ck Att@ck GDED71 = Baldur's Gate Dark Alliance GDEE71 = Baldur's Gate: Dark Alliance GDEF71 = Baldur's Gate: Dark Alliance GDEP71 = Baldur's Gate Dark Alliance GDFE5D = Defender GDFP5D = Defender: For All Mankind GDGE7H = Dragon's Lair 3D: Return to the Lair GDGP78 = Dragon's Lair 3D Special Edition GDIE7D = Die Hard: Vendetta GDIP7D = Die Hard: Vendetta GDIX7D = Die Hard: Vendetta GDIY7D = Die Hard: Vendetta GDJEB2 = Digimon World 4 GDJJB2 = Digimon World X GDKEA4 = Disney Sports Soccer GDKPA4 = Disney Sports: Football GDLEA4 = Disney Sports Basketball GDLPA4 = Disney Sports: Basketball GDME01 = Disney's Magical Mirror Starring Mickey Mouse GDMJ01 = Disney's Mickey Mouse no Fushigi na Kagami GDMP01 = Disney's Magical Mirror Starring Mickey Mouse GDNJE8 = Dokapon DX GDOP41 = Disney's Donald Duck PK GDPJAF = Mr. Driller: Drill Land GDQE7L = Darkened Skye GDQP6S = Darkened Skye GDREAF = Dead to Rights GDRP69 = Dead to Rights GDRPAF = Dead to Rights GDSE78 = Dark Summit GDSP78 = Dark Summit GDTE69 = Def Jam Vendetta GDTP69 = Def Jam Vendetta GDUJA7 = Duel Masters Nettou Battle GDVE6L = Driven GDVP6L = Driven GDWEA4 = Disney Sports Football GDXEA4 = Disney Sports Skateboarding GDXJA4 = Disney Sports Skateboarding GDXPA4 = Disney Sports Skateboarding GE3E5D = Midway Arcade Treasures 3 GE4E7D = 4x4 Evo 2 GE5EA4 = TMNT: Mutant Melee GE6JA4 = Eisei Meijin VI GE9E5D = Ed, Edd n Eddy: The Mis-Edventures GEAE8P = Skies of Arcadia Legends GEAJ8P = Eternal Arcadia Legends GEAP8P = Skies of Arcadia Legends GEBEA4 = Evolution Snowboarding GEBPA4 = Evolution Snowboarding GEDE01 = Eternal Darkness: Sanity's Requiem GEDJ01 = Eternal Darkness: Manekareta 13-nin GEDP01 = Eternal Darkness: Sanity's Requiem GEJJCM = Jikkyou Powerful Pro Yakyuu 11 Chou Ketteiban GEME7F = Egg Mania: Eggstreme Madness GEMP7F = Eggo Mania GEND69 = James Bond 007: Everything Or Nothing GENE69 = James Bond 007: Everything Or Nothing GENF69 = James Bond 007: Everything Or Nothing GENP69 = 007: Everything Or Nothing GENS69 = James Bond 007: Everything Or Nothing GEOE08 = Capcom vs. SNK 2 EO GEOP08 = Capcom Vs. SNK2 EO: Millionaire Fighting 2001 GESEA4 = Evolution Skateboarding GESPA4 = Evolution Skateboarding GEVJ0M = Shinki Sekai Evolutia GEWE41 = Evolution Worlds GEWP41 = Evolution Worlds GEXE52 = Disney's Extreme Skate Adventure GEXP52 = Disney Extreme Skate Adventure GEXX52 = Disney's Extreme Skate Adventure GEXY52 = Disney Extreme Skate Adventure GEYE69 = Fight Night Round 2 GEYJ69 = Fight Night Round 2 GEYP69 = Fight Night Round 2 GEZE8P = Billy Hatcher and the Giant Egg GEZP8P = Billy Hatcher and the Giant Egg GF2E69 = F1 2002 GF2P69 = F1 2002 GF3E8P = NFL 2K3 GF3P8P = NFL 2K3 GF4E52 = Fantastic 4 GF4F52 = Fantastic Four GF4P52 = Fantastic 4 GF5D69 = FIFA Football 2005 GF5E69 = FIFA Soccer 2005 GF5F69 = FIFA Football 2005 GF5H69 = FIFA Football 2005 GF5I69 = FIFA Football 2005 GF5P69 = FIFA Football 2005 GF5S69 = FIFA Football 2005 GF6D69 = FIFA 06 GF6E69 = FIFA Soccer 06 GF6F69 = FIFA 06 GF6H69 = FIFA 06 GF6P69 = FIFA 06 GF6S69 = FIFA 06 GF7E01 = Star Fox: Assault GF7P01 = Star Fox Assault GF8E69 = FIFA Street GF8P69 = FIFA Street GFAD69 = FIFA Soccer 2003 GFAE69 = FIFA Soccer 2003 GFAF69 = FIFA Soccer 2003 GFAI69 = FIFA Football 2003 GFAJ69 = FIFA Soccer 2003 GFAP69 = FIFA Football 2003 GFAS69 = FIFA Football 2003 GFBE5D = FireBlade GFBP5D = Fireblade GFCP69 = F1 Career Challenge GFDD69 = Freedom Fighters GFDE69 = Freedom Fighters GFDF69 = Freedom Fighters GFDP69 = Freedom Fighters GFEE01 = Fire Emblem: Path of Radiance GFEJ01 = Fire Emblem: Souen no Kiseki GFEP01 = Fire Emblem: Path of Radiance GFFE5D = Freaky Flyers GFGEA4 = Frogger Beyond GFGPA4 = Frogger Beyond GFHP6V = Neighbours From Hell GFIE69 = 2002 FIFA World Cup GFKE69 = Freekstyle GFKP69 = Freekstyle GFMJAF = Family Stadium 2003 GFNJG2 = Finding Nemo GFOE78 = The Fairly OddParents - Shadow Showdown GFPEA4 = Frogger: Ancient Shadow GFQEA4 = Frogger's Adventures: The Rescue GFSD69 = 2002 FIFA World Cup GFSE69 = FIFA Soccer 2002 GFSF69 = 2002 FIFA World Cup GFSJ69 = FIFA Soccer 2002 GFSP69 = 2002 FIFA World Cup GFTE01 = Mario Golf: Toadstool Tour GFTJ01 = Mario Golf: Family Tour GFTP01 = Mario Golf: Toadstool Tour GFUE4Z = Future Tactics: The Uprising GFUP6V = Future Tactics: The Uprising GFVE5D = NFL Blitz Pro GFWE78 = The Fairly OddParents: Breakin' Da Rules GFXE5D = Freestyle Metal X GFYE69 = FIFA Street 2 GFYP69 = FIFA Street 2 GFZE01 = F-Zero GX GFZJ01 = F-Zero GX GFZJ8P = F-Zero AX GFZP01 = F-Zero GX GG1J08 = Donkey Kong: Jungle Fever GG2E4Z = Trigger Man GG3J08 = Donkey Kong: Banana Kingdom GG4E08 = Gotcha Force GG4P08 = Gotcha Force GG5E52 = Cabela's Big Game Hunter 2005 GGAJB2 = Mobile Suit Gundam: The Ace Pilot GGCE0A = Goblin Commander: Unleash The Horde GGCP0A = Goblin Commander: Unleash the Horde GGEE41 = Beyond Good & Evil GGEP41 = Beyond Good And Evil GGEX41 = Beyond Good And Evil GGEY41 = Beyond Good And Evil GGFJ01 = GiFTPiA GGNE5D = The Grim Adventures of Billy and Mandy GGPE01 = Mario Kart Arcade GP GGPE02 = Mario Kart Arcade GP 2 GGPJ02 = Mario Kart Arcade GP 2 GGPJAF = SD Gundam Gashapon Wars GGPJB2 = SD Gundam Gashapon Wars GGRD41 = Tom Clancy's Ghost Recon GGRE41 = Tom Clancy's Ghost Recon GGRP41 = Tom Clancy's Ghost Recon GGSEA4 = Metal Gear Solid: The Twin Snakes GGSJA4 = Metal Gear Solid: The Twin Snakes GGSPA4 = Metal Gear Solid: The Twin Snakes GGTE01 = Chibi-Robo! GGTJ01 = Chibi-Robo! GGTP01 = Chibi-Robo! GGVD78 = Spongebob Squarepants : The Movie GGVE78 = SpongeBob SquarePants: The Movie GGVP78 = Spongebob Squarepants: The Movie GGVX78 = Spongebob Squarepants : The Movie GGYE41 = Tom Clancy's Ghost Recon 2 GGYP41 = Tom Clancy's Ghost Recon 2 GGZE52 = Madagascar GGZH52 = Madagascar GGZI52 = Madagascar GGZJB2 = Madagascar GGZP52 = Madagascar GGZS52 = Madagascar GGZX52 = Madagascar GH2E69 = Need for Speed: Hot Pursuit 2 GH2P69 = Need For Speed Hot Pursuit 2 GH3E69 = NHL 2003 GH3P69 = NHL 2003 GH4D69 = Harry Potter and the Goblet of Fire GH4E69 = Harry Potter and the Goblet of Fire GH4F69 = Harry Potter and the Goblet of Fire GH4H69 = Harry Potter and the Goblet of Fire GH4I69 = Harry Potter and the Goblet of Fire GH4J69 = Harry Potter to Honoo no Goblet GH4M69 = Harry Potter and the Goblet of Fire GH4P69 = Harry Potter and the Goblet of Fire GH4S69 = Harry Potter and the Goblet of Fire GH5D52 = Over The Hedge GH5E52 = Over The Hedge GH5F52 = Over The Hedge GH5P52 = Over The Hedge GH6EAF = Hello Kitty: Roller Rescue GH6P7N = Hello Kitty: Roller Rescue GH7E5D = Happy Feet GH9P52 = Tony Hawk's American Wasteland GHAE08 = Resident Evil 2 GHAJ08 = Biohazard 2 GHAP08 = Resident Evil 2 GHBE7D = The Hobbit GHBP7D = The Hobbit GHCD4Q = Chicken Little GHCE4Q = Chicken Little GHCF4Q = Chicken Little GHCJG9 = Chicken Little GHCP4Q = Chicken Little GHEJ91 = Homeland GHFE4Z = Pinball Hall Of Fame: The Gottlieb Collection GHGEEB = Go! Go! Hypergrind GHKD7D = Hulk GHKE7D = Hulk GHKF7D = Hulk GHKP7D = Hulk GHKS7D = Hulk GHLE69 = Harry Potter and the Sorcerer's Stone GHLJ69 = Harry Potter to Kenja no Ishi GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Sorcerer's Stone GHLY69 = Harry Potter and the Sorcerer's Stone GHLZ69 = Harry Potter and the Sorcerer's Stone GHMD4F = Hitman 2: Silent Assassin GHME4F = Hitman 2: Silent Assassin GHMF4F = Hitman 2: Silent Assassin GHMP4F = Hitman 2: Silent Assassin GHNE71 = Hunter: The Reckoning GHNX71 = Hunter: The Reckoning GHPE52 = Street Hoops GHQE7D = The Simpsons: Hit & Run GHQP7D = The Simpsons: Hit & Run GHRE78 = Hot Wheels: World Race GHRP78 = Hot Wheels: World Race GHSE69 = Harry Potter and the Chamber of Secrets GHSJ69 = Harry Potter to Himitsu no Heya GHSP69 = Harry Potter and the Chamber of Secrets GHSX69 = Harry Potter and the Chamber of Secrets GHSY69 = Harry Potter and the Chamber of Secrets GHTJA4 = Hikaru No Go 3 GHUE7D = The Incredible Hulk: Ultimate Destruction GHUF7D = The Incredible Hulk Ultimate Destruction GHUP7D = The Incredible Hulk Ultimate Destruction GHVE08 = Disney's Hide & Sneak GHVP08 = Disney's Hide & Sneak GHWE78 = Hot Wheels: Velocity X GHWP78 = Hot Wheels: Velocity X GHYE6S = The Haunted Mansion GHZE5D = NHL Hitz Pro GI2J18 = Momotarou Dentetsu 12 GIAE7D = Ice Age 2: The Meltdown GIAP7D = Ice Age 2 : The Meltdown GIBE4F = The Italian Job GIBP4F = The Italian Job GICD78 = The Incredibles GICE78 = The Incredibles GICF78 = The Incredibles GICH78 = The Incredibles GICJG9 = Mr. Inkurediburu GICP78 = The Incredibles GIFJDQ = Generation of Chaos Exceed GIGJ8P = Bleach GC: Tasogare Ni Mamieru Shinigami GIHD78 = Scooby-Doo! Night of 100 Frights GIHE78 = Scooby-Doo! Night of 100 Frights GIHP78 = Scooby-Doo! Night of 100 Frights GIIJ18 = Momotarou Dentetsu 11 GIJEFP = Space Raiders GIJJC0 = Space Raiders GIKE70 = Ikaruga GIKJ70 = Ikaruga GIKP70 = Ikaruga GILE51 = Aggressive Inline GILP51 = Aggressive Inline GINE69 = Batman Begins GINX69 = Batman Begins GIPEAF = Shonen Jump's One Piece: Pirates Carnival GIPJB2 = Shonen Jump's One Piece: Pirates Carnival GIQE78 = The Incredibles: Rise of the Underminer GIQJ8P = The Incredibles: Rise of the Underminer GIQP78 = The Incredibles: Rise of the Underminer GIQX78 = The Incredibles: Rise of the Underminer GIQY78 = The Incredibles: Rise of the Underminer GISE36 = Second Sight GISP36 = Second Sight GITE01 = Geist GITP01 = Geist GIVE4Z = Intellivision Lives GIZE52 = Ty the Tasmanian Tiger 3: Night of the Quinkan GJ2JCM = Jikkyou World Soccer 2002 GJ2PA4 = International Superstar Soccer 2 GJ3PA4 = International Superstar Soccer 3 GJBE18 = Bomberman Jetters GJBE5G = Bomberman Jetters GJBJ18 = Bomberman Jetters GJCE8P = Samurai Jack: The Shadow of Aku GJCP8P = Samurai Jack: The Shadow of Aku GJDE5S = Judge Dredd: Dredd vs. Death GJDX7D = Judge Dredd: Dredd vs. Death GJDY7D = Judge Dredd: Dredd vs. Death GJFE78 = Jimmy Neutron Jet Fusion GJFP78 = Jimmy Neutron Jet Fusion GJKD52 = Star Wars Jedi Knight II: Jedi Outcast GJKE52 = Star Wars Jedi Knight II: Jedi Outcast GJKF52 = Star Wars Jedi Knight II: Jedi Outcast GJKP52 = Star Wars Jedi Knight II: Jedi Outcast GJNE78 = Jimmy Neutron Boy Genius GJNP78 = Jimmy Neutron Boy Genius GJPJCM = Jikkyou Powerful Pro Yakyuu 11 GJSJ18 = Hudson Selection Vol. 2: Star Soldier GJUD78 = Tak and the Power of JuJu GJUE78 = Tak and the Power of Juju GJUF78 = Tak and the Power of JuJu GJUP78 = Tak and the Power of JuJu GJWE78 = Tak: The Great JuJu Challenge GJWP78 = Tak: The Great JuJu Challenge GJXE51 = Vexx GJXP51 = Vexx GJYE78 = Jimmy Neutron: Attack of the Twonkies GJYP78 = Jimmy Neutron Boy Genius: Attack of the Twonkies GJZE52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GJZP52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GK2D52 = Spider-Man 2 GK2E52 = Spider-Man 2 GK2F52 = Spider-Man 2 GK2P52 = Spider-Man 2 GK3E8P = NBA 2K3 GK3P8P = NBA 2K3 GK4E01 = Baten Kaitos Origins GK4J01 = Baten Kaitos II: Hajimari no Tsubasa to Kamigami no Shishi GK5E78 = Monster House GK5P78 = Monster House GK5X78 = Monster House GK6JA4 = Croket Banking No Kikiwosukue GK7E08 = Killer7 GK7J08 = Killer7 GK7P08 = Killer 7 GK9EA4 = Karaoke Revolution Party GKAE8P = Amazing Island GKAJ8P = Kaijuu no Shima: Amazing Island GKBEAF = Baten Kaitos Eternal Wings and the Lost Ocean GKBJAF = Baten Kaitos: Owaranai Tsubasa to Ushinawareta Umi GKBPAF = Baten Kaitos: Eternal Wings and the Lost Ocean GKDJ01 = Kyojin no Doshin GKDP01 = Doshin the Giant GKEJA4 = PAWAFURU PUROYAKYU 12 KETTEIBAN GKFEGG = Chaos Field GKFJ8P = Chaos Field Expanded GKGE01 = Donkey Konga GKGJ01 = Donkey Konga GKGP01 = Donkey Konga GKHEA4 = King Arthur GKHPA4 = King Arthur GKJD78 = Cars GKJE78 = Cars GKJF78 = Cars GKJH78 = Cars GKJJ78 = Cars GKJP78 = Cars GKJS78 = Cars GKKE69 = Knockout Kings 2003 GKKP69 = Knockout Kings 2003 GKLD69 = Lord of the Rings: The Return of the King GKLE69 = Lord of the Rings: The Return of the King GKLF69 = Lord of the Rings: The Return of the King GKLI69 = Lord of the Rings: The Return of the King GKLJ69 = The Lord of the Rings: The Return of the King GKLP69 = Lord of the Rings: The Return of the King GKLS69 = Lord of the Rings: The Return of the King GKME41 = Prince of Persia: The Two Thrones GKMP41 = Prince of Persia: The Two Thrones GKNEB2 = Ultimate Muscle: Legends vs. New Generation GKNJB2 = Kinnikuman Nisei: Shinsedai Choujin vs Densetsu Choujin GKOE70 = Kao The Kangaroo Round 2 GKOP6V = Kao The Kangaroo Round 2 GKPJA4 = Jikkyou Powerful Pro Yakyuu 12 GKQJ01 = Kururin Squash! GKREB2 = Ribbit King GKRPB2 = Ribbit King GKSE52 = Kelly Slater's Pro Surfer GKSP52 = Kelly Slater's Pro Surfer GKSX52 = Kelly Slater's Pro Surfer GKTJA4 = Captain Tsubasa: Ougon Sedai no Chousen GKUE9G = Scaler GKWJ18 = DreamMix TV World Fighters GKXJE7 = Kiwame Mahjong DX2 GKYE01 = Kirby Air Ride GKYJ01 = Kirby Airride GKYP01 = Kirby Air Ride GKZD9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZE9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZF9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP54 = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GL2E51 = Legends of Wrestling 2 GL2P51 = Legends of Wrestling II GL3JE8 = Lupin The Third - Umi Ni Kieta Hihou GL5E4F = LEGO Star Wars: The Video Game GL5P4F = LEGO Star Wars: The Video Game GL5X4F = LEGO Star Wars: The Video Game GL7E64 = LEGO Star Wars II: The Original Trilogy GL7P64 = LEGO Star Wars II: The Original Trilogy GL8D4F = Lara Croft Tomb Raider: Legend GL8E4F = Lara Croft Tomb Raider: Legend GL8F4F = Lara Croft Tomb Raider: Legend GL8P4F = Lara Croft Tomb Raider: Legend GLBE8P = Home Run King GLCD52 = Lemony Snickets A Series Of Unfortunate Events GLCE52 = Lemony Snickets A Series Of Unfortunate Events GLCF52 = Lemony Snickets A Series Of Unfortunate Events GLCP52 = Lemony Snickets A Series Of Unfortunate Events GLCS52 = Lemony Snickets A Series Of Unfortunate Events GLEE08 = Resident Evil 3: Nemesis GLEJ08 = BioHazard 3: Last Escape GLEP08 = Resident Evil 3: Nemesis GLGP41 = Largo Winch : Empire Under Threat GLHEG9 = Flushed Away GLHPG9 = Flushed Away GLIJA7 = Special Jinsei Game GLJJMS = Radirgy GLLE78 = Ratatouille GLLF78 = Ratatouille GLME01 = Luigi's Mansion GLMJ01 = Luigi's Mansion GLMP01 = Luigi's Mansion GLNE69 = Looney Tunes: Back in Action GLNP69 = Looney Tunes: Back in Action GLOD69 = Lord of the Rings: The Two Towers GLOE69 = Lord of the Rings: The Two Towers GLOF69 = Lord of the Rings: The Two Towers GLOI69 = Lord of the Rings: The Two Towers GLOP69 = Lord of the Rings: The Two Towers GLOS69 = Lord of the Rings: The Two Towers GLQE41 = Tom Clancy's Rainbow Six: Lockdown GLQP41 = Tom Clancy's Rainbow Six: Lockdown GLRD64 = Star Wars Rogue Squadron III: Rebel Strike GLRE64 = Star Wars Rogue Squadron III: Rebel Strike GLRF64 = Star Wars Rogue Squadron III: Rebel Strike GLRJ13 = Star Wars Rogue Squadron III: Rebel Strike GLRP64 = Star Wars Rogue Squadron III: Rebel Strike GLSD64 = Gladius GLSE64 = Gladius GLSF64 = Gladius GLSP64 = Gladius GLUE7U = Lotus Challenge GLVD4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVE4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVF4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVP4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLWE51 = Legends of Wrestling GLWP51 = Legends of Wrestling GLXJ29 = Legend of Golfer GLYE69 = NBA Live 2005 GLYP69 = NBA Live 2005 GLZD69 = James Bond 007: From Russia With Love GLZE69 = 007: From Russia With Love GLZF69 = James Bond 007: From Russia With Love GLZP69 = James Bond 007: From Russia With Love GM2E8P = Super Monkey Ball 2 GM2J8P = Super Monkey Ball 2 GM2P8P = Super Monkey Ball 2 GM3E69 = Madden NFL 2003 GM3P69 = Madden NFL 2003 GM4E01 = Mario Kart: Double Dash!! GM4J01 = Mario Kart: Double Dash!! GM4P01 = Mario Kart: Double Dash!! GM5D7D = Metal Arms: Glitch in the System GM5E7D = Metal Arms: Glitch in the System GM5F7D = Metal Arms: Glitch in the System GM5P7D = Metal Arms: Glitch in the System GM6EE9 = Medabots Infinity GM6PE9 = Medabots Infinity GM8E01 = Metroid Prime GM8J01 = Metroid Prime GM8P01 = Metroid Prime GM9E6S = Muppets Party Cruise GMAE51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMAP51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMBE8P = Super Monkey Ball GMBJ8P = Super Monkey Ball GMBP8P = Super Monkey Ball GMDE69 = Madden NFL 2002 GMEE70 = Men In Black II: Alien Escape GMEP70 = Men In Black II: Alien Escape GMFD69 = Medal of Honor: Frontline GMFE69 = Medal of Honor: Frontline GMFF69 = Medal of Honor: Frontline GMFI69 = Medal of Honor: Frontline GMFP69 = Medal of Honor: Frontline GMFS69 = Medal of Honor: Frontline GMHE52 = Mat Hoffmans Pro Bmx 2 GMHF52 = Mat Hoffman's Pro BMX 2 GMHP52 = Mat Hoffman's Pro BMX 2 GMIE70 = Mission Impossible: Operation Surma GMIP70 = Mission Impossible: Operation Surma GMJE41 = Monster Jam: Maximum Destruction GMJP41 = Monster Jam: Maximum Destruction GMKD5D = Mortal Kombat: Deadly Alliance GMKE5D = Mortal Kombat: Deadly Alliance GMKP5D = Mortal Kombat: Deadly Alliance GMLEA4 = ESPN MLS Extra Time 2002 GMNE78 = Monsters, Inc. Scream Arena GMNP78 = Monsters, Inc. Scream Arena GMOP70 = Micro Machines GMPE01 = Mario Party 4 GMPJ01 = Mario Party 4 GMPP01 = Mario Party 4 GMQE70 = Monopoly Party GMQP70 = Monopoly Party GMRE70 = Big Air Freestyle GMRP70 = Big Air Freestyle GMSE01 = Super Mario Sunshine GMSJ01 = Super Mario Sunshine GMSP01 = Super Mario Sunshine GMTE69 = Disney's Party GMTP69 = Disney's Party GMUE5D = Dr. Muto GMWD52 = Minority Report: Everybody Runs GMWE52 = Minority Report: Everybody Runs GMWF52 = Minority Report: Everybody Runs GMWP52 = Minority Report: Everybody Runs GMXE70 = Enter The Matrix GMXJB2 = Enter The Matrix GMXP70 = Enter The Matrix GMYJ8P = Gekitou Pro Yakyuu GMZE41 = Monster 4x4: Masters Of Metal GN2E70 = Nascar: Dirt To Daytona GN3E5D = NHL Hitz 2003 GN3P5D = NHL Hitz 2003 GN4E69 = Nascar 2005: Chase For The Cup GN5E69 = NHL 2005 GN5P69 = NHL 2005 GN6E69 = NHL 06 GN6P69 = NHL 06 GN7E69 = NFL Street 2 GN7P69 = NFL Street 2 GN8E69 = NBA Live 2004 GN8P69 = NBA Live 2004 GN9E70 = Nickelodeon Party Blast GNAE8P = NCAA College Football 2K3 GNBE01 = NBA Courtside 2002 GNBP01 = NBA Courtside 2002 GNCE69 = Nascar Thunder 2003 GNDD69 = Need For Speed Underground GNDE69 = Need For Speed Underground GNDF69 = Need For Speed Underground GNDP69 = Need For Speed Underground GNED78 = Finding Nemo GNEE78 = Finding Nemo GNEF78 = Finding Nemo GNEP78 = Finding Nemo GNES78 = Finding Nemo GNFE5D = NFL Blitz 2002 GNGE69 = NCAA Football 2003 GNHE5D = NHL Hitz 2002 GNHP5D = NHL Hitz 20-02 GNIEA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNIPA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNJEAF = I-Ninja GNKE8P = NCAA College Basketball 2K3 GNLE69 = NBA Live 2003 GNLP69 = NBA Live 2003 GNMEAF = Namco Museum GNNE69 = NFL Street GNNP69 = NFL Street GNOE78 = Nicktoons Unite! GNOX78 = Spongebob Squarepants & Friends: Unite! GNPP70 = Nickelodeon Party Blast GNQE69 = Madden NFL 2005 GNQP69 = Madden NFL 2005 GNREDA = Naruto Clash of Ninja GNRJDA = NARUTO Gekitô Ninja Taisen! GNSE69 = NBA Street GNSJ69 = NBA Street GNUEDA = Naruto Clash of Ninja 2 GNUJDA = Naruto: Gekitou Ninja Taisen! 2 GNUPDA = Naruto: Clash of Ninja - European Version GNVE69 = NHL 2004 GNVP69 = NHL 2004 GNWE69 = Def Jam: Fight For NY GNWP69 = Def Jam: Fight For NY GNXE69 = NCAA Football 2004 GNZE69 = NBA Street Vol.2 GNZP69 = NBA Street Vol.2 GO2D4F = Blood Omen 2: The Legacy of Kain Series GO2E4F = Blood Omen 2: The Legacy of Kain Series GO2F4F = Blood Omen 2: The Legacy of Kain Series GO2P4F = Blood Omen 2: The Legacy of Kain Series GO3E5D = NFL Blitz 2003 GO7D69 = James Bond 007: NightFire GO7E69 = 007: NightFire GO7F69 = James Bond 007: NightFire GO7P69 = James Bond 007: NightFire GO7S69 = James Bond 007: NightFire GOAE52 = Cabela's Outdoor Adventures GOBE4Z = Bad Boys: Miami Takedown GOBP7N = Bad Boys II GOCE5D = RoadKill GODJGA = Ohenro-San: Hosshin no Dojo GOFE7L = Outlaw Golf GOFP6S = Outlaw Golf GOGJB2 = One Piece: Grand Battle! 3 GOME01 = Mario Power Tennis GOMJ01 = Mario Tennis GC GOMP01 = Mario Power Tennis GOND69 = Medal of Honor: European Assault GONE69 = Medal of Honor: European Assault GONF69 = Medal of Honor: European Assault GONJ13 = Medal of Honor: Europa Kyoushuu GONP69 = Medal of Honor: European Assault GOOE01 = Odama GOOJ01 = Odama GOOP01 = Odama GOPEB2 = Shonen Jump's One Piece: Grand Battle GOPJB2 = One Piece: Grand Battle! Rush GOQE82 = One Piece: Grand Adventure GOQEAF = Shonen Jump's One Piece: Grand Adventure GOSE41 = Open Season GOSP41 = Open Season GOSX41 = Open Season GOUPNK = Cocoto Funfair GOWD69 = Need For Speed Most Wanted GOWE69 = Need For Speed Most Wanted GOWF69 = Need For Speed Most Wanted GOWJ69 = Need For Speed Most Wanted GOWP69 = Need For Speed Most Wanted GOYD69 = GoldenEye: Rogue Agent GOYE69 = GoldenEye: Rogue Agent GOYF69 = GoldenEye: Rogue Agent GOYP69 = GoldenEye: Rogue Agent GOYS69 = GoldenEye: Rogue Agent GP2EAF = Pac-Man World 2 GP2P69 = Pac-Man World 2 GP3E78 = The Polar Express GP3P78 = The Polar Express GP4J18 = Hudson Selection Vol. 3: Bonk's Adventure GP5E01 = Mario Party 5 GP5J01 = Mario Party 5 GP5P01 = Mario Party 5 GP6E01 = Mario Party 6 GP6J01 = Mario Party 6 GP6P01 = Mario Party 6 GP7E01 = Mario Party 7 GP7J01 = Mario Party 7 GP7P01 = Mario Party 7 GP8EAF = Pac-Man World 3 GP8P69 = Pac-Man World 3 GP8PAF = Pac-Man World 3 GP9E7F = Rogue Ops GP9P7F = Rogue Ops GPAE01 = Pokémon Channel GPAJ01 = Pokémon Channel GPAP01 = Pokémon Channel GPAU01 = Pokémon Channel GPDE51 = Dakar 2: The World's Ultimate Rally GPDP51 = Dakar 2: The World's Ultimate Rally GPEJ2Q = Pool Edge GPHD52 = Pitfall: The Lost Expedition GPHE52 = Pitfall: The Lost Expedition GPHF52 = Pitfall: The Lost Expedition GPHP52 = Pitfall: The Lost Expedition GPIE01 = Pikmin GPIJ01 = Pikmin GPIP01 = Pikmin GPJJCM = Jikkyou Powerful Pro Yakyuu 10 GPKE41 = Disney's PK Out of the Shadows GPLD9G = Piglet's Big Game GPLE9G = Piglet's Big Game GPLF9G = Piglet's Big Game GPLP9G = Piglet's Big Game GPMEAF = Pac Man Fever GPNE08 = P.N.03 GPNJ08 = P.N.03 GPNP08 = P.N.03 GPOE8P = Phantasy Star Online Episode I & II GPOJ8P = Phantasy Star Online Episode I & II GPOP8P = Phantasy Star Online Episode I&II GPPJCM = Jikkyou Powerful Pro Yakyuu 9 GPQE6L = The Powerpuff Girls: Relish Rampage GPQP6L = The Powerpuff Girls: Relish Rampage GPRE7U = Pool Paradise GPRP7U = Pool Paradise GPSE8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPSJ8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPSP8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPTE41 = Prince of Persia: The Sands of Time GPTP41 = Prince of Persia: The Sands of Time GPUE8P = Puyo Pop Fever GPUP6W = Puyo Pop Fever GPUP8P = Puyo Pop Fever GPVE01 = Pikmin 2 GPVJ01 = Pikmin 2 GPVP01 = Pikmin 2 GPWEAF = Spawn: Armageddon GPWP69 = Spawn: Armageddon GPWPAF = Spawn: Armageddon GPXE01 = Pokémon Box: Ruby & Sapphire GPXJ01 = Pokémon Box: Ruby & Sapphire GPXP01 = Pokémon Box: Ruby & Sapphire GPYJ8P = Puyo Pop Fever GPZJ01 = Nintendo Puzzle Collection GQ4E78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ4F78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ4P78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ8E69 = Madden NFL 08 GQBE51 = NFL Quarterback Club 2002 GQCD52 = Call of Duty 2: Big Red One GQCE52 = Call of Duty 2: Big Red One GQCF52 = Call of Duty 2: Big Red One GQCP52 = Call of Duty 2: Big Red One GQCS52 = Call of Duty 2: Big Red One GQFFFK = Franklin: A Birthday Surprise GQLE9G = Dora The Explorer: Journey To The Purple Planet GQLP54 = Dora The Explorer: Journey to the Purple Planet GQNE5D = Mortal Kombat: Deception GQPE78 = SpongeBob SquarePants: Battle for Bikini Bottom GQPP78 = SpongeBob Squarepants: Battle For Bikini Bottom GQQD78 = SpongeBob SquarePants: Lights, Camera, PANTS! GQQE78 = SpongeBob SquarePants: Lights, Camera, Pants! GQQF78 = SpongeBob SquarePants: Lights, Camera, PANTS! GQQH78 = SpongeBob SquarePants: Lights, Camera, Pants! GQQP78 = SpongeBob SquarePants: Lights, Camera, Pants! GQRJ18 = Hudson Selection Vol. 1: Cubic Lode Runner GQSDAF = Tales of Symphonia GQSEAF = Tales of Symphonia GQSFAF = Tales of Symphonia GQSIAF = Tales of Symphonia GQSPAF = Tales of Symphonia GQSSAF = Tales of Symphonia GQTE4Q = Meet the Robinsons GQWE69 = Harry Potter: Quidditch World Cup GQWJ69 = Harry Potter World Cup GQWP69 = Harry Potter: Quidditch World Cup GQWX69 = Harry Potter: Quidditch World Cup GQXE69 = Madden NFL 2004 GQXP69 = Madden NFL 2004 GQZJ01 = Densetsu no Quiz Ou Ketteisen GR2E52 = Lost Kingdoms 2 GR2JCQ = Rune II: Koruten no Kagi no Himitsu GR2P52 = Lost Kingdoms 2 GR3E5D = Red Card 2003 GR4EMZ = MC Groovz Dance Craze GR4PMZ = MC Groovz Dance Craze GR5J1K = Robocop: Aratanaru Kiki GR6D78 = Bratz: Rock Angelz GR6E78 = Bratz: Rock Angelz GR6F78 = Bratz: Rock Angelz GR6P78 = Bratz: Rock Angelz GR8D69 = Medal of Honor: Rising Sun GR8E69 = Medal of Honor: Rising Sun GR8F69 = Medal of Honor: Rising Sun GR8J69 = Medal of Honor: Rising Sun GR8P69 = Medal of Honor: Rising Sun GR9E6L = Reign of Fire GR9P6L = Reign of Fire GRAE5Z = Rally Championship GRAP75 = Rally Championship GRBE6S = Robotech: Battlecry GRBP6S = Robotech : Battlecry GRDP5D = RedCard GREE08 = Mega Man Network Transmission GREJ08 = RockMan EXE Transmission GREP08 = Mega Man Network Transmission GRFD78 = Red Faction II GRFE78 = Red Faction II GRFF78 = Red Faction II GRFP78 = Red Faction II GRHE41 = Rayman 3: Hoodlum Havoc GRHP41 = Rayman 3: Hoodlum Havoc GRJEAF = R: Racing Evolution GRJJAF = R:Racing Evolution: Life in the Fast Lane GRJP69 = R: Racing GRKE41 = Rocky GRKP7G = Rocky GRLE41 = Pro Rally GRLP41 = Pro Rally GRMJDA = Monopoly: Mezase!! Daifugou Jinsei!! GRNE52 = Lost Kingdoms GRNJCQ = Rune GRNP52 = Lost Kingdoms GROE5Z = Road Trip: The Arcade Edition GROP7J = Gadget Racers GRQE41 = City Racer GRRE78 = Rugrats: Royal Ransom GRRP78 = Rugrats: Royal Ransom GRSEAF = SoulCalibur II GRSJAF = SoulCalibur II GRSPAF = SoulCalibur II GRUE78 = Power Rangers Dino Thunder GRUF78 = Power Rangers Dino Thunder GRUP78 = Power Rangers Dino Thunder GRVEA4 = Rave Master GRWJD9 = Super Robot Taisen GC GRYE41 = Rayman Arena GS2D78 = Summoner: A Goddess Reborn GS2E78 = Summoner: A Goddess Reborn GS2F78 = Summoner: A Goddess Reborn GS2P78 = Summoner: A Goddess Reborn GS3E51 = SX Superstar GS3P51 = SX Superstar GS7E5D = MLB SlugFest 2004 GS8E7D = Spyro: Enter the Dragonfly GS8P7D = Spyro: Enter the Dragonfly GS9E6S = Shrek Extra Large GS9P6S = Shrek Extra Large GSAE01 = Star Fox Adventures GSAJ01 = StarFox Adventures GSAP01 = Star Fox Adventures GSBJ8P = Sonic Adventure 2: Battle GSCE51 = Jeremy McGrath SuperCross World GSCP51 = Jeremy McGrath SuperCross World GSDEAF = Smashing Drive GSEJB2 = Shaman King: Soul Fight GSGE5D = MLB SlugFest 2003 GSHE5D = SpyHunter GSHP5D = SpyHunter GSKE7D = The Scorpion King: Rise of the Akkadian GSKP7D = The Scorpion King : Rise of the Akkadian GSMD52 = Spider-Man GSME52 = Spider-Man: The Movie GSMF52 = Spider-Man GSMP52 = Spider-Man GSNE8P = Sonic Adventure 2: Battle GSNP8P = Sonic Adventure 2: Battle GSOE8P = Sonic Mega Collection GSOJ8P = Sonic Mega Collection GSOP8P = Sonic Mega Collection GSPE69 = The Simpsons: Road Rage GSPP69 = The Simpsons: Road Rage GSQE78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSQP78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSRE7S = Smuggler's Run: Warzones GSRP7S = Smuggler's Run: Warzones GSSE8P = Sega Soccer Slam GSSJ8P = Sega Soccer Slam GSSP70 = Sega Soccer Slam GSSP8P = Sega Soccer Slam GSTE69 = SSX Tricky GSTJ69 = SSX Tricky GSTP69 = SSX Tricky GSUE70 = Superman: Shadow of Apokolips GSUP70 = Superman: Shadow of Apokolips GSVE78 = MX Superfly Featuring Ricky Carmichael GSVP78 = MX Superfly featuring Ricky Carmichael GSWD64 = Star Wars Rogue Leader: Rogue Squadron II GSWE64 = Star Wars Rogue Squadron II: Rogue Leader GSWF64 = Star Wars Rogue Leader: Rogue Squadron II GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = Star Wars Rogue Leader: Rogue Squadron II GSWP64 = Star Wars Rogue Leader: Rogue Squadron II GSWS64 = Star Wars Rogue Leader: Rogue Squadron II GSXD64 = Star Wars: The Clone Wars GSXE64 = Star Wars: The Clone Wars GSXF64 = Star Wars: The Clone Wars GSXJ13 = Star Wars: Clone Sensou GSXP64 = Star Wars: The Clone Wars GSXS64 = Star Wars: The Clone Wars GSYE6S = Shrek: Super Party GSYP6S = Shrek: Super Party GSZP41 = Speed Challenge: Jacques Villeneuve Racing Vision GT2J18 = Tengai Makyou 2: Manji Maru GT3D52 = Tony Hawk's Pro Skater 3 GT3E52 = Tony Hawk's Pro Skater 3 GT3F52 = Tony Hawk's Pro Skater 3 GT3J52 = Tony Hawk's Pro Skater 3 GT3P52 = Tony Hawk's Pro Skater 3 GT4D52 = Tony Hawk's Pro Skater 4 GT4E52 = Tony Hawk's Pro Skater 4 GT4F52 = Tony Hawk's Pro Skater 4 GT4P52 = Tony Hawk's Pro Skater 4 GT5E7N = Starsky & Hutch GT5P7N = Starsky & Hutch GT6E70 = Terminator 3: The Redemption GT6J70 = Terminator 3: The Redemption GT6P70 = Terminator 3: The Redemption GT7E41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7P41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7X41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT8E78 = Big Mutha Truckers GT8P78 = Big Mutha Truckers GT8P7N = Big Mutha Truckers GTAE5S = Top Angler : Real Bass Fishing GTAP5S = Top Angler: Real Bass Fishing GTCJBL = GT Cube GTDE52 = Tony Hawk's Underground GTDP52 = Tony Hawk's Underground GTEE01 = 1080° Avalanche GTEJ01 = 1080° Silver Storm GTEP01 = 1080° Avalanche GTFEA4 = Teenage Mutant Ninja Turtles GTFPA4 = Teenage Mutant Ninja Turtles GTGE60 = Top Gun: Combat Zones GTGP60 = Top Gun: Combat Zones GTHJD9 = Charinko Hero GTIE69 = Tiger Woods PGA Tour 2003 GTIP69 = Tiger Woods PGA Tour 2003 GTJE5L = Tom & Jerry in War of the Whiskers GTKD51 = Turok Evolution GTKE51 = Turok Evolution GTKP51 = Turok Evolution GTLE52 = True Crime: Streets of LA GTLP52 = True Crime: Streets of LA GTLX52 = True Crime: Streets of LA GTMJDA = Mutsu To Nohohon GTNJ18 = Hudson Selection Vol. 4: Adventure Island GTOJAF = Tales of Symphonia GTPP6S = Knights Of The Temple : Infernal Crusade GTQE6S = Tonka: Rescue Patrol GTRE78 = Tetris Worlds GTRP78 = Tetris Worlds GTSE4F = TimeSplitters 2 GTSP4F = TimeSplitters 2 GTUE8G = Tube Slider - The Championship of Future Formula GTVE70 = Transworld Surf: Next Wave GTWE70 = Taz Wanted GTWP70 = Taz Wanted GTYE69 = Ty the Tasmanian Tiger GTYP69 = Ty: The Tasmanian Tiger GTZE41 = Tarzan Untamed GTZP41 = Tarzan Freeride GU2D78 = 2 Games in 1: The Incredibles / Finding Nemo GU2F78 = 2 Games in 1: The Incredibles / Finding Nemo GU3D78 = 2 Games in 1: The SpongeBob SquarePants Movie / Tak 2: The Staff of Dreams GU4Y78 = 2 Games in 1: The SpongeBob SquarePants Movie / Battle for Bikini Bottom GU6E78 = Nicktoons - Battle for Volcano Island GUBE69 = The Urbz: Sims in the City GUBJ13 = The Urbz: Sims In The City GUBP69 = The Urbz: Sims In The City GUCD69 = UEFA Champions League 2004-2005 GUCF69 = UEFA Champions League 2004-2005 GUCP69 = UEFA Champions League 2004-2005 GUFE4Z = Ultimate Fighting Championship Throwdown GUFP4Z = UFC: Throwdown GUGD69 = Need For Speed Underground 2 GUGE69 = Need For Speed Underground 2 GUGF69 = Need For Speed Underground 2 GUGP69 = Need For Speed Underground 2 GUMD52 = Gun GUME52 = Gun GUMP52 = Gun GUNE5D = Gauntlet: Dark Legacy GUNP5D = Gauntlet: Dark Legacy GUPE8P = Shadow the Hedgehog GUPJ8P = Shadow the Hedgehog GUPP8P = Shadow the Hedgehog GUSE7F = Universal Studios Theme Park Adventure GUSP7F = Universal Studios Theme Park Adventure GUTD52 = Ultimate Spider-Man GUTE52 = Ultimate Spider-Man GUTF52 = Ultimate Spider-Man GUTI52 = Ultimate Spider-Man GUTJC0 = Ultimate Spider-Man GUTP52 = Ultimate Spider-Man GUTS52 = Ultimate Spider-Man GUVE51 = Freestyle Street Soccer GUVP51 = Urban Freestyle Soccer GUZE41 = Batman: Rise of Sin Tzu GUZP41 = Batman Rise of Sin Tzu GV3J70 = V-Rally 3 GV3P70 = V-Rally 3 GV4E69 = MVP Baseball 2005 GVCE08 = Viewtiful Joe: Red Hot Rumble GVCJ08 = Viewtiful Joe: Battle Carnival GVCP08 = Viewtiful Joe: Red Hot Rumble GVDE78 = Bratz Forever Diamondz GVDP78 = Bratz Forever Diamondz GVHE4F = Bionicle Heroes GVJE08 = Viewtiful Joe GVJJ08 = Viewtiful Joe GVJP08 = Viewtiful Joe GVKE52 = Cabela's Dangerous Hunts 2 GVLD69 = Marvel Nemesis: Rise of the Imperfects GVLE69 = Marvel Nemesis: Rise of the Imperfects GVLF69 = Marvel Nemesis: Rise of the Imperfects GVLP69 = Marvel Nemesis: Rise of the Imperfects GVMP41 = Super Bust-A-Move All Stars GVOE69 = Bionicle GVOP69 = Bionicle GVPE69 = MVP Baseball 2004 GVRE7H = Grooverider Slot Car Thunder GVS46E = Virtua Striker 4 Ver.2006 GVS46J = Virtua Striker 4 Ver.2006 GVSE8P = Virtua Striker 2002 GVSJ8P = VIRTUA STRIKER 3 ver.2002 GVSJ9P = Virtua Striker 4 Ver.2006 GVSP8P = Virtua Striker 3 Ver. 2002 GVWJDQ = Gakuen Toshi Vara Noir Roses GW2E78 = WWE Day of Reckoning 2 GW2P78 = WWE Day of Reckoning 2 GW3E78 = WWE WrestleMania X8 GW3JG2 = WWE WrestleMania X8 GW3P78 = WWE Wrestlemania X8 GW4E69 = Tiger Woods PGA Tour 2004 GW4P69 = Tiger Woods PGA Tour 2004 GW5D69 = Need For Speed Carbon GW5E69 = Need For Speed Carbon GW5F69 = Need For Speed Carbon GW5P69 = Need For Speed Carbon GW6JEM = Winning Eleven 6 Final Evolution GW7D69 = James Bond 007 in Agent Under Fire GW7E69 = 007: Agent Under Fire GW7F69 = James Bond 007 in Agent Under Fire GW7P69 = James Bond 007 in Agent Under Fire GW8E52 = World Series of Poker GW9E78 = WWE WrestleMania XIX GW9JG2 = WWE WrestleMania XIX GW9P78 = WWE WrestleMania XIX GWAD8P = Spartan Total Warrior GWAE8P = Spartan Total Warrior GWAF8P = Spartan Total Warrior GWAP8P = Spartan Total Warrior GWBE41 = Worms Blast GWBP41 = Worms Blast GWDP6S = World Racing GWEE51 = 18 Wheeler: American Pro Trucker GWEP8P = 18 Wheeler American Pro Trucker GWGE4F = Swingerz Golf GWGJ4F = Wai Wai Golf GWGP4F = Ace Golf GWHE41 = Winnie The Pooh Rumbly Tumbly Adventures GWHP41 = Winnie the Pooh's Rumbly Tumbly Adventure GWJE52 = Tony Hawk's American Wasteland GWKE41 = Peter Jackson's King Kong: The Official Game of the Movie GWKP41 = Peter Jackson's King Kong: The Official Game of the Movie GWLE6L = Wallace & Gromit in Project Zoo GWLP6L = Wallace & Gromit : Project Zoo GWLX6L = Wallace & Gromit in Project Zoo GWME51 = Worms 3D GWMP8P = Worms 3D GWOE5G = Blowout GWPE78 = WWE Day of Reckoning GWPJG2 = WWE Day of Reckoning GWPP78 = WWE Day of Reckoning GWQE52 = Wreckless: The Yakuza Missions GWQP52 = Wreckless: The Yakuza Missions GWRE01 = Wave Race: Blue Storm GWRJ01 = Wave Race: Blue Storm GWRP01 = Wave Race: Blue Storm GWSEA4 = ESPN International Winter Sports 2002 GWSJA4 = Hyper Sports 2002 Winter GWSPA4 = ESPN International Winter Sports GWTEA4 = WTA Tour Tennis GWTJA4 = WTA Tour Tennis GWTPA4 = Pro Tennis WTA Tour GWUE7D = Whirl Tour GWUP7D = Whirl Tour GWVE52 = X2: Wolverine's Revenge GWVP52 = X-Men 2: Wolverine's Revenge GWVX52 = X-Men 2 : Wolverine's Revenge GWWE01 = Wario World GWWJ01 = Wario World GWWP01 = Wario World GWYE41 = Tom Clancy's Splinter Cell: Double Agent GWYX41 = Tom Clancy's Splinter Cell: Double Agent GWZE01 = Dance Dance Revolution: Mario Mix GWZJ01 = Dance Dance Revolution: Mario Mix GWZP01 = Dancing Stage Mario Mix GX2D52 = X-Men Legends II: Rise of Apocalypse GX2E52 = X-Men Legends II: Rise of Apocalypse GX2P52 = X-Men Legends II: Rise of Apocalypse GX2S52 = X-Men Legends II: Rise of Apocalypse GX3E41 = XIII GX3P41 = XIII GX3X41 = XIII GXAE51 = XGRA Extreme G Racing Association GXAP51 = XGRA Extreme G Racing Association GXBE69 = SSX 3 GXBP69 = SSX 3 GXCE01 = Custom Robo GXEE8P = Sonic Riders GXEJ8P = Sonic Riders GXEP8P = Sonic Riders GXFD69 = FIFA Football 2004 GXFE69 = FIFA Soccer 2004 GXFF69 = FIFA Football 2004 GXFI69 = FIFA Football 2004 GXFP69 = FIFA Football 2004 GXFS69 = FIFA Football 2004 GXGE08 = Mega Man X Collection GXLE52 = X-Men Legends GXLP52 = X-Men Legends GXLX52 = X-Men Legends GXME52 = X-Men: Next Dimension GXMF52 = X-Men: Next Dimension GXMP52 = X-Men: Next Dimension GXNE5D = Rampage Total Destruction GXOE69 = SSX on Tour GXOJ69 = SSX On Tour with Mario GXOP69 = SSX On Tour GXOX69 = SSX On Tour GXPE78 = Sphinx and the Cursed Mummy GXPP78 = Sphinx and the Cursed Mummy GXQF41 = Taxi 3 GXRE08 = Mega Man X: Command Mission GXRJ08 = Rockman X: Command Mission GXRP08 = Mega Man X: Command Mission GXSE8P = Sonic Adventure DX: Director's Cut GXSP6W = Sonic Adventure DX : Director's Cut GXSP8P = Sonic Adventure DX: Director's Cut GXUE41 = Surf's Up GXXE01 = Pokémon XD: Gale of Darkness GXXJ01 = Pokemon XD: Yami no Kaze Dark Lugia GXXP01 = Pokémon XD: Gale of Darkness GY2E01 = Donkey Konga 2 GY2J01 = Donkey Konga 2 GY2P01 = Donkey Konga 2 GY3J01 = Donkey Konga 3 GYAD78 = Barnyard GYAE78 = Barnyard GYAP78 = Barnyard GYAX78 = Barnyard GYBE01 = Donkey Kong Jungle Beat GYBJ01 = Donkey Kong Jungle Beat GYBP01 = Donkey Kong Jungle Beat GYFEA4 = Yu-Gi-Oh! The Falsebound Kingdom GYFJA4 = Yu-Gi-Oh! The Falsebound Kingdom GYFPA4 = Yu-Gi-Oh! The Falsebound Kingdom GYKEB2 = Zatch Bell! Mamodo Battles GYMJA4 = Jikkyou Powerful Major League GYQE01 = Mario Superstar Baseball GYQJ01 = Super Mario Stadium Miracle Baseball GYQP01 = Mario Superstar Baseball GYRE41 = TMNT GYRP41 = TMNT GYTE69 = Ty The Tasmanian Tiger 2: Bush Rescue GYTP69 = Ty The Tasmanian Tiger 2: Bush Rescue GYWDE9 = Harvest Moon: A Wonderful Life GYWEE9 = Harvest Moon: A Wonderful Life GYWJ99 = Bokujou Monogatari: Wonderful Life GYWP41 = Harvest Moon: A Wonderful Life GYWPE9 = Harvest Moon: A Wonderful Life GZ2E01 = The Legend of Zelda: Twilight Princess GZ2J01 = Zelda no Densetsu: Twilight Princess GZ2P01 = The Legend of Zelda: Twilight Princess GZ3E70 = Dragon Ball Z: Budokai 2 GZ3P70 = Dragon Ball Z: Budokai 2 GZ3PB2 = Dragon Ball Z Budokai 2 GZCE51 = ZooCube GZCJB0 = ZooCube GZCP51 = Zoocube GZDE70 = Godzilla: Destroy all Monsters Melee GZDJ70 = Godzilla: Kaijuu Dairantou GZDP70 = Godzilla: Destroy all Monsters Melee GZEE70 = Dragon Ball Z: Sagas GZFJBP = Gekituisenki - Zero Fighter GZHJDA = Zoids Full Metal Crash GZLE01 = The Legend of Zelda: The Wind Waker GZLJ01 = Zelda no Densetsu: Kaze no Takuto GZLP01 = The Legend of Zelda: The Wind Waker GZMP7D = Butt-Ugly Martians Zoom or Doom GZOJDA = Zoids vs. GZPE70 = Zapper - One Wicked Cricket! GZPP70 = Zapper: One Wicked Cricket! GZQE7D = Robots GZQJ7D = Robots GZQP7D = Robots GZSE70 = Zoids Battle Legends GZSJDA = Zoids VS. II GZVJDA = Zoids vs. III GZWE01 = Wario Ware Inc.: Mega Party Game$! GZWJ01 = Atumare!! made in wario GZWP01 = Wario Ware Inc.: Mega Party Game$! HAAA = 照片頻道 HABA = 購物頻道(歐) HABK = Wii Shop Channel HACA = Mii頻道(歐) HACK = Mii Channel HADE = 網絡頻道(美) HADJ = Internet Channel HADP = 網絡頻道(歐) HAFE = 天氣頻道(美) HAFJ = Weather Channel HAFP = 天氣頻道(歐) HAGE = 新聞頻道(美) HAGJ = News Channel HAGP = 新聞頻道(歐) HAJE = Everybody Votes Channel HAJJ = Everybody Votes Channel HAJP = Everybody Votes Channel HAPE = Check Mii Out頻道(美) HAPJ = Mii Contest Channel HAPP = Check Mii Out頻道(歐) HATE = Nintendo Channel HATJ = Nintendo Channel HATP = Nintendo Channel HAVJ = Today and Tomorrow Fortune Teller HAVK = Today And Tomorrow Channel HAVP = Today and Tomorrow Channel HAWE = Metroid Prime 3 Preview HAWJ = Metroid Prime 3 Preview HAWP = Metroid Prime 3 Preview HAYA = 照片頻道 HAYK = Photo Channel HBNJ = TV Friend Channel HBWE01 = 超級瑪利歐兄弟Wii Hellboy Edition(美) HC3J = USB Flash Optimization HCAJ = Band Bros. DX Speaker Channel HCAP = Jam with the Band Live HCBJ = Photo Channel 1.0 Restore Program HCDJ = Digicam Print Channel HCFE = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Wii Speak Channel HCGE = Wii + Internet HCGJ = Wii Plus Internet HCGP = Wii Plus Internet HCHJ = Food Service HCIJ = Wii no ma HCJP = BBC iPlayer Channel HCLE = Netflix系統安裝光碟(美) HCLP = Netflix HCMP = Kirby TV HCQE = Hulu Plus HCQJ = Hulu HCRE = The Legend of Zelda: Skyward Sword Save Data Update Channel HCRJ = The Legend of Zelda Skyward Sword Update HCRP = The Legend of Zelda Skyward Sword Update HCSE = Wii U Transfer Tool HCSJ = Wii U Transfer Tool HCSP = Wii U Transfer Tool HCTE = Wii System Transfer HCTJ = Wii System Transfer HCTP = Wii System Transfer HCUE = Wii Menu Electronic Manual HCUJ = Wii Menu Electronic Manual HCUP = Wii Menu Electronic Manual HCVA = Wii U Menu HCWE = Amazon Instant Video HCWP = Amazon Instant Video HCXE = YouTube HCXJ = YouTube HCXP = YouTube HCZE = Wii System Transfer HWFL = HackWiiFlow JA2J = Shin Megami Tensei JA3J = Kamaitachi no Yoru JA4E = Super Ghouls 'n Ghosts JA4J = Chou-Makai-Mura JA4P = 超魔界村(歐) JA5J = Heracles no Eikou III: Kamigami no Chinmoku JA6E = Zombies Ate My Neighbors JA6J = Zombies Ate My Neighbors JA6P = Zombies JA7D = ActRaiser JA7E = ActRaiser JA7F = ActRaiser JA7J = Actraiser JA7P = 雷莎出擊(歐) JA8E = Final Fight JA8J = Final Fight JA8P = 街頭快打(歐) JAAE = Super Mario World JAAJ = Super Mario World JAAK = Super Mario World JAAP = Super Mario World JABJ = Mario no Super Picross JABL = Mario’s Super Picross JACE = F-Zero JACJ = F-Zero JACK = F-Zero JACP = F-Zero(歐) JADD = The Legend of Zelda: A Link to the Past JADE = The Legend of Zelda: A Link to the Past JADF = The Legend of Zelda: A Link to the Past JADJ = Zelda no Densetsu: Kamigami no Triforce JADK = The Legend of Zelda: A Link to the Past JADP = The Legend of Zelda: A Link to the Past JAEE = Donkey Kong Country JAEJ = Super Donkey Kong JAEK = Donkey Kong Country JAEP = Donkey Kong Country JAFD = SimCity JAFE = Sim City JAFF = SimCity JAFJ = SimCity JAFP = SimCity JAGJ = Fire Emblem: Monshou no Nazo JAHE = R-Type III: The 3rd Lightning JAHJ = R-Type III: The Third Lightning JAHK = R-Type III: The Third Lightning JAHP = R-TYPE III : The Third Lightning JAIE = Super Castlevania IV JAIJ = Akumajou Dracula JAIP = Super Castlevania IV JAJE = Street Fighter II: The World Warrior JAJJ = Street Fighter II JAJP = Street Fighter II: The World Warrior JALE = Contra III: The Alien Wars JALJ = Contra Spirits JALK = Contra III: The Alien Wars JALP = Super Probotector: Alien Rebels JAME = Gradius III JAMJ = Gradius III JAMK = Gradius III JAMM = 宇宙巡航機3(歐) JAPJ = Fire Emblem: Seisen no Keifu JAUJ = Famicom Bunko: Hajimari no Mori JAVE = Super Metroid JAVJ = Super Metroid JAVK = Super Metroid JAVP = 超級銀河戰士(歐) JAWE = Romance of the Three Kingdoms IV: Wall of Fire JAWJ = San Goku Shi IV JAZD = The Legend of the Mystical Ninja JAZE = The Legend of The Mystical Ninja JAZJ = Ganbare Goemon: Yukihime Kyuushutsu Emaki JAZP = The Legend of the Mystical Ninja JB3D = Harvest Moon JB3E = Harvest Moon JB3J = Harvest Moon JB3P = Harvest Moon JB5J = Super Gussun Oyoyo JB6J = Treasure Hunter G JB7J = Front Mission: Gun Hazard JB9J = Gakkou de atta Kowai Hanashi JBAE = Metal Marines JBAJ = Militia JBBE = Super Street Fighter II: The New Challengers JBBJ = Super Street Fighter II: The New Challengers JBBP = Super Street Fighter II: The New Challengers JBCE = Kirby's Dream Course JBCJ = Kirby Bowl JBCK = Kirby's Dream Course JBCP = Kirby's Dream Course JBDD = Donkey Kong Country 2: Diddy's Kong-Quest JBDE = Donkey Kong Country 2: Diddy's Kong Quest JBDJ = Super Donkey Kong 2: Dixie & Diddy JBDK = Donkey Kong Country 2: Diddy Kong's Quest JBDP = Donkey Kong Country 2: Diddy's Kong-Quest JBEJ = Magical Drop JBFJ = Otogirisou JBGJ = Mystery Dungeon: Shiren the Wanderer JBHJ = Heracles no Eikou IV: Kamigami-kara no Okurimono JBIE = Street Fighter II Turbo: Hyper Fighting JBIJ = Street Fighter II Turbo: Hyper Fighting JBIP = Street Fighter II Turbo: Hyper Fighting JBKE = Breath of Fire II JBKJ = Breath of Fire II: Shimei no Ko JBKP = Breath of Fire II JBLE = Pac-Attack JBLJ = Cosmo Gang the Puzzle JBLP = 小精靈的攻擊(歐) JBNE = Darius Twin JBNJ = Darius Twin JBOJ = Panel de Pon JBOK = Panel de Pon JBPE = Donkey Kong Country 3: Dixie Kong's Double Trouble JBPJ = Super Donkey Kong 3: Nazo no Krems Shima JBPP = Donkey Kong Country 3: Dixie Kong’s Double Trouble JBQE = Kirby's Avalanche JBQJ = Kirby's Avalanche JBQP = Kirby's Ghost Trap JBRE = Vegas Stakes JBRJ = Vegas Stakes JBRP = Vegas Stakes JBSE = Axelay JBSJ = Axelay JBSP = Axelay JBTE = Super Turrican JBTJ = Super Turrican JBTP = Super Turrican JBUE = Super Turrican 2 JBUJ = Super Turrican Two JBVJ = Der Langrisser JBWE = Cybernator JBWJ = Assault Suits Valken JBWK = Cybernator JBWP = 機動裝甲(歐) JBYE = Super R-Type JBYJ = Super R-Type JBYK = Super R-Type JBYP = 超級異形戰機(歐) JC2J = Taikou Risshiden JC3J = Bahamut Lagoon JC4E = Indiana Jones' Greatest Adventures JC4J = Indiana Jones Great Adventure JC4P = 印第安納瓊斯大冒險(歐) JC5J = Romancing SaGa JC6J = Romancing SaGa 2 JC7E = The Combatribes JC7J = The Combatribes JC8E = Final Fantasy II JC8J = Final Fantasy IV JC8M = Final Fantasy II JC8P = Final Fantasy 2 JC9J = Final Fantasy V JCAJ = DoReMi Fantasy: Milon no DokiDoki Daibouken JCAL = DoReMi Fantasy - Milon’s DokiDoki Adventure JCAN = DoReMi Fantasy: Milon's DokiDoki Adventure JCBE = Super Mario RPG: Legend of the Seven Stars JCBJ = Super Mario RPG JCBM = 超級瑪利奧RPG(歐) JCCE = Kirby Super Star JCCJ = Hoshi no Kirby Super Deluxe JCCP = Kirby’s Fun Pak JCDE = Kirby's Dream Land 3 JCDJ = Hoshi no Kirby 3 JCDM = Kirby’s Dream Land 3 JCEJ = Fire Emblem: Thracia 776 JCGJ = Ganbare Goemon 2: Kiteretsu Shougun Magginesu JCHJ = Ganbare Goemon 3 JCIJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo JCJE = Super Punch-Out!! JCJJ = Super Punch-Out!! JCJP = Super Punch Out!! JCKE = Space Invaders: The Original Game JCKJ = Space Invaders: The Original Game JCKP = Space Invaders -The Original Game JCLD = Secret of Mana JCLE = Secret of Mana JCLF = Secret of Mana JCLJ = Seiken Densetsu 2 JCLP = Secret of Mana JCMJ = Super Wagyan Land JCNE = Prince of Persia JCNJ = Prince of Persia JCTE = Ogre Battle: The March of the Black Queen JCTJ = Densetsu no Ogre Battle: The March of the Black Queen JCTM = Ogre Battle: The March of the Black Queen JCUE = PilotWings JCUJ = Tactics Ogre: Let Us Cling Together JCVE = Pilotwings JCVJ = Pilotwings JCVP = 飛行俱樂部(歐) JCWE = Super Mario Kart JCWJ = Super Mario Kart JCWP = Super Mario Kart JCXE = Nobunaga's Ambition JCXJ = Super Nobunaga no Yabou: Zengokuban JCYE = Uncharted Waters: New Horizons JCYJ = Daikoukai Jidai II JCZE = Genghis Khan II: Clan of the Gray Wolf JCZJ = Super Aoki Ookami to Shiroki Meshika: Genchou Hishi JD2J = Bishoujo Janshi Suchie-Pai JD3E = Super E.D.F. Earth Defense Force JD3J = Super E.D.F. Earth Defense Force JD3P = 地球防衛隊(歐) JD4E = Rival Turf! JD4J = Rushing Beat JD4P = Rival Turf! JD5E = Brawl Brothers JD5J = Rushing Beat Ran: Fukusei Toshi JD5P = Brawl Brothers JD6E = The Ignition Factor JD6J = Fire Fighting JD6M = The Ignition Factor JD7E = Super Adventure Island JD7J = Takahashi Meijin no Daibouken Jima JD7P = Super Adventure Island JD8E = Super Adventure Island II JD8J = Takahashi Meijin no Daibouken Jima II JD8P = Super Adventure Island II JD9E = Super Bonk JD9J = Chou-Genjin JD9M = Super Bonk JDAE = Final Fantasy III JDAJ = Final Fantasy VI JDAP = Final Fantasy III JDBE = Super Bomberman 3 JDCE = Street Fighter Alpha 2 JDCJ = Street Fighter Two Alpha JDCP = Street Fighter Alpha 2 JDDE = Final Fight 2 JDDJ = Final Fight Two JDDP = Final Fight 2 JDEE = Final Fight 3 JDEJ = Final Fight Tough JDEP = Final Fight 3 JDFJ = Sutte Hakkun JDHJ = Super Famicom Wars JDIE = Super Star Wars JDIJ = Super Star Wars JDIP = Super Star Wars JDJE = Super Star Wars: The Empire Strikes Back JDJJ = Super Star Wars The Empire Strikes Back JDJP = 星際大戰5 帝國大反擊(歐) JDKJ = Metal Max 2 JDLE = Super Star Wars: Return of the Jedi JDLJ = Super Star Wars Return Of The Jedi JDLP = Super Star Wars: Return of the Jedi JDMJ = Kirby no Kirakira Kizzu JDNE = Ghoul Patrol JDNJ = Ghoul Patrol JDOJ = Heisei Shin Onigashima: Zenpen JDPJ = Heisei Shin Onigashima: Kouhen JDQJ = Romancing Sa-Ga 3 JDRJ = Clock Tower JDSJ = Shin Megami Tensei II JDTJ = Shin Megami Tensei if... JDUJ = Albert Odyssey JDVE = Wild Guns JDVJ = Wild Guns JDVP = 荒野雙槍(歐) JDWE = Aero the Acrobat JDWJ = Aero The Acrobat JDWP = Aero The Acrobat JDXE = Aero the Acrobat 2 JDXJ = Aero The Acrobat Two JDXP = 飛天蝙蝠2(歐) JDYJ = Rudra no Hihou JDZE = Final Fantasy Mystic Quest JDZJ = Final Fantasy USA: Mystic Quest JEAE = Natsume Championship Wrestling JEAJ = Natsume Championship Wrestling JEAP = Natsume Championship Wrestling JEBE = Mega Man X JEBJ = RockMan X JECE = Chrono Trigger JECJ = Chrono Trigger JECM = Chrono Trigger JECP = Chrono Trigger JEDJ = Kunio-Kun no Dodge Ball Dayo Zenin Shuugo! JEEJ = Majin Tensei JEFJ = Majin Tensei II: Spiral Nemesis JEGJ = Gouketuji Ichizoku JEHE = Mega Man X2 JEHJ = RockMan X2 JEIJ = Metal Max Returns JEJJ = Tsukikomori JEKJ = Kyuyaku Megami Tensei: Megami Tensei I・II JODI = 自制頻道(歐) JOUE01 = New Super Mario Bros. Wii 10 The Journey KMCP06 = Wiimms MKW Fun 2010-12.pal+ KMKE01 = Kustom 瑪利歐賽車[WiFi](美) KMNE03 = Newer Super Mario Bros. Wii KMNE10 = Koopa Country KMNJ03 = Newer Super Mario Bros. Wii KMNP03 = Newer Super Mario Bros. Wii KMNP10 = Koopa Country L40P4Q = 自制 唱吧 下載版(歐) LAAJ = Hokuto no Ken LABE = Fantasy Zone LABJ = Fantasy Zone LABP = Fantasy Zone LACE = Wonder Boy LACJ = Super Wonder Boy LACP = Wonder Boy LADE = Phantasy Star LADJ = Phantasy Star LADP = Phantasy Star LAEE = Alex Kidd in Miracle World LAEJ = Alex Kidd in Miracle World LAEP = Alex Kidd in Miracle World LAFJ = Ashura LAFN = Secret Commando LAFP = Secret Command LAGE = Sonic The Hedgehog LAGJ = Sonic the Hedgehog LAGP = Sonic The Hedgehog LAHE = Space Harrier LAHJ = Space Harrier LAHP = Space Harrier LAIE = Enduro Racer LAIJ = Enduro Racer LAIP = Enduro Racer LAJE = Sonic The Hedgehog 2 LAJJ = Sonic the Hedgehog 2 LAJP = Sonic The Hedgehog 2 LAKE = Wonder Boy in Monster Land LAKJ = Super Wonder Boy: Monster World LAKP = Wonder Boy in Monster Land LALE = Fantasy Zone II: The Tears of OPA-OPA LALJ = Fantasy Zone II: The Tears of Opa-Opa LALP = Fantasy Zone II LAME = Sonic Chaos LAMJ = Sonic Chaos LAMP = Sonic Chaos LANE = Alex Kidd: The Lost Stars LANJ = Alex Kidd: The Lost Stars LANP = Alex Kidd: The Lost Stars LAOE = R-Type LAOJ = R-Type LAOP = R-Type LAPE = Wonder Boy III: The Dragon's Trap LAPP = Wonder Boy III: The Dragon's Trap LAQE = Alex Kidd in Shinobi World LAQP = Alex Kidd in Shinobi World LULZ = 自制頻道(歐) MA2J = Dyna Brothers MA3E = Puyo Puyo 2 MA3J = Puyo Puyo Tsuu MA3L = Puyo Puyo 2 MA4J = Bahamut Senki MA5J = Rent A Hero MA6E = Streets of Rage 2 MA6J = Bare Knuckle II: Shitou no Chinkon Uta MA6P = Streets of Rage 2 MA7E = Shining in the Darkness MA7J = Shining and the Darkness MA7P = Shining in the Darkness MA8E = Ecco: The Tides of Time MA8J = Ecco the Dolphin 2 MA8P = Ecco: The Tides of Time MA9J = The Hybrid Front MAAE = Altered Beast MAAJ = Juuouki MAAP = Altered Beast MABE = Columns MABJ = Columns MABP = Columns MACE = Dr. Robotnik's Mean Bean Machine MACJ = Puyo Puyo MACP = Dr. Robotnik's Mean Bean Machine MADE = Ecco the Dolphin MADJ = Ecco the Dolphin MADP = Ecco the Dolphin MAEE = Golden Axe MAEJ = Golden Axe MAEP = Golden Axe MAFE = Gunstar Heroes MAFJ = Gunstar Heroes MAFP = Gunstar Heroes MAGE = Ristar MAGJ = Ristar MAGP = Ristar MAHE = Sonic the Hedgehog MAHJ = Sonic the Hedgehog MAHP = Sonic the Hedgehog MAIE = Space Harrier II MAIJ = Space Harrier II MAIP = Space Harrier II MAJE = Toe Jam & Earl MAJJ = ToeJam & Earl MAJP = ToeJam & Earl MAKE = Shadow Dancer: The Secret of Shinobi MAKJ = Shadow Dancer: The Secret of Shinobi MAKP = Shadow Dancer: The Secret of Shinobi MALE = Bonanza Bros. MALJ = Bonanza Bros. MALP = Bonanza Bros. MAME = Sword of Vermillion MAMJ = Vermilion MAMP = Sword of Vermilion MANE = Gain Ground MANJ = Gain Ground MANP = Gain Ground MAOE = Bio-Hazard Battle MAOJ = Crying: Aseimei Sensou MAOP = Bio-Hazard Battle MAPE = Comix Zone MAPJ = Comix Zone MAPP = Comix Zone MAQE = Streets of Rage MAQJ = Bare Knuckle: Ikari no Tekken MAQP = Streets of Rage MARE = Beyond Oasis MARJ = The Story of Thor: Hikari o Tsugu Mono MARP = The Story of Thor MASE = Vectorman MASJ = Vectorman MASP = Vectorman MATE = Sonic Spinball MATJ = Sonic Spinball MATP = Sonic Spinball MAUJ = Puzzle & Action: Tant-R MAVE = Wonder Boy in Monster World MAVJ = Wonder Boy V: Monster World III MAVP = Wonder Boy In Monster World MAWE = Virtua Fighter 2 MAWJ = Virtua Fighter 2 MAWP = Virtua Fighter 2 MAXE = Alex Kidd In The Enchanted Castle MAXJ = Alex Kidd: Tenkuu Mashiro MAXP = Alex Kidd In The Enchanted Castle MAYE = Alien Storm MAYJ = Alien Storm MAYP = Alien Storm MAZE = ToeJam & Earl in Panic on Funkotron MAZP = ToeJam & Earl in Panic on Funkotron MB2J = Langrisser MB3E = Monster World IV MB3J = Monster World IV MB4J = Party Quiz Mega Q MB5J = Rangurissah II MB6E = Shining Force II MB6J = Shining Force II: Inishie no Fuuin MB6P = Shining Force II MB7E = Mega Turrican MB7P = Mega Turrican MB8E = Phantasy Star II MB8J = Phantasy Star II: Kaerazaru Toki no Owari ni MB8P = Phantasy Star II MB9J = Pepenga Pengo MBAJ = Pulseman MBAL = Pulseman MBAN = Pulseman MBBE = Sonic the Hedgehog 2 MBBJ = Sonic the Hedgehog 2 MBBP = Sonic the Hedgehog 2 MBCE = Kid Chameleon MBCJ = Chameleon Kid MBCP = Kid Chameleon MBDE = Golden Axe II MBDJ = Golden Axe II MBDP = Golden Axe II MBEE = Shining Force MBEJ = Shining Force: Kamigami no Isan MBEP = Shining Force MBFE = Shinobi III: Return of the Ninja Master MBFJ = The Super Soldier II MBFP = Shinobi III: Return of the Ninja master MBGE = Dynamite Headdy MBGJ = Dynamite Headdy MBGP = Dynamite Headdy MBHJ = Puzzle & Action: Ichidant-R MBIE = Landstalker: The Treasures of King Nole MBIJ = LandStalker: Koutei no Zaihou MBIP = Landstalker: The Treasures of King Nole MBJE = Ghouls'n Ghosts MBJJ = Dai Makai-Mura MBJP = Ghouls'n Ghosts MBKJ = Crack Down MBKP = Crack Down MBLJ = ESWAT: Cyber Police MBLP = ESWAT City Under Siege MBME = Sonic the Hedgehog 3 MBMJ = Sonic the Hedgehog 3 MBMP = Sonic the Hedgehog 3 MBNJ = Chelnov MBOE = Golden Axe III MBOJ = Golden Axe III MBOP = Golden Axe III MBPE = Super Thunder Blade MBPJ = Super Thunder Blade MBPP = Super Thunder Blade MBQE = Streets of Rage 3 MBQJ = Bare Knuckle III MBQP = Streets of Rage 3 MBRE = Rolling Thunder 2 MBRJ = Rolling Thunder 2 MBRP = Rolling Thunder 2 MBSJ = Dyna Brothers 2 Special MBTE = Alien Soldier MBTJ = Alien Soldier MBTP = Alien Soldier MBUE = Sonic 3D: Blast MBUJ = Sonic 3D Blast MBUP = Sonic 3D: Flickies' Island MBVJ = Jusu Kihei Leynos MBWE = Columns III: Revenge of Columns MBWJ = Columns III: Taiketsu! Columns World MBWM = Columns III: Revenge of Columns MBXE = Ecco Jr. MBXJ = Ecco Jr. MBXM = Ecco Jr. MBYE = Light Crusader MBYJ = Light Crusader MBYP = Light Crusader MBZE = Eternal Champions MBZJ = Eternal Champions MBZP = Eternal Champions MC2E = Earthworm Jim 2 MC2J = Earthworm Jim 2 MC2P = Earthworm Jim 2 MC3E = Super Street Fighter II: The New Challengers MC3J = Super Street Fighter 2: The New Challengers MC3P = Super Street Fighter II: The New Challengers MC4E = Strider MC4J = Strider Hiryu MCAJ = Gley Lancer MCAL = Gley Lancer MCAN = Gley Lancer MCBE = Powerball MCBJ = Wrestleball MCCE = Phantasy Star III MCCJ = Toki no Keishousha: Phantasy Star III MCCP = Phantasy Star III: Generations of Doom MCDE = Sonic & Knuckles MCDJ = Sonic & Knuckles MCDP = Sonic & Knuckles MCEJ = Super Fantasy Zone MCEN = Super Fantasy Zone MCEP = Super Fantasy Zone MCGE = Forgotten Worlds MCGJ = Forgotten Worlds MCGP = Forgotten Worlds MCHE = M.U.S.H.A. MCHJ = Musha Aleste MCHM = MUSHA : Metallic Uniframe Super Hybrid Armor MCIJ = Gynoug MCJE = Splatterhouse 2 MCJJ = Splatterhouse Part 2 MCJP = Splatterhouse 2 MCKE = Phantasy Star IV MCKJ = Phantasy Star: Sennenki no Owari ni MCKP = Phantasy Star IV MCLE = Street Fighter II': Special Champion Edition MCLJ = Street Fighter II' Plus: Champion Edition MCLP = Street Fighter II’: Special Champion Edition MCMJ = Lord Monarch: Tokoton Sentou Densetsu MCNJ = Hokuto no Ken: Shin Seikimatu Kyuseisyu Densetsu MCOJ = Sorcerian MCPE = Earthworm Jim MCPJ = Earthworm Jim MCPP = Earthworm Jim MCQE = Boogerman: A Pick and Flick Adventure MCQP = Boogerman - A Pick and Flick Adventure MCRE = Wolf of the Battlefield: MERCS MCRJ = Senjou no Ookami II MCRP = MERCS: Wolf of the Battlefield MCSJ = Wonder Boy III: Monster Lair MCSN = Wonder Boy III: Monster Lair MCSP = Wonder Boy III: Monster Lair MCTE = Clay Fighter MCTP = Clay Fighter MCUJ = Dragon Slayer: The Legend of Heroes MCVE = Pitfall: The Mayan Adventure MCVJ = Pitfall: The Mayan Adventure MCVP = Pitfall: The Mayan Adventure MCWE = Galaxy Force II MCWJ = Galaxy Force II MCWP = Galaxy Force II MCXJ = Dragon Slayer: The Legend of Heroes MCYE = The Revenge of Shinobi MCYJ = The Super Shinobi MCYP = The Revenge of Shinobi MCZE = Shanghai II: Dragon's Eye MCZP = Shanghai II Dragon's Eye MDUE01 = 瑪利歐賽車 Track Grand Priix[WiFi](美) MECPSI = 自制 唱吧 下載版(歐) METE01 = New Super Metroid Bros. Wii MIJPSI = 自製 唱吧 麥可傑克森(歐) MILPSI = 自制 唱吧 下載版(歐) MKDE02 = Darky Kart Wii MKTE01 = Mario Kart Wii Teknik MKWP01 = Super Mario Kart for Wii MMRE01 = D.U. Super Mario Bros 2.1 Madness Returns MRRE01 = New Super Mario Bros. Wii Retro Remix MRRP01 = New Super Mario Bros. Wii Retro Remix NA3E = Bomberman Hero NA3J = Bomberman Hero NA3P = Bomberman Hero NAAE = Super Mario 64 NAAJ = Super Mario 64 NAAP = Super Mario 64 NABE = Mario Kart 64 NABJ = Mario Kart 64 NABK = Mario Kart 64 NABP = Mario Kart 64 NACE = The Legend of Zelda: Ocarina of Time NACJ = Zelda no Densetsu: Toki no Ocarina NACP = The Legend of Zelda: Ocarina of Time NADE = Star Fox 64 NADJ = Star Fox 64 NADK = Star Fox 64 NADP = Lylat Wars NAEE = 紙片瑪莉歐(美) NAEJ = Mario Story NAEP = Paper Mario NAFE = F-Zero X NAFJ = F-Zero X NAFP = F-Zero X NAGJ = Aerogauge NAHE = Yoshi's Story NAHJ = Yoshi's Story NAHP = Yoshi's Story NAIE = Wave Race 64 NAIJ = Wave Race 64: Kawasaki Jet Ski NAIP = 水上摩托(歐) NAJ8 = The Legend of Zelda: Ocarina of Time (spanish translation) NAJ9 = Super Smash Bros. NAJJ = Tsumi to Batsu NAJL = Sin & Punishment NAJN = Sin and Punishment NAKD = Pokémon Snap NAKE = Pokémon Snap NAKF = Pokémon Snap NAKI = Pokémon Snap NAKJ = Pokémon Snap NAKP = Pokémon Snap NAKS = Pokémon Snap NALE = Super Smash Bros. NALJ = Nintendo All-Star Dairantou Smash Brothers NALP = Super Smash Bros. NAME = Kirby 64: The Crystal Shards NAMJ = Hoshi no Kirby 64 NAMK = Kirby 64: The Crystal Shards NAMP = Kirby 64: The Crystal Shards NAND = Pokémon Puzzle League NANE = Pokémon Puzzle League NANF = Pokémon Puzzle League NANJ = Pokemon Puzzle League NANP = Pokémon Puzzle League NAOE = 1080° Snowboarding NAOJ = 1080° Snowboarding NAOK = 1080° Snowboarding NAOP = 1080 : TenEighty Snowboarding NAPJ = Custom Robo V2 NARE = The Legend of Zelda: Majora's Mask NARJ = Zelda no Densetsu: Majora no Kamen NARP = The Legend of Zelda: Majora's Mask NASE = Cruis'n USA NASJ = Cruisn USA NASP = 特級飛車(歐) NATE = Mario Tennis NATJ = Mario Tennis 64 NATP = Mario Tennis NAUE = Mario Golf NAUJ = Mario Golf 64 NAUP = Mario Golf NAYE = Ogre Battle 64: Person of Lordly Caliber NAYJ = Ogre Battle 64: Person of Lordly Caliber NAYM = Ogre Battle 64 : Person of Lordly Caliber NAZE = Mario Party 2 NAZJ = Mario Party 2 NAZP = Mario Party 2 NEEA = The Legend of Zelda: Ocarina of Time Master Quest NEWE01 = New Super Mario Bros Wii 15 A New World NK2O = Neek2o NMNP01 = Newer Super Mario Bros. Wii NRJ1FR = 自制 唱吧 NRJ音樂之旅 1.1版(自) NSMB02 = New Super Mario Bros. Wii 2 NSSP01 = Newer Summer Sun NWRP01 = Newer Super Mario Bros. Wii NZXM = Super Mario 64 Multiplayer ONKELZ = 自制 唱吧 下載版(美) OTFPSI = 自制 唱吧 下載版(歐) P2ME01 = Metroid Prime 2: Echoes (Bonus Disc) PA2J = Nekketsu Koukou Dodgeball Bu: CD Soccer Hen PA3J = Salamander PA4J = Parasol Stars PA6E = Bloody Wolf PA6J = Narazumono Sentou Butai: Bloody Wolf PA6P = Bloody Wolf PA7E = Alien Crush PA7J = Alien Crush PA7P = Alien Crush PA8E = Ordyne PA8J = Ordyne PA9E = Splatterhouse PA9J = Splatterhouse PA9P = Splatterhouse PAAE = Bomberman '93 PAAP = Bomberman '93 PABE = Bonk's Adventure PABJ = PC Genjin PABP = Bonk's Adventure PACE = Dungeon Explorer PACJ = Dungeon Explorer PACP = Dungeon Explorer PADE = R-Type PADJ = R-Type I PADP = R-Type PAEE = Super Star Soldier PAEJ = Super Star Soldier PAEP = Super Star Soldier PAFE = Victory Run PAFJ = Victory Run: Eikou no 13,000KM PAFP = Victory Run PAGJ = Bomberman '94 PAGL = Bomberman'94 PAGN = Bomberman '94 PAHE = Battle Lode Runner PAHJ = Battle Lode Runner PAHP = Battle Lode Runner PAIE = New Adventure Island PAIJ = Takahashi Meijin no Shin Bouken Jima PAIP = New Adventure Island PAJJ = Joshoken Necromancer PAKE = Dragon's Curse PAKJ = Adventure Island PAKP = Dragon's Curse PALE = Soldier Blade PALJ = Soldier Blade PALP = Soldier Blade PAME = Neutopia PAMJ = Neutopia: Frey no Shou PAMP = Neutopia PANE = Military Madness PANJ = Nectaris PANP = Military Madness PAOJ = Final Soldier PAOL = Final Soldier PAON = Final Soldier PAPJ = R-Type II PAQJ = Gradius PARJ = Detana TwinBee PARL = Detana Twin Bee PARN = Detana Twin Bee PASJ = Cadash PATJ = Kiki Kaikai PAUJ = Kaizou Chounin Shubibinman PAVE = Vigilante PAVJ = Vigilante PAVP = Vigilante PAWE = Galaga '90 PAWJ = Galaga '88 PAWP = Galaga'90 PAYJ = Valkyrie no Densetsu PAZJ = Genpei Toumaden PB2E = Neutopia II PB2J = Neutopia II PB2P = Neutopia II PB3E = Devil's Crush PB3J = Devil Crash PB3P = Devil's Crush PB5J = Ninja Ryukenden PB6E = Cratermaze PB6P = Cratermaze PB7J = Sengoku Mahjong PB8E = Blazing Lazers PB8J = Blazing Lazers PB8P = Blazing Lazers PB9E = World Sports Competition PB9J = Power Sports PB9P = World Sports Competition PBAE = Dragon Spirit PBAJ = Dragon Spirit PBAP = Dragon Spirit PBCJ = Wonder-Momo PBDE = Double Dungeons PBDJ = Double Dungeons PBDP = Double Dungeons PBEE = Moto Roader PBEJ = Moto Roader PBEP = Motoroader PBFJ = Fire ProWrestling: Combination Tag PBHE = Bonk's Revenge PBHJ = PC Genjin 2 PBHP = Bonk's Revenge PBIE = Bonk 3: Bonk's Big Adventure PBIJ = PC Genjin 3 PBIP = Bonk III: Bonk's Big Adventure PBJE = Samurai Ghost PBJJ = Genpei Toumaden: Kannoni PBJP = Samurai Ghost PBME = Legend of Hero Tonma PBMJ = Legend of Hero Tonma PBMP = Legend of Hero Tonma PBNE = Ninja Spirit PBNJ = Saigou no Nindou: Ninja Spirit PBNP = Ninja Spirit PBSE = Chew Man Fu PBSJ = Be Ball PBSP = Chew Man Fu PBTE = China Warrior PBTJ = The Kung Fu PBTP = China Warrior PBUE = Bravoman PBUJ = Chouzetsu Rinjin Bravoman PBVJ = Benkei Gaiden PBWE = Air “Zonk” PBWJ = PC Denjin: Punkic Cyborgs PBWP = Air 'Zonk' PBXE = Shockman PBXJ = Kaizou Chounin Shubibinman 2: Atanaru Teki PBXP = Shockman PBYJ = Out Live PBZE = J.J. & Jeff PBZP = J.J. & Jeff PC2E = Chase H.Q. PC2J = Chase H.Q. PC2P = Chase H.Q. PC3J = Darius Plus PC4J = Space Invaders: Fukkatsu no Hi PC5J = Dragon Saber PC6E01 = Pokémon Colosseum Bonus Disc PC6J = Final Blaster PC7J = Mizubaku Daibouken PC8J = The Ninjawarriors PC9J = The NewZealand Story PCAE = Silent Debuggers PCAJ = Silent Debuggers PCAP = Silent Debuggers PCBE = Dead Moon PCBJ = Dead Moon: Tsuki Sekai no Akumu PCBP = Dead Moon PCCJ = Makai Hakkenden Shada PCDJ = Appare! Gateball PCEE = Power Golf PCEJ = Power Golf PCEP = Power Golf PCHE = Drop Off PCHJ = Drop Rock Hora Hora PCHP = Drop Off PCJJ = Override PCKJ = Gai Flame PCMJ = Mr. Heli no Daibouken PCNJ = Winning Shot PCOE = Psychosis PCOJ = Paranoia PCOP = Psychosis PCPJ = Power Eleven PCQJ = Psycho Chaser PCRJ = Break In PCRL = Break In PCRN = Break In PCSJ = Digital Champ: Battle Boxing PCSJ = Digital Champ: Battle Boxing PCSJ01 = Pokemon Colosseum Bonus Disc PCSL = Digital Champ : Battle Boxing PCSN = Digital Champ Battle Boxing PCTJ = Power Tennis PCUJ = Fire ProWrestling 2nd Bout PCVE = World Class Baseball PCVP = World Class Baseball PCWJ = Image Fight PCXJ = Power League IV PCYJ = Wallaby!! Usagi no Kuni no Kangaroo Race PDCJ = Dai Makaimura PDDJ = Volfied PDEJ = S.C.I.: Special Criminal Investigation PDFJ = Jigoku Meguri PDGJ = Fire ProWrestling 3: Legend Bout PDHJ = Rastan Saga II PDIE = Champion Wrestler PDJJ = Street Fighter II': Champion Edition PDJL = Street Fighter II' : Champion Edition PDJN = Street Fighter II: Champion Edition PDUE01 = 另一個超級瑪利歐兄弟Wii(美) PKBJ01 = The Tower of Druaga PLUS = WiiMC+ PM4E01 = Mario Kart: Double Dash!! Bonus Disc PMNEO1 = 新舊超級瑪利歐兄弟Wii(美) POPPSI = 自制 唱吧 下載版(歐) PPNE01 = 新超級瑪利歐兄弟Wii 加強版(美) PPNP01 = New Super Mario Bros. Wii 2: The Next Levels PRJE01 = Pac-Man vs. PRJJ01 = Pac-Man vs. PRJP01 = Pac-Man vs. PROE01 = New Super Mario Bros. Wii 14 Project Mario PT1PSI = SingIt Star Portugal Hits PT2PSI = SingIt Portugal Hits Summer Party PT3PSI = Sing IT Portugal Hits - Morangos com Açucar PUTA01 = 自製 吉他英雄3 搖滾精選(?) PWNP69 = Pwned Super Mario Bros. Wii PXWE = Project X: Love Potion Disaster PZLE01 = The Legend of Zelda: Collector's Edition PZLJ01 = The Legend of Zelda: Collector's Edition PZLP01 = The Legend of Zelda: Collector's Edition QA2J = Nekketsu Koukou Dodge Ball-Bu: CD Soccer-hen QA3E = SimEarth: The Living Planet QA3J = SimEarth QA3P = SimEarth: The Living Planet QA4J = Super Darius II QA5J = Space Invaders: The Original Game QA6J = Super Darius QA7J = Legend of Xanadu: Kaze no Densetsu Xanadu QA8J = Spriggan Mark 2 QA9J = Kaze no Densetsu: Xanadu II QAAE = Super Air Zonk QAAJ = CD Denjin: Rockabilly Tengoku QAAP = Super Air Zonk QABE = Ys Book I & II QABJ = Ys I + II QABP = Ys Book I & II QACJ = Cho Aniki QACL = Cho Aniki QACN = Cho Aniki QADJ = Gradius II: Gofer no Yabou QADL = Gradius II: Gofer no Yabou QADN = Gradius II Gofer No Yabou QAEJ = A.III: A-Ressha de Ikou III QAFE = The Dynastic Hero QAFJ = Chou Eiyuu Densetsu: Dynastic Hero QAFP = The Dynastic Hero QAGE = Gate of Thunder QAGJ = Gate of Thunder QAGP = Gate of Thunder QAHJ = Kawa no Nushi Tsuni Shizenha QAJJ = Image Fight II QAKJ = Ai Chou Aniki QALJ = The Atlas: Renaissance Voyager QANJ = Neo Nectaris QAOJ = Dungeon Explorer II QAPJ = Akumajou Dracula X: Chi no Rondo QAPL = Castlevania : Rondo of Blood QAPN = Castlevania Rondo of Blood QAPP = Castlevania: Rondo of Blood QAQJ = Dragon Slayer: Eiyuu Densetsu QARJ = Blood Gear QASE = Lords of Thunder QASJ = Winds of Thunder QASP = Lords of Thunder QATE = Riot Zone QATJ = Crest of Wolf QATP = Riot Zone QAUE = Monster Lair QAUJ = Wonder Boy III: Monster Lair QAUP = Monster Lair QAVJ = Bomberman: Panic Bomber QAWJ = Star Parodier QAWL = Star Parodier QAWN = Star Parodier QAXJ = Martial Champion QAYJ = Seirei Senshi Spriggan QAZJ = Eikan wa Kimi ni: Koko Yakyu Zenkoku Taikai QBAJ = L Dis QBBE = Fighting Street QBBJ = Fighting Street QBBP = Fighting Street R01PET = 自制 唱吧 下載版(歐) R02PEA = 自制 唱吧 下載版(歐) R15POH = 自製 唱吧 Radio 105(歐) R22E01 = 超級粉碎球 PLUS[MP](美) R22J01 = 超級粉碎球 PLUS[MP](日) R22P01 = 超級粉碎球 PLUS[MP](歐) R23E52 = 芭比公主三劍客(美) R23P52 = 芭比公主三劍客(歐) R24J01 = 用Wii遊玩小小機器人(日) R25EWR = 樂高哈利波特 1-4年(美) R25PWR = 樂高哈利波特 1-4年(歐) R26E5G = 街機經典(美) R27E54 = 愛探險的朵拉 拯救水晶王國(美) R27X54 = 愛探險的朵拉 拯救水晶王國(X) R28E54 = 職業網球大聯盟4(美) R28P54 = 職業網球大聯盟4(歐) R29E52 = 世界彩彈錦標賽2009(美) R29P52 = 世界彩彈錦標賽2009(歐) R2AE7D = 冰原歷險記2(美) R2AP7D = 冰原歷險記2(歐) R2AX7D = 冰原歷險記2(X) R2DEEB = 多卡波王國(美) R2DJEP = 多卡波王國for Wii(日) R2DPAP = 多卡波王國(歐) R2DPJW = 多卡波王國(歐) R2EJ99 = 魚之眼 Wii(日) R2FE5G = 小魚弗雷迪 丟失的海藻種盒(美) R2FP70 = 小魚弗雷迪 丟失的海藻種盒(歐) R2GEXJ = 廢墟迷宮 再見月的廢墟(美) R2GJAF = 虛弱 再見月之廢墟(日) R2GP99 = 廢墟迷宮 再見月的廢墟(歐) R2HE41 = 想象 冠軍騎士(美) R2IE69 = 勁爆美式足球10[WiFi](美) R2IP69 = 勁爆美式足球10[WiFi](歐) R2JJAF = 太鼓達人Wii(日) R2KE54 = 唐金拳擊[平衡板](美) R2KP54 = 唐金拳擊[平衡板](歐) R2LJMS = 草裙舞Wii[平衡板](日) R2ME20 = M&M's巧克力豆大冒險(美) R2NE69 = 雲斯頓卡丁車大賽(美) R2OE68 = 中世紀遊戲(美) R2OP68 = 中世紀遊戲(歐) R2PE9B = 魔法飛球2(美) R2PJ9B = 魔法飛球2(日) R2PKZ4 = 魔法飛球2(韓) R2PP99 = 魔法飛球(歐) R2PP9B = 魔法飛球(歐) R2QJC0 = 妙廚老媽2 糟糕!媽媽好忙!!(日) R2RE4F = 小馬伙伴2(美) R2RP4F = 小馬伙伴2(歐) R2SE18 = 運動大集錦2 Wii的十項運動(美) R2SJ18 = 運動大集錦2 Wii的十項運動(日) R2SP18 = 運動大集錦2 Wii的十項運動(歐) R2TE41 = 忍者龜 毀滅[WiFi](美) R2TP41 = 忍者龜 毀滅[WiFi](歐) R2UE8P = 一起來敲打(美) R2UJ8P = 一起來敲打(日) R2UP8P = 一起來敲打(歐) R2VE01 = 罪與罰2(美) R2VJ01 = 罪與罰:宇宙的後繼者(日) R2VP01 = 罪與罰2[WiFi](歐) R2WEA4 = 實況足球2009[WiFi](美) R2WJA4 = 實況足球 中場指揮官 2009(日) R2WPA4 = 實況足球2009[WiFi](歐) R2WXA4 = 實況足球2009[WiFi](X) R2YE54 = 我的生日(美) R2YP54 = 我的生日(歐) R32J01 = 用Wii玩銀河戰士Prime2黑暗回音(日) R33E69 = 搖滾樂團 樂曲擴展包2(美) R33P69 = 搖滾樂團 樂曲擴展包2(歐) R34E69 = 搖滾樂團 鄉村音樂包(美) R35JC8 = 三國志11 威力加強版(日) R36E69 = 搖滾樂團 年輕歲月(美) R36P69 = 年輕歲月 搖滾樂團(歐) R37E69 = 搖滾樂隊 金屬 樂曲包(美) R38E78 = Q版超級英雄大戰(美) R38P78 = Q版超級英雄大戰(歐) R38X78 = Q版超級英雄大戰 沃爾瑪版(X) R38Y78 = Q版超級英雄大戰(Y) R39EFP = 禧碼諾極限釣魚(美) R39PNK = 禧瑪諾極限釣魚(歐) R3AE20 = 冒險童話故事時間(美) R3AP20 = 冒險童話故事時間(歐) R3AP7J = 故事時間 冒險故事(歐) R3BE8P = 歡樂森巴[WiFi](美) R3BJ8P = 歡樂森巴[WiFi](日) R3BP8P = 歡樂森巴[WiFi](歐) R3CE20 = 克萊斯勒經典賽車(美) R3CP20 = 克萊斯勒經典賽車(歐) R3CP7J = 克萊斯勒經典賽車(歐) R3DES5 = 夢幻彈珠檯3D(美) R3DPS5 = 夢幻彈珠檯3D(歐) R3EEWR = 遊戲派對3(美) R3EPWR = 遊戲派對3(歐) R3FJA4 = 實況力量棒球大聯盟3(日) R3GXUG = 國際兒童 瘋狂小型高爾夫(X) R3HP6Z = 特工雨果 熱帶假期(歐) R3HX6Z = 特工雨果 熱帶假期(X) R3IJ01 = 用Wii玩銀河戰士Prime(日) R3JE5G = 去玩吧馬戲團明星[平衡板](美) R3KP6N = 摩天大樓(歐) R3LEWR = 綠光戰警 獵人的崛起(美) R3LPWR = 綠光戰警 獵人的崛起(歐) R3ME01 = 銀河戰士三部曲(美) R3MP01 = 銀河戰士Prime 三部曲(歐) R3NEXS = 罪惡裝備XX Accent Core 加強版(美) R3NPH3 = 罪惡裝備XX Accent Core 加強版(歐) R3OE01 = 銀河戰士 另一個 M(美) R3OJ01 = 銀河戰士:另一個 M(日) R3OP01 = 銀河戰士 另一個 M(美) R3PEWR = 極速賽車手(美) R3PJ52 = 極速賽車手(日) R3PPWR = 極速賽車手(歐) R3RE8P = 音速小子與SEGA 超級巨星大賽車(美) R3RP8P = 音速小子與SEGA 超級巨星大賽車(歐) R3SE52 = 蜘蛛人 黯黑之網 (美) R3SP52 = 蜘蛛人 黯黑之網(歐) R3TE54 = 職業網球大聯盟3(美) R3TJG9 = 職業網球大聯盟3(日) R3TP54 = 職業網球大聯盟3(歐) R3UJGD = 親子遊戲 米菲兔的玩具(日) R3VEFP = 麋鹿獵人(美) R3VPNK = 麋鹿獵人(歐) R3XE6U = 妙探闖通關 第一季(美) R3XP6V = 妙探闖通關 第一季(歐) R3YE70 = 妙探闖通關2 超越時空(美) R3YP70 = 妙探闖通關2 超越時空(歐) R3ZE69 = 搖滾樂隊樂曲包 經典搖滾(美) R42E69 = 模擬人生2 生存遊戲(美) R42P69 = 模擬人生2 生存遊戲(歐) R43E69 = EA SPORTS 活力健身房 更多鍛鍊[平衡板](美) R43J13 = EA SPORTS 活力健身房 30天生活改善程序[平衡板](日) R43P69 = EA SPORTS 活力健身房 更多鍛鍊[平衡板](歐) R44J8P = 涼宮春日的并列(日) R46ENS = 通靈戰士Wii(美) R46JKB = 通靈戰士Wii(日) R47E20 = ATV沙灘車之王(美) R48E7D = 奇幻精靈事件簿(美) R48P7D = 奇幻精靈事件簿(歐) R49E01 = 大金剛森林節拍(美) R49J01 = 大金剛森林節拍(日) R49P01 = 大金剛森林節拍(歐) R4AE69 = 模擬動物(美) R4AJ13 = 模擬動物(日) R4AP69 = 模擬動物(歐) R4BEJZ = 桌面足球(美) R4BPGT = 桌上足球(歐) R4CE69 = 模擬城市 建筑大師[WiFi](美) R4CJ13 = 模擬城市 建筑大師[WiFi](日) R4CK69 = 模擬城市 建筑大師[WiFi](韓) R4CP69 = 模擬城市 建筑大師[WiFi](歐) R4DDUS = 三個問號 高校之迷(德) R4EE01 = 永恆深藍 海洋的呼喚(美) R4EJ01 = 永恆深藍 海洋的呼喚(日) R4EP01 = 永恆深藍2 海洋的呼喚(歐) R4FE20 = 故事時間 童話故事(美) R4FP20 = 故事時間 童話故事(歐) R4FP7J = 經典童話故事時間(歐) R4IPNK = 瘋狂玩具車(歐) R4LPUG = 田徑豬派對(X) R4LXUG = 田徑豬派對(X) R4MJ0Q = 使頭腦變靈活Wii(日) R4NE5G = 大小調的莊嚴進行曲(美) R4NP5G = 大小調的莊嚴進行曲(歐) R4NX5G = 大小調的莊嚴進行曲(X) R4PE69 = 模擬人生2 寵物(美) R4PP69 = 模擬人生2 寵物(歐) R4QE01 = 瑪利歐足球前鋒 Charged[WiFi](美) R4QJ01 = 瑪利歐足球前鋒 Charged[WiFi](日) R4QK01 = 瑪利歐足球前鋒 Charged[WiFi](韓) R4QP01 = 瑪利歐足球前鋒 Charged[WiFi](歐) R4RE69 = FIFA足球10[WiFi](美) R4RJ13 = FIFA足球10[WiFi](日) R4RK69 = FIFA足球10(韓) R4RP69 = FIFA足球10[WiFi](歐) R4RX69 = FIFA足球10[WiFi](X) R4RY69 = FIFA足球10[WiFi](Y) R4RZ69 = FIFA足球10[WiFi](美) R4SE54 = 美國職棒大聯盟 超級明星隊(美) R4VEA4 = 故事繪本工坊(美) R4VJA4 = 電視劇場Wii[WiFi](日) R4VJAF = 電視劇場Wii[WiFi](日) R4WJA4 = 實況力量棒球大聯盟2009(日) R4YJ2M = 貓社長蕾娜Wii(日) R4ZE01 = 零月蝕之假面(美) R4ZJ01 = 零 月蝕之假面(日) R4ZP01 = 零月蝕之假面(美) R52E08 = 尼奧寵物謎題大冒險(美) R52P08 = 尼奧寵物謎題大冒險[WiFi](歐) R53PFH = 混音大師 阿曼凡布倫(歐) R54FMR = 倒數遊戲(法) R55F41 = 誰想成為百萬富翁(法) R55P41 = 誰想成為百萬富翁(歐) R56EG9 = 原子小金剛(美) R56PG9 = 原子小金剛(歐) R57FMR = 聯合答題冠軍(法) R58DMR = 你來唱[麥克風](德) R58FMR = 你來唱[麥克風](法) R58PMR = 你來唱[麥克風](歐) R58SMR = 你來唱[麥克風](西) R59D4Q = 企鵝俱樂部 遊戲日[WiFi](歐) R59E4Q = 企鵝俱樂部 遊戲日[WiFi](美) R59P4Q = 企鵝俱樂部 遊戲日[WiFi](歐) R5AE8P = 黃金羅盤(美) R5AP8P = 黃金羅盤(歐) R5AX8P = 黃金羅盤(X) R5DE5G = 弗利普的翻轉世界(美) R5EPMR = 倒計時(歐) R5FE41 = 冠軍學院 足球[MP][平衡板](美) R5FP41 = 冠軍學院 足球[MP][平衡板](歐) R5GE78 = 你比五年級生聰明嗎(美) R5IE4Q = 玩具瘋狂總動員(美) R5IP4Q = 玩具瘋狂總動員(歐) R5IR4Q = Toy Story Mania! R5IX4Q = 玩具瘋狂總動員(X) R5JES5 = 海盜 VS 忍者 躲避球(美) R5JPS5 = 海盜 VS 忍者 躲避球(歐) R5MJAF = 語言解謎 文字拼詞Wii豪華版(日) R5NJN9 = 多阿拉Wii(日) R5OENR = 田徑豬派對(美) R5OXUG = 農場派對 奧林匹格主演(X) R5PE69 = 哈利波特 鳳凰會的密令(美) R5PJ13 = 哈利波特 鳳凰會的密令(日) R5PP69 = 哈利波特 鳳凰會的密令(歐) R5PX69 = 哈利波特 鳳凰會的密令(X) R5QPGT = 馬戲團遊戲(歐) R5SERW = 幽靈莊園的秘密(美) R5TE69 = 大滿貫網球[MP][WiFi](美) R5TJ13 = 大滿貫網球[MP][WiFi](日) R5TP69 = 大滿貫網球[MP][WiFi](歐) R5UE41 = CSI犯罪現場 致命意圖(美) R5UP41 = CSI犯罪現場 致命意圖(歐) R5VE41 = 阿凡達(美) R5VP41 = 阿凡達(歐) R5VX41 = 阿凡達(X) R5WEA4 = 沉默之丘 破碎的記憶(美) R5WJA4 = 沉默之丘:破碎的記憶(日) R5XJ13 = 我的模擬人生 特工(日) R5XP69 = 我的模擬人生 特工(歐) R5YD78 = 全明星啦啦隊[平衡板](德) R5YE78 = 全明星啦啦隊2[平衡板](美) R5YP78 = 全明星啦啦隊2[平衡板](歐) R62E4Q = 迪士尼想唱就唱 流行節奏(美) R62P4Q = 迪士尼想唱就唱 流行節奏(歐) R63EG9 = 家庭聚會 30個戶外遊戲(美) R63PG9 = 家庭聚會 30個戶外遊戲(歐) R64E01 = Wii音樂[平衡板][WiFi](美) R64J01 = Wii音樂(日) R64K01 = Wii音樂[平衡板][WiFi](韓) R64P01 = Wii音樂[平衡板][WiFi](歐) R65ENR = 獵鹿狂(美) R66E41 = 按你的運氣 2010版(美) R67E6K = 聰明系列出品 佳佳的冒險(美) R68E5G = 去玩吧 城市運動[平衡板](美) R69E36 = 越野精英賽大地長征2(美) R69P36 = 越野精英賽大地長征2(歐) R6APPU = 寶貝和我(歐) R6BE78 = 顏料寶貝(美) R6BJ78 = 顏料寶貝(日) R6BK78 = 顏料寶貝(韓) R6BP78 = 顏料寶貝(歐) R6BX78 = 顏料寶貝(X) R6CEAF = 我們的啦啦隊2(美) R6CJAF = 我們的啦啦隊 熱舞靈魂!(日) R6DFJW = 警告 公路規則(法) R6EE41 = 家庭智力搶答 2010版(美) R6FE41 = 六旗主題樂園(美) R6FERS = 六旗主題樂園(美) R6FP41 = 歡樂園聚會(歐) R6GPMR = 黃金球(歐) R6HE54 = 你好,凱蘭 超級遊戲節(美) R6HP54 = 你好,凱蘭 超級遊戲節(歐) R6IE54 = 棒球衝擊波[MP](美) R6JJGD = 鋼之煉金術師 曉之王子(日) R6KP36 = 灰燼杯板球2009(歐) R6KU36 = 灰燼杯板球賽2009(英) R6LEWR = 樂高搖滾樂團(美) R6LPWR = 樂高搖滾樂團(歐) R6ME5Z = 美國超級模特兒新秀大賽(美) R6MPML = 全美超模大賽(歐) R6MXMR = Top Model R6NE41 = 夏恩懷特滑雪 世界舞臺[MP][平衡板](美) R6NP41 = 夏恩懷特滑雪 世界舞臺[MP][平衡板](歐) R6NY41 = 夏恩懷特滑雪 世界舞臺[MP][平衡板](Y) R6OE78 = 汽車總動員 奧拉瑪大獎賽(美) R6OP78 = 汽車總動員 奧拉瑪大獎賽(歐) R6OX78 = 汽車總動員 奧拉瑪大獎賽(X) R6QE69 = 我的模擬人生 特工(美) R6REJH = 賽道狂飆 建設賽(美) R6RPHH = 賽道狂飆(歐) R6TEA4 = 龍卷風爆發(美) R6TPA4 = 龍卷風爆發(歐) R6VE4Z = 俱樂部之王(美) R6VPGN = 俱樂部之王(歐) R6WE68 = AMF保齡球世界(美) R6WP68 = AMF保齡球世界(歐) R6XE69 = 孩之寶 家庭遊戲之夜2(美) R6XP69 = 孩之寶 家庭遊戲之夜2(歐) R6YEXS = 橡皮球聚會(美) R6YPH3 = 橡皮球聚會(歐) R72E5G = 蛋糕工坊 混合(美) R72P5G = 蛋糕工坊 混合[WiFi](歐) R74E20 = 商場射擊館(美) R75E20 = 夢幻沙龍(美) R76E54 = NBA 2010[WiFi](美) R76P54 = NBA 2010[WiFi](歐) R77JAF = SD鋼彈G世代:世紀戰役(日) R79JAF = 機動戰士鋼彈 MS戰線0079(日) R7AE69 = 模擬動物 非洲(美) R7AJ13 = 模擬動物 非洲(日) R7AP69 = 模擬動物 非洲(歐) R7BE20 = 吉利貝利 彈道豆(美) R7BP7J = 吉利貝利 彈道豆(歐) R7CJ01 = 彩虹隊長(日) R7EE8P = 飛天幽夢 流星夜物語[WiFi](美) R7EJ8P = 飛天幽夢 流星夜物語[WiFi](日) R7EP8P = 飛天幽夢 流星夜物語[WiFi](歐) R7FEGD = 陸行鳥之不可思議迷宮 忘卻時間的迷宮[WiFi](美) R7FJGD = 陸行鳥之不可思議迷宮 忘卻時間的迷宮[WiFi](日) R7FPGD = 陸行鳥之不可思議迷宮 忘卻時間的迷宮[WiFi](歐) R7GEAF = 七龍珠 天下第一大冒險(美) R7GJAF = 七龍珠 天下第一大冒險(日) R7GPAF = 七龍珠 天下第一大冒險(歐) R7HE6K = 救兵總動員(美) R7IE69 = 魅力女孩俱樂部[平衡板](美) R7IP69 = 魅力女孩俱樂部 睡衣派對[平衡板](歐) R7KE6K = 岩石爆破(美) R7LP7J = 瑪格的困惑!(歐) R7MXFR = 音樂派對 搖滾房間(歐) R7NE20 = 酷聖石 冰淇淋來一球(美) R7OE54 = 勁爆冰上曲棍球2010[MP][WiFi](美) R7OP54 = 勁爆冰上曲棍球2010[MP][WiFi](歐) R7PE01 = 拳王擂台[平衡板](美) R7PJ01 = 拳王擂台[平衡板](日) R7PP01 = 拳王擂台[平衡板](歐) R7QE52 = 混沌影子武士(美) R7RE52 = 小聯盟世界錦標賽2009(美) R7SE5G = 逃出博物館(美) R7SP5G = 逃出博物館(歐) R7TFJW = 法式滾球(法) R7VEWR = 度假島 海灘派對[平衡板](美) R7VPWR = 度假島 海灘派對[平衡板](歐) R7WE52 = 雪山運動[平衡板](美) R7WP52 = 雪山運動[平衡板](歐) R7XE69 = 極速快感 爆衝王(美) R7XJ13 = 極速快感 爆衝王(日) R7XP69 = 極速快感 爆衝王(歐) R7YFMR = 北京快車(法) R7ZE41 = 團體淘汰賽(美) R7ZP41 = 淘汰派對[平衡板](歐) R82E52 = 動物星球 獸醫(美) R82JG0 = 飛標Wii DX(日) R82P52 = 動物星球 獸醫(歐) R83EA4 = 流行音樂(美) R83JA4 = 流行音樂Wii(日) R83PA4 = 流行音樂(歐) R84EE9 = 牧場物語 安祥之樹(美) R84J99 = 牧場物語 安祥之樹(日) R84P99 = 牧場物語 安祥之樹(歐) R85EG9 = 週末特工隊 怪獸與第五個太陽(美) R85PG9 = 週末特工隊 怪獸與第五個太陽(歐) R86E20 = 夢幻舞蹈啦啦隊[平衡板](美) R87EVN = 斯基度雪地車挑戰賽(美) R88J2L = 麵包超人 微笑派對(日) R89JEL = 東京友好樂園2(日) R8AE01 = 神奇寶貝樂園 Wii 皮卡丘的大冒險(美) R8AJ01 = 神奇寶貝樂園 Wii 皮卡丘的大冒險(日) R8AP01 = 神奇寶貝樂園 Wii 皮卡丘的大冒險(歐) R8BE41 = 保姆派對[平衡板](美) R8BP41 = 保姆派對[平衡板](歐) R8DEA4 = 遊戲王5D's 世界冠軍大會(美) R8DJA4 = 遊戲王5D's︰決鬥狂熱者(日) R8DPA4 = 遊戲王5D's 決鬥狂熱者(歐) R8EJQC = 異星尋奇(日) R8FES5 = 快餐危機(美) R8FJHA = 匠餐廳大繁盛!(日) R8FJSC = Takumi Restaurant wa Daihanjou! (Simplified Chinese Translation) R8FPNP = 快餐危機(歐) R8GJC8 = GI騎師聯盟2008[平衡板][WiFi](日) R8GPC8 = GI騎師聯盟2008[平衡板][WiFi](歐) R8HE4Q = 孟漢娜 電影版(美) R8HP4Q = 孟漢娜 電影版(歐) R8HX4Q = 孟漢娜 電影版(X) R8HY4Q = 孟漢娜 電影版(Y) R8IE78 = 海綿寶寶 誠實還是正直[MP](美) R8IP78 = 海綿寶寶 誠實還是正直[MP](歐) R8IS78 = 海綿寶寶 誠實還是正直[MP](歐) R8JEWR = 魔戒 亞拉崗之旅(美) R8JPWR = 魔戒 亞拉崗之旅(歐) R8KPKM = 街頭足球(歐) R8LE20 = 爆裂小雞獵殺者(美) R8LP7J = 爆裂小雞獵殺者(歐) R8NEA4 = 擊打革命[MP](美) R8NJG0 = 日本棒球機構承認 擊球革命[MP](日) R8OE54 = 玲玲馬戲團[平衡板](美) R8OX54 = 我的馬戲團(X) R8PC01 = 超級紙片瑪利歐(簡) R8PE01 = 超級紙片瑪利歐(美) R8PJ01 = 超級紙片瑪利歐(日) R8PK01 = 超級紙片瑪利歐(韓) R8PP01 = 超級紙片瑪利歐(歐) R8QPRT = 瘋狂問答(歐) R8RP41 = 亞瑟與他的迷你王國2[平衡板](歐) R8SE41 = 假日體育(美) R8SP41 = 假日體育(歐) R8SX41 = 假日體育(X) R8TENR = 臺球巡迴賽(美) R8UXMR = 阿迪波冒險記(X) R8VE41 = 拯救地球 野生動物獸醫(美) R8VP41 = 拯救地球 野生動物獸醫(歐) R8XE52 = 侏羅紀 獵殺(美) R8XZ52 = 頂級射手 恐龍獵人(美) R8YE52 = 坎貝拉獵人2010(美) R8ZE8P = 黛茜福恩特斯普拉提[平衡板](美) R8ZPGT = 黛茜福恩特斯普拉提[平衡板]((歐) R92E01 = 皮克敏2 R92J01 = 以 Wii 遊玩 皮克敏星球探險2(日) R92P01 = 以 Wii 遊玩 皮克敏星球探險2(歐) R94PMR = 終極紅球挑戰賽(歐) R94XMR = 終極紅球挑戰賽(X) R96EAF = 風之少年通往幻夢界之門(美) R96JAF = 風之少年通往幻夢界之門(日) R96KAF = 風之少年通往幻夢界之門(韓) R96PAF = 風之少年通往幻夢界之門(歐) R97E9B = 家庭滑稽橄欖球(美) R9AE52 = 動作遊戲試玩包(美) R9BPMT = 建築師巴布 歡樂節慶(歐) R9CPMR = 我是明星 快放我走(歐) R9DE78 = 描繪生命 下一章(美) R9DP78 = 描繪生命 下一章(歐) R9EPNP = 修理派對(歐) R9FE36 = 一級方程式賽車2009(美) R9FJ36 = 一級方程式賽車2009(日) R9FP36 = 一級方程式賽車2009(歐) R9GEWR = 貓頭鷹守護神(美) R9GPWR = 貓頭鷹守護神(歐) R9HE78 = 你比五年級生聰明嗎?(美) R9IE01 = 以 Wii 遊玩 皮克敏星球探險(美) R9IJ01 = 以 Wii 遊玩 皮克敏星球探險(日) R9IK01 = 以 Wii 遊玩 皮克敏星球探險(韓) R9IP01 = 以 Wii 遊玩 皮克敏星球探險(歐) R9JE69 = 搖滾樂團 披頭四[WiFi](美) R9JP69 = 搖滾樂團 披頭四[WiFi](歐) R9KE20 = 律動方塊(美) R9LE41 = 通宵派對(美) R9LP41 = 女孩的生活 徹夜狂歡派對[平衡板](歐) R9ME5Z = 夏季運動會2009[平衡板](美) R9MPFR = 夏季運動會2009[平衡板](歐) R9NPMR = 家族財富(歐) R9OE69 = 老虎伍茲高爾夫巡迴賽10[MP][WiFi](美) R9OK69 = 老虎伍茲高爾夫巡迴賽10[MP][WiFi](韓) R9OP69 = 老虎伍茲高爾夫巡迴賽10[MP][WiFi](歐) R9QPNG = 舞會俱樂部精選(歐) R9RPNG = 舞蹈派對 流行精選[跳舞墊](歐) R9SPPL = 球形數獨 偵探(歐) R9TE69 = 老虎伍茲高爾夫巡迴賽09[WiFi](美) R9TJ13 = 老虎伍茲高爾夫巡迴賽09(日) R9TK69 = 老虎伍茲高爾夫巡迴賽09[WiFi](韓) R9TP69 = 老虎伍茲高爾夫巡迴賽09[WiFi](歐) R9UE52 = 熊熊製作工坊 友誼谷(美) R9UPGY = 熊熊製作工坊 友誼谷(歐) R9VE52 = 坎貝拉野外冒險2010(美) R9WPSP = WSC真實09世界斯諾克大獎賽(歐) R9XE52 = 街機地帶(美) R9XP52 = 街機地帶(歐) R9YES5 = 撕裂雪橇(美) R9ZE54 = 職業棒球大聯盟2K9(美) RABAZZ = System Menu Changer RADP01 = New Super Mario Bros. Wii 0-6 Radiance RB2E6K = 氣球泡泡(美) RB2J2K = 氣球泡泡(日) RB2P6K = 氣球泡泡(歐) RB2PGT = 氣球泡泡(歐) RB4E08 = 惡靈古堡 4 Wii 加強版(美) RB4J08 = 惡靈古堡4 Wii 加強版(日) RB4P08 = 惡靈古堡 4 Wii 加強版(歐) RB4X08 = 惡靈古堡 4 Wii 加強版(X) RB5E41 = 戰火兄弟連 浴血之戰(美) RB5P41 = 戰火兄弟連 浴血之戰(歐) RB6J18 = 轟炸超人(日) RB7E54 = 惡霸魯尼 獎學金版(美) RB7P54 = 惡霸魯尼 獎學金版(歐) RB8E70 = 后院棒球09(美) RB9D78 = 貝姿娃娃電影版(德) RB9E78 = 貝姿娃娃電影版(美) RB9P78 = 貝姿娃娃電影版(歐) RB9X78 = 貝姿娃娃電影版(歐) RB9Y78 = 貝姿娃娃電影版(歐) RBAE41 = 熾焰天使 二戰英豪(美) RBAP41 = 熾焰天使 二戰英豪(歐) RBBE18 = 轟炸超人樂園 Wii(美) RBBJ18 = 轟炸超人樂園 Wii(日) RBBP99 = 轟炸超人樂園 Wii(歐) RBCP41 = 電視迷(歐) RBEE52 = 蜜蜂總動員(美) RBEP52 = 蜜蜂總動員(歐) RBEX52 = 蜜蜂總動員(X) RBFE20 = 乒乓特派員(美) RBFP20 = 乒乓特派員(歐) RBFP7J = 乒乓特派員(歐) RBGE54 = 大棒球聯盟(美) RBGP54 = 職業棒球聯賽(歐) RBHE08 = 惡靈古堡0(美) RBHJ08 = 惡靈古堡0(日) RBHP08 = 惡靈古堡0(歐) RBIEE9 = 牧場物語 歡樂動物進行曲(美) RBIJ99 = 牧場物語 歡樂動物進行曲(日) RBIP99 = 牧場物語 歡樂動物進行曲(歐) RBKE69 = 轟炸方塊[WiFi](美) RBKJ13 = 歡樂轟炸(日) RBKK69 = 轟炸方塊(韓) RBKP69 = 轟炸方塊(歐) RBLE8P = BLEACH死神 白刃閃耀圓舞曲(美) RBLJ8P = BLEACH死神 白刃閃耀圓舞曲(日) RBLP8P = BLEACH死神 白刃閃耀圓舞曲(歐) RBME5G = 泡泡龍(美) RBMPGT = 泡泡龍(歐) RBNEG9 = Ben 10 地球保衛者(美) RBNPG9 = Ben 10 地球保衛者(歐) RBNXG9 = Ben 10 地球保衛者(X) RBOE69 = 布吉搖擺(美) RBOP69 = 布吉搖擺(歐) RBPE4Z = 布朗斯維克 職業保齡球賽(美) RBPP4Z = 布朗斯維克 職業保齡球賽(歐) RBPPGT = 布朗斯維克 職業保齡球賽(歐) RBQENR = 經典英式賽車(美) RBQPUG = 經典英式賽車(歐) RBRE5G = 轟炸使命[WiFi](美) RBRP5G = 轟炸使命[WiFi](歐) RBRX5G = 轟炸作業 建造 融化 摧毀(歐) RBSJ08 = 戰國 BASARA 2 英雄外傳A(日) RBSJ09 = 戰國 BASARA 2 英雄外傳B(日) RBTE8P = 釣魚高手(美) RBTJ8P = 釣魚高手(日) RBTP8P = 釣魚高手(歐) RBUE08 = 惡靈古堡 安布雷拉編年史(美) RBUJ08 = 惡靈古堡 安布雷拉編年史(日) RBUK08 = 惡靈古堡 安布雷拉編年史(韓) RBUP08 = 惡靈古堡 安布雷拉編年史(歐) RBVE52 = 芭比 森林公主(美) RBVP52 = 芭比 森林公主(歐) RBWE01 = 突擊 FC 大戰2[[WiFi](美) RBWJ01 = 突擊 FC 大戰2[[WiFi](日) RBWP01 = 突擊 FC 大戰2[WiFi](歐) RBXJ8P = BLEACH死神 對決十刃[WiFi](日) RBYE78 = 瘋狂農場(美) RBYJ78 = 瘋狂農場(日) RBYP78 = 瘋狂農莊(歐) RBZE5Z = 巫師比利 飛天掃把賽(美) RBZP5Z = 巫師比利 飛天掃把賽(歐) RBZPUG = 巫師比利 飛天掃把賽(歐) RBZXUG = 巫師比利 飛天掃把賽(X) RC2E78 = 汽車總動員 全國汽車大賽(美) RC2P78 = 汽車總動員 全國汽車大賽(歐) RC2X78 = 汽車總動員 全國汽車大賽(X) RC2Y78 = 汽車總動員 全國汽車大賽(Y) RC3E41 = 模擬寵物貓2(美) RC3J41 = 模擬寵物貓2(日) RC3P41 = 模擬寵物貓2(歐) RC3X41 = 模擬寵物貓2(X) RC4JD9 = 蠟筆小新 最強家族春日部之王(日) RC4SGT = 蠟筆小新 最強家族春日部之王(西) RC5JDQ = 掃除戰隊(日) RC7E20 = 與海怪同行 史前探險(美) RC7P7J = 與海怪同行 史前探險(歐) RC8E7D = 古惑狼 邪惡意志(美) RC8P7D = 古惑狼 邪惡意志(歐) RC8X7D = 古惑狼 邪惡意志(X) RC9PGN = 人偶CID(歐) RCAE78 = 汽車總動員(美) RCAJ78 = 汽車總動員(日) RCAP78 = 汽車總動員(歐) RCAX78 = 汽車總動員(X) RCAY78 = 汽車總動員(Y) RCBE52 = 坎貝拉獵人(美) RCBP52 = 坎貝拉獵人(歐) RCCE5G = 妙廚老媽 料理大會(美) RCCJC0 = 妙廚老媽 料理大會(日) RCCPGT = 妙廚老媽 料理大會歐) RCCR78 = Guitar Hero III Custom: Coheed and Cambria RCDD52 = 決勝時刻3(德) RCDE52 = 決勝時刻3(美) RCDP52 = 決勝時刻3(歐) RCDX52 = 決勝時刻3(X) RCEE5Z = 桌上模型車賽(美) RCEPUG = 桌上模型車賽(歐) RCEXUG = 桌上模型車賽(X) RCFE41 = 宇宙家庭(美) RCFP41 = 宇宙家庭(歐) RCGE54 = 嘉年華遊戲 (美) RCGP54 = 嘉年華遊戲 (歐) RCHC52 = Guitar Hero III Custom : Guitar Hero II RCHEAF = 我們的啦啦隊(美) RCHJAF = 我們的啦啦隊(日) RCHPAF = 我們的啦啦隊(歐) RCHPGT = 我們的啦啦隊(歐) RCIE41 = 犯罪現場調查 鐵證如山(美) RCIP41 = 犯罪現場調查 鐵證如山(歐) RCJE8P = 暗渠[WiFi](美) RCJP8P = 暗渠[WiFi](歐) RCKPGN = 阿倫·漢森的運動挑戰(歐) RCLE4Q = 四眼天雞之動作天王(美) RCLP4Q = 四眼天雞之動作天王(歐) RCOC99 = 名偵探柯南 追憶的幻想(ACG漢化簡體中文版) RCOJ99 = 名偵探柯南 追憶的幻想(日) RCOK99 = Detective Conan: Case Closed: The Mirapolis Investigation RCOKZF = 名偵探柯南 追憶的幻想(韓) RCOPNP = 名偵探柯南 追憶的幻想(歐) RCPE18 = 轉轉球迷宮(美) RCPJ18 = 轉轉球迷宮(日) RCPP18 = 轉轉球迷宮(歐) RCQEDA = 可愛賽車 Wii(美) RCQJDA = 可愛賽車 Wii(日) RCRE5D = 特級飛車(美) RCRP5D = 特級飛車(歐) RCSE20 = 射雞英雄傳(美) RCSP20 = 射雞英雄傳(歐) RCSP7J = 射雞英雄傳(歐) RCTE5Z = 反擊力量(美) RCTP5Z = 反擊力量(歐) RCTPGT = 反擊力量(歐) RCUE52 = 坎貝拉傳奇冒險(美) RCUP52 = 坎貝拉傳奇冒險(歐) RCVE41 = 孤島驚魂 復仇(美) RCVP41 = 孤島驚魂 復仇(歐) RCXE78 = 全明星拉拉隊[平衡板](美) RCXP78 = 全明星拉拉隊[平衡板](歐) RCXX78 = 全明星拉拉隊[平衡板](歐) RCYPGN = 切格的聚會迷題(歐) RD2E41 = 赤色鋼鐵2(美) RD2J41 = 赤色鋼鐵2(日) RD2K41 = 赤色鋼鐵2(韓) RD2P41 = 赤色鋼鐵 2(歐) RD2X41 = 赤色鋼鐵 2(X) RD4EA4 = 熱舞革命 勁爆舞會 2[跳舞墊](美) RD4JA4 = 熱舞革命 手舞足蹈派對[跳舞墊](日) RD4PA4 = 熱舞革命 勁爆舞會2[跳舞墊](歐) RD6EE9 = 動物王國 野生動物探索(美) RD6J8N = 動物奇想天外!在謎之樂園攝影(日) RD6PNP = 動物奇想天外!在謎之樂園攝影(歐) RD8E52 = 與巨星共舞[跳舞墊](美) RD9J18 = 解謎系列Vol.1 數獨(日) RDAE52 = 與巨星共舞 讓我們翩翩起舞[跳舞墊](美) RDBE70 = 七龍珠Z 電光火石2(美) RDBJAF = 七龍珠 Z Sparking! NEO(日) RDBP70 = 七龍珠Z 電光火石2(歐) RDBPAF = 七龍珠Z 電光火石2(歐) RDCE78 = 致命生物(美) RDCP78 = 致命生物(歐) RDDEA4 = 熱舞革命 勁爆舞會[跳舞墊](美) RDDJA4 = 熱舞革命 勁爆舞會(日) RDDPA4 = 熱舞革命 勁爆舞會[跳舞墊](歐) RDEJ0A = 全日本貨柜車祭典(日) RDFE41 = 夏恩懷特滑雪板[平衡板](美) RDFP41 = 夏恩懷特滑雪板[平衡板](歐) RDGEA4 = 惡魔城 審判[WiFi](美) RDGJA4 = 惡魔城:審判(日) RDGPA4 = 惡魔城 審判[WiFi](歐) RDHE78 = 毀滅全人類 解放威廉(美) RDHP78 = 毀滅全人類 解放威廉(歐) RDIE41 = 寵物狗樂園(美) RDIJG2 = 寵物狗樂園(日) RDIP41 = 寵物狗樂園(歐) RDJE4F = 小死神 邪惡的根源(美) RDJP4F = 小死神 邪惡的根源(歐) RDKE01 = 大金剛噴射木桶賽(美) RDKJ01 = 大金剛噴射木桶賽(日) RDKP01 = 大金剛噴射木桶賽(歐) RDLE5G = 狐貍偵探智救人質(美) RDLP70 = 狐貍偵探智救人質(歐) RDME6K = 米儂向前沖(美) RDMJ8N = 米儂向前沖(日) RDMPHZ = 每日英雄 米儂(歐) RDNEA4 = 熱舞革命 開心迪士尼[跳舞墊](美) RDOE41 = 模擬寵物狗2(美) RDOJ41 = 模擬寵物狗2(日) RDOP41 = 模擬寵物狗2(歐) RDOX41 = 模擬寵物狗2(X) RDPE54 = 愛探險的朵拉 拯救雪公主(美) RDPP54 = 愛探險的朵拉 拯救雪公主(歐) RDPX54 = 愛探險的朵拉 拯救雪公主(X) RDQEGD = 勇者鬥惡龍 神劍 假面女王與鏡之塔(美) RDQJGD = 勇者鬥惡龍 神劍 假面女王與鏡之塔(日) RDQPGD = 勇者鬥惡龍 神劍 假面女王與鏡之塔(歐) RDREA4 = 水精迪依大冒險(美) RDRJA4 = 水精迪依大冒險(日) RDRPA4 = 水精迪依大冒險(歐) RDSE70 = 七龍珠Z 電光火石3[WiFi](美) RDSJAF = 七龍珠 Z Sparking! METEOR[WiFi](日) RDSPAF = 七龍珠Z 電光火石3[WiFi](歐) RDSZ70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino RDTEAF = 電子雞閃亮大總統(美) RDTJAF = 電子雞閃亮大總統(日) RDTPAF = 電子雞閃亮大總統(歐) RDUE01 = DU 超級瑪利歐兄弟 尋找公主(美) RDUJDQ = 陞官圖編年史~右手持劍,左手持骰~[WiFi](日) RDVE41 = 橫沖直撞之平行線(美) RDVP41 = 橫沖直撞之平行線(歐) RDWEG9 = 龍之刃 巨龍的怒火(美) RDWJG9 = 龍之刃 巨龍的怒火(日) RDWPG9 = 龍之刃 巨龍的怒火(歐) RDXE18 = 運動大集錦 Wii的十項運動(美) RDXJ18 = 運動大集錦 Wii的十項運動(日) RDXKA4 = 運動大集錦 Wii的十項運動(韓) RDXP18 = 運動大集錦 Wii的十項運動(歐) RDYEGN = 人偶CID(美) RDZJ01 = 大災難 危機之日(日) RDZP01 = 大災難 危機之日(歐) RE3ENR = 空戰高手 二戰英雄(美) RE4E08 = 惡靈古堡 復刻版(美) RE4J08 = 惡靈古堡(日) RE4P08 = 惡靈古堡(歐) RE5PAF = 貪吃精靈(歐) RE6PRT = 夏季田徑邀請賽的挑戰(歐) RE7PNK = 狩獵挑戰(歐) RE8J99 = 家庭教師 禁斷的暗之三角[WiFi](日) REAE69 = 名人體育(美) REAF69 = 名人體育(法) REAP69 = 名人體育(歐) REBE4Z = 豆豆先生的古怪世界(歐) REBPMT = 憨豆先生的古怪世界(歐) RECE6K = 間諜遊戲 電梯任務(美) RECP6K = 間諜遊戲 電梯任務(歐) REDE41 = 赤色鋼鐵(美) REDJ41 = 赤色鋼鐵(日) REDP41 = 赤色鋼鐵(歐) REFP41 = 我的法語教練(歐) REGE36 = 緊急出動(美) REGP36 = 緊急出動(歐) REHE41 = 緊急英雄(美) REHP41 = 緊急英雄(歐) REJEAF = 家庭訓練機 極限挑戰[跳舞墊](美) REJJAF = 家庭訓練機2[跳舞墊](日) REJPAF = 家庭訓練機 極限挑戰[跳舞墊](歐) REKE41 = 金牌吉姆卡迪歐塑身[平衡板](美) REKJ2N = 節奏拳擊 用Wii享瘦(日) REKP41 = 金牌吉姆卡迪歐塑身[平衡板](歐) REKU41 = 我的健康教練 金牌吉姆卡迪歐塑身[平衡板](英) RELEA4 = 能源小精靈(美) RELJA4 = 能源小精靈(日) RELKA4 = 能源小精靈(韓) RELPA4 = 能源小精靈(歐) RELSAB = Sonic Adventure DX: Director's Cut (Preview Prototype) REMJ8P = 哆啦A夢Wii 秘密道具王決定戰!(日) RENE8P = 音速小子與黑暗騎士[WiFi](美) RENJ8P = 音速小子與黑暗騎士[WiFi](日) RENP8P = 音速小子與黑暗騎士[WiFi](歐) REQE54 = 迪亞哥 徒步旅行救難隊(美) REQP54 = 迪亞哥 徒步旅行救難隊(歐) REQX54 = 迪亞哥 徒步旅行救難隊(歐) REQY54 = 迪亞哥 徒步旅行救難隊(歐) RESP41 = 我的西班牙語教練(歐) RETJAF = 廟會達人(日) REUPNK = 我的形體教練(歐) REVJ8P = 忌火起草 解明篇(日) REVJBP = 忌火起草 解明篇(日) REWFMR = 我的馬匹俱樂部(法) REWXMR = 我的馬匹俱樂部(X) REWYMR = 我的馬匹俱樂部(Y) REXE01 = 瘋狂卡車(美) REXJ01 = 瘋狂卡車(日) REXP01 = 瘋狂卡車(歐) REYE4Q = 迪士尼想唱就唱 歌舞青春3 畢業季(美) REYP4Q = 迪士尼想唱就唱 歌舞青春3 畢業季(歐) REYX4Q = Disney Sing It: High School Musical 3 REZEJJ = 西洋棋高手(美) REZPKM = 西洋棋高手(歐) RF2E54 = 驚奇四超人 銀色衝浪手現身(美) RF2P54 = 驚奇四超人 銀色衝浪手現身(歐) RF3E52 = 法拉利挑戰賽(美) RF3P6M = 法拉利挑戰賽(歐) RF4E36 = 超級水果瀑布(美) RF4P6M = 超級水果瀑布(歐) RF7J08 = 龍之子 VS. CAPCOM 英雄交鋒世代(日) RF8E69 = FIFA足球08[WiFi](美) RF8J13 = FIFA足球08[WiFi](日) RF8K69 = FIFA足球08[WiFi](韓) RF8P69 = FIFA足球08[WiFi](歐) RF8X69 = FIFA足球08[WiFi](X) RF8Y69 = FIFA足球08[WiFi](Y) RF9E69 = FIFA足球09[WiFi](美) RF9J13 = FIFA足球09[WiFi](日) RF9K69 = FIFA足球09[WiFi](韓) RF9P69 = FIFA足球09[WiFi](歐) RF9X69 = FIFA足球09[WiFi](X) RF9Y69 = FIFA足球09[WiFi](Y) RFAEAF = 生命運動 戶外挑戰[跳舞墊](美) RFAJAF = 家庭訓練機 運動天地(日) RFAPAF = 家庭教練[跳舞墊](歐) RFBE01 = 永恒蔚藍[WiFi](美) RFBJ01 = 永恒蔚藍[WiFi](日) RFBP01 = 永恒蔚藍[WiFi](歐) RFCEGD = 太空戰士 水晶編年史 水晶持有者(美) RFCJGD = 太空戰士 水晶編年史 水晶持有者(日) RFCPGD = 太空戰士 水晶編年史 水晶持有者(歐) RFEE01 = 聖火降魔錄 曉之女神(美) RFEJ01 = 聖火降魔錄 曉之女神(日) RFEP01 = 聖火降魔錄 曉之女神(歐) RFFEGD = 太空戰士 水晶編年史 時間的共鳴[WiFi](美) RFFJGD = 太空戰士 水晶編年史 時間的共鳴[WiFi](日) RFFPGD = 太空戰士 水晶編年史 時間的共鳴[WiFi](歐) RFJJAF = 家庭賽馬(日) RFKE41 = 我的健康教練(美) RFKJ41 = 我的健康教練(日) RFKP41 = 我的健康教練(歐) RFKX41 = 我的健康教練(X) RFLE69 = 勁爆美式足球09[WiFi](美) RFLP69 = 勁爆美式足球09[WiFi](歐) RFLPWK = 美式橄欖球大聯盟09[WiFi](歐) RFMJAF = 職棒家庭棒球場[WiFi](日) RFNE01 = Wii塑身[平衡板](美) RFNJ01 = Wii塑身[平衡板](日) RFNK01 = Wii塑身[平衡板](韓) RFNP01 = Wii塑身[平衡板](歐) RFNW01 = Wii塑身 繁體中文版[平衡板] RFOE52 = 蜘蛛人 敵友難辨(美) RFOP52 = 蜘蛛人 敵友難辨(歐) RFOX52 = 蜘蛛人 敵友難辨(X) RFPE01 = Wii塑身加強版[平衡板](美) RFPJ01 = Wii塑身 加強版[平衡板](日) RFPK01 = Wii塑身加強版[平衡板](韓) RFPP01 = Wii塑身加強版[平衡板](歐) RFPR01 = Wii塑身加強版[平衡板](俄) RFPW01 = Wii塑身加強版 繁體中文版[平衡板] RFQE69 = 重拳出擊(美) RFQJ13 = 破相拳擊(日) RFQJ69 = 重拳出擊(日) RFQK69 = 破相拳擊(韓) RFQP69 = 重拳出擊(歐) RFRE5G = 搖擺回轉公園(美) RFRJC0 = 搖擺回轉公園(日) RFSEEB = 風塵英雄(美) RFSJ8P = 不可思議的迷宮 風塵英雄3 機關宅邸的睡美人(日) RFTE70 = 庭院美式足球(美) RFTP70 = 庭院美式足球(歐) RFUJA4 = 麻將格鬥俱樂部 Wii Wi-Fi 對應 (日) RFVE52 = 淘氣小猴 聚會時間(美) RFVP52 = 淘氣小猴 聚會時間(歐) RFWE5Z = 野外探險 非洲(美) RFWPNK = 非洲徒步大冒險(歐) RFYFMR = 博涯堡壘 開戰(法) RFZE41 = 想象 時尚聚會[平衡板](美) RFZP41 = 想象 時尚偶像[平衡板](歐) RG0E52 = 吉他英雄 年輕歲月 加強版(美) RG1552 = 自制 吉他英雄 怪人奧爾(?) RG1E52 = 自制 吉他英雄3 復仇(美) RG2E52 = 吉他英雄 披頭四 加強版(美) RG2EXS = 罪惡裝備XX(美) RG2JJF = 聖騎士之戰XX ΛCore(日) RG2PGT = 罪惡裝備XX(歐) RG2PXS = 罪惡裝備XX(歐) RG3E52 = Guitar Hero III Custom : Muse and Rush RG4152 = 自制 吉他英雄 魔數 41(?) RG4E52 = Guitar Hero Mayan Apocalypse RG4JC0 = 電車向前走!新幹線EX 山陽新幹線(日) RG5EWR = 吉尼斯世界紀錄 電視遊戲[WiFi](美) RG5PWR = 吉尼斯世界紀錄 電視遊戲[WiFi](歐) RG6E69 = 搖滾樂超級明星(美) RG6P69 = 搖滾樂超級明星(歐) RG7EQH = 城市建設者(美) RG8E41 = 寵物體育 狗狗競技場(美) RG8P41 = 寵物體育 狗狗競技場(歐) RG9E52 = 自制 吉他英雄3 無法無天(美) RG9E54 = 嘉年華遊戲 迷你高爾夫(美) RG9P54 = 嘉年華遊戲 迷你高爾夫(歐) RGAE8P = 51號星球(美) RGAP8P = 51號星球(歐) RGBE08 = 哈維博德曼 律師(美) RGBP08 = 哈維博德曼 律師(歐) RGCEXS = 遙控直升機Wii 飛行大冒險(美) RGCJJF = 遙控直升機Wii 飛行大冒險(日) RGCM52 = 自制 吉他英雄3 金屬化樂團(歐) RGCPGT = 遙控直升機Wii 飛行大冒險(歐) RGCS52 = 自制 吉他英雄3 下載版(西) RGDEA4 = 恐怖行動(美) RGDPA4 = 恐怖行動(歐) RGEJJ9 = 世界黃金蛋節奏合拍系日本的音符(日) RGEK52 = Guitar Hero III Custom: Slipknot RGFE69 = 教父 黑手黨(美) RGFF69 = 教父 黑手黨(法) RGFI69 = 教父 黑手黨(意) RGFP69 = 教父 黑手黨(歐) RGFS69 = 教父 黑手黨(西) RGGE52 = 搖滾吉他英雄(美) RGGJAF = GeGeGe的鬼太郎 妖怪大運動會(日) RGHC20 = 自制 吉他英雄3 下載版(歐) RGHE51 = 自制 吉他英雄3 Aspero(美) RGHE52 = 吉他英雄3 搖滾傳奇[WiFi](美) RGHE60 = Guitar Hero III Custom: WTF Custom RGHE61 = 自制 吉他英雄3 下載版(美) RGHE62 = 自制 吉他英雄3 下載版(美) RGHE69 = Guitar Hero III Custom : Legends of METAL RGHEMR = 自制 吉他英雄3 下載版(美) RGHI52 = 自制 吉他英雄3 Chimba(歐) RGHJ52 = 吉他英雄3 搖滾傳奇[WiFi](日) RGHK52 = 吉他英雄3 搖滾傳奇[WiFi](韓) RGHP52 = 吉他英雄3 搖滾傳奇[WiFi](歐) RGHPOH = 自製 唱吧 意大利精選(歐) RGHPS2 = 自制 吉他英雄3 下載版(歐) RGHX52 = 吉他英雄 Alex Chan(歐) RGIJC8 = G1騎師Wii(日) RGIPC8 = G1騎師Wii(歐) RGJE4Z = 森林泰山 探秘(美) RGJP7U = 森林泰山 探秘(歐) RGKE52 = 自制 吉他英雄 KoRn(美) RGKENR = 國際兒童 瘋狂高爾夫(美) RGKPNR = 國際兒童 瘋狂高爾夫(歐) RGLE7D = 幾何戰爭 銀河[WiFi](美) RGLP7D = 幾何戰爭 銀河[WiFi](歐) RGME5D = 企鵝也瘋狂(美) RGMP5D = 企鵝也瘋狂(歐) RGNJAF = 銀魂(日) RGOJJ9 = 金蛋世界(日) RGPJAF = 機動戰士高達2 哀.戰士篇(日) RGQE70 = 魔鬼剋星(美) RGQP70 = 魔鬼剋星(歐) RGRM52 = Guitar Hero III Custom: Rock & Metal RGSE8P = 幽靈小隊[WiFi](美) RGSJ8P = 魅影小隊(日) RGSP8P = 幽靈小隊[WiFi](歐) RGTE41 = GT職業賽車(美) RGTJBL = GT職業賽車(日) RGTP41 = GT職業賽車(歐) RGVE52 = 吉他英雄 空中鐵匠樂隊專輯[WiFi](美) RGVE99 = 吉他英雄 史密斯飛船,但不...(美) RGVJ52 = 吉他英雄 空中鐵匠樂隊專輯[WiFi](日) RGVP52 = 吉他英雄 空中鐵匠樂隊專輯[WiFi](歐) RGWE41 = 瘋狂兔子歸鄉記[WiFi](美) RGWJ41 = 瘋狂兔子 歸鄉記[WiFi](日) RGWP41 = 瘋狂兔子 歸鄉記[WiFi](歐) RGWX41 = 瘋狂兔子 歸鄉記[WiFi](X) RGXE5D = 遊戲派對(美) RGXEFN = 自製 吉他英雄3 Meteo最終自製(美) RGXM52 = 自制 吉他英雄3 xMxExTxAxLx版(歐) RGXP5D = 遊戲派對(歐) RGYE5Z = 賽車女郎(美) RGYPUG = 賽車女郎(歐) RGZC52 = 自制 吉他英雄3 齊柏林飛船(?) RGZE52 = 哥斯拉能量釋放(美) RGZE70 = 哥斯拉能量釋放(美) RGZP70 = 哥斯拉能量釋放(歐) RH2E41 = 地獄廚房(美) RH2P41 = 地獄廚房(歐) RH3E4Q = 歌舞青春3 畢業舞會(美) RH3J4Q = 歌舞青春3 畢業舞會(日) RH3P4Q = 歌舞青春3 畢業舞會(歐) RH4XUG = 倉鼠英雄(X) RH5EVN = 小馬人生歷險記[WiFi](美) RH5PKM = 愛倫懷塔克的小馬生活(歐) RH6E69 = 哈利波特 混血王子的背叛(美) RH6K69 = 哈利波特 混血王子的背叛(韓) RH6P69 = 哈利波特 混血王子的背叛(歐) RH7J8P = Sammy合集 北斗神拳[WiFi](日) RH8E4F = 古墓奇兵 地城奪寶(美) RH8JEL = 古墓奇兵 地城奪寶(日) RH8P4F = 古墓奇兵 地城奪寶(歐) RH8X4F = 古墓奇兵 地城奪寶(X) RH9JC8 = 遙遠時空4 (日) RHAE01 = Wii第一次接觸(美) RHAJ01 = Wii第一次接觸(日) RHAK01 = Wii第一次接觸(韓) RHAP01 = Wii第一次接觸(歐) RHAW01 = Wii第一次接觸 繁體中文版(中) RHCE52 = 歷史頻道 太平洋戰爭(美) RHCP52 = 歷史頻道 太平洋戰爭(歐) RHD222 = 自制 死亡之屋2(自) RHD333 = 自制 死亡之屋3(自) RHDE8P = 死亡之屋2+3(美) RHDJ8P = 死亡之屋2+3(日) RHDP8P = 死亡之屋2+3(歐) RHEEJJ = 海因茲沃爾夫教授的重力挑戰(美) RHEPKM = 海因茲沃爾夫教授的重力挑戰(歐) RHFE5D = 快樂腳(美) RHFP5D = 快樂腳(歐) RHGH52 = 自制 吉他英雄3 RandomHero's(歐) RHGP6Z = 特工雨果 檸檬榨汁(歐) RHGX6Z = 特工雨果 檸檬榨汁(X) RHHJ8J = 涼宮春日的激動(日) RHIEXJ = 第一神拳 革命(美) RHIJ41 = 第一神拳 革命(日) RHIJJ9 = 第一神拳 革命(日) RHIP41 = 第一神拳 革命(歐) RHJJ13 = 銀星桌面遊戲(日) RHKE18 = 努力工作的人(美) RHKJ18 = 努力工作的人(日) RHKP18 = 努力工作的人(歐) RHLE4Z = 世界錦標紙牌賽(美) RHLPGT = 世界錦標紙牌賽(歐) RHMEE9 = 牧場物語 幸福之詩(美) RHMP99 = 牧場物語 幸福之詩(歐) RHNE70 = 馬兒與我(美) RHNP70 = 馬兒與我(歐) RHOE8P = 死亡之屋 過度殺戮(美) RHOJ8P = 死亡之屋 過度殺戮(日) RHOP8P = 死亡之屋 過度殺戮(歐) RHPJ8N = 現子麻將~作弊流浪記~(日) RHQE4Q = 孟漢娜萬眾矚目全球巡演歌唱大賽(美) RHQP4Q = 孟漢娜萬眾矚目全球巡演歌唱大賽(歐) RHQX4Q = 孟漢娜萬眾矚目全球巡演歌唱大賽(歐) RHQY4Q = 孟漢娜萬眾矚目全球巡演歌唱大賽(Y) RHRJ99 = 家庭教師HITMAN!夢之超級戰斗!(日) RHSE36 = 熱導追蹤(美) RHSP36 = 熱導追蹤(歐) RHSX36 = 熱導追蹤(X) RHSY36 = 熱導追蹤(Y) RHTE54 = 俠盜獵魔2(美) RHTP54 = 俠盜獵魔2(歐) RHUE20 = 輪滑城市英雄[平衡板](美) RHUP20 = 輪滑城市英雄[平衡板](歐) RHUP7J = 輪滑城市英雄[平衡板](歐) RHVE5Z = 瘋狂小雞傳說(美) RHVPFR = 瘋狂小雞傳說(歐) RHWE52 = 風火輪賽車(美) RHWP52 = 風火輪賽車(歐) RHXE78 = 樂隊大戰(美) RHXP78 = 樂隊大戰(歐) RHYJAF = 跳躍之門Wii 極限挑戰(日) RHZE41 = 模擬寵物馬2(美) RHZP41 = 模擬寵物馬2(歐) RI1POH = 自制 唱吧 下載版(歐) RI2E4Q = 迪斯尼 想唱就唱 高校音樂劇(美) RI2P4Q = 迪斯尼 想唱就唱 高校音樂劇(歐) RI2POH = 自制 唱吧 下載版 Vol.2(歐) RI3E5D = 聯合縮小兵(美) RI3P5D = 聯合縮小兵(歐) RI3POH = 自制 唱吧 下載版(歐) RI6ENR = 夏季運動會2 小島運動會(美) RI6P41 = 夏季運動派對(歐) RI7E4Z = 怪物大破壞 製作和戰鬥(美) RI8E41 = 戰火兄弟連 進軍30高地(美) RI8P41 = 戰火兄弟連 進軍30高地(歐) RI9EGT = 女孩冰上公主[平衡板](美) RI9PGT = 女孩冰上公主[平衡板](歐) RIAE52 = 冰河世紀3 恐龍的黎明(美) RIAI52 = 冰河世紀3 恐龍的黎明(意) RIAP52 = 冰河世紀3 恐龍的黎明(歐) RIBES5 = 異想天開(美) RIBPKM = 異想天開(歐) RICENR = 美國鐵人料理 頂級烹飪法(美) RIDE20 = 微笑世界島嶼挑戰(美) RIDP7J = 微笑的世界島嶼挑戰(歐) RIEEA4 = 卡拉OK革命 美國偶像 再次演唱(美) RIFEA4 = 卡拉OK革命 美國偶像 再次演唱2(美) RIGE54 = 迪亞哥 恐龍大拯救(美) RIGP54 = 迪亞哥 恐龍大拯救(歐) RIHE8P = 無敵浩克(美) RIHP8P = 無敵浩克(歐) RIIEQH = 卡丁賽車手(美) RIIPNG = 卡丁賽車手(歐) RIIV = Riivolution RIJE69 = 特種部隊 眼鏡蛇危機(美) RIJP69 = 特種部隊 眼鏡蛇危機(歐) RIKEQH = 卡車大賽(美) RIKPNG = 卡車大賽(歐) RILJ18 = 益智系列 Vol.2 插畫邏輯+色彩邏輯(日) RIME36 = 不可能的任務(美) RIMP6M = 不可能的任務(歐) RINE08 = 死亡復甦 殭屍祭品(美) RINJ08 = 死亡復甦 殭屍祭品(日) RINP08 = 死亡復甦 殭屍祭品(歐) RIOPSU = 恐怖歷史之殘忍羅馬(歐) RIPEAF = 航海王 無盡的冒險(美) RIPJAF = 航海王 無盡的冒險(日) RIPPAF = 航海王 無限巡航 第一章 波浪中的秘寶(歐) RIQPUJ = 冰上炫舞(歐) RIRE8P = 鋼鐵人(美) RIRP8P = 鋼鐵人(歐) RITFMR = 城市之間[平衡板](法) RIUJAF = 航海王 無限巡航 第二章 覺醒的勇者(日) RIUPAF = 航海王 無限巡航 第二章 覺醒的勇者(歐) RIVEXJ = 奇異鳥伊維(美) RIVJAF = 奇異鳥伊維(日) RIVP99 = 奇異鳥伊維(歐) RIWENR = 漢堡島(美) RIXE20 = 道奇賽車 掌控者與挑戰者(美) RIXP7J = 道奇賽車 掌控者與挑戰者(歐) RIYE52 = 太空營地(美) RIYP52 = 太空營地(歐) RIZENR = 印第500賽車(美) RJ2E52 = 詹姆士龐德 007 量子危機[WiFi](美) RJ2JGD = 詹姆士龐德 007 量子危機[WiFi](日) RJ2P52 = 詹姆士龐德 007 量子危機[WiFi](歐) RJ3E20 = 吉普越野賽車(美) RJ3P7J = 吉普越野賽車(歐) RJ4ENR = 珠寶大師 羅馬發源地(美) RJ4PRM = 珠寶大師 羅馬發源地(歐) RJ6E69 = 我的模擬人生 空中英豪(美) RJ6P69 = 我的模擬人生 空中英豪(歐) RJ7FWP = 電視7遊戲 法語填字遊戲(法) RJ8E64 = 印第安納瓊斯與帝王手杖(美) RJ8P64 = 印第安納瓊斯與帝王手杖(歐) RJ9E5Z = 智能家庭(美) RJ9FMR = 思考 邏輯訓練(法) RJ9PFR = 思考邏輯訓練器(歐) RJ9XML = 思考 邏輯訓練(X) RJAD52 = 決勝時刻4 現代戰爭[WiFi](德) RJAE52 = 決勝時刻 現代戰爭(美) RJAP52 = 決勝時刻4 現代戰爭[WiFi](歐) RJAX52 = 決勝時刻4 現代戰爭[WiFi](X) RJBJAF = 大怪獸對決 超人力霸王競技場(日) RJCE52 = Baja 1000越野拉力賽(美) RJCP52 = Baja 1000越野拉力賽(歐) RJDPKM = 我的動物中心(歐) RJEE70 = 層層疊世界巡迴賽(美) RJEP70 = 層層疊世界巡迴賽(歐) RJFE5G = 吉利安麥克爾健身訓練09[平衡板](美) RJFP5G = 吉利安麥克爾健身訓練09[平衡板](歐) RJFPKM = 吉利安麥克爾健身訓練09[平衡板](歐) RJGJDA = 人生遊戲(日) RJHE52 = 馬達加斯加 卡丁車(美) RJHP52 = 馬達加斯加 卡丁車(歐) RJIP6M = 法拉利競速體驗(歐) RJJE8P = 叢林之旅 動物救援(美) RJJG52 = 自制 吉他英雄3 JJ-KwiK版(歐) RJJP8P = Jambo!野生動物園探險騎兵(歐) RJMERS = 移動世界(美) RJMPRS = 移動世界(歐) RJNE20 = N 制賽車速度怪物(美) RJOEXJ = 恐怖體感 咒怨(美) RJOJJ9 = 恐怖體感 咒怨(日) RJOP99 = 恐怖體感 咒怨(歐) RJPJA4 = 實況棒球Wii(日) RJQE5G = 睡衣山姆 別怕黑(美) RJQP70 = 睡衣山姆 別怕黑(歐) RJREA4 = 熱舞革命 勁爆舞會 3[跳舞墊][平衡板](美) RJRJA4 = 熱舞革命 音樂塑身[跳舞毯][平衡板](日) RJRPA4 = 熱舞革命 勁爆舞會 3[跳舞墊]]平衡板](歐) RJSENR = 川崎水上摩托車(美) RJSPNR = 川崎水上摩托車(歐) RJSPUG = 川崎水上摩托車(歐) RJSXUG = 川崎水上摩托車(X) RJTJ01 = 大家的常識力(日) RJVEGN = 狂熱醫院 緊急病房(美) RJVPGN = 狂熱醫院 緊急病房(歐) RJWJEL = 猛犸象與神秘之石(日) RJXE5G = 去玩吧伐木工[平衡板](美) RJXXFR = Go Play Lumberjacks RJYE5Z = 費茲維澤醫生的動物大拯救[平衡板](美) RJZP7U = SNK街機經典Vol1(歐) RK2EEB = 超執刀 新血[WiFi](美) RK2JEB = 超執刀 新血[WiFi](日) RK2P01 = 超執刀 新血[WiFi](歐) RK3J01 = 安藤檢索(日) RK4JAF = 結界師 黑芒樓之影(日) RK5E01 = 星之卡比 毛線傳說(美) RK5J01 = 毛線卡比(日) RK5K01 = Kirby's Epic Yarn RK5P01 = 星之卡比 毛線傳說(歐) RK6E18 = 轉轉球迷宮2[平衡板][WiFi](美) RK6J18 = 轉轉球迷宮2[平衡板][WiFi](日) RK6P18 = 轉轉球迷宮2[平衡板][WiFi](歐) RK7J0A = 黃金之絆(日) RK8E54 = 職業棒球大聯盟2K8(美) RK9EA4 = 卡拉OK革命[麥克風](美) RK9PA4 = 卡拉OK革命[麥克風](歐) RKAE6K = Milestone 射擊遊戲收藏集(美) RKAJMS = Milestone 射擊遊戲收藏集(日) RKAK8M = Milestone 射擊遊戲收藏集(韓) RKAP6K = Milestone 射擊遊戲收藏集(歐) RKBE41 = 卡波其涂鴉(美) RKBP41 = 卡波其涂鴉(歐) RKDEEB = 超執刀 再次執刀(美) RKDJEB = 超執刀 再次執刀(日) RKDJG9 = 假面騎士 巔峰英雄 W(日) RKDP01 = 超執刀 再次執刀(歐) RKDPEB = 超執刀 再次執刀(歐) RKEENR = 消失的檔案(美) RKEPGN = 消失的檔案(歐) RKEPNR = 消失的檔案(歐) RKFEH4 = 格鬥天王合輯 大蛇傳說(美) RKFKZA = 拳皇' 94 - 98 大蛇編合集(韓) RKFP7U = 拳皇' 94 - 98 大蛇編合集(歐) RKGEGY = 貝茲娃娃(美) RKGPGY = 貝茲娃娃(歐) RKHE52 = 功夫熊貓 神龍大俠(美) RKHP52 = 功夫熊貓 神龍大俠(歐) RKIENR = 國際兒童冰球賽(美) RKIPUG = 國際兒童冰球賽(歐) RKJJ0Q = 漢字能力檢定協會 250萬人的漢檢(日) RKKE6K = 雪女大旋風紗雪小雪的驚奇大騷動(美) RKLEG9 = 鬼媽媽(美) RKLPG9 = 鬼媽媽(歐) RKME5D = 真人快打 末日戰場(美) RKMP5D = 真人快打 末日戰場(歐) RKNJ2N = 漢檢Wii 漢字王決定戰(日) RKOJBL = 懶懶熊 一起來悠閑生活[平衡板](日) RKPE52 = 功夫熊貓(美) RKPJ52 = 功夫熊貓(日) RKPK52 = 功夫熊貓(韓) RKPP52 = 功夫熊貓(歐) RKPV52 = 功夫熊貓(歐) RKPY52 = 功夫熊貓(Y) RKQENR = 糖果工廠(美) RKSENR = 兒童籃球賽(美) RKSPUG = 兒童籃球賽(歐) RKTENR = 國際兒童足球賽(美) RKTXUG = 國際兒童足球賽(X) RKVE54 = 大棒球聯盟2(美) RKVP54 = 大棒球聯盟2(歐) RKWJ18 = 拼圖小狗 每日一問(日) RKXE69 = 搖滾樂團(美) RKXP69 = 搖滾樂團(歐) RKYE20 = 玩具兵大戰 倒霉戰士(美) RKYP20 = 玩具兵大戰 倒霉戰士(歐) RKYP7J = 玩具兵大戰 倒霉戰士(歐) RKZEA4 = 迷失蔚藍Wii(美) RKZJA4 = 無人島求生記 Wii(日) RKZPA4 = 迷失蔚藍Wii(歐) RL2E78 = 我的馴馬場(美) RL2HMN = Horse & Pony: My Riding Stables RL2HMR = 我的馴馬場(荷) RL2PFR = 我的馴馬場(歐) RL3EMJ = 金字塔祖瑪 3(美) RL4E64 = 樂高印地安納瓊斯大冒險2 冒險再續(美) RL4P64 = 樂高印地安納瓊斯大冒險2 冒險再續(歐) RL5E52 = 愛卡莉(美) RL5P52 = 愛卡莉(歐) RL6E69 = 玩具槍大戰2 精英(美) RL7E69 = 小小寵物店 朋友(美) RL7P69 = 小小寵物店 朋友(歐) RL8E54 = 實況野球大聯盟2008(美) RL9ESD = 吉他英雄 聯合公園(美) RL9PHZ = 臺球天王(歐) RLADMR = 一擲千金(德) RLAE20 = 一擲千金(美) RLAPMR = 一擲千金(歐) RLBEWR = 樂高蝙蝠俠(美) RLBPWR = 樂高蝙蝠俠(歐) RLCP7J = 愛如鮮花盛開(歐) RLDEGY = 龍的傳說(美) RLDPFK = 龍的傳說(歐) RLEEFS = 大滿貫保齡球2(美) RLEPFS = 大滿貫保齡球2(歐) RLFE64 = 星球大戰 復制戰紀(美) RLFP64 = 星球大戰 復制戰紀(歐) RLGE64 = 樂高星際大戰 武林大會(美) RLGJ52 = 樂高星際大戰 武林大會(日) RLGP64 = 樂高星際大戰 武林大會(歐) RLHE52 = 小聯盟世界錦標賽2008(美) RLHP52 = 小聯盟世界錦標賽2008(歐) RLIE64 = 樂高印地安納瓊斯大冒險 最初冒險(美) RLIL78 = Guitar Hero 2nd Custom RLIP64 = 樂高印地安納瓊斯大冒險 最初冒險(歐) RLJEHJ = 線條滑雪2(美) RLJPKM = 線條滑雪2(歐) RLKEGY = 虛幻勇士 追求無限(美) RLKPFK = 虛幻勇士 追求無限(歐) RLLP70 = 幸運的路克 獨闖西部(歐) RLMJH4 = 越南大戰 完全版(日) RLNEVN = 幸存者[平衡板](美) RLNFMR = 蘭達島生存遊戲[平衡板](法) RLNHMR = 前進魯賓遜[平衡板](荷) RLNIMR = 前進魯賓遜[平衡板](意) RLNPMR = 前進魯賓遜[平衡板](歐) RLPE69 = 小小寵物店(美) RLPP69 = 小小寵物店(歐) RLQE52 = 運動大聯盟(美) RLQP52 = 運動大聯盟(歐) RLRE4F = 古墓奇兵 不死傳奇(美) RLRJEL = 古墓奇兵 十周年紀念版(日) RLRP4F = 古墓奇兵 十周年紀念版(歐) RLSE8P = 異形特攻隊(美) RLSP8P = 異形特攻隊(歐) RLTENR = 倫敦計程車 尖峰時刻(美) RLTPNR = 倫敦計程車 尖峰時刻(歐) RLTXUG = 倫敦計程車 尖峰時刻(X) RLUE4Q = 雷霆戰狗Bolt(美) RLUP4Q = 雷霆戰狗Bolt(歐) RLUX4Q = 雷霆戰狗Bolt(X) RLUY4Q = 雷霆戰狗Bolt(Y) RLVE78 = 降世神通 最後的氣宗(美) RLVP78 = 降世神通 最後的氣宗(歐) RLWE78 = 料理鼠王(美) RLWJ78 = 料理鼠王(日) RLWP78 = 料理鼠王(歐) RLWW78 = 料理鼠王(W) RLWX78 = 料理鼠王(X) RLWY78 = 料理鼠王(Y) RLWZ78 = 料理鼠王(Z) RLXEMJ = 埃及祖瑪 法老王的挑戰(美) RLXP36 = 埃及祖瑪 法老王的挑戰(歐) RLYEWR = 華納群星總動員 超級兵工廠(美) RLYPWR = 華納群星總動員 超級兵工廠(歐) RLZE4Z = 企鵝保衛戰(美) RLZP4Z = 企鵝保衛戰(歐) RLZPXT = 企鵝保衛戰(歐) RM2E69 = 榮譽勳章 英雄2[WiFi](美) RM2J13 = 榮譽勳章 鐵膽英豪2(日) RM2P69 = 榮譽勛章 英雄2[WiFi](歐) RM2U69 = 榮譽勛章 英雄2[WiFi](英) RM2X69 = 榮譽勛章 英雄2[WiFi](X) RM3E01 = 銀河戰士3 墮落(美) RM3J01 = 銀河戰士3 墮落(日) RM3P01 = 銀河戰士3 墮落(歐) RM4E41 = 怪物四驅 世界巡迴賽(美) RM4J41 = 怪獸卡車4×4 世界巡迴賽(日) RM4P41 = 怪物四驅 世界巡迴賽(歐) RM5E7D = 神鬼傳奇3 龍帝之墓(美) RM5P7D = 神鬼傳奇3 龍帝之墓(歐) RM6EEB = 巴洛克(美) RM6P99 = 巴洛克(歐) RM7E4F = 怪物實驗室[WiFi](美) RM7P4F = 怪物實驗室[WiFi](歐) RM8E01 = 瑪利歐派對8(美) RM8J01 = 瑪利歐派對8(日) RM8K01 = 瑪俐歐派對8(韓) RM8P01 = 瑪俐歐派對8(歐) RM9EGM = 蘑菇人 孢子大戰(美) RM9PGM = 蘑菇人 孢子大戰(歐) RMAE01 = 以 Wii 遊玩 瑪利歐網球 GC(美) RMAJ01 = 以 Wii 遊玩 瑪利歐網球 GC(日) RMAP01 = 以 Wii 遊玩 瑪利歐網球 GC(歐) RMBE01 = 超級瑪利歐棒球場 家庭棒球(美) RMBJ01 = 超級瑪利歐棒球場 家庭棒球(日) RMCC01 = 瑪利歐賽車 Wii(日) RMCE01 = 瑪利歐賽車[WiFi](美) RMCE02 = Wiimms MKW Fun 2010-02.p RMCE03 = Wiimms MKW Fun 2010-10.p RMCE04 = Wiimms MKW Fun 2010-12.p RMCE05 = Wiimms MKW Fun 2010-12.p RMCE06 = Wiimms瑪利歐賽車趣味2010-12(美) RMCE07 = Wiimms MKW Retro 2011-02.ntsc RMCE08 = Wiimms MKW Fun 2011-03.ntsc RMCE09 = Wiimms MKW Fun 2011-06.ntsc RMCE10 = Wiimms MKW Fun 2011-07.ntsc RMCE11 = Wiimms MKW Fun 2011-08.ntsc RMCE12 = Wiimms MKW Fun 2011-11.ntsc RMCE13 = Wiimms MKW Fun 2012-01.ntsc RMCE14 = Wiimms MKW Revival 2012-02.ntsc RMCE15 = Wiimms MKW Boost 2012-03.ntsc RMCE16 = Wiimms MKW Fun 2012-05.ntsc RMCE17 = Wiimms MKW Fun 2012-09.ntsc RMCE18 = Wiimms MKW N64 2012-10.ntsc RMCE19 = Wiimms MKW Fun 2012-12.ntsc RMCE20 = Wiimms MKW Fun 2013-04.ntsc RMCE21 = Wiimms MKW Fun 2013-09.ntsc RMCE22 = Wiimms MKW Fun 2013-10.ntsc RMCE23 = Wiimms MKW Fun 2014-01.ntsc RMCE24 = Wiimms MKW Retro 2014-02.ntsc RMCE25 = Wiimms MKW Fun 2014-04.ntsc RMCE26 = Wiimms MKW Fun 2014-11.ntsc RMCE65 = Mario Kart Wii: Double Dash 64 RMCE66 = Mizy's Texture Pack RMCE67 = Rookie's Texture & Music Pack RMCE68 = Character Kart Wii RMCE69 = Venom Kart Wii RMCE70 = Stickboy Kart Wii RMCE71 = Funky's Riivolution RMCE72 = CtocKart Wii RMCE73 = Mario Kart Adventures RMCE74 = Mario Kart Adventures RMCE75 = Cam, Tom and Troy's CTGP Pack RMCE76 = Pro CT Pack RMCE77 = SpyKid's CT Pack RMCE78 = Mario Kart: Double Dash!! Wii RMCE79 = Super Mario Kart Wii RMCE80 = Mario Kart 64 Wii RMCE81 = Spade's Custom Track Pack RMCE82 = HD's Retro Pack RMCE83 = Glitch Kart Wii RMCE84 = Legend's Awesome CT Pack RMCE85 = Project Double Dash!! RMCE86 = Newer Mario Kart Wii Revolution!: Backward Circuits RMCE87 = Newer Mario Kart Wii Revolution!: Sunset Sun & Dark Moon RMCE88 = Kaizo Kart Wii RMCE89 = Mario Kart Extra RMCE90 = Mario Kart QZW RMCE91 = Medal Kart 64 RMCE92 = MKWLH100's Custom Track Pack RMCE93 = MKW Hack Pack RMCE94 = Custom Track Kart Wii RMCE95 = Soarin's CT Pack X RMCE96 = Mario Kart 6 RMCE97 = Mario Kart Wii Awesomeness 2 RMCE98 = Mario Kart Wii Awesomeness RMCE99 = ReedyCustomPack Ultimate RMCEA1 = Mario Kart Adventures v0.8 RMCECT = Mario Kart Wii CTGP Revolution RMCEDK = Darky Kart Wii RMCEG2 = Mario Kart Wii CTGP Revolution RMCEGP = Mario Kart Wii CTGP Revolution RMCEWS = Wine's CT Pack RMCJ01 = 瑪利歐賽車 Wii(日) RMCJ12 = 瑪俐歐賽車Wii 自製版(2011-11 Wiimm)(日) RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCK01 = 瑪俐歐賽車[WiFi](韓) RMCP01 = 瑪利歐賽車[WiFi](歐) RMCP02 = Wiimms MKW Fun 2010-02.p RMCP03 = Wiimms MKW Fun 2010-10.p RMCP04 = Wiimms MKW Fun 2010-12.p RMCP05 = Custom Mario Kart Wii RMCP06 = Wiimms MKW Fun 2010-12.pal RMCP07 = Wiimms MKW Retro 2011-02.pal RMCP08 = Wiimms MKW Fun 2011-03.pal RMCP09 = Wiimms MKW Fun 2011-06.pal RMCP10 = Wiimms MKW Fun 2011-07.pal RMCP11 = Wiimms MKW Fun 2011-08.pal RMCP12 = Wiimms MKW Fun 2011-11.pal RMCP13 = Wiimms MKW Fun 2012-01.pal RMCP14 = Wiimms MKW Revival 2012-02.pal RMCP15 = Wiimms MKW Boost 2012-03.pal RMCP16 = Wiimms MKW Fun 2012-05.pal RMCP17 = Wiimms MKW Fun 2012-09.pal RMCP18 = Wiimms MKW N64 2012-10.pal RMCP19 = Wiimms MKW Fun 2012-12.pal RMCP20 = Wiimms MKW Fun 2013-04.pal RMCP21 = Wiimms MKW Fun 2013-09.pal RMCP22 = Wiimms MKW Fun 2013-10.pal RMCP23 = Wiimms MKW Fun 2014-01.pal RMCP24 = Wiimms MKW Retro 2014-02.pal RMCP25 = Wiimms MKW Fun 2014-04.pal RMCP26 = Wiimms MKW Fun 2014-11.pal RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCX = Mario Kart Wii CTGP Revolution Channel RMDE69 = 勁爆美式足球07[WiFi](美) RMDP69 = 勁爆美式足球07[WiFi](歐) RMEJDA = 大聯盟Wii投擲(日) RMFE68 = AMF保齡球 非同尋常(美) RMFP68 = AMF保齡球 非同尋常(歐) RMGC01 = 超級瑪利歐銀河(中) RMGE01 = 超級瑪利歐銀河(美) RMGE52 = 自制 吉他英雄3 麥加帝斯合唱團(美) RMGJ01 = 超級瑪利歐銀河(日) RMGK01 = 超級瑪利歐銀河(韓) RMGP01 = 超級瑪利歐銀河(歐) RMGR01 = 超級瑪利歐銀河(俄) RMHC08 = Monster Hunter Tri (Custom) RMHE08 = 魔物獵人3[WiFi](美) RMHJ08 = 魔物獵人3[WiFi](日) RMHP08 = 魔物獵人3[WiFi](美) RMIE20 = 瑪戈的單詞訓練(美) RMIP7J = 瑪戈的單詞訓練(歐) RMJJC8 = 麻將大會(日) RMKE01 = 瑪利歐綜合運動(美) RMKE02 = 自製 瑪利歐賽車(美) RMKJ01 = 瑪利歐綜合運動(日) RMKP01 = 瑪利歐綜合運動(歐) RMLEH4 = 越南大戰 合集(美) RMLJH4 = 越南大戰 完全版(日) RMLK52 = 越南大戰 完全版(韓) RMLP7U = 越南大戰 合集(歐) RMLPH4 = 越南大戰 合集(歐) RMME7U = 水銀融化 革命(美) RMMJ7U = 水銀融化 革命(日) RMMP52 = Guitar Hero III Custom : Metal Mayhem RMMP7U = 水銀融化 革命(歐) RMNDFR = 我的寵物旅店(德) RMNHMN = 我的寵物旅店(荷) RMNHMR = 我的寵物旅店(荷) RMNPFR = 我的寵物旅店(歐) RMOE52 = 怪獸大卡車(美) RMOP52 = 怪獸大卡車(歐) RMPE54 = 實況野球大聯盟(美) RMPP54 = 實況野球大聯盟 (歐) RMQENR = 神話創造者 命運水晶(美) RMQPUG = 神話創造者 命運水晶(歐) RMQXUG = 神話創造者 命運水晶(X) RMRE5Z = 小魔怪魔法馬戲團(美) RMRPNK = 小魔怪魔法馬戲團(歐) RMRXNK = 小魔怪魔法馬戲團(X) RMSE52 = 漫畫英雄 終極聯盟 2[WiFi](美) RMSP52 = 漫畫英雄 終極聯盟 2([WiFi]歐) RMTJ18 = 桃太郎電鐵16北海道大移動[WiFi](日) RMUE52 = 漫畫英雄 終極聯盟(美) RMUJ2K = 漫畫英雄 終極聯盟(日) RMUP52 = 漫畫英雄 終極聯盟(歐) RMVE69 = 榮譽勳章 先遣部隊(美) RMVP69 = 榮譽勛章 先遣部隊(歐) RMVX69 = 榮譽勛章 先遣部隊(X) RMWE20 = M&M's巧克力豆卡丁賽車(美) RMWP20 = M&M's巧克力豆卡丁賽車(歐) RMXE78 = 極限越野 突破[WiFi](美) RMXF78 = 極限越野 突破[WiFi](法) RMXP78 = 極限越野 突破[WiFi](歐) RMYE5Z = 超級卡丁車GP(美) RMYPUG = 超級卡丁車GP(歐) RMYXUG = 超級卡丁車GP(歐) RMZE5Z = 神話制造者 崔克茜在玩具島(美) RMZPUG = 神話制造者 崔克茜在玩具島(歐) RN2EAF = 拿姆科遊戲博物館經典合集(美) RN2K70 = Namco Museum Remix RN2P70 = 拿姆科遊戲博物館經典合集(歐) RN3E78 = 海綿寶寶 玩具機器人來襲(美) RN3J78 = 海綿寶寶 玩具機器人來襲(日) RN3P78 = 海綿寶寶 玩具機器人來襲(歐) RN3X78 = 海綿寶寶 玩具機器人來襲(X) RN4E41 = 創造新世紀(美) RN4P41 = 創造新世紀(歐) RN5E78 = 赤裸兄弟樂隊(美) RN5P78 = 赤裸兄弟樂隊(歐) RN6ENR = 北美狩獵盛典(美) RN6P7J = 北美狩獵盛典(歐) RN7E78 = 鄰居間的遊戲(美) RN7P78 = 鄰居間的遊戲(歐) RN8JC8 = 信長之野望·革新 威力加強版(日) RN9E4F = 巨蟲魔島(美) RN9JEL = 巨蟲魔島(日) RN9P4F = 巨蟲魔島(歐) RNAE69 = 美國大學橄欖球2009(美) RNBE69 = 美國職業籃球2008[WiFi](美) RNBP69 = 美國職業籃球2008[WiFi](歐) RNBX69 = 美國職業籃球2008[WiFi](X) RNCEH4 = SNK街機經典Vol1(美) RNCPH4 = SNK街機經典Vol1(歐) RNDJAF = 交響情人夢 夢之☆管弦樂(日) RNEEDA = 火影忍者疾風傳 激鬪忍者大戰3[WiFi](美) RNEJDA = 火影忍者疾風傳 激鬪忍者大戰EX3(日) RNEPDA = 火影忍者疾風傳 激鬪忍者大戰3(歐) RNFE69 = 勁爆美式足球08[WiFi](美) RNFP69 = 勁爆美式足球08[WiFi](歐) RNGJ99 = 魔法老師涅吉!新契約大戰(日) RNHE41 = 英雄不再(美) RNHJ99 = 英雄不再(日) RNHK8M = 英雄不再(韓) RNHP41 = 英雄不再(歐) RNHP99 = 英雄不再(歐) RNIPGT = 心靈、身體、靈魂 的營養健康[平衡板](歐) RNJE4F = 迷你忍者(美) RNJP4F = 迷你忍者(歐) RNKE69 = 玩具槍大戰(美) RNKP69 = 玩具槍大戰(歐) RNLE54 = 勁爆冰上曲棍球2009[WiFi](美) RNLP54 = 勁爆冰上曲棍球2009[WiFi](歐) RNME5Z = 忍者麵包人(美) RNMPUG = 忍者麵包人(歐) RNMXUG = 忍者麵包人(X) RNNE4Q = 納尼亞傳奇 凱斯賓王子(美) RNNJ4Q = 納尼亞傳奇 凱斯賓王子(日) RNNP4Q = 納尼亞傳奇 凱斯賓王子(歐) RNNX4Q = 納尼亞傳奇 凱斯賓王子(X) RNNY4Q = 納尼亞傳奇 凱斯賓王子(Y) RNNZ4Q = 納尼亞傳奇 凱斯賓王子(Z) RNOJ01 = 異色代碼 R 記憶之門(日) RNOP01 = 異色代碼 R 記憶之門(歐) RNPE69 = 極速快感 職業街頭(美) RNPJ13 = 極速快感:職業街頭(日) RNPK69 = 極速快感 職業街頭(韓) RNPP69 = 極速快感 職業街頭(歐) RNPX69 = 極速快感 職業街頭(X) RNPY69 = 極速快感 職業街頭(Y) RNRE41 = 爆衝機車[WiFi](美) RNRJ41 = 爆衝機車[WiFi](日) RNRP41 = 爆衝機車[WiFi](歐) RNSD69 = 極速快感 玩命山道(德) RNSE69 = 極速快感 玩命山道(美) RNSF69 = 極速快感 玩命山道(法) RNSJ13 = 極速快感 玩命山道(日) RNSP69 = 極速快感 玩命山道(歐) RNSX69 = 極速快感 玩命山道(X) RNUE8P = 南茜朱兒 冰溪白狼(美) RNVE5Z = 阿努比斯2(美) RNVP5Z = 阿努比斯2(歐) RNVPUG = 阿努比斯2(歐) RNVXUG = 阿努比斯2(X) RNWJAF = 大家一起玩!拿姆料嘉年華會(日) RNWKAF = 拿姆科遊戲博物館經典合集(韓) RNXEDA = 火影忍者疾風傳 激鬪忍者大戰(美) RNXJDA = 火影忍者疾風傳 激鬪忍者大戰EX(日) RNXPDA = 火影忍者疾風傳 激鬪忍者大戰(歐) RNYEDA = 火影忍者疾風傳 激鬪忍者大戰2(美) RNYJDA = 火影忍者疾風傳 激鬪忍者大戰EX2(日) RNYPDA = 火影忍者疾風傳 激鬪忍者大戰2(歐) RNZE69 = 忍者反應[WiFi](美) RNZJ13 = 忍者反應(日) RNZK69 = 忍者反應(韓) RNZP69 = 忍者反應(歐) RO2E7N = 福特越野賽車(美) RO2P7N = 福特越野賽車(歐) RO3EXJ = 王樣物語(美) RO3J99 = 王樣物語(日) RO3P99 = 王樣物語(歐) RO4JDA = 鬥真傳(日) RO5E52 = 無敵風火輪賽車 第五戰隊(美) RO5P52 = 無敵風火輪賽車 第五戰隊(歐) RO7E7D = 寶貝龍傳奇 永恆之夜(美) RO7P7D = 寶貝龍傳奇 永恆之夜(歐) RO8E7D = 寶貝龍傳奇 龍之世紀(美) RO8P7D = 寶貝龍傳奇 龍之世紀(歐) RO8X7D = 寶貝龍傳奇 龍之世紀(X) RO9EFS = 水底恐慌(美) RO9PNK = 水底恐慌(歐) ROAE36 = 霸王 黑暗傳奇(美) ROAP36 = 霸王 黑暗傳奇(歐) ROBE7U = 暗夜殺機 結果(美) ROBPPL = 暗夜殺機 結果(歐) ROCE5Z = 小魔怪卡丁車(美) ROCPNK = 小魔怪卡丁車(歐) RODE01 = 舞動壞莉歐工作室(美) RODJ01 = 舞動壞莉歐工作室(日) RODK01 = 舞動壞莉歐工作室(韓) RODP01 = 舞動壞莉歐工作室(歐) ROEEJZ = 流浪狗之家(美) ROEPGT = 流浪狗之家(歐) ROFE5Z = 極限越野特別版(美) ROFPUG = 極限越野特別版(歐) ROFXUG = 極限越野特別版(歐) ROGE78 = 塔克和惡心的監護人(美) ROGP78 = 塔克和惡心的監護人(歐) ROHJAF = 快樂組舞(日) ROJE52 = 拉帕拉 大眾釣魚(美) ROJP52 = 惠寶來 大家來釣魚(歐) ROKJ18 = 卡拉OK 歡樂之聲Wii(日) ROLE8P = 瑪利歐與音速小子在溫哥華冬奧會[WiFi][平衡板](美) ROLJ01 = 瑪利歐與音速小子在溫哥華冬季奧運(日) ROLK01 = 瑪利歐與音速小子在溫哥華冬奧會[WiFi][平衡板](韓) ROLP8P = 瑪利歐與音速小子在溫哥華冬奧會[WiFi][平衡板](歐) ROMESD = 魔物獵人G(美) ROMJ08 = 魔物獵人G[WiFi](日) RONEG9 = 性感女劍士 革命[WiFi](美) RONJG9 = 性感女劍士 Revolution(日) RONPG9 = 性感女劍士 革命[WiFi](歐) ROPE41 = 狩獵季節(美) ROPP41 = 狩獵季節(歐) ROQJEP = 巴洛克(日) ROSJ01 = 魔法使者[WiFi](日) ROTE20 = 雙重打擊 雷電行動(美) ROTP20 = 雙重打擊 雷電行動(歐) ROTP7J = 雙重打擊 雷電行動(歐) ROUJAF = 航海王 無限巡航 第一章 波浪中的秘寶(日) ROUPAF = 航海王 無限巡航 第一章 波浪中的秘寶(歐) ROVE6U = 巡遊馬戲團(美) ROVPHM = 摩比玩偶馬戲團(美) ROWE08 = 大神(美) ROWJ08 = 大神(日) ROWP08 = 大神(歐) ROXE20 = 上菜啦(美) ROXP7J = 上菜啦(歐) ROXX7J = 上菜啦(X) ROYE41 = 食破天驚(美) ROYP41 = 食破天驚(歐) ROYX41 = 食破天驚(X) RP2E69 = 冷知識遊戲(美) RP2P69 = 冷知識遊戲(歐) RP3JAF = 高爾夫球選手猿(日) RP4E69 = 我的模擬聚會[WiFi](美) RP4J13 = 我的模擬聚會[WiFi](日) RP4P69 = 我的模擬聚會[WiFi](歐) RP5JA4 = 實況強力職棒15(日) RP6E41 = 寵物 瘋狂的猴子(美) RP6P41 = 寵物 瘋狂的猴子(歐) RP7E52 = 海盜任務 搜尋黑胡子的密寶(美) RP7P52 = 海盜任務 搜尋黑胡子的密寶(歐) RP9ERS = 太空黑猩猩(美) RP9PRS = 太空黑猩猩(歐) RP9XRS = 太空黑猩猩(X) RPAF70 = 船槳男孩 迷失(法) RPBE01 = 神奇寶貝 戰鬥革命[WiFi](美) RPBJ01 = 神奇寶貝 戰鬥革命[WiFi](日) RPBP01 = 神奇寶貝 戰鬥革命[WiFi](歐) RPCE20 = 難題收藏(美) RPCP41 = 難題收藏(歐) RPCX7J = 難題收藏(X) RPDEGN = PDC世界飛鏢錦標賽2008(美) RPDPGN = PDC世界飛鏢錦標賽2008(歐) RPFE52 = 森林尋寶 大冒險(美) RPFP52 = 森林尋寶 大冒險(歐) RPFU52 = 森林尋寶 大冒險(英) RPGE5D = 怪獸大破壞(美) RPGP5D = 怪獸大破壞(歐) RPHPPN = 粉紅豬小妹 遊戲(歐) RPIE52 = MTV 幫你改裝車(美) RPIP52 = MTV 幫你改裝車(歐) RPJE7U = 弧光幻想曲(美) RPJJ99 = 弧光幻想曲(日) RPKE52 = 世界撲克冠軍聯賽2007(美) RPKP52 = 世界撲克冠軍聯賽2007(歐) RPLE52 = 雷培拉釣魚巡迴賽(美) RPLP52 = 雷培拉釣魚巡迴賽(歐) RPMJA4 = 實況力量棒球 職業棒球大聯盟2(日) RPNE78 = 我的寵物旅館(美) RPOEC8 = 歐普納大冒險(美) RPOJC8 = 歐普納大冒險(日) RPOPC8 = 歐普納大冒險(歐) RPPE41 = 波斯王子 宿敵之劍(美) RPPP41 = 波斯王子 宿敵之劍(歐) RPQES5 = 桌球派對(美) RPQPS5 = 桌球派對(歐) RPSE4Q = 迪斯尼公主 魔咒下的旅行(美) RPSJ4Q = 迪斯尼公主 魔咒下的旅行(日) RPSP4Q = 迪斯尼公主 魔咒下的旅行(歐) RPTD52 = 愛心寵物狗(德) RPTE52 = 愛心寵物狗(美) RPTP52 = 愛心寵物狗(歐) RPUJ8P = 魔法氣泡! 15周年紀念版(日) RPVE4Z = 貓貓物語(美) RPVPKM = 貓貓物語(歐) RPWX41 = 波斯王子 遺忘之沙(歐) RPWZ41 = 波斯王子 遺忘之沙(歐) RPXE69 = EA遊樂場(美) RPXJ13 = EA遊樂場(日) RPXP69 = EA遊樂場(歐) RPYE9B = 魔法飛球(美) RPYJ9B = 魔法飛球(日) RPYP9B = 魔法高爾夫(歐) RPZJA4 = 實況強力職棒Wii 決定版(日) RQ2JK6 = 瘋狂攀登者Wii(日) RQ3PGN = PDC世界飛鏢錦標賽2009(歐) RQ4E78 = 海綿寶寶 皮老闆大暴走(美) RQ4J78 = 海綿寶寶 皮老闆大暴走(日) RQ4P78 = 海綿寶寶 皮老闆大暴走(歐) RQ5E5G = 瘋狗麥基利(美) RQ5P5G = 瘋狗麥基利(歐) RQ5X5G = 瘋狗麥基利(歐) RQ6EJJ = 妖山詛咒(美) RQ6PKM = 妖山詛咒(歐) RQ6XKM = 妖山詛咒(X) RQ7E20 = 火星人的恐慌(美) RQ7PXT = Martian Panic RQ8E08 = 世界摩托車錦標賽 08(美) RQ8P08 = 世界摩托車錦標賽 08(歐) RQ9E69 = 美國職業籃球2009[WiFi](美) RQ9F69 = 美國職業籃球2009[WiFi](法) RQ9P69 = 美國職業籃球2009[WiFi](歐) RQ9S69 = 美國職業籃球2009[WiFi](西) RQBENR = 川崎4X4沙灘車(美) RQBPNR = 川崎4X4沙灘車(歐) RQBPUG = 川崎4X4沙灘車(歐) RQBXUG = 川崎4X4沙灘車(X) RQCEAF = 貪吃精靈(美) RQCJAF = 貪吃精靈(日) RQEE6U = 阿加莎克里斯蒂 艷陽下的謀殺案(美) RQEP6V = 阿加莎克里斯蒂 艷陽下的謀殺案(歐) RQFE6U = 破箱人 終極難題冒險(美) RQFP6V = 破箱人 終極難題冒險(歐) RQGE69 = 我的模擬人生 賽車(美) RQGJ13 = 我的模擬人生 賽車(日) RQGJ69 = 我的模擬人生 賽車(日) RQGP69 = 我的模擬人生 賽車(歐) RQIJ01 = NHK紅白猜謎合戰(日) RQJE7D = 古惑狼之泰坦巨人[WiFi](美) RQJP7D = 古惑狼之泰坦巨人(歐) RQJX7D = 古惑狼之泰坦巨人[WiFi](X) RQKE41 = 馬戲團遊戲(美) RQKP41 = 聚會遊樂園(歐) RQLE64 = 星際大戰複製人之戰 共和國英雄(美) RQLP64 = 星際大戰複製人之戰 共和國英雄(歐) RQMEVN = 海底指揮官(美) RQMPVN = 海底指揮官(歐) RQNEWR = 史酷比 最初恐懼(美) RQNPWR = 史酷比 最初恐懼(歐) RQOE69 = 孢子英雄(美) RQOJ13 = 孢子英雄(日) RQOP69 = 孢子英雄(歐) RQPE52 = 坎貝拉的獵鹿(美) RQPP52 = 坎貝拉的獵鹿(歐) RQPZ52 = 坎貝拉鹿獵(歐) RQQE52 = 吉他英雄 皇后樂團(美) RQQE70 = 後院橄欖球2009(美) RQREXJ = 空中殺手 無罪王牌(美) RQRJAF = 空中殺手:無瑕王牌(日) RQRPAF = 空中殺手 無罪王牌(歐) RQSE4Z = 彈珠臺名人堂 威廉收藏版(美) RQSP6M = 經典彈珠臺(歐) RQTE6U = 阿加莎·克里斯蒂 童謠謀殺案(美) RQTP6V = 阿加莎·克里斯蒂 童謠謀殺案(歐) RQUEFS = 超級小卡車(美) RQVE20 = 太平洋解放者(美) RQVP20 = 太平洋解放者(美) RQWEG9 = 益智之迷 戰神的挑戰(美) RQWPG9 = 益智之迷 戰神的挑戰(歐) RQXP70 = 奧運會上的阿斯特里克斯(歐) RQYENR = 夢幻水族世界(美) RQZE41 = 異形4X4特技賽車(美) RQZP41 = 怪獸4X4特級賽車(歐) RR2ENR = 裝載卡車競賽2(美) RR2PNR = 裝載卡車競賽2(歐) RR2PUG = 裝載卡車競賽2(歐) RR3EA4 = 終極聚會挑戰[跳舞墊](美) RR3JA4 = 家庭挑戰Wii(日) RR3PA4 = 一起派對(歐) RR4EGY = 熊熊製作工坊(美) RR4PFK = 熊熊製作工坊(歐) RR5E70 = 暴力拳擊2 革命(美) RR5P70 = 暴力拳擊2 革命(歐) RR7PVP = 一球成名 皇家馬德里 遊戲版(歐) RR8PUJ = 國際田徑大賽(歐) RR9E78 = WWE 激爆職業摔角 2009[WiFi](美) RRAE5Z = 貓王的搖滾大冒險(美) RRAPUG = 貓王的搖滾大冒險(歐) RRAXUG = 貓王的搖滾大冒險(X) RRBE41 = 雷曼超人 瘋狂兔子(美) RRBJ41 = 雷曼超人 瘋狂兔子(日) RRBP41 = 雷曼超人 瘋狂兔子(歐) RRCE52 = 芭比小馬冒險 騎術野營(美) RRCP52 = 芭比小馬冒險 騎術野營(歐) RRDE69 = 搖滾樂團 樂曲擴展包2(美) RRDP69 = 搖滾樂團 樂曲擴展包2(歐) RREE69 = 搖滾樂團 樂曲擴展包1(美) RREP69 = 搖滾樂團 樂曲擴展包1(歐) RRFEE9 = 魚之眼 垂釣者之夢Wii(美) RRFPE9 = 魚之眼 垂釣者之夢Wii(歐) RRGE52 = 馬達加斯加2 逃往非洲(美) RRGP52 = 馬達加斯加2 逃往非洲(歐) RRHPUJ = 瑪麗·金的騎術學校2(歐) RRHXUJ = 瑪麗·金的騎術學校2(X) RRIPTV = 繪畫派對(歐) RRJFMR = 準備穩妥的廚師(法) RRJIMR = 準備穩妥的廚師(意) RRJPMR = 準備好的可靠的廚師(歐) RRKE70 = 鬼屋魔影(美) RRKP70 = 鬼屋魔影(歐) RRLE78 = 貝茲娃娃 女孩本搖滾(美) RRLP78 = 貝茲娃娃 女孩本搖滾(歐) RRLX78 = 貝茲娃娃 女孩本搖滾(X) RRLY78 = 貝茲娃娃 女孩本搖滾(Y) RRLZ78 = 貝茲娃娃 女孩本搖滾(Z) RRME69 = 孩之寶 家庭遊戲之夜(美) RRMP69 = 孩之寶 家庭遊戲之夜(歐) RRMX69 = 孩之寶 家庭遊戲之夜(X) RRPE41 = 正確定價(美) RRQE52 = 史瑞克的瘋狂嘉年華(美) RRQP52 = 史瑞克的瘋狂嘉年華(歐) RRQX52 = 史瑞克的瘋狂嘉年華(X) RRRE5Z = 火場英雄 消防隊員(美) RRRPRM = 火場英雄 消防隊員(歐) RRSE4Q = 迪斯尼 拜訪魯濱遜一家(美) RRSJ4Q = 迪斯尼 拜訪魯濱遜一家(日) RRSP4Q = 迪斯尼 拜訪魯濱遜一家(歐) RRSX4Q = 迪斯尼 拜訪魯濱遜一家(X) RRTE52 = 打擊聚會(美) RRTP52 = 打擊聚會(歐) RRUEJF = 冬季運動會2 下一個挑戰[平衡板](美) RRUFRT = 冬季運動會2009 下一個挑戰[平衡板](法) RRUJJF = 冬季運動會2009[平衡板](日) RRUPRT = 冬季運動會2009[平衡板](歐) RRVENR = 戰士之怒 機器人戰爭(美) RRVPNR = 戰士之怒 機器人戰爭(歐) RRWJAF = 超級機器人大戰NEO(日) RRXE5Z = 怪物卡車競技場(美) RRXPUG = 怪物卡車競技場(歐) RRXXUG = 怪物卡車競技場(X) RRYEHG = 俠盜中隊 石英區大屠殺(美) RRYPHY = 俠盜中隊 石英區大屠殺(歐) RRZEGY = 魔方世界(美) RRZPGY = 魔方世界(歐) RS2E20 = 終極獵鴨(美) RS2EGJ = 終極獵鴨(美) RS2PGJ = 終極獵鴨(歐) RS3E52 = 蜘蛛人3(美) RS3J52 = 蜘蛛人3(日) RS3P52 = 蜘蛛人3(歐) RS3X52 = 蜘蛛人3(X) RS4EXS = 式神之城3(美) RS4JJF = 式神之城3(日) RS4PXS = 式神之城3(歐) RS5EC8 = 戰國無雙KATANA(美) RS5JC8 = 戰國無雙 KATANA(日) RS5PC8 = 戰國無雙 KATANA(歐) RS7J01 = 光速蒙面俠21 賽場上的最強戰士(日) RS8J8N = 上海(日) RS9E8P = 音速小子滑板競速 流星故事[WiFi](美) RS9J8P = 音速小子滑板競速 流星故事(日) RS9P8P = 音速小子滑板競速 流星故事[WiFi](歐) RSAE78 = 海綿寶寶 亞特蘭堤斯(美) RSAP78 = 海綿寶寶 亞特蘭蒂斯(歐) RSBE01 = 任天堂明星大亂鬪X[WiFi](美) RSBE02 = Super Smash Bros. Project M Red Version RSBE03 = Super Smash Bros. Brawl DX RSBE04 = Super Smash Bros. Project M+ RSBE05 = Super Smash Bros. Project M Patt Edition RSBE06 = Darkon360's Brawl Hack Pack RSBE07 = Super Smash Bros. Project M: Theytah's Custom Build RSBE08 = Smash Bros. Infinite RSBE09 = Springboy64's Brawl Hack Pack RSBE10 = Brawl Ying Yang Edition RSBE11 = Professor MGW's Tournament Hack Pack #1 RSBE12 = Professor MGW's Tournament Hack Pack #2 RSBE13 = Professor MGW's Hack Pack #3 RSBE14 = Super Smash Bros. Brawl- Zeus RSBE15 = Super Smash Bros. Brawl Minus Mugen RSBE16 = Super Smash Bros. Brawl Shock RSBE17 = Super Smash Bros. Brawl - Battlefield Build RSBE18 = Super Smash Bros. Project M: Tournament Hack Pack RSBE19 = Super Smash Bros. Project M: Fully Dressed Edition RSBE20 = Pikezer's BrawlEx Pack RSBE21 = Calabrel's Custom Project M Build RSBE22 = Project M: Rage83's Competitive Custom Build RSBE23 = Super Smash Bros. Project M: Justice Build RSBE24 = Super Smash Bros. 3 RSBE25 = Super Smash Bros. Red Version RSBE26 = Super Smash Bros. Silver RSBE27 = Springboy64's Super Smash Bros. Brawl Hack Pack RSBE28 = SuperYoshiStar's Super Smash Bros. Brawl Hack Pack RSBE29 = Super Smash Bros. Project M: YoeiX Custom Build RSBE30 = Super Smash Bros. Project M: Arko's Loaded Custom Build RSBE31 = Super Smash Bros. Project M: Arko's Tournament Custom Build RSBE32 = Super Smash Bros. Project M: Sempai's Build RSBE33 = Super Smash Bros. Brawl Yin Yang Edition 2: The Balance of Kyu RSBE34 = Super Smash Bros. Project U: Blue Version RSBE35 = Super Smash Bros. Brawl Legacy: Project M RSBE36 = Super Smash Bros. Project Best RSBE37 = Super Smash Bros. Project M: Psycho Ghost's Build RSBE38 = Super Smash Sisters Generations RSBE39 = Super Smash Bros. Ultra Project M RSBE40 = Super Smash Bros. Project M: Ragnarok Edition RSBE41 = Super Smash Bros. Project M: Calabrel's Custom Build RSBE42 = Super Smash Bros. Project M: RedX Anime/Game Custom Build RSBEBB = Super Smash Bros. Balanced Brawl RSBEBM = Super Smash Bros. Brawl Minus RSBEBP = Super Smash Bros. Brawl Plus RSBEC3 = Super Smash Bros. Project M 3.5 Netplay Build RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBEWM = Super Smash Bros. Project M Wi-Fi RSBJ01 = 任天堂明星大亂鬪X(日) RSBK01 = 任天堂明星大亂鬪X[WiFi](韓) RSBP01 = 任天堂明星大亂鬪X[WiFi](歐) RSCD7D = 疤面煞星 掌握世界(德) RSCE7D = 疤面煞星 掌握世界(美) RSCP7D = 疤面煞星 掌握世界(歐) RSCU7D = 疤面煞星 掌握世界(英) RSDJAF = SD 鋼彈 疾速流星鎚(日) RSEJGD = 噬魂者 單調公主(日) RSFC99 = Muramasa: The Demon Blade (Custom) RSFE7U = 朧村正 妖刀傳(美) RSFJ99 = 朧村正(日) RSFP99 = 朧村正 妖刀傳(歐) RSHE69 = 模擬王國物語(美) RSHJ13 = 模擬王國物語(日) RSHK69 = 模擬王國物語(韓) RSHP69 = 模擬王國物語(歐) RSIE69 = 我的模擬人生(美) RSIJ13 = 我的模擬人生(日) RSIP69 = 我的模擬人生(歐) RSJE41 = 斷劍 聖殿騎士之影(美) RSJESD = 自製 吉他英雄 墮落體制合唱團(美) RSJP41 = 斷劍 聖殿騎士之影(歐) RSKE52 = 史瑞克3(美) RSKP52 = 史瑞克3(歐) RSKX52 = 史瑞克3(X) RSLEAF = 劍魂傳奇(美) RSLJAF = 劍魂傳奇(日) RSLKAF = 劍魂傳奇(韓) RSLPAF = 劍魂傳奇(歐) RSME8P = 超級猴子球 派對大集合(美) RSMJ8P = 超級猴子球 派對大集合(日) RSMP8P = 超級猴子球 派對大集合(歐) RSND69 = 辛普森一家(德) RSNE69 = 辛普森一家(美) RSNF69 = 辛普森一家(法) RSNP69 = 辛普森一家(歐) RSNX69 = 辛普森一家(X) RSOE4Z = 紙牌麻將遊戲專輯(美) RSOP4Z = 紙牌麻將遊戲專輯(歐) RSPE01 = Wii運動(美) RSPJ01 = Wii運動(日) RSPK01 = Wii運動(韓) RSPP01 = Wii運動(歐) RSPW01 = Wii運動 繁體中文版 RSQEAF = 家庭滑雪[平衡板](美) RSQJAF = 家庭滑雪(日) RSQPAF = 家庭滑雪[平衡板](歐) RSRE8P = 音速小子 索尼克與秘密的戒指(美) RSRJ8P = 音速小子 索尼克與秘密的戒指(日) RSRP8P = 音速小子 索尼克與秘密的戒指(歐) RSSEH4 = 侍魂 六番勝負(美) RSSJH4 = 侍魂 六番勝負(日) RSSK52 = 侍魂 六番勝負(韓) RSSP7U = 侍魂 六番勝負(歐) RSTE64 = 星際大戰 原力釋放(美) RSTJ52 = 星球大戰 原力釋放(日) RSTP64 = 星球大戰 原力釋放(歐) RSUENR = 夏季運動會 天堂島(美) RSUP41 = 夏季運動會 天堂島(歐) RSVE8P = 音速小子 解放(美) RSVJ8P = 音速小子 世界大冒險(日) RSVP8P = 音速小子 解放(歐) RSWE08 = 生化間諜(美) RSWP08 = 生化間諜(歐) RSXE69 = 極限滑雪(美) RSXJ13 = 極限滑雪(日) RSXK69 = 極限滑雪(韓) RSXP69 = 極限滑雪(歐) RSXX78 = Guitar Hero RadioHead RSYE20 = 冠軍拳擊賽(美) RSYP06 = Super Smash Bros. Brawl : YF06's Mod RSYP7J = 冠軍拳擊賽(歐) RSZJES = 雪女大旋風紗雪小雪的驚奇大騷動(日) RSZPGT = 雪女大旋風紗雪小雪的驚奇大騷動(歐) RT2E20 = 極地熊寶貝(美) RT2P20 = 極地熊寶貝(歐) RT2P7J = 極地熊寶貝(歐) RT3E54 = 實況桌球(美) RT3JEL = 實況桌球(日) RT3P54 = 實況桌球(歐) RT4EAF = 時空幻境 交響曲傳奇 拉塔特斯克的騎士(美) RT4JAF = 時空幻境 交響曲傳奇 拉塔特斯克的騎士(日) RT4PAF = 時空幻境 交響曲傳奇 拉塔特斯克的騎士(歐) RT5E8P = SEGA 超級巨星網球(美) RT5P8P = SEGA 超級巨星網球(歐) RT6FKM = 神奇的旋轉木馬(法) RT6PKM = 神奇的旋轉木馬(歐) RT7E69 = 老虎伍茲高爾夫巡迴賽07(美) RT7F69 = 老虎伍茲高爾夫巡迴賽07(法) RT7P69 = 老虎伍茲高爾夫巡迴賽07(歐) RT8E69 = 老虎伍茲高爾夫巡迴賽08(美) RT8J13 = 老虎伍茲高爾夫巡迴賽08(日) RT8K69 = 老虎伍茲高爾夫巡迴賽08(韓) RT8P69 = 老虎伍茲高爾夫巡迴賽08(歐) RT9E52 = 托尼霍克滑板 練習場[WiFi](美) RT9P52 = 托尼霍克滑板 練習場[WiFi](歐) RTAE41 = 湯姆克蘭西 鷹戰2(美) RTAP41 = 湯姆克蘭西 鷹戰2(歐) RTBE52 = 職業釣魚錦標賽(美) RTBP52 = 職業釣魚錦標賽(歐) RTCE41 = 分裂細胞 雙重間諜(美) RTCP41 = 分裂細胞 雙重間諜(歐) RTDE6K = 新.中華大仙 米迦勒與美美的冒險(美) RTDJES = 新.中華大仙 米迦勒與美美的冒險(日) RTDK8M = 新.中華大仙 米迦勒與美美的冒險(韓) RTEE78 = 我的寵物醫院(美) RTEHMR = 我的寵物醫院(荷) RTEPFR = 我的寵物醫院(歐) RTFE52 = 變形金剛(美) RTFJ52 = 變形金剛(日) RTFK52 = 變形金剛(韓) RTFP52 = 變形金剛(歐) RTFX52 = 變形金剛(X) RTFY52 = 變形金剛(Y) RTGJ18 = Wi-Fi對應 嚴選桌面遊戲[WiFi](日) RTHE52 = 托尼霍克滑板(美) RTHP52 = 托尼霍克滑板(歐) RTIE8P = 古怪世界運動會(美) RTIJ8P = 瘋狂世界大運動(日) RTIP8P = 古怪世界運動會(歐) RTJE68 = 星艦迷航記 征服(美) RTJP68 = 星艦迷航記 征服(歐) RTKE5Z = 章魚大作戰[WiFi](美) RTKJDQ = 章魚大作戰[WiFi](日) RTKK8M = 章魚大作戰[WiFi](韓) RTLE18 = 目標!釣魚大師 世界版(美) RTLJ18 = 垂釣大師 2 挑戰世界篇(日) RTLP18 = 目標!釣魚大師 世界版(歐) RTME41 = 忍者龜 旋風再起(美) RTMP41 = 忍者龜 旋風再起(歐) RTNE41 = 天誅4(美) RTNJCQ = 天誅4(日) RTNP41 = 天誅4(歐) RTOJ8P = 428 被封鎖的涉谷(日) RTPP41 = 王牌冒險(歐) RTQENR = 怪物卡車 越野賽(美) RTQPUG = 怪物卡車 越野賽(歐) RTQXUG = 怪物卡車 越野賽(X) RTRE18 = 垂釣大師(美) RTRJ18 = 垂釣大師(日) RTRP18 = 垂釣大師(歐) RTSEVN = 特工少女組 狂歡派對(美) RTSP41 = 特工少女組 狂歡派對(歐) RTTJAF = 電子雞寵物店(日) RTUEJJ = 秘密檔案 通古斯加(美) RTUFKM = 秘密檔案 通古斯(法) RTUPKM = 秘密檔案 通古斯(歐) RTVE64 = 模擬樂園 驚奇世界(美) RTVP64 = 模擬樂園 驚奇世界(歐) RTWE5D = 摔角聯盟(美) RTWP5D = 摔角聯盟(歐) RTYP01 = Wii國際象棋[WiFi](歐) RTZE08 = 寶島Z 紅鬍子的秘寶(美) RTZJ08 = 寶島Z 紅鬍子的秘寶(日) RTZK08 = 寶島Z 巴爾巴羅斯的秘寶(韓) RTZP08 = 寶島Z 紅鬍子的秘寶(歐) RU1P4Q = 自制 迪斯尼想唱就唱 下載版(歐) RU2E5Z = 冬季運動會2 下一個挑戰[平衡板](美) RU2P4Q = 自制 迪斯尼想唱就唱 下載版(歐) RU2P5Z = 冬季運動會2 下一個挑戰[平衡板](歐) RU3E5Z = 夏季田徑運動會(美) RU4E41 = 我的健身教練2 鍛煉與營養[平衡板](美) RU4X41 = 新健身首選私人教練[平衡板](X) RU5E4Q = 迪士尼公主和青蛙(美) RU5P4Q = 公主與青蛙(歐) RU5V4Q = Disney: The Princess and the Frog RU5X4Q = 公主與青蛙(X) RU5Y4Q = 公主與青蛙 河船爵士版(Y) RU6EHG = 自由跑者極限運動高手(美) RU6PHY = 自由奔跑(歐) RU7E5G = 博物館驚魂夜2 決戰史密森尼(美) RU7X5G = 博物館驚魂夜2 決戰史密森尼(X) RU8EFS = 巴斯專業店 狩獵(美) RU9EGT = 我的芭蕾舞工作室(美) RU9PGT = 天后女孩 芭蕾天后(歐) RUAE52 = 怪物卡車 襲擊市區(美) RUAP52 = 怪物卡車 襲擊市區(歐) RUBEVN = 極致桌上遊戲合輯(美) RUBP7N = 極致桌上遊戲合輯(歐) RUCE5Z = 冬季運動會 終極挑戰 2008(美) RUCPRT = 冬季運動會 終極挑戰 2008(歐) RUCXRT = 冬季運動會 終極挑戰 2008(X) RUEE4Q = 鼠膽妙算(美) RUEP4Q = 鼠膽妙算(歐) RUEX4Q = 鼠膽妙算(X) RUEY4Q = 鼠膽妙算(歐) RUFEMV = 符文工廠 未知大地(美) RUFJ99 = 符文工廠 未知大地(日) RUFP99 = 符文工廠 未知大地(歐) RUGE7T = 雞皮疙瘩恐怖樂園(美) RUGP5G = 雞皮疙瘩恐怖樂園(歐) RUHE52 = 爆丸 戰鬥對決(美) RUHP52 = 爆丸 戰鬥對決(歐) RUHX52 = 爆丸 戰鬥對決(X) RUHZ52 = 爆丸 戰鬥對決(歐) RUIE4Q = 迪斯尼 想唱就唱(美) RUIGGD = SingItStar Ned. 80's RUIP4Q = 迪斯尼 想唱就唱(歐) RUIX4Q = 迪斯尼 想唱就唱(X) RUKEGT = 我們來搖滾吧 鼓王(美) RUKPGT = 我們來搖滾吧 鼓王(歐) RULE4Q = 終極樂隊[WiFi](美) RULP4Q = 終極樂隊[WiFi](歐) RUME5Z = 滑雪射擊[平衡板](美) RUMPFR = 夏季田徑運動會(歐) RUNJ0Q = 新 右腦達人Wii(日) RUOEPL = 閣樓里的外星人(美) RUOPPL = 閣樓里的外星人(歐) RUPJC8 = 賽馬大亨7 Maximum 2008(日) RUQD78 = 天外奇蹟(德) RUQE78 = 天外奇蹟(美) RUQI78 = 天外奇蹟(歐) RUQJJE = 天外奇蹟(日) RUQP78 = 天外奇蹟(歐) RUQS78 = 天外奇蹟(西) RUQX78 = 天外奇蹟(歐) RUREPL = 職業撞球名人堂(美) RURPPL = 職業撞球名人堂(歐) RUSE78 = 海綿寶寶 致命水珠(美) RUSK78 = 海綿寶寶 致命水珠(韓) RUSP78 = 海綿寶寶 致命水珠(Y) RUSX78 = 海綿寶寶 致命水珠(X) RUSY78 = 海綿寶寶 致命水珠(Y) RUUE01 = 動物之森 城市大家庭[WiFi](美) RUUJ01 = 動物之森 城市大家庭(日) RUUK01 = 動物之森 城市大家庭[WiFi](韓) RUUP01 = 動物之森 城市大家庭[WiFi](歐) RUWJC8 = 賽馬大亨世界(日) RUXPUG = 都市極限飚車 街道之怒(X) RUXXUG = 都市極限飚車 街道之怒(X) RUYE41 = 英雄不再2 垂死掙扎(美) RUYJ99 = 英雄不再2:垂死掙扎(日) RUYP99 = 英雄不再2 垂死掙扎(歐) RUZE7T = 終極挑戰者(美) RUZP5G = 終極間諜(歐) RV2E5D = 遊戲派對2(美) RV2P5D = 遊戲派對2(歐) RV3P6N = 聰明的孩子 嚇人的爬行動物(歐) RV7SMR = 幸存者[平衡板](歐) RV8E20 = 夏日海灘趣味挑戰(美) RV8PRT = 海灘暑假快樂挑戰(歐) RV9E78 = 降世神通 地獄之炎(美) RV9P78 = 降世神通 地獄之炎(歐) RVAE78 = 降世神通 燃燒的大地(美) RVAP78 = 降世神通 燃燒的大地(歐) RVBERS = 鼠來寶(美) RVBPRS = 鼠來寶(歐) RVDPLG = 德伯力克 原罪(歐) RVEFMR = 歡迎來到北方(法) RVFE20 = 大腳車 碰撞航向(美) RVFP7J = 大腳車 碰撞航向(歐) RVGE78 = 默夫格里芬縱橫字迷(美) RVGP78 = 默夫格里芬縱橫字迷(歐) RVHP41 = 斯塊博拼字 互動2009[WiFi][平衡板](歐) RVIE4F = 樂高生化戰士(美) RVIP4F = 樂高生化戰士(歐) RVJPFR = 金髮美女 回到小島(歐) RVKEXJ = 瓦爾哈拉騎士 艾德爾傳奇[WiFi](美) RVKJ99 = 瓦爾哈拉騎士 艾德爾傳奇[WiFi](日) RVKKZA = 瓦爾哈拉騎士 艾德爾傳奇[WiFi](韓) RVKP99 = 瓦爾哈拉騎士 艾德爾傳奇[WiFi](歐) RVLPA4 = 搖滾革命(歐) RVNE20 = 加爾文塔克的鄉村狂歡(美) RVNP20 = 加爾文塔克的鄉村狂歡(歐) RVNP7J = 加爾文塔克的鄉村狂歡(歐) RVOEPL = 眩暈滾球[平衡板](美) RVOPPL = 眩暈滾球[平衡板](歐) RVPEFS = 明星吉他(美) RVPPFS = 明星吉他(歐) RVQE41 = 電影遊戲(美) RVQP41 = 電影遊戲(歐) RVREFS = 叛亂襲擊者 夜鷹行動(美) RVRPFS = 叛亂襲擊者 夜鷹行動(歐) RVRPKG = 叛亂襲擊者 夜鷹行動(歐) RVSE69 = 極限滑板[平衡板](美) RVSJ13 = 極限滑板[平衡板](日) RVSP69 = 極限滑板[平衡板](歐) RVTFMR = 真實故事 獸醫(法) RVTPMR = 我的寵物俱樂部(歐) RVTXMR = 真實故事 獸醫(X) RVUE8P = 威力網球 2009[MP][WiFi](美) RVUP8P = 威力網球 2009[MP][WiFi](歐) RVVE78 = 大沙灘運動(美) RVVP78 = 大沙灘運動(歐) RVXFRT = 現代冬季兩項2009[平衡板](法) RVXPRT = 現代冬季兩項2009[平衡板](歐) RVYD52 = 決勝時刻 戰爭世界[WiFi](德) RVYE52 = 決勝時刻 戰爭世界(美) RVYK52 = 決勝時刻 世界大戰[WiFi](韓) RVYP52 = 決勝時刻 世界大戰[WiFi](歐) RVYX52 = 決勝時刻 世界大戰[WiFi](X) RVYY52 = 決勝時刻 世界大戰[WiFi](Y) RVZE52 = 怪獸大戰外星人(美) RVZP52 = 怪獸大戰外星人(歐) RW3E4Q = 神鬼奇航 世界的盡頭(美) RW3J4Q = 神鬼奇航 世界的盡頭(日) RW3P4Q = 神鬼奇航 世界的盡頭(歐) RW4D41 = 我的詞匯教練(德) RW5F41 = 誰想成為百萬富翁?第二集(法) RW5P41 = 誰想成為百萬富翁?第二集(歐) RW6PA4 = 熱舞革命 美少女俱樂部[跳舞墊](歐) RW7E41 = 夏恩懷特滑雪[平衡板](美) RW8P41 = 想象 冠軍騎士(歐) RW9P78 = WWE 激爆職業摔角 2009[WiFi](歐) RW9X78 = WWE 激爆職業摔角 2009[WiFi](X) RWAD78 = 瓦力(德) RWAE78 = 瓦力(美) RWAJ78 = 瓦力(日) RWAK78 = 瓦力(韓) RWAP78 = 瓦力(歐) RWAR78 = 瓦力(俄) RWAU78 = 瓦力(英) RWAX78 = 瓦力(X) RWAY78 = 瓦力(Y) RWAZ78 = 瓦力(Z) RWBENR = 川崎雪橇(美) RWBXUG = 川崎雪橇(X) RWCE4Z = 榮譽彈珠臺 威廉姆斯家族珍藏(美) RWCP4Z = 榮譽彈珠臺 威廉姆斯家族珍藏(歐) RWCP6M = 威廉彈珠台(歐) RWDC52 = 自制 吉他英雄 下載版(歐) RWDE5G = 野生大地 非洲之旅(美) RWDP5G = 野生大地 非洲之旅(歐) RWEEA4 = 實況足球2008[WiFi](美) RWEJA4 = 實況足球 中場指揮官 2008(日) RWEPA4 = 實況足球2008[WiFi](歐) RWFH41 = 我的單詞教練(荷) RWGE08 = 全民高爾夫[WiFi](美) RWGJ08 = 大眾高爾夫(日) RWGP08 = 全民高爾夫[WiFi](歐) RWHP4F = 頂級王牌 神秘博士(歐) RWIE18 = 翼神之島(美) RWIJ18 = 翼神之島(日) RWIP18 = 翼神之島(歐) RWJENR = 單詞瓊聚會(美) RWKE5G = 妙廚老媽2 世界廚房(美) RWKPGT = 妙廚老媽2 世界廚房(歐) RWLE01 = 壞莉歐樂園大震盪(美) RWLJ01 = 壞莉歐樂園大震盪(日) RWLK01 = 壞莉歐樂園大震盪(韓) RWLP01 = 壞莉歐樂園大震盪(歐) RWME78 = 百戰天蟲 怪異空間(美) RWMP78 = 百戰天蟲 怪異空間(歐) RWNF70 = 警告 公路規則(法) RWOE69 = 地產大亨(美) RWOJ13 = 地產大亨(日) RWOP69 = 地產大亨(歐) RWQPSP = 真實世界斯諾克冠軍賽2008(歐) RWRE4F = 古怪賽車 衝撞(美) RWRP4F = 古怪賽車 衝撞(歐) RWSE8P = 瑪利歐與音速小子在北京奧運[WiFi](美) RWSJ01 = 瑪利歐與音速小子在北京奧運(日) RWSK01 = 瑪利歐與音速小子在北京奧運[WiFi](韓) RWSP8P = 瑪利歐與音速小子在北京奧運[WiFi](歐) RWTEG9 = BEN 10 外星神力(美) RWTPG9 = BEN 10 外星神力(歐) RWUE52 = X戰警 金鋼狼(美) RWUP52 = X戰警 金鋼狼(歐) RWUX52 = X戰警 金鋼狼(X) RWWE52 = Guitar Hero III Custom : WWE The Hits RWWE78 = WWE 激爆職業摔角 2008[WiFi](美) RWWJ78 = WWE 激爆職業摔角 2008[WiFi](日) RWWP78 = WWE 激爆職業摔角 2008[WiFi](歐) RWWX78 = WWE 激爆職業摔角 2008 RWXES5 = 印第安武士 一個勇士的傳說(美) RWXPS5 = 印第安武士 一個勇士的傳說(歐) RWYPHH = 逃亡 海龜之夢(歐) RWZE5G = 奇跡世界遊樂園(美) RWZP5G = 奇跡世界遊樂園(歐) RWZX5G = 奇跡世界遊樂園(X) RX2E70 = 我和我的小馬2(美) RX2P70 = 我和我的小馬2(歐) RX3E01 = 激情漫游 特技競速[WiFi](美) RX3J01 = 激情漫遊:特技競速(日) RX4E4Z = 鬼馬小精靈 鬼怪運動日(美) RX4PMT = 鬼馬小靈精 恐怖學校鬼怪的運動日(歐) RX5E52 = 滑板高手 RIDE(美) RX5P52 = 滑板高手 RIDE(歐) RX6E78 = 減肥達人[平衡板](美) RX6P78 = 減肥達人[平衡板](歐) RX7JGD = 梅吉瑪吉演奏比賽(日) RX8JA4 = 實況力量棒球 NEXT(日) RX9E69 = 極速快感 臥底風雲(美) RX9J13 = 極速快感 臥底風雲(日) RX9K69 = 極速快感 臥底風雲(韓) RX9P69 = 極速快感 臥底風雲(歐) RX9X69 = 極速快感 臥底風雲(X) RX9Y69 = 極速快感 臥底風雲(Y) RXAE78 = WWE 激爆職業摔角 2010[WiFi](美) RXAP78 = WWE 激爆職業摔角 2010[WiFi](歐) RXBE70 = 后院棒球10(美) RXBP70 = 后院棒球10(歐) RXCE4Z = 戴夫·米拉自行車越野挑戰賽(美) RXCP4Z = 戴夫·米拉自行車越野挑戰賽(歐) RXCPGT = 戴夫·米拉自行車越野挑戰賽(歐) RXDD4Q = 靈機一動(德) RXDE4Q = 靈機一動(美) RXDJ4Q = 靈機一動(日) RXDP4Q = 靈機一動(歐) RXDR4Q = 靈機一動(俄) RXDX4Q = 靈機一動(X) RXDY4Q = 靈機一動(Y) RXEJDA = 棒球大聯盟Wii(日) RXFEVN = 近海大亨(美) RXGE6K = 吉綸立方(美) RXGP6K = Geon Cube RXHF5D = 混沌之家(法) RXIE52 = 變形金剛2 復仇之戰[WiFi](美) RXIP52 = 變形金剛2 復仇之戰[WiFi](歐) RXJJDA = 人生遊戲Wii EX(日) RXKEGL = 電視秀之王聚會(美) RXKFGL = 電視秀之王聚會(法) RXKPGL = 電視秀之王聚會(歐) RXLE41 = 實習醫生格蕾(美) RXLP41 = 實習醫生格蕾(歐) RXMJ8P = 手舞足蹈填字謎(日) RXNEXS = 再次體感釣魚(美) RXNJJF = 鱸魚釣手Wii 世界錦標賽 (日) RXNPGT = 大收獲 巴斯釣魚2[MP](歐) RXPEXS = 實感釣魚[WiFi](美) RXPJJF = 實感釣魚[WiFi](日) RXPPGT = 實感釣魚[WiFi](歐) RXQEWR = 野獸冒險樂園(美) RXQPWR = 野獸冒險樂園(歐) RXRERS = 雙鼠記(美) RXRPRS = 浪漫鼠德佩羅(歐) RXRXRS = 浪漫的老鼠(歐) RXSPA4 = 熱舞生涯 勁爆舞會[跳舞墊](歐) RXUE41 = 衝浪季節(美) RXUP41 = 衝浪季節(歐) RXUX41 = 衝浪季節(X) RXVXWP = 填字遊戲(X) RXWE20 = M&M's巧克力豆海灘派對(美) RXXE4Q = 化石超進化 起源(美) RXXJ4Q = 化石超進化 起源(日) RXXP4Q = 化石超進化 起源(歐) RXYE4Z = 更多的難題挑戰(美) RXYP4Z = 更多的難題挑戰(歐) RXZE52 = 坎貝拉危險狩獵2009(美) RXZP52 = 坎貝拉危險狩獵2009(歐) RY2E41 = 雷曼超人 瘋狂兔子2[WiFi](美) RY2J41 = 雷曼超人 瘋狂兔子2[WiFi](日) RY2K41 = 雷曼超人 瘋狂兔子2[WiFi](韓) RY2P41 = 雷曼超人 瘋狂兔子2[WiFi](歐) RY2R41 = 雷曼超人 瘋狂兔子2[WiFi](俄) RY3E41 = 雷曼超人 瘋狂兔子的電視派對[平衡板](美) RY3J41 = 雷曼超人 瘋狂兔子的電視派對[平衡板](日) RY3K41 = 雷曼超人 瘋狂兔子的電視派對 [WiFi][平衡板](韓) RY3P41 = 雷曼超人 瘋狂兔子的電視派對[WiFi][平衡板](歐) RY4J8P = 魔法氣泡7(日) RY5E52 = 夏日運動大聯盟(美) RY5P52 = 夏日運動大聯盟(歐) RY6EA4 = 去戶外吧[平衡板](美) RY6PA4 = 節拍漫步(歐) RY7PHZ = 忍者首領(歐) RY8EFS = 巴斯專業店 魚餌(美) RYAJDA = 正義雙俠Wii 驚奇機械大競速(日) RYAJSC = 小雙俠賽車 Wii RYBE69 = 轟炸方塊 猛擊聚會[WiFi](美) RYBP69 = 轟炸方塊 猛擊聚會[WiFi](歐) RYDELT = 寵物伴侶 動物醫生(美) RYDP6V = 寵物伴侶 動物醫生(歐) RYEEEB = 101合1 聚會遊戲大合集(美) RYEPHZ = 101合1 聚會遊戲大合集(歐) RYGE9B = 阿格斯戰士 肌肉衝擊(美) RYGJ9B = 阿格斯戰士 肌肉衝擊(日) RYGP99 = 阿格斯戰士 肌肉衝擊(歐) RYHES5 = 虛擬宇宙 扭曲之塔(美) RYHPS5 = 虛擬宇宙 扭曲之塔(歐) RYIE9B = 涂鴉王子(美) RYIP9B = 涂鴉王子(歐) RYJPTV = 莉莉菲公主 魔法小仙女(歐) RYKEAF = 世界滑雪&滑雪板[平衡板](美) RYKJAF = 家庭滑雪:世界滑雪&滑雪板(日) RYKPAF = 世界滑雪&滑雪板[平衡板](歐) RYLDSV = 德國頂級模特(德) RYNE6U = 哈迪男孩 隱藏的盜竊(美) RYNP6V = 哈迪男孩 隱藏的盜竊(歐) RYOEA4 = 遊戲王5D's 破碎轉輪(美) RYOJA4 = 遊戲王5D's 破碎轉輪(日) RYOPA4 = 遊戲王5D's破碎轉輪(歐) RYQE69 = 棋盤問答(美) RYQP69 = 棋盤問答(歐) RYQX69 = 棋盤問答(X) RYRE41 = 你的塑身(美) RYRP41 = 你的塑身(歐) RYTE4Z = 職業騎野牛賽(美) RYVEMS = 街機射擊 愛貝羅(美) RYVJMS = 病態空間Wii(日) RYWE01 = 輕松頭腦教室(美) RYWJ01 = 輕松頭腦教室(日) RYWK01 = 輕松頭腦教室(韓) RYWP01 = 輕松頭腦教室(歐) RYXE20 = 山葉越野摩托車賽(美) RYXP7J = 山葉越野摩托車賽(歐) RYZE6U = 世界派對遊戲(美) RYZPTV = 遊玩天下[平衡板](歐) RZ2JG9 = 簡單Wii系列1 大家一起賽車[WiFi](日) RZ3JG9 = 簡單Wii系列2 大家一起釣魚[WiFi](日) RZ4JG9 = 簡單Wii系列3 賭場聚會[WiFi](日) RZ5JG9 = 簡單Wii系列4 戰鬥射擊[WiFi](日) RZ6JG9 = 簡單Wii系列5 打磚塊[WiFi](日) RZ7JG9 = 簡單Wii系列6 喧嘩槍戰[WiFi](日) RZ8JG9 = 簡單2000系列1 桌面遊戲(日) RZ9EG9 = 家庭聚會 30個好遊戲(美) RZ9JG9 = 簡單2000系列2 家庭聚會(日) RZ9PG9 = 家庭聚會 30個好遊戲(歐) RZAPTV = 力量數學(歐) RZCE6K = 聖徒(美) RZDC01 = 薩爾達傳說 曙光公主(中) RZDE01 = 薩爾達傳說 曙光公主(美) RZDJ01 = 薩爾達傳說 曙光公主(日) RZDK01 = 薩爾達傳說 曙光公主(韓) RZDP01 = 薩爾達傳說 曙光公主(歐) RZEE52 = 科學老爸(美) RZEP52 = 科學老爸(歐) RZFPKM = 秘密檔案2 清心(歐) RZHE5G = 動物醫院[WiFi](美) RZHP5G = 動物醫院[WiFi](歐) RZHX5G = 動物醫院[WiFi](X) RZIE20 = 冬季運動會3(美) RZIPRT = RTL冬季運動會2010(歐) RZJD69 = 死亡空間 撤離(德) RZJE69 = 絕命異次元 異形源起(美) RZJJ13 = 死亡太空 撤離(日) RZJP69 = 絕命異次元 異形源起(歐) RZKE20 = 謎題王國(美) RZKP7J = 謎題王國(歐) RZLE41 = 烹飪戰爭(美) RZLP41 = 烹飪聚會(歐) RZNJ01 = 斬擊的女武神(日) RZOE78 = 動物園世界(美) RZOP78 = 動物園世界(歐) RZPE01 = 林克的十字弓訓練(美) RZPJ01 = 林克的十字弓訓練(日) RZPK01 = 林克的十字弓訓練(韓) RZPP01 = 林克的十字弓訓練(歐) RZREGT = 蒙面俠蘇洛的宿命(美) RZRPGT = 蒙面俠蘇洛的宿命(歐) RZSEGJ = 極速地帶(美) RZSP68 = 飛速賽車(歐) RZTE01 = Wii運動 度假勝地[MP](美) RZTJ01 = Wii運動 度假勝地[MP](日) RZTK01 = Wii運動 度假勝地[MP](韓) RZTP01 = Wii運動 度假勝地[MP](歐) RZTW01 = Wii運動 度假勝地 繁體中文版[MP] RZUE4Z = 彩色之旅(美) RZYE41 = 我的單詞教練(美) RZYF41 = 我的單詞教練(法) RZYP41 = 我的單詞教練(歐) RZYS41 = 我的單詞教練(西) RZZE8P = 瘋狂世界(美) RZZJEL = 瘋狂世界(日) RZZP8P = 瘋狂世界(歐) S02PES = 自制 唱吧 下載版(歐) S22JAF = 家庭釣魚(日) S22K01 = Family Fishing S25JGD = 勇者鬥惡龍25周年紀念 FC & SFC 勇者鬥惡龍1、2、3 (日) S26PML = 2-in-1: Pony Friends 2 + My Riding Stables: Life with Horses S2AEAF = 運動生活 探險家(美) S2AJAF = 運動生活 探險家(日) S2APAF = 運動生活 探險家(歐) S2BEPZ = 鄉村舞蹈2(美) S2BPXT = Country Dance 2 S2CE54 = 新遊戲狂歡節[MP](美) S2CP54 = 新遊戲狂歡節[MP](歐) S2DPML = 跳舞這是你的舞台(歐) S2EE41 = ABBA: You Can Dance(美) S2EP41 = ABBA: You Can Dance(歐) S2HE70 = 鬼屋(美) S2HP70 = 鬼屋(歐) S2IE8P = 鋼鐵人2(美) S2IP8P = 鋼鐵人2(歐) S2LE01 = 神奇寶貝樂園2 在世界的彼端 (美) S2LJ01 = 神奇寶貝樂園2 在世界的彼端(日) S2LP01 = 神奇寶貝樂園2 在世界的彼端 (歐) S2ME69 = Madden NFL 13 S2OEFS = 巴斯專業店魚餌 錦標賽版(美) S2PEA4 = 實況足球 2012(美) S2PJA4 = 實況足球 2012(日) S2PPA4 = 實況足球 2012(歐) S2PXA4 = 實況足球 2012(歐) S2PYA4 = 實況足球 2012(歐) S2QE54 = NBA 2K12(美) S2QP54 = NBA 2K12(歐) S2RPNK = 目標狙擊(美) S2TJAF = 太鼓達人Wii 大張旗鼓!二代目(日) S2VEG9 = Victorious: Taking the Lead S2VPAF = Victorious: Taking the Lead S2WE78 = WWE激爆職業摔角 全明星大賽(美) S2WP78 = WWE激爆職業摔角 全明星大賽(歐) S2XE41 = 藍色小精靈2(美) S2XP41 = 藍色小精靈2(歐) S2YE52 = Wipeout: Create & Crash S2ZE52 = 開心鼠園2(美) S2ZP52 = 開心鼠園2(歐) S3AE5G = 3D電影大射擊(美) S3BEWR = 蝙蝠俠 勇者無懼(美) S3BPWR = 蝙蝠俠 勇者無懼(歐) S3CENR = 三冠王滑雪錦標賽[平衡板](美) S3DE18 = 運動大集錦3 Wii的十項運動[MP][WiFi](美) S3DJ18 = 運動大集錦3 Wii的十項運動[MP][WiFi](日) S3DP18 = 運動大集錦3 Wii的十項運動[MP][WiFi]((歐) S3EE78 = 芭比娃娃 時尚風格(美) S3EP78 = 芭比娃娃 時尚風格(歐) S3FE69 = FIFA Soccer 13 S3FP69 = FIFA 足球 13 S3FX69 = FIFA 13 S3GE20 = 極地越野賽3(美) S3GPXT = Glacier 3 S3HJ08 = 戰國 BASARA 3 宴(日) S3IEA4 = Pro Evolution Soccer 2013 S3IPA4 = 实况足球2013 欧版 S3IXA4 = Pro Evolution Soccer 2013 S3IYA4 = Pro Evolution Soccer 2013 S3LPY1 = Andrew Lloyd Webber Musicals: Sing and Dance S3ME69 = 模擬市民3(美) S3MP69 = 模擬市民3(歐) S3PE4Q = 迪士尼公主 我的童話冒險(美) S3PP4Q = 迪士尼公主 我的童話冒險(歐) S3PX4Q = 迪士尼公主 我的童話冒險(歐) S3RJMS = 一閃女皇(日) S3SJ18 = 卡拉OK Joysound Wii超級DX版 好歌一起唱(日) S3TJAF = 太鼓達人Wii 大家的聚會!三代目(日) S3WEG9 = 家庭聚會 30 個冬季遊戲(美) S3WPG9 = 家庭聚會 30 個冬季遊戲(歐) S3XE78 = WWE '13 S3XP78 = WWE摔跤13 S3ZE52 = MIB星際戰警3(美) S3ZP52 = MIB星際戰警3(歐) S4MJGD = 勇者鬥惡龍 10 覺醒的五個種族 Online(日) S4SJGD = Dragon Quest X: Nemureru Yuusha to Michibiki no Meiyuu Online S4TJAF = 太鼓達人Wii 決定版(日) S59E01 = 戰國無雙 3(美) S59JC8 = 戰國無雙 3(日) S59P01 = 戰國無雙 3(歐) S5BETL = 回到未來(美) S5BPKM = Back to the Future: The Game S5KJAF = 太鼓達人Wii 超豪華版(日) S5QJC8 = 戰國無雙3 猛將傳(日) S5RESZ = Ram Racing S5RPNJ = Ram Racing S5SJHF = 閃電十一人GO時空之石 王牌前鋒 2013(日) S5TEG9 = Ben 10: 全能宇宙 S5TPAF = Ben 10: Omniverse S5WE20 = 世界各地的50款遊戲(美) S6BE4Q = 勇敢傳說(美) S6BP4Q = 勇敢傳說(歐) S6BY4Q = Brave: The Video Game S6IE78 = 迪斯尼公主故事書(美) S6IP78 = 迪斯尼公主故事書(美) S6RE52 = 無敵破壞王(美) S6RP52 = 無敵破壞王(歐) S6TJGD = Dragon Quest X (All in One Package) S72E01 = Kirby's Dream Collection: Special Edition S72J01 = 星之卡比 20周年特別合集 S75E69 = 地產大亨 風華大街(美) S75P69 = 地產大亨 風華大街(歐) S7AEWR = 樂高蝙蝠俠2 DC超級英雄(美) S7AKWR = LEGO Batman 2: DC Super Heroes S7AKZA = Lego Superheroes 1 S7APWR = 樂高蝙蝠俠2 DC超級英雄(歐) S7BE69 = 棋盤遊戲(美) S7BP69 = 棋盤遊戲(歐) S7CJAF = 假面騎士 巔峰英雄 Fourze(日) S7DE52 = 憤怒的小鳥:星球大戰 S7DP52 = Angry Birds: Star Wars S7EP52 = Transformers: Ultimate Battle Edition S7FE5G = Zumba Kids S7FPGT = Zumba Kids: The Ultimate Zumba Dance Party S7JPKM = Let's Sing 6 - Spanish version S7KPKM = Let's Sing 2014 S7SP41 = The Smurfs Party Pack S80U3Q = 自制 唱吧 下載版(歐) SA3E5G = 鼠來寶 3(美) SA3P5G = Alvin and the Chipmunks: Chipwrecked SA5E78 = 你比小學五年級聰明嗎?開學(美) SA6EG9 = Ben 10 銀河賽車(美) SA6PAF = Ben 10 銀河賽車(美) SA7ESZ = 橡皮糖熊的魔法勳章(美) SA8P52 = The Amazing Spider-Man SA9D7K = Bibi und Tina Das grosse Reiterfest SAAJA4 = Winning Eleven PLAY MAKER 2013 SABENR = 外星怪獸保齡球聯賽[MP](美) SABPJG = 外星怪物保齡球聯賽[MP](歐) SACPVS = ACB Total 2010/2011 SACSVS = ACB Total 2010/2011 SADE70 = 後院運動 沙地強打者(美) SAFUHS = 澳大利亞澳式足球聯盟(英) SAGE41 = 驚險大挑戰(美) SAHE69 = Hasbro: Family Game Night Fun Pack SAJE52 = 坎貝拉生存大冒險 卡特邁的陰影(美) SAJP52 = 坎貝拉生存大冒險 卡特邁的陰影(歐) SAKENS = 櫻花大戰5 再見吾愛(美) SAKPNS = 櫻花大戰5 再見吾愛(歐) SALE4Q = 愛麗絲夢遊仙境(美) SALP4Q = 愛麗絲夢遊仙境(歐) SAME01 = New Super Mario Bros. Wii 11 American Revolution SANE01 = New Super Mario Bros. Wii Five Spica Edition SANEFS = 巴斯專業店 狩獵 獎杯賽(美) SANT3Q = 自制 唱吧 下載版(歐) SAOE78 = Monster High: Ghoul Spirit SAOP78 = 怪物美少女 屍鬼精靈(歐) SAQE5G = Harley Pasternak's Hollywood Workout SARE4Z = 阿拉丁魔毯競速[平衡板](美) SARP01 = New Super Mario Bros. Wii 4 Arcadia Another Ride SARPNK = 阿拉丁魔毯競速[平衡板](歐) SASEWW = Atrévete a Soñar SATE6K = 查克E奶酪的超級收藏(美) SAUJ8P = 魔法氣泡!! 20周年紀念版(日) SAVE5G = 鼠來寶明星俱樂部(美) SAVX5G = 鼠來寶明星俱樂部(歐) SAWE52 = 憤怒的小鳥 三部曲(美) SAWP52 = 憤怒的小鳥 三部曲(歐) SAXPFH = Max & the Magic Marker SAYE20 = 新兵訓練營學院(美) SAYP41 = 新兵訓練營學院(歐) SAZE52 = 蜘蛛人 驚奇再起(美) SAZP52 = 蜘蛛人 驚奇再起(歐) SB2ES5 = 我寶寶的第一步(美) SB2PNP = 我的寶貝2[WiFi](歐) SB3E08 = 戰國 BASARA 3(美) SB3J08 = 戰國 BASARA 3(日) SB3P08 = 戰國 BASARA 3(歐) SB4C01 = Super Mario Galaxy 2 (Custom) SB4E01 = 超級瑪利歐銀河2(美) SB4E02 = Neo Mario Galaxy SB4E03 = Super Mario Galaxy: Plumber's Way SB4E04 = Super Mario Sunshine Galaxy SB4E05 = Season Cycle Galaxy SB4E25 = Super Mario Galaxy 2.5 SB4J01 = 超級瑪利歐銀河2(日) SB4J02 = Neo Mario Galaxy SB4J05 = Season Cycle Galaxy SB4K01 = 超級瑪利歐銀河2(韓) SB4P01 = 超級瑪利歐銀河2(美) SB4P02 = Neo Mario Galaxy SB4P05 = Season Cycle Galaxy SB4W01 = 超級瑪利歐銀河2 繁體中文版 SB5E54 = NBA 2K11(美) SB5P54 = NBA 2K11(歐) SB6E52 = 爆丸 核心守護者(美) SB6P52 = 爆丸 核心守護者(歐) SB7IVU = Planet Basket 2009/2010 SB8EQH = 漢堡博特(美) SB9E78 = 芭比娃娃 照顧小狗(美) SB9P78 = 芭比娃娃 照顧小狗(歐) SBAJGD = 勇者鬥惡龍 怪獸戰鬥之路 勝利(日) SBBE18 = 戰鬥陀螺 爆神須佐之男來襲(美) SBBJ18 = 戰鬥陀螺 對決大賽(日) SBBP18 = 戰鬥陀螺 爆神須佐之男來襲(歐) SBCJ2N = 比利的訓練營Wii 享受減肥(日) SBDE08 = 惡靈古堡 黑暗面編年史[WiFi](美) SBDJ08 = 惡靈古堡 暗黑編年史(日) SBDK08 = 惡靈古堡 黑暗面編年史[WiFi](韓) SBDP08 = 惡靈古堡 黑暗面編年史[WiFi](歐) SBEPSV = 百慕大三角 拯救珊瑚礁(歐) SBFE70 = 后院橄欖球10(美) SBHEFP = 雷明頓美洲獵鳥記(美) SBHPNK = 雷明頓美洲獵鳥記(美) SBIEVZ = 勤勞理發師(美) SBIPVZ = 勤勞理發師(歐) SBJEG9 = BEN 10 外星神力 終極異型(美) SBJPAF = BEN 10 外星神力 終極異型(歐) SBKEPZ = 布朗斯維克 宇宙領域保齡球[MP](美) SBLE5G = 一個男孩和他的軟泥(美) SBLP5G = 一個男孩和他的軟泥(歐) SBNEG9 = BEN 10 外星神力 魔賈斯的反擊(美) SBNPG9 = BEN 10 外星神力 魔賈斯的反擊(歐) SBOD3Q = 自制 唱吧 下載版(歐) SBQE4Z = 雄鹿獵人(美) SBREJJ = 一起跳芭蕾舞(美) SBRPKM = 一起跳芭蕾舞(歐) SBSE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh SBSEFP = 雷明頓狩獵北美超級大滿貫(美) SBSURN = 雷明頓狩獵北美超級大滿貫(歐) SBVE78 = 海綿寶寶 碰碰船競賽(美) SBVG3Q = 自制 唱吧 下載版(歐) SBVP78 = 海綿寶寶 碰碰船競賽(歐) SBVS78 = 海綿寶寶 碰碰船競賽(歐) SBWC11 = New Super Mario Bros. 3: The Wrath of Shadow Bowser SBWE5G = 妙廚老媽 育兒媽媽(美) SBWJRA = 妙廚老媽 育兒媽媽(日) SBWPGT = 妙廚老媽 育兒媽媽(歐) SBXEWR = 億萬未婚夫(美) SBYE41 = 起舞百老匯(美) SBYP41 = 百老匯舞蹈(美) SBZESZ = 百慕大三角 拯救珊瑚礁(美) SC2E8P = 暗渠2[MP][WiFi](美) SC2P8P = 暗渠2[MP][WiFi](歐) SC4E64 = 樂高星際大戰3 複製人戰爭(美) SC4P64 = 樂高星際大戰3 複製人戰爭(歐) SC5PGN = 挑戰自我 填字遊戲(歐) SC6PGN = 自我挑戰 大腦智力題2(歐) SC7D52 = 決勝時刻 黑色行動(歐) SC7E52 = 決勝時刻 黑色行動(美) SC7F52 = 決勝時刻 黑色行動(歐) SC7I52 = 決勝時刻 黑色行動(義) SC7P52 = 決勝時刻 黑色行動(歐) SC7S52 = 決勝時刻 黑色行動(歐) SC8E01 = Wii遙控器Plus 動感歡樂組合[MP](美) SC8J01 = Wii遙控器Plus 動感歡樂組合[MP](日) SC8K01 = Wii Play: Motion SC8P01 = Wii遙控器Plus 動感歡樂組合[MP](歐) SC9P52 = 坎貝拉獵人2010(美) SCAE18 = 鬼來電 黑暗來信(美) SCAJ18 = 鬼來電 黑暗來信(日) SCAP18 = 鬼來電 黑暗來信(歐) SCBPNK = 自行車運動(歐) SCDE52 = 坎貝拉危險狩獵 2011(歐) SCDP52 = 坎貝拉危險狩獵 2011(歐) SCEE6K = 查克E奶酪派對遊戲(美) SCFPNK = 魔怪狂歡節(歐) SCGE20 = 加爾文塔克的鄉村狂歡 農場動物賽車錦標賽(美) SCGPXT = Calvin Tucker's: Farm Animals Racing Tournament SCHEQH = 加拿大狩獵(美) SCIE41 = CSI 犯罪現場 致命殺機(美) SCIP41 = CSI 犯罪現場 致命殺機(歐) SCJE4Q = 樂高神鬼奇航(美) SCJP4Q = 樂高神鬼奇航(歐) SCKE6K = 查克E奶酪運動遊戲(美) SCMJAF = 假面騎士 巔峰英雄歐茲(日) SCNEA4 = 暮光之城(美) SCNPA4 = 暮光之城(歐) SCPE70 = 蜈蚣大侵襲(美) SCQDRV = Schlag den Raab - Das 2. Spiel SCREJH = 小雞大暴亂(美) SCRPJH = 小雞大暴亂(歐) SCSE52 = 巡洋艦度假遊戲[MP](美) SCSPGR = 遊輪度假(歐) SCTE01 = The Curse of Black Toad SCTPNK = 小魔怪驚喜(歐) SCUPFR = 瘋狂小雞嘉年華派對(歐) SCWE41 = 金牌的體操舞蹈鍛煉(美) SCWP41 = 我的健身房教練 舞蹈鍛鍊(歐) SCXESZ = 雪佛蘭Camaro 野外駕駛(美) SCXPNJ = 雪佛蘭Camaro 野外駕駛(美) SCYE4Q = 汽車總動員2(美) SCYP4Q = 汽車總動員2(歐) SCYX4Q = 汽車總動員2(歐) SCYY4Q = 汽車總動員2(歐) SCYZ4Q = 汽車總動員2(歐) SCZEMH = 瘋狂機器(美) SCZPFR = 瘋狂機器(歐) SD2E41 = 舞力全開2(美) SD2J01 = 舞力全開 Wii (日) SD2K41 = Just Dance 2 SD2P41 = 舞力全開2(歐) SD2Y41 = 舞力全開2 百思買版(美) SD3DSV = 健康教練 每天感覺好極了(歐) SD5PTV = 小學學習檢測 德語(歐) SD6PTV = 小學學習檢測 英語1-4年級(歐) SD7PTV = 小學學習檢測 數學(歐) SD8DSV = Mein neues Leben Abenteuer auf Tropicana SD9JAF = SD鋼彈 膠囊大戰(日) SDAE01 = 史酷比!冒險的兄弟(美) SDAE5G = 女孩們的勇敢遊戲(美) SDBE78 = 顏料寶貝2(美) SDBP78 = 顏料寶貝2(歐) SDDPML = 終極的兩性大戰(歐) SDEE5G = 舞感(美) SDFE4Q = 迪斯尼想唱就唱 家庭版(美) SDFP4Q = 迪斯尼想唱就唱 家庭版(歐) SDGE4Q = 迪斯尼全明星派對(美) SDGP4Q = 迪斯尼全明星派對(歐) SDHER3 = Super Smash Bros. Brawl Dark Hole/D.A.R.S. SDIE4Q = 迪士尼想唱就唱 派對(美) SDIP4Q = 迪士尼想唱就唱 派對(歐) SDJJAF = SD鋼彈G世代:新世界(日) SDLE78 = 杜德大冒險(美) SDLP78 = 杜德大冒險(歐) SDMEG9 = 神偷奶爸(美) SDMPAF = 神偷奶爸(歐) SDNE41 = 舞力全開(美) SDNP41 = 舞力全開(歐) SDOPLR = 神秘博士 重返地球(歐) SDPE54 = 愛探險的朵拉 生日大冒險(美) SDPP54 = 愛探險的朵拉 生日大冒險(歐) SDQJGD = Dragon Quest X Inishie no Ryu no Denshou Online SDREYG = 最強賽車大獎賽 改裝車賽(美) SDRP3Q = 自制 唱吧 下載版(歐) SDRPNG = 改裝車賽(歐) SDSPNG = We Dance(歐) SDTH3Q = 自制 唱吧 下載版(歐) SDTPGN = PDC世界飛鏢錦標賽(歐) SDUE41 = 藍色小精靈 舞蹈派對(美) SDUP41 = 藍色小精靈(歐) SDUPO1 = 新超級瑪利歐兄弟Wii DU版(歐) SDVE41 = 極道車魂 舊金山(美) SDVP41 = 極道車魂 舊金山(歐) SDWE18 = 黑影之塔(美) SDWJ18 = 黑影之塔(日) SDWP18 = 黑影之塔(歐) SDXE4Q = 迪士尼世界(美) SDXP4Q = 迪士尼世界(歐) SDYEA4 = 熱舞革命[跳舞墊][平衡板](美) SDYPA4 = 熱舞革命 最夯的派對 4[跳舞墊][平衡板](歐) SDZE41 = 舞力全開 兒童版(美) SDZP41 = 舞蹈少年(歐) SE2E69 = EA SPORTS 活力健身房 2.0(美) SE2P69 = EA SPORTS 活力健身房 2.0(歐) SE3E41 = 舞力全開 2015 SE3P41 = Just Dance 2015 SEAE69 = EA運動活力 6星期練出好身材[平衡板](美) SEAJ13 = EA運動活力 6星期練出好身材[平衡板](日) SEAP69 = EA運動活力 6星期練出好身材[平衡板](歐) SECE69 = 小小設計師(美) SECP69 = 小小設計師(歐) SEGA = Genplus GX SEGE6U = 瑜伽[平衡板](美) SEGP6V = 瑜伽[平衡板](歐) SEKJ99 = 活祭之夜(日) SELE69 = FIFA足球11[WiFi](美) SELP69 = FIFA足球11[WiFi](歐) SELX69 = FIFA足球11(歐) SEME4Q = 傳奇米老鼠(美) SEMJ01 = 傳奇米老鼠(日) SEMP4Q = 傳奇米老鼠(歐) SEMX4Q = 傳奇米老鼠(X) SEMY4Q = 傳奇米老鼠(歐) SEMZ4Q = 傳奇米老鼠(歐) SENPZX = Enclave: Shadows of Twilight SEOP01 = New Super Mario Bros. Wii 8 Omega SEOP4Q = 自制 唱吧 下載版(歐) SEPE41 = 黑眼豆豆巨星體驗 特別版(美) SEPP41 = 黑眼豆豆大體驗(歐) SEPX41 = The Black Eyed Peas Experience D1 Edition SEPZ41 = 黑眼豆豆巨星體驗 特別版(美) SERE4Q = 傳奇米奇 2 二人之力(美) SERF4Q = 傳奇米奇 2 二人之力(歐) SERK4Q = Disney Epic Mickey 2: The Power of Two SERP4Q = 傳奇米奇 2 二人之力(歐) SERV4Q = 傳奇米奇 2 二人之力(歐) SESEWR = Sesame Street: Ready, Set, Grover! SESPWR = Sesame Street: Ready, Set, Grover! SESUWR = Sesame Street: Ready, Set, Grover! SEZJHF = 閃電十一人 王牌前鋒 2012終極版(日) SF2P64 = 星際大戰 原力解放2(歐) SF4E20 = 橫衝直撞(美) SF4PXT = Flatout SF5E41 = 塑身教練俱樂部(美) SF5J41 = 健身工坊(日) SF5P41 = 我的健身教練俱樂部(歐) SF7E41 = 家庭智力搶答2012版(美) SF8E01 = 大金剛再起(美) SF8J01 = 大金剛再起(日) SF8P01 = 大金剛再起(歐) SFAE41 = 家庭對抗 智力問答(美) SFAJGD = 鋼之煉金術師 黃昏少女(日) SFBE70 = 後院運動 菜鳥向前衝(美) SFDE01 = New Super Mario Bros. Wii 9 Virtue: This Fall Darkness SFDEAF = 家庭訓練機 夢幻主題樂園(美) SFDJAF = 家庭訓練機 夢幻主題樂園(日) SFDPAF = Family Trainer: Magical Carnival SFGE69 = 孩之寶家庭遊戲之夜4 遊戲節目(美) SFGP69 = Hasbro: Family Game Night 4 - The Game Show SFHEFP = 戶外活動合集(美) SFIE01 = 神秘案件檔案 百靈泉(美) SFIP01 = 神秘案件檔案(歐) SFKEG9 = 家庭聚會 歡樂瘦身(美) SFKPAF = 家庭派對 歡樂瘦身(歐) SFLDSV = 詛咒的復活節島(歐) SFOEAF = 網絡食譜 烹飪對戰(美) SFPPFR = 夢幻足球派對(歐) SFQE8P = 美國隊長 超級士兵(美) SFQP8P = 美國隊長 超級士兵(歐) SFRDRV = 健身適合樂趣(歐) SFRPXT = 健身娛樂[平衡板](歐) SFSPGT = 全方位獵手(歐) SFTE78 = 財富之輪(美) SFTP78 = 財富之輪(歐) SFUE64 = 星際大戰 原力解放2(美) SFVEXJ = 釣魚度假村(美) SFWE69 = 2010南非世界盃足球賽(美) SFWJ13 = FIFA 世界盃足球賽 2010(日) SFWK13 = 2010 FIFA World Cup: South Africa SFWK69 = 2010南非世界盃足球賽(韓) SFWP69 = 2010南非世界盃足球賽(歐) SFWX69 = 2010南非世界盃足球賽(歐) SFWY69 = 2010南非世界盃足球賽(歐) SFWZ69 = 2010南非世界盃足球賽(美) SFXPKM = 英國偶像(歐) SFXXKM = 英國偶像(歐) SFYEG9 = 家庭聚會 90 個豐富好遊戲(美) SFYPAF = 家庭聚會 90 個豐富好遊戲(歐) SFZEPZ = 雉雞永存(美) SFZPXT = 雉雞永存(歐) SG2EFS = 瘋狂迷你高爾夫2(美) SG2XUG = 瘋狂迷你高爾夫2[MP](美) SG2YFS = 瘋狂迷你高爾夫2(美) SG3DSV = 德國頂級模特兒(歐) SG5PSV = 家庭測驗(歐) SG6DSV = 伽利略家庭測驗(歐) SG7E20 = 加菲貓 拉薩尼亞危機(美) SG7PVL = 加菲貓 拉薩尼亞危機(歐) SG8EG9 = 瑜珈熊(美) SG8PAF = 瑜珈熊(歐) SG9EYC = 搗蛋鬼 小精靈(美) SGAE8P = 劍鬥士傳奇(美) SGAP8P = 劍鬪士傳奇(歐) SGBE5G = 極限漆彈大賽2(美) SGCE20 = 極地越野賽2(美) SGDEJJ = 花園一起玩(美) SGDPKM = 花園一起玩(歐) SGEEG9 = 國家地理雜誌挑戰野生動物(美) SGEPLG = 國家地理雜誌問答遊戲野生動物(歐) SGHE41 = 湯姆克蘭西 幽靈行動(美) SGHP41 = 湯姆克蘭西 幽靈行動(歐) SGI1CL = 自制 唱吧 下載版(歐) SGI1DB = 自制 唱吧 下載版(歐) SGI1MC = 自制 唱吧 下載版(歐) SGI1ML = 自制 唱吧 下載版(自) SGI1PT = 自制 唱吧 下載版(自) SGI1RC = 自制 唱吧 下載版(自) SGIEA4 = GTI汽車俱樂部 世界城市競速(美) SGIJA4 = GTI汽車俱樂部 世界城市競速(日) SGIPA4 = GTI汽車俱樂部 世界城市競速(歐) SGJDSV = 神秘伽利略米達斯王冠(德) SGJPSV = The Crown of Midas SGKEC8 = 冠軍騎師 騎師之道&風速神駒(美) SGKJC8 = 冠軍騎師:風速神駒&騎師之道(日) SGKPC8 = 冠軍騎師 騎師之道&風速神駒(歐) SGLEA4 = 高米迪戰士 自然之王(歐) SGLPA4 = 高米迪戰士 自然之王(歐) SGNE69 = Hasbro: Family Game Night Value Pack SGODKP = 迷你高爾夫度假勝地(歐) SGOETV = 迷你高爾夫度假勝地(美) SGPEYG = 最強賽車大獎賽 GP經典(美) SGPPNG = 經典賽車大獎賽(歐) SGPTI1 = Sing It Party SGQDSV = 德國超級名模生死鬥 2011(德) SGREGT = 油脂勁歌熱舞(美) SGRPGT = 油脂勁歌熱舞(美) SGSESZ = 家庭遊戲秀(美) SGSP7J = 家庭遊戲秀(歐) SGTEFS = 我的私人教練與 IMG和大衛利百特高爾夫學院(美) SGTPUG = 我的私人高爾夫教練 IMG大衛利佰特高爾夫學院[MP][平衡板](歐) SGUE4Q = 偵探家族(美) SGVEAF = 歡樂假期(美) SGVJAF = 歡樂假期(日) SGVPAF = 歡樂假期(歐) SGWD7K = 比比小魔女(歐) SGXE41 = 恐龍之戰(美) SGXP41 = 恐龍之戰(歐) SGYESZ = 橡膠熊迷你高爾夫(美) SGYPNJ = 橡膠熊迷你高爾夫(歐) SH2JMS = 輕鬆學跳草裙舞(日) SH3E54 = 勁爆冰上曲棍球2011[MP](美) SH3P54 = 勁爆冰上曲棍球2011[MP](歐) SH4EFP = 戰火紛飛 阿富汗(美) SH4PNK = Heavy Fire: Afghanistan SH5E69 = 哈利波特 死神的聖物 下集(美) SH5P69 = 哈利波特 死神的聖物 下集(美) SH6E52 = 坎貝拉狩獵2012(美) SH6P52 = Cabela's Big Game Hunter 2012 SH7ESZ = 狂熱本田沙灘車(美) SH7PNJ = 狂熱本田沙灘車(歐) SH8E52 = 坎貝拉冒險夏令營(美) SH8P52 = 坎貝拉冒險夏令營(美) SH9ESZ = 希斯與利夫 火速狂飆(美) SHBE69 = 孩之寶家庭遊戲之夜3(美) SHBP69 = 孩之寶家庭遊戲之夜3(歐) SHDE52 = 馴龍高手(美) SHDP52 = 馴龍高手(美) SHEDRM = 農場(歐) SHFE20 = 籃球名人堂 極限挑戰(美) SHGDRM = 假日遊戲(歐) SHHE69 = 哈利波特 死神的聖物 上集(美) SHHP69 = 哈利波特 死神的聖物 上集(歐) SHIJ2N = 節奏拳擊2 用Wii享瘦(日) SHKE20 = 凱蒂貓 四季(美) SHKPNQ = 凱蒂貓 四季(歐) SHLPA4 = 寂靜嶺 破碎的記憶(歐) SHMPLR = 調皮的亨利(歐) SHNE41 = 夏恩懷特滑板(美) SHNP41 = 夏恩懷特滑板(歐) SHOXKR = 雨果 巨魔樹林里的魔法(X) SHOYKR = 雨果 巨魔樹林里的魔法(歐) SHPE5G = 我們的家 聚會[WiFi](美) SHSE20 = 超級戰鬥機(美) SHSPXT = Hyper Fighters SHTE20 = 馬修斯狩獵弓[MP](美) SHUE52 = 坎貝拉危險狩獵 2011 特別版(美) SHVE78 = 風火輪賽車 賽道攻擊(美) SHVP78 = 風火輪賽車 賽道攻擊(歐) SHWE41 = 好萊塢廣場(美) SHXEWR = 快樂腳2(美) SHXPWR = 快樂腳2(歐) SHYE69 = NHL冰上曲棍球 强打(美) SHYP69 = NHL冰上曲棍球 强打(歐) SHZENR = 哈雷摩托公路狂飆(美) SI3E69 = FIFA足球12(美) SI3P69 = FIFA足球12(歐) SI3X69 = FIFA足球12[WiFi](歐) SIABOH = SingItStar Placebo SIAE52 = 冰原歷險記4 板塊漂移(美) SIAP52 = 冰原歷險記4 板塊漂移(歐) SIBBHJ = 自制 唱吧 下載版(自) SIDE54 = 席德梅爾的海盜(美) SIDP54 = 席德梅爾的海盜(歐) SIESP1 = Sing It: Canciones en Español SIFESZ = 弗蘭克斯坦博士島(美) SIFPNJ = 弗蘭克斯坦博士島(歐) SIFPOH = SingItStar Fussballhits SIHE4Z = Sing 4: The Hits Edition SIIE8P = 瑪利歐與音速小子在倫敦奧運[WiFi](美) SIIJ01 = 瑪利歐與音速小子在倫敦奧運[WiFi](日) SIIP8P = 瑪利歐與音速小子在倫敦奧運[WiFi](歐) SIJE52 = 我是凱利2 加入我們(歐) SIJP52 = 我是凱利2 加入我們(歐) SILE78 = 百戰天蟲 戰鬥島(美) SILP4Q = 自制 唱吧 下載版(歐) SILP78 = 百戰天蟲 戰鬥島(歐) SIME69 = 我的模擬人生合集(美) SINPNG = 大家唱 羅比威廉姆斯(歐) SIPE7T = I SPY Game Pack SIS1OH = 自制 唱吧 下載版(歐) SIS2OH = 自制 唱吧 下載版(PAL) SIS3OH = 自制 唱吧 下載版(歐) SIS4OH = 自制 唱吧 下載版(PAL) SIS5OH = 自制 唱吧 下載版(歐) SIS7OH = 自制 唱吧 下載版(歐) SIS80Q = 自制 唱吧 下載版(歐) SIS80S = StarSing : '80s Volume 1 v1.2 SIS90H = 自制 唱吧 下載版(歐) SIS9OH = 自制 唱吧 下載版(歐) SISACD = StarSing AC/DC SISAOH = 自制 唱吧 下載版(PAL) SISBOH = 自制 唱吧 下載版(歐) SISCOH = 自制 唱吧 下載版(歐) SISCS1 = SingItStar Chartsurfer Vol. 1 SISDAE = SingItStar Die Ärzte SISDEM = SingItStar Depeche Mode SISDOH = 自制 唱吧 下載版(歐) SISENR = 公主伊莎貝拉之巫師詛咒(美) SISHOH = 自制 唱吧 下載版(歐) SISJ0Q = 骨盆瘦身[平衡板](日) SISLIP = StarSing : Linkin Park v1.2 SISLOH = 自制 唱吧 下載版(歐) SISMEL = StarSing : Happy Birthday Mélanie v1.1 SISMJ1 = 自制 唱吧 下載版(自) SISMOH = 自制 唱吧 下載版(歐) SISP10 = 自制 唱吧 下載版(歐) SISP12 = 自制 唱吧 下載版(歐) SISP34 = 自制 唱吧 下載版(歐) SISPBC = SingItStar Britney vs Christina SISPOH = 自制 唱吧 下載版(歐) SISPOP = 自制 唱吧 下載版(歐) SISPUH = 伊莎貝拉公主 女巫的詛咒(歐) SISQ3Q = 自制 唱吧 下載版(歐) SISR3Q = 自制 唱吧 下載版(歐) SISREU = StarSing : Rocks! v1.1 SISRP4 = 自制 唱吧 下載版(歐) SISSOH = 自制 唱吧 下載版(歐) SISTDK = 迪斯尼 想唱就唱 土耳其聚會(歐) SITPNG = We Sing: Deutsche Hits SIUUNG = 我們歌唱 南澳洲(歐) SIXE01 = New Super Mario Bros Wii 16 Revelations SIXE41 = Drawsome! Tablet SJ2EWR = 史酷比 幽靈沼澤(美) SJ2PWR = 史酷比 幽靈沼澤(歐) SJ3JDA = 人生遊戲 歡樂家庭(日) SJ3PNL = Jakers! Kart Racing SJ5JDA = 人生遊戲 快樂家庭 當地題材增量版(日) SJ6E41 = 舞力全开:迪士尼派对 SJ6P41 = Just Dance Disney Party SJ7E41 = Just Dance Kids 2014 SJ7P41 = Just Dance Kids 2014 SJ9E41 = Just Dance Summer Party SJ9P41 = Just Dance 2: Extra Songs SJAE5G = JAWS: Ultimate Predator SJBE52 = 詹姆士龐德007 黃金眼(美) SJBJ01 = 007 黃金眼(日) SJBP52 = 詹姆士龐德007 黃金眼(歐) SJCEZW = Jerry Rice & Nitus' Dog Football SJDE41 = 舞力全開 3(美) SJDJ01 = 舞力全开Wii 2 SJDK41 = Just Dance 3 SJDP41 = 舞力全開 3(美) SJDX41 = Just Dance 3 Special Edition SJDY41 = Just Dance 3: Best Buy Exclusive Edition SJDZ41 = Just Dance 3: Target Exclusive Edition SJEEPK = JumpStart 逃離冒險島(美) SJFE4Z = 兒童健身島度假村(美) SJFPGR = 幼兒健身教練(歐) SJFXGR = 幼兒健身教練(歐) SJGEPK = 開始行動 家庭健身[平衡板](美) SJHE41 = 舞力全開 精選集(美) SJIEG9 = 吉利安 麥可斯健身最後通牒2011[MP][平衡板](美) SJJEA4 = 吉米約翰的超級引擎(美) SJKEPK = 瘋狂卡丁車(美) SJLEFS = 少年體育聯賽(美) SJLPXT = 少年體育聯賽(美) SJME5G = 吉利安 麥可斯健身最後通牒2010[平衡板](美) SJMPGT = 吉利安 麥可斯健身最後通牒2010[平衡板](美) SJOE41 = Just Dance 2014 SJOP41 = 舞力全開 2014 SJPE78 = 智力競答(美) SJQEPZ = 寶石方塊三部曲(美) SJQPGR = 寶石方塊三部曲(美) SJREA4 = 說唱巨星(美) SJRXA4 = 說唱巨星(歐) SJSEPK = 寵物營救(美) SJTP41 = Just Dance: Best Of SJUE20 = 恐龍快打(美) SJUPXT = 恐龍快打(美) SJVE20 = 肖恩約翰遜體操[平衡板](美) SJWJA4 = 實況足球2010 藍武士的挑戰(日) SJXD41 = 舞力全開4(歐) SJXE41 = 舞力全開4(美) SJXP41 = 舞力全開4(歐) SJZE41 = 舞力全開 兒童版2(美) SJZP41 = 舞力全開 兒童版2(歐) SK3EEB = 超執刀 外傷團隊(美) SK4E52 = 史瑞克快樂4神仙(美) SK4P52 = 史瑞克快樂4神仙(歐) SK5PY1 = Kylie Sing & Dance SK6KJD = K-POP Dance Festival SK7PVZ = Disney Violetta: Rhythm & Music SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8P52 = Skylanders: Trap Team SK8V52 = Skylanders: Trap Team SKAEA4 = 卡拉OK革命 歡樂合唱團(美) SKAPA4 = 卡拉OK革命 歡樂合唱團(歐) SKBEG9 = Kidz Bop舞蹈派對(美) SKCE20 = 大腳車 壓碎王(美) SKDJ18 = 卡拉OK JOYSOUND Wii 雙人對唱曲篇 SKEJ18 = 卡拉OK JOYSOUND Wii 演歌・歌謠曲篇 SKGEA4 = 卡拉OK革命 歡樂合唱團2(美) SKGPA4 = 卡拉OK革命 歡樂合唱團2(歐) SKHJAF = 假面骑士:超巅峰英雄 SKJE78 = 死亡醫生(美) SKKPHY = Captain Morgane and the Golden Turtle SKKXHY = Captain Morgane and the Golden Turtle SKLDSV = K11 專員行動(歐) SKMJAF = 假面騎士 巔峰英雄W(日) SKOEA4 = 卡拉OK革命歡樂合唱團3(美) SKOPA4 = 卡拉OK革命歡樂合唱團3(美) SKREG9 = 假面騎士 龍騎士(美) SKSE54 = NBA 2K13 SKSP54 = NBA 2K13 SKTE78 = 全明星空手道(美) SKTP78 = 全明星空手道(歐) SKUE78 = 功夫熊貓2(美) SKUP78 = 功夫熊貓2(歐) SKVE20 = 凱文凡達姆的大巴斯挑戰(歐) SKWPNK = Cocoto Kart Racer 2 SKXE20 = 海盜襲擊(美) SKXPFH = Pirate Blast SKYE52 = 小龍斯派羅:巨人(美) SKYP52 = 小龍斯派羅:巨人(歐) SKYX52 = 小龍斯派羅:巨人(歐) SKYZ52 = 小龍斯派羅:巨人(歐) SKZE52 = 夢工廠超級明星賽(美) SKZP52 = 夢工廠超級明星賽(歐) SL2J01 = 零 ~ 真紅之蝶(日) SL2P01 = 零 ~ 真紅之蝶(歐) SL3ENR = 龍穴歷險三部曲(美) SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = 最後的氣宗(美) SLAP78 = 最後的氣宗(歐) SLAZ78 = 最後的氣宗 玩具反斗城版(美) SLCEGN = Get Up And Dance SLCPGN = Get Up And Dance SLDEYG = Let's Dance SLDPLG = Let's Dance with Mel B SLEE78 = 喬布拉 促進大腦發展的冥想遊戲(美) SLEP78 = 喬布拉 促進大腦發展的冥想遊戲(歐) SLFE01 = New Super Mario Bros. 3 The Final Levels SLFP01 = New Super Mario Bros. 3: The Final Levels SLFPKM = Let's Sing SLFXKM = Let's Sing 5 - Spanish version SLHEWR = 樂高哈利波特 5-7年(美) SLHPWR = 樂高哈利波特 5-7年(歐) SLIE52 = 世界職業棒球聯盟 二合一(美) SLLEWW = Lucha Libre AAA: Héroes del Ring SLPP5D = 狼的精神(歐) SLREWR = 樂高魔戒(美) SLRPWR = 樂高魔戒(歐) SLSEXJ = 最后的故事 SLSJ01 = 夢幻終章(日) SLSP01 = 夢幻終章(日) SLTEJJ = 新U健身 瑜珈和普拉提[MP][平衡板](美) SLTPLG = 新U健身 瑜珈和普拉提[MP][平衡板](歐) SLVP41 = 我們的性感轟趴派對(歐) SLWE41 = 瓦爾多在哪里?奇幻旅程(美) SLYESZ = 野獸情人(美) SLYPNJ = 野獸情人(美) SM2E52 = 十分鐘快速健身(美) SM2P52 = 十分鐘快速健身(歐) SM3E01 = Super Mario Bros. 3+ SM4E20 = 大腳怪物卡車大破壞(美) SM4PXT = Monster Trucks: Ultra Mega Xtreme!!! SM5EAF = 侍戰隊真劍者(美) SM5PAF = 侍戰隊真劍者(歐) SM6PNK = 我的形體教練 2 健身與舞蹈(歐) SM7E69 = Madden NFL 12 SM8D52 = 決勝時刻 現代戰爭3(歐) SM8E52 = 決勝時刻 現代戰爭3(美) SM8F52 = 決勝時刻 現代戰爭3(歐) SM8I52 = 決勝時刻 現代戰爭 3(歐) SM8P52 = 決勝時刻 現代戰爭3(歐) SM8S52 = 決勝時刻 現代戰爭 3(歐) SM8X52 = 決勝時刻 現代戰爭3(歐) SM9E54 = 職業棒球大聯盟2K12(美) SMAENR = 海軍陸戰隊 現代城市戰(美) SMAPGN = 海軍陸戰隊 現代城市戰(歐) SMBE8P = 超級猴子球 體感滾動[平衡板](美) SMBJ8P = 超級猴子球 體感滾動[平衡板](日) SMBP8P = 超級猴子球 體感滾動[平衡板](歐) SMCENR = 我們祝你聖誕快樂(美) SMCPXT = We Wish You A Merry Christmas SMD3OH = SingItStar e La Magia Disney SMEE69 = 勁爆美式橄欖球11(美) SMFE4Q = 飛哥與小佛 超時空之謎(美) SMFP4Q = 飛哥與小佛 超時空之謎(歐) SMGE78 = 麥克邁 超能壞蛋(美) SMGP78 = 麥克邁 超能壞蛋(歐) SMGX = SaveGame Manager GX SMHPNK = 超級英雄 3D 大師的挑戰(歐) SMIE41 = 誰想成為百萬富翁3(美) SMIG3Q = 自制 唱吧 下載版(歐) SMJE52 = 怪物卡車 毀滅之路(美) SMJP52 = 怪物卡車 毀滅之路(歐) SMKE4Z = 寶石方塊也瘋狂(美) SMLE54 = 職業棒球大聯盟2K10(美) SMME02 = Super Mario: Mushroom Adventure PLUS - Winter Moon SMMJ0Q = 美體瘦身Wii 鄭多燕的塑型有氧(日) SMMP01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 4. SMMP02 = Super Mario: Mushroom Adventure PLUS: Winter Moon SMNC01 = 新超級瑪利歐兄弟Wii(中) SMNE01 = 新超級瑪利歐兄弟Wii(美) SMNE02 = New Super Mario Remake SMNE03 = Newer Super Mario Bros. Wii SMNE04 = Cannon Super Mario Bros. Wii SMNE05 = Another Super Mario Bros. Wii SMNE06 = Newer Summer Sun SMNE07 = Newer Holiday Special SMNE08 = Epic Super Bowser World SMNE09 = Old Super Mario Bros. Wii SMNE10 = Koopa Country SMNE11 = New Super Mario Bros. Wii 4 SMNE12 = Awesomer Super Luigi Mini SMNE13 = New Super Mario Bros. Wii 9 Summer Special SMNE14 = Super Mario World Wii SMNE15 = Newer Super Mario Bros. 7 SMNE16 = Newer Super Mario Sunshine SMNE17 = Flowery Super Mario Land Wii SMNE18 = Super Switchy Mario World Wii SMNE19 = New Super Mr. M Bros. Wii SMNE20 = New Super Mario Bros. H SMNE21 = Newer Super Mario Land Wii SMNE22 = Neo Mario Brothers Wii SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE24 = Super Mario Ghost Special SMNE25 = Happy Super Marionose Wii SMNE26 = New Super Mario Bros. DS Wii Version SMNE27 = Newer Super Mario All Star SMNE28 = New Super Mario World SMNE29 = Not So Super Toaster Bros.: The Newer Collab! SMNE2D = Super Mario 2D Land 7 SMNE30 = New Super Mario Bros. Koopa Kall SMNE31 = New Super Mario Bros. Wii - Other World SMNE32 = Super Mario Legends SMNE33 = New Super Mario Bros. Wii Rollercoaster Party SMNE34 = New Super Mario Bros. Wii: Yoshi Mode SMNE35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNE36 = New Super Mario Bros. Wii Hack Pack SMNE37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNE38 = New Super Mario Bros. Wii Underground Maze SMNE39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNE40 = Newer Super Mario Bros. Wii U SMNE41 = Devil Mario Winter Special SMNE42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNE99 = Children's Super Mario Bros. Wii SMNED2 = New Super Mario Bros. + Animal Edition SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNENW = Newer Mario Escapade SMNEPM = Super Mario: Mushroom Adventure PLUS SMNEPS = New Super Mario Bros. Plus SMNERE = Retro Mario Bros. SMNERV = RVLution Wii SMNESL = Newer Super Mario Land Wii SMNESM = New Super Ghost Mario Wii SMNESN = New Super Mario Bros. Wii H SMNESS = New Super Mario Bros. 7 SMNEXD = Deluxe Super Mario Bros. Wii SMNEXR = Super Mario Remix SMNEYE = 8Forrest's Super Mario Bros. Wii SMNEYL = Luigi's Super Yoshi Bros. SMNEYM = You Super Mario Bros. Me Summer Special SMNEYS = Yoshi Super Mario Bros. Wii SMNEYU = You Super Mario Bros. Me SMNEYW = Newer Super Mario World Yoshi Way SMNEYY = You Super Mario Bros. Me Autumn Adventure SMNEZ2 = New JeDa Mario Bros. Wii SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZG = GF Super Mario Bros. Wii SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZQ = Basic Super Mario Bros. Wii SMNEZR = Newer Super Wario World Wii SMNEZS = Another Newer Super Mario Bros. Wii SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZX = Donkey Kong Remastered SMNEZY = Super Mario Skyland SMNEZZ = New Super Mario Bros. 2 Wii Version SMNJ01 = 新超級瑪利歐兄弟Wii(日) SMNJ02 = Awesomer Super Luigi Mini SMNJ03 = Newer Super Mario Bros. Wii SMNJ04 = Cannon Super Mario Bros. Wii SMNJ06 = Newer Summer Sun SMNJ07 = Newer Holiday Special SMNJ08 = Epic Super Bowser World SMNJ10 = Koopa Country SMNJ11 = New Super Mario Bros. Wii 4 SMNJ13 = New Super Mario Bros. Wii 9 Summer Special SMNJ14 = Super Mario World Wii SMNJ15 = Newer Super Mario Bros. 7 SMNJ16 = Newer Super Mario Sunshine SMNJ17 = Flowery Super Mario Land Wii SMNJ18 = Super Switchy Mario World Wii SMNJ19 = New Super Mr. M Bros. Wii SMNJ20 = New Super Mario Bros. H SMNJ21 = Newer Super Mario Land Wii SMNJ22 = Neo Mario Brothers Wii SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ24 = Super Mario Ghost Special SMNJ25 = Happy Super Marionose Wii SMNJ26 = New Super Mario Bros. DS Wii Version SMNJ27 = Newer Super Mario All Star SMNJ28 = New Super Mario World SMNJ29 = Not So Super Toaster Bros.: The Newer Collab! SMNJ2D = Super Mario 2D Land Wii SMNJ30 = New Super Mario Bros. Koopa Kall SMNJ31 = New Super Mario Bros. Wii - Other World SMNJ32 = Super Mario Legends SMNJ33 = New Super Mario Bros. Wii Rollercoaster Party SMNJ34 = New Super Mario Bros. Wii: Yoshi Mode SMNJ35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNJ36 = New Super Mario Bros. Wii Hack Pack SMNJ37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNJ38 = New Super Mario Bros. Wii Underground Maze SMNJ39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNJ40 = Newer Super Mario Bros. Wii U SMNJ41 = Devil Mario Winter Special SMNJ42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNJ99 = Children's Super Mario Bros. Wii SMNJD2 = New Super Mario Bros. + Animal Edition SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJNW = Newer Mario Escapade SMNJPM = Super Mario: Mushroom Adventure PLUS SMNJPS = New Super Mario Bros. Plus SMNJRE = Retro Mario Bros. SMNJRV = RVLution Wii SMNJSL = Newer Super Mario Land Wii SMNJSM = New Super Ghost Mario Wii SMNJXD = Deluxe Super Mario Bros. Wii SMNJXR = Super Mario Remix SMNJYE = 8Forrest's Super Mario Bros. Wii SMNJYL = Luigi's Super Yoshi Bros. SMNJYM = You Super Mario Bros. Me Summer Special SMNJYS = Yoshi Super Mario Bros. Wii SMNJYY = You Super Mario Bros. Me Autumn Adventure SMNJZ2 = New JeDa Mario Bros. Wii SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZG = GF Super Mario Bros. Wii SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZQ = Basic Super Mario Bros. Wii SMNJZR = Newer Super Wario World Wii SMNJZS = Another Newer Super Mario Bros. Wii SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZX = Donkey Kong Remastered SMNJZY = Super Mario Skyland SMNJZZ = New Super Mario Bros. 2 Wii Version SMNK01 = 新超級瑪利歐兄弟Wii(韓) SMNP01 = 新超級瑪利歐兄弟Wii(歐) SMNP02 = Awesomer Super Luigi Mini SMNP03 = Newer Super Mario Bros. Wii SMNP04 = Cannon Super Mario Bros. Wii SMNP05 = Another Super Mario Bros. Wii SMNP06 = Newer Summer Sun SMNP07 = Newer Holiday Special SMNP08 = Epic Super Bowser World SMNP10 = Koopa Country SMNP11 = New Super Mario Bros. Wii 4 SMNP12 = Awesomer Super Luigi Mini SMNP13 = New Super Mario Bros. Wii 9 Summer Special SMNP14 = Super Mario World Wii SMNP15 = Newer Super Mario Bros. 7 SMNP16 = Newer Super Mario Sunshine SMNP17 = Flowery Super Mario Land Wii SMNP18 = Super Switchy Mario World Wii SMNP19 = New Super Mr. M Bros. Wii SMNP20 = New Super Mario Bros. H SMNP21 = Newer Super Mario Land Wii SMNP22 = Neo Mario Brothers Wii SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP24 = Super Mario Ghost Special SMNP25 = Happy Super Marionose Wii SMNP26 = New Super Mario Bros. DS Wii Version SMNP27 = Newer Super Mario All Star SMNP28 = New Super Mario World SMNP29 = Not So Super Toaster Bros.: The Newer Collab! SMNP2D = Super Mario 2D Land Wii SMNP30 = New Super Mario Bros. Koopa Kall SMNP31 = New Super Mario Bros. Wii - Other World SMNP32 = Super Mario Legends SMNP33 = New Super Mario Bros. Wii Rollercoaster Party SMNP34 = New Super Mario Bros. Wii: Yoshi Mode SMNP35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNP36 = New Super Mario Bros. Wii Hack Pack SMNP37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNP38 = New Super Mario Bros. Wii Underground Maze SMNP39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNP40 = Newer Super Mario Bros. Wii U SMNP41 = Devil Mario Winter Special SMNP42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNP77 = New Super Mario Bros. Wii Arcadia SMNP99 = Children's Super Mario Bros. Wii SMNPD2 = New Super Mario Bros. + Animal Edition SMNPDU = DU Super Mario Bros. : Anniversary Edition SMNPLL = Newer Super Luigi Wii SMNPLM = Newer Super Luigi Wii Dark Moon SMNPMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNPNW = Newer Mario Escapade SMNPO1 = 新超級瑪利歐兄弟Wii定製版(歐) SMNPPM = Super Mario: Mushroom Adventure PLUS SMNPPS = New Super Mario Bros. Plus SMNPRE = Retro Mario Bros. SMNPRV = RVLution Wii SMNPSL = Newer Super Mario Land Wii SMNPSM = New Super Ghost Mario Wii SMNPXD = Deluxe Super Mario Bros. Wii SMNPXR = Super Mario Remix SMNPYE = 8Forrest's Super Mario Bros. Wii SMNPYL = Luigi's Super Yoshi Bros. SMNPYM = You Super Mario Bros. Me Summer Special SMNPYS = Yoshi Super Mario Bros. Wii SMNPYY = You Super Mario Bros. Me Autumn Adventure SMNPZ2 = New JeDa Mario Bros. Wii SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZG = GF Super Mario Bros. Wii SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZQ = Basic Super Mario Bros. Wii SMNPZR = Newer Super Wario World Wii SMNPZS = Another Newer Super Mario Bros. Wii SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZX = Donkey Kong Remastered SMNPZY = Super Mario Skyland SMNPZZ = New Super Mario Bros. 2 Wii Version SMNW01 = 新超級瑪利歐兄弟Wii 繁體中文版(中) SMOE41 = 麥可傑克森 舞王體驗(美) SMOJ41 = 麥可傑克森 夢幻體驗(日) SMOP41 = 麥可傑克森 舞王體驗(美) SMOT3Q = 自制 唱吧 下載版(歐) SMOX41 = 麥可傑克森 舞王體驗(美) SMOY41 = 麥可傑克森 舞王體驗(美) SMPE69 = 地產大亨精選集(美) SMPP01 = New Super Mario Bros. Wii 2: The Other P SMPP69 = 地產大亨精選集(歐) SMRE01 = New Super Mario Bros. Wii: Super Mario Bros. 1 Custom SMRE78 = WWE 激爆職業摔角 2011[WiFi](美) SMRP78 = WWE 激爆職業摔角 2011[WiFi](美) SMSE01 = New Super Mario Bros Wii 12 Sunshine Paradise SMSE78 = Q版超級英雄大戰 極限挑戰(美) SMSP78 = Q版超級英雄大戰 極限挑戰(歐) SMTJ18 = 桃太郎電鐵2010 戰國・維新英雄大集合!之卷(日) SMUJAF = 大怪獸格鬪 終極競技場DX 終極戰士大集結(日) SMVE01 = Super Mario Vacation SMVE54 = 職業棒球大聯盟2K11(美) SMVJ01 = Super Mario Vacation SMVP01 = Super Mario Vacation SMWE01 = Newer Super Mario World U SMWE4Z = 荒島求生(美) SMWJ01 = Newer Super Mario World U SMWP01 = Newer Super Mario World U SMYE20 = 分秒必爭(美) SMZE78 = Q版超級英雄大戰 漫畫大戰(美) SMZP78 = Q版超級英雄大戰 漫畫大戰(美) SN2E69 = 玩具槍大戰 雙重爆破合集(美) SN3EYG = 急速賽車 拉力賽(美) SN3PNG = 急速賽車 拉力賽(歐) SN4EDA = 火影忍者疾風傳 龍刃記(美) SN4JDA = 火影忍者疾風傳 龍刃記(日) SN4XGT = 火影忍者疾風傳 龍刃記(歐) SN5EYG = 急速賽車 衝撞賽車(美) SN5PNG = 急速賽車 衝撞賽車(歐) SN6EYG = 急速賽車 超級卡丁車(美) SN6PNG = 急速賽車 超級卡丁車(歐) SN7EYG = 急速賽車 超級卡車賽(美) SN7PNG = 急速賽車 超級卡車賽(歐) SN8EYG = 急速賽車 衝刺車(美) SN8PNG = 急速賽車 衝刺車(歐) SN9E54 = 尼克羅頓健身[平衡板](美) SNAE52 = 坎貝拉獵人2011 北美歷險記(美) SNBE41 = 重返犯罪現場 NCIS(美) SNBP41 = 重返犯罪現場 NCIS(歐) SNCE8P = 音速小子 繽紛色彩(美) SNCJ8P = 音速小子:繽紛色彩(日) SNCP8P = 音速小子 繽紛色彩(歐) SNDE20 = 一擲千金特別版(美) SNEENR = 北美狩獵盛典2(美) SNEPXT = 北美狩獵盛典2(歐) SNFE69 = EA SPORTS 活力健身房 NFL訓練營(美) SNGEJJ = 和Mel B一起健身(美) SNGPLG = 跟Mel B一起减肥[MP][平衡板](歐) SNHE69 = 極速快感 超熱力追緝(美) SNHJ13 = 極速快感:超熱力追緝(日) SNHP69 = 極速快感 超熱力追緝(歐) SNIE54 = 尼克卡通MLB(美) SNJE69 = NBA JAM(美) SNJP69 = NBA JAM(歐) SNKX54 = 尼克羅頓健身[平衡板](歐) SNLE01 = New Super Mario Bros. Wii 0-2 Next Generation Levels SNLE54 = 尼克羅頓舞蹈(美) SNLP54 = 尼克羅頓舞蹈(歐) SNLX54 = 尼克羅頓舞蹈(歐) SNMEAF = 拿姆科博物館 經典合集(美) SNOPY1 = Now! That's What I Call Music: Dance & Sing SNPE52 = NASCAR The Game: Inside Line SNQE7U = 國家地理大挑戰(美) SNQPLG = 國家地理大挑戰(歐) SNRE52 = 雲斯頓賽車 快感釋放(美) SNSE52 = 雲斯頓賽車 2011(美) SNTEXN = Netflix系統安裝光碟(美) SNUPJW = 快樂神經元學院(歐) SNVE69 = 極速快感 亡命天涯(美) SNVJ13 = 極速快感 亡命天涯(日) SNVP69 = 極速快感 亡命天涯(歐) SNXJDA = 火影忍者疾風傳 激鬥忍者大戰Special(日) SNYEVZ = Monster High: 13 Wishes SNYPVZ = Monster High: 13 Wishes SNZEVZ = Barbie: Dreamhouse Party SNZPVZ = Barbie: Dreamhouse Party SO3EE9 = 符文工廠 藍海奇緣(美) SO3J99 = 符文工廠 藍海奇緣(日) SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg 2 SOCE4Z = 致命捕撈 混亂海域(美) SOIEEB = 101合1 運動聚會遊戲大合集(美) SOIPHZ = 101合1 運動聚會遊戲大合集(歐) SOJE41 = 雷射超人 起源(美) SOJP41 = 雷射超人 起源(歐) SOKEA4 = Karaoke Joysound SOKJ18 = 卡拉OK 歡樂之聲Wii DX(日) SOME01 = 全民節奏天國(美) SOMJ01 = 全民節奏天國(日) SOMK01 = Rhythm Heaven Fever SOMP01 = 全民節奏天國(歐) SONDMR = 我的第一個卡拉OK(歐) SONFMR = 我的第一個卡拉OK(歐) SONPMR = 我的第一個卡拉OK(歐) SORE4Z = The Oregon Trail SOSEG9 = 極速蝸牛 超級特技隊(美) SOSPAF = Turbo: Super Stunt Squad SOTE52 = 失敗比賽(美) SOUE01 = 薩爾達傳說 天空之劍(美) SOUJ01 = 薩爾達傳說 天空之劍(日) SOUK01 = 薩爾達傳說 天空之劍(韓) SOUP01 = 薩爾達傳說 天空之劍(歐) SP2E01 = Wii運動+Wii運動 度假勝地(歐 SP2P01 = Wii運動+Wii運動 度假勝地(歐 SP3E41 = 百萬美金金字塔(美) SP4PJW = 法式滾球(法) SP4V = Castlevania: Rondo of Blood SP5E70 = The Kore Gang: Outvasion From Inner Earth SP5PVV = 惡徒 來自地底的侵略者(歐) SP6DSV = 明星(歐) SP7EAF = 小精靈派對(美) SP7JAF = 小精靈派對(日) SP7PAF = 小精靈派對(歐) SP8E78 = 馬達加斯加的企鵝 Dr. Blowhole Returns Again!(美) SP8P78 = 馬達加斯加的企鵝 Dr. Blowhole Returns Again!(歐) SP9P4Q = 自制 唱吧 下載版(歐) SP9PJW = Pucca的競選吻(歐) SPAE5G = 海盜大冒險(美) SPBPGT = 魅力聚會(歐) SPCPZS = 優優賽車(歐) SPDE52 = 蜘蛛人 破碎次元(美) SPDP52 = 蜘蛛人 破碎次元(歐) SPEE20 = 速度(美) SPEPXT = 速度(歐) SPGPPN = 粉紅豬小妹 遊戲2(歐) SPHPJW = Spaghetti Western Shooter SPIE18 = 裝扮聚會(美) SPIJ18 = 派對遊戲100種(日) SPIP18 = 遊戲島(歐) SPKXPV = 斯普林騎馬探險(歐) SPMDRM = 麻將聚會(德) SPMPWP = Mahjong Party Pack SPOPFR = 冬季運動會2011(歐) SPPEFS = 力量拳擊(美) SPQE7T = 金牌間諜之幽靈公寓(美) SPRE01 = New Super Mario Bros. Wii 14 Project Mario SPRE41 = 正確定價 2010版(美) SPTJEB = 醫院風雲 6醫師(日) SPUE20 = 一起繪畫(美) SPVEA4 = 實況足球2011(美) SPVPA4 = 實況足球2011(歐) SPVXA4 = 實況足球2010[WiFi](X) SPVYA4 = 實況足球2010[WiFi](X) SPWHZH = 工作室100 遊樂島(歐) SPXP41 = 波斯王子 遺忘之沙(歐) SPYDSV = 企鵝派對島(歐) SPZE5G = 比薩外送員(美) SQ2EPZ = 鄉村舞蹈(美) SQ2PXT = Country Dance SQAE52 = Cabela's African Adventures SQBPXT = The Cube SQDE8P = 紐約風暴與洛杉磯機槍街機版(美) SQDP8P = 紐約風暴與洛杉磯機槍街機版(歐) SQEENG = We Sing Pop! SQEPNG = We Sing Pop! SQFE5G = 飛哥與小佛 尋找酷的東西(美) SQFPGT = Phineas and Ferb: Quest for Cool Stuff SQIE4Q = 迪士尼無限世界(美) SQIP4Q = Disney Infinity SQIY4Q = Disney Infinity SQKE5G = Cooking Mama 2-Pack SQKK01 = Cooking Mama 2 Pack SQLE4Z = 卡通頻道明星大亂鬪 XL(美) SQLPGN = 卡通频道大乱斗 SQME52 = 蜘蛛人 時間裂痕(美) SQMP52 = 蜘蛛人 時間裂痕(歐) SQPPX4 = 速度 2(歐) SQQEVZ = Disney Planes: Fire & Rescue SQQPVZ = Disney Planes: Fire & Rescue SQRPNG = We Sing Rock! SQTPML = The Ultimate Battle Of The Sexes: Quizz & Play! SQUDX3 = 測驗派對(歐) SQUFX3 = 測驗派對(歐) SQVE69 = FIFA 15 SQVP69 = FIFA 15 - Legacy Edition SQVX69 = FIFA足球 15 SR4E41 = 雷曼超人 瘋狂兔子時空旅行[MP][WiFi](美) SR4J41 = 瘋狂兔子:時光旅行[WiFi](日) SR4P41 = 雷曼超人 瘋狂兔子時空旅行(歐) SR5E41 = 雷曼超人 瘋狂兔子派對合集(美) SR5P41 = 雷曼超人 瘋狂兔子派對合集(歐) SR6EHG = 兔寶寶系列 一年級(美) SR7EHG = 兔寶寶系列 二年級(美) SR8EHG = 兔寶寶系列 幼兒園(美) SR9EHG = 兔寶寶系列 學前教育(美) SRAJMS = 電波少女諾亞Wii(日) SRBP4Q = 自制 唱吧 下載版(歐) SRBPHS = 橄欖球聯盟3(歐) SRCE69 = 搖滾樂團 鄉村音樂包2(美) SREXNL = Reader Rabbit Kindergarten SRFE52 = 黑巴斯職業釣魚大賽(美) SRFP52 = 黑巴斯職業釣魚大賽(美) SRGE69 = 飆風雷哥(歐) SRGP01 = New Super Mario Bros Wii 2 Reggie SRGP69 = 飆風雷哥(歐) SRHP01 = New Super Mario Bros. Wii 7 Retro Heaven SRIE78 = 里約大冒險(美) SRIP78 = 里約大冒險(歐) SRJJAF = 超級戰隊大戰 群雄雲集(日) SRKEFP = 雷明頓超級大滿貫狩獵 阿拉斯加(美) SRKPNK = Remington Dangerous Animals SRLXNL = Reader Rabbit Preschool SRME18 = 奇幻房間(美) SRMJ18 = 奇幻房間(日) SRNE70 = 天橋驕子(美) SRNP01 = New Super Mario Bros. Wii Revolution SRNP70 = 天橋驕子(歐) SRPE4Q = 迪士尼 魔髮奇緣(美) SRPP4Q = 迪士尼 魔髮奇緣(歐) SRQE41 = 球拍運動[MP](美) SRQP41 = 球拍運動[MP](歐) SRRENR = 消遣遊戲室[MP](美) SRRPGN = 盛大聚會遊戲(歐) SRSE20 = 超級音速賽車(美) SRSPXT = Supersonic Racer SRTXNL = Reader Rabbit 1st Grade SRUE4Z = 紅鼻子馴鹿魯道夫(美) SRVE41 = 價格是正確的(美) SRVP01 = New Super Mario Bros Revolution SRWXNL = Reader Rabbit 2nd Grade SRXE52 = 變形小雷(美) SRXP52 = 變形小雷(歐) SRYEAF = 動感塑身派對(美) SRYJAF = 動感塑身派對(日) SRYPAF = 動感塑身派對(歐) SS2PFR = Winter Sports 2012: Feel the Spirit SS3EWR = 芝麻街埃爾默動物園歷險記(美) SS3PWR = 芝麻街埃爾默動物園歷險記(歐) SS3UWR = 芝麻街埃爾默動物園歷險記(歐) SS4EWR = 芝麻街餅乾計數嘉年華(美) SS4UWR = 芝麻街餅乾計數嘉年華(美) SS5ENR = 盡顯時尚(美) SS6UHS = 實況橄欖球年度特別版(歐) SS7EFP = 雷明頓超級大滿貫狩獵 非洲(美) SS7URN = 雷明頓超級大滿貫狩獵 非洲(英) SS8E78 = 海綿寶寶 塗鴉褲子(美) SS8P78 = 海綿寶寶 塗鴉褲子(歐) SS9JMS = Milestone 射擊遊戲收藏集2(日) SSBE78 = 鞋貓劍客(美) SSBP78 = 鞋貓劍客(美) SSCDWR = 電影場景猜猜 明亮的燈光與大屏幕(德) SSCEPM = 電影場景猜猜 明亮的燈光與大屏幕(美) SSCFPM = 電影場景猜猜 明亮的燈光與大屏幕(法) SSCFWR = 電影場景猜猜 明亮的燈光與大屏幕(法) SSCIWR = 電影場景猜猜 明亮的燈光與大屏幕(意) SSCPWR = 電影場景猜猜 明亮的燈光與大屏幕(歐) SSCSWR = 電影場景猜猜 明亮的燈光與大屏幕(西) SSDDRV = 挑戰拉普(歐) SSEDNG = 我們唱喝采(歐) SSEPNG = 我們唱喝采(歐) SSEVNG = We Sing: Encore SSFPKM = Sing 4: The Hits Edition SSGPNG = 我們唱歌你唱…我唱[麥克風](歐) SSHPHH = 夏洛克福爾摩斯 銀耳飾之案(歐) SSIENR = 冬季爆發 九大冰雪運動(美) SSJEJJ = 夏季明星 2012(美) SSJPKM = 夏季明星 2012(歐) SSLENR = I Love Horses: Rider's Paradise SSLPKM = 馬術俱樂部(歐) SSLPOH = SingItStar Legends SSMEYG = American Mensa Academy SSMPGD = 門薩學院(歐) SSNEYG = 狙擊精英(美) SSNPHY = 狙擊精英(歐) SSPE52 = Skylanders: Spyro's Adventure SSPJ52 = Skylanders: Spyro's Adventure SSPP52 = 小龍斯派羅的大冒險(歐) SSPX52 = 小龍斯派羅的大冒險(歐) SSQE01 = 瑪利歐派對9(美) SSQJ01 = 瑪利歐派對9(日) SSQK01 = Mario Party 9 SSQP01 = 瑪利歐派對9(歐) SSQW01 = 瑪利歐派對9 繁體中文版 SSRE20 = 狂野西部槍戰(美) SSRPXT = 狂野西部槍戰(X) SSSE01 = New Super Mario Bros. Wii: Summer Sun SSSEWR = Sesame Street: Elmo's Musical Monsterpiece SSTEG9 = 兒童冒險 天空隊長(美) SSTPY5 = 特技飛行 空中英雄(歐) SSUES5 = 迴轉壽司(美) SSVE52 = Wipeout 3 SSWDRM = 水上運動(德) SSWEPZ = 水上運動[平衡板](美) SSWPGR = 水上運動[平衡板](歐) SSZE5G = 劍(美) ST3J01 = 聽力大考驗(日) ST4PNX = 湯瑪士小火車 鐵路小英雄(歐) ST4XNX = 湯瑪士小火車 鐵路小英雄(歐) ST5E52 = 變形金剛 賽博坦大戰(美) ST5P52 = 變形金剛 賽博坦大戰(歐) ST6E78 = 減肥達人挑戰賽[平衡板](美) ST6P78 = 減肥達人挑戰賽[平衡板](歐) ST7E01 = 頂級街 Wii (美) ST7JGD = 人生街道 Wii (日) ST7P01 = 人生街道 Wii (欧) ST8P75 = 自制 唱吧 下載版(歐) ST9E52 = 頂級射手(美) STAE78 = 猜猜畫畫(美) STAP75 = 自制 唱吧 下載版(歐) STAP78 = 猜猜畫畫(歐) STAU78 = 猜猜畫畫(歐) STCP75 = 自制 唱吧 下載版(歐) STDEFP = 目標狙擊(美) STDP75 = 自制 唱吧 下載版(歐) STEETR = 俄羅斯方塊聚會 豪華版(美) STEJ18 = 俄羅斯方塊派對 超值版(日) STEPTR = 俄羅斯方塊派對(歐) STFE52 = 變形金剛 領袖之證(美) STFP52 = 變形金剛 領袖之證(歐) STGJAF = 時空幻境 美德傳奇(日) STHE8P = 雷神索爾(美) STHP75 = 自制 唱吧 下載版(歐) STHP8P = 雷神索爾(歐) STIFKM = 迪得夫的電影(歐) STJJAF = 太鼓達人Wii 決定版(日) STKE08 = 龍之子 VS. CAPCOM 終極明星戰(美) STKJ08 = 龍之子 VS. CAPCOM 終極明星戰(日) STKP08 = 龍之子 VS. CAPCOM 終極明星戰(歐) STLE78 = 真實與謊言(美) STLP78 = 真實與謊言(歐) STMEGN = 鐵達尼號之謎(美) STMPKP = 鐵達尼號之謎(歐) STNE41 = 丁丁歷險記 獨角獸號的秘密(美) STNP41 = 丁丁歷險記 獨角獸號的秘密(歐) STOE4Q = 汽車總動員 拖線狂想曲(美) STOP4Q = 汽車總動員 拖線狂想曲(歐) STOX4Q = 汽車總動員 拖線狂想曲(歐) STPP75 = 自制 唱吧 下載版(歐) STPPML = 寵物獸醫 海洋巡防(歐) STQJHF = 閃電十一人 王牌前鋒(日) STQP01 = Inazuma Eleven Strikers STQP75 = 自制 唱吧 下載版(歐) STQX01 = Inazuma Eleven Strikers STRE4Q = 電子世界爭霸戰 進化(美) STRP4Q = 電子世界爭霸戰 進化(歐) STRP75 = 自制 唱吧 下載版(歐) STRX4Q = 電子世界爭霸戰 進化(歐) STSE4Q = 玩具總動員3(美) STSP4Q = 玩具總動員3(歐) STSP75 = 自制 唱吧 下載版(歐) STSX4Q = 玩具總動員3(X) STSY4Q = 玩具總動員3(歐) STSZ4Q = 玩具總動員3 玩具盒特別版(美) STTDRM = 隱藏的秘密 鐵達尼號(歐) STTE52 = 隱藏的秘密 鐵達尼號(美) STTPGR = 隱藏的秘密 鐵達尼宿命航行的秘密(歐) STTXGR = 隱藏的秘密 鐵達尼宿命航行的秘密(歐) STUPRN = Turbo Trainz STVDSV = 電視總事件(德) STWE69 = 老虎伍茲高爾夫PGA巡迴賽11(美) STWP69 = 老虎伍茲高爾夫PGA巡迴賽11(歐) STXE69 = 老虎伍茲 12 高球名人賽(美) STXP69 = 老虎伍茲 12 高球名人賽(歐) STYE52 = 滑板高手(美) STYP52 = 滑板高手(歐) STZE52 = 變形金剛3(美) STZP52 = 變形金剛3(歐) SU2E54 = 尼克羅頓舞蹈2(美) SU2P54 = 尼克羅頓舞蹈2(歐) SU2X54 = 尼克羅頓舞蹈2(歐) SU3DMR = 環球歌唱2[WiFi][麥克風](德) SU3FMR = 環球歌唱2[WiFi][麥克風](法) SU3HMR = U-Sing 2: Popstars Edition SU3PMR = 環球歌唱2[WiFi][麥克風](歐) SU3SMR = 環球歌唱2[WiFi][麥克風](西) SU3UMR = 環球歌唱2[WiFi][麥克風](歐) SU4E78 = UFC 私人教練[平衡板][Wi-Fi](美) SU4P78 = UFC 私人教練[平衡板][Wi-Fi](歐) SU5EVZ = Monster High: Skultimate Roller Maze SU5PVZ = Monster High: Skultimate Roller Maze SU6E5G = 尊巴瘦身:核心版 SU6P5G = Zumba Fitness Core SU6XGT = 尊巴瘦身:核心版 SU7EG9 = 守護者聯盟(美) SU7PAF = Rise of the Guardians SU8PNG = We Sing: Deutsche Hits 2 SU9E4Q = 飛機總動員(美) SU9P4Q = 飛機總動員(歐) SU9X4Q = Disney Planes SUKE01 = 星之卡比 重回夢幻島(美) SUKJ01 = 星之卡比 Wii(日) SUKK01 = Kirby's Return to Dream Land SUKP01 = 星之卡比 Wii(歐) SUMJC8 = 賽馬大亨世界 2010(日) SUNEYG = Deer Drive Legends SUOE41 = The Hip Hop Dance Experience SUOP41 = The Hip Hop Dance Experience SUPE01 = Wii 派對(美) SUPJ01 = Wii 派對(日) SUPK01 = Wii 派對(韓) SUPP01 = Wii 派對(歐) SUQENG = We Sing UK Hits SUQPNG = We Sing: UK Hits SURE01 = New Super Mario Bros. Wii 19 Resurrection U SUREA4 = 熱舞革命 2[跳舞墊](美) SURPA4 = 熱舞革命 5(歐) SUSFMR = 環球歌唱 強尼哈勒戴(歐) SUSPMR = 環球歌唱 女孩之夜(歐) SUTESZ = 很久很久以前(美) SUUE78 = 天才小畫家 即時藝術家(美) SUUP78 = 天才小畫家 即時藝術家(歐) SUVE52 = Cabela's Dangerous Hunts 2013 SUVP52 = Cabela's Dangerous Hunts 2013 SUWE78 = 天才小畫家(美) SUWP78 = 天才小畫家(歐) SUXEA4 = 實況足球2010[WiFi](美) SUXJA4 = 實況足球 中場指揮官 2010(日) SUXPA4 = 實況足球2010[WiFi](歐) SUXXA4 = 實況足球2010[WiFi](X) SUXYA4 = 實況足球2010[WiFi](Y) SUYDRV = Schlag den Raab - Das 3. Spiel SUZD7K = Benjamin Blümchen - Törööö im Zoo SV2E78 = 大沙灘運動2(美) SV2P78 = 大沙灘運動2(歐) SV3EG9 = 馬達加斯加3(美) SV3PAF = 馬達加斯加3(歐) SV4E8P = 威力網球 4[MP][WiFi](美) SV4P8P = 威力網球 4[MP][WiFi](歐) SV5PRV = The Voice of Germany Vol. 2 SV6SRV = The Voice SV7EVZ = Penguins of Madagascar SV7PVZ = Penguins of Madagascar SVBE52 = 战舰 SVBP52 = Battleship SVCEPZ = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = 海綿寶寶 痞老闆機器人復仇 SVHP69 = FIFA 14 - Legacy Edition SVHX69 = FIFA 14 - Legacy Edition SVME01 = 超級瑪利歐收藏集 特別包(美) SVMJ01 = 超級瑪利歐收藏集(日) SVMK01 = Super Mario All-Stars SVMP01 = 超級瑪利歐收藏集 特別包(歐) SVOEWW = El Chavo SVPESZ = 維加斯聚會(美) SVPPNJ = 維加斯聚會(歐) SVSPZX = Battle vs Chess SVTEXS = 超級線程(美) SVTP99 = BIT.TRIP COMPLETE SVUPRV = The Voice of Germany SVVEG9 = 古魯家族(美) SVVPAF = 古魯家族(歐) SVWEQH = 蔬菜世界(美) SVXE52 = Skylanders: Swap Force SVXF52 = Skylanders: Swap Force SVXI52 = Skylanders: Swap Force SVXP52 = Skylanders: Swap Force SVXY52 = Skylanders: Swap Force SVYEG9 = Ben10 全體宇宙2 SVYPAF = Ben 10: Omniverse 2 SVZEVZ = How to Train Your Dragon 2 SVZPVZ = How to Train Your Dragon 2 SW2E52 = 百戰鐵人王 2(美) SW3EJJ = 冬季滑雪明星(美) SW3PKM = 冬季滑雪明星(歐) SW4JA4 = 實況足球 中場指揮官 2011(日) SW6E78 = WWE 激爆職業摔角 12(美) SW6P78 = WWE 激爆職業摔角 12(歐) SW7EVN = 西部英雄(美) SW7PNK = 西部英雄(歐) SW8ENG = We Sing 80s SW8PNG = We Sing 80s SW9EVN = 怪物大轟炸(美) SW9PYT = 怪物大轟炸(美) SWAE52 = DJ英雄[WiFi](美) SWAP52 = DJ英雄[WiFi](歐) SWBE52 = DJ 英雄2(美) SWBP01 = New Super Mario Bros. Wii 0 Where It All Began SWBP52 = DJ 英雄2[WiFi]((歐) SX2PNG = 叢林賽車(歐) SX3EXJ = Pandora's Tower SX3J01 = 潘朵拉之塔 直到你身邊(日) SX3P01 = 潘朵拉之塔 直到你身邊 (欧) SX4E01 = 异度之刃:编年史 SX4J01 = 異域神劍(日) SX4P01 = 異域神劍(歐) SX5E4Z = 聖誕老人進城囉(美) SX6JAF = 光之美少女 全明星全員集合一起舞蹈(日) SX7E52 = 忍者神龜 SX7P52 = Teenage Mutant Ninja Turtles SX8E52 = X戰警 命運(美) SX8P52 = X戰警 命運(美) SXAE52 = 吉他英雄 世界巡演[WiFi](美) SXAP52 = 吉他英雄 世界巡演[WiFi](歐) SXBE52 = 吉他英雄 金屬樂隊專輯[WiFi](美) SXBP52 = 吉他英雄 金屬樂隊專輯[WiFi](歐) SXCE52 = 吉他英雄 流行精選[WiFi](美) SXCP52 = 吉他英雄 流行精選[WiFi](歐) SXDE52 = 吉他英雄 范海倫[WiFi](美) SXDP52 = 吉他英雄 范海倫[WiFi](歐) SXEE52 = 吉他英雄5[WiFi](美) SXEF52 = Guitar Hero III Custom : Megadeth SXEP52 = 吉他英雄5[WiFi](歐) SXFE52 = 樂團英雄[WiFi](美) SXFF52 = Guitar Hero III Custom : My Chemical Romance SXFP52 = 樂團英雄[WiFi](歐) SXIE52 = 吉他英雄 搖滾鬥士(美) SXIP52 = 吉他英雄 搖滾鬥士(歐) SY8PKM = Let's Sing 2015 SZ2E5G = 尊巴南美拉丁舞 2(美) SZ2P5G = 尊巴南美拉丁舞 2(歐) SZ2XGT = 尊巴南美拉丁舞 2(歐) SZ3E5G = Zumba Fitness World Party SZ3PGT = Zumba Fitness World Party SZ5E5G = 尊巴南美拉丁舞(美) SZ5PGT = 尊巴南美拉丁舞(歐) SZAE69 = 搖滾樂隊2[WiFi](美) SZAP69 = 搖滾樂隊2[WiFi](歐) SZBE69 = 搖滾樂隊3(美) SZBP69 = 搖滾樂隊3(歐) SZEE01 = New Super Mario Bros Wii 13 Shadow Zero Escape TITLES = http://www.gametdb.com (type: Wii language: ZHTW version: 20150208111208) UGPE01 = Game Boy Player UGPJ01 = Game Boy Player UGPP01 = Game Boy Player ULFW = uLoader UUUE01 = New Super Mario Bros. Wii 19 Resurrection U VBGX = VBA模擬器(歐) VIPE01 = New Super Mario Bros Wii 18 Vip Mix W22E = Planet Fish W24E = 2 Fast 4 Gnomz W2AE = Big Bass Arcade W2CE = Brain Challenge W2CJ = Brain Challenge W2CP = Brain Challenge W2FP = Physiofun - Balance Training W2GD = Phoenix Wright Ace Attorney: Justice for All (Deutsche Version) W2GE = Phoenix Wright: Ace Attorney Justice for All W2GI = Phoenix Wright: Ace Attorney - Justice for All W2GJ = Gyakuten Saiban 2 W2GP = Phoenix Wright Ace Attorney: Justice for All W2IE = Fishie Fishie W2IP = Fishie Fishie W2JE = Just Jam W2KE = Let's Catch W2KJ = Let's Catch W2KP = Let's Catch W2LE = Bloons W2LP = Bloons W2ME = Blaster Master: Overdrive W2MP = Blaster Master: Overdrive W2OE = My Aquarium 2 W2OJ = Blue Oasis: Michinaru Shinkai W2OP = My Aquarium 2 W2PP = Physiofun: Pelvic Floor Training W2TE = Drill Sergeant Mindstrong W2TJ = Onitore Kyoukan ha Onigunsou W2TP = Brain Cadets W2YE = Fireplacing W2YP = My Fireplace W34J = Simple Series Vol. 4: The Misshitsu kara no Dasshutsu W3AE = Carmen Sandiego Adventures in Math: The Big Ben Burglary W3BE = Soccer Bashi W3BP = Soccer Bashi W3DJ = 3° C W3FE = 3D Pixel Racing W3FP = 3D Pixel Racing W3GD = Phoenix Wright Ace Attorney 3: Trials And Tribulations W3GE = Phoenix Wright Ace Attorney: Trials and Tribulations W3GI = Phoenix Wright: Ace Attorney - Trials and Tribulations W3GJ = Gyakuten Saiban 3 W3GP = Phoenix Wright Ace Attorney: Trials and Tribulations W3JE = Triple Jumping Sports W3KE = ThruSpace W3KJ = Surinuke Anatousu W3KP = ThruSpace: High Velocity 3D Puzzle W3LE = Carmen Sandiego Adventures in Math: The Lady Liberty Larceny W3ME = The Three Musketeers: One for all W3MP = The Three Musketeers: One for all W3PE = Triple Throwing Sports W3RE = Triple Running Sports W3SE = Triple Shot Sports W3TE = Pearl Harbor Trilogy - 1941: Red Sun Rising W3TP = Pearl Harbor Trilogy 1941: Red Sun Rising W42J = Fortune: Hoshi no Furisosogu Oka W44E = Stop Stress: A Day of Fury W44P = Stop Stress: A Day of Fury W48E = ShadowPlay W4AE = Arcade Sports W4AP = Arcade Sports: Air Hockey, Bowling, Pool, Snooker W4KE = Deer Captor W4KJ = Shikagari W4OJ = Shikakui Atama wo Marukusuru Challenge W4TE = Spaceball Revolution W4TP = Spaceball Revolution W54E = 5 Spots Party W54P = 5 Spots Party W5AE = 5 Arcade Gems W5AP = 5 Arcade Gems W5IE = 5 in 1 Solitaire W6BE = Eco Shooter: Plant 530 W6BJ = 530 Eco Shooter W6BP = Eco-Shooter: Plant 530 W72P = Successfully Learning German Year 3 W73P = Successfully Learning German Year 4 W74P = Successfully Learning German Year 5 W7IP = Successfully Learning German Year 2 W82J = Jintori Action Taikokenchi Karakuri Shiro no Nazo W8BP = Babel Rising W8CE = Bit.Trip Core W8CJ = BIT.TRIP CORE: Rhythm Seijin no Gyakushuu W8CP = Bit.Trip Core W8DJ = Mebius Drive W8IJ = Hachi-One Diver Wii W8LE = Balloon Pop Festival W8PJ = Ouchi de Mugen Puchi Puchi Wii W8WE = Happy Holidays: Halloween W8WP = Happy Holidays: Halloween W8XE = Battle Poker W9BE = Big Town Shoot Out W9BP = Big Town Shoot W9IE = Evasive Space W9IJ = Kiken Kuuiki W9LE = Christmas Clix W9RE = Happy Holidays: Christmas W9RP = Happy Holidays: Christmas W9UE = Cruise Party W9UP = Cruise Party WA2E = 大家的旋轉泡泡(美) WA2J = Minna de Puzzloop WA2P = Actionloop Twist WA4E = WarioWare: D.I.Y. Showcase WA4J = WarioWare: D.I.Y. Showcase WA4P = WarioWare: Do It Yourself – Showcase WA5E = Carmen Sandiego Adventures in Math: The Island of Diamonds WA7E = Toribash WA7P = Toribash Violence Perfected WA8E = Art Style: Rotozoa WA8J = Art Style: Penta Tentacles WA8P = Art Style: Penta Tentacles WAAE = Aya and the Cubes of Light WAAP = Aya and the Cubes of Light WABE = Art of Balance WABP = Art of Balance WACE = Arcade Essentials WACP = Arcade Essentials WAEE = Around The World WAEP = Around the world WAFE = Airport Mania: First Flight WAFP = Airport Mania: First Flight WAGE = Pinocchio's Puzzle WAHE = Trenches Generals WAHP = Trenches: Generals WAIE = 101-in-1 Explosive Megamix WAIP = 101-in-1 Explosive Megamix WAJE = MotoHeroz WAJP = MotoHeroz WAKE = Carmen Sandiego Adventures in Math: The Case of the Crumbling Cathedral WALE = Art Style: Light Trax WALJ = Art Style: Lightstream WALP = Art Style: light trax WAME = Carmen Sandiego Adventures in Math: The Great Gateway Grab WANE = Ant Nation WANP = Ant Nation WAOE = The Very Hungry Caterpillar's ABCs WAOJ = Harapeko Aomushi no ABC WAOP = The Very Hungry Caterpillar´s ABC WAQJ = Yakuman Wii: Ide Yousuke no Kenkou Mahjong WARE01 = DU Super Wario Bros. WARJ = Tsuushin Taikyoku Igo Doujou 2700 Mon WASJ = Tsuushin Taikyoku: Hayazashi Syogi Sandan WATE = Astro Bugz Revenge WAUJ = Tsushin Taikyoku: World Chess WAYE = And Yet It Moves WAYP = And Yet It Moves WAZE = The Amazing Brain Train WB2E = Strong Bad Episode 4: Dangeresque 3 WB2P = Strong Bad Episode 4: Dangeresque 3 WB3E = Strong Bad Episode 5: 8-bit is Enough WB3P = Strong Bad Episode 5: 8-bit is Enough WB4E = Wild West Guns WB4J = Wild West Guns WB4P = Wild West Guns WB5E = 豪華打磚塊(美) WB5J = Block Breaker Deluxe WB5P = Block Breaker Deluxe WB6E = TV Show King WB6J = TV Show King WB6P = 電視節目之王(歐) WB7E = Midnight Pool WB7J = Hamaru Billiards WB7P = Midnight Pool WB8E = Midnight Bowling WB8J = Hamaru Bowling WB8P = Midnight Bowling WBAJ = Bakutan WBBE = Snowboard Riot WBBJ = Board Warriors WBBP = Snowboard Riot WBDE = Brain Drain WBDP = Brain Drain WBEE = Pong Toss: Frat Party Games WBEP = Beer Pong: Frat Party Games WBFE = Bit.Trip Fate WBFP = Bit.Trip Fate WBGP = Bang Attack WBHE = Blood Beach WBHP = Blood Beach WBIE = Boingz WBJE = Harvest Moon: My Little Shop WBJJ = Bokujou Monogatari Series: Makiba no Omise WBKE = Arkanoid Plus! WBKJ = Arkanoid Plus! WBKP = Arkanoid Plus! WBLE = Bubble Bobble Plus! WBLJ = Bubble Bobble Wii WBLP = Bubble Bobble Plus! WBME = My Pokémon Ranch WBMJ = Minna no Pokémon Bokujou WBMP = My Pokémon Ranch WBNE = Bonsai Barber WBNJ = Bonsai Barber WBNP = Bonsai Barber WBOE = Gravitronix WBPE = PLÄTTCHEN twist 'n' paint WBPP = PLÄTTCHEN - twist 'n' paint WBQE = Star Soldier R WBQJ = Star Soldier R WBQP = 星際戰士R(歐) WBRP = Pirates: The Key of Dreams WBSE = Pop WBSJ = Pop WBSP = 夢幻泡沫(歐) WBTJ = Fantasic Tambourine WBVE = SPOGS Racing WBVP = 輪胎賽車(歐) WBWE = 動物危機(美) WBWJ = Saku Saku Animal Panic WBWP = Critter Round-Up WBXE = Strong Bad Episode 1: Homestar Ruiner WBXP = Strong Bad Episode 1: Homestar Ruiner WBYE = Strong Bad Episode 2: Strong Badia - The Free WBYP = Strong Bad Episode 2: Strong Badia - The Free WBZE = Strong Bad Episode 3: Baddest of the Bands WBZP = Strong Bad Episode 3: Baddest of the Bands WC2E = Crystal Defenders R2 WC2J = Crystal Defenders R2 WC2P = Crystal Defenders R2 WC6E = Chronos Twins DX WC6P = Chronos Twins DX WC8J = Line Attack Heroes WCHE = Chess Challenge! WCHP = Chess Challenge WCIE = Crystal Defenders R1 WCIJ = Crystal Defenders R1 WCIP = Crystal Defenders R1 WCJE = Cocoto Platform Jumper WCJP = Cocoto: Platform Jumper WCKE = chick chick BOOM WCKJ = chick chick BOOM WCKP = chick chick BOOM WCLE = Doc Clock: The Toasted Sandwich of Time WCNJ = Tokyo City Nights WCOE = Cocoto Fishing Master WCOP = 小魔怪釣魚(歐) WCPE = Copter Crisis WCPP = Copter Crisis WCRE = Carnival King WCSE = CueSports: Pool Revolution WCSJ = Cue Sports: Wi-Fi Taisen Billiards WCSP = CueSports: Snooker vs Billiards WCUE = 3-2-1, Rattle Battle! WCUJ = Atsui 12-Game: FuriFuri Party! WCUP = 3-2-1, Rattle Battle! WCVE = Cave Story WCVP = Cave Story WCZE = ColorZ WCZJ = ColorZ WCZP = ColorZ WD2J = Simple Wii Series Vol. 2: The Number Puzzle Neo WD9E = Castlevania The Adventure ReBirth WD9J = Dracula Densetsu ReBirth WD9P = Castlevania: The Adventure ReBirth WDAJ = Darts Wii WDBE = Derby Dogs WDBJ = Dirby Dog WDDE = Diner Dash WDDJ = Diner Dash WDDP = Diner Dash WDEE = Magic Destiny Astrological Games WDEP = Magic Destiny Astrological Games WDFE = 守衛城堡(美) WDFP = Defend your Castle WDHE = Art Style: ROTOHEX WDHJ = Art Style: Dialhex WDHP = Art Style: ROTOHEX WDIJ = Simple Wii Series Vol. 1: The Block Kuzushi Neo WDKE = Dart Rage WDME = 瑪莉歐醫生&細菌撲滅(美) WDMJ = 瑪莉歐醫生&細菌撲滅(日) WDMP = 瑪莉歐醫生&細菌撲滅(歐) WDNJ = Discipline Teikoku no Tanjyou WDOE = Driift Mania WDOP = Driift Mania WDPE = Dr. Mario Online Rx (Friend Battle Demo) WDPJ = Dr. Mario Online Rx (Friend Battle Demo) WDPP = Dr. Mario & Germ Buster (Friend Battle Demo) WDRE = Mr Driller W WDRJ = Mr. Driller World WDRP = Mr. Driller W WDSE = Dragon Master Spell Caster WDSP = Dragon Master Spell Caster WDVE = Voodoo Dice WDVP = Voodoo Dice WDXE = Diatomic WE6E = My Dolphin WE6J = Sea Farm: Iruka to Watashi no Showtime WE9E = Alien Crush Returns WE9J = Alien Crush Returns WE9P = Alien Crush Returns WEDE = Eduardo the Samurai Toaster WEME = Aha! I Got It! Escape Game WEMJ = 1 Nuke! Dasshutsu Game * My Home Hen WEMP = Aha! I Got It! Escape Game WENE = TNT Racers WENP = TNT Racers WEQE = Equilibrio WEQJ = Katamuki Spirits WEQP = Equilibrio WERE = My Aquarium WERJ = Blue Oasis: The Healing Space of Fish WERP = My Aquarium WETE = PictureBook Games: Pop-Up Pursuit WETJ = Asoberu Ehon: Tobida Sugoroku WETP = PictureBook Games: A Pop-Up Adventure WEVE = Viral Survival WEVJ = Peakvox Escape Virus WEVP = Viral Survival WF2E = Final Fantasy Crystal Chronicles: My Life as a Darklord WF2J = Final Fantasy Crystal Chronicles: Hikari to Yami no Himegimi to Sekai Seifuku no Tou WF2P = Final Fantasy Crystal Chronicles: My Life as a Darklord WF3E = Family Games - Pen & Paper Edition WF4E = Final Fantasy IV: The After Years WF4J = Final Fantasy IV: The After Years - Tsuki no Kikan WF4P = Final Fantasy IV: The After Years WF5E = Family Card Games WF5J = Okiraku Daifugou Wii WF5P = Family Card Games WF6E = Frobot WFAE = Fast Draw Showdown WFAP = Fast Draw Showdown WFBE = Sandy Beach WFBJ = Beach e Oki o Tsukuccha Wow! WFBP = Sandy Beach WFCE = Final Fantasy Crystal Chronicles: My Life as a King WFCJ = Final Fantasy Crystal Chronicles: Chiisana Ousama to Yakusoku no Kuni WFCP = 小小國王與約定之國(歐) WFDE = Save the Furries WFEE = Fenimore Fillmore "The Westerner" WFFE = Fun! Fun! Minigolf WFFF4I = Fatal Frame 4: Mask of the Lunar Eclipse WFFJ = Fun! Fun! Minigolf WFFP = Fun! Fun! Minigolf WFGE = Frogger Returns WFGJ = Frogger Returns WFGP = Frogger Returns WFHE = Flight Control WFHP = Flight Control WFIE = Reel Fishing Challenge WFIJ = Fish Eyes Challenge WFIP = Reel Fishing Challenge WFKE = Family Go-Kart Racing WFKJ = Okiraku Kart Wii WFLE = Fluidity WFLP = Hydroventure WFME = Family & Friends Party WFMP = Family & Friends Party WFNE = Fish Tank WFNP = Fish Tank WFPJ = Hirameki Card Battle Mekuruca WFQP = Frogger: Hyper Arcade Edition WFSJ = Minna no Theater Wii WFTE = Fish 'em All WFTP = Fish'em All! WFUE = Furry Legends WFUP = Furry Legends WFVE = Soccer Up WFVP = Football Up WFWE = Flower Works WFWP = Flowerworks: Follie's Adventure WFXE = Cosy Fire WFXP = Cosy Fire WFYE = Family Games Pen & Paper Edition WFYP = Family Games Pen & Paper Edition WG2J = Sugar Bunnies Wii: Youkoso * Bunnies Field e WG4E = GhostSlayer WGAE = Ghost Mania WGAP = Ghost Mania WGDE = Gradius Rebirth WGDJ = Gradius Rebirth: Updated WGDP = Gradius Rebirth WGFP = Girlfriends Forever: Magic Skate WGGE = Gabrielle's Ghostly Groove: Monster Mix WGGJ = Ushimitsu Monstruo Puchi: Fushigi na Oshiro no Dance Party WGGP = Gabrielle's Ghostly Groove: Monster Mix WGLE = Gene Labs WGMJ = Game SoundStation WGOE = World of Goo WGOJ = World of Goo WGOP = World of Goo WGPE = AquaSpace WGPJ = Aqua Living: TV de Nagameru Uotachi WGPP = Zenquaria: Virtual Aquarium WGSD = Phoenix Wright: Ace Attorney (Deutsche Version) WGSE = Phoenix Wright: Ace Attorney WGSF = Phoenix Wright: Ace Attorney (French Version) WGSI = Phoenix Wright: Ace Attorney WGSJ = Gyakuten Saiban: Yomigaeru Gyakuten WGSP = Phoenix Wright: Ace Attorney WGTJ = Sekai no Omoshiro Party Game WGUJ = Aero Guitar WGVE = Groovin' Blocks WGYE = 螺旋射擊(美) WH3E = Home Sweet Home WH3P = Home Sweet Home WHBE = Hubert the Teddy Bear: Winter Games WHEE = Heracles: Chariot Racing WHEP = Heracles: Chariot Racing WHFE = Heavy Fire: Special Operations WHFP = Heavy Fire: Special Operations WHHJ = Let's Zenryoku Hitchhike!!!!!!!!! WHMP51 = New Super Mario Bros. Wii: The Ultimate Wii-Homebrew.com Edition WHOE = Hockey Allstar Shootout WHPE = Sexy Poker WHPP = Sexy Poker WHRE = Heron Steam Machine WHRP = Heron: Steam Machine WHUE = Ghost Mansion Party WHUJ = Ghost Mansion Party WHUP = Ghost Mansion Party WHVE = High Voltage: Hot Rod Show WHWE = HoopWorld WHWP = HoopWorld: BasketBrawl WHXE = Helix WHXP = Helix WHYE = Heavy Fire: Black Arms WHZE = Horizon Riders WIBE = bittos+ WICE = NyxQuest Kindred Spirits WICJ = NyxQuest WICP = NyxQuest: Kindred Spirits WIDE = Dracula: Undead Awakening WIDP = Dracula: Undead Awakening WIEE = Tales of Monkey Island: Chapter 3 - Lair of the Leviathan WIEP = Tales of Monkey Island Chapter 3: Lair of the Leviathan WIGE = Incoming WIHE = Play with Birds WIKJ = Ivy the Kiwi? Mini WILE = Tales of Monkey Island: Chapter 1 - Launch of the Screaming Narwhal WILP = Tales of Monkey Island Chapter 1: Launch of the Screaming Narwhal WIMC = WiiMC WINE = The Incredible Maze WINJ = Chokkan! Balance * Labyrinth WINP = The Incredible Maze WIRE = Tales of Monkey Island: Chapter 5 - Rise of the Pirate God WIRP = Tales of Monkey Island Chapter 5: Rise Of The Pirate God WISE = Tales of Monkey Island: Chapter 2 - The Seige of Spinner Cay WISP = Tales of Monkey Island Chapter 2: Siege Of Spinner Cay WITE = Aha! I Found It! Hidden Object Game WITJ = Aa! Mitsuketa! Item Sagashi Game WITP = Aha! I Found It! Hidden Object Game WIUE = Inkub WIVE = Space Invaders Get Even WIVJ = Space Invaders Get Even WIVP = Space Invaders Get Even WIYE = Tales of Monkey Island: Chapter 4 - The Trial and Execution of Guybrush Threepwood WIYP = Tales of Monkey Island Chapter 4: The Trial and Execution of Guybrush Threepwood WJ2J = Jinsei Game: Happy Step WJAE = Jam City Rollergirls WJAP = Jam City Rollergirls WJCE = JellyCar 2 WJEE = Jett Rocket WJEP = Jett Rocket WJFE = Gnomz WJFP = Gnomz WJGJ = Jinsei Game WJKE = Jewel Keepers Easter Island WJKP = Jewel Keepers: Easter Island WJPJ = Janken Party Paradise WJSE = Jungle Speed WJSP = Jungle Speed WJWE = Bejeweled 2 WJWP = Bejeweled 2 WK2J = Kappa-kun to Asobou: Kappa-kun to Ota no Shimikai WK3J = Kappa-kun to Asobou: Kappa-kun to Mori no Nakamatachi WK9J = Minna de Asobou Koinu de Kururin WKBE = You, Me, and the Cubes WKBJ = Kimi to Boku to Rittai WKBP = You, Me and the Cubes WKCE = Kyotokei WKCP = Kyotokei WKDE = 海盜 夢想的鑰匙(美) WKEJ = RakuRaku Kinen Apori Wii: Kinenka no Isha ga Osheru Nanoka de yameru Houhou WKFE = Kung Fu Funk: Everybody is Kung Fu Fighting! WKFP = Kung Fu Funk: Everybody Is Kung Fu Fighting WKHE = Big Kahuna Party WKIE = The Mystery of Whiterock Castle WKIP = The Mystery of Whiterock Castle WKKE = Party Fun Pirate WKKJ = Kurohige Kiki Ippatsu WKKP = Pop-Up Pirates! WKNJ = Kanken Minna de Waiwai Kanji Nou WKPJ = Kappa Kun to Mori no Nakama Tachi WKQJ = Kentei! TV Wii Minna de Gotouchi Quiz Battle WKRP = Karate Phants: Gloves of Glory WKTE = Contra Rebirth WKTJ = Contra ReBirth WKTP = Contra ReBirth WKUJ = Downtown Nekketsu Dodgeball WKWE = Adventure on Lost Island: Hidden Object Game WKWJ = Item Sagashi * Yousei to Fushigi no Shima WKWP = Adventure on LOST ISLAND: Hidden Object Game WL2E = Target Toss Pro: Lawn Darts WL5E = HB Arcade Disc Golf WL9E = Let's Create! Pottery WLCE = Bingo Party Deluxe WLCJ = Wai Wai Bingo Deluxe WLCP = Bingo Party Deluxe WLDJ = Boku mo Sekai o Sukuitai: Battle Tournament WLEE = Learning with the PooYoos: Episode 1 WLEJ = Pooyoo to Asobou Episode 1 WLEP = Learning with the PooYoos: Episode 1 WLGE = HB Arcade Cards WLIE = Liight WLJJ = Boku mo Sekai o Sukuitai: Battle Tournament WLKJ = Okiraku Tennis SP WLLE = Little Tournament Over Yonder WLLP = Little Tournament Over Yonder WLME = La-Mulana WLMJ = La Mulana WLMP = La-Mulana WLNE = Learning with the PooYoos: Episode 2 WLNP = Learning with the PooYoos: Episode 2 WLOE = LostWinds: Winter of the Melodias WLOJ = LostWinds: Winter of the Melodias WLOP = LostWinds: Winter of the Melodias WLPE = Lonpos WLPJ = Lonpos WLPP = Lonpos WLTE = LIT WLTJ = School of Darkness WLTP = LIT WLWE = LostWinds WLWJ = LostWinds WLWP = 迷失之風(歐) WLXJ = Phalanx WLZE = lilt line WLZP = lilt line WM2E = My Little Baby WM2P = My Little Baby WM3E = Manic Monkey Mayhem WM3P = Manic Monkey Mayhem WM4E = Mix Superstar WM4P = Mix Superstar WM5E = MDK2 WM7E = Anima Ark of Sinners WM7P = Anima Ark of Sinners WM8E = Bomberman Blast WM8J = Wi-Fi 8-Nin Battle Bomberman WM8P = Bomberman Blast WM9E = Happy Hammerin WM9J = Tataite Mogupon WM9P = Happy Hammerin' WMAE = Magnetis WMAP = Magnetis WMBE = MaBoShi's Arcade WMBJ = Katachi no Game: Marubou Shikaku WMBP = MaBoShi: The Three Shape Arcade WMCE = Monsteca Corral: Monsters vs. Robots WMCP = Monsteca Corral: Monsters Vs. Robots WMDE = Madstone WMGE = Mart Racer WMHE = Mouse House WMJE = Dive: The Medes Islands Secret WMJP = Dive: The Medes Islands Secret WMKE = Lead the Meerkats WMKP = Lead the Meerkats WMLE = Major League Eating: The Game WMLJ = Major League Eating: The Game WMME = Muscle March WMMJ = Muscle Koushinkyoku WMMP = Muscle March WMOE = Moki Moki WMOJ = Antaga Mawashite Sukuu Puzzle: Mochimochi Q WMOP = Moki Moki WMRE = Monochrome Racing WMRP = Monochrome Racing WMSE = Enjoy your massage! WMSP = Enjoy your massage! WMWP = Miffy's World WMXE = Max & The Magic Marker WMXJ = Max & the Magic Marker WMXP = Max & the Magic Marker WMZP = Mahjong WN9E = Military Madness: Nectaris WN9J = Nectaris WN9P = Military Madness: Nectaris WNAP = Back to Nature WNEE = Penguins & Friends Hey! That's My Fish! WNEP = Penguins & Friends Hey! That’s my Fish! WNGE = Bang Attack WNKE = Niki - Rock 'n' Ball WNKP = Niki - Rock 'n' Ball WNPJ = Sugusuro Duo: New Pulsar R & V WNSE = Newton Vs The Horde WNVE = Neves Plus WNVJ = Neves Plus WNVP = Neves Plus: Phantheon of Tangrams WNWJ = Hamekomi Lucky Puzzle Wii Return WO6E = Family Pirate Party WO6J = Okiraku Sugoroku Wii WO6P = Family Pirate Party WOAE = Family Glide Hockey WOAJ = Okiraku Air Hockey Wii WOAP = Family Glide Hockey WOBE = Art Style: ORBIENT WOBJ = Art Style: Orbital WOBP = Art Style: ORBIENT WODJ = Ouudaa! WOEJ = Oekaki Logic WOFE = Overflow WOGE = Family Mini Golf WOGJ = Okiraku Putter Golf Wii WOGP = Family Mini Golf WOKE = Karaoke Joysound WOKJ = Karaoke Joysound Wii WOLJ = Othello WOMJ = Sekai no Omoshiro Party Game 2 WOPE = Word Searcher Deluxe WOSE = Family Slot Car Racing WOSJ = Okiraku Slot Car Racing Wii WOSP = Family Slot Car Racing WOTE = Overturn WOTJ = Overturn WOTP = Overturn: Mecha Wars WOXJ = Osu! Exercise Dojo WOYE = Bit Boy!! WOYJ = Bit Man WOYP = Bit Boy!! WOZJ = Kodomo Kyouiku Telebi Wii: Aiue-Oumuzu WP2E = Potpourrii WP2P = Potpourrii WP4E = Learning with the PooYoos: Episode 3 WP4P = Learning with the PooYoos: Episode 3 WP5J = Pokosuka Racing WP6J = Boku wa Plarail Untenshi: Shinkansen Joukikikansha-Hen WP7E = My Planetarium WP7J = Planetarium WP7P = My Starry Night WP9J = Po-Ka-Zu Wii WPAJ = Pokémon Fushigi no Dungeon: Susume! Honoo no Boukendan WPBE = Pub Darts WPBP = Pub Darts WPCE = Doc Louis's Punch-Out!! WPDJ = Chindouchuu!! Pole no Daibouken WPFJ = Pokémon Fushigi no Dungeon: Ikuzo! Arashi no Boukendan WPGE = Snowpack Park WPGJ = Penguin Life WPHJ = Pokémon Fushigi no Dungeon: Mesaze! Hikari no Boukendan WPIE = Pit Crew Panic! WPIJ = Pit Crew Panic WPIP = Pit Crew Panic! WPJE = Pucca's Kisses Game WPJP = Pucca's Kisses Game WPKE = Texas Hold'Em Poker WPKP = Texas Hold'Em Poker WPLE = Planet Pachinko WPNJ = Ponjan WPOJ = Popple to Mahou no Crayon WPPE = 家庭乒乓球(美) WPPJ = Okiraku Ping Pong WPPP = Family Table Tennis WPQE = 鄰海空襲(美) WPQP = Protöthea WPRE = Art Style: Cubello WPRJ = Art Style: Cubeleo WPRP = Art Style: CUBELLO WPSE = Pokémon Rumble WPSJ = Ransen Pokémon Scramble WPSP = Pokémon Rumble WPTJ = Fantasic Cube WPUE = Bust-A-Move Plus! WPUJ = Puzzle Bobble Wii WPUP = Puzzle Bobble Plus! WPVE = The Tales of Bearsworth Manor: Chaotic Conflicts WPVJ = Kumanage Battle-Hen: Kiina no Kirai na Aoi Hoseki WPVP = The Tales of Bearsworth Manor: Chaotic Conflicts WPWE = Pong Toss Pro - Frat Party Games WPXJ = Minna de Tobikome Penguin Diving Hooper Looper WPYE = Pallurikio WPYP = Pallurikio WPZE = Bruiser & Scratch WQ4J = Kentoushi FuriFuri Boxing WR2E = Rabbids Lab WR2P = Rabbids Lab WR4P = Rush Rush Rally Racing WR5E = Retro City Rampage WR9E = 洛克人9(美) WR9J = RockMan 9: Yabou no Fukkatsu! WR9P = 洛克人9(歐) WRBE = Robocalypse - Beaver Defense WRBP = Robocalypse - Beaver Defense WRDE = Word Searcher WRDP = Word Searcher WREE = Racers' Islands - Crazy Arenas WREP = Racers Islands Crazy Arenas WRFE = Reel Fishing Challenge II WRFP = Reel Fishing Challenge II WRGE = Rage of the Gladiator WRGP = Rage of the Gladiator WRIE = Rainbow Islands: Towering Adventure! WRIJ = Rainbow Islands: Towering Adventure! WRIP = Rainbow Islands: Towering Adventure! WRJE = Racers' Islands - Crazy Racers WRJP = Racers Islands - Crazy Racers WRLE = FAST Racing League WRLP = FAST Racing League WRNJ = BIT.TRIP RUNNER WRPE = Burn the Rope WRQE = Deer Drive Legends WRQP = Deer Drive Legends WRRE = Robin Hood: The Return of Richard WRRP = Robin Hood: The Return Of Richard WRSE = Step Up WRTE = Robox WRUE = BIT.TRIP RUNNER WRUP = Bit.Trip Runner WRXE = Mega Man 10 WRXJ = RockMan 10 WRXP = Mega Man 10 WRYE = Robox WRYP = Robox WS2J = Saikyou Ginsei Igo WS3E = Silver Star: Chess WS3J = Saikyou Ginsei Chess WS4J = Saikyou Ginsei Mahjong WS5J = Saikyou Ginsei Gomoku Narabe WS6E = Silver Star: Reversi WS6J = Saikyou Ginsei Reversi WS7E = Fantasy Slots: Adventure Slots and Games WS8J = Minna de Taisen Puzzle Shanghai WS9E = Sudoku Challenge! WS9P = Sudoku Challenge! WSAE = Onslaught WSAJ = MadSecta WSAP = Onslaught WSBJ = Sorcery Blade WSCJ = Out of Galaxy: Gin no Koshika WSEJ = Princess Ai Monogatari WSGE = Pop 'Em Drop 'Em Samegame WSGJ = Same Game Wii WSGP = Pop Them, Drop Them SAMEGAME WSHE = Stonekeep: Bones of the Ancestors WSIJ = Saikyou Ginsei Shogi WSJE = Spot The Differences! WSJP = Spot the Differences! WSLE = The Magic Obelisk WSLJ = Shadow Walker WSME = Eat! Fat! FIGHT! WSMJ = Tsuppari Oozumou Wii Heya WSMP = Eat! Fat! FIGHT! WSNE = Sonic The Hedgehog 4 Episode I WSNJ = Sonic the Hedgehog 4: Episode I WSNP = Sonic The Hedgehog 4 Episode I WSRE = Space Trek WSSP = Solitaire WSTJ = Tenshi no Solitaire WSUE = Shootanto: Evolutionary Mayhem WSUJ = Shootanto: Kakohen WSUP = Shootanto: Evolutionary Mayhem WSWE = Swords & Soldiers WSWP = Swords & Soldiers WSXE = Stunt Cars WSXP = Stunt Cars WSYE = Snail Mail WSZE = Sneezies WSZP = Sneezies WT2E = Target Toss: Pro Bags WT3E = Tomena Sanner WT3J = Tomena Sanner Wii WT3P = Tomena Sanner WT8J = Hajite! Block Rush WTBJ = Fantasic Tambourine WTDJ = Tomica Drive WTEE = Tales of Elastic Boy: Mission 1 WTEP = Tales of Elastic Boy Mission 1 WTFE = Bit.Trip: Flux WTFP = Bit.Trip Flux WTHJ = Kaku! Ugoku! Tsukamaeru! Sensei Wii WTIE = Tiki Towers WTKE = TV Show King 2 WTKP = TV Show King 2 WTME = Adventure Island: The Beginning WTMJ = Takahashi Meijin no Bouken Jima Wii WTMP = Adventure Island: The Beginning WTNE = Family Tennis WTNJ = Okiraku Tennis Wii WTPE = Tetris Party WTPJ = Tetris Party WTPP = Tetris Party WTRE = Bit.Trip Beat WTRJ = BIT.TRIP BEAT WTRP = Bit.Trip Beat WTTE = 小雞快跑(美) WTTP = Toki Tori WTUE = Tumblebugs 2 WTWP = Fenimore Fillmore: The Westerner WTXE = Texas Hold’em Tournament WTXP = Texas Hold’em Tournament WU2P = Successfully Learning Mathematics Year 3 WU3P = Successfully Learning Mathematics Year 4 WU4P = Successfully Learning Mathematics Year 5 WUBE = Ubongo WUBP = Ubongo WUFE = Drop Zone: Under Fire WUHE = Grill-Off with Ultra Hand! WUIP = Successfully Learning Mathematics Year 2 WUKJ = Unou Kids Okigaru Unou Training WUNE = Uno WUNJ = Uno WUNP = Uno WURE = Urbanix WURP = Urbanix WVBE = Bit.Trip: Void WVBJ = BIT.TRIP VOID WVBP = Bit.Trip Void WVCE = V.I.P 賭場:21點(美) WVDJ = Kodomo Kyouiku TV Wii: Aiue-O-Chan WVFE = Bobby Carrot Forever WVFP = Bobby Carrot Forever WVIE = 天境奏琴(美) WVKE = Water Warfare WVKJ = Bang Bang Kids WVKP = Water Warfare WVOE = Rock N' Roll Climber WVOJ = Rock n' Roll Climber WVOP = Rock'n Roll Climber WVQE = Vampire Crystals WVQP = Vampire Crystals WVSE = Gods Vs Humans WVSP = Gods Vs Humans WVUP = Mr Bumblebee Racing Champion WW2P = Where's Wally? Fantastic Journey 2 WW3P = Where's Wally? Fantastic Journey 3 WWAE = Warmen Tactics WWIP = Where's Wally? Fantastic Journey 1 WWLP = The Will of Dr. Frankenstein WWRE = Excitebike World Rally WWRJ = Excitebike: World Race WWRP = Excitebike: World Challenge WWTE = BurgerTime World Tour WWTP = BurgerTime World Tour WWXE = Paper Wars: Cannon Fodder WWXP = Paper Wars Cannon Fodder WXBE = Ben 10: Alien Force - The Rise of Hex WXBP = Ben 10: Alien Force - The Rise of Hex WXME = Xmas Puzzle WXPE = Paint Splash! WXPP = Paint Splash WXRE = Reel Fishing Ocean Challenge WYIE = escapeVektor: Chapter 1 WYIP = escapeVektor: Chapter 1 WYKJ = Yomi Kiku Asobi WYME = Yummy Yummy Cooking Jam WYMP = Yummy Yummy Cooking Jam WYSE = Yard Sale Hidden Treasures: Sunnyville WYSP = Yard Sale Hidden Treasures Sunnyville WZAE = Zombii Attack WZBP = Cricket Challenge WZGE = Zoo Disc Golf WZHE = My Zoo WZHJ = Animal Life: Doubutsu Fureai Seikatsu WZHP = My Zoo WZIE = Rubik's Puzzle Galaxy RUSH WZIP = Rubik's Puzzle Galaxy: RUSH WZJJ = Simple Series Vol. 5: The Judo WZMJ = Simple Wii Series Vol. 3: The Mahjong WZPE = Zombie Panic in Wonderland WZPJ = Zombie in Wonderland WZPP = Zombie Panic in Wonderland WZZE = The Tales of Bearsworth Manor: Puzzling Pages WZZJ = Kumanage Puzzle-Hen: Piina no Suki na Akai Candy WZZP = The Tales of Bearsworth Manor: Puzzling Pages XAAJ = Eggy XABJ = Aleste XADJ = Yie Ar Kung 2 XAEJ = Space Manbow XAFJ = Metal Gear XAGJ = Road Fighter XAHJ = Penguin Adventure: Yume Tairiku Adventure XAIJ = Quarth XAKJ = Parodius - Tako wa Chikyuu wo Sukuu XALJ = Contra XAMJ = Knightmare: Majou Densetsu XANJ = Parodius 2 XAOJ = Gofer no Yabou: Episode II XAPJ = Metal Gear 2: Solid Snake XAQJ = Salamander XBKE52 = 自制 吉他英雄3 下載版(美) XH2E = Cave Story (Demo) XH2P = Cave Story (Demo) XH3E = Frobot (Demo) XH4E = Max and the Magic Marker (Demo) XH5E = Ayim And Yet It Moves Demo XH6E = Robox (Demo) XH6P = Robox (Demo) XH7E = Lit (Demo) XH7P = Lit (Demo) XH8E = Lead the Meerkats (Demo) XH8P = Lead the Meerkats (Demo) XHAE = Pokemon Rumble (Demo) XHAP = Pokemon Rumble (Demo) XHCE = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHCJ = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHDE = NyxQuest: Kindred Spirits (Demo) XHDP = NyxQuest: Kindred Spirits (Demo) XHEE = BIT.TRIP BEAT (Demo) XHEJ = BIT.TRIP BEAT (Demo) XHEP = BIT.TRIP BEAT (Demo) XHFE = World of Goo (Demo) XHFP = World of Goo (Demo) XHIE = Fluidity (Demo) XHIP = Hydroventure (Demo) XHJE = Thruspace (Demo) XHJP = Thruspace (Demo) XHKE = Dive: The Medes Island Secret (Demo) XHKP = Dive: The Medes Secret Island (Demo) XHLE = Jett Rocket (Demo) XHLP = Jett Rocket (Demo) XHME = Art of Balance (Demo) XHMP = Art of Balance (Demo) XHQE = Zombie Panic (Demo) XHQP = Zombie Panic (Demo) XHRE = Furry Legends (Demo) XHRP = Furry Legends (Demo) XHVE = BIT.TRIP CORE (Demo) XHVP = BIT.TRIP CORE (Demo) XHWE = BIT.TRIP VOID (Demo) XHWP = BIT.TRIP VOID (Demo) XHXE = BIT.TRIP RUNNER (Demo) XHXP = BIT.TRIP RUNNER (Demo) XHZE = Chronos Twins DX (Demo) XHZP = Chronos Twins DX (Demo) XI2E = Kyotokei (Demo) XI2P = Kyotokei (Demo) XI7E = Liight (Demo) XI8E = Jam City (Demo) XI8P = Jam City (Demo) XIAE = Lilt Line (Demo) XIAP = Lilt Line (Demo) XIBE = Fish em All (Demo) XIBP = Fish em All Demo XICE = Gods vs Humans Demo XICP = Gods vs Humans Demo XIDE = Racers Islands Crazy Racers Demo XIDP = Racers Islands Crazy Racers Demo XIEE = chick chick BOOM Demo XIEP = chick chick BOOM Demo XIGE = Urbanix Demo XIGP = Urbanix Demo XIHE = Gladiator Demo XIHP = Gladiator Demo XIJE = Fast Racing League Demo XIJP = Fast Racing League Demo XIKE = Monsteca Corral Demo XIKP = Monsteca Corral Demo XINE = Learning with the Pooyoos Episode 1 Demo XINP = Learning with the Pooyoos Episode 1 Demo XIOE = Learning with the Pooyoos Episode 2 Demo XIOP = Learning with the Pooyoos Episode 2 Demo XIPE = Learning with the Pooyoos Episode 3 Demo XIPP = Learning with the Pooyoos Episode 3 Demo XIQE = Dart Rage Demo XIRE = Pong Toss Pro Demo XISE = BIT.TRIP FLUX Demo XISP = BIT.TRIP FLUX Demo XITE = Fast Draw Demo XITP = Fast Draw Demo XIUE = Soccer Bashi Demo XIUP = Soccer Bashi Demo XIVE = Mix Superstar Demo XIVP = Mix Superstar Demo XIZE = 3D Pixel Racing Demo XIZP = 3D Pixel Racing Demo XJEE = Aya and the Cubes of Light Demo XJEP = Aya and the Cubes of Light Demo XJGE = Gnomz Demo XJGP = Gnomz Demo XJHE = Paint Splash Demo XJIE = 2 Fast 4 Gnomz Demo XJSE = Karaoke Joysound (Demo) XJSP = Karaoke Joysound Wii (Demo) XNWE52 = 自制 吉它英雄3 Nightwish(美) XXXX02 = Mario Kart Teknik ZXFP52 = 自製 吉他英雄3 Encore(歐) wit-2.31a/share/titles-it.txt0000644000175000017500000107726712655737310016007 0ustar michaelmichael010E01 = Wii Backup Disc v1.31 301E01 = GameCube Service Disc AFRE01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 8. AMEE01 = New Super Mario Bros. Wii 11 American Revolution AMNE01 = Another Super Mario Bros. Wii AMOR04 = Guitar Hero III Custom : HARDcore APRP01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 2. APRP02 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 3. APRP03 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 6. APRP04 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 7. APRP06 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 5. APRP08 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 1. ASMB01 = Another Super Mario Bros. Wii BEPS01 = Guitar Hero III Custom : Rock n' Metal BOWE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh C3BE52 = Guitar Hero III Custom : Bossenator C3FP52 = Guitar Hero III Custom : Fonx #1 C3KE52 = Guitar Hero III Custom : Kyle Edition #1 C3ME52 = Guitar Hero III Custom : Modern Rock C3PP52 = Guitar Hero III Custom : Modern Pop & Rock C80E52 = Guitar Hero III Custom : Rocks the 80's C80P52 = Guitar Hero III Custom: GH I & 80's C93E = Last Ninja 2 C93P = The Last Ninja 2 C94E = Tower Toppler C94P = Nebulus C95P = Impossible Mission C96E = Summer Games II C96P = Summer Games 2 C97E = California Games C97P = California Games C98P = Paradroid C99P = Uridium C9EP = Winter Games C9GP = Mayhem in Monsterland C9HE = Boulder Dash C9HP = Boulder Dash C9IE = Cybernoid C9IP = Cybernoid C9ME = Pitstop II C9MJ = Pitstop Two C9MP = Pitstop II C9PP = The Last Ninja 3 C9QP = Jumpman C9RP = International Karate + C9SP = Impossible Mission II C9XE = The Last Ninja C9XJ = The Last Ninja C9XP = The Last Ninja C9YE = International Karate C9YJ = International Karate C9YP = International Karate C9ZP = World Games CANE52 = Guitar Hero Custom: NOT Aerosmith but... CCPE01 = Mario Kart Wii Custom: The Master Race CEMU69 = PunEmu CFEE52 = Guitar Hero III Custom : Michael Jackson CG1E52 = Guitar Hero III Custom : Guitar Hero CG1P52 = Guitar Hero III Custom: Guitar Hero I CG2E52 = Guitar Hero III Custom: Guitar Hero II CG2EFL = Guitar Hero III Custom : GH II CG2P52 = Guitar Hero III Custom : Guitar Hero II CG3ECS = Guitar Hero III Custom : ClasSick Edition CG3PCS = Guitar Hero III Custom : ClasSick Edition CGBE52 = Guitar Hero III Custom: Rock Band CGBP52 = Guitar Hero III Custom : Rock Band CGH370 = Guitar Hero III Custom : 70 New Song CGH3IM = Guitar Hero III Custom : Iron Maiden CGH3LM = Guitar Hero III Custom : Legend of Music CGH3ME = Guitar Hero III Custom : Metallica CGH3NE = Guitar Hero III Custom : Nostalgia Edition CGH3WD = Guitar Hero III Custom: WD Custom CGHCE1 = Guitar Hero III Custom : Edition Custom CGHE87 = Guitar Hero III Custom : Guitar Hero I CGHE88 = Guitar Hero III Custom : Guitar Hero II CGHE89 = GH3: Mario CGHE90 = GH3: South Park Edition CGHE91 = GH3: The Red Album CGHE92 = GH3: The Blue Album CGHE93 = GH3: Shake Rattle and Roll CGHE94 = Guitar Hero III Custom : Mars Needs Guitars CGHE95 = Guitar Hero III Custom : Rock Band CGHE96 = Guitar Hero III Custom: Rock'n'Roll Metal CGHE97 = GH3: I Fought The Law CGHE98 = GH3: Sweet Home Alabama CGHE99 = Guitar Hero III Custom : Rock The 80's CGHECB = Guitar Hero III Custom : CBT Edition CGHEDC = Guitar Hero III Custom : Downloadable Content Edition CGHEDM = Guitar Hero III Custom : DAVEMODE CGHEMC = Guitar Hero III Custom : My Chemical Romance CGHENC = Guitar Hero III Custom : NCustom CGHEPH = Guitar Hero III Custom : Puppetz Hero 2 CGHER2 = Guitar Hero III Custom : Rock Band 2 CGHERF = Guitar Hero III Custom : Rockfest 2010 CGHJ52 = Guitar Hero III Custom : Jumapa CGHKY2 = Guitar Hero III Custom : Kyle Edition #2 CGHPF2 = Guitar Hero III Custom : Fonx #2 CGHPF3 = Guitar Hero III Custom : Fonx #3 CGHPF4 = Guitar Hero III Custom : Fonx #4 CGHPF5 = Guitar Hero III Custom : Fonx #5 CGHPNT = Guitar Hero III Custom : Ntorrents Edition CGHRH2 = Guitar Hero III Custom : Rocks Hits Custom v2 CGHSKV = Guitar Hero III Custom : Starchildren & Kneos Version CGIE52 = Guitar Hero III Custom: Iron Maiden CGSP52 = Guitar Hero III Custom : Spanisk Custom by KuXu CGVECD = Guitar Hero Aerosmith Custom : AC/DC Edition CGVEM2 = Guitar Hero Aerosmith Custom : Mini Concerts Edition 2 CGVEMC = Guitar Hero Aerosmith Custom : Mini Concerts Edition CGVEUV = Guitar Hero Aerosmith Custom : Ultimate Video Game Hero CKBE88 = Mario Kart Wii Black CLAPSI = SingItStar Clásicos CMDE52 = Guitar Hero III Custom: Megadeth CMKE01 = Mario Kart Wii Dragon Road CS0P00 = StarSing : Bollywood v2.0 CS0PZZ = StarSing : Pop Part. I v2.0 CS1P00 = StarSing : Country v2.0 CS1PZZ = StarSing : Pop Part. II v2.0 CS2P00 = StarSing : Placebo v2.0 CS2PZZ = StarSing : '80s Volume 1 v2.0 CS3P00 = StarSing : Volume 1 v2.0 CS3PZZ = StarSing : Anthems v2.0 CS4P00 = StarSing : NRJ Music Tour v2.0 CS4PZZ = StarSing : Legends v2.0 CS5P00 = StarSing : '70s v2.1 CS5PZZ = StarSing : Songs For My Jedi v1.0 CS6P00 = StarSing : Douce France v2.0 CS6PZZ = StarSing : Amped Part. I v2.0 CS7P00 = StarSing : Red Hot Chili Peppers v1.0 CS7PZZ = StarSing : Amped Part. II v2.0 CS8P00 = StarSing : '90s Volume 1 v2.0 CS8PZZ = StarSing : Disco-Funk v1.0 CS9P00 = StarSing : '80s Volume 2 v2.1 CS9PZZ = StarSing : Pop Hits 9 v1.0 CSAP00 = StarSing : '80s Volume 3 v2.1 CSAPZZ = StarSing : Best of Goldman v1.0 CSBP00 = StarSing : '90s Volume 2 v2.1 CSCP00 = StarSing : Michael Jackson v2.2 CSCPZZ = StarSing : Hottest Hits v2.0 CSDP00 = StarSing : Rocks! Volume 2 v2.0 CSDPZZ = StarSing : Boy Bands Vs. Girl Bands v2.0 CSEP00 = StarSing : Pop Hits 5 v1.3 CSFP00 = StarSing : Pop Hits 6 v1.3 CSGP00 = StarSing : Chansons Magiques de Disney v1.4 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = StarSing : Pop Hits 7 v1.3 CSJP00 = StarSing : Après-Ski Party v1.2 CSKP00 = StarSing : ABBA v1.1 CSLP00 = StarSing : Queen v2.0 CSMP00 = StarSing : Electro-Dancefloor Volume 1 v2.0 CSNP00 = StarSing : Electro-Dancefloor Volume 2 v2.0 CSOP00 = StarSing : Electro-Dancefloor Volume 3 v2.0 CSPP00 = StarSing : Linkin Park Live at Webster Hall New York v2.0 CSQP00 = StarSing : Muse v2.0 CSRP00 = StarSing : International Volume 3 v1.0 CSSP00 = StarSing : Après-Ski Party 2 v2.0 CSTP00 = StarSing : Depeche Mode v2.0 CSUP00 = StarSing : Pop Hits 8 v1.3 CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = StarSing : Génériques TV v2.0 CSYP00 = StarSing : Electro-Dancefloor Volume 4 v2.0 CSZP00 = StarSing : Glee Volume 1 v2.1 CT0P00 = StarSing : Pop Part. I v2.1 CT1P00 = StarSing : Pop Part. II v2.1 CT2P00 = StarSing : '80s Volume 1 v2.1 CT3P00 = StarSing : Anthems v2.1 CT4P00 = StarSing : Legends v2.1 CT5P00 = StarSing : Songs For My Jedi v2.0 CT6P00 = StarSing : Amped Part. I v2.1 CT7P00 = StarSing : Amped Part. II v2.1 CT8P00 = StarSing : Disco-Funk v2.0 CT9P00 = StarSing : Pop Hits 9 v1.3 CTAP00 = StarSing : Best of Goldman v2.0 CTBP00 = StarSing : Glee Volume 3 v1.0 CTCP00 = StarSing : Hottest Hits v2.0 CTDP00 = StarSing : Boy Bands Vs. Girl Bands v2.1 CTEP00 = StarSing : R&B v2.0 CTFP00 = StarSing : Rock Ballads v2.0 CTGP00 = StarSing : Take That v2.0 CTHP00 = StarSing : Summer Party v2.0 CTIP00 = StarSing : Rocks! Part. I v2.0 CTJP00 = StarSing : Rocks! Part. II v2.0 CTKP00 = StarSing : Pop Hits v2.0 CTLP00 = StarSing : Britney Spears v2.0 CTMP00 = StarSing : Shakira v1.1 CTNP00 = StarSing : Pop Hits 10 v1.3 CTOP00 = StarSing : The Beatles Volume 2 v2.0 CTPP00 = StarSing : Motown v2.0 CTQP00 = StarSing : Glee Volume 2 v1.0 CTRP00 = StarSing : International Volume 1 v1.0 CTSP00 = StarSing : International Volume 2 v1.0 CTTP00 = StarSing : '80s Volume 4 v1.0 CTUP00 = StarSing : Rihanna v1.0 CTVP00 = StarSing : Lady GaGa v1.0 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CVLE38 = Mario Kart: Victory Lane D01A = Wiimmfi Patcher D02A = Engine02 D03A = BrainSlug Wii D05A = Bash the Castle D06A = Bit Streamer D07A = BlisterBall D08A = Blob Wars: Metal Blob Solid D09A = Blobby Volley 2 Wii D0AA = MPlayer Wii Youtube D0BA = MPlayer Wii D0CA = Ocarina D0DA = MPlayer Dvdlib Edition D0EA = MPlayer Wii By Rodries D0FA = Signcheck D0GA = GCBoot D0HA = Memview D0IA = IOS Check D0JA = Open Sram Lang Modifier D0KA = WiiBServer D0LA = LibWiiGameLoad D0MA = Wiireader D0NA = lsusb D0OA = Move The Pussy Demo D0PA = Wiilax Minitro D0QA = Fission Engine Project D0RA = GRRLIB 4.0 Demo D0SA = OSDM-BAR D0TA = Homebrew Menu Demo D0UA = LibMii Example D0VA = The Scary Demo D0WA = Starfield Demo D0XA = Wire3D Demo D0YA = Something D0ZA = GRRLIB 4.3.0 Promote Intro D10A = cIOSFix D11A = ASCII Pong D12A = BuscaWiinas D13A = C-Dogs SDL D14A = Castles of Dr. Creep D15A = Wii Shop and IOS51 Installer D16A = Centipede D17A = Cobra Arcade D18A = Dump Espresso OTP D1LA = Blind D1PA = 1bit Invaders D1RA = MinimaLauncher D21A = Xroar D22A = cIOS222 installer D24A = 24 Points D26A = Wii2600 D29J01 = Monthly Nintendo Shop Demo May 2002 D2AA = Wii Deadly Cobra D2AJAF = Minna de Bouken! Family Trainer (Demo) D2BA = Jump N Bump D2CA = Wiiflow Advanced D2DA = Box2D Balls D2EA = Wiiflow Start Configurator D2GA = Wadinstallerbatch D2QA = Sqrxz 2 D2SE18 = Deca Sports 2 (Demo) D2ZA = Console Shooter D32J01 = Monthly Nintendo Shop Demo June 2002 D33A = Time Frack 2D D33J01 = Monthly Nintendo Shop Demo July 2002 D34J01 = Monthly Nintendo Shop Demo July 2002 D36A = cIOS36 installer D37A = WiiConnect D38A = cIOS38 installer D38J01 = Monthly Nintendo Shop Demo September 2002 D39A = Ctr Gts DacoTaco Edition D3DA = Time Frack 3D D3DE18 = Deca Sports 3 (Demo) D3JA = NDSLoad D3KA = Button Tester D3LA = BootMii Booter D3MA = Custom NAND Loader D3OA = cIOS USB 2 Installer D3QA = Sqrxz 3 D3WA = Warheads D40A = Luigi and the Island of Mystery D42A = ArianeB D43A = Wii Virtual Jaguar D43E01 = The Legend of Zelda: Ocarina of Time / Master Quest D43J01 = Zelda no Densetsu: Toki no Ocarina GC / Ura Zelda D43P01 = The Legend of Zelda: Ocarina of Time / Master Quest D43U01 = The Legend of Zelda: Ocarina of Time (Bonus Disc) D43W01 = The Legend of Zelda: Ocarina of Time / Master Quest D46A = Newo Escape D4BE08 = Resident Evil 4: Preview Disc D4BP01 = Resident Evil 4: Bonus Disc D4BP08 = Resident Evil Four Preview Disc D4BU01 = Resident Evil 4: Bonus Disc D4KA = Aleph WOne D4LA = Yawnd D4NA = Disc Dumper D4PA = DVD Dumper D4QA = Sqrxz 4 D4SA = USB Loader GUI FX D51A = IOS51 Update D52A = cboot252 D53J01 = Monthly Nintendo Shop Demo May 2003 D54A = cIOS Patchmii Installer D55A = PID Extractor D55J01 = Interactive Disc Catalog Summer 2003 D56A = Shopping Channel Fixer D56E01 = Interactive Multi-Game Demo Disc - Version 35 D56J01 = Pokémon Channel (Bonus Disc) D57A = Hijill GUI D57E01 = Interactive Multi-Game Demo Disc - Version 34 D58A = Priiloader HacksDen Edition D58E01 = Interactive Multi-Game Demo Disc - Version 33 D59A = TheUntitledProject D59E01 = Interactive Multi Game Demo Disc Version 32 D5AA = Alarmii D5BA = WiiFont D5CA = cLoader D5FA = Txted Mod D5HA = Title Lister D5JA = Tidy Up D5LA = Switchtosneek D5RA = Botoning D60A = Ultimate USB Loader D61A = Sand Traps Extra Levels D62A = Newo Puzzle D62E01 = Interactive Multi-Game Demo Disc - Version 31 D63A = 3D Maze D63E01 = Interactive Multi-Game Demo Disc - Version 30 D64A = Wii64 Emulator D64E01 = Interactive Multi-Game Demo Disc - Version 29 D65A = Transitory Vectors D65E01 = Interactive Multi Game Demo Disc Version 28 D65P01 = Interactive Multi-Game Demo Disc - December 2002 D66A = Secret Maryo Chronicles D66E01 = Interactive Multi-Game Demo Disc - Version 27 D67E01 = Interactive Multi-Game Demo Disc - Version 26 D67J01 = Monthly Nintendo Shop Demo December 2003 D68A = TheyDoNotDie2 D68E01 = Interactive Multi-Game Demo Disc - Version 25 D68J01 = Monthly Nintendo Shop Demo January 2004 D69A = IOS60 Installer D69E01 = Interactive Multi-Game Demo Disc - Version 24 D6AA = Pussieloader D6BA = Updatersafe D6DA = Savegame Manager Mod D6EA = Sneek FS Dumper D6FA = Anytitle Deleter Mod D6HA = AnyTitle Deleter Mod DB D6IA = DVD Info D6KA = AnyTitle Deleter DB D6MA = Banana Saves D6OA = DOP Shop D6QA = BootMii Checker D6TA = MiiPlayer D70A = Dungeon Crawl Stone Soup D71A = Panic in the Mushroom Kingdom D72A = Bfi D72E01 = Interactive Multi-Game Demo Disc - Version 23 D73E01 = Interactive Multi-Game Demo Disc - Version 22 D74E01 = Interactive Multi Game Demo Disc Version 21 D75E01 = Interactive Multi-Game Demo Disc - Version 20 D76E01 = Interactive Multi-Game Demo Disc - Version 19 D77E01 = Interactive Multi-Game Demo Disc - Version 18 D77P01 = Interactive Multi Game Demo Disc April 2006 D78A = Wii7800 D78E01 = Interactive Multi-Game Demo Disc - Version 17 D78J01 = Interactive Multi-Game Demo Disc - May 2004 D78P01 = Interactive Multi-Game Demo Disc - October 2005 D79A = Newo Defence D79E01 = Interactive Multi-Game Demo Disc - Version 16 D79P01 = Interactive Multi Game Demo Disc May 2005 D7AA = Action Replay Loader D7DA = Depanbrew D7GA = Channel Loader D7KA = RawkSD D7LA = Rumbler D7MA = IS Wad D7OA = Recovery Manager D7QA = Reboot D7SA = Childproof USB Loader D7TA = Power Mii Off D7VA = Power Off D7WA = Abbaye des Morts D7XA = NuGaSa D7YA = Resistor D81A = Newo Asteroids D82A = cIOS Patchmii Installer with Korean Disc Support D82E01 = Interactive Multi-Game Demo Disc - Version 15 D82J01 = Monthly Nintendo Shop Demo July 2004 D82P01 = Interactive Multi Game Demo Disc April 2005 D83A = Wii MFE Port D83E01 = Interactive Multi-Game Demo Disc - Version 14 D83P01 = Interactive Multi Game Demo Disc February 2005 D84A = Gambol D84E01 = Interactive Multi-Game Demo Disc - Version 13 D84P01 = Interactive Multi-Game Demo Disc - November 2004 D85A = Wii EDuke32 D85E01 = Interactive Multi-Game Demo Disc - Version 12 D85P01 = Interactive Multi Game Demo Disc July 2004 D86A = Firewii D86E01 = Interactive Multi-Game Demo Disc - Version 11 D86P01 = Interactive Multi-Game Demo Disc - May 2004 D87A = Tick Tock Boat Race D87E01 = Gamecube Preview Disc D87P01 = Interactive Multi-Game Demo Disc - March 2004 D88A = Quasi88 D88E01 = Interactive Multi-Game Demo Disc - Version 10 D88P01 = Interactive Multi-Game Demo Disc - November 2003 D89A = Wiimote Led Flasher D89E01 = Interactive Multi-Game Demo Disc - Version 9 D89J01 = Club Nintendo Original e-Catalog 2004 D89P01 = Interactive Multi-Game Demo Disc - September 2003 D8AA = Front SD ELF Loader D8BA = GameCube Homebrew Launcher D8CA = WiiSend D8DA = Menu D8EA = Gecko Loader D8FA = Shell D8JA = Calc D8QA = Brick OS D8RA = Lotto D8SA = Brainf**k D8UA = TCPLoader D8VA = Snort48 D8WA = Wiisixty D8XA = All In One Emuloader D8YA = Swissloader D8ZA = Tick Tock Zombie Shooter D91A = Jenny Thinks D92E01 = Interactive Multi-Game Demo Disc - Version 8 D92P01 = Interactive Multi Game Demo Disc June 2003 D93A = Wiiraytracer D93E01 = Interactive Multi-Game Demo Disc - Version 7 D93P01 = Interactive Multi Game Demo Disc April 2003 D94A = Nowhere D94P01 = Interactive Multi-Game Demo Disc - February 2003 D95A = RenderMii D95P01 = Interactive Multi-Game Demo Disc - December 2002 D96A = WiiMotionDemo D96P01 = Interactive Multi-Game Demo Disc - November 2002 D97A = Fire D98A = InstallMii D99A = System Channels Updater D9BA = Info D9CA = cIOS USB2 Installer D9FA = Dump D9GA = Wad Creator D9HA = WakeMiiUp D9IA = SNES9xGX Channel Installer D9KA = Txtread D9LA = Forwarder DA1A = Radianwars DA2A = Moonstone DA3A = Wiitch DA4A = arCard+Wii DA6A = Automatii DA7A = Astronomy DA8A = Beer Belly Bill 3 Grillieren DA9A = Achtung Wii Kurve DAAA = WiiNetPuzzle DAHA = Accio Hacks DALJ01 = Dairantou Smash Brothers DX (Demo) DAMA = MegaCodeDownloader DAPA = Map Maker DARA = Anyregion Changer DASA = Aspirin DASE4Q = Disney Epic Mickey (Demo) DATA = AnyTitle Deleter DATD = AnyTitle Deleter DAUEPZ = Country Dance (Demo) DAVA = Avoidance DAVE01 = Mystery Case Files: The Malgrave Incident (Demo) DAWA = Abuse Wii DAXE01 = The Legend of Zelda: Skyward Sword (Demo) DAXP01 = The Legend of Zelda: Skyward Sword (Demo) DB0A = Spitits DB2A = Mad Bomber DB3A = Squarez DB5A = mapbf DB7A = Blacks Dash DB9A = Robi DBAA = BowFishing Action DBBA = Balance Board Tools DBBE18 = Beyblade: Metal Fusion - Battle Fortress (Demo) DBCA = BootMii Configuration Editor DBDA = Bluedump DBGA = BlastGuy DBIA = Boot It DBKE69 = Boom Blox (Demo) DBKP69 = Boom Blox (Demo) DBLA = BlueMSX-wii DBMA = BootIOS DBPA = Balance Board Pro DBRA = WiiBrowser DBSA = BrawlStats DBTA = Bolt Thrower DBUA = Buttoncast DBWA = Reversmii DBXA = Biniax 2 DBZJ08 = Biohazard Zero: Trial Edition DC6A = Frodo (C64-network.org) DC7A = Calculate DCAA = Wiicasino DCAE18 = Calling (Demo) DCBA = CascadeBeneath DCCA = Christmascountdown DCDA = cIOS Downgrader DCEA = Cheat Manager DCFA = Coverfloader DCGA = Ctr-Gcs DCHA = Wiichatter DCHEAF = We Cheer (Demo) DCHJAF = We Cheer: Ohasta Produce ! Gentei Collabo Game Disc DCIA = cIOS Installer DCLA = Configurable USB Loader DCMA = Wiicm DCNA = Nandclean DCOA = Connectmii DCPA = Splatter Castle DCRA = CosmoRaketti DCSA = Cert.sys Extractor DCTA = Christmas-Type Adventure Time DCUA = cIOS Uninstaller DCVA = WiiColEm DCWA = WiiMC Channel Installer DCXA = ComixChannel DCYA = Cylinder Dodge DD2A = Double Dash Wii DD2P41 = Just Dance 2 (Demo) DD3A = Dario DD5A = Dcvg5k DD9A = Dungeons DDAA = Darkcorp DDBA = DOSBox Wii DDCA = d2x cIOS Installer DDDA = Disk Drive Lighter DDEA = WiiModder DDFA = Defendguin DDHA = Homebrew Disc Launcher DDIA = DiiLC DDLA = Disc Loader DDMA = DragonMedia Player DDOA = DOP-Mii DDRA = Wii Duplicated Channel Remover DDSA = DeSmuME DDVA = Devolution DDWA = DOP Mii Wiibrew Edition DDWE18 = Lost in Shadow - Press Disc (Demo) DDWX18 = Lost In Shadow - Best Buy (Demo) DE2A = Doubledown DE5A = Pictogrid DE7A = Commander Keen DE9A = Wii Bash DEAA = Headtracking Demo DEBA = Pong Breaker DEDA = Txted DEEA = Eeeek Eeeeek Hooooook DEFA = Fuse DEHA = Chess DEME = PunEmu DEPA = Pacman DERA = Elongated Reptile DETA = MPlayer TT DEWA = Wii Exhibit DEZP8P = Billy Hatcher and the Giant Egg (Demo) DF0A = Mini FSToolbox DF2A = Da ShAmAn DF3A = Briickout DF4A = Star Catching DF5A = Strobe Alarm Clock DF6A = Wii Quizz DF7A = Chatnoir DF8A = Trinary DF9A = Chunk Munch DFBA = Fsbrowser DFEA = FlipEm DFFA = Simple fs dumper DFGA = Smashing! DFIA = Fceugx Channel Installer DFLA = Starfall DFMA = FMyLife DFRA = FridgeMagnets DFSA = Fstoolbox DFTA = FTPii DFUA = Fuse DG3A = Giddy 3 DG7A = WiiPeng DG8A = Abusimbel Deluxe DG9A = Garnatron DGBA = Geexbox DGCA = GameCube Backup Launcher DGEA = GeckoOS DGFA = Guitars On Fire DGGA = Wii Rick Dangerous DGIA = Gravitii DGKA = ProjectGMC DGMA = GCMM DGPA = Genesis Plus DGSA = Shooting Gallery DGWA = Goodbye World DGXA = GxGeo DH7A = Harmony's Nightmare DH9A = Prophecy DHBA = Homebrew Browser DHCA = Hero City DHDA = Hidtest DHEA = Helium Boy DHFA = Homebrew Filter DHGA = HuGo-GX DHHA = HHexen DHHJ8J = Hirano Aya Premium Movie Disc from Suzumiya Haruhi no Gekidou DHIA = HackMii Installer DHKE18 = Help Wanted: 50 Wacky Jobs (Demo) DHLA = Heli DHMA = CharioMan DHSA = Homebrew Sorter DHTA = Hatari DHWA = We are nowhere DHXA = Hex DI5A = Tanks DI7A = ExistenzE DI8A = Ios58 Installer DI9A = Barrage DIBA = Revolt of the Binary Couriers DICA = Cubic DIEA = EasyIOS DIGA = Categorii DIIA = iiii DIMA = Inspectmii DINA = Mii Installer DIRA = Ironing Maiden DISA = Wii Supersonic DITA = IOS236 Installer DIXA = cIOSx installer DIYP01 = New Super Mario Bros. Wii 0-4 D.I.Y. DJAA = Arcade Jigsaw DJCA = Wii JellyCar DJFA = Joyflow DJJA = Jumping Jack DJQA = Jewel Quest DJWA = Wii System Menu DJZA = JzintvWii DK1A = Karaokii DK3A = Sketch Fight DK4A = Drawingbox DK6A = King of Fighters: Flames of Courage DK6E18 = Marble Saga Kororinpa (Demo) DK6J18 = Kororinpa 2 (Demo) DK7A = Uschtris DKBA = RPG Baker DKCA = Tick Tock Car Race DKCP01 = Darky Kart Riivo DKDA = Darkcube DKHA = Katakana and Hiragana Practice DKKA = Koreankii DKOA = Komopong DKPA = Kidspaint DKSA = Wii Stpp DKTA = Taiko DKWA = Kurushi DKWE01 = Darky Kart Wii Vol. 1 DKWE02 = Darky Kart Wii Vol. 2 DKWE03 = Darky Kart Wii Vol. 3 DKWE04 = Darky Kart Wii Vol. 4 DL3A = Ballion DL4A = LPairs DL5A = Gameload DL7A = LabClone DLBA = My Little Ball DLCA = Dance Clone DLDA = Devilock DLEA = Preloader DLFA = LifeMii DLGA = Gravity Glider DLIA = WiiMod Lite DLLA = Lolicopocalypse DLMA = LoadMii DLNA = Lander DLOA = Lightsout DLPA = Lopan DLSE64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLSP64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLTA = Leveltool DLUA = WiiLauncher DLXA = Linux Installer DLZEPW = Super Smash Bros Phoenix Wings DM0A = Pom DM5A = Missle Command DM7A = Matches DM9A = Checkregion DMAA = Mame Wii DMBA = Multiboot DMCA = Cleanrip mod DMDA = WiiMod DMEA = Mii Extractor DMFA = WiiMednafen DMGA = Mighty Channels DMHA = NanoMechas DMHE08 = Monster Hunter Tri (Demo) DMHJ08 = Monster Hunter Tri (Demo) DMIA = DIOS MIOS Booter DMJA = Mahjongg Wii DMKE01 = Mario Kart Wii 2 DMLA = Mighty Loader DMMA = MyMenuify DMNA = Magic Number DMOA = cMIOS installer DMPA = MPlayer CE DMRA = MIOS Patcher DMSA = ShutMiiReboot DMSP4Q = Sing It Star e la Magia Disney DMTA = Metronome DMUA = Multi Mod Manager DMWA = Wakemiiup DN0A = Thatother DN7A = Alien Breed DN9A = Point and No Click DNAA = Ncard DNCA = NeoCD-Wii DNDA = Nintendont DNEA = Gravity DNGA = NeoGamma Launcher DNHA = Headings DNIA = Bugin DNKA = Neko Project II DNMA = Newo Model Viewer DNNA = Save installer DNOA = O.T.T.F. DNPA = NeoPopWii DNRA = Newo Runner DNSA = Newo Shooter DNTA = NeoTanks DNUEDA = Naruto Clash of Ninja 2 (Demo) DNWA = Nowell DO2A = O2EM DO3A = Three Point O DO4A = MTP DO5A = Planet Hively DO6A = Mini MP3 Player DOCA = Code Downloader DOEA = ShowTest DOGA = Wii Maze of Galious DOHA = HighOctane DOIA = Neogamma IOS Switcher DOMA = Mole DONA = Offline Network Enabler DOOA = Doom DOPA = PowerCheck DORA = Rebooter DOTA = OpenTTD DP0A = Starplit DP1A = Italian Parking DP2A = Pong2 DP3A = Inkpoly DP4A = Piirates DP5A = Pix DP6A = IOS36 patcher DP7A = Brawl+ Updatifier DP8A = Timeless DP9A = Alien Puzzle Wii DPAA = WiiPaintBall DPBA = Priibootergui DPCA = Cherophobe DPEA = PieChart DPFA = Pwiictogrid DPGA = Pingus DPIA = Patched IOS 80 Installer for vWii DPIE18 = Oops! Prank Party (Demo) DPJA = Project M Launcher DPKA = Physco DPLA = Priiloader DPMA = Music Painter DPNA = RPG Pineapple Apocalypse DPNP08 = P.N.03 (Promo) DPOA = Postloader DPPA = Project Panic DPRA = PlasmaRaketti DPSA = Playstats DPTA = Two Point Five DPVA = Pattview DPWA = Pimp my Wii DQ1A = Q1rev DQ2A = Q2rev DQ6A = Light DQ7A = Quake DQ8A = LuaFWii DQ9A = Wiihttpd DQAJK2 = Aquarius Baseball DQAJSC = Aquarius Baseball (Simplified Chinese Translation) DQBA = Bible Quiz DQCA = Q2ctfrev DQGP69 = MySims Racing (Demo) DQRA = Qrevpak DQWA = Quakegx DR0A = Rokoban DR1A = Wii Whiteboard DR3A = Death Star Run DR4A = Rock Paper Scissors DR5A = Briicks DR6A = Reader DR7A = RockBlueMet DR8A = Operation DR9A = PixelPlot DRAA = RetroArch-Wii DRBA = Rock Band 2 Wad Installer DRCA = Wiicross DRDA = Drawmii DREA = Wiirecipe DRFA = Radiofeeds DRGA = Reggie Dumper DRIA = Cleanrip DRKA = Robotfindskitten DRMA = Mr. Sitwell DRME18 = Rooms: The Main Building (Demo) DROA = SlimeRoll DRP22Q = SingItStar Deutsch Rock-Pop Vol. 2 DRPA = Marcos Lopez Part II DRRA = Riiper DRSA = RedSquare DRTA = Tetris Custom DRUA = Radiofeeds Updater DRVA = Residualvm DRWA = Winterman DRZA = Zerace DS0A = ShootMii DS1A = Another Rock Paper Scissors DS2A = Swingball2 DS3A = Senet DS4A = Sar DS5A = Snaketwo DS6A = Scogger DS7A = Swing Ball DS8A = Scape DS9A = Minesweeper DSAA = Schism Tracker DSBA = SpaceBubble DSCA = Softchip DSDA = Superdump DSEA = Settings Editor GUI DSFA = Sciifii DSFE7U = Muramasa: The Demon Blade (Demo) DSGA = Savegame Manager DSHA = SysCheck HacksDen Edition DSIA = Simple IOS Patcher DSKA = SockDreams DSLA = Wii Stella DSMA = Sega Master System Plus DSNA = SNES9xGX DSOA = Bermuda Syndrome Wii DSPA = Super Star Shooter DSQA = Sqrxz DSRA = Wiistrobe DSRJ8P = Sonic and the Secret Rings (Demo) DSSA = RSSMii DSTA = Wii Solitaire DSUA = Super Mario War DSVA = scummVM DSWA = SuperTux Wii DSXA = Super Pixel Jumper DSYA = Syscheck DT0A = Tower Defense DT1A = Turnip DT2A = Matching Cards DT3A = Bichejos DT4A = Soduku DT5A = Poker DT6A = Simon DT7A = TheyDoNotDie DTAA = Wii Tac Toe DTCA = The Catachthonic DTDA = Descent DTEA = Topedit DTFA = Triiforce DTHA = Heretic DTIA = Wiitriis DTJA = Trojan DTKA = Tick Tock Tank Fight DTLA = TailTale DTLX01 = Action Replay DTMA = Tetrominos DTNA = Tunnel DTOA = Tong DTPA = Paintown DTRA = Trucha Bug Restorer DTSA = Desert Bus DTTA = Toddtris DTWA = Wiitweet DTXA = Texttris DU0A = Dumpmiinand DU7A = Uno DU8A = RealWnd DU9A = Harmonium DUAA = UAE Wii DUAP01 = DU Super Mario Bros. : Anniversary Edition DUBA = Multibu DUCE01 = Kustom Mariokart Wii DUDA = Duck Hunt DUDE01 = New Super Mario Bros. Wii Scooby-Doo! Hack DUGA = Guitar Fun DUIA = ChessUI DULA = USB Loader GX DUNA = Uname DUSA = bootOperaModUSB DUTG = DU Tag Channel DUWA = Waninkoko's USB Loader DV0A = Remove Preloader Hacks DV3A = DVD Browser DV9A = SensorMii DVDA = cIOS DVD Dumper DVGA = The Video Game DVHA = Horror Vacui DVIA = Vbagx Channel Installer DVJP08 = Viewtiful Joe (Promotional demo) DVLA = Vigiroth le livreur DVNA = Wiivnc DVOA = Vectoroids DVPA = Progressiveswitch DVSA = GameCube Saver DVXA = VectrexWii DW1A = Intuitwars DW5A = Marel DW6A = Wiicraft DW7A = Ravewild DWAA = WiiApple DWBA = WiirtualBoy DWCA = WiiFlow Channel Installer DWDA = Wiiflow Banner Downloader DWEA = WiiEarth DWEPA4 = Pro Evolution Soccer 2008 (Demo) DWFA = WiiFlow DWHA = WiiHandySDL DWJA = Jewel DWKA = Wiibreaker DWLA = Wii-Linux DWMA = WAD Manager DWNA = Nwancat DWPA = WiiPhysics DWRA = WiiRadio DWSA = WiiSX DWTA = Wiituka DWUA = Wufe DWWA = Winters End DWXA = WiiXplorer DX3A = Midway Space Invaders Emulator DX4A = Brawl DX Launcher DX5A = MP3+G Player DX6A = Build Blocks DX7A = Roxoptr2 DX8A = Hexen DX9A = Sand Traps DXBA = Wii X Ball DXCA = CorsixTH DXDA = DVDX DXEA = SDExplorer DXHA = Texas Holdem Poker DXIA = Piixelator DXLA = WiiXL DXNA = bootnetflix DXPA = Xeempongwii DXQA = Quadrax DXSA = Save extractor DXSE18 = Deca Sports (Demo) DXTA = The Lone Pixel DXXA = Hexxagon DXYA = xyzzy DXZA = Megazeux DY5A = Darkcorp Lite DY6A = Liqwiid Wars DY9A = TetWiis DYAA = Syasokoban DYBA = Yabause DYCA = Tetricycle DYEA = Epilepsii DYGA = Yog DYHA = Hypno Blast DYIA = Chippy DYMA = YAWMM DYOA = Toy Wars DYPA = PongYourWii DYSA = Shiny tank DYTA = Newo Tokyo DYUA = UFO Racer DYWA = Yahtzwii DYYA = System Setting Replace Tool DZ0A = Eject DZ7A = SameGame DZ8A = WiiMPC DZ9A = Teeter Torture DZDE01 = The Legend of Zelda: Twilight Princess (Demo) DZDP01 = The Legend of Zelda: Twilight Princess (Demo) DZIA = Ziip DZPA = Puzsion DZQA = Quizz DZRA = Rezerwar DZSA = Szigoy DZXA = FBZX Wii DZYA = Snake Two DZZA = OpenJazz E52E = 1942 E52J = 1942 E52P = 1942 E53E = Black Tiger E53J = Black Dragon E53P = Black Tiger E54E = Ghosts 'n Goblins E54J = Makaimura E54P = Ghost'n Goblins E55E = Commando E55J = Senji no Ookami E55P = Commando E56E = Exed Exes E56J = Exed Eyes E56P = Exed Exes E57E = SonSon E57J = Son Son E57P = SonSon E58J = Mr. Do! E59J = Karate Dou E5AJ = Ikki E5BJ = Shanghai E5VJ = Renegade E5WE = Wonder Boy in Monster Land E5WJ = Wonder Boy in Monster Land E5XJ = Puyo Puyo Tsu E5YJ = Puyo Puyo E5ZE = Super Hang-On E5ZJ = Super Hang-On E62E = Space Harrier E62J = Space Harrier E62P = Space Harrier E63E = Shinobi E63J = Shinobi Virtual Arcade E63P = Shinobi E64J = Rolling Thunder 2 E65J = Valkyrie no Densetsu E66J = Ordyne E67J = Dig Dug E68J = Galaga E69J = Baraduke E6AJ = Moon Cresta E6BJ = Crazy Climber E6CJ = Rompers E6DJ = Toy Pop E6EJ = Libble Rabble E6FJ = Galaxian E6GJ = Namco Quester E6HJ = Face Off E6IJ = Trink Force E6JJ = Bakutotsu Kijuutei: BaRaDuKe II E6KJ = Chouzetsu Rinjin - Berabow Man E6LJ = Marchen Maze E6ME = Tecmo Bowl E6MJ = Tecmo Bowl E6NE = Solomon's Key E6NJ = Solomon no Kagi E6NP = Solomon's Key E6OJ = Bomb Jack Arcade E6PE = Ninja Gaiden E6PJ = Ninja Ryukenden Arcade E6PP = Ninja Gaiden E6QE = Rygar E6QJ = Argos no Senshi E6QP = Rygar E6SJ = New Rally-X E6VE = Zaxxon 3-D E6VJ = Zaxxon E6VP = Zaxxon E6WE = Golden Axe E6WJ = Golden Axe E6WP = Golden Axe E6XE = Altered Beast E6XP = Altered Beast E6YJ = Space Invaders E6ZE = Starforce E6ZJ = Star Force E6ZP = Star Force E72J = Starblade E73E = Mappy E73J = Mappy E73P = Mappy E74J = Cosmo Gang the Puzzle E75J = Genpei Toumaden E76J = Emeraldia E77J = The Return of Ishtar E78J = Solvalou E79E = Gaplus E79J = Gaplus E79P = Gaplus E7AJ = Grobda E7BJ = Dig Dug II E7CJ = Bosconian E7EJ = Dragon Buster E7FJ = Dragon Saber E7GJ = Dragon Spirit E7HJ = Xevious E7IJ = Finest Hour E7JJ = Knuckle Heads E7KJ = Pac-Mania E7LJ = Cosmo Gang the Video E7MJ = Phelios E7NJ = Rolling Thunder E7OJ = Burning Force E7PJ = Marvel Land E7QJ = Galaga '88 E7RJ = Wonder Momo E7SJ = Assault E7TJ = Hopping Mappy E7UJ = Splatterhouse E7VJ = Cyber Sled E7WJ = Numan Athletics E7XJ = Youkai Douchuki E7YJ = Sky Kid E7ZE = The Tower of Druaga E7ZJ = Druaga no Tou E7ZP = The Tower of Druaga EA2E = Metal Slug 2 EA2J = Metal Slug 2 EA2P = Metal Slug 2 EA3J = Galaxy Fight: Universal Warriors EA4E = Samurai Showdown III EA4J = Samurai Spirits Kibeniro Musouken EA4P = Samurai Shodown III EA5E = Fatal Fury 3: Road to the Final Victory EA5J = Garou Densetsu 3: Road to the Final Victory EA5P = Fatal Fury 3: Road To The Final Victory EA6E = The King of Fighters '96 EA6J = The King of Fighters '96 EA7E = Samurai Shodown IV: Amakusa's Revenge EA7J = Samurai Spirits: Amakusa Kourin EA8E = Ironclad EA8J = Ironclad: Chotetsu Brikinger EA8M = Iron Clad EA9J = Waku Waku 7 EAAE = Fatal Fury EAAJ = Garou Densetsu: Shukumei no Takatai EAAP = Fatal Fury EABE = World Heroes EABJ = World Heroes EABP = World Heroes EACE = Magician Lord EACJ = Magician Lord EACP = Magician Lord EADE = Art of Fighting EADJ = Ryuuko no Ken EADP = Art of Fighting EAEE = Samurai Showdown EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen EAEP = Samurai Showdown EAFE = Blue's Journey EAFJ = Raguy EAFP = Blue's Journey EAGE = The King of Fighters '94 EAGJ = The King of Fighters '94 EAGP = The King of Fighters '94 EAHE = Baseball Stars 2 EAHJ = Baseball Stars 2 EAHP = Baseball Stars 2 EAIE = Top Hunter EAIJ = Top Hunter EAIP = Top Hunter EAJE = Metal Slug EAJJ = Metal Slug EAJP = Metal Slug EAKE = Burning Fight EAKJ = Burning Fight EAKP = Burning Fight EALE = Art of Fighting 2 EALJ = Ryuuko no Ken 2 EALP = Art of Fighting 2 EAME = Ninja Combat EAMJ = Ninja Combat EAMP = Ninja Combat EANE = Fatal Fury 2 EANJ = Garou Densetsu 2: Aratanaru Tatakai EANP = Fatal Fury 2 EAOE = King of the Monsters EAOJ = King of the Monsters EAOP = King of the Monsters EAPE = Ninja Commando EAPJ = Ninja Commando EAPP = Ninja Commando EAQE = WORLD HEROES 2 EAQJ = World Heroes 2 EARE = Neo Turf Masters EARJ = Neo Turf Masters EARP = Neo Turf Masters EASE = Samurai Showdown 2 EASJ = Shin Samurai Spirits Haoumaru Jigokuhen EASP = Samurai Shodown II EATE = WORLD HEROES 2 JET EATJ = World Heroes 2 Jet EAUJ = Twinkle Star Sprites EAVE = The King of Fighters ’95 EAVJ = The King of Fighters '95 EAVP = The King of Fighters '95 EAWE = Fatal Fury Special EAWJ = Garou Densetsu Special EAWP = Fatal Fury Special EAYJ = King of The Monsters 2 EAZE = WORLD HEROES PERFECT EAZJ = World Heroes Perfect EB2E = REAL BOUT FATAL FURY SPECIAL EB2J = Real Bout Garou Densetsu Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB6E = Metal Slug 3 EB6J = Metal Slug 3 EB6P = Metal Slug 3 EB7J = The Super Spy EB8E = SHOCK TROOPERS EB8J = Shock Troopers EB9J = Pulstar EBAE = Magical Drop II EBAJ = Magical Drop 2 EBAP = Magical Drop II EBBE = Fighters History Dynamite EBBJ = Fighter's History Dynamite EBBP = Karnov's Revenge EBCJ = Flying Power Disc EBDE = Magical Drop III EBDJ = Magical Drop III EBDP = Magical Drop 3 EBEE = Street Slam EBEJ = Dunk Dream EBEP = Street Hoop EBFE = Spin Master EBFJ = Miracle Adventure EBFP = Spin master EBGE = The King of Fighters '97 EBGJ = The King of Fighters '97 EBKJ = Last Resort EBLJ = Tsuukai GanGan Koushinkyoku EBMJ = Fire Suplex EBNJ = Fu'un Mokushiroku: Kakutou Sousei EBOJ = Fu'un Super Tag Battle EBPJ = League Bowling EBQE = NINJA MASTER'S EBQJ = Ninja Master's Haou Ninpou-chou EBRJ = Joy Joy Kid EBSE = The Path of the Warrior: Art of Fighting 3 EBSJ = Art of Fighting: Ryuuko no Ken Gaiden EBTJ = Crossed Swords EBUE = 2020 SUPER BASEBALL EBUJ = Super Baseball 2020 EBVJ = Shin-Oh-Ken EBWE = SENGOKU EBWJ = Sengoku Denshou EBXE = SENGOKU 2 EBXJ = Sengoku 2 EBZE = REAL BOUT FATAL FURY EBZJ = Real Bout Garou Densetsu ECAE = Real Bout Fatal Fury 2: The Newcomers ECAJ = Real Bout Garou Densetsu 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECDJ = Stakes Winner: G1 Kanzen Seihahe no Michi ECEE = THE LAST BLADE 2 ECEJ = Bakumatsu Rouman Dai Ni Maku: Gekka no Kenshi ECFJ = Blazing Star ECGE = Shock Troopers: 2nd Squad ECGJ = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECJE = The King of Fighters '99 ECJJ = Metal Slug 4 ECKE = NAM-1975 ECKJ = NAM-1975 ECLJ = Stakes Winner 2 ECMJ = Tokuten Oh: Honoo no Libero ECNE = Sengoku 3 ECNJ = Sengoku Denshou 2001 ENDP01 = New SUPER MARIO BROS. Wii 20 The End For Now EVOP01 = New Super Mario Bros. Wii 0-5 Evolution FA2J = Exerion FA3J = Formation Z FA4J = Devil World FA4P = Devil World FA5J = Fire Emblem: Ankoku Ryu to Hikari no Tsurugi FA6E = Donkey Kong Jr. Math FA6J = Donkey Kong Jr. no Sansuu Asobi FA6P = Donkey Kong Jr. Math FA7E = Yoshi FA7J = Yoshi no Tamago FA7K = Yoshi FA7P = Mario & Yoshi FA8E = Kirby's Adventure FA8F = Kirby's Adventure FA8J = Hoshi no Kirby: Yume no Izumi no Monogatari FA8K = Kirby's Adventure FA8P = Kirby's Adventure FA9E = Zelda II: The Adventure of Link FA9J = The Legend of Zelda 2: Link no Bouken FA9P = Zelda II: The Adventure of Link FAAE = Donkey Kong FAAJ = Donkey Kong FAAK = Donkey Kong FAAP = Donkey Kong FABE = Donkey Kong Jr. FABJ = Donkey Kong Jr. FABP = Donkey Kong Jr. FACE = Pinball FACJ = Pinball FACP = Pinball FADJ = Gomoku Narabe Renju FAFE = Mario Bros. FAFJ = Mario Bros. FAFK = Mario Bros. FAFP = Mario Bros. FAGE = Super Mario Bros. FAGJ = Super Mario Bros. FAGK = Super Mario Bros. FAGP = Super Mario Bros. FAHE = Tennis FAHJ = Tennis FAHP = Tennis FAIE = Soccer FAIJ = Soccer FAIP = Soccer FAJE = Ice Hockey FAJJ = Ice Hockey FAJP = Ice Hockey FAKE = The Legend of Zelda FAKJ = Zelda no Densetsu FAKK = The Legend of Zelda FAKP = The Legend of Zelda FALE = Baseball FALJ = Baseball FALP = Baseball FAME = Wario's Woods FAMJ = Wario no Mori FAMP = Wario's Woods FANE = Urban Champion FANJ = Urban Champion FANK = Urban Champion FANP = Urban Champion FAOE = Solomon's Key FAOJ = Solomon no Kagi FAOP = Solomon's Key FAPE = NES Open Tournament Golf FAPJ = Mario Open Golf FAPK = NES Open Tournament Golf FAPP = NES Open Tournament Golf FAQJ = Ninja Jajamaru-kun FAQL = Ninja JaJaMaru-kun FAQN = Ninja JaJaMaru-kun FARE = Gradius FARJ = Gradius FARP = Gradius FASE = Xevious FASJ = Xevious FASK = Xevious FASP = Xevious FATE = The Legend of Kage FATJ = Kage no Densetsu FAVE = Tecmo Bowl FAVJ = Tecmo Bowl FAWE = Elevator Action FAWJ = Elevator Action FAXE = Pac-Man FAXJ = Pac-Man FAXK = Pac-Man FAXP = Pac-Man FAYJ = Ikki FAZJ = Field Combat FAZK = Downtown Nekketsu Koushinkyoku: Soreyuke Daiundoukai FB2J = Super Mario Bros. 2 FB2L = Super Mario Bros.: The Lost Levels FB2N = Super Mario Bros.: The Lost Levels FB3J = Valkyrie no Bouken: Toki no Kagi Densetsu FB4E = Lunar Pool FB4J = Lunar Ball FB4P = Lunar Pool FB5E = Zanac FB5J = Zanac FB6J = Front Line FB7J = Nuts & Milk FB8J = Challenger FB9J = Pooyan FBAJ = Smash Ping Pong FBAL = Smash Table Tennis FBBE = Mach Rider FBBJ = Mach Rider FBBP = Mach Rider FBCE = Excitebike FBCJ = Excitebike FBCP = Excitebike FBDE = Kid Icarus FBDJ = Hikari Shinwa: Palutena no Kagami FBDK = Kid Icarus FBDP = Kid Icarus FBEE = Ice Climber FBEJ = Ice Climber FBEP = Ice Climber FBHE = Castlevania FBHJ = Akumajou Dracula FBHP = Castlevania FBIE = Punch Out!! Featuring Mr. Dream FBIJ = Punch-Out!! FBIP = Punch-Out!! FBJE = Mighty Bomb Jack FBJJ = Mighty Bomb Jack FBJP = Mighty Bomb Jack FBKE = Teenage Mutant Ninja Turtles FBKJ = Gekikame Ninja Den FBKP = Teenage Mutant Ninja Turles FBLE = Lode Runner FBLJ = Lode Runner FBLM = Lode Runner FBNE = Ninja Gaiden FBNJ = Ninja Ryuukenden FBNM = Ninja Gaiden FBOJ = Gradius II FBQJ = Druaga no Tou FBRE = Galaga FBRJ = Galaga FBRK = Galaga FBRP = Galaga FBSE = Milon's Secret Castle FBSJ = Meikyuu Kumikyoku: Milon no Daibouken FBSM = Milon's Secret Castle FBUE = Adventures of Lolo FBUJ = Adventures of Lolo FBUK = Adventures of Lolo FBUP = Adventures of Lolo FBVJ = Tsuppari Oozumou FBWJ = Joy Mech Fight FBWK = Joy Mech Fight FBXJ = Famicom Wars FBYE = Super Mario Bros. 2 FBYJ = Super Mario USA FBYK = Super Mario USA FBYP = Super Mario Bros. 2 FBZE = Metroid FBZJ = Metroid FBZP = Metroid FC2J = Hanjuku Hero FC3E = Bubble Bobble FC3J = Bubble Bobble FC3K = Bubble Bobble FC3P = Bubble Bobble FC4J = Chack'n Pop FC5J = Ganbare Goemon Karakuki Douchuu FC6E = StarTropics FC6J = Startropics FC6P = StarTropics FC7E = NES Play Action Football FC7J = NES Play Action Football FC8E = Castlevania II Simon's Quest FC8J = Dracula II: Noroi no Fuuin FC8P = Castlevania II: Simon's Quest FC9J = Metal Slader Glory FCAE = Star Soldier FCAJ = Star Soldier FCEJ = Esper Dream FCEU = FCE Ultra GX FCFJ = Yie Ar Kung Fu FCGJ = TwinBee FCHJ = Flappy FCIJ = Volguard 2 FCJJ = SD Gundam World: Gachapon Senshi 2 - Capsule Senki FCNJ = Kekkyoku Nankyoku Daibouken FCNK = Antarctic Adventure FCOJ = Battle City FCPE = Balloon Fight FCPJ = Balloon Fight FCPP = Balloon Fight FCQE = Ninja Gaiden II: The Dark Sword of Chaos FCQJ = Ninja Gaiden Two FCRE = Adventure Island FCRJ = Takahashi Meijin no Boukenjima FCRK = Hudson's Adventure Island FCRP = Adventure Island FCSE = Super C FCSJ = Super Contra FCSP = Probotector II: Return of the Evil Forces FCTE = Mega Man FCTJ = RockMan FCTP = Mega Man FCUE = Volleyball FCUJ = Volleyball FCUP = Volleyball FCVE = Wrecking Crew FCVJ = Wrecking Crew FCVP = Wrecking Crew FCWE = Super Mario Bros. 3 FCWJ = Super Mario Bros. 3 FCWK = Super Mario Bros. 3 FCWP = Super Mario Bros. 3 FCYE = Yoshi’s Cookie FCYJ = Yoshi no Cookie FCYK = Yoshi's Cookie FCYP = Yoshi’s Cookie FCZE = King's Knight FCZJ = Kings Knight FD2E = Double Dragon FD2J = Double Dragon FD2P = Double Dragon FD3J = Nekketsu Koukou Dodgeball-bu Soccer-hen FD3K = Nekketsu Koukou Dodgeball-bu Soccer-hen FD6E = Adventures of Lolo 2 FD6P = Adventures of Lolo 2 FD7E = Mega Man 3 FD7J = RockMan 3: Dr. Wily no Saigo?! FD7P = Mega Man 3 FDAE = Spelunker FDAJ = Spelunker FDAM = Spelunker FDBJ = Famicom Mukashi Banashi: Shin Onigashima - Kouhen FDCJ = Star Luster FDEJ = Mappy FDFE = Bases Loaded FDFJ = Moero!! Pro Yakyuu FDGE = Ghosts'n Goblins FDGJ = Makai-Mura FDGP = Ghosts'n Goblins FDIJ = Bokosuka Wars FDLE = Ninja Gaiden III: The Ancient Ship of Doom FDLJ = Ninja Gaiden Three FDNE = Mega Man 2 FDNJ = RockMan 2 FDNP = Mega Man 2 FDOE = Operation Wolf FDOJ = Operation Wolf FDOP = Operation Wolf FDPE = Blades of Steel FDPP = Blades of Steel FDQE = Double Dribble FDQP = Double Dribble FDRP = Skate or Die FDSJ = Famicom Tantei Club: Kieta Koukeisha (Kouhen) FDTE = Renegade FDTJ = Renegade FDUE = Super Dodge Ball FDUJ = Nekketsu Koukou Dodge Ball Bu FDVE = River City Ransom FDVJ = Downtown Nekketsu Monogatari FDVK = Downtown Nekketsu Monogatari FDVP = Street Gangs FDWJ = Downtown Special: Kunio-kun no Jidaigeki Dayo Zenin Shuugou! FDXJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo (Kouhen) FDYJ = Fire Emblem Gaiden FDZJ = Downtown Nekketsu Koushinkyoku FE5J = Toukaidou Gojuusan Tsugi FE6J = Ninja kun Majyou no Bouken FE7J = Ninja kun Ashura no Shou FE8J = Takeshi no Chousenjou FE9J = Ike Ike! Nekketsu Hockey-bu: Subette Koronde Dairantou FECE = Skykid FECJ = Sky Kid FEDJ = Dig Dug FEDL = Dig Dug FEDN = Dig Dug FEEJ = Tantei Jinguji Saburo: Shinjuku Chuo Koen Satsujin Jiken FEFJ = Detective Saburo Jinguji 2: Yokohama-Ko Renzoku Satsujin Jiken FEGJ = Tantei Jinguuji Saburo - Kikenna Futari - Zenkouhen FEHJ = Tantei Jinguuji Saburo: Toki no Sugiyuku Mama ni FEIE = City Connection FEIJ = City Connection FEIP = City Connection FEJJ = Nazo no Murasame Jou FELJ = Transformers: Convoy no Nazo FEMJ = Bio-Miracle Bokutte Upa FEML = Bio Miracle Bokutte UPA FEMN = Bio Miracle Bokutte UPA FENE = Life Force FENJ = Salamander FEOJ = Zoids: Mokushiroku FEPJ = Getsu Fuuma Den FEQE = Castlevania III: Dracula's Curse FEQJ = Akumajo Densetsu FEQP = Castlevania III Dracula's Curse FERE = Zoda’s Revenge: StarTropics II FERJ = Zoda's Revenge FERM = Startropics II: Zoda's Revenge FESE = Clu Clu Land FESJ = Clu Clu Land FESP = Clu Clu Land FEUE = Donkey Kong 3 FEUJ = Donkey Kong 3 FEUP = Donkey Kong 3 FEVJ = Atlantis no Nazo FEWJ = Dragon Buster FEXJ = Wagyan Land FF2J = Sugoro Quest: Dice no Senshi Tachi FF4E = BurgerTime FF4J = BurgerTime FF5E = Double Dragon II: The Revenge FF5J = Double Dragon 2: The Revenge FF6J = Ganbare Goemon 2 FF7J = Ganbare Goemon Gaiden: Kieta Ougon Kiseru FFAE = Final Fantasy FFAJ = Final Fantasy FFAM = Final Fantasy FFBJ = Final Fantasy II FFDE = Crash 'N The Boys Street Challenge FFDJ = Bikkuri Nekketsu Shin Kiroku! Harukanaru Kin Medal FFEE = A Boy and His Blob: Trouble on Blobolonia FFEP = A Boy and His Blob: Trouble on Blobolonia FFFJ = Final Fantasy III FFGJ = SD Gundam World: Gachapon Senshi - Scramble Wars FFJJ = Metal Max FFKJ = Championship Lode Runner FFLE = Princess Tomato in the Salad Kingdom FFLJ = Salad no Kuni no Tomato Hime FFME = Blaster Master FFMJ = Chou-Wakusei Senki MetaFight FFMP = Blaster Master FFNE = Mega Man 4 FFNJ = RockMan 4: Aratanaru Yabou!! FFNP = Mega Man 4 FFOJ = Moero TwinBee: Cinnamon Hakase o Sukue! FFPB = Ufouria: The Saga FFPJ = Furu Furu Park FFQE = Shadow of the Ninja FFQM = Shadow of the Ninja FFRE = Faxanadu FFRJ = Faxanadu FFRP = Faxanadu FFTJ = Binary Land FFUE = Adventure Island 2 FFUJ = Takahashi Meijin no Bouken Jima II FFUP = Adventure Island 2 FFVE = S.C.A.T. FFVP = S.C.A.T.: Special Cybernetic Attack Team FFWP = Donkey Kong: Edizione Originale FFXJ = 25th Anniversary SUPER MARIO BROS. FFXP = Super Mario Brothers: Edizione Esclusiva per il 25° Anniversario FFYE = Mega Man 5 FFYJ = RockMan 5: Blues no Wana!? FFZJ = Seicross FFZY = Contra FJOR = Kung Fu FMCA = The Goonies G01E01 = Super Smash Bros. Melee: SD Remix G01J01 = Super Smash Bros. Melee: SD Remix G01P01 = Super Smash Bros. Melee: SD Remix G02E01 = Super Smash Bros. Melee: 20XX Training Pack G02J01 = Super Smash Bros. Melee: 20XX Training Pack G02P01 = Super Smash Bros. Melee: 20XX Training Pack G2BE5G = Black & Bruised G2BP7D = Black & Bruised G2CD52 = True Crime: New York City G2CE52 = True Crime: New York City G2CP52 = True Crime: New York City G2CX52 = True Crime: New York City G2FD78 = Tak 2: The Staff of Dreams G2FE78 = Tak 2: The Staff of Dreams G2FF78 = Tak 2: The Staff of Dreams G2FP78 = Tak 2: The Staff of Dreams G2GJB2 = Mobile Suit Gundam: Gundam vs. Z Gundam G2KE8P = NHL 2K3 G2KP8P = NHL 2K3 G2ME01 = Metroid Prime 2: Echoes G2MEAB = Metroid Prime 3 (E3 Beta) G2MJ01 = Metroid Prime 2: Dark Echoes G2MP01 = Metroid Prime 2: Echoes G2OE41 = Prince of Persia: Warrior Within G2OP41 = Prince of Persia: Warrior Within G2PE6U = Spirits And Spells G2RE52 = Shrek SuperSlam G2SJGE = Shikigami no Shiro II G2TE52 = Tony Hawk's Underground 2 G2TP52 = Tony Hawk's Underground 2 G2VE08 = Viewtiful Joe 2 G2VJ08 = Viewtiful Joe 2: Blackfilm no Nazo G2VP08 = Viewtiful Joe 2 G2XE8P = Sonic Gems Collection G2XP8P = Sonic Gems Collection G3AD69 = Lord of the Rings: The Third Age G3AE69 = Lord of the Rings: The Third Age G3AF69 = Lord of the Rings: The Third Age G3AP69 = Lord of the Rings: The Third Age G3AS69 = Lord of the Rings: The Third Age G3BE9G = Serious Sam: Next Encounter G3BP54 = Serious Sam: Next Encounter G3BP9G = Serious Sam: Next Encounter G3DE6L = Carmen Sandiego: The Secret of the Stolen Drums G3DP6L = Carmen Sandiego: The Secret of the Stolen Drums G3DX6L = Carmen Sandiego: The Secret of the Stolen Drums G3EE51 = XGIII: Extreme G Racing G3EJ51 = XGIII: Extreme G Racing G3EP51 = XGIII: Extreme G Racing G3FD69 = TimeSplitters: Future Perfect G3FE69 = TimeSplitters: Future Perfect G3FF69 = TimeSplitters: Future Perfect G3FP69 = TimeSplitters: Future Perfect G3FS69 = TimeSplitters: Future Perfect G3JEAF = Curious George G3LE8P = Super Monkey Ball Adventure G3LP8P = Super Monkey Ball Adventure G3ME41 = Tom Clancy's The Sum of All Fears G3MP41 = The Sum of All Fears G3NJDA = NARUTO Gekitô Ninja Taisen! 3 G3QEA4 = Teenage Mutant Ninja Turtles 3: Mutant Nightmare G3RD52 = Shrek 2 G3RE52 = Shrek 2 G3RF52 = Shrek 2 G3RP52 = Shrek 2 G3SE41 = Bust-A-Move 3000 G3TJ8P = Derby Tsuku 3: Derby Uma O Tsukurou! G3VE69 = NBA Street Vol.3 G3VP69 = NBA Street Vol.3 G3XE52 = X-Men: The Official Game G3XP52 = X-Men: The Official Game G3YP52 = Shrek Super Slam G3YX52 = Shrek Super Slam G3YY52 = Shrek Super Slam G4AEE9 = Harvest Moon: Magical Melody G4BE08 = Resident Evil 4 G4BJ08 = Biohazard 4 G4BP08 = Resident Evil 4 G4CE54 = Charlie and the Chocolate Factory G4CP54 = Charlie and the Chocolate Factory G4FD69 = FIFA 07 G4FE69 = FIFA Soccer 07 G4FF69 = FIFA 07 G4FP69 = FIFA 07 G4GEE9 = Harvest Moon: Another Wonderful Life G4IE52 = Shrek Smash n' Crash Racing G4IP52 = Shrek Smash n' Crash Racing G4ME69 = The Sims Bustin' Out G4MP69 = The Sims: Fuori Tutti G4NJDA = NARUTO Gekitô Ninja Taisen! 4 G4OE69 = The Sims 2 : Pets G4OP69 = The Sims 2 : Pets G4QE01 = Super Mario Strikers G4QJ01 = Super Mario Strikers G4QP01 = Mario Smash Football G4SE01 = The Legend of Zelda: Four Swords Adventures G4SJ01 = The Legend of Zelda: Four Swords + G4SP01 = The Legend of Zelda: Four Swords Adventures G4ZE69 = The Sims 2 G4ZP69 = The Sims 2 G5BE4Z = Strike Force Bowling G5DE78 = Scooby-Doo! - Unmasked G5DP78 = Scooby-Doo! - Unmasked G5NEAF = Namco Museum 50th Anniversary G5NP69 = Namco Museum 50th Anniversary G5SE7D = Spyro: A Hero's Tail G5SP7D = Spyro: A Hero's Tail G5TE69 = Tiger Woods PGA Tour 2005 G5TP69 = Tiger Woods PGA Tour 2005 G62E54 = Major League Baseball 2k6 G63E41 = Tom Clancy's Rainbow Six 3 G63P41 = Tom Clancy's Rainbow Six 3 G6FD69 = 2006 FIFA World Cup G6FE69 = 2006 FIFA World Cup G6FF69 = 2006 FIFA World Cup G6FP69 = 2006 FIFA World Cup G6ME69 = Madden NFL 06 G6MP69 = Madden NFL 06 G6NE69 = NBA Live 06 G6NP69 = NBA Live 06 G6QE08 = Mega Man Anniversary Collection G6SE7D = The Legend of Spyro: A New Beginning G6SP7D = The Legend of Spyro: A New Beginning G6TE5G = Teen Titans G6TP5G = Teen Titans G6TP78 = Teen Titans G6WE69 = Tiger Woods PGA Tour 06 G6WP69 = Tiger Woods PGA Tour 06 G7ME69 = Madden NFL 07 G89EAF = Pac-Man World Rally G8FE8P = Virtua Quest G8ME01 = Paper Mario: The Thousand-Year Door G8MJ01 = Paper Mario RPG G8MP01 = Paper Mario: The Thousand-year Door G8OJ18 = Bobobo-bo Bo-bobo Dassutsu! Hajike Royale G8SJAF = Battle Stadium D.O.N G8WE01 = Battalion Wars G8WP01 = Battalion Wars G94E01 = Interactive Multi-Game Demo Disc - August 2002 G95E01 = Interactive Multi-Game Demo Disc - July 2002 G96E01 = Interactive Multi-Game Demo Disc - June 2002 G97E01 = Interactive Multi-Game Demo Disc - March 2002 G97P01 = Interactive Multi Game Demo Disc - September 2002 G97U01 = Interactive Multi-Game Demo Disc - September 2002 G98E01 = Interactive Multi-Game Demo Disc - January 2002 G98P01 = Interactive Multi Game Demo Disc May 2002 G99E01 = Interactive Multi-Game Demo Disc - October 2001 G99P01 = Interactive Multi Game Demo Disc March 2002 G9BEE9 = Mark Davis Pro Bass Challenge G9RD7D = Crash Tag Team Racing G9RE7D = Crash Tag Team Racing G9RF7D = Crash Tag Team Racing G9RP7D = Crash Tag Team Racing G9SE8P = Sonic Heroes G9SJ8P = Sonic Heroes G9SP8P = Sonic Heroes G9TD52 = Shark Tale G9TE52 = Shark Tale G9TF52 = Shark Tale G9TI52 = Shark Tale G9TJC0 = Shark Tale G9TP52 = Shark Tale GA2E51 = All-Star Baseball 2002 GA3E51 = All-Star Baseball 2003 GA4E51 = All-Star Baseball 2004 GA7E70 = Backyard Sports Baseball 2007 GAAJ08 = Disney's Mickey & Minnie Trick & Chase GABEAF = Zatch Bell! Mamodo Fury GACE5H = Army Men: Air Combat The Elite Missions GAEJ01 = Doubutu no Mori e+ GAFE01 = Animal Crossing GAFJ01 = Animal Forest + GAFP01 = Animal Crossing GAFU01 = Animal Crossing GAGP70 = Asterix & Obelix XXL GAHEGG = Alien Hominid GAKE5D = Midway Arcade Treasures GALE01 = Super Smash Bros. Melee GALJ01 = Dairantou Smash Brothers DX GALP01 = Super Smash Bros. Melee GAME5H = Army Men Sarges War GANE7U = Animaniacs: The Great Edgar Hunt GANP7U = Animaniacs: The Great Edgar Hunt GAPE52 = American Chopper 2 - Full Throttle GAQE6S = Aquaman: Battle of Atlantis GARE5H = Army Men: RTS GASE8P = Sonic Adventure DX: Director's Cut (Review Prototype) GASJ8P = Sonic Adventure DX GATE51 = ATV Quad Power Racing 2 GATP51 = ATV Quad Power Racing 2 GAUE08 = Auto Modellista GAUJ08 = Auto Modellista: U.S.-tuned GAVE78 = Avatar The Last Airbender GAVP78 = Avatar: The Legend of Aang GAVY78 = Avatar: The Legend of Aang GAXE5D = The Ant Bully GAYE5D = Midway Arcade Treasures 2 GAZD69 = Harry Potter and the Prisoner of Azkaban GAZE69 = Harry Potter and the Prisoner of Azkaban GAZF69 = Harry Potter and the Prisoner of Azkaban GAZH69 = Harry Potter and the Prisoner of Azkaban GAZI69 = Harry Potter e il prigioniero di Azkaban GAZJ69 = Harry Potter to Azkaban no Shuujin GAZM69 = Harry Potter and the Prisoner of Azkaban GAZP69 = Harry Potter and the Prisoner of Azkaban GAZS69 = Harry Potter and the Prisoner of Azkaban GB2J18 = Bomberman Land 2 GB3E51 = BMX XXX GB3P51 = BMX XXX GB4E51 = Burnout 2: Point of Impact GB4P51 = Burnout 2: Point of Impact GBAE8P = NBA 2K2 GBDE5G = BloodRayne GBDP7D = BloodRayne GBDS7D = BloodRayne GBFE70 = Backyard Football GBGE5G = Bomberman Generation GBGP7D = Bomberman Generation GBHDC8 = Mystic Heroes GBHEC8 = Mystic Heroes GBHFC8 = Mystic Heroes GBHJC8 = Battle Houshin GBHPC8 = Mystic Heroes GBIE08 = Resident Evil GBIJ08 = Biohazard GBIP08 = Resident Evil GBKE70 = Backyard Baseball GBLE52 = Bloody Roar: Primal Fury GBLP52 = Bloody Roar: Primal Fury GBME7F = Batman: Dark Tomorrow GBMP7F = Batman: Dark Tomorrow GBNJC0 = Warrior Blade: Rastan vs. Barbarian GBOE51 = Burnout GBOP51 = Burnout GBQE78 = Rocket Power: Beach Bandits GBQP78 = Rocket Power: Beach Bandits GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTP70 = Beyblade VForce - Super Tournament Battle GBVE41 = Batman: Vengeance GBVP41 = Batman Vengeance GBWD64 = Star Wars Bounty Hunter GBWE64 = Star Wars Bounty Hunter GBWF64 = Star Wars Bounty Hunter GBWP64 = Star Wars Bounty Hunter GBWS64 = Star Wars Bounty Hunter GBXE51 = Dave Mirra Freestyle BMX 2 GBXP51 = Dave Mirra Freestyle BMX 2 GBYE0A = Super Bubble Pop GBZE08 = Resident Evil Zero GBZJ08 = Resident Evil Zero GBZP08 = Resident Evil Zero GC2E9G = Conflict: Desert Storm II: Back to Baghdad GC2P75 = Conflict: Desert Storm II: Back to Baghdad GC3D78 = Scooby-Doo!: Mystery Mayhem GC3E78 = Scooby-Doo!: Mystery Mayhem GC3F78 = Scooby-Doo!: Mystery Mayhem GC3P78 = Scooby-Doo!: Mystery Mayhem GC4JBN = Shinseiki GPX Cyber Formula Road To The EVOLUTION GC5PNK = Cocoto: Kart Racer GC6E01 = Pokémon Colosseum GC6J01 = Pokémon Colosseum GC6P01 = Pokémon Colosseum GC7PNK = Cocoto Platform Jumper GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBP7D = Crash Bandicoot: L'ira di Cortex GCCE01 = Final Fantasy Crystal Chronicles GCCJ01 = Final Fantasy Crystal Chronicles GCCJGC = Final Fantasy Crystal Chronicles GCCP01 = Final Fantasy Crystal Chronicles GCDE08 = Resident Evil Code: Veronica X GCDJ08 = Biohazard: Code Veronica GCDP08 = Resident Evil Code Veronica X GCEE41 = Tom Clancy's Splinter Cell GCEP41 = Tom Clancy's Splinter Cell GCFE9G = Conflict: Desert Storm GCFP75 = Conflict: Desert Storm GCGE41 = Charlie's Angels GCGP41 = Charlie's Angels GCHE78 = WWE Crush Hour GCHP78 = WWE Crush Hour GCIE69 = The Sims GCIP69 = The Sims GCJE41 = Tom Clancy's Splinter Cell: Chaos Theory GCJP41 = Tom Clancy's Splinter Cell: Chaos Theory GCLE69 = Cel Damage GCLP69 = Cel Damage GCMJA4 = Muscle Champion ~Battle of Muscle Island~ GCNE7D = Crash Nitro Kart GCNP7D = Crash Nitro Kart GCOD52 = Call of Duty: Finest Hour GCOE52 = Call of Duty: Finest Hour GCOF52 = Call of Duty: Finest Hour GCOP52 = Call of Duty: L'Ora Degli Eroi GCPE6S = Casper: Spirit Dimensions GCPP6S = Casper: Spirit Dimensions GCQD7D = Buffy The Vampire Slayer Chaos Bleeds GCQE7D = Buffy the Vampire Slayer: Chaos Bleeds GCQF7D = Buffy The Vampire Slayer Chaos Bleeds GCQP7D = Buffy The Vampire Slayer Chaos Bleeds GCSEAF = Street Racing Syndicate GCSPAF = Street Racing Syndicate GCTE51 = Crazy Taxi GCTP51 = Crazy Taxi GCUE69 = NCAA Football 2005 GCVEEB = Cubivore: Survival of the Fittest GCWP6X = Castleween GCZE69 = Catwoman GCZP69 = Catwoman GD4E6S = Dinotopia - The Sunstone Odyssey GD5JB2 = Dragon Drive: D-Masters Shot GD6EB2 = Digimon Rumble Arena 2 GD6P70 = Digimon Rumble Arena 2 GD7E70 = Dragon Ball Z - Budokai GD7JB2 = Dragon Ball Z - Budokai GD7P70 = Dragon Ball Z - Budokai GD7PB2 = Dragon Ball Z Budokai GD9E69 = Drome Racers GD9P69 = Drome Racers GDAJE5 = Doraemon Minna De Asobou! GDBJ01 = Doubutsu Bancho GDCE51 = Speed Kings GDCP51 = Speed Kings GDDE41 = Disney's Donald Duck: Goin' Quackers GDDP41 = Paperino: Oper@zione P@pero ?*! GDED71 = Baldur's Gate Dark Alliance GDEE71 = Baldur's Gate: Dark Alliance GDEF71 = Baldur's Gate: Dark Alliance GDEP71 = Baldur's Gate Dark Alliance GDFE5D = Defender GDFP5D = Defender: For All Mankind GDGE7H = Dragon's Lair 3D: Return to the Lair GDGP78 = Dragon's Lair 3D Special Edition GDIE7D = Die Hard: Vendetta GDIP7D = Die Hard: Vendetta GDIX7D = Die Hard: Vendetta GDIY7D = Die Hard: Vendetta GDJEB2 = Digimon World 4 GDJJB2 = Digimon World X GDKEA4 = Disney Sports Soccer GDKPA4 = Disney Sports: Football GDLEA4 = Disney Sports Basketball GDLPA4 = Disney Sports: Basketball GDME01 = Disney's Magical Mirror Starring Mickey Mouse GDMJ01 = Disney's Mickey Mouse no Fushigi na Kagami GDMP01 = Disney's Magical Mirror Starring Mickey Mouse GDNJE8 = Dokapon DX GDOP41 = Disney's Donald Chi è PK? GDPJAF = Mr. Driller: Drill Land GDQE7L = Darkened Skye GDQP6S = Darkened Skye GDREAF = Dead to Rights GDRP69 = Dead to Rights GDRPAF = Dead to Rights GDSE78 = Dark Summit GDSP78 = Dark Summit GDTE69 = Def Jam Vendetta GDTP69 = Def Jam Vendetta GDUJA7 = Duel Masters Nettou Battle GDVE6L = Driven GDVP6L = Driven GDWEA4 = Disney Sports Football GDXEA4 = Disney Sports Skateboarding GDXJA4 = Disney Sports Skateboarding GDXPA4 = Disney Sports Skateboarding GE3E5D = Midway Arcade Treasures 3 GE4E7D = 4x4 Evo 2 GE5EA4 = TMNT: Mutant Melee GE6JA4 = Eisei Meijin VI GE9E5D = Ed, Edd n Eddy: The Mis-Edventures GEAE8P = Skies of Arcadia Legends GEAJ8P = Eternal Arcadia Legends GEAP8P = Skies of Arcadia Legends GEBEA4 = Evolution Snowboarding GEBPA4 = Evolution Snowboarding GEDE01 = Eternal Darkness: Sanity's Requiem GEDJ01 = Eternal Darkness: Manekareta 13-nin GEDP01 = Eternal Darkness: Sanity's Requiem GEJJCM = Jikkyou Powerful Pro Yakyuu 11 Chou Ketteiban GEME7F = Egg Mania: Eggstreme Madness GEMP7F = Eggo Mania GEND69 = James Bond 007: Everything Or Nothing GENE69 = James Bond 007: Everything Or Nothing GENF69 = James Bond 007: Everything Or Nothing GENP69 = 007: Everything Or Nothing GENS69 = James Bond 007: Everything Or Nothing GEOE08 = Capcom vs. SNK 2 EO GEOP08 = Capcom Vs. SNK2 EO: Millionaire Fighting 2001 GESEA4 = Evolution Skateboarding GESPA4 = Evolution Skateboarding GEVJ0M = Shinki Sekai Evolutia GEWE41 = Evolution Worlds GEWP41 = Evolution Worlds GEXE52 = Disney's Extreme Skate Adventure GEXP52 = Disney Extreme Skate Adventure GEXX52 = Disney's Extreme Skate Adventure GEXY52 = Disney Extreme Skate Adventure GEYE69 = Fight Night Round 2 GEYJ69 = Fight Night Round 2 GEYP69 = Fight Night Round 2 GEZE8P = Billy Hatcher and the Giant Egg GEZP8P = Billy Hatcher and the Giant Egg GF2E69 = F1 2002 GF2P69 = F1 2002 GF3E8P = NFL 2K3 GF3P8P = NFL 2K3 GF4E52 = Fantastic 4 GF4F52 = Fantastic Four GF4P52 = Fantastic 4 GF5D69 = FIFA Football 2005 GF5E69 = FIFA Soccer 2005 GF5F69 = FIFA Football 2005 GF5H69 = FIFA Football 2005 GF5I69 = FIFA Football 2005 GF5P69 = FIFA Football 2005 GF5S69 = FIFA Football 2005 GF6D69 = FIFA 06 GF6E69 = FIFA Soccer 06 GF6F69 = FIFA 06 GF6H69 = FIFA 06 GF6P69 = FIFA 06 GF6S69 = FIFA 06 GF7E01 = Star Fox: Assault GF7P01 = Star Fox Assault GF8E69 = FIFA Street GF8P69 = FIFA Street GFAD69 = FIFA Soccer 2003 GFAE69 = FIFA Soccer 2003 GFAF69 = FIFA Soccer 2003 GFAI69 = FIFA Football 2003 GFAJ69 = FIFA Soccer 2003 GFAP69 = FIFA Football 2003 GFAS69 = FIFA Football 2003 GFBE5D = FireBlade GFBP5D = Fireblade GFCP69 = F1 Career Challenge GFDD69 = Freedom Fighters GFDE69 = Freedom Fighters GFDF69 = Freedom Fighters GFDP69 = Freedom Fighters GFEE01 = Fire Emblem: Path of Radiance GFEJ01 = Fire Emblem: Souen no Kiseki GFEP01 = Fire Emblem: Path of Radiance GFFE5D = Freaky Flyers GFGEA4 = Frogger Beyond GFGPA4 = Frogger Beyond GFHP6V = Neighbours From Hell GFIE69 = 2002 FIFA World Cup GFKE69 = Freekstyle GFKP69 = Freekstyle GFMJAF = Family Stadium 2003 GFNJG2 = Finding Nemo GFOE78 = The Fairly OddParents - Shadow Showdown GFPEA4 = Frogger: Ancient Shadow GFQEA4 = Frogger's Adventures: The Rescue GFSD69 = 2002 FIFA World Cup GFSE69 = FIFA Soccer 2002 GFSF69 = 2002 FIFA World Cup GFSJ69 = FIFA Soccer 2002 GFSP69 = 2002 FIFA World Cup GFTE01 = Mario Golf: Toadstool Tour GFTJ01 = Mario Golf: Family Tour GFTP01 = Mario Golf: Toadstool Tour GFUE4Z = Future Tactics: The Uprising GFUP6V = Future Tactics: The Uprising GFVE5D = NFL Blitz Pro GFWE78 = The Fairly OddParents: Breakin' Da Rules GFXE5D = Freestyle Metal X GFYE69 = FIFA Street 2 GFYP69 = FIFA Street 2 GFZE01 = F-Zero GX GFZJ01 = F-Zero GX GFZJ8P = F-Zero AX GFZP01 = F-Zero GX GG1J08 = Donkey Kong: Jungle Fever GG2E4Z = Trigger Man GG3J08 = Donkey Kong: Banana Kingdom GG4E08 = Gotcha Force GG4P08 = Gotcha Force GG5E52 = Cabela's Big Game Hunter 2005 GGAJB2 = Mobile Suit Gundam: The Ace Pilot GGCE0A = Goblin Commander: Unleash The Horde GGCP0A = Goblin Commander: Unleash the Horde GGEE41 = Beyond Good & Evil GGEP41 = Beyond Good And Evil GGEX41 = Beyond Good And Evil GGEY41 = Beyond Good And Evil GGFJ01 = GiFTPiA GGNE5D = The Grim Adventures of Billy and Mandy GGPE01 = Mario Kart Arcade GP GGPE02 = Mario Kart Arcade GP 2 GGPJ02 = Mario Kart Arcade GP 2 GGPJAF = SD Gundam Gashapon Wars GGPJB2 = SD Gundam Gashapon Wars GGRD41 = Tom Clancy's Ghost Recon GGRE41 = Tom Clancy's Ghost Recon GGRP41 = Tom Clancy's Ghost Recon GGSEA4 = Metal Gear Solid: The Twin Snakes GGSJA4 = Metal Gear Solid: The Twin Snakes GGSPA4 = Metal Gear Solid: The Twin Snakes GGTE01 = Chibi-Robo! GGTJ01 = Chibi-Robo! GGTP01 = Chibi-Robo! GGVD78 = Spongebob Squarepants : The Movie GGVE78 = SpongeBob SquarePants: The Movie GGVP78 = Spongebob Squarepants: The Movie GGVX78 = Spongebob Squarepants : The Movie GGYE41 = Tom Clancy's Ghost Recon 2 GGYP41 = Tom Clancy's Ghost Recon 2 GGZE52 = Madagascar GGZH52 = Madagascar GGZI52 = Madagascar GGZJB2 = Madagascar GGZP52 = Madagascar GGZS52 = Madagascar GGZX52 = Madagascar GH2E69 = Need for Speed: Hot Pursuit 2 GH2P69 = Need For Speed Hot Pursuit 2 GH3E69 = NHL 2003 GH3P69 = NHL 2003 GH4D69 = Harry Potter and the Goblet of Fire GH4E69 = Harry Potter and the Goblet of Fire GH4F69 = Harry Potter and the Goblet of Fire GH4H69 = Harry Potter and the Goblet of Fire GH4I69 = Harry Potter e il Calice di Fuoco GH4J69 = Harry Potter to Honoo no Goblet GH4M69 = Harry Potter and the Goblet of Fire GH4P69 = Harry Potter and the Goblet of Fire GH4S69 = Harry Potter and the Goblet of Fire GH5D52 = Over The Hedge GH5E52 = Over The Hedge GH5F52 = Over The Hedge GH5P52 = Over The Hedge GH6EAF = Hello Kitty: Roller Rescue GH6P7N = Hello Kitty: Roller Rescue GH7E5D = Happy Feet GH9P52 = Tony Hawk's American Wasteland GHAE08 = Resident Evil 2 GHAJ08 = Biohazard 2 GHAP08 = Resident Evil 2 GHBE7D = The Hobbit GHBP7D = Lo Hobbit GHCD4Q = Chicken Little GHCE4Q = Chicken Little GHCF4Q = Chicken Little GHCJG9 = Chicken Little GHCP4Q = Chicken Little GHEJ91 = Homeland GHFE4Z = Pinball Hall Of Fame: The Gottlieb Collection GHGEEB = Go! Go! Hypergrind GHKD7D = Hulk GHKE7D = Hulk GHKF7D = Hulk GHKP7D = Hulk GHKS7D = Hulk GHLE69 = Harry Potter and the Sorcerer's Stone GHLJ69 = Harry Potter to Kenja no Ishi GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Sorcerer's Stone GHLY69 = Harry Potter and the Sorcerer's Stone GHLZ69 = Harry Potter e la Pietra Filosofale GHMD4F = Hitman 2: Silent Assassin GHME4F = Hitman 2: Silent Assassin GHMF4F = Hitman 2: Silent Assassin GHMP4F = Hitman 2: Silent Assassin GHNE71 = Hunter: The Reckoning GHNX71 = Hunter: The Reckoning GHPE52 = Street Hoops GHQE7D = The Simpsons: Hit & Run GHQP7D = The Simpsons: Hit & Run GHRE78 = Hot Wheels: World Race GHRP78 = Hot Wheels: World Race GHSE69 = Harry Potter and the Chamber of Secrets GHSJ69 = Harry Potter to Himitsu no Heya GHSP69 = Harry Potter and the Chamber of Secrets GHSX69 = Harry Potter and the Chamber of Secrets GHSY69 = Harry Potter and the Chamber of Secrets GHTJA4 = Hikaru No Go 3 GHUE7D = The Incredible Hulk: Ultimate Destruction GHUF7D = The Incredible Hulk Ultimate Destruction GHUP7D = The Incredible Hulk Ultimate Destruction GHVE08 = Disney's Hide & Sneak GHVP08 = Disney's Hide & Sneak GHWE78 = Hot Wheels: Velocity X GHWP78 = Hot Wheels: Velocity X GHYE6S = The Haunted Mansion GHZE5D = NHL Hitz Pro GI2J18 = Momotarou Dentetsu 12 GIAE7D = Ice Age 2: The Meltdown GIAP7D = Ice Age 2 : The Meltdown GIBE4F = The Italian Job GIBP4F = The Italian Job GICD78 = The Incredibles GICE78 = The Incredibles GICF78 = The Incredibles GICH78 = The Incredibles GICJG9 = Mr. Inkurediburu GICP78 = Gli Incredibili GIFJDQ = Generation of Chaos Exceed GIGJ8P = Bleach GC: Tasogare Ni Mamieru Shinigami GIHD78 = Scooby-Doo! Night of 100 Frights GIHE78 = Scooby-Doo! Night of 100 Frights GIHP78 = Scooby-Doo! Night of 100 Frights GIIJ18 = Momotarou Dentetsu 11 GIJEFP = Space Raiders GIJJC0 = Space Raiders GIKE70 = Ikaruga GIKJ70 = Ikaruga GIKP70 = Ikaruga GILE51 = Aggressive Inline GILP51 = Aggressive Inline GINE69 = Batman Begins GINX69 = Batman Begins GIPEAF = Shonen Jump's One Piece: Pirates Carnival GIPJB2 = Shonen Jump's One Piece: Pirates Carnival GIQE78 = The Incredibles: Rise of the Underminer GIQJ8P = The Incredibles: Rise of the Underminer GIQP78 = The Incredibles: Rise of the Underminer GIQX78 = The Incredibles: Rise of the Underminer GIQY78 = The Incredibles: Rise of the Underminer GISE36 = Second Sight GISP36 = Second Sight GITE01 = Geist GITP01 = Geist GIVE4Z = Intellivision Lives GIZE52 = Ty the Tasmanian Tiger 3: Night of the Quinkan GJ2JCM = Jikkyou World Soccer 2002 GJ2PA4 = International Superstar Soccer 2 GJ3PA4 = International Superstar Soccer 3 GJBE18 = Bomberman Jetters GJBE5G = Bomberman Jetters GJBJ18 = Bomberman Jetters GJCE8P = Samurai Jack: The Shadow of Aku GJCP8P = Samurai Jack: The Shadow of Aku GJDE5S = Judge Dredd: Dredd vs. Death GJDX7D = Judge Dredd: Dredd vs. Death GJDY7D = Judge Dredd: Dredd vs. Death GJFE78 = Jimmy Neutron Jet Fusion GJFP78 = Jimmy Neutron Jet Fusion GJKD52 = Star Wars Jedi Knight II: Jedi Outcast GJKE52 = Star Wars Jedi Knight II: Jedi Outcast GJKF52 = Star Wars Jedi Knight II: Jedi Outcast GJKP52 = Star Wars Jedi Knight II: Jedi Outcast GJNE78 = Jimmy Neutron Boy Genius GJNP78 = Jimmy Neutron Boy Genius GJPJCM = Jikkyou Powerful Pro Yakyuu 11 GJSJ18 = Hudson Selection Vol. 2: Star Soldier GJUD78 = Tak and the Power of JuJu GJUE78 = Tak and the Power of Juju GJUF78 = Tak and the Power of JuJu GJUP78 = Tak and the Power of JuJu GJWE78 = Tak: The Great JuJu Challenge GJWP78 = Tak: The Great JuJu Challenge GJXE51 = Vexx GJXP51 = Vexx GJYE78 = Jimmy Neutron: Attack of the Twonkies GJYP78 = Jimmy Neutron Boy Genius: Attack of the Twonkies GJZE52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GJZP52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GK2D52 = Spider-Man 2 GK2E52 = Spider-Man 2 GK2F52 = Spider-Man 2 GK2P52 = Spider-Man 2 GK3E8P = NBA 2K3 GK3P8P = NBA 2K3 GK4E01 = Baten Kaitos Origins GK4J01 = Baten Kaitos II: Hajimari no Tsubasa to Kamigami no Shishi GK5E78 = Monster House GK5P78 = Monster House GK5X78 = Monster House GK6JA4 = Croket Banking No Kikiwosukue GK7E08 = Killer7 GK7J08 = Killer7 GK7P08 = Killer 7 GK9EA4 = Karaoke Revolution Party GKAE8P = Amazing Island GKAJ8P = Kaijuu no Shima: Amazing Island GKBEAF = Baten Kaitos Eternal Wings and the Lost Ocean GKBJAF = Baten Kaitos: Owaranai Tsubasa to Ushinawareta Umi GKBPAF = Baten Kaitos: Le ali eterne e l'oceano perduto GKDJ01 = Kyojin no Doshin GKDP01 = Doshin the Giant GKEJA4 = PAWAFURU PUROYAKYU 12 KETTEIBAN GKFEGG = Chaos Field GKFJ8P = Chaos Field Expanded GKGE01 = Donkey Konga GKGJ01 = Donkey Konga GKGP01 = Donkey Konga GKHEA4 = King Arthur GKHPA4 = King Arthur GKJD78 = Cars GKJE78 = Cars GKJF78 = Cars GKJH78 = Cars GKJJ78 = Cars GKJP78 = Cars GKJS78 = Cars GKKE69 = Knockout Kings 2003 GKKP69 = Knockout Kings 2003 GKLD69 = Lord of the Rings: The Return of the King GKLE69 = Lord of the Rings: The Return of the King GKLF69 = Lord of the Rings: The Return of the King GKLI69 = Il Signore degli Anelli: Il ritorno del Re GKLJ69 = The Lord of the Rings: The Return of the King GKLP69 = Lord of the Rings: The Return of the King GKLS69 = Lord of the Rings: The Return of the King GKME41 = Prince of Persia: The Two Thrones GKMP41 = Prince of Persia: I Due Troni GKNEB2 = Ultimate Muscle: Legends vs. New Generation GKNJB2 = Kinnikuman Nisei: Shinsedai Choujin vs Densetsu Choujin GKOE70 = Kao The Kangaroo Round 2 GKOP6V = Kao The Kangaroo Round 2 GKPJA4 = Jikkyou Powerful Pro Yakyuu 12 GKQJ01 = Kururin Squash! GKREB2 = Ribbit King GKRPB2 = Ribbit King GKSE52 = Kelly Slater's Pro Surfer GKSP52 = Kelly Slater's Pro Surfer GKSX52 = Kelly Slater's Pro Surfer GKTJA4 = Captain Tsubasa: Ougon Sedai no Chousen GKUE9G = Scaler GKWJ18 = DreamMix TV World Fighters GKXJE7 = Kiwame Mahjong DX2 GKYE01 = Kirby Air Ride GKYJ01 = Kirby Airride GKYP01 = Kirby Air Ride GKZD9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZE9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZF9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP54 = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GL2E51 = Legends of Wrestling 2 GL2P51 = Legends of Wrestling II GL3JE8 = Lupin The Third - Umi Ni Kieta Hihou GL5E4F = LEGO Star Wars: The Video Game GL5P4F = LEGO Star Wars: The Video Game GL5X4F = LEGO Star Wars: The Video Game GL7E64 = LEGO Star Wars II: The Original Trilogy GL7P64 = LEGO Star Wars II: The Original Trilogy GL8D4F = Lara Croft Tomb Raider: Legend GL8E4F = Lara Croft Tomb Raider: Legend GL8F4F = Lara Croft Tomb Raider: Legend GL8P4F = Lara Croft Tomb Raider: Legend GLBE8P = Home Run King GLCD52 = Lemony Snickets A Series Of Unfortunate Events GLCE52 = Lemony Snickets A Series Of Unfortunate Events GLCF52 = Lemony Snickets A Series Of Unfortunate Events GLCP52 = Lemony Snicket Una serie di sfortunati eventi GLCS52 = Lemony Snickets A Series Of Unfortunate Events GLEE08 = Resident Evil 3: Nemesis GLEJ08 = BioHazard 3: Last Escape GLEP08 = Resident Evil 3: Nemesis GLGP41 = Largo Winch : Empire Under Threat GLHEG9 = Flushed Away GLHPG9 = Giù Per il Tubo GLIJA7 = Special Jinsei Game GLJJMS = Radirgy GLLE78 = Ratatouille GLLF78 = Ratatouille GLME01 = Luigi's Mansion GLMJ01 = Luigi's Mansion GLMP01 = Luigi's Mansion GLNE69 = Looney Tunes: Back in Action GLNP69 = Looney Tunes: Back in Action GLOD69 = Lord of the Rings: The Two Towers GLOE69 = Lord of the Rings: The Two Towers GLOF69 = Lord of the Rings: The Two Towers GLOI69 = Il Signore degli Anelli: Le Due Torri GLOP69 = Lord of the Rings: The Two Towers GLOS69 = Lord of the Rings: The Two Towers GLQE41 = Tom Clancy's Rainbow Six: Lockdown GLQP41 = Tom Clancy's Rainbow Six: Lockdown GLRD64 = Star Wars Rogue Squadron III: Rebel Strike GLRE64 = Star Wars Rogue Squadron III: Rebel Strike GLRF64 = Star Wars Rogue Squadron III: Rebel Strike GLRJ13 = Star Wars Rogue Squadron III: Rebel Strike GLRP64 = Star Wars Rogue Squadron III: Rebel Strike GLSD64 = Gladius GLSE64 = Gladius GLSF64 = Gladius GLSP64 = Gladius GLUE7U = Lotus Challenge GLVD4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVE4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVF4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVP4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLWE51 = Legends of Wrestling GLWP51 = Legends of Wrestling GLXJ29 = Legend of Golfer GLYE69 = NBA Live 2005 GLYP69 = NBA Live 2005 GLZD69 = James Bond 007: From Russia With Love GLZE69 = 007: From Russia With Love GLZF69 = James Bond 007: From Russia With Love GLZP69 = James Bond 007: From Russia With Love GM2E8P = Super Monkey Ball 2 GM2J8P = Super Monkey Ball 2 GM2P8P = Super Monkey Ball 2 GM3E69 = Madden NFL 2003 GM3P69 = Madden NFL 2003 GM4E01 = Mario Kart: Double Dash!! GM4J01 = Mario Kart: Double Dash!! GM4P01 = Mario Kart: Double Dash!! GM5D7D = Metal Arms: Glitch in the System GM5E7D = Metal Arms: Glitch in the System GM5F7D = Metal Arms: Glitch in the System GM5P7D = Metal Arms: Glitch in the System GM6EE9 = Medabots Infinity GM6PE9 = Medabots Infinity GM8E01 = Metroid Prime GM8J01 = Metroid Prime GM8P01 = Metroid Prime GM9E6S = Muppets Party Cruise GMAE51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMAP51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMBE8P = Super Monkey Ball GMBJ8P = Super Monkey Ball GMBP8P = Super Monkey Ball GMDE69 = Madden NFL 2002 GMEE70 = Men In Black II: Alien Escape GMEP70 = Men In Black II: Alien Escape GMFD69 = Medal of Honor: Frontline GMFE69 = Medal of Honor: Frontline GMFF69 = Medal of Honor: Frontline GMFI69 = Medal of Honor: Frontline GMFP69 = Medal of Honor: Frontline GMFS69 = Medal of Honor: Frontline GMHE52 = Mat Hoffmans Pro Bmx 2 GMHF52 = Mat Hoffman's Pro BMX 2 GMHP52 = Mat Hoffman's Pro BMX 2 GMIE70 = Mission Impossible: Operation Surma GMIP70 = Mission Impossible: Operation Surma GMJE41 = Monster Jam: Maximum Destruction GMJP41 = Monster Jam: Maximum Destruction GMKD5D = Mortal Kombat: Deadly Alliance GMKE5D = Mortal Kombat: Deadly Alliance GMKP5D = Mortal Kombat: Deadly Alliance GMLEA4 = ESPN MLS Extra Time 2002 GMNE78 = Monsters, Inc. Scream Arena GMNP78 = Monsters, Inc. Scream Arena GMOP70 = Micro Machines GMPE01 = Mario Party 4 GMPJ01 = Mario Party 4 GMPP01 = Mario Party 4 GMQE70 = Monopoly Party GMQP70 = Monopoly Party GMRE70 = Big Air Freestyle GMRP70 = Big Air Freestyle GMSE01 = Super Mario Sunshine GMSJ01 = Super Mario Sunshine GMSP01 = Super Mario Sunshine GMTE69 = Disney's Party GMTP69 = Disney's Party GMUE5D = Dr. Muto GMWD52 = Minority Report: Everybody Runs GMWE52 = Minority Report: Everybody Runs GMWF52 = Minority Report: Everybody Runs GMWP52 = Minority Report: Everybody Runs GMXE70 = Enter The Matrix GMXJB2 = Enter The Matrix GMXP70 = Enter The Matrix GMYJ8P = Gekitou Pro Yakyuu GMZE41 = Monster 4x4: Masters Of Metal GN2E70 = Nascar: Dirt To Daytona GN3E5D = NHL Hitz 2003 GN3P5D = NHL Hitz 2003 GN4E69 = Nascar 2005: Chase For The Cup GN5E69 = NHL 2005 GN5P69 = NHL 2005 GN6E69 = NHL 06 GN6P69 = NHL 06 GN7E69 = NFL Street 2 GN7P69 = NFL Street 2 GN8E69 = NBA Live 2004 GN8P69 = NBA Live 2004 GN9E70 = Nickelodeon Party Blast GNAE8P = NCAA College Football 2K3 GNBE01 = NBA Courtside 2002 GNBP01 = NBA Courtside 2002 GNCE69 = Nascar Thunder 2003 GNDD69 = Need For Speed Underground GNDE69 = Need For Speed Underground GNDF69 = Need For Speed Underground GNDP69 = Need For Speed Underground GNED78 = Finding Nemo GNEE78 = Finding Nemo GNEF78 = Finding Nemo GNEP78 = Finding Nemo GNES78 = Finding Nemo GNFE5D = NFL Blitz 2002 GNGE69 = NCAA Football 2003 GNHE5D = NHL Hitz 2002 GNHP5D = NHL Hitz 20-02 GNIEA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNIPA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNJEAF = I-Ninja GNKE8P = NCAA College Basketball 2K3 GNLE69 = NBA Live 2003 GNLP69 = NBA Live 2003 GNMEAF = Namco Museum GNNE69 = NFL Street GNNP69 = NFL Street GNOE78 = Nicktoons Unite! GNOX78 = Spongebob Squarepants & Friends: Unite! GNPP70 = Nickelodeon Party Blast GNQE69 = Madden NFL 2005 GNQP69 = Madden NFL 2005 GNREDA = Naruto Clash of Ninja GNRJDA = NARUTO Gekitô Ninja Taisen! GNSE69 = NBA Street GNSJ69 = NBA Street GNUEDA = Naruto Clash of Ninja 2 GNUJDA = Naruto: Gekitou Ninja Taisen! 2 GNUPDA = Naruto: Clash of Ninja - European Version GNVE69 = NHL 2004 GNVP69 = NHL 2004 GNWE69 = Def Jam: Fight For NY GNWP69 = Def Jam: Fight For NY GNXE69 = NCAA Football 2004 GNZE69 = NBA Street Vol.2 GNZP69 = NBA Street Vol.2 GO2D4F = Blood Omen 2: The Legacy of Kain Series GO2E4F = Blood Omen 2: The Legacy of Kain Series GO2F4F = Blood Omen 2: The Legacy of Kain Series GO2P4F = Blood Omen 2: The Legacy of Kain Series GO3E5D = NFL Blitz 2003 GO7D69 = James Bond 007: NightFire GO7E69 = 007: NightFire GO7F69 = James Bond 007: NightFire GO7P69 = James Bond 007: NightFire GO7S69 = James Bond 007: NightFire GOAE52 = Cabela's Outdoor Adventures GOBE4Z = Bad Boys: Miami Takedown GOBP7N = Bad Boys II GOCE5D = RoadKill GODJGA = Ohenro-San: Hosshin no Dojo GOFE7L = Outlaw Golf GOFP6S = Outlaw Golf GOGJB2 = One Piece: Grand Battle! 3 GOME01 = Mario Power Tennis GOMJ01 = Mario Tennis GC GOMP01 = Mario Power Tennis GOND69 = Medal of Honor: European Assault GONE69 = Medal of Honor: European Assault GONF69 = Medal of Honor: European Assault GONJ13 = Medal of Honor: Europa Kyoushuu GONP69 = Medal of Honor: European Assault GOOE01 = Odama GOOJ01 = Odama GOOP01 = Odama GOPEB2 = Shonen Jump's One Piece: Grand Battle GOPJB2 = One Piece: Grand Battle! Rush GOQE82 = One Piece: Grand Adventure GOQEAF = Shonen Jump's One Piece: Grand Adventure GOSE41 = Open Season GOSP41 = Open Season GOSX41 = Boog & Elliot GOUPNK = Cocoto Funfair GOWD69 = Need For Speed Most Wanted GOWE69 = Need For Speed Most Wanted GOWF69 = Need For Speed Most Wanted GOWJ69 = Need For Speed Most Wanted GOWP69 = Need For Speed Most Wanted GOYD69 = GoldenEye: Rogue Agent GOYE69 = GoldenEye: Rogue Agent GOYF69 = GoldenEye: Rogue Agent GOYP69 = GoldenEye: Rogue Agent GOYS69 = GoldenEye: Rogue Agent GP2EAF = Pac-Man World 2 GP2P69 = Pac-Man World 2 GP3E78 = The Polar Express GP3P78 = The Polar Express GP4J18 = Hudson Selection Vol. 3: Bonk's Adventure GP5E01 = Mario Party 5 GP5J01 = Mario Party 5 GP5P01 = Mario Party 5 GP6E01 = Mario Party 6 GP6J01 = Mario Party 6 GP6P01 = Mario Party 6 GP7E01 = Mario Party 7 GP7J01 = Mario Party 7 GP7P01 = Mario Party 7 GP8EAF = Pac-Man World 3 GP8P69 = Pac-Man World 3 GP8PAF = Pac-Man World 3 GP9E7F = Rogue Ops GP9P7F = Rogue Ops GPAE01 = Pokémon Channel GPAJ01 = Pokémon Channel GPAP01 = Pokémon Channel GPAU01 = Pokémon Channel GPDE51 = Dakar 2: The World's Ultimate Rally GPDP51 = Dakar 2: The World's Ultimate Rally GPEJ2Q = Pool Edge GPHD52 = Pitfall: The Lost Expedition GPHE52 = Pitfall: The Lost Expedition GPHF52 = Pitfall: The Lost Expedition GPHP52 = Pitfall: The Lost Expedition GPIE01 = Pikmin GPIJ01 = Pikmin GPIP01 = Pikmin GPJJCM = Jikkyou Powerful Pro Yakyuu 10 GPKE41 = Disney's PK Out of the Shadows GPLD9G = Piglet's Big Game GPLE9G = Piglet's Big Game GPLF9G = Piglet's Big Game GPLP9G = Piglet's Big Game GPMEAF = Pac Man Fever GPNE08 = P.N.03 GPNJ08 = P.N.03 GPNP08 = P.N.03 GPOE8P = Phantasy Star Online Episode I & II GPOJ8P = Phantasy Star Online Episode I & II GPOP8P = Phantasy Star Online Episode I&II GPPJCM = Jikkyou Powerful Pro Yakyuu 9 GPQE6L = The Powerpuff Girls: Relish Rampage GPQP6L = The Powerpuff Girls: Relish Rampage GPRE7U = Pool Paradise GPRP7U = Pool Paradise GPSE8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPSJ8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPSP8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPTE41 = Prince of Persia: The Sands of Time GPTP41 = Prince of Persia: The Sands of Time GPUE8P = Puyo Pop Fever GPUP6W = Puyo Pop Fever GPUP8P = Puyo Pop Fever GPVE01 = Pikmin 2 GPVJ01 = Pikmin 2 GPVP01 = Pikmin 2 GPWEAF = Spawn: Armageddon GPWP69 = Spawn: Armageddon GPWPAF = Spawn: Armageddon GPXE01 = Pokémon Box: Ruby & Sapphire GPXJ01 = Pokémon Box: Ruby & Sapphire GPXP01 = Pokémon Box: Rubino e Zaffiro GPYJ8P = Puyo Pop Fever GPZJ01 = Nintendo Puzzle Collection GQ4E78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ4F78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ4P78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ8E69 = Madden NFL 08 GQBE51 = NFL Quarterback Club 2002 GQCD52 = Call of Duty 2: Big Red One GQCE52 = Call of Duty 2: Big Red One GQCF52 = Call of Duty 2: Big Red One GQCP52 = Call of Duty 2: Big Red One GQCS52 = Call of Duty 2: Big Red One GQFFFK = Franklin: A Birthday Surprise GQLE9G = Dora The Explorer: Journey To The Purple Planet GQLP54 = Dora The Explorer: Journey to the Purple Planet GQNE5D = Mortal Kombat: Deception GQPE78 = SpongeBob SquarePants: Battle for Bikini Bottom GQPP78 = SpongeBob Squarepants: Battle For Bikini Bottom GQQD78 = SpongeBob SquarePants: Lights, Camera, PANTS! GQQE78 = SpongeBob SquarePants: Lights, Camera, Pants! GQQF78 = SpongeBob SquarePants: Lights, Camera, PANTS! GQQH78 = SpongeBob SquarePants: Lights, Camera, Pants! GQQP78 = SpongeBob SquarePants: Lights, Camera, Pants! GQRJ18 = Hudson Selection Vol. 1: Cubic Lode Runner GQSDAF = Tales of Symphonia GQSEAF = Tales of Symphonia GQSFAF = Tales of Symphonia GQSIAF = Tales of Symphonia GQSPAF = Tales of Symphonia GQSSAF = Tales of Symphonia GQTE4Q = Meet the Robinsons GQWE69 = Harry Potter: Quidditch World Cup GQWJ69 = Harry Potter World Cup GQWP69 = Harry Potter: Quidditch World Cup GQWX69 = Harry Potter: La Coppa del Mundo di Quidditch GQXE69 = Madden NFL 2004 GQXP69 = Madden NFL 2004 GQZJ01 = Densetsu no Quiz Ou Ketteisen GR2E52 = Lost Kingdoms 2 GR2JCQ = Rune II: Koruten no Kagi no Himitsu GR2P52 = Lost Kingdoms 2 GR3E5D = Red Card 2003 GR4EMZ = MC Groovz Dance Craze GR4PMZ = MC Groovz Dance Craze GR5J1K = Robocop: Aratanaru Kiki GR6D78 = Bratz: Rock Angelz GR6E78 = Bratz: Rock Angelz GR6F78 = Bratz: Rock Angelz GR6P78 = Bratz: Rock Angelz GR8D69 = Medal of Honor: Rising Sun GR8E69 = Medal of Honor: Rising Sun GR8F69 = Medal of Honor: Rising Sun GR8J69 = Medal of Honor: Rising Sun GR8P69 = Medal of Honor: Rising Sun GR9E6L = Reign of Fire GR9P6L = Il Regno del Fuoco GRAE5Z = Rally Championship GRAP75 = Rally Championship GRBE6S = Robotech: Battlecry GRBP6S = Robotech : Battlecry GRDP5D = RedCard GREE08 = Mega Man Network Transmission GREJ08 = RockMan EXE Transmission GREP08 = Mega Man Network Transmission GRFD78 = Red Faction II GRFE78 = Red Faction II GRFF78 = Red Faction II GRFP78 = Red Faction II GRHE41 = Rayman 3: Hoodlum Havoc GRHP41 = Rayman 3: Hoodlum Havoc GRJEAF = R: Racing Evolution GRJJAF = R:Racing Evolution: Life in the Fast Lane GRJP69 = R: Racing GRKE41 = Rocky GRKP7G = Rocky GRLE41 = Pro Rally GRLP41 = Pro Rally GRMJDA = Monopoly: Mezase!! Daifugou Jinsei!! GRNE52 = Lost Kingdoms GRNJCQ = Rune GRNP52 = Lost Kingdoms GROE5Z = Road Trip: The Arcade Edition GROP7J = Gadget Racers GRQE41 = City Racer GRRE78 = Rugrats: Royal Ransom GRRP78 = Rugrats: Royal Ransom GRSEAF = SoulCalibur II GRSJAF = SoulCalibur II GRSPAF = SoulCalibur II GRUE78 = Power Rangers Dino Thunder GRUF78 = Power Rangers Dino Thunder GRUP78 = Power Rangers Dino Thunder GRVEA4 = Rave Master GRWJD9 = Super Robot Taisen GC GRYE41 = Rayman Arena GS2D78 = Summoner: A Goddess Reborn GS2E78 = Summoner: A Goddess Reborn GS2F78 = Summoner: A Goddess Reborn GS2P78 = Summoner: A Goddess Reborn GS3E51 = SX Superstar GS3P51 = SX Superstar GS7E5D = MLB SlugFest 2004 GS8E7D = Spyro: Enter the Dragonfly GS8P7D = Spyro: Enter the Dragonfly GS9E6S = Shrek Extra Large GS9P6S = Shrek Extra Large GSAE01 = Star Fox Adventures GSAJ01 = StarFox Adventures GSAP01 = Star Fox Adventures GSBJ8P = Sonic Adventure 2: Battle GSCE51 = Jeremy McGrath SuperCross World GSCP51 = Jeremy McGrath SuperCross World GSDEAF = Smashing Drive GSEJB2 = Shaman King: Soul Fight GSGE5D = MLB SlugFest 2003 GSHE5D = SpyHunter GSHP5D = SpyHunter GSKE7D = The Scorpion King: Rise of the Akkadian GSKP7D = The Scorpion King : Rise of the Akkadian GSMD52 = Spider-Man GSME52 = Spider-Man: The Movie GSMF52 = Spider-Man GSMP52 = Spider-Man GSNE8P = Sonic Adventure 2: Battle GSNP8P = Sonic Adventure 2: Battle GSOE8P = Sonic Mega Collection GSOJ8P = Sonic Mega Collection GSOP8P = Sonic Mega Collection GSPE69 = The Simpsons: Road Rage GSPP69 = The Simpsons: Road Rage GSQE78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSQP78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSRE7S = Smuggler's Run: Warzones GSRP7S = Smuggler's Run: Warzones GSSE8P = Sega Soccer Slam GSSJ8P = Sega Soccer Slam GSSP70 = Sega Soccer Slam GSSP8P = Sega Soccer Slam GSTE69 = SSX Tricky GSTJ69 = SSX Tricky GSTP69 = SSX Tricky GSUE70 = Superman: Shadow of Apokolips GSUP70 = Superman: Shadow of Apokolips GSVE78 = MX Superfly Featuring Ricky Carmichael GSVP78 = MX Superfly featuring Ricky Carmichael GSWD64 = Star Wars Rogue Leader: Rogue Squadron II GSWE64 = Star Wars Rogue Squadron II: Rogue Leader GSWF64 = Star Wars Rogue Leader: Rogue Squadron II GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = Star Wars Rogue Leader: Rogue Squadron II GSWP64 = Star Wars Rogue Leader: Rogue Squadron II GSWS64 = Star Wars Rogue Leader: Rogue Squadron II GSXD64 = Star Wars: The Clone Wars GSXE64 = Star Wars: The Clone Wars GSXF64 = Star Wars: The Clone Wars GSXJ13 = Star Wars: Clone Sensou GSXP64 = Star Wars: The Clone Wars GSXS64 = Star Wars: The Clone Wars GSYE6S = Shrek: Super Party GSYP6S = Shrek: Super Party GSZP41 = Speed Challenge: Jacques Villeneuve Racing Vision GT2J18 = Tengai Makyou 2: Manji Maru GT3D52 = Tony Hawk's Pro Skater 3 GT3E52 = Tony Hawk's Pro Skater 3 GT3F52 = Tony Hawk's Pro Skater 3 GT3J52 = Tony Hawk's Pro Skater 3 GT3P52 = Tony Hawk's Pro Skater 3 GT4D52 = Tony Hawk's Pro Skater 4 GT4E52 = Tony Hawk's Pro Skater 4 GT4F52 = Tony Hawk's Pro Skater 4 GT4P52 = Tony Hawk's Pro Skater 4 GT5E7N = Starsky & Hutch GT5P7N = Starsky & Hutch GT6E70 = Terminator 3: The Redemption GT6J70 = Terminator 3: The Redemption GT6P70 = Terminator 3: The Redemption GT7E41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7P41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7X41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT8E78 = Big Mutha Truckers GT8P78 = Big Mutha Truckers GT8P7N = Big Mutha Truckers GTAE5S = Top Angler : Real Bass Fishing GTAP5S = Top Angler: Real Bass Fishing GTCJBL = GT Cube GTDE52 = Tony Hawk's Underground GTDP52 = Tony Hawk's Underground GTEE01 = 1080° Avalanche GTEJ01 = 1080° Silver Storm GTEP01 = 1080° Avalanche GTFEA4 = Teenage Mutant Ninja Turtles GTFPA4 = Teenage Mutant Ninja Turtles GTGE60 = Top Gun: Combat Zones GTGP60 = Top Gun: Combat Zones GTHJD9 = Charinko Hero GTIE69 = Tiger Woods PGA Tour 2003 GTIP69 = Tiger Woods PGA Tour 2003 GTJE5L = Tom & Jerry in War of the Whiskers GTKD51 = Turok Evolution GTKE51 = Turok Evolution GTKP51 = Turok Evolution GTLE52 = True Crime: Streets of LA GTLP52 = True Crime: Streets of LA GTLX52 = True Crime: Streets of LA GTMJDA = Mutsu To Nohohon GTNJ18 = Hudson Selection Vol. 4: Adventure Island GTOJAF = Tales of Symphonia GTPP6S = Knights Of The Temple : Infernal Crusade GTQE6S = Tonka: Rescue Patrol GTRE78 = Tetris Worlds GTRP78 = Tetris Worlds GTSE4F = TimeSplitters 2 GTSP4F = TimeSplitters 2 GTUE8G = Tube Slider - The Championship of Future Formula GTVE70 = Transworld Surf: Next Wave GTWE70 = Taz Wanted GTWP70 = Taz Wanted GTYE69 = Ty the Tasmanian Tiger GTYP69 = Ty la Tigre della Tasmania GTZE41 = Tarzan Untamed GTZP41 = Tarzan Freeride GU2D78 = 2 Games in 1: The Incredibles / Finding Nemo GU2F78 = 2 Games in 1: The Incredibles / Finding Nemo GU3D78 = 2 Games in 1: The SpongeBob SquarePants Movie / Tak 2: The Staff of Dreams GU4Y78 = 2 Games in 1: The SpongeBob SquarePants Movie / Battle for Bikini Bottom GU6E78 = Nicktoons - Battle for Volcano Island GUBE69 = The Urbz: Sims in the City GUBJ13 = The Urbz: Sims In The City GUBP69 = The Urbz: Sims In The City GUCD69 = UEFA Champions League 2004-2005 GUCF69 = UEFA Champions League 2004-2005 GUCP69 = UEFA Champions League 2004-2005 GUFE4Z = Ultimate Fighting Championship Throwdown GUFP4Z = UFC: Throwdown GUGD69 = Need For Speed Underground 2 GUGE69 = Need For Speed Underground 2 GUGF69 = Need For Speed Underground 2 GUGP69 = Need For Speed Underground 2 GUMD52 = Gun GUME52 = Gun GUMP52 = Gun GUNE5D = Gauntlet: Dark Legacy GUNP5D = Gauntlet: Dark Legacy GUPE8P = Shadow the Hedgehog GUPJ8P = Shadow the Hedgehog GUPP8P = Shadow the Hedgehog GUSE7F = Universal Studios Theme Park Adventure GUSP7F = Universal Studios Theme Park Adventure GUTD52 = Ultimate Spider-Man GUTE52 = Ultimate Spider-Man GUTF52 = Ultimate Spider-Man GUTI52 = Ultimate Spider-Man GUTJC0 = Ultimate Spider-Man GUTP52 = Ultimate Spider-Man GUTS52 = Ultimate Spider-Man GUVE51 = Freestyle Street Soccer GUVP51 = Urban Freestyle Soccer GUZE41 = Batman: Rise of Sin Tzu GUZP41 = Batman Rise of Sin Tzu GV3J70 = V-Rally 3 GV3P70 = V-Rally 3 GV4E69 = MVP Baseball 2005 GVCE08 = Viewtiful Joe: Red Hot Rumble GVCJ08 = Viewtiful Joe: Battle Carnival GVCP08 = Viewtiful Joe: Red Hot Rumble GVDE78 = Bratz Forever Diamondz GVDP78 = Bratz Forever Diamondz GVHE4F = Bionicle Heroes GVJE08 = Viewtiful Joe GVJJ08 = Viewtiful Joe GVJP08 = Viewtiful Joe GVKE52 = Cabela's Dangerous Hunts 2 GVLD69 = Marvel Nemesis: Rise of the Imperfects GVLE69 = Marvel Nemesis: Rise of the Imperfects GVLF69 = Marvel Nemesis: Rise of the Imperfects GVLP69 = Marvel Nemesis: L'Ascesa degli Esseri Imperfetti GVMP41 = Super Bust-A-Move All Stars GVOE69 = Bionicle GVOP69 = Bionicle GVPE69 = MVP Baseball 2004 GVRE7H = Grooverider Slot Car Thunder GVS46E = Virtua Striker 4 Ver.2006 GVS46J = Virtua Striker 4 Ver.2006 GVSE8P = Virtua Striker 2002 GVSJ8P = VIRTUA STRIKER 3 ver.2002 GVSJ9P = Virtua Striker 4 Ver.2006 GVSP8P = Virtua Striker 3 Ver. 2002 GVWJDQ = Gakuen Toshi Vara Noir Roses GW2E78 = WWE Day of Reckoning 2 GW2P78 = WWE Day of Reckoning 2 GW3E78 = WWE WrestleMania X8 GW3JG2 = WWE WrestleMania X8 GW3P78 = WWE Wrestlemania X8 GW4E69 = Tiger Woods PGA Tour 2004 GW4P69 = Tiger Woods PGA Tour 2004 GW5D69 = Need For Speed Carbon GW5E69 = Need For Speed Carbon GW5F69 = Need For Speed Carbon GW5P69 = Need For Speed Carbon GW6JEM = Winning Eleven 6 Final Evolution GW7D69 = James Bond 007 in Agent Under Fire GW7E69 = 007: Agent Under Fire GW7F69 = James Bond 007 in Agent Under Fire GW7P69 = James Bond 007 in Agent Under Fire GW8E52 = World Series of Poker GW9E78 = WWE WrestleMania XIX GW9JG2 = WWE WrestleMania XIX GW9P78 = WWE WrestleMania XIX GWAD8P = Spartan Total Warrior GWAE8P = Spartan Total Warrior GWAF8P = Spartan Total Warrior GWAP8P = Spartan Total Warrior GWBE41 = Worms Blast GWBP41 = Worms Blast GWDP6S = World Racing GWEE51 = 18 Wheeler: American Pro Trucker GWEP8P = 18 Wheeler American Pro Trucker GWGE4F = Swingerz Golf GWGJ4F = Wai Wai Golf GWGP4F = Ace Golf GWHE41 = Winnie The Pooh Rumbly Tumbly Adventures GWHP41 = Winnie the Pooh e le Pance Brontolanti GWJE52 = Tony Hawk's American Wasteland GWKE41 = Peter Jackson's King Kong: The Official Game of the Movie GWKP41 = Peter Jackson's King Kong: The Official Game of the Movie GWLE6L = Wallace & Gromit in Project Zoo GWLP6L = Wallace & Gromit : Project Zoo GWLX6L = Wallace & Gromit in Project Zoo GWME51 = Worms 3D GWMP8P = Worms 3D GWOE5G = Blowout GWPE78 = WWE Day of Reckoning GWPJG2 = WWE Day of Reckoning GWPP78 = WWE Day of Reckoning GWQE52 = Wreckless: The Yakuza Missions GWQP52 = Wreckless: The Yakuza Missions GWRE01 = Wave Race: Blue Storm GWRJ01 = Wave Race: Blue Storm GWRP01 = Wave Race: Blue Storm GWSEA4 = ESPN International Winter Sports 2002 GWSJA4 = Hyper Sports 2002 Winter GWSPA4 = ESPN International Winter Sports GWTEA4 = WTA Tour Tennis GWTJA4 = WTA Tour Tennis GWTPA4 = Pro Tennis WTA Tour GWUE7D = Whirl Tour GWUP7D = Whirl Tour GWVE52 = X2: Wolverine's Revenge GWVP52 = X-Men 2: Wolverine's Revenge GWVX52 = X-Men 2 : Wolverine's Revenge GWWE01 = Wario World GWWJ01 = Wario World GWWP01 = Wario World GWYE41 = Tom Clancy's Splinter Cell: Double Agent GWYX41 = Tom Clancy's Splinter Cell: Double Agent GWZE01 = Dance Dance Revolution: Mario Mix GWZJ01 = Dance Dance Revolution: Mario Mix GWZP01 = Dancing Stage Mario Mix GX2D52 = X-Men Legends II: Rise of Apocalypse GX2E52 = X-Men Legends II: Rise of Apocalypse GX2P52 = X-Men Legends II: Rise of Apocalypse GX2S52 = X-Men Legends II: Rise of Apocalypse GX3E41 = XIII GX3P41 = XIII GX3X41 = XIII GXAE51 = XGRA Extreme G Racing Association GXAP51 = XGRA Extreme G Racing Association GXBE69 = SSX 3 GXBP69 = SSX 3 GXCE01 = Custom Robo GXEE8P = Sonic Riders GXEJ8P = Sonic Riders GXEP8P = Sonic Riders GXFD69 = FIFA Football 2004 GXFE69 = FIFA Soccer 2004 GXFF69 = FIFA Football 2004 GXFI69 = FIFA Football 2004 GXFP69 = FIFA Football 2004 GXFS69 = FIFA Football 2004 GXGE08 = Mega Man X Collection GXLE52 = X-Men Legends GXLP52 = X-Men Legends GXLX52 = X-Men Legends GXME52 = X-Men: Next Dimension GXMF52 = X-Men: Next Dimension GXMP52 = X-Men: Next Dimension GXNE5D = Rampage Total Destruction GXOE69 = SSX on Tour GXOJ69 = SSX On Tour with Mario GXOP69 = SSX On Tour GXOX69 = SSX On Tour GXPE78 = Sphinx and the Cursed Mummy GXPP78 = Sphinx and the Cursed Mummy GXQF41 = Taxi 3 GXRE08 = Mega Man X: Command Mission GXRJ08 = Rockman X: Command Mission GXRP08 = Mega Man X: Command Mission GXSE8P = Sonic Adventure DX: Director's Cut GXSP6W = Sonic Adventure DX : Director's Cut GXSP8P = Sonic Adventure DX: Director's Cut GXUE41 = Surf's Up GXXE01 = Pokémon XD: Gale of Darkness GXXJ01 = Pokemon XD: Yami no Kaze Dark Lugia GXXP01 = Pokémon XD: Tempesta Oscura GY2E01 = Donkey Konga 2 GY2J01 = Donkey Konga 2 GY2P01 = Donkey Konga 2 GY3J01 = Donkey Konga 3 GYAD78 = Barnyard GYAE78 = Barnyard GYAP78 = Barnyard GYAX78 = Barnyard GYBE01 = Donkey Kong Jungle Beat GYBJ01 = Donkey Kong Jungle Beat GYBP01 = Donkey Kong Jungle Beat GYFEA4 = Yu-Gi-Oh! The Falsebound Kingdom GYFJA4 = Yu-Gi-Oh! The Falsebound Kingdom GYFPA4 = Yu-Gi-Oh! Il Regno dell'Illusione GYKEB2 = Zatch Bell! Mamodo Battles GYMJA4 = Jikkyou Powerful Major League GYQE01 = Mario Superstar Baseball GYQJ01 = Super Mario Stadium Miracle Baseball GYQP01 = Mario Superstar Baseball GYRE41 = TMNT GYRP41 = TMNT GYTE69 = Ty The Tasmanian Tiger 2: Bush Rescue GYTP69 = Ty The Tasmanian Tiger 2: Bush Rescue GYWDE9 = Harvest Moon: A Wonderful Life GYWEE9 = Harvest Moon: A Wonderful Life GYWJ99 = Bokujou Monogatari: Wonderful Life GYWP41 = Harvest Moon: A Wonderful Life GYWPE9 = Harvest Moon: A Wonderful Life GZ2E01 = The Legend of Zelda: Twilight Princess GZ2J01 = Zelda no Densetsu: Twilight Princess GZ2P01 = The Legend of Zelda: Twilight Princess GZ3E70 = Dragon Ball Z: Budokai 2 GZ3P70 = Dragon Ball Z: Budokai 2 GZ3PB2 = Dragon Ball Z Budokai 2 GZCE51 = ZooCube GZCJB0 = ZooCube GZCP51 = Zoocube GZDE70 = Godzilla: Destroy all Monsters Melee GZDJ70 = Godzilla: Kaijuu Dairantou GZDP70 = Godzilla: Destroy all Monsters Melee GZEE70 = Dragon Ball Z: Sagas GZFJBP = Gekituisenki - Zero Fighter GZHJDA = Zoids Full Metal Crash GZLE01 = The Legend of Zelda: The Wind Waker GZLJ01 = Zelda no Densetsu: Kaze no Takuto GZLP01 = The Legend of Zelda: The Wind Waker GZMP7D = Butt-Ugly Martians Zoom or Doom GZOJDA = Zoids vs. GZPE70 = Zapper - One Wicked Cricket! GZPP70 = Zapper: One Wicked Cricket! GZQE7D = Robots GZQJ7D = Robots GZQP7D = Robots GZSE70 = Zoids Battle Legends GZSJDA = Zoids VS. II GZVJDA = Zoids vs. III GZWE01 = Wario Ware Inc.: Mega Party Game$! GZWJ01 = Atumare!! made in wario GZWP01 = Wario Ware Inc.: Mega Party Game$! HAAA = Canale Foto HABA = Wii Shop Channel HABK = Wii Shop Channel HACA = Mii Channel HACK = Mii Channel HADE = Internet Channel HADJ = Internet Channel HADP = Internet Channel HAFE = Forecast Channel HAFJ = Weather Channel HAFP = Weather Channel HAGE = News Channel HAGJ = News Channel HAGP = News Channel HAJE = Everybody Votes Channel HAJJ = Everybody Votes Channel HAJP = Everybody Votes Channel HAPE = Check Mii Out Channel HAPJ = Mii Contest Channel HAPP = Check Mii Out Channel HATE = Nintendo Channel HATJ = Nintendo Channel HATP = Nintendo Channel HAVJ = Today and Tomorrow Fortune Teller HAVK = Today And Tomorrow Channel HAVP = Today and Tomorrow Channel HAWE = Metroid Prime 3 Preview HAWJ = Metroid Prime 3 Preview HAWP = Metroid Prime 3 Preview HAYA = Canale Foto HAYK = Photo Channel HBNJ = TV Friend Channel HBWE01 = New Super Mario Bros. Wii: Hellboy Edition HC3J = USB Flash Optimization HCAJ = Band Bros. DX Speaker Channel HCAP = Jam with the Band Live HCBJ = Photo Channel 1.0 Restore Program HCDJ = Digicam Print Channel HCFE = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Wii Speak Channel HCGE = Wii + Internet HCGJ = Wii Plus Internet HCGP = Wii Plus Internet HCHJ = Food Service HCIJ = Wii no ma HCJP = BBC iPlayer Channel HCLE = Netflix HCLP = Netflix HCMP = Kirby TV HCQE = Hulu Plus HCQJ = Hulu HCRE = The Legend of Zelda: Skyward Sword Save Data Update Channel HCRJ = The Legend of Zelda Skyward Sword Update HCRP = The Legend of Zelda Skyward Sword Update HCSE = Wii U Transfer Tool HCSJ = Wii U Transfer Tool HCSP = Wii U Transfer Tool HCTE = Wii System Transfer HCTJ = Wii System Transfer HCTP = Wii System Transfer HCUE = Wii Menu Electronic Manual HCUJ = Wii Menu Electronic Manual HCUP = Wii Menu Electronic Manual HCVA = Wii U Menu HCWE = Amazon Instant Video HCWP = Amazon Instant Video HCXE = YouTube HCXJ = YouTube HCXP = YouTube HCZE = Wii System Transfer HWFL = HackWiiFlow JA2J = Shin Megami Tensei JA3J = Kamaitachi no Yoru JA4E = Super Ghouls 'n Ghosts JA4J = Chou-Makai-Mura JA4P = Super Ghouls'n Ghosts JA5J = Heracles no Eikou III: Kamigami no Chinmoku JA6E = Zombies Ate My Neighbors JA6J = Zombies Ate My Neighbors JA6P = Zombies JA7D = ActRaiser JA7E = ActRaiser JA7F = ActRaiser JA7J = Actraiser JA7P = ActRaiser JA8E = Final Fight JA8J = Final Fight JA8P = Final Fight JAAE = Super Mario World JAAJ = Super Mario World JAAK = Super Mario World JAAP = Super Mario World JABJ = Mario no Super Picross JABL = Mario’s Super Picross JACE = F-Zero JACJ = F-Zero JACK = F-Zero JACP = F-Zero JADD = The Legend of Zelda: A Link to the Past JADE = The Legend of Zelda: A Link to the Past JADF = The Legend of Zelda: A Link to the Past JADJ = Zelda no Densetsu: Kamigami no Triforce JADK = The Legend of Zelda: A Link to the Past JADP = The Legend of Zelda: A Link to the Past JAEE = Donkey Kong Country JAEJ = Super Donkey Kong JAEK = Donkey Kong Country JAEP = Donkey Kong Country JAFD = SimCity JAFE = Sim City JAFF = SimCity JAFJ = SimCity JAFP = SimCity JAGJ = Fire Emblem: Monshou no Nazo JAHE = R-Type III: The 3rd Lightning JAHJ = R-Type III: The Third Lightning JAHK = R-Type III: The Third Lightning JAHP = R-TYPE III : The Third Lightning JAIE = Super Castlevania IV JAIJ = Akumajou Dracula JAIP = Super Castlevania IV JAJE = Street Fighter II: The World Warrior JAJJ = Street Fighter II JAJP = Street Fighter II: The World Warrior JALE = Contra III: The Alien Wars JALJ = Contra Spirits JALK = Contra III: The Alien Wars JALP = Super Probotector: Alien Rebels JAME = Gradius III JAMJ = Gradius III JAMK = Gradius III JAMM = Gradius III JAPJ = Fire Emblem: Seisen no Keifu JAUJ = Famicom Bunko: Hajimari no Mori JAVE = Super Metroid JAVJ = Super Metroid JAVK = Super Metroid JAVP = Super Metroid JAWE = Romance of the Three Kingdoms IV: Wall of Fire JAWJ = San Goku Shi IV JAZD = The Legend of the Mystical Ninja JAZE = The Legend of The Mystical Ninja JAZJ = Ganbare Goemon: Yukihime Kyuushutsu Emaki JAZP = The Legend of the Mystical Ninja JB3D = Harvest Moon JB3E = Harvest Moon JB3J = Harvest Moon JB3P = Harvest Moon JB5J = Super Gussun Oyoyo JB6J = Treasure Hunter G JB7J = Front Mission: Gun Hazard JB9J = Gakkou de atta Kowai Hanashi JBAE = Metal Marines JBAJ = Militia JBBE = Super Street Fighter II: The New Challengers JBBJ = Super Street Fighter II: The New Challengers JBBP = Super Street Fighter II: The New Challengers JBCE = Kirby's Dream Course JBCJ = Kirby Bowl JBCK = Kirby's Dream Course JBCP = Kirby's Dream Course JBDD = Donkey Kong Country 2: Diddy's Kong-Quest JBDE = Donkey Kong Country 2: Diddy's Kong Quest JBDJ = Super Donkey Kong 2: Dixie & Diddy JBDK = Donkey Kong Country 2: Diddy Kong's Quest JBDP = Donkey Kong Country 2: Diddy's Kong-Quest JBEJ = Magical Drop JBFJ = Otogirisou JBGJ = Mystery Dungeon: Shiren the Wanderer JBHJ = Heracles no Eikou IV: Kamigami-kara no Okurimono JBIE = Street Fighter II Turbo: Hyper Fighting JBIJ = Street Fighter II Turbo: Hyper Fighting JBIP = Street Fighter II Turbo: Hyper Fighting JBKE = Breath of Fire II JBKJ = Breath of Fire II: Shimei no Ko JBKP = Breath of Fire II JBLE = Pac-Attack JBLJ = Cosmo Gang the Puzzle JBLP = Pac-Attack JBNE = Darius Twin JBNJ = Darius Twin JBOJ = Panel de Pon JBOK = Panel de Pon JBPE = Donkey Kong Country 3: Dixie Kong's Double Trouble JBPJ = Super Donkey Kong 3: Nazo no Krems Shima JBPP = Donkey Kong Country 3: Dixie Kong’s Double Trouble JBQE = Kirby's Avalanche JBQJ = Kirby's Avalanche JBQP = Kirby's Ghost Trap JBRE = Vegas Stakes JBRJ = Vegas Stakes JBRP = Vegas Stakes JBSE = Axelay JBSJ = Axelay JBSP = Axelay JBTE = Super Turrican JBTJ = Super Turrican JBTP = Super Turrican JBUE = Super Turrican 2 JBUJ = Super Turrican Two JBVJ = Der Langrisser JBWE = Cybernator JBWJ = Assault Suits Valken JBWK = Cybernator JBWP = Cybernator JBYE = Super R-Type JBYJ = Super R-Type JBYK = Super R-Type JBYP = Super R-Type JC2J = Taikou Risshiden JC3J = Bahamut Lagoon JC4E = Indiana Jones' Greatest Adventures JC4J = Indiana Jones Great Adventure JC4P = Indiana Jones' Greatest Adventures JC5J = Romancing SaGa JC6J = Romancing SaGa 2 JC7E = The Combatribes JC7J = The Combatribes JC8E = Final Fantasy II JC8J = Final Fantasy IV JC8M = Final Fantasy II JC8P = Final Fantasy 2 JC9J = Final Fantasy V JCAJ = DoReMi Fantasy: Milon no DokiDoki Daibouken JCAL = DoReMi Fantasy - Milon’s DokiDoki Adventure JCAN = DoReMi Fantasy: Milon's DokiDoki Adventure JCBE = Super Mario RPG: Legend of the Seven Stars JCBJ = Super Mario RPG JCBM = Super Mario RPG: Legend of the Seven Stars JCCE = Kirby Super Star JCCJ = Hoshi no Kirby Super Deluxe JCCP = Kirby’s Fun Pak JCDE = Kirby's Dream Land 3 JCDJ = Hoshi no Kirby 3 JCDM = Kirby’s Dream Land 3 JCEJ = Fire Emblem: Thracia 776 JCGJ = Ganbare Goemon 2: Kiteretsu Shougun Magginesu JCHJ = Ganbare Goemon 3 JCIJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo JCJE = Super Punch-Out!! JCJJ = Super Punch-Out!! JCJP = Super Punch Out!! JCKE = Space Invaders: The Original Game JCKJ = Space Invaders: The Original Game JCKP = Space Invaders -The Original Game JCLD = Secret of Mana JCLE = Secret of Mana JCLF = Secret of Mana JCLJ = Seiken Densetsu 2 JCLP = Secret of Mana JCMJ = Super Wagyan Land JCNE = Prince of Persia JCNJ = Prince of Persia JCTE = Ogre Battle: The March of the Black Queen JCTJ = Densetsu no Ogre Battle: The March of the Black Queen JCTM = Ogre Battle: The March of the Black Queen JCUE = PilotWings JCUJ = Tactics Ogre: Let Us Cling Together JCVE = Pilotwings JCVJ = Pilotwings JCVP = Pilotwings JCWE = Super Mario Kart JCWJ = Super Mario Kart JCWP = Super Mario Kart JCXE = Nobunaga's Ambition JCXJ = Super Nobunaga no Yabou: Zengokuban JCYE = Uncharted Waters: New Horizons JCYJ = Daikoukai Jidai II JCZE = Genghis Khan II: Clan of the Gray Wolf JCZJ = Super Aoki Ookami to Shiroki Meshika: Genchou Hishi JD2J = Bishoujo Janshi Suchie-Pai JD3E = Super E.D.F. Earth Defense Force JD3J = Super E.D.F. Earth Defense Force JD3P = Super EDF Earth Defense Force JD4E = Rival Turf! JD4J = Rushing Beat JD4P = Rival Turf! JD5E = Brawl Brothers JD5J = Rushing Beat Ran: Fukusei Toshi JD5P = Brawl Brothers JD6E = The Ignition Factor JD6J = Fire Fighting JD6M = The Ignition Factor JD7E = Super Adventure Island JD7J = Takahashi Meijin no Daibouken Jima JD7P = Super Adventure Island JD8E = Super Adventure Island II JD8J = Takahashi Meijin no Daibouken Jima II JD8P = Super Adventure Island II JD9E = Super Bonk JD9J = Chou-Genjin JD9M = Super Bonk JDAE = Final Fantasy III JDAJ = Final Fantasy VI JDAP = Final Fantasy III JDBE = Super Bomberman 3 JDCE = Street Fighter Alpha 2 JDCJ = Street Fighter Two Alpha JDCP = Street Fighter Alpha 2 JDDE = Final Fight 2 JDDJ = Final Fight Two JDDP = Final Fight 2 JDEE = Final Fight 3 JDEJ = Final Fight Tough JDEP = Final Fight 3 JDFJ = Sutte Hakkun JDHJ = Super Famicom Wars JDIE = Super Star Wars JDIJ = Super Star Wars JDIP = Super Star Wars JDJE = Super Star Wars: The Empire Strikes Back JDJJ = Super Star Wars The Empire Strikes Back JDJP = Super Star Wars: The Empire Strikes Back JDKJ = Metal Max 2 JDLE = Super Star Wars: Return of the Jedi JDLJ = Super Star Wars Return Of The Jedi JDLP = Super Star Wars: Return of the Jedi JDMJ = Kirby no Kirakira Kizzu JDNE = Ghoul Patrol JDNJ = Ghoul Patrol JDOJ = Heisei Shin Onigashima: Zenpen JDPJ = Heisei Shin Onigashima: Kouhen JDQJ = Romancing Sa-Ga 3 JDRJ = Clock Tower JDSJ = Shin Megami Tensei II JDTJ = Shin Megami Tensei if... JDUJ = Albert Odyssey JDVE = Wild Guns JDVJ = Wild Guns JDVP = Wild Guns JDWE = Aero the Acrobat JDWJ = Aero The Acrobat JDWP = Aero The Acrobat JDXE = Aero the Acrobat 2 JDXJ = Aero The Acrobat Two JDXP = Aero the Acrobat 2 JDYJ = Rudra no Hihou JDZE = Final Fantasy Mystic Quest JDZJ = Final Fantasy USA: Mystic Quest JEAE = Natsume Championship Wrestling JEAJ = Natsume Championship Wrestling JEAP = Natsume Championship Wrestling JEBE = Mega Man X JEBJ = RockMan X JECE = Chrono Trigger JECJ = Chrono Trigger JECM = Chrono Trigger JECP = Chrono Trigger JEDJ = Kunio-Kun no Dodge Ball Dayo Zenin Shuugo! JEEJ = Majin Tensei JEFJ = Majin Tensei II: Spiral Nemesis JEGJ = Gouketuji Ichizoku JEHE = Mega Man X2 JEHJ = RockMan X2 JEIJ = Metal Max Returns JEJJ = Tsukikomori JEKJ = Kyuyaku Megami Tensei: Megami Tensei I・II JODI = Canale Homebrew JOUE01 = New Super Mario Bros. Wii 10 The Journey KMCP06 = Wiimms MKW Fun 2010-12.pal+ KMKE01 = Kustom Mario Kart Wii KMNE03 = Newer Super Mario Bros. Wii KMNE10 = Koopa Country KMNJ03 = Newer Super Mario Bros. Wii KMNP03 = Newer Super Mario Bros. Wii KMNP10 = Koopa Country L40P4Q = Sing IT: Pop hits, los 40 principales LAAJ = Hokuto no Ken LABE = Fantasy Zone LABJ = Fantasy Zone LABP = Fantasy Zone LACE = Wonder Boy LACJ = Super Wonder Boy LACP = Wonder Boy LADE = Phantasy Star LADJ = Phantasy Star LADP = Phantasy Star LAEE = Alex Kidd in Miracle World LAEJ = Alex Kidd in Miracle World LAEP = Alex Kidd in Miracle World LAFJ = Ashura LAFN = Secret Commando LAFP = Secret Command LAGE = Sonic The Hedgehog LAGJ = Sonic the Hedgehog LAGP = Sonic The Hedgehog LAHE = Space Harrier LAHJ = Space Harrier LAHP = Space Harrier LAIE = Enduro Racer LAIJ = Enduro Racer LAIP = Enduro Racer LAJE = Sonic The Hedgehog 2 LAJJ = Sonic the Hedgehog 2 LAJP = Sonic The Hedgehog 2 LAKE = Wonder Boy in Monster Land LAKJ = Super Wonder Boy: Monster World LAKP = Wonder Boy in Monster Land LALE = Fantasy Zone II: The Tears of OPA-OPA LALJ = Fantasy Zone II: The Tears of Opa-Opa LALP = Fantasy Zone II LAME = Sonic Chaos LAMJ = Sonic Chaos LAMP = Sonic Chaos LANE = Alex Kidd: The Lost Stars LANJ = Alex Kidd: The Lost Stars LANP = Alex Kidd: The Lost Stars LAOE = R-Type LAOJ = R-Type LAOP = R-Type LAPE = Wonder Boy III: The Dragon's Trap LAPP = Wonder Boy III: The Dragon's Trap LAQE = Alex Kidd in Shinobi World LAQP = Alex Kidd in Shinobi World LULZ = Canale Homebrew MA2J = Dyna Brothers MA3E = Puyo Puyo 2 MA3J = Puyo Puyo Tsuu MA3L = Puyo Puyo 2 MA4J = Bahamut Senki MA5J = Rent A Hero MA6E = Streets of Rage 2 MA6J = Bare Knuckle II: Shitou no Chinkon Uta MA6P = Streets of Rage 2 MA7E = Shining in the Darkness MA7J = Shining and the Darkness MA7P = Shining in the Darkness MA8E = Ecco: The Tides of Time MA8J = Ecco the Dolphin 2 MA8P = Ecco: The Tides of Time MA9J = The Hybrid Front MAAE = Altered Beast MAAJ = Juuouki MAAP = Altered Beast MABE = Columns MABJ = Columns MABP = Columns MACE = Dr. Robotnik's Mean Bean Machine MACJ = Puyo Puyo MACP = Dr. Robotnik's Mean Bean Machine MADE = Ecco the Dolphin MADJ = Ecco the Dolphin MADP = Ecco the Dolphin MAEE = Golden Axe MAEJ = Golden Axe MAEP = Golden Axe MAFE = Gunstar Heroes MAFJ = Gunstar Heroes MAFP = Gunstar Heroes MAGE = Ristar MAGJ = Ristar MAGP = Ristar MAHE = Sonic the Hedgehog MAHJ = Sonic the Hedgehog MAHP = Sonic the Hedgehog MAIE = Space Harrier II MAIJ = Space Harrier II MAIP = Space Harrier II MAJE = Toe Jam & Earl MAJJ = ToeJam & Earl MAJP = ToeJam & Earl MAKE = Shadow Dancer: The Secret of Shinobi MAKJ = Shadow Dancer: The Secret of Shinobi MAKP = Shadow Dancer: The Secret of Shinobi MALE = Bonanza Bros. MALJ = Bonanza Bros. MALP = Bonanza Bros. MAME = Sword of Vermillion MAMJ = Vermilion MAMP = Sword of Vermilion MANE = Gain Ground MANJ = Gain Ground MANP = Gain Ground MAOE = Bio-Hazard Battle MAOJ = Crying: Aseimei Sensou MAOP = Bio-Hazard Battle MAPE = Comix Zone MAPJ = Comix Zone MAPP = Comix Zone MAQE = Streets of Rage MAQJ = Bare Knuckle: Ikari no Tekken MAQP = Streets of Rage MARE = Beyond Oasis MARJ = The Story of Thor: Hikari o Tsugu Mono MARP = The Story of Thor MASE = Vectorman MASJ = Vectorman MASP = Vectorman MATE = Sonic Spinball MATJ = Sonic Spinball MATP = Sonic Spinball MAUJ = Puzzle & Action: Tant-R MAVE = Wonder Boy in Monster World MAVJ = Wonder Boy V: Monster World III MAVP = Wonder Boy In Monster World MAWE = Virtua Fighter 2 MAWJ = Virtua Fighter 2 MAWP = Virtua Fighter 2 MAXE = Alex Kidd In The Enchanted Castle MAXJ = Alex Kidd: Tenkuu Mashiro MAXP = Alex Kidd In The Enchanted Castle MAYE = Alien Storm MAYJ = Alien Storm MAYP = Alien Storm MAZE = ToeJam & Earl in Panic on Funkotron MAZP = ToeJam & Earl in Panic on Funkotron MB2J = Langrisser MB3E = Monster World IV MB3J = Monster World IV MB4J = Party Quiz Mega Q MB5J = Rangurissah II MB6E = Shining Force II MB6J = Shining Force II: Inishie no Fuuin MB6P = Shining Force II MB7E = Mega Turrican MB7P = Mega Turrican MB8E = Phantasy Star II MB8J = Phantasy Star II: Kaerazaru Toki no Owari ni MB8P = Phantasy Star II MB9J = Pepenga Pengo MBAJ = Pulseman MBAL = Pulseman MBAN = Pulseman MBBE = Sonic the Hedgehog 2 MBBJ = Sonic the Hedgehog 2 MBBP = Sonic the Hedgehog 2 MBCE = Kid Chameleon MBCJ = Chameleon Kid MBCP = Kid Chameleon MBDE = Golden Axe II MBDJ = Golden Axe II MBDP = Golden Axe II MBEE = Shining Force MBEJ = Shining Force: Kamigami no Isan MBEP = Shining Force MBFE = Shinobi III: Return of the Ninja Master MBFJ = The Super Soldier II MBFP = Shinobi III: Return of the Ninja master MBGE = Dynamite Headdy MBGJ = Dynamite Headdy MBGP = Dynamite Headdy MBHJ = Puzzle & Action: Ichidant-R MBIE = Landstalker: The Treasures of King Nole MBIJ = LandStalker: Koutei no Zaihou MBIP = Landstalker: The Treasures of King Nole MBJE = Ghouls'n Ghosts MBJJ = Dai Makai-Mura MBJP = Ghouls'n Ghosts MBKJ = Crack Down MBKP = Crack Down MBLJ = ESWAT: Cyber Police MBLP = ESWAT City Under Siege MBME = Sonic the Hedgehog 3 MBMJ = Sonic the Hedgehog 3 MBMP = Sonic the Hedgehog 3 MBNJ = Chelnov MBOE = Golden Axe III MBOJ = Golden Axe III MBOP = Golden Axe III MBPE = Super Thunder Blade MBPJ = Super Thunder Blade MBPP = Super Thunder Blade MBQE = Streets of Rage 3 MBQJ = Bare Knuckle III MBQP = Streets of Rage 3 MBRE = Rolling Thunder 2 MBRJ = Rolling Thunder 2 MBRP = Rolling Thunder 2 MBSJ = Dyna Brothers 2 Special MBTE = Alien Soldier MBTJ = Alien Soldier MBTP = Alien Soldier MBUE = Sonic 3D: Blast MBUJ = Sonic 3D Blast MBUP = Sonic 3D: Flickies' Island MBVJ = Jusu Kihei Leynos MBWE = Columns III: Revenge of Columns MBWJ = Columns III: Taiketsu! Columns World MBWM = Columns III: Revenge of Columns MBXE = Ecco Jr. MBXJ = Ecco Jr. MBXM = Ecco Jr. MBYE = Light Crusader MBYJ = Light Crusader MBYP = Light Crusader MBZE = Eternal Champions MBZJ = Eternal Champions MBZP = Eternal Champions MC2E = Earthworm Jim 2 MC2J = Earthworm Jim 2 MC2P = Earthworm Jim 2 MC3E = Super Street Fighter II: The New Challengers MC3J = Super Street Fighter 2: The New Challengers MC3P = Super Street Fighter II: The New Challengers MC4E = Strider MC4J = Strider Hiryu MCAJ = Gley Lancer MCAL = Gley Lancer MCAN = Gley Lancer MCBE = Powerball MCBJ = Wrestleball MCCE = Phantasy Star III MCCJ = Toki no Keishousha: Phantasy Star III MCCP = Phantasy Star III: Generations of Doom MCDE = Sonic & Knuckles MCDJ = Sonic & Knuckles MCDP = Sonic & Knuckles MCEJ = Super Fantasy Zone MCEN = Super Fantasy Zone MCEP = Super Fantasy Zone MCGE = Forgotten Worlds MCGJ = Forgotten Worlds MCGP = Forgotten Worlds MCHE = M.U.S.H.A. MCHJ = Musha Aleste MCHM = MUSHA : Metallic Uniframe Super Hybrid Armor MCIJ = Gynoug MCJE = Splatterhouse 2 MCJJ = Splatterhouse Part 2 MCJP = Splatterhouse 2 MCKE = Phantasy Star IV MCKJ = Phantasy Star: Sennenki no Owari ni MCKP = Phantasy Star IV MCLE = Street Fighter II': Special Champion Edition MCLJ = Street Fighter II' Plus: Champion Edition MCLP = Street Fighter II’: Special Champion Edition MCMJ = Lord Monarch: Tokoton Sentou Densetsu MCNJ = Hokuto no Ken: Shin Seikimatu Kyuseisyu Densetsu MCOJ = Sorcerian MCPE = Earthworm Jim MCPJ = Earthworm Jim MCPP = Earthworm Jim MCQE = Boogerman: A Pick and Flick Adventure MCQP = Boogerman - A Pick and Flick Adventure MCRE = Wolf of the Battlefield: MERCS MCRJ = Senjou no Ookami II MCRP = MERCS: Wolf of the Battlefield MCSJ = Wonder Boy III: Monster Lair MCSN = Wonder Boy III: Monster Lair MCSP = Wonder Boy III: Monster Lair MCTE = Clay Fighter MCTP = Clay Fighter MCUJ = Dragon Slayer: The Legend of Heroes MCVE = Pitfall: The Mayan Adventure MCVJ = Pitfall: The Mayan Adventure MCVP = Pitfall: The Mayan Adventure MCWE = Galaxy Force II MCWJ = Galaxy Force II MCWP = Galaxy Force II MCXJ = Dragon Slayer: The Legend of Heroes MCYE = The Revenge of Shinobi MCYJ = The Super Shinobi MCYP = The Revenge of Shinobi MCZE = Shanghai II: Dragon's Eye MCZP = Shanghai II Dragon's Eye MDUE01 = Mario Kart: Track Grand Priix MECPSI = SingItStar Mecano METE01 = New Super Metroid Bros. Wii MIJPSI = SingItStar Michael Jackson MILPSI = SingItStar Miliki MKDE02 = Darky Kart Wii MKTE01 = Mario Kart Wii Teknik MKWP01 = Super Mario Kart for Wii MMRE01 = D.U. Super Mario Bros 2.1 Madness Returns MRRE01 = New Super Mario Bros. Wii Retro Remix MRRP01 = New Super Mario Bros. Wii Retro Remix NA3E = Bomberman Hero NA3J = Bomberman Hero NA3P = Bomberman Hero NAAE = Super Mario 64 NAAJ = Super Mario 64 NAAP = Super Mario 64 NABE = Mario Kart 64 NABJ = Mario Kart 64 NABK = Mario Kart 64 NABP = Mario Kart 64 NACE = The Legend of Zelda: Ocarina of Time NACJ = Zelda no Densetsu: Toki no Ocarina NACP = The Legend of Zelda: Ocarina of Time NADE = Star Fox 64 NADJ = Star Fox 64 NADK = Star Fox 64 NADP = Lylat Wars NAEE = Paper Mario NAEJ = Mario Story NAEP = Paper Mario NAFE = F-Zero X NAFJ = F-Zero X NAFP = F-Zero X NAGJ = Aerogauge NAHE = Yoshi's Story NAHJ = Yoshi's Story NAHP = Yoshi's Story NAIE = Wave Race 64 NAIJ = Wave Race 64: Kawasaki Jet Ski NAIP = Wave Race 64 NAJ8 = The Legend of Zelda: Ocarina of Time (spanish translation) NAJ9 = Super Smash Bros. NAJJ = Tsumi to Batsu NAJL = Sin & Punishment NAJN = Sin and Punishment NAKD = Pokémon Snap NAKE = Pokémon Snap NAKF = Pokémon Snap NAKI = Pokémon Snap NAKJ = Pokémon Snap NAKP = Pokémon Snap NAKS = Pokémon Snap NALE = Super Smash Bros. NALJ = Nintendo All-Star Dairantou Smash Brothers NALP = Super Smash Bros. NAME = Kirby 64: The Crystal Shards NAMJ = Hoshi no Kirby 64 NAMK = Kirby 64: The Crystal Shards NAMP = Kirby 64: The Crystal Shards NAND = Pokémon Puzzle League NANE = Pokémon Puzzle League NANF = Pokémon Puzzle League NANJ = Pokemon Puzzle League NANP = Pokémon Puzzle League NAOE = 1080° Snowboarding NAOJ = 1080° Snowboarding NAOK = 1080° Snowboarding NAOP = 1080 : TenEighty Snowboarding NAPJ = Custom Robo V2 NARE = The Legend of Zelda: Majora's Mask NARJ = Zelda no Densetsu: Majora no Kamen NARP = The Legend of Zelda: Majora's Mask NASE = Cruis'n USA NASJ = Cruisn USA NASP = Cruis'n USA NATE = Mario Tennis NATJ = Mario Tennis 64 NATP = Mario Tennis NAUE = Mario Golf NAUJ = Mario Golf 64 NAUP = Mario Golf NAYE = Ogre Battle 64: Person of Lordly Caliber NAYJ = Ogre Battle 64: Person of Lordly Caliber NAYM = Ogre Battle 64 : Person of Lordly Caliber NAZE = Mario Party 2 NAZJ = Mario Party 2 NAZP = Mario Party 2 NEEA = The Legend of Zelda: Ocarina of Time Master Quest NEWE01 = New Super Mario Bros Wii 15 A New World NK2O = Neek2o NMNP01 = Newer Super Mario Bros. Wii NRJ1FR = StarSing : NRJ Music Tour v1.1 NSMB02 = New Super Mario Bros. Wii 2 NSSP01 = Newer Summer Sun NWRP01 = Newer Super Mario Bros. Wii NZXM = Super Mario 64 Multiplayer ONKELZ = SingItStar Böhse Onkelz PAL OTFPSI = Sing IT: Operación triunfo P2ME01 = Metroid Prime 2: Echoes (Bonus Disc) PA2J = Nekketsu Koukou Dodgeball Bu: CD Soccer Hen PA3J = Salamander PA4J = Parasol Stars PA6E = Bloody Wolf PA6J = Narazumono Sentou Butai: Bloody Wolf PA6P = Bloody Wolf PA7E = Alien Crush PA7J = Alien Crush PA7P = Alien Crush PA8E = Ordyne PA8J = Ordyne PA9E = Splatterhouse PA9J = Splatterhouse PA9P = Splatterhouse PAAE = Bomberman '93 PAAP = Bomberman '93 PABE = Bonk's Adventure PABJ = PC Genjin PABP = Bonk's Adventure PACE = Dungeon Explorer PACJ = Dungeon Explorer PACP = Dungeon Explorer PADE = R-Type PADJ = R-Type I PADP = R-Type PAEE = Super Star Soldier PAEJ = Super Star Soldier PAEP = Super Star Soldier PAFE = Victory Run PAFJ = Victory Run: Eikou no 13,000KM PAFP = Victory Run PAGJ = Bomberman '94 PAGL = Bomberman'94 PAGN = Bomberman '94 PAHE = Battle Lode Runner PAHJ = Battle Lode Runner PAHP = Battle Lode Runner PAIE = New Adventure Island PAIJ = Takahashi Meijin no Shin Bouken Jima PAIP = New Adventure Island PAJJ = Joshoken Necromancer PAKE = Dragon's Curse PAKJ = Adventure Island PAKP = Dragon's Curse PALE = Soldier Blade PALJ = Soldier Blade PALP = Soldier Blade PAME = Neutopia PAMJ = Neutopia: Frey no Shou PAMP = Neutopia PANE = Military Madness PANJ = Nectaris PANP = Military Madness PAOJ = Final Soldier PAOL = Final Soldier PAON = Final Soldier PAPJ = R-Type II PAQJ = Gradius PARJ = Detana TwinBee PARL = Detana Twin Bee PARN = Detana Twin Bee PASJ = Cadash PATJ = Kiki Kaikai PAUJ = Kaizou Chounin Shubibinman PAVE = Vigilante PAVJ = Vigilante PAVP = Vigilante PAWE = Galaga '90 PAWJ = Galaga '88 PAWP = Galaga'90 PAYJ = Valkyrie no Densetsu PAZJ = Genpei Toumaden PB2E = Neutopia II PB2J = Neutopia II PB2P = Neutopia II PB3E = Devil's Crush PB3J = Devil Crash PB3P = Devil's Crush PB5J = Ninja Ryukenden PB6E = Cratermaze PB6P = Cratermaze PB7J = Sengoku Mahjong PB8E = Blazing Lazers PB8J = Blazing Lazers PB8P = Blazing Lazers PB9E = World Sports Competition PB9J = Power Sports PB9P = World Sports Competition PBAE = Dragon Spirit PBAJ = Dragon Spirit PBAP = Dragon Spirit PBCJ = Wonder-Momo PBDE = Double Dungeons PBDJ = Double Dungeons PBDP = Double Dungeons PBEE = Moto Roader PBEJ = Moto Roader PBEP = Motoroader PBFJ = Fire ProWrestling: Combination Tag PBHE = Bonk's Revenge PBHJ = PC Genjin 2 PBHP = Bonk's Revenge PBIE = Bonk 3: Bonk's Big Adventure PBIJ = PC Genjin 3 PBIP = Bonk III: Bonk's Big Adventure PBJE = Samurai Ghost PBJJ = Genpei Toumaden: Kannoni PBJP = Samurai Ghost PBME = Legend of Hero Tonma PBMJ = Legend of Hero Tonma PBMP = Legend of Hero Tonma PBNE = Ninja Spirit PBNJ = Saigou no Nindou: Ninja Spirit PBNP = Ninja Spirit PBSE = Chew Man Fu PBSJ = Be Ball PBSP = Chew Man Fu PBTE = China Warrior PBTJ = The Kung Fu PBTP = China Warrior PBUE = Bravoman PBUJ = Chouzetsu Rinjin Bravoman PBVJ = Benkei Gaiden PBWE = Air “Zonk” PBWJ = PC Denjin: Punkic Cyborgs PBWP = Air 'Zonk' PBXE = Shockman PBXJ = Kaizou Chounin Shubibinman 2: Atanaru Teki PBXP = Shockman PBYJ = Out Live PBZE = J.J. & Jeff PBZP = J.J. & Jeff PC2E = Chase H.Q. PC2J = Chase H.Q. PC2P = Chase H.Q. PC3J = Darius Plus PC4J = Space Invaders: Fukkatsu no Hi PC5J = Dragon Saber PC6E01 = Pokémon Colosseum Bonus Disc PC6J = Final Blaster PC7J = Mizubaku Daibouken PC8J = The Ninjawarriors PC9J = The NewZealand Story PCAE = Silent Debuggers PCAJ = Silent Debuggers PCAP = Silent Debuggers PCBE = Dead Moon PCBJ = Dead Moon: Tsuki Sekai no Akumu PCBP = Dead Moon PCCJ = Makai Hakkenden Shada PCDJ = Appare! Gateball PCEE = Power Golf PCEJ = Power Golf PCEP = Power Golf PCHE = Drop Off PCHJ = Drop Rock Hora Hora PCHP = Drop Off PCJJ = Override PCKJ = Gai Flame PCMJ = Mr. Heli no Daibouken PCNJ = Winning Shot PCOE = Psychosis PCOJ = Paranoia PCOP = Psychosis PCPJ = Power Eleven PCQJ = Psycho Chaser PCRJ = Break In PCRL = Break In PCRN = Break In PCSJ = Digital Champ: Battle Boxing PCSJ = Digital Champ: Battle Boxing PCSJ01 = Pokemon Colosseum Bonus Disc PCSL = Digital Champ : Battle Boxing PCSN = Digital Champ Battle Boxing PCTJ = Power Tennis PCUJ = Fire ProWrestling 2nd Bout PCVE = World Class Baseball PCVP = World Class Baseball PCWJ = Image Fight PCXJ = Power League IV PCYJ = Wallaby!! Usagi no Kuni no Kangaroo Race PDCJ = Dai Makaimura PDDJ = Volfied PDEJ = S.C.I.: Special Criminal Investigation PDFJ = Jigoku Meguri PDGJ = Fire ProWrestling 3: Legend Bout PDHJ = Rastan Saga II PDIE = Champion Wrestler PDJJ = Street Fighter II': Champion Edition PDJL = Street Fighter II' : Champion Edition PDJN = Street Fighter II: Champion Edition PDUE01 = Another Super Mario Bros. Wii PKBJ01 = The Tower of Druaga PLUS = WiiMC+ PM4E01 = Mario Kart: Double Dash!! Bonus Disc PMNEO1 = New Old Super Mario Bros. Wii POPPSI = SingItStar Pop PPNE01 = New Super Mario Bros. Wii 2: The Next Levels PPNP01 = New Super Mario Bros. Wii 2: The Next Levels PRJE01 = Pac-Man vs. PRJJ01 = Pac-Man vs. PRJP01 = Pac-Man vs. PROE01 = New Super Mario Bros. Wii 14 Project Mario PT1PSI = SingIt Star Portugal Hits PT2PSI = SingIt Portugal Hits Summer Party PT3PSI = Sing IT Portugal Hits - Morangos com Açucar PUTA01 = Guitar Hero III Custom : Rock Hits PWNP69 = Pwned Super Mario Bros. Wii PXWE = Project X: Love Potion Disaster PZLE01 = The Legend of Zelda: Collector's Edition PZLJ01 = The Legend of Zelda: Collector's Edition PZLP01 = The Legend of Zelda: Collector's Edition QA2J = Nekketsu Koukou Dodge Ball-Bu: CD Soccer-hen QA3E = SimEarth: The Living Planet QA3J = SimEarth QA3P = SimEarth: The Living Planet QA4J = Super Darius II QA5J = Space Invaders: The Original Game QA6J = Super Darius QA7J = Legend of Xanadu: Kaze no Densetsu Xanadu QA8J = Spriggan Mark 2 QA9J = Kaze no Densetsu: Xanadu II QAAE = Super Air Zonk QAAJ = CD Denjin: Rockabilly Tengoku QAAP = Super Air Zonk QABE = Ys Book I & II QABJ = Ys I + II QABP = Ys Book I & II QACJ = Cho Aniki QACL = Cho Aniki QACN = Cho Aniki QADJ = Gradius II: Gofer no Yabou QADL = Gradius II: Gofer no Yabou QADN = Gradius II Gofer No Yabou QAEJ = A.III: A-Ressha de Ikou III QAFE = The Dynastic Hero QAFJ = Chou Eiyuu Densetsu: Dynastic Hero QAFP = The Dynastic Hero QAGE = Gate of Thunder QAGJ = Gate of Thunder QAGP = Gate of Thunder QAHJ = Kawa no Nushi Tsuni Shizenha QAJJ = Image Fight II QAKJ = Ai Chou Aniki QALJ = The Atlas: Renaissance Voyager QANJ = Neo Nectaris QAOJ = Dungeon Explorer II QAPJ = Akumajou Dracula X: Chi no Rondo QAPL = Castlevania : Rondo of Blood QAPN = Castlevania Rondo of Blood QAPP = Castlevania: Rondo of Blood QAQJ = Dragon Slayer: Eiyuu Densetsu QARJ = Blood Gear QASE = Lords of Thunder QASJ = Winds of Thunder QASP = Lords of Thunder QATE = Riot Zone QATJ = Crest of Wolf QATP = Riot Zone QAUE = Monster Lair QAUJ = Wonder Boy III: Monster Lair QAUP = Monster Lair QAVJ = Bomberman: Panic Bomber QAWJ = Star Parodier QAWL = Star Parodier QAWN = Star Parodier QAXJ = Martial Champion QAYJ = Seirei Senshi Spriggan QAZJ = Eikan wa Kimi ni: Koko Yakyu Zenkoku Taikai QBAJ = L Dis QBBE = Fighting Street QBBJ = Fighting Street QBBP = Fighting Street R01PET = SingItStar Queen R02PEA = SingItStar Rock Ballads R15POH = SingItStar Radio 105 R22E01 = FlingSmash R22J01 = Tataite Hazumu: Super Smash Ball Plus R22P01 = FlingSmash R23E52 = Barbie and the Three Musketeers R23P52 = Barbie e le Tre Moschettiere R24J01 = Chibi-Robo! R25EWR = LEGO Harry Potter: Years 1-4 R25PWR = LEGO Harry Potter: Anni 1-4 R26E5G = Data East Arcade Classics R27E54 = Dora Saves the Crystal Kingdom R27X54 = Dora Saves the Crystal Kingdom R28E54 = Top Spin 4 R28P54 = Top Spin 4 R29E52 = NPPL Championship Paintball 2009 R29P52 = Millennium Series Championship Paintball 2009 R2AE7D = Ice Age 2: The Meltdown R2AP7D = L'Era Glaciale 2: Il Disgelo R2AX7D = L'Era Glaciale 2: Il Disgelo R2DEEB = Dokapon Kingdom R2DJEP = Dokapon Kingdom For Wii R2DPAP = Dokapon Kingdom R2DPJW = Dokapon Kingdom R2EJ99 = Fish Eyes Wii R2FE5G = Freddi Fish: Kelp Seed Mystery R2FP70 = Freddi Fish: Kelp Seed Mystery R2GEXJ = Fragile Dreams: Farewell Ruins of the Moon R2GJAF = Fragile: Sayonara Tsuki no Haikyo R2GP99 = Fragile Dreams: Farewell Ruins of the Moon R2HE41 = Petz Horse Club R2IE69 = Madden NFL 10 R2IP69 = Madden NFL 10 R2JJAF = Taiko no Tatsujin Wii R2KE54 = Don King Boxing R2KP54 = Don King Boxing R2LJMS = Hula Wii: Hura de Hajimeru Bi to Kenkou!! R2ME20 = M&M's Adventure R2NE69 = NASCAR Kart Racing R2OE68 = Medieval Games R2OP68 = Medieval Games R2PE9B = Super Swing Golf Season 2 R2PJ9B = Super Swing Golf Season 2 R2PKZ4 = Super Swing Golf Season 2 R2PP99 = Super Swing Golf R2PP9B = Super Swing Golf R2QJC0 = Cooking Mama 2 Taihen Mama Wa Ooisogashi R2RE4F = Pony Friends 2 R2RP4F = Pony Friends 2 R2SE18 = Deca Sports 2 R2SJ18 = Deca Sporta 2 R2SP18 = Sports Island 2 R2TE41 = Teenage Mutant Ninja Turtles: Smash-Up R2TP41 = Teenage Mutant Ninja Turtles: Smash-Up R2UE8P = Let's Tap R2UJ8P = Let's Tap R2UP8P = Let's Tap R2VE01 = Sin & Punishment: Star Successor R2VJ01 = Sin and Punishment: Successor to the Sky R2VP01 = Sin and Punishment: Successor of the Skies R2WEA4 = Pro Evolution Soccer 2009 R2WJA4 = Winning Eleven PLAY MAKER 2009 R2WPA4 = Pro Evolution Soccer 2009 R2WXA4 = Pro Evolution Soccer 2009 R2YE54 = Birthday Party Bash R2YP54 = E' il mio Compleanno! R32J01 = Metroid Prime 2 R33E69 = AC/DC Live: Rock Band Track Pack R33P69 = AC/DC Live: Rock Band Song Pack R34E69 = Rock Band: Country Track Pack R35JC8 = Sangokushi 11 with Power-Up Kit R36E69 = Green Day: Rock Band R36P69 = Green Day: Rock Band R37E69 = Rock Band: Metal Track Pack R38E78 = Marvel Super Hero Squad R38P78 = Marvel Super Hero Squad R38X78 = Marvel Super Hero Squad: Walmart Edition R38Y78 = Marvel Super Hero Squad R39EFP = Shimano Xtreme Fishing R39PNK = Shimano Extreme Fishing R3AE20 = Story Hour: Adventures R3AP20 = Story Hour: Adventures R3AP7J = Fiabe della buonanotte per bambini R3BE8P = Samba de Amigo R3BJ8P = Samba de Amigo R3BP8P = Samba de Amigo R3CE20 = Chrysler Classic Racing R3CP20 = Chrysler Classic Racing R3CP7J = Chrysler Classic Racing R3DES5 = Dream Pinball 3D R3DPS5 = Dream Pinball 3D R3EEWR = Game Party 3 R3EPWR = Game Party 3 R3FJA4 = Jikkyou Powerful Major League 3 R3GXUG = Kidz Sports: Crazy Mini Golf R3HP6Z = Agent Hugo: Hula Holiday R3HX6Z = Agent Hugo: Hula Holiday R3IJ01 = Metroid Prime R3JE5G = Go Play Circus Star R3KP6N = Skyscraper R3LEWR = Green Lantern: Rise of the Manhunters R3LPWR = Lanterna Verde: L’ascesa dei Manhunters R3ME01 = Metroid Prime: Trilogy R3MP01 = Metroid Prime: Trilogy R3NEXS = Guilty Gear XX Accent Core Plus R3NPH3 = Guilty Gear XX Accent Core Plus R3OE01 = Metroid: Other M R3OJ01 = Metroid: Other M R3OP01 = Metroid: Other M R3PEWR = Speed Racer: The Videogame R3PJ52 = Speed Racer R3PPWR = Speed Racer R3RE8P = Sonic & SEGA All-Stars Racing R3RP8P = Sonic & SEGA All-Stars Racing R3SE52 = Spider-Man: Web of Shadows R3SP52 = Spider-Man: Il Regno delle Ombre R3TE54 = Top Spin 3 R3TJG9 = Top Spin 3 R3TP54 = Top Spin 3 R3UJGD = Oyako de Asobo: Miffy no Omocha Bako R3VEFP = Deer Drive R3VPNK = Deer Drive R3XE6U = Sam & Max: Season One R3XP6V = Sam & Max: Season One R3YE70 = Sam & Max: Season Two: Beyond Time and Space R3YP70 = Sam & Max: Season Two: Beyond Time and Space R3ZE69 = Rock Band Track Pack: Classic Rock R42E69 = The Sims 2: Castaway R42P69 = The Sims 2: Island R43E69 = EA Sports Active: Personal Trainer R43J13 = EA Sports Active Personal Trainer Wii 30-Hi Seikatsu Kaizen Program R43P69 = EA Sports Active R44J8P = Suzumiya Haruhi no Heiretsu R46ENS = Phantom Brave: We Meet Again R46JKB = Phantom Brave Wii R47E20 = ATV Quad Kings R48E7D = The Spiderwick Chronicles R48P7D = Spiderwick: Le Cronache R49E01 = Donkey Kong Jungle Beat R49J01 = Donkey Kong: Jungle Beat R49P01 = Donkey Kong: Jungle Beat R4AE69 = SimAnimals R4AJ13 = SimAnimals R4AP69 = SimAnimals R4BEJZ = Championship Foosball R4BPGT = Calcio Balilla R4CE69 = SimCity Creator R4CJ13 = Simcity Creator R4CK69 = SimCity Creator R4CP69 = Simcity Creator R4DDUS = Die drei Fragezeichen - Das verfluchte Schloss R4EE01 = Endless Ocean: Blue World R4EJ01 = Forever Blue: Umi no Yobigoe (Endless Ocean 2) R4EP01 = Endless Ocean 2: Avventure negli abissi R4FE20 = Story Hour: Fairy Tales R4FP20 = Story Hour: Fairy Tales R4FP7J = Fiabe della buonanotte per bambine R4IPNK = Mad Tracks R4LPUG = Athletic Piggy Party R4LXUG = Athletic Piggy Party R4MJ0Q = Shikakui Atama wo Marukusuru Wii R4NE5G = Major Minor's Majestic March R4NP5G = Major Minor's Majestic March R4NX5G = Major Minor's Majestic March R4PE69 = The Sims 2: Pets R4PP69 = The Sims 2: Pets R4QE01 = Mario Strikers Charged R4QJ01 = Mario Strikers Charged R4QK01 = Mario Power Soccer R4QP01 = Mario Strikers Charged Football R4RE69 = FIFA Soccer 10 R4RJ13 = FIFA 10 WORLD CLASS SOCCER R4RK69 = FIFA 10 R4RP69 = FIFA 10 R4RX69 = FIFA 10 R4RY69 = FIFA 10 R4RZ69 = FIFA Soccer 10 R4SE54 = MLB Superstars R4VEA4 = Storybook Workshop R4VJA4 = Teleshibai Wii R4VJAF = Tere Shibai Wii R4WJA4 = Jikkyou Powerful Major League 2009 R4YJ2M = Sukeban Shachou Rena Wii R4ZE01 = Fatal Frame 4: Mask of the Lunar Eclipse R4ZJ01 = Fatal Frame IV: Mask of the Lunar Eclipse R4ZP01 = Fatal Frame IV: Mask of the Lunar Eclipse R52E08 = Neopets Puzzle Adventure R52P08 = Neopets Puzzle Adventure R53PFH = In The Mix Featuring Armin van Buuren R54FMR = Countdown: The Game R55F41 = Qui Veut Gagner Des Millions: 1ère Edition R55P41 = Chi Vuol Essere Milionario: 1a Edizione R56EG9 = Astro Boy: The Video Game R56PG9 = Astro Boy: The Video Game R57FMR = Questions pour un champion R58DMR = U-Sing R58FMR = U-Sing R58PMR = U-Sing R58SMR = U-Sing R59D4Q = Club Penguin: Game Day! R59E4Q = Club Penguin: Game Day! R59P4Q = Club Penguin: Game Day! R5AE8P = The Golden Compass R5AP8P = La Bussola d'Oro R5AX8P = La Bussola d'Oro R5DE5G = Flip's Twisted World R5EPMR = Countdown: The Game R5FE41 = Academy of Champions: Soccer R5FP41 = Academy of Champions: Football R5GE78 = Are You Smarter Than A 5th Grader?: Make the Grade R5IE4Q = Toy Story Mania! R5IP4Q = Toy Story Mania! R5IR4Q = Toy Story Mania! R5IX4Q = Toy Story Mania! R5JES5 = Pirates vs Ninjas Dodgeball R5JPS5 = Pirates vs. Ninjas Dodgeball R5MJAF = Kotoba No Puzzle Mojipittan Wii Deluxe R5NJN9 = Doala De Wii R5OENR = Party Pigs: Farmyard Games R5OXUG = Farmyard Party: Featuring the Olympigs R5PE69 = Harry Potter and the Order of the Phoenix R5PJ13 = Harry Potter and the Order of the Phoenix R5PP69 = Harry Potter e l'Ordine della Fenice R5PX69 = Harry Potter e l'Ordine della Fenice R5QPGT = Circus R5SERW = Mortimer Beckett and the Secrets of Spooky Manor R5TE69 = Grand Slam Tennis R5TJ13 = Grand Slam Tennis R5TP69 = Grand Slam Tennis R5UE41 = CSI: Deadly Intent R5UP41 = CSI: Intento Mortale R5VE41 = James Cameron's Avatar: The Game R5VP41 = James Cameron's Avatar: Il Gioco R5VX41 = James Cameron's Avatar: Il Gioco R5WEA4 = Silent Hill: Shattered Memories R5WJA4 = Silent Hill: Shattered Memories R5XJ13 = MySims Agents R5XP69 = MySims Agents R5YD78 = All Star Cheerleader 2 R5YE78 = All Star Cheer Squad 2 R5YP78 = All Star Cheerleader 2 R62E4Q = Disney Sing It: Pop Hits R62P4Q = Disney Sing It: Pop Hits R63EG9 = Family Party: 30 Great Games Outdoor Fun R63PG9 = Family Party: 30 Great Games Outdoor Fun R64E01 = Wii Music R64J01 = Wii Music R64K01 = Wii Music R64P01 = Wii Music R65ENR = Buck Fever R66E41 = Press Your Luck 2010 Edition R67E6K = Smart Series Presents: JaJa's Adventure R68E5G = Go Play City Sports R69E36 = DiRT 2 R69P36 = Colin McRae: DiRT 2 R6APPU = Io Babysitter R6BE78 = de Blob R6BJ78 = Blob Colorful Na Kibou R6BK78 = de Blob R6BP78 = de Blob R6BX78 = de Blob R6CEAF = We Cheer 2 R6CJAF = WE CHEER Dancing Spirits! R6DFJW = Code de la Route R6EE41 = Family Feud 2010 Edition R6FE41 = Six Flags Fun Park R6FERS = Six Flags Fun Park R6FP41 = Fun Park Party R6GPMR = Golden Balls R6HE54 = Ni Hao, Kai-lan: Super Game Day R6HP54 = Ni Hao, Kai-lan: Super Game Day R6IE54 = Baseball Blast! R6JJGD = Fullmetal Alchemist: Prince of the Dawn R6KP36 = Ashes Cricket 2009 R6KU36 = Ashes Cricket 2009 R6LEWR = LEGO Rock Band R6LPWR = LEGO Rock Band R6ME5Z = America's Next Top Model R6MPML = America's Next Top Model R6MXMR = Top Model R6NE41 = Shaun White Snowboarding: World Stage R6NP41 = Shaun White Snowboarding: World Stage R6NY41 = Shaun White Snowboarding: World Stage R6OE78 = Cars Race-O-Rama R6OP78 = Cars Race-O-Rama R6OX78 = Cars Race-O-Rama R6QE69 = MySims Agents R6REJH = TrackMania: Build to Race R6RPHH = TrackMania R6TEA4 = Tornado Outbreak R6TPA4 = Tornado Outbreak R6VE4Z = King of Clubs R6VPGN = King of Clubs R6WE68 = AMF Bowling World Lanes R6WP68 = AMF Bowling World Lanes R6XE69 = Hasbro: Family Game Night 2 R6XP69 = Hasbro: Family Game Night 2 R6YEXS = Squeeballs Party R6YPH3 = Squeeballs Party R72E5G = Cake Mania: In The Mix! R72P5G = Cake Mania: In The Mix! R74E20 = Arcade Shooting Gallery R75E20 = Dream Salon R76E54 = NBA 2K10 R76P54 = NBA 2K10 R77JAF = SD Gundam: G Generation Wars R79JAF = Mobile Suit Gundam: MS Sensen 0079 R7AE69 = SimAnimals Africa R7AJ13 = SimAnimals Africa R7AP69 = SimAnimals Africa R7BE20 = Jelly Belly Ballistic Beans R7BP7J = Jelly Belly Ballistic Beans R7CJ01 = Captain Rainbow R7EE8P = NiGHTS: Journey of Dreams R7EJ8P = Nights Journey Of Dreams R7EP8P = NiGHTS: Journey of Dreams R7FEGD = Final Fantasy Fables: Chocobo's Dungeon R7FJGD = Final Fantasy Fables: Chocobo's Dungeon R7FPGD = Final Fantasy Fables: Chocobo's Dungeon R7GEAF = Dragon Ball: Revenge of King Piccolo R7GJAF = Dragon Ball: Tenkaichi Daibouken R7GPAF = Dragon Ball: Revenge of King Piccolo R7HE6K = Army Rescue R7IE69 = Charm Girls Club: Pajama Party R7IP69 = Il mio Pigiama Party R7KE6K = Rock Blast R7LP7J = Margot's Bepuzzled! R7MXFR = Musiic Party: Rock the House R7NE20 = Cold Stone Creamery: Scoop It Up R7OE54 = NHL 2K10 R7OP54 = NHL 2K10 R7PE01 = Punch-Out!! R7PJ01 = Punch-Out!! R7PP01 = Punch-Out!! R7QE52 = Chaotic: Shadow Warriors R7RE52 = Little League World Series Baseball 2009 R7SE5G = Escape The Museum R7SP5G = Escape The Museum R7TFJW = Pétanque Pro R7VEWR = Vacation Isle: Beach Party R7VPWR = Vacation Isle: Beach Party R7WE52 = Mountain Sports R7WP52 = Mountain Sports R7XE69 = Need for Speed: Nitro R7XJ13 = Need for Speed: Nitro R7XP69 = Need for Speed: Nitro R7YFMR = Pékin Express R7ZE41 = Team Elimination Games R7ZP41 = Vinca il Migliore Party R82E52 = Animal Planet: Vet Life R82JG0 = Darts Wii DX R82P52 = Animal Planet: Professione Veterinario R83EA4 = Pop'n Music R83JA4 = Pop'n Music R83PA4 = Pop'n Rhythm R84EE9 = Harvest Moon: Tree Of Tranquility R84J99 = Bokujo for Wii R84P99 = Harvest Moon: L'Albero della Tranquillità R85EG9 = The Secret Saturdays: Beasts of the 5th Sun R85PG9 = The Secret Saturdays: Beasts of the 5th Sun R86E20 = Dream Dance & Cheer R87EVN = Ski-Doo: Snowmobile Challenge R88J2L = Anpanman Niko Niko Party R89JEL = Tokyo Friend Park 2 Wii R8AE01 = PokéPark Wii: Pikachu's Adventure R8AJ01 = PokéPark Wii: Pikachu no Daibouken R8AP01 = Poképark Wii: La Grande Avventura di Pikachu R8BE41 = Imagine Party Babyz R8BP41 = Baby-sitter Party R8DEA4 = Yu-Gi-Oh! 5D's: Duel Transer R8DJA4 = Yu-Gi-Oh! 5D's: Duel Transer R8DPA4 = Yu-Gi-Oh! 5D's: Master of the Cards R8EJQC = Earth Seeker R8FES5 = Fast Food Panic R8FJHA = Takumi Restaurant ha Daihanjou! R8FJSC = Takumi Restaurant wa Daihanjou! (Simplified Chinese Translation) R8FPNP = Fast Food Panic R8GJC8 = G1 Jockey Wii 2008 R8GPC8 = G1 Jockey Wii 2008 R8HE4Q = Hannah Montana: The Movie R8HP4Q = Hannah Montana: The Movie R8HX4Q = Hannah Montana: The Movie R8HY4Q = Hannah Montana: The Movie R8IE78 = SpongeBob's Truth or Square R8IP78 = SpongeBob's Truth or Square R8IS78 = SpongeBob's Truth or Square R8JEWR = The Lord of the Rings: Aragorn's Quest R8JPWR = Il Signore degli Anelli: L'Avventura di Aragorn R8KPKM = Street Football 2: Obiettivo Coppa del Mondo R8LE20 = Chicken Blaster R8LP7J = Chicken Blaster R8NEA4 = The Cages: Pro Style Batting Practice R8NJG0 = Batting Revolution R8OE54 = Ringling Bros. and Barnum & Bailey Circus R8OX54 = Andiamo al Circo R8PC01 = Super Paper Mario(CN) R8PE01 = Super Paper Mario R8PJ01 = Super Paper Mario R8PK01 = Super Paper Mario R8PP01 = Super Paper Mario R8QPRT = Crazy Quiz: Are You Crazy Enough? R8RP41 = Arthur e la Vendetta di Maltazard R8SE41 = Vacation Sports R8SP41 = Holiday Sports Party R8SX41 = World Sports Party R8TENR = Tournament Pool R8UXMR = Adibou R8VE41 = Petz Rescue: Wildlife Vet R8VP41 = Pianeta Da Salvare: Animali in Pericolo R8XE52 = Jurassic: The Hunted R8XZ52 = Top Shot Dinosaur Hunter R8YE52 = Cabela's Big Game Hunter 2010 R8ZE8P = Daisy Fuentes Pilates R8ZPGT = Daisy Fuentes Pilates R92E01 = Pikmin 2 R92J01 = Pikmin 2 R92P01 = Pikmin 2 R94PMR = The Ultimate Red Ball Challenge R94XMR = The Ultimate Red Ball Challenge R96EAF = Klonoa R96JAF = Kaze no Klonoa Door to Phantomile R96KAF = Klonoa - Door to Phantomile R96PAF = Klonoa R97E9B = Family Fun Football R9AE52 = Activision Demo Action Pack (Demo) R9BPMT = Bob the Builder: Festival of Fun R9CPMR = I'm a Celebrity...Get Me Out of Here! R9DE78 = Drawn to Life: The Next Chapter R9DP78 = Drawn to Life: Il Capitolo Successivo R9EPNP = Brico Party: Gli Esperti Del Fai Da Te R9FE36 = F1 2009 R9FJ36 = F1 2009 R9FP36 = F1 2009 R9GEWR = Legend of the Guardians: The Owls of Ga'Hoole R9GPWR = Il Regno di Ga'Hoole: La leggenda dei Guardiani R9HE78 = Are You Smarter Than A 5th Grader?: Game Time R9IE01 = Pikmin R9IJ01 = Pikmin R9IK01 = Pikmin R9IP01 = Pikmin R9JE69 = The Beatles: Rock Band R9JP69 = The Beatles: Rock Band R9KE20 = Groovin' Blocks R9LE41 = Sleepover Party R9LP41 = Girls Life: Pigiama Party R9ME5Z = World Championship Athletics R9MPFR = Summer Athletics 2009 R9NPMR = Family Fortunes R9OE69 = Tiger Woods PGA Tour 10 R9OK69 = Tiger Woods PGA Tour 10 R9OP69 = Tiger Woods PGA Tour 10 R9QPNG = Dance Party Club Hits R9RPNG = Dance Party Pop Hits R9SPPL = Sudoku Ball: Detective R9TE69 = Tiger Woods PGA Tour 09 All-Play R9TJ13 = Tiger Woods PGA Tour 09 All-Play R9TK69 = Tiger Woods PGA Tour 09 All-Play R9TP69 = Tiger Woods PGA Tour 09 All-Play R9UE52 = Build-A-Bear Workshop: Friendship Valley R9UPGY = Build-A-Bear Workshop: Friendship Valley R9VE52 = Cabela's Outdoor Adventures 2010 R9WPSP = WSC Real 09: World Snooker Championship R9XE52 = Arcade Zone R9XP52 = Arcade Zone R9YES5 = Sled Shred R9ZE54 = Major League Baseball 2K9 RABAZZ = System Menu Changer RADP01 = New Super Mario Bros. Wii 0-6 Radiance RB2E6K = Balloon Pop RB2J2K = Rainbow Pop RB2P6K = Pop! RB2PGT = Pop! RB4E08 = Resident Evil 4: Wii Edition RB4J08 = Biohazard 4 Wii Edition RB4P08 = Resident Evil 4: Wii Edition RB4X08 = Resident Evil 4: Wii Edition RB5E41 = Brothers In Arms: Earned In Blood RB5P41 = Brothers In Arms: Earned In Blood RB6J18 = Bomberman RB7E54 = Bully: Scholarship Edition RB7P54 = Bully: Scholarship Edition RB8E70 = Backyard Baseball '09 RB9D78 = Bratz: The Movie RB9E78 = Bratz: The Movie RB9P78 = Bratz: The Movie RB9X78 = Bratz: The Movie RB9Y78 = Bratz: The Movie RBAE41 = Blazing Angels: Squadrons of WWII RBAP41 = Blazing Angels: Squadrons of WWII RBBE18 = Bomberman Land RBBJ18 = Bomberman Land Wii RBBP99 = Bomberman Land Wii RBCP41 = Telly Addicts RBEE52 = Bee Movie Game RBEP52 = Bee Movie Game RBEX52 = Bee Movie Game RBFE20 = Balls of Fury RBFP20 = Balls of Fury RBFP7J = Balls of Fury RBGE54 = The BIGS RBGP54 = The Bigs RBHE08 = Resident Evil Archives: Resident Evil Zero RBHJ08 = Biohazard 0 RBHP08 = Resident Evil Archives: Resident Evil Zero RBIEE9 = Harvest Moon: Animal Parade RBIJ99 = Bokujou Monogatari Waku Waku Animal March RBIP99 = Harvest Moon: Animal Parade RBKE69 = Boom Blox RBKJ13 = Boom Blox RBKK69 = Boom Blox RBKP69 = Boom Blox RBLE8P = Bleach: Shattered Blade RBLJ8P = Bleach: Shattered Blade RBLP8P = Bleach: Shattered Blade RBME5G = Bust-a-Move Bash! RBMPGT = Bust-A-Move RBNEG9 = Ben 10: Protector of Earth RBNPG9 = Ben 10: Protector of Earth RBNXG9 = Ben 10: Protector of Earth RBOE69 = Boogie RBOP69 = Boogie RBPE4Z = Brunswick Pro Bowling RBPP4Z = Brunswick Pro Bowling RBPPGT = Brunswick Pro Bowling RBQENR = Classic British Motor Racing RBQPUG = Classic British Motor Racing RBRE5G = Blast Works: Build, Trade, Destroy RBRP5G = Blast Works: Build, Trade, Destroy RBRX5G = Blast Works: Build, Trade, Destroy RBSJ08 = Sengoku Basara 2 Heroes (Double Pack) RBSJ09 = Sengoku Basara 2 Heroes RBTE8P = SEGA Bass Fishing RBTJ8P = Sega Bass Fishing RBTP8P = Sega Bass Fishing RBUE08 = Resident Evil: The Umbrella Chronicles RBUJ08 = Biohazard The Umbrella Chronicles RBUK08 = Biohazard The Umbrella Chronicles RBUP08 = Resident Evil: The Umbrella Chronicles RBVE52 = Barbie as The Island Princess RBVP52 = Barbie Principessa Dell'Isola Perduta RBWE01 = Battalion Wars 2 RBWJ01 = Totsugeki Famicom Wars vs. RBWP01 = Battalion Wars 2 RBXJ8P = Bleach: Versus Crusade RBYE78 = Barnyard RBYJ78 = Barnyard RBYP78 = Barnyard: Il cortile RBZE5Z = Billy the Wizard: Rocket Broomstick Racing RBZP5Z = Billy the Wizard: Rocket Broomstick Racing RBZPUG = Billy the Wizard: Rocket Broomstick Racing RBZXUG = Billy the Wizard: Rocket Broomstick Racing RC2E78 = Cars: Mater-National RC2P78 = Cars: La Coppa Internazionale di Carl Attrezzi RC2X78 = Cars: Motori ruggenti RC2Y78 = Cars: Motori ruggenti RC3E41 = Petz Catz 2 RC3J41 = Nyanko To Mahou No Boushi RC3P41 = Catz RC3X41 = Catz RC4JD9 = Crayon Shin-Chan: Saikyou Kazoku Kasukabe King Wii RC4SGT = Shin Chan The New Adventures For Wii RC5JDQ = Osouji Sentai Clean Keeper RC7E20 = Sea Monsters: A Prehistoric Adventure RC7P7J = Sea Monsters: A Prehistoric Adventure RC8E7D = Crash: Mind Over Mutant RC8P7D = Crash: Il Dominio sui Mutanti RC8X7D = Crash: Mind Over Mutant RC9PGN = CID: The Dummy RCAE78 = Cars RCAJ78 = Cars RCAP78 = Cars RCAX78 = Cars RCAY78 = Cars RCBE52 = Cabela's Big Game Hunter RCBP52 = Cabela's Big Game Hunter RCCE5G = Cooking Mama: Cook Off RCCJC0 = Cooking Mama RCCPGT = Cooking Mama RCCR78 = Guitar Hero III Custom: Coheed and Cambria RCDD52 = Call of Duty 3 RCDE52 = Call of Duty 3 RCDP52 = Call of Duty 3 RCDX52 = Call of Duty 3 RCEE5Z = Mini Desktop Racing RCEPUG = Mini Desktop Racing RCEXUG = Mini Desktop Racing RCFE41 = Cosmic Family RCFP41 = Cosmic Family RCGE54 = Carnival Games RCGP54 = Carnival: Arriva il Luna Park! RCHC52 = Guitar Hero III Custom : Guitar Hero II RCHEAF = We Cheer RCHJAF = We Cheer RCHPAF = We Cheer RCHPGT = We Cheer RCIE41 = CSI: Prova Schiacciante RCIP41 = CSI: Prova Schiacciante RCJE8P = The Conduit RCJP8P = The Conduit RCKPGN = Sports Challenge: Sfida Sportiva RCLE4Q = Disney's Chicken Little: Ace in Action RCLP4Q = Chicken Little: Asso Spaziale RCOC99 = Meitantei Conan: Tsuioku no Mirage RCOJ99 = Meitantei Conan: Tsuioku no Mirage RCOK99 = Detective Conan: Case Closed: The Mirapolis Investigation RCOKZF = Case Closed: The Mirapolis Investigation RCOPNP = Detective Conan: Il Caso Mirapolis RCPE18 = Kororinpa: Marble Mania RCPJ18 = Kororinpa RCPP18 = Kororinpa RCQEDA = Penny Racers Party: Turbo-Q Speedway RCQJDA = Choro Q RCRE5D = Cruis'n RCRP5D = Cruis'n RCSE20 = Chicken Shoot RCSP20 = Chicken Shoot RCSP7J = Chicken Shoot RCTE5Z = Counter Force RCTP5Z = Counter Force RCTPGT = Counter Force RCUE52 = Cabela's Legendary Adventures RCUP52 = Cabela's Legendary Adventures RCVE41 = Far Cry: Vengeance RCVP41 = Far Cry: Vengeance RCXE78 = All Star Cheer Squad RCXP78 = All Star Cheerleader RCXX78 = All Star Cheerleader RCYPGN = Cheggers Party Quiz RD2E41 = Red Steel 2 RD2J41 = Red Steel 2 RD2K41 = Red Steel 2 RD2P41 = Red Steel 2 RD2X41 = Red Steel 2 RD4EA4 = Dance Dance Revolution: Hottest Party 2 RD4JA4 = Dance Dance Revolution: Furu Furu Party RD4PA4 = Dance Dance Revolution: Hottest Party 2 RD6EE9 = Animal Kingdom: Wildlife Expedition RD6J8N = Doubutu Kisoutengai RD6PNP = SAFAR'Wii RD8E52 = Dancing with the Stars RD9J18 = Sudoku RDAE52 = Dancing with the Stars: We Dance! RDBE70 = Dragon Ball Z: Budokai Tenkaichi 2 RDBJAF = Dragon Ball Z: Sparking! NEO RDBP70 = Dragon Ball Z: Budokai Tenkaichi 2 RDBPAF = Dragon Ball Z: Budokai Tenkaichi 2 RDCE78 = Deadly Creatures RDCP78 = Deadly Creatures RDDEA4 = Dance Dance Revolution: Hottest Party RDDJA4 = Dance Dance Revolution: Hottest Party RDDPA4 = Dance Dance Revolution Hottest Party RDEJ0A = Zenkoku Dekotora Matsuri RDFE41 = Shaun White Snowboarding: Road Trip RDFP41 = Shaun White Snowboarding: Road Trip RDGEA4 = Castlevania Judgment RDGJA4 = Akumajou Dracula Judgment RDGPA4 = Castlevania Judgment RDHE78 = Destroy All Humans! Big Willy Unleashed RDHP78 = A Caccia Di Umani! Big Willy Alla Riscossa RDIE41 = The Dog Island RDIJG2 = The Dog Island RDIP41 = The Dog Island RDJE4F = Death Jr.: Root of Evil RDJP4F = Death Jr.: Root of Evil RDKE01 = Donkey Kong: Barrel Blast RDKJ01 = Donkey Kong Taru Jet Race RDKP01 = Donkey Kong: Jet Race RDLE5G = Spy Fox in Dry Cereal RDLP70 = Spy Fox In Dry Cereal RDME6K = Domino Rally RDMJ8N = Go! Go! Minon RDMPHZ = Minon: Everyday Hero RDNEA4 = Dance Dance Revolution: Disney Grooves RDOE41 = Petz Dogz 2 RDOJ41 = Dog To Mahou No Boushi RDOP41 = Dogz RDOX41 = Dogz RDPE54 = Dora Saves the Snow Princess RDPP54 = Dora Saves the Snow Princess RDPX54 = Dora Saves the Snow Princess RDQEGD = Dragon Quest Swords: The Masked Queen and The Tower of Mirrors RDQJGD = Dragon Quest Swords: Kamen no Joou to Kagami no Tou RDQPGD = Dragon Quest Swords: La Regina Mascherata e la Torre degli Specchi RDREA4 = Dewy's Adventure RDRJA4 = Dewy's Adventure RDRPA4 = Dewy's Adventure RDSE70 = Dragon Ball Z: Budokai Tenkaichi 3 RDSJAF = Dragon Ball Z: Sparking! METEOR RDSPAF = Dragon Ball Z: Budokai Tenkaichi 3 RDSZ70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino RDTEAF = Tamagotchi: Party On! RDTJAF = Tamagotchi Pikadai RDTPAF = Tamagotchi: Party On! RDUE01 = DU Super Mario Bros. : Find That Princess RDUJDQ = Sugorochronicle Migite Ni Ken Wo Hidarite Ni Saikoro Wo RDVE41 = Driver: Parallel Lines RDVP41 = Driver: Parallel Lines RDWEG9 = Dragon Blade: Wrath of Fire RDWJG9 = Dragon Blade: Wrath Of Fire RDWPG9 = Dragon Blade: Wrath Of Fire RDXE18 = Deca Sports RDXJ18 = Deca Sporta RDXKA4 = Deca Sporta RDXP18 = Sports Island RDYEGN = CID: The Dummy RDZJ01 = Disaster: Day of Crisis RDZP01 = Disaster: Day of Crisis RE3ENR = WWII Aces RE4E08 = Resident Evil Archives: Resident Evil RE4J08 = Biohazard RE4P08 = Resident Evil Archives: Resident Evil RE5PAF = Mangia tutto! RE6PRT = Summer Challenge: Athletics Tournament RE7PNK = Hunting Challenge RE8J99 = Katekyoo Hitman Reborn Kindan No Yami No Delta REAE69 = Celebrity Sports Showdown REAF69 = Celebrity Sports Showdown REAP69 = Celebrity Sports Showdown REBE4Z = Mr Bean's Wacky World of Wii REBPMT = Mr Bean: il Matto Mondo di Wii RECE6K = Spy Games: Elevator Mission RECP6K = Spy Games: Elevator Mission REDE41 = Red Steel REDJ41 = Red Steel REDP41 = Red Steel REFP41 = My French Coach: Improve Your French REGE36 = Emergency Mayhem REGP36 = Emergency Mayhem REHE41 = Emergency Heroes REHP41 = Emergency Heroes REJEAF = Active Life: Extreme Challenge REJJAF = Family Trainer 2 REJPAF = Family Trainer: Extreme Challenge REKE41 = Gold's Gym: Cardio Workout REKJ2N = Shape Boxing Wii De Enjoy Diet REKP41 = Il Mio Coach di Fitness: Tonifico il Corpo REKU41 = Gold's Gym: Cardio Workout RELEA4 = Elebits RELJA4 = Elebits RELKA4 = Elebits RELPA4 = Eledees RELSAB = Sonic Adventure DX: Director's Cut (Preview Prototype) REMJ8P = Doraemon Wii Himitsu Douguou Ketteisen RENE8P = Sonic e il Cavaliere Nero RENJ8P = Sonic and the Black Knight RENP8P = Sonic e il Cavaliere Nero REQE54 = Go Diego Go! Safari Rescue REQP54 = Go Diego Go! Safari Rescue REQX54 = Go Diego Go! Safari Rescue REQY54 = Go Diego Go! Safari Rescue RESP41 = My Spanish Coach: Improve Your Spanish RETJAF = Ennichi No Tatsujin REUPNK = Body Coaching REVJ8P = Imabi Kisô: Kaimei Hen REVJBP = Imabikisou: Kaimei Hen REWFMR = My Horse Club: On the Trail of the Mysterious Appaloosa REWXMR = My Horse Club: On the Trail of the Mysterious Appaloosa REWYMR = My Horse Club: Sulle Tracce degli Appaloosa REXE01 = Excite Truck REXJ01 = Excite Truck REXP01 = Excite Truck REYE4Q = Disney Sing It: High School Musical 3 Senior Year REYP4Q = Disney Sing It: High School Musical 3 REYX4Q = Disney Sing It: High School Musical 3 REZEJJ = Fritz Chess REZPKM = Fritz Chess RF2E54 = Fantastic Four: Rise of the Silver Surfer RF2P54 = I Fantastici 4: E Silver Surfer RF3E52 = Ferrari Challenge: Trofeo Pirelli RF3P6M = Ferrari Challenge: Trofeo Pirelli RF4E36 = Super Fruit Fall RF4P6M = Super Fruit Fall RF7J08 = Tatsunoko vs. Capcom: Cross Generation of Heroes RF8E69 = FIFA Soccer 08 RF8J13 = FIFA 08 RF8K69 = FIFA 08 RF8P69 = FIFA 08 RF8X69 = FIFA 08 RF8Y69 = FIFA 08 RF9E69 = FIFA Soccer 09 All-Play RF9J13 = FIFA 09 All-Play RF9K69 = FIFA 09 All-Play RF9P69 = FIFA 09 All-Play RF9X69 = FIFA 09 All-Play RF9Y69 = FIFA 09 All-Play RFAEAF = Active Life: Outdoor Challenge RFAJAF = Family Trainer: Athletic World RFAPAF = Family Trainer RFBE01 = Endless Ocean RFBJ01 = Forever Blue RFBP01 = Endless Ocean RFCEGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFCJGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFCPGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFEE01 = Fire Emblem: Radiant Dawn RFEJ01 = Fire Emblem Akatsuki No Megami RFEP01 = Fire Emblem: Radiant Dawn RFFEGD = Final Fantasy Crystal Chronicles: Echoes of Time RFFJGD = Final Fantasy Crystal Chronicles: Echoes of Time RFFPGD = Final Fantasy Crystal Chronicles: Echoes of Time RFJJAF = Family Jockey RFKE41 = My Fitness Coach RFKJ41 = My Fitness Coach RFKP41 = Il Mio Coach di Fitness: Sempre In Forma RFKX41 = Il Mio Coach Di Fitness: Sempre In Forma RFLE69 = Madden NFL 09 All-Play RFLP69 = Madden NFL 09 All-Play RFLPWK = Wii Freeloader RFMJAF = Pro Yakyuu Family Stadium RFNE01 = Wii Fit RFNJ01 = Wii Fit RFNK01 = Wii Fit RFNP01 = Wii Fit RFNW01 = Wii Fit RFOE52 = Spider-Man: Friend or Foe RFOP52 = Spider-Man: Amici o Nemici RFOX52 = Spider-Man: Amici o Nemici RFPE01 = Wii Fit Plus RFPJ01 = Wii Fit Plus RFPK01 = Wii Fit Plus RFPP01 = Wii Fit Plus RFPR01 = Wii Fit Plus RFPW01 = Wii Fit Plus RFQE69 = FaceBreaker K.O. Party RFQJ13 = FaceBreaker K.O. Party RFQJ69 = FaceBreaker K.O. Party RFQK69 = FaceBreaker: K.O. Party RFQP69 = FaceBreaker: K.O. Party RFRE5G = Furu Furu Park RFRJC0 = Furu Furu Park RFSEEB = Shiren the Wanderer RFSJ8P = Fushigi No Dungeon: Furai No Shiren 3 RFTE70 = Backyard Football RFTP70 = Backyard Football '08 RFUJA4 = Mahjong Kakutou Club Wii: Wi-fi Taiou RFVE52 = Monkey Mischief! Party Time RFVP52 = Occhio alla Scimmia! RFWE5Z = Safari Adventures Africa RFWPNK = Safari Adventures Africa RFYFMR = Fort Boyard RFZE41 = Imagine Fashion Party RFZP41 = Giulia Passione Sfilate RG0E52 = Guitar Hero III Custom : Green Day Plus RG1552 = Guitar Hero III Custom : Weird Al Yankovic RG1E52 = Guitar Hero III Custom : Revenge RG2E52 = Guitar Hero III Custom : The Beatles Plus RG2EXS = Guilty Gear XX Accent Core RG2JJF = Guilty Gear XX Accent Core RG2PGT = Guilty Gear XX Accent Core RG2PXS = Guilty Gear XX Accent Core RG3E52 = Guitar Hero III Custom : Muse and Rush RG4152 = Guitar Hero III Custom : Sum 41 RG4E52 = Guitar Hero Mayan Apocalypse RG4JC0 = Let's Go By Train Shinkansen EX RG5EWR = Guinness World Records: The Videogame RG5PWR = Guinness World Records: Il Videogioco RG6E69 = Boogie SuperStar RG6P69 = Boogie SuperStar RG7EQH = City Builder RG8E41 = Petz Sports RG8P41 = Petz Sports: Dog Playground RG9E52 = Guitar Hero III Custom : Anarchy RG9E54 = Carnival Games: Mini Golf RG9P54 = Carnival Games: Mini Golf RGAE8P = Planet 51: The Game RGAP8P = Planet 51: Il Videogioco RGBE08 = Harvey Birdman: Attorney at Law RGBP08 = Harvey Birdman: Attorney at Law RGCEXS = MiniCopter: Adventure Flight RGCJJF = Petitcopter Wii Adventure Flight RGCM52 = Guitar Hero III Custom : Metallica RGCPGT = Radio Helicopter RGCS52 = Guitar Hero III Custom : ClasSick Edition RGDEA4 = Target: Terror RGDPA4 = Target: Terror RGEJJ9 = The World Of Golden Eggs Norinori Rhythm RGEK52 = Guitar Hero III Custom: Slipknot RGFE69 = The Godfather: Blackhand Edition RGFF69 = Il Padrino RGFI69 = Il Padrino: Blackhand Edition RGFP69 = Il Padrino RGFS69 = Il Padrino RGGE52 = Guitar Hero III Custom: Rock The Games RGGJAF = Gegege No Kitarou Youkai Daiundoukai RGHC20 = Guitar Hero III Custom : Fail Edition RGHE51 = Guitar Hero III Custom : Aspero RGHE52 = Guitar Hero III: Legends of Rock RGHE60 = Guitar Hero III Custom: WTF Custom RGHE61 = I Fought The Law - GH3 RGHE62 = Sweet Home Alabama - GH3 RGHE69 = Guitar Hero III Custom : Legends of METAL RGHEMR = Guitar Hero III Custom : Modern Rock RGHI52 = Guitar Hero III Custom: Chimba RGHJ52 = Guitar Hero III Legends of Rock RGHK52 = Guitar Hero III Legends of Rock RGHP52 = Guitar Hero III: Legends of Rock RGHPOH = SingItStar Italian Greatest Hits RGHPS2 = Guitar Hero III Custom : J-Music RGHX52 = Guitar Hero III Custom: Anime's Alex Chan RGIJC8 = G1 Jockey Wii RGIPC8 = G1 Jockey Wii RGJE4Z = George of the Jungle: Search for the Secret RGJP7U = George Della Giungla RGKE52 = Guitar Hero III Custom : KoRn RGKENR = Kidz Sports: Crazy Golf RGKPNR = Crazy Mini Golf RGLE7D = Geometry Wars: Galaxies RGLP7D = Geometry Wars: Galaxies RGME5D = The Grim Adventures of Billy & Mandy RGMP5D = The Grim Adventures of Billy & Mandy RGNJAF = Gintama Yorozuya Tuve RGOJJ9 = The World of Golden Eggs Nissan Note Version RGPJAF = Anime Slot Revolution Pachi-Slot Kidou Senshi Gundam II Ai Senshi Hen RGQE70 = Ghostbusters: The Video Game RGQP70 = Ghostbusters: Il Videogioco RGRM52 = Guitar Hero III Custom: Rock & Metal RGSE8P = Ghost Squad RGSJ8P = Ghost Squad RGSP8P = Ghost Squad RGTE41 = GT Pro Series RGTJBL = GT Pro Series RGTP41 = GT Pro Series RGVE52 = Guitar Hero: Aerosmith RGVE99 = Guitar Hero Aerosmith Custom: NOT Aerosmith but... RGVJ52 = Guitar Hero: Aerosmith RGVP52 = Guitar Hero: Aerosmith RGWE41 = Rabbids Go Home RGWJ41 = Rabbids Go Home RGWP41 = Rabbids Go Home RGWX41 = Rabbids Go Home RGXE5D = Game Party RGXEFN = Guitar Hero III Custom: Meteo Last Custom RGXM52 = Guitar Hero III Custom : xMxExTxAxLx's Edition RGXP5D = Game Party RGYE5Z = Action Girlz Racing RGYPUG = Action Girlz Racing RGZC52 = Guitar Hero III Custom : Led Zeppelin RGZE52 = Guitar Hero III Custom : Shred Edition RGZE70 = Godzilla Unleashed RGZP70 = Godzilla Unleashed RH2E41 = Hell's Kitchen: The Video Game RH2P41 = Hell's Kitchen RH3E4Q = High School Musical 3: Senior Year Dance! RH3J4Q = High School Musical 3: Senior Year Dance! RH3P4Q = High School Musical 3: Senior Year Dance! RH4XUG = Hamster Heroes RH5EVN = Horse Life Adventures RH5PKM = Horse Life 2: Avventure intorno al mondo RH6E69 = Harry Potter and the Half-Blood Prince RH6K69 = Harry Potter and the Half Blood Prince RH6P69 = Harry Potter e il Principe Mezzosangue RH7J8P = Jissen Pachislot Hisshouhou! Sammy's Collection Hokuto no Ken Wii RH8E4F = Tomb Raider: Underworld RH8JEL = Tomb Raider: Underworld RH8P4F = Tomb Raider: Underworld RH8X4F = Tomb Raider: Underworld RH9JC8 = Harukanaru Toki no Naka de 4 RHAE01 = Wii Play RHAJ01 = Hajimete no Wii RHAK01 = Wii Play RHAP01 = Wii Play RHAW01 = Wii Play RHCE52 = The History Channel: Battle for the Pacific RHCP52 = The History Channel: Battle for the Pacific RHD222 = The House of The Dead 2 RHD333 = The House of the Dead 3 RHDE8P = The House of the Dead 2 & 3 Return RHDJ8P = The House of The Dead 2 & 3 Return RHDP8P = The House of the Dead 2 & 3 Return RHEEJJ = Professor Heinz Wolff's Gravity RHEPKM = Professor Heinz Wolff's Gravity RHFE5D = Happy Feet RHFP5D = Happy Feet RHGH52 = Guitar Hero III Custom : RandomHero's RHGP6Z = Agent Hugo: Lemoon Twist RHGX6Z = Agent Hugo: Lemoon Twist RHHJ8J = Suzumiya Haruhi no Gekidou RHIEXJ = Victorious Boxers: Revolution RHIJ41 = Hajime No Ippo Revolution RHIJJ9 = Hajime No Ippo Revolution RHIP41 = Victorious Boxers Challenge RHJJ13 = Ginsei Table Games Wii RHKE18 = Help Wanted: 50 Wacky Jobs RHKJ18 = Hataraku Hit RHKP18 = Job Island: Hard Working People RHLE4Z = World Championship Poker Featuring Howard Lederer: All-In RHLPGT = World Championship Poker Featuring Howard Lederer: All-In RHMEE9 = Harvest Moon: Magical Melody RHMP99 = Harvest Moon: Magical Melody RHNE70 = My Horse & Me RHNP70 = My Horse & Me RHOE8P = The House of the Dead: Overkill RHOJ8P = The House of The Dead: Overkill RHOP8P = The House of the Dead: Overkill RHPJ8N = Akko De Pon! Ikasama Hourouki RHQE4Q = Hannah Montana: Spotlight World Tour RHQP4Q = Hannah Montana: Il Tour Mondiale RHQX4Q = Hannah Montana 2: Il Tour Mondiale RHQY4Q = Hannah Montana 2: Il Tour Mondiale RHRJ99 = Kateikyou Hitman Reborn! Dream Hyper Battle! Wii RHSE36 = Heatseeker RHSP36 = Heatseeker RHSX36 = Heatseeker RHSY36 = Heatseeker RHTE54 = Manhunt 2 RHTP54 = Manhunt 2 RHUE20 = Skate City Heroes RHUP20 = Skate City Heroes RHUP7J = Skate City Heroes RHVE5Z = Crazy Chicken Tales RHVPFR = Crazy Chicken Tales RHWE52 = Hot Wheels: Beat That! RHWP52 = Hot Wheels: Beat That! RHXE78 = Battle of the Bands RHXP78 = Battle of the Bands RHYJAF = Haneru no Tobira Wii RHZE41 = Petz Horsez 2 RHZP41 = Horsez: La Scuderia nella Valle RI1POH = SingItStar Italian Party RI2E4Q = High School Musical: Sing It! RI2P4Q = High School Musical: Sing It! RI2POH = SingItStar Italian Party vol. 2 RI3E5D = The Ant Bully RI3P5D = The Ant Bully RI3POH = SingItStar Italian Top.it RI6ENR = Summer Sports 2: Island Sports Party RI6P41 = Summer Sports Party RI7E4Z = Monster Mayhem: Build and Battle RI8E41 = Brothers In Arms: Road to Hill 30 RI8P41 = Brothers In Arms: Road To Hill 30 RI9EGT = Diva Girls: Divas on Ice RI9PGT = Diva Girls: Stelle sul ghiaccio RIAE52 = Ice Age: Dawn of the Dinosaurs RIAI52 = L'Era Glaciale 3: L'Alba dei Dinosauri RIAP52 = L'Era Glaciale 3: L'Alba dei Dinosauri RIBES5 = Igor the Game RIBPKM = Igor: The Game RICENR = Iron Chef America: Supreme Cuisine RIDE20 = Smiley World: Island Challenge RIDP7J = Smiley World: Island Challenge RIEEA4 = Karaoke Revolution Presents: American Idol Encore RIFEA4 = Karaoke Revolution Presents: American Idol Encore 2 RIGE54 = Go Diego Go! Great Dinosaur Rescue RIGP54 = Go, Diego, Go! Great Dinosaur Rescue RIHE8P = The Incredible Hulk RIHP8P = L'Incredibile Hulk RIIEQH = Kart Racer RIIPNG = Kart Racer RIIV = Riivolution RIJE69 = G.I. JOE: The Rise of Cobra RIJP69 = G.I. Joe: La nascita dei Cobra RIKEQH = Truck Racer RIKPNG = Truck Racer RILJ18 = Puzzle Series Vol. 2: Illust Logic + Colorful Logic RIME36 = Impossible Mission RIMP6M = Impossible Mission RINE08 = Dead Rising: Chop Till You Drop RINJ08 = Dead Rising Zombie No Ikenie RINP08 = Dead Rising: Salme di Fine Stagione RIOPSU = Brutte Storie: I Rivoltanti Romani RIPEAF = One Piece: Unlimited Adventure RIPJAF = One Piece: Unlimited Adventure RIPPAF = One Piece Unlimited Cruise 1 - The Treasure Beneath the Waves RIQPUJ = Dancing on Ice RIRE8P = Iron Man RIRP8P = Iron Man RITFMR = Intervilles, le jeu officiel RIUJAF = One Piece Unlimited Cruise 2: Awakening of a Hero RIUPAF = One Piece Unlimited Cruise 2: Il Risveglio di un Eroe RIVEXJ = Ivy The Kiwi? RIVJAF = Ivy the Kiwi? RIVP99 = Ivy The Kiwi? RIWENR = Burger Island RIXE20 = Dodge Racing: Charger vs. Challenger RIXP7J = Dodge Racing: Charger vs Challenger RIYE52 = Space Camp RIYP52 = Space Camp RIZENR = Indianapolis 500 Legends RJ2E52 = 007: Quantum of Solace RJ2JGD = 007: Quantum of Solace RJ2P52 = 007: Quantum of Solace RJ3E20 = Jeep Thrills RJ3P7J = Jeep Thrills RJ4ENR = Jewel Master: Cradle of Rome RJ4PRM = Jewel Master: Cradle of Rome RJ6E69 = MySims Sky Heroes RJ6P69 = MySims Sky Heroes RJ7FWP = Télé 7 Jeux: Mots Fléchés RJ8E64 = Indiana Jones e il Bastone dei Re RJ8P64 = Indiana Jones e il Bastone dei Re RJ9E5Z = thinkSMART Family RJ9FMR = Think Logic Trainer RJ9PFR = Think Logic Trainer RJ9XML = Think Logic Trainer RJAD52 = Call of Duty: Modern Warfare - Reflex Edition RJAE52 = Call of Duty: Modern Warfare - Reflex Edition RJAP52 = Call of Duty: Modern Warfare - Reflex Edition RJAX52 = Call of Duty: Modern Warfare - Edizione Reflex RJBJAF = Daikaijuu Battle Ultra Coliseum RJCE52 = Score International Baja 1000: World Championship Offroad Racing RJCP52 = Score International Baja 1000: World Championship Offroad Racing RJDPKM = My Animal Centre RJEE70 = Jenga World Tour RJEP70 = Jenga World Tour RJFE5G = Jillian Michaels' Fitness Ultimatum 2009 RJFP5G = Jillian Michaels' Fitness Ultimatum RJFPKM = Jillian Michaels Fitness Ultimatum 2009 RJGJDA = Jinsei Game Wii RJHE52 = Madagascar Kartz RJHP52 = Madagascar Kartz RJIP6M = Ferrari: The Race Experience RJJE8P = Jambo! Safari Animal Rescue RJJG52 = Guitar Hero III Custom : JJ-KwiK's Edition RJJP8P = Jambo! Safari RJMERS = Jumper: Griffin's Story RJMPRS = Jumper: Griffin's Story RJNE20 = Build 'N Race RJOEXJ = Ju-on: The Grudge RJOJJ9 = Kyoufu Taikan Juon RJOP99 = Ju-On Rancore RJPJA4 = Jikkyou Powerful Pro Yakyuu Wii RJQE5G = Pajama Sam: Don't Fear the Dark RJQP70 = Pajama Sam: No Need to Hide when it's Dark Outside RJREA4 = Dance Dance Revolution: Hottest Party 3 RJRJA4 = Dance Dance Revolution: MUSIC FIT RJRPA4 = Dance Dance Revolution: Hottest Party 3 RJSENR = Kawasaki Jet Ski RJSPNR = Kawasaki Jet Ski RJSPUG = Kawasaki Jet Ski RJSXUG = Kawasaki Jet Ski RJTJ01 = Minna no Joushiki Ryoku TV RJVEGN = Hysteria Hospital: Emergency Ward RJVPGN = Hysteria Hospital: Emergency Ward RJWJEL = Jawa mammoth And A Secret Stone RJXE5G = Go Play Lumberjacks RJXXFR = Go Play Lumberjacks RJYE5Z = Doctor Fizzwizzle's Animal Rescue RJZP7U = SNK Arcade Classics Volume 1 RK2EEB = Trauma Center: New Blood RK2JEB = Trauma Center: New Blood RK2P01 = Trauma Center: New Blood RK3J01 = And-Kensaku RK4JAF = Kekkaishi RK5E01 = Kirby's Epic Yarn RK5J01 = Keito no Kirby RK5K01 = Kirby's Epic Yarn RK5P01 = Kirby e la stoffa dell'eroe RK6E18 = Marble Saga: Kororinpa RK6J18 = Kororinpa 2 RK6P18 = Marbles! Balance Challenge RK7J0A = Ougon no Kizuna RK8E54 = Major League Baseball 2K8 RK9EA4 = Karaoke Revolution RK9PA4 = Karaoke Revolution RKAE6K = Ultimate Shooting Collection RKAJMS = Milestone Shooting Collection RKAK8M = Milestone Shooting Collection Karous Wii RKAP6K = Ultimate Shooting Collection RKBE41 = Cranium Kabookii RKBP41 = Cranium Kabookii RKDEEB = Trauma Center: Second Opinion RKDJEB = Trauma Center: Second Opinion RKDJG9 = Kamen Rider: Climax Heroes W RKDP01 = Trauma Center: Second Opinion RKDPEB = Trauma Center: Second Opinion RKEENR = Cate West: The Vanishing Files RKEPGN = Cate West: The Vanishing Files RKEPNR = Cate West: The Vanishing Files RKFEH4 = The King of Fighters Collection: The Orochi Saga RKFKZA = King of Fighters Collection: The Orochi Saga RKFP7U = King of Fighters Collection: The Orochi Saga RKGEGY = Bratz Kidz: Slumber Party RKGPGY = Bratz: Kidz Party RKHE52 = Kung Fu Panda: Legendary Warriors RKHP52 = Kung Fu Panda: Guerrieri Leggendari RKIENR = Kidz Sports: Ice Hockey RKIPUG = Kidz Sports: Ice Hockey RKJJ0Q = 250 Mannin no Kanken Wii de Tokoton Kanji Nou RKKE6K = Heavenly Guardian RKLEG9 = Coraline RKLPG9 = Coraline RKME5D = Mortal Kombat: Armageddon RKMP5D = Mortal Kombat Armageddon RKNJ2N = Kanken Wii: Kanji Ou Kettei Sen RKOJBL = Relaxuma: Minna de Goyururi Seikatsu RKPE52 = Kung Fu Panda RKPJ52 = Kung Fu Panda RKPK52 = Kung Fu Panda RKPP52 = Kung Fu Panda RKPV52 = Kung Fu Panda RKPY52 = Kung Fu Panda RKQENR = Candace Kane's Candy Factory RKSENR = Kidz Sports: Basketball RKSPUG = Kidz Sports: Basketball RKTENR = Kidz Sports: International Soccer RKTXUG = Kidz Sports: International Football RKVE54 = The BIGS 2 RKVP54 = The Bigs 2: Baseball RKWJ18 = Jigsaw Puzzle Kyo-no Wan Ko RKXE69 = Rock Band RKXP69 = Rock Band RKYE20 = Army Men: Soldiers of Misfortune RKYP20 = Army Men: Soldiers of Misfortune RKYP7J = Army Men: Soldiers of Misfortune RKZEA4 = Lost in Blue: Shipwrecked RKZJA4 = Survival Kids Wii RKZPA4 = Lost in Blue: Shipwrecked RL2E78 = Gallop & Ride! RL2HMN = Horse & Pony: My Riding Stables RL2HMR = Horse & Pony: My Riding Stables RL2PFR = Cavallo & Pony: La mia scuderia RL3EMJ = Luxor 3 RL4E64 = LEGO Indiana Jones 2: The Adventure Continues RL4P64 = LEGO Indiana Jones 2: L'Avventura Continua RL5E52 = iCarly RL5P52 = iCarly RL6E69 = NERF N-Strike Elite RL7E69 = Littlest Pet Shop: Friends RL7P69 = Littlest Pet Shop: Friends RL8E54 = MLB Power Pros 2008 RL9ESD = Guitar Hero Linkin Park RL9PHZ = King of Pool RLADMR = Deal or No Deal: The Banker Is Back RLAE20 = Deal or No Deal RLAPMR = Deal or No Deal: The Banker Is Back RLBEWR = LEGO Batman: The Videogame RLBPWR = LEGO Batman: Il Videogioco RLCP7J = Love is... in bloom RLDEGY = Legend of the Dragon RLDPFK = Legend Of The Dragon RLEEFS = Ten Pin Alley 2 RLEPFS = Ten Pin Alley 2 RLFE64 = Star Wars The Clone Wars: Lightsaber Duels RLFP64 = Star Wars The Clone Wars: L'era dei duelli RLGE64 = LEGO Star Wars: The Complete Saga RLGJ52 = LEGO Star Wars: The Complete Saga RLGP64 = LEGO Star Wars: La Saga Completa RLHE52 = Little League World Series Baseball 2008 RLHP52 = Little League World Series Baseball 2008 RLIE64 = LEGO Indiana Jones: The Original Adventures RLIL78 = Guitar Hero 2nd Custom RLIP64 = LEGO Indiana Jones: Le Avventure Originali RLJEHJ = Line Rider 2: Unbound RLJPKM = Line Rider Freestyle RLKEGY = Code Lyoko: Quest for Infinity RLKPFK = Code Lyoko: Quest for Infinity RLLP70 = Go West!: Un'Avventura di Lucky Luke RLMJH4 = Metal Slug Complete RLNEVN = Survivor RLNFMR = L'Isola dei Famosi RLNHMR = L'Isola dei Famosi RLNIMR = L'Isola dei Famosi RLNPMR = Survivor RLPE69 = Littlest Pet Shop RLPP69 = Littlest Pet Shop RLQE52 = Big League Sports RLQP52 = World Championship Sports RLRE4F = Tomb Raider: Anniversary RLRJEL = Tomb Raider: Anniversary RLRP4F = Tomb Raider: Anniversary RLSE8P = Alien Syndrome RLSP8P = Alien Syndrome RLTENR = London Taxi: Rush Hour RLTPNR = London Taxi: Rush Hour RLTXUG = London Taxi: Rush Hour RLUE4Q = Disney's Bolt RLUP4Q = Bolt RLUX4Q = Bolt RLUY4Q = Bolt RLVE78 = Avatar: The Last Airbender RLVP78 = Avatar: The Legend of Aang RLWE78 = Ratatouille RLWJ78 = Ratatouille RLWP78 = Ratatouille RLWW78 = Ratatouille RLWX78 = Ratatouille RLWY78 = Ratatouille RLWZ78 = Ratatouille RLXEMJ = Luxor: Pharaoh's Challenge RLXP36 = Luxor: Pharaoh's Challenge RLYEWR = Looney Tunes: Acme Arsenal RLYPWR = Looney Tunes: Acme Arsenal RLZE4Z = Defendin' De Penguin RLZP4Z = Defendin' De Penguin RLZPXT = Defendin' De Penguin RM2E69 = Medal of Honor: Heroes 2 RM2J13 = Medal of Honor: Heroes 2 RM2P69 = Medal of Honor: Heroes 2 RM2U69 = Medal of Honor: Heroes 2 RM2X69 = Medal of Honor: Heroes 2 RM3E01 = Metroid Prime 3: Corruption RM3J01 = Metroid Prime 3: Corruption RM3P01 = Metroid Prime 3: Corruption RM4E41 = Monster 4x4: World Circuit RM4J41 = Monster 4x4: World Circuit RM4P41 = Monster 4x4: World Circuit RM5E7D = The Mummy: Tomb of the Dragon Emperor RM5P7D = La Mummia: La Tomba Dell'Imperatore Dragone RM6EEB = Baroque RM6P99 = Baroque RM7E4F = Monster Lab RM7P4F = Monster Lab RM8E01 = Mario Party 8 RM8J01 = Mario Party 8 RM8K01 = Mario Party 8 RM8P01 = Mario Party 8 RM9EGM = Mushroom Men: The Spore Wars RM9PGM = Mushroom Men: La Guerra delle Spore RMAE01 = Mario Power Tennis RMAJ01 = Mario Power Tennis RMAP01 = Mario Power Tennis RMBE01 = Mario Super Sluggers RMBJ01 = Super Mario Stadium: Family Baseball RMCC01 = Mario Kart Wii (Custom) RMCE01 = Mario Kart Wii RMCE02 = Wiimms MKW Fun 2010-02.p RMCE03 = Wiimms MKW Fun 2010-10.p RMCE04 = Wiimms MKW Fun 2010-12.p RMCE05 = Wiimms MKW Fun 2010-12.p RMCE06 = Wiimms MKW Fun 2010-12.ntsc RMCE07 = Wiimms MKW Retro 2011-02.ntsc RMCE08 = Wiimms MKW Fun 2011-03.ntsc RMCE09 = Wiimms MKW Fun 2011-06.ntsc RMCE10 = Wiimms MKW Fun 2011-07.ntsc RMCE11 = Wiimms MKW Fun 2011-08.ntsc RMCE12 = Wiimms MKW Fun 2011-11.ntsc RMCE13 = Wiimms MKW Fun 2012-01.ntsc RMCE14 = Wiimms MKW Revival 2012-02.ntsc RMCE15 = Wiimms MKW Boost 2012-03.ntsc RMCE16 = Wiimms MKW Fun 2012-05.ntsc RMCE17 = Wiimms MKW Fun 2012-09.ntsc RMCE18 = Wiimms MKW N64 2012-10.ntsc RMCE19 = Wiimms MKW Fun 2012-12.ntsc RMCE20 = Wiimms MKW Fun 2013-04.ntsc RMCE21 = Wiimms MKW Fun 2013-09.ntsc RMCE22 = Wiimms MKW Fun 2013-10.ntsc RMCE23 = Wiimms MKW Fun 2014-01.ntsc RMCE24 = Wiimms MKW Retro 2014-02.ntsc RMCE25 = Wiimms MKW Fun 2014-04.ntsc RMCE26 = Wiimms MKW Fun 2014-11.ntsc RMCE65 = Mario Kart Wii: Double Dash 64 RMCE66 = Mizy's Texture Pack RMCE67 = Rookie's Texture & Music Pack RMCE68 = Character Kart Wii RMCE69 = Venom Kart Wii RMCE70 = Stickboy Kart Wii RMCE71 = Funky's Riivolution RMCE72 = CtocKart Wii RMCE73 = Mario Kart Adventures RMCE74 = Mario Kart Adventures RMCE75 = Cam, Tom and Troy's CTGP Pack RMCE76 = Pro CT Pack RMCE77 = SpyKid's CT Pack RMCE78 = Mario Kart: Double Dash!! Wii RMCE79 = Super Mario Kart Wii RMCE80 = Mario Kart 64 Wii RMCE81 = Spade's Custom Track Pack RMCE82 = HD's Retro Pack RMCE83 = Glitch Kart Wii RMCE84 = Legend's Awesome CT Pack RMCE85 = Project Double Dash!! RMCE86 = Newer Mario Kart Wii Revolution!: Backward Circuits RMCE87 = Newer Mario Kart Wii Revolution!: Sunset Sun & Dark Moon RMCE88 = Kaizo Kart Wii RMCE89 = Mario Kart Extra RMCE90 = Mario Kart QZW RMCE91 = Medal Kart 64 RMCE92 = MKWLH100's Custom Track Pack RMCE93 = MKW Hack Pack RMCE94 = Custom Track Kart Wii RMCE95 = Soarin's CT Pack X RMCE96 = Mario Kart 6 RMCE97 = Mario Kart Wii Awesomeness 2 RMCE98 = Mario Kart Wii Awesomeness RMCE99 = ReedyCustomPack Ultimate RMCEA1 = Mario Kart Adventures v0.8 RMCECT = Mario Kart Wii CTGP Revolution RMCEDK = Darky Kart Wii RMCEG2 = Mario Kart Wii CTGP Revolution RMCEGP = Mario Kart Wii CTGP Revolution RMCEWS = Wine's CT Pack RMCJ01 = Mario Kart Wii RMCJ12 = Wiimms MKW Fun 2011-11 RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCK01 = Mario Kart Wii RMCP01 = Mario Kart Wii RMCP02 = Wiimms MKW Fun 2010-02.p RMCP03 = Wiimms MKW Fun 2010-10.p RMCP04 = Wiimms MKW Fun 2010-12.p RMCP05 = Custom Mario Kart Wii RMCP06 = Wiimms MKW Fun 2010-12.pal RMCP07 = Wiimms MKW Retro 2011-02.pal RMCP08 = Wiimms MKW Fun 2011-03.pal RMCP09 = Wiimms MKW Fun 2011-06.pal RMCP10 = Wiimms MKW Fun 2011-07.pal RMCP11 = Wiimms MKW Fun 2011-08.pal RMCP12 = Wiimms MKW Fun 2011-11.pal RMCP13 = Wiimms MKW Fun 2012-01.pal RMCP14 = Wiimms MKW Revival 2012-02.pal RMCP15 = Wiimms MKW Boost 2012-03.pal RMCP16 = Wiimms MKW Fun 2012-05.pal RMCP17 = Wiimms MKW Fun 2012-09.pal RMCP18 = Wiimms MKW N64 2012-10.pal RMCP19 = Wiimms MKW Fun 2012-12.pal RMCP20 = Wiimms MKW Fun 2013-04.pal RMCP21 = Wiimms MKW Fun 2013-09.pal RMCP22 = Wiimms MKW Fun 2013-10.pal RMCP23 = Wiimms MKW Fun 2014-01.pal RMCP24 = Wiimms MKW Retro 2014-02.pal RMCP25 = Wiimms MKW Fun 2014-04.pal RMCP26 = Wiimms MKW Fun 2014-11.pal RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCX = Mario Kart Wii CTGP Revolution Channel RMDE69 = Madden NFL 07 RMDP69 = Madden NFL 07 RMEJDA = Major Dream RMFE68 = AMF Bowling Pinbusters! RMFP68 = AMF Bowling Pinbusters! RMGC01 = Super Mario Galaxy RMGE01 = Super Mario Galaxy RMGE52 = Guitar Hero III Custom : Megadeth RMGJ01 = Super Mario Galaxy RMGK01 = Super Mario Galaxy RMGP01 = Super Mario Galaxy RMGR01 = Super Mario Galaxy RMHC08 = Monster Hunter Tri (Custom) RMHE08 = Monster Hunter Tri RMHJ08 = Monster Hunter Tri RMHP08 = Monster Hunter Tri RMIE20 = Margot's Word Brain RMIP7J = Margot's Word Brain RMJJC8 = Mah-jong Rally Wii RMKE01 = Mario Sports Mix RMKE02 = Custom Kart 1 RMKJ01 = Mario Sports Mix RMKP01 = Mario Sports Mix RMLEH4 = Metal Slug Anthology RMLJH4 = Metal Slug Complete RMLK52 = Metal Slug Complete RMLP7U = Metal Slug Anthology RMLPH4 = Metal Slug Anthology RMME7U = Mercury Meltdown Revolution RMMJ7U = Tama-run RMMP52 = Guitar Hero III Custom : Metal Mayhem RMMP7U = Mercury Meltdown Revolution RMNDFR = My Pet Hotel RMNHMN = My Pet Hotel RMNHMR = My Pet Hotel RMNPFR = Cuccioli da accudire RMOE52 = Monster Jam RMOP52 = Monster Jam RMPE54 = MLB Power Pros RMPP54 = MLB Power Pros RMQENR = Myth Makers: Orbs of Doom RMQPUG = Myth Makers: Orbs of Doom RMQXUG = Myth Makers: Orbs of Doom RMRE5Z = Cocoto Magic Circus RMRPNK = Cocoto Magic Circus RMRXNK = Cocoto Magic Circus RMSE52 = Marvel: Ultimate Alliance 2 RMSP52 = Marvel: La Grande Alleanza 2 RMTJ18 = Momotarô Dentetsu 16 RMUE52 = Marvel: Ultimate Alliance RMUJ2K = Marvel: Ultimate Alliance RMUP52 = Marvel: La Grande Alleanza RMVE69 = Medal of Honor: Vanguard RMVP69 = Medal of Honor: Vanguard RMVX69 = Medal of Honor: Vanguard RMWE20 = M&M's Kart Racing RMWP20 = M&M's Kart Racing RMXE78 = MX vs. ATV: Untamed RMXF78 = MX vs. ATV: Untamed RMXP78 = MX vs. ATV: Untamed RMYE5Z = Myth Makers: Super Kart GP RMYPUG = Myth Makers: Super Kart GP RMYXUG = Myth Makers: Super Kart GP RMZE5Z = Myth Makers: Trixie in Toyland RMZPUG = Myth Makers: Trixie in Toyland RN2EAF = Namco Museum Remix RN2K70 = Namco Museum Remix RN2P70 = Namco Museum Remix RN3E78 = Nicktoons: Attack of the Toybots RN3J78 = Nicktoons: Attack of the Toybots RN3P78 = SpongeBob e i suoi amici: L'Attacco dei Toybot RN3X78 = SpongeBob e i suoi amici: L'Attacco dei Toybot RN4E41 = Dawn of Discovery RN4P41 = ANNO: Crea un Nuovo Mondo RN5E78 = The Naked Brothers Band: The Video Game RN5P78 = The Naked Brothers Band: The Video Game RN6ENR = North American Hunting Extravaganza RN6P7J = North American Hunting Extravaganza RN7E78 = Neighborhood Games RN7P78 = Big Family Games RN8JC8 = Nobunaga no Yabou Kakushin with Power-Up Kit RN9E4F = Escape from Bug Island RN9JEL = Necro-Nesia RN9P4F = Escape From Bug Island RNAE69 = NCAA Football 09 RNBE69 = NBA Live 08 RNBP69 = NBA Live 08 RNBX69 = NBA Live 08 RNCEH4 = SNK Arcade Classics Volume 1 RNCPH4 = SNK Arcade Classics Volume 1 RNDJAF = Nodame Cantabile Dream Orchestra RNEEDA = Naruto Shippuden: Clash of Ninja Revolution 3 RNEJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX 3 RNEPDA = Naruto Shippuden: Clash of Ninja Revolution 3 RNFE69 = Madden NFL 08 RNFP69 = Madden NFL 08 RNGJ99 = Negima!? Neo-Pactio Fight!! RNHE41 = No More Heroes RNHJ99 = No More Heroes RNHK8M = No More Heroes RNHP41 = No More Heroes RNHP99 = No More Heroes RNIPGT = Tutti in Forma! RNJE4F = Mini Ninjas RNJP4F = Mini Ninjas RNKE69 = NERF N-Strike RNKP69 = NERF N-Strike RNLE54 = NHL 2K9 RNLP54 = NHL 2K9 RNME5Z = Ninjabread Man RNMPUG = Ninjabread Man RNMXUG = Ninjabread Man RNNE4Q = The Chronicles of Narnia: Prince Caspian RNNJ4Q = The Chronicles of Narnia: Prince Caspian RNNP4Q = Le Cronache di Narnia: Il Principe Caspian RNNX4Q = Le Cronache di Narnia: Il Principe Caspian RNNY4Q = Le Cronache di Narnia: Il Principe Caspian RNNZ4Q = Le Cronache di Narnia: Il Principe Caspian RNOJ01 = Another Code R Kioku no Tobira RNOP01 = Another Code: R - Viaggio al confine della memoria RNPE69 = Need for Speed: ProStreet RNPJ13 = Need for Speed: ProStreet RNPK69 = Need for Speed: ProStreet RNPP69 = Need for Speed: Pro Street RNPX69 = Need for Speed: Pro Street RNPY69 = Need for Speed: Pro Street RNRE41 = Nitro Bike RNRJ41 = Nitro Bike RNRP41 = Nitro Bike RNSD69 = Need for Speed: Carbon RNSE69 = Need for Speed Carbon RNSF69 = Need for Speed: Carbon RNSJ13 = Need for Speed: Carbon RNSP69 = Need for Speed Carbon RNSX69 = Need for Speed: Carbon RNUE8P = Nancy Drew: The White Wolf of Icicle Creek RNVE5Z = Anubis II RNVP5Z = Anubis II RNVPUG = Anubis II RNVXUG = Anubis II RNWJAF = Namco Carnival RNWKAF = Namco Museum Remix RNXEDA = Naruto: Clash of Ninja Revolution RNXJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX RNXPDA = Naruto: Clash of Ninja Revolution RNYEDA = Naruto: Clash of Ninja Revolution 2 RNYJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX 2 RNYPDA = Naruto: Clash of Ninja Revolution 2 RNZE69 = Ninja Reflex RNZJ13 = Ninja Reflex RNZK69 = Ninja Reflex RNZP69 = Ninja Reflex RO2E7N = Ford Racing Off Road RO2P7N = Off Road RO3EXJ = Little King's Story RO3J99 = Little King's Story RO3P99 = Little King's Story RO4JDA = Toshinden RO5E52 = Hot Wheels: Battle Force 5 RO5P52 = Hot Wheels: Battle Force 5 RO7E7D = Legend of Spyro: The Eternal Night RO7P7D = The Legend of Spyro: The Eternal Night RO8E7D = Legend of Spyro: Dawn of the Dragon RO8P7D = The Legend of Spyro: L'Alba del Drago RO8X7D = The Legend of Spyro: L'Alba del Drago RO9EFS = Aqua Panic! RO9PNK = Aqua Panic! ROAE36 = Overlord: Dark Legend ROAP36 = Overlord: Dark Legend ROBE7U = Obscure: The Aftermath ROBPPL = Obscure 2 ROCE5Z = Cocoto Kart Racer ROCPNK = Cocoto Kart Racer RODE01 = WarioWare: Smooth Moves RODJ01 = WarioWare: Smooth Moves RODK01 = WarioWare: Smooth Moves RODP01 = WarioWare: Smooth Moves ROEEJZ = Hotel for Dogs ROEPGT = Hotel Bau ROFE5Z = Offroad Extreme Special Edition ROFPUG = Offroad Extreme! ROFXUG = Offroad Extreme! ROGE78 = Tak and the Guardians of Gross ROGP78 = Tak and the Guardians of Gross ROHJAF = Happy Dance Collection ROJE52 = Rapala: We Fish ROJP52 = Rapala: We Fish ROKJ18 = Karaoke Joysound Wii ROLE8P = Mario & Sonic at the Olympic Winter Games ROLJ01 = Mario & Sonic at the Olympic Winter Games ROLK01 = Mario & Sonic at the Olympic Winter Games ROLP8P = Mario & Sonic ai Giochi Olimpici Invernali ROMESD = Monster Hunter G (English Patched) ROMJ08 = Monster Hunter G RONEG9 = Onechanbara: Bikini Zombie Slayers RONJG9 = Onechanbara Revolution RONPG9 = Onechanbara: Bikini Zombie Slayers ROPE41 = Open Season ROPP41 = Boog & Elliot a Caccia Di Amici ROQJEP = Baroque For Wii ROSJ01 = Takt of Magic ROTE20 = Twin Strike: Operation Thunder ROTP20 = Twin Strike: Operation Thunder ROTP7J = Twin Strike: Operation Thunder ROUJAF = One Piece Unlimited Cruise 1: The Treasure Beneath the Waves ROUPAF = One Piece Unlimited Cruise 1: Il Tesoro Sommerso ROVE6U = Playmobil: Circus ROVPHM = Playmobil: Circus ROWE08 = Okami ROWJ08 = Okami ROWP08 = Okami ROXE20 = Order Up! ROXP7J = Order Up! ROXX7J = Order Up! ROYE41 = Cloudy with a Chance of Meatballs ROYP41 = Piovono Polpette: Il Videogioco ROYX41 = Piovono Polpette RP2E69 = Smarty Pants RP2P69 = Le So Tutte! RP3JAF = Pro Golfer Saru RP4E69 = MySims Party RP4J13 = Boku To Sim No Machi Party RP4P69 = MySims Party RP5JA4 = Jikkyou Powerful Pro Baseball 15 RP6E41 = Petz Crazy Monkeyz RP6P41 = Petz: Monkey Madness RP7E52 = Pirates: Hunt for Blackbeard's Booty RP7P52 = Pirati: Il Tesoro di Barba Nera RP9ERS = Space Chimps RP9PRS = Scimmie nello Spazio RP9XRS = Scimmie nello Spazio RPAF70 = Kid Paddle: Lost in the Game RPBE01 = Pokémon Battle Revolution RPBJ01 = Pokémon Battle Revolution RPBP01 = Pokémon Battle Revolution RPCE20 = Puzzler Collection RPCP41 = Puzzler Collection RPCX7J = Collezione Puzzler RPDEGN = PDC World Championship Darts 2008 RPDPGN = PDC World Championship Darts 2008 RPFE52 = Pitfall: The Big Adventure RPFP52 = Pitfall: La Grande Avventura RPFU52 = Pitfall: The Big Adventure RPGE5D = Rampage: Total Destruction RPGP5D = Rampage: Total Destruction RPHPPN = Peppa Pig: The Game RPIE52 = Pimp My Ride RPIP52 = Pimp My Ride RPJE7U = Arc Rise Fantasia RPJJ99 = Arc Rise Fantasia RPKE52 = World Series of Poker: Tournament of Champions 2007 Edition RPKP52 = World Series of Poker: Tournament of Champions 2007 Edition RPLE52 = Rapala Tournament Fishing RPLP52 = Rapala Tournament Fishing RPMJA4 = Jikkyou Powerful Pro Major League 2 RPNE78 = Paws & Claws: Pet Resort RPOEC8 = Opoona RPOJC8 = Opoona RPOPC8 = Opoona RPPE41 = Prince of Persia: Rival Swords RPPP41 = Prince of Persia: Rival Swords RPQES5 = Pool Party RPQPS5 = Pool Party RPSE4Q = Disney Princess: Enchanted Journey RPSJ4Q = Disney Princess Wii RPSP4Q = Disney Principesse: Il viaggio incantato RPTD52 = Puppy Luv RPTE52 = Puppy Luv: Your New Best Friend RPTP52 = Puppy Luv: Il Tuo Nuovo Amico RPUJ8P = Puyo Puyo! 15th Anniversary RPVE4Z = Purr Pals RPVPKM = Purr Pals: Matti per i gatti RPWX41 = Prince of Persia: Le Sabbie Dimenticate RPWZ41 = Prince of Persia: The Forgotten Sands RPXE69 = EA Playground RPXJ13 = EA Playground RPXP69 = EA Playground RPYE9B = Super Swing Golf RPYJ9B = Super Swing Golf RPYP9B = Pangya! Golf With Style RPZJA4 = Jikkyou Powerful Pro Baseball Wii Ketteiban RQ2JK6 = Crazy Climber Wii RQ3PGN = PDC World Championship Darts 2009 RQ4E78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ4J78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ4P78 = SpongeBob: La Creatura del Krusty Krab RQ5E5G = Mad Dog McCree Gunslinger Pack RQ5P5G = Mad Dog McCree Gunslinger Pack RQ5X5G = Mad Dog McCree Gunslinger Pack RQ6EJJ = Cursed Mountain RQ6PKM = Cursed Mountain RQ6XKM = Cursed Mountain RQ7E20 = Martian Panic RQ7PXT = Martian Panic RQ8E08 = MotoGP 08 RQ8P08 = MotoGP RQ9E69 = NBA Live 09 All-Play RQ9F69 = NBA Live 09 All-Play RQ9P69 = NBA Live 09 All-Play RQ9S69 = NBA Live 09 All-Play RQBENR = Kawasaki Quad Bikes RQBPNR = Kawasaki Quad Bikes RQBPUG = Kawasaki Quad Bikes RQBXUG = Kawasaki Quad Bikes RQCEAF = The Munchables RQCJAF = Tabemon RQEE6U = Agatha Christie: Evil Under the Sun RQEP6V = Agatha Christie: Delitto sotto il sole RQFE6U = Safecracker: The Ultimate Puzzle Adventure RQFP6V = Safecracker: L'Avventura Definitiva per Aspiranti Scassinatori RQGE69 = MySims Racing RQGJ13 = MySims Racing RQGJ69 = Boku To Sim No Machi Racing RQGP69 = MySims Racing RQIJ01 = Minna ga Shuyaku no NHK Kouhaku Quiz Kassen RQJE7D = Crash of the Titans RQJP7D = Crash of the Titans RQJX7D = Crash of the Titans RQKE41 = Circus Games RQKP41 = Circus Party RQLE64 = Star Wars The Clone Wars: Republic Heroes RQLP64 = Star Wars The Clone Wars: Gli Eroi della Repubblica RQMEVN = Ocean Commander RQMPVN = Ocean Commander RQNEWR = Scooby-Doo! First Frights RQNPWR = Scooby-Doo! Le Origini Del Mistero RQOE69 = Spore Hero RQOJ13 = Spore Hero RQOP69 = Spore Hero RQPE52 = Cabela's Trophy Bucks RQPP52 = Cabela's Trophy Bucks RQPZ52 = Cabela's Monster Buck Hunter RQQE52 = Guitar Hero III Custom : Queen RQQE70 = Backyard Football '09 RQREXJ = The Sky Crawlers: Innocent Aces RQRJAF = The Sky Crawlers: Innocent Aces RQRPAF = The Sky Crawlers: Innocent Aces RQSE4Z = Pinball Hall of Fame: The Gottlieb Collection RQSP6M = Gottlieb Pinball Classics RQTE6U = Agatha Christie: And Then There Were None RQTP6V = Agatha Christie: E non ne rimase nessuno RQUEFS = Super PickUps RQVE20 = Pacific Liberator RQVP20 = Pacific Liberator RQWEG9 = Puzzle Quest: Challenge of the Warlords RQWPG9 = Puzzle Quest: Challenge of the Warlords RQXP70 = Asterix alle Olimpiadi RQYENR = Fantasy Aquarium World RQZE41 = Monster 4x4: Stunt Racer RQZP41 = Monster 4x4: Stunt Racer RR2ENR = Rig Racer 2 RR2PNR = Rig Racer 2 RR2PUG = Rig Racer 2 RR3EA4 = Ultimate Party Challenge RR3JA4 = Family Challenge Wii RR3PA4 = Let's Party! RR4EGY = Build-A-Bear Workshop: A Friend Fur All Seasons RR4PFK = Build-A-Bear Workshop: A Friend Fur All Seasons RR5E70 = Ready 2 Rumble Revolution RR5P70 = Ready 2 Rumble Revolution RR7PVP = Real Madrid The Game RR8PUJ = International Athletics RR9E78 = WWE SmackDown vs. Raw 2009 RRAE5Z = Rock 'N' Roll Adventures RRAPUG = Rock 'N' Roll Adventures RRAXUG = Rock 'N' Roll Adventures RRBE41 = Rayman Raving Rabbids RRBJ41 = Rayman Raving Rabbids RRBP41 = Rayman Raving Rabbids RRCE52 = Barbie Horse Adventures: Riding Camp RRCP52 = Barbie Avventure A Cavallo: Scuola Di Equitazione RRDE69 = Rock Band Track Pack: Vol. 2 RRDP69 = Rock Band Song Pack 2 RREE69 = Rock Band Track Pack: Vol. 1 RREP69 = Rock Band Song Pack 1 RRFEE9 = Reel Fishing: Angler's Dream RRFPE9 = Reel Fishing: Angler's Dream RRGE52 = Madagascar: Escape 2 Africa RRGP52 = Madagascar 2 RRHPUJ = Mary King's Riding School 2 RRHXUJ = Mary King's Riding School 2 RRIPTV = Paint Party RRJFMR = Ready Steady Cook: The Game RRJIMR = La Prova del Cuoco RRJPMR = Ready Steady Cook: The Game RRKE70 = Alone in the Dark RRKP70 = Alone in the Dark RRLE78 = Bratz: Girlz Really Rock RRLP78 = Bratz: Girlz Really Rock RRLX78 = Bratz: Girlz Really Rock RRLY78 = Bratz: Girlz Really Rock RRLZ78 = Bratz: Girlz Really Rock RRME69 = Hasbro: Family Game Night RRMP69 = Hasbro Family Party RRMX69 = Hasbro: Family Game Night RRPE41 = The Price Is Right RRQE52 = Shrek's Carnival Craze Party Games RRQP52 = Shrek: Tutti al Luna Park Mini-Giochi RRQX52 = Shrek: Tutti al Luna Park Mini-Giochi RRRE5Z = Real Heroes: Firefighter RRRPRM = Real Heroes: Firefighter RRSE4Q = Meet The Robinsons RRSJ4Q = Meet The Robinsons RRSP4Q = I Robinson: Una Famiglia Spaziale RRSX4Q = I Robinson: Una Famiglia Spaziale RRTE52 = Block Party 20 Games RRTP52 = Family Party 20 Giochi RRUEJF = Winter Sports 2: The Next Challenge RRUFRT = Winter Sports 2009: The Next Challenge RRUJJF = Winter Sports 2009 The Next Challenge RRUPRT = Winter Sports 2009: The Next Challenge RRVENR = Battle Rage: Mech Conflict RRVPNR = Battle Rage: The Robot Wars RRWJAF = Super Robot Taisen NEO RRXE5Z = Monster Trux Arenas: Special Edition RRXPUG = Monster Trux Arenas RRXXUG = Monster Trux Arenas RRYEHG = Rogue Trooper: Quartz Zone Massacre RRYPHY = Rogue Trooper: Quartz Zone Massacre RRZEGY = Rubik's World RRZPGY = Rubik's Puzzle World RS2E20 = Ultimate Duck Hunting RS2EGJ = Ultimate Duck Hunting RS2PGJ = Ultimate Duck Hunting RS3E52 = Spider-Man 3 RS3J52 = Spider-Man 3 RS3P52 = Spider-Man 3 RS3X52 = Spider-Man 3 RS4EXS = Castle of Shikigami III RS4JJF = Shikigami No Shiro III RS4PXS = Castle Of Shikigami III RS5EC8 = Samurai Warriors: Katana RS5JC8 = Sengoku Musou KATANA RS5PC8 = Samurai Warriors: Katana RS7J01 = Eyeshield 21 Field Saikyo no Senshi Tachi RS8J8N = Shanghai RS9E8P = Sonic Riders: Zero Gravity RS9J8P = Sonic Riders: Shooting Star Story RS9P8P = Sonic Riders: Zero Gravity RSAE78 = SpongeBob's Atlantis SquarePantis RSAP78 = SpongeBob's Atlantis SquarePantis RSBE01 = Super Smash Bros. Brawl RSBE02 = Super Smash Bros. Project M Red Version RSBE03 = Super Smash Bros. Brawl DX RSBE04 = Super Smash Bros. Project M+ RSBE05 = Super Smash Bros. Project M Patt Edition RSBE06 = Darkon360's Brawl Hack Pack RSBE07 = Super Smash Bros. Project M: Theytah's Custom Build RSBE08 = Smash Bros. Infinite RSBE09 = Springboy64's Brawl Hack Pack RSBE10 = Brawl Ying Yang Edition RSBE11 = Professor MGW's Tournament Hack Pack #1 RSBE12 = Professor MGW's Tournament Hack Pack #2 RSBE13 = Professor MGW's Hack Pack #3 RSBE14 = Super Smash Bros. Brawl- Zeus RSBE15 = Super Smash Bros. Brawl Minus Mugen RSBE16 = Super Smash Bros. Brawl Shock RSBE17 = Super Smash Bros. Brawl - Battlefield Build RSBE18 = Super Smash Bros. Project M: Tournament Hack Pack RSBE19 = Super Smash Bros. Project M: Fully Dressed Edition RSBE20 = Pikezer's BrawlEx Pack RSBE21 = Calabrel's Custom Project M Build RSBE22 = Project M: Rage83's Competitive Custom Build RSBE23 = Super Smash Bros. Project M: Justice Build RSBE24 = Super Smash Bros. 3 RSBE25 = Super Smash Bros. Red Version RSBE26 = Super Smash Bros. Silver RSBE27 = Springboy64's Super Smash Bros. Brawl Hack Pack RSBE28 = SuperYoshiStar's Super Smash Bros. Brawl Hack Pack RSBE29 = Super Smash Bros. Project M: YoeiX Custom Build RSBE30 = Super Smash Bros. Project M: Arko's Loaded Custom Build RSBE31 = Super Smash Bros. Project M: Arko's Tournament Custom Build RSBE32 = Super Smash Bros. Project M: Sempai's Build RSBE33 = Super Smash Bros. Brawl Yin Yang Edition 2: The Balance of Kyu RSBE34 = Super Smash Bros. Project U: Blue Version RSBE35 = Super Smash Bros. Brawl Legacy: Project M RSBE36 = Super Smash Bros. Project Best RSBE37 = Super Smash Bros. Project M: Psycho Ghost's Build RSBE38 = Super Smash Sisters Generations RSBE39 = Super Smash Bros. Ultra Project M RSBE40 = Super Smash Bros. Project M: Ragnarok Edition RSBE41 = Super Smash Bros. Project M: Calabrel's Custom Build RSBE42 = Super Smash Bros. Project M: RedX Anime/Game Custom Build RSBEBB = Super Smash Bros. Balanced Brawl RSBEBM = Super Smash Bros. Brawl Minus RSBEBP = Super Smash Bros. Brawl Plus RSBEC3 = Super Smash Bros. Project M 3.5 Netplay Build RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBEWM = Super Smash Bros. Project M Wi-Fi RSBJ01 = Dairantou Smash Brothers X RSBK01 = Dairantou Smash Brothers X RSBP01 = Super Smash Bros. Brawl RSCD7D = Scarface: The World Is Yours RSCE7D = Scarface: The World Is Yours RSCP7D = Scarface: The World Is Yours RSCU7D = Scarface: The World Is Yours RSDJAF = SD Gundam: Scad Hammers RSEJGD = Soul Eater Monotone Princess RSFC99 = Muramasa: The Demon Blade (Custom) RSFE7U = Muramasa: The Demon Blade RSFJ99 = Oboro Muramasa RSFP99 = Muramasa: La Spada Demoniaca RSHE69 = MySims Kingdom RSHJ13 = Boku to Sim no Machi Kingdom RSHK69 = MySims Kingdom RSHP69 = MySims Kingdom RSIE69 = MySims RSIJ13 = Boku To Sim No Machi RSIP69 = MySims RSJE41 = Broken Sword: Shadow of the Templars (Director's Cut) RSJESD = Guitar Hero III Custom: System Of A Down RSJP41 = Broken Sword: Il Segreto dei Templari - The Director's Cut RSKE52 = Shrek The Third RSKP52 = Shrek Terzo RSKX52 = Shrek The Third RSLEAF = Soulcalibur: Legends RSLJAF = Soulcalibur: Legends RSLKAF = Soulcalibur: Legends RSLPAF = Soulcalibur Legends RSME8P = Super Monkey Ball: Banana Blitz RSMJ8P = Super Monkey Ball: Banana Blitz RSMP8P = Super Monkey Ball: Banana Blitz RSND69 = The Simpsons Game RSNE69 = The Simpsons Game RSNF69 = The Simpsons Game RSNP69 = I Simpson: Il videogioco RSNX69 = I Simpson: Il Videogioco RSOE4Z = Solitaire & Mahjong RSOP4Z = Solitaire & Mahjong RSPE01 = Wii Sports RSPJ01 = Wii Sports RSPK01 = Wii Sports RSPP01 = Wii Sports RSPW01 = Wii Sports RSQEAF = We Ski RSQJAF = Family Ski RSQPAF = Family Ski RSRE8P = Sonic and the Secret Rings RSRJ8P = Sonic and the Secret Rings RSRP8P = Sonic e gli Anelli Segreti RSSEH4 = Samurai Shodown Anthology RSSJH4 = Samurai Spirits: Rokuban Shoubu RSSK52 = Samurai Shodown Anthology RSSP7U = Samurai Shodown Anthology RSTE64 = Star Wars: The Force Unleashed RSTJ52 = Star Wars: The Force Unleashed RSTP64 = Star Wars: Il Potere della Forza RSUENR = Summer Sports: Paradise Island RSUP41 = Sports Party RSVE8P = Sonic Unleashed RSVJ8P = Sonic World Adventure RSVP8P = Sonic Unleashed RSWE08 = Spyborgs RSWP08 = Spyborgs RSXE69 = SSX Blur RSXJ13 = SSX Blur RSXK69 = SSX Blur RSXP69 = SSX Blur RSXX78 = Guitar Hero RadioHead RSYE20 = Showtime Championship Boxing RSYP06 = Super Smash Bros. Brawl : YF06's Mod RSYP7J = Showtime Championship Boxing RSZJES = Yukinko Daisenpuu RSZPGT = Legend of Sayuki RT2E20 = Arctic Tale RT2P20 = Arctic Tale RT2P7J = Arctic Tale RT3E54 = Rockstar Games Presents: Table Tennis RT3JEL = Rockstar Games Presents: Table Tennis RT3P54 = Rockstar Games Presents: Table Tennis RT4EAF = Tales of Symphonia: L'alba di un nuovo mondo RT4JAF = Tales Of Symphonia: Ratatosk no Kishi RT4PAF = Tales of Symphonia: L'Alba di un Nuovo Mondo RT5E8P = SEGA Superstars Tennis RT5P8P = SEGA Superstars Tennis RT6FKM = Magic Roundabout RT6PKM = La Giostra Magica RT7E69 = Tiger Woods PGA Tour 07 RT7F69 = Tiger Woods PGA Tour 07 RT7P69 = Tiger Woods PGA Tour 07 RT8E69 = Tiger Woods PGA Tour 08 RT8J13 = Tiger Woods PGA Tour Golf 08 RT8K69 = Tiger Woods PGA Tour Golf 08 RT8P69 = Tiger Woods PGA Tour 08 RT9E52 = Tony Hawk's Proving Ground RT9P52 = Tony Hawk's Proving Ground RTAE41 = Tom Clancy's H.A.W.X. 2 RTAP41 = Tom Clancy's H.A.W.X. 2 RTBE52 = Rapala Fishing Frenzy RTBP52 = Rapala Fishing Frenzy RTCE41 = Tom Clancy's Splinter Cell: Double Agent RTCP41 = Tom Clancy's Splinter Cell: Double Agent RTDE6K = The Monkey King: The Legend Begins RTDJES = Shin Chuuka Taisen RTDK8M = Shin Chuuka Taisen RTEE78 = Paws & Claws: Pet Vet RTEHMR = Veterinario: Cuccioli in Pericolo RTEPFR = La Mia Clinica Veterinaria RTFE52 = Transformers: The Game RTFJ52 = Transformers: The Game RTFK52 = Transformers: The Game RTFP52 = Transformers: The Game RTFX52 = Transformers: The Game RTFY52 = Transformers: The Game RTGJ18 = Wi-Fi Taiô Gensen Table Games Wii RTHE52 = Tony Hawk's Downhill Jam RTHP52 = Tony Hawk's Downhill Jam RTIE8P = Wacky World of Sports RTIJ8P = Wacky World of Sports RTIP8P = Wacky World of Sports RTJE68 = Star Trek: Conquest RTJP68 = Star Trek: Conquest RTKE5Z = Octomania RTKJDQ = Sharuui Takoron RTKK8M = Sharuui Takoron RTLE18 = Fishing Master: World Tour RTLJ18 = Mezase Tsuri Master Sekai Ni Challenge Hen RTLP18 = Fishing Master: World Tour RTME41 = TMNT RTMP41 = TMNT Tartarughe Ninja RTNE41 = Tenchu: Shadow Assassins RTNJCQ = Tenchu 4 RTNP41 = Tenchu: Shadow Assassins RTOJ8P = 428: Fuusa Sareta Shibuya de RTPP41 = Top Trumps Adventures RTQENR = Monster Trux Offroad RTQPUG = Monster Trux Offroad RTQXUG = Monster Trux Offroad RTRE18 = Fishing Master RTRJ18 = Mezase Tsuri Master RTRP18 = Fishing Master RTSEVN = Totally Spies! Totally Party RTSP41 = Totally Spies! Totally Party RTTJAF = Tamagotchi no Furifuri Kagekidan RTUEJJ = Secret Files Tunguska RTUFKM = Secret Files: Il Mistero di Tunguska RTUPKM = Secret Files: Il Mistero DiTunguska RTVE64 = Thrillville: Off the Rails RTVP64 = Thrillville: Fuori dai Binari RTWE5D = TNA iMPACT! RTWP5D = TNA iMPACT! RTYP01 = Wii Scacchi RTZE08 = Zack & Wiki: Il Tesoro del Pirata Barbaros RTZJ08 = Zack & Wiki: Il Tesoro del Pirata Barbaros RTZK08 = Zack & Wiki: Quest For Barbaros' Treasure RTZP08 = Zack & Wiki: Il Tesoro del Pirata Barbaros RU1P4Q = Disney Sing It:: Sing It Star Singstar 1 RU2E5Z = Winter Sports 2: The Next Challenge RU2P4Q = Disney Sing It: Sing It Star Singstar 2 RU2P5Z = Winter Sports 2009: The Next Challenge RU3E5Z = Summer Athletics: The Ultimate Challenge RU4E41 = My Fitness Coach 2: Exercise & Nutrition RU4X41 = NewU Fitness First Personal Trainer RU5E4Q = The Princess and the Frog RU5P4Q = La Principessa e il Ranocchio RU5V4Q = Disney: The Princess and the Frog RU5X4Q = Disney: The Princess and the Frog RU5Y4Q = The Princess and the Frog (Riverboat Jazz Edition) RU6EHG = Free Running RU6PHY = Free Running RU7E5G = Night at the Museum: Battle of the Smithsonian - The Video Game RU7X5G = Una Notte Al Museo 2: Il VideoGioco RU8EFS = Bass Pro Shops: The Hunt RU9EGT = My Ballet Studio RU9PGT = Diva Girls: Stelle Sulle Punte RUAE52 = Monster Jam: Urban Assault RUAP52 = Monster Jam: Assalto Urbano RUBEVN = Ultimate Board Game Collection RUBP7N = Ultimate Board Game Collection RUCE5Z = Winter Sports: The Ultimate Challenge RUCPRT = Winter Sports 2008: The Ultimate Challenge RUCXRT = Winter Sports 2008: The Ultimate Challenge RUEE4Q = G-Force RUEP4Q = G-Force: Superspie in missione RUEX4Q = G-Force: Superspie in missione RUEY4Q = G-Force: Superspie in missione RUFEMV = Rune Factory: Frontier RUFJ99 = Rune Factory: Frontier RUFP99 = Rune Factory: Frontier RUGE7T = Goosebumps: HorrorLand RUGP5G = Goosebumps: HorrorLand RUHE52 = Bakugan Battle Brawlers RUHP52 = Bakugan Battle Brawlers RUHX52 = Bakugan Battle Brawlers (Toys R Us Edition) RUHZ52 = Bakugan Battle Brawlers RUIE4Q = Disney: Sing It RUIGGD = SingItStar Ned. 80's RUIP4Q = Disney Sing It RUIX4Q = Disney: Sing It RUKEGT = Rolling Stone: Drum King RUKPGT = We Rock: Drum King RULE4Q = Ultimate Band RULP4Q = Ultimate Band RUME5Z = Ski and Shoot RUMPFR = Summer Athletics RUNJ0Q = New Unou Kids Wii EX RUOEPL = Aliens in the Attic RUOPPL = Alieni in soffitta RUPJC8 = Winning Post 7 Maximum 2008 RUQD78 = Up RUQE78 = Up RUQI78 = Up il Videogioco RUQJJE = Carl jii san no sora tobu Ie RUQP78 = Up Il Videogioco RUQS78 = Up Il Videogioco RUQX78 = Up Il Videogioco RUREPL = Pool Hall Pro RURPPL = Pool Hall Pro RUSE78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUSK78 = SpongeBob SquarePants Featuring Nicktoons: Globs of Doom RUSP78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUSX78 = Spongebob e i suoi amici: Globulous all'attacco! RUSY78 = SpongeBob e i suoi amici: Globulous all'attacco! RUUE01 = Animal Crossing: City Folk RUUJ01 = Machi He Ikouyo: Doubutsu no Mori RUUK01 = Animal Crossing: City Folk RUUP01 = Animal Crossing: Let's Go to the City RUWJC8 = Winning Post World RUXPUG = Urban Extreme: Street Rage RUXXUG = Urban Extreme: Street Rage RUYE41 = No More Heroes 2: Desperate Struggle RUYJ99 = No More Heroes 2: Desperate Struggle RUYP99 = No More Heroes 2: Desperate Struggle RUZE7T = Ultimate I SPY RUZP5G = Ultimate I SPY RV2E5D = Game Party 2 RV2P5D = More Game Party RV3P6N = Clever Kids: Creepy Crawlies RV7SMR = L'isola Dei Famosi RV8E20 = Beach Fun: Summer Challenge RV8PRT = Beach Fun: Summer Challenge RV9E78 = Avatar: The Last Airbender - Into the Inferno RV9P78 = Avatar: The Legend of Aang - Into the Inferno RVAE78 = Avatar: The Last Airbender - The Burning Earth RVAP78 = Avatar: The Legend of Aang - The Burning Earth RVBERS = Alvin and the Chipmunks RVBPRS = Alvin Superstar RVDPLG = Diabolik: The Original Sin RVEFMR = Bienvenue Chez Les Ch'tis RVFE20 = Bigfoot: Collision Course RVFP7J = Bigfoot: Collision Course RVGE78 = Merv Griffin's Crosswords RVGP78 = Margot's Word Brain RVHP41 = Scrabble Interactive: 2009 Edition RVIE4F = Bionicle Heroes RVIP4F = Bionicle Heroes RVJPFR = So Blonde: Back to the Island RVKEXJ = Valhalla Knights: Eldar Saga RVKJ99 = Valhalla Knights Elder Saga RVKKZA = Valhalla Knights: Eldar Saga RVKP99 = Eldar Saga RVLPA4 = Rock Revolution RVNE20 = Calvin Tucker's Redneck Jamboree RVNP20 = Calvin Tucker's Redneck Jamboree RVNP7J = Calvin Tucker's Redneck Jamboree RVOEPL = Vertigo RVOPPL = Vertigo RVPEFS = PopStar Guitar RVPPFS = PopStar Guitar RVQE41 = Movie Games RVQP41 = Cinema Party RVREFS = Rebel Raiders: Operation Nighthawk RVRPFS = Rebel Raiders: Operation Nighthawk RVRPKG = Rebel Raiders: Operation Nighthawk RVSE69 = Skate It RVSJ13 = Skate It RVSP69 = Skate It RVTFMR = Veterinario: Cuccioli in Pericolo RVTPMR = My Pet Club RVTXMR = Veterinario: Cuccioli in Pericolo RVUE8P = Virtua Tennis 2009 RVUP8P = Virtua Tennis 2009 RVVE78 = Big Beach Sports RVVP78 = Big Beach Sports RVXFRT = RTL Biathlon 2009 RVXPRT = Winter Sports 2009: RTL Biathlon 2009 RVYD52 = Call of Duty: World at War RVYE52 = Call of Duty: World at War RVYK52 = Call of Duty: World at War RVYP52 = Call of Duty: World at War RVYX52 = Call of Duty: World at War RVYY52 = Call of Duty: World at War RVZE52 = Monsters vs. Aliens RVZP52 = Mostri contro Alieni RW3E4Q = Pirates of the Caribbean: At World's End RW3J4Q = Pirates Of The Caribbean: At World's End RW3P4Q = Pirati dei Caraibi: Ai Confini del Mondo RW4D41 = My Word Coach: Develop your vocabulary RW5F41 = Who Wants To Be A Millionaire: 2nd Edition RW5P41 = Chi Vuol Essere Milionario: 2a Edizione RW6PA4 = Dance Dance Revolution: Winx Club RW7E41 = Shaun White Snowboarding: Road Trip - Target Limited Edition RW8P41 = Giulia Passione Avventure Nella Prateria RW9P78 = WWE SmackDown vs. Raw 2009 RW9X78 = WWE SmackDown vs. Raw 2009 RWAD78 = WALL•E RWAE78 = WALL•E RWAJ78 = WALL•E RWAK78 = WALL•E RWAP78 = WALL•E RWAR78 = WALL•E RWAU78 = WALL•E RWAX78 = WALL•E RWAY78 = WALL•E RWAZ78 = WALL•E RWBENR = Kawasaki Snowmobiles RWBXUG = Kawasaki Snow Mobiles RWCE4Z = Pinball Hall of Fame: The Williams Collection RWCP4Z = Pinball: Hall Of Fame RWCP6M = Williams Pinball Classics RWDC52 = Guitar Hero III Custom: WD Custom RWDE5G = Wild Earth: African Safari RWDP5G = Wild Earth: African Safari RWEEA4 = Pro Evolution Soccer 2008 RWEJA4 = Winning Eleven PLAY MAKER 2008 RWEPA4 = Pro Evolution Soccer 2008 RWFH41 = My Word Coach: Develop your vocabulary RWGE08 = We Love Golf! RWGJ08 = We Love Golf! RWGP08 = We Love Golf! RWHP4F = Top Trumps: Doctor Who RWIE18 = Wing Island RWIJ18 = Wing Island RWIP18 = Wing Island RWJENR = WordJong Party RWKE5G = Cooking Mama: World Kitchen RWKPGT = Cooking Mama 2: World Kitchen RWLE01 = Wario Land: Shake It! RWLJ01 = Warioland Shake RWLK01 = Wario Land Shaking RWLP01 = Wario Land: The Shake Dimension RWME78 = Worms: A Space Oddity RWMP78 = Worms: Verm'Odissea nello Spazio RWNF70 = Warning: Code De La Route RWOE69 = Monopoly RWOJ13 = Monopoly RWOP69 = Monopoly RWQPSP = WSC Real 08: World Snooker Championship RWRE4F = Wacky Races: Crash & Dash RWRP4F = Wacky Races: la corsa più pazza del mondo RWSE8P = Mario & Sonic ai Giochi Olimpici RWSJ01 = Mario & Sonic at the Olympic Games RWSK01 = Mario & Sonic at the Olympic Games RWSP8P = Mario & Sonic ai Giochi Olimpici RWTEG9 = Ben 10: Alien Force RWTPG9 = Ben 10: Alien Force RWUE52 = X-Men Origins: Wolverine RWUP52 = X-Men Le Origini: Wolverine RWUX52 = X-Men le Origini: Wolverine RWWE52 = Guitar Hero III Custom : WWE The Hits RWWE78 = WWE SmackDown vs. Raw 2008 RWWJ78 = WWE SmackDown vs. Raw 2008 RWWP78 = WWE SmackDown vs. Raw 2008 RWWX78 = WWE SmackDown vs. Raw 2008 RWXES5 = Brave: A Warrior's Tale RWXPS5 = Brave: A Warrior's Tale RWYPHH = Runaway: The Dream of the Turtle RWZE5G = Wonder World Amusement Park RWZP5G = Wonder World Amusement Park RWZX5G = Wonder World Amusement Park RX2E70 = My Horse & Me: Riding for Gold RX2P70 = My Horse & Me 2 RX3E01 = ExciteBots: Trick Racing RX3J01 = ExciteBots: Trick Racing RX4E4Z = Casper's Scare School: Spooky Sports Day RX4PMT = Casper Scuola Paura: Giornata di sport spaventosi RX5E52 = Tony Hawk: Ride RX5P52 = Tony Hawk: Ride RX6E78 = The Biggest Loser RX6P78 = The Biggest Loser RX7JGD = Meja-maji March RX8JA4 = Jikkyou Powerful Pro Yakyuu Next RX9E69 = Need for Speed: Undercover RX9J13 = Need for Speed: Undercover RX9K69 = Need for Speed: Undercover RX9P69 = Need for Speed: Undercover RX9X69 = Need for Speed: Undercover RX9Y69 = Need for Speed: Undercover RXAE78 = WWE SmackDown vs. Raw 2010 RXAP78 = WWE SmackDown vs. Raw 2010 RXBE70 = Backyard Baseball '10 RXBP70 = Backyard Baseball '10 RXCE4Z = Dave Mirra BMX Challenge RXCP4Z = Dave Mirra BMX Challenge RXCPGT = Dave Mirra BMX Challenge RXDD4Q = Disney Pensa !n Fretta: Il Grande Quiz RXDE4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDJ4Q = Disney Th!nk Haya Oshi Quiz RXDP4Q = Disney Pensa !n Fretta: Il Grande Quizz RXDR4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDX4Q = Disney Pensa !n Fretta: Il Grande Quizz RXDY4Q = Disney Pensa !n Fretta: Il Grande Quiz RXEJDA = Major Wii Perfect Closer RXFEVN = Offshore Tycoon RXGE6K = Geon Cube RXGP6K = Geon Cube RXHF5D = Chaos à La Maison RXIE52 = Transformers: Revenge of the Fallen RXIP52 = Transformers: La Vendetta del Caduto RXJJDA = Jinsei Game Wii EX RXKEGL = TV Show King Party RXKFGL = TV Show King Party RXKPGL = TV Show King Party RXLE41 = Grey's Anatomy: The Video Game RXLP41 = Grey's Anatomy: The Video Game RXMJ8P = Miburi & Teburi RXNEXS = Hooked Again: Real Motion Fishing RXNJJF = Bass Fishing Wii World Tournament RXNPGT = Big Catch Bass Fishing 2 RXPEXS = Hooked!: Real Motion Fishing RXPJJF = Bass Fishing Wii RXPPGT = Big Catch Bass Fishing RXQEWR = Where the Wild Things Are RXQPWR = Nel Paese delle Creature Selvagge RXRERS = The Tale of Despereaux RXRPRS = The Tale of Despereaux RXRXRS = Le avventure del topino Despereaux RXSPA4 = Dancing Stage Hottest Party RXUE41 = Surf's Up RXUP41 = Surf's Up I Re delle Onde RXUX41 = Surf's Up I Re delle Onde RXVXWP = Cruciverba Per Wii RXWE20 = M&M's Beach Party RXXE4Q = Spectrobes: Origins RXXJ4Q = Spectrobes: Origins RXXP4Q = Spectrobes: Le Origini RXYE4Z = Puzzle Challenge: Crosswords and More! RXYP4Z = Puzzle Challenge Crosswords RXZE52 = Cabela's Dangerous Hunts 2009 RXZP52 = Cabela's Dangerous Adventures RY2E41 = Rayman Raving Rabbids 2 RY2J41 = Rayman Raving Rabbids 2 RY2K41 = Rayman Raving Rabbids 2 RY2P41 = Rayman Raving Rabbids 2 RY2R41 = Rayman Raving Rabbids 2 RY3E41 = Rayman Raving Rabbids TV Party RY3J41 = Rayman Raving Rabbids TV Party RY3K41 = Rayman Raving Rabbids: TV Party RY3P41 = Rayman Raving Rabbids: TV Party RY4J8P = Puyo Puyo 7 RY5E52 = Big League Sports: Summer RY5P52 = World Championship Sports: Summer RY6EA4 = Walk It Out! RY6PA4 = Step to the Beat RY7PHZ = Ninja Captains RY8EFS = Bass Pro Shops: The Strike RYAJDA = Yattaman Wii Bikkuridokkiri Machine De Mou Race Da Koron RYAJSC = Yatterman Wii (Simplified Chinese Translation) RYBE69 = Boom Blox: Bash Party RYBP69 = Boom Blox: Smash Party RYDELT = Pet Pals: Animal Doctor RYDP6V = Pet Pals: Animal Doctor RYEEEB = 101-in-1 Party Megamix RYEPHZ = 101-in-1 Party Megamix RYGE9B = Rygar: The Battle of Argus RYGJ9B = Argus No Senshi Muscle Impact RYGP99 = Rygar: The Battle of Argus RYHES5 = Roogoo: Torri Storte RYHPS5 = Roogoo: Twisted Towers RYIE9B = SPRay RYIP9B = SPRay RYJPTV = Princess Lillifee's Magic Fairy RYKEAF = We Ski & Snowboard RYKJAF = Family Ski: World Ski & Snowboard RYKPAF = Family Ski & Snowboard RYLDSV = Germany's Next Top Model RYNE6U = The Hardy Boys: The Hidden Theft RYNP6V = The Hardy Boys: The Hidden Theft RYOEA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYOJA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYOPA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYQE69 = Trivial Pursuit RYQP69 = Trivial Pursuit RYQX69 = Trivial Pursuit Nordic RYRE41 = Your Shape RYRP41 = Your Shape RYTE4Z = PBR: Out of the Chute RYVEMS = Arcade Shooter: Ilvelo RYVJMS = Illvelo Wii RYWE01 = Big Brain Academy: Wii Degree RYWJ01 = Wii de Yawaraka Atama Juku RYWK01 = Big Brain Academy: Wii Degree RYWP01 = Big Brain Academy per Wii RYXE20 = Yamaha Supercross RYXP7J = Yamaha Supercross RYZE6U = World Party Games RYZPTV = Play the World RZ2JG9 = Simple Wii Series Vol. 1: The Minna de Kart Race RZ3JG9 = Simple Wii Series Vol. 2: The Minna de Bass Tsuri Taikai RZ4JG9 = Simple Wii Series Vol. 3: The Casino Party RZ5JG9 = Simple Wii Series Vol. 4: The Shooting Action RZ6JG9 = Simple Wii Series Vol. 5: The Block Kuzushi RZ7JG9 = Simple Wii Series Vol. 6: The Waiwai Konbatto RZ8JG9 = Simple 2000 Series Wii Vol. 1: The Table Game RZ9EG9 = Family Party: 30 Great Games RZ9JG9 = Simple 2000 Series Wii Vol. 2: The Party Game RZ9PG9 = Family Party: 30 Great Games RZAPTV = Power Matematica RZCE6K = Saint RZDC01 = The Legend of Zelda: Twilight Princess (Custom) RZDE01 = The Legend of Zelda: Twilight Princess RZDJ01 = The Legend of Zelda: Twilight Princess RZDK01 = The Legend of Zelda: Twilight Princess RZDP01 = The Legend of Zelda: Twilight Princess RZEE52 = Science Papa RZEP52 = Science Papa RZFPKM = Secret Files 2: Puritas Cordis RZHE5G = Zoo Hospital RZHP5G = Zoo Hospital RZHX5G = Zoo Hospital RZIE20 = Winter Sports 3: The Great Tournament RZIPRT = Winter Sports 2010: The Great Tournament RZJD69 = Dead Space: Extraction RZJE69 = Dead Space: Extraction RZJJ13 = Dead Space: Extraction RZJP69 = Dead Space: Extraction RZKE20 = Puzzle Kingdoms RZKP7J = Puzzle Kingdoms RZLE41 = Cook Wars RZLP41 = Cooking Party RZNJ01 = Zangeki no Reginleiv RZOE78 = World of Zoo RZOP78 = World of Zoo RZPE01 = Link's Crossbow Training RZPJ01 = Link's Crossbow Training RZPK01 = Link's Crossbow Training RZPP01 = Link's Crossbow Training RZREGT = The Destiny of Zorro RZRPGT = Nel segno di Zorro RZSEGJ = Speed Zone RZSP68 = Wheelspin RZTE01 = Wii Sports Resort RZTJ01 = Wii Sports Resort RZTK01 = Wii Sports Resort RZTP01 = Wii Sports Resort RZTW01 = Wii Sports Resort RZUE4Z = Crayola Colorful Journey RZYE41 = My Word Coach RZYF41 = Il Mio Coach: Arricchisco Il Mio Vocabolario RZYP41 = Il Mio Coach: Arricchisco Il Mio Vocabolario RZYS41 = My Word Coach: Develop your vocabulary RZZE8P = MadWorld RZZJEL = MadWorld RZZP8P = MadWorld S02PES = SingItStar 90's S22JAF = Family Fishing S22K01 = Family Fishing S25JGD = Dragon Quest 25 Collection: Famicom & Super Famicom Dragon Quest I-II-III S26PML = 2-in-1: Pony Friends 2 + My Riding Stables: Life with Horses S2AEAF = Active Life: Explorer S2AJAF = Minna de Bouken! Family Trainer S2APAF = Family Trainer: Treasure Adventure S2BEPZ = Country Dance 2 S2BPXT = Country Dance 2 S2CE54 = New Carnival Games S2CP54 = New Carnival Funfair Games S2DPML = Dance! It's Your Stage S2EE41 = ABBA: You Can Dance S2EP41 = ABBA: You Can Dance S2HE70 = Haunted House S2HP70 = Haunted House S2IE8P = Iron Man 2 S2IP8P = Iron Man 2 S2LE01 = PokéPark 2: Wonders Beyond S2LJ01 = PokéPark 2: Beyond the World S2LP01 = PokéPark 2: Il Mondo dei Desideri S2ME69 = Madden NFL 13 S2OEFS = Bass Pro Shops: The Strike - Tournament Edition S2PEA4 = Pro Evolution Soccer 2012 S2PJA4 = Winning Eleven PLAY MAKER 2012 S2PPA4 = Pro Evolution Soccer 2012 S2PXA4 = Pro Evolution Soccer 2012 S2PYA4 = Pro Evolution Soccer 2012 S2QE54 = NBA 2K12 S2QP54 = NBA 2K12 S2RPNK = Reload S2TJAF = Taiko no Tatsujin Wii: Dodoon to 2 Daime! S2VEG9 = Victorious: Taking the Lead S2VPAF = Victorious: Taking the Lead S2WE78 = WWE All Stars S2WP78 = WWE All Stars S2XE41 = I Puffi 2 S2XP41 = I Puffi 2 S2YE52 = Wipeout: Create & Crash S2ZE52 = Zhu Zhu Pets: Featuring The Wild Bunch S2ZP52 = Zhu Zhu Pets: Gli Amici del Bosco S3AE5G = Attack of the Movies 3D S3BEWR = Batman: The Brave and the Bold S3BPWR = Batman: The Brave and the Bold - Il Videogioco S3CENR = Triple Crown Championship Snowboarding S3DE18 = Deca Sports 3 S3DJ18 = Deca Sporta 3 S3DP18 = Sports Island 3 S3EE78 = Barbie Jet, Set & Style! S3EP78 = Barbie: Fashionista in Viaggio S3FE69 = FIFA Soccer 13 S3FP69 = FIFA 13 S3FX69 = FIFA 13 S3GE20 = Glacier 3: The Meltdown S3GPXT = Glacier 3 S3HJ08 = Sengoku Basara 3 Utage S3IEA4 = Pro Evolution Soccer 2013 S3IPA4 = Pro Evolution Soccer 2013 S3IXA4 = Pro Evolution Soccer 2013 S3IYA4 = Pro Evolution Soccer 2013 S3LPY1 = Andrew Lloyd Webber Musicals: Sing and Dance S3ME69 = The Sims 3 S3MP69 = The Sims 3 S3PE4Q = Disney Princess: My Fairytale Adventure S3PP4Q = Disney Princess: Magica Avventura S3PX4Q = Disney Princess: My Fairytale Adventure S3RJMS = Twinkle Queen S3SJ18 = Karaoke Joysound Wii Super DX: Hitori de Minna de Utai Houdai! S3TJAF = Taiko no Tatsujin Wii: Minna de Party ☆ 3 Daime! S3WEG9 = Family Party: 30 Great Games Winter Fun S3WPG9 = Family Party: 30 Great Games Winter Fun S3XE78 = WWE '13 S3XP78 = WWE '13 S3ZE52 = Men In Black: Alien Crisis S3ZP52 = Men In Black: Alien Crisis S4MJGD = Dragon Quest X Online: Mesamashi Itsutsu no Shuzoku S4SJGD = Dragon Quest X: Nemureru Yuusha to Michibiki no Meiyuu Online S4TJAF = Taiko no Tatsujin Wii: Ketteiban S59E01 = Samurai Warriors 3 S59JC8 = Sengoku Musou 3 S59P01 = Samurai Warriors 3 S5BETL = Back to the Future: The Game S5BPKM = Back to the Future: The Game S5KJAF = Taiko no Tatsujin Wii Chou Goukaban S5QJC8 = SengokuMusou 3 Moushouden S5RESZ = Ram Racing S5RPNJ = Ram Racing S5SJHF = Inazuma Eleven Go Strikers 2013 S5TEG9 = Ben 10: Omniverse S5TPAF = Ben 10: Omniverse S5WE20 = Around The World in 50 Games S6BE4Q = Brave: The Video Game S6BP4Q = Ribelle S6BY4Q = Brave: The Video Game S6IE78 = Disney Princess: Enchanting Storybooks S6IP78 = Disney Principesse: I Libri Incantati S6RE52 = Wreck-It Ralph S6RP52 = Ralph Spaccatutto S6TJGD = Dragon Quest X (All in One Package) S72E01 = Kirby's Dream Collection: Special Edition S72J01 = Hoshi No Kirby: 20th Anniversary Edition S75E69 = Monopoly Streets S75P69 = Monopoly S7AEWR = LEGO Batman 2: DC Super Heroes S7AKWR = LEGO Batman 2: DC Super Heroes S7AKZA = Lego Superheroes 1 S7APWR = LEGO Batman 2: DC Super Heroes S7BE69 = Trivial Pursuit: Bet You Know It S7BP69 = Trivial Pursuit: Casual S7CJAF = Kamen Rider Climax Heroes Fourze S7DE52 = Angry Birds: Star Wars S7DP52 = Angry Birds: Star Wars S7EP52 = Transformers: Ultimate Battle Edition S7FE5G = Zumba Kids S7FPGT = Zumba Kids: Che la festa abbia inizio, con Zumba! S7JPKM = Let's Sing 6 - Spanish version S7KPKM = Let's Sing 2014 S7SP41 = I Puffi Party Pack S80U3Q = SingItStar Ultimate 80s SA3E5G = Alvin and the Chipmunks: Chipwrecked SA3P5G = Alvin Superstar 3: Si Salvi Chi Può SA5E78 = Are You Smarter Than A 5th Grader?: Back to School SA6EG9 = Ben 10: Galactic Racing SA6PAF = Ben 10: Galactic Racing SA7ESZ = Gummy Bears: Magical Medallion SA8P52 = The Amazing Spider-Man SA9D7K = Bibi und Tina Das grosse Reiterfest SAAJA4 = Winning Eleven PLAY MAKER 2013 SABENR = Alien Monster Bowling League SABPJG = Alien Monster Bowling League SACPVS = ACB Total 2010-2011 SACSVS = ACB Total 2010/2011 SADE70 = Backyard Sports: Sandlot Sluggers SAFUHS = AFL: Australian Football League SAGE41 = The Amazing Race SAHE69 = Hasbro: Family Game Night Fun Pack SAJE52 = Cabela's Survival: Shadows of Katmai SAJP52 = Cabela's Survival: Shadows of Katmai SAKENS = Sakura Wars: So Long, My Love SAKPNS = Sakura Wars: So Long, My Love SALE4Q = Alice in Wonderland SALP4Q = Alice nel Paese delle Meraviglie SAME01 = New Super Mario Bros. Wii 11 American Revolution SANE01 = New Super Mario Bros. Wii Five Spica Edition SANEFS = Bass Pro Shops: The Hunt - Trophy Showdown SANT3Q = SingItStar Anthems SAOE78 = Monster High: Ghoul Spirit SAOP78 = Monster High: Scuola da Paura SAQE5G = Harley Pasternak's Hollywood Workout SARE4Z = Aladdin Magic Racer SARP01 = New Super Mario Bros. Wii 4 Arcadia Another Ride SARPNK = Aladin: Magic Racer SASEWW = Atrévete a Soñar SATE6K = Chuck E. Cheese's Super Collection SAUJ8P = Puyo Puyo!! 20th Anniversary SAVE5G = Alvin and the Chipmunks: The Squeakquel SAVX5G = Alvin and the Chipmunks: The Squeakquel SAWE52 = Angry Birds Trilogy SAWP52 = Angry Birds Trilogy SAXPFH = Max & the Magic Marker SAYE20 = Boot Camp Academy SAYP41 = Vita da Recluta SAZE52 = The Amazing Spider-Man SAZP52 = The Amazing Spider-Man SB2ES5 = My Baby First Steps SB2PNP = My Baby 2: My Baby Grew Up SB3E08 = Sengoku Basara: Samurai Heroes SB3J08 = Sengoku BASARA 3 SB3P08 = Sengoku Basara: Samurai Heroes SB4C01 = Super Mario Galaxy 2 (Custom) SB4E01 = Super Mario Galaxy 2 SB4E02 = Neo Mario Galaxy SB4E03 = Super Mario Galaxy: Plumber's Way SB4E04 = Super Mario Sunshine Galaxy SB4E05 = Season Cycle Galaxy SB4E25 = Super Mario Galaxy 2.5 SB4J01 = Super Mario Galaxy 2 SB4J02 = Neo Mario Galaxy SB4J05 = Season Cycle Galaxy SB4K01 = Super Mario Galaxy 2 SB4P01 = Super Mario Galaxy 2 SB4P02 = Neo Mario Galaxy SB4P05 = Season Cycle Galaxy SB4W01 = Super Mario Galaxy 2 SB5E54 = NBA 2K11 SB5P54 = NBA 2K11 SB6E52 = Bakugan: Defenders of the Core SB6P52 = Bakugan: Defenders of the Core SB7IVU = Lega Basket A 2009/2010 SB8EQH = Burger Bot SB9E78 = Barbie: Groom and Glam Pups SB9P78 = Barbie e il salone di bellezza per cani SBAJGD = Dragon Quest Monsters: Battle Road Victory SBBE18 = Beyblade: Metal Fusion - Battle Fortress SBBJ18 = Metal Fight Beyblade Gachinko Stadium SBBP18 = Beyblade: Metal Fusion - Counter Leone SBCJ2N = Billy's Boot Camp: Wii de Enjoy Diet! SBDE08 = Resident Evil: The Darkside Chronicles SBDJ08 = Biohazard: The Darkside Chronicles SBDK08 = Biohazard: The Darkside Chronicles SBDP08 = Resident Evil: The Darkside Chronicles SBEPSV = Bermuda Triangle SBFE70 = Backyard Football '10 SBHEFP = Remington Great American Bird Hunt SBHPNK = Remington Great American Bird Hunt SBIEVZ = Busy Scissors SBIPVZ = Acconciature e Stile SBJEG9 = Ben 10: Ultimate Alien Cosmic Destruction SBJPAF = Ben 10: Ultimate Alien Cosmic Destruction SBKEPZ = Brunswick Zone Cosmic Bowling SBLE5G = A Boy and His Blob SBLP5G = A Boy and His Blob SBNEG9 = Ben 10: Alien Force Vilgax Attacks SBNPG9 = Ben 10: Alien Force Vilgax Attacks SBOD3Q = SingItStar Best of Disney SBQE4Z = Big Buck Hunter Pro SBREJJ = Let's Play Ballerina SBRPKM = Repetto Prima Ballerina SBSE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh SBSEFP = Remington Super Slam Hunting: North America SBSURN = Remington Super Slam Hunting: North America SBVE78 = SpongeBob's Boating Bash SBVG3Q = SingItStar Boybands vs Girlbands SBVP78 = SpongeBob's Boating Bash SBVS78 = SpongeBob's Boating Bash SBWC11 = New Super Mario Bros. 3: The Wrath of Shadow Bowser SBWE5G = Babysitting Mama SBWJRA = Babysitter Mama SBWPGT = Cooking Mama World: Babysitting Mama SBXEWR = The Bachelor: The Video Game SBYE41 = Dance on Broadway SBYP41 = Dance on Broadway SBZESZ = Bermuda Triangle: Saving the Coral SC2E8P = Conduit 2 SC2P8P = Conduit 2 SC4E64 = LEGO Star Wars III: The Clone Wars SC4P64 = LEGO Star Wars III: La Guerra Dei Cloni SC5PGN = Challenge Me: Word Puzzles SC6PGN = Challenge Me: Brain Puzzles 2 SC7D52 = Call of Duty: Black Ops SC7E52 = Call of Duty: Black Ops SC7F52 = Call of Duty: Black Ops SC7I52 = Call of Duty: Black Ops SC7P52 = Call of Duty: Black Ops SC7S52 = Call of Duty: Black Ops SC8E01 = Wii Play: Motion SC8J01 = Wii Play: Motion SC8K01 = Wii Play: Motion SC8P01 = Wii Play: Motion SC9P52 = Cabela's Big Game Hunter 2010 SCAE18 = Calling SCAJ18 = CALLING Kuroki Chakushin SCAP18 = Calling SCBPNK = Cyberbike Cycling Sports SCDE52 = Cabela's Dangerous Hunts 2011 SCDP52 = Cabela's Dangerous Hunts 2011 SCEE6K = Chuck E. Cheese's Party Games SCFPNK = Cocoto Festival SCGE20 = Calvin Tucker's Redneck: Farm Animal Racing Tournament SCGPXT = Calvin Tucker's: Farm Animals Racing Tournament SCHEQH = Canada Hunt SCIE41 = CSI: Fatal Conspiracy SCIP41 = CSI: Cospirazione Letale SCJE4Q = LEGO Pirates of the Caribbean: The Video Game SCJP4Q = LEGO Pirati dei Caraibi: Il Videogioco SCKE6K = Chuck E. Cheese's Sports Games SCMJAF = Kamen Rider Climax Heroes OOO SCNEA4 = Scene It? Twilight SCNPA4 = Scene It? Twilight SCPE70 = Centipede: Infestation SCQDRV = Schlag den Raab - Das 2. Spiel SCREJH = Chicken Riot SCRPJH = Chicken Riot SCSE52 = Cruise Ship Vacation Games SCSPGR = Cruise Ship Resort SCTE01 = The Curse of Black Toad SCTPNK = Cocoto Surprise SCUPFR = Crazy Chicken: Carnival SCWE41 = Gold's Gym: Dance Workout SCWP41 = Il Mio Coach di Fitness: Dance Workout SCXESZ = Chevrolet Camaro: Wild Ride SCXPNJ = Chevrolet Camaro: Wild Ride SCYE4Q = Cars 2 SCYP4Q = Cars 2: Il videogioco SCYX4Q = Cars 2 SCYY4Q = Cars 2 SCYZ4Q = Cars 2 SCZEMH = Crazy Machines SCZPFR = Crazy Machines SD2E41 = Just Dance 2 SD2J01 = Just Dance Wii SD2K41 = Just Dance 2 SD2P41 = Just Dance 2 SD2Y41 = Just Dance 2: Best Buy Edition SD3DSV = Der Gesundheitscoach SD5PTV = Lernerfolg Grundschule Deutsch SD6PTV = Successo alle elementari - Inglese SD7PTV = Lernerfolg Grundschule Mathematik SD8DSV = Mein neues Leben Abenteuer auf Tropicana SD9JAF = SD Gundam Gashapon Wars SDAE01 = Scooby-Doo! The Bros Adventure SDAE5G = The Daring Game for Girls SDBE78 = de Blob 2 SDBP78 = de Blob 2 SDDPML = The Ultimate Battle Of The Sexes SDEE5G = Dance Sensation! SDFE4Q = Disney Sing It: Family Hits SDFP4Q = Disney Sing It: Family Hits SDGE4Q = Disney Channel: All Star Party SDGP4Q = Disney Channel: All Star Party SDHER3 = Super Smash Bros. Brawl Dark Hole/D.A.R.S. SDIE4Q = Disney Sing It: Party Hits SDIP4Q = Disney Sing It: Party Hits SDJJAF = SD Gundam: G Generation World SDLE78 = Dood's Big Adventure SDLP78 = La Grande Avventura di Dood SDMEG9 = Despicable Me: The Game SDMPAF = Cattivissimo Me SDNE41 = Just Dance SDNP41 = Just Dance SDOPLR = Doctor Who: Return To Earth SDPE54 = Dora's Big Birthday Adventure SDPP54 = Dora's Big Birthday SDQJGD = Dragon Quest X Inishie no Ryu no Denshou Online SDREYG = Maximum Racing: Drag & Stock Racer SDRP3Q = SingItStar Deutsch Rock-Pop Vol. 1 SDRPNG = Drag & Stock Racer SDSPNG = We Dance SDTH3Q = SingItStar Die Toten Hosen SDTPGN = PDC World Championship Darts: Pro Tour SDUE41 = The Smurfs Dance Party SDUP41 = I Puffi: Dance Party SDUPO1 = DU Super Mario Bros. : DU Edition SDVE41 = Driver: San Francisco SDVP41 = Driver: San Francisco SDWE18 = Lost in Shadow SDWJ18 = Lost in Shadow SDWP18 = La Torre delle Ombre SDXE4Q = Disney Universe SDXP4Q = Disney Universe SDYEA4 = Dance Dance Revolution SDYPA4 = Dance Dance Revolution: Hottest Party 4 SDZE41 = Just Dance Kids SDZP41 = Dance Juniors SE2E69 = EA Sports Active 2 SE2P69 = EA Sports Active 2 SE3E41 = Just Dance 2015 SE3P41 = Just Dance 2015 SEAE69 = EA Sports Active: More Workouts SEAJ13 = EA Sports Active More Workout SEAP69 = EA Sports Active: Nuovi Esercizi SECE69 = Create SECP69 = Create SEGA = Genplus GX SEGE6U = Yoga SEGP6V = Yoga SEKJ99 = Ikenie no Yoru SELE69 = FIFA Soccer 11 SELP69 = FIFA 11 SELX69 = FIFA 11 SEME4Q = Disney Epic Mickey SEMJ01 = Disney Epic Mickey: Mickey Mouse and the Magic Brush SEMP4Q = Disney Epic Mickey SEMX4Q = Disney Epic Mickey: La Leggendaria Sfida di Topolino SEMY4Q = Disney Epic Mickey: La leggendaria sfida di Topolino SEMZ4Q = Disney Epic Mickey: La leggendaria sfida di Topolino SENPZX = Enclave: Shadows of Twilight SEOP01 = New Super Mario Bros. Wii 8 Omega SEOP4Q = Sing It: Edad de Oro del Pop Español SEPE41 = The Black Eyed Peas Experience SEPP41 = The Black Eyed Peas Experience SEPX41 = The Black Eyed Peas Experience D1 Edition SEPZ41 = The Black Eyed Peas Experience: Limited Edition SERE4Q = Disney Epic Mickey 2: The Power of Two SERF4Q = Disney Epic Mickey 2: L'avventura di Topolino e Oswald SERK4Q = Disney Epic Mickey 2: The Power of Two SERP4Q = Disney Epic Mickey 2: L'avventura di Topolino e Oswald SERV4Q = Disney Epic Mickey 2: The Power of Two SESEWR = Sesame Street: Ready, Set, Grover! SESPWR = Sesame Street: Ready, Set, Grover! SESUWR = Sesame Street: Ready, Set, Grover! SEZJHF = Inazuma Eleven Strikers 2012 Xtreme SF2P64 = Star Wars: Il Potere della Forza II SF4E20 = Flatout SF4PXT = Flatout SF5E41 = Fit in Six SF5J41 = Fit in Six SF5P41 = Il Mio Coach di Fitness: Club SF7E41 = Family Feud 2012 Edition SF8E01 = Donkey Kong Country Returns SF8J01 = Donkey Kong Returns SF8P01 = Donkey Kong Country Returns SFAE41 = Family Feud Decades SFAJGD = Fullmetal Alchemist: Daughter of the Dusk SFBE70 = Backyard Sports Football: Rookie Rush SFDE01 = New Super Mario Bros. Wii 9 Virtue: This Fall Darkness SFDEAF = Active Life: Magical Carnival SFDJAF = Issyoni Asobou! Dream Theme Park SFDPAF = Family Trainer: Magical Carnival SFGE69 = Hasbro: Family Game Night 4 - The Game Show SFGP69 = Hasbro: Family Game Night 4 - The Game Show SFHEFP = Outdoor Action Double Pack SFIE01 = Mystery Case Files: The Malgrave Incident SFIP01 = Mystery Case Files: Il Caso Malgrave SFKEG9 = Family Party: Fitness Fun SFKPAF = Family Party: Fitness Fun SFLDSV = Der Fluch der Osterinsel SFOEAF = Food Network: Cook or Be Cooked SFPPFR = Fantastic Football Fan Party SFQE8P = Captain America: Super Soldier SFQP8P = Captain America: Il Super Soldato SFRDRV = Fit & Fun SFRPXT = Fit & Fun SFSPGT = All Round Hunter SFTE78 = Wheel of Fortune SFTP78 = Wheel of Fortune SFUE64 = Star Wars: The Force Unleashed II SFVEXJ = Fishing Resort SFWE69 = 2010 FIFA World Cup South Africa SFWJ13 = 2010 FIFA World Cup South Africa SFWK13 = 2010 FIFA World Cup: South Africa SFWK69 = 2010 FIFA World Cup South Africa SFWP69 = Mondiali FIFA Sudafirca 2010 SFWX69 = Mondiali FIFA Sudafrica 2010 SFWY69 = Mondiali FIFA Sudafrica 2010 SFWZ69 = 2010 FIFA World Cup South Africa SFXPKM = X-Factor SFXXKM = X Factor SFYEG9 = Family Party: 90 Great Games Party Pack SFYPAF = Family Party: 90 Great Games Party Pack SFZEPZ = Pheasants Forever: Wingshooter SFZPXT = Pheasants Forever SG2EFS = Crazy Mini Golf 2 SG2XUG = Crazy Mini Golf 2 SG2YFS = Crazy Mini Golf 2 SG3DSV = Germany's Next Top Model 2010 SG5PSV = Family Quiz SG6DSV = Galileo Family Quiz SG7E20 = The Garfield Show: Threat of the Space Lasagna SG7PVL = The Garfield Show: La Minaccia della Lasagna Spaziale SG8EG9 = Yogi Bear SG8PAF = L'Orso Yoghi: Il Videogioco SG9EYC = Gremlins: Gizmo SGAE8P = Tournament of Legends SGAP8P = Tournament of Legends SGBE5G = Greg Hastings Paintball 2 SGCE20 = Glacier 2 SGDEJJ = Let's Play Garden SGDPKM = Il Giardino dei Giochi SGEEG9 = Nat Geo Challenge! Wild Life SGEPLG = Nat Geo Quiz! Wild Life SGHE41 = Tom Clancy's Ghost Recon SGHP41 = Tom Clancy's Ghost Recon SGI1CL = SingIt Clasicos SGI1DB = Sing IT: Dibujos Animados SGI1MC = SingItStar Mecano SGI1ML = Sing It Star: Miliki SGI1PT = Sing IT: Party SGI1RC = Sing IT: Rocks 2 SGIEA4 = GTI Club Supermini Festa! SGIJA4 = GTI Club World City Race SGIPA4 = GTI Club Supermini Festa! SGJDSV = Galileo Mystery: The Crown of Midas SGJPSV = The Crown of Midas SGKEC8 = Champion Jockey: G1 Jockey & Gallop Racer SGKJC8 = Champion Jockey: Gallop Racer & GI Jockey SGKPC8 = Champion Jockey: G1 Jockey & Gallop Racer SGLEA4 = Gormiti: The Lords of Nature! SGLPA4 = Gormiti: Gli Eroi della Natura! SGNE69 = Hasbro: Family Game Night Value Pack SGODKP = Mini Golf Resort SGOETV = Mini Golf Resort SGPEYG = Maximum Racing: GP Classic Racing SGPPNG = GP Classic Racing SGPTI1 = Sing It Party SGQDSV = Germany's Next Top Model 2011 SGREGT = Grease SGRPGT = Grease SGSESZ = Family Gameshow SGSP7J = Family GameShow SGTEFS = My Personal Golf Trainer with IMG Academies and David Leadbetter SGTPUG = My Personal Golf Trainer with IMG Academies and David Leadbetter SGUE4Q = Disney Guilty Party SGVEAF = Go Vacation SGVJAF = Go Vacation SGVPAF = Go Vacation SGWD7K = Bibi Blocksberg SGXE41 = Battle of Giants: Dinosaurs Strike SGXP41 = Combattimenti fra Giganti: Scontri fra Dinosauri SGYESZ = Gummy Bears Mini Golf SGYPNJ = Gummy Bears Mini Golf SH2JMS = Hula Wii: Tanoshiku Hula o Odorou!! SH3E54 = NHL 2K11 SH3P54 = NHL 2K11 SH4EFP = Heavy Fire: Afghanistan SH4PNK = Heavy Fire: Afghanistan SH5E69 = Harry Potter and the Deathly Hallows, Part 2 SH5P69 = Harry Potter e i Doni della Morte - Parte 2 SH6E52 = Cabela's Big Game Hunter 2012 SH6P52 = Cabela's Big Game Hunter 2012 SH7ESZ = Honda ATV Fever SH7PNJ = ATV Fever SH8E52 = Cabela's Adventure Camp SH8P52 = Cabela's Adventure Camp SH9ESZ = Heathcliff: The Fast and the Furriest SHBE69 = Hasbro: Family Game Night 3 SHBP69 = Hasbro: Family Game Night 3 SHDE52 = How to Train Your Dragon SHDP52 = Dragon Trainer SHEDRM = Der Bauernhof SHFE20 = Basketball Hall of Fame: Ultimate Hoops Challenge SHGDRM = Holiday Games SHHE69 = Harry Potter and the Deathly Hallows, Part 1 SHHP69 = Harry Potter e i Doni della Morte - Parte 1 SHIJ2N = Shape Boxing 2 Wii Enjoy Diet! SHKE20 = Hello Kitty Seasons SHKPNQ = Hello Kitty Seasons SHLPA4 = Silent Hill: Shattered Memories SHMPLR = Rico la Peste SHNE41 = Shaun White Skateboarding SHNP41 = Shaun White Skateboarding SHOXKR = Hugo: Magic in the Troll Woods SHOYKR = Hugo: Magic in the Troll Woods SHPE5G = Our House Party SHSE20 = Hyper Fighters SHSPXT = Hyper Fighters SHTE20 = Mathews Bow Hunting SHUE52 = Cabela's Dangerous Hunts 2011: Special Edition SHVE78 = Hot Wheels: Track Attack SHVP78 = Hot Wheels: Track Attack SHWE41 = Hollywood Squares SHXEWR = Happy Feet Two SHXPWR = Happy Feet 2 SHYE69 = NHL SlapShot SHYP69 = EA Sports: NHL Slapshot SHZENR = Harley Davidson: Road Trip SI3E69 = FIFA Soccer 12 SI3P69 = FIFA 12 SI3X69 = FIFA 12 SIABOH = SingItStar Placebo SIAE52 = Ice Age: Continental Drift - Arctic Games SIAP52 = L'Era Glaciale 4: Continenti alla Deriva - Giochi Polari SIBBHJ = SingItStar Country SIDE54 = Sid Meier's Pirates! SIDP54 = Sid Meier's Pirates! SIESP1 = Sing It: Canciones en Español SIFESZ = The Island of Dr. Frankenstein SIFPNJ = The Island of Dr. Frankenstein SIFPOH = SingItStar Fussballhits SIHE4Z = Sing 4: The Hits Edition SIIE8P = Mario & Sonic at the London 2012 Olympic Games SIIJ01 = Mario & Sonic at the London 2012 Olympic Games SIIP8P = Mario & Sonic ai Giochi Olimpici di Londra 2012 SIJE52 = iCarly 2: iJoin the Click! SIJP52 = iCarly 2: iJoin the Click! SILE78 = Worms: Battle Islands SILP4Q = Sing It: Latino SILP78 = Worms Battle Islands SIME69 = MySims Collection SINPNG = We Sing: Robbie Williams SIPE7T = I SPY Game Pack SIS1OH = SingItStar Volume 1 SIS2OH = SingItStar ABBA SIS3OH = SingItStar Summer Party SIS4OH = SingItStar Amped SIS5OH = SingItStar Pop Hits SIS7OH = SingItStar Take That SIS80Q = SingItStar Ultimate 80's SIS80S = StarSing : '80s Volume 1 v1.2 SIS90H = SingItStar 90´s SIS9OH = SingItStar 90's SISACD = StarSing AC/DC SISAOH = SingItStar Après Ski Party SISBOH = SingItStar R'n'B SISCOH = SingItStar Chartbreaker SISCS1 = SingItStar Chartsurfer Vol. 1 SISDAE = SingItStar Die Ärzte SISDEM = SingItStar Depeche Mode SISDOH = SingItStar The Dome SISENR = Princess Isabella: A Witch's Curse SISHOH = SingItStar Hottest Hits SISJ0Q = Pelvic Fitness by Wii (Isometric & Karate Exercise) SISLIP = StarSing : Linkin Park v1.2 SISLOH = SingItStar Legends SISMEL = StarSing : Happy Birthday Mélanie v1.1 SISMJ1 = StarSing : Michael Jackson v2.1 SISMOH = SingItStar Mallorca Party SISP10 = SingItStar Studio100 SISP12 = StarSing : Pop Hits 1 & 2 v2.0 SISP34 = StarSing : Pop Hits 3 & 4 v2.0 SISPBC = SingItStar Britney vs Christina SISPOH = SingItStar Party SISPOP = StarSing : Pop v1.1 SISPUH = Princess Isabella: A Witch's Curse SISQ3Q = SingItStar Queen SISR3Q = SingItStar Rocks! SISREU = StarSing : Rocks! v1.1 SISRP4 = SingItStar Rocks! SISSOH = SingItStar Schlager SISTDK = SingItStar - Turkish Party SITPNG = We Sing: Deutsche Hits SIUUNG = We Sing Down Under SIXE01 = New Super Mario Bros Wii 16 Revelations SIXE41 = Drawsome! Tablet SJ2EWR = Scooby-Doo! and the Spooky Swamp SJ2PWR = Scooby-Doo! e la palude del mistero SJ3JDA = Jinsei Game: Happy Family SJ3PNL = Jakers! Kart Racing SJ5JDA = Jinsei Game Happy Family Gotouchi Neta Zouryou Shiage SJ6E41 = Just Dance Disney Party SJ6P41 = Just Dance Disney Party SJ7E41 = Just Dance Kids 2014 SJ7P41 = Just Dance Kids 2014 SJ9E41 = Just Dance Summer Party SJ9P41 = Just Dance 2 - Extra Songs SJAE5G = JAWS: Ultimate Predator SJBE52 = GoldenEye 007 SJBJ01 = GoldenEye 007 SJBP52 = GoldenEye 007 SJCEZW = Jerry Rice & Nitus' Dog Football SJDE41 = Just Dance 3 SJDJ01 = Just Dance Wii 2 SJDK41 = Just Dance 3 SJDP41 = Just Dance 3 SJDX41 = Just Dance 3 Special Edition SJDY41 = Just Dance 3: Best Buy Exclusive Edition SJDZ41 = Just Dance 3: Target Exclusive Edition SJEEPK = JumpStart Escape from Adventure Island SJFE4Z = Kid Fit Island Resort SJFPGR = Junior Fitness Trainer SJFXGR = Junior Fitness Trainer SJGEPK = JumpStart Get Moving Family Fitness SJHE41 = Just Dance Greatest Hits SJIEG9 = Jillian Michaels Fitness Ultimatum 2011 SJJEA4 = Jimmie Johnson's Anything With An Engine SJKEPK = JumpStart Crazy Karts SJLEFS = Junior League Sports SJLPXT = Junior League Sports SJME5G = Jillian Michaels Fitness Ultimatum 2010 SJMPGT = Jillian Michaels Fitness Ultimatum 2010 SJOE41 = Just Dance 2014 SJOP41 = Just Dance 2014 SJPE78 = Jeopardy! SJQEPZ = Jewel Quest Trilogy SJQPGR = Jewel Quest Trilogy SJREA4 = Def Jam Rapstar SJRXA4 = Def Jam Rapstar SJSEPK = JumpStart Pet Rescue SJTP41 = Just Dance: Best Of SJUE20 = Dino Strike SJUPXT = Dino Strike SJVE20 = Shawn Johnson Gymnastics SJWJA4 = Winning Eleven PLAY MAKER 2010 Japan Challenge SJXD41 = Just Dance 4 SJXE41 = Just Dance 4 SJXP41 = Just Dance 4 SJZE41 = Just Dance Kids 2 SJZP41 = Just Dance Kids SK3EEB = Trauma Team SK4E52 = Shrek Forever After SK4P52 = Shrek: E Vissero Felici E Contenti SK5PY1 = Kylie Sing & Dance SK6KJD = K-POP Dance Festival SK7PVZ = Disney Violetta: Musica e Ritmo SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8P52 = Skylanders: Trap Team SK8V52 = Skylanders: Trap Team SKAEA4 = Karaoke Revolution Glee SKAPA4 = Karaoke Revolution Glee SKBEG9 = Kidz Bop Dance Party SKCE20 = Bigfoot: King of Crush SKDJ18 = Karaoke Joysound Wii Duet Song SKEJ18 = Karaoke Joysound Wii: Enka Kayoukyoku Hen SKGEA4 = Karaoke Revolution Glee Volume 2 SKGPA4 = Karaoke Revolution Glee Volume 2 SKHJAF = Kamen Rider Super Climax Heroes SKJE78 = You Don't Know Jack SKKPHY = Captain Morgane and the Golden Turtle SKKXHY = Captain Morgane and the Golden Turtle SKLDSV = K11 - Kommissare im Einsatz SKMJAF = Kamen Rider Climax Heroes W SKOEA4 = Karaoke Revolution Glee Volume 3 SKOPA4 = Karaoke Revolution Glee Volume 3 SKREG9 = Kamen Rider Dragon Knight SKSE54 = NBA 2K13 SKSP54 = NBA 2K13 SKTE78 = All Star Karate SKTP78 = All Star Karate SKUE78 = Kung Fu Panda 2 SKUP78 = Kung Fu Panda 2 SKVE20 = Kevin Van Dam's Big Bass Challenge SKWPNK = Cocoto Kart Racer 2 SKXE20 = Pirate Blast SKXPFH = Pirate Blast SKYE52 = Skylanders: Giants SKYP52 = Skylanders: Giants SKYX52 = Skylanders: Giants SKYZ52 = Skylanders: Giants SKZE52 = DreamWorks Super Star Kartz SKZP52 = DreamWorks Super Star Kartz SL2J01 = Zero: Shinku no Chou SL2P01 = Project Zero 2: Wii Edition SL3ENR = Dragon's Lair Trilogy SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = The Last Airbender SLAP78 = L'Ultimo Dominatore dell'Aria SLAZ78 = The Last Airbender: ToysRUs Special Edition SLCEGN = Get Up And Dance SLCPGN = Get Up And Dance SLDEYG = Let's Dance SLDPLG = Let's Dance with Mel B SLEE78 = Deepak Chopra's Leela SLEP78 = Deepak Chopra's Leela SLFE01 = New Super Mario Bros. 3 The Final Levels SLFP01 = New Super Mario Bros. 3: The Final Levels SLFPKM = Let's Sing SLFXKM = Let's Sing 5 - Spanish version SLHEWR = LEGO Harry Potter: Years 5-7 SLHPWR = LEGO Harry Potter: Anni 5-7 SLIE52 = Little League World Series Baseball: Double Play SLLEWW = Lucha Libre AAA: Héroes del Ring SLPP5D = The Spirit of the Wolf SLREWR = LEGO The Lord of the Rings SLRPWR = LEGO Il Signore Degli Anelli SLSEXJ = The Last Story SLSJ01 = The Last Story SLSP01 = The Last Story SLTEJJ = NewU Fitness First Mind Body: Yoga & Pilates Workout SLTPLG = NewU Fitness First Mind Body: Yoga & Pilates Workout SLVP41 = Osé: Che fai, ci provi? SLWE41 = Where's Waldo? The Fantastic Journey SLYESZ = Beastly SLYPNJ = Beastly SM2E52 = 10 Minute Solution SM2P52 = 10 Minute Solution SM3E01 = Super Mario Bros. 3+ SM4E20 = Monster Trucks Mayhem SM4PXT = Monster Trucks: Ultra Mega Xtreme!!! SM5EAF = Power Rangers Samurai SM5PAF = Power Rangers Samurai SM6PNK = My Body Coach 2: Fitness & Dance SM7E69 = Madden NFL 12 SM8D52 = Call of Duty: Modern Warfare 3 SM8E52 = Call of Duty: Modern Warfare 3 SM8F52 = Call of Duty: Modern Warfare 3 SM8I52 = Call of Duty: Modern Warfare 3 SM8P52 = Call of Duty: Modern Warfare 3 SM8S52 = Call of Duty: Modern Warfare 3 SM8X52 = Call of Duty: Modern Warfare 3 SM9E54 = Major League Baseball 2K12 SMAENR = Marines: Modern Urban Combat SMAPGN = Marines: Modern Urban Combat SMBE8P = Super Monkey Ball: Step & Roll SMBJ8P = Super Monkey Ball: Step & Roll SMBP8P = Super Monkey Ball: Step & Roll SMCENR = We Wish You A Merry Christmas SMCPXT = We Wish You A Merry Christmas SMD3OH = SingItStar e La Magia Disney SMEE69 = Madden NFL 11 SMFE4Q = Phineas and Ferb: Across the 2nd Dimension SMFP4Q = Phineas e Ferb: Nella Seconda Dimensione SMGE78 = Megamind: Mega Team Unite SMGP78 = Megamind: Un Mega Team Scatenato SMGX = SaveGame Manager GX SMHPNK = Marvel Super Heroes 3D: Grandmaster's Challenge SMIE41 = Who Wants To Be A Millionaire SMIG3Q = SingItStar Made in Germany SMJE52 = Monster Jam: Path of Destruction SMJP52 = Monster Jam: Path of Destruction SMKE4Z = Gem Smashers SMLE54 = Major League Baseball 2K10 SMME02 = Super Mario: Mushroom Adventure PLUS - Winter Moon SMMJ0Q = Momu chan Diet Wii Figurobics by Chon Dayon SMMP01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 4. SMMP02 = Super Mario: Mushroom Adventure PLUS: Winter Moon SMNC01 = New Super Mario Bros. Wii SMNE01 = New Super Mario Bros. Wii SMNE02 = New Super Mario Remake SMNE03 = Newer Super Mario Bros. Wii SMNE04 = Cannon Super Mario Bros. Wii SMNE05 = Another Super Mario Bros. Wii SMNE06 = Newer Summer Sun SMNE07 = Newer Holiday Special SMNE08 = Epic Super Bowser World SMNE09 = Old Super Mario Bros. Wii SMNE10 = Koopa Country SMNE11 = New Super Mario Bros. Wii 4 SMNE12 = Awesomer Super Luigi Mini SMNE13 = New Super Mario Bros. Wii 9 Summer Special SMNE14 = Super Mario World Wii SMNE15 = Newer Super Mario Bros. 7 SMNE16 = Newer Super Mario Sunshine SMNE17 = Flowery Super Mario Land Wii SMNE18 = Super Switchy Mario World Wii SMNE19 = New Super Mr. M Bros. Wii SMNE20 = New Super Mario Bros. H SMNE21 = Newer Super Mario Land Wii SMNE22 = Neo Mario Brothers Wii SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE24 = Super Mario Ghost Special SMNE25 = Happy Super Marionose Wii SMNE26 = New Super Mario Bros. DS Wii Version SMNE27 = Newer Super Mario All Star SMNE28 = New Super Mario World SMNE29 = Not So Super Toaster Bros.: The Newer Collab! SMNE2D = Super Mario 2D Land 7 SMNE30 = New Super Mario Bros. Koopa Kall SMNE31 = New Super Mario Bros. Wii - Other World SMNE32 = Super Mario Legends SMNE33 = New Super Mario Bros. Wii Rollercoaster Party SMNE34 = New Super Mario Bros. Wii: Yoshi Mode SMNE35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNE36 = New Super Mario Bros. Wii Hack Pack SMNE37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNE38 = New Super Mario Bros. Wii Underground Maze SMNE39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNE40 = Newer Super Mario Bros. Wii U SMNE41 = Devil Mario Winter Special SMNE42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNE99 = Children's Super Mario Bros. Wii SMNED2 = New Super Mario Bros. + Animal Edition SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNENW = Newer Mario Escapade SMNEPM = Super Mario: Mushroom Adventure PLUS SMNEPS = New Super Mario Bros. Plus SMNERE = Retro Mario Bros. SMNERV = RVLution Wii SMNESL = Newer Super Mario Land Wii SMNESM = New Super Ghost Mario Wii SMNESN = New Super Mario Bros. Wii H SMNESS = New Super Mario Bros. 7 SMNEXD = Deluxe Super Mario Bros. Wii SMNEXR = Super Mario Remix SMNEYE = 8Forrest's Super Mario Bros. Wii SMNEYL = Luigi's Super Yoshi Bros. SMNEYM = You Super Mario Bros. Me Summer Special SMNEYS = Yoshi Super Mario Bros. Wii SMNEYU = You Super Mario Bros. Me SMNEYW = Newer Super Mario World Yoshi Way SMNEYY = You Super Mario Bros. Me Autumn Adventure SMNEZ2 = New JeDa Mario Bros. Wii SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZG = GF Super Mario Bros. Wii SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZQ = Basic Super Mario Bros. Wii SMNEZR = Newer Super Wario World Wii SMNEZS = Another Newer Super Mario Bros. Wii SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZX = Donkey Kong Remastered SMNEZY = Super Mario Skyland SMNEZZ = New Super Mario Bros. 2 Wii Version SMNJ01 = New Super Mario Bros. Wii SMNJ02 = Awesomer Super Luigi Mini SMNJ03 = Newer Super Mario Bros. Wii SMNJ04 = Cannon Super Mario Bros. Wii SMNJ06 = Newer Summer Sun SMNJ07 = Newer Holiday Special SMNJ08 = Epic Super Bowser World SMNJ10 = Koopa Country SMNJ11 = New Super Mario Bros. Wii 4 SMNJ13 = New Super Mario Bros. Wii 9 Summer Special SMNJ14 = Super Mario World Wii SMNJ15 = Newer Super Mario Bros. 7 SMNJ16 = Newer Super Mario Sunshine SMNJ17 = Flowery Super Mario Land Wii SMNJ18 = Super Switchy Mario World Wii SMNJ19 = New Super Mr. M Bros. Wii SMNJ20 = New Super Mario Bros. H SMNJ21 = Newer Super Mario Land Wii SMNJ22 = Neo Mario Brothers Wii SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ24 = Super Mario Ghost Special SMNJ25 = Happy Super Marionose Wii SMNJ26 = New Super Mario Bros. DS Wii Version SMNJ27 = Newer Super Mario All Star SMNJ28 = New Super Mario World SMNJ29 = Not So Super Toaster Bros.: The Newer Collab! SMNJ2D = Super Mario 2D Land Wii SMNJ30 = New Super Mario Bros. Koopa Kall SMNJ31 = New Super Mario Bros. Wii - Other World SMNJ32 = Super Mario Legends SMNJ33 = New Super Mario Bros. Wii Rollercoaster Party SMNJ34 = New Super Mario Bros. Wii: Yoshi Mode SMNJ35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNJ36 = New Super Mario Bros. Wii Hack Pack SMNJ37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNJ38 = New Super Mario Bros. Wii Underground Maze SMNJ39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNJ40 = Newer Super Mario Bros. Wii U SMNJ41 = Devil Mario Winter Special SMNJ42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNJ99 = Children's Super Mario Bros. Wii SMNJD2 = New Super Mario Bros. + Animal Edition SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJNW = Newer Mario Escapade SMNJPM = Super Mario: Mushroom Adventure PLUS SMNJPS = New Super Mario Bros. Plus SMNJRE = Retro Mario Bros. SMNJRV = RVLution Wii SMNJSL = Newer Super Mario Land Wii SMNJSM = New Super Ghost Mario Wii SMNJXD = Deluxe Super Mario Bros. Wii SMNJXR = Super Mario Remix SMNJYE = 8Forrest's Super Mario Bros. Wii SMNJYL = Luigi's Super Yoshi Bros. SMNJYM = You Super Mario Bros. Me Summer Special SMNJYS = Yoshi Super Mario Bros. Wii SMNJYY = You Super Mario Bros. Me Autumn Adventure SMNJZ2 = New JeDa Mario Bros. Wii SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZG = GF Super Mario Bros. Wii SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZQ = Basic Super Mario Bros. Wii SMNJZR = Newer Super Wario World Wii SMNJZS = Another Newer Super Mario Bros. Wii SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZX = Donkey Kong Remastered SMNJZY = Super Mario Skyland SMNJZZ = New Super Mario Bros. 2 Wii Version SMNK01 = New Super Mario Bros. Wii SMNP01 = New Super Mario Bros. Wii SMNP02 = Awesomer Super Luigi Mini SMNP03 = Newer Super Mario Bros. Wii SMNP04 = Cannon Super Mario Bros. Wii SMNP05 = Another Super Mario Bros. Wii SMNP06 = Newer Summer Sun SMNP07 = Newer Holiday Special SMNP08 = Epic Super Bowser World SMNP10 = Koopa Country SMNP11 = New Super Mario Bros. Wii 4 SMNP12 = Awesomer Super Luigi Mini SMNP13 = New Super Mario Bros. Wii 9 Summer Special SMNP14 = Super Mario World Wii SMNP15 = Newer Super Mario Bros. 7 SMNP16 = Newer Super Mario Sunshine SMNP17 = Flowery Super Mario Land Wii SMNP18 = Super Switchy Mario World Wii SMNP19 = New Super Mr. M Bros. Wii SMNP20 = New Super Mario Bros. H SMNP21 = Newer Super Mario Land Wii SMNP22 = Neo Mario Brothers Wii SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP24 = Super Mario Ghost Special SMNP25 = Happy Super Marionose Wii SMNP26 = New Super Mario Bros. DS Wii Version SMNP27 = Newer Super Mario All Star SMNP28 = New Super Mario World SMNP29 = Not So Super Toaster Bros.: The Newer Collab! SMNP2D = Super Mario 2D Land Wii SMNP30 = New Super Mario Bros. Koopa Kall SMNP31 = New Super Mario Bros. Wii - Other World SMNP32 = Super Mario Legends SMNP33 = New Super Mario Bros. Wii Rollercoaster Party SMNP34 = New Super Mario Bros. Wii: Yoshi Mode SMNP35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNP36 = New Super Mario Bros. Wii Hack Pack SMNP37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNP38 = New Super Mario Bros. Wii Underground Maze SMNP39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNP40 = Newer Super Mario Bros. Wii U SMNP41 = Devil Mario Winter Special SMNP42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNP77 = New Super Mario Bros. Wii Arcadia SMNP99 = Children's Super Mario Bros. Wii SMNPD2 = New Super Mario Bros. + Animal Edition SMNPDU = DU Super Mario Bros. : Anniversary Edition SMNPLL = Newer Super Luigi Wii SMNPLM = Newer Super Luigi Wii Dark Moon SMNPMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNPNW = Newer Mario Escapade SMNPO1 = New Super Mario Custom Edition SMNPPM = Super Mario: Mushroom Adventure PLUS SMNPPS = New Super Mario Bros. Plus SMNPRE = Retro Mario Bros. SMNPRV = RVLution Wii SMNPSL = Newer Super Mario Land Wii SMNPSM = New Super Ghost Mario Wii SMNPXD = Deluxe Super Mario Bros. Wii SMNPXR = Super Mario Remix SMNPYE = 8Forrest's Super Mario Bros. Wii SMNPYL = Luigi's Super Yoshi Bros. SMNPYM = You Super Mario Bros. Me Summer Special SMNPYS = Yoshi Super Mario Bros. Wii SMNPYY = You Super Mario Bros. Me Autumn Adventure SMNPZ2 = New JeDa Mario Bros. Wii SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZG = GF Super Mario Bros. Wii SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZQ = Basic Super Mario Bros. Wii SMNPZR = Newer Super Wario World Wii SMNPZS = Another Newer Super Mario Bros. Wii SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZX = Donkey Kong Remastered SMNPZY = Super Mario Skyland SMNPZZ = New Super Mario Bros. 2 Wii Version SMNW01 = New Super Mario Bros. Wii SMOE41 = Michael Jackson: The Experience SMOJ41 = Michael Jackson: The Experience SMOP41 = Michael Jackson The Experience SMOT3Q = SingItStar Motown SMOX41 = Michael Jackson: The Experience - Walmart Edition SMOY41 = Michael Jackson: The Experience - Special Edition SMPE69 = Monopoly Collection SMPP01 = New Super Mario Bros. Wii 2: The Other P SMPP69 = Monopoly Collection SMRE01 = New Super Mario Bros. Wii: Super Mario Bros. 1 Custom SMRE78 = WWE SmackDown vs. Raw 2011 SMRP78 = WWE SmackDown vs. Raw 2011 SMSE01 = New Super Mario Bros Wii 12 Sunshine Paradise SMSE78 = Marvel Super Hero Squad: The Infinity Gauntlet SMSP78 = Marvel Super Hero Squad: The Infinity Gauntlet SMTJ18 = Momotarô Dentetsu 2010 SMUJAF = Daikaijuu Battle: Ultra Coliseum DX - Ultra Senshi Daishuuketsu SMVE01 = Super Mario Vacation SMVE54 = Major League Baseball 2K11 SMVJ01 = Super Mario Vacation SMVP01 = Super Mario Vacation SMWE01 = Newer Super Mario World U SMWE4Z = Man vs. Wild SMWJ01 = Newer Super Mario World U SMWP01 = Newer Super Mario World U SMYE20 = Minute to Win It SMZE78 = Marvel Super Hero Squad: Comic Combat SMZP78 = Marvel Super Hero Squad: Comic Combat SN2E69 = NERF N-Strike Double Blast Bundle SN3EYG = Maximum Racing: Rally Racer SN3PNG = Rally Racer SN4EDA = Naruto Shippuden: Dragon Blade Chronicles SN4JDA = Naruto Shippuuden: Ryujinki SN4XGT = Naruto Shippuden: Dragon Blade Chronicles SN5EYG = Maximum Racing: Crash Car Racer SN5PNG = Crash Car Racer SN6EYG = Maximum Racing: Super Karts SN6PNG = Super Karts SN7EYG = Maximum Racing: Super Truck Racer SN7PNG = Super Truck Racer SN8EYG = Maximum Racing: Sprint Cars SN8PNG = Sprint Cars SN9E54 = Nickelodeon Fit SNAE52 = Cabela's North American Adventures 2011 SNBE41 = NCIS: The Game SNBP41 = NCIS SNCE8P = Sonic Colors SNCJ8P = Sonic Colors SNCP8P = Sonic Colours SNDE20 = Deal or No Deal: Special Edition SNEENR = North American Hunting Extravaganza 2 SNEPXT = North American Hunting 2: Extravaganza SNFE69 = EA Sports Active NFL Training Camp SNGEJJ = Get Fit with Mel B SNGPLG = Get Fit with Mel B SNHE69 = Need for Speed: Hot Pursuit SNHJ13 = Need for Speed: Hot Pursuit SNHP69 = Need for Speed: Hot Pursuit SNIE54 = Nicktoons MLB SNJE69 = NBA Jam SNJP69 = NBA Jam SNKX54 = Nickelodeon Fit SNLE01 = New Super Mario Bros. Wii 0-2 Next Generation Levels SNLE54 = Nickelodeon Dance SNLP54 = Nickelodeon Dance SNLX54 = Nickelodeon Dance SNMEAF = Namco Museum Megamix SNOPY1 = Now! That's What I Call Music: Dance & Sing SNPE52 = NASCAR The Game: Inside Line SNQE7U = National Geographic Challenge! SNQPLG = National Geographic Challenge! SNRE52 = NASCAR Unleashed SNSE52 = NASCAR 2011: The Game SNTEXN = Netflix Instant Streaming Disc SNUPJW = Happy Neuron Academy SNVE69 = Need for Speed: The Run SNVJ13 = Need for Speed: The Run SNVP69 = Need for Speed: The Run SNXJDA = Naruto Shippuuden: Gekitou Ninja Taisen Special SNYEVZ = Monster High: 13 Wishes SNYPVZ = Monster High: 13 Desideri SNZEVZ = Barbie: Dreamhouse Party SNZPVZ = Barbie: Dreamhouse Party SO3EE9 = Rune Factory: Tides of Destiny SO3J99 = Rune Factory: Oceans SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg 2 SOCE4Z = Deadliest Catch: Sea of Chaos SOIEEB = 101-in-1 Sports Party Megamix SOIPHZ = 101-in-1 Sports Party Megamix SOJE41 = Rayman Origins SOJP41 = Rayman Origins SOKEA4 = Karaoke Joysound SOKJ18 = Karaoke Joysound Wii DX SOME01 = Rhythm Heaven Fever SOMJ01 = Minna no Rhythm Tengoku SOMK01 = Rhythm Heaven Fever SOMP01 = Beat the Beat: Rhythm Paradise SONDMR = My First Songs SONFMR = My First Songs SONPMR = My First Songs SORE4Z = The Oregon Trail SOSEG9 = Turbo: Super Stunt Squad SOSPAF = Turbo: Acrobazie In Pista SOTE52 = Wipeout: The Game SOUE01 = The Legend of Zelda: Skyward Sword SOUJ01 = The Legend of Zelda: Skyward Sword SOUK01 = The Legend of Zelda: Skyward Sword SOUP01 = The Legend of Zelda: Skyward Sword SP2E01 = Wii Sports + Wii Sports Resort SP2P01 = Wii Sports + Wii Sports Resort SP3E41 = The $1,000,000 Pyramid SP4PJW = Pétanque Master SP4V = Castlevania: Rondo of Blood SP5E70 = The Kore Gang: Outvasion From Inner Earth SP5PVV = The Kore Gang: Outvasion From Inner Earth SP6DSV = Popstars SP7EAF = Pac-Man Party SP7JAF = Pac-Man Party SP7PAF = Pac-Man Party SP8E78 = The Penguins of Madagascar: Dr. Blowhole Returns Again! SP8P78 = I Pinguini di Madagascar: Il Ritorno Del Dottor Blowhole! SP9P4Q = SingItStar POP 2009 SP9PJW = Pucca's Race for Kisses SPAE5G = Pirates Plund-Arrr SPBPGT = Giocaparola Party SPCPZS = Pocoyo Racing SPDE52 = Spider-Man: Shattered Dimensions SPDP52 = Spider-Man: Dimensions SPEE20 = Speed SPEPXT = Speed SPGPPN = Peppa Pig: Fun And Games SPHPJW = Spaghetti Western Shooter SPIE18 = Oops! Prank Party SPIJ18 = Party Game Box 100 SPIP18 = Games Island SPKXPV = Springdale: Riding Adventures SPMDRM = Mahjongg Party SPMPWP = Mahjong Party Pack SPOPFR = Winter Sports 2011: Go for Gold SPPEFS = Power Punch SPQE7T = I SPY Spooky Mansion SPRE01 = New Super Mario Bros. Wii 14 Project Mario SPRE41 = The Price Is Right: 2010 Edition SPTJEB = Hospital. 6 nin no Ishi SPUE20 = Let's Paint SPVEA4 = Pro Evolution Soccer 2011 SPVPA4 = Pro Evolution Soccer 2011 SPVXA4 = Pro Evolution Soccer 2011 SPVYA4 = Pro Evolution Soccer 2011 SPWHZH = The Studio 100: Play Island SPXP41 = Prince of Persia: Le Sabbie Dimenticate SPYDSV = Yetisports: Penguin Party Island SPZE5G = Pizza Delivery Boy SQ2EPZ = Country Dance SQ2PXT = Country Dance SQAE52 = Cabela's African Adventures SQBPXT = The Cube SQDE8P = Gunblade NY & LA Machineguns : Arcade Hits Pack SQDP8P = Gunblade NY & LA Machineguns: Arcade Hits Pack SQEENG = We Sing Pop! SQEPNG = We Sing Pop! SQFE5G = Phineas and Ferb: Quest for Cool Stuff SQFPGT = Phineas and Ferb: Quest for Cool Stuff SQIE4Q = Disney Infinity SQIP4Q = Disney Infinity SQIY4Q = Disney Infinity SQKE5G = Cooking Mama 2-Pack SQKK01 = Cooking Mama 2 Pack SQLE4Z = Cartoon Network Punch Time Explosion XL SQLPGN = Cartoon Network: Punch Time Explosion XL SQME52 = Spider-Man: Edge of Time SQMP52 = Spider-Man: Edge of Time SQPPX4 = Speed 2 SQQEVZ = Disney Planes: Fire & Rescue SQQPVZ = Planes 2: Missione Antincendio SQRPNG = We Sing Rock! SQTPML = The Ultimate Battle Of The Sexes: Quizz & Play! SQUDX3 = Quiz Party SQUFX3 = Quiz Party SQVE69 = FIFA 15 SQVP69 = FIFA 15 - Legacy Edition SQVX69 = FIFA 15 - Legacy Edition SR4E41 = Raving Rabbids: Travel in Time SR4J41 = Raving Rabbids: Travel in Time SR4P41 = Raving Rabbids: Travel in Time SR5E41 = Raving Rabbids Party Collection SR5P41 = Raving Rabbids: Party Collection SR6EHG = Reader Rabbit 1st Grade SR7EHG = Reader Rabbit 2nd Grade SR8EHG = Reader Rabbit Kindergarten SR9EHG = Reader Rabbit Preschool SRAJMS = Rajirugi Noa Wii SRBP4Q = SingItStar: R&B SRBPHS = Rugby League 3 SRCE69 = Rock Band: Country Track Pack 2 SREXNL = Reader Rabbit Kindergarten SRFE52 = Rapala Pro Bass Fishing SRFP52 = Rapala Pro Bass Fishing SRGE69 = Rango SRGP01 = New Super Mario Bros Wii 2 Reggie SRGP69 = Rango SRHP01 = New Super Mario Bros. Wii 7 Retro Heaven SRIE78 = Rio SRIP78 = Rio SRJJAF = Super Sentai Battle: Ranger Cross SRKEFP = Remington Super Slam Hunting: Alaska SRKPNK = Remington Dangerous Animals SRLXNL = Reader Rabbit Preschool SRME18 = Rooms: The Main Building SRMJ18 = Rooms: Fushigi na Ugoku Heya SRNE70 = Project Runway SRNP01 = New Super Mario Bros. Wii Revolution SRNP70 = Project Runway SRPE4Q = Disney Tangled SRPP4Q = Rapunzel: L'intreccio della torre SRQE41 = Racquet Sports SRQP41 = Racket Sports Party SRRENR = Rec Room Games SRRPGN = Great Party Games SRSE20 = Super Sonic Racer SRSPXT = Supersonic Racer SRTXNL = Reader Rabbit 1st Grade SRUE4Z = Rudolph the Red-Nosed Reindeer SRVE41 = The Price Is Right Decades SRVP01 = New Super Mario Bros Revolution SRWXNL = Reader Rabbit 2nd Grade SRXE52 = Generator Rex: Agent of Providence SRXP52 = Generator Rex: Agente di Providence SRYEAF = ExerBeat: Gym Class Workout SRYJAF = Fitness Party SRYPAF = ExerBeat: Gym Class Workout SS2PFR = Winter Sports 2012: Feel the Spirit SS3EWR = Sesame Street: Elmo's A-to-Zoo Adventure SS3PWR = Sesame Street: Elmo's A-to-Zoo Adventure SS3UWR = Sesame Street: Elmo's A-to-Zoo Adventure SS4EWR = Sesame Street: Cookie's Counting Carnival SS4UWR = Sesame Street: Cookie's Counting Carnival SS5ENR = Satisfashion SS6UHS = AFL Live: Game of the Year Edition SS7EFP = Remington Super Slam Hunting: Africa SS7URN = Remington Super Slam Hunting: Africa SS8E78 = SpongeBob SquigglePants SS8P78 = SpongeBob: Il Grande Creatore SS9JMS = Milestone Shooting Collection 2 SSBE78 = Puss in Boots SSBP78 = Il Gatto con gli Stivali SSCDWR = Scene It? Ciak! Si Gira! SSCEPM = Scene It? Bright Lights! Big Screen! SSCFPM = Scene It? Bright Lights! Big Screen! SSCFWR = Scene It? Ciak! Si Gira! SSCIWR = Scene It? Ciak! Si Gira! SSCPWR = Scene It? Ciak! Si Gira! SSCSWR = Scene It? Ciak! Si Gira! SSDDRV = Schlag den Raab SSEDNG = We Sing: Encore SSEPNG = We Sing: Encore SSEVNG = We Sing: Encore SSFPKM = Sing 4: The Hits Edition SSGPNG = We Sing SSHPHH = Sherlock Holmes: l'orecchino d'argento SSIENR = Winter Blast: 9 Snow & Ice Games SSJEJJ = Summer Stars 2012 SSJPKM = Summer Stars 2012 SSLENR = I Love Horses: Rider's Paradise SSLPKM = The Saddle Club SSLPOH = SingItStar Legends SSMEYG = American Mensa Academy SSMPGD = Mensa Academy SSNEYG = Sniper Elite SSNPHY = Sniper Elite SSPE52 = Skylanders: Spyro's Adventure SSPJ52 = Skylanders: Spyro's Adventure SSPP52 = Skylanders: Spyro's Adventure SSPX52 = Skylanders: Spyro's Adventure SSQE01 = Mario Party 9 SSQJ01 = Mario Party 9 SSQK01 = Mario Party 9 SSQP01 = Mario Party 9 SSQW01 = Mario Party 9 SSRE20 = Wild West Shootout SSRPXT = Wild West Shootout SSSE01 = New Super Mario Bros. Wii: Summer Sun SSSEWR = Sesame Street: Elmo's Musical Monsterpiece SSTEG9 = Kid Adventures: Sky Captain SSTPY5 = Stunt Flyer: Hero of the Skies SSUES5 = Sushi Go Round SSVE52 = Wipeout 3 SSWDRM = Water Sports SSWEPZ = Water Sports SSWPGR = Water Sports SSZE5G = Swords ST3J01 = Kiki Trick ST4PNX = Thomas & Friends: Hero of the Rails ST4XNX = Thomas & Friends: Hero of the Rails ST5E52 = Transformers: Cybertron Adventures ST5P52 = Transformers: Le Avventure su Cybertron ST6E78 = The Biggest Loser Challenge ST6P78 = The Biggest Loser Challenge ST7E01 = Fortune Street ST7JGD = Itadaki Street Wii ST7P01 = La Via della Fortuna ST8P75 = SingItStar 80's ST9E52 = Top Shot Arcade STAE78 = Pictionary STAP75 = SingItStar Apres Ski Hits STAP78 = Pictionary STAU78 = Pictionary STCP75 = SingItStar Singstar STDEFP = Reload STDP75 = SingItStar Deutsch Rock-Pop STEETR = Tetris Party Deluxe STEJ18 = Tetris Party Premium STEPTR = Tetris Party Deluxe STFE52 = Transformers: Prime STFP52 = Transformers Prime: The Game STGJAF = Tales of Graces STHE8P = THOR: God of Thunder STHP75 = SingItStar Hottest Hits STHP8P = THOR: Il Dio del Tuono STIFKM = Titeuf le Film STJJAF = Taiko no Tatsujin Wii: Ketteiban STKE08 = Tatsunoko vs. Capcom: Ultimate All-Stars STKJ08 = Tatsunoko vs. Capcom: Ultimate All-Stars STKP08 = Tatsunoko vs. Capcom: Ultimate All Stars STLE78 = Truth or Lies STLP78 = Truth or Lies STMEGN = Titanic Mystery STMPKP = Titanic Mystery STNE41 = The Adventures of Tintin: The Game STNP41 = Le Avventure di Tintin: Il segreto dell'Unicorno STOE4Q = Cars Toon: Mater's Tall Tales STOP4Q = Cars Toon: Le Incredibili Storie di Carl Attrezzi STOX4Q = Cars Toon: Mater's Tall Tales STPP75 = SingItStar Pop Hits STPPML = Pet Vet: Marine Patrol STQJHF = Inazuma Eleven Strikers STQP01 = Inazuma Eleven Strikers STQP75 = SingItStar Queen STQX01 = Inazuma Eleven Strikers STRE4Q = Tron: Evolution - Battle Grids STRP4Q = Tron: Evolution - Battle Grids STRP75 = SingItStar Rock Ballads STRX4Q = Tron: Evolution - Battle Grids Championship Edition STSE4Q = Toy Story 3 STSP4Q = Toy Story 3: La Grande Fuga STSP75 = SingItStar Schlager STSX4Q = Toy Story 3: Il Videogioco STSY4Q = Toy Story 3: Il Videogioco STSZ4Q = Toy Story 3: Toy Box Special Edition STTDRM = Hidden Mysteries: Titanic STTE52 = Hidden Mysteries: Titanic STTPGR = Hidden Mysteries Titanic: Secrets of the Fateful Voyage STTXGR = Hidden Mysteries: Titanic STUPRN = Turbo Trainz STVDSV = TV Total Events STWE69 = Tiger Woods PGA Tour 11 STWP69 = Tiger Woods PGA Tour 11 STXE69 = Tiger Woods PGA Tour 12: The Masters STXP69 = Tiger Woods PGA Tour 12: The Masters STYE52 = Tony Hawk: Shred STYP52 = Tony Hawk: Shred STZE52 = Transformers: Dark of the Moon - Stealth Force Edition STZP52 = Transformers 3: Stealth Force Edition SU2E54 = Nickelodeon Dance 2 SU2P54 = Nickelodeon Dance 2 SU2X54 = Nickelodeon Dance 2 SU3DMR = U-Sing 2 SU3FMR = U-Sing 2 SU3HMR = U-Sing 2: Popstars Edition SU3PMR = U-Sing 2 SU3SMR = U-Sing 2 SU3UMR = U-Sing 2: Australian Edition SU4E78 = UFC Personal Trainer: The Ultimate Fitness System SU4P78 = UFC Personal Trainer: The Ultimate Fitness System SU5EVZ = Monster High: Skultimate Roller Maze SU5PVZ = Monster High: Il Circuito Scheletrico SU6E5G = Zumba Fitness Core SU6P5G = Zumba Fitness Core SU6XGT = Zumba Fitness Core SU7EG9 = Rise of the Guardians SU7PAF = Le 5 Leggende SU8PNG = We Sing: Deutsche Hits 2 SU9E4Q = Disney Planes SU9P4Q = Disney Planes SU9X4Q = Disney Planes SUKE01 = Kirby's Return to Dream Land SUKJ01 = Hoshi no Kirby Wii SUKK01 = Kirby's Return to Dream Land SUKP01 = Kirby's Adventure Wii SUMJC8 = Winning Post World 2010 SUNEYG = Deer Drive Legends SUOE41 = The Hip Hop Dance Experience SUOP41 = The Hip Hop Dance Experience SUPE01 = Wii Party SUPJ01 = Wii Party SUPK01 = Wii Party SUPP01 = Wii Party SUQENG = We Sing UK Hits SUQPNG = We Sing: UK Hits SURE01 = New Super Mario Bros. Wii 19 Resurrection U SUREA4 = Dance Dance Revolution II SURPA4 = Dance Dance Revolution: Hottest Party 5 SUSFMR = U-Sing Johnny Hallyday SUSPMR = U-Sing Girls Night SUTESZ = Once Upon A Time SUUE78 = uDraw Studio: Instant Artist SUUP78 = uDraw Studio: E sei subito artista! SUVE52 = Cabela's Dangerous Hunts 2013 SUVP52 = Cabela's Dangerous Hunts 2013 SUWE78 = uDraw Studio SUWP78 = uDraw Studio SUXEA4 = Pro Evolution Soccer 2010 SUXJA4 = Winning Eleven PLAY MAKER 2010 SUXPA4 = Pro Evolution Soccer 2010 SUXXA4 = Pro Evolution Soccer 2010 SUXYA4 = Pro Evolution Soccer 2010 SUYDRV = Schlag den Raab - Das 3. Spiel SUZD7K = Benjamin Blümchen - Törööö im Zoo SV2E78 = Big Beach Sports 2 SV2P78 = Big Beach Sports 2 SV3EG9 = Madagascar 3: The Video Game SV3PAF = Madagascar 3: Ricercati in Europa SV4E8P = Virtua Tennis 4 SV4P8P = Virtua Tennis 4 SV5PRV = The Voice of Germany Vol. 2 SV6SRV = The Voice SV7EVZ = Penguins of Madagascar SV7PVZ = I Pinguini di Madagascar SVBE52 = Battleship SVBP52 = Battleship SVCEPZ = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = SpongeBob: La Vendetta Robotica de Plankton SVHP69 = FIFA 14 - Legacy Edition SVHX69 = FIFA 14 - Legacy Edition SVME01 = Super Mario All-Stars SVMJ01 = Super Mario Collection: 25th Anniversary Edition SVMK01 = Super Mario All-Stars SVMP01 = Super Mario All-Stars: Edizione per il 25° anniversario SVOEWW = El Chavo SVPESZ = Vegas Party SVPPNJ = Vegas Party SVSPZX = Battle vs Chess SVTEXS = Bit.Trip Complete SVTP99 = BIT.TRIP COMPLETE SVUPRV = The Voice of Germany SVVEG9 = The Croods: Prehistoric Party! SVVPAF = I Croods: Festa Preistorica! SVWEQH = Veggy World SVXE52 = Skylanders: Swap Force SVXF52 = Skylanders: Swap Force SVXI52 = Skylanders: Swap Force SVXP52 = Skylanders: Swap Force SVXY52 = Skylanders: Swap Force SVYEG9 = Ben 10: Omniverse 2 SVYPAF = Ben 10: Omniverse 2 SVZEVZ = How to Train Your Dragon 2 SVZPVZ = How to Train Your Dragon 2 SW2E52 = Wipeout 2 SW3EJJ = Winter Stars SW3PKM = Winter Stars SW4JA4 = Winning Eleven PLAY MAKER 2011 SW6E78 = WWE '12 SW6P78 = WWE '12 SW7EVN = Gunslingers SW7PNK = Western Heroes SW8ENG = We Sing 80s SW8PNG = We Sing 80s SW9EVN = Wicked Monsters Blast! SW9PYT = Wicked Monsters Blast! SWAE52 = DJ Hero SWAP52 = DJ Hero SWBE52 = DJ Hero 2 SWBP01 = New Super Mario Bros. Wii 0 Where It All Began SWBP52 = DJ Hero 2 SX2PNG = Jungle Kartz SX3EXJ = Pandora's Tower SX3J01 = Pandora’s Tower: Until I Return to Your Side SX3P01 = Pandora's Tower SX4E01 = Xenoblade Chronicles SX4J01 = Xenoblade SX4P01 = Xenoblade Chronicles SX5E4Z = Santa Claus is Comin' to Town! SX6JAF = Pretty Cure All Stars Everyone Gather ☆ Let's Dance SX7E52 = Teenage Mutant Ninja Turtles SX7P52 = Teenage Mutant Ninja Turtles SX8E52 = X-Men Destiny SX8P52 = X-Men Destiny SXAE52 = Guitar Hero: World Tour SXAP52 = Guitar Hero 4: World Tour SXBE52 = Guitar Hero: Metallica SXBP52 = Guitar Hero: Metallica SXCE52 = Guitar Hero: Smash Hits SXCP52 = Guitar Hero: Greatest Hits SXDE52 = Guitar Hero: Van Halen SXDP52 = Guitar Hero: Van Halen SXEE52 = Guitar Hero 5 SXEF52 = Guitar Hero III Custom : Megadeth SXEP52 = Guitar Hero 5 SXFE52 = Band Hero SXFF52 = Guitar Hero III Custom : My Chemical Romance SXFP52 = Band Hero SXIE52 = Guitar Hero: Warriors of Rock SXIP52 = Guitar Hero 6: Warriors of Rock SY8PKM = Let's Sing 2015 SZ2E5G = Zumba Fitness 2 SZ2P5G = Zumba Fitness 2 SZ2XGT = Zumba Fitness 2 SZ3E5G = Zumba Fitness World Party SZ3PGT = Zumba Fitness World Party SZ5E5G = Zumba Fitness SZ5PGT = Zumba Fitness SZAE69 = Rock Band 2 SZAP69 = Rock Band 2 SZBE69 = Rock Band 3 SZBP69 = Rock Band 3 SZEE01 = New Super Mario Bros Wii 13 Shadow Zero Escape TITLES = http://www.gametdb.com (type: Wii language: IT version: 20150208110656) UGPE01 = Game Boy Player UGPJ01 = Game Boy Player UGPP01 = Game Boy Player ULFW = uLoader UUUE01 = New Super Mario Bros. Wii 19 Resurrection U VBGX = Visual Boy Advance GX VIPE01 = New Super Mario Bros Wii 18 Vip Mix W22E = Planet Fish W24E = 2 Fast 4 Gnomz W2AE = Big Bass Arcade W2CE = Brain Challenge W2CJ = Brain Challenge W2CP = Brain Challenge L'Allena-Mente W2FP = Physiofun - Balance Training W2GD = Phoenix Wright Ace Attorney: Justice for All (Deutsche Version) W2GE = Phoenix Wright: Ace Attorney Justice for All W2GI = Phoenix Wright: Ace Attorney 2 - Justice for All W2GJ = Gyakuten Saiban 2 W2GP = Phoenix Wright Ace Attorney: Justice for All W2IE = Fishie Fishie W2IP = Fishie Fishie W2JE = Just Jam W2KE = Let's Catch W2KJ = Let's Catch W2KP = Let's Catch W2LE = Bloons W2LP = Bloons W2ME = Blaster Master: Overdrive W2MP = Blaster Master: Overdrive W2OE = My Aquarium 2 W2OJ = Blue Oasis: Michinaru Shinkai W2OP = My Aquarium 2 W2PP = Physiofun: Pelvic Floor Training W2TE = Drill Sergeant Mindstrong W2TJ = Onitore Kyoukan ha Onigunsou W2TP = Brain Cadets W2YE = Fireplacing W2YP = My Fireplace W34J = Simple Series Vol. 4: The Misshitsu kara no Dasshutsu W3AE = Carmen Sandiego Adventures in Math: The Big Ben Burglary W3BE = Soccer Bashi W3BP = Soccer Bashi W3DJ = 3° C W3FE = 3D Pixel Racing W3FP = 3D Pixel Racing W3GD = Phoenix Wright Ace Attorney 3: Trials And Tribulations W3GE = Phoenix Wright Ace Attorney: Trials and Tribulations W3GI = Phoenix Wright: Ace Attorney 3 - Trials and Tribulations W3GJ = Gyakuten Saiban 3 W3GP = Phoenix Wright Ace Attorney: Trials and Tribulations W3JE = Triple Jumping Sports W3KE = ThruSpace W3KJ = Surinuke Anatousu W3KP = ThruSpace: High Velocity 3D Puzzle W3LE = Carmen Sandiego Adventures in Math: The Lady Liberty Larceny W3ME = The Three Musketeers: One for all W3MP = I Tre Moschettieri Uno per tutti! W3PE = Triple Throwing Sports W3RE = Triple Running Sports W3SE = Triple Shot Sports W3TE = Pearl Harbor Trilogy - 1941: Red Sun Rising W3TP = Pearl Harbor Trilogy 1941: Red Sun Rising W42J = Fortune: Hoshi no Furisosogu Oka W44E = Stop Stress: A Day of Fury W44P = Stop Stress: A Day of Fury W48E = ShadowPlay W4AE = Arcade Sports W4AP = Arcade Sports: Air Hockey, Bowling, Pool, Snooker W4KE = Deer Captor W4KJ = Shikagari W4OJ = Shikakui Atama wo Marukusuru Challenge W4TE = Spaceball Revolution W4TP = Spaceball Revolution W54E = 5 Spots Party W54P = 5 Spots Party W5AE = 5 Arcade Gems W5AP = 5 Arcade Gems W5IE = 5 in 1 Solitaire W6BE = Eco Shooter: Plant 530 W6BJ = 530 Eco Shooter W6BP = Eco-Shooter: Plant 530 W72P = Successfully Learning German Year 3 W73P = Successfully Learning German Year 4 W74P = Successfully Learning German Year 5 W7IP = Successfully Learning German Year 2 W82J = Jintori Action Taikokenchi Karakuri Shiro no Nazo W8BP = Babel Rising W8CE = Bit.Trip Core W8CJ = BIT.TRIP CORE: Rhythm Seijin no Gyakushuu W8CP = Bit.Trip Core W8DJ = Mebius Drive W8IJ = Hachi-One Diver Wii W8LE = Balloon Pop Festival W8PJ = Ouchi de Mugen Puchi Puchi Wii W8WE = Happy Holidays: Halloween W8WP = Happy Holidays Halloween W8XE = Battle Poker W9BE = Big Town Shoot Out W9BP = Big Town Shoot W9IE = Evasive Space W9IJ = Kiken Kuuiki W9LE = Christmas Clix W9RE = Happy Holidays: Christmas W9RP = Happy Holidays Christmas W9UE = Cruise Party W9UP = Cruise Party WA2E = Magnetica Twist WA2J = Minna de Puzzloop WA2P = Actionloop Twist WA4E = WarioWare: D.I.Y. Showcase WA4J = WarioWare: D.I.Y. Showcase WA4P = WarioWare: Do It Yourself – Showcase WA5E = Carmen Sandiego Adventures in Math: The Island of Diamonds WA7E = Toribash WA7P = Toribash Violence Perfected WA8E = Art Style: Rotozoa WA8J = Art Style: Penta Tentacles WA8P = Art Style: Penta Tentacles WAAE = Aya and the Cubes of Light WAAP = Aya and the Cubes of Light WABE = Art of Balance WABP = Art of Balance WACE = Arcade Essentials WACP = Arcade Essentials WAEE = Around The World WAEP = Around the world WAFE = Airport Mania: First Flight WAFP = Airport Mania: First Flight WAGE = Pinocchio's Puzzle WAHE = Trenches Generals WAHP = Trenches: Generals WAIE = 101-in-1 Explosive Megamix WAIP = 101-in-1 Explosive Megamix WAJE = MotoHeroz WAJP = MotoHeroz WAKE = Carmen Sandiego Adventures in Math: The Case of the Crumbling Cathedral WALE = Art Style: Light Trax WALJ = Art Style: Lightstream WALP = Art Style: light trax WAME = Carmen Sandiego Adventures in Math: The Great Gateway Grab WANE = Ant Nation WANP = Ant Nation WAOE = The Very Hungry Caterpillar's ABCs WAOJ = Harapeko Aomushi no ABC WAOP = The Very Hungry Caterpillar´s ABC WAQJ = Yakuman Wii: Ide Yousuke no Kenkou Mahjong WARE01 = DU Super Wario Bros. WARJ = Tsuushin Taikyoku Igo Doujou 2700 Mon WASJ = Tsuushin Taikyoku: Hayazashi Syogi Sandan WATE = Astro Bugz Revenge WAUJ = Tsushin Taikyoku: World Chess WAYE = And Yet It Moves WAYP = And Yet It Moves WAZE = The Amazing Brain Train WB2E = Strong Bad Episode 4: Dangeresque 3 WB2P = Strong Bad Episode 4: Dangeresque 3 WB3E = Strong Bad Episode 5: 8-bit is Enough WB3P = Strong Bad Episode 5: 8-bit is Enough WB4E = Wild West Guns WB4J = Wild West Guns WB4P = Wild West Guns WB5E = Block Breaker Deluxe WB5J = Block Breaker Deluxe WB5P = Block Breaker Deluxe WB6E = TV Show King WB6J = TV Show King WB6P = TV Show King WB7E = Midnight Pool WB7J = Hamaru Billiards WB7P = Midnight Pool WB8E = Midnight Bowling WB8J = Hamaru Bowling WB8P = Midnight Bowling WBAJ = Bakutan WBBE = Snowboard Riot WBBJ = Board Warriors WBBP = Snowboard Riot WBDE = Brain Drain WBDP = Brain Drain WBEE = Pong Toss: Frat Party Games WBEP = Beer Pong: Frat Party Games WBFE = Bit.Trip Fate WBFP = Bit.Trip Fate WBGP = Bang Attack WBHE = Blood Beach WBHP = Blood Beach WBIE = Boingz WBJE = Harvest Moon: My Little Shop WBJJ = Bokujou Monogatari Series: Makiba no Omise WBKE = Arkanoid Plus! WBKJ = Arkanoid Plus! WBKP = Arkanoid Plus! WBLE = Bubble Bobble Plus! WBLJ = Bubble Bobble Wii WBLP = Bubble Bobble Plus! WBME = My Pokémon Ranch WBMJ = Minna no Pokémon Bokujou WBMP = My Pokémon Ranch WBNE = Bonsai Barber WBNJ = Bonsai Barber WBNP = Bonsai Barber WBOE = Gravitronix WBPE = PLÄTTCHEN twist 'n' paint WBPP = PLÄTTCHEN - twist 'n' paint WBQE = Star Soldier R WBQJ = Star Soldier R WBQP = Star Soldier R WBRP = Pirates: The Key of Dreams WBSE = Pop WBSJ = Pop WBSP = Pop WBTJ = Fantasic Tambourine WBVE = SPOGS Racing WBVP = SPOGS Racing WBWE = Critter Round-Up WBWJ = Saku Saku Animal Panic WBWP = Critter Round-Up WBXE = Strong Bad Episode 1: Homestar Ruiner WBXP = Strong Bad Episode 1: Homestar Ruiner WBYE = Strong Bad Episode 2: Strong Badia - The Free WBYP = Strong Bad Episode 2: Strong Badia - The Free WBZE = Strong Bad Episode 3: Baddest of the Bands WBZP = Strong Bad Episode 3: Baddest of the Bands WC2E = Crystal Defenders R2 WC2J = Crystal Defenders R2 WC2P = Crystal Defenders R2 WC6E = Chronos Twins DX WC6P = Chronos Twins DX WC8J = Line Attack Heroes WCHE = Chess Challenge! WCHP = Chess Challenge WCIE = Crystal Defenders R1 WCIJ = Crystal Defenders R1 WCIP = Crystal Defenders R1 WCJE = Cocoto Platform Jumper WCJP = Cocoto: Platform Jumper WCKE = chick chick BOOM WCKJ = chick chick BOOM WCKP = chick chick BOOM WCLE = Doc Clock: The Toasted Sandwich of Time WCNJ = Tokyo City Nights WCOE = Cocoto Fishing Master WCOP = Cocoto Fishing Master WCPE = Copter Crisis WCPP = Copter Crisis WCRE = Carnival King WCSE = CueSports: Pool Revolution WCSJ = Cue Sports: Wi-Fi Taisen Billiards WCSP = CueSports: Snooker vs Billiards WCUE = 3-2-1, Rattle Battle! WCUJ = Atsui 12-Game: FuriFuri Party! WCUP = 3-2-1, Rattle Battle! WCVE = Cave Story WCVP = Cave Story WCZE = ColorZ WCZJ = ColorZ WCZP = ColorZ WD2J = Simple Wii Series Vol. 2: The Number Puzzle Neo WD9E = Castlevania The Adventure ReBirth WD9J = Dracula Densetsu ReBirth WD9P = Castlevania: The Adventure ReBirth WDAJ = Darts Wii WDBE = Derby Dogs WDBJ = Dirby Dog WDDE = Diner Dash WDDJ = Diner Dash WDDP = Diner Dash WDEE = Magic Destiny Astrological Games WDEP = Magic Destiny Astrological Games WDFE = Defend your Castle WDFP = Defend your Castle WDHE = Art Style: ROTOHEX WDHJ = Art Style: Dialhex WDHP = Art Style: ROTOHEX WDIJ = Simple Wii Series Vol. 1: The Block Kuzushi Neo WDKE = Dart Rage WDME = Dr. Mario Online RX WDMJ = Dr. Mario & Saikin Bokumetsu WDMP = Dr. Mario & Sterminavirus WDNJ = Discipline Teikoku no Tanjyou WDOE = Driift Mania WDOP = Driift Mania WDPE = Dr. Mario Online Rx (Friend Battle Demo) WDPJ = Dr. Mario Online Rx (Friend Battle Demo) WDPP = Dr. Mario & Germ Buster (Friend Battle Demo) WDRE = Mr Driller W WDRJ = Mr. Driller World WDRP = Mr. Driller W WDSE = Dragon Master Spell Caster WDSP = Dragon Master Spell Caster WDVE = Voodoo Dice WDVP = Voodoo Dice WDXE = Diatomic WE6E = My Dolphin WE6J = Sea Farm: Iruka to Watashi no Showtime WE9E = Alien Crush Returns WE9J = Alien Crush Returns WE9P = Alien Crush Returns WEDE = Eduardo the Samurai Toaster WEME = Aha! I Got It! Escape Game WEMJ = 1 Nuke! Dasshutsu Game * My Home Hen WEMP = Aha! I Got It! Escape Game WENE = TNT Racers WENP = TNT Racers WEQE = Equilibrio WEQJ = Katamuki Spirits WEQP = Equilibrio WERE = My Aquarium WERJ = Blue Oasis: The Healing Space of Fish WERP = My Aquarium WETE = PictureBook Games: Pop-Up Pursuit WETJ = Asoberu Ehon: Tobida Sugoroku WETP = Giochi da tavolo animati: Un'avventura pop-up! WEVE = Viral Survival WEVJ = Peakvox Escape Virus WEVP = Viral Survival WF2E = Final Fantasy Crystal Chronicles: My Life as a Darklord WF2J = Final Fantasy Crystal Chronicles: Hikari to Yami no Himegimi to Sekai Seifuku no Tou WF2P = Final Fantasy Crystal Chronicles: My Life as a Darklord WF3E = Family Games - Pen & Paper Edition WF4E = Final Fantasy IV: The After Years WF4J = Final Fantasy IV: The After Years - Tsuki no Kikan WF4P = Final Fantasy IV: The After Years WF5E = Family Card Games WF5J = Okiraku Daifugou Wii WF5P = Family Card Games WF6E = Frobot WFAE = Fast Draw Showdown WFAP = Fast Draw Showdown WFBE = Sandy Beach WFBJ = Beach e Oki o Tsukuccha Wow! WFBP = Sandy Beach WFCE = Final Fantasy Crystal Chronicles: My Life as a King WFCJ = Final Fantasy Crystal Chronicles: Chiisana Ousama to Yakusoku no Kuni WFCP = Final Fantasy Crystal Chronicles: My Life as a King WFDE = Save the Furries WFEE = Fenimore Fillmore "The Westerner" WFFE = Fun! Fun! Minigolf WFFF4I = Fatal Frame 4: La Maschera dell'eclissi lunare WFFJ = Fun! Fun! Minigolf WFFP = Fun! Fun! Minigolf WFGE = Frogger Returns WFGJ = Frogger Returns WFGP = Frogger Returns WFHE = Flight Control WFHP = Flight Control WFIE = Reel Fishing Challenge WFIJ = Fish Eyes Challenge WFIP = Reel Fishing Challenge WFKE = Family Go-Kart Racing WFKJ = Okiraku Kart Wii WFLE = Fluidity WFLP = Hydroventure WFME = Family & Friends Party WFMP = Family & Friends Party WFNE = Fish Tank WFNP = Fish Tank WFPJ = Hirameki Card Battle Mekuruca WFQP = Frogger: Hyper Arcade Edition WFSJ = Minna no Theater Wii WFTE = Fish 'em All WFTP = Fish'em All! WFUE = Furry Legends WFUP = Furry Legends WFVE = Soccer Up WFVP = Football Up WFWE = Flower Works WFWP = Flowerworks: Follie's Adventure WFXE = Cosy Fire WFXP = Cosy Fire WFYE = Family Games Pen & Paper Edition WFYP = Family Games Pen & Paper Edition WG2J = Sugar Bunnies Wii: Youkoso * Bunnies Field e WG4E = GhostSlayer WGAE = Ghost Mania WGAP = Ghost Mania WGDE = Gradius Rebirth WGDJ = Gradius Rebirth: Updated WGDP = Gradius Rebirth WGFP = Girlfriends Forever: Magic Skate WGGE = Gabrielle's Ghostly Groove: Monster Mix WGGJ = Ushimitsu Monstruo Puchi: Fushigi na Oshiro no Dance Party WGGP = Gabrielle's Ghostly Groove: Monster Mix WGLE = Gene Labs WGMJ = Game SoundStation WGOE = World of Goo WGOJ = World of Goo WGOP = World of Goo WGPE = AquaSpace WGPJ = Aqua Living: TV de Nagameru Uotachi WGPP = Zenquaria: Virtual Aquarium WGSD = Phoenix Wright: Ace Attorney (Deutsche Version) WGSE = Phoenix Wright: Ace Attorney WGSF = Phoenix Wright: Ace Attorney (French Version) WGSI = Phoenix Wright: Ace Attorney WGSJ = Gyakuten Saiban: Yomigaeru Gyakuten WGSP = Phoenix Wright: Ace Attorney WGTJ = Sekai no Omoshiro Party Game WGUJ = Aero Guitar WGVE = Groovin' Blocks WGYE = Gyrostarr WH3E = Home Sweet Home WH3P = Home Sweet Home WHBE = Hubert the Teddy Bear: Winter Games WHEE = Heracles: Chariot Racing WHEP = Heracles: Chariot Racing WHFE = Heavy Fire: Special Operations WHFP = Heavy Fire: Special Operations WHHJ = Let's Zenryoku Hitchhike!!!!!!!!! WHMP51 = New Super Mario Bros. Wii: The Ultimate Wii-Homebrew.com Edition WHOE = Hockey Allstar Shootout WHPE = Sexy Poker WHPP = Sexy Poker WHRE = Heron Steam Machine WHRP = Heron: Steam Machine WHUE = Ghost Mansion Party WHUJ = Ghost Mansion Party WHUP = Fantasma Party WHVE = High Voltage: Hot Rod Show WHWE = HoopWorld WHWP = HoopWorld: BasketBrawl WHXE = Helix WHXP = Helix WHYE = Heavy Fire: Black Arms WHZE = Horizon Riders WIBE = bittos+ WICE = NyxQuest Kindred Spirits WICJ = NyxQuest WICP = NyxQuest: Kindred Spirits WIDE = Dracula: Undead Awakening WIDP = Dracula: Undead Awakening WIEE = Tales of Monkey Island: Chapter 3 - Lair of the Leviathan WIEP = Tales of Monkey Island Chapter 3: Lair of the Leviathan WIGE = Incoming WIHE = Play with Birds WIKJ = Ivy the Kiwi? Mini WILE = Tales of Monkey Island: Chapter 1 - Launch of the Screaming Narwhal WILP = Tales of Monkey Island Chapter 1: Launch of the Screaming Narwhal WIMC = WiiMC WINE = The Incredible Maze WINJ = Chokkan! Balance * Labyrinth WINP = The Incredible Maze WIRE = Tales of Monkey Island: Chapter 5 - Rise of the Pirate God WIRP = Tales of Monkey Island Chapter 5: Rise Of The Pirate God WISE = Tales of Monkey Island: Chapter 2 - The Seige of Spinner Cay WISP = Tales of Monkey Island Chapter 2: Siege Of Spinner Cay WITE = Aha! I Found It! Hidden Object Game WITJ = Aa! Mitsuketa! Item Sagashi Game WITP = Aha! I Found It! Hidden Object Game WIUE = Inkub WIVE = Space Invaders Get Even WIVJ = Space Invaders Get Even WIVP = Space Invaders Get Even WIYE = Tales of Monkey Island: Chapter 4 - The Trial and Execution of Guybrush Threepwood WIYP = Tales of Monkey Island Chapter 4: The Trial and Execution of Guybrush Threepwood WJ2J = Jinsei Game: Happy Step WJAE = Jam City Rollergirls WJAP = Jam City Rollergirls WJCE = JellyCar 2 WJEE = Jett Rocket WJEP = Jett Rocket WJFE = Gnomz WJFP = Gnomz WJGJ = Jinsei Game WJKE = Jewel Keepers Easter Island WJKP = Jewel Keepers: Easter Island WJPJ = Janken Party Paradise WJSE = Jungle Speed WJSP = Jungle Speed WJWE = Bejeweled 2 WJWP = Bejeweled 2 WK2J = Kappa-kun to Asobou: Kappa-kun to Ota no Shimikai WK3J = Kappa-kun to Asobou: Kappa-kun to Mori no Nakamatachi WK9J = Minna de Asobou Koinu de Kururin WKBE = You, Me, and the Cubes WKBJ = Kimi to Boku to Rittai WKBP = You, Me and the Cubes WKCE = Kyotokei WKCP = Kyotokei WKDE = Pirates: The Key of Dreams WKEJ = RakuRaku Kinen Apori Wii: Kinenka no Isha ga Osheru Nanoka de yameru Houhou WKFE = Kung Fu Funk: Everybody is Kung Fu Fighting! WKFP = Kung Fu Funk: Everybody Is Kung Fu Fighting WKHE = Big Kahuna Party WKIE = The Mystery of Whiterock Castle WKIP = The Mystery of Whiterock Castle WKKE = Party Fun Pirate WKKJ = Kurohige Kiki Ippatsu WKKP = Pop-Up Pirates! WKNJ = Kanken Minna de Waiwai Kanji Nou WKPJ = Kappa Kun to Mori no Nakama Tachi WKQJ = Kentei! TV Wii Minna de Gotouchi Quiz Battle WKRP = Karate Phants: Gloves of Glory WKTE = Contra Rebirth WKTJ = Contra ReBirth WKTP = Contra ReBirth WKUJ = Downtown Nekketsu Dodgeball WKWE = Adventure on Lost Island: Hidden Object Game WKWJ = Item Sagashi * Yousei to Fushigi no Shima WKWP = Adventure on LOST ISLAND: Hidden Object Game WL2E = Target Toss Pro: Lawn Darts WL5E = HB Arcade Disc Golf WL9E = Let's Create! Pottery WLCE = Bingo Party Deluxe WLCJ = Wai Wai Bingo Deluxe WLCP = Bingo Party Deluxe WLDJ = Boku mo Sekai o Sukuitai: Battle Tournament WLEE = Impara con i PooYoo: Episodio 1 WLEJ = Pooyoo to Asobou Episode 1 WLEP = Impara con i PooYoo: Episodio 1 WLGE = HB Arcade Cards WLIE = Liight WLJJ = Boku mo Sekai o Sukuitai: Battle Tournament WLKJ = Okiraku Tennis SP WLLE = Little Tournament Over Yonder WLLP = Little Tournament Over Yonder WLME = La-Mulana WLMJ = La Mulana WLMP = La-Mulana WLNE = Impara con i PooYoo: Episodio 2 WLNP = Impara con i PooYoo: Episodio 2 WLOE = LostWinds: Winter of the Melodias WLOJ = LostWinds: Winter of the Melodias WLOP = LostWinds: Winter of the Melodias WLPE = Lonpos WLPJ = Lonpos WLPP = Lonpos WLTE = LIT WLTJ = School of Darkness WLTP = LIT WLWE = LostWinds WLWJ = LostWinds WLWP = LostWinds WLXJ = Phalanx WLZE = lilt line WLZP = lilt line WM2E = My Little Baby WM2P = My Little Baby WM3E = Manic Monkey Mayhem WM3P = Manic Monkey Mayhem WM4E = Mix Superstar WM4P = Mix Superstar WM5E = MDK2 WM7E = Anima Ark of Sinners WM7P = Anima Ark of Sinners WM8E = Bomberman Blast WM8J = Wi-Fi 8-Nin Battle Bomberman WM8P = Bomberman Blast WM9E = Happy Hammerin WM9J = Tataite Mogupon WM9P = Happy Hammerin' WMAE = Magnetis WMAP = Magnetis WMBE = MaBoShi's Arcade WMBJ = Katachi no Game: Marubou Shikaku WMBP = MaBoShi: L'arcade delle tre forme WMCE = Monsteca Corral: Monsters vs. Robots WMCP = Monsteca Corral: Monsters Vs. Robots WMDE = Madstone WMGE = Mart Racer WMHE = Mouse House WMJE = Dive: The Medes Islands Secret WMJP = Dive: The Medes Islands Secret WMKE = Lead the Meerkats WMKP = Lead the Meerkats WMLE = Major League Eating: The Game WMLJ = Major League Eating: The Game WMME = Muscle March WMMJ = Muscle Koushinkyoku WMMP = Muscle March WMOE = Moki Moki WMOJ = Antaga Mawashite Sukuu Puzzle: Mochimochi Q WMOP = Moki Moki WMRE = Monochrome Racing WMRP = Monochrome Racing WMSE = Enjoy your massage! WMSP = Enjoy your massage! WMWP = Miffy's World WMXE = Max & The Magic Marker WMXJ = Max & the Magic Marker WMXP = Max & the Magic Marker WMZP = Mahjong WN9E = Military Madness: Nectaris WN9J = Nectaris WN9P = Military Madness: Nectaris WNAP = Back to Nature WNEE = Penguins & Friends Hey! That's My Fish! WNEP = Penguins & Friends Hey! That’s my Fish! WNGE = Bang Attack WNKE = Niki - Rock 'n' Ball WNKP = Niki - Rock 'n' Ball WNPJ = Sugusuro Duo: New Pulsar R & V WNSE = Newton Vs The Horde WNVE = Neves Plus WNVJ = Neves Plus WNVP = Neves Plus: Phantheon of Tangrams WNWJ = Hamekomi Lucky Puzzle Wii Return WO6E = Family Pirate Party WO6J = Okiraku Sugoroku Wii WO6P = Family Pirate Party WOAE = Family Glide Hockey WOAJ = Okiraku Air Hockey Wii WOAP = Family Glide Hockey WOBE = Art Style: ORBIENT WOBJ = Art Style: Orbital WOBP = Art Style: ORBIENT WODJ = Ouudaa! WOEJ = Oekaki Logic WOFE = Overflow WOGE = Family Mini Golf WOGJ = Okiraku Putter Golf Wii WOGP = Family Mini Golf WOKE = Karaoke Joysound WOKJ = Karaoke Joysound Wii WOLJ = Othello WOMJ = Sekai no Omoshiro Party Game 2 WOPE = Word Searcher Deluxe WOSE = Family Slot Car Racing WOSJ = Okiraku Slot Car Racing Wii WOSP = Family Slot Car Racing WOTE = Overturn WOTJ = Overturn WOTP = Overturn: Mecha Wars WOXJ = Osu! Exercise Dojo WOYE = Bit Boy!! WOYJ = Bit Man WOYP = Bit Boy!! WOZJ = Kodomo Kyouiku Telebi Wii: Aiue-Oumuzu WP2E = Potpourrii WP2P = Potpourrii WP4E = Learning with the PooYoos: Episode 3 WP4P = Learning with the PooYoos: Episode 3 WP5J = Pokosuka Racing WP6J = Boku wa Plarail Untenshi: Shinkansen Joukikikansha-Hen WP7E = My Planetarium WP7J = Planetarium WP7P = My Starry Night WP9J = Po-Ka-Zu Wii WPAJ = Pokémon Fushigi no Dungeon: Susume! Honoo no Boukendan WPBE = Pub Darts WPBP = Pub Darts WPCE = Doc Louis's Punch-Out!! WPDJ = Chindouchuu!! Pole no Daibouken WPFJ = Pokémon Fushigi no Dungeon: Ikuzo! Arashi no Boukendan WPGE = Snowpack Park WPGJ = Penguin Life WPHJ = Pokémon Fushigi no Dungeon: Mesaze! Hikari no Boukendan WPIE = Pit Crew Panic! WPIJ = Pit Crew Panic WPIP = Pit Crew Panic! WPJE = Pucca's Kisses Game WPJP = Pucca's Kisses Game WPKE = Texas Hold'Em Poker WPKP = Texas Hold'Em Poker WPLE = Planet Pachinko WPNJ = Ponjan WPOJ = Popple to Mahou no Crayon WPPE = Family Table Tennis WPPJ = Okiraku Ping Pong WPPP = Family Table Tennis WPQE = Protöthea WPQP = Protöthea WPRE = Art Style: Cubello WPRJ = Art Style: Cubeleo WPRP = Art Style: CUBELLO WPSE = Pokémon Rumble WPSJ = Ransen Pokémon Scramble WPSP = Pokémon Rumble WPTJ = Fantasic Cube WPUE = Bust-A-Move Plus! WPUJ = Puzzle Bobble Wii WPUP = Puzzle Bobble Plus! WPVE = The Tales of Bearsworth Manor: Chaotic Conflicts WPVJ = Kumanage Battle-Hen: Kiina no Kirai na Aoi Hoseki WPVP = The Tales of Bearsworth Manor: Chaotic Conflicts WPWE = Pong Toss Pro - Frat Party Games WPXJ = Minna de Tobikome Penguin Diving Hooper Looper WPYE = Pallurikio WPYP = Pallurikio WPZE = Bruiser & Scratch WQ4J = Kentoushi FuriFuri Boxing WR2E = Rabbids Lab WR2P = Rabbids Lab WR4P = Rush Rush Rally Racing WR5E = Retro City Rampage WR9E = Mega Man 9 WR9J = RockMan 9: Yabou no Fukkatsu! WR9P = Mega Man 9 WRBE = Robocalypse - Beaver Defense WRBP = Robocalypse - Beaver Defense WRDE = Word Searcher WRDP = Word Searcher WREE = Racers' Islands - Crazy Arenas WREP = Racers Islands Crazy Arenas WRFE = Reel Fishing Challenge II WRFP = Reel Fishing Challenge II WRGE = Rage of the Gladiator WRGP = Rage of the Gladiator WRIE = Rainbow Islands: Towering Adventure! WRIJ = Rainbow Islands: Towering Adventure! WRIP = Rainbow Islands: Towering Adventure! WRJE = Racers' Islands - Crazy Racers WRJP = Racers Islands - Crazy Racers WRLE = FAST Racing League WRLP = FAST Racing League WRNJ = BIT.TRIP RUNNER WRPE = Burn the Rope WRQE = Deer Drive Legends WRQP = Deer Drive Legends WRRE = Robin Hood: The Return of Richard WRRP = Robin Hood: The Return Of Richard WRSE = Step Up WRTE = Robox WRUE = BIT.TRIP RUNNER WRUP = Bit.Trip Runner WRXE = Mega Man 10 WRXJ = RockMan 10 WRXP = Mega Man 10 WRYE = Robox WRYP = Robox WS2J = Saikyou Ginsei Igo WS3E = Silver Star: Chess WS3J = Saikyou Ginsei Chess WS4J = Saikyou Ginsei Mahjong WS5J = Saikyou Ginsei Gomoku Narabe WS6E = Silver Star: Reversi WS6J = Saikyou Ginsei Reversi WS7E = Fantasy Slots: Adventure Slots and Games WS8J = Minna de Taisen Puzzle Shanghai WS9E = Sudoku Challenge! WS9P = Sudoku Challenge! WSAE = Onslaught WSAJ = MadSecta WSAP = Onslaught WSBJ = Sorcery Blade WSCJ = Out of Galaxy: Gin no Koshika WSEJ = Princess Ai Monogatari WSGE = Pop 'Em Drop 'Em Samegame WSGJ = Same Game Wii WSGP = Pop Them, Drop Them SAMEGAME WSHE = Stonekeep: Bones of the Ancestors WSIJ = Saikyou Ginsei Shogi WSJE = Spot The Differences! WSJP = Spot the Differences! WSLE = The Magic Obelisk WSLJ = Shadow Walker WSME = Eat! Fat! FIGHT! WSMJ = Tsuppari Oozumou Wii Heya WSMP = Eat! Fat! FIGHT! WSNE = Sonic The Hedgehog 4 Episode I WSNJ = Sonic the Hedgehog 4: Episode I WSNP = Sonic The Hedgehog 4 Episode I WSRE = Space Trek WSSP = Solitaire WSTJ = Tenshi no Solitaire WSUE = Shootanto: Evolutionary Mayhem WSUJ = Shootanto: Kakohen WSUP = Shootanto: Evolutionary Mayhem WSWE = Swords & Soldiers WSWP = Swords & Soldiers WSXE = Stunt Cars WSXP = Stunt Cars WSYE = Snail Mail WSZE = Sneezies WSZP = Sneezies WT2E = Target Toss: Pro Bags WT3E = Tomena Sanner WT3J = Tomena Sanner Wii WT3P = Tomena Sanner WT8J = Hajite! Block Rush WTBJ = Fantasic Tambourine WTDJ = Tomica Drive WTEE = Tales of Elastic Boy: Mission 1 WTEP = Tales of Elastic Boy Mission 1 WTFE = Bit.Trip: Flux WTFP = Bit.Trip Flux WTHJ = Kaku! Ugoku! Tsukamaeru! Sensei Wii WTIE = Tiki Towers WTKE = TV Show King 2 WTKP = TV Show King 2 WTME = Adventure Island: The Beginning WTMJ = Takahashi Meijin no Bouken Jima Wii WTMP = Adventure Island: The Beginning WTNE = Family Tennis WTNJ = Okiraku Tennis Wii WTPE = Tetris Party WTPJ = Tetris Party WTPP = Tetris Party WTRE = Bit.Trip Beat WTRJ = BIT.TRIP BEAT WTRP = Bit.Trip Beat WTTE = Toki Tori WTTP = Toki Tori WTUE = Tumblebugs 2 WTWP = Fenimore Fillmore: The Westerner WTXE = Texas Hold’em Tournament WTXP = Texas Hold’em Tournament WU2P = Successfully Learning Mathematics Year 3 WU3P = Successfully Learning Mathematics Year 4 WU4P = Successfully Learning Mathematics Year 5 WUBE = Ubongo WUBP = Ubongo WUFE = Drop Zone: Under Fire WUHE = Grill-Off with Ultra Hand! WUIP = Successfully Learning Mathematics Year 2 WUKJ = Unou Kids Okigaru Unou Training WUNE = Uno WUNJ = Uno WUNP = Uno WURE = Urbanix WURP = Urbanix WVBE = Bit.Trip: Void WVBJ = BIT.TRIP VOID WVBP = Bit.Trip Void WVCE = V.I.P. Casino: Blackjack WVDJ = Kodomo Kyouiku TV Wii: Aiue-O-Chan WVFE = Bobby Carrot Forever WVFP = Bobby Carrot Forever WVIE = Violin Paradise WVKE = Water Warfare WVKJ = Bang Bang Kids WVKP = Water Warfare WVOE = Rock N' Roll Climber WVOJ = Rock n' Roll Climber WVOP = Rock'n Roll Climber WVQE = Vampire Crystals WVQP = Vampire Crystals WVSE = Gods Vs Humans WVSP = Gods Vs Humans WVUP = Mr Bumblebee Racing Champion WW2P = Where's Wally? Fantastic Journey 2 WW3P = Where's Wally? Fantastic Journey 3 WWAE = Warmen Tactics WWIP = Where's Wally? Fantastic Journey 1 WWLP = The Will of Dr. Frankenstein WWRE = Excitebike World Rally WWRJ = Excitebike: World Race WWRP = Excitebike: World Challenge WWTE = BurgerTime World Tour WWTP = BurgerTime World Tour WWXE = Paper Wars: Cannon Fodder WWXP = Paper Wars Cannon Fodder WXBE = Ben 10: Alien Force - The Rise of Hex WXBP = Ben 10: Alien Force - The Rise of Hex WXME = Xmas Puzzle WXPE = Paint Splash! WXPP = Paint Splash WXRE = Reel Fishing Ocean Challenge WYIE = escapeVektor: Chapter 1 WYIP = escapeVektor: Chapter 1 WYKJ = Yomi Kiku Asobi WYME = Yummy Yummy Cooking Jam WYMP = Yummy Yummy Cooking Jam WYSE = Yard Sale Hidden Treasures: Sunnyville WYSP = Yard Sale Hidden Treasures Sunnyville WZAE = Zombii Attack WZBP = Cricket Challenge WZGE = Zoo Disc Golf WZHE = My Zoo WZHJ = Animal Life: Doubutsu Fureai Seikatsu WZHP = My Zoo WZIE = Rubik's Puzzle Galaxy RUSH WZIP = Rubik's Puzzle Galaxy: RUSH WZJJ = Simple Series Vol. 5: The Judo WZMJ = Simple Wii Series Vol. 3: The Mahjong WZPE = Zombie Panic in Wonderland WZPJ = Zombie in Wonderland WZPP = Zombie Panic in Wonderland WZZE = The Tales of Bearsworth Manor: Puzzling Pages WZZJ = Kumanage Puzzle-Hen: Piina no Suki na Akai Candy WZZP = The Tales of Bearsworth Manor: Puzzling Pages XAAJ = Eggy XABJ = Aleste XADJ = Yie Ar Kung 2 XAEJ = Space Manbow XAFJ = Metal Gear XAGJ = Road Fighter XAHJ = Penguin Adventure: Yume Tairiku Adventure XAIJ = Quarth XAKJ = Parodius - Tako wa Chikyuu wo Sukuu XALJ = Contra XAMJ = Knightmare: Majou Densetsu XANJ = Parodius 2 XAOJ = Gofer no Yabou: Episode II XAPJ = Metal Gear 2: Solid Snake XAQJ = Salamander XBKE52 = Guitar Hero III Custom : Bullet For Kamelot XH2E = Cave Story (Demo) XH2P = Cave Story (Demo) XH3E = Frobot (Demo) XH4E = Max and the Magic Marker (Demo) XH5E = Ayim And Yet It Moves Demo XH6E = Robox (Demo) XH6P = Robox (Demo) XH7E = Lit (Demo) XH7P = Lit (Demo) XH8E = Lead the Meerkats (Demo) XH8P = Lead the Meerkats (Demo) XHAE = Pokemon Rumble (Demo) XHAP = Pokemon Rumble (Demo) XHCE = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHCJ = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHDE = NyxQuest: Kindred Spirits (Demo) XHDP = NyxQuest: Kindred Spirits (Demo) XHEE = BIT.TRIP BEAT (Demo) XHEJ = BIT.TRIP BEAT (Demo) XHEP = BIT.TRIP BEAT (Demo) XHFE = World of Goo (Demo) XHFP = World of Goo (Demo) XHIE = Fluidity (Demo) XHIP = Hydroventure (Demo) XHJE = Thruspace (Demo) XHJP = Thruspace (Demo) XHKE = Dive: The Medes Island Secret (Demo) XHKP = Dive: The Medes Secret Island (Demo) XHLE = Jett Rocket (Demo) XHLP = Jett Rocket (Demo) XHME = Art of Balance (Demo) XHMP = Art of Balance (Demo) XHQE = Zombie Panic (Demo) XHQP = Zombie Panic (Demo) XHRE = Furry Legends (Demo) XHRP = Furry Legends (Demo) XHVE = BIT.TRIP CORE (Demo) XHVP = BIT.TRIP CORE (Demo) XHWE = BIT.TRIP VOID (Demo) XHWP = BIT.TRIP VOID (Demo) XHXE = BIT.TRIP RUNNER (Demo) XHXP = BIT.TRIP RUNNER (Demo) XHZE = Chronos Twins DX (Demo) XHZP = Chronos Twins DX (Demo) XI2E = Kyotokei (Demo) XI2P = Kyotokei (Demo) XI7E = Liight (Demo) XI8E = Jam City (Demo) XI8P = Jam City (Demo) XIAE = Lilt Line (Demo) XIAP = Lilt Line (Demo) XIBE = Fish em All (Demo) XIBP = Fish em All Demo XICE = Gods vs Humans Demo XICP = Gods vs Humans Demo XIDE = Racers Islands Crazy Racers Demo XIDP = Racers Islands Crazy Racers Demo XIEE = chick chick BOOM Demo XIEP = chick chick BOOM Demo XIGE = Urbanix Demo XIGP = Urbanix Demo XIHE = Gladiator Demo XIHP = Gladiator Demo XIJE = Fast Racing League Demo XIJP = Fast Racing League Demo XIKE = Monsteca Corral Demo XIKP = Monsteca Corral Demo XINE = Learning with the Pooyoos Episode 1 Demo XINP = Learning with the Pooyoos Episode 1 Demo XIOE = Learning with the Pooyoos Episode 2 Demo XIOP = Learning with the Pooyoos Episode 2 Demo XIPE = Learning with the Pooyoos Episode 3 Demo XIPP = Learning with the Pooyoos Episode 3 Demo XIQE = Dart Rage Demo XIRE = Pong Toss Pro Demo XISE = BIT.TRIP FLUX Demo XISP = BIT.TRIP FLUX Demo XITE = Fast Draw Demo XITP = Fast Draw Demo XIUE = Soccer Bashi Demo XIUP = Soccer Bashi Demo XIVE = Mix Superstar Demo XIVP = Mix Superstar Demo XIZE = 3D Pixel Racing Demo XIZP = 3D Pixel Racing Demo XJEE = Aya and the Cubes of Light Demo XJEP = Aya and the Cubes of Light Demo XJGE = Gnomz Demo XJGP = Gnomz Demo XJHE = Paint Splash Demo XJIE = 2 Fast 4 Gnomz Demo XJSE = Karaoke Joysound (Demo) XJSP = Karaoke Joysound Wii (Demo) XNWE52 = Guitar Hero III Custom: Nightwish XXXX02 = Mario Kart Teknik ZXFP52 = Guitar Hero 3 Encore wit-2.31a/share/titles-ja.txt0000644000175000017500000112360712655737310015753 0ustar michaelmichael010E01 = Wii Backup Disc v1.31 301E01 = GameCube Service Disc AFRE01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 8. AMEE01 = New Super Mario Bros. Wii 11 American Revolution AMNE01 = Another Super Mario Bros. Wii AMOR04 = Guitar Hero III Custom : HARDcore APRP01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 2. APRP02 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 3. APRP03 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 6. APRP04 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 7. APRP06 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 5. APRP08 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 1. ASMB01 = Another Super Mario Bros. Wii BEPS01 = Guitar Hero III Custom : Rock n' Metal BOWE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh C3BE52 = Guitar Hero III Custom : Bossenator C3FP52 = Guitar Hero III Custom : Fonx #1 C3KE52 = Guitar Hero III Custom : Kyle Edition #1 C3ME52 = Guitar Hero III Custom : Modern Rock C3PP52 = Guitar Hero III Custom : Modern Pop & Rock C80E52 = Guitar Hero III Custom : Rocks the 80's C80P52 = Guitar Hero III Custom: GH I & 80's C93E = Last Ninja 2 C93P = The Last Ninja 2 C94E = Tower Toppler C94P = Nebulus C95P = Impossible Mission C96E = Summer Games II C96P = Summer Games 2 C97E = California Games C97P = California Games C98P = Paradroid C99P = Uridium C9EP = Winter Games C9GP = Mayhem in Monsterland C9HE = Boulder Dash C9HP = Boulder Dash C9IE = Cybernoid C9IP = Cybernoid C9ME = Pitstop II C9MJ = Pitstop Two C9MP = Pitstop II C9PP = The Last Ninja 3 C9QP = Jumpman C9RP = International Karate + C9SP = Impossible Mission II C9XE = The Last Ninja C9XJ = The Last Ninja C9XP = The Last Ninja C9YE = International Karate C9YJ = International Karate C9YP = International Karate C9ZP = World Games CANE52 = Guitar Hero Custom: NOT Aerosmith but... CCPE01 = Mario Kart Wii Custom: The Master Race CEMU69 = PunEmu CFEE52 = Guitar Hero III Custom : Michael Jackson CG1E52 = Guitar Hero III Custom : Guitar Hero CG1P52 = Guitar Hero III Custom: Guitar Hero I CG2E52 = Guitar Hero III Custom: Guitar Hero II CG2EFL = Guitar Hero III Custom : GH II CG2P52 = Guitar Hero III Custom : Guitar Hero II CG3ECS = Guitar Hero III Custom : ClasSick Edition CG3PCS = Guitar Hero III Custom : ClasSick Edition CGBE52 = Guitar Hero III Custom: Rock Band CGBP52 = Guitar Hero III Custom : Rock Band CGH370 = Guitar Hero III Custom : 70 New Song CGH3IM = Guitar Hero III Custom : Iron Maiden CGH3LM = Guitar Hero III Custom : Legend of Music CGH3ME = Guitar Hero III Custom : Metallica CGH3NE = Guitar Hero III Custom : Nostalgia Edition CGH3WD = Guitar Hero III Custom: WD Custom CGHCE1 = Guitar Hero III Custom : Edition Custom CGHE87 = Guitar Hero III Custom : Guitar Hero I CGHE88 = Guitar Hero III Custom : Guitar Hero II CGHE89 = GH3: Mario CGHE90 = GH3: South Park Edition CGHE91 = GH3: The Red Album CGHE92 = GH3: The Blue Album CGHE93 = GH3: Shake Rattle and Roll CGHE94 = Guitar Hero III Custom : Mars Needs Guitars CGHE95 = Guitar Hero III Custom : Rock Band CGHE96 = Guitar Hero III Custom: Rock'n'Roll Metal CGHE97 = GH3: I Fought The Law CGHE98 = GH3: Sweet Home Alabama CGHE99 = Guitar Hero III Custom : Rock The 80's CGHECB = Guitar Hero III Custom : CBT Edition CGHEDC = Guitar Hero III Custom : Downloadable Content Edition CGHEDM = Guitar Hero III Custom : DAVEMODE CGHEMC = Guitar Hero III Custom : My Chemical Romance CGHENC = Guitar Hero III Custom : NCustom CGHEPH = Guitar Hero III Custom : Puppetz Hero 2 CGHER2 = Guitar Hero III Custom : Rock Band 2 CGHERF = Guitar Hero III Custom : Rockfest 2010 CGHJ52 = Guitar Hero III Custom : Jumapa CGHKY2 = Guitar Hero III Custom : Kyle Edition #2 CGHPF2 = Guitar Hero III Custom : Fonx #2 CGHPF3 = Guitar Hero III Custom : Fonx #3 CGHPF4 = Guitar Hero III Custom : Fonx #4 CGHPF5 = Guitar Hero III Custom : Fonx #5 CGHPNT = Guitar Hero III Custom : Ntorrents Edition CGHRH2 = Guitar Hero III Custom : Rocks Hits Custom v2 CGHSKV = Guitar Hero III Custom : Starchildren & Kneos Version CGIE52 = Guitar Hero III Custom : Iron Maiden CGSP52 = Guitar Hero III Custom : Spanisk Custom by KuXu CGVECD = Guitar Hero Aerosmith Custom : AC/DC Edition CGVEM2 = Guitar Hero Aerosmith Custom : Mini Concerts Edition 2 CGVEMC = Guitar Hero Aerosmith Custom : Mini Concerts Edition CGVEUV = Guitar Hero Aerosmith Custom : Ultimate Video Game Hero CKBE88 = Mario Kart Wii Black CLAPSI = Sing IT: Clásicos CMDE52 = Guitar Hero III Custom: Megadeth CMKE01 = Mario Kart Wii Dragon Road CS0P00 = StarSing : Bollywood v2.0 CS0PZZ = StarSing : Pop Part. I v2.0 CS1P00 = StarSing : Country v2.0 CS1PZZ = StarSing : Pop Part. II v2.0 CS2P00 = StarSing : Placebo v2.0 CS2PZZ = StarSing : '80s Volume 1 v2.0 CS3P00 = StarSing : Volume 1 v2.0 CS3PZZ = StarSing : Anthems v2.0 CS4P00 = StarSing : NRJ Music Tour v2.0 CS4PZZ = StarSing : Legends v2.0 CS5P00 = StarSing : '70s v2.1 CS5PZZ = StarSing : Songs For My Jedi v1.0 CS6P00 = StarSing : Douce France v2.0 CS6PZZ = StarSing : Amped Part. I v2.0 CS7P00 = StarSing : Red Hot Chili Peppers v1.0 CS7PZZ = StarSing : Amped Part. II v2.0 CS8P00 = StarSing : '90s Volume 1 v2.0 CS8PZZ = StarSing : Disco-Funk v1.0 CS9P00 = StarSing : '80s Volume 2 v2.1 CS9PZZ = StarSing : Pop Hits 9 v1.0 CSAP00 = StarSing : '80s Volume 3 v2.1 CSAPZZ = StarSing : Best of Goldman v1.0 CSBP00 = StarSing : '90s Volume 2 v2.1 CSCP00 = StarSing : Michael Jackson v2.2 CSCPZZ = StarSing : Hottest Hits v2.0 CSDP00 = StarSing : Rocks! Volume 2 v2.0 CSDPZZ = StarSing : Boy Bands Vs. Girl Bands v2.0 CSEP00 = StarSing : Pop Hits 5 v1.3 CSFP00 = StarSing : Pop Hits 6 v1.3 CSGP00 = StarSing : Chansons Magiques de Disney v1.4 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = StarSing : Pop Hits 7 v1.3 CSJP00 = StarSing : Après-Ski Party v1.2 CSKP00 = StarSing : ABBA v1.1 CSLP00 = StarSing : Queen v2.0 CSMP00 = StarSing : Electro-Dancefloor Volume 1 v2.0 CSNP00 = StarSing : Electro-Dancefloor Volume 2 v2.0 CSOP00 = StarSing : Electro-Dancefloor Volume 3 v2.0 CSPP00 = StarSing : Linkin Park Live at Webster Hall New York v2.0 CSQP00 = StarSing : Muse v2.0 CSRP00 = StarSing : International Volume 3 v1.0 CSSP00 = StarSing : Après-Ski Party 2 v2.0 CSTP00 = StarSing : Depeche Mode v2.0 CSUP00 = StarSing : Pop Hits 8 v1.3 CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = StarSing : Génériques TV v2.0 CSYP00 = StarSing : Electro-Dancefloor Volume 4 v2.0 CSZP00 = StarSing : Glee Volume 1 v2.1 CT0P00 = StarSing : Pop Part. I v2.1 CT1P00 = StarSing : Pop Part. II v2.1 CT2P00 = StarSing : '80s Volume 1 v2.1 CT3P00 = StarSing : Anthems v2.1 CT4P00 = StarSing : Legends v2.1 CT5P00 = StarSing : Songs For My Jedi v2.0 CT6P00 = StarSing : Amped Part. I v2.1 CT7P00 = StarSing : Amped Part. II v2.1 CT8P00 = StarSing : Disco-Funk v2.0 CT9P00 = StarSing : Pop Hits 9 v1.3 CTAP00 = StarSing : Best of Goldman v2.0 CTBP00 = StarSing : Glee Volume 3 v1.0 CTCP00 = StarSing : Hottest Hits v2.0 CTDP00 = StarSing : Boy Bands Vs. Girl Bands v2.1 CTEP00 = StarSing : R&B v2.0 CTFP00 = StarSing : Rock Ballads v2.0 CTGP00 = StarSing : Take That v2.0 CTHP00 = StarSing : Summer Party v2.0 CTIP00 = StarSing : Rocks! Part. I v2.0 CTJP00 = StarSing : Rocks! Part. II v2.0 CTKP00 = StarSing : Pop Hits v2.0 CTLP00 = StarSing : Britney Spears v2.0 CTMP00 = StarSing : Shakira v1.1 CTNP00 = StarSing : Pop Hits 10 v1.3 CTOP00 = StarSing : The Beatles Volume 2 v2.0 CTPP00 = StarSing : Motown v2.0 CTQP00 = StarSing : Glee Volume 2 v1.0 CTRP00 = StarSing : International Volume 1 v1.0 CTSP00 = StarSing : International Volume 2 v1.0 CTTP00 = StarSing : '80s Volume 4 v1.0 CTUP00 = StarSing : Rihanna v1.0 CTVP00 = StarSing : Lady GaGa v1.0 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CVLE38 = Mario Kart: Victory Lane D01A = Wiimmfi Patcher D02A = Engine02 D03A = BrainSlug Wii D05A = Bash the Castle D06A = Bit Streamer D07A = BlisterBall D08A = Blob Wars: Metal Blob Solid D09A = Blobby Volley 2 Wii D0AA = MPlayer Wii Youtube D0BA = MPlayer Wii D0CA = Ocarina D0DA = MPlayer Dvdlib Edition D0EA = MPlayer Wii By Rodries D0FA = Signcheck D0GA = GCBoot D0HA = Memview D0IA = IOS Check D0JA = Open Sram Lang Modifier D0KA = WiiBServer D0LA = LibWiiGameLoad D0MA = Wiireader D0NA = lsusb D0OA = Move The Pussy Demo D0PA = Wiilax Minitro D0QA = Fission Engine Project D0RA = GRRLIB 4.0 Demo D0SA = OSDM-BAR D0TA = Homebrew Menu Demo D0UA = LibMii Example D0VA = The Scary Demo D0WA = Starfield Demo D0XA = Wire3D Demo D0YA = Something D0ZA = GRRLIB 4.3.0 Promote Intro D10A = cIOSFix D11A = ASCII Pong D12A = BuscaWiinas D13A = C-Dogs SDL D14A = Castles of Dr. Creep D15A = Wii Shop and IOS51 Installer D16A = Centipede D17A = Cobra Arcade D18A = Dump Espresso OTP D1LA = Blind D1PA = 1bit Invaders D1RA = MinimaLauncher D21A = Xroar D22A = cIOS222 installer D24A = 24 Points D26A = Wii2600 D29J01 = Monthly Nintendo Shop Demo May 2002 D2AA = Wii Deadly Cobra D2AJAF = みんなて冒険!ファミリートレーナー 体験版 D2BA = Jump N Bump D2CA = Wiiflow Advanced D2DA = Box2D Balls D2EA = Wiiflow Start Configurator D2GA = Wadinstallerbatch D2QA = Sqrxz 2 D2SE18 = Deca Sports 2 (Demo) D2ZA = Console Shooter D32J01 = Monthly Nintendo Shop Demo June 2002 D33A = Time Frack 2D D33J01 = Monthly Nintendo Shop Demo July 2002 D34J01 = Monthly Nintendo Shop Demo July 2002 D36A = cIOS36 installer D37A = WiiConnect D38A = cIOS38 installer D38J01 = Monthly Nintendo Shop Demo September 2002 D39A = Ctr Gts DacoTaco Edition D3DA = Time Frack 3D D3DE18 = Deca Sports 3 (Demo) D3JA = NDSLoad D3KA = Button Tester D3LA = BootMii Booter D3MA = Custom NAND Loader D3OA = cIOS USB 2 Installer D3QA = Sqrxz 3 D3WA = Warheads D40A = Luigi and the Island of Mystery D42A = ArianeB D43A = Wii Virtual Jaguar D43E01 = The Legend of Zelda: Ocarina of Time / Master Quest D43J01 = セルタの伝説 時のオカリナ GC D43P01 = The Legend of Zelda: Ocarina of Time / Master Quest D43U01 = The Legend of Zelda: Ocarina of Time (Bonus Disc) D43W01 = The Legend of Zelda: Ocarina of Time / Master Quest D46A = Newo Escape D4BE08 = Resident Evil 4: Preview Disc D4BP01 = Resident Evil 4: Bonus Disc D4BP08 = Resident Evil Four Preview Disc D4BU01 = Resident Evil 4: Bonus Disc D4KA = Aleph WOne D4LA = Yawnd D4NA = Disc Dumper D4PA = DVD Dumper D4QA = Sqrxz 4 D4SA = USB Loader GUI FX D51A = IOS51 Update D52A = cboot252 D53J01 = Monthly Nintendo Shop Demo May 2003 D54A = cIOS Patchmii Installer D55A = PID Extractor D55J01 = Interactive Disc Catalog Summer 2003 D56A = Shopping Channel Fixer D56E01 = Interactive Multi-Game Demo Disc - Version 35 D56J01 = Pokémon Channel (Bonus Disc) D57A = Hijill GUI D57E01 = Interactive Multi-Game Demo Disc - Version 34 D58A = Priiloader HacksDen Edition D58E01 = Interactive Multi-Game Demo Disc - Version 33 D59A = TheUntitledProject D59E01 = Interactive Multi Game Demo Disc Version 32 D5AA = Alarmii D5BA = WiiFont D5CA = cLoader D5FA = Txted Mod D5HA = Title Lister D5JA = Tidy Up D5LA = Switchtosneek D5RA = Botoning D60A = Ultimate USB Loader D61A = Sand Traps Extra Levels D62A = Newo Puzzle D62E01 = Interactive Multi-Game Demo Disc - Version 31 D63A = 3D Maze D63E01 = Interactive Multi-Game Demo Disc - Version 30 D64A = Wii64 Emulator D64E01 = Interactive Multi-Game Demo Disc - Version 29 D65A = Transitory Vectors D65E01 = Interactive Multi Game Demo Disc Version 28 D65P01 = Interactive Multi-Game Demo Disc - December 2002 D66A = Secret Maryo Chronicles D66E01 = Interactive Multi-Game Demo Disc - Version 27 D67E01 = Interactive Multi-Game Demo Disc - Version 26 D67J01 = Monthly Nintendo Shop Demo December 2003 D68A = TheyDoNotDie2 D68E01 = Interactive Multi-Game Demo Disc - Version 25 D68J01 = Monthly Nintendo Shop Demo January 2004 D69A = IOS60 Installer D69E01 = Interactive Multi-Game Demo Disc - Version 24 D6AA = Pussieloader D6BA = Updatersafe D6DA = Savegame Manager Mod D6EA = Sneek FS Dumper D6FA = Anytitle Deleter Mod D6HA = AnyTitle Deleter Mod DB D6IA = DVD Info D6KA = AnyTitle Deleter DB D6MA = Banana Saves D6OA = DOP Shop D6QA = BootMii Checker D6TA = MiiPlayer D70A = Dungeon Crawl Stone Soup D71A = Panic in the Mushroom Kingdom D72A = Bfi D72E01 = Interactive Multi-Game Demo Disc - Version 23 D73E01 = Interactive Multi-Game Demo Disc - Version 22 D74E01 = Interactive Multi Game Demo Disc Version 21 D75E01 = Interactive Multi-Game Demo Disc - Version 20 D76E01 = Interactive Multi-Game Demo Disc - Version 19 D77E01 = Interactive Multi-Game Demo Disc - Version 18 D77P01 = Interactive Multi Game Demo Disc April 2006 D78A = Wii7800 D78E01 = Interactive Multi-Game Demo Disc - Version 17 D78J01 = Interactive Multi-Game Demo Disc - May 2004 D78P01 = Interactive Multi-Game Demo Disc - October 2005 D79A = Newo Defence D79E01 = Interactive Multi-Game Demo Disc - Version 16 D79P01 = Interactive Multi Game Demo Disc May 2005 D7AA = Action Replay Loader D7DA = Depanbrew D7GA = Channel Loader D7KA = RawkSD D7LA = Rumbler D7MA = IS Wad D7OA = Recovery Manager D7QA = Reboot D7SA = Childproof USB Loader D7TA = Power Mii Off D7VA = Power Off D7WA = Abbaye des Morts D7XA = NuGaSa D7YA = Resistor D81A = Newo Asteroids D82A = cIOS Patchmii Installer with Korean Disc Support D82E01 = Interactive Multi-Game Demo Disc - Version 15 D82J01 = Monthly Nintendo Shop Demo July 2004 D82P01 = Interactive Multi Game Demo Disc April 2005 D83A = Wii MFE Port D83E01 = Interactive Multi-Game Demo Disc - Version 14 D83P01 = Interactive Multi Game Demo Disc February 2005 D84A = Gambol D84E01 = Interactive Multi-Game Demo Disc - Version 13 D84P01 = Interactive Multi-Game Demo Disc - November 2004 D85A = Wii EDuke32 D85E01 = Interactive Multi-Game Demo Disc - Version 12 D85P01 = Interactive Multi Game Demo Disc July 2004 D86A = Firewii D86E01 = Interactive Multi-Game Demo Disc - Version 11 D86P01 = Interactive Multi-Game Demo Disc - May 2004 D87A = Tick Tock Boat Race D87E01 = Gamecube Preview Disc D87P01 = Interactive Multi-Game Demo Disc - March 2004 D88A = Quasi88 D88E01 = Interactive Multi-Game Demo Disc - Version 10 D88P01 = Interactive Multi-Game Demo Disc - November 2003 D89A = Wiimote Led Flasher D89E01 = Interactive Multi-Game Demo Disc - Version 9 D89J01 = クラフニンテントー オリシナルeカタロク 2004 D89P01 = Interactive Multi-Game Demo Disc - September 2003 D8AA = Front SD ELF Loader D8BA = GameCube Homebrew Launcher D8CA = WiiSend D8DA = Menu D8EA = Gecko Loader D8FA = Shell D8JA = Calc D8QA = Brick OS D8RA = Lotto D8SA = Brainf**k D8UA = TCPLoader D8VA = Snort48 D8WA = Wiisixty D8XA = All In One Emuloader D8YA = Swissloader D8ZA = Tick Tock Zombie Shooter D91A = Jenny Thinks D92E01 = Interactive Multi-Game Demo Disc - Version 8 D92P01 = Interactive Multi Game Demo Disc June 2003 D93A = Wiiraytracer D93E01 = Interactive Multi-Game Demo Disc - Version 7 D93P01 = Interactive Multi Game Demo Disc April 2003 D94A = Nowhere D94P01 = Interactive Multi-Game Demo Disc - February 2003 D95A = RenderMii D95P01 = Interactive Multi-Game Demo Disc - December 2002 D96A = WiiMotionDemo D96P01 = Interactive Multi-Game Demo Disc - November 2002 D97A = Fire D98A = InstallMii D99A = System Channels Updater D9BA = Info D9CA = cIOS USB2 Installer D9FA = Dump D9GA = Wad Creator D9HA = WakeMiiUp D9IA = SNES9xGX Channel Installer D9KA = Txtread D9LA = Forwarder DA1A = Radianwars DA2A = Moonstone DA3A = Wiitch DA4A = arCard+Wii DA6A = Automatii DA7A = Astronomy DA8A = Beer Belly Bill 3 Grillieren DA9A = Achtung Wii Kurve DAAA = WiiNetPuzzle DAHA = Accio Hacks DALJ01 = Dairantou Smash Brothers DX (Demo) DAMA = MegaCodeDownloader DAPA = Map Maker DARA = Anyregion Changer DASA = Aspirin DASE4Q = Disney Epic Mickey (Demo) DATA = AnyTitle Deleter DATD = AnyTitle Deleter DAUEPZ = Country Dance (Demo) DAVA = Avoidance DAVE01 = Mystery Case Files: The Malgrave Incident (Demo) DAWA = Abuse Wii DAXE01 = The Legend of Zelda: Skyward Sword (Demo) DAXP01 = The Legend of Zelda: Skyward Sword (Demo) DB0A = Spitits DB2A = Mad Bomber DB3A = Squarez DB5A = mapbf DB7A = Blacks Dash DB9A = Robi DBAA = BowFishing Action DBBA = Balance Board Tools DBBE18 = Beyblade: Metal Fusion - Battle Fortress (Demo) DBCA = BootMii Configuration Editor DBDA = Bluedump DBGA = BlastGuy DBIA = Boot It DBKE69 = Boom Blox (Demo) DBKP69 = Boom Blox (Demo) DBLA = BlueMSX-wii DBMA = BootIOS DBPA = Balance Board Pro DBRA = WiiBrowser DBSA = BrawlStats DBTA = Bolt Thrower DBUA = Buttoncast DBWA = Reversmii DBXA = Biniax 2 DBZJ08 = Biohazard Zero: Trial Edition DC6A = Frodo (C64-network.org) DC7A = Calculate DCAA = Wiicasino DCAE18 = Calling (Demo) DCBA = CascadeBeneath DCCA = Christmascountdown DCDA = cIOS Downgrader DCEA = Cheat Manager DCFA = Coverfloader DCGA = Ctr-Gcs DCHA = Wiichatter DCHEAF = We Cheer (Demo) DCHJAF = WE CHEER DCIA = cIOS Installer DCLA = Configurable USB Loader DCMA = Wiicm DCNA = Nandclean DCOA = Connectmii DCPA = Splatter Castle DCRA = CosmoRaketti DCSA = Cert.sys Extractor DCTA = Christmas-Type Adventure Time DCUA = cIOS Uninstaller DCVA = WiiColEm DCWA = WiiMC Channel Installer DCXA = ComixChannel DCYA = Cylinder Dodge DD2A = Double Dash Wii DD2P41 = Just Dance 2 (Demo) DD3A = Dario DD5A = Dcvg5k DD9A = Dungeons DDAA = Darkcorp DDBA = DOSBox Wii DDCA = d2x cIOS Installer DDDA = Disk Drive Lighter DDEA = WiiModder DDFA = Defendguin DDHA = Homebrew Disc Launcher DDIA = DiiLC DDLA = Disc Loader DDMA = DragonMedia Player DDOA = DOP-Mii DDRA = Wii Duplicated Channel Remover DDSA = DeSmuME DDVA = Devolution DDWA = DOP Mii Wiibrew Edition DDWE18 = Lost in Shadow - Press Disc (Demo) DDWX18 = Lost In Shadow - Best Buy (Demo) DE2A = Doubledown DE5A = Pictogrid DE7A = Commander Keen DE9A = Wii Bash DEAA = Headtracking Demo DEBA = Pong Breaker DEDA = Txted DEEA = Eeeek Eeeeek Hooooook DEFA = Fuse DEHA = Chess DEME = PunEmu DEPA = Pacman DERA = Elongated Reptile DETA = MPlayer TT DEWA = Wii Exhibit DEZP8P = Billy Hatcher and the Giant Egg (Demo) DF0A = Mini FSToolbox DF2A = Da ShAmAn DF3A = Briickout DF4A = Star Catching DF5A = Strobe Alarm Clock DF6A = Wii Quizz DF7A = Chatnoir DF8A = Trinary DF9A = Chunk Munch DFBA = Fsbrowser DFEA = FlipEm DFFA = Simple fs dumper DFGA = Smashing! DFIA = Fceugx Channel Installer DFLA = Starfall DFMA = FMyLife DFRA = FridgeMagnets DFSA = Fstoolbox DFTA = FTPii DFUA = Fuse DG3A = Giddy 3 DG7A = WiiPeng DG8A = Abusimbel Deluxe DG9A = Garnatron DGBA = Geexbox DGCA = GameCube Backup Launcher DGEA = GeckoOS DGFA = Guitars On Fire DGGA = Wii Rick Dangerous DGIA = Gravitii DGKA = ProjectGMC DGMA = GCMM DGPA = Genesis Plus DGSA = Shooting Gallery DGWA = Goodbye World DGXA = GxGeo DH7A = Harmony's Nightmare DH9A = Prophecy DHBA = Homebrew Browser DHCA = Hero City DHDA = Hidtest DHEA = Helium Boy DHFA = Homebrew Filter DHGA = HuGo-GX DHHA = HHexen DHHJ8J = 平野綾 Premiumムーヒーティスク from 涼宮ハルヒの激動 DHIA = HackMii Installer DHKE18 = Help Wanted: 50 Wacky Jobs (Demo) DHLA = Heli DHMA = CharioMan DHSA = Homebrew Sorter DHTA = Hatari DHWA = We are nowhere DHXA = Hex DI5A = Tanks DI7A = ExistenzE DI8A = Ios58 Installer DI9A = Barrage DIBA = Revolt of the Binary Couriers DICA = Cubic DIEA = EasyIOS DIGA = Categorii DIIA = iiii DIMA = Inspectmii DINA = Mii Installer DIRA = Ironing Maiden DISA = Wii Supersonic DITA = IOS236 Installer DIXA = cIOSx installer DIYP01 = New Super Mario Bros. Wii 0-4 D.I.Y. DJAA = Arcade Jigsaw DJCA = Wii JellyCar DJFA = Joyflow DJJA = Jumping Jack DJQA = Jewel Quest DJWA = Wii System Menu DJZA = JzintvWii DK1A = Karaokii DK3A = Sketch Fight DK4A = Drawingbox DK6A = King of Fighters: Flames of Courage DK6E18 = Marble Saga Kororinpa (Demo) DK6J18 = コロリンハ2 -アンソニーと黃金のひまわりのタネ- DK7A = Uschtris DKBA = RPG Baker DKCA = Tick Tock Car Race DKCP01 = Darky Kart Riivo DKDA = Darkcube DKHA = Katakana and Hiragana Practice DKKA = Koreankii DKOA = Komopong DKPA = Kidspaint DKSA = Wii Stpp DKTA = Taiko DKWA = Kurushi DKWE01 = Darky Kart Wii Vol. 1 DKWE02 = Darky Kart Wii Vol. 2 DKWE03 = Darky Kart Wii Vol. 3 DKWE04 = Darky Kart Wii Vol. 4 DL3A = Ballion DL4A = LPairs DL5A = Gameload DL7A = LabClone DLBA = My Little Ball DLCA = Dance Clone DLDA = Devilock DLEA = Preloader DLFA = LifeMii DLGA = Gravity Glider DLIA = WiiMod Lite DLLA = Lolicopocalypse DLMA = LoadMii DLNA = Lander DLOA = Lightsout DLPA = Lopan DLSE64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLSP64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLTA = Leveltool DLUA = WiiLauncher DLXA = Linux Installer DLZEPW = Super Smash Bros Phoenix Wings DM0A = Pom DM5A = Missle Command DM7A = Matches DM9A = Checkregion DMAA = Mame Wii DMBA = Multiboot DMCA = Cleanrip mod DMDA = WiiMod DMEA = Mii Extractor DMFA = WiiMednafen DMGA = Mighty Channels DMHA = NanoMechas DMHE08 = Monster Hunter Tri (Demo) DMHJ08 = Monster Hunter Tri (Demo) DMIA = DIOS MIOS Booter DMJA = Mahjongg Wii DMKE01 = Mario Kart Wii 2 DMLA = Mighty Loader DMMA = MyMenuify DMNA = Magic Number DMOA = cMIOS installer DMPA = MPlayer CE DMRA = MIOS Patcher DMSA = ShutMiiReboot DMSP4Q = SingItStar: Best of Disney DMTA = Metronome DMUA = Multi Mod Manager DMWA = Wakemiiup DN0A = Thatother DN7A = Alien Breed DN9A = Point and No Click DNAA = Ncard DNCA = NeoCD-Wii DNDA = Nintendont DNEA = Gravity DNGA = NeoGamma Launcher DNHA = Headings DNIA = Bugin DNKA = Neko Project II DNMA = Newo Model Viewer DNNA = Save installer DNOA = O.T.T.F. DNPA = NeoPopWii DNRA = Newo Runner DNSA = Newo Shooter DNTA = NeoTanks DNUEDA = Naruto Clash of Ninja 2 (Demo) DNWA = Nowell DO2A = O2EM DO3A = Three Point O DO4A = MTP DO5A = Planet Hively DO6A = Mini MP3 Player DOCA = Code Downloader DOEA = ShowTest DOGA = Wii Maze of Galious DOHA = HighOctane DOIA = Neogamma IOS Switcher DOMA = Mole DONA = Offline Network Enabler DOOA = Doom DOPA = PowerCheck DORA = Rebooter DOTA = OpenTTD DP0A = Starplit DP1A = Italian Parking DP2A = Pong2 DP3A = Inkpoly DP4A = Piirates DP5A = Pix DP6A = IOS36 patcher DP7A = Brawl+ Updatifier DP8A = Timeless DP9A = Alien Puzzle Wii DPAA = WiiPaintBall DPBA = Priibootergui DPCA = Cherophobe DPEA = PieChart DPFA = Pwiictogrid DPGA = Pingus DPIA = Patched IOS 80 Installer for vWii DPIE18 = Oops! Prank Party (Demo) DPJA = Project M Launcher DPKA = Physco DPLA = Priiloader DPMA = Music Painter DPNA = RPG Pineapple Apocalypse DPNP08 = P.N.03 (Promo) DPOA = Postloader DPPA = Project Panic DPRA = PlasmaRaketti DPSA = Playstats DPTA = Two Point Five DPVA = Pattview DPWA = Pimp my Wii DQ1A = Q1rev DQ2A = Q2rev DQ6A = Light DQ7A = Quake DQ8A = LuaFWii DQ9A = Wiihttpd DQAJK2 = アクエリアスヘースホール 限界の、その先へ DQAJSC = アクエリアスヘースホール 限界の、その先へ DQBA = Bible Quiz DQCA = Q2ctfrev DQGP69 = MySims Racing (Demo) DQRA = Qrevpak DQWA = Quakegx DR0A = Rokoban DR1A = Wii Whiteboard DR3A = Death Star Run DR4A = Rock Paper Scissors DR5A = Briicks DR6A = Reader DR7A = RockBlueMet DR8A = Operation DR9A = PixelPlot DRAA = RetroArch-Wii DRBA = Rock Band 2 Wad Installer DRCA = Wiicross DRDA = Drawmii DREA = Wiirecipe DRFA = Radiofeeds DRGA = Reggie Dumper DRIA = Cleanrip DRKA = Robotfindskitten DRMA = Mr. Sitwell DRME18 = Rooms: The Main Building (Demo) DROA = SlimeRoll DRP22Q = SingItStar Deutsch Rock-Pop Vol. 2 DRPA = Marcos Lopez Part II DRRA = Riiper DRSA = RedSquare DRTA = Tetris Custom DRUA = Radiofeeds Updater DRVA = Residualvm DRWA = Winterman DRZA = Zerace DS0A = ShootMii DS1A = Another Rock Paper Scissors DS2A = Swingball2 DS3A = Senet DS4A = Sar DS5A = Snaketwo DS6A = Scogger DS7A = Swing Ball DS8A = Scape DS9A = Minesweeper DSAA = Schism Tracker DSBA = SpaceBubble DSCA = Softchip DSDA = Superdump DSEA = Settings Editor GUI DSFA = Sciifii DSFE7U = Muramasa: The Demon Blade (Demo) DSGA = Savegame Manager DSHA = SysCheck HacksDen Edition DSIA = Simple IOS Patcher DSKA = SockDreams DSLA = Wii Stella DSMA = Sega Master System Plus DSNA = SNES9xGX DSOA = Bermuda Syndrome Wii DSPA = Super Star Shooter DSQA = Sqrxz DSRA = Wiistrobe DSRJ8P = ソニックと秘密のリンク (Demo) DSSA = RSSMii DSTA = Wii Solitaire DSUA = Super Mario War DSVA = scummVM DSWA = SuperTux Wii DSXA = Super Pixel Jumper DSYA = Syscheck DT0A = Tower Defense DT1A = Turnip DT2A = Matching Cards DT3A = Bichejos DT4A = Soduku DT5A = Poker DT6A = Simon DT7A = TheyDoNotDie DTAA = Wii Tac Toe DTCA = The Catachthonic DTDA = Descent DTEA = Topedit DTFA = Triiforce DTHA = Heretic DTIA = Wiitriis DTJA = Trojan DTKA = Tick Tock Tank Fight DTLA = TailTale DTLX01 = Action Replay DTMA = Tetrominos DTNA = Tunnel DTOA = Tong DTPA = Paintown DTRA = Trucha Bug Restorer DTSA = Desert Bus DTTA = Toddtris DTWA = Wiitweet DTXA = Texttris DU0A = Dumpmiinand DU7A = Uno DU8A = RealWnd DU9A = Harmonium DUAA = UAE Wii DUAP01 = DU Super Mario Bros. : Anniversary Edition DUBA = Multibu DUCE01 = Kustom Mariokart Wii DUDA = Duck Hunt DUDE01 = New Super Mario Bros. Wii Scooby-Doo! Hack DUGA = Guitar Fun DUIA = ChessUI DULA = USB Loader GX DUNA = Uname DUSA = bootOperaModUSB DUTG = DU Tag Channel DUWA = Waninkoko's USB Loader DV0A = Remove Preloader Hacks DV3A = DVD Browser DV9A = SensorMii DVDA = cIOS DVD Dumper DVGA = The Video Game DVHA = Horror Vacui DVIA = Vbagx Channel Installer DVJP08 = Viewtiful Joe (Promotional demo) DVLA = Vigiroth le livreur DVNA = Wiivnc DVOA = Vectoroids DVPA = Progressiveswitch DVSA = GameCube Saver DVXA = VectrexWii DW1A = Intuitwars DW5A = Marel DW6A = Wiicraft DW7A = Ravewild DWAA = WiiApple DWBA = WiirtualBoy DWCA = WiiFlow Channel Installer DWDA = Wiiflow Banner Downloader DWEA = WiiEarth DWEPA4 = Pro Evolution Soccer 2008 (Demo) DWFA = WiiFlow DWHA = WiiHandySDL DWJA = Jewel DWKA = Wiibreaker DWLA = Wii-Linux DWMA = WAD Manager DWNA = Nwancat DWPA = WiiPhysics DWRA = WiiRadio DWSA = WiiSX DWTA = Wiituka DWUA = Wufe DWWA = Winters End DWXA = WiiXplorer DX3A = Midway Space Invaders Emulator DX4A = Brawl DX Launcher DX5A = MP3+G Player DX6A = Build Blocks DX7A = Roxoptr2 DX8A = Hexen DX9A = Sand Traps DXBA = Wii X Ball DXCA = CorsixTH DXDA = DVDX DXEA = SDExplorer DXHA = Texas Holdem Poker DXIA = Piixelator DXLA = WiiXL DXNA = bootnetflix DXPA = Xeempongwii DXQA = Quadrax DXSA = Save extractor DXSE18 = Deca Sports (Demo) DXTA = The Lone Pixel DXXA = Hexxagon DXYA = xyzzy DXZA = Megazeux DY5A = Darkcorp Lite DY6A = Liqwiid Wars DY9A = TetWiis DYAA = Syasokoban DYBA = Yabause DYCA = Tetricycle DYEA = Epilepsii DYGA = Yog DYHA = Hypno Blast DYIA = Chippy DYMA = YAWMM DYOA = Toy Wars DYPA = PongYourWii DYSA = Shiny tank DYTA = Newo Tokyo DYUA = UFO Racer DYWA = Yahtzwii DYYA = System Setting Replace Tool DZ0A = Eject DZ7A = SameGame DZ8A = WiiMPC DZ9A = Teeter Torture DZDE01 = The Legend of Zelda: Twilight Princess (Demo) DZDP01 = The Legend of Zelda: Twilight Princess (Demo) DZIA = Ziip DZPA = Puzsion DZQA = Quizz DZRA = Rezerwar DZSA = Szigoy DZXA = FBZX Wii DZYA = Snake Two DZZA = OpenJazz E52E = 1942 E52J = 1942 E52P = 1942 E53E = Black Tiger E53J = Black Dragon E53P = Black Tiger E54E = Ghosts 'n Goblins E54J = Makaimura E54P = Ghost'n Goblins E55E = Commando E55J = Senji no Ookami E55P = Commando E56E = Exed Exes E56J = Exed Eyes E56P = Exed Exes E57E = SonSon E57J = Son Son E57P = SonSon E58J = Mr. Do! E59J = Karate Dou E5AJ = Ikki E5BJ = Shanghai E5VJ = Renegade E5WE = Wonder Boy in Monster Land E5WJ = Wonder Boy in Monster Land E5XJ = Puyo Puyo Tsu E5YJ = Puyo Puyo E5ZE = Super Hang-On E5ZJ = Super Hang-On E62E = Space Harrier E62J = Space Harrier E62P = Space Harrier E63E = Shinobi E63J = Shinobi Virtual Arcade E63P = Shinobi E64J = Rolling Thunder 2 E65J = Valkyrie no Densetsu E66J = Ordyne E67J = Dig Dug E68J = Galaga E69J = Baraduke E6AJ = Moon Cresta E6BJ = Crazy Climber E6CJ = Rompers E6DJ = Toy Pop E6EJ = Libble Rabble E6FJ = Galaxian E6GJ = Namco Quester E6HJ = Face Off E6IJ = Trink Force E6JJ = Bakutotsu Kijuutei: BaRaDuKe II E6KJ = Chouzetsu Rinjin - Berabow Man E6LJ = Marchen Maze E6ME = Tecmo Bowl E6MJ = Tecmo Bowl E6NE = Solomon's Key E6NJ = Solomon no Kagi E6NP = Solomon's Key E6OJ = Bomb Jack Arcade E6PE = Ninja Gaiden E6PJ = Ninja Ryukenden Arcade E6PP = Ninja Gaiden E6QE = Rygar E6QJ = Argos no Senshi E6QP = Rygar E6SJ = New Rally-X E6VE = Zaxxon 3-D E6VJ = Zaxxon E6VP = Zaxxon E6WE = Golden Axe E6WJ = Golden Axe E6WP = Golden Axe E6XE = Altered Beast E6XP = Altered Beast E6YJ = Space Invaders E6ZE = Starforce E6ZJ = Star Force E6ZP = Star Force E72J = Starblade E73E = Mappy E73J = Mappy E73P = Mappy E74J = Cosmo Gang the Puzzle E75J = Genpei Toumaden E76J = Emeraldia E77J = The Return of Ishtar E78J = Solvalou E79E = Gaplus E79J = Gaplus E79P = Gaplus E7AJ = Grobda E7BJ = Dig Dug II E7CJ = Bosconian E7EJ = Dragon Buster E7FJ = Dragon Saber E7GJ = Dragon Spirit E7HJ = Xevious E7IJ = Finest Hour E7JJ = Knuckle Heads E7KJ = Pac-Mania E7LJ = Cosmo Gang the Video E7MJ = Phelios E7NJ = Rolling Thunder E7OJ = Burning Force E7PJ = Marvel Land E7QJ = Galaga '88 E7RJ = Wonder Momo E7SJ = Assault E7TJ = Hopping Mappy E7UJ = Splatterhouse E7VJ = Cyber Sled E7WJ = Numan Athletics E7XJ = Youkai Douchuki E7YJ = Sky Kid E7ZE = The Tower of Druaga E7ZJ = Druaga no Tou E7ZP = The Tower of Druaga EA2E = Metal Slug 2 EA2J = Metal Slug 2 EA2P = Metal Slug 2 EA3J = Galaxy Fight: Universal Warriors EA4E = Samurai Showdown III EA4J = Samurai Spirits Kibeniro Musouken EA4P = Samurai Shodown III EA5E = Fatal Fury 3: Road to the Final Victory EA5J = Garou Densetsu 3: Road to the Final Victory EA5P = Fatal Fury 3: Road To The Final Victory EA6E = The King of Fighters '96 EA6J = The King of Fighters '96 EA7E = Samurai Shodown IV: Amakusa's Revenge EA7J = Samurai Spirits: Amakusa Kourin EA8E = Ironclad EA8J = Ironclad: Chotetsu Brikinger EA8M = Iron Clad EA9J = Waku Waku 7 EAAE = Fatal Fury EAAJ = Garou Densetsu: Shukumei no Takatai EAAP = Fatal Fury EABE = World Heroes EABJ = World Heroes EABP = World Heroes EACE = Magician Lord EACJ = Magician Lord EACP = Magician Lord EADE = Art of Fighting EADJ = Ryuuko no Ken EADP = Art of Fighting EAEE = Samurai Showdown EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen EAEP = Samurai Showdown EAFE = Blue's Journey EAFJ = Raguy EAFP = Blue's Journey EAGE = The King of Fighters '94 EAGJ = The King of Fighters '94 EAGP = The King of Fighters '94 EAHE = Baseball Stars 2 EAHJ = Baseball Stars 2 EAHP = Baseball Stars 2 EAIE = Top Hunter EAIJ = Top Hunter EAIP = Top Hunter EAJE = Metal Slug EAJJ = Metal Slug EAJP = Metal Slug EAKE = Burning Fight EAKJ = Burning Fight EAKP = Burning Fight EALE = Art of Fighting 2 EALJ = Ryuuko no Ken 2 EALP = Art of Fighting 2 EAME = Ninja Combat EAMJ = Ninja Combat EAMP = Ninja Combat EANE = Fatal Fury 2 EANJ = Garou Densetsu 2: Aratanaru Tatakai EANP = Fatal Fury 2 EAOE = King of the Monsters EAOJ = King of the Monsters EAOP = King of the Monsters EAPE = Ninja Commando EAPJ = Ninja Commando EAPP = Ninja Commando EAQE = WORLD HEROES 2 EAQJ = World Heroes 2 EARE = Neo Turf Masters EARJ = Neo Turf Masters EARP = Neo Turf Masters EASE = Samurai Showdown 2 EASJ = Shin Samurai Spirits Haoumaru Jigokuhen EASP = Samurai Shodown II EATE = WORLD HEROES 2 JET EATJ = World Heroes 2 Jet EAUJ = Twinkle Star Sprites EAVE = The King of Fighters ’95 EAVJ = The King of Fighters '95 EAVP = The King of Fighters '95 EAWE = Fatal Fury Special EAWJ = Garou Densetsu Special EAWP = Fatal Fury Special EAYJ = King of The Monsters 2 EAZE = WORLD HEROES PERFECT EAZJ = World Heroes Perfect EB2E = REAL BOUT FATAL FURY SPECIAL EB2J = Real Bout Garou Densetsu Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB6E = Metal Slug 3 EB6J = Metal Slug 3 EB6P = Metal Slug 3 EB7J = The Super Spy EB8E = SHOCK TROOPERS EB8J = Shock Troopers EB9J = Pulstar EBAE = Magical Drop II EBAJ = Magical Drop 2 EBAP = Magical Drop II EBBE = Fighters History Dynamite EBBJ = Fighter's History Dynamite EBBP = Karnov's Revenge EBCJ = Flying Power Disc EBDE = Magical Drop III EBDJ = Magical Drop III EBDP = Magical Drop 3 EBEE = Street Slam EBEJ = Dunk Dream EBEP = Street Hoop EBFE = Spin Master EBFJ = Miracle Adventure EBFP = Spin master EBGE = The King of Fighters '97 EBGJ = The King of Fighters '97 EBKJ = Last Resort EBLJ = Tsuukai GanGan Koushinkyoku EBMJ = Fire Suplex EBNJ = Fu'un Mokushiroku: Kakutou Sousei EBOJ = Fu'un Super Tag Battle EBPJ = League Bowling EBQE = NINJA MASTER'S EBQJ = Ninja Master's Haou Ninpou-chou EBRJ = Joy Joy Kid EBSE = The Path of the Warrior: Art of Fighting 3 EBSJ = Art of Fighting: Ryuuko no Ken Gaiden EBTJ = Crossed Swords EBUE = 2020 SUPER BASEBALL EBUJ = Super Baseball 2020 EBVJ = Shin-Oh-Ken EBWE = SENGOKU EBWJ = Sengoku Denshou EBXE = SENGOKU 2 EBXJ = Sengoku 2 EBZE = REAL BOUT FATAL FURY EBZJ = Real Bout Garou Densetsu ECAE = Real Bout Fatal Fury 2: The Newcomers ECAJ = Real Bout Garou Densetsu 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECDJ = Stakes Winner: G1 Kanzen Seihahe no Michi ECEE = THE LAST BLADE 2 ECEJ = Bakumatsu Rouman Dai Ni Maku: Gekka no Kenshi ECFJ = Blazing Star ECGE = Shock Troopers: 2nd Squad ECGJ = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECJE = The King of Fighters '99 ECJJ = Metal Slug 4 ECKE = NAM-1975 ECKJ = NAM-1975 ECLJ = Stakes Winner 2 ECMJ = Tokuten Oh: Honoo no Libero ECNE = Sengoku 3 ECNJ = Sengoku Denshou 2001 ENDP01 = New SUPER MARIO BROS. Wii 20 The End For Now EVOP01 = New Super Mario Bros. Wii 0-5 Evolution FA2J = Exerion FA3J = Formation Z FA4J = Devil World FA4P = Devil World FA5J = Fire Emblem: Ankoku Ryu to Hikari no Tsurugi FA6E = Donkey Kong Jr. Math FA6J = Donkey Kong Jr. no Sansuu Asobi FA6P = Donkey Kong Jr. Math FA7E = Yoshi FA7J = Yoshi no Tamago FA7K = Yoshi FA7P = Mario & Yoshi FA8E = Kirby's Adventure FA8F = Kirby's Adventure FA8J = Hoshi no Kirby: Yume no Izumi no Monogatari FA8K = Kirby's Adventure FA8P = Kirby's Adventure FA9E = Zelda II: The Adventure of Link FA9J = The Legend of Zelda 2: Link no Bouken FA9P = Zelda II: The Adventure of Link FAAE = Donkey Kong FAAJ = Donkey Kong FAAK = Donkey Kong FAAP = Donkey Kong FABE = Donkey Kong Jr. FABJ = Donkey Kong Jr. FABP = Donkey Kong Jr. FACE = Pinball FACJ = Pinball FACP = Pinball FADJ = Gomoku Narabe Renju FAFE = Mario Bros. FAFJ = Mario Bros. FAFK = Mario Bros. FAFP = Mario Bros. FAGE = Super Mario Bros. FAGJ = Super Mario Bros. FAGK = Super Mario Bros. FAGP = Super Mario Bros. FAHE = Tennis FAHJ = Tennis FAHP = Tennis FAIE = Soccer FAIJ = Soccer FAIP = Soccer FAJE = Ice Hockey FAJJ = Ice Hockey FAJP = Ice Hockey FAKE = The Legend of Zelda FAKJ = Zelda no Densetsu FAKK = The Legend of Zelda FAKP = The Legend of Zelda FALE = Baseball FALJ = Baseball FALP = Baseball FAME = Wario's Woods FAMJ = Wario no Mori FAMP = Wario's Woods FANE = Urban Champion FANJ = Urban Champion FANK = Urban Champion FANP = Urban Champion FAOE = Solomon's Key FAOJ = Solomon no Kagi FAOP = Solomon's Key FAPE = NES Open Tournament Golf FAPJ = Mario Open Golf FAPK = NES Open Tournament Golf FAPP = NES Open Tournament Golf FAQJ = Ninja Jajamaru-kun FAQL = Ninja JaJaMaru-kun FAQN = Ninja JaJaMaru-kun FARE = Gradius FARJ = Gradius FARP = Gradius FASE = Xevious FASJ = Xevious FASK = Xevious FASP = Xevious FATE = The Legend of Kage FATJ = Kage no Densetsu FAVE = Tecmo Bowl FAVJ = Tecmo Bowl FAWE = Elevator Action FAWJ = Elevator Action FAXE = Pac-Man FAXJ = Pac-Man FAXK = Pac-Man FAXP = Pac-Man FAYJ = Ikki FAZJ = Field Combat FAZK = Downtown Nekketsu Koushinkyoku: Soreyuke Daiundoukai FB2J = スーハーマリオフラサース2 FB2L = Super Mario Bros.: The Lost Levels FB2N = Super Mario Bros.: The Lost Levels FB3J = Valkyrie no Bouken: Toki no Kagi Densetsu FB4E = Lunar Pool FB4J = Lunar Ball FB4P = Lunar Pool FB5E = Zanac FB5J = Zanac FB6J = Front Line FB7J = Nuts & Milk FB8J = Challenger FB9J = Pooyan FBAJ = Smash Ping Pong FBAL = Smash Table Tennis FBBE = Mach Rider FBBJ = Mach Rider FBBP = Mach Rider FBCE = Excitebike FBCJ = Excitebike FBCP = Excitebike FBDE = Kid Icarus FBDJ = Hikari Shinwa: Palutena no Kagami FBDK = Kid Icarus FBDP = Kid Icarus FBEE = Ice Climber FBEJ = Ice Climber FBEP = Ice Climber FBHE = Castlevania FBHJ = Akumajou Dracula FBHP = Castlevania FBIE = Punch Out!! Featuring Mr. Dream FBIJ = Punch-Out!! FBIP = Punch-Out!! FBJE = Mighty Bomb Jack FBJJ = Mighty Bomb Jack FBJP = Mighty Bomb Jack FBKE = Teenage Mutant Ninja Turtles FBKJ = Gekikame Ninja Den FBKP = Teenage Mutant Ninja Turles FBLE = Lode Runner FBLJ = Lode Runner FBLM = Lode Runner FBNE = Ninja Gaiden FBNJ = Ninja Ryuukenden FBNM = Ninja Gaiden FBOJ = Gradius II FBQJ = Druaga no Tou FBRE = Galaga FBRJ = Galaga FBRK = Galaga FBRP = Galaga FBSE = Milon's Secret Castle FBSJ = Meikyuu Kumikyoku: Milon no Daibouken FBSM = Milon's Secret Castle FBUE = Adventures of Lolo FBUJ = Adventures of Lolo FBUK = Adventures of Lolo FBUP = Adventures of Lolo FBVJ = Tsuppari Oozumou FBWJ = Joy Mech Fight FBWK = Joy Mech Fight FBXJ = Famicom Wars FBYE = Super Mario Bros. 2 FBYJ = Super Mario USA FBYK = Super Mario USA FBYP = Super Mario Bros. 2 FBZE = Metroid FBZJ = Metroid FBZP = Metroid FC2J = Hanjuku Hero FC3E = Bubble Bobble FC3J = Bubble Bobble FC3K = Bubble Bobble FC3P = Bubble Bobble FC4J = Chack'n Pop FC5J = Ganbare Goemon Karakuki Douchuu FC6E = StarTropics FC6J = Startropics FC6P = StarTropics FC7E = NES Play Action Football FC7J = NES Play Action Football FC8E = Castlevania II Simon's Quest FC8J = Dracula II: Noroi no Fuuin FC8P = Castlevania II: Simon's Quest FC9J = Metal Slader Glory FCAE = Star Soldier FCAJ = Star Soldier FCEJ = Esper Dream FCEU = FCE Ultra GX FCFJ = Yie Ar Kung Fu FCGJ = TwinBee FCHJ = Flappy FCIJ = Volguard 2 FCJJ = SD Gundam World: Gachapon Senshi 2 - Capsule Senki FCNJ = Kekkyoku Nankyoku Daibouken FCNK = Antarctic Adventure FCOJ = Battle City FCPE = Balloon Fight FCPJ = Balloon Fight FCPP = Balloon Fight FCQE = Ninja Gaiden II: The Dark Sword of Chaos FCQJ = Ninja Gaiden Two FCRE = Adventure Island FCRJ = Takahashi Meijin no Boukenjima FCRK = Hudson's Adventure Island FCRP = Adventure Island FCSE = Super C FCSJ = Super Contra FCSP = Probotector II: Return of the Evil Forces FCTE = Mega Man FCTJ = RockMan FCTP = Mega Man FCUE = Volleyball FCUJ = Volleyball FCUP = Volleyball FCVE = Wrecking Crew FCVJ = Wrecking Crew FCVP = Wrecking Crew FCWE = Super Mario Bros. 3 FCWJ = Super Mario Bros. 3 FCWK = Super Mario Bros. 3 FCWP = Super Mario Bros. 3 FCYE = Yoshi’s Cookie FCYJ = Yoshi no Cookie FCYK = Yoshi's Cookie FCYP = Yoshi’s Cookie FCZE = King's Knight FCZJ = Kings Knight FD2E = Double Dragon FD2J = Double Dragon FD2P = Double Dragon FD3J = Nekketsu Koukou Dodgeball-bu Soccer-hen FD3K = Nekketsu Koukou Dodgeball-bu Soccer-hen FD6E = Adventures of Lolo 2 FD6P = Adventures of Lolo 2 FD7E = Mega Man 3 FD7J = RockMan 3: Dr. Wily no Saigo?! FD7P = Mega Man 3 FDAE = Spelunker FDAJ = Spelunker FDAM = Spelunker FDBJ = Famicom Mukashi Banashi: Shin Onigashima - Kouhen FDCJ = Star Luster FDEJ = Mappy FDFE = Bases Loaded FDFJ = Moero!! Pro Yakyuu FDGE = Ghosts'n Goblins FDGJ = Makai-Mura FDGP = Ghosts'n Goblins FDIJ = Bokosuka Wars FDLE = Ninja Gaiden III: The Ancient Ship of Doom FDLJ = Ninja Gaiden Three FDNE = Mega Man 2 FDNJ = RockMan 2 FDNP = Mega Man 2 FDOE = Operation Wolf FDOJ = Operation Wolf FDOP = Operation Wolf FDPE = Blades of Steel FDPP = Blades of Steel FDQE = Double Dribble FDQP = Double Dribble FDRP = Skate or Die FDSJ = Famicom Tantei Club: Kieta Koukeisha (Kouhen) FDTE = Renegade FDTJ = Renegade FDUE = Super Dodge Ball FDUJ = Nekketsu Koukou Dodge Ball Bu FDVE = River City Ransom FDVJ = Downtown Nekketsu Monogatari FDVK = Downtown Nekketsu Monogatari FDVP = Street Gangs FDWJ = Downtown Special: Kunio-kun no Jidaigeki Dayo Zenin Shuugou! FDXJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo (Kouhen) FDYJ = Fire Emblem Gaiden FDZJ = Downtown Nekketsu Koushinkyoku FE5J = Toukaidou Gojuusan Tsugi FE6J = Ninja kun Majyou no Bouken FE7J = Ninja kun Ashura no Shou FE8J = Takeshi no Chousenjou FE9J = Ike Ike! Nekketsu Hockey-bu: Subette Koronde Dairantou FECE = Skykid FECJ = Sky Kid FEDJ = Dig Dug FEDL = Dig Dug FEDN = Dig Dug FEEJ = Tantei Jinguji Saburo: Shinjuku Chuo Koen Satsujin Jiken FEFJ = Detective Saburo Jinguji 2: Yokohama-Ko Renzoku Satsujin Jiken FEGJ = Tantei Jinguuji Saburo - Kikenna Futari - Zenkouhen FEHJ = Tantei Jinguuji Saburo: Toki no Sugiyuku Mama ni FEIE = City Connection FEIJ = City Connection FEIP = City Connection FEJJ = Nazo no Murasame Jou FELJ = Transformers: Convoy no Nazo FEMJ = Bio-Miracle Bokutte Upa FEML = Bio Miracle Bokutte UPA FEMN = Bio Miracle Bokutte UPA FENE = Life Force FENJ = Salamander FEOJ = Zoids: Mokushiroku FEPJ = Getsu Fuuma Den FEQE = Castlevania III: Dracula's Curse FEQJ = Akumajo Densetsu FEQP = Castlevania III Dracula's Curse FERE = Zoda’s Revenge: StarTropics II FERJ = Zoda's Revenge FERM = Startropics II: Zoda's Revenge FESE = Clu Clu Land FESJ = Clu Clu Land FESP = Clu Clu Land FEUE = Donkey Kong 3 FEUJ = Donkey Kong 3 FEUP = Donkey Kong 3 FEVJ = Atlantis no Nazo FEWJ = Dragon Buster FEXJ = Wagyan Land FF2J = Sugoro Quest: Dice no Senshi Tachi FF4E = BurgerTime FF4J = BurgerTime FF5E = Double Dragon II: The Revenge FF5J = Double Dragon 2: The Revenge FF6J = Ganbare Goemon 2 FF7J = Ganbare Goemon Gaiden: Kieta Ougon Kiseru FFAE = Final Fantasy FFAJ = Final Fantasy FFAM = Final Fantasy FFBJ = Final Fantasy II FFDE = Crash 'N The Boys Street Challenge FFDJ = Bikkuri Nekketsu Shin Kiroku! Harukanaru Kin Medal FFEE = A Boy and His Blob: Trouble on Blobolonia FFEP = A Boy and His Blob: Trouble on Blobolonia FFFJ = Final Fantasy III FFGJ = SD Gundam World: Gachapon Senshi - Scramble Wars FFJJ = Metal Max FFKJ = Championship Lode Runner FFLE = Princess Tomato in the Salad Kingdom FFLJ = Salad no Kuni no Tomato Hime FFME = Blaster Master FFMJ = Chou-Wakusei Senki MetaFight FFMP = Blaster Master FFNE = Mega Man 4 FFNJ = RockMan 4: Aratanaru Yabou!! FFNP = Mega Man 4 FFOJ = Moero TwinBee: Cinnamon Hakase o Sukue! FFPB = Ufouria: The Saga FFPJ = Furu Furu Park FFQE = Shadow of the Ninja FFQM = Shadow of the Ninja FFRE = Faxanadu FFRJ = Faxanadu FFRP = Faxanadu FFTJ = Binary Land FFUE = Adventure Island 2 FFUJ = Takahashi Meijin no Bouken Jima II FFUP = Adventure Island 2 FFVE = S.C.A.T. FFVP = S.C.A.T.: Special Cybernetic Attack Team FFWP = Donkey Kong: Original Edition FFXJ = 25th スーハーマリオフラサース FFXP = Super Mario Brothers: 25th Anniversary Exclusive FFYE = Mega Man 5 FFYJ = RockMan 5: Blues no Wana!? FFZJ = Seicross FFZY = Contra FJOR = Kung Fu FMCA = The Goonies G01E01 = Super Smash Bros. Melee: SD Remix G01J01 = Super Smash Bros. Melee: SD Remix G01P01 = Super Smash Bros. Melee: SD Remix G02E01 = Super Smash Bros. Melee: 20XX Training Pack G02J01 = Super Smash Bros. Melee: 20XX Training Pack G02P01 = Super Smash Bros. Melee: 20XX Training Pack G2BE5G = Black & Bruised G2BP7D = Black & Bruised G2CD52 = True Crime: New York City G2CE52 = True Crime: New York City G2CP52 = True Crime: New York City G2CX52 = True Crime: New York City G2FD78 = Tak 2: The Staff of Dreams G2FE78 = Tak 2: The Staff of Dreams G2FF78 = Tak 2: The Staff of Dreams G2FP78 = Tak 2: The Staff of Dreams G2GJB2 = 機動戦士カンタム カンタムvs.Zカンタム G2KE8P = NHL 2K3 G2KP8P = NHL 2K3 G2ME01 = Metroid Prime 2: Echoes G2MEAB = Metroid Prime 3 (E3 Beta) G2MJ01 = メトロイトフライム2 タークエコース G2MP01 = Metroid Prime 2: Echoes G2OE41 = Prince of Persia: Warrior Within G2OP41 = Prince of Persia: Warrior Within G2PE6U = Spirits And Spells G2RE52 = Shrek SuperSlam G2SJGE = 式神の城II G2TE52 = Tony Hawk's Underground 2 G2TP52 = Tony Hawk's Underground 2 G2VE08 = Viewtiful Joe 2 G2VJ08 = ヒューティフル ショー 2 フラックフィルムの謎 G2VP08 = Viewtiful Joe 2 G2XE8P = Sonic Gems Collection G2XP8P = Sonic Gems Collection G3AD69 = Lord of the Rings: The Third Age G3AE69 = Lord of the Rings: The Third Age G3AF69 = Lord of the Rings: The Third Age G3AP69 = Lord of the Rings: The Third Age G3AS69 = Lord of the Rings: The Third Age G3BE9G = Serious Sam: Next Encounter G3BP54 = Serious Sam: Next Encounter G3BP9G = Serious Sam: Next Encounter G3DE6L = Carmen Sandiego: The Secret of the Stolen Drums G3DP6L = Carmen Sandiego: The Secret of the Stolen Drums G3DX6L = Carmen Sandiego: The Secret of the Stolen Drums G3EE51 = XGIII: Extreme G Racing G3EJ51 = エクストリームG3 G3EP51 = XGIII: Extreme G Racing G3FD69 = TimeSplitters: Future Perfect G3FE69 = TimeSplitters: Future Perfect G3FF69 = TimeSplitters: Future Perfect G3FP69 = TimeSplitters: Future Perfect G3FS69 = TimeSplitters: Future Perfect G3JEAF = Curious George G3LE8P = Super Monkey Ball Adventure G3LP8P = Super Monkey Ball Adventure G3ME41 = Tom Clancy's The Sum of All Fears G3MP41 = The Sum of All Fears G3NJDA = NARUTO-ナルト-激闘忍者大戦!3 G3QEA4 = Teenage Mutant Ninja Turtles 3: Mutant Nightmare G3RD52 = Shrek 2 G3RE52 = Shrek 2 G3RF52 = Shrek 2 G3RP52 = Shrek 2 G3SE41 = Bust-A-Move 3000 G3TJ8P = Derby Tsuku 3: Derby Uma O Tsukurou! G3VE69 = NBA Street Vol.3 G3VP69 = NBA Street Vol.3 G3XE52 = X-Men: The Official Game G3XP52 = X-Men: The Official Game G3YP52 = Shrek Super Slam G3YX52 = Shrek Super Slam G3YY52 = Shrek Super Slam G4AEE9 = Harvest Moon: Magical Melody G4BE08 = Resident Evil 4 G4BJ08 = ハイオハサート4 G4BP08 = Resident Evil 4 G4CE54 = Charlie and the Chocolate Factory G4CP54 = Charlie and the Chocolate Factory G4FD69 = FIFA 07 G4FE69 = FIFA Soccer 07 G4FF69 = FIFA 07 G4FP69 = FIFA 07 G4GEE9 = Harvest Moon: Another Wonderful Life G4IE52 = Shrek Smash n' Crash Racing G4IP52 = Shrek Smash n' Crash Racing G4ME69 = The Sims Bustin' Out G4MP69 = The Sims: Bustin' Out G4NJDA = NARUTO-ナルト-激闘忍者大戦!4 G4OE69 = The Sims 2 : Pets G4OP69 = The Sims 2 : Pets G4QE01 = Super Mario Strikers G4QJ01 = スーハーマリオストライカース G4QP01 = Mario Smash Football G4SE01 = The Legend of Zelda: Four Swords Adventures G4SJ01 = セルタの伝説 4つの剣+ G4SP01 = The Legend of Zelda: Four Swords Adventures G4ZE69 = The Sims 2 G4ZP69 = The Sims 2 G5BE4Z = Strike Force Bowling G5DE78 = Scooby-Doo! - Unmasked G5DP78 = Scooby-Doo! - Unmasked G5NEAF = Namco Museum 50th Anniversary G5NP69 = Namco Museum 50th Anniversary G5SE7D = Spyro: A Hero's Tail G5SP7D = Spyro: A Hero's Tail G5TE69 = Tiger Woods PGA Tour 2005 G5TP69 = Tiger Woods PGA Tour 2005 G62E54 = Major League Baseball 2k6 G63E41 = Tom Clancy's Rainbow Six 3 G63P41 = Tom Clancy's Rainbow Six 3 G6FD69 = 2006 FIFA World Cup G6FE69 = 2006 FIFA World Cup G6FF69 = 2006 FIFA World Cup G6FP69 = 2006 FIFA World Cup G6ME69 = Madden NFL 06 G6MP69 = Madden NFL 06 G6NE69 = NBA Live 06 G6NP69 = NBA Live 06 G6QE08 = Mega Man Anniversary Collection G6SE7D = The Legend of Spyro: A New Beginning G6SP7D = The Legend of Spyro: A New Beginning G6TE5G = Teen Titans G6TP5G = Teen Titans G6TP78 = Teen Titans G6WE69 = Tiger Woods PGA Tour 06 G6WP69 = Tiger Woods PGA Tour 06 G7ME69 = Madden NFL 07 G89EAF = Pac-Man World Rally G8FE8P = Virtua Quest G8ME01 = Paper Mario: The Thousand-Year Door G8MJ01 = ヘーハーマリオRPG G8MP01 = Paper Mario: The Thousand-year Door G8OJ18 = Bobobo-bo Bo-bobo Dassutsu! Hajike Royale G8SJAF = ハトルスタシアムD.O.N G8WE01 = Battalion Wars G8WP01 = Battalion Wars G94E01 = Interactive Multi-Game Demo Disc - August 2002 G95E01 = Interactive Multi-Game Demo Disc - July 2002 G96E01 = Interactive Multi-Game Demo Disc - June 2002 G97E01 = Interactive Multi-Game Demo Disc - March 2002 G97P01 = Interactive Multi Game Demo Disc - September 2002 G97U01 = Interactive Multi-Game Demo Disc - September 2002 G98E01 = Interactive Multi-Game Demo Disc - January 2002 G98P01 = Interactive Multi Game Demo Disc May 2002 G99E01 = Interactive Multi-Game Demo Disc - October 2001 G99P01 = Interactive Multi Game Demo Disc March 2002 G9BEE9 = Mark Davis Pro Bass Challenge G9RD7D = Crash Tag Team Racing G9RE7D = Crash Tag Team Racing G9RF7D = Crash Tag Team Racing G9RP7D = Crash Tag Team Racing G9SE8P = Sonic Heroes G9SJ8P = ソニック ヒーロース G9SP8P = Sonic Heroes G9TD52 = Shark Tale G9TE52 = Shark Tale G9TF52 = Shark Tale G9TI52 = Shark Tale G9TJC0 = シャーク・テイル G9TP52 = Shark Tale GA2E51 = All-Star Baseball 2002 GA3E51 = All-Star Baseball 2003 GA4E51 = All-Star Baseball 2004 GA7E70 = Backyard Sports Baseball 2007 GAAJ08 = ティスニーのミッキー&ミニー トリック&チェイス GABEAF = Zatch Bell! Mamodo Fury GACE5H = Army Men: Air Combat The Elite Missions GAEJ01 = とうふつの森 e+ GAFE01 = Animal Crossing GAFJ01 = とうふつの森+ GAFP01 = Animal Crossing GAFU01 = Animal Crossing GAGP70 = Asterix & Obelix XXL GAHEGG = Alien Hominid GAKE5D = Midway Arcade Treasures GALE01 = Super Smash Bros. Melee GALJ01 = 大乱闘スマッシュフラサースDX GALP01 = Super Smash Bros. Melee GAME5H = Army Men Sarges War GANE7U = Animaniacs: The Great Edgar Hunt GANP7U = Animaniacs: The Great Edgar Hunt GAPE52 = American Chopper 2 - Full Throttle GAQE6S = Aquaman: Battle of Atlantis GARE5H = Army Men: RTS GASE8P = Sonic Adventure DX: Director's Cut (Review Prototype) GASJ8P = ソニックアトヘンチャー テラックス GATE51 = ATV Quad Power Racing 2 GATP51 = ATV Quad Power Racing 2 GAUE08 = Auto Modellista GAUJ08 = アウトモテリスタ U.S.-tuned GAVE78 = Avatar The Last Airbender GAVP78 = Avatar: The Legend of Aang GAVY78 = Avatar: The Legend of Aang GAXE5D = The Ant Bully GAYE5D = Midway Arcade Treasures 2 GAZD69 = Harry Potter and the Prisoner of Azkaban GAZE69 = Harry Potter and the Prisoner of Azkaban GAZF69 = Harry Potter and the Prisoner of Azkaban GAZH69 = Harry Potter and the Prisoner of Azkaban GAZI69 = Harry Potter and the Prisoner of Azkaban GAZJ69 = ハリー・ホッターとアスカハンの囚人 GAZM69 = Harry Potter and the Prisoner of Azkaban GAZP69 = Harry Potter and the Prisoner of Azkaban GAZS69 = Harry Potter and the Prisoner of Azkaban GB2J18 = ホンハーマンラント2 GB3E51 = BMX XXX GB3P51 = BMX XXX GB4E51 = Burnout 2: Point of Impact GB4P51 = Burnout 2: Point of Impact GBAE8P = NBA 2K2 GBDE5G = BloodRayne GBDP7D = BloodRayne GBDS7D = BloodRayne GBFE70 = Backyard Football GBGE5G = Bomberman Generation GBGP7D = Bomberman Generation GBHDC8 = Mystic Heroes GBHEC8 = Mystic Heroes GBHFC8 = Mystic Heroes GBHJC8 = ハトル封神 GBHPC8 = Mystic Heroes GBIE08 = Resident Evil GBIJ08 = Biohazard GBIP08 = Resident Evil GBKE70 = Backyard Baseball GBLE52 = Bloody Roar: Primal Fury GBLP52 = Bloody Roar: Primal Fury GBME7F = Batman: Dark Tomorrow GBMP7F = Batman: Dark Tomorrow GBNJC0 = ウォーリアーフレイト ラスタンvsハーハリアン編 GBOE51 = Burnout GBOP51 = Burnout GBQE78 = Rocket Power: Beach Bandits GBQP78 = Rocket Power: Beach Bandits GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTP70 = Beyblade VForce - Super Tournament Battle GBVE41 = Batman: Vengeance GBVP41 = Batman Vengeance GBWD64 = Star Wars Bounty Hunter GBWE64 = Star Wars Bounty Hunter GBWF64 = Star Wars Bounty Hunter GBWP64 = Star Wars Bounty Hunter GBWS64 = Star Wars Bounty Hunter GBXE51 = Dave Mirra Freestyle BMX 2 GBXP51 = Dave Mirra Freestyle BMX 2 GBYE0A = Super Bubble Pop GBZE08 = Resident Evil Zero GBZJ08 = Biohazard 0 GBZP08 = Resident Evil Zero GC2E9G = Conflict: Desert Storm II: Back to Baghdad GC2P75 = Conflict: Desert Storm II: Back to Baghdad GC3D78 = Scooby-Doo!: Mystery Mayhem GC3E78 = Scooby-Doo!: Mystery Mayhem GC3F78 = Scooby-Doo!: Mystery Mayhem GC3P78 = Scooby-Doo!: Mystery Mayhem GC4JBN = Shinseiki GPX Cyber Formula Road To The EVOLUTION GC5PNK = Cocoto: Kart Racer GC6E01 = Pokémon Colosseum GC6J01 = ホケモンコロシアム GC6P01 = Pokémon Colosseum GC7PNK = Cocoto Platform Jumper GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBP7D = Crash Bandicoot: The Wrath of Cortex GCCE01 = Final Fantasy Crystal Chronicles GCCJ01 = ファイナルファンタシー・クリスタルクロニクル GCCJGC = ファイナルファンタシー・クリスタルクロニクル GCCP01 = Final Fantasy Crystal Chronicles GCDE08 = Resident Evil Code: Veronica X GCDJ08 = Biohazard: Code Veronica GCDP08 = Resident Evil Code Veronica X GCEE41 = Tom Clancy's Splinter Cell GCEP41 = Tom Clancy's Splinter Cell GCFE9G = Conflict: Desert Storm GCFP75 = Conflict: Desert Storm GCGE41 = Charlie's Angels GCGP41 = Charlie's Angels GCHE78 = WWE Crush Hour GCHP78 = WWE Crush Hour GCIE69 = The Sims GCIP69 = The Sims GCJE41 = Tom Clancy's Splinter Cell: Chaos Theory GCJP41 = Tom Clancy's Splinter Cell: Chaos Theory GCLE69 = Cel Damage GCLP69 = Cel Damage GCMJA4 = マッスルちゃんひょん ~筋肉島の決戦~ GCNE7D = Crash Nitro Kart GCNP7D = Crash Nitro Kart GCOD52 = Call of Duty: Finest Hour GCOE52 = Call of Duty: Finest Hour GCOF52 = Call of Duty: Finest Hour GCOP52 = Call of Duty: Finest Hour GCPE6S = Casper: Spirit Dimensions GCPP6S = Casper: Spirit Dimensions GCQD7D = Buffy The Vampire Slayer Chaos Bleeds GCQE7D = Buffy the Vampire Slayer: Chaos Bleeds GCQF7D = Buffy The Vampire Slayer Chaos Bleeds GCQP7D = Buffy The Vampire Slayer Chaos Bleeds GCSEAF = Street Racing Syndicate GCSPAF = Street Racing Syndicate GCTE51 = Crazy Taxi GCTP51 = Crazy Taxi GCUE69 = NCAA Football 2005 GCVEEB = Cubivore: Survival of the Fittest GCWP6X = Castleween GCZE69 = Catwoman GCZP69 = Catwoman GD4E6S = Dinotopia - The Sunstone Odyssey GD5JB2 = Dragon Drive: D-Masters Shot GD6EB2 = Digimon Rumble Arena 2 GD6P70 = Digimon Rumble Arena 2 GD7E70 = Dragon Ball Z - Budokai GD7JB2 = トラコンホールZ GD7P70 = Dragon Ball Z - Budokai GD7PB2 = Dragon Ball Z Budokai GD9E69 = Drome Racers GD9P69 = Drome Racers GDAJE5 = Doraemon Minna De Asobou! GDBJ01 = Doubutsu Bancho GDCE51 = Speed Kings GDCP51 = Speed Kings GDDE41 = Disney's Donald Duck: Goin' Quackers GDDP41 = Disney's Donald Duck: Qu@ck Att@ck GDED71 = Baldur's Gate Dark Alliance GDEE71 = Baldur's Gate: Dark Alliance GDEF71 = Baldur's Gate: Dark Alliance GDEP71 = Baldur's Gate Dark Alliance GDFE5D = Defender GDFP5D = Defender: For All Mankind GDGE7H = Dragon's Lair 3D: Return to the Lair GDGP78 = Dragon's Lair 3D Special Edition GDIE7D = Die Hard: Vendetta GDIP7D = Die Hard: Vendetta GDIX7D = Die Hard: Vendetta GDIY7D = Die Hard: Vendetta GDJEB2 = Digimon World 4 GDJJB2 = テシモンワールトX GDKEA4 = Disney Sports Soccer GDKPA4 = Disney Sports: Football GDLEA4 = Disney Sports Basketball GDLPA4 = Disney Sports: Basketball GDME01 = Disney's Magical Mirror Starring Mickey Mouse GDMJ01 = ティスニーのミッキーマウスの不思議な鏡 GDMP01 = Disney's Magical Mirror Starring Mickey Mouse GDNJE8 = Dokapon DX GDOP41 = Disney's Donald Duck PK GDPJAF = ミスタートリラー トリルラント GDQE7L = Darkened Skye GDQP6S = Darkened Skye GDREAF = Dead to Rights GDRP69 = Dead to Rights GDRPAF = Dead to Rights GDSE78 = Dark Summit GDSP78 = Dark Summit GDTE69 = Def Jam Vendetta GDTP69 = Def Jam Vendetta GDUJA7 = Duel Masters Nettou Battle GDVE6L = Driven GDVP6L = Driven GDWEA4 = Disney Sports Football GDXEA4 = Disney Sports Skateboarding GDXJA4 = ティスニースホーツ:スケートホーティンク GDXPA4 = Disney Sports Skateboarding GE3E5D = Midway Arcade Treasures 3 GE4E7D = 4x4 Evo 2 GE5EA4 = TMNT: Mutant Melee GE6JA4 = Eisei Meijin VI GE9E5D = Ed, Edd n Eddy: The Mis-Edventures GEAE8P = Skies of Arcadia Legends GEAJ8P = Eternal Arcadia Legends GEAP8P = Skies of Arcadia Legends GEBEA4 = Evolution Snowboarding GEBPA4 = Evolution Snowboarding GEDE01 = Eternal Darkness: Sanity's Requiem GEDJ01 = エターナルタークネス -招かれた13人- GEDP01 = Eternal Darkness: Sanity's Requiem GEJJCM = 実況ハワフルフロ野球11決定版·チョウ GEME7F = Egg Mania: Eggstreme Madness GEMP7F = Eggo Mania GEND69 = James Bond 007: Everything Or Nothing GENE69 = James Bond 007: Everything Or Nothing GENF69 = James Bond 007: Everything Or Nothing GENP69 = 007: Everything Or Nothing GENS69 = James Bond 007: Everything Or Nothing GEOE08 = Capcom vs. SNK 2 EO GEOP08 = Capcom Vs. SNK2 EO: Millionaire Fighting 2001 GESEA4 = Evolution Skateboarding GESPA4 = Evolution Skateboarding GEVJ0M = 神機世界エウォルシア GEWE41 = Evolution Worlds GEWP41 = Evolution Worlds GEXE52 = Disney's Extreme Skate Adventure GEXP52 = Disney Extreme Skate Adventure GEXX52 = Disney's Extreme Skate Adventure GEXY52 = Disney Extreme Skate Adventure GEYE69 = Fight Night Round 2 GEYJ69 = ファイトナイト ラウント2 GEYP69 = Fight Night Round 2 GEZE8P = Billy Hatcher and the Giant Egg GEZP8P = Billy Hatcher and the Giant Egg GF2E69 = F1 2002 GF2P69 = F1 2002 GF3E8P = NFL 2K3 GF3P8P = NFL 2K3 GF4E52 = Fantastic 4 GF4F52 = Fantastic Four GF4P52 = Fantastic 4 GF5D69 = FIFA Football 2005 GF5E69 = FIFA Soccer 2005 GF5F69 = FIFA Football 2005 GF5H69 = FIFA Football 2005 GF5I69 = FIFA Football 2005 GF5P69 = FIFA Football 2005 GF5S69 = FIFA Football 2005 GF6D69 = FIFA 06 GF6E69 = FIFA Soccer 06 GF6F69 = FIFA 06 GF6H69 = FIFA 06 GF6P69 = FIFA 06 GF6S69 = FIFA 06 GF7E01 = Star Fox: Assault GF7P01 = Star Fox Assault GF8E69 = FIFA Street GF8P69 = FIFA Street GFAD69 = FIFA Soccer 2003 GFAE69 = FIFA Soccer 2003 GFAF69 = FIFA Soccer 2003 GFAI69 = FIFA Football 2003 GFAJ69 = FIFAヨーロッハサッカー2003 GFAP69 = FIFA Football 2003 GFAS69 = FIFA Football 2003 GFBE5D = FireBlade GFBP5D = Fireblade GFCP69 = F1 Career Challenge GFDD69 = Freedom Fighters GFDE69 = Freedom Fighters GFDF69 = Freedom Fighters GFDP69 = Freedom Fighters GFEE01 = Fire Emblem: Path of Radiance GFEJ01 = ファイアーエムフレム 蒼炎の軌跡 GFEP01 = Fire Emblem: Path of Radiance GFFE5D = Freaky Flyers GFGEA4 = Frogger Beyond GFGPA4 = Frogger Beyond GFHP6V = Neighbours From Hell GFIE69 = 2002 FIFA World Cup GFKE69 = Freekstyle GFKP69 = Freekstyle GFMJAF = Family Stadium 2003 GFNJG2 = ファインティンク・ニモ GFOE78 = The Fairly OddParents - Shadow Showdown GFPEA4 = Frogger: Ancient Shadow GFQEA4 = Frogger's Adventures: The Rescue GFSD69 = 2002 FIFA World Cup GFSE69 = FIFA Soccer 2002 GFSF69 = 2002 FIFA World Cup GFSJ69 = FIFA 2002 ロート・トゥ・FIFAワールトカッフ GFSP69 = 2002 FIFA World Cup GFTE01 = Mario Golf: Toadstool Tour GFTJ01 = マリオコルフ ファミリーツアー GFTP01 = Mario Golf: Toadstool Tour GFUE4Z = Future Tactics: The Uprising GFUP6V = Future Tactics: The Uprising GFVE5D = NFL Blitz Pro GFWE78 = The Fairly OddParents: Breakin' Da Rules GFXE5D = Freestyle Metal X GFYE69 = FIFA Street 2 GFYP69 = FIFA Street 2 GFZE01 = F-Zero GX GFZJ01 = エフセロ GX GFZJ8P = F-Zero AX GFZP01 = F-Zero GX GG1J08 = Donkey Kong: Jungle Fever GG2E4Z = Trigger Man GG3J08 = Donkey Kong: Banana Kingdom GG4E08 = Gotcha Force GG4P08 = Gotcha Force GG5E52 = Cabela's Big Game Hunter 2005 GGAJB2 = 機動戦士カンタム ~戦士達の軌跡~ GGCE0A = Goblin Commander: Unleash The Horde GGCP0A = Goblin Commander: Unleash the Horde GGEE41 = Beyond Good & Evil GGEP41 = Beyond Good And Evil GGEX41 = Beyond Good And Evil GGEY41 = Beyond Good And Evil GGFJ01 = GiFTPiA GGNE5D = The Grim Adventures of Billy and Mandy GGPE01 = マリオカート アーケートクランフリ GGPE02 = マリオカート アーケートクランフリ2 GGPJ02 = Mario Kart Arcade GP 2 GGPJAF = SD カンタム カシャホンウォース GGPJB2 = SDカンタム カシャホンウォース GGRD41 = Tom Clancy's Ghost Recon GGRE41 = Tom Clancy's Ghost Recon GGRP41 = Tom Clancy's Ghost Recon GGSEA4 = Metal Gear Solid: The Twin Snakes GGSJA4 = メタルキアソリット サ・ツインスネークス GGSPA4 = Metal Gear Solid: The Twin Snakes GGTE01 = Chibi-Robo! GGTJ01 = ちひロホ! GGTP01 = Chibi-Robo! GGVD78 = Spongebob Squarepants : The Movie GGVE78 = SpongeBob SquarePants: The Movie GGVP78 = Spongebob Squarepants: The Movie GGVX78 = Spongebob Squarepants : The Movie GGYE41 = Tom Clancy's Ghost Recon 2 GGYP41 = Tom Clancy's Ghost Recon 2 GGZE52 = Madagascar GGZH52 = Madagascar GGZI52 = Madagascar GGZJB2 = マタカスカル GGZP52 = Madagascar GGZS52 = Madagascar GGZX52 = Madagascar GH2E69 = Need for Speed: Hot Pursuit 2 GH2P69 = Need For Speed Hot Pursuit 2 GH3E69 = NHL 2003 GH3P69 = NHL 2003 GH4D69 = Harry Potter and the Goblet of Fire GH4E69 = Harry Potter and the Goblet of Fire GH4F69 = Harry Potter and the Goblet of Fire GH4H69 = Harry Potter and the Goblet of Fire GH4I69 = Harry Potter and the Goblet of Fire GH4J69 = ハリーホッターと炎のコフレット GH4M69 = Harry Potter and the Goblet of Fire GH4P69 = Harry Potter and the Goblet of Fire GH4S69 = Harry Potter and the Goblet of Fire GH5D52 = Over The Hedge GH5E52 = Over The Hedge GH5F52 = Over The Hedge GH5P52 = Over The Hedge GH6EAF = Hello Kitty: Roller Rescue GH6P7N = Hello Kitty: Roller Rescue GH7E5D = Happy Feet GH9P52 = Tony Hawk's American Wasteland GHAE08 = Resident Evil 2 GHAJ08 = ハイオハサート2 GHAP08 = Resident Evil 2 GHBE7D = The Hobbit GHBP7D = The Hobbit GHCD4Q = Chicken Little GHCE4Q = Chicken Little GHCF4Q = Chicken Little GHCJG9 = チキン・リトル GHCP4Q = Chicken Little GHEJ91 = ホームラント GHFE4Z = Pinball Hall Of Fame: The Gottlieb Collection GHGEEB = Go! Go! Hypergrind GHKD7D = Hulk GHKE7D = Hulk GHKF7D = Hulk GHKP7D = Hulk GHKS7D = Hulk GHLE69 = Harry Potter and the Sorcerer's Stone GHLJ69 = ハリー・ホッターと賢者の石 GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Sorcerer's Stone GHLY69 = Harry Potter and the Sorcerer's Stone GHLZ69 = Harry Potter and the Sorcerer's Stone GHMD4F = Hitman 2: Silent Assassin GHME4F = Hitman 2: Silent Assassin GHMF4F = Hitman 2: Silent Assassin GHMP4F = Hitman 2: Silent Assassin GHNE71 = Hunter: The Reckoning GHNX71 = Hunter: The Reckoning GHPE52 = Street Hoops GHQE7D = The Simpsons: Hit & Run GHQP7D = The Simpsons: Hit & Run GHRE78 = Hot Wheels: World Race GHRP78 = Hot Wheels: World Race GHSE69 = Harry Potter and the Chamber of Secrets GHSJ69 = ハリーホッターと秘密の部屋 GHSP69 = Harry Potter and the Chamber of Secrets GHSX69 = Harry Potter and the Chamber of Secrets GHSY69 = Harry Potter and the Chamber of Secrets GHTJA4 = Hikaru No Go 3 GHUE7D = The Incredible Hulk: Ultimate Destruction GHUF7D = The Incredible Hulk Ultimate Destruction GHUP7D = The Incredible Hulk Ultimate Destruction GHVE08 = Disney's Hide & Sneak GHVP08 = Disney's Hide & Sneak GHWE78 = Hot Wheels: Velocity X GHWP78 = Hot Wheels: Velocity X GHYE6S = The Haunted Mansion GHZE5D = NHL Hitz Pro GI2J18 = 桃太郎電鉄12(西日本編もありまっせー!) GIAE7D = Ice Age 2: The Meltdown GIAP7D = Ice Age 2 : The Meltdown GIBE4F = The Italian Job GIBP4F = The Italian Job GICD78 = The Incredibles GICE78 = The Incredibles GICF78 = The Incredibles GICH78 = The Incredibles GICJG9 = Mr.インクレティフル GICP78 = The Incredibles GIFJDQ = Generation of Chaos Exceed GIGJ8P = フリーチGC 黄昏にまみえる死神 GIHD78 = Scooby-Doo! Night of 100 Frights GIHE78 = Scooby-Doo! Night of 100 Frights GIHP78 = Scooby-Doo! Night of 100 Frights GIIJ18 = 桃太郎電鉄11(フラックホンヒー出現!の巻) GIJEFP = Space Raiders GIJJC0 = スヘースレイタース GIKE70 = Ikaruga GIKJ70 = 斑鳩 Ikaruga GIKP70 = Ikaruga GILE51 = Aggressive Inline GILP51 = Aggressive Inline GINE69 = Batman Begins GINX69 = Batman Begins GIPEAF = Shonen Jump's One Piece: Pirates Carnival GIPJB2 = ONE PIECE ハイレーツカーニハル GIQE78 = The Incredibles: Rise of the Underminer GIQJ8P = Mr.インクレティフル~強敵アンターマイナー登場~ GIQP78 = The Incredibles: Rise of the Underminer GIQX78 = The Incredibles: Rise of the Underminer GIQY78 = The Incredibles: Rise of the Underminer GISE36 = Second Sight GISP36 = Second Sight GITE01 = Geist GITP01 = Geist GIVE4Z = Intellivision Lives GIZE52 = Ty the Tasmanian Tiger 3: Night of the Quinkan GJ2JCM = Jikkyou World Soccer 2002 GJ2PA4 = International Superstar Soccer 2 GJ3PA4 = International Superstar Soccer 3 GJBE18 = Bomberman Jetters GJBE5G = Bomberman Jetters GJBJ18 = ホンハーマン シェッタース GJCE8P = Samurai Jack: The Shadow of Aku GJCP8P = Samurai Jack: The Shadow of Aku GJDE5S = Judge Dredd: Dredd vs. Death GJDX7D = Judge Dredd: Dredd vs. Death GJDY7D = Judge Dredd: Dredd vs. Death GJFE78 = Jimmy Neutron Jet Fusion GJFP78 = Jimmy Neutron Jet Fusion GJKD52 = Star Wars Jedi Knight II: Jedi Outcast GJKE52 = Star Wars Jedi Knight II: Jedi Outcast GJKF52 = Star Wars Jedi Knight II: Jedi Outcast GJKP52 = Star Wars Jedi Knight II: Jedi Outcast GJNE78 = Jimmy Neutron Boy Genius GJNP78 = Jimmy Neutron Boy Genius GJPJCM = Jikkyou Powerful Pro Yakyuu 11 GJSJ18 = ハトソンセレクションVol.2 スターソルシャー GJUD78 = Tak and the Power of JuJu GJUE78 = Tak and the Power of Juju GJUF78 = Tak and the Power of JuJu GJUP78 = Tak and the Power of JuJu GJWE78 = Tak: The Great JuJu Challenge GJWP78 = Tak: The Great JuJu Challenge GJXE51 = Vexx GJXP51 = Vexx GJYE78 = Jimmy Neutron: Attack of the Twonkies GJYP78 = Jimmy Neutron Boy Genius: Attack of the Twonkies GJZE52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GJZP52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GK2D52 = Spider-Man 2 GK2E52 = Spider-Man 2 GK2F52 = Spider-Man 2 GK2P52 = Spider-Man 2 GK3E8P = NBA 2K3 GK3P8P = NBA 2K3 GK4E01 = Baten Kaitos Origins GK4J01 = ハテン・カイトスII 始まりの翼と神々の嗣子 GK5E78 = Monster House GK5P78 = Monster House GK5X78 = Monster House GK6JA4 = Croket Banking No Kikiwosukue GK7E08 = Killer7 GK7J08 = キラー7 GK7P08 = Killer 7 GK9EA4 = Karaoke Revolution Party GKAE8P = Amazing Island GKAJ8P = カイシュウの島 ~アメーシンクアイラント~ GKBEAF = Baten Kaitos Eternal Wings and the Lost Ocean GKBJAF = ハテン・カイトス 終わらない翼と失われた海 GKBPAF = Baten Kaitos: Eternal Wings and the Lost Ocean GKDJ01 = 巨人のトシン GKDP01 = Doshin the Giant GKEJA4 = 実況ハワフルフロ野球12決定版 GKFEGG = Chaos Field GKFJ8P = カオスフィールト エクスハンテット GKGE01 = Donkey Konga GKGJ01 = トンキーコンカ GKGP01 = Donkey Konga GKHEA4 = King Arthur GKHPA4 = King Arthur GKJD78 = Cars GKJE78 = Cars GKJF78 = Cars GKJH78 = Cars GKJJ78 = カース GKJP78 = Cars GKJS78 = Cars GKKE69 = Knockout Kings 2003 GKKP69 = Knockout Kings 2003 GKLD69 = Lord of the Rings: The Return of the King GKLE69 = Lord of the Rings: The Return of the King GKLF69 = Lord of the Rings: The Return of the King GKLI69 = Lord of the Rings: The Return of the King GKLJ69 = ロート・オフ・サ・リンク/王の帰還 GKLP69 = Lord of the Rings: The Return of the King GKLS69 = Lord of the Rings: The Return of the King GKME41 = Prince of Persia: The Two Thrones GKMP41 = Prince of Persia: The Two Thrones GKNEB2 = Ultimate Muscle: Legends vs. New Generation GKNJB2 = キン肉マンII世 新世代超人VS伝説超人 GKOE70 = Kao The Kangaroo Round 2 GKOP6V = Kao The Kangaroo Round 2 GKPJA4 = Jikkyou Powerful Pro Yakyuu 12 GKQJ01 = くるりんスカッシュ! GKREB2 = Ribbit King GKRPB2 = Ribbit King GKSE52 = Kelly Slater's Pro Surfer GKSP52 = Kelly Slater's Pro Surfer GKSX52 = Kelly Slater's Pro Surfer GKTJA4 = キャフテン翼~黄金世代の挑戦~ GKUE9G = Scaler GKWJ18 = トリームミックスTV ワールトファイタース GKXJE7 = Kiwame Mahjong DX2 GKYE01 = Kirby Air Ride GKYJ01 = カーヒィのエアライト GKYP01 = Kirby Air Ride GKZD9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZE9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZF9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP54 = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GL2E51 = Legends of Wrestling 2 GL2P51 = Legends of Wrestling II GL3JE8 = Lupin The Third - Umi Ni Kieta Hihou GL5E4F = LEGO Star Wars: The Video Game GL5P4F = LEGO Star Wars: The Video Game GL5X4F = LEGO Star Wars: The Video Game GL7E64 = LEGO Star Wars II: The Original Trilogy GL7P64 = LEGO Star Wars II: The Original Trilogy GL8D4F = Lara Croft Tomb Raider: Legend GL8E4F = Lara Croft Tomb Raider: Legend GL8F4F = Lara Croft Tomb Raider: Legend GL8P4F = Lara Croft Tomb Raider: Legend GLBE8P = Home Run King GLCD52 = Lemony Snickets A Series Of Unfortunate Events GLCE52 = Lemony Snickets A Series Of Unfortunate Events GLCF52 = Lemony Snickets A Series Of Unfortunate Events GLCP52 = Lemony Snickets A Series Of Unfortunate Events GLCS52 = Lemony Snickets A Series Of Unfortunate Events GLEE08 = Resident Evil 3: Nemesis GLEJ08 = ハイオハサート3 : ラストエスケーフ GLEP08 = Resident Evil 3: Nemesis GLGP41 = Largo Winch : Empire Under Threat GLHEG9 = Flushed Away GLHPG9 = Flushed Away GLIJA7 = Special Jinsei Game GLJJMS = ラシルキ GLLE78 = Ratatouille GLLF78 = Ratatouille GLME01 = Luigi's Mansion GLMJ01 = ルイーシマンション GLMP01 = Luigi's Mansion GLNE69 = Looney Tunes: Back in Action GLNP69 = Looney Tunes: Back in Action GLOD69 = Lord of the Rings: The Two Towers GLOE69 = Lord of the Rings: The Two Towers GLOF69 = Lord of the Rings: The Two Towers GLOI69 = Lord of the Rings: The Two Towers GLOP69 = Lord of the Rings: The Two Towers GLOS69 = Lord of the Rings: The Two Towers GLQE41 = Tom Clancy's Rainbow Six: Lockdown GLQP41 = Tom Clancy's Rainbow Six: Lockdown GLRD64 = Star Wars Rogue Squadron III: Rebel Strike GLRE64 = Star Wars Rogue Squadron III: Rebel Strike GLRF64 = Star Wars Rogue Squadron III: Rebel Strike GLRJ13 = スター・ウォース ローク スコートロン III GLRP64 = Star Wars Rogue Squadron III: Rebel Strike GLSD64 = Gladius GLSE64 = Gladius GLSF64 = Gladius GLSP64 = Gladius GLUE7U = Lotus Challenge GLVD4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVE4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVF4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVP4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLWE51 = Legends of Wrestling GLWP51 = Legends of Wrestling GLXJ29 = Legend of Golfer GLYE69 = NBA Live 2005 GLYP69 = NBA Live 2005 GLZD69 = James Bond 007: From Russia With Love GLZE69 = 007: From Russia With Love GLZF69 = James Bond 007: From Russia With Love GLZP69 = James Bond 007: From Russia With Love GM2E8P = Super Monkey Ball 2 GM2J8P = スーハーモンキーホール2 GM2P8P = Super Monkey Ball 2 GM3E69 = Madden NFL 2003 GM3P69 = Madden NFL 2003 GM4E01 = Mario Kart: Double Dash!! GM4J01 = マリオカート タフルタッシュ!! GM4P01 = Mario Kart: Double Dash!! GM5D7D = Metal Arms: Glitch in the System GM5E7D = Metal Arms: Glitch in the System GM5F7D = Metal Arms: Glitch in the System GM5P7D = Metal Arms: Glitch in the System GM6EE9 = Medabots Infinity GM6PE9 = Medabots Infinity GM8E01 = Metroid Prime GM8J01 = メトロイトフライム GM8P01 = Metroid Prime GM9E6S = Muppets Party Cruise GMAE51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMAP51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMBE8P = Super Monkey Ball GMBJ8P = スーハーモンキーホール GMBP8P = Super Monkey Ball GMDE69 = Madden NFL 2002 GMEE70 = Men In Black II: Alien Escape GMEP70 = Men In Black II: Alien Escape GMFD69 = Medal of Honor: Frontline GMFE69 = Medal of Honor: Frontline GMFF69 = Medal of Honor: Frontline GMFI69 = Medal of Honor: Frontline GMFP69 = Medal of Honor: Frontline GMFS69 = Medal of Honor: Frontline GMHE52 = Mat Hoffmans Pro Bmx 2 GMHF52 = Mat Hoffman's Pro BMX 2 GMHP52 = Mat Hoffman's Pro BMX 2 GMIE70 = Mission Impossible: Operation Surma GMIP70 = Mission Impossible: Operation Surma GMJE41 = Monster Jam: Maximum Destruction GMJP41 = Monster Jam: Maximum Destruction GMKD5D = Mortal Kombat: Deadly Alliance GMKE5D = Mortal Kombat: Deadly Alliance GMKP5D = Mortal Kombat: Deadly Alliance GMLEA4 = ESPN MLS Extra Time 2002 GMNE78 = Monsters, Inc. Scream Arena GMNP78 = Monsters, Inc. Scream Arena GMOP70 = Micro Machines GMPE01 = Mario Party 4 GMPJ01 = マリオハーティ 4 GMPP01 = Mario Party 4 GMQE70 = Monopoly Party GMQP70 = Monopoly Party GMRE70 = Big Air Freestyle GMRP70 = Big Air Freestyle GMSE01 = Super Mario Sunshine GMSJ01 = スーハーマリオサンシャイン GMSP01 = Super Mario Sunshine GMTE69 = Disney's Party GMTP69 = Disney's Party GMUE5D = Dr. Muto GMWD52 = Minority Report: Everybody Runs GMWE52 = Minority Report: Everybody Runs GMWF52 = Minority Report: Everybody Runs GMWP52 = Minority Report: Everybody Runs GMXE70 = Enter The Matrix GMXJB2 = Enter The Matrix GMXP70 = Enter The Matrix GMYJ8P = 激闘フロ野球 水島新司オールスタースVSフロ野球 GMZE41 = Monster 4x4: Masters Of Metal GN2E70 = Nascar: Dirt To Daytona GN3E5D = NHL Hitz 2003 GN3P5D = NHL Hitz 2003 GN4E69 = Nascar 2005: Chase For The Cup GN5E69 = NHL 2005 GN5P69 = NHL 2005 GN6E69 = NHL 06 GN6P69 = NHL 06 GN7E69 = NFL Street 2 GN7P69 = NFL Street 2 GN8E69 = NBA Live 2004 GN8P69 = NBA Live 2004 GN9E70 = Nickelodeon Party Blast GNAE8P = NCAA College Football 2K3 GNBE01 = NBA Courtside 2002 GNBP01 = NBA Courtside 2002 GNCE69 = Nascar Thunder 2003 GNDD69 = Need For Speed Underground GNDE69 = Need For Speed Underground GNDF69 = Need For Speed Underground GNDP69 = Need For Speed Underground GNED78 = Finding Nemo GNEE78 = Finding Nemo GNEF78 = Finding Nemo GNEP78 = Finding Nemo GNES78 = Finding Nemo GNFE5D = NFL Blitz 2002 GNGE69 = NCAA Football 2003 GNHE5D = NHL Hitz 2002 GNHP5D = NHL Hitz 20-02 GNIEA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNIPA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNJEAF = I-Ninja GNKE8P = NCAA College Basketball 2K3 GNLE69 = NBA Live 2003 GNLP69 = NBA Live 2003 GNMEAF = Namco Museum GNNE69 = NFL Street GNNP69 = NFL Street GNOE78 = Nicktoons Unite! GNOX78 = Spongebob Squarepants & Friends: Unite! GNPP70 = Nickelodeon Party Blast GNQE69 = Madden NFL 2005 GNQP69 = Madden NFL 2005 GNREDA = Naruto Clash of Ninja GNRJDA = NARUTO-ナルト-激闘忍者大戦! GNSE69 = NBA Street GNSJ69 = NBAストリート GNUEDA = Naruto Clash of Ninja 2 GNUJDA = NARUTO-ナルト- 激闘忍者大戦!2 GNUPDA = Naruto: Clash of Ninja - European Version GNVE69 = NHL 2004 GNVP69 = NHL 2004 GNWE69 = Def Jam: Fight For NY GNWP69 = Def Jam: Fight For NY GNXE69 = NCAA Football 2004 GNZE69 = NBA Street Vol.2 GNZP69 = NBA Street Vol.2 GO2D4F = Blood Omen 2: The Legacy of Kain Series GO2E4F = Blood Omen 2: The Legacy of Kain Series GO2F4F = Blood Omen 2: The Legacy of Kain Series GO2P4F = Blood Omen 2: The Legacy of Kain Series GO3E5D = NFL Blitz 2003 GO7D69 = James Bond 007: NightFire GO7E69 = 007: NightFire GO7F69 = James Bond 007: NightFire GO7P69 = James Bond 007: NightFire GO7S69 = James Bond 007: NightFire GOAE52 = Cabela's Outdoor Adventures GOBE4Z = Bad Boys: Miami Takedown GOBP7N = Bad Boys II GOCE5D = RoadKill GODJGA = Ohenro-San: Hosshin no Dojo GOFE7L = Outlaw Golf GOFP6S = Outlaw Golf GOGJB2 = ONE PIECE クラントハトル!3 GOME01 = Mario Power Tennis GOMJ01 = マリオテニスGC GOMP01 = Mario Power Tennis GOND69 = Medal of Honor: European Assault GONE69 = Medal of Honor: European Assault GONF69 = Medal of Honor: European Assault GONJ13 = メタル オフ オナー ヨーロッハ強襲 GONP69 = Medal of Honor: European Assault GOOE01 = Odama GOOJ01 = 大玉 - タウンロート GOOP01 = Odama GOPEB2 = Shonen Jump's One Piece: Grand Battle GOPJB2 = ワンヒース クラハト! ラッシュ GOQE82 = One Piece: Grand Adventure GOQEAF = Shonen Jump's One Piece: Grand Adventure GOSE41 = Open Season GOSP41 = Open Season GOSX41 = Open Season GOUPNK = Cocoto Funfair GOWD69 = Need For Speed Most Wanted GOWE69 = Need For Speed Most Wanted GOWF69 = Need For Speed Most Wanted GOWJ69 = ニート・フォー・スヒート モスト・ウォンテット GOWP69 = Need For Speed Most Wanted GOYD69 = GoldenEye: Rogue Agent GOYE69 = GoldenEye: Rogue Agent GOYF69 = GoldenEye: Rogue Agent GOYP69 = GoldenEye: Rogue Agent GOYS69 = GoldenEye: Rogue Agent GP2EAF = Pac-Man World 2 GP2P69 = Pac-Man World 2 GP3E78 = The Polar Express GP3P78 = The Polar Express GP4J18 = ハトソン セレクション Vol.3 PC原人 GP5E01 = Mario Party 5 GP5J01 = マリオハーティ 5 GP5P01 = Mario Party 5 GP6E01 = Mario Party 6 GP6J01 = マリオハーティ6 GP6P01 = Mario Party 6 GP7E01 = Mario Party 7 GP7J01 = マリオハーティ7 GP7P01 = Mario Party 7 GP8EAF = Pac-Man World 3 GP8P69 = Pac-Man World 3 GP8PAF = Pac-Man World 3 GP9E7F = Rogue Ops GP9P7F = Rogue Ops GPAE01 = Pokémon Channel GPAJ01 = Pokémon Channel GPAP01 = Pokémon Channel GPAU01 = Pokémon Channel GPDE51 = Dakar 2: The World's Ultimate Rally GPDP51 = Dakar 2: The World's Ultimate Rally GPEJ2Q = フールエッシ GPHD52 = Pitfall: The Lost Expedition GPHE52 = Pitfall: The Lost Expedition GPHF52 = Pitfall: The Lost Expedition GPHP52 = Pitfall: The Lost Expedition GPIE01 = Pikmin GPIJ01 = ヒクミン GPIP01 = Pikmin GPJJCM = Jikkyou Powerful Pro Yakyuu 10 GPKE41 = Disney's PK Out of the Shadows GPLD9G = Piglet's Big Game GPLE9G = Piglet's Big Game GPLF9G = Piglet's Big Game GPLP9G = Piglet's Big Game GPMEAF = Pac Man Fever GPNE08 = P.N.03 GPNJ08 = P.N.03 GPNP08 = P.N.03 GPOE8P = Phantasy Star Online Episode I & II GPOJ8P = ファンタシースターオンライン エヒソート1&2 GPOP8P = Phantasy Star Online Episode I&II GPPJCM = Jikkyou Powerful Pro Yakyuu 9 GPQE6L = The Powerpuff Girls: Relish Rampage GPQP6L = The Powerpuff Girls: Relish Rampage GPRE7U = Pool Paradise GPRP7U = Pool Paradise GPSE8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPSJ8P = ファンタシースターオンライン エヒソート3 カートレホリューション GPSP8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPTE41 = Prince of Persia: The Sands of Time GPTP41 = Prince of Persia: The Sands of Time GPUE8P = Puyo Pop Fever GPUP6W = Puyo Pop Fever GPUP8P = Puyo Pop Fever GPVE01 = Pikmin 2 GPVJ01 = ヒクミン2 GPVP01 = Pikmin 2 GPWEAF = Spawn: Armageddon GPWP69 = Spawn: Armageddon GPWPAF = Spawn: Armageddon GPXE01 = Pokémon Box: Ruby & Sapphire GPXJ01 = ホケモンホックス ルヒー&サファイア GPXP01 = Pokémon Box: Ruby & Sapphire GPYJ8P = ふよふよフィーハー GPZJ01 = NINTENDO ハスルコレクション GQ4E78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ4F78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ4P78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ8E69 = Madden NFL 08 GQBE51 = NFL Quarterback Club 2002 GQCD52 = Call of Duty 2: Big Red One GQCE52 = Call of Duty 2: Big Red One GQCF52 = Call of Duty 2: Big Red One GQCP52 = Call of Duty 2: Big Red One GQCS52 = Call of Duty 2: Big Red One GQFFFK = Franklin: A Birthday Surprise GQLE9G = Dora The Explorer: Journey To The Purple Planet GQLP54 = Dora The Explorer: Journey to the Purple Planet GQNE5D = Mortal Kombat: Deception GQPE78 = SpongeBob SquarePants: Battle for Bikini Bottom GQPP78 = SpongeBob Squarepants: Battle For Bikini Bottom GQQD78 = SpongeBob SquarePants: Lights, Camera, PANTS! GQQE78 = SpongeBob SquarePants: Lights, Camera, Pants! GQQF78 = SpongeBob SquarePants: Lights, Camera, PANTS! GQQH78 = SpongeBob SquarePants: Lights, Camera, Pants! GQQP78 = SpongeBob SquarePants: Lights, Camera, Pants! GQRJ18 = ハトソンセレクションVol.1 キューヒックロートランナー GQSDAF = Tales of Symphonia GQSEAF = Tales of Symphonia GQSFAF = Tales of Symphonia GQSIAF = Tales of Symphonia GQSPAF = Tales of Symphonia GQSSAF = Tales of Symphonia GQTE4Q = Meet the Robinsons GQWE69 = Harry Potter: Quidditch World Cup GQWJ69 = ハリー・ホッター クイティッチ・ワールトカッフ GQWP69 = Harry Potter: Quidditch World Cup GQWX69 = Harry Potter: Quidditch World Cup GQXE69 = Madden NFL 2004 GQXP69 = Madden NFL 2004 GQZJ01 = Densetsu no Quiz Ou Ketteisen GR2E52 = Lost Kingdoms 2 GR2JCQ = RUNE2~コルテンの鍵の秘密~ GR2P52 = Lost Kingdoms 2 GR3E5D = Red Card 2003 GR4EMZ = MC Groovz Dance Craze GR4PMZ = MC Groovz Dance Craze GR5J1K = Robocop: Aratanaru Kiki GR6D78 = Bratz: Rock Angelz GR6E78 = Bratz: Rock Angelz GR6F78 = Bratz: Rock Angelz GR6P78 = Bratz: Rock Angelz GR8D69 = Medal of Honor: Rising Sun GR8E69 = Medal of Honor: Rising Sun GR8F69 = Medal of Honor: Rising Sun GR8J69 = メタル オフ オナー ライシンクサン GR8P69 = Medal of Honor: Rising Sun GR9E6L = Reign of Fire GR9P6L = Reign of Fire GRAE5Z = Rally Championship GRAP75 = Rally Championship GRBE6S = Robotech: Battlecry GRBP6S = Robotech : Battlecry GRDP5D = RedCard GREE08 = Mega Man Network Transmission GREJ08 = ロックマンエクセ トランスミッション GREP08 = Mega Man Network Transmission GRFD78 = Red Faction II GRFE78 = Red Faction II GRFF78 = Red Faction II GRFP78 = Red Faction II GRHE41 = Rayman 3: Hoodlum Havoc GRHP41 = Rayman 3: Hoodlum Havoc GRJEAF = R: Racing Evolution GRJJAF = R レーシンク エウォリューション GRJP69 = R: Racing GRKE41 = Rocky GRKP7G = Rocky GRLE41 = Pro Rally GRLP41 = Pro Rally GRMJDA = モノホリー ~めさせっ!!大富豪人生!~ GRNE52 = Lost Kingdoms GRNJCQ = ルーン GRNP52 = Lost Kingdoms GROE5Z = Road Trip: The Arcade Edition GROP7J = Gadget Racers GRQE41 = City Racer GRRE78 = Rugrats: Royal Ransom GRRP78 = Rugrats: Royal Ransom GRSEAF = SoulCalibur II GRSJAF = ソウルキャリハーII GRSPAF = SoulCalibur II GRUE78 = Power Rangers Dino Thunder GRUF78 = Power Rangers Dino Thunder GRUP78 = Power Rangers Dino Thunder GRVEA4 = Rave Master GRWJD9 = スーハーロホット大戦 GC GRYE41 = Rayman Arena GS2D78 = Summoner: A Goddess Reborn GS2E78 = Summoner: A Goddess Reborn GS2F78 = Summoner: A Goddess Reborn GS2P78 = Summoner: A Goddess Reborn GS3E51 = SX Superstar GS3P51 = SX Superstar GS7E5D = MLB SlugFest 2004 GS8E7D = Spyro: Enter the Dragonfly GS8P7D = Spyro: Enter the Dragonfly GS9E6S = Shrek Extra Large GS9P6S = Shrek Extra Large GSAE01 = Star Fox Adventures GSAJ01 = スターフォックスアトヘンチャー GSAP01 = Star Fox Adventures GSBJ8P = ソニックアトヘンチャー2 ハトル GSCE51 = Jeremy McGrath SuperCross World GSCP51 = Jeremy McGrath SuperCross World GSDEAF = Smashing Drive GSEJB2 = シャーマンキンク ソウルファイト GSGE5D = MLB SlugFest 2003 GSHE5D = SpyHunter GSHP5D = SpyHunter GSKE7D = The Scorpion King: Rise of the Akkadian GSKP7D = The Scorpion King : Rise of the Akkadian GSMD52 = Spider-Man GSME52 = Spider-Man: The Movie GSMF52 = Spider-Man GSMP52 = Spider-Man GSNE8P = Sonic Adventure 2: Battle GSNP8P = Sonic Adventure 2: Battle GSOE8P = Sonic Mega Collection GSOJ8P = ソニック メカコレクション GSOP8P = Sonic Mega Collection GSPE69 = The Simpsons: Road Rage GSPP69 = The Simpsons: Road Rage GSQE78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSQP78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSRE7S = Smuggler's Run: Warzones GSRP7S = Smuggler's Run: Warzones GSSE8P = Sega Soccer Slam GSSJ8P = セカ サッカースラム GSSP70 = Sega Soccer Slam GSSP8P = Sega Soccer Slam GSTE69 = SSX Tricky GSTJ69 = SSX トリッキー GSTP69 = SSX Tricky GSUE70 = Superman: Shadow of Apokolips GSUP70 = Superman: Shadow of Apokolips GSVE78 = MX Superfly Featuring Ricky Carmichael GSVP78 = MX Superfly featuring Ricky Carmichael GSWD64 = Star Wars Rogue Leader: Rogue Squadron II GSWE64 = Star Wars Rogue Squadron II: Rogue Leader GSWF64 = Star Wars Rogue Leader: Rogue Squadron II GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = スター・ウォース ローク スコートロン2 GSWP64 = Star Wars Rogue Leader: Rogue Squadron II GSWS64 = Star Wars Rogue Leader: Rogue Squadron II GSXD64 = Star Wars: The Clone Wars GSXE64 = Star Wars: The Clone Wars GSXF64 = Star Wars: The Clone Wars GSXJ13 = スター・ウォース クローン戦争 GSXP64 = Star Wars: The Clone Wars GSXS64 = Star Wars: The Clone Wars GSYE6S = Shrek: Super Party GSYP6S = Shrek: Super Party GSZP41 = Speed Challenge: Jacques Villeneuve Racing Vision GT2J18 = Tengai Makyou 2: Manji Maru GT3D52 = Tony Hawk's Pro Skater 3 GT3E52 = Tony Hawk's Pro Skater 3 GT3F52 = Tony Hawk's Pro Skater 3 GT3J52 = Tony Hawk's Pro Skater 3 GT3P52 = Tony Hawk's Pro Skater 3 GT4D52 = Tony Hawk's Pro Skater 4 GT4E52 = Tony Hawk's Pro Skater 4 GT4F52 = Tony Hawk's Pro Skater 4 GT4P52 = Tony Hawk's Pro Skater 4 GT5E7N = Starsky & Hutch GT5P7N = Starsky & Hutch GT6E70 = Terminator 3: The Redemption GT6J70 = ターミネーター3:サ・レテンフション GT6P70 = Terminator 3: The Redemption GT7E41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7P41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7X41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT8E78 = Big Mutha Truckers GT8P78 = Big Mutha Truckers GT8P7N = Big Mutha Truckers GTAE5S = Top Angler : Real Bass Fishing GTAP5S = Top Angler: Real Bass Fishing GTCJBL = GT Cube GTDE52 = Tony Hawk's Underground GTDP52 = Tony Hawk's Underground GTEE01 = 1080° Avalanche GTEJ01 = 1080°シルハーストーム GTEP01 = 1080° Avalanche GTFEA4 = Teenage Mutant Ninja Turtles GTFPA4 = Teenage Mutant Ninja Turtles GTGE60 = Top Gun: Combat Zones GTGP60 = Top Gun: Combat Zones GTHJD9 = チャリンコヒーロー GTIE69 = Tiger Woods PGA Tour 2003 GTIP69 = Tiger Woods PGA Tour 2003 GTJE5L = Tom & Jerry in War of the Whiskers GTKD51 = Turok Evolution GTKE51 = Turok Evolution GTKP51 = Turok Evolution GTLE52 = True Crime: Streets of LA GTLP52 = True Crime: Streets of LA GTLX52 = True Crime: Streets of LA GTMJDA = Mutsu To Nohohon GTNJ18 = ハトソンセレクションVol.4 高橋名人の冒険島 GTOJAF = テイルス オフ シンフォニア GTPP6S = Knights Of The Temple : Infernal Crusade GTQE6S = Tonka: Rescue Patrol GTRE78 = Tetris Worlds GTRP78 = Tetris Worlds GTSE4F = TimeSplitters 2 GTSP4F = TimeSplitters 2 GTUE8G = Tube Slider - The Championship of Future Formula GTVE70 = Transworld Surf: Next Wave GTWE70 = Taz Wanted GTWP70 = Taz Wanted GTYE69 = Ty the Tasmanian Tiger GTYP69 = Ty: The Tasmanian Tiger GTZE41 = Tarzan Untamed GTZP41 = Tarzan Freeride GU2D78 = 2 Games in 1: The Incredibles / Finding Nemo GU2F78 = 2 Games in 1: The Incredibles / Finding Nemo GU3D78 = 2 Games in 1: The SpongeBob SquarePants Movie / Tak 2: The Staff of Dreams GU4Y78 = 2 Games in 1: The SpongeBob SquarePants Movie / Battle for Bikini Bottom GU6E78 = Nicktoons - Battle for Volcano Island GUBE69 = The Urbz: Sims in the City GUBJ13 = サ・アーフス シムス・イン・サ・シティ GUBP69 = The Urbz: Sims In The City GUCD69 = UEFA Champions League 2004-2005 GUCF69 = UEFA Champions League 2004-2005 GUCP69 = UEFA Champions League 2004-2005 GUFE4Z = Ultimate Fighting Championship Throwdown GUFP4Z = UFC: Throwdown GUGD69 = Need For Speed Underground 2 GUGE69 = Need For Speed Underground 2 GUGF69 = Need For Speed Underground 2 GUGP69 = Need For Speed Underground 2 GUMD52 = Gun GUME52 = Gun GUMP52 = Gun GUNE5D = Gauntlet: Dark Legacy GUNP5D = Gauntlet: Dark Legacy GUPE8P = Shadow the Hedgehog GUPJ8P = シャトウ・サ・ヘッシホック GUPP8P = Shadow the Hedgehog GUSE7F = Universal Studios Theme Park Adventure GUSP7F = Universal Studios Theme Park Adventure GUTD52 = Ultimate Spider-Man GUTE52 = Ultimate Spider-Man GUTF52 = Ultimate Spider-Man GUTI52 = Ultimate Spider-Man GUTJC0 = アルティメット スハイターマン GUTP52 = Ultimate Spider-Man GUTS52 = Ultimate Spider-Man GUVE51 = Freestyle Street Soccer GUVP51 = Urban Freestyle Soccer GUZE41 = Batman: Rise of Sin Tzu GUZP41 = Batman Rise of Sin Tzu GV3J70 = V-Rally 3 GV3P70 = V-Rally 3 GV4E69 = MVP Baseball 2005 GVCE08 = Viewtiful Joe: Red Hot Rumble GVCJ08 = ヒューティフルショー ハトルカーニハル GVCP08 = Viewtiful Joe: Red Hot Rumble GVDE78 = Bratz Forever Diamondz GVDP78 = Bratz Forever Diamondz GVHE4F = Bionicle Heroes GVJE08 = Viewtiful Joe GVJJ08 = ヒューティフル ショー GVJP08 = Viewtiful Joe GVKE52 = Cabela's Dangerous Hunts 2 GVLD69 = Marvel Nemesis: Rise of the Imperfects GVLE69 = Marvel Nemesis: Rise of the Imperfects GVLF69 = Marvel Nemesis: Rise of the Imperfects GVLP69 = Marvel Nemesis: Rise of the Imperfects GVMP41 = Super Bust-A-Move All Stars GVOE69 = Bionicle GVOP69 = Bionicle GVPE69 = MVP Baseball 2004 GVRE7H = Grooverider Slot Car Thunder GVS46E = Virtua Striker 4 Ver.2006 GVS46J = Virtua Striker 4 Ver.2006 GVSE8P = Virtua Striker 2002 GVSJ8P = ハーチャストライカー3 Ver.2002 GVSJ9P = Virtua Striker 4 Ver.2006 GVSP8P = Virtua Striker 3 Ver. 2002 GVWJDQ = Gakuen Toshi Vara Noir Roses GW2E78 = WWE Day of Reckoning 2 GW2P78 = WWE Day of Reckoning 2 GW3E78 = WWE WrestleMania X8 GW3JG2 = WRESTLEMANIA エイティーン GW3P78 = WWE Wrestlemania X8 GW4E69 = Tiger Woods PGA Tour 2004 GW4P69 = Tiger Woods PGA Tour 2004 GW5D69 = Need For Speed Carbon GW5E69 = Need For Speed Carbon GW5F69 = Need For Speed Carbon GW5P69 = Need For Speed Carbon GW6JEM = ワールトサッカー ウイニンクイレフン6 ファイナルエウォリューション GW7D69 = James Bond 007 in Agent Under Fire GW7E69 = 007: Agent Under Fire GW7F69 = James Bond 007 in Agent Under Fire GW7P69 = James Bond 007 in Agent Under Fire GW8E52 = World Series of Poker GW9E78 = WWE WrestleMania XIX GW9JG2 = レッスルマニアXIX GW9P78 = WWE WrestleMania XIX GWAD8P = Spartan Total Warrior GWAE8P = Spartan Total Warrior GWAF8P = Spartan Total Warrior GWAP8P = Spartan Total Warrior GWBE41 = Worms Blast GWBP41 = Worms Blast GWDP6S = World Racing GWEE51 = 18 Wheeler: American Pro Trucker GWEP8P = 18 Wheeler American Pro Trucker GWGE4F = Swingerz Golf GWGJ4F = わいわいコルフ GWGP4F = Ace Golf GWHE41 = Winnie The Pooh Rumbly Tumbly Adventures GWHP41 = Winnie the Pooh's Rumbly Tumbly Adventure GWJE52 = Tony Hawk's American Wasteland GWKE41 = Peter Jackson's King Kong: The Official Game of the Movie GWKP41 = Peter Jackson's King Kong: The Official Game of the Movie GWLE6L = Wallace & Gromit in Project Zoo GWLP6L = Wallace & Gromit : Project Zoo GWLX6L = Wallace & Gromit in Project Zoo GWME51 = Worms 3D GWMP8P = Worms 3D GWOE5G = Blowout GWPE78 = WWE Day of Reckoning GWPJG2 = WWE テイ・オフ・レコニンク GWPP78 = WWE Day of Reckoning GWQE52 = Wreckless: The Yakuza Missions GWQP52 = Wreckless: The Yakuza Missions GWRE01 = Wave Race: Blue Storm GWRJ01 = ウェーフレース フルーストーム GWRP01 = Wave Race: Blue Storm GWSEA4 = ESPN International Winter Sports 2002 GWSJA4 = ハイハースホーツ2002WINTER GWSPA4 = ESPN International Winter Sports GWTEA4 = WTA Tour Tennis GWTJA4 = WTAツアーテニス フロエホリューション GWTPA4 = Pro Tennis WTA Tour GWUE7D = Whirl Tour GWUP7D = Whirl Tour GWVE52 = X2: Wolverine's Revenge GWVP52 = X-Men 2: Wolverine's Revenge GWVX52 = X-Men 2 : Wolverine's Revenge GWWE01 = Wario World GWWJ01 = ワリオワールト GWWP01 = Wario World GWYE41 = Tom Clancy's Splinter Cell: Double Agent GWYX41 = Tom Clancy's Splinter Cell: Double Agent GWZE01 = Dance Dance Revolution: Mario Mix GWZJ01 = タンスタンスレホリューション ウィス マリオ GWZP01 = Dancing Stage Mario Mix GX2D52 = X-Men Legends II: Rise of Apocalypse GX2E52 = X-Men Legends II: Rise of Apocalypse GX2P52 = X-Men Legends II: Rise of Apocalypse GX2S52 = X-Men Legends II: Rise of Apocalypse GX3E41 = XIII GX3P41 = XIII GX3X41 = XIII GXAE51 = XGRA Extreme G Racing Association GXAP51 = XGRA Extreme G Racing Association GXBE69 = SSX 3 GXBP69 = SSX 3 GXCE01 = Custom Robo GXEE8P = Sonic Riders GXEJ8P = ソニックライタース GXEP8P = Sonic Riders GXFD69 = FIFA Football 2004 GXFE69 = FIFA Soccer 2004 GXFF69 = FIFA Football 2004 GXFI69 = FIFA Football 2004 GXFP69 = FIFA Football 2004 GXFS69 = FIFA Football 2004 GXGE08 = Mega Man X Collection GXLE52 = X-Men Legends GXLP52 = X-Men Legends GXLX52 = X-Men Legends GXME52 = X-Men: Next Dimension GXMF52 = X-Men: Next Dimension GXMP52 = X-Men: Next Dimension GXNE5D = Rampage Total Destruction GXOE69 = SSX on Tour GXOJ69 = SSX On Tour with マリオ GXOP69 = SSX On Tour GXOX69 = SSX On Tour GXPE78 = Sphinx and the Cursed Mummy GXPP78 = Sphinx and the Cursed Mummy GXQF41 = Taxi 3 GXRE08 = Mega Man X: Command Mission GXRJ08 = ロックマンX コマントミッション GXRP08 = Mega Man X: Command Mission GXSE8P = Sonic Adventure DX: Director's Cut GXSP6W = Sonic Adventure DX : Director's Cut GXSP8P = Sonic Adventure DX: Director's Cut GXUE41 = Surf's Up GXXE01 = Pokémon XD: Gale of Darkness GXXJ01 = ホケモンXD 闇の旋風ターク・ルキア GXXP01 = Pokémon XD: Gale of Darkness GY2E01 = Donkey Konga 2 GY2J01 = トンキーコンカ2 ヒットソンクハレート GY2P01 = Donkey Konga 2 GY3J01 = トンキーコンカ3 GYAD78 = Barnyard GYAE78 = Barnyard GYAP78 = Barnyard GYAX78 = Barnyard GYBE01 = Donkey Kong Jungle Beat GYBJ01 = トンキーコンクシャンクルヒート GYBP01 = Donkey Kong Jungle Beat GYFEA4 = Yu-Gi-Oh! The Falsebound Kingdom GYFJA4 = 遊戯王 Falsebound Kingdom 虚構に閉さされた王国 GYFPA4 = Yu-Gi-Oh! The Falsebound Kingdom GYKEB2 = Zatch Bell! Mamodo Battles GYMJA4 = 実況ハワフルメシャーリーク GYQE01 = Mario Superstar Baseball GYQJ01 = スーハーマリオスタシアム ミラクルヘースホール GYQP01 = Mario Superstar Baseball GYRE41 = TMNT GYRP41 = TMNT GYTE69 = Ty The Tasmanian Tiger 2: Bush Rescue GYTP69 = Ty The Tasmanian Tiger 2: Bush Rescue GYWDE9 = Harvest Moon: A Wonderful Life GYWEE9 = Harvest Moon: A Wonderful Life GYWJ99 = 牧場牧場 ワンタフルライフ GYWP41 = Harvest Moon: A Wonderful Life GYWPE9 = Harvest Moon: A Wonderful Life GZ2E01 = The Legend of Zelda: Twilight Princess GZ2J01 = セルタの伝説 トワイライトフリンセス GZ2P01 = The Legend of Zelda: Twilight Princess GZ3E70 = Dragon Ball Z: Budokai 2 GZ3P70 = Dragon Ball Z: Budokai 2 GZ3PB2 = Dragon Ball Z Budokai 2 GZCE51 = ZooCube GZCJB0 = スーキューフ GZCP51 = Zoocube GZDE70 = Godzilla: Destroy all Monsters Melee GZDJ70 = コシラ 怪獣大乱闘 GZDP70 = Godzilla: Destroy all Monsters Melee GZEE70 = Dragon Ball Z: Sagas GZFJBP = Gekituisenki - Zero Fighter GZHJDA = ソイトフルメタルクラッシュ GZLE01 = The Legend of Zelda: The Wind Waker GZLJ01 = セルタの伝説 風のタクト GZLP01 = The Legend of Zelda: The Wind Waker GZMP7D = Butt-Ugly Martians Zoom or Doom GZOJDA = ソイト ハーサス GZPE70 = Zapper - One Wicked Cricket! GZPP70 = Zapper: One Wicked Cricket! GZQE7D = Robots GZQJ7D = ロホッツ GZQP7D = Robots GZSE70 = Zoids Battle Legends GZSJDA = Zoids VS. II GZVJDA = ソイト ハーサス III GZWE01 = Wario Ware Inc.: Mega Party Game$! GZWJ01 = あつまれ!! メイトインワリオ GZWP01 = Wario Ware Inc.: Mega Party Game$! HAAA = Photo Channel HABA = Wii Shop Channel HABK = Wii Shop Channel HACA = Mii Channel HACK = Mii Channel HADE = Internet Channel HADJ = インターネットチャンネル HADP = Internet Channel HAFE = Forecast Channel HAFJ = お天気チャンネル HAFP = Weather Channel HAGE = News Channel HAGJ = ニュースチャンネル HAGP = News Channel HAJE = Everybody Votes Channel HAJJ = Everybody Votes Channel HAJP = Everybody Votes Channel HAPE = Check Mii Out Channel HAPJ = Mii Contest Channel HAPP = Check Mii Out Channel HATE = Nintendo Channel HATJ = Nintendo Channel HATP = Nintendo Channel HAVJ = Today and Tomorrow Fortune Teller HAVK = Today And Tomorrow Channel HAVP = Today and Tomorrow Channel HAWE = Metroid Prime 3 Preview HAWJ = Metroid Prime 3 Preview HAWP = Metroid Prime 3 Preview HAYA = Photo Channel HAYK = Photo Channel HBNJ = TV Friend Channel HBWE01 = New Super Mario Bros. Wii: Hellboy Edition HC3J = USB乄モリ一修復フ囗クラム HCAJ = ハンフラDXスヒーカーチャンネル HCAP = Jam with the Band Live HCBJ = Photo Channel 1.0 Restore Program HCDJ = Digicam Print Channel HCFE = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Wii Speak Channel HCGE = Wii + Internet HCGJ = Wii Plus Internet HCGP = Wii Plus Internet HCHJ = Food Service HCIJ = Wiiの間 HCJP = BBC iPlayer Channel HCLE = Netflix HCLP = Netflix HCMP = Kirby TV HCQE = Hulu Plus HCQJ = Hulu HCRE = The Legend of Zelda: Skyward Sword Save Data Update Channel HCRJ = The Legend of Zelda Skyward Sword Update HCRP = The Legend of Zelda Skyward Sword Update HCSE = Wii U Transfer Tool HCSJ = Wii U Transfer Tool HCSP = Wii U Transfer Tool HCTE = Wii System Transfer HCTJ = Wii System Transfer HCTP = Wii System Transfer HCUE = Wii Menu Electronic Manual HCUJ = Wii Menu Electronic Manual HCUP = Wii Menu Electronic Manual HCVA = Wii U Menu HCWE = Amazon Instant Video HCWP = Amazon Instant Video HCXE = YouTube HCXJ = YouTube HCXP = YouTube HCZE = Wii System Transfer HWFL = HackWiiFlow JA2J = Shin Megami Tensei JA3J = Kamaitachi no Yoru JA4E = Super Ghouls 'n Ghosts JA4J = Chou-Makai-Mura JA4P = Super Ghouls'n Ghosts JA5J = Heracles no Eikou III: Kamigami no Chinmoku JA6E = Zombies Ate My Neighbors JA6J = Zombies Ate My Neighbors JA6P = Zombies JA7D = ActRaiser JA7E = ActRaiser JA7F = ActRaiser JA7J = Actraiser JA7P = ActRaiser JA8E = Final Fight JA8J = Final Fight JA8P = Final Fight JAAE = Super Mario World JAAJ = Super Mario World JAAK = Super Mario World JAAP = Super Mario World JABJ = Mario no Super Picross JABL = Mario’s Super Picross JACE = F-Zero JACJ = F-Zero JACK = F-Zero JACP = F-Zero JADD = The Legend of Zelda: A Link to the Past JADE = The Legend of Zelda: A Link to the Past JADF = The Legend of Zelda: A Link to the Past JADJ = Zelda no Densetsu: Kamigami no Triforce JADK = The Legend of Zelda: A Link to the Past JADP = The Legend of Zelda: A Link to the Past JAEE = Donkey Kong Country JAEJ = Super Donkey Kong JAEK = Donkey Kong Country JAEP = Donkey Kong Country JAFD = SimCity JAFE = Sim City JAFF = SimCity JAFJ = SimCity JAFP = SimCity JAGJ = Fire Emblem: Monshou no Nazo JAHE = R-Type III: The 3rd Lightning JAHJ = R-Type III: The Third Lightning JAHK = R-Type III: The Third Lightning JAHP = R-TYPE III : The Third Lightning JAIE = Super Castlevania IV JAIJ = Akumajou Dracula JAIP = Super Castlevania IV JAJE = Street Fighter II: The World Warrior JAJJ = Street Fighter II JAJP = Street Fighter II: The World Warrior JALE = Contra III: The Alien Wars JALJ = Contra Spirits JALK = Contra III: The Alien Wars JALP = Super Probotector: Alien Rebels JAME = Gradius III JAMJ = Gradius III JAMK = Gradius III JAMM = Gradius III JAPJ = Fire Emblem: Seisen no Keifu JAUJ = Famicom Bunko: Hajimari no Mori JAVE = Super Metroid JAVJ = Super Metroid JAVK = Super Metroid JAVP = Super Metroid JAWE = Romance of the Three Kingdoms IV: Wall of Fire JAWJ = San Goku Shi IV JAZD = The Legend of the Mystical Ninja JAZE = The Legend of The Mystical Ninja JAZJ = Ganbare Goemon: Yukihime Kyuushutsu Emaki JAZP = The Legend of the Mystical Ninja JB3D = Harvest Moon JB3E = Harvest Moon JB3J = Harvest Moon JB3P = Harvest Moon JB5J = Super Gussun Oyoyo JB6J = Treasure Hunter G JB7J = Front Mission: Gun Hazard JB9J = Gakkou de atta Kowai Hanashi JBAE = Metal Marines JBAJ = Militia JBBE = Super Street Fighter II: The New Challengers JBBJ = Super Street Fighter II: The New Challengers JBBP = Super Street Fighter II: The New Challengers JBCE = Kirby's Dream Course JBCJ = Kirby Bowl JBCK = Kirby's Dream Course JBCP = Kirby's Dream Course JBDD = Donkey Kong Country 2: Diddy's Kong-Quest JBDE = Donkey Kong Country 2: Diddy's Kong Quest JBDJ = Super Donkey Kong 2: Dixie & Diddy JBDK = Donkey Kong Country 2: Diddy Kong's Quest JBDP = Donkey Kong Country 2: Diddy's Kong-Quest JBEJ = Magical Drop JBFJ = Otogirisou JBGJ = Mystery Dungeon: Shiren the Wanderer JBHJ = Heracles no Eikou IV: Kamigami-kara no Okurimono JBIE = Street Fighter II Turbo: Hyper Fighting JBIJ = Street Fighter II Turbo: Hyper Fighting JBIP = Street Fighter II Turbo: Hyper Fighting JBKE = Breath of Fire II JBKJ = Breath of Fire II: Shimei no Ko JBKP = Breath of Fire II JBLE = Pac-Attack JBLJ = Cosmo Gang the Puzzle JBLP = Pac-Attack JBNE = Darius Twin JBNJ = Darius Twin JBOJ = Panel de Pon JBOK = Panel de Pon JBPE = Donkey Kong Country 3: Dixie Kong's Double Trouble JBPJ = Super Donkey Kong 3: Nazo no Krems Shima JBPP = Donkey Kong Country 3: Dixie Kong’s Double Trouble JBQE = Kirby's Avalanche JBQJ = Kirby's Avalanche JBQP = Kirby's Ghost Trap JBRE = Vegas Stakes JBRJ = Vegas Stakes JBRP = Vegas Stakes JBSE = Axelay JBSJ = Axelay JBSP = Axelay JBTE = Super Turrican JBTJ = Super Turrican JBTP = Super Turrican JBUE = Super Turrican 2 JBUJ = Super Turrican Two JBVJ = Der Langrisser JBWE = Cybernator JBWJ = Assault Suits Valken JBWK = Cybernator JBWP = Cybernator JBYE = Super R-Type JBYJ = Super R-Type JBYK = Super R-Type JBYP = Super R-Type JC2J = Taikou Risshiden JC3J = Bahamut Lagoon JC4E = Indiana Jones' Greatest Adventures JC4J = Indiana Jones Great Adventure JC4P = Indiana Jones' Greatest Adventures JC5J = Romancing SaGa JC6J = Romancing SaGa 2 JC7E = The Combatribes JC7J = The Combatribes JC8E = Final Fantasy II JC8J = Final Fantasy IV JC8M = Final Fantasy II JC8P = Final Fantasy 2 JC9J = Final Fantasy V JCAJ = DoReMi Fantasy: Milon no DokiDoki Daibouken JCAL = DoReMi Fantasy - Milon’s DokiDoki Adventure JCAN = DoReMi Fantasy: Milon's DokiDoki Adventure JCBE = Super Mario RPG: Legend of the Seven Stars JCBJ = Super Mario RPG JCBM = Super Mario RPG: Legend of the Seven Stars JCCE = Kirby Super Star JCCJ = Hoshi no Kirby Super Deluxe JCCP = Kirby’s Fun Pak JCDE = Kirby's Dream Land 3 JCDJ = Hoshi no Kirby 3 JCDM = Kirby’s Dream Land 3 JCEJ = Fire Emblem: Thracia 776 JCGJ = Ganbare Goemon 2: Kiteretsu Shougun Magginesu JCHJ = Ganbare Goemon 3 JCIJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo JCJE = Super Punch-Out!! JCJJ = Super Punch-Out!! JCJP = Super Punch Out!! JCKE = Space Invaders: The Original Game JCKJ = Space Invaders: The Original Game JCKP = Space Invaders -The Original Game JCLD = Secret of Mana JCLE = Secret of Mana JCLF = Secret of Mana JCLJ = Seiken Densetsu 2 JCLP = Secret of Mana JCMJ = Super Wagyan Land JCNE = Prince of Persia JCNJ = Prince of Persia JCTE = Ogre Battle: The March of the Black Queen JCTJ = Densetsu no Ogre Battle: The March of the Black Queen JCTM = Ogre Battle: The March of the Black Queen JCUE = PilotWings JCUJ = Tactics Ogre: Let Us Cling Together JCVE = Pilotwings JCVJ = Pilotwings JCVP = Pilotwings JCWE = Super Mario Kart JCWJ = Super Mario Kart JCWP = Super Mario Kart JCXE = Nobunaga's Ambition JCXJ = Super Nobunaga no Yabou: Zengokuban JCYE = Uncharted Waters: New Horizons JCYJ = Daikoukai Jidai II JCZE = Genghis Khan II: Clan of the Gray Wolf JCZJ = Super Aoki Ookami to Shiroki Meshika: Genchou Hishi JD2J = Bishoujo Janshi Suchie-Pai JD3E = Super E.D.F. Earth Defense Force JD3J = Super E.D.F. Earth Defense Force JD3P = Super EDF Earth Defense Force JD4E = Rival Turf! JD4J = Rushing Beat JD4P = Rival Turf! JD5E = Brawl Brothers JD5J = Rushing Beat Ran: Fukusei Toshi JD5P = Brawl Brothers JD6E = The Ignition Factor JD6J = Fire Fighting JD6M = The Ignition Factor JD7E = Super Adventure Island JD7J = Takahashi Meijin no Daibouken Jima JD7P = Super Adventure Island JD8E = Super Adventure Island II JD8J = Takahashi Meijin no Daibouken Jima II JD8P = Super Adventure Island II JD9E = Super Bonk JD9J = Chou-Genjin JD9M = Super Bonk JDAE = Final Fantasy III JDAJ = Final Fantasy VI JDAP = Final Fantasy III JDBE = Super Bomberman 3 JDCE = Street Fighter Alpha 2 JDCJ = Street Fighter Two Alpha JDCP = Street Fighter Alpha 2 JDDE = Final Fight 2 JDDJ = Final Fight Two JDDP = Final Fight 2 JDEE = Final Fight 3 JDEJ = Final Fight Tough JDEP = Final Fight 3 JDFJ = Sutte Hakkun JDHJ = Super Famicom Wars JDIE = Super Star Wars JDIJ = Super Star Wars JDIP = Super Star Wars JDJE = Super Star Wars: The Empire Strikes Back JDJJ = Super Star Wars The Empire Strikes Back JDJP = Super Star Wars: The Empire Strikes Back JDKJ = Metal Max 2 JDLE = Super Star Wars: Return of the Jedi JDLJ = Super Star Wars Return Of The Jedi JDLP = Super Star Wars: Return of the Jedi JDMJ = Kirby no Kirakira Kizzu JDNE = Ghoul Patrol JDNJ = Ghoul Patrol JDOJ = Heisei Shin Onigashima: Zenpen JDPJ = Heisei Shin Onigashima: Kouhen JDQJ = Romancing Sa-Ga 3 JDRJ = Clock Tower JDSJ = Shin Megami Tensei II JDTJ = Shin Megami Tensei if... JDUJ = Albert Odyssey JDVE = Wild Guns JDVJ = Wild Guns JDVP = Wild Guns JDWE = Aero the Acrobat JDWJ = Aero The Acrobat JDWP = Aero The Acrobat JDXE = Aero the Acrobat 2 JDXJ = Aero The Acrobat Two JDXP = Aero the Acrobat 2 JDYJ = Rudra no Hihou JDZE = Final Fantasy Mystic Quest JDZJ = Final Fantasy USA: Mystic Quest JEAE = Natsume Championship Wrestling JEAJ = Natsume Championship Wrestling JEAP = Natsume Championship Wrestling JEBE = Mega Man X JEBJ = RockMan X JECE = Chrono Trigger JECJ = Chrono Trigger JECM = Chrono Trigger JECP = Chrono Trigger JEDJ = Kunio-Kun no Dodge Ball Dayo Zenin Shuugo! JEEJ = Majin Tensei JEFJ = Majin Tensei II: Spiral Nemesis JEGJ = Gouketuji Ichizoku JEHE = Mega Man X2 JEHJ = RockMan X2 JEIJ = Metal Max Returns JEJJ = Tsukikomori JEKJ = Kyuyaku Megami Tensei: Megami Tensei I・II JODI = Homebrew Channel JOUE01 = New Super Mario Bros. Wii 10 The Journey KMCP06 = Wiimms MKW Fun 2010-12.pal+ KMKE01 = Kustom Mario Kart Wii KMNE03 = Newer Super Mario Bros. Wii KMNE10 = Koopa Country KMNJ03 = Newer Super Mario Bros. Wii KMNP03 = Newer Super Mario Bros. Wii KMNP10 = Koopa Country L40P4Q = Sing IT: Pop hits, los 40 principales LAAJ = Hokuto no Ken LABE = Fantasy Zone LABJ = Fantasy Zone LABP = Fantasy Zone LACE = Wonder Boy LACJ = Super Wonder Boy LACP = Wonder Boy LADE = Phantasy Star LADJ = Phantasy Star LADP = Phantasy Star LAEE = Alex Kidd in Miracle World LAEJ = Alex Kidd in Miracle World LAEP = Alex Kidd in Miracle World LAFJ = Ashura LAFN = Secret Commando LAFP = Secret Command LAGE = Sonic The Hedgehog LAGJ = Sonic the Hedgehog LAGP = Sonic The Hedgehog LAHE = Space Harrier LAHJ = Space Harrier LAHP = Space Harrier LAIE = Enduro Racer LAIJ = Enduro Racer LAIP = Enduro Racer LAJE = Sonic The Hedgehog 2 LAJJ = Sonic the Hedgehog 2 LAJP = Sonic The Hedgehog 2 LAKE = Wonder Boy in Monster Land LAKJ = Super Wonder Boy: Monster World LAKP = Wonder Boy in Monster Land LALE = Fantasy Zone II: The Tears of OPA-OPA LALJ = Fantasy Zone II: The Tears of Opa-Opa LALP = Fantasy Zone II LAME = Sonic Chaos LAMJ = Sonic Chaos LAMP = Sonic Chaos LANE = Alex Kidd: The Lost Stars LANJ = Alex Kidd: The Lost Stars LANP = Alex Kidd: The Lost Stars LAOE = R-Type LAOJ = R-Type LAOP = R-Type LAPE = Wonder Boy III: The Dragon's Trap LAPP = Wonder Boy III: The Dragon's Trap LAQE = Alex Kidd in Shinobi World LAQP = Alex Kidd in Shinobi World LULZ = Homebrew Channel MA2J = Dyna Brothers MA3E = Puyo Puyo 2 MA3J = Puyo Puyo Tsuu MA3L = Puyo Puyo 2 MA4J = Bahamut Senki MA5J = Rent A Hero MA6E = Streets of Rage 2 MA6J = Bare Knuckle II: Shitou no Chinkon Uta MA6P = Streets of Rage 2 MA7E = Shining in the Darkness MA7J = Shining and the Darkness MA7P = Shining in the Darkness MA8E = Ecco: The Tides of Time MA8J = Ecco the Dolphin 2 MA8P = Ecco: The Tides of Time MA9J = The Hybrid Front MAAE = Altered Beast MAAJ = Juuouki MAAP = Altered Beast MABE = Columns MABJ = Columns MABP = Columns MACE = Dr. Robotnik's Mean Bean Machine MACJ = Puyo Puyo MACP = Dr. Robotnik's Mean Bean Machine MADE = Ecco the Dolphin MADJ = Ecco the Dolphin MADP = Ecco the Dolphin MAEE = Golden Axe MAEJ = Golden Axe MAEP = Golden Axe MAFE = Gunstar Heroes MAFJ = Gunstar Heroes MAFP = Gunstar Heroes MAGE = Ristar MAGJ = Ristar MAGP = Ristar MAHE = Sonic the Hedgehog MAHJ = Sonic the Hedgehog MAHP = Sonic the Hedgehog MAIE = Space Harrier II MAIJ = Space Harrier II MAIP = Space Harrier II MAJE = Toe Jam & Earl MAJJ = ToeJam & Earl MAJP = ToeJam & Earl MAKE = Shadow Dancer: The Secret of Shinobi MAKJ = Shadow Dancer: The Secret of Shinobi MAKP = Shadow Dancer: The Secret of Shinobi MALE = Bonanza Bros. MALJ = Bonanza Bros. MALP = Bonanza Bros. MAME = Sword of Vermillion MAMJ = Vermilion MAMP = Sword of Vermilion MANE = Gain Ground MANJ = Gain Ground MANP = Gain Ground MAOE = Bio-Hazard Battle MAOJ = Crying: Aseimei Sensou MAOP = Bio-Hazard Battle MAPE = Comix Zone MAPJ = Comix Zone MAPP = Comix Zone MAQE = Streets of Rage MAQJ = Bare Knuckle: Ikari no Tekken MAQP = Streets of Rage MARE = Beyond Oasis MARJ = The Story of Thor: Hikari o Tsugu Mono MARP = The Story of Thor MASE = Vectorman MASJ = Vectorman MASP = Vectorman MATE = Sonic Spinball MATJ = Sonic Spinball MATP = Sonic Spinball MAUJ = Puzzle & Action: Tant-R MAVE = Wonder Boy in Monster World MAVJ = Wonder Boy V: Monster World III MAVP = Wonder Boy In Monster World MAWE = Virtua Fighter 2 MAWJ = Virtua Fighter 2 MAWP = Virtua Fighter 2 MAXE = Alex Kidd In The Enchanted Castle MAXJ = Alex Kidd: Tenkuu Mashiro MAXP = Alex Kidd In The Enchanted Castle MAYE = Alien Storm MAYJ = Alien Storm MAYP = Alien Storm MAZE = ToeJam & Earl in Panic on Funkotron MAZP = ToeJam & Earl in Panic on Funkotron MB2J = Langrisser MB3E = Monster World IV MB3J = Monster World IV MB4J = Party Quiz Mega Q MB5J = Rangurissah II MB6E = Shining Force II MB6J = Shining Force II: Inishie no Fuuin MB6P = Shining Force II MB7E = Mega Turrican MB7P = Mega Turrican MB8E = Phantasy Star II MB8J = Phantasy Star II: Kaerazaru Toki no Owari ni MB8P = Phantasy Star II MB9J = Pepenga Pengo MBAJ = Pulseman MBAL = Pulseman MBAN = Pulseman MBBE = Sonic the Hedgehog 2 MBBJ = Sonic the Hedgehog 2 MBBP = Sonic the Hedgehog 2 MBCE = Kid Chameleon MBCJ = Chameleon Kid MBCP = Kid Chameleon MBDE = Golden Axe II MBDJ = Golden Axe II MBDP = Golden Axe II MBEE = Shining Force MBEJ = Shining Force: Kamigami no Isan MBEP = Shining Force MBFE = Shinobi III: Return of the Ninja Master MBFJ = The Super Soldier II MBFP = Shinobi III: Return of the Ninja master MBGE = Dynamite Headdy MBGJ = Dynamite Headdy MBGP = Dynamite Headdy MBHJ = Puzzle & Action: Ichidant-R MBIE = Landstalker: The Treasures of King Nole MBIJ = ラントストーカー 皇帝の財宝 MBIP = Landstalker: The Treasures of King Nole MBJE = Ghouls'n Ghosts MBJJ = Dai Makai-Mura MBJP = Ghouls'n Ghosts MBKJ = Crack Down MBKP = Crack Down MBLJ = ESWAT: Cyber Police MBLP = ESWAT City Under Siege MBME = Sonic the Hedgehog 3 MBMJ = Sonic the Hedgehog 3 MBMP = Sonic the Hedgehog 3 MBNJ = Chelnov MBOE = Golden Axe III MBOJ = Golden Axe III MBOP = Golden Axe III MBPE = Super Thunder Blade MBPJ = Super Thunder Blade MBPP = Super Thunder Blade MBQE = Streets of Rage 3 MBQJ = Bare Knuckle III MBQP = Streets of Rage 3 MBRE = Rolling Thunder 2 MBRJ = Rolling Thunder 2 MBRP = Rolling Thunder 2 MBSJ = Dyna Brothers 2 Special MBTE = Alien Soldier MBTJ = Alien Soldier MBTP = Alien Soldier MBUE = Sonic 3D: Blast MBUJ = Sonic 3D Blast MBUP = Sonic 3D: Flickies' Island MBVJ = Jusu Kihei Leynos MBWE = Columns III: Revenge of Columns MBWJ = Columns III: Taiketsu! Columns World MBWM = Columns III: Revenge of Columns MBXE = Ecco Jr. MBXJ = Ecco Jr. MBXM = Ecco Jr. MBYE = Light Crusader MBYJ = Light Crusader MBYP = Light Crusader MBZE = Eternal Champions MBZJ = Eternal Champions MBZP = Eternal Champions MC2E = Earthworm Jim 2 MC2J = Earthworm Jim 2 MC2P = Earthworm Jim 2 MC3E = Super Street Fighter II: The New Challengers MC3J = Super Street Fighter 2: The New Challengers MC3P = Super Street Fighter II: The New Challengers MC4E = Strider MC4J = Strider Hiryu MCAJ = Gley Lancer MCAL = Gley Lancer MCAN = Gley Lancer MCBE = Powerball MCBJ = Wrestleball MCCE = Phantasy Star III MCCJ = Toki no Keishousha: Phantasy Star III MCCP = Phantasy Star III: Generations of Doom MCDE = Sonic & Knuckles MCDJ = Sonic & Knuckles MCDP = Sonic & Knuckles MCEJ = Super Fantasy Zone MCEN = Super Fantasy Zone MCEP = Super Fantasy Zone MCGE = Forgotten Worlds MCGJ = Forgotten Worlds MCGP = Forgotten Worlds MCHE = M.U.S.H.A. MCHJ = Musha Aleste MCHM = MUSHA : Metallic Uniframe Super Hybrid Armor MCIJ = Gynoug MCJE = Splatterhouse 2 MCJJ = Splatterhouse Part 2 MCJP = Splatterhouse 2 MCKE = Phantasy Star IV MCKJ = Phantasy Star: Sennenki no Owari ni MCKP = Phantasy Star IV MCLE = Street Fighter II': Special Champion Edition MCLJ = Street Fighter II' Plus: Champion Edition MCLP = Street Fighter II’: Special Champion Edition MCMJ = Lord Monarch: Tokoton Sentou Densetsu MCNJ = Hokuto no Ken: Shin Seikimatu Kyuseisyu Densetsu MCOJ = Sorcerian MCPE = Earthworm Jim MCPJ = Earthworm Jim MCPP = Earthworm Jim MCQE = Boogerman: A Pick and Flick Adventure MCQP = Boogerman - A Pick and Flick Adventure MCRE = Wolf of the Battlefield: MERCS MCRJ = Senjou no Ookami II MCRP = MERCS: Wolf of the Battlefield MCSJ = Wonder Boy III: Monster Lair MCSN = Wonder Boy III: Monster Lair MCSP = Wonder Boy III: Monster Lair MCTE = Clay Fighter MCTP = Clay Fighter MCUJ = Dragon Slayer: The Legend of Heroes MCVE = Pitfall: The Mayan Adventure MCVJ = Pitfall: The Mayan Adventure MCVP = Pitfall: The Mayan Adventure MCWE = Galaxy Force II MCWJ = Galaxy Force II MCWP = Galaxy Force II MCXJ = Dragon Slayer: The Legend of Heroes MCYE = The Revenge of Shinobi MCYJ = The Super Shinobi MCYP = The Revenge of Shinobi MCZE = Shanghai II: Dragon's Eye MCZP = Shanghai II Dragon's Eye MDUE01 = Mario Kart: Track Grand Priix MECPSI = SingItStar Mecano METE01 = New Super Metroid Bros. Wii MIJPSI = SingItStar Michael Jackson MILPSI = Sing IT Star: Miliki MKDE02 = Darky Kart Wii MKTE01 = Mario Kart Wii Teknik MKWP01 = Super Mario Kart for Wii MMRE01 = D.U. Super Mario Bros 2.1 Madness Returns MRRE01 = New Super Mario Bros. Wii Retro Remix MRRP01 = New Super Mario Bros. Wii Retro Remix NA3E = Bomberman Hero NA3J = Bomberman Hero NA3P = Bomberman Hero NAAE = Super Mario 64 NAAJ = Super Mario 64 NAAP = Super Mario 64 NABE = Mario Kart 64 NABJ = Mario Kart 64 NABK = Mario Kart 64 NABP = Mario Kart 64 NACE = The Legend of Zelda: Ocarina of Time NACJ = Zelda no Densetsu: Toki no Ocarina NACP = The Legend of Zelda: Ocarina of Time NADE = Star Fox 64 NADJ = Star Fox 64 NADK = Star Fox 64 NADP = Lylat Wars NAEE = Paper Mario NAEJ = Mario Story NAEP = Paper Mario NAFE = F-Zero X NAFJ = F-Zero X NAFP = F-Zero X NAGJ = Aerogauge NAHE = Yoshi's Story NAHJ = Yoshi's Story NAHP = Yoshi's Story NAIE = Wave Race 64 NAIJ = Wave Race 64: Kawasaki Jet Ski NAIP = Wave Race 64 NAJ8 = The Legend of Zelda: Ocarina of Time (spanish translation) NAJ9 = Super Smash Bros. NAJJ = Tsumi to Batsu NAJL = Sin & Punishment NAJN = Sin and Punishment NAKD = Pokémon Snap NAKE = Pokémon Snap NAKF = Pokémon Snap NAKI = Pokémon Snap NAKJ = Pokémon Snap NAKP = Pokémon Snap NAKS = Pokémon Snap NALE = Super Smash Bros. NALJ = Nintendo All-Star Dairantou Smash Brothers NALP = Super Smash Bros. NAME = Kirby 64: The Crystal Shards NAMJ = Hoshi no Kirby 64 NAMK = Kirby 64: The Crystal Shards NAMP = Kirby 64: The Crystal Shards NAND = Pokémon Puzzle League NANE = Pokémon Puzzle League NANF = Pokémon Puzzle League NANJ = Pokemon Puzzle League NANP = Pokémon Puzzle League NAOE = 1080° Snowboarding NAOJ = 1080° Snowboarding NAOK = 1080° Snowboarding NAOP = 1080 : TenEighty Snowboarding NAPJ = Custom Robo V2 NARE = The Legend of Zelda: Majora's Mask NARJ = Zelda no Densetsu: Majora no Kamen NARP = The Legend of Zelda: Majora's Mask NASE = Cruis'n USA NASJ = Cruisn USA NASP = Cruis'n USA NATE = Mario Tennis NATJ = Mario Tennis 64 NATP = Mario Tennis NAUE = Mario Golf NAUJ = Mario Golf 64 NAUP = Mario Golf NAYE = Ogre Battle 64: Person of Lordly Caliber NAYJ = Ogre Battle 64: Person of Lordly Caliber NAYM = Ogre Battle 64 : Person of Lordly Caliber NAZE = Mario Party 2 NAZJ = Mario Party 2 NAZP = Mario Party 2 NEEA = The Legend of Zelda: Ocarina of Time Master Quest NEWE01 = New Super Mario Bros Wii 15 A New World NK2O = Neek2o NMNP01 = Newer Super Mario Bros. Wii NRJ1FR = StarSing : NRJ Music Tour v1.1 NSMB02 = New Super Mario Bros. Wii 2 NSSP01 = Newer Summer Sun NWRP01 = Newer Super Mario Bros. Wii NZXM = Super Mario 64 Multiplayer ONKELZ = SingItStar Böhse Onkelz PAL OTFPSI = Sing IT: Operación triunfo P2ME01 = Metroid Prime 2: Echoes (Bonus Disc) PA2J = Nekketsu Koukou Dodgeball Bu: CD Soccer Hen PA3J = Salamander PA4J = Parasol Stars PA6E = Bloody Wolf PA6J = Narazumono Sentou Butai: Bloody Wolf PA6P = Bloody Wolf PA7E = Alien Crush PA7J = Alien Crush PA7P = Alien Crush PA8E = Ordyne PA8J = Ordyne PA9E = Splatterhouse PA9J = Splatterhouse PA9P = Splatterhouse PAAE = Bomberman '93 PAAP = Bomberman '93 PABE = Bonk's Adventure PABJ = PC Genjin PABP = Bonk's Adventure PACE = Dungeon Explorer PACJ = Dungeon Explorer PACP = Dungeon Explorer PADE = R-Type PADJ = R-Type I PADP = R-Type PAEE = Super Star Soldier PAEJ = Super Star Soldier PAEP = Super Star Soldier PAFE = Victory Run PAFJ = Victory Run: Eikou no 13,000KM PAFP = Victory Run PAGJ = Bomberman '94 PAGL = Bomberman'94 PAGN = Bomberman '94 PAHE = Battle Lode Runner PAHJ = Battle Lode Runner PAHP = Battle Lode Runner PAIE = New Adventure Island PAIJ = Takahashi Meijin no Shin Bouken Jima PAIP = New Adventure Island PAJJ = Joshoken Necromancer PAKE = Dragon's Curse PAKJ = Adventure Island PAKP = Dragon's Curse PALE = Soldier Blade PALJ = Soldier Blade PALP = Soldier Blade PAME = Neutopia PAMJ = Neutopia: Frey no Shou PAMP = Neutopia PANE = Military Madness PANJ = Nectaris PANP = Military Madness PAOJ = Final Soldier PAOL = Final Soldier PAON = Final Soldier PAPJ = R-Type II PAQJ = Gradius PARJ = Detana TwinBee PARL = Detana Twin Bee PARN = Detana Twin Bee PASJ = Cadash PATJ = Kiki Kaikai PAUJ = Kaizou Chounin Shubibinman PAVE = Vigilante PAVJ = Vigilante PAVP = Vigilante PAWE = Galaga '90 PAWJ = Galaga '88 PAWP = Galaga'90 PAYJ = Valkyrie no Densetsu PAZJ = Genpei Toumaden PB2E = Neutopia II PB2J = Neutopia II PB2P = Neutopia II PB3E = Devil's Crush PB3J = Devil Crash PB3P = Devil's Crush PB5J = Ninja Ryukenden PB6E = Cratermaze PB6P = Cratermaze PB7J = Sengoku Mahjong PB8E = Blazing Lazers PB8J = Blazing Lazers PB8P = Blazing Lazers PB9E = World Sports Competition PB9J = Power Sports PB9P = World Sports Competition PBAE = Dragon Spirit PBAJ = Dragon Spirit PBAP = Dragon Spirit PBCJ = Wonder-Momo PBDE = Double Dungeons PBDJ = Double Dungeons PBDP = Double Dungeons PBEE = Moto Roader PBEJ = Moto Roader PBEP = Motoroader PBFJ = Fire ProWrestling: Combination Tag PBHE = Bonk's Revenge PBHJ = PC Genjin 2 PBHP = Bonk's Revenge PBIE = Bonk 3: Bonk's Big Adventure PBIJ = PC Genjin 3 PBIP = Bonk III: Bonk's Big Adventure PBJE = Samurai Ghost PBJJ = Genpei Toumaden: Kannoni PBJP = Samurai Ghost PBME = Legend of Hero Tonma PBMJ = Legend of Hero Tonma PBMP = Legend of Hero Tonma PBNE = Ninja Spirit PBNJ = Saigou no Nindou: Ninja Spirit PBNP = Ninja Spirit PBSE = Chew Man Fu PBSJ = Be Ball PBSP = Chew Man Fu PBTE = China Warrior PBTJ = The Kung Fu PBTP = China Warrior PBUE = Bravoman PBUJ = Chouzetsu Rinjin Bravoman PBVJ = Benkei Gaiden PBWE = Air “Zonk” PBWJ = PC Denjin: Punkic Cyborgs PBWP = Air 'Zonk' PBXE = Shockman PBXJ = Kaizou Chounin Shubibinman 2: Atanaru Teki PBXP = Shockman PBYJ = Out Live PBZE = J.J. & Jeff PBZP = J.J. & Jeff PC2E = Chase H.Q. PC2J = Chase H.Q. PC2P = Chase H.Q. PC3J = Darius Plus PC4J = Space Invaders: Fukkatsu no Hi PC5J = Dragon Saber PC6E01 = Pokémon Colosseum Bonus Disc PC6J = Final Blaster PC7J = Mizubaku Daibouken PC8J = The Ninjawarriors PC9J = The NewZealand Story PCAE = Silent Debuggers PCAJ = Silent Debuggers PCAP = Silent Debuggers PCBE = Dead Moon PCBJ = Dead Moon: Tsuki Sekai no Akumu PCBP = Dead Moon PCCJ = Makai Hakkenden Shada PCDJ = Appare! Gateball PCEE = Power Golf PCEJ = Power Golf PCEP = Power Golf PCHE = Drop Off PCHJ = Drop Rock Hora Hora PCHP = Drop Off PCJJ = Override PCKJ = Gai Flame PCMJ = Mr. Heli no Daibouken PCNJ = Winning Shot PCOE = Psychosis PCOJ = Paranoia PCOP = Psychosis PCPJ = Power Eleven PCQJ = Psycho Chaser PCRJ = Break In PCRL = Break In PCRN = Break In PCSJ = Digital Champ: Battle Boxing PCSJ = Digital Champ: Battle Boxing PCSJ01 = Pokemon Colosseum Bonus Disc PCSL = Digital Champ : Battle Boxing PCSN = Digital Champ Battle Boxing PCTJ = Power Tennis PCUJ = Fire ProWrestling 2nd Bout PCVE = World Class Baseball PCVP = World Class Baseball PCWJ = Image Fight PCXJ = Power League IV PCYJ = Wallaby!! Usagi no Kuni no Kangaroo Race PDCJ = Dai Makaimura PDDJ = Volfied PDEJ = S.C.I.: Special Criminal Investigation PDFJ = Jigoku Meguri PDGJ = Fire ProWrestling 3: Legend Bout PDHJ = Rastan Saga II PDIE = Champion Wrestler PDJJ = Street Fighter II': Champion Edition PDJL = Street Fighter II' : Champion Edition PDJN = Street Fighter II: Champion Edition PDUE01 = Another Super Mario Bros. Wii PKBJ01 = トルアーカの塔 PLUS = WiiMC+ PM4E01 = Mario Kart: Double Dash!! Bonus Disc PMNEO1 = New Old Super Mario Bros. Wii POPPSI = SingItStar Pop PPNE01 = New Super Mario Bros. Wii 2: The Next Levels PPNP01 = New Super Mario Bros. Wii 2: The Next Levels PRJE01 = Pac-Man vs. PRJJ01 = ハックマン VS. PRJP01 = Pac-Man vs. PROE01 = New Super Mario Bros. Wii 14 Project Mario PT1PSI = SingIt Star Portugal Hits PT2PSI = SingIt Portugal Hits Summer Party PT3PSI = Sing IT Portugal Hits - Morangos com Açucar PUTA01 = Guitar Hero III Custom : Rock Hits PWNP69 = Pwned Super Mario Bros. Wii PXWE = Project X: Love Potion Disaster PZLE01 = The Legend of Zelda: Collector's Edition PZLJ01 = セルタコレクション PZLP01 = The Legend of Zelda: Collector's Edition QA2J = Nekketsu Koukou Dodge Ball-Bu: CD Soccer-hen QA3E = SimEarth: The Living Planet QA3J = SimEarth QA3P = SimEarth: The Living Planet QA4J = Super Darius II QA5J = Space Invaders: The Original Game QA6J = Super Darius QA7J = Legend of Xanadu: Kaze no Densetsu Xanadu QA8J = Spriggan Mark 2 QA9J = Kaze no Densetsu: Xanadu II QAAE = Super Air Zonk QAAJ = CD Denjin: Rockabilly Tengoku QAAP = Super Air Zonk QABE = Ys Book I & II QABJ = Ys I + II QABP = Ys Book I & II QACJ = Cho Aniki QACL = Cho Aniki QACN = Cho Aniki QADJ = Gradius II: Gofer no Yabou QADL = Gradius II: Gofer no Yabou QADN = Gradius II Gofer No Yabou QAEJ = A.III: A-Ressha de Ikou III QAFE = The Dynastic Hero QAFJ = Chou Eiyuu Densetsu: Dynastic Hero QAFP = The Dynastic Hero QAGE = Gate of Thunder QAGJ = Gate of Thunder QAGP = Gate of Thunder QAHJ = Kawa no Nushi Tsuni Shizenha QAJJ = Image Fight II QAKJ = Ai Chou Aniki QALJ = The Atlas: Renaissance Voyager QANJ = Neo Nectaris QAOJ = Dungeon Explorer II QAPJ = Akumajou Dracula X: Chi no Rondo QAPL = Castlevania : Rondo of Blood QAPN = Castlevania Rondo of Blood QAPP = Castlevania: Rondo of Blood QAQJ = Dragon Slayer: Eiyuu Densetsu QARJ = Blood Gear QASE = Lords of Thunder QASJ = Winds of Thunder QASP = Lords of Thunder QATE = Riot Zone QATJ = Crest of Wolf QATP = Riot Zone QAUE = Monster Lair QAUJ = Wonder Boy III: Monster Lair QAUP = Monster Lair QAVJ = Bomberman: Panic Bomber QAWJ = Star Parodier QAWL = Star Parodier QAWN = Star Parodier QAXJ = Martial Champion QAYJ = Seirei Senshi Spriggan QAZJ = Eikan wa Kimi ni: Koko Yakyu Zenkoku Taikai QBAJ = L Dis QBBE = Fighting Street QBBJ = Fighting Street QBBP = Fighting Street R01PET = SingItStar Queen R02PEA = SingItStar Rock Ballads R15POH = SingIt Star Radio 105 R22E01 = FlingSmash R22J01 = たたいて弾む スーハースマッシュホール・フラス R22P01 = FlingSmash R23E52 = Barbie and the Three Musketeers R23P52 = Barbie and the Three Musketeers R24J01 = Wiiてあそふ ちひロホ! R25EWR = LEGO Harry Potter: Years 1-4 R25PWR = LEGO Harry Potter: Years 1-4 R26E5G = Data East Arcade Classics R27E54 = Dora Saves the Crystal Kingdom R27X54 = Dora Saves the Crystal Kingdom R28E54 = Top Spin 4 R28P54 = Top Spin 4 R29E52 = NPPL Championship Paintball 2009 R29P52 = Millennium Series Championship Paintball 2009 R2AE7D = Ice Age 2: The Meltdown R2AP7D = Ice Age 2: The Meltdown R2AX7D = Ice Age 2: The Meltdown R2DEEB = Dokapon Kingdom R2DJEP = トカホンキンクタム for Wii R2DPAP = Dokapon Kingdom R2DPJW = Dokapon Kingdom R2EJ99 = フィッシュアイスWii R2FE5G = Freddi Fish: Kelp Seed Mystery R2FP70 = Freddi Fish: Kelp Seed Mystery R2GEXJ = Fragile Dreams: Farewell Ruins of the Moon R2GJAF = FRAGILE 〜さよなら月の廃墟〜 R2GP99 = Fragile Dreams: Farewell Ruins of the Moon R2HE41 = Petz Horse Club R2IE69 = Madden NFL 10 R2IP69 = Madden NFL 10 R2JJAF = 太鼓の達人Wii R2KE54 = Don King Boxing R2KP54 = Don King Boxing R2LJMS = Hula Wii フラて始める 美と健康!! R2ME20 = M&M's Adventure R2NE69 = NASCAR Kart Racing R2OE68 = Medieval Games R2OP68 = Medieval Games R2PE9B = Super Swing Golf Season 2 R2PJ9B = スインクコルフ ハンヤ 2ndショット! R2PKZ4 = Super Swing Golf Season 2 R2PP99 = Super Swing Golf R2PP9B = Super Swing Golf R2QJC0 = クッキンクママ2 たいへん!ママは おおいそかし!! R2RE4F = Pony Friends 2 R2RP4F = Pony Friends 2 R2SE18 = Deca Sports 2 R2SJ18 = テカスホルタ2 R2SP18 = Sports Island 2 R2TE41 = Teenage Mutant Ninja Turtles: Smash-Up R2TP41 = Teenage Mutant Ninja Turtles: Smash-Up R2UE8P = Let's Tap R2UJ8P = レッツタッフ R2UP8P = Let's Tap R2VE01 = Sin & Punishment: Star Successor R2VJ01 = 罪と罰 宇宙の後継者 R2VP01 = Sin and Punishment: Successor of the Skies R2WEA4 = Pro Evolution Soccer 2009 R2WJA4 = ウイニンクイレフン フレーメーカー 2009 R2WPA4 = Pro Evolution Soccer 2009 R2WXA4 = Pro Evolution Soccer 2009 R2YE54 = Birthday Party Bash R2YP54 = It's my Birthday! R32J01 = Wiiてあそふ メトロイトフライム2 タークエコース R33E69 = AC/DC Live: Rock Band Track Pack R33P69 = AC/DC Live: Rock Band Song Pack R34E69 = Rock Band: Country Track Pack R35JC8 = 三國志 11 With ハワーアッフキット R36E69 = Green Day: Rock Band R36P69 = Green Day: Rock Band R37E69 = Rock Band: Metal Track Pack R38E78 = Marvel Super Hero Squad R38P78 = Marvel Super Hero Squad R38X78 = Marvel Super Hero Squad: Walmart Edition R38Y78 = Marvel Super Hero Squad R39EFP = Shimano Xtreme Fishing R39PNK = Shimano Extreme Fishing R3AE20 = Story Hour: Adventures R3AP20 = Story Hour: Adventures R3AP7J = Story Hour: Adventures R3BE8P = Samba de Amigo R3BJ8P = サンハDEアミーコ R3BP8P = Samba de Amigo R3CE20 = Chrysler Classic Racing R3CP20 = Chrysler Classic Racing R3CP7J = Chrysler Classic Racing R3DES5 = Dream Pinball 3D R3DPS5 = Dream Pinball 3D R3EEWR = Game Party 3 R3EPWR = Game Party 3 R3FJA4 = 実況ハワフルメシャーリーク3 R3GXUG = Kidz Sports: Crazy Mini Golf R3HP6Z = Agent Hugo: Hula Holiday R3HX6Z = Agent Hugo: Hula Holiday R3IJ01 = Wiiてあそふ メトロイトフライム R3JE5G = Go Play Circus Star R3KP6N = Skyscraper R3LEWR = Green Lantern: Rise of the Manhunters R3LPWR = Green Lantern: Rise of the Manhunters R3ME01 = メトロイトフライム トリロシー R3MP01 = Metroid Prime: Trilogy R3NEXS = Guilty Gear XX Accent Core Plus R3NPH3 = Guilty Gear XX Accent Core Plus R3OE01 = Metroid: Other M R3OJ01 = メトロイト アサーエム R3OP01 = Metroid: Other M R3PEWR = Speed Racer: The Videogame R3PJ52 = スヒート・レーサー R3PPWR = Speed Racer: The Videogame R3RE8P = Sonic & SEGA All-Stars Racing R3RP8P = Sonic & SEGA All-Stars Racing R3SE52 = Spider-Man: Web of Shadows R3SP52 = Spider-Man: Web of Shadows R3TE54 = Top Spin 3 R3TJG9 = TOP SPIN3 R3TP54 = Top Spin 3 R3UJGD = おやこてあそほ ミッフィーのおもちゃはこ R3VEFP = Deer Drive R3VPNK = Deer Drive R3XE6U = Sam & Max: Season One R3XP6V = Sam & Max: Season One R3YE70 = Sam & Max: Season Two: Beyond Time and Space R3YP70 = Sam & Max: Season Two: Beyond Time and Space R3ZE69 = Rock Band Track Pack: Classic Rock R42E69 = The Sims 2: Castaway R42P69 = The Sims 2: Castaway R43E69 = EA Sports Active: Personal Trainer R43J13 = ハーソナルトレーナーWii30日生活改善フロクラム R43P69 = EA Sports Active: Personal Trainer R44J8P = 涼宮ハルヒの並列 R46ENS = Phantom Brave: We Meet Again R46JKB = ファントム・フレイフWii R47E20 = ATV Quad Kings R48E7D = The Spiderwick Chronicles R48P7D = The Spiderwick Chronicles R49E01 = Donkey Kong Jungle Beat R49J01 = Wiiてあそふ トンキーコンクシャンクルヒート R49P01 = Donkey Kong: Jungle Beat R4AE69 = SimAnimals R4AJ13 = シムアニマル R4AP69 = SimAnimals R4BEJZ = Championship Foosball R4BPGT = Table Football R4CE69 = SimCity Creator R4CJ13 = シムシティ クリエイター R4CK69 = SimCity Creator R4CP69 = Simcity Creator R4DDUS = Die drei Fragezeichen - Das verfluchte Schloss R4EE01 = Endless Ocean: Blue World R4EJ01 = FOREVER BLUE 海の呼ひ声 R4EP01 = Endless Ocean 2: Adventures of the Deep R4FE20 = Story Hour: Fairy Tales R4FP20 = Story Hour: Fairy Tales R4FP7J = Story Hour: Fairy Tales R4IPNK = Mad Tracks R4LPUG = Athletic Piggy Party R4LXUG = Athletic Piggy Party R4MJ0Q = シカクいアタマをマルくする。Wii R4NE5G = Major Minor's Majestic March R4NP5G = Major Minor's Majestic March R4NX5G = Major Minor's Majestic March R4PE69 = The Sims 2: Pets R4PP69 = The Sims 2: Pets R4QE01 = Mario Strikers Charged R4QJ01 = マリオストライカース チャーシト R4QK01 = Mario Power Soccer R4QP01 = Mario Strikers Charged Football R4RE69 = FIFA Soccer 10 R4RJ13 = FIFA 10 ワールトクラス サッカー R4RK69 = FIFA 10 R4RP69 = FIFA 10 R4RX69 = FIFA 10 R4RY69 = FIFA 10 R4RZ69 = FIFA Soccer 10 R4SE54 = MLB Superstars R4VEA4 = Storybook Workshop R4VJA4 = テレしはい Wii R4VJAF = テレしはいWii R4WJA4 = 実況ハワフルメシャーリーク2009 R4YJ2M = 女番社長レナWii 貓社長、つかえる社員大募集。 R4ZE01 = Fatal Frame 4: Mask of the Lunar Eclipse R4ZJ01 = 零~月蝕の仮面~ R4ZP01 = Fatal Frame IV: Mask of the Lunar Eclipse R52E08 = Neopets Puzzle Adventure R52P08 = Neopets Puzzle Adventure R53PFH = In The Mix Featuring Armin van Buuren R54FMR = Countdown: The Game R55F41 = Qui Veut Gagner Des Millions: 1ère Edition R55P41 = Who Wants To Be A Millionaire: 1st Edition R56EG9 = Astro Boy: The Video Game R56PG9 = Astro Boy: The Video Game R57FMR = Questions pour un champion R58DMR = U-Sing R58FMR = U-Sing R58PMR = U-Sing R58SMR = U-Sing R59D4Q = Club Penguin: Game Day! R59E4Q = Club Penguin: Game Day! R59P4Q = Club Penguin: Game Day! R5AE8P = The Golden Compass R5AP8P = The Golden Compass R5AX8P = The Golden Compass R5DE5G = Flip's Twisted World R5EPMR = Countdown: The Game R5FE41 = Academy of Champions: Soccer R5FP41 = Academy of Champions: Football R5GE78 = Are You Smarter Than A 5th Grader?: Make the Grade R5IE4Q = Toy Story Mania! R5IP4Q = Toy Story Mania! R5IR4Q = Toy Story Mania! R5IX4Q = Toy Story Mania! R5JES5 = Pirates vs Ninjas Dodgeball R5JPS5 = Pirates vs Ninjas Dodgeball R5MJAF = ことはのハスル もしひったんWii テラックス R5NJN9 = トアラてWii R5OENR = Party Pigs: Farmyard Games R5OXUG = Farmyard Party: Featuring the Olympigs R5PE69 = Harry Potter and the Order of the Phoenix R5PJ13 = ハリー・ホッターと不死鳥の騎士団 R5PP69 = Harry Potter and the Order of the Phoenix R5PX69 = Harry Potter and the Order of the Phoenix R5QPGT = Circus R5SERW = Mortimer Beckett and the Secrets of Spooky Manor R5TE69 = Grand Slam Tennis R5TJ13 = クラントスラムテニス R5TP69 = Grand Slam Tennis R5UE41 = CSI: Deadly Intent R5UP41 = CSI: Deadly Intent R5VE41 = James Cameron's Avatar: The Game R5VP41 = James Cameron's Avatar: The Game R5VX41 = James Cameron's Avatar: The Game R5WEA4 = Silent Hill: Shattered Memories R5WJA4 = Silent Hill: Shattered Memories R5XJ13 = ほくとシムのまち エーシェント R5XP69 = MySims Agents R5YD78 = All Star Cheerleader 2 R5YE78 = All Star Cheer Squad 2 R5YP78 = All Star Cheerleader 2 R62E4Q = Disney Sing It: Pop Hits R62P4Q = Disney Sing It: Pop Hits R63EG9 = Family Party: 30 Great Games Outdoor Fun R63PG9 = Family Party: 30 Great Games Outdoor Fun R64E01 = Wii Music R64J01 = Wiiミューシック R64K01 = Wii Music R64P01 = Wii Music R65ENR = Buck Fever R66E41 = Press Your Luck 2010 Edition R67E6K = Smart Series Presents: JaJa's Adventure R68E5G = Go Play City Sports R69E36 = DiRT 2 R69P36 = Colin McRae: DiRT 2 R6APPU = Baby and Me R6BE78 = de Blob R6BJ78 = フロフ カラフルなきほう R6BK78 = de Blob R6BP78 = de Blob R6BX78 = de Blob R6CEAF = We Cheer 2 R6CJAF = WE CHEER Dancing Spirits! R6DFJW = Code de la Route R6EE41 = Family Feud 2010 Edition R6FE41 = Six Flags Fun Park R6FERS = Six Flags Fun Park R6FP41 = Fun Park Party R6GPMR = Golden Balls R6HE54 = Ni Hao, Kai-lan: Super Game Day R6HP54 = Ni Hao, Kai-lan: Super Game Day R6IE54 = Baseball Blast! R6JJGD = 鋼の錬金術師 FULLMETAL ALCHEMIST -暁の王子- R6KP36 = Ashes Cricket 2009 R6KU36 = Ashes Cricket 2009 R6LEWR = LEGO Rock Band R6LPWR = LEGO Rock Band R6ME5Z = America's Next Top Model R6MPML = America's Next Top Model R6MXMR = Top Model R6NE41 = Shaun White Snowboarding: World Stage R6NP41 = Shaun White Snowboarding: World Stage R6NY41 = Shaun White Snowboarding: World Stage R6OE78 = Cars Race-O-Rama R6OP78 = Cars Race-O-Rama R6OX78 = Cars Race-O-Rama R6QE69 = MySims Agents R6REJH = TrackMania: Build to Race R6RPHH = TrackMania R6TEA4 = Tornado Outbreak R6TPA4 = Tornado Outbreak R6VE4Z = King of Clubs R6VPGN = King of Clubs R6WE68 = AMF Bowling World Lanes R6WP68 = AMF Bowling World Lanes R6XE69 = Hasbro: Family Game Night 2 R6XP69 = Hasbro: Family Game Night 2 R6YEXS = Squeeballs Party R6YPH3 = Squeeballs Party R72E5G = Cake Mania: In The Mix! R72P5G = Cake Mania: In The Mix! R74E20 = Arcade Shooting Gallery R75E20 = Dream Salon R76E54 = NBA 2K10 R76P54 = NBA 2K10 R77JAF = SDカンタム Gシェネレーション ウォース R79JAF = 機動戦士カンタム MS戦線0079 R7AE69 = SimAnimals Africa R7AJ13 = シムアニマル アフリカ R7AP69 = SimAnimals Africa R7BE20 = Jelly Belly Ballistic Beans R7BP7J = Jelly Belly Ballistic Beans R7CJ01 = キャフテン★レインホー R7EE8P = NiGHTS: Journey of Dreams R7EJ8P = ナイツ 〜星降る夜の物語〜 R7EP8P = NiGHTS: Journey of Dreams R7FEGD = Final Fantasy Fables: Chocobo's Dungeon R7FJGD = チョコホの不思議なタンション 時忘れの迷宮 R7FPGD = Final Fantasy Fables: Chocobo's Dungeon R7GEAF = Dragon Ball: Revenge of King Piccolo R7GJAF = トラコンホール天下一大冒険 R7GPAF = Dragon Ball: Revenge of King Piccolo R7HE6K = Army Rescue R7IE69 = Charm Girls Club: Pajama Party R7IP69 = Charm Girls Club: Pyjama Party R7KE6K = Rock Blast R7LP7J = Margot's Bepuzzled! R7MXFR = Musiic Party: Rock the House R7NE20 = Cold Stone Creamery: Scoop It Up R7OE54 = NHL 2K10 R7OP54 = NHL 2K10 R7PE01 = Punch-Out!! R7PJ01 = ハンチアウト!! R7PP01 = Punch-Out!! R7QE52 = Chaotic: Shadow Warriors R7RE52 = Little League World Series Baseball 2009 R7SE5G = Escape The Museum R7SP5G = Escape The Museum R7TFJW = Pétanque Pro R7VEWR = Vacation Isle: Beach Party R7VPWR = Vacation Isle: Beach Party R7WE52 = Mountain Sports R7WP52 = Mountain Sports R7XE69 = Need for Speed: Nitro R7XJ13 = ニート・フォー・スヒート ナイトロ R7XP69 = Need for Speed: Nitro R7YFMR = Pékin Express R7ZE41 = Team Elimination Games R7ZP41 = Knockout Party R82E52 = Animal Planet: Vet Life R82JG0 = ターツWii DX R82P52 = Animal Planet: Vet Life R83EA4 = Pop'n Music R83JA4 = ホッフンミューシック R83PA4 = Pop'n Rhythm R84EE9 = Harvest Moon: Tree Of Tranquility R84J99 = 牧場物語 やすらきの樹 R84P99 = Harvest Moon: Tree of Tranquility R85EG9 = The Secret Saturdays: Beasts of the 5th Sun R85PG9 = The Secret Saturdays: Beasts of the 5th Sun R86E20 = Dream Dance & Cheer R87EVN = Ski-Doo: Snowmobile Challenge R88J2L = アンハンマン にこにこハーティ R89JEL = 東京フレントハークⅡ R8AE01 = PokéPark Wii: Pikachu's Adventure R8AJ01 = ホケハークWii ヒカチュウの大冒険 R8AP01 = PokéPark Wii: Pikachu's Adventure R8BE41 = Imagine Party Babyz R8BP41 = Babysitting Party R8DEA4 = Yu-Gi-Oh! 5D's: Duel Transer R8DJA4 = 遊戯王ファイフティース テュエルトランサー R8DPA4 = Yu-Gi-Oh! 5D's: Master of the Cards R8EJQC = アースシーカー R8FES5 = Fast Food Panic R8FJHA = 匠レストランは大繁盛! R8FJSC = 匠レストランは大繁盛! R8FPNP = Fast Food Panic R8GJC8 = シーワンショッキー Wii 2008 R8GPC8 = G1 Jockey Wii 2008 R8HE4Q = Hannah Montana: The Movie R8HP4Q = Hannah Montana: The Movie R8HX4Q = Hannah Montana: The Movie R8HY4Q = Hannah Montana: The Movie R8IE78 = SpongeBob's Truth or Square R8IP78 = SpongeBob's Truth or Square R8IS78 = SpongeBob's Truth or Square R8JEWR = The Lord of the Rings: Aragorn's Quest R8JPWR = The Lord of the Rings: Aragorn's Quest R8KPKM = Street Football 2 R8LE20 = Chicken Blaster R8LP7J = Chicken Blaster R8NEA4 = The Cages: Pro Style Batting Practice R8NJG0 = ハッティンク レホリューション R8OE54 = Ringling Bros. and Barnum & Bailey Circus R8OX54 = It's My Circus R8PC01 = Super Paper Mario(CN) R8PE01 = Super Paper Mario R8PJ01 = スーハーヘーハーマリオ R8PK01 = Super Paper Mario R8PP01 = Super Paper Mario R8QPRT = Crazy Quiz: Are You Crazy Enough? R8RP41 = Arthur and the Revenge of Maltazard R8SE41 = Vacation Sports R8SP41 = World Sports Party R8SX41 = World Sports Party R8TENR = Tournament Pool R8UXMR = Adibou R8VE41 = Petz Rescue: Wildlife Vet R8VP41 = Planet Rescue: Wildlife Vet R8XE52 = Jurassic: The Hunted R8XZ52 = Top Shot Dinosaur Hunter R8YE52 = Cabela's Big Game Hunter 2010 R8ZE8P = Daisy Fuentes Pilates R8ZPGT = Daisy Fuentes Pilates R92E01 = Pikmin 2 R92J01 = Wiiてあそふ ヒクミン2 R92P01 = Pikmin 2 R94PMR = The Ultimate Red Ball Challenge R94XMR = The Ultimate Red Ball Challenge R96EAF = Klonoa R96JAF = 風のクロノア -door to phantomile- R96KAF = Klonoa - Door to Phantomile R96PAF = Klonoa R97E9B = Family Fun Football R9AE52 = Activision Demo Action Pack (Demo) R9BPMT = Bob the Builder: Festival of Fun R9CPMR = I'm a Celebrity...Get Me Out of Here! R9DE78 = Drawn to Life: The Next Chapter R9DP78 = Drawn to Life: The Next Chapter R9EPNP = Fix It: Home Improvement Challenge R9FE36 = F1 2009 R9FJ36 = F1 2009 R9FP36 = F1 2009 R9GEWR = Legend of the Guardians: The Owls of Ga'Hoole R9GPWR = Legend of the Guardians: The Owls of Ga'Hoole R9HE78 = Are You Smarter Than A 5th Grader?: Game Time R9IE01 = Pikmin R9IJ01 = Wiiてあそふ ヒクミン R9IK01 = Pikmin R9IP01 = Pikmin R9JE69 = The Beatles: Rock Band R9JP69 = The Beatles: Rock Band R9KE20 = Groovin' Blocks R9LE41 = Sleepover Party R9LP41 = Girls Life: Sleepover Party R9ME5Z = World Championship Athletics R9MPFR = Summer Athletics 2009 R9NPMR = Family Fortunes R9OE69 = Tiger Woods PGA Tour 10 R9OK69 = Tiger Woods PGA Tour 10 R9OP69 = Tiger Woods PGA Tour 10 R9QPNG = Dance Party Club Hits R9RPNG = Dance Party Pop Hits R9SPPL = Sudoku Ball: Detective R9TE69 = Tiger Woods PGA Tour 09 All-Play R9TJ13 = タイカー・ウッス PGA TOUR 09 ALL-PLAY R9TK69 = Tiger Woods PGA Tour 09 All-Play R9TP69 = Tiger Woods PGA Tour 09 All-Play R9UE52 = Build-A-Bear Workshop: Friendship Valley R9UPGY = Build-A-Bear Workshop: Friendship Valley R9VE52 = Cabela's Outdoor Adventures 2010 R9WPSP = WSC Real 09: World Snooker Championship R9XE52 = Arcade Zone R9XP52 = Arcade Zone R9YES5 = Sled Shred R9ZE54 = Major League Baseball 2K9 RABAZZ = System Menu Changer RADP01 = New Super Mario Bros. Wii 0-6 Radiance RB2E6K = Balloon Pop RB2J2K = レインホーホッフ RB2P6K = Pop! RB2PGT = Pop! RB4E08 = Resident Evil 4: Wii Edition RB4J08 = ハイオハサート4 Wii edition RB4P08 = Resident Evil 4: Wii Edition RB4X08 = Resident Evil 4: Wii Edition RB5E41 = Brothers In Arms: Earned In Blood RB5P41 = Brothers In Arms: Earned In Blood RB6J18 = ホンハーマン RB7E54 = Bully: Scholarship Edition RB7P54 = Bully: Scholarship Edition RB8E70 = Backyard Baseball '09 RB9D78 = Bratz: The Movie RB9E78 = Bratz: The Movie RB9P78 = Bratz: The Movie RB9X78 = Bratz: The Movie RB9Y78 = Bratz: The Movie RBAE41 = Blazing Angels: Squadrons of WWII RBAP41 = Blazing Angels: Squadrons of WWII RBBE18 = Bomberman Land RBBJ18 = ホンハーマンラントWii RBBP99 = Bomberman Land Wii RBCP41 = Telly Addicts RBEE52 = Bee Movie Game RBEP52 = Bee Movie Game RBEX52 = Bee Movie Game RBFE20 = Balls of Fury RBFP20 = Balls of Fury RBFP7J = Balls of Fury RBGE54 = The BIGS RBGP54 = The Bigs RBHE08 = Resident Evil Archives: Resident Evil Zero RBHJ08 = ハイオハサート0 RBHP08 = Resident Evil Archives: Resident Evil Zero RBIEE9 = Harvest Moon: Animal Parade RBIJ99 = 牧場物語 わくわくアニマルマーチ RBIP99 = Harvest Moon: Animal Parade RBKE69 = Boom Blox RBKJ13 = フーム フロックス RBKK69 = Boom Blox RBKP69 = Boom Blox RBLE8P = Bleach: Shattered Blade RBLJ8P = BLEACH Wii 白刃きらめく輪舞曲 RBLP8P = Bleach: Shattered Blade RBME5G = Bust-a-Move Bash! RBMPGT = Bust-A-Move RBNEG9 = Ben 10: Protector of Earth RBNPG9 = Ben 10: Protector of Earth RBNXG9 = Ben 10: Protector of Earth RBOE69 = Boogie RBOP69 = Boogie RBPE4Z = Brunswick Pro Bowling RBPP4Z = Brunswick Pro Bowling RBPPGT = Brunswick Pro Bowling RBQENR = Classic British Motor Racing RBQPUG = Classic British Motor Racing RBRE5G = Blast Works: Build, Trade, Destroy RBRP5G = Blast Works: Build, Trade, Destroy RBRX5G = Blast Works: Build, Trade, Destroy RBSJ08 = 戦国BASARA2 英雄外伝 タフルハック RBSJ09 = 戦国BASARA2 英雄外伝 タフルハック RBTE8P = SEGA Bass Fishing RBTJ8P = ウチ釣りっ! ハスフィッシンク RBTP8P = Sega Bass Fishing RBUE08 = Resident Evil: The Umbrella Chronicles RBUJ08 = ハイオハサート アンフレラ・クロニクルス RBUK08 = Biohazard The Umbrella Chronicles RBUP08 = Resident Evil: The Umbrella Chronicles RBVE52 = Barbie as The Island Princess RBVP52 = Barbie as The Island Princess RBWE01 = Battalion Wars 2 RBWJ01 = 突撃!! ファミコンウォース VS RBWP01 = Battalion Wars 2 RBXJ8P = BLEACH ハーサス・クルセイト RBYE78 = Barnyard RBYJ78 = ハーンヤート 〜主役はオレ、牛〜 RBYP78 = Barnyard RBZE5Z = Billy the Wizard: Rocket Broomstick Racing RBZP5Z = Billy the Wizard: Rocket Broomstick Racing RBZPUG = Billy the Wizard: Rocket Broomstick Racing RBZXUG = Billy the Wizard: Rocket Broomstick Racing RC2E78 = Cars: Mater-National RC2P78 = Cars: Mater-National RC2X78 = Cars: Mater-National RC2Y78 = Cars: Mater-National RC3E41 = Petz Catz 2 RC3J41 = にゃんこと魔法のほうし RC3P41 = Catz RC3X41 = Catz RC4JD9 = クレヨンしんちゃん 最強家族カスカヘキンク うぃ〜 RC4SGT = Shin Chan The New Adventures For Wii RC5JDQ = お掃除戦隊くりーんきーはー RC7E20 = Sea Monsters: A Prehistoric Adventure RC7P7J = Sea Monsters: A Prehistoric Adventure RC8E7D = Crash: Mind Over Mutant RC8P7D = Crash: Mind Over Mutant RC8X7D = Crash: Mind Over Mutant RC9PGN = CID: The Dummy RCAE78 = Cars RCAJ78 = カース RCAP78 = Cars RCAX78 = Cars RCAY78 = Cars RCBE52 = Cabela's Big Game Hunter RCBP52 = Cabela's Big Game Hunter RCCE5G = Cooking Mama: Cook Off RCCJC0 = クッキンクママ みんなといっしょにお料理大会 RCCPGT = Cooking Mama RCCR78 = Guitar Hero III Custom: Coheed and Cambria RCDD52 = Call of Duty 3 RCDE52 = コール オフ テューティ3 RCDP52 = Call of Duty 3 RCDX52 = Call of Duty 3 RCEE5Z = Mini Desktop Racing RCEPUG = Mini Desktop Racing RCEXUG = Mini Desktop Racing RCFE41 = Cosmic Family RCFP41 = Cosmic Family RCGE54 = Carnival Games RCGP54 = Carnival Games RCHC52 = Guitar Hero III Custom : Guitar Hero II RCHEAF = We Cheer RCHJAF = WE CHEER ~ウィーチア~ RCHPAF = We Cheer RCHPGT = We Cheer RCIE41 = CSI: Hard Evidence RCIP41 = CSI: Hard Evidence RCJE8P = The Conduit RCJP8P = The Conduit RCKPGN = Alan Hansen's Sports Challenge RCLE4Q = Disney's Chicken Little: Ace in Action RCLP4Q = Chicken Little: Ace In Action RCOC99 = Meitantei Conan: Tsuioku no Mirage RCOJ99 = 名探偵コナン -追憶の幻想- RCOK99 = Detective Conan: Case Closed: The Mirapolis Investigation RCOKZF = Case Closed: The Mirapolis Investigation RCOPNP = Case Closed: The Mirapolis Investigation RCPE18 = Kororinpa: Marble Mania RCPJ18 = コロリンハ RCPP18 = Kororinpa RCQEDA = Penny Racers Party: Turbo-Q Speedway RCQJDA = チョロQ Wii RCRE5D = Cruis'n RCRP5D = Cruis'n RCSE20 = Chicken Shoot RCSP20 = Chicken Shoot RCSP7J = Chicken Shoot RCTE5Z = Counter Force RCTP5Z = Counter Force RCTPGT = Counter Force RCUE52 = Cabela's Legendary Adventures RCUP52 = Cabela's Legendary Adventures RCVE41 = Far Cry: Vengeance RCVP41 = Far Cry: Vengeance RCXE78 = All Star Cheer Squad RCXP78 = All Star Cheerleader RCXX78 = All Star Cheerleader RCYPGN = Cheggers Party Quiz RD2E41 = Red Steel 2 RD2J41 = レットスティール2 RD2K41 = Red Steel 2 RD2P41 = Red Steel 2 RD2X41 = Red Steel 2 RD4EA4 = Dance Dance Revolution: Hottest Party 2 RD4JA4 = タンスタンスレホリューション フルフル♪ハーティー RD4PA4 = Dance Dance Revolution: Hottest Party 2 RD6EE9 = Animal Kingdom: Wildlife Expedition RD6J8N = とうふつ奇想天外!〜謎の楽園てスクーフ寫真を激寫せよ! RD6PNP = SAFAR'Wii RD8E52 = Dancing with the Stars RD9J18 = ハスルシリースVol.1 SUDOKU 数独 RDAE52 = Dancing with the Stars: We Dance! RDBE70 = Dragon Ball Z: Budokai Tenkaichi 2 RDBJAF = トラコンホールZ Sparking! NEO RDBP70 = Dragon Ball Z: Budokai Tenkaichi 2 RDBPAF = Dragon Ball Z: Budokai Tenkaichi 2 RDCE78 = Deadly Creatures RDCP78 = Deadly Creatures RDDEA4 = Dance Dance Revolution: Hottest Party RDDJA4 = タンスタンスレホリューション ホッテストハーティー RDDPA4 = Dance Dance Revolution Hottest Party RDEJ0A = 全国テコトラ祭り RDFE41 = Shaun White Snowboarding: Road Trip RDFP41 = Shaun White Snowboarding: Road Trip RDGEA4 = Castlevania Judgment RDGJA4 = 悪魔城トラキュラ シャッシメント RDGPA4 = Castlevania Judgment RDHE78 = Destroy All Humans! Big Willy Unleashed RDHP78 = Destroy All Humans! Big Willy Unleashed RDIE41 = The Dog Island RDIJG2 = THE DOG ISLAND -ひとつの花の物語- RDIP41 = The Dog Island RDJE4F = Death Jr.: Root of Evil RDJP4F = Death Jr.: Root of Evil RDKE01 = Donkey Kong: Barrel Blast RDKJ01 = トンキーコンク たるシェットレース RDKP01 = Donkey Kong: Jet Race RDLE5G = Spy Fox in Dry Cereal RDLP70 = Spy Fox In Dry Cereal RDME6K = Domino Rally RDMJ8N = Go!Go!ミノン RDMPHZ = Minon: Everyday Hero RDNEA4 = Dance Dance Revolution: Disney Grooves RDOE41 = Petz Dogz 2 RDOJ41 = わんこと魔法のほうし RDOP41 = Dogz RDOX41 = Dogz RDPE54 = Dora Saves the Snow Princess RDPP54 = Dora Saves the Snow Princess RDPX54 = Dora Saves the Snow Princess RDQEGD = Dragon Quest Swords: The Masked Queen and The Tower of Mirrors RDQJGD = トラコンクエストソート -仮面の女王と鏡の塔- RDQPGD = Dragon Quest Swords: The Masked Queen and the Tower of Mirrors RDREA4 = Dewy's Adventure RDRJA4 = Dewys Adventure 水精テューイの大冒険 !! RDRPA4 = Dewy's Adventure RDSE70 = Dragon Ball Z: Budokai Tenkaichi 3 RDSJAF = トラコンホールZ Sparking! METEOR RDSPAF = Dragon Ball Z: Budokai Tenkaichi 3 RDSZ70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino RDTEAF = Tamagotchi: Party On! RDTJAF = たまこっちのヒカヒカたいとーりょー! RDTPAF = Tamagotchi: Party On! RDUE01 = DU Super Mario Bros. : Find That Princess RDUJDQ = スコロクロニクル 〜右手に剣を左手にサイコロを〜 RDVE41 = Driver: Parallel Lines RDVP41 = Driver: Parallel Lines RDWEG9 = Dragon Blade: Wrath of Fire RDWJG9 = トラコンフレイト RDWPG9 = Dragon Blade: Wrath Of Fire RDXE18 = Deca Sports RDXJ18 = テカスホルタ RDXKA4 = Deca Sporta RDXP18 = Sports Island RDYEGN = CID: The Dummy RDZJ01 = ティサスター テイ オフ クライシス RDZP01 = Disaster: Day of Crisis RE3ENR = WWII Aces RE4E08 = Resident Evil Archives: Resident Evil RE4J08 = ハイオハサート RE4P08 = Resident Evil Archives: Resident Evil RE5PAF = The Munchables RE6PRT = Summer Challenge: Athletics Tournament RE7PNK = Hunting Challenge RE8J99 = 家庭教師ヒットマンREBORN! 禁斷の闇のテルタ REAE69 = Celebrity Sports Showdown REAF69 = Celebrity Sports Showdown REAP69 = Celebrity Sports Showdown REBE4Z = Mr Bean's Wacky World of Wii REBPMT = Mr Bean's Wacky World of Wii RECE6K = Spy Games: Elevator Mission RECP6K = Spy Games: Elevator Mission REDE41 = Red Steel REDJ41 = レットスティール REDP41 = Red Steel REFP41 = My French Coach: Improve Your French REGE36 = Emergency Mayhem REGP36 = Emergency Mayhem REHE41 = Emergency Heroes REHP41 = Emergency Heroes REJEAF = Active Life: Extreme Challenge REJJAF = ファミリートレーナー2 REJPAF = Family Trainer: Extreme Challenge REKE41 = Gold's Gym: Cardio Workout REKJ2N = シェイフホクシンク Wiiてエンショイタイエット! REKP41 = My Fitness Coach: Cardio Workout REKU41 = Gold's Gym: Cardio Workout RELEA4 = Elebits RELJA4 = エレヒッツ RELKA4 = Elebits RELPA4 = Eledees RELSAB = Sonic Adventure DX: Director's Cut (Preview Prototype) REMJ8P = トラえもんWii -ひみつ道具王決定戦!- RENE8P = Sonic and the Black Knight RENJ8P = ソニックと暗黒の騎士 RENP8P = Sonic and the Black Knight REQE54 = Go Diego Go! Safari Rescue REQP54 = Go Diego Go! Safari Rescue REQX54 = Go Diego Go! Safari Rescue REQY54 = Go Diego Go! Safari Rescue RESP41 = My Spanish Coach: Improve Your Spanish RETJAF = 縁日の達人 REUPNK = My Body Coach REVJ8P = 忌火起草 解明編 REVJBP = 忌火起草 -解明編- REWFMR = My Horse Club: On the Trail of the Mysterious Appaloosa REWXMR = My Horse Club: On the Trail of the Mysterious Appaloosa REWYMR = My Horse Club: On the Trail of the Mysterious Appaloosa REXE01 = Excite Truck REXJ01 = エキサイトトラック REXP01 = Excite Truck REYE4Q = Disney Sing It: High School Musical 3 Senior Year REYP4Q = Disney Sing It: High School Musical 3 REYX4Q = Disney Sing It: High School Musical 3 REZEJJ = Fritz Chess REZPKM = Fritz Chess RF2E54 = Fantastic Four: Rise of the Silver Surfer RF2P54 = Fantastic Four: Rise of the Silver Surfer RF3E52 = Ferrari Challenge: Trofeo Pirelli RF3P6M = Ferrari Challenge RF4E36 = Super Fruit Fall RF4P6M = Super Fruit Fall RF7J08 = タツノコ VS.カフコン クロス・シェネレーション・オフ・ヒーロース RF8E69 = FIFA Soccer 08 RF8J13 = FIFA 08 ワールトクラス サッカー RF8K69 = FIFA 08 RF8P69 = FIFA 08 RF8X69 = FIFA 08 RF8Y69 = FIFA 08 RF9E69 = FIFA Soccer 09 All-Play RF9J13 = FIFA 09 オールフレイ RF9K69 = FIFA 09 All-Play RF9P69 = FIFA 09 All-Play RF9X69 = FIFA 09 All-Play RF9Y69 = FIFA 09 All-Play RFAEAF = Active Life: Outdoor Challenge RFAJAF = ファミリートレーナー RFAPAF = Family Trainer RFBE01 = Endless Ocean RFBJ01 = FOREVER BLUE(フォーエハーフルー) RFBP01 = Endless Ocean RFCEGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFCJGD = FFCCクリスタルヘアラー RFCPGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFEE01 = Fire Emblem: Radiant Dawn RFEJ01 = ファイアーエムフレム 暁の女神 RFEP01 = Fire Emblem: Radiant Dawn RFFEGD = Final Fantasy Crystal Chronicles: Echoes of Time RFFJGD = FFCCエコース・オフ・タイム RFFPGD = Final Fantasy Crystal Chronicles: Echoes of Time RFJJAF = ファミリーショッキー RFKE41 = My Fitness Coach RFKJ41 = My Fitness Coach RFKP41 = My Fitness Coach: Get In Shape RFKX41 = My Fitness Coach: Get In Shape RFLE69 = Madden NFL 09 All-Play RFLP69 = Madden NFL 09 All-Play RFLPWK = Wii Freeloader RFMJAF = フロ野球 ファミリースタシアム RFNE01 = Wii Fit RFNJ01 = Wiiフィット RFNK01 = Wii Fit RFNP01 = Wii Fit RFNW01 = ウィーフィット RFOE52 = Spider-Man: Friend or Foe RFOP52 = Spider-Man: Friend or Foe RFOX52 = Spider-Man: Friend or Foe RFPE01 = Wii Fit Plus RFPJ01 = Wiiフィット フラス RFPK01 = Wii Fit Plus RFPP01 = Wii Fit Plus RFPR01 = Wii Fit Plus RFPW01 = Wiiフィット フラス RFQE69 = FaceBreaker K.O. Party RFQJ13 = フェイスフレイカー K.O. ハーティー RFQJ69 = フェイスフレイカー K.O. ハーティー RFQK69 = FaceBreaker: K.O. Party RFQP69 = FaceBreaker: K.O. Party RFRE5G = Furu Furu Park RFRJC0 = ふるふるはーく RFSEEB = Shiren the Wanderer RFSJ8P = 不思議のタンション 風来のシレン3 -からくり屋敷の眠り姫- RFTE70 = Backyard Football RFTP70 = Backyard Football '08 RFUJA4 = 麻雀格闘倶楽部Wii Wi-Fi対応 RFVE52 = Monkey Mischief! Party Time RFVP52 = Monkey Mischief! 20 Games RFWE5Z = Safari Adventures Africa RFWPNK = Safari Adventures Africa RFYFMR = Fort Boyard RFZE41 = Imagine Fashion Party RFZP41 = Imagine Fashion Idol RG0E52 = Guitar Hero III Custom : Green Day Plus RG1552 = Guitar Hero III Custom : Weird Al Yankovic RG1E52 = Guitar Hero III Custom : Revenge RG2E52 = Guitar Hero III Custom : The Beatles Plus RG2EXS = Guilty Gear XX Accent Core RG2JJF = キルティキア イクセクス アクセントコア RG2PGT = Guilty Gear XX Accent Core RG2PXS = Guilty Gear XX Accent Core RG3E52 = Guitar Hero III Custom : Muse and Rush RG4152 = Guitar Hero III Custom : Sum 41 RG4E52 = Guitar Hero Mayan Apocalypse RG4JC0 = 電車てGO! 新幹線EX 山陽新幹線編 RG5EWR = Guinness World Records: The Videogame RG5PWR = Guinness World Records: The Videogame RG6E69 = Boogie SuperStar RG6P69 = Boogie SuperStar RG7EQH = City Builder RG8E41 = Petz Sports RG8P41 = Petz Sports: Dog Playground RG9E52 = Guitar Hero III Custom : Anarchy RG9E54 = Carnival Games: Mini Golf RG9P54 = Carnival Games: Mini Golf RGAE8P = Planet 51: The Game RGAP8P = Planet 51: The Game RGBE08 = Harvey Birdman: Attorney at Law RGBP08 = Harvey Birdman: Attorney at Law RGCEXS = MiniCopter: Adventure Flight RGCJJF = フチコフターWii アトヘンチャーフライト RGCM52 = Guitar Hero III Custom : Metallica RGCPGT = Radio Helicopter RGCS52 = Guitar Hero III Custom : ClasSick Edition RGDEA4 = Target: Terror RGDPA4 = Target: Terror RGEJJ9 = サ ワールト オフ コールテンエックス RGEK52 = Guitar Hero III Custom: Slipknot RGFE69 = The Godfather: Blackhand Edition RGFF69 = The Godfather: Blackhand Edition RGFI69 = The Godfather: Blackhand Edition RGFP69 = The Godfather: Blackhand Edition RGFS69 = The Godfather: Blackhand Edition RGGE52 = Guitar Hero III Custom : Rock The Games RGGJAF = ケケケの鬼太郎 妖怪大運動会 RGHC20 = Guitar Hero III Custom : Fail Edition RGHE51 = Guitar Hero III Custom : Aspero RGHE52 = Guitar Hero III: Legends of Rock RGHE60 = Guitar Hero III Custom: WTF Custom RGHE61 = I Fought The Law - GH3 RGHE62 = Sweet Home Alabama - GH3 RGHE69 = Guitar Hero III Custom : Legends of METAL RGHEMR = Guitar Hero III Custom : Modern Rock RGHI52 = Guitar Hero III Custom: Chimba RGHJ52 = キターヒーロー3 レシェント オフ ロック RGHK52 = Guitar Hero III Legends of Rock RGHP52 = Guitar Hero III: Legends of Rock RGHPOH = SingItStar Italian Greatest Hits RGHPS2 = Guitar Hero III Custom : J-Music RGHX52 = Guitar Hero III Custom: Anime's Alex Chan RGIJC8 = シーワンショッキーWii RGIPC8 = G1 Jockey Wii RGJE4Z = George of the Jungle: Search for the Secret RGJP7U = George of the Jungle: Search for the Secret RGKE52 = Guitar Hero III Custom : KoRn RGKENR = Kidz Sports: Crazy Golf RGKPNR = Crazy Mini Golf RGLE7D = Geometry Wars: Galaxies RGLP7D = Geometry Wars: Galaxies RGME5D = The Grim Adventures of Billy & Mandy RGMP5D = The Grim Adventures of Billy & Mandy RGNJAF = 銀魂 萬事屋ちゅ~ふ ツッコマフル動畫 RGOJJ9 = サ・ワールト・オフ・コールテンエックス日産NOTE版 RGPJAF = パチスロ「機動戦士カンタムII 〜哀・戦士編〜」 RGQE70 = Ghostbusters: The Video Game RGQP70 = Ghostbusters: The Video Game RGRM52 = Guitar Hero III Custom: Rock & Metal RGSE8P = Ghost Squad RGSJ8P = コースト・スカット RGSP8P = Ghost Squad RGTE41 = GT Pro Series RGTJBL = GT Pro Series RGTP41 = GT Pro Series RGVE52 = Guitar Hero: Aerosmith RGVE99 = Guitar Hero Aerosmith Custom: NOT Aerosmith but... RGVJ52 = キターヒーロー エアロスミス RGVP52 = Guitar Hero: Aerosmith RGWE41 = Rabbids Go Home RGWJ41 = ラヒッツ・コー・ホーム RGWP41 = Rabbids Go Home RGWX41 = Rabbids Go Home RGXE5D = Game Party RGXEFN = Guitar Hero III Custom: Meteo Last Custom RGXM52 = Guitar Hero III Custom : xMxExTxAxLx's Edition RGXP5D = Game Party RGYE5Z = Action Girlz Racing RGYPUG = Action Girlz Racing RGZC52 = Guitar Hero III Custom : Led Zeppelin RGZE52 = Guitar Hero III Custom : Shred Edition RGZE70 = Godzilla Unleashed RGZP70 = Godzilla Unleashed RH2E41 = Hell's Kitchen: The Video Game RH2P41 = Hell's Kitchen RH3E4Q = High School Musical 3: Senior Year Dance! RH3J4Q = ハイスクール・ミューシカル DANCE! RH3P4Q = High School Musical 3: Senior Year Dance! RH4XUG = Hamster Heroes RH5EVN = Horse Life Adventures RH5PKM = Horse Life 2 RH6E69 = Harry Potter and the Half-Blood Prince RH6K69 = Harry Potter and the Half Blood Prince RH6P69 = Harry Potter and the Half-Blood Prince RH7J8P = 実戦ハチスロ・ハチンコ必勝法!Sammy's Collection 北斗の拳 Wii RH8E4F = Tomb Raider: Underworld RH8JEL = トゥームレイター アンターワールト RH8P4F = Tomb Raider: Underworld RH8X4F = Tomb Raider: Underworld RH9JC8 = 遥かなる時空の中て4 RHAE01 = Wii Play RHAJ01 = はしめてのWii RHAK01 = Wii Play RHAP01 = Wii Play RHAW01 = はしめてのWii(繁体中国語) RHCE52 = The History Channel: Battle for the Pacific RHCP52 = The History Channel: Battle for the Pacific RHD222 = The House of The Dead 2 RHD333 = The House of the Dead 3 RHDE8P = The House of the Dead 2 & 3 Return RHDJ8P = サ ハウス オフ サ テット 2&3 リターン RHDP8P = The House of the Dead 2 & 3 Return RHEEJJ = Professor Heinz Wolff's Gravity RHEPKM = Professor Heinz Wolff's Gravity RHFE5D = Happy Feet RHFP5D = Happy Feet RHGH52 = Guitar Hero III Custom : RandomHero's RHGP6Z = Agent Hugo: Lemoon Twist RHGX6Z = Agent Hugo: Lemoon Twist RHHJ8J = 涼宮ハルヒの激動 RHIEXJ = Victorious Boxers: Revolution RHIJ41 = はしめの一歩 Revolution RHIJJ9 = はしめの一歩 Revolution RHIP41 = Victorious Boxers Challenge RHJJ13 = 銀星テーフルケームスWii RHKE18 = Help Wanted: 50 Wacky Jobs RHKJ18 = はたらくヒト RHKP18 = Job Island: Hard Working People RHLE4Z = World Championship Poker Featuring Howard Lederer: All-In RHLPGT = World Championship Poker Featuring Howard Lederer: All-In RHMEE9 = Harvest Moon: Magical Melody RHMP99 = Harvest Moon: Magical Melody RHNE70 = My Horse & Me RHNP70 = My Horse & Me RHOE8P = The House of the Dead: Overkill RHOJ8P = サ ハウス オフ サ テット: オーハーキル RHOP8P = The House of the Dead: Overkill RHPJ8N = アッコてホン!〜イカサマ放浪記〜 RHQE4Q = Hannah Montana: Spotlight World Tour RHQP4Q = Hannah Montana: Spotlight World Tour RHQX4Q = Hannah Montana: Spotlight World Tour RHQY4Q = Hannah Montana: Spotlight World Tour RHRJ99 = 家庭教師ヒットマンREBORN! トリームハイハーハトル! Wii RHSE36 = Heatseeker RHSP36 = Heatseeker RHSX36 = Heatseeker RHSY36 = Heatseeker RHTE54 = Manhunt 2 RHTP54 = Manhunt 2 RHUE20 = Skate City Heroes RHUP20 = Skate City Heroes RHUP7J = Skate City Heroes RHVE5Z = Crazy Chicken Tales RHVPFR = Crazy Chicken Tales RHWE52 = Hot Wheels: Beat That! RHWP52 = Hot Wheels: Beat That! RHXE78 = Battle of the Bands RHXP78 = Battle of the Bands RHYJAF = はねるのトひらWii キリキリッス RHZE41 = Petz Horsez 2 RHZP41 = Pippa Funnell: Ranch Rescue RI1POH = SingItStar Italian Party RI2E4Q = High School Musical: Sing It! RI2P4Q = Disney Sing It: High School Musical RI2POH = SingItStar Italian Party vol. 2 RI3E5D = The Ant Bully RI3P5D = The Ant Bully RI3POH = SingItStar Italian Top.it RI6ENR = Summer Sports 2: Island Sports Party RI6P41 = Summer Sports Party RI7E4Z = Monster Mayhem: Build and Battle RI8E41 = Brothers In Arms: Road to Hill 30 RI8P41 = Brothers In Arms: Road To Hill 30 RI9EGT = Diva Girls: Divas on Ice RI9PGT = Diva Girls: Princess On Ice RIAE52 = Ice Age: Dawn of the Dinosaurs RIAI52 = Ice Age 3: Dawn of the Dinosaurs RIAP52 = Ice Age 3: Dawn of the Dinosaurs RIBES5 = Igor the Game RIBPKM = Igor: The Game RICENR = Iron Chef America: Supreme Cuisine RIDE20 = Smiley World: Island Challenge RIDP7J = Smiley World: Island Challenge RIEEA4 = Karaoke Revolution Presents: American Idol Encore RIFEA4 = Karaoke Revolution Presents: American Idol Encore 2 RIGE54 = Go Diego Go! Great Dinosaur Rescue RIGP54 = Go, Diego, Go! Great Dinosaur Rescue RIHE8P = The Incredible Hulk RIHP8P = The Incredible Hulk RIIEQH = Kart Racer RIIPNG = Kart Racer RIIV = Riivolution RIJE69 = G.I. JOE: The Rise of Cobra RIJP69 = G.I. JOE: The Rise of Cobra RIKEQH = Truck Racer RIKPNG = Truck Racer RILJ18 = ハスルシリースVol.2 イラストロシック+からふるロシック RIME36 = Impossible Mission RIMP6M = Impossible Mission RINE08 = Dead Rising: Chop Till You Drop RINJ08 = テットライシンク ソンヒのいけにえ RINP08 = Dead Rising: Chop Till You Drop RIOPSU = Horrible Histories: Ruthless Romans RIPEAF = One Piece: Unlimited Adventure RIPJAF = ワンヒース アンリミテットアトヘンチャー RIPPAF = One Piece Unlimited Cruise 1: The Treasure Beneath the Waves RIQPUJ = Dancing on Ice RIRE8P = Iron Man RIRP8P = Iron Man RITFMR = Intervilles, le jeu officiel RIUJAF = ワンヒース アンリミテットクルース エヒソート2 目覚める勇者 RIUPAF = One Piece Unlimited Cruise 2: Awakening of a Hero RIVEXJ = Ivy The Kiwi? RIVJAF = IVY THE KIWI?(アイヒィ・サ・キウィ?) RIVP99 = Ivy The Kiwi? RIWENR = Burger Island RIXE20 = Dodge Racing: Charger vs. Challenger RIXP7J = Dodge Racing: Charger vs Challenger RIYE52 = Space Camp RIYP52 = Space Camp RIZENR = Indianapolis 500 Legends RJ2E52 = 007: Quantum of Solace RJ2JGD = 007/慰めの報酬 RJ2P52 = 007: Quantum of Solace RJ3E20 = Jeep Thrills RJ3P7J = Jeep Thrills RJ4ENR = Jewel Master: Cradle of Rome RJ4PRM = Jewel Master: Cradle of Rome RJ6E69 = MySims Sky Heroes RJ6P69 = MySims Sky Heroes RJ7FWP = Télé 7 Jeux: Mots Fléchés RJ8E64 = Indiana Jones and the Staff of Kings RJ8P64 = Indiana Jones and the Staff of Kings RJ9E5Z = thinkSMART Family RJ9FMR = Think Logic Trainer RJ9PFR = Think Logic Trainer RJ9XML = Think Logic Trainer RJAD52 = Call of Duty: Modern Warfare - Reflex Edition RJAE52 = コール オフ テューティ モタン・ウォーフェア リフレックス エティション RJAP52 = Call of Duty: Modern Warfare - Reflex Edition RJAX52 = Call of Duty: Modern Warfare - Reflex Edition RJBJAF = 大怪獣ハトル ウルトラコロシアム RJCE52 = Score International Baja 1000: World Championship Offroad Racing RJCP52 = Score International Baja 1000: World Championship Offroad Racing RJDPKM = My Animal Centre RJEE70 = Jenga World Tour RJEP70 = Jenga World Tour RJFE5G = Jillian Michaels' Fitness Ultimatum 2009 RJFP5G = Jillian Michaels' Fitness Ultimatum 2009 RJFPKM = Jillian Michaels' Fitness Ultimatum 2009 RJGJDA = 人生ケームWii RJHE52 = Madagascar Kartz RJHP52 = Madagascar Kartz RJIP6M = Ferrari: The Race Experience RJJE8P = Jambo! Safari Animal Rescue RJJG52 = Guitar Hero III Custom : JJ-KwiK's Edition RJJP8P = Jambo! Safari RJMERS = Jumper: Griffin's Story RJMPRS = Jumper: Griffin's Story RJNE20 = Build 'N Race RJOEXJ = Ju-on: The Grudge RJOJJ9 = 恐怖体感 呪怨 RJOP99 = Ju-On The Grudge RJPJA4 = 実況ハワフルフロ野球Wii RJQE5G = Pajama Sam: Don't Fear the Dark RJQP70 = Pajama Sam: No Need to Hide when it's Dark Outside RJREA4 = Dance Dance Revolution: Hottest Party 3 RJRJA4 = タンスタンスレホリューション ミューシックフィット RJRPA4 = Dance Dance Revolution: Hottest Party 3 RJSENR = Kawasaki Jet Ski RJSPNR = Kawasaki Jet Ski RJSPUG = Kawasaki Jet Ski RJSXUG = Kawasaki Jet Ski RJTJ01 = みんなの常識力テレヒ RJVEGN = Hysteria Hospital: Emergency Ward RJVPGN = Hysteria Hospital: Emergency Ward RJWJEL = JAWA〜マンモスとヒミツの石〜 RJXE5G = Go Play Lumberjacks RJXXFR = Go Play Lumberjacks RJYE5Z = Doctor Fizzwizzle's Animal Rescue RJZP7U = SNK Arcade Classics Volume 1 RK2EEB = Trauma Center: New Blood RK2JEB = カトゥケウス -NEWBLOOD- RK2P01 = Trauma Center: New Blood RK3J01 = 安藤ケンサク RK4JAF = 結界師 -黒芒楼の影- RK5E01 = Kirby's Epic Yarn RK5J01 = 毛糸のカーヒィ RK5K01 = Kirby's Epic Yarn RK5P01 = Kirby's Epic Yarn RK6E18 = Marble Saga: Kororinpa RK6J18 = コロリンハ2 -アンソニーと黃金のひまわりのタネ- RK6P18 = Marbles! Balance Challenge RK7J0A = 黄金の絆 RK8E54 = Major League Baseball 2K8 RK9EA4 = Karaoke Revolution RK9PA4 = Karaoke Revolution RKAE6K = Ultimate Shooting Collection RKAJMS = マイルストーン シューティンクコレクション カラスWii RKAK8M = Milestone Shooting Collection Karous Wii RKAP6K = Ultimate Shooting Collection RKBE41 = Cranium Kabookii RKBP41 = Cranium Kabookii RKDEEB = Trauma Center: Second Opinion RKDJEB = カトゥケウスZ -2つの超執刀- RKDJG9 = 仮面ライター クライマックスヒーロースW RKDP01 = Trauma Center: Second Opinion RKDPEB = Trauma Center: Second Opinion RKEENR = Cate West: The Vanishing Files RKEPGN = Cate West: The Vanishing Files RKEPNR = Cate West: The Vanishing Files RKFEH4 = サ・キンク・オフ・ファイタース・コレクション サ・オロチ・サーカ RKFKZA = King of Fighters Collection: The Orochi Saga RKFP7U = King of Fighters Collection: The Orochi Saga RKGEGY = Bratz Kidz: Slumber Party RKGPGY = Bratz: Kidz Party RKHE52 = Kung Fu Panda: Legendary Warriors RKHP52 = Kung Fu Panda: Legendary Warriors RKIENR = Kidz Sports: Ice Hockey RKIPUG = Kidz Sports: Ice Hockey RKJJ0Q = 財団法人日本漢字能力検定協会公式ソフト 250万人の漢検 Wii RKKE6K = Heavenly Guardian RKLEG9 = Coraline RKLPG9 = Coraline RKME5D = Mortal Kombat: Armageddon RKMP5D = Mortal Kombat: Armageddon RKNJ2N = 財団法人日本漢字能力検定協会公認 漢検Wii 漢字王決定戦 RKOJBL = リラックマ みんなてこゆるり生活 RKPE52 = Kung Fu Panda RKPJ52 = カンフー・ハンタ RKPK52 = Kung Fu Panda RKPP52 = Kung Fu Panda RKPV52 = Kung Fu Panda RKPY52 = Kung Fu Panda RKQENR = Candace Kane's Candy Factory RKSENR = Kidz Sports: Basketball RKSPUG = Kidz Sports: Basketball RKTENR = Kidz Sports: International Soccer RKTXUG = Kidz Sports: International Football RKVE54 = The BIGS 2 RKVP54 = The Bigs 2: Baseball RKWJ18 = シクソーハスル きょうのわんこ RKXE69 = Rock Band RKXP69 = Rock Band RKYE20 = Army Men: Soldiers of Misfortune RKYP20 = Army Men: Soldiers of Misfortune RKYP7J = Army Men: Soldiers of Misfortune RKZEA4 = Lost in Blue: Shipwrecked RKZJA4 = サハイハルキッスWii RKZPA4 = Lost in Blue: Shipwrecked RL2E78 = Gallop & Ride! RL2HMN = Horse & Pony: My Riding Stables RL2HMR = Horse & Pony: My Riding Stables RL2PFR = Horse & Pony: My Riding Stables RL3EMJ = Luxor 3 RL4E64 = LEGO Indiana Jones 2: The Adventure Continues RL4P64 = LEGO Indiana Jones 2: The Adventure Continues RL5E52 = iCarly RL5P52 = iCarly RL6E69 = NERF N-Strike Elite RL7E69 = Littlest Pet Shop: Friends RL7P69 = Littlest Pet Shop: Friends RL8E54 = MLB Power Pros 2008 RL9ESD = Guitar Hero Linkin Park RL9PHZ = King of Pool RLADMR = Deal or No Deal: The Banker Is Back RLAE20 = Deal or No Deal RLAPMR = Deal or No Deal: The Banker Is Back RLBEWR = LEGO Batman: The Videogame RLBPWR = LEGO Batman: The Videogame RLCP7J = Love is... in bloom RLDEGY = Legend of the Dragon RLDPFK = Legend Of The Dragon RLEEFS = Ten Pin Alley 2 RLEPFS = Ten Pin Alley 2 RLFE64 = Star Wars The Clone Wars: Lightsaber Duels RLFP64 = Star Wars The Clone Wars: Lightsaber Duels RLGE64 = LEGO Star Wars: The Complete Saga RLGJ52 = レコ スター・ウォース コンフリート サーカ RLGP64 = LEGO Star Wars: The Complete Saga RLHE52 = Little League World Series Baseball 2008 RLHP52 = Little League World Series Baseball 2008 RLIE64 = LEGO Indiana Jones: The Original Adventures RLIL78 = Guitar Hero 2nd Custom RLIP64 = LEGO Indiana Jones: The Original Adventures RLJEHJ = Line Rider 2: Unbound RLJPKM = Line Rider Freestyle RLKEGY = Code Lyoko: Quest for Infinity RLKPFK = Code Lyoko: Quest for Infinity RLLP70 = Go West: A Lucky Luke Adventure RLMJH4 = メタルスラックコンフリート RLNEVN = Survivor RLNFMR = Survivor RLNHMR = Survivor RLNIMR = Survivor RLNPMR = Survivor RLPE69 = Littlest Pet Shop RLPP69 = Littlest Pet Shop RLQE52 = Big League Sports RLQP52 = World Championship Sports RLRE4F = Tomb Raider: Anniversary RLRJEL = トゥームレイター アニハーサリー RLRP4F = Tomb Raider: Anniversary RLSE8P = Alien Syndrome RLSP8P = Alien Syndrome RLTENR = London Taxi: Rush Hour RLTPNR = London Taxi: Rush Hour RLTXUG = London Taxi: Rush Hour RLUE4Q = Disney's Bolt RLUP4Q = Bolt RLUX4Q = Bolt RLUY4Q = Bolt RLVE78 = Avatar: The Last Airbender RLVP78 = Avatar: The Legend of Aang RLWE78 = Ratatouille RLWJ78 = レミーのおいしいレストラン RLWP78 = Ratatouille RLWW78 = Ratatouille RLWX78 = Ratatouille RLWY78 = Ratatouille RLWZ78 = Ratatouille RLXEMJ = Luxor: Pharaoh's Challenge RLXP36 = Luxor: Pharaoh's Challenge RLYEWR = Looney Tunes: Acme Arsenal RLYPWR = Looney Tunes: Acme Arsenal RLZE4Z = Defendin' De Penguin RLZP4Z = Defendin' De Penguin RLZPXT = Defendin' De Penguin RM2E69 = Medal of Honor: Heroes 2 RM2J13 = メタル オフ オナー ヒーロース2 RM2P69 = Medal of Honor: Heroes 2 RM2U69 = Medal of Honor: Heroes 2 RM2X69 = Medal of Honor: Heroes 2 RM3E01 = Metroid Prime 3: Corruption RM3J01 = メトロイトフライム3 コラフション RM3P01 = Metroid Prime 3: Corruption RM4E41 = Monster 4x4: World Circuit RM4J41 = モンスター4×4 ワールトサーキット RM4P41 = Monster 4x4: World Circuit RM5E7D = The Mummy: Tomb of the Dragon Emperor RM5P7D = The Mummy: Tomb Of The Dragon Emperor RM6EEB = Baroque RM6P99 = Baroque RM7E4F = Monster Lab RM7P4F = Monster Lab RM8E01 = マリオハーティ 8 RM8J01 = マリオハーティ 8 RM8K01 = マリオハーティ 8 RM8P01 = マリオハーティ 8 RM9EGM = Mushroom Men: The Spore Wars RM9PGM = Mushroom Men: The Spore Wars RMAE01 = Mario Power Tennis RMAJ01 = Wiiてあそふ マリオテニスGC RMAP01 = Mario Power Tennis RMBE01 = Mario Super Sluggers RMBJ01 = スーハーマリオスタシアム ファミリーヘースホール RMCC01 = Mario Kart Wii (Custom) RMCE01 = Mario Kart Wii RMCE02 = Wiimms MKW Fun 2010-02.p RMCE03 = Wiimms MKW Fun 2010-10.p RMCE04 = Wiimms MKW Fun 2010-12.p RMCE05 = Wiimms MKW Fun 2010-12.p RMCE06 = Wiimms MKW Fun 2010-12.ntsc RMCE07 = Wiimms MKW Retro 2011-02.ntsc RMCE08 = Wiimms MKW Fun 2011-03.ntsc RMCE09 = Wiimms MKW Fun 2011-06.ntsc RMCE10 = Wiimms MKW Fun 2011-07.ntsc RMCE11 = Wiimms MKW Fun 2011-08.ntsc RMCE12 = Wiimms MKW Fun 2011-11.ntsc RMCE13 = Wiimms MKW Fun 2012-01.ntsc RMCE14 = Wiimms MKW Revival 2012-02.ntsc RMCE15 = Wiimms MKW Boost 2012-03.ntsc RMCE16 = Wiimms MKW Fun 2012-05.ntsc RMCE17 = Wiimms MKW Fun 2012-09.ntsc RMCE18 = Wiimms MKW N64 2012-10.ntsc RMCE19 = Wiimms MKW Fun 2012-12.ntsc RMCE20 = Wiimms MKW Fun 2013-04.ntsc RMCE21 = Wiimms MKW Fun 2013-09.ntsc RMCE22 = Wiimms MKW Fun 2013-10.ntsc RMCE23 = Wiimms MKW Fun 2014-01.ntsc RMCE24 = Wiimms MKW Retro 2014-02.ntsc RMCE25 = Wiimms MKW Fun 2014-04.ntsc RMCE26 = Wiimms MKW Fun 2014-11.ntsc RMCE65 = Mario Kart Wii: Double Dash 64 RMCE66 = Mizy's Texture Pack RMCE67 = Rookie's Texture & Music Pack RMCE68 = Character Kart Wii RMCE69 = Venom Kart Wii RMCE70 = Stickboy Kart Wii RMCE71 = Funky's Riivolution RMCE72 = CtocKart Wii RMCE73 = Mario Kart Adventures RMCE74 = Mario Kart Adventures RMCE75 = Cam, Tom and Troy's CTGP Pack RMCE76 = Pro CT Pack RMCE77 = SpyKid's CT Pack RMCE78 = Mario Kart: Double Dash!! Wii RMCE79 = Super Mario Kart Wii RMCE80 = Mario Kart 64 Wii RMCE81 = Spade's Custom Track Pack RMCE82 = HD's Retro Pack RMCE83 = Glitch Kart Wii RMCE84 = Legend's Awesome CT Pack RMCE85 = Project Double Dash!! RMCE86 = Newer Mario Kart Wii Revolution!: Backward Circuits RMCE87 = Newer Mario Kart Wii Revolution!: Sunset Sun & Dark Moon RMCE88 = Kaizo Kart Wii RMCE89 = Mario Kart Extra RMCE90 = Mario Kart QZW RMCE91 = Medal Kart 64 RMCE92 = MKWLH100's Custom Track Pack RMCE93 = MKW Hack Pack RMCE94 = Custom Track Kart Wii RMCE95 = Soarin's CT Pack X RMCE96 = Mario Kart 6 RMCE97 = Mario Kart Wii Awesomeness 2 RMCE98 = Mario Kart Wii Awesomeness RMCE99 = ReedyCustomPack Ultimate RMCEA1 = Mario Kart Adventures v0.8 RMCECT = Mario Kart Wii CTGP Revolution RMCEDK = Darky Kart Wii RMCEG2 = Mario Kart Wii CTGP Revolution RMCEGP = Mario Kart Wii CTGP Revolution RMCEWS = Wine's CT Pack RMCJ01 = マリオカートWii RMCJ12 = マリオカートWii カスタム(2011-11 Wiimm) RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCK01 = Mario Kart Wii RMCP01 = Mario Kart Wii RMCP02 = Wiimms MKW Fun 2010-02.p RMCP03 = Wiimms MKW Fun 2010-10.p RMCP04 = Wiimms MKW Fun 2010-12.p RMCP05 = Custom Mario Kart Wii RMCP06 = Wiimms MKW Fun 2010-12.pal RMCP07 = Wiimms MKW Retro 2011-02.pal RMCP08 = Wiimms MKW Fun 2011-03.pal RMCP09 = Wiimms MKW Fun 2011-06.pal RMCP10 = Wiimms MKW Fun 2011-07.pal RMCP11 = Wiimms MKW Fun 2011-08.pal RMCP12 = Wiimms MKW Fun 2011-11.pal RMCP13 = Wiimms MKW Fun 2012-01.pal RMCP14 = Wiimms MKW Revival 2012-02.pal RMCP15 = Wiimms MKW Boost 2012-03.pal RMCP16 = Wiimms MKW Fun 2012-05.pal RMCP17 = Wiimms MKW Fun 2012-09.pal RMCP18 = Wiimms MKW N64 2012-10.pal RMCP19 = Wiimms MKW Fun 2012-12.pal RMCP20 = Wiimms MKW Fun 2013-04.pal RMCP21 = Wiimms MKW Fun 2013-09.pal RMCP22 = Wiimms MKW Fun 2013-10.pal RMCP23 = Wiimms MKW Fun 2014-01.pal RMCP24 = Wiimms MKW Retro 2014-02.pal RMCP25 = Wiimms MKW Fun 2014-04.pal RMCP26 = Wiimms MKW Fun 2014-11.pal RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCX = Mario Kart Wii CTGP Revolution Channel RMDE69 = Madden NFL 07 RMDP69 = Madden NFL 07 RMEJDA = メシャーWii 投けろ!シャイロホール!! RMFE68 = AMF Bowling Pinbusters! RMFP68 = AMF Bowling Pinbusters! RMGC01 = Super Mario Galaxy RMGE01 = Super Mario Galaxy RMGE52 = Guitar Hero III Custom : Megadeth RMGJ01 = スーハーマリオキャラクシー RMGK01 = Super Mario Galaxy RMGP01 = Super Mario Galaxy RMGR01 = Super Mario Galaxy RMHC08 = Monster Hunter Tri (Custom) RMHE08 = Monster Hunter Tri RMHJ08 = モンスターハンター3 RMHP08 = Monster Hunter Tri RMIE20 = Margot's Word Brain RMIP7J = Margot's Word Brain RMJJC8 = 麻雀大会Wii RMKE01 = Mario Sports Mix RMKE02 = Custom Kart 1 RMKJ01 = マリオスホーツミックス RMKP01 = Mario Sports Mix RMLEH4 = Metal Slug Anthology RMLJH4 = メタルスラック コンフリート RMLK52 = Metal Slug Complete RMLP7U = Metal Slug Anthology RMLPH4 = Metal Slug Anthology RMME7U = Mercury Meltdown Revolution RMMJ7U = たまらん Tama-run RMMP52 = Guitar Hero III Custom : Metal Mayhem RMMP7U = Mercury Meltdown Revolution RMNDFR = My Pet Hotel RMNHMN = My Pet Hotel RMNHMR = My Pet Hotel RMNPFR = My Pet Hotel RMOE52 = Monster Jam RMOP52 = Monster Jam RMPE54 = MLB Power Pros RMPP54 = MLB Power Pros RMQENR = Myth Makers: Orbs of Doom RMQPUG = Myth Makers: Orbs of Doom RMQXUG = Myth Makers: Orbs of Doom RMRE5Z = Cocoto Magic Circus RMRPNK = Cocoto Magic Circus RMRXNK = Cocoto Magic Circus RMSE52 = Marvel: Ultimate Alliance 2 RMSP52 = Marvel: Ultimate Alliance 2 RMTJ18 = 桃太郎電鉄16 北海道大移動の巻! RMUE52 = Marvel: Ultimate Alliance RMUJ2K = マーヘル アルティメット アライアンス RMUP52 = Marvel: Ultimate Alliance RMVE69 = Medal of Honor: Vanguard RMVP69 = Medal of Honor: Vanguard RMVX69 = Medal of Honor: Vanguard RMWE20 = M&M's Kart Racing RMWP20 = M&M's Kart Racing RMXE78 = MX vs. ATV: Untamed RMXF78 = MX vs. ATV: Untamed RMXP78 = MX vs. ATV: Untamed RMYE5Z = Myth Makers: Super Kart GP RMYPUG = Myth Makers: Super Kart GP RMYXUG = Myth Makers: Super Kart GP RMZE5Z = Myth Makers: Trixie in Toyland RMZPUG = Myth Makers: Trixie in Toyland RN2EAF = Namco Museum Remix RN2K70 = Namco Museum Remix RN2P70 = Namco Museum Remix RN3E78 = Nicktoons: Attack of the Toybots RN3J78 = スホンシ・ホフとなかまたち トイホッツのこうけき RN3P78 = Nicktoons: Attack of the Toybots RN3X78 = Nicktoons: Attack Of The Toybots RN4E41 = Dawn of Discovery RN4P41 = ANNO: Create a New World RN5E78 = The Naked Brothers Band: The Video Game RN5P78 = The Naked Brothers Band: The Video Game RN6ENR = North American Hunting Extravaganza RN6P7J = North American Hunting Extravaganza RN7E78 = Neighborhood Games RN7P78 = Big Family Games RN8JC8 = 信長の野望・革新 withハワーアッフキット RN9E4F = Escape from Bug Island RN9JEL = ネクロネシア RN9P4F = Escape From Bug Island RNAE69 = NCAA Football 09 RNBE69 = NBA Live 08 RNBP69 = NBA Live 08 RNBX69 = NBA Live 08 RNCEH4 = SNK Arcade Classics Volume 1 RNCPH4 = SNK Arcade Classics Volume 1 RNDJAF = のためカンターヒレ トリーム☆オーケストラ RNEEDA = Naruto Shippuden: Clash of Ninja Revolution 3 RNEJDA = NARUTO -ナルト- 疾風伝 激闘忍者大戦!EX3 RNEPDA = Naruto Shippuden: Clash of Ninja Revolution 3 RNFE69 = Madden NFL 08 RNFP69 = Madden NFL 08 RNGJ99 = ネキま!? ネオ・ハクティオーファイト!! RNHE41 = No More Heroes RNHJ99 = ノーモア★ヒーロース RNHK8M = No More Heroes RNHP41 = No More Heroes RNHP99 = No More Heroes RNIPGT = Mind, Body & Soul: Nutrition Matters RNJE4F = Mini Ninjas RNJP4F = Mini Ninjas RNKE69 = NERF N-Strike RNKP69 = NERF N-Strike RNLE54 = NHL 2K9 RNLP54 = NHL 2K9 RNME5Z = Ninjabread Man RNMPUG = Ninjabread Man RNMXUG = Ninjabread Man RNNE4Q = The Chronicles of Narnia: Prince Caspian RNNJ4Q = ナルニア国物語/第2章:カスヒアン王子の角笛 RNNP4Q = The Chronicles of Narnia: Prince Caspian RNNX4Q = The Chronicles of Narnia: Prince Caspian RNNY4Q = The Chronicles of Narnia: Prince Caspian RNNZ4Q = The Chronicles of Narnia: Prince Caspian RNOJ01 = アナサーコート:R 記憶の扉 RNOP01 = Another Code: R - A Journey into Lost Memories RNPE69 = Need for Speed: ProStreet RNPJ13 = ニート・フォー・スヒート フロストリート RNPK69 = Need for Speed: ProStreet RNPP69 = Need for Speed: ProStreet RNPX69 = Need for Speed: ProStreet RNPY69 = Need for Speed: ProStreet RNRE41 = Nitro Bike RNRJ41 = ニトロハイク RNRP41 = Nitro Bike RNSD69 = Need for Speed: Carbon RNSE69 = Need for Speed Carbon RNSF69 = Need for Speed: Carbon RNSJ13 = ニート・フォー・スヒート カーホン RNSP69 = Need for Speed Carbon RNSX69 = Need for Speed: Carbon RNUE8P = Nancy Drew: The White Wolf of Icicle Creek RNVE5Z = Anubis II RNVP5Z = Anubis II RNVPUG = Anubis II RNVXUG = Anubis II RNWJAF = みんなて遊ほう!ナムコカーニハル RNWKAF = Namco Museum Remix RNXEDA = Naruto: Clash of Ninja Revolution RNXJDA = NARUTO -ナルト- 疾風伝 激闘忍者大戦!EX RNXPDA = Naruto: Clash of Ninja Revolution RNYEDA = Naruto: Clash of Ninja Revolution 2 RNYJDA = NARUTO -ナルト- 疾風伝 激闘忍者大戦!EX2 RNYPDA = Naruto: Clash of Ninja Revolution 2 RNZE69 = Ninja Reflex RNZJ13 = ニンシャ リフレックス RNZK69 = Ninja Reflex RNZP69 = Ninja Reflex RO2E7N = Ford Racing Off Road RO2P7N = Off Road RO3EXJ = Little King's Story RO3J99 = 王様物語 RO3P99 = Little King's Story RO4JDA = 闘真伝 RO5E52 = Hot Wheels: Battle Force 5 RO5P52 = Hot Wheels: Battle Force 5 RO7E7D = Legend of Spyro: The Eternal Night RO7P7D = The Legend of Spyro: The Eternal Night RO8E7D = Legend of Spyro: Dawn of the Dragon RO8P7D = The Legend of Spyro: Dawn of the Dragon RO8X7D = The Legend of Spyro: Dawn of the Dragon RO9EFS = Aqua Panic! RO9PNK = Aqua Panic! ROAE36 = Overlord: Dark Legend ROAP36 = Overlord: Dark Legend ROBE7U = Obscure: The Aftermath ROBPPL = Obscure 2 ROCE5Z = Cocoto Kart Racer ROCPNK = Cocoto Kart Racer RODE01 = WarioWare: Smooth Moves RODJ01 = おとる メイトインワリオ RODK01 = WarioWare: Smooth Moves RODP01 = WarioWare: Smooth Moves ROEEJZ = Hotel for Dogs ROEPGT = Hotel For Dogs ROFE5Z = Offroad Extreme Special Edition ROFPUG = Offroad Extreme! ROFXUG = Offroad Extreme! ROGE78 = Tak and the Guardians of Gross ROGP78 = Tak and the Guardians of Gross ROHJAF = ハッヒータンスコレクション ROJE52 = Rapala: We Fish ROJP52 = Rapala: We Fish ROKJ18 = カラオケJOYSOUND Wii ROLE8P = Mario & Sonic at the Olympic Winter Games ROLJ01 = マリオ&ソニック AT ハンクーハーオリンヒック ROLK01 = Mario & Sonic at the Olympic Winter Games ROLP8P = Mario & Sonic at the Olympic Winter Games ROMESD = Monster Hunter G (English Patched) ROMJ08 = モンスターハンターG RONEG9 = Onechanbara: Bikini Zombie Slayers RONJG9 = お姉チャンハラ Revolution RONPG9 = Onechanbara: Bikini Zombie Slayers ROPE41 = Open Season ROPP41 = Open Season ROQJEP = ハロック for Wii ROSJ01 = タクトオフマシック ROTE20 = Twin Strike: Operation Thunder ROTP20 = Twin Strike: Operation Thunder ROTP7J = Twin Strike: Operation Thunder ROUJAF = ワンヒース アンリミテットクルース エヒソート1 波に揺れる秘宝 ROUPAF = One Piece Unlimited Cruise 1: The Treasure Beneath the Waves ROVE6U = Playmobil: Circus ROVPHM = Playmobil: Circus ROWE08 = Okami ROWJ08 = 大神 ROWP08 = Okami ROXE20 = Order Up! ROXP7J = Order Up! ROXX7J = Order Up! ROYE41 = Cloudy with a Chance of Meatballs ROYP41 = Cloudy with a Chance of Meatballs ROYX41 = Cloudy with a Chance of Meatballs RP2E69 = Smarty Pants RP2P69 = Smarty Pants RP3JAF = フロコルファー猿 RP4E69 = MySims Party RP4J13 = ほくとシムのまち ハーティー RP4P69 = MySims Party RP5JA4 = 実況ハワフルフロ野球15 RP6E41 = Petz Crazy Monkeyz RP6P41 = Petz Monkey Madness RP7E52 = Pirates: Hunt for Blackbeard's Booty RP7P52 = Pirates: Hunt for Blackbeard's Booty RP9ERS = Space Chimps RP9PRS = Space Chimps RP9XRS = Space Chimps RPAF70 = Kid Paddle: Lost in the Game RPBE01 = Pokémon Battle Revolution RPBJ01 = ホケモンハトルレホリューション RPBP01 = Pokémon Battle Revolution RPCE20 = Puzzler Collection RPCP41 = Puzzler Collection RPCX7J = Puzzler Collection RPDEGN = PDC World Championship Darts 2008 RPDPGN = PDC World Championship Darts 2008 RPFE52 = Pitfall: The Big Adventure RPFP52 = Pitfall: The Big Adventure RPFU52 = Pitfall: The Big Adventure RPGE5D = Rampage: Total Destruction RPGP5D = Rampage: Total Destruction RPHPPN = Peppa Pig: The Game RPIE52 = Pimp My Ride RPIP52 = Pimp My Ride RPJE7U = Arc Rise Fantasia RPJJ99 = アークライスファンタシア RPKE52 = World Series of Poker: Tournament of Champions 2007 Edition RPKP52 = World Series of Poker: Tournament of Champions 2007 Edition RPLE52 = Rapala Tournament Fishing RPLP52 = Rapala Tournament Fishing RPMJA4 = 実況ハワフルメシャーリーク2 RPNE78 = Paws & Claws: Pet Resort RPOEC8 = Opoona RPOJC8 = オフーナ RPOPC8 = Opoona RPPE41 = Prince of Persia: Rival Swords RPPP41 = Prince of Persia: Rival Swords RPQES5 = Pool Party RPQPS5 = Pool Party RPSE4Q = Disney Princess: Enchanted Journey RPSJ4Q = ティスニーフリンセス 魔法の世界へ RPSP4Q = Disney Princess: Enchanted Journey RPTD52 = Puppy Luv RPTE52 = Puppy Luv: Your New Best Friend RPTP52 = Puppy Luv: Your New Best Friend RPUJ8P = ふよふよ! Puyopuyo 15th Anniversary RPVE4Z = Purr Pals RPVPKM = Purr Pals RPWX41 = Prince of Persia: The Forgotten Sands RPWZ41 = Prince of Persia: The Forgotten Sands RPXE69 = EA Playground RPXJ13 = フレイクラウント ~公園てあそほう!~ RPXP69 = EA Playground RPYE9B = Super Swing Golf RPYJ9B = スインクコルフ ハンヤ RPYP9B = Pangya! Golf With Style RPZJA4 = 実況ハワフルフロ野球Wii 決定版 RQ2JK6 = クレイシークライマーWii RQ3PGN = PDC World Championship Darts 2009 RQ4E78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ4J78 = スホンシ・ホフ RQ4P78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ5E5G = Mad Dog McCree Gunslinger Pack RQ5P5G = Mad Dog McCree Gunslinger Pack RQ5X5G = Mad Dog McCree Gunslinger Pack RQ6EJJ = Cursed Mountain RQ6PKM = Cursed Mountain RQ6XKM = Cursed Mountain RQ7E20 = Martian Panic RQ7PXT = Martian Panic RQ8E08 = MotoGP 08 RQ8P08 = MotoGP RQ9E69 = NBA Live 09 All-Play RQ9F69 = NBA Live 09 All-Play RQ9P69 = NBA Live 09 All-Play RQ9S69 = NBA Live 09 All-Play RQBENR = Kawasaki Quad Bikes RQBPNR = Kawasaki Quad Bikes RQBPUG = Kawasaki Quad Bikes RQBXUG = Kawasaki Quad Bikes RQCEAF = The Munchables RQCJAF = たへモン RQEE6U = Agatha Christie: Evil Under the Sun RQEP6V = Agatha Christie: Evil Under the Sun RQFE6U = Safecracker: The Ultimate Puzzle Adventure RQFP6V = Safecracker RQGE69 = MySims Racing RQGJ13 = ほくとシムのまち レーシンク RQGJ69 = ほくとシムのまち レーシンク RQGP69 = MySims Racing RQIJ01 = NHK紅白クイス合戦 RQJE7D = Crash of the Titans RQJP7D = Crash of the Titans RQJX7D = Crash of the Titans RQKE41 = Circus Games RQKP41 = Fun Fair Party RQLE64 = Star Wars The Clone Wars: Republic Heroes RQLP64 = Star Wars The Clone Wars: Republic Heroes RQMEVN = Ocean Commander RQMPVN = Ocean Commander RQNEWR = Scooby-Doo! First Frights RQNPWR = Scooby-Doo! First Frights RQOE69 = Spore Hero RQOJ13 = スホア キミかつくるヒーロー RQOP69 = Spore Hero RQPE52 = Cabela's Trophy Bucks RQPP52 = Cabela's Trophy Bucks RQPZ52 = Cabela's Monster Buck Hunter RQQE52 = Guitar Hero III Custom : Queen RQQE70 = Backyard Football '09 RQREXJ = The Sky Crawlers: Innocent Aces RQRJAF = スカイ・クロラ イノセン・テイセス RQRPAF = The Sky Crawlers: Innocent Aces RQSE4Z = Pinball Hall of Fame: The Gottlieb Collection RQSP6M = Gottlieb Pinball Classics RQTE6U = Agatha Christie: And Then There Were None RQTP6V = Agatha Christie: And Then There Were None RQUEFS = Super PickUps RQVE20 = Pacific Liberator RQVP20 = Pacific Liberator RQWEG9 = Puzzle Quest: Challenge of the Warlords RQWPG9 = Puzzle Quest: Challenge of the Warlords RQXP70 = Asterix at the Olympic Games RQYENR = Fantasy Aquarium World RQZE41 = Monster 4x4: Stunt Racer RQZP41 = Monster 4x4: Stunt Racer RR2ENR = Rig Racer 2 RR2PNR = Rig Racer 2 RR2PUG = Rig Racer 2 RR3EA4 = Ultimate Party Challenge RR3JA4 = ファミリーチャレンシWii RR3PA4 = Let's Party! RR4EGY = Build-A-Bear Workshop: A Friend Fur All Seasons RR4PFK = Build-A-Bear Workshop: A Friend Fur All Seasons RR5E70 = Ready 2 Rumble Revolution RR5P70 = Ready 2 Rumble Revolution RR7PVP = Real Madrid The Game RR8PUJ = International Athletics RR9E78 = WWE SmackDown vs. Raw 2009 RRAE5Z = Rock 'N' Roll Adventures RRAPUG = Rock 'N' Roll Adventures RRAXUG = Rock 'N' Roll Adventures RRBE41 = Rayman Raving Rabbids RRBJ41 = ラヒッツ・ハーティー RRBP41 = Rayman Raving Rabbids RRCE52 = Barbie Horse Adventures: Riding Camp RRCP52 = Barbie Horse Adventures: Riding Camp RRDE69 = Rock Band Track Pack: Vol. 2 RRDP69 = Rock Band Song Pack 2 RREE69 = Rock Band Track Pack: Vol. 1 RREP69 = Rock Band Song Pack 1 RRFEE9 = Reel Fishing: Angler's Dream RRFPE9 = Reel Fishing: Angler's Dream RRGE52 = Madagascar: Escape 2 Africa RRGP52 = Madagascar 2: Escape 2 Africa RRHPUJ = Mary King's Riding School 2 RRHXUJ = Mary King's Riding School 2 RRIPTV = Paint Party RRJFMR = Ready Steady Cook: The Game RRJIMR = Ready Steady Cook: The Game RRJPMR = Ready Steady Cook: The Game RRKE70 = Alone in the Dark RRKP70 = Alone in the Dark RRLE78 = Bratz: Girlz Really Rock RRLP78 = Bratz: Girlz Really Rock RRLX78 = Bratz: Girlz Really Rock RRLY78 = Bratz: Girlz Really Rock RRLZ78 = Bratz: Girlz Really Rock RRME69 = Hasbro: Family Game Night RRMP69 = Hasbro: Family Game Night RRMX69 = Hasbro: Family Game Night RRPE41 = The Price Is Right RRQE52 = Shrek's Carnival Craze Party Games RRQP52 = Shrek's Carnival Craze Party Games RRQX52 = Shrek's Carnival Craze Party Games RRRE5Z = Real Heroes: Firefighter RRRPRM = Real Heroes: Firefighter RRSE4Q = Meet The Robinsons RRSJ4Q = ルイスと未来泥棒 ウィルハーの危険な時間旅行 RRSP4Q = Meet The Robinsons RRSX4Q = Meet The Robinsons RRTE52 = Block Party 20 Games RRTP52 = Block Party! 20 Games RRUEJF = Winter Sports 2: The Next Challenge RRUFRT = Winter Sports 2009: The Next Challenge RRUJJF = WINTER SPORTS 2009 - THE NEXT CHALLENGE RRUPRT = Winter Sports 2009: The Next Challenge RRVENR = Battle Rage: Mech Conflict RRVPNR = Battle Rage: The Robot Wars RRWJAF = スーハーロホット大戦NEO RRXE5Z = Monster Trux Arenas: Special Edition RRXPUG = Monster Trux Arenas RRXXUG = Monster Trux Arenas RRYEHG = Rogue Trooper: Quartz Zone Massacre RRYPHY = Rogue Trooper: Quartz Zone Massacre RRZEGY = Rubik's World RRZPGY = Rubik's Puzzle World RS2E20 = Ultimate Duck Hunting RS2EGJ = Ultimate Duck Hunting RS2PGJ = Ultimate Duck Hunting RS3E52 = Spider-Man 3 RS3J52 = スハイターマン3 RS3P52 = Spider-Man 3 RS3X52 = Spider-Man 3 RS4EXS = Castle of Shikigami III RS4JJF = 式神の城III RS4PXS = Castle Of Shikigami III RS5EC8 = Samurai Warriors: Katana RS5JC8 = 戦国無双 KATANA RS5PC8 = Samurai Warriors: Katana RS7J01 = アイシールト21 フィールト最強の戦士たち RS8J8N = 上海 RS9E8P = Sonic Riders: Zero Gravity RS9J8P = ソニックライタース シューティンクスターストーリー RS9P8P = Sonic Riders: Zero Gravity RSAE78 = SpongeBob's Atlantis SquarePantis RSAP78 = SpongeBob's Atlantis SquarePantis RSBE01 = Super Smash Bros. Brawl RSBE02 = Super Smash Bros. Project M Red Version RSBE03 = Super Smash Bros. Brawl DX RSBE04 = Super Smash Bros. Project M+ RSBE05 = Super Smash Bros. Project M Patt Edition RSBE06 = Darkon360's Brawl Hack Pack RSBE07 = Super Smash Bros. Project M: Theytah's Custom Build RSBE08 = Smash Bros. Infinite RSBE09 = Springboy64's Brawl Hack Pack RSBE10 = Brawl Ying Yang Edition RSBE11 = Professor MGW's Tournament Hack Pack #1 RSBE12 = Professor MGW's Tournament Hack Pack #2 RSBE13 = Professor MGW's Hack Pack #3 RSBE14 = Super Smash Bros. Brawl- Zeus RSBE15 = Super Smash Bros. Brawl Minus Mugen RSBE16 = Super Smash Bros. Brawl Shock RSBE17 = Super Smash Bros. Brawl - Battlefield Build RSBE18 = Super Smash Bros. Project M: Tournament Hack Pack RSBE19 = Super Smash Bros. Project M: Fully Dressed Edition RSBE20 = Pikezer's BrawlEx Pack RSBE21 = Calabrel's Custom Project M Build RSBE22 = Project M: Rage83's Competitive Custom Build RSBE23 = Super Smash Bros. Project M: Justice Build RSBE24 = Super Smash Bros. 3 RSBE25 = Super Smash Bros. Red Version RSBE26 = Super Smash Bros. Silver RSBE27 = Springboy64's Super Smash Bros. Brawl Hack Pack RSBE28 = SuperYoshiStar's Super Smash Bros. Brawl Hack Pack RSBE29 = Super Smash Bros. Project M: YoeiX Custom Build RSBE30 = Super Smash Bros. Project M: Arko's Loaded Custom Build RSBE31 = Super Smash Bros. Project M: Arko's Tournament Custom Build RSBE32 = Super Smash Bros. Project M: Sempai's Build RSBE33 = Super Smash Bros. Brawl Yin Yang Edition 2: The Balance of Kyu RSBE34 = Super Smash Bros. Project U: Blue Version RSBE35 = Super Smash Bros. Brawl Legacy: Project M RSBE36 = Super Smash Bros. Project Best RSBE37 = Super Smash Bros. Project M: Psycho Ghost's Build RSBE38 = Super Smash Sisters Generations RSBE39 = Super Smash Bros. Ultra Project M RSBE40 = Super Smash Bros. Project M: Ragnarok Edition RSBE41 = Super Smash Bros. Project M: Calabrel's Custom Build RSBE42 = Super Smash Bros. Project M: RedX Anime/Game Custom Build RSBEBB = Super Smash Bros. Balanced Brawl RSBEBM = Super Smash Bros. Brawl Minus RSBEBP = Super Smash Bros. Brawl Plus RSBEC3 = Super Smash Bros. Project M 3.5 Netplay Build RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBEWM = Super Smash Bros. Project M Wi-Fi RSBJ01 = 大乱闘スマッシュフラサースX RSBK01 = Dairantou Smash Brothers X RSBP01 = Super Smash Bros. Brawl RSCD7D = Scarface: The World Is Yours RSCE7D = Scarface: The World Is Yours RSCP7D = Scarface: The World Is Yours RSCU7D = Scarface: The World Is Yours RSDJAF = SDカンタム スカットハンマース RSEJGD = ソウルイーター モノトーンフリンセス RSFC99 = Muramasa: The Demon Blade (Custom) RSFE7U = Muramasa: The Demon Blade RSFJ99 = 朧村正 RSFP99 = Muramasa: The Demon Blade RSHE69 = MySims Kingdom RSHJ13 = ほくとシムのまち キンクタム RSHK69 = MySims Kingdom RSHP69 = MySims Kingdom RSIE69 = MySims RSIJ13 = ほくとシムのまち RSIP69 = MySims RSJE41 = Broken Sword: Shadow of the Templars (Director's Cut) RSJESD = Guitar Hero III Custom : System of a Down RSJP41 = Broken Sword: Shadow of the Templars - The Director's Cut RSKE52 = Shrek The Third RSKP52 = Shrek The Third RSKX52 = Shrek The Third RSLEAF = Soulcalibur: Legends RSLJAF = ソウルキャリハーレシェンス RSLKAF = Soulcalibur: Legends RSLPAF = Soulcalibur: Legends RSME8P = Super Monkey Ball: Banana Blitz RSMJ8P = スーハーモンキーホール ウキウキハーティ大集合 RSMP8P = Super Monkey Ball: Banana Blitz RSND69 = The Simpsons Game RSNE69 = The Simpsons Game RSNF69 = The Simpsons Game RSNP69 = The Simpsons Game RSNX69 = The Simpsons Game RSOE4Z = Solitaire & Mahjong RSOP4Z = Solitaire & Mahjong RSPE01 = Wii Sports RSPJ01 = Wiiスホーツ RSPK01 = Wii Sports RSPP01 = Wii Sports RSPW01 = Wiiスホーツ RSQEAF = We Ski RSQJAF = ファミリースキー RSQPAF = Family Ski RSRE8P = Sonic and the Secret Rings RSRJ8P = ソニックと秘密のリンク RSRP8P = Sonic and the Secret Rings RSSEH4 = Samurai Shodown Anthology RSSJH4 = サムライスヒリッツ 六番勝負 RSSK52 = Samurai Shodown Anthology RSSP7U = Samurai Shodown Anthology RSTE64 = Star Wars: The Force Unleashed RSTJ52 = スター・ウォース フォース・アンリーシュト RSTP64 = Star Wars: The Force Unleashed RSUENR = Summer Sports: Paradise Island RSUP41 = Sports Party RSVE8P = Sonic Unleashed RSVJ8P = ソニック ワールトアトヘンチャー RSVP8P = Sonic Unleashed RSWE08 = Spyborgs RSWP08 = Spyborgs RSXE69 = SSX Blur RSXJ13 = SSXフラー RSXK69 = SSX Blur RSXP69 = SSX Blur RSXX78 = Guitar Hero RadioHead RSYE20 = Showtime Championship Boxing RSYP06 = Super Smash Bros. Brawl : YF06's Mod RSYP7J = Showtime Championship Boxing RSZJES = 雪ん娘大旋風 RSZPGT = Legend of Sayuki RT2E20 = Arctic Tale RT2P20 = Arctic Tale RT2P7J = Arctic Tale RT3E54 = Rockstar Games Presents: Table Tennis RT3JEL = Rockstar Games presents Table Tennis RT3P54 = Rockstar Games Presents: Table Tennis RT4EAF = Tales of Symphonia: Dawn of the New World RT4JAF = テイルス オフ シンフォニア ラタトスクの騎士 RT4PAF = Tales of Symphonia: Dawn of the New World RT5E8P = SEGA Superstars Tennis RT5P8P = SEGA Superstars Tennis RT6FKM = Magic Roundabout RT6PKM = The Magic Roundabout RT7E69 = Tiger Woods PGA Tour 07 RT7F69 = Tiger Woods PGA Tour 07 RT7P69 = Tiger Woods PGA Tour 07 RT8E69 = Tiger Woods PGA Tour 08 RT8J13 = Tiger Woods PGA Tour Golf 08 RT8K69 = Tiger Woods PGA Tour Golf 08 RT8P69 = Tiger Woods PGA Tour 08 RT9E52 = Tony Hawk's Proving Ground RT9P52 = Tony Hawk's Proving Ground RTAE41 = Tom Clancy's H.A.W.X. 2 RTAP41 = Tom Clancy's H.A.W.X. 2 RTBE52 = Rapala Fishing Frenzy RTBP52 = Rapala Fishing Frenzy RTCE41 = Tom Clancy's Splinter Cell: Double Agent RTCP41 = Tom Clancy's Splinter Cell: Double Agent RTDE6K = The Monkey King: The Legend Begins RTDJES = 新・中華大仙 マイケルとメイメイの冒険 RTDK8M = Shin Chuuka Taisen RTEE78 = Paws & Claws: Pet Vet RTEHMR = Real Stories: Veterinaire RTEPFR = My Vet Practice RTFE52 = Transformers: The Game RTFJ52 = トランスフォーマー THE GAME RTFK52 = Transformers: The Game RTFP52 = Transformers: The Game RTFX52 = Transformers: The Game RTFY52 = Transformers: The Game RTGJ18 = Wi-Fi対応 厳選テーフルケームWii RTHE52 = Tony Hawk's Downhill Jam RTHP52 = Tony Hawk's Downhill Jam RTIE8P = Wacky World of Sports RTIJ8P = 珍スホーツ RTIP8P = Wacky World of Sports RTJE68 = Star Trek: Conquest RTJP68 = Star Trek: Conquest RTKE5Z = Octomania RTKJDQ = しゃるうぃ〜☆たころん RTKK8M = Sharuui Takoron RTLE18 = Fishing Master: World Tour RTLJ18 = めさせ!!釣りマスター -世界にチャレンシ編- RTLP18 = Fishing Master: World Tour RTME41 = TMNT RTMP41 = TMNT: Teenage Mutant Ninja Turtles RTNE41 = Tenchu: Shadow Assassins RTNJCQ = 天誅4 RTNP41 = Tenchu: Shadow Assassins RTOJ8P = 428 ~封鎖された渋谷て~ RTPP41 = Top Trumps Adventures RTQENR = Monster Trux Offroad RTQPUG = Monster Trux Offroad RTQXUG = Monster Trux Offroad RTRE18 = Fishing Master RTRJ18 = めさせ!!釣りマスター RTRP18 = Fishing Master RTSEVN = Totally Spies! Totally Party RTSP41 = Totally Spies! Totally Party RTTJAF = たまこっちのフリフリ歌劇団 RTUEJJ = Secret Files Tunguska RTUFKM = Secret Files: Tunguska RTUPKM = Secret Files: Tunguska RTVE64 = Thrillville: Off the Rails RTVP64 = Thrillville: Off The Rails RTWE5D = TNA iMPACT! RTWP5D = TNA iMPACT! RTYP01 = Wii Chess RTZE08 = Zack & Wiki: Quest for Barbaros' Treasure RTZJ08 = 宝島Z ハルハロスの秘宝 RTZK08 = Zack & Wiki: Quest For Barbaros' Treasure RTZP08 = Zack & Wiki: Quest For Barbaros' Treasure RU1P4Q = Disney Sing It:: Sing It Star Singstar 1 RU2E5Z = Winter Sports 2: The Next Challenge RU2P4Q = Disney Sing It: Sing It Star Singstar 2 RU2P5Z = Winter Sports 2 The Next Challenge RU3E5Z = Summer Athletics: The Ultimate Challenge RU4E41 = My Fitness Coach 2: Exercise & Nutrition RU4X41 = NewU Fitness First Personal Trainer RU5E4Q = The Princess and the Frog RU5P4Q = Disney The Princess and the Frog RU5V4Q = Disney: The Princess and the Frog RU5X4Q = Disney: The Princess and the Frog RU5Y4Q = The Princess and the Frog (Riverboat Jazz Edition) RU6EHG = Free Running RU6PHY = Free Running RU7E5G = Night at the Museum: Battle of the Smithsonian - The Video Game RU7X5G = Night at the Museum: Battle of the Smithsonian - The Video Game RU8EFS = Bass Pro Shops: The Hunt RU9EGT = My Ballet Studio RU9PGT = Diva Girls: Diva Ballerina RUAE52 = Monster Jam: Urban Assault RUAP52 = Monster Jam: Urban Assault RUBEVN = Ultimate Board Game Collection RUBP7N = Ultimate Board Game Collection RUCE5Z = Winter Sports: The Ultimate Challenge RUCPRT = Winter Sports 2008: The Ultimate Challenge RUCXRT = Winter Sports 2008: The Ultimate Challenge RUEE4Q = G-Force RUEP4Q = G-Force RUEX4Q = G-Force RUEY4Q = G-Force RUFEMV = Rune Factory: Frontier RUFJ99 = ルーンファクトリー フロンティア RUFP99 = Rune Factory: Frontier RUGE7T = Goosebumps: HorrorLand RUGP5G = Goosebumps: HorrorLand RUHE52 = Bakugan Battle Brawlers RUHP52 = Bakugan Battle Brawlers RUHX52 = Bakugan Battle Brawlers (Toys R Us Edition) RUHZ52 = Bakugan Battle Brawlers RUIE4Q = Disney: Sing It RUIGGD = SingItStar Ned. 80's RUIP4Q = Disney: Sing It RUIX4Q = Disney: Sing It RUKEGT = Rolling Stone: Drum King RUKPGT = We Rock: Drum King RULE4Q = Ultimate Band RULP4Q = Ultimate Band RUME5Z = Ski and Shoot RUMPFR = Summer Athletics RUNJ0Q = NEW 右脳キッスWii RUOEPL = Aliens in the Attic RUOPPL = Aliens in the Attic RUPJC8 = ウイニンクホスト7 マキシマム2008 RUQD78 = Up RUQE78 = Up RUQI78 = Up RUQJJE = カールしいさんの空飛ふ家 RUQP78 = Up RUQS78 = Up RUQX78 = Up RUREPL = Pool Hall Pro RURPPL = Pool Hall Pro RUSE78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUSK78 = SpongeBob SquarePants Featuring Nicktoons: Globs of Doom RUSP78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUSX78 = SpongeBob SquarePants Featuring Nicktoons: Globs of Doom RUSY78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUUE01 = Animal Crossing: City Folk RUUJ01 = 街へいこうよ とうふつの森 RUUK01 = Animal Crossing: City Folk RUUP01 = Animal Crossing: Let's Go to the City RUWJC8 = ウイニンクホストワールト RUXPUG = Urban Extreme: Street Rage RUXXUG = Urban Extreme: Street Rage RUYE41 = No More Heroes 2: Desperate Struggle RUYJ99 = ノーモア★ヒーロース2 テスハレート・ストラクル RUYP99 = No More Heroes 2: Desperate Struggle RUZE7T = Ultimate I SPY RUZP5G = Ultimate I SPY RV2E5D = Game Party 2 RV2P5D = More Game Party RV3P6N = Clever Kids: Creepy Crawlies RV7SMR = Survivor RV8E20 = Beach Fun: Summer Challenge RV8PRT = Beach Fun: Summer Challenge RV9E78 = Avatar: The Last Airbender - Into the Inferno RV9P78 = Avatar: The Legend of Aang - Into the Inferno RVAE78 = Avatar: The Last Airbender - The Burning Earth RVAP78 = Avatar: The Legend of Aang - The Burning Earth RVBERS = Alvin and the Chipmunks RVBPRS = Alvin and the Chipmunks RVDPLG = Diabolik: The Original Sin RVEFMR = Bienvenue Chez Les Ch'tis RVFE20 = Bigfoot: Collision Course RVFP7J = Bigfoot: Collision Course RVGE78 = Merv Griffin's Crosswords RVGP78 = Margot's Word Brain RVHP41 = Scrabble Interactive: 2009 Edition RVIE4F = Bionicle Heroes RVIP4F = Bionicle Heroes RVJPFR = So Blonde: Back to the Island RVKEXJ = Valhalla Knights: Eldar Saga RVKJ99 = ウァルハラナイツ エルタールサーカ RVKKZA = Valhalla Knights: Eldar Saga RVKP99 = Eldar Saga RVLPA4 = Rock Revolution RVNE20 = Calvin Tucker's Redneck Jamboree RVNP20 = Calvin Tucker's Redneck Jamboree RVNP7J = Calvin Tucker's Redneck Jamboree RVOEPL = Vertigo RVOPPL = Vertigo RVPEFS = PopStar Guitar RVPPFS = PopStar Guitar RVQE41 = Movie Games RVQP41 = Movie Studios Party RVREFS = Rebel Raiders: Operation Nighthawk RVRPFS = Rebel Raiders: Operation Nighthawk RVRPKG = Rebel Raiders: Operation Nighthawk RVSE69 = Skate It RVSJ13 = スケート イット RVSP69 = Skate It RVTFMR = Real Stories: Veterinaire RVTPMR = My Pet Club RVTXMR = Real Stories: Veterinaire RVUE8P = Virtua Tennis 2009 RVUP8P = Virtua Tennis 2009 RVVE78 = Big Beach Sports RVVP78 = Big Beach Sports RVXFRT = RTL Biathlon 2009 RVXPRT = RTL Biathlon 2009 RVYD52 = Call of Duty: World at War RVYE52 = コール オフ テューティ ワールト・アット・ウォー RVYK52 = Call of Duty: World at War RVYP52 = Call of Duty: World at War RVYX52 = Call of Duty: World at War RVYY52 = Call of Duty: World at War RVZE52 = Monsters vs. Aliens RVZP52 = Monsters vs. Aliens RW3E4Q = Pirates of the Caribbean: At World's End RW3J4Q = ハイレーツ・オフ・カリヒアン ワールト・エント RW3P4Q = Pirates Of The Caribbean: At World's End RW4D41 = My Word Coach: Develop your vocabulary RW5F41 = Who Wants To Be A Millionaire: 2nd Edition RW5P41 = Who Wants To Be A Millionaire: 2nd Edition RW6PA4 = Dance Dance Revolution: Winx Club RW7E41 = Shaun White Snowboarding: Road Trip - Target Limited Edition RW8P41 = Imagine Champion Rider RW9P78 = WWE SmackDown vs. Raw 2009 RW9X78 = WWE SmackDown vs. Raw 2009 RWAD78 = WALL•E RWAE78 = WALL•E RWAJ78 = ウォーリー RWAK78 = WALL•E RWAP78 = WALL•E RWAR78 = WALL•E RWAU78 = WALL•E RWAX78 = WALL•E RWAY78 = WALL•E RWAZ78 = WALL•E RWBENR = Kawasaki Snowmobiles RWBXUG = Kawasaki Snow Mobiles RWCE4Z = Pinball Hall of Fame: The Williams Collection RWCP4Z = Pinball: Hall Of Fame RWCP6M = Williams Pinball Classics RWDC52 = Guitar Hero III Custom: WD Custom RWDE5G = Wild Earth: African Safari RWDP5G = Wild Earth: African Safari RWEEA4 = Pro Evolution Soccer 2008 RWEJA4 = ウイニンクイレフン フレーメーカー 2008 RWEPA4 = Pro Evolution Soccer 2008 RWFH41 = My Word Coach: Develop your vocabulary RWGE08 = We Love Golf! RWGJ08 = ウィー ラフ コルフ! RWGP08 = We Love Golf! RWHP4F = Top Trumps: Doctor Who RWIE18 = Wing Island RWIJ18 = ウィンクアイラント RWIP18 = Wing Island RWJENR = WordJong Party RWKE5G = Cooking Mama: World Kitchen RWKPGT = Cooking Mama 2: World Kitchen RWLE01 = Wario Land: Shake It! RWLJ01 = ワリオラントシェイク RWLK01 = Wario Land Shaking RWLP01 = Wario Land: The Shake Dimension RWME78 = Worms: A Space Oddity RWMP78 = Worms: A Space Oddity RWNF70 = Warning: Code De La Route RWOE69 = Monopoly RWOJ13 = モノホリー RWOP69 = Monopoly RWQPSP = WSC Real 08: World Snooker Championship RWRE4F = Wacky Races: Crash & Dash RWRP4F = Wacky Races: Crash & Dash RWSE8P = Mario & Sonic at the Olympic Games RWSJ01 = マリオ&ソニック AT 北京オリンヒック RWSK01 = Mario & Sonic at the Olympic Games RWSP8P = Mario & Sonic at the Olympic Games RWTEG9 = Ben 10: Alien Force RWTPG9 = Ben 10: Alien Force RWUE52 = X-Men Origins: Wolverine RWUP52 = X-Men Origins: Wolverine RWUX52 = X-Men Origins: Wolverine RWWE52 = Guitar Hero III Custom : WWE The Hits RWWE78 = WWE SmackDown vs. Raw 2008 RWWJ78 = WWE 2008 SmackDown vs. Raw RWWP78 = WWE SmackDown vs. Raw 2008 RWWX78 = WWE SmackDown vs. Raw 2008 RWXES5 = Brave: A Warrior's Tale RWXPS5 = Brave: A Warrior's Tale RWYPHH = Runaway: The Dream of the Turtle RWZE5G = Wonder World Amusement Park RWZP5G = Wonder World Amusement Park RWZX5G = Wonder World Amusement Park RX2E70 = My Horse & Me: Riding for Gold RX2P70 = My Horse & Me 2 RX3E01 = ExciteBots: Trick Racing RX3J01 = エキサイト猛マシン RX4E4Z = Casper's Scare School: Spooky Sports Day RX4PMT = Casper's Scare School: Spooky Sports Day RX5E52 = Tony Hawk: Ride RX5P52 = Tony Hawk: Ride RX6E78 = The Biggest Loser RX6P78 = The Biggest Loser RX7JGD = メシャマシ・マーチ RX8JA4 = 実況ハワフルフロ野球NEXT RX9E69 = Need for Speed: Undercover RX9J13 = ニート・フォー・スヒート アンターカハー RX9K69 = Need for Speed: Undercover RX9P69 = Need for Speed: Undercover RX9X69 = Need for Speed: Undercover RX9Y69 = Need for Speed: Undercover RXAE78 = WWE SmackDown vs. Raw 2010 RXAP78 = WWE SmackDown vs. Raw 2010 RXBE70 = Backyard Baseball '10 RXBP70 = Backyard Baseball '10 RXCE4Z = Dave Mirra BMX Challenge RXCP4Z = Dave Mirra BMX Challenge RXCPGT = Dave Mirra BMX Challenge RXDD4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDE4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDJ4Q = ティスニー・シンク 早押しクイス RXDP4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDR4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDX4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDY4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXEJDA = メシャーWii ハーフェクトクローサー RXFEVN = Offshore Tycoon RXGE6K = Geon Cube RXGP6K = Geon Cube RXHF5D = Chaos à La Maison RXIE52 = Transformers: Revenge of the Fallen RXIP52 = Transformers: Revenge of the Fallen RXJJDA = 人生ケームWii EX RXKEGL = TV Show King Party RXKFGL = TV Show King Party RXKPGL = TV Show King Party RXLE41 = Grey's Anatomy: The Video Game RXLP41 = Grey's Anatomy: The Video Game RXMJ8P = ミフリー&テフリー RXNEXS = Hooked Again: Real Motion Fishing RXNJJF = ハスフィッシンクWii ワールトトーナメント RXNPGT = Big Catch Bass Fishing 2 RXPEXS = Hooked!: Real Motion Fishing RXPJJF = ハスフィッシンクWii 〜ロクマル伝説〜 RXPPGT = Big Catch Bass Fishing RXQEWR = Where the Wild Things Are RXQPWR = Where the Wild Things Are RXRERS = The Tale of Despereaux RXRPRS = The Tale of Despereaux RXRXRS = The Tale Of Despereaux RXSPA4 = Dancing Stage: Hottest Party RXUE41 = Surf's Up RXUP41 = Surf's Up RXUX41 = Surf's Up RXVXWP = Télé 7 Jeux: Mots Croisés RXWE20 = M&M's Beach Party RXXE4Q = Spectrobes: Origins RXXJ4Q = 化石モンスター スヘクトロフス RXXP4Q = Spectrobes: Origins RXYE4Z = Puzzle Challenge: Crosswords and More! RXYP4Z = Puzzle Challenge Crosswords RXZE52 = Cabela's Dangerous Hunts 2009 RXZP52 = Cabela's Dangerous Adventures RY2E41 = Rayman Raving Rabbids 2 RY2J41 = ラヒッツ・ハーティー リターンス RY2K41 = Rayman Raving Rabbids 2 RY2P41 = Rayman Raving Rabbids 2 RY2R41 = Rayman Raving Rabbids 2 RY3E41 = Rayman Raving Rabbids TV Party RY3J41 = ラヒッツ・ハーティー TV Party RY3K41 = Rayman Raving Rabbids: TV Party RY3P41 = Rayman Raving Rabbids: TV Party RY4J8P = ふよふよ7 RY5E52 = Big League Sports: Summer RY5P52 = World Championship Sports: Summer RY6EA4 = Walk It Out! RY6PA4 = Step to the Beat RY7PHZ = Ninja Captains RY8EFS = Bass Pro Shops: The Strike RYAJDA = ヤッターマンWii ヒックリトッキリマシンて猛レースたコロン RYAJSC = ヤッターマンWii ヒックリトッキリマシンて猛レースたコロン RYBE69 = Boom Blox: Bash Party RYBP69 = Boom Blox: Bash Party RYDELT = Pet Pals: Animal Doctor RYDP6V = Pet Pals: Animal Doctor RYEEEB = 101-in-1 Party Megamix RYEPHZ = 101-in-1 Party Megamix RYGE9B = Rygar: The Battle of Argus RYGJ9B = アルコスの戦士 マッスルインハクト RYGP99 = Rygar: The Battle of Argus RYHES5 = Roogoo: Twisted Towers RYHPS5 = Roogoo: Twisted Towers RYIE9B = SPRay RYIP9B = SPRay RYJPTV = Princess Lillifee's Magic Fairy RYKEAF = We Ski & Snowboard RYKJAF = ファミリースキー ワールトスキー&スノーホート RYKPAF = Family Ski & Snowboard RYLDSV = Germany's Next Top Model RYNE6U = The Hardy Boys: The Hidden Theft RYNP6V = The Hardy Boys: The Hidden Theft RYOEA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYOJA4 = 遊戯王 5D's ウィーリーフレイカース RYOPA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYQE69 = Trivial Pursuit RYQP69 = Trivial Pursuit RYQX69 = Trivial Pursuit Nordic RYRE41 = Your Shape RYRP41 = Your Shape RYTE4Z = PBR: Out of the Chute RYVEMS = Arcade Shooter: Ilvelo RYVJMS = イルヘロWii RYWE01 = Big Brain Academy: Wii Degree RYWJ01 = Wiiてやわらかあたま塾 RYWK01 = Big Brain Academy: Wii Degree RYWP01 = Big Brain Academy for Wii RYXE20 = Yamaha Supercross RYXP7J = Yamaha Supercross RYZE6U = World Party Games RYZPTV = Play the World RZ2JG9 = SIMPLE Wiiシリース Vol.1 THE みんなてカート・レース RZ3JG9 = SIMPLE Wiiシリース Vol.2 THE みんなてハス釣り大會 RZ4JG9 = SIMPLE Wiiシリース Vol.3 遊んて覚える THE ハーティー・カシノ RZ5JG9 = SIMPLE WiiシリースVol.4 THEシューティンク・アクション RZ6JG9 = SIMPLE Wiiシリース Vol.5 THE フロックくすし RZ7JG9 = SIMPLE Wiiシリース Vol.6 THE ワイワイ・コンハット RZ8JG9 = SIMPLE 2000シリースWiiVol.1 THEテーフルケーム RZ9EG9 = Family Party: 30 Great Games RZ9JG9 = SIMPLE 2000シリースWii Vol.2 THEハーティーケーム RZ9PG9 = Family Party: 30 Great Games RZAPTV = Lernerfolg Grundschule Power Math RZCE6K = Saint RZDC01 = The Legend of Zelda: Twilight Princess (Custom) RZDE01 = The Legend of Zelda: Twilight Princess RZDJ01 = セルタの伝説 トワイライトフリンセス RZDK01 = The Legend of Zelda: Twilight Princess RZDP01 = The Legend of Zelda: Twilight Princess RZEE52 = Science Papa RZEP52 = Science Papa RZFPKM = Secret Files 2: Puritas Cordis RZHE5G = Zoo Hospital RZHP5G = Zoo Hospital RZHX5G = Zoo Hospital RZIE20 = Winter Sports 3: The Great Tournament RZIPRT = Winter Sports 2010: The Great Tournament RZJD69 = Dead Space: Extraction RZJE69 = Dead Space: Extraction RZJJ13 = テットスヘース エクストラクション RZJP69 = Dead Space: Extraction RZKE20 = Puzzle Kingdoms RZKP7J = Puzzle Kingdoms RZLE41 = Cook Wars RZLP41 = Cook-off Party RZNJ01 = 斬撃のREGINLEIV RZOE78 = World of Zoo RZOP78 = World of Zoo RZPE01 = Link's Crossbow Training RZPJ01 = リンクのホウカントレーニンク RZPK01 = Link's Crossbow Training RZPP01 = Link's Crossbow Training RZREGT = The Destiny of Zorro RZRPGT = The Destiny of Zorro RZSEGJ = Speed Zone RZSP68 = Wheelspin RZTE01 = Wii Sports Resort RZTJ01 = Wiiスホーツ リソート RZTK01 = Wii Sports Resort RZTP01 = Wii Sports Resort RZTW01 = Wiiスホーツ リソート RZUE4Z = Crayola Colorful Journey RZYE41 = My Word Coach RZYF41 = My Word Coach: Develop your vocabulary RZYP41 = My Word Coach: Develop your vocabulary RZYS41 = My Word Coach: Develop your vocabulary RZZE8P = MadWorld RZZJEL = マットワールト RZZP8P = MadWorld S02PES = Sing It Star 90's S22JAF = ファミリーフィッシンク S22K01 = Family Fishing S25JGD = ファミコン&スーハーファミコン トラコンクエストⅠ・Ⅱ・Ⅲ S26PML = 2-in-1: Pony Friends 2 + My Riding Stables: Life with Horses S2AEAF = Active Life: Explorer S2AJAF = みんなて冒険!ファミリートレーナー S2APAF = Family Trainer: Treasure Adventure S2BEPZ = Country Dance 2 S2BPXT = Country Dance 2 S2CE54 = New Carnival Games S2CP54 = New Carnival Funfair Games S2DPML = Dance! It's Your Stage S2EE41 = ABBA: You Can Dance S2EP41 = ABBA: You Can Dance S2HE70 = Haunted House S2HP70 = Haunted House S2IE8P = Iron Man 2 S2IP8P = Iron Man 2 S2LE01 = PokéPark 2: Wonders Beyond S2LJ01 = ホケハーク2 ヒヨント・サ・ワールト S2LP01 = PokéPark 2: Wonders Beyond S2ME69 = Madden NFL 13 S2OEFS = Bass Pro Shops: The Strike - Tournament Edition S2PEA4 = Pro Evolution Soccer 2012 S2PJA4 = ウイニンクイレフン フレーメーカー 2012 S2PPA4 = Pro Evolution Soccer 2012 S2PXA4 = Pro Evolution Soccer 2012 S2PYA4 = Pro Evolution Soccer 2012 S2QE54 = NBA 2K12 S2QP54 = NBA 2K12 S2RPNK = Reload S2TJAF = 太鼓の達人Wii トトーンと2代目! S2VEG9 = Victorious: Taking the Lead S2VPAF = Victorious: Taking the Lead S2WE78 = WWE All Stars S2WP78 = WWE All Stars S2XE41 = The Smurfs 2 S2XP41 = The Smurfs 2 S2YE52 = Wipeout: Create & Crash S2ZE52 = Zhu Zhu Pets: Featuring The Wild Bunch S2ZP52 = Zhu Zhu Pets: Featuring the Wild Bunch S3AE5G = Attack of the Movies 3D S3BEWR = Batman: The Brave and the Bold S3BPWR = Batman: The Brave and the Bold S3CENR = Triple Crown Championship Snowboarding S3DE18 = Deca Sports 3 S3DJ18 = テカスホルタ3 S3DP18 = Sports Island 3 S3EE78 = Barbie Jet, Set & Style! S3EP78 = Barbie Jet, Set & Style! S3FE69 = FIFA Soccer 13 S3FP69 = FIFA 13 S3FX69 = FIFA 13 S3GE20 = Glacier 3: The Meltdown S3GPXT = Glacier 3 S3HJ08 = 戦国BASARA3 宴 S3IEA4 = Pro Evolution Soccer 2013 S3IPA4 = Pro Evolution Soccer 2013 S3IXA4 = Pro Evolution Soccer 2013 S3IYA4 = Pro Evolution Soccer 2013 S3LPY1 = Andrew Lloyd Webber Musicals: Sing and Dance S3ME69 = The Sims 3 S3MP69 = The Sims 3 S3PE4Q = Disney Princess: My Fairytale Adventure S3PP4Q = Disney Princess: My Fairytale Adventure S3PX4Q = Disney Princess: My Fairytale Adventure S3RJMS = トウィンクルクイーン S3SJ18 = カラオケJOYSOUND Wii SUPER DX S3TJAF = 太鼓の達人Wii みんなてハーティ☆3代目! S3WEG9 = Family Party: 30 Great Games Winter Fun S3WPG9 = Family Party: 30 Great Games Winter Fun S3XE78 = WWE '13 S3XP78 = WWE '13 S3ZE52 = Men In Black: Alien Crisis S3ZP52 = Men In Black: Alien Crisis S4MJGD = トラコンクエストX 目覚めし五つの種族 オンライン S4SJGD = Dragon Quest X: Nemureru Yuusha to Michibiki no Meiyuu Online S4TJAF = 太鼓の達人Wii 決定版 S59E01 = Samurai Warriors 3 S59JC8 = 戦国無双3 S59P01 = Samurai Warriors 3 S5BETL = Back to the Future: The Game S5BPKM = Back to the Future: The Game S5KJAF = 太鼓の達人WII 超こうか版 S5QJC8 = 戦国無双3 猛将伝 S5RESZ = Ram Racing S5RPNJ = Ram Racing S5SJHF = イナスマイレフンGO ストライカース 2013 S5TEG9 = Ben 10: Omniverse S5TPAF = Ben 10: Omniverse S5WE20 = Around The World in 50 Games S6BE4Q = Brave: The Video Game S6BP4Q = Brave: The Video Game S6BY4Q = Brave: The Video Game S6IE78 = Disney Princess: Enchanting Storybooks S6IP78 = Disney Princess: Enchanting Storybooks S6RE52 = Wreck-It Ralph S6RP52 = Wreck-It Ralph S6TJGD = Dragon Quest X (All in One Package) S72E01 = Kirby's Dream Collection: Special Edition S72J01 = 星のカーヒィ 20周年スヘシャルコレクション S75E69 = Monopoly Streets S75P69 = Monopoly Streets S7AEWR = LEGO Batman 2: DC Super Heroes S7AKWR = LEGO Batman 2: DC Super Heroes S7AKZA = Lego Superheroes 1 S7APWR = LEGO Batman 2: DC Super Heroes S7BE69 = Trivial Pursuit: Bet You Know It S7BP69 = Trivial Pursuit: Casual S7CJAF = 仮面ライター クライマックスヒーロース フォーセ S7DE52 = Angry Birds: Star Wars S7DP52 = Angry Birds: Star Wars S7EP52 = Transformers: Ultimate Battle Edition S7FE5G = Zumba Kids S7FPGT = Zumba Kids: The Ultimate Zumba Dance Party S7JPKM = Let's Sing 6 - Spanish version S7KPKM = Let's Sing 2014 S7SP41 = The Smurfs Party Pack S80U3Q = SingItStar Ultimate 80s SA3E5G = Alvin and the Chipmunks: Chipwrecked SA3P5G = Alvin and the Chipmunks: Chipwrecked SA5E78 = Are You Smarter Than A 5th Grader?: Back to School SA6EG9 = Ben 10: Galactic Racing SA6PAF = Ben 10: Galactic Racing SA7ESZ = Gummy Bears: Magical Medallion SA8P52 = The Amazing Spider-Man SA9D7K = Bibi und Tina Das grosse Reiterfest SAAJA4 = ウイニンクイレフン フレーメーカー2013 SABENR = Alien Monster Bowling League SABPJG = Alien Monster Bowling League SACPVS = ACB Total 2010/2011 SACSVS = ACB Total 2010/2011 SADE70 = Backyard Sports: Sandlot Sluggers SAFUHS = AFL: Australian Football League SAGE41 = The Amazing Race SAHE69 = Hasbro: Family Game Night Fun Pack SAJE52 = Cabela's Survival: Shadows of Katmai SAJP52 = Cabela's Survival: Shadows of Katmai SAKENS = Sakura Wars: So Long, My Love SAKPNS = Sakura Wars: So Long, My Love SALE4Q = Alice in Wonderland SALP4Q = Alice in Wonderland SAME01 = New Super Mario Bros. Wii 11 American Revolution SANE01 = New Super Mario Bros. Wii Five Spica Edition SANEFS = Bass Pro Shops: The Hunt - Trophy Showdown SANT3Q = SingItStar Anthems SAOE78 = Monster High: Ghoul Spirit SAOP78 = Monster High: Ghoul Spirit SAQE5G = Harley Pasternak's Hollywood Workout SARE4Z = Aladdin Magic Racer SARP01 = New Super Mario Bros. Wii 4 Arcadia Another Ride SARPNK = Aladin: Magic Racer SASEWW = Atrévete a Soñar SATE6K = Chuck E. Cheese's Super Collection SAUJ8P = ふよふよ!! Puyopuyo 20th anniversary SAVE5G = Alvin and the Chipmunks: The Squeakquel SAVX5G = Alvin and the Chipmunks: The Squeakquel SAWE52 = Angry Birds Trilogy SAWP52 = Angry Birds Trilogy SAXPFH = Max & the Magic Marker SAYE20 = Boot Camp Academy SAYP41 = Boot Camp Academy SAZE52 = The Amazing Spider-Man SAZP52 = The Amazing Spider-Man SB2ES5 = My Baby First Steps SB2PNP = My Baby 2: My Baby Grew Up SB3E08 = Sengoku Basara: Samurai Heroes SB3J08 = 戦国BASARA3 SB3P08 = Sengoku Basara: Samurai Heroes SB4C01 = Super Mario Galaxy 2 (Custom) SB4E01 = Super Mario Galaxy 2 SB4E02 = Neo Mario Galaxy SB4E03 = Super Mario Galaxy: Plumber's Way SB4E04 = Super Mario Sunshine Galaxy SB4E05 = Season Cycle Galaxy SB4E25 = Super Mario Galaxy 2.5 SB4J01 = スーハーマリオキャラクシー2 SB4J02 = Neo Mario Galaxy SB4J05 = Season Cycle Galaxy SB4K01 = Super Mario Galaxy 2 SB4P01 = Super Mario Galaxy 2 SB4P02 = Neo Mario Galaxy SB4P05 = Season Cycle Galaxy SB4W01 = スーハーマリオキャラクシー2 SB5E54 = NBA 2K11 SB5P54 = NBA 2K11 SB6E52 = Bakugan: Defenders of the Core SB6P52 = Bakugan: Defenders of the Core SB7IVU = Planet Basket 2009/2010 SB8EQH = Burger Bot SB9E78 = Barbie: Groom and Glam Pups SB9P78 = Barbie: Groom and Glam Pups SBAJGD = トラコンクエスト モンスターハトルロート ヒクトリー SBBE18 = Beyblade: Metal Fusion - Battle Fortress SBBJ18 = メタルファイト ヘイフレート カチンコスタシアム SBBP18 = Beyblade: Metal Fusion - Counter Leone SBCJ2N = ヒリースフートキャンフ Wiiてエンショイタイエット! SBDE08 = Resident Evil: The Darkside Chronicles SBDJ08 = ハイオハサート/タークサイト・クロニクルス SBDK08 = Biohazard: The Darkside Chronicles SBDP08 = Resident Evil: The Darkside Chronicles SBEPSV = Bermuda Triangle SBFE70 = Backyard Football '10 SBHEFP = Remington Great American Bird Hunt SBHPNK = Remington Great American Bird Hunt SBIEVZ = Busy Scissors SBIPVZ = Busy Scissors SBJEG9 = Ben 10: Ultimate Alien Cosmic Destruction SBJPAF = Ben 10: Ultimate Alien Cosmic Destruction SBKEPZ = Brunswick Zone Cosmic Bowling SBLE5G = A Boy and His Blob SBLP5G = A Boy and His Blob SBNEG9 = Ben 10: Alien Force Vilgax Attacks SBNPG9 = Ben 10: Alien Force Vilgax Attacks SBOD3Q = SingItStar Best of Disney SBQE4Z = Big Buck Hunter Pro SBREJJ = Let's Play Ballerina SBRPKM = Ballerina SBSE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh SBSEFP = Remington Super Slam Hunting: North America SBSURN = Remington Super Slam Hunting: North America SBVE78 = SpongeBob's Boating Bash SBVG3Q = SingItStar Boybands vs Girlbands SBVP78 = SpongeBob's Boating Bash SBVS78 = SpongeBob's Boating Bash SBWC11 = New Super Mario Bros. 3: The Wrath of Shadow Bowser SBWE5G = Babysitting Mama SBWJRA = ヘヒーシッターママ SBWPGT = Cooking Mama World: Babysitting Mama SBXEWR = The Bachelor: The Video Game SBYE41 = Dance on Broadway SBYP41 = Dance on Broadway SBZESZ = Bermuda Triangle: Saving the Coral SC2E8P = Conduit 2 SC2P8P = Conduit 2 SC4E64 = LEGO Star Wars III: The Clone Wars SC4P64 = LEGO Star Wars III: The Clone Wars SC5PGN = Challenge Me: Word Puzzles SC6PGN = Challenge Me: Brain Puzzles 2 SC7D52 = Call of Duty: Black Ops SC7E52 = コール オフ テューティ フラック・オフス SC7F52 = Call of Duty: Black Ops SC7I52 = Call of Duty: Black Ops SC7P52 = Call of Duty: Black Ops SC7S52 = Call of Duty: Black Ops SC8E01 = Wii Play: Motion SC8J01 = Wiiリモコンフラス ハラエティ SC8K01 = Wii Play: Motion SC8P01 = Wii Play: Motion SC9P52 = Cabela's Big Game Hunter 2010 SCAE18 = Calling SCAJ18 = CALLING ~黒き着信~ SCAP18 = Calling SCBPNK = Cyberbike Cycling Sports SCDE52 = Cabela's Dangerous Hunts 2011 SCDP52 = Cabela's Dangerous Hunts 2011 SCEE6K = Chuck E. Cheese's Party Games SCFPNK = Cocoto Festival SCGE20 = Calvin Tucker's Redneck: Farm Animal Racing Tournament SCGPXT = Calvin Tucker's: Farm Animals Racing Tournament SCHEQH = Canada Hunt SCIE41 = CSI: Fatal Conspiracy SCIP41 = CSI: Fatal Conspiracy SCJE4Q = LEGO Pirates of the Caribbean: The Video Game SCJP4Q = LEGO Pirates of the Caribbean: The Video Game SCKE6K = Chuck E. Cheese's Sports Games SCMJAF = 仮面ライター クライマックスヒーロース オース SCNEA4 = Scene It? Twilight SCNPA4 = Scene It? Twilight SCPE70 = Centipede: Infestation SCQDRV = Schlag den Raab - Das 2. Spiel SCREJH = Chicken Riot SCRPJH = Chicken Riot SCSE52 = Cruise Ship Vacation Games SCSPGR = Cruise Ship Resort SCTE01 = The Curse of Black Toad SCTPNK = Cocoto Surprise SCUPFR = Crazy Chicken: Carnival SCWE41 = Gold's Gym: Dance Workout SCWP41 = My Fitness Coach: Dance Workout SCXESZ = Chevrolet Camaro: Wild Ride SCXPNJ = Chevrolet Camaro: Wild Ride SCYE4Q = Cars 2 SCYP4Q = Cars 2 SCYX4Q = Cars 2 SCYY4Q = Cars 2 SCYZ4Q = Cars 2 SCZEMH = Crazy Machines SCZPFR = Crazy Machines SD2E41 = Just Dance 2 SD2J01 = シャストタンス Wii SD2K41 = Just Dance 2 SD2P41 = Just Dance 2 SD2Y41 = Just Dance 2: Best Buy Edition SD3DSV = Der Gesundheitscoach SD5PTV = Lernerfolg Grundschule Deutsch SD6PTV = Lernerfolg Grundschule Englisch SD7PTV = Lernerfolg Grundschule Mathematik SD8DSV = Mein neues Leben Abenteuer auf Tropicana SD9JAF = SDカンタム カシャホンウォース SDAE01 = Scooby-Doo! The Bros Adventure SDAE5G = The Daring Game for Girls SDBE78 = de Blob 2 SDBP78 = de Blob 2 SDDPML = The Ultimate Battle Of The Sexes SDEE5G = Dance Sensation! SDFE4Q = Disney Sing It: Family Hits SDFP4Q = Disney Sing It: Family Hits SDGE4Q = Disney Channel: All Star Party SDGP4Q = Disney Channel: All Star Party SDHER3 = Super Smash Bros. Brawl Dark Hole/D.A.R.S. SDIE4Q = Disney Sing It: Party Hits SDIP4Q = Disney Sing It: Party Hits SDJJAF = SDカンタム Gシェネレーション ワールト SDLE78 = Dood's Big Adventure SDLP78 = Dood's Big Adventure SDMEG9 = Despicable Me: The Game SDMPAF = Despicable Me: The Game SDNE41 = Just Dance SDNP41 = Just Dance SDOPLR = Doctor Who: Return To Earth SDPE54 = Dora's Big Birthday Adventure SDPP54 = Dora's Big Birthday SDQJGD = トラコンクエストX いにしえの竜の伝承 オンライン SDREYG = Maximum Racing: Drag & Stock Racer SDRP3Q = SingItStar Deutsch Rock-Pop Vol. 1 SDRPNG = Drag & Stock Racer SDSPNG = We Dance SDTH3Q = SingItStar Die Toten Hosen SDTPGN = PDC World Championship Darts: Pro Tour SDUE41 = The Smurfs Dance Party SDUP41 = The Smurfs: Dance Party SDUPO1 = DU Super Mario Bros. : DU Edition SDVE41 = Driver: San Francisco SDVP41 = Driver: San Francisco SDWE18 = Lost in Shadow SDWJ18 = 影の塔 SDWP18 = A Shadow's Tale SDXE4Q = Disney Universe SDXP4Q = Disney Universe SDYEA4 = Dance Dance Revolution SDYPA4 = Dance Dance Revolution: Hottest Party 4 SDZE41 = Just Dance Kids SDZP41 = Dance Juniors SE2E69 = EA Sports Active 2 SE2P69 = EA Sports Active 2 SE3E41 = Just Dance 2015 SE3P41 = Just Dance 2015 SEAE69 = EA Sports Active: More Workouts SEAJ13 = ハーソナルトレーナーWii6週間ひきしめフロクラム SEAP69 = EA Sports Active: More Workouts SECE69 = Create SECP69 = Create SEGA = Genplus GX SEGE6U = Yoga SEGP6V = Yoga SEKJ99 = イケニエノヨル SELE69 = FIFA Soccer 11 SELP69 = FIFA 11 SELX69 = FIFA 11 SEME4Q = Disney Epic Mickey SEMJ01 = ティスニー エヒックミッキー ~ミッキーマウスと魔法の筆~ SEMP4Q = Disney Epic Mickey SEMX4Q = Disney Epic Mickey SEMY4Q = Disney Epic Mickey SEMZ4Q = Disney Epic Mickey SENPZX = Enclave: Shadows of Twilight SEOP01 = New Super Mario Bros. Wii 8 Omega SEOP4Q = Sing It: Edad de Oro del Pop Español SEPE41 = フラック・アイト・ヒース・エクスヘリエンス スヘシャル・エティション SEPP41 = The Black Eyed Peas Experience SEPX41 = The Black Eyed Peas Experience D1 Edition SEPZ41 = フラック・アイト・ヒース・エクスヘリエンス スヘシャル・エティション SERE4Q = Disney Epic Mickey 2: The Power of Two SERF4Q = Disney Epic Mickey 2: The Power of Two SERK4Q = Disney Epic Mickey 2: The Power of Two SERP4Q = Disney Epic Mickey 2: The Power of Two SERV4Q = Disney Epic Mickey 2: The Power of Two SESEWR = Sesame Street: Ready, Set, Grover! SESPWR = Sesame Street: Ready, Set, Grover! SESUWR = Sesame Street: Ready, Set, Grover! SEZJHF = イナスマイレフン ストライカース 2012エクストリーム SF2P64 = Star Wars: The Force Unleashed II SF4E20 = Flatout SF4PXT = Flatout SF5E41 = Fit in Six SF5J41 = フィット・イン・シックス カラタを鍛える6つの要素 SF5P41 = My Fitness Coach: Club SF7E41 = Family Feud 2012 Edition SF8E01 = Donkey Kong Country Returns SF8J01 = トンキーコンク リターンス SF8P01 = Donkey Kong Country Returns SFAE41 = Family Feud Decades SFAJGD = 鋼の錬金術師 FULLMETAL ALCHEMIST -黄昏の少女- SFBE70 = Backyard Sports Football: Rookie Rush SFDE01 = New Super Mario Bros. Wii 9 Virtue: This Fall Darkness SFDEAF = Active Life: Magical Carnival SFDJAF = いっしょに遊ほう!トリームテーマハーク SFDPAF = Family Trainer: Magical Carnival SFGE69 = Hasbro: Family Game Night 4 - The Game Show SFGP69 = Hasbro: Family Game Night 4 - The Game Show SFHEFP = Outdoor Action Double Pack SFIE01 = Mystery Case Files: The Malgrave Incident SFIP01 = Mystery Case Files: The Malgrave Incident SFKEG9 = Family Party: Fitness Fun SFKPAF = Family Party: Fitness Fun SFLDSV = Der Fluch der Osterinsel SFOEAF = Food Network: Cook or Be Cooked SFPPFR = Fantastic Football Fan Party SFQE8P = Captain America: Super Soldier SFQP8P = Captain America: Super Soldier SFRDRV = Fit & Fun SFRPXT = Fit & Fun SFSPGT = All Round Hunter SFTE78 = Wheel of Fortune SFTP78 = Wheel of Fortune SFUE64 = Star Wars: The Force Unleashed II SFVEXJ = フィッシンクリソート SFWE69 = 2010 FIFA World Cup South Africa SFWJ13 = 2010 FIFA ワールトカッフ 南アフリカ大会 SFWK13 = 2010 FIFA World Cup: South Africa SFWK69 = 2010 FIFA World Cup South Africa SFWP69 = 2010 FIFA World Cup South Africa SFWX69 = 2010 FIFA World Cup South Africa SFWY69 = 2010 FIFA World Cup South Africa SFWZ69 = 2010 FIFA World Cup South Africa SFXPKM = The X Factor SFXXKM = X Factor SFYEG9 = Family Party: 90 Great Games Party Pack SFYPAF = Family Party: 90 Great Games Party Pack SFZEPZ = Pheasants Forever: Wingshooter SFZPXT = Pheasants Forever SG2EFS = Crazy Mini Golf 2 SG2XUG = Crazy Mini Golf 2 SG2YFS = Crazy Mini Golf 2 SG3DSV = Germany's Next Top Model 2010 SG5PSV = Family Quiz SG6DSV = Galileo Family Quiz SG7E20 = The Garfield Show: Threat of the Space Lasagna SG7PVL = The Garfield Show: Threat of the Space Lasagna SG8EG9 = Yogi Bear SG8PAF = Yogi Bear: The Video Game SG9EYC = Gremlins: Gizmo SGAE8P = Tournament of Legends SGAP8P = Tournament of Legends SGBE5G = Greg Hastings Paintball 2 SGCE20 = Glacier 2 SGDEJJ = Let's Play Garden SGDPKM = Play Gardens SGEEG9 = Nat Geo Challenge! Wild Life SGEPLG = Nat Geo Quiz! Wild Life SGHE41 = Tom Clancy's Ghost Recon SGHP41 = Tom Clancy's Ghost Recon SGI1CL = SingIt Clasicos SGI1DB = Sing IT: Dibujos Animados SGI1MC = SingItStar Mecano SGI1ML = Sing It Star: Miliki SGI1PT = Sing IT: Party SGI1RC = Sing IT: Rocks 2 SGIEA4 = GTI Club Supermini Festa! SGIJA4 = GTI Club ワールト シティ レース SGIPA4 = GTI Club Supermini Festa! SGJDSV = Galileo Mystery: The Crown of Midas SGJPSV = The Crown of Midas SGKEC8 = Champion Jockey: G1 Jockey & Gallop Racer SGKJC8 = チャンヒオンショッキー:キャロッフレーサー&シーワンショッキー SGKPC8 = Champion Jockey: G1 Jockey & Gallop Racer SGLEA4 = Gormiti: The Lords of Nature! SGLPA4 = Gormiti: The Lords of Nature! SGNE69 = Hasbro: Family Game Night Value Pack SGODKP = Mini Golf Resort SGOETV = Mini Golf Resort SGPEYG = Maximum Racing: GP Classic Racing SGPPNG = GP Classic Racing SGPTI1 = Sing It Party SGQDSV = Germany's Next Top Model 2011 SGREGT = Grease SGRPGT = Grease SGSESZ = Family Gameshow SGSP7J = Family GameShow SGTEFS = My Personal Golf Trainer with IMG Academies and David Leadbetter SGTPUG = My Personal Golf Trainer with IMG Academies and David Leadbetter SGUE4Q = Disney Guilty Party SGVEAF = Go Vacation SGVJAF = コーハケーション SGVPAF = Go Vacation SGWD7K = Bibi Blocksberg SGXE41 = Battle of Giants: Dinosaurs Strike SGXP41 = Combat of Giants: Dinosaurs Strike SGYESZ = Gummy Bears Mini Golf SGYPNJ = Gummy Bears Mini Golf SH2JMS = Hula Wii 楽しくフラを踴ろう!! SH3E54 = NHL 2K11 SH3P54 = NHL 2K11 SH4EFP = Heavy Fire: Afghanistan SH4PNK = Heavy Fire: Afghanistan SH5E69 = Harry Potter and the Deathly Hallows, Part 2 SH5P69 = Harry Potter and the Deathly Hallows - Part 2 SH6E52 = Cabela's Big Game Hunter 2012 SH6P52 = Cabela's Big Game Hunter 2012 SH7ESZ = Honda ATV Fever SH7PNJ = ATV Fever SH8E52 = Cabela's Adventure Camp SH8P52 = Cabela's Adventure Camp SH9ESZ = Heathcliff: The Fast and the Furriest SHBE69 = Hasbro: Family Game Night 3 SHBP69 = Hasbro: Family Game Night 3 SHDE52 = How to Train Your Dragon SHDP52 = How to Train Your Dragon SHEDRM = Der Bauernhof SHFE20 = Basketball Hall of Fame: Ultimate Hoops Challenge SHGDRM = Holiday Games SHHE69 = Harry Potter and the Deathly Hallows, Part 1 SHHP69 = Harry Potter and the Deathly Hallows - Part 1 SHIJ2N = シェイフホクシンク2 Wiiてエンショイタイエット! SHKE20 = Hello Kitty Seasons SHKPNQ = Hello Kitty Seasons SHLPA4 = Silent Hill: Shattered Memories SHMPLR = Horrid Henry: Missions of Mischief SHNE41 = Shaun White Skateboarding SHNP41 = Shaun White Skateboarding SHOXKR = Hugo: Magic in the Troll Woods SHOYKR = Hugo: Magic in the Troll Woods SHPE5G = Our House Party SHSE20 = Hyper Fighters SHSPXT = Hyper Fighters SHTE20 = Mathews Bow Hunting SHUE52 = Cabela's Dangerous Hunts 2011: Special Edition SHVE78 = Hot Wheels: Track Attack SHVP78 = Hot Wheels: Track Attack SHWE41 = Hollywood Squares SHXEWR = Happy Feet Two SHXPWR = Happy Feet 2 SHYE69 = NHL SlapShot SHYP69 = EA Sports: NHL Slapshot SHZENR = Harley Davidson: Road Trip SI3E69 = FIFA Soccer 12 SI3P69 = FIFA 12 SI3X69 = FIFA 12 SIABOH = SingItStar Placebo SIAE52 = Ice Age: Continental Drift - Arctic Games SIAP52 = Ice Age 4: Continental Drift - Artic Games SIBBHJ = SingItStar Country SIDE54 = Sid Meier's Pirates! SIDP54 = Sid Meier's Pirates! SIESP1 = Sing It: Canciones en Español SIFESZ = The Island of Dr. Frankenstein SIFPNJ = The Island of Dr. Frankenstein SIFPOH = SingItStar Fussballhits SIHE4Z = Sing 4: The Hits Edition SIIE8P = マリオ&ソニック AT ロントンオリンヒック SIIJ01 = マリオ&ソニック AT ロントンオリンヒック SIIP8P = マリオ&ソニック AT ロントンオリンヒック SIJE52 = iCarly 2: iJoin the Click! SIJP52 = iCarly 2: iJoin the Click! SILE78 = Worms: Battle Islands SILP4Q = Latino Sing It SILP78 = Worms Battle Islands SIME69 = MySims Collection SINPNG = We Sing: Robbie Williams SIPE7T = I SPY Game Pack SIS1OH = SingItStar Volume 1 SIS2OH = SingItStar ABBA SIS3OH = SingItStar Summer Party SIS4OH = SingItStar Amped SIS5OH = SingItStar Pop Hits SIS7OH = SingItStar Take That SIS80Q = SingItStar Ultimate 80's SIS80S = StarSing : '80s Volume 1 v1.2 SIS90H = SingItStar 90´s SIS9OH = SingItStar 90's SISACD = StarSing AC/DC SISAOH = SingItStar Après Ski Party SISBOH = SingItStar R'n'B SISCOH = SingItStar Chartbreaker SISCS1 = SingItStar Chartsurfer Vol. 1 SISDAE = SingItStar Die Ärzte SISDEM = SingItStar Depeche Mode SISDOH = SingItStar The Dome SISENR = Princess Isabella: A Witch's Curse SISHOH = SingItStar Hottest Hits SISJ0Q = Wiiて骨盤Fitness SISLIP = StarSing : Linkin Park v1.2 SISLOH = SingItStar Legends SISMEL = StarSing : Happy Birthday Mélanie v1.1 SISMJ1 = StarSing : Michael Jackson v2.1 SISMOH = SingItStar Mallorca Party SISP10 = SingItStar Studio100 SISP12 = StarSing : Pop Hits 1 & 2 v2.0 SISP34 = StarSing : Pop Hits 3 & 4 v2.0 SISPBC = SingItStar Britney vs Christina SISPOH = SingItStar Party SISPOP = StarSing : Pop v1.1 SISPUH = Princess Isabella: A Witch's Curse SISQ3Q = SingItStar Queen SISR3Q = SingItStar Rocks! SISREU = StarSing : Rocks! v1.1 SISRP4 = SingItStar Rocks! SISSOH = SingItStar Schlager SISTDK = SingItStar - Turkish Party SITPNG = We Sing: Deutsche Hits SIUUNG = We Sing Down Under SIXE01 = New Super Mario Bros Wii 16 Revelations SIXE41 = Drawsome! Tablet SJ2EWR = Scooby-Doo! and the Spooky Swamp SJ2PWR = Scooby-Doo! and the Spooky Swamp SJ3JDA = 人生ケーム ハッヒーファミリー SJ3PNL = Jakers! Kart Racing SJ5JDA = 人生ケーム ハッヒーファミリー こ当地ネタ 増量仕上け SJ6E41 = Just Dance Disney Party SJ6P41 = Just Dance Disney Party SJ7E41 = Just Dance Kids 2014 SJ7P41 = Just Dance Kids 2014 SJ9E41 = Just Dance Summer Party SJ9P41 = Just Dance 2: Extra Songs SJAE5G = JAWS: Ultimate Predator SJBE52 = GoldenEye 007 SJBJ01 = コールテンアイ 007 SJBP52 = GoldenEye 007 SJCEZW = Jerry Rice & Nitus' Dog Football SJDE41 = Just Dance 3 SJDJ01 = Just Dance Wii 2 SJDK41 = Just Dance 3 SJDP41 = Just Dance 3 SJDX41 = Just Dance 3 Special Edition SJDY41 = Just Dance 3: Best Buy Exclusive Edition SJDZ41 = Just Dance 3: Target Exclusive Edition SJEEPK = JumpStart Escape from Adventure Island SJFE4Z = Kid Fit Island Resort SJFPGR = Junior Fitness Trainer SJFXGR = Junior Fitness Trainer SJGEPK = JumpStart Get Moving Family Fitness SJHE41 = Just Dance Greatest Hits SJIEG9 = Jillian Michaels Fitness Ultimatum 2011 SJJEA4 = Jimmie Johnson's Anything With An Engine SJKEPK = JumpStart Crazy Karts SJLEFS = Junior League Sports SJLPXT = Junior League Sports SJME5G = Jillian Michaels Fitness Ultimatum 2010 SJMPGT = Jillian Michaels Fitness Ultimatum 2010 SJOE41 = Just Dance 2014 SJOP41 = Just Dance 2014 SJPE78 = Jeopardy! SJQEPZ = Jewel Quest Trilogy SJQPGR = Jewel Quest Trilogy SJREA4 = Def Jam Rapstar SJRXA4 = Def Jam Rapstar SJSEPK = JumpStart Pet Rescue SJTP41 = Just Dance: Best Of SJUE20 = Dino Strike SJUPXT = Dino Strike SJVE20 = Shawn Johnson Gymnastics SJWJA4 = ウイニンクイレフン フレーメーカー 2010 蒼き侍の挑戦 SJXD41 = Just Dance 4 SJXE41 = Just Dance 4 SJXP41 = Just Dance 4 SJZE41 = Just Dance Kids 2 SJZP41 = Just Dance Kids SK3EEB = Trauma Team SK4E52 = Shrek Forever After SK4P52 = Shrek Forever After SK5PY1 = Kylie Sing & Dance SK6KJD = K-POP Dance Festival SK7PVZ = Disney Violetta: Rhythm & Music SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8P52 = Skylanders: Trap Team SK8V52 = Skylanders: Trap Team SKAEA4 = Karaoke Revolution Glee SKAPA4 = Karaoke Revolution Glee SKBEG9 = Kidz Bop Dance Party SKCE20 = Bigfoot: King of Crush SKDJ18 = カラオケJOYSOUND Wii テュエット曲編 SKEJ18 = カラオケJOYSOUND Wii 演歌・歌謡曲编 SKGEA4 = Karaoke Revolution Glee Volume 2 SKGPA4 = Karaoke Revolution Glee Volume 2 SKHJAF = 仮面ライター超クライマックスヒーロース SKJE78 = You Don't Know Jack SKKPHY = Captain Morgane and the Golden Turtle SKKXHY = Captain Morgane and the Golden Turtle SKLDSV = K11 - Kommissare im Einsatz SKMJAF = 仮面ライター クライマックスヒーロースW SKOEA4 = Karaoke Revolution Glee Volume 3 SKOPA4 = Karaoke Revolution Glee Volume 3 SKREG9 = Kamen Rider Dragon Knight SKSE54 = NBA 2K13 SKSP54 = NBA 2K13 SKTE78 = All Star Karate SKTP78 = All Star Karate SKUE78 = Kung Fu Panda 2 SKUP78 = Kung Fu Panda 2 SKVE20 = Kevin Van Dam's Big Bass Challenge SKWPNK = Cocoto Kart Racer 2 SKXE20 = Pirate Blast SKXPFH = Pirate Blast SKYE52 = Skylanders: Giants SKYP52 = Skylanders: Giants SKYX52 = Skylanders: Giants SKYZ52 = Skylanders: Giants SKZE52 = DreamWorks Super Star Kartz SKZP52 = DreamWorks Super Star Kartz SL2J01 = 零~真紅の蝶~ SL2P01 = 零~真紅の蝶~ SL3ENR = トラコンスレアトリロシー SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = The Last Airbender SLAP78 = The Last Airbender SLAZ78 = The Last Airbender: ToysRUs Special Edition SLCEGN = Get Up And Dance SLCPGN = Get Up And Dance SLDEYG = Let's Dance SLDPLG = Let's Dance with Mel B SLEE78 = Deepak Chopra's Leela SLEP78 = Deepak Chopra's Leela SLFE01 = New Super Mario Bros. 3 The Final Levels SLFP01 = New Super Mario Bros. 3: The Final Levels SLFPKM = Let's Sing SLFXKM = Let's Sing 5 - Spanish version SLHEWR = LEGO Harry Potter: Years 5-7 SLHPWR = LEGO Harry Potter: Years 5-7 SLIE52 = Little League World Series Baseball: Double Play SLLEWW = Lucha Libre AAA: Héroes del Ring SLPP5D = The Spirit of the Wolf SLREWR = LEGO The Lord of the Rings SLRPWR = LEGO The Lord of the Rings SLSEXJ = The Last Story SLSJ01 = ラストストーリー SLSP01 = The Last Story SLTEJJ = NewU Fitness First Mind Body: Yoga & Pilates Workout SLTPLG = NewU Fitness First Mind Body: Yoga & Pilates Workout SLVP41 = We Dare SLWE41 = Where's Waldo? The Fantastic Journey SLYESZ = Beastly SLYPNJ = Beastly SM2E52 = 10 Minute Solution SM2P52 = 10 Minute Solution SM3E01 = Super Mario Bros. 3+ SM4E20 = Monster Trucks Mayhem SM4PXT = Monster Trucks: Ultra Mega Xtreme!!! SM5EAF = Power Rangers Samurai SM5PAF = Power Rangers Samurai SM6PNK = My Body Coach 2: Fitness & Dance SM7E69 = Madden NFL 12 SM8D52 = コール オフ テューティ モタン・ウォーフェア3 SM8E52 = コール オフ テューティ モタン・ウォーフェア3 SM8F52 = コール オフ テューティ モタン・ウォーフェア3 SM8I52 = コール オフ テューティ モタン・ウォーフェア3 SM8P52 = コール オフ テューティ モタン・ウォーフェア3 SM8S52 = コール オフ テューティ モタン・ウォーフェア3 SM8X52 = コール オフ テューティ モタン・ウォーフェア3 SM9E54 = Major League Baseball 2K12 SMAENR = Marines: Modern Urban Combat SMAPGN = Marines: Modern Urban Combat SMBE8P = Super Monkey Ball: Step & Roll SMBJ8P = スーハーモンキーホール アスレチック SMBP8P = Super Monkey Ball: Step & Roll SMCENR = We Wish You A Merry Christmas SMCPXT = We Wish You A Merry Christmas SMD3OH = SingItStar e La Magia Disney SMEE69 = Madden NFL 11 SMFE4Q = Phineas and Ferb: Across the 2nd Dimension SMFP4Q = Phineas and Ferb: Across the 2nd Dimension SMGE78 = Megamind: Mega Team Unite SMGP78 = Megamind: Mega Team Unite SMGX = SaveGame Manager GX SMHPNK = Marvel Super Heroes 3D: Grandmaster's Challenge SMIE41 = Who Wants To Be A Millionaire SMIG3Q = SingItStar Made in Germany SMJE52 = Monster Jam: Path of Destruction SMJP52 = Monster Jam: Path of Destruction SMKE4Z = Gem Smashers SMLE54 = Major League Baseball 2K10 SMME02 = Super Mario: Mushroom Adventure PLUS - Winter Moon SMMJ0Q = モムチャンタイエットWii フィキュアロヒクスby チョン・タヨン SMMP01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 4. SMMP02 = Super Mario: Mushroom Adventure PLUS: Winter Moon SMNC01 = New Super Mario Bros. Wii SMNE01 = New Super Mario Bros. Wii SMNE02 = New Super Mario Remake SMNE03 = Newer Super Mario Bros. Wii SMNE04 = Cannon Super Mario Bros. Wii SMNE05 = Another Super Mario Bros. Wii SMNE06 = Newer Summer Sun SMNE07 = Newer Holiday Special SMNE08 = Epic Super Bowser World SMNE09 = Old Super Mario Bros. Wii SMNE10 = Koopa Country SMNE11 = New Super Mario Bros. Wii 4 SMNE12 = Awesomer Super Luigi Mini SMNE13 = New Super Mario Bros. Wii 9 Summer Special SMNE14 = Super Mario World Wii SMNE15 = Newer Super Mario Bros. 7 SMNE16 = Newer Super Mario Sunshine SMNE17 = Flowery Super Mario Land Wii SMNE18 = Super Switchy Mario World Wii SMNE19 = New Super Mr. M Bros. Wii SMNE20 = New Super Mario Bros. H SMNE21 = Newer Super Mario Land Wii SMNE22 = Neo Mario Brothers Wii SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE24 = Super Mario Ghost Special SMNE25 = Happy Super Marionose Wii SMNE26 = New Super Mario Bros. DS Wii Version SMNE27 = Newer Super Mario All Star SMNE28 = New Super Mario World SMNE29 = Not So Super Toaster Bros.: The Newer Collab! SMNE2D = Super Mario 2D Land 7 SMNE30 = New Super Mario Bros. Koopa Kall SMNE31 = New Super Mario Bros. Wii - Other World SMNE32 = Super Mario Legends SMNE33 = New Super Mario Bros. Wii Rollercoaster Party SMNE34 = New Super Mario Bros. Wii: Yoshi Mode SMNE35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNE36 = New Super Mario Bros. Wii Hack Pack SMNE37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNE38 = New Super Mario Bros. Wii Underground Maze SMNE39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNE40 = Newer Super Mario Bros. Wii U SMNE41 = Devil Mario Winter Special SMNE42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNE99 = Children's Super Mario Bros. Wii SMNED2 = New Super Mario Bros. + Animal Edition SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNENW = Newer Mario Escapade SMNEPM = Super Mario: Mushroom Adventure PLUS SMNEPS = New Super Mario Bros. Plus SMNERE = Retro Mario Bros. SMNERV = RVLution Wii SMNESL = Newer Super Mario Land Wii SMNESM = New Super Ghost Mario Wii SMNESN = New Super Mario Bros. Wii H SMNESS = New Super Mario Bros. 7 SMNEXD = Deluxe Super Mario Bros. Wii SMNEXR = Super Mario Remix SMNEYE = 8Forrest's Super Mario Bros. Wii SMNEYL = Luigi's Super Yoshi Bros. SMNEYM = You Super Mario Bros. Me Summer Special SMNEYS = Yoshi Super Mario Bros. Wii SMNEYU = You Super Mario Bros. Me SMNEYW = Newer Super Mario World Yoshi Way SMNEYY = You Super Mario Bros. Me Autumn Adventure SMNEZ2 = New JeDa Mario Bros. Wii SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZG = GF Super Mario Bros. Wii SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZQ = Basic Super Mario Bros. Wii SMNEZR = Newer Super Wario World Wii SMNEZS = Another Newer Super Mario Bros. Wii SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZX = Donkey Kong Remastered SMNEZY = Super Mario Skyland SMNEZZ = New Super Mario Bros. 2 Wii Version SMNJ01 = NewスーハーマリオフラサースWii SMNJ02 = Awesomer Super Luigi Mini SMNJ03 = Newer Super Mario Bros. Wii SMNJ04 = Cannon Super Mario Bros. Wii SMNJ06 = Newer Summer Sun SMNJ07 = Newer Holiday Special SMNJ08 = Epic Super Bowser World SMNJ10 = Koopa Country SMNJ11 = New Super Mario Bros. Wii 4 SMNJ13 = New Super Mario Bros. Wii 9 Summer Special SMNJ14 = Super Mario World Wii SMNJ15 = Newer Super Mario Bros. 7 SMNJ16 = Newer Super Mario Sunshine SMNJ17 = Flowery Super Mario Land Wii SMNJ18 = Super Switchy Mario World Wii SMNJ19 = New Super Mr. M Bros. Wii SMNJ20 = New Super Mario Bros. H SMNJ21 = Newer Super Mario Land Wii SMNJ22 = Neo Mario Brothers Wii SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ24 = Super Mario Ghost Special SMNJ25 = Happy Super Marionose Wii SMNJ26 = New Super Mario Bros. DS Wii Version SMNJ27 = Newer Super Mario All Star SMNJ28 = New Super Mario World SMNJ29 = Not So Super Toaster Bros.: The Newer Collab! SMNJ2D = Super Mario 2D Land Wii SMNJ30 = New Super Mario Bros. Koopa Kall SMNJ31 = New Super Mario Bros. Wii - Other World SMNJ32 = Super Mario Legends SMNJ33 = New Super Mario Bros. Wii Rollercoaster Party SMNJ34 = New Super Mario Bros. Wii: Yoshi Mode SMNJ35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNJ36 = New Super Mario Bros. Wii Hack Pack SMNJ37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNJ38 = New Super Mario Bros. Wii Underground Maze SMNJ39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNJ40 = Newer Super Mario Bros. Wii U SMNJ41 = Devil Mario Winter Special SMNJ42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNJ99 = Children's Super Mario Bros. Wii SMNJD2 = New Super Mario Bros. + Animal Edition SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJNW = Newer Mario Escapade SMNJPM = Super Mario: Mushroom Adventure PLUS SMNJPS = New Super Mario Bros. Plus SMNJRE = Retro Mario Bros. SMNJRV = RVLution Wii SMNJSL = Newer Super Mario Land Wii SMNJSM = New Super Ghost Mario Wii SMNJXD = Deluxe Super Mario Bros. Wii SMNJXR = Super Mario Remix SMNJYE = 8Forrest's Super Mario Bros. Wii SMNJYL = Luigi's Super Yoshi Bros. SMNJYM = You Super Mario Bros. Me Summer Special SMNJYS = Yoshi Super Mario Bros. Wii SMNJYY = You Super Mario Bros. Me Autumn Adventure SMNJZ2 = New JeDa Mario Bros. Wii SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZG = GF Super Mario Bros. Wii SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZQ = Basic Super Mario Bros. Wii SMNJZR = Newer Super Wario World Wii SMNJZS = Another Newer Super Mario Bros. Wii SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZX = Donkey Kong Remastered SMNJZY = Super Mario Skyland SMNJZZ = New Super Mario Bros. 2 Wii Version SMNK01 = New Super Mario Bros. Wii SMNP01 = New Super Mario Bros. Wii SMNP02 = Awesomer Super Luigi Mini SMNP03 = Newer Super Mario Bros. Wii SMNP04 = Cannon Super Mario Bros. Wii SMNP05 = Another Super Mario Bros. Wii SMNP06 = Newer Summer Sun SMNP07 = Newer Holiday Special SMNP08 = Epic Super Bowser World SMNP10 = Koopa Country SMNP11 = New Super Mario Bros. Wii 4 SMNP12 = Awesomer Super Luigi Mini SMNP13 = New Super Mario Bros. Wii 9 Summer Special SMNP14 = Super Mario World Wii SMNP15 = Newer Super Mario Bros. 7 SMNP16 = Newer Super Mario Sunshine SMNP17 = Flowery Super Mario Land Wii SMNP18 = Super Switchy Mario World Wii SMNP19 = New Super Mr. M Bros. Wii SMNP20 = New Super Mario Bros. H SMNP21 = Newer Super Mario Land Wii SMNP22 = Neo Mario Brothers Wii SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP24 = Super Mario Ghost Special SMNP25 = Happy Super Marionose Wii SMNP26 = New Super Mario Bros. DS Wii Version SMNP27 = Newer Super Mario All Star SMNP28 = New Super Mario World SMNP29 = Not So Super Toaster Bros.: The Newer Collab! SMNP2D = Super Mario 2D Land Wii SMNP30 = New Super Mario Bros. Koopa Kall SMNP31 = New Super Mario Bros. Wii - Other World SMNP32 = Super Mario Legends SMNP33 = New Super Mario Bros. Wii Rollercoaster Party SMNP34 = New Super Mario Bros. Wii: Yoshi Mode SMNP35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNP36 = New Super Mario Bros. Wii Hack Pack SMNP37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNP38 = New Super Mario Bros. Wii Underground Maze SMNP39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNP40 = Newer Super Mario Bros. Wii U SMNP41 = Devil Mario Winter Special SMNP42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNP77 = New Super Mario Bros. Wii Arcadia SMNP99 = Children's Super Mario Bros. Wii SMNPD2 = New Super Mario Bros. + Animal Edition SMNPDU = DU Super Mario Bros. : Anniversary Edition SMNPLL = Newer Super Luigi Wii SMNPLM = Newer Super Luigi Wii Dark Moon SMNPMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNPNW = Newer Mario Escapade SMNPO1 = New Super Mario Custom Edition SMNPPM = Super Mario: Mushroom Adventure PLUS SMNPPS = New Super Mario Bros. Plus SMNPRE = Retro Mario Bros. SMNPRV = RVLution Wii SMNPSL = Newer Super Mario Land Wii SMNPSM = New Super Ghost Mario Wii SMNPXD = Deluxe Super Mario Bros. Wii SMNPXR = Super Mario Remix SMNPYE = 8Forrest's Super Mario Bros. Wii SMNPYL = Luigi's Super Yoshi Bros. SMNPYM = You Super Mario Bros. Me Summer Special SMNPYS = Yoshi Super Mario Bros. Wii SMNPYY = You Super Mario Bros. Me Autumn Adventure SMNPZ2 = New JeDa Mario Bros. Wii SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZG = GF Super Mario Bros. Wii SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZQ = Basic Super Mario Bros. Wii SMNPZR = Newer Super Wario World Wii SMNPZS = Another Newer Super Mario Bros. Wii SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZX = Donkey Kong Remastered SMNPZY = Super Mario Skyland SMNPZZ = New Super Mario Bros. 2 Wii Version SMNW01 = NewスーハーマリオフラサースWii(繁体中国語) SMOE41 = Michael Jackson: The Experience SMOJ41 = マイケル・シャクソン サ・エクスヘリエンス SMOP41 = Michael Jackson The Experience SMOT3Q = SingItStar Motown SMOX41 = Michael Jackson: The Experience - Walmart Edition SMOY41 = Michael Jackson: The Experience - Special Edition SMPE69 = Monopoly Collection SMPP01 = New Super Mario Bros. Wii 2: The Other P SMPP69 = Monopoly Collection SMRE01 = New Super Mario Bros. Wii: Super Mario Bros. 1 Custom SMRE78 = WWE SmackDown vs. Raw 2011 SMRP78 = WWE SmackDown vs. Raw 2011 SMSE01 = New Super Mario Bros Wii 12 Sunshine Paradise SMSE78 = Marvel Super Hero Squad: The Infinity Gauntlet SMSP78 = Marvel Super Hero Squad: The Infinity Gauntlet SMTJ18 = 桃太郎電鉄2010 戦國・維新のヒーロー大集合!の巻 SMUJAF = 大怪獣ハトル ウルトラコロシアムDX SMVE01 = Super Mario Vacation SMVE54 = Major League Baseball 2K11 SMVJ01 = Super Mario Vacation SMVP01 = Super Mario Vacation SMWE01 = Newer Super Mario World U SMWE4Z = Man vs. Wild SMWJ01 = Newer Super Mario World U SMWP01 = Newer Super Mario World U SMYE20 = Minute to Win It SMZE78 = Marvel Super Hero Squad: Comic Combat SMZP78 = Marvel Super Hero Squad: Comic Combat SN2E69 = NERF N-Strike Double Blast Bundle SN3EYG = Maximum Racing: Rally Racer SN3PNG = Rally Racer SN4EDA = Naruto Shippuden: Dragon Blade Chronicles SN4JDA = NARUTO -ナルト- 疾風伝 龍刃記 SN4XGT = Naruto Shippuden: Dragon Blade Chronicles SN5EYG = Maximum Racing: Crash Car Racer SN5PNG = Crash Car Racer SN6EYG = Maximum Racing: Super Karts SN6PNG = Super Karts SN7EYG = Maximum Racing: Super Truck Racer SN7PNG = Super Truck Racer SN8EYG = Maximum Racing: Sprint Cars SN8PNG = Sprint Cars SN9E54 = Nickelodeon Fit SNAE52 = Cabela's North American Adventures 2011 SNBE41 = NCIS: The Game SNBP41 = NCIS: The Game SNCE8P = Sonic Colors SNCJ8P = ソニック カラース SNCP8P = Sonic Colours SNDE20 = Deal or No Deal: Special Edition SNEENR = North American Hunting Extravaganza 2 SNEPXT = North American Hunting 2: Extravaganza SNFE69 = EA Sports Active NFL Training Camp SNGEJJ = Get Fit with Mel B SNGPLG = Get Fit with Mel B SNHE69 = Need for Speed: Hot Pursuit SNHJ13 = ニート・フォー・スヒート ホット・ハースート SNHP69 = Need for Speed: Hot Pursuit SNIE54 = Nicktoons MLB SNJE69 = NBA Jam SNJP69 = NBA Jam SNKX54 = Nickelodeon Fit SNLE01 = New Super Mario Bros. Wii 0-2 Next Generation Levels SNLE54 = Nickelodeon Dance SNLP54 = Nickelodeon Dance SNLX54 = Nickelodeon Dance SNMEAF = Namco Museum Megamix SNOPY1 = Now! That's What I Call Music: Dance & Sing SNPE52 = NASCAR The Game: Inside Line SNQE7U = National Geographic Challenge! SNQPLG = National Geographic Challenge! SNRE52 = NASCAR Unleashed SNSE52 = NASCAR 2011: The Game SNTEXN = Netflix Instant Streaming Disc SNUPJW = Happy Neuron Academy SNVE69 = Need for Speed: The Run SNVJ13 = ニート・フォー・スヒート サ・ラン SNVP69 = Need for Speed: The Run SNXJDA = NARUTO 疾風伝 激闘忍者大戦! Special SNYEVZ = Monster High: 13 Wishes SNYPVZ = Monster High: 13 Wishes SNZEVZ = Barbie: Dreamhouse Party SNZPVZ = Barbie: Dreamhouse Party SO3EE9 = Rune Factory: Tides of Destiny SO3J99 = ルーンファクトリー オーシャンス SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg 2 SOCE4Z = Deadliest Catch: Sea of Chaos SOIEEB = 101-in-1 Sports Party Megamix SOIPHZ = 101-in-1 Sports Party Megamix SOJE41 = Rayman Origins SOJP41 = Rayman Origins SOKEA4 = Karaoke Joysound SOKJ18 = カラオケJOYSOUND Wii DX SOME01 = Rhythm Heaven Fever SOMJ01 = みんなのリスム天国 SOMK01 = Rhythm Heaven Fever SOMP01 = Beat the Beat: Rhythm Paradise SONDMR = My First Songs SONFMR = My First Songs SONPMR = My First Songs SORE4Z = The Oregon Trail SOSEG9 = Turbo: Super Stunt Squad SOSPAF = Turbo: Super Stunt Squad SOTE52 = Wipeout: The Game SOUE01 = セルタの伝説 スカイウォートソート SOUJ01 = セルタの伝説 スカイウォートソート SOUK01 = The Legend of Zelda: Skyward Sword SOUP01 = The Legend of Zelda: Skyward Sword SP2E01 = Wii Sports + Wii Sports Resort SP2P01 = Wii Sports + Wii Sports Resort SP3E41 = The $1,000,000 Pyramid SP4PJW = Pétanque Master SP4V = Castlevania: Rondo of Blood SP5E70 = The Kore Gang: Outvasion From Inner Earth SP5PVV = The Kore Gang: Outvasion From Inner Earth SP6DSV = Popstars SP7EAF = Pac-Man Party SP7JAF = ハックマンハーティ SP7PAF = Pac-Man Party SP8E78 = The Penguins of Madagascar: Dr. Blowhole Returns Again! SP8P78 = The Penguins of Madagascar: Dr. Blowhole Returns Again! SP9P4Q = SingIt Star POP 2009 SP9PJW = Pucca's Race for Kisses SPAE5G = Pirates Plund-Arrr SPBPGT = Spellbound Party SPCPZS = Pocoyo Racing SPDE52 = Spider-Man: Shattered Dimensions SPDP52 = Spider-Man: Shattered Dimensions SPEE20 = Speed SPEPXT = Speed SPGPPN = Peppa Pig: Fun And Games SPHPJW = Spaghetti Western Shooter SPIE18 = Oops! Prank Party SPIJ18 = ハーティーケームホックス100 SPIP18 = Games Island SPKXPV = Springdale: Riding Adventures SPMDRM = Mahjongg Party SPMPWP = Mahjong Party Pack SPOPFR = Winter Sports 2011: Go for Gold SPPEFS = Power Punch SPQE7T = I SPY Spooky Mansion SPRE01 = New Super Mario Bros. Wii 14 Project Mario SPRE41 = The Price Is Right: 2010 Edition SPTJEB = HOSPITAL. 6人の医師 SPUE20 = Let's Paint SPVEA4 = Pro Evolution Soccer 2011 SPVPA4 = Pro Evolution Soccer 2011 SPVXA4 = Pro Evolution Soccer 2011 SPVYA4 = Pro Evolution Soccer 2011 SPWHZH = The Studio 100: Play Island SPXP41 = Prince of Persia: The Forgotten Sands SPYDSV = Yetisports: Penguin Party Island SPZE5G = Pizza Delivery Boy SQ2EPZ = Country Dance SQ2PXT = Country Dance SQAE52 = Cabela's African Adventures SQBPXT = The Cube SQDE8P = Gunblade NY & LA Machineguns : Arcade Hits Pack SQDP8P = Gunblade NY & LA Machineguns: Arcade Hits Pack SQEENG = We Sing Pop! SQEPNG = We Sing Pop! SQFE5G = Phineas and Ferb: Quest for Cool Stuff SQFPGT = Phineas and Ferb: Quest for Cool Stuff SQIE4Q = Disney Infinity SQIP4Q = Disney Infinity SQIY4Q = Disney Infinity SQKE5G = Cooking Mama 2-Pack SQKK01 = Cooking Mama 2 Pack SQLE4Z = Cartoon Network Punch Time Explosion XL SQLPGN = Cartoon Network: Punch Time Explosion XL SQME52 = Spider-Man: Edge of Time SQMP52 = Spider-Man: Edge of Time SQPPX4 = Speed 2 SQQEVZ = Disney Planes: Fire & Rescue SQQPVZ = Disney Planes: Fire & Rescue SQRPNG = We Sing Rock! SQTPML = The Ultimate Battle Of The Sexes: Quizz & Play! SQUDX3 = Quiz Party SQUFX3 = Quiz Party SQVE69 = FIFA 15 SQVP69 = FIFA 15 - Legacy Edition SQVX69 = FIFA 15 - Legacy Edition SR4E41 = Raving Rabbids: Travel in Time SR4J41 = ラヒッツ・ハーティー タイムトラヘル SR4P41 = Raving Rabbids: Travel in Time SR5E41 = Raving Rabbids Party Collection SR5P41 = Raving Rabbids Party Collection SR6EHG = Reader Rabbit 1st Grade SR7EHG = Reader Rabbit 2nd Grade SR8EHG = Reader Rabbit Kindergarten SR9EHG = Reader Rabbit Preschool SRAJMS = ラシルキノアWii SRBP4Q = SingItStar: R&B SRBPHS = Rugby League 3 SRCE69 = Rock Band: Country Track Pack 2 SREXNL = Reader Rabbit Kindergarten SRFE52 = Rapala Pro Bass Fishing SRFP52 = Rapala Pro Bass Fishing SRGE69 = Rango SRGP01 = New Super Mario Bros Wii 2 Reggie SRGP69 = Rango SRHP01 = New Super Mario Bros. Wii 7 Retro Heaven SRIE78 = Rio SRIP78 = Rio SRJJAF = スーハー戦隊ハトル レンシャークロス SRKEFP = Remington Super Slam Hunting: Alaska SRKPNK = Remington Dangerous Animals SRLXNL = Reader Rabbit Preschool SRME18 = Rooms: The Main Building SRMJ18 = Rooms 不思議な動く部屋 SRNE70 = Project Runway SRNP01 = New Super Mario Bros. Wii Revolution SRNP70 = Project Runway SRPE4Q = Disney Tangled SRPP4Q = Disney Tangled SRQE41 = Racquet Sports SRQP41 = Racket Sports Party SRRENR = Rec Room Games SRRPGN = Great Party Games SRSE20 = Super Sonic Racer SRSPXT = Supersonic Racer SRTXNL = Reader Rabbit 1st Grade SRUE4Z = Rudolph the Red-Nosed Reindeer SRVE41 = The Price Is Right Decades SRVP01 = New Super Mario Bros Revolution SRWXNL = Reader Rabbit 2nd Grade SRXE52 = Generator Rex: Agent of Providence SRXP52 = Generator Rex: Agent of Providence SRYEAF = ExerBeat: Gym Class Workout SRYJAF = フィットネス ハーティ SRYPAF = ExerBeat: Gym Class Workout SS2PFR = Winter Sports 2012: Feel the Spirit SS3EWR = Sesame Street: Elmo's A-to-Zoo Adventure SS3PWR = Sesame Street: Elmo's A-to-Zoo Adventure SS3UWR = Sesame Street: Elmo's A-to-Zoo Adventure SS4EWR = Sesame Street: Cookie's Counting Carnival SS4UWR = Sesame Street: Cookie's Counting Carnival SS5ENR = Satisfashion SS6UHS = AFL Live: Game of the Year Edition SS7EFP = Remington Super Slam Hunting: Africa SS7URN = Remington Super Slam Hunting: Africa SS8E78 = SpongeBob SquigglePants SS8P78 = SpongeBob SquigglePants SS9JMS = マイルストーン シューティンクコレクション2 SSBE78 = Puss in Boots SSBP78 = Puss in Boots SSCDWR = Scene It? Bright Lights! Big Screen! SSCEPM = Scene It? Bright Lights! Big Screen! SSCFPM = Scene It? Bright Lights! Big Screen! SSCFWR = Scene It? Bright Lights! Big Screen! SSCIWR = Scene It? Bright Lights! Big Screen! SSCPWR = Scene It? Bright Lights! Big Screen! SSCSWR = Scene It? Bright Lights! Big Screen! SSDDRV = Schlag den Raab SSEDNG = We Sing: Encore SSEPNG = We Sing: Encore SSEVNG = We Sing: Encore SSFPKM = Sing 4: The Hits Edition SSGPNG = We Sing SSHPHH = Sherlock Holmes: The Silver Earring SSIENR = Winter Blast: 9 Snow & Ice Games SSJEJJ = Summer Stars 2012 SSJPKM = Summer Stars 2012 SSLENR = I Love Horses: Rider's Paradise SSLPKM = The Saddle Club SSLPOH = SingItStar Legends SSMEYG = American Mensa Academy SSMPGD = Mensa Academy SSNEYG = Sniper Elite SSNPHY = Sniper Elite SSPE52 = Skylanders: Spyro's Adventure SSPJ52 = スカイランタース スハイロの大冒険 SSPP52 = Skylanders: Spyro's Adventure SSPX52 = Skylanders: Spyro's Adventure SSQE01 = マリオハーティ 9 SSQJ01 = マリオハーティ9 SSQK01 = Mario Party 9 SSQP01 = マリオハーティ 9 SSQW01 = マリオハーティ9 SSRE20 = Wild West Shootout SSRPXT = Wild West Shootout SSSE01 = New Super Mario Bros. Wii: Summer Sun SSSEWR = Sesame Street: Elmo's Musical Monsterpiece SSTEG9 = Kid Adventures: Sky Captain SSTPY5 = Stunt Flyer: Hero of the Skies SSUES5 = Sushi Go Round SSVE52 = Wipeout 3 SSWDRM = Water Sports SSWEPZ = Water Sports SSWPGR = Water Sports SSZE5G = Swords ST3J01 = キキトリック ST4PNX = Thomas & Friends: Hero of the Rails ST4XNX = Thomas & Friends: Hero of the Rails ST5E52 = Transformers: Cybertron Adventures ST5P52 = Transformers: Cybertron Adventures ST6E78 = The Biggest Loser Challenge ST6P78 = The Biggest Loser Challenge ST7E01 = Fortune Street ST7JGD = いたたきストリート Wii ST7P01 = Boom Street ST8P75 = SingItStar 80's ST9E52 = Top Shot Arcade STAE78 = Pictionary STAP75 = SingItStar Apres Ski Hits STAP78 = Pictionary STAU78 = Pictionary STCP75 = SingItStar Singstar STDEFP = Reload STDP75 = SingItStar Deutsch Rock-Pop STEETR = Tetris Party Deluxe STEJ18 = テトリスハーティー フレミアム STEPTR = Tetris Party Deluxe STFE52 = Transformers: Prime STFP52 = Transformers Prime: The Game STGJAF = テイルス オフ クレイセス STHE8P = THOR: God of Thunder STHP75 = SingItStar Hottest Hits STHP8P = THOR: God of Thunder STIFKM = Titeuf le Film STJJAF = 太鼓の達人Wii 決定版 STKE08 = Tatsunoko vs. Capcom: Ultimate All-Stars STKJ08 = タツノコ VS.カフコン アルティメットオール・スタース STKP08 = Tatsunoko vs. Capcom: Ultimate All-Stars STLE78 = Truth or Lies STLP78 = Truth or Lies STMEGN = Titanic Mystery STMPKP = Titanic Mystery STNE41 = The Adventures of Tintin: The Game STNP41 = The Adventures of Tintin: The Secret of the Unicorn STOE4Q = Cars Toon: Mater's Tall Tales STOP4Q = Cars Toon: Mater's Tall Tales STOX4Q = Cars Toon: Mater's Tall Tales STPP75 = SingItStar Pop Hits STPPML = Pet Vet: Marine Patrol STQJHF = イナスマイレフン ストライカース STQP01 = Inazuma Eleven Strikers STQP75 = SingItStar Queen STQX01 = Inazuma Eleven Strikers STRE4Q = Tron: Evolution - Battle Grids STRP4Q = Tron: Evolution - Battle Grids STRP75 = SingItStar Rock Ballads STRX4Q = Tron: Evolution - Battle Grids Championship Edition STSE4Q = Toy Story 3 STSP4Q = Toy Story 3 STSP75 = SingItStar Schlager STSX4Q = Toy Story 3 STSY4Q = Toy Story 3 STSZ4Q = Toy Story 3: Toy Box Special Edition STTDRM = Hidden Mysteries: Titanic STTE52 = Hidden Mysteries: Titanic STTPGR = Hidden Mysteries Titanic: Secrets of the Fateful Voyage STTXGR = Hidden Mysteries: Titanic STUPRN = Turbo Trainz STVDSV = TV Total Events STWE69 = Tiger Woods PGA Tour 11 STWP69 = Tiger Woods PGA Tour 11 STXE69 = Tiger Woods PGA Tour 12: The Masters STXP69 = Tiger Woods PGA Tour 12: The Masters STYE52 = Tony Hawk: Shred STYP52 = Tony Hawk: Shred STZE52 = Transformers: Dark of the Moon - Stealth Force Edition STZP52 = Transformers: Dark of the Moon - Stealth Force Edition SU2E54 = Nickelodeon Dance 2 SU2P54 = Nickelodeon Dance 2 SU2X54 = Nickelodeon Dance 2 SU3DMR = U-Sing 2 SU3FMR = U-Sing 2 SU3HMR = U-Sing 2: Popstars Edition SU3PMR = U-Sing 2 SU3SMR = U-Sing 2 SU3UMR = U-Sing 2: Australian Edition SU4E78 = UFC Personal Trainer: The Ultimate Fitness System SU4P78 = UFC Personal Trainer: The Ultimate Fitness System SU5EVZ = Monster High: Skultimate Roller Maze SU5PVZ = Monster High: Skultimate Roller Maze SU6E5G = Zumba Fitness Core SU6P5G = Zumba Fitness Core SU6XGT = Zumba Fitness Core SU7EG9 = Rise of the Guardians SU7PAF = Rise of the Guardians SU8PNG = We Sing: Deutsche Hits 2 SU9E4Q = Disney Planes SU9P4Q = Disney Planes SU9X4Q = Disney Planes SUKE01 = 星のカーヒィWii SUKJ01 = 星のカーヒィWii SUKK01 = Kirby's Return to Dream Land SUKP01 = Kirby's Adventure Wii SUMJC8 = ウイニンクホストワールト 2010 SUNEYG = Deer Drive Legends SUOE41 = The Hip Hop Dance Experience SUOP41 = The Hip Hop Dance Experience SUPE01 = Wii Party SUPJ01 = Wii ハーティー SUPK01 = Wii Party SUPP01 = Wii Party SUQENG = We Sing UK Hits SUQPNG = We Sing: UK Hits SURE01 = New Super Mario Bros. Wii 19 Resurrection U SUREA4 = Dance Dance Revolution II SURPA4 = Dance Dance Revolution: Hottest Party 5 SUSFMR = U-Sing Johnny Hallyday SUSPMR = U-Sing Girls Night SUTESZ = Once Upon A Time SUUE78 = uDraw Studio: Instant Artist SUUP78 = uDraw Studio: Instant Artist SUVE52 = Cabela's Dangerous Hunts 2013 SUVP52 = Cabela's Dangerous Hunts 2013 SUWE78 = uDraw Studio SUWP78 = uDraw Studio SUXEA4 = Pro Evolution Soccer 2010 SUXJA4 = ウイニンクイレフン フレーメーカー 2010 SUXPA4 = Pro Evolution Soccer 2010 SUXXA4 = Pro Evolution Soccer 2010 SUXYA4 = Pro Evolution Soccer 2010 SUYDRV = Schlag den Raab - Das 3. Spiel SUZD7K = Benjamin Blümchen - Törööö im Zoo SV2E78 = Big Beach Sports 2 SV2P78 = Big Beach Sports 2 SV3EG9 = Madagascar 3: The Video Game SV3PAF = Madagascar 3: Europe's Most Wanted SV4E8P = Virtua Tennis 4 SV4P8P = Virtua Tennis 4 SV5PRV = The Voice of Germany Vol. 2 SV6SRV = The Voice SV7EVZ = Penguins of Madagascar SV7PVZ = Penguins of Madagascar SVBE52 = Battleship SVBP52 = Battleship SVCEPZ = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVHP69 = FIFA 14 - Legacy Edition SVHX69 = FIFA 14 - Legacy Edition SVME01 = Super Mario All-Stars SVMJ01 = スーハーマリオコレクション SVMK01 = Super Mario All-Stars SVMP01 = Super Mario All-Stars: 25th Anniversary Edition SVOEWW = El Chavo SVPESZ = Vegas Party SVPPNJ = Vegas Party SVSPZX = Battle vs Chess SVTEXS = Bit.Trip Complete SVTP99 = BIT.TRIP COMPLETE SVUPRV = The Voice of Germany SVVEG9 = The Croods: Prehistoric Party! SVVPAF = The Croods: Prehistoric Party! SVWEQH = Veggy World SVXE52 = Skylanders: Swap Force SVXF52 = Skylanders: Swap Force SVXI52 = Skylanders: Swap Force SVXP52 = Skylanders: Swap Force SVXY52 = Skylanders: Swap Force SVYEG9 = Ben 10: Omniverse 2 SVYPAF = Ben 10: Omniverse 2 SVZEVZ = How to Train Your Dragon 2 SVZPVZ = How to Train Your Dragon 2 SW2E52 = Wipeout 2 SW3EJJ = Winter Stars SW3PKM = Winter Stars SW4JA4 = ウイニンクイレフン フレーメーカー 2011 SW6E78 = WWE '12 SW6P78 = WWE '12 SW7EVN = Gunslingers SW7PNK = Western Heroes SW8ENG = We Sing 80s SW8PNG = We Sing 80s SW9EVN = Wicked Monsters Blast! SW9PYT = Wicked Monsters Blast! SWAE52 = DJ Hero SWAP52 = DJ Hero SWBE52 = DJ Hero 2 SWBP01 = New Super Mario Bros. Wii 0 Where It All Began SWBP52 = DJ Hero 2 SX2PNG = Jungle Kartz SX3EXJ = Pandora's Tower SX3J01 = ハントラの塔 君のもとへ帰るまて SX3P01 = Pandora's Tower SX4E01 = Xenoblade Chronicles SX4J01 = セノフレイト SX4P01 = Xenoblade Chronicles SX5E4Z = Santa Claus is Comin' to Town! SX6JAF = フリキュア オールスタース せんいんしゅうこう☆レッツタンス! SX7E52 = Teenage Mutant Ninja Turtles SX7P52 = Teenage Mutant Ninja Turtles SX8E52 = X-Men Destiny SX8P52 = X-Men Destiny SXAE52 = Guitar Hero: World Tour SXAP52 = Guitar Hero: World Tour SXBE52 = Guitar Hero: Metallica SXBP52 = Guitar Hero: Metallica SXCE52 = Guitar Hero: Smash Hits SXCP52 = Guitar Hero: Greatest Hits SXDE52 = Guitar Hero: Van Halen SXDP52 = Guitar Hero: Van Halen SXEE52 = Guitar Hero 5 SXEF52 = Guitar Hero III Custom : Megadeth SXEP52 = Guitar Hero 5 SXFE52 = Band Hero SXFF52 = Guitar Hero III Custom : My Chemical Romance SXFP52 = Band Hero SXIE52 = Guitar Hero: Warriors of Rock SXIP52 = Guitar Hero: Warriors of Rock SY8PKM = Let's Sing 2015 SZ2E5G = Zumba Fitness 2 SZ2P5G = Zumba Fitness 2 SZ2XGT = Zumba Fitness 2 SZ3E5G = Zumba Fitness World Party SZ3PGT = Zumba Fitness World Party SZ5E5G = Zumba Fitness SZ5PGT = Zumba Fitness SZAE69 = Rock Band 2 SZAP69 = Rock Band 2 SZBE69 = Rock Band 3 SZBP69 = Rock Band 3 SZEE01 = New Super Mario Bros Wii 13 Shadow Zero Escape TITLES = http://www.gametdb.com (type: Wii language: JA version: 20150208111141) UGPE01 = Game Boy Player UGPJ01 = ケームホーイフレイヤー UGPP01 = Game Boy Player ULFW = uLoader UUUE01 = New Super Mario Bros. Wii 19 Resurrection U VBGX = Visual Boy Advance GX VIPE01 = New Super Mario Bros Wii 18 Vip Mix W22E = Planet Fish W24E = 2 Fast 4 Gnomz W2AE = Big Bass Arcade W2CE = Brain Challenge W2CJ = Brain Challenge W2CP = Brain Challenge W2FP = Physiofun - Balance Training W2GD = Phoenix Wright Ace Attorney: Justice for All (Deutsche Version) W2GE = Phoenix Wright: Ace Attorney Justice for All W2GI = Phoenix Wright: Ace Attorney - Justice for All W2GJ = Gyakuten Saiban 2 W2GP = Phoenix Wright Ace Attorney: Justice for All W2IE = Fishie Fishie W2IP = Fishie Fishie W2JE = Just Jam W2KE = Let's Catch W2KJ = Let's Catch W2KP = Let's Catch W2LE = Bloons W2LP = Bloons W2ME = Blaster Master: Overdrive W2MP = Blaster Master: Overdrive W2OE = My Aquarium 2 W2OJ = Blue Oasis: Michinaru Shinkai W2OP = My Aquarium 2 W2PP = Physiofun: Pelvic Floor Training W2TE = Drill Sergeant Mindstrong W2TJ = Onitore Kyoukan ha Onigunsou W2TP = Brain Cadets W2YE = Fireplacing W2YP = My Fireplace W34J = @SIMPLEシリース Vol.4 THE 密室からの脱出 W3AE = Carmen Sandiego Adventures in Math: The Big Ben Burglary W3BE = Soccer Bashi W3BP = Soccer Bashi W3DJ = 3° C W3FE = 3D Pixel Racing W3FP = 3D Pixel Racing W3GD = Phoenix Wright Ace Attorney 3: Trials And Tribulations W3GE = Phoenix Wright Ace Attorney: Trials and Tribulations W3GI = Phoenix Wright: Ace Attorney - Trials and Tribulations W3GJ = Gyakuten Saiban 3 W3GP = Phoenix Wright Ace Attorney: Trials and Tribulations W3JE = Triple Jumping Sports W3KE = ThruSpace W3KJ = Surinuke Anatousu W3KP = ThruSpace: High Velocity 3D Puzzle W3LE = Carmen Sandiego Adventures in Math: The Lady Liberty Larceny W3ME = The Three Musketeers: One for all W3MP = The Three Musketeers: One for all W3PE = Triple Throwing Sports W3RE = Triple Running Sports W3SE = Triple Shot Sports W3TE = Pearl Harbor Trilogy - 1941: Red Sun Rising W3TP = Pearl Harbor Trilogy 1941: Red Sun Rising W42J = F・O・R・T・U・N・E フォーチュン~星のふりそそく丘~ W44E = Stop Stress: A Day of Fury W44P = Stop Stress: A Day of Fury W48E = ShadowPlay W4AE = Arcade Sports W4AP = Arcade Sports: Air Hockey, Bowling, Pool, Snooker W4KE = Deer Captor W4KJ = Shikagari W4OJ = Shikakui Atama wo Marukusuru Challenge W4TE = Spaceball Revolution W4TP = Spaceball Revolution W54E = 5 Spots Party W54P = 5 Spots Party W5AE = 5 Arcade Gems W5AP = 5 Arcade Gems W5IE = 5 in 1 Solitaire W6BE = Eco Shooter: Plant 530 W6BJ = 530 Eco Shooter W6BP = Eco-Shooter: Plant 530 W72P = Successfully Learning German Year 3 W73P = Successfully Learning German Year 4 W74P = Successfully Learning German Year 5 W7IP = Successfully Learning German Year 2 W82J = Jintori Action Taikokenchi Karakuri Shiro no Nazo W8BP = Babel Rising W8CE = Bit.Trip Core W8CJ = BIT.TRIP CORE: Rhythm Seijin no Gyakushuu W8CP = Bit.Trip Core W8DJ = Mebius Drive W8IJ = Hachi-One Diver Wii W8LE = Balloon Pop Festival W8PJ = Ouchi de Mugen Puchi Puchi Wii W8WE = Happy Holidays: Halloween W8WP = Happy Holidays: Halloween W8XE = Battle Poker W9BE = Big Town Shoot Out W9BP = Big Town Shoot W9IE = Evasive Space W9IJ = Kiken Kuuiki W9LE = Christmas Clix W9RE = Happy Holidays: Christmas W9RP = Happy Holidays: Christmas W9UE = Cruise Party W9UP = Cruise Party WA2E = Magnetica Twist WA2J = みんなてハスルーフ WA2P = Actionloop Twist WA4E = WarioWare: D.I.Y. Showcase WA4J = WarioWare: D.I.Y. Showcase WA4P = WarioWare: Do It Yourself – Showcase WA5E = Carmen Sandiego Adventures in Math: The Island of Diamonds WA7E = Toribash WA7P = Toribash Violence Perfected WA8E = Art Style: Rotozoa WA8J = Art Style: Penta Tentacles WA8P = Art Style: Penta Tentacles WAAE = Aya and the Cubes of Light WAAP = Aya and the Cubes of Light WABE = Art of Balance WABP = Art of Balance WACE = Arcade Essentials WACP = Arcade Essentials WAEE = Around The World WAEP = Around the world WAFE = Airport Mania: First Flight WAFP = Airport Mania: First Flight WAGE = Pinocchio's Puzzle WAHE = Trenches Generals WAHP = Trenches: Generals WAIE = 101-in-1 Explosive Megamix WAIP = 101-in-1 Explosive Megamix WAJE = MotoHeroz WAJP = MotoHeroz WAKE = Carmen Sandiego Adventures in Math: The Case of the Crumbling Cathedral WALE = Art Style: Light Trax WALJ = Art Style: Lightstream WALP = Art Style: light trax WAME = Carmen Sandiego Adventures in Math: The Great Gateway Grab WANE = Ant Nation WANP = Ant Nation WAOE = The Very Hungry Caterpillar's ABCs WAOJ = Harapeko Aomushi no ABC WAOP = The Very Hungry Caterpillar´s ABC WAQJ = 役満 Wii 井出洋介 の 健康 麻将 WARE01 = DU Super Wario Bros. WARJ = Tsuushin Taikyoku Igo Doujou 2700 Mon WASJ = Tsuushin Taikyoku: Hayazashi Syogi Sandan WATE = Astro Bugz Revenge WAUJ = Tsushin Taikyoku: World Chess WAYE = And Yet It Moves WAYP = And Yet It Moves WAZE = The Amazing Brain Train WB2E = Strong Bad Episode 4: Dangeresque 3 WB2P = Strong Bad Episode 4: Dangeresque 3 WB3E = Strong Bad Episode 5: 8-bit is Enough WB3P = Strong Bad Episode 5: 8-bit is Enough WB4E = Wild West Guns WB4J = Wild West Guns WB4P = Wild West Guns WB5E = Block Breaker Deluxe WB5J = Block Breaker Deluxe WB5P = Block Breaker Deluxe WB6E = TV Show King WB6J = TV Show King WB6P = TV Show King WB7E = Midnight Pool WB7J = Hamaru Billiards WB7P = Midnight Pool WB8E = Midnight Bowling WB8J = Hamaru Bowling WB8P = Midnight Bowling WBAJ = Bakutan WBBE = Snowboard Riot WBBJ = Board Warriors WBBP = Snowboard Riot WBDE = Brain Drain WBDP = Brain Drain WBEE = Pong Toss: Frat Party Games WBEP = Beer Pong: Frat Party Games WBFE = Bit.Trip Fate WBFP = Bit.Trip Fate WBGP = Bang Attack WBHE = Blood Beach WBHP = Blood Beach WBIE = Boingz WBJE = Harvest Moon: My Little Shop WBJJ = Bokujou Monogatari Series: Makiba no Omise WBKE = Arkanoid Plus! WBKJ = Arkanoid Plus! WBKP = Arkanoid Plus! WBLE = Bubble Bobble Plus! WBLJ = Bubble Bobble Wii WBLP = Bubble Bobble Plus! WBME = My Pokémon Ranch WBMJ = Minna no Pokémon Bokujou WBMP = My Pokémon Ranch WBNE = Bonsai Barber WBNJ = Bonsai Barber WBNP = Bonsai Barber WBOE = Gravitronix WBPE = PLÄTTCHEN twist 'n' paint WBPP = PLÄTTCHEN - twist 'n' paint WBQE = Star Soldier R WBQJ = Star Soldier R WBQP = Star Soldier R WBRP = Pirates: The Key of Dreams WBSE = Pop WBSJ = Pop WBSP = Pop WBTJ = ファンタシックタンハリン FANTASIC TAMBOURINE WBVE = SPOGS Racing WBVP = SPOGS Racing WBWE = Critter Round-Up WBWJ = Saku Saku Animal Panic WBWP = Critter Round-Up WBXE = Strong Bad Episode 1: Homestar Ruiner WBXP = Strong Bad Episode 1: Homestar Ruiner WBYE = Strong Bad Episode 2: Strong Badia - The Free WBYP = Strong Bad Episode 2: Strong Badia - The Free WBZE = Strong Bad Episode 3: Baddest of the Bands WBZP = Strong Bad Episode 3: Baddest of the Bands WC2E = Crystal Defenders R2 WC2J = Crystal Defenders R2 WC2P = Crystal Defenders R2 WC6E = Chronos Twins DX WC6P = Chronos Twins DX WC8J = Line Attack Heroes WCHE = Chess Challenge! WCHP = Chess Challenge WCIE = Crystal Defenders R1 WCIJ = Crystal Defenders R1 WCIP = Crystal Defenders R1 WCJE = Cocoto Platform Jumper WCJP = Cocoto: Platform Jumper WCKE = chick chick BOOM WCKJ = chick chick BOOM WCKP = chick chick BOOM WCLE = Doc Clock: The Toasted Sandwich of Time WCNJ = Tokyo City Nights WCOE = Cocoto Fishing Master WCOP = Cocoto Fishing Master WCPE = Copter Crisis WCPP = Copter Crisis WCRE = Carnival King WCSE = CueSports: Pool Revolution WCSJ = Cue Sports: Wi-Fi Taisen Billiards WCSP = CueSports: Snooker vs Billiards WCUE = 3-2-1, Rattle Battle! WCUJ = Atsui 12-Game: FuriFuri Party! WCUP = 3-2-1, Rattle Battle! WCVE = Cave Story WCVP = Cave Story WCZE = ColorZ WCZJ = ColorZ WCZP = ColorZ WD2J = Simple Wii Series Vol. 2: The Number Puzzle Neo WD9E = Castlevania The Adventure ReBirth WD9J = トラキュラ伝説 ReBirth WD9P = Castlevania: The Adventure ReBirth WDAJ = Darts Wii WDBE = Derby Dogs WDBJ = Dirby Dog WDDE = Diner Dash WDDJ = Diner Dash WDDP = Diner Dash WDEE = Magic Destiny Astrological Games WDEP = Magic Destiny Astrological Games WDFE = Defend your Castle WDFP = Defend your Castle WDHE = Art Style: ROTOHEX WDHJ = Art Style: Dialhex WDHP = Art Style: ROTOHEX WDIJ = Simple Wii Series Vol. 1: The Block Kuzushi Neo WDKE = Dart Rage WDME = Dr. Mario Online RX WDMJ = Dr.MARIO&細菌撲滅 WDMP = Dr. Mario & Germ Buster WDNJ = Discipline Teikoku no Tanjyou WDOE = Driift Mania WDOP = Driift Mania WDPE = Dr. Mario Online Rx (Friend Battle Demo) WDPJ = Dr. Mario Online Rx (Friend Battle Demo) WDPP = Dr. Mario & Germ Buster (Friend Battle Demo) WDRE = Mr Driller W WDRJ = Mr. Driller World WDRP = Mr. Driller W WDSE = Dragon Master Spell Caster WDSP = Dragon Master Spell Caster WDVE = Voodoo Dice WDVP = Voodoo Dice WDXE = Diatomic WE6E = My Dolphin WE6J = Sea Farm: Iruka to Watashi no Showtime WE9E = Alien Crush Returns WE9J = Alien Crush Returns WE9P = Alien Crush Returns WEDE = Eduardo the Samurai Toaster WEME = Aha! I Got It! Escape Game WEMJ = 1 Nuke! Dasshutsu Game * My Home Hen WEMP = Aha! I Got It! Escape Game WENE = TNT Racers WENP = TNT Racers WEQE = Equilibrio WEQJ = Katamuki Spirits WEQP = Equilibrio WERE = My Aquarium WERJ = Blue Oasis: The Healing Space of Fish WERP = My Aquarium WETE = PictureBook Games: Pop-Up Pursuit WETJ = Asoberu Ehon: Tobida Sugoroku WETP = PictureBook Games: A Pop-Up Adventure WEVE = Viral Survival WEVJ = Peakvox Escape Virus WEVP = Viral Survival WF2E = Final Fantasy Crystal Chronicles: My Life as a Darklord WF2J = Final Fantasy Crystal Chronicles: Hikari to Yami no Himegimi to Sekai Seifuku no Tou WF2P = Final Fantasy Crystal Chronicles: My Life as a Darklord WF3E = Family Games - Pen & Paper Edition WF4E = Final Fantasy IV: The After Years WF4J = Final Fantasy IV: The After Years - Tsuki no Kikan WF4P = Final Fantasy IV: The After Years WF5E = Family Card Games WF5J = Okiraku Daifugou Wii WF5P = Family Card Games WF6E = Frobot WFAE = Fast Draw Showdown WFAP = Fast Draw Showdown WFBE = Sandy Beach WFBJ = Beach e Oki o Tsukuccha Wow! WFBP = Sandy Beach WFCE = Final Fantasy Crystal Chronicles: My Life as a King WFCJ = Final Fantasy Crystal Chronicles: Chiisana Ousama to Yakusoku no Kuni WFCP = Final Fantasy Crystal Chronicles: My Life as a King WFDE = Save the Furries WFEE = Fenimore Fillmore "The Westerner" WFFE = Fun! Fun! Minigolf WFFF4I = Fatal Frame 4: Mask of the Lunar Eclipse WFFJ = Fun! Fun! Minigolf WFFP = Fun! Fun! Minigolf WFGE = Frogger Returns WFGJ = Frogger Returns WFGP = Frogger Returns WFHE = Flight Control WFHP = Flight Control WFIE = Reel Fishing Challenge WFIJ = Fish Eyes Challenge WFIP = Reel Fishing Challenge WFKE = Family Go-Kart Racing WFKJ = Okiraku Kart Wii WFLE = Fluidity WFLP = Hydroventure WFME = Family & Friends Party WFMP = Family & Friends Party WFNE = Fish Tank WFNP = Fish Tank WFPJ = ひらめきカートハトル メクルカ WFQP = Frogger: Hyper Arcade Edition WFSJ = Minna no Theater Wii WFTE = Fish 'em All WFTP = Fish'em All! WFUE = Furry Legends WFUP = Furry Legends WFVE = Soccer Up WFVP = Football Up WFWE = Flower Works WFWP = Flowerworks: Follie's Adventure WFXE = Cosy Fire WFXP = Cosy Fire WFYE = Family Games Pen & Paper Edition WFYP = Family Games Pen & Paper Edition WG2J = Sugar Bunnies Wii: Youkoso * Bunnies Field e WG4E = GhostSlayer WGAE = Ghost Mania WGAP = Ghost Mania WGDE = Gradius Rebirth WGDJ = Gradius Rebirth: Updated WGDP = Gradius Rebirth WGFP = Girlfriends Forever: Magic Skate WGGE = Gabrielle's Ghostly Groove: Monster Mix WGGJ = Ushimitsu Monstruo Puchi: Fushigi na Oshiro no Dance Party WGGP = Gabrielle's Ghostly Groove: Monster Mix WGLE = Gene Labs WGMJ = Game SoundStation WGOE = World of Goo WGOJ = World of Goo WGOP = World of Goo WGPE = AquaSpace WGPJ = Aqua Living: TV de Nagameru Uotachi WGPP = Zenquaria: Virtual Aquarium WGSD = Phoenix Wright: Ace Attorney (Deutsche Version) WGSE = Phoenix Wright: Ace Attorney WGSF = Phoenix Wright: Ace Attorney (French Version) WGSI = Phoenix Wright: Ace Attorney WGSJ = Gyakuten Saiban: Yomigaeru Gyakuten WGSP = Phoenix Wright: Ace Attorney WGTJ = Sekai no Omoshiro Party Game WGUJ = Aero Guitar WGVE = Groovin' Blocks WGYE = Gyrostarr WH3E = Home Sweet Home WH3P = Home Sweet Home WHBE = Hubert the Teddy Bear: Winter Games WHEE = Heracles: Chariot Racing WHEP = Heracles: Chariot Racing WHFE = Heavy Fire: Special Operations WHFP = Heavy Fire: Special Operations WHHJ = Let's 全力ヒッチハイク!!!!!!!!! WHMP51 = New Super Mario Bros. Wii: The Ultimate Wii-Homebrew.com Edition WHOE = Hockey Allstar Shootout WHPE = Sexy Poker WHPP = Sexy Poker WHRE = Heron Steam Machine WHRP = Heron: Steam Machine WHUE = Ghost Mansion Party WHUJ = Ghost Mansion Party WHUP = Ghost Mansion Party WHVE = High Voltage: Hot Rod Show WHWE = HoopWorld WHWP = HoopWorld: BasketBrawl WHXE = Helix WHXP = Helix WHYE = Heavy Fire: Black Arms WHZE = Horizon Riders WIBE = bittos+ WICE = NyxQuest Kindred Spirits WICJ = NyxQuest WICP = NyxQuest: Kindred Spirits WIDE = Dracula: Undead Awakening WIDP = Dracula: Undead Awakening WIEE = Tales of Monkey Island: Chapter 3 - Lair of the Leviathan WIEP = Tales of Monkey Island Chapter 3: Lair of the Leviathan WIGE = Incoming WIHE = Play with Birds WIKJ = Ivy the Kiwi? Mini WILE = Tales of Monkey Island: Chapter 1 - Launch of the Screaming Narwhal WILP = Tales of Monkey Island Chapter 1: Launch of the Screaming Narwhal WIMC = WiiMC WINE = The Incredible Maze WINJ = Chokkan! Balance * Labyrinth WINP = The Incredible Maze WIRE = Tales of Monkey Island: Chapter 5 - Rise of the Pirate God WIRP = Tales of Monkey Island Chapter 5: Rise Of The Pirate God WISE = Tales of Monkey Island: Chapter 2 - The Seige of Spinner Cay WISP = Tales of Monkey Island Chapter 2: Siege Of Spinner Cay WITE = Aha! I Found It! Hidden Object Game WITJ = Aa! Mitsuketa! Item Sagashi Game WITP = Aha! I Found It! Hidden Object Game WIUE = Inkub WIVE = Space Invaders Get Even WIVJ = Space Invaders Get Even WIVP = Space Invaders Get Even WIYE = Tales of Monkey Island: Chapter 4 - The Trial and Execution of Guybrush Threepwood WIYP = Tales of Monkey Island Chapter 4: The Trial and Execution of Guybrush Threepwood WJ2J = Jinsei Game: Happy Step WJAE = Jam City Rollergirls WJAP = Jam City Rollergirls WJCE = JellyCar 2 WJEE = Jett Rocket WJEP = Jett Rocket WJFE = Gnomz WJFP = Gnomz WJGJ = Jinsei Game WJKE = Jewel Keepers Easter Island WJKP = Jewel Keepers: Easter Island WJPJ = Janken Party Paradise WJSE = Jungle Speed WJSP = Jungle Speed WJWE = Bejeweled 2 WJWP = Bejeweled 2 WK2J = Kappa-kun to Asobou: Kappa-kun to Ota no Shimikai WK3J = Kappa-kun to Asobou: Kappa-kun to Mori no Nakamatachi WK9J = Minna de Asobou Koinu de Kururin WKBE = You, Me, and the Cubes WKBJ = Kimi to Boku to Rittai WKBP = You, Me and the Cubes WKCE = Kyotokei WKCP = Kyotokei WKDE = Pirates: The Key of Dreams WKEJ = RakuRaku Kinen Apori Wii: Kinenka no Isha ga Osheru Nanoka de yameru Houhou WKFE = Kung Fu Funk: Everybody is Kung Fu Fighting! WKFP = Kung Fu Funk: Everybody Is Kung Fu Fighting WKHE = Big Kahuna Party WKIE = The Mystery of Whiterock Castle WKIP = The Mystery of Whiterock Castle WKKE = Party Fun Pirate WKKJ = Kurohige Kiki Ippatsu WKKP = Pop-Up Pirates! WKNJ = Kanken Minna de Waiwai Kanji Nou WKPJ = Kappa Kun to Mori no Nakama Tachi WKQJ = Kentei! TV Wii Minna de Gotouchi Quiz Battle WKRP = Karate Phants: Gloves of Glory WKTE = Contra Rebirth WKTJ = Contra ReBirth WKTP = Contra ReBirth WKUJ = Downtown Nekketsu Dodgeball WKWE = Adventure on Lost Island: Hidden Object Game WKWJ = Item Sagashi * Yousei to Fushigi no Shima WKWP = Adventure on LOST ISLAND: Hidden Object Game WL2E = Target Toss Pro: Lawn Darts WL5E = HB Arcade Disc Golf WL9E = Let's Create! Pottery WLCE = Bingo Party Deluxe WLCJ = Wai Wai Bingo Deluxe WLCP = Bingo Party Deluxe WLDJ = Boku mo Sekai o Sukuitai: Battle Tournament WLEE = Learning with the PooYoos: Episode 1 WLEJ = Pooyoo to Asobou Episode 1 WLEP = Learning with the PooYoos: Episode 1 WLGE = HB Arcade Cards WLIE = Liight WLJJ = Boku mo Sekai o Sukuitai: Battle Tournament WLKJ = Okiraku Tennis SP WLLE = Little Tournament Over Yonder WLLP = Little Tournament Over Yonder WLME = La-Mulana WLMJ = La Mulana WLMP = La-Mulana WLNE = Learning with the PooYoos: Episode 2 WLNP = Learning with the PooYoos: Episode 2 WLOE = LostWinds: Winter of the Melodias WLOJ = LostWinds: Winter of the Melodias WLOP = LostWinds: Winter of the Melodias WLPE = Lonpos WLPJ = Lonpos WLPP = Lonpos WLTE = LIT WLTJ = School of Darkness WLTP = LIT WLWE = LostWinds WLWJ = LostWinds WLWP = LostWinds WLXJ = Phalanx WLZE = lilt line WLZP = lilt line WM2E = My Little Baby WM2P = My Little Baby WM3E = Manic Monkey Mayhem WM3P = Manic Monkey Mayhem WM4E = Mix Superstar WM4P = Mix Superstar WM5E = MDK2 WM7E = Anima Ark of Sinners WM7P = Anima Ark of Sinners WM8E = Bomberman Blast WM8J = Wi-Fi 8-Nin Battle Bomberman WM8P = Bomberman Blast WM9E = Happy Hammerin WM9J = Tataite Mogupon WM9P = Happy Hammerin' WMAE = Magnetis WMAP = Magnetis WMBE = MaBoShi's Arcade WMBJ = Katachi no Game: Marubou Shikaku WMBP = MaBoShi: The Three Shape Arcade WMCE = Monsteca Corral: Monsters vs. Robots WMCP = Monsteca Corral: Monsters Vs. Robots WMDE = Madstone WMGE = Mart Racer WMHE = Mouse House WMJE = Dive: The Medes Islands Secret WMJP = Dive: The Medes Islands Secret WMKE = Lead the Meerkats WMKP = Lead the Meerkats WMLE = Major League Eating: The Game WMLJ = Major League Eating: The Game WMME = Muscle March WMMJ = Muscle Koushinkyoku WMMP = Muscle March WMOE = Moki Moki WMOJ = Antaga Mawashite Sukuu Puzzle: Mochimochi Q WMOP = Moki Moki WMRE = Monochrome Racing WMRP = Monochrome Racing WMSE = Enjoy your massage! WMSP = Enjoy your massage! WMWP = Miffy's World WMXE = Max & The Magic Marker WMXJ = Max & the Magic Marker WMXP = Max & the Magic Marker WMZP = Mahjong WN9E = Military Madness: Nectaris WN9J = NECTARIS(ネクタリス) WN9P = Military Madness: Nectaris WNAP = Back to Nature WNEE = Penguins & Friends Hey! That's My Fish! WNEP = Penguins & Friends Hey! That’s my Fish! WNGE = Bang Attack WNKE = Niki - Rock 'n' Ball WNKP = Niki - Rock 'n' Ball WNPJ = Sugusuro Duo: New Pulsar R & V WNSE = Newton Vs The Horde WNVE = Neves Plus WNVJ = ハメコミ  LUCKY PUZZLE Wii リターン WNVP = Neves Plus: Phantheon of Tangrams WNWJ = Hamekomi Lucky Puzzle Wii Return WO6E = Family Pirate Party WO6J = Okiraku Sugoroku Wii WO6P = Family Pirate Party WOAE = Family Glide Hockey WOAJ = Okiraku Air Hockey Wii WOAP = Family Glide Hockey WOBE = Art Style: ORBIENT WOBJ = Art Style: Orbital WOBP = Art Style: ORBIENT WODJ = 王たぁ! WOEJ = Oekaki Logic WOFE = Overflow WOGE = Family Mini Golf WOGJ = Okiraku Putter Golf Wii WOGP = Family Mini Golf WOKE = Karaoke Joysound WOKJ = Karaoke Joysound Wii WOLJ = Othello WOMJ = Sekai no Omoshiro Party Game 2 WOPE = Word Searcher Deluxe WOSE = Family Slot Car Racing WOSJ = Okiraku Slot Car Racing Wii WOSP = Family Slot Car Racing WOTE = Overturn WOTJ = Overturn WOTP = Overturn: Mecha Wars WOXJ = Osu! Exercise Dojo WOYE = Bit Boy!! WOYJ = Bit Man WOYP = Bit Boy!! WOZJ = Kodomo Kyouiku Telebi Wii: Aiue-Oumuzu WP2E = Potpourrii WP2P = Potpourrii WP4E = Learning with the PooYoos: Episode 3 WP4P = Learning with the PooYoos: Episode 3 WP5J = ホコスカれーしんく WP6J = Boku wa Plarail Untenshi: Shinkansen Joukikikansha-Hen WP7E = My Planetarium WP7J = Planetarium WP7P = My Starry Night WP9J = Po-Ka-Zu Wii WPAJ = ホケモン不思議のタンション いくそ!嵐の冒険団 WPBE = Pub Darts WPBP = Pub Darts WPCE = Doc Louis's Punch-Out!! WPDJ = 珍道中!!ホールの大冒険 WPFJ = ホケモン不思議のタンション すすめ!炎の冒険団 WPGE = Snowpack Park WPGJ = Penguin Life WPHJ = ホケモン不思議のタンション めさせ!光の冒険団 WPIE = Pit Crew Panic! WPIJ = Pit Crew Panic WPIP = Pit Crew Panic! WPJE = Pucca's Kisses Game WPJP = Pucca's Kisses Game WPKE = Texas Hold'Em Poker WPKP = Texas Hold'Em Poker WPLE = Planet Pachinko WPNJ = Ponjan WPOJ = Popple to Mahou no Crayon WPPE = Family Table Tennis WPPJ = Okiraku Ping Pong WPPP = Family Table Tennis WPQE = Protöthea WPQP = Protöthea WPRE = Art Style: Cubello WPRJ = Art Style: Cubeleo WPRP = Art Style: CUBELLO WPSE = Pokémon Rumble WPSJ = Ransen Pokémon Scramble WPSP = Pokémon Rumble WPTJ = FANTASIC CUBE ファンタシックキューフ WPUE = Bust-A-Move Plus! WPUJ = Puzzle Bobble Wii WPUP = Puzzle Bobble Plus! WPVE = The Tales of Bearsworth Manor: Chaotic Conflicts WPVJ = Kumanage Battle-Hen: Kiina no Kirai na Aoi Hoseki WPVP = The Tales of Bearsworth Manor: Chaotic Conflicts WPWE = Pong Toss Pro - Frat Party Games WPXJ = Minna de Tobikome Penguin Diving Hooper Looper WPYE = Pallurikio WPYP = Pallurikio WPZE = Bruiser & Scratch WQ4J = Kentoushi FuriFuri Boxing WR2E = Rabbids Lab WR2P = Rabbids Lab WR4P = Rush Rush Rally Racing WR5E = Retro City Rampage WR9E = Mega Man 9 WR9J = ロックマン9 野望の復活!! WR9P = Mega Man 9 WRBE = Robocalypse - Beaver Defense WRBP = Robocalypse - Beaver Defense WRDE = Word Searcher WRDP = Word Searcher WREE = Racers' Islands - Crazy Arenas WREP = Racers Islands Crazy Arenas WRFE = Reel Fishing Challenge II WRFP = Reel Fishing Challenge II WRGE = Rage of the Gladiator WRGP = Rage of the Gladiator WRIE = Rainbow Islands: Towering Adventure! WRIJ = Rainbow Islands: Towering Adventure! WRIP = Rainbow Islands: Towering Adventure! WRJE = Racers' Islands - Crazy Racers WRJP = Racers Islands - Crazy Racers WRLE = FAST Racing League WRLP = FAST Racing League WRNJ = BIT.TRIP RUNNER WRPE = Burn the Rope WRQE = Deer Drive Legends WRQP = Deer Drive Legends WRRE = Robin Hood: The Return of Richard WRRP = Robin Hood: The Return Of Richard WRSE = Step Up WRTE = Robox WRUE = BIT.TRIP RUNNER WRUP = Bit.Trip Runner WRXE = Mega Man 10 WRXJ = 宇宙からの脅威!! WRXP = Mega Man 10 WRYE = Robox WRYP = Robox WS2J = Saikyou Ginsei Igo WS3E = Silver Star: Chess WS3J = Saikyou Ginsei Chess WS4J = Saikyou Ginsei Mahjong WS5J = Saikyou Ginsei Gomoku Narabe WS6E = Silver Star: Reversi WS6J = Saikyou Ginsei Reversi WS7E = Fantasy Slots: Adventure Slots and Games WS8J = Minna de Taisen Puzzle Shanghai WS9E = Sudoku Challenge! WS9P = Sudoku Challenge! WSAE = Onslaught WSAJ = MadSecta WSAP = Onslaught WSBJ = Sorcery Blade WSCJ = Out of Galaxy: Gin no Koshika WSEJ = Princess Ai Monogatari WSGE = Pop 'Em Drop 'Em Samegame WSGJ = さめかめ Wii WSGP = Pop Them, Drop Them SAMEGAME WSHE = Stonekeep: Bones of the Ancestors WSIJ = Saikyou Ginsei Shogi WSJE = Spot The Differences! WSJP = Spot the Differences! WSLE = The Magic Obelisk WSLJ = Shadow Walker WSME = Eat! Fat! FIGHT! WSMJ = Tsuppari Oozumou Wii Heya WSMP = Eat! Fat! FIGHT! WSNE = Sonic The Hedgehog 4 Episode I WSNJ = Sonic the Hedgehog 4: Episode I WSNP = Sonic The Hedgehog 4 Episode I WSRE = Space Trek WSSP = Solitaire WSTJ = Tenshi no Solitaire WSUE = Shootanto: Evolutionary Mayhem WSUJ = Shootanto: Kakohen WSUP = Shootanto: Evolutionary Mayhem WSWE = Swords & Soldiers WSWP = Swords & Soldiers WSXE = Stunt Cars WSXP = Stunt Cars WSYE = Snail Mail WSZE = Sneezies WSZP = Sneezies WT2E = Target Toss: Pro Bags WT3E = Tomena Sanner WT3J = Tomena Sanner Wii WT3P = Tomena Sanner WT8J = はしいて! フロック ラッシュ WTBJ = ファンタシックタンハリン FANTASIC TAMBOURINE WTDJ = Tomica Drive WTEE = Tales of Elastic Boy: Mission 1 WTEP = Tales of Elastic Boy Mission 1 WTFE = Bit.Trip: Flux WTFP = Bit.Trip Flux WTHJ = Kaku! Ugoku! Tsukamaeru! Sensei Wii WTIE = Tiki Towers WTKE = TV Show King 2 WTKP = TV Show King 2 WTME = Adventure Island: The Beginning WTMJ = Takahashi Meijin no Bouken Jima Wii WTMP = Adventure Island: The Beginning WTNE = Family Tennis WTNJ = Okiraku Tennis Wii WTPE = Tetris Party WTPJ = Tetris Party WTPP = Tetris Party WTRE = Bit.Trip Beat WTRJ = BIT.TRIP BEAT WTRP = Bit.Trip Beat WTTE = Toki Tori WTTP = Toki Tori WTUE = Tumblebugs 2 WTWP = Fenimore Fillmore: The Westerner WTXE = Texas Hold’em Tournament WTXP = Texas Hold’em Tournament WU2P = Successfully Learning Mathematics Year 3 WU3P = Successfully Learning Mathematics Year 4 WU4P = Successfully Learning Mathematics Year 5 WUBE = Ubongo WUBP = Ubongo WUFE = Drop Zone: Under Fire WUHE = Grill-Off with Ultra Hand! WUIP = Successfully Learning Mathematics Year 2 WUKJ = Unou Kids Okigaru Unou Training WUNE = Uno WUNJ = Uno WUNP = Uno WURE = Urbanix WURP = Urbanix WVBE = Bit.Trip: Void WVBJ = BIT.TRIP VOID WVBP = Bit.Trip Void WVCE = V.I.P. Casino: Blackjack WVDJ = Kodomo Kyouiku TV Wii: Aiue-O-Chan WVFE = Bobby Carrot Forever WVFP = Bobby Carrot Forever WVIE = Violin Paradise WVKE = Water Warfare WVKJ = Bang Bang Kids WVKP = Water Warfare WVOE = Rock N' Roll Climber WVOJ = Rock n' Roll Climber WVOP = Rock'n Roll Climber WVQE = Vampire Crystals WVQP = Vampire Crystals WVSE = Gods Vs Humans WVSP = Gods Vs Humans WVUP = Mr Bumblebee Racing Champion WW2P = Where's Wally? Fantastic Journey 2 WW3P = Where's Wally? Fantastic Journey 3 WWAE = Warmen Tactics WWIP = Where's Wally? Fantastic Journey 1 WWLP = The Will of Dr. Frankenstein WWRE = Excitebike World Rally WWRJ = Excitebike: World Race WWRP = Excitebike: World Challenge WWTE = BurgerTime World Tour WWTP = BurgerTime World Tour WWXE = Paper Wars: Cannon Fodder WWXP = Paper Wars Cannon Fodder WXBE = Ben 10: Alien Force - The Rise of Hex WXBP = Ben 10: Alien Force - The Rise of Hex WXME = Xmas Puzzle WXPE = Paint Splash! WXPP = Paint Splash WXRE = Reel Fishing Ocean Challenge WYIE = escapeVektor: Chapter 1 WYIP = escapeVektor: Chapter 1 WYKJ = Yomi Kiku Asobi WYME = Yummy Yummy Cooking Jam WYMP = Yummy Yummy Cooking Jam WYSE = Yard Sale Hidden Treasures: Sunnyville WYSP = Yard Sale Hidden Treasures Sunnyville WZAE = Zombii Attack WZBP = Cricket Challenge WZGE = Zoo Disc Golf WZHE = My Zoo WZHJ = Animal Life: Doubutsu Fureai Seikatsu WZHP = My Zoo WZIE = Rubik's Puzzle Galaxy RUSH WZIP = Rubik's Puzzle Galaxy: RUSH WZJJ = @ SIMPLEシリース Vol.5 THE 柔道 WZMJ = Simple Wii Series Vol. 3: The Mahjong WZPE = Zombie Panic in Wonderland WZPJ = ソンヒ イン ワンターラント WZPP = Zombie Panic in Wonderland WZZE = The Tales of Bearsworth Manor: Puzzling Pages WZZJ = Kumanage Puzzle-Hen: Piina no Suki na Akai Candy WZZP = The Tales of Bearsworth Manor: Puzzling Pages XAAJ = Eggy XABJ = Aleste XADJ = Yie Ar Kung 2 XAEJ = Space Manbow XAFJ = Metal Gear XAGJ = Road Fighter XAHJ = Penguin Adventure: Yume Tairiku Adventure XAIJ = Quarth XAKJ = Parodius - Tako wa Chikyuu wo Sukuu XALJ = Contra XAMJ = Knightmare: Majou Densetsu XANJ = Parodius 2 XAOJ = Gofer no Yabou: Episode II XAPJ = Metal Gear 2: Solid Snake XAQJ = Salamander XBKE52 = Guitar Hero III Custom : Bullet For Kamelot XH2E = Cave Story (Demo) XH2P = Cave Story (Demo) XH3E = Frobot (Demo) XH4E = Max and the Magic Marker (Demo) XH5E = Ayim And Yet It Moves Demo XH6E = Robox (Demo) XH6P = Robox (Demo) XH7E = Lit (Demo) XH7P = Lit (Demo) XH8E = Lead the Meerkats (Demo) XH8P = Lead the Meerkats (Demo) XHAE = Pokemon Rumble (Demo) XHAP = Pokemon Rumble (Demo) XHCE = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHCJ = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHDE = NyxQuest: Kindred Spirits (Demo) XHDP = NyxQuest: Kindred Spirits (Demo) XHEE = BIT.TRIP BEAT (Demo) XHEJ = BIT.TRIP BEAT (Demo) XHEP = BIT.TRIP BEAT (Demo) XHFE = World of Goo (Demo) XHFP = World of Goo (Demo) XHIE = Fluidity (Demo) XHIP = Hydroventure (Demo) XHJE = Thruspace (Demo) XHJP = Thruspace (Demo) XHKE = Dive: The Medes Island Secret (Demo) XHKP = Dive: The Medes Secret Island (Demo) XHLE = Jett Rocket (Demo) XHLP = Jett Rocket (Demo) XHME = Art of Balance (Demo) XHMP = Art of Balance (Demo) XHQE = Zombie Panic (Demo) XHQP = Zombie Panic (Demo) XHRE = Furry Legends (Demo) XHRP = Furry Legends (Demo) XHVE = BIT.TRIP CORE (Demo) XHVP = BIT.TRIP CORE (Demo) XHWE = BIT.TRIP VOID (Demo) XHWP = BIT.TRIP VOID (Demo) XHXE = BIT.TRIP RUNNER (Demo) XHXP = BIT.TRIP RUNNER (Demo) XHZE = Chronos Twins DX (Demo) XHZP = Chronos Twins DX (Demo) XI2E = Kyotokei (Demo) XI2P = Kyotokei (Demo) XI7E = Liight (Demo) XI8E = Jam City (Demo) XI8P = Jam City (Demo) XIAE = Lilt Line (Demo) XIAP = Lilt Line (Demo) XIBE = Fish em All (Demo) XIBP = Fish em All Demo XICE = Gods vs Humans Demo XICP = Gods vs Humans Demo XIDE = Racers Islands Crazy Racers Demo XIDP = Racers Islands Crazy Racers Demo XIEE = chick chick BOOM Demo XIEP = chick chick BOOM Demo XIGE = Urbanix Demo XIGP = Urbanix Demo XIHE = Gladiator Demo XIHP = Gladiator Demo XIJE = Fast Racing League Demo XIJP = Fast Racing League Demo XIKE = Monsteca Corral Demo XIKP = Monsteca Corral Demo XINE = Learning with the Pooyoos Episode 1 Demo XINP = Learning with the Pooyoos Episode 1 Demo XIOE = Learning with the Pooyoos Episode 2 Demo XIOP = Learning with the Pooyoos Episode 2 Demo XIPE = Learning with the Pooyoos Episode 3 Demo XIPP = Learning with the Pooyoos Episode 3 Demo XIQE = Dart Rage Demo XIRE = Pong Toss Pro Demo XISE = BIT.TRIP FLUX Demo XISP = BIT.TRIP FLUX Demo XITE = Fast Draw Demo XITP = Fast Draw Demo XIUE = Soccer Bashi Demo XIUP = Soccer Bashi Demo XIVE = Mix Superstar Demo XIVP = Mix Superstar Demo XIZE = 3D Pixel Racing Demo XIZP = 3D Pixel Racing Demo XJEE = Aya and the Cubes of Light Demo XJEP = Aya and the Cubes of Light Demo XJGE = Gnomz Demo XJGP = Gnomz Demo XJHE = Paint Splash Demo XJIE = 2 Fast 4 Gnomz Demo XJSE = Karaoke Joysound (Demo) XJSP = Karaoke Joysound Wii (Demo) XNWE52 = Guitar Hero III Custom: Nightwish XXXX02 = Mario Kart Teknik ZXFP52 = Guitar Hero 3 Encore wit-2.31a/share/titles-nl.txt0000644000175000017500000107601712655737310015774 0ustar michaelmichael010E01 = Wii Backup Disc v1.31 301E01 = GameCube Service Disc AFRE01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 8. AMEE01 = New Super Mario Bros. Wii 11 American Revolution AMNE01 = Another Super Mario Bros. Wii AMOR04 = Guitar Hero III Custom : HARDcore APRP01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 2. APRP02 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 3. APRP03 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 6. APRP04 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 7. APRP06 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 5. APRP08 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 1. ASMB01 = Another Super Mario Bros. Wii BEPS01 = Guitar Hero III Custom : Rock n' Metal BOWE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh C3BE52 = Guitar Hero III Custom : Bossenator C3FP52 = Guitar Hero III Custom : Fonx #1 C3KE52 = Guitar Hero III Custom : Kyle Edition #1 C3ME52 = Guitar Hero III Custom : Modern Rock C3PP52 = Guitar Hero III Custom : Modern Pop & Rock C80E52 = Guitar Hero III Custom : Rocks the 80's C80P52 = Guitar Hero III Custom: GH I & 80's C93E = Last Ninja 2 C93P = The Last Ninja 2 C94E = Tower Toppler C94P = Nebulus C95P = Impossible Mission C96E = Summer Games II C96P = Summer Games 2 C97E = California Games C97P = California Games C98P = Paradroid C99P = Uridium C9EP = Winter Games C9GP = Mayhem in Monsterland C9HE = Boulder Dash C9HP = Boulder Dash C9IE = Cybernoid C9IP = Cybernoid C9ME = Pitstop II C9MJ = Pitstop Two C9MP = Pitstop II C9PP = The Last Ninja 3 C9QP = Jumpman C9RP = International Karate + C9SP = Impossible Mission II C9XE = The Last Ninja C9XJ = The Last Ninja C9XP = The Last Ninja C9YE = International Karate C9YJ = International Karate C9YP = International Karate C9ZP = World Games CANE52 = Guitar Hero Custom: NOT Aerosmith but... CCPE01 = Mario Kart Wii Custom: The Master Race CEMU69 = PunEmu CFEE52 = Guitar Hero III Custom : Michael Jackson CG1E52 = Guitar Hero III Custom : Guitar Hero CG1P52 = Guitar Hero III Custom : Guitar Hero I CG2E52 = Guitar Hero III Custom: Guitar Hero II CG2EFL = Guitar Hero III Custom : GH II CG2P52 = Guitar Hero III Custom : Guitar Hero II CG3ECS = Guitar Hero III Custom : ClasSick Edition CG3PCS = Guitar Hero III Custom : ClasSick Edition CGBE52 = Guitar Hero III Custom: Rock Band CGBP52 = Guitar Hero III Custom : Rock Band CGH370 = Guitar Hero III Custom : 70 New Song CGH3IM = Guitar Hero III Custom : Iron Maiden CGH3LM = Guitar Hero III Custom : Legend of Music CGH3ME = Guitar Hero III Custom : Metallica CGH3NE = Guitar Hero III Custom : Nostalgia Edition CGH3WD = Guitar Hero III Custom: WD Custom CGHCE1 = Guitar Hero III Custom : Edition Custom CGHE87 = Guitar Hero III Custom : Guitar Hero I CGHE88 = Guitar Hero III Custom : Guitar Hero II CGHE89 = GH3: Mario CGHE90 = GH3: South Park Edition CGHE91 = GH3: The Red Album CGHE92 = GH3: The Blue Album CGHE93 = GH3: Shake Rattle and Roll CGHE94 = Guitar Hero III Custom : Mars Needs Guitars CGHE95 = Guitar Hero III Custom : Rock Band CGHE96 = Guitar Hero III Custom: Rock'n'Roll Metal CGHE97 = GH3: I Fought The Law CGHE98 = GH3: Sweet Home Alabama CGHE99 = Guitar Hero III Custom : Rock The 80's CGHECB = Guitar Hero III Custom : CBT Edition CGHEDC = Guitar Hero III Custom : Downloadable Content Edition CGHEDM = Guitar Hero III Custom : DAVEMODE CGHEMC = Guitar Hero III Custom : My Chemical Romance CGHENC = Guitar Hero III Custom : NCustom CGHEPH = Guitar Hero III Custom : Puppetz Hero 2 CGHER2 = Guitar Hero III Custom : Rock Band 2 CGHERF = Guitar Hero III Custom : Rockfest 2010 CGHJ52 = Guitar Hero III Custom : Jumapa CGHKY2 = Guitar Hero III Custom : Kyle Edition #2 CGHPF2 = Guitar Hero III Custom : Fonx #2 CGHPF3 = Guitar Hero III Custom : Fonx #3 CGHPF4 = Guitar Hero III Custom : Fonx #4 CGHPF5 = Guitar Hero III Custom : Fonx #5 CGHPNT = Guitar Hero III Custom : Ntorrents Edition CGHRH2 = Guitar Hero III Custom : Rocks Hits Custom v2 CGHSKV = Guitar Hero III Custom : Starchildren & Kneos Version CGIE52 = Guitar Hero III Custom : Iron Maiden CGSP52 = Guitar Hero III Custom : Spanisk Custom by KuXu CGVECD = Guitar Hero Aerosmith Custom : AC/DC Edition CGVEM2 = Guitar Hero Aerosmith Custom : Mini Concerts Edition 2 CGVEMC = Guitar Hero Aerosmith Custom : Mini Concerts Edition CGVEUV = Guitar Hero Aerosmith Custom : Ultimate Video Game Hero CKBE88 = Mario Kart Wii Black CLAPSI = Sing IT: Clásicos CMDE52 = Guitar Hero III Custom: Megadeth CMKE01 = Mario Kart Wii Dragon Road CS0P00 = StarSing : Bollywood v2.0 CS0PZZ = StarSing : Pop Part. I v2.0 CS1P00 = StarSing : Country v2.0 CS1PZZ = StarSing : Pop Part. II v2.0 CS2P00 = StarSing : Placebo v2.0 CS2PZZ = StarSing : '80s Volume 1 v2.0 CS3P00 = StarSing : Volume 1 v2.0 CS3PZZ = StarSing : Anthems v2.0 CS4P00 = StarSing : NRJ Music Tour v2.0 CS4PZZ = StarSing : Legends v2.0 CS5P00 = StarSing : '70s v2.1 CS5PZZ = StarSing : Songs For My Jedi v1.0 CS6P00 = StarSing : Douce France v2.0 CS6PZZ = StarSing : Amped Part. I v2.0 CS7P00 = StarSing : Red Hot Chili Peppers v1.0 CS7PZZ = StarSing : Amped Part. II v2.0 CS8P00 = StarSing : '90s Volume 1 v2.0 CS8PZZ = StarSing : Disco-Funk v1.0 CS9P00 = StarSing : '80s Volume 2 v2.1 CS9PZZ = StarSing : Pop Hits 9 v1.0 CSAP00 = StarSing : '80s Volume 3 v2.1 CSAPZZ = StarSing : Best of Goldman v1.0 CSBP00 = StarSing : '90s Volume 2 v2.1 CSCP00 = StarSing : Michael Jackson v2.2 CSCPZZ = StarSing : Hottest Hits v2.0 CSDP00 = StarSing : Rocks! Volume 2 v2.0 CSDPZZ = StarSing : Boy Bands Vs. Girl Bands v2.0 CSEP00 = StarSing : Pop Hits 5 v1.3 CSFP00 = StarSing : Pop Hits 6 v1.3 CSGP00 = StarSing : Chansons Magiques de Disney v1.4 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = StarSing : Pop Hits 7 v1.3 CSJP00 = StarSing : Après-Ski Party v1.2 CSKP00 = StarSing : ABBA v1.1 CSLP00 = StarSing : Queen v2.0 CSMP00 = StarSing : Electro-Dancefloor Volume 1 v2.0 CSNP00 = StarSing : Electro-Dancefloor Volume 2 v2.0 CSOP00 = StarSing : Electro-Dancefloor Volume 3 v2.0 CSPP00 = StarSing : Linkin Park Live at Webster Hall New York v2.0 CSQP00 = StarSing : Muse v2.0 CSRP00 = StarSing : International Volume 3 v1.0 CSSP00 = StarSing : Après-Ski Party 2 v2.0 CSTP00 = StarSing : Depeche Mode v2.0 CSUP00 = StarSing : Pop Hits 8 v1.3 CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = StarSing : Génériques TV v2.0 CSYP00 = StarSing : Electro-Dancefloor Volume 4 v2.0 CSZP00 = StarSing : Glee Volume 1 v2.1 CT0P00 = StarSing : Pop Part. I v2.1 CT1P00 = StarSing : Pop Part. II v2.1 CT2P00 = StarSing : '80s Volume 1 v2.1 CT3P00 = StarSing : Anthems v2.1 CT4P00 = StarSing : Legends v2.1 CT5P00 = StarSing : Songs For My Jedi v2.0 CT6P00 = StarSing : Amped Part. I v2.1 CT7P00 = StarSing : Amped Part. II v2.1 CT8P00 = StarSing : Disco-Funk v2.0 CT9P00 = StarSing : Pop Hits 9 v1.3 CTAP00 = StarSing : Best of Goldman v2.0 CTBP00 = StarSing : Glee Volume 3 v1.0 CTCP00 = StarSing : Hottest Hits v2.0 CTDP00 = StarSing : Boy Bands Vs. Girl Bands v2.1 CTEP00 = StarSing : R&B v2.0 CTFP00 = StarSing : Rock Ballads v2.0 CTGP00 = StarSing : Take That v2.0 CTHP00 = StarSing : Summer Party v2.0 CTIP00 = StarSing : Rocks! Part. I v2.0 CTJP00 = StarSing : Rocks! Part. II v2.0 CTKP00 = StarSing : Pop Hits v2.0 CTLP00 = StarSing : Britney Spears v2.0 CTMP00 = StarSing : Shakira v1.1 CTNP00 = StarSing : Pop Hits 10 v1.3 CTOP00 = StarSing : The Beatles Volume 2 v2.0 CTPP00 = StarSing : Motown v2.0 CTQP00 = StarSing : Glee Volume 2 v1.0 CTRP00 = StarSing : International Volume 1 v1.0 CTSP00 = StarSing : International Volume 2 v1.0 CTTP00 = StarSing : '80s Volume 4 v1.0 CTUP00 = StarSing : Rihanna v1.0 CTVP00 = StarSing : Lady GaGa v1.0 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CVLE38 = Mario Kart: Victory Lane D01A = Wiimmfi Patcher D02A = Engine02 D03A = BrainSlug Wii D05A = Bash the Castle D06A = Bit Streamer D07A = BlisterBall D08A = Blob Wars: Metal Blob Solid D09A = Blobby Volley 2 Wii D0AA = MPlayer Wii Youtube D0BA = MPlayer Wii D0CA = Ocarina D0DA = MPlayer Dvdlib Edition D0EA = MPlayer Wii By Rodries D0FA = Signcheck D0GA = GCBoot D0HA = Memview D0IA = IOS Check D0JA = Open Sram Lang Modifier D0KA = WiiBServer D0LA = LibWiiGameLoad D0MA = Wiireader D0NA = lsusb D0OA = Move The Pussy Demo D0PA = Wiilax Minitro D0QA = Fission Engine Project D0RA = GRRLIB 4.0 Demo D0SA = OSDM-BAR D0TA = Homebrew Menu Demo D0UA = LibMii Example D0VA = The Scary Demo D0WA = Starfield Demo D0XA = Wire3D Demo D0YA = Something D0ZA = GRRLIB 4.3.0 Promote Intro D10A = cIOSFix D11A = ASCII Pong D12A = BuscaWiinas D13A = C-Dogs SDL D14A = Castles of Dr. Creep D15A = Wii Shop and IOS51 Installer D16A = Centipede D17A = Cobra Arcade D18A = Dump Espresso OTP D1LA = Blind D1PA = 1bit Invaders D1RA = MinimaLauncher D21A = Xroar D22A = cIOS222 installer D24A = 24 Points D26A = Wii2600 D29J01 = Monthly Nintendo Shop Demo May 2002 D2AA = Wii Deadly Cobra D2AJAF = Minna de Bouken! Family Trainer (Demo) D2BA = Jump N Bump D2CA = Wiiflow Advanced D2DA = Box2D Balls D2EA = Wiiflow Start Configurator D2GA = Wadinstallerbatch D2QA = Sqrxz 2 D2SE18 = Deca Sports 2 (Demo) D2ZA = Console Shooter D32J01 = Monthly Nintendo Shop Demo June 2002 D33A = Time Frack 2D D33J01 = Monthly Nintendo Shop Demo July 2002 D34J01 = Monthly Nintendo Shop Demo July 2002 D36A = cIOS36 installer D37A = WiiConnect D38A = cIOS38 installer D38J01 = Monthly Nintendo Shop Demo September 2002 D39A = Ctr Gts DacoTaco Edition D3DA = Time Frack 3D D3DE18 = Deca Sports 3 (Demo) D3JA = NDSLoad D3KA = Button Tester D3LA = BootMii Booter D3MA = Custom NAND Loader D3OA = cIOS USB 2 Installer D3QA = Sqrxz 3 D3WA = Warheads D40A = Luigi and the Island of Mystery D42A = ArianeB D43A = Wii Virtual Jaguar D43E01 = The Legend of Zelda: Ocarina of Time / Master Quest D43J01 = Zelda no Densetsu: Toki no Ocarina GC / Ura Zelda D43P01 = The Legend of Zelda: Ocarina of Time / Master Quest D43U01 = The Legend of Zelda: Ocarina of Time (Bonus Disc) D43W01 = The Legend of Zelda: Ocarina of Time / Master Quest D46A = Newo Escape D4BE08 = Resident Evil 4: Preview Disc D4BP01 = Resident Evil 4: Bonus Disc D4BP08 = Resident Evil Four Preview Disc D4BU01 = Resident Evil 4: Bonus Disc D4KA = Aleph WOne D4LA = Yawnd D4NA = Disc Dumper D4PA = DVD Dumper D4QA = Sqrxz 4 D4SA = USB Loader GUI FX D51A = IOS51 Update D52A = cboot252 D53J01 = Monthly Nintendo Shop Demo May 2003 D54A = cIOS Patchmii Installer D55A = PID Extractor D55J01 = Interactive Disc Catalog Summer 2003 D56A = Shopping Channel Fixer D56E01 = Interactive Multi-Game Demo Disc - Version 35 D56J01 = Pokémon Channel (Bonus Disc) D57A = Hijill GUI D57E01 = Interactive Multi-Game Demo Disc - Version 34 D58A = Priiloader HacksDen Edition D58E01 = Interactive Multi-Game Demo Disc - Version 33 D59A = TheUntitledProject D59E01 = Interactive Multi Game Demo Disc Version 32 D5AA = Alarmii D5BA = WiiFont D5CA = cLoader D5FA = Txted Mod D5HA = Title Lister D5JA = Tidy Up D5LA = Switchtosneek D5RA = Botoning D60A = Ultimate USB Loader D61A = Sand Traps Extra Levels D62A = Newo Puzzle D62E01 = Interactive Multi-Game Demo Disc - Version 31 D63A = 3D Maze D63E01 = Interactive Multi-Game Demo Disc - Version 30 D64A = Wii64 Emulator D64E01 = Interactive Multi-Game Demo Disc - Version 29 D65A = Transitory Vectors D65E01 = Interactive Multi Game Demo Disc Version 28 D65P01 = Interactive Multi-Game Demo Disc - December 2002 D66A = Secret Maryo Chronicles D66E01 = Interactive Multi-Game Demo Disc - Version 27 D67E01 = Interactive Multi-Game Demo Disc - Version 26 D67J01 = Monthly Nintendo Shop Demo December 2003 D68A = TheyDoNotDie2 D68E01 = Interactive Multi-Game Demo Disc - Version 25 D68J01 = Monthly Nintendo Shop Demo January 2004 D69A = IOS60 Installer D69E01 = Interactive Multi-Game Demo Disc - Version 24 D6AA = Pussieloader D6BA = Updatersafe D6DA = Savegame Manager Mod D6EA = Sneek FS Dumper D6FA = Anytitle Deleter Mod D6HA = AnyTitle Deleter Mod DB D6IA = DVD Info D6KA = AnyTitle Deleter DB D6MA = Banana Saves D6OA = DOP Shop D6QA = BootMii Checker D6TA = MiiPlayer D70A = Dungeon Crawl Stone Soup D71A = Panic in the Mushroom Kingdom D72A = Bfi D72E01 = Interactive Multi-Game Demo Disc - Version 23 D73E01 = Interactive Multi-Game Demo Disc - Version 22 D74E01 = Interactive Multi Game Demo Disc Version 21 D75E01 = Interactive Multi-Game Demo Disc - Version 20 D76E01 = Interactive Multi-Game Demo Disc - Version 19 D77E01 = Interactive Multi-Game Demo Disc - Version 18 D77P01 = Interactive Multi Game Demo Disc April 2006 D78A = Wii7800 D78E01 = Interactive Multi-Game Demo Disc - Version 17 D78J01 = Interactive Multi-Game Demo Disc - May 2004 D78P01 = Interactive Multi-Game Demo Disc - October 2005 D79A = Newo Defence D79E01 = Interactive Multi-Game Demo Disc - Version 16 D79P01 = Interactive Multi Game Demo Disc May 2005 D7AA = Action Replay Loader D7DA = Depanbrew D7GA = Channel Loader D7KA = RawkSD D7LA = Rumbler D7MA = IS Wad D7OA = Recovery Manager D7QA = Reboot D7SA = Childproof USB Loader D7TA = Power Mii Off D7VA = Power Off D7WA = Abbaye des Morts D7XA = NuGaSa D7YA = Resistor D81A = Newo Asteroids D82A = cIOS Patchmii Installer with Korean Disc Support D82E01 = Interactive Multi-Game Demo Disc - Version 15 D82J01 = Monthly Nintendo Shop Demo July 2004 D82P01 = Interactive Multi Game Demo Disc April 2005 D83A = Wii MFE Port D83E01 = Interactive Multi-Game Demo Disc - Version 14 D83P01 = Interactive Multi Game Demo Disc February 2005 D84A = Gambol D84E01 = Interactive Multi-Game Demo Disc - Version 13 D84P01 = Interactive Multi-Game Demo Disc - November 2004 D85A = Wii EDuke32 D85E01 = Interactive Multi-Game Demo Disc - Version 12 D85P01 = Interactive Multi Game Demo Disc July 2004 D86A = Firewii D86E01 = Interactive Multi-Game Demo Disc - Version 11 D86P01 = Interactive Multi-Game Demo Disc - May 2004 D87A = Tick Tock Boat Race D87E01 = Gamecube Preview Disc D87P01 = Interactive Multi-Game Demo Disc - March 2004 D88A = Quasi88 D88E01 = Interactive Multi-Game Demo Disc - Version 10 D88P01 = Interactive Multi-Game Demo Disc - November 2003 D89A = Wiimote Led Flasher D89E01 = Interactive Multi-Game Demo Disc - Version 9 D89J01 = Club Nintendo Original e-Catalog 2004 D89P01 = Interactive Multi-Game Demo Disc - September 2003 D8AA = Front SD ELF Loader D8BA = GameCube Homebrew Launcher D8CA = WiiSend D8DA = Menu D8EA = Gecko Loader D8FA = Shell D8JA = Calc D8QA = Brick OS D8RA = Lotto D8SA = Brainf**k D8UA = TCPLoader D8VA = Snort48 D8WA = Wiisixty D8XA = All In One Emuloader D8YA = Swissloader D8ZA = Tick Tock Zombie Shooter D91A = Jenny Thinks D92E01 = Interactive Multi-Game Demo Disc - Version 8 D92P01 = Interactive Multi Game Demo Disc June 2003 D93A = Wiiraytracer D93E01 = Interactive Multi-Game Demo Disc - Version 7 D93P01 = Interactive Multi Game Demo Disc April 2003 D94A = Nowhere D94P01 = Interactive Multi-Game Demo Disc - February 2003 D95A = RenderMii D95P01 = Interactive Multi-Game Demo Disc - December 2002 D96A = WiiMotionDemo D96P01 = Interactive Multi-Game Demo Disc - November 2002 D97A = Fire D98A = InstallMii D99A = System Channels Updater D9BA = Info D9CA = cIOS USB2 Installer D9FA = Dump D9GA = Wad Creator D9HA = WakeMiiUp D9IA = SNES9xGX Channel Installer D9KA = Txtread D9LA = Forwarder DA1A = Radianwars DA2A = Moonstone DA3A = Wiitch DA4A = arCard+Wii DA6A = Automatii DA7A = Astronomy DA8A = Beer Belly Bill 3 Grillieren DA9A = Achtung Wii Kurve DAAA = WiiNetPuzzle DAHA = Accio Hacks DALJ01 = Dairantou Smash Brothers DX (Demo) DAMA = MegaCodeDownloader DAPA = Map Maker DARA = Anyregion Changer DASA = Aspirin DASE4Q = Disney Epic Mickey (Demo) DATA = AnyTitle Deleter DATD = AnyTitle Deleter DAUEPZ = Country Dance (Demo) DAVA = Avoidance DAVE01 = Mystery Case Files: The Malgrave Incident (Demo) DAWA = Abuse Wii DAXE01 = The Legend of Zelda: Skyward Sword (Demo) DAXP01 = The Legend of Zelda: Skyward Sword (Demo) DB0A = Spitits DB2A = Mad Bomber DB3A = Squarez DB5A = mapbf DB7A = Blacks Dash DB9A = Robi DBAA = BowFishing Action DBBA = Balance Board Tools DBBE18 = Beyblade: Metal Fusion - Battle Fortress (Demo) DBCA = BootMii Configuration Editor DBDA = Bluedump DBGA = BlastGuy DBIA = Boot It DBKE69 = Boom Blox (Demo) DBKP69 = Boom Blox (Demo) DBLA = BlueMSX-wii DBMA = BootIOS DBPA = Balance Board Pro DBRA = WiiBrowser DBSA = BrawlStats DBTA = Bolt Thrower DBUA = Buttoncast DBWA = Reversmii DBXA = Biniax 2 DBZJ08 = Biohazard Zero: Trial Edition DC6A = Frodo (C64-network.org) DC7A = Calculate DCAA = Wiicasino DCAE18 = Calling (Demo) DCBA = CascadeBeneath DCCA = Christmascountdown DCDA = cIOS Downgrader DCEA = Cheat Manager DCFA = Coverfloader DCGA = Ctr-Gcs DCHA = Wiichatter DCHEAF = We Cheer (Demo) DCHJAF = We Cheer: Ohasta Produce ! Gentei Collabo Game Disc DCIA = cIOS Installer DCLA = Configurable USB Loader DCMA = Wiicm DCNA = Nandclean DCOA = Connectmii DCPA = Splatter Castle DCRA = CosmoRaketti DCSA = Cert.sys Extractor DCTA = Christmas-Type Adventure Time DCUA = cIOS Uninstaller DCVA = WiiColEm DCWA = WiiMC Channel Installer DCXA = ComixChannel DCYA = Cylinder Dodge DD2A = Double Dash Wii DD2P41 = Just Dance 2 (Demo) DD3A = Dario DD5A = Dcvg5k DD9A = Dungeons DDAA = Darkcorp DDBA = DOSBox Wii DDCA = d2x cIOS Installer DDDA = Disk Drive Lighter DDEA = WiiModder DDFA = Defendguin DDHA = Homebrew Disc Launcher DDIA = DiiLC DDLA = Disc Loader DDMA = DragonMedia Player DDOA = DOP-Mii DDRA = Wii Duplicated Channel Remover DDSA = DeSmuME DDVA = Devolution DDWA = DOP Mii Wiibrew Edition DDWE18 = Lost in Shadow - Press Disc (Demo) DDWX18 = Lost In Shadow - Best Buy (Demo) DE2A = Doubledown DE5A = Pictogrid DE7A = Commander Keen DE9A = Wii Bash DEAA = Headtracking Demo DEBA = Pong Breaker DEDA = Txted DEEA = Eeeek Eeeeek Hooooook DEFA = Fuse DEHA = Chess DEME = PunEmu DEPA = Pacman DERA = Elongated Reptile DETA = MPlayer TT DEWA = Wii Exhibit DEZP8P = Billy Hatcher and the Giant Egg (Demo) DF0A = Mini FSToolbox DF2A = Da ShAmAn DF3A = Briickout DF4A = Star Catching DF5A = Strobe Alarm Clock DF6A = Wii Quizz DF7A = Chatnoir DF8A = Trinary DF9A = Chunk Munch DFBA = Fsbrowser DFEA = FlipEm DFFA = Simple fs dumper DFGA = Smashing! DFIA = Fceugx Channel Installer DFLA = Starfall DFMA = FMyLife DFRA = FridgeMagnets DFSA = Fstoolbox DFTA = FTPii DFUA = Fuse DG3A = Giddy 3 DG7A = WiiPeng DG8A = Abusimbel Deluxe DG9A = Garnatron DGBA = Geexbox DGCA = GameCube Backup Launcher DGEA = GeckoOS DGFA = Guitars On Fire DGGA = Wii Rick Dangerous DGIA = Gravitii DGKA = ProjectGMC DGMA = GCMM DGPA = Genesis Plus DGSA = Shooting Gallery DGWA = Goodbye World DGXA = GxGeo DH7A = Harmony's Nightmare DH9A = Prophecy DHBA = Homebrew Browser DHCA = Hero City DHDA = Hidtest DHEA = Helium Boy DHFA = Homebrew Filter DHGA = HuGo-GX DHHA = HHexen DHHJ8J = Hirano Aya Premium Movie Disc from Suzumiya Haruhi no Gekidou DHIA = HackMii Installer DHKE18 = Help Wanted: 50 Wacky Jobs (Demo) DHLA = Heli DHMA = CharioMan DHSA = Homebrew Sorter DHTA = Hatari DHWA = We are nowhere DHXA = Hex DI5A = Tanks DI7A = ExistenzE DI8A = Ios58 Installer DI9A = Barrage DIBA = Revolt of the Binary Couriers DICA = Cubic DIEA = EasyIOS DIGA = Categorii DIIA = iiii DIMA = Inspectmii DINA = Mii Installer DIRA = Ironing Maiden DISA = Wii Supersonic DITA = IOS236 Installer DIXA = cIOSx installer DIYP01 = New Super Mario Bros. Wii 0-4 D.I.Y. DJAA = Arcade Jigsaw DJCA = Wii JellyCar DJFA = Joyflow DJJA = Jumping Jack DJQA = Jewel Quest DJWA = Wii System Menu DJZA = JzintvWii DK1A = Karaokii DK3A = Sketch Fight DK4A = Drawingbox DK6A = King of Fighters: Flames of Courage DK6E18 = Marble Saga Kororinpa (Demo) DK6J18 = Kororinpa 2 (Demo) DK7A = Uschtris DKBA = RPG Baker DKCA = Tick Tock Car Race DKCP01 = Darky Kart Riivo DKDA = Darkcube DKHA = Katakana and Hiragana Practice DKKA = Koreankii DKOA = Komopong DKPA = Kidspaint DKSA = Wii Stpp DKTA = Taiko DKWA = Kurushi DKWE01 = Darky Kart Wii Vol. 1 DKWE02 = Darky Kart Wii Vol. 2 DKWE03 = Darky Kart Wii Vol. 3 DKWE04 = Darky Kart Wii Vol. 4 DL3A = Ballion DL4A = LPairs DL5A = Gameload DL7A = LabClone DLBA = My Little Ball DLCA = Dance Clone DLDA = Devilock DLEA = Preloader DLFA = LifeMii DLGA = Gravity Glider DLIA = WiiMod Lite DLLA = Lolicopocalypse DLMA = LoadMii DLNA = Lander DLOA = Lightsout DLPA = Lopan DLSE64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLSP64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLTA = Leveltool DLUA = WiiLauncher DLXA = Linux Installer DLZEPW = Super Smash Bros Phoenix Wings DM0A = Pom DM5A = Missle Command DM7A = Matches DM9A = Checkregion DMAA = Mame Wii DMBA = Multiboot DMCA = Cleanrip mod DMDA = WiiMod DMEA = Mii Extractor DMFA = WiiMednafen DMGA = Mighty Channels DMHA = NanoMechas DMHE08 = Monster Hunter Tri (Demo) DMHJ08 = Monster Hunter Tri (Demo) DMIA = DIOS MIOS Booter DMJA = Mahjongg Wii DMKE01 = Mario Kart Wii 2 DMLA = Mighty Loader DMMA = MyMenuify DMNA = Magic Number DMOA = cMIOS installer DMPA = MPlayer CE DMRA = MIOS Patcher DMSA = ShutMiiReboot DMSP4Q = SingItStar: Best of Disney DMTA = Metronome DMUA = Multi Mod Manager DMWA = Wakemiiup DN0A = Thatother DN7A = Alien Breed DN9A = Point and No Click DNAA = Ncard DNCA = NeoCD-Wii DNDA = Nintendont DNEA = Gravity DNGA = NeoGamma Launcher DNHA = Headings DNIA = Bugin DNKA = Neko Project II DNMA = Newo Model Viewer DNNA = Save installer DNOA = O.T.T.F. DNPA = NeoPopWii DNRA = Newo Runner DNSA = Newo Shooter DNTA = NeoTanks DNUEDA = Naruto Clash of Ninja 2 (Demo) DNWA = Nowell DO2A = O2EM DO3A = Three Point O DO4A = MTP DO5A = Planet Hively DO6A = Mini MP3 Player DOCA = Code Downloader DOEA = ShowTest DOGA = Wii Maze of Galious DOHA = HighOctane DOIA = Neogamma IOS Switcher DOMA = Mole DONA = Offline Network Enabler DOOA = Doom DOPA = PowerCheck DORA = Rebooter DOTA = OpenTTD DP0A = Starplit DP1A = Italian Parking DP2A = Pong2 DP3A = Inkpoly DP4A = Piirates DP5A = Pix DP6A = IOS36 patcher DP7A = Brawl+ Updatifier DP8A = Timeless DP9A = Alien Puzzle Wii DPAA = WiiPaintBall DPBA = Priibootergui DPCA = Cherophobe DPEA = PieChart DPFA = Pwiictogrid DPGA = Pingus DPIA = Patched IOS 80 Installer for vWii DPIE18 = Oops! Prank Party (Demo) DPJA = Project M Launcher DPKA = Physco DPLA = Priiloader DPMA = Music Painter DPNA = RPG Pineapple Apocalypse DPNP08 = P.N.03 (Promo) DPOA = Postloader DPPA = Project Panic DPRA = PlasmaRaketti DPSA = Playstats DPTA = Two Point Five DPVA = Pattview DPWA = Pimp my Wii DQ1A = Q1rev DQ2A = Q2rev DQ6A = Light DQ7A = Quake DQ8A = LuaFWii DQ9A = Wiihttpd DQAJK2 = Aquarius Baseball DQAJSC = Aquarius Baseball (Simplified Chinese Translation) DQBA = Bible Quiz DQCA = Q2ctfrev DQGP69 = MySims Racing (Demo) DQRA = Qrevpak DQWA = Quakegx DR0A = Rokoban DR1A = Wii Whiteboard DR3A = Death Star Run DR4A = Rock Paper Scissors DR5A = Briicks DR6A = Reader DR7A = RockBlueMet DR8A = Operation DR9A = PixelPlot DRAA = RetroArch-Wii DRBA = Rock Band 2 Wad Installer DRCA = Wiicross DRDA = Drawmii DREA = Wiirecipe DRFA = Radiofeeds DRGA = Reggie Dumper DRIA = Cleanrip DRKA = Robotfindskitten DRMA = Mr. Sitwell DRME18 = Rooms: The Main Building (Demo) DROA = SlimeRoll DRP22Q = SingItStar Deutsch Rock-Pop Vol. 2 DRPA = Marcos Lopez Part II DRRA = Riiper DRSA = RedSquare DRTA = Tetris Custom DRUA = Radiofeeds Updater DRVA = Residualvm DRWA = Winterman DRZA = Zerace DS0A = ShootMii DS1A = Another Rock Paper Scissors DS2A = Swingball2 DS3A = Senet DS4A = Sar DS5A = Snaketwo DS6A = Scogger DS7A = Swing Ball DS8A = Scape DS9A = Minesweeper DSAA = Schism Tracker DSBA = SpaceBubble DSCA = Softchip DSDA = Superdump DSEA = Settings Editor GUI DSFA = Sciifii DSFE7U = Muramasa: The Demon Blade (Demo) DSGA = Savegame Manager DSHA = SysCheck HacksDen Edition DSIA = Simple IOS Patcher DSKA = SockDreams DSLA = Wii Stella DSMA = Sega Master System Plus DSNA = SNES9xGX DSOA = Bermuda Syndrome Wii DSPA = Super Star Shooter DSQA = Sqrxz DSRA = Wiistrobe DSRJ8P = Sonic and the Secret Rings (Demo) DSSA = RSSMii DSTA = Wii Solitaire DSUA = Super Mario War DSVA = scummVM DSWA = SuperTux Wii DSXA = Super Pixel Jumper DSYA = Syscheck DT0A = Tower Defense DT1A = Turnip DT2A = Matching Cards DT3A = Bichejos DT4A = Soduku DT5A = Poker DT6A = Simon DT7A = TheyDoNotDie DTAA = Wii Tac Toe DTCA = The Catachthonic DTDA = Descent DTEA = Topedit DTFA = Triiforce DTHA = Heretic DTIA = Wiitriis DTJA = Trojan DTKA = Tick Tock Tank Fight DTLA = TailTale DTLX01 = Action Replay DTMA = Tetrominos DTNA = Tunnel DTOA = Tong DTPA = Paintown DTRA = Trucha Bug Restorer DTSA = Desert Bus DTTA = Toddtris DTWA = Wiitweet DTXA = Texttris DU0A = Dumpmiinand DU7A = Uno DU8A = RealWnd DU9A = Harmonium DUAA = UAE Wii DUAP01 = DU Super Mario Bros. : Anniversary Edition DUBA = Multibu DUCE01 = Kustom Mariokart Wii DUDA = Duck Hunt DUDE01 = New Super Mario Bros. Wii Scooby-Doo! Hack DUGA = Guitar Fun DUIA = ChessUI DULA = USB Loader GX DUNA = Uname DUSA = bootOperaModUSB DUTG = DU Tag Channel DUWA = Waninkoko's USB Loader DV0A = Remove Preloader Hacks DV3A = DVD Browser DV9A = SensorMii DVDA = cIOS DVD Dumper DVGA = The Video Game DVHA = Horror Vacui DVIA = Vbagx Channel Installer DVJP08 = Viewtiful Joe (Promotional demo) DVLA = Vigiroth le livreur DVNA = Wiivnc DVOA = Vectoroids DVPA = Progressiveswitch DVSA = GameCube Saver DVXA = VectrexWii DW1A = Intuitwars DW5A = Marel DW6A = Wiicraft DW7A = Ravewild DWAA = WiiApple DWBA = WiirtualBoy DWCA = WiiFlow Channel Installer DWDA = Wiiflow Banner Downloader DWEA = WiiEarth DWEPA4 = Pro Evolution Soccer 2008 (Demo) DWFA = WiiFlow DWHA = WiiHandySDL DWJA = Jewel DWKA = Wiibreaker DWLA = Wii-Linux DWMA = WAD Manager DWNA = Nwancat DWPA = WiiPhysics DWRA = WiiRadio DWSA = WiiSX DWTA = Wiituka DWUA = Wufe DWWA = Winters End DWXA = WiiXplorer DX3A = Midway Space Invaders Emulator DX4A = Brawl DX Launcher DX5A = MP3+G Player DX6A = Build Blocks DX7A = Roxoptr2 DX8A = Hexen DX9A = Sand Traps DXBA = Wii X Ball DXCA = CorsixTH DXDA = DVDX DXEA = SDExplorer DXHA = Texas Holdem Poker DXIA = Piixelator DXLA = WiiXL DXNA = bootnetflix DXPA = Xeempongwii DXQA = Quadrax DXSA = Save extractor DXSE18 = Deca Sports (Demo) DXTA = The Lone Pixel DXXA = Hexxagon DXYA = xyzzy DXZA = Megazeux DY5A = Darkcorp Lite DY6A = Liqwiid Wars DY9A = TetWiis DYAA = Syasokoban DYBA = Yabause DYCA = Tetricycle DYEA = Epilepsii DYGA = Yog DYHA = Hypno Blast DYIA = Chippy DYMA = YAWMM DYOA = Toy Wars DYPA = PongYourWii DYSA = Shiny tank DYTA = Newo Tokyo DYUA = UFO Racer DYWA = Yahtzwii DYYA = System Setting Replace Tool DZ0A = Eject DZ7A = SameGame DZ8A = WiiMPC DZ9A = Teeter Torture DZDE01 = The Legend of Zelda: Twilight Princess (Demo) DZDP01 = The Legend of Zelda: Twilight Princess (Demo) DZIA = Ziip DZPA = Puzsion DZQA = Quizz DZRA = Rezerwar DZSA = Szigoy DZXA = FBZX Wii DZYA = Snake Two DZZA = OpenJazz E52E = 1942 E52J = 1942 E52P = 1942 E53E = Black Tiger E53J = Black Dragon E53P = Black Tiger E54E = Ghosts 'n Goblins E54J = Makaimura E54P = Ghost'n Goblins E55E = Commando E55J = Senji no Ookami E55P = Commando E56E = Exed Exes E56J = Exed Eyes E56P = Exed Exes E57E = SonSon E57J = Son Son E57P = SonSon E58J = Mr. Do! E59J = Karate Dou E5AJ = Ikki E5BJ = Shanghai E5VJ = Renegade E5WE = Wonder Boy in Monster Land E5WJ = Wonder Boy in Monster Land E5XJ = Puyo Puyo Tsu E5YJ = Puyo Puyo E5ZE = Super Hang-On E5ZJ = Super Hang-On E62E = Space Harrier E62J = Space Harrier E62P = Space Harrier E63E = Shinobi E63J = Shinobi Virtual Arcade E63P = Shinobi E64J = Rolling Thunder 2 E65J = Valkyrie no Densetsu E66J = Ordyne E67J = Dig Dug E68J = Galaga E69J = Baraduke E6AJ = Moon Cresta E6BJ = Crazy Climber E6CJ = Rompers E6DJ = Toy Pop E6EJ = Libble Rabble E6FJ = Galaxian E6GJ = Namco Quester E6HJ = Face Off E6IJ = Trink Force E6JJ = Bakutotsu Kijuutei: BaRaDuKe II E6KJ = Chouzetsu Rinjin - Berabow Man E6LJ = Marchen Maze E6ME = Tecmo Bowl E6MJ = Tecmo Bowl E6NE = Solomon's Key E6NJ = Solomon no Kagi E6NP = Solomon's Key E6OJ = Bomb Jack Arcade E6PE = Ninja Gaiden E6PJ = Ninja Ryukenden Arcade E6PP = Ninja Gaiden E6QE = Rygar E6QJ = Argos no Senshi E6QP = Rygar E6SJ = New Rally-X E6VE = Zaxxon 3-D E6VJ = Zaxxon E6VP = Zaxxon E6WE = Golden Axe E6WJ = Golden Axe E6WP = Golden Axe E6XE = Altered Beast E6XP = Altered Beast E6YJ = Space Invaders E6ZE = Starforce E6ZJ = Star Force E6ZP = Star Force E72J = Starblade E73E = Mappy E73J = Mappy E73P = Mappy E74J = Cosmo Gang the Puzzle E75J = Genpei Toumaden E76J = Emeraldia E77J = The Return of Ishtar E78J = Solvalou E79E = Gaplus E79J = Gaplus E79P = Gaplus E7AJ = Grobda E7BJ = Dig Dug II E7CJ = Bosconian E7EJ = Dragon Buster E7FJ = Dragon Saber E7GJ = Dragon Spirit E7HJ = Xevious E7IJ = Finest Hour E7JJ = Knuckle Heads E7KJ = Pac-Mania E7LJ = Cosmo Gang the Video E7MJ = Phelios E7NJ = Rolling Thunder E7OJ = Burning Force E7PJ = Marvel Land E7QJ = Galaga '88 E7RJ = Wonder Momo E7SJ = Assault E7TJ = Hopping Mappy E7UJ = Splatterhouse E7VJ = Cyber Sled E7WJ = Numan Athletics E7XJ = Youkai Douchuki E7YJ = Sky Kid E7ZE = The Tower of Druaga E7ZJ = Druaga no Tou E7ZP = The Tower of Druaga EA2E = Metal Slug 2 EA2J = Metal Slug 2 EA2P = Metal Slug 2 EA3J = Galaxy Fight: Universal Warriors EA4E = Samurai Showdown III EA4J = Samurai Spirits Kibeniro Musouken EA4P = Samurai Shodown III EA5E = Fatal Fury 3: Road to the Final Victory EA5J = Garou Densetsu 3: Road to the Final Victory EA5P = Fatal Fury 3: Road To The Final Victory EA6E = The King of Fighters '96 EA6J = The King of Fighters '96 EA7E = Samurai Shodown IV: Amakusa's Revenge EA7J = Samurai Spirits: Amakusa Kourin EA8E = Ironclad EA8J = Ironclad: Chotetsu Brikinger EA8M = Iron Clad EA9J = Waku Waku 7 EAAE = Fatal Fury EAAJ = Garou Densetsu: Shukumei no Takatai EAAP = Fatal Fury EABE = World Heroes EABJ = World Heroes EABP = World Heroes EACE = Magician Lord EACJ = Magician Lord EACP = Magician Lord EADE = Art of Fighting EADJ = Ryuuko no Ken EADP = Art of Fighting EAEE = Samurai Showdown EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen EAEP = Samurai Showdown EAFE = Blue's Journey EAFJ = Raguy EAFP = Blue's Journey EAGE = The King of Fighters '94 EAGJ = The King of Fighters '94 EAGP = The King of Fighters '94 EAHE = Baseball Stars 2 EAHJ = Baseball Stars 2 EAHP = Baseball Stars 2 EAIE = Top Hunter EAIJ = Top Hunter EAIP = Top Hunter EAJE = Metal Slug EAJJ = Metal Slug EAJP = Metal Slug EAKE = Burning Fight EAKJ = Burning Fight EAKP = Burning Fight EALE = Art of Fighting 2 EALJ = Ryuuko no Ken 2 EALP = Art of Fighting 2 EAME = Ninja Combat EAMJ = Ninja Combat EAMP = Ninja Combat EANE = Fatal Fury 2 EANJ = Garou Densetsu 2: Aratanaru Tatakai EANP = Fatal Fury 2 EAOE = King of the Monsters EAOJ = King of the Monsters EAOP = King of the Monsters EAPE = Ninja Commando EAPJ = Ninja Commando EAPP = Ninja Commando EAQE = WORLD HEROES 2 EAQJ = World Heroes 2 EARE = Neo Turf Masters EARJ = Neo Turf Masters EARP = Neo Turf Masters EASE = Samurai Showdown 2 EASJ = Shin Samurai Spirits Haoumaru Jigokuhen EASP = Samurai Shodown II EATE = WORLD HEROES 2 JET EATJ = World Heroes 2 Jet EAUJ = Twinkle Star Sprites EAVE = The King of Fighters ’95 EAVJ = The King of Fighters '95 EAVP = The King of Fighters '95 EAWE = Fatal Fury Special EAWJ = Garou Densetsu Special EAWP = Fatal Fury Special EAYJ = King of The Monsters 2 EAZE = WORLD HEROES PERFECT EAZJ = World Heroes Perfect EB2E = REAL BOUT FATAL FURY SPECIAL EB2J = Real Bout Garou Densetsu Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB6E = Metal Slug 3 EB6J = Metal Slug 3 EB6P = Metal Slug 3 EB7J = The Super Spy EB8E = SHOCK TROOPERS EB8J = Shock Troopers EB9J = Pulstar EBAE = Magical Drop II EBAJ = Magical Drop 2 EBAP = Magical Drop II EBBE = Fighters History Dynamite EBBJ = Fighter's History Dynamite EBBP = Karnov's Revenge EBCJ = Flying Power Disc EBDE = Magical Drop III EBDJ = Magical Drop III EBDP = Magical Drop 3 EBEE = Street Slam EBEJ = Dunk Dream EBEP = Street Hoop EBFE = Spin Master EBFJ = Miracle Adventure EBFP = Spin master EBGE = The King of Fighters '97 EBGJ = The King of Fighters '97 EBKJ = Last Resort EBLJ = Tsuukai GanGan Koushinkyoku EBMJ = Fire Suplex EBNJ = Fu'un Mokushiroku: Kakutou Sousei EBOJ = Fu'un Super Tag Battle EBPJ = League Bowling EBQE = NINJA MASTER'S EBQJ = Ninja Master's Haou Ninpou-chou EBRJ = Joy Joy Kid EBSE = The Path of the Warrior: Art of Fighting 3 EBSJ = Art of Fighting: Ryuuko no Ken Gaiden EBTJ = Crossed Swords EBUE = 2020 SUPER BASEBALL EBUJ = Super Baseball 2020 EBVJ = Shin-Oh-Ken EBWE = SENGOKU EBWJ = Sengoku Denshou EBXE = SENGOKU 2 EBXJ = Sengoku 2 EBZE = REAL BOUT FATAL FURY EBZJ = Real Bout Garou Densetsu ECAE = Real Bout Fatal Fury 2: The Newcomers ECAJ = Real Bout Garou Densetsu 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECDJ = Stakes Winner: G1 Kanzen Seihahe no Michi ECEE = THE LAST BLADE 2 ECEJ = Bakumatsu Rouman Dai Ni Maku: Gekka no Kenshi ECFJ = Blazing Star ECGE = Shock Troopers: 2nd Squad ECGJ = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECJE = The King of Fighters '99 ECJJ = Metal Slug 4 ECKE = NAM-1975 ECKJ = NAM-1975 ECLJ = Stakes Winner 2 ECMJ = Tokuten Oh: Honoo no Libero ECNE = Sengoku 3 ECNJ = Sengoku Denshou 2001 ENDP01 = New SUPER MARIO BROS. Wii 20 The End For Now EVOP01 = New Super Mario Bros. Wii 0-5 Evolution FA2J = Exerion FA3J = Formation Z FA4J = Devil World FA4P = Devil World FA5J = Fire Emblem: Ankoku Ryu to Hikari no Tsurugi FA6E = Donkey Kong Jr. Math FA6J = Donkey Kong Jr. no Sansuu Asobi FA6P = Donkey Kong Jr. Math FA7E = Yoshi FA7J = Yoshi no Tamago FA7K = Yoshi FA7P = Mario & Yoshi FA8E = Kirby's Adventure FA8F = Kirby's Adventure FA8J = Hoshi no Kirby: Yume no Izumi no Monogatari FA8K = Kirby's Adventure FA8P = Kirby's Adventure FA9E = Zelda II: The Adventure of Link FA9J = The Legend of Zelda 2: Link no Bouken FA9P = Zelda II: The Adventure of Link FAAE = Donkey Kong FAAJ = Donkey Kong FAAK = Donkey Kong FAAP = Donkey Kong FABE = Donkey Kong Jr. FABJ = Donkey Kong Jr. FABP = Donkey Kong Jr. FACE = Pinball FACJ = Pinball FACP = Pinball FADJ = Gomoku Narabe Renju FAFE = Mario Bros. FAFJ = Mario Bros. FAFK = Mario Bros. FAFP = Mario Bros. FAGE = Super Mario Bros. FAGJ = Super Mario Bros. FAGK = Super Mario Bros. FAGP = Super Mario Bros. FAHE = Tennis FAHJ = Tennis FAHP = Tennis FAIE = Soccer FAIJ = Soccer FAIP = Soccer FAJE = Ice Hockey FAJJ = Ice Hockey FAJP = Ice Hockey FAKE = The Legend of Zelda FAKJ = Zelda no Densetsu FAKK = The Legend of Zelda FAKP = The Legend of Zelda FALE = Baseball FALJ = Baseball FALP = Baseball FAME = Wario's Woods FAMJ = Wario no Mori FAMP = Wario's Woods FANE = Urban Champion FANJ = Urban Champion FANK = Urban Champion FANP = Urban Champion FAOE = Solomon's Key FAOJ = Solomon no Kagi FAOP = Solomon's Key FAPE = NES Open Tournament Golf FAPJ = Mario Open Golf FAPK = NES Open Tournament Golf FAPP = NES Open Tournament Golf FAQJ = Ninja Jajamaru-kun FAQL = Ninja JaJaMaru-kun FAQN = Ninja JaJaMaru-kun FARE = Gradius FARJ = Gradius FARP = Gradius FASE = Xevious FASJ = Xevious FASK = Xevious FASP = Xevious FATE = The Legend of Kage FATJ = Kage no Densetsu FAVE = Tecmo Bowl FAVJ = Tecmo Bowl FAWE = Elevator Action FAWJ = Elevator Action FAXE = Pac-Man FAXJ = Pac-Man FAXK = Pac-Man FAXP = Pac-Man FAYJ = Ikki FAZJ = Field Combat FAZK = Downtown Nekketsu Koushinkyoku: Soreyuke Daiundoukai FB2J = Super Mario Bros. 2 FB2L = Super Mario Bros.: The Lost Levels FB2N = Super Mario Bros.: The Lost Levels FB3J = Valkyrie no Bouken: Toki no Kagi Densetsu FB4E = Lunar Pool FB4J = Lunar Ball FB4P = Lunar Pool FB5E = Zanac FB5J = Zanac FB6J = Front Line FB7J = Nuts & Milk FB8J = Challenger FB9J = Pooyan FBAJ = Smash Ping Pong FBAL = Smash Table Tennis FBBE = Mach Rider FBBJ = Mach Rider FBBP = Mach Rider FBCE = Excitebike FBCJ = Excitebike FBCP = Excitebike FBDE = Kid Icarus FBDJ = Hikari Shinwa: Palutena no Kagami FBDK = Kid Icarus FBDP = Kid Icarus FBEE = Ice Climber FBEJ = Ice Climber FBEP = Ice Climber FBHE = Castlevania FBHJ = Akumajou Dracula FBHP = Castlevania FBIE = Punch Out!! Featuring Mr. Dream FBIJ = Punch-Out!! FBIP = Punch-Out!! FBJE = Mighty Bomb Jack FBJJ = Mighty Bomb Jack FBJP = Mighty Bomb Jack FBKE = Teenage Mutant Ninja Turtles FBKJ = Gekikame Ninja Den FBKP = Teenage Mutant Ninja Turles FBLE = Lode Runner FBLJ = Lode Runner FBLM = Lode Runner FBNE = Ninja Gaiden FBNJ = Ninja Ryuukenden FBNM = Ninja Gaiden FBOJ = Gradius II FBQJ = Druaga no Tou FBRE = Galaga FBRJ = Galaga FBRK = Galaga FBRP = Galaga FBSE = Milon's Secret Castle FBSJ = Meikyuu Kumikyoku: Milon no Daibouken FBSM = Milon's Secret Castle FBUE = Adventures of Lolo FBUJ = Adventures of Lolo FBUK = Adventures of Lolo FBUP = Adventures of Lolo FBVJ = Tsuppari Oozumou FBWJ = Joy Mech Fight FBWK = Joy Mech Fight FBXJ = Famicom Wars FBYE = Super Mario Bros. 2 FBYJ = Super Mario USA FBYK = Super Mario USA FBYP = Super Mario Bros. 2 FBZE = Metroid FBZJ = Metroid FBZP = Metroid FC2J = Hanjuku Hero FC3E = Bubble Bobble FC3J = Bubble Bobble FC3K = Bubble Bobble FC3P = Bubble Bobble FC4J = Chack'n Pop FC5J = Ganbare Goemon Karakuki Douchuu FC6E = StarTropics FC6J = Startropics FC6P = StarTropics FC7E = NES Play Action Football FC7J = NES Play Action Football FC8E = Castlevania II Simon's Quest FC8J = Dracula II: Noroi no Fuuin FC8P = Castlevania II: Simon's Quest FC9J = Metal Slader Glory FCAE = Star Soldier FCAJ = Star Soldier FCEJ = Esper Dream FCEU = FCE Ultra GX FCFJ = Yie Ar Kung Fu FCGJ = TwinBee FCHJ = Flappy FCIJ = Volguard 2 FCJJ = SD Gundam World: Gachapon Senshi 2 - Capsule Senki FCNJ = Kekkyoku Nankyoku Daibouken FCNK = Antarctic Adventure FCOJ = Battle City FCPE = Balloon Fight FCPJ = Balloon Fight FCPP = Balloon Fight FCQE = Ninja Gaiden II: The Dark Sword of Chaos FCQJ = Ninja Gaiden Two FCRE = Adventure Island FCRJ = Takahashi Meijin no Boukenjima FCRK = Hudson's Adventure Island FCRP = Adventure Island FCSE = Super C FCSJ = Super Contra FCSP = Probotector II: Return of the Evil Forces FCTE = Mega Man FCTJ = RockMan FCTP = Mega Man FCUE = Volleyball FCUJ = Volleyball FCUP = Volleyball FCVE = Wrecking Crew FCVJ = Wrecking Crew FCVP = Wrecking Crew FCWE = Super Mario Bros. 3 FCWJ = Super Mario Bros. 3 FCWK = Super Mario Bros. 3 FCWP = Super Mario Bros. 3 FCYE = Yoshi’s Cookie FCYJ = Yoshi no Cookie FCYK = Yoshi's Cookie FCYP = Yoshi’s Cookie FCZE = King's Knight FCZJ = Kings Knight FD2E = Double Dragon FD2J = Double Dragon FD2P = Double Dragon FD3J = Nekketsu Koukou Dodgeball-bu Soccer-hen FD3K = Nekketsu Koukou Dodgeball-bu Soccer-hen FD6E = Adventures of Lolo 2 FD6P = Adventures of Lolo 2 FD7E = Mega Man 3 FD7J = RockMan 3: Dr. Wily no Saigo?! FD7P = Mega Man 3 FDAE = Spelunker FDAJ = Spelunker FDAM = Spelunker FDBJ = Famicom Mukashi Banashi: Shin Onigashima - Kouhen FDCJ = Star Luster FDEJ = Mappy FDFE = Bases Loaded FDFJ = Moero!! Pro Yakyuu FDGE = Ghosts'n Goblins FDGJ = Makai-Mura FDGP = Ghosts'n Goblins FDIJ = Bokosuka Wars FDLE = Ninja Gaiden III: The Ancient Ship of Doom FDLJ = Ninja Gaiden Three FDNE = Mega Man 2 FDNJ = RockMan 2 FDNP = Mega Man 2 FDOE = Operation Wolf FDOJ = Operation Wolf FDOP = Operation Wolf FDPE = Blades of Steel FDPP = Blades of Steel FDQE = Double Dribble FDQP = Double Dribble FDRP = Skate or Die FDSJ = Famicom Tantei Club: Kieta Koukeisha (Kouhen) FDTE = Renegade FDTJ = Renegade FDUE = Super Dodge Ball FDUJ = Nekketsu Koukou Dodge Ball Bu FDVE = River City Ransom FDVJ = Downtown Nekketsu Monogatari FDVK = Downtown Nekketsu Monogatari FDVP = Street Gangs FDWJ = Downtown Special: Kunio-kun no Jidaigeki Dayo Zenin Shuugou! FDXJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo (Kouhen) FDYJ = Fire Emblem Gaiden FDZJ = Downtown Nekketsu Koushinkyoku FE5J = Toukaidou Gojuusan Tsugi FE6J = Ninja kun Majyou no Bouken FE7J = Ninja kun Ashura no Shou FE8J = Takeshi no Chousenjou FE9J = Ike Ike! Nekketsu Hockey-bu: Subette Koronde Dairantou FECE = Skykid FECJ = Sky Kid FEDJ = Dig Dug FEDL = Dig Dug FEDN = Dig Dug FEEJ = Tantei Jinguji Saburo: Shinjuku Chuo Koen Satsujin Jiken FEFJ = Detective Saburo Jinguji 2: Yokohama-Ko Renzoku Satsujin Jiken FEGJ = Tantei Jinguuji Saburo - Kikenna Futari - Zenkouhen FEHJ = Tantei Jinguuji Saburo: Toki no Sugiyuku Mama ni FEIE = City Connection FEIJ = City Connection FEIP = City Connection FEJJ = Nazo no Murasame Jou FELJ = Transformers: Convoy no Nazo FEMJ = Bio-Miracle Bokutte Upa FEML = Bio Miracle Bokutte UPA FEMN = Bio Miracle Bokutte UPA FENE = Life Force FENJ = Salamander FEOJ = Zoids: Mokushiroku FEPJ = Getsu Fuuma Den FEQE = Castlevania III: Dracula's Curse FEQJ = Akumajo Densetsu FEQP = Castlevania III Dracula's Curse FERE = Zoda’s Revenge: StarTropics II FERJ = Zoda's Revenge FERM = Startropics II: Zoda's Revenge FESE = Clu Clu Land FESJ = Clu Clu Land FESP = Clu Clu Land FEUE = Donkey Kong 3 FEUJ = Donkey Kong 3 FEUP = Donkey Kong 3 FEVJ = Atlantis no Nazo FEWJ = Dragon Buster FEXJ = Wagyan Land FF2J = Sugoro Quest: Dice no Senshi Tachi FF4E = BurgerTime FF4J = BurgerTime FF5E = Double Dragon II: The Revenge FF5J = Double Dragon 2: The Revenge FF6J = Ganbare Goemon 2 FF7J = Ganbare Goemon Gaiden: Kieta Ougon Kiseru FFAE = Final Fantasy FFAJ = Final Fantasy FFAM = Final Fantasy FFBJ = Final Fantasy II FFDE = Crash 'N The Boys Street Challenge FFDJ = Bikkuri Nekketsu Shin Kiroku! Harukanaru Kin Medal FFEE = A Boy and His Blob: Trouble on Blobolonia FFEP = A Boy and His Blob: Trouble on Blobolonia FFFJ = Final Fantasy III FFGJ = SD Gundam World: Gachapon Senshi - Scramble Wars FFJJ = Metal Max FFKJ = Championship Lode Runner FFLE = Princess Tomato in the Salad Kingdom FFLJ = Salad no Kuni no Tomato Hime FFME = Blaster Master FFMJ = Chou-Wakusei Senki MetaFight FFMP = Blaster Master FFNE = Mega Man 4 FFNJ = RockMan 4: Aratanaru Yabou!! FFNP = Mega Man 4 FFOJ = Moero TwinBee: Cinnamon Hakase o Sukue! FFPB = Ufouria: The Saga FFPJ = Furu Furu Park FFQE = Shadow of the Ninja FFQM = Shadow of the Ninja FFRE = Faxanadu FFRJ = Faxanadu FFRP = Faxanadu FFTJ = Binary Land FFUE = Adventure Island 2 FFUJ = Takahashi Meijin no Bouken Jima II FFUP = Adventure Island 2 FFVE = S.C.A.T. FFVP = S.C.A.T.: Special Cybernetic Attack Team FFWP = Donkey Kong: Original Edition FFXJ = 25th Anniversary SUPER MARIO BROS. FFXP = Super Mario Brothers: 25th Anniversary Exclusive FFYE = Mega Man 5 FFYJ = RockMan 5: Blues no Wana!? FFZJ = Seicross FFZY = Contra FJOR = Kung Fu FMCA = The Goonies G01E01 = Super Smash Bros. Melee: SD Remix G01J01 = Super Smash Bros. Melee: SD Remix G01P01 = Super Smash Bros. Melee: SD Remix G02E01 = Super Smash Bros. Melee: 20XX Training Pack G02J01 = Super Smash Bros. Melee: 20XX Training Pack G02P01 = Super Smash Bros. Melee: 20XX Training Pack G2BE5G = Black & Bruised G2BP7D = Black & Bruised G2CD52 = True Crime: New York City G2CE52 = True Crime: New York City G2CP52 = True Crime: New York City G2CX52 = True Crime: New York City G2FD78 = Tak 2: The Staff of Dreams G2FE78 = Tak 2: The Staff of Dreams G2FF78 = Tak 2: The Staff of Dreams G2FP78 = Tak 2: The Staff of Dreams G2GJB2 = Mobile Suit Gundam: Gundam vs. Z Gundam G2KE8P = NHL 2K3 G2KP8P = NHL 2K3 G2ME01 = Metroid Prime 2: Echoes G2MEAB = Metroid Prime 3 (E3 Beta) G2MJ01 = Metroid Prime 2: Dark Echoes G2MP01 = Metroid Prime 2: Echoes G2OE41 = Prince of Persia: Warrior Within G2OP41 = Prince of Persia: Warrior Within G2PE6U = Spirits And Spells G2RE52 = Shrek SuperSlam G2SJGE = Shikigami no Shiro II G2TE52 = Tony Hawk's Underground 2 G2TP52 = Tony Hawk's Underground 2 G2VE08 = Viewtiful Joe 2 G2VJ08 = Viewtiful Joe 2: Blackfilm no Nazo G2VP08 = Viewtiful Joe 2 G2XE8P = Sonic Gems Collection G2XP8P = Sonic Gems Collection G3AD69 = Lord of the Rings: The Third Age G3AE69 = Lord of the Rings: The Third Age G3AF69 = Lord of the Rings: The Third Age G3AP69 = Lord of the Rings: The Third Age G3AS69 = Lord of the Rings: The Third Age G3BE9G = Serious Sam: Next Encounter G3BP54 = Serious Sam: Next Encounter G3BP9G = Serious Sam: Next Encounter G3DE6L = Carmen Sandiego: The Secret of the Stolen Drums G3DP6L = Carmen Sandiego: The Secret of the Stolen Drums G3DX6L = Carmen Sandiego: The Secret of the Stolen Drums G3EE51 = XGIII: Extreme G Racing G3EJ51 = XGIII: Extreme G Racing G3EP51 = XGIII: Extreme G Racing G3FD69 = TimeSplitters: Future Perfect G3FE69 = TimeSplitters: Future Perfect G3FF69 = TimeSplitters: Future Perfect G3FP69 = TimeSplitters: Future Perfect G3FS69 = TimeSplitters: Future Perfect G3JEAF = Curious George G3LE8P = Super Monkey Ball Adventure G3LP8P = Super Monkey Ball Adventure G3ME41 = Tom Clancy's The Sum of All Fears G3MP41 = The Sum of All Fears G3NJDA = NARUTO Gekitô Ninja Taisen! 3 G3QEA4 = Teenage Mutant Ninja Turtles 3: Mutant Nightmare G3RD52 = Shrek 2 G3RE52 = Shrek 2 G3RF52 = Shrek 2 G3RP52 = Shrek 2 G3SE41 = Bust-A-Move 3000 G3TJ8P = Derby Tsuku 3: Derby Uma O Tsukurou! G3VE69 = NBA Street Vol.3 G3VP69 = NBA Street Vol.3 G3XE52 = X-Men: The Official Game G3XP52 = X-Men: The Official Game G3YP52 = Shrek Super Slam G3YX52 = Shrek Super Slam G3YY52 = Shrek Super Slam G4AEE9 = Harvest Moon: Magical Melody G4BE08 = Resident Evil 4 G4BJ08 = Biohazard 4 G4BP08 = Resident Evil 4: Wii Edition G4CE54 = Charlie and the Chocolate Factory G4CP54 = Sjakie en chocolade G4FD69 = FIFA 07 G4FE69 = FIFA Soccer 07 G4FF69 = FIFA 07 G4FP69 = FIFA 07 G4GEE9 = Harvest Moon: Another Wonderful Life G4IE52 = Shrek Smash n' Crash Racing G4IP52 = Shrek Smash n' Crash Racing G4ME69 = The Sims Bustin' Out G4MP69 = De Sims: Erop uit! G4NJDA = NARUTO Gekitô Ninja Taisen! 4 G4OE69 = The Sims 2 : Pets G4OP69 = The Sims 2 : Pets G4QE01 = Super Mario Strikers G4QJ01 = Super Mario Strikers G4QP01 = Mario Smash Football G4SE01 = The Legend of Zelda: Four Swords Adventures G4SJ01 = The Legend of Zelda: Four Swords + G4SP01 = The Legend of Zelda: Four Swords Adventures G4ZE69 = The Sims 2 G4ZP69 = De Sims 2 G5BE4Z = Strike Force Bowling G5DE78 = Scooby-Doo! - Unmasked G5DP78 = Scooby-Doo! - Unmasked G5NEAF = Namco Museum 50th Anniversary G5NP69 = Namco Museum 50th Anniversary G5SE7D = Spyro: A Hero's Tail G5SP7D = Spyro: A Hero's Tail G5TE69 = Tiger Woods PGA Tour 2005 G5TP69 = Tiger Woods PGA Tour 2005 G62E54 = Major League Baseball 2k6 G63E41 = Tom Clancy's Rainbow Six 3 G63P41 = Tom Clancy's Rainbow Six 3 G6FD69 = 2006 FIFA World Cup G6FE69 = 2006 FIFA World Cup G6FF69 = 2006 FIFA World Cup G6FP69 = 2006 FIFA World Cup G6ME69 = Madden NFL 06 G6MP69 = Madden NFL 06 G6NE69 = NBA Live 06 G6NP69 = NBA Live 06 G6QE08 = Mega Man Anniversary Collection G6SE7D = The Legend of Spyro: A New Beginning G6SP7D = The Legend of Spyro: A New Beginning G6TE5G = Teen Titans G6TP5G = Teen Titans G6TP78 = Teen Titans G6WE69 = Tiger Woods PGA Tour 06 G6WP69 = Tiger Woods PGA Tour 06 G7ME69 = Madden NFL 07 G89EAF = Pac-Man World Rally G8FE8P = Virtua Quest G8ME01 = Paper Mario: The Thousand-Year Door G8MJ01 = Paper Mario RPG G8MP01 = Paper Mario: The Thousand-year Door G8OJ18 = Bobobo-bo Bo-bobo Dassutsu! Hajike Royale G8SJAF = Battle Stadium D.O.N G8WE01 = Battalion Wars G8WP01 = Battalion Wars G94E01 = Interactive Multi-Game Demo Disc - August 2002 G95E01 = Interactive Multi-Game Demo Disc - July 2002 G96E01 = Interactive Multi-Game Demo Disc - June 2002 G97E01 = Interactive Multi-Game Demo Disc - March 2002 G97P01 = Interactive Multi Game Demo Disc - September 2002 G97U01 = Interactive Multi-Game Demo Disc - September 2002 G98E01 = Interactive Multi-Game Demo Disc - January 2002 G98P01 = Interactive Multi Game Demo Disc May 2002 G99E01 = Interactive Multi-Game Demo Disc - October 2001 G99P01 = Interactive Multi Game Demo Disc March 2002 G9BEE9 = Mark Davis Pro Bass Challenge G9RD7D = Crash Tag Team Racing G9RE7D = Crash Tag Team Racing G9RF7D = Crash Tag Team Racing G9RP7D = Crash Tag Team Racing G9SE8P = Sonic Heroes G9SJ8P = Sonic Heroes G9SP8P = Sonic Heroes G9TD52 = Shark Tale G9TE52 = Shark Tale G9TF52 = Shark Tale G9TI52 = Shark Tale G9TJC0 = Shark Tale G9TP52 = Shark Tale GA2E51 = All-Star Baseball 2002 GA3E51 = All-Star Baseball 2003 GA4E51 = All-Star Baseball 2004 GA7E70 = Backyard Sports Baseball 2007 GAAJ08 = Disney's Mickey & Minnie Trick & Chase GABEAF = Zatch Bell! Mamodo Fury GACE5H = Army Men: Air Combat The Elite Missions GAEJ01 = Doubutu no Mori e+ GAFE01 = Animal Crossing GAFJ01 = Animal Forest + GAFP01 = Animal Crossing GAFU01 = Animal Crossing GAGP70 = Asterix & Obelix XXL GAHEGG = Alien Hominid GAKE5D = Midway Arcade Treasures GALE01 = Super Smash Bros. Melee GALJ01 = Dairantou Smash Brothers DX GALP01 = Super Smash Bros. Melee GAME5H = Army Men Sarges War GANE7U = Animaniacs: The Great Edgar Hunt GANP7U = Animaniacs: The Great Edgar Hunt GAPE52 = American Chopper 2 - Full Throttle GAQE6S = Aquaman: Battle of Atlantis GARE5H = Army Men: RTS GASE8P = Sonic Adventure DX: Director's Cut (Review Prototype) GASJ8P = Sonic Adventure DX GATE51 = ATV Quad Power Racing 2 GATP51 = ATV Quad Power Racing 2 GAUE08 = Auto Modellista GAUJ08 = Auto Modellista: U.S.-tuned GAVE78 = Avatar The Last Airbender GAVP78 = Avatar: The Legend of Aang GAVY78 = Avatar: The Legend of Aang GAXE5D = The Ant Bully GAYE5D = Midway Arcade Treasures 2 GAZD69 = Harry Potter and the Prisoner of Azkaban GAZE69 = Harry Potter and the Prisoner of Azkaban GAZF69 = Harry Potter and the Prisoner of Azkaban GAZH69 = Harry Potter en de gevangene van Azkaban GAZI69 = Harry Potter and the Prisoner of Azkaban GAZJ69 = Harry Potter to Azkaban no Shuujin GAZM69 = Harry Potter and the Prisoner of Azkaban GAZP69 = Harry Potter and the Prisoner of Azkaban GAZS69 = Harry Potter and the Prisoner of Azkaban GB2J18 = Bomberman Land 2 GB3E51 = BMX XXX GB3P51 = BMX XXX GB4E51 = Burnout 2: Point of Impact GB4P51 = Burnout 2: Point of Impact GBAE8P = NBA 2K2 GBDE5G = BloodRayne GBDP7D = BloodRayne GBDS7D = BloodRayne GBFE70 = Backyard Football GBGE5G = Bomberman Generation GBGP7D = Bomberman Generation GBHDC8 = Mystic Heroes GBHEC8 = Mystic Heroes GBHFC8 = Mystic Heroes GBHJC8 = Battle Houshin GBHPC8 = Mystic Heroes GBIE08 = Resident Evil GBIJ08 = Biohazard GBIP08 = Resident Evil GBKE70 = Backyard Baseball GBLE52 = Bloody Roar: Primal Fury GBLP52 = Bloody Roar: Primal Fury GBME7F = Batman: Dark Tomorrow GBMP7F = Batman: Dark Tomorrow GBNJC0 = Warrior Blade: Rastan vs. Barbarian GBOE51 = Burnout GBOP51 = Burnout GBQE78 = Rocket Power: Beach Bandits GBQP78 = Rocket Power: Beach Bandits GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTP70 = Beyblade VForce - Super Tournament Battle GBVE41 = Batman: Vengeance GBVP41 = Batman Vengeance GBWD64 = Star Wars Bounty Hunter GBWE64 = Star Wars Bounty Hunter GBWF64 = Star Wars Bounty Hunter GBWP64 = Star Wars Bounty Hunter GBWS64 = Star Wars Bounty Hunter GBXE51 = Dave Mirra Freestyle BMX 2 GBXP51 = Dave Mirra Freestyle BMX 2 GBYE0A = Super Bubble Pop GBZE08 = Resident Evil Zero GBZJ08 = Resident Evil Zero GBZP08 = Resident Evil Zero GC2E9G = Conflict: Desert Storm II: Back to Baghdad GC2P75 = Conflict: Desert Storm II: Back to Baghdad GC3D78 = Scooby-Doo!: Mystery Mayhem GC3E78 = Scooby-Doo!: Mystery Mayhem GC3F78 = Scooby-Doo!: Mystery Mayhem GC3P78 = Scooby-Doo!: Mystery Mayhem GC4JBN = Shinseiki GPX Cyber Formula Road To The EVOLUTION GC5PNK = Cocoto: Kart Racer GC6E01 = Pokémon Colosseum GC6J01 = Pokémon Colosseum GC6P01 = Pokémon Colosseum GC7PNK = Cocoto Platform Jumper GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBP7D = Crash Bandicoot: The Wrath of Cortex GCCE01 = Final Fantasy Crystal Chronicles GCCJ01 = Final Fantasy Crystal Chronicles GCCJGC = Final Fantasy Crystal Chronicles GCCP01 = Final Fantasy Crystal Chronicles GCDE08 = Resident Evil Code: Veronica X GCDJ08 = Biohazard: Code Veronica GCDP08 = Resident Evil Code Veronica X GCEE41 = Tom Clancy's Splinter Cell GCEP41 = Tom Clancy's Splinter Cell GCFE9G = Conflict: Desert Storm GCFP75 = Conflict: Desert Storm GCGE41 = Charlie's Angels GCGP41 = Charlie's Angels GCHE78 = WWE Crush Hour GCHP78 = WWE Crush Hour GCIE69 = The Sims GCIP69 = The Sims GCJE41 = Tom Clancy's Splinter Cell: Chaos Theory GCJP41 = Tom Clancy's Splinter Cell: Chaos Theory GCLE69 = Cel Damage GCLP69 = Cel Damage GCMJA4 = Muscle Champion ~Battle of Muscle Island~ GCNE7D = Crash Nitro Kart GCNP7D = Crash Nitro Kart GCOD52 = Call of Duty: Finest Hour GCOE52 = Call of Duty: Finest Hour GCOF52 = Call of Duty: Finest Hour GCOP52 = Call of Duty: Finest Hour GCPE6S = Casper: Spirit Dimensions GCPP6S = Casper: Spirit Dimensions GCQD7D = Buffy The Vampire Slayer Chaos Bleeds GCQE7D = Buffy the Vampire Slayer: Chaos Bleeds GCQF7D = Buffy The Vampire Slayer Chaos Bleeds GCQP7D = Buffy The Vampire Slayer Chaos Bleeds GCSEAF = Street Racing Syndicate GCSPAF = Street Racing Syndicate GCTE51 = Crazy Taxi GCTP51 = Crazy Taxi GCUE69 = NCAA Football 2005 GCVEEB = Cubivore: Survival of the Fittest GCWP6X = Castleween GCZE69 = Catwoman GCZP69 = Catwoman GD4E6S = Dinotopia - The Sunstone Odyssey GD5JB2 = Dragon Drive: D-Masters Shot GD6EB2 = Digimon Rumble Arena 2 GD6P70 = Digimon Rumble Arena 2 GD7E70 = Dragon Ball Z - Budokai GD7JB2 = Dragon Ball Z - Budokai GD7P70 = Dragon Ball Z - Budokai GD7PB2 = Dragon Ball Z Budokai GD9E69 = Drome Racers GD9P69 = Drome Racers GDAJE5 = Doraemon Minna De Asobou! GDBJ01 = Doubutsu Bancho GDCE51 = Speed Kings GDCP51 = Speed Kings GDDE41 = Disney's Donald Duck: Goin' Quackers GDDP41 = Disney's Donald Duck: Qu@ck Att@ck GDED71 = Baldur's Gate Dark Alliance GDEE71 = Baldur's Gate: Dark Alliance GDEF71 = Baldur's Gate: Dark Alliance GDEP71 = Baldur's Gate Dark Alliance GDFE5D = Defender GDFP5D = Defender: For All Mankind GDGE7H = Dragon's Lair 3D: Return to the Lair GDGP78 = Dragon's Lair 3D Special Edition GDIE7D = Die Hard: Vendetta GDIP7D = Die Hard: Vendetta GDIX7D = Die Hard: Vendetta GDIY7D = Die Hard: Vendetta GDJEB2 = Digimon World 4 GDJJB2 = Digimon World X GDKEA4 = Disney Sports Soccer GDKPA4 = Disney Sports: Football GDLEA4 = Disney Sports Basketball GDLPA4 = Disney Sports: Basketball GDME01 = Disney's Magical Mirror Starring Mickey Mouse GDMJ01 = Disney's Mickey Mouse no Fushigi na Kagami GDMP01 = Disney's Magical Mirror Starring Mickey Mouse GDNJE8 = Dokapon DX GDOP41 = Disney's Donald Duck PK GDPJAF = Mr. Driller: Drill Land GDQE7L = Darkened Skye GDQP6S = Darkened Skye GDREAF = Dead to Rights GDRP69 = Dead to Rights GDRPAF = Dead to Rights GDSE78 = Dark Summit GDSP78 = Dark Summit GDTE69 = Def Jam Vendetta GDTP69 = Def Jam Vendetta GDUJA7 = Duel Masters Nettou Battle GDVE6L = Driven GDVP6L = Driven GDWEA4 = Disney Sports Football GDXEA4 = Disney Sports Skateboarding GDXJA4 = Disney Sports Skateboarding GDXPA4 = Disney Sports Skateboarding GE3E5D = Midway Arcade Treasures 3 GE4E7D = 4x4 Evo 2 GE5EA4 = TMNT: Mutant Melee GE6JA4 = Eisei Meijin VI GE9E5D = Ed, Edd n Eddy: The Mis-Edventures GEAE8P = Skies of Arcadia Legends GEAJ8P = Eternal Arcadia Legends GEAP8P = Skies of Arcadia Legends GEBEA4 = Evolution Snowboarding GEBPA4 = Evolution Snowboarding GEDE01 = Eternal Darkness: Sanity's Requiem GEDJ01 = Eternal Darkness: Manekareta 13-nin GEDP01 = Eternal Darkness: Sanity's Requiem GEJJCM = Jikkyou Powerful Pro Yakyuu 11 Chou Ketteiban GEME7F = Egg Mania: Eggstreme Madness GEMP7F = Eggo Mania GEND69 = James Bond 007: Everything Or Nothing GENE69 = James Bond 007: Everything Or Nothing GENF69 = James Bond 007: Everything Or Nothing GENP69 = 007: Everything Or Nothing GENS69 = James Bond 007: Everything Or Nothing GEOE08 = Capcom vs. SNK 2 EO GEOP08 = Capcom Vs. SNK2 EO: Millionaire Fighting 2001 GESEA4 = Evolution Skateboarding GESPA4 = Evolution Skateboarding GEVJ0M = Shinki Sekai Evolutia GEWE41 = Evolution Worlds GEWP41 = Evolution Worlds GEXE52 = Disney's Extreme Skate Adventure GEXP52 = Disney Extreme Skate Adventure GEXX52 = Disney's Extreme Skate Adventure GEXY52 = Disney Extreme Skate Adventure GEYE69 = Fight Night Round 2 GEYJ69 = Fight Night Round 2 GEYP69 = Fight Night Round 2 GEZE8P = Billy Hatcher and the Giant Egg GEZP8P = Billy Hatcher and the Giant Egg GF2E69 = F1 2002 GF2P69 = F1 2002 GF3E8P = NFL 2K3 GF3P8P = NFL 2K3 GF4E52 = Fantastic 4 GF4F52 = Fantastic Four GF4P52 = Fantastic 4 GF5D69 = FIFA Football 2005 GF5E69 = FIFA Soccer 2005 GF5F69 = FIFA Football 2005 GF5H69 = FIFA Football 2005 GF5I69 = FIFA Football 2005 GF5P69 = FIFA Football 2005 GF5S69 = FIFA Football 2005 GF6D69 = FIFA 06 GF6E69 = FIFA Soccer 06 GF6F69 = FIFA 06 GF6H69 = FIFA 06 GF6P69 = FIFA 06 GF6S69 = FIFA 06 GF7E01 = Star Fox: Assault GF7P01 = Star Fox Assault GF8E69 = FIFA Street GF8P69 = FIFA Street GFAD69 = FIFA Soccer 2003 GFAE69 = FIFA Soccer 2003 GFAF69 = FIFA Soccer 2003 GFAI69 = FIFA Football 2003 GFAJ69 = FIFA Soccer 2003 GFAP69 = FIFA Football 2003 GFAS69 = FIFA Football 2003 GFBE5D = FireBlade GFBP5D = Fireblade GFCP69 = F1 Career Challenge GFDD69 = Freedom Fighters GFDE69 = Freedom Fighters GFDF69 = Freedom Fighters GFDP69 = Freedom Fighters GFEE01 = Fire Emblem: Path of Radiance GFEJ01 = Fire Emblem: Souen no Kiseki GFEP01 = Fire Emblem: Path of Radiance GFFE5D = Freaky Flyers GFGEA4 = Frogger Beyond GFGPA4 = Frogger Beyond GFHP6V = Neighbours From Hell GFIE69 = 2002 FIFA World Cup GFKE69 = Freekstyle GFKP69 = Freekstyle GFMJAF = Family Stadium 2003 GFNJG2 = Finding Nemo GFOE78 = The Fairly OddParents - Shadow Showdown GFPEA4 = Frogger: Ancient Shadow GFQEA4 = Frogger's Adventures: The Rescue GFSD69 = 2002 FIFA World Cup GFSE69 = FIFA Soccer 2002 GFSF69 = 2002 FIFA World Cup GFSJ69 = FIFA Soccer 2002 GFSP69 = 2002 FIFA World Cup GFTE01 = Mario Golf: Toadstool Tour GFTJ01 = Mario Golf: Family Tour GFTP01 = Mario Golf: Toadstool Tour GFUE4Z = Future Tactics: The Uprising GFUP6V = Future Tactics: The Uprising GFVE5D = NFL Blitz Pro GFWE78 = The Fairly OddParents: Breakin' Da Rules GFXE5D = Freestyle Metal X GFYE69 = FIFA Street 2 GFYP69 = FIFA Street 2 GFZE01 = F-Zero GX GFZJ01 = F-Zero GX GFZJ8P = F-Zero AX GFZP01 = F-Zero GX GG1J08 = Donkey Kong: Jungle Fever GG2E4Z = Trigger Man GG3J08 = Donkey Kong: Banana Kingdom GG4E08 = Gotcha Force GG4P08 = Gotcha Force GG5E52 = Cabela's Big Game Hunter 2005 GGAJB2 = Mobile Suit Gundam: The Ace Pilot GGCE0A = Goblin Commander: Unleash The Horde GGCP0A = Goblin Commander: Unleash the Horde GGEE41 = Beyond Good & Evil GGEP41 = Beyond Good And Evil GGEX41 = Beyond Good And Evil GGEY41 = Beyond Good And Evil GGFJ01 = GiFTPiA GGNE5D = The Grim Adventures of Billy and Mandy GGPE01 = Mario Kart Arcade GP GGPE02 = Mario Kart Arcade GP 2 GGPJ02 = Mario Kart Arcade GP 2 GGPJAF = SD Gundam Gashapon Wars GGPJB2 = SD Gundam Gashapon Wars GGRD41 = Tom Clancy's Ghost Recon GGRE41 = Tom Clancy's Ghost Recon GGRP41 = Tom Clancy's Ghost Recon GGSEA4 = Metal Gear Solid: The Twin Snakes GGSJA4 = Metal Gear Solid: The Twin Snakes GGSPA4 = Metal Gear Solid: The Twin Snakes GGTE01 = Chibi-Robo! GGTJ01 = Chibi-Robo! GGTP01 = Chibi-Robo! GGVD78 = Spongebob Squarepants : The Movie GGVE78 = SpongeBob SquarePants: The Movie GGVP78 = Spongebob Squarepants: The Movie GGVX78 = Spongebob Squarepants : The Movie GGYE41 = Tom Clancy's Ghost Recon 2 GGYP41 = Tom Clancy's Ghost Recon 2 GGZE52 = Madagascar GGZH52 = Madagascar GGZI52 = Madagascar GGZJB2 = Madagascar GGZP52 = Madagascar GGZS52 = Madagascar GGZX52 = Madagascar GH2E69 = Need for Speed: Hot Pursuit 2 GH2P69 = Need For Speed Hot Pursuit 2 GH3E69 = NHL 2003 GH3P69 = NHL 2003 GH4D69 = Harry Potter and the Goblet of Fire GH4E69 = Harry Potter and the Goblet of Fire GH4F69 = Harry Potter and the Goblet of Fire GH4H69 = Harry Potter en de Vuurbeker GH4I69 = Harry Potter and the Goblet of Fire GH4J69 = Harry Potter to Honoo no Goblet GH4M69 = Harry Potter and the Goblet of Fire GH4P69 = Harry Potter and the Goblet of Fire GH4S69 = Harry Potter and the Goblet of Fire GH5D52 = Over The Hedge GH5E52 = Over The Hedge GH5F52 = Over The Hedge GH5P52 = Over The Hedge GH6EAF = Hello Kitty: Roller Rescue GH6P7N = Hello Kitty: Roller Rescue GH7E5D = Happy Feet GH9P52 = Tony Hawk's American Wasteland GHAE08 = Resident Evil 2 GHAJ08 = Biohazard 2 GHAP08 = Resident Evil 2 GHBE7D = The Hobbit GHBP7D = The Hobbit GHCD4Q = Chicken Little GHCE4Q = Chicken Little GHCF4Q = Chicken Little GHCJG9 = Chicken Little GHCP4Q = Chicken Little GHEJ91 = Homeland GHFE4Z = Pinball Hall Of Fame: The Gottlieb Collection GHGEEB = Go! Go! Hypergrind GHKD7D = Hulk GHKE7D = Hulk GHKF7D = Hulk GHKP7D = Hulk GHKS7D = Hulk GHLE69 = Harry Potter and the Sorcerer's Stone GHLJ69 = Harry Potter to Kenja no Ishi GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Sorcerer's Stone GHLY69 = Harry Potter and the Sorcerer's Stone GHLZ69 = Harry Potter and the Sorcerer's Stone GHMD4F = Hitman 2: Silent Assassin GHME4F = Hitman 2: Silent Assassin GHMF4F = Hitman 2: Silent Assassin GHMP4F = Hitman 2: Silent Assassin GHNE71 = Hunter: The Reckoning GHNX71 = Hunter: The Reckoning GHPE52 = Street Hoops GHQE7D = The Simpsons: Hit & Run GHQP7D = The Simpsons: Hit & Run GHRE78 = Hot Wheels: World Race GHRP78 = Hot Wheels: World Race GHSE69 = Harry Potter and the Chamber of Secrets GHSJ69 = Harry Potter to Himitsu no Heya GHSP69 = Harry Potter and the Chamber of Secrets GHSX69 = Harry Potter and the Chamber of Secrets GHSY69 = Harry Potter and the Chamber of Secrets GHTJA4 = Hikaru No Go 3 GHUE7D = The Incredible Hulk: Ultimate Destruction GHUF7D = The Incredible Hulk Ultimate Destruction GHUP7D = The Incredible Hulk Ultimate Destruction GHVE08 = Disney's Hide & Sneak GHVP08 = Disney's Hide & Sneak GHWE78 = Hot Wheels: Velocity X GHWP78 = Hot Wheels: Velocity X GHYE6S = The Haunted Mansion GHZE5D = NHL Hitz Pro GI2J18 = Momotarou Dentetsu 12 GIAE7D = Ice Age 2: The Meltdown GIAP7D = Ice Age 2 : The Meltdown GIBE4F = The Italian Job GIBP4F = The Italian Job GICD78 = The Incredibles GICE78 = The Incredibles GICF78 = The Incredibles GICH78 = The Incredibles GICJG9 = Mr. Inkurediburu GICP78 = The Incredibles GIFJDQ = Generation of Chaos Exceed GIGJ8P = Bleach GC: Tasogare Ni Mamieru Shinigami GIHD78 = Scooby-Doo! Night of 100 Frights GIHE78 = Scooby-Doo! Night of 100 Frights GIHP78 = Scooby-Doo! Night of 100 Frights GIIJ18 = Momotarou Dentetsu 11 GIJEFP = Space Raiders GIJJC0 = Space Raiders GIKE70 = Ikaruga GIKJ70 = Ikaruga GIKP70 = Ikaruga GILE51 = Aggressive Inline GILP51 = Aggressive Inline GINE69 = Batman Begins GINX69 = Batman Begins GIPEAF = Shonen Jump's One Piece: Pirates Carnival GIPJB2 = Shonen Jump's One Piece: Pirates Carnival GIQE78 = The Incredibles: Rise of the Underminer GIQJ8P = The Incredibles: Rise of the Underminer GIQP78 = The Incredibles: Rise of the Underminer GIQX78 = The Incredibles: De opkomst van De Ondermijner GIQY78 = The Incredibles: Rise of the Underminer GISE36 = Second Sight GISP36 = Second Sight GITE01 = Geist GITP01 = Geist GIVE4Z = Intellivision Lives GIZE52 = Ty the Tasmanian Tiger 3: Night of the Quinkan GJ2JCM = Jikkyou World Soccer 2002 GJ2PA4 = International Superstar Soccer 2 GJ3PA4 = International Superstar Soccer 3 GJBE18 = Bomberman Jetters GJBE5G = Bomberman Jetters GJBJ18 = Bomberman Jetters GJCE8P = Samurai Jack: The Shadow of Aku GJCP8P = Samurai Jack: The Shadow of Aku GJDE5S = Judge Dredd: Dredd vs. Death GJDX7D = Judge Dredd: Dredd vs. Death GJDY7D = Judge Dredd: Dredd vs. Death GJFE78 = Jimmy Neutron Jet Fusion GJFP78 = Jimmy Neutron Jet Fusion GJKD52 = Star Wars Jedi Knight II: Jedi Outcast GJKE52 = Star Wars Jedi Knight II: Jedi Outcast GJKF52 = Star Wars Jedi Knight II: Jedi Outcast GJKP52 = Star Wars Jedi Knight II: Jedi Outcast GJNE78 = Jimmy Neutron Boy Genius GJNP78 = Jimmy Neutron Boy Genius GJPJCM = Jikkyou Powerful Pro Yakyuu 11 GJSJ18 = Hudson Selection Vol. 2: Star Soldier GJUD78 = Tak and the Power of JuJu GJUE78 = Tak and the Power of Juju GJUF78 = Tak and the Power of JuJu GJUP78 = Tak and the Power of JuJu GJWE78 = Tak: The Great JuJu Challenge GJWP78 = Tak: The Great JuJu Challenge GJXE51 = Vexx GJXP51 = Vexx GJYE78 = Jimmy Neutron: Attack of the Twonkies GJYP78 = Jimmy Neutron Boy Genius: Attack of the Twonkies GJZE52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GJZP52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GK2D52 = Spider-Man 2 GK2E52 = Spider-Man 2 GK2F52 = Spider-Man 2 GK2P52 = Spider-Man 2 GK3E8P = NBA 2K3 GK3P8P = NBA 2K3 GK4E01 = Baten Kaitos Origins GK4J01 = Baten Kaitos II: Hajimari no Tsubasa to Kamigami no Shishi GK5E78 = Monster House GK5P78 = Monster House GK5X78 = Monster House GK6JA4 = Croket Banking No Kikiwosukue GK7E08 = Killer7 GK7J08 = Killer7 GK7P08 = Killer 7 GK9EA4 = Karaoke Revolution Party GKAE8P = Amazing Island GKAJ8P = Kaijuu no Shima: Amazing Island GKBEAF = Baten Kaitos Eternal Wings and the Lost Ocean GKBJAF = Baten Kaitos: Owaranai Tsubasa to Ushinawareta Umi GKBPAF = Baten Kaitos: Eternal Wings and the Lost Ocean GKDJ01 = Kyojin no Doshin GKDP01 = Doshin the Giant GKEJA4 = PAWAFURU PUROYAKYU 12 KETTEIBAN GKFEGG = Chaos Field GKFJ8P = Chaos Field Expanded GKGE01 = Donkey Konga GKGJ01 = Donkey Konga GKGP01 = Donkey Konga GKHEA4 = King Arthur GKHPA4 = King Arthur GKJD78 = Cars GKJE78 = Cars GKJF78 = Cars GKJH78 = Cars GKJJ78 = Cars GKJP78 = Cars GKJS78 = Cars GKKE69 = Knockout Kings 2003 GKKP69 = Knockout Kings 2003 GKLD69 = Lord of the Rings: The Return of the King GKLE69 = Lord of the Rings: The Return of the King GKLF69 = Lord of the Rings: The Return of the King GKLI69 = Lord of the Rings: The Return of the King GKLJ69 = The Lord of the Rings: The Return of the King GKLP69 = Lord of the Rings: The Return of the King GKLS69 = Lord of the Rings: The Return of the King GKME41 = Prince of Persia: The Two Thrones GKMP41 = Prince of Persia: The Two Thrones GKNEB2 = Ultimate Muscle: Legends vs. New Generation GKNJB2 = Kinnikuman Nisei: Shinsedai Choujin vs Densetsu Choujin GKOE70 = Kao The Kangaroo Round 2 GKOP6V = Kao The Kangaroo Round 2 GKPJA4 = Jikkyou Powerful Pro Yakyuu 12 GKQJ01 = Kururin Squash! GKREB2 = Ribbit King GKRPB2 = Ribbit King GKSE52 = Kelly Slater's Pro Surfer GKSP52 = Kelly Slater's Pro Surfer GKSX52 = Kelly Slater's Pro Surfer GKTJA4 = Captain Tsubasa: Ougon Sedai no Chousen GKUE9G = Scaler GKWJ18 = DreamMix TV World Fighters GKXJE7 = Kiwame Mahjong DX2 GKYE01 = Kirby Air Ride GKYJ01 = Kirby Airride GKYP01 = Kirby Air Ride GKZD9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZE9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZF9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP54 = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GL2E51 = Legends of Wrestling 2 GL2P51 = Legends of Wrestling II GL3JE8 = Lupin The Third - Umi Ni Kieta Hihou GL5E4F = LEGO Star Wars: The Video Game GL5P4F = LEGO Star Wars: The Video Game GL5X4F = LEGO Star Wars: The Video Game GL7E64 = LEGO Star Wars II: The Original Trilogy GL7P64 = LEGO Star Wars II: The Original Trilogy GL8D4F = Lara Croft Tomb Raider: Legend GL8E4F = Lara Croft Tomb Raider: Legend GL8F4F = Lara Croft Tomb Raider: Legend GL8P4F = Lara Croft Tomb Raider: Legend GLBE8P = Home Run King GLCD52 = Lemony Snickets A Series Of Unfortunate Events GLCE52 = Lemony Snickets A Series Of Unfortunate Events GLCF52 = Lemony Snickets A Series Of Unfortunate Events GLCP52 = Lemony Snickets A Series Of Unfortunate Events GLCS52 = Lemony Snickets A Series Of Unfortunate Events GLEE08 = Resident Evil 3: Nemesis GLEJ08 = BioHazard 3: Last Escape GLEP08 = Resident Evil 3: Nemesis GLGP41 = Largo Winch : Empire Under Threat GLHEG9 = Flushed Away GLHPG9 = Flushed Away GLIJA7 = Special Jinsei Game GLJJMS = Radirgy GLLE78 = Ratatouille GLLF78 = Ratatouille GLME01 = Luigi's Mansion GLMJ01 = Luigi's Mansion GLMP01 = Luigi's Mansion GLNE69 = Looney Tunes: Back in Action GLNP69 = Looney Tunes: Back in Action GLOD69 = Lord of the Rings: The Two Towers GLOE69 = Lord of the Rings: The Two Towers GLOF69 = Lord of the Rings: The Two Towers GLOI69 = Lord of the Rings: The Two Towers GLOP69 = Lord of the Rings: The Two Towers GLOS69 = Lord of the Rings: The Two Towers GLQE41 = Tom Clancy's Rainbow Six: Lockdown GLQP41 = Tom Clancy's Rainbow Six: Lockdown GLRD64 = Star Wars Rogue Squadron III: Rebel Strike GLRE64 = Star Wars Rogue Squadron III: Rebel Strike GLRF64 = Star Wars Rogue Squadron III: Rebel Strike GLRJ13 = Star Wars Rogue Squadron III: Rebel Strike GLRP64 = Star Wars Rogue Squadron III: Rebel Strike GLSD64 = Gladius GLSE64 = Gladius GLSF64 = Gladius GLSP64 = Gladius GLUE7U = Lotus Challenge GLVD4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVE4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVF4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVP4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLWE51 = Legends of Wrestling GLWP51 = Legends of Wrestling GLXJ29 = Legend of Golfer GLYE69 = NBA Live 2005 GLYP69 = NBA Live 2005 GLZD69 = James Bond 007: From Russia With Love GLZE69 = 007: From Russia With Love GLZF69 = James Bond 007: From Russia With Love GLZP69 = James Bond 007: From Russia With Love GM2E8P = Super Monkey Ball 2 GM2J8P = Super Monkey Ball 2 GM2P8P = Super Monkey Ball 2 GM3E69 = Madden NFL 2003 GM3P69 = Madden NFL 2003 GM4E01 = Mario Kart: Double Dash!! GM4J01 = Mario Kart: Double Dash!! GM4P01 = Mario Kart: Double Dash!! GM5D7D = Metal Arms: Glitch in the System GM5E7D = Metal Arms: Glitch in the System GM5F7D = Metal Arms: Glitch in the System GM5P7D = Metal Arms: Glitch in the System GM6EE9 = Medabots Infinity GM6PE9 = Medabots Infinity GM8E01 = Metroid Prime GM8J01 = Metroid Prime GM8P01 = Metroid Prime GM9E6S = Muppets Party Cruise GMAE51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMAP51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMBE8P = Super Monkey Ball GMBJ8P = Super Monkey Ball GMBP8P = Super Monkey Ball GMDE69 = Madden NFL 2002 GMEE70 = Men In Black II: Alien Escape GMEP70 = Men In Black II: Alien Escape GMFD69 = Medal of Honor: Frontline GMFE69 = Medal of Honor: Frontline GMFF69 = Medal of Honor: Frontline GMFI69 = Medal of Honor: Frontline GMFP69 = Medal of Honor: Frontline GMFS69 = Medal of Honor: Frontline GMHE52 = Mat Hoffmans Pro Bmx 2 GMHF52 = Mat Hoffman's Pro BMX 2 GMHP52 = Mat Hoffman's Pro BMX 2 GMIE70 = Mission Impossible: Operation Surma GMIP70 = Mission Impossible: Operation Surma GMJE41 = Monster Jam: Maximum Destruction GMJP41 = Monster Jam: Maximum Destruction GMKD5D = Mortal Kombat: Deadly Alliance GMKE5D = Mortal Kombat: Deadly Alliance GMKP5D = Mortal Kombat: Deadly Alliance GMLEA4 = ESPN MLS Extra Time 2002 GMNE78 = Monsters, Inc. Scream Arena GMNP78 = Monsters, Inc. Scream Arena GMOP70 = Micro Machines GMPE01 = Mario Party 4 GMPJ01 = Mario Party 4 GMPP01 = Mario Party 4 GMQE70 = Monopoly Party GMQP70 = Monopoly Party GMRE70 = Big Air Freestyle GMRP70 = Big Air Freestyle GMSE01 = Super Mario Sunshine GMSJ01 = Super Mario Sunshine GMSP01 = Super Mario Sunshine GMTE69 = Disney's Party GMTP69 = Disney's Party GMUE5D = Dr. Muto GMWD52 = Minority Report: Everybody Runs GMWE52 = Minority Report: Everybody Runs GMWF52 = Minority Report: Everybody Runs GMWP52 = Minority Report: Everybody Runs GMXE70 = Enter The Matrix GMXJB2 = Enter The Matrix GMXP70 = Enter The Matrix GMYJ8P = Gekitou Pro Yakyuu GMZE41 = Monster 4x4: Masters Of Metal GN2E70 = Nascar: Dirt To Daytona GN3E5D = NHL Hitz 2003 GN3P5D = NHL Hitz 2003 GN4E69 = Nascar 2005: Chase For The Cup GN5E69 = NHL 2005 GN5P69 = NHL 2005 GN6E69 = NHL 06 GN6P69 = NHL 06 GN7E69 = NFL Street 2 GN7P69 = NFL Street 2 GN8E69 = NBA Live 2004 GN8P69 = NBA Live 2004 GN9E70 = Nickelodeon Party Blast GNAE8P = NCAA College Football 2K3 GNBE01 = NBA Courtside 2002 GNBP01 = NBA Courtside 2002 GNCE69 = Nascar Thunder 2003 GNDD69 = Need For Speed Underground GNDE69 = Need For Speed Underground GNDF69 = Need For Speed Underground GNDP69 = Need For Speed Underground GNED78 = Finding Nemo GNEE78 = Finding Nemo GNEF78 = Finding Nemo GNEP78 = Finding Nemo GNES78 = Finding Nemo GNFE5D = NFL Blitz 2002 GNGE69 = NCAA Football 2003 GNHE5D = NHL Hitz 2002 GNHP5D = NHL Hitz 20-02 GNIEA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNIPA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNJEAF = I-Ninja GNKE8P = NCAA College Basketball 2K3 GNLE69 = NBA Live 2003 GNLP69 = NBA Live 2003 GNMEAF = Namco Museum GNNE69 = NFL Street GNNP69 = NFL Street GNOE78 = Nicktoons Unite! GNOX78 = Spongebob Squarepants & Friends: Unite! GNPP70 = Nickelodeon Party Blast GNQE69 = Madden NFL 2005 GNQP69 = Madden NFL 2005 GNREDA = Naruto Clash of Ninja GNRJDA = NARUTO Gekitô Ninja Taisen! GNSE69 = NBA Street GNSJ69 = NBA Street GNUEDA = Naruto Clash of Ninja 2 GNUJDA = Naruto: Gekitou Ninja Taisen! 2 GNUPDA = Naruto: Clash of Ninja - European Version GNVE69 = NHL 2004 GNVP69 = NHL 2004 GNWE69 = Def Jam: Fight For NY GNWP69 = Def Jam: Fight For NY GNXE69 = NCAA Football 2004 GNZE69 = NBA Street Vol.2 GNZP69 = NBA Street Vol.2 GO2D4F = Blood Omen 2: The Legacy of Kain Series GO2E4F = Blood Omen 2: The Legacy of Kain Series GO2F4F = Blood Omen 2: The Legacy of Kain Series GO2P4F = Blood Omen 2: The Legacy of Kain Series GO3E5D = NFL Blitz 2003 GO7D69 = James Bond 007: NightFire GO7E69 = 007: NightFire GO7F69 = James Bond 007: NightFire GO7P69 = James Bond 007: NightFire GO7S69 = James Bond 007: NightFire GOAE52 = Cabela's Outdoor Adventures GOBE4Z = Bad Boys: Miami Takedown GOBP7N = Bad Boys II GOCE5D = RoadKill GODJGA = Ohenro-San: Hosshin no Dojo GOFE7L = Outlaw Golf GOFP6S = Outlaw Golf GOGJB2 = One Piece: Grand Battle! 3 GOME01 = Mario Power Tennis GOMJ01 = Mario Tennis GC GOMP01 = Mario Power Tennis GOND69 = Medal of Honor: European Assault GONE69 = Medal of Honor: European Assault GONF69 = Medal of Honor: European Assault GONJ13 = Medal of Honor: Europa Kyoushuu GONP69 = Medal of Honor: European Assault GOOE01 = Odama GOOJ01 = Odama GOOP01 = Odama GOPEB2 = Shonen Jump's One Piece: Grand Battle GOPJB2 = One Piece: Grand Battle! Rush GOQE82 = One Piece: Grand Adventure GOQEAF = Shonen Jump's One Piece: Grand Adventure GOSE41 = Open Season GOSP41 = Open Season GOSX41 = Open Season GOUPNK = Cocoto Funfair GOWD69 = Need For Speed Most Wanted GOWE69 = Need For Speed Most Wanted GOWF69 = Need For Speed Most Wanted GOWJ69 = Need For Speed Most Wanted GOWP69 = Need For Speed Most Wanted GOYD69 = GoldenEye: Rogue Agent GOYE69 = GoldenEye: Rogue Agent GOYF69 = GoldenEye: Rogue Agent GOYP69 = GoldenEye: Rogue Agent GOYS69 = GoldenEye: Rogue Agent GP2EAF = Pac-Man World 2 GP2P69 = Pac-Man World 2 GP3E78 = The Polar Express GP3P78 = The Polar Express GP4J18 = Hudson Selection Vol. 3: Bonk's Adventure GP5E01 = Mario Party 5 GP5J01 = Mario Party 5 GP5P01 = Mario Party 5 GP6E01 = Mario Party 6 GP6J01 = Mario Party 6 GP6P01 = Mario Party 6 GP7E01 = Mario Party 7 GP7J01 = Mario Party 7 GP7P01 = Mario Party 7 GP8EAF = Pac-Man World 3 GP8P69 = Pac-Man World 3 GP8PAF = Pac-Man World 3 GP9E7F = Rogue Ops GP9P7F = Rogue Ops GPAE01 = Pokémon Channel GPAJ01 = Pokémon Channel GPAP01 = Pokémon Channel GPAU01 = Pokémon Channel GPDE51 = Dakar 2: The World's Ultimate Rally GPDP51 = Dakar 2: The World's Ultimate Rally GPEJ2Q = Pool Edge GPHD52 = Pitfall: The Lost Expedition GPHE52 = Pitfall: The Lost Expedition GPHF52 = Pitfall: The Lost Expedition GPHP52 = Pitfall: The Lost Expedition GPIE01 = Pikmin GPIJ01 = Pikmin GPIP01 = Pikmin GPJJCM = Jikkyou Powerful Pro Yakyuu 10 GPKE41 = Disney's PK Out of the Shadows GPLD9G = Piglet's Big Game GPLE9G = Piglet's Big Game GPLF9G = Piglet's Big Game GPLP9G = Piglet's Big Game GPMEAF = Pac Man Fever GPNE08 = P.N.03 GPNJ08 = P.N.03 GPNP08 = P.N.03 GPOE8P = Phantasy Star Online Episode I & II GPOJ8P = Phantasy Star Online Episode I & II GPOP8P = Phantasy Star Online Episode I&II GPPJCM = Jikkyou Powerful Pro Yakyuu 9 GPQE6L = The Powerpuff Girls: Relish Rampage GPQP6L = The Powerpuff Girls: Relish Rampage GPRE7U = Pool Paradise GPRP7U = Pool Paradise GPSE8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPSJ8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPSP8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPTE41 = Prince of Persia: The Sands of Time GPTP41 = Prince of Persia: The Sands of Time GPUE8P = Puyo Pop Fever GPUP6W = Puyo Pop Fever GPUP8P = Puyo Pop Fever GPVE01 = Pikmin 2 GPVJ01 = Pikmin 2 GPVP01 = Pikmin 2 GPWEAF = Spawn: Armageddon GPWP69 = Spawn: Armageddon GPWPAF = Spawn: Armageddon GPXE01 = Pokémon Box: Ruby & Sapphire GPXJ01 = Pokémon Box: Ruby & Sapphire GPXP01 = Pokémon Box: Ruby & Sapphire GPYJ8P = Puyo Pop Fever GPZJ01 = Nintendo Puzzle Collection GQ4E78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ4F78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ4P78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ8E69 = Madden NFL 08 GQBE51 = NFL Quarterback Club 2002 GQCD52 = Call of Duty 2: Big Red One GQCE52 = Call of Duty 2: Big Red One GQCF52 = Call of Duty 2: Big Red One GQCP52 = Call of Duty 2: Big Red One GQCS52 = Call of Duty 2: Big Red One GQFFFK = Franklin: A Birthday Surprise GQLE9G = Dora The Explorer: Journey To The Purple Planet GQLP54 = Dora The Explorer: Journey to the Purple Planet GQNE5D = Mortal Kombat: Deception GQPE78 = SpongeBob SquarePants: Battle for Bikini Bottom GQPP78 = SpongeBob Squarepants: Battle For Bikini Bottom GQQD78 = SpongeBob SquarePants: Lights, Camera, PANTS! GQQE78 = SpongeBob SquarePants: Lights, Camera, Pants! GQQF78 = SpongeBob SquarePants: Lights, Camera, PANTS! GQQH78 = Nickelodeon SpongeBob Squarepants: Licht uit, Camera aan! GQQP78 = SpongeBob SquarePants: Lights, Camera, Pants! GQRJ18 = Hudson Selection Vol. 1: Cubic Lode Runner GQSDAF = Tales of Symphonia GQSEAF = Tales of Symphonia GQSFAF = Tales of Symphonia GQSIAF = Tales of Symphonia GQSPAF = Tales of Symphonia GQSSAF = Tales of Symphonia GQTE4Q = Meet the Robinsons GQWE69 = Harry Potter: Quidditch World Cup GQWJ69 = Harry Potter World Cup GQWP69 = Harry Potter: WK Zwerkbal GQWX69 = Harry Potter: Quidditch World Cup GQXE69 = Madden NFL 2004 GQXP69 = Madden NFL 2004 GQZJ01 = Densetsu no Quiz Ou Ketteisen GR2E52 = Lost Kingdoms 2 GR2JCQ = Rune II: Koruten no Kagi no Himitsu GR2P52 = Lost Kingdoms 2 GR3E5D = Red Card 2003 GR4EMZ = MC Groovz Dance Craze GR4PMZ = MC Groovz Dance Craze GR5J1K = Robocop: Aratanaru Kiki GR6D78 = Bratz: Rock Angelz GR6E78 = Bratz: Rock Angelz GR6F78 = Bratz: Rock Angelz GR6P78 = Bratz: Rock Angelz GR8D69 = Medal of Honor: Rising Sun GR8E69 = Medal of Honor: Rising Sun GR8F69 = Medal of Honor: Rising Sun GR8J69 = Medal of Honor: Rising Sun GR8P69 = Medal of Honor: Rising Sun GR9E6L = Reign of Fire GR9P6L = Reign of Fire GRAE5Z = Rally Championship GRAP75 = Rally Championship GRBE6S = Robotech: Battlecry GRBP6S = Robotech : Battlecry GRDP5D = RedCard GREE08 = Mega Man Network Transmission GREJ08 = RockMan EXE Transmission GREP08 = Mega Man Network Transmission GRFD78 = Red Faction II GRFE78 = Red Faction II GRFF78 = Red Faction II GRFP78 = Red Faction II GRHE41 = Rayman 3: Hoodlum Havoc GRHP41 = Rayman 3: Hoodlum Havoc GRJEAF = R: Racing Evolution GRJJAF = R:Racing Evolution: Life in the Fast Lane GRJP69 = R: Racing GRKE41 = Rocky GRKP7G = Rocky GRLE41 = Pro Rally GRLP41 = Pro Rally GRMJDA = Monopoly: Mezase!! Daifugou Jinsei!! GRNE52 = Lost Kingdoms GRNJCQ = Rune GRNP52 = Lost Kingdoms GROE5Z = Road Trip: The Arcade Edition GROP7J = Gadget Racers GRQE41 = City Racer GRRE78 = Rugrats: Royal Ransom GRRP78 = Rugrats: Royal Ransom GRSEAF = SoulCalibur II GRSJAF = SoulCalibur II GRSPAF = SoulCalibur II GRUE78 = Power Rangers Dino Thunder GRUF78 = Power Rangers Dino Thunder GRUP78 = Power Rangers Dino Thunder GRVEA4 = Rave Master GRWJD9 = Super Robot Taisen GC GRYE41 = Rayman Arena GS2D78 = Summoner: A Goddess Reborn GS2E78 = Summoner: A Goddess Reborn GS2F78 = Summoner: A Goddess Reborn GS2P78 = Summoner: A Goddess Reborn GS3E51 = SX Superstar GS3P51 = SX Superstar GS7E5D = MLB SlugFest 2004 GS8E7D = Spyro: Enter the Dragonfly GS8P7D = Spyro: Enter the Dragonfly GS9E6S = Shrek Extra Large GS9P6S = Shrek Extra Large GSAE01 = Star Fox Adventures GSAJ01 = StarFox Adventures GSAP01 = Star Fox Adventures GSBJ8P = Sonic Adventure 2: Battle GSCE51 = Jeremy McGrath SuperCross World GSCP51 = Jeremy McGrath SuperCross World GSDEAF = Smashing Drive GSEJB2 = Shaman King: Soul Fight GSGE5D = MLB SlugFest 2003 GSHE5D = SpyHunter GSHP5D = SpyHunter GSKE7D = The Scorpion King: Rise of the Akkadian GSKP7D = The Scorpion King : Rise of the Akkadian GSMD52 = Spider-Man GSME52 = Spider-Man: The Movie GSMF52 = Spider-Man GSMP52 = Spider-Man GSNE8P = Sonic Adventure 2: Battle GSNP8P = Sonic Adventure 2: Battle GSOE8P = Sonic Mega Collection GSOJ8P = Sonic Mega Collection GSOP8P = Sonic Mega Collection GSPE69 = The Simpsons: Road Rage GSPP69 = The Simpsons: Road Rage GSQE78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSQP78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSRE7S = Smuggler's Run: Warzones GSRP7S = Smuggler's Run: Warzones GSSE8P = Sega Soccer Slam GSSJ8P = Sega Soccer Slam GSSP70 = Sega Soccer Slam GSSP8P = Sega Soccer Slam GSTE69 = SSX Tricky GSTJ69 = SSX Tricky GSTP69 = SSX Tricky GSUE70 = Superman: Shadow of Apokolips GSUP70 = Superman: Shadow of Apokolips GSVE78 = MX Superfly Featuring Ricky Carmichael GSVP78 = MX Superfly featuring Ricky Carmichael GSWD64 = Star Wars Rogue Leader: Rogue Squadron II GSWE64 = Star Wars Rogue Squadron II: Rogue Leader GSWF64 = Star Wars Rogue Leader: Rogue Squadron II GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = Star Wars Rogue Leader: Rogue Squadron II GSWP64 = Star Wars Rogue Leader: Rogue Squadron II GSWS64 = Star Wars Rogue Leader: Rogue Squadron II GSXD64 = Star Wars: The Clone Wars GSXE64 = Star Wars: The Clone Wars GSXF64 = Star Wars: The Clone Wars GSXJ13 = Star Wars: Clone Sensou GSXP64 = Star Wars: The Clone Wars GSXS64 = Star Wars: The Clone Wars GSYE6S = Shrek: Super Party GSYP6S = Shrek: Super Party GSZP41 = Speed Challenge: Jacques Villeneuve Racing Vision GT2J18 = Tengai Makyou 2: Manji Maru GT3D52 = Tony Hawk's Pro Skater 3 GT3E52 = Tony Hawk's Pro Skater 3 GT3F52 = Tony Hawk's Pro Skater 3 GT3J52 = Tony Hawk's Pro Skater 3 GT3P52 = Tony Hawk's Pro Skater 3 GT4D52 = Tony Hawk's Pro Skater 4 GT4E52 = Tony Hawk's Pro Skater 4 GT4F52 = Tony Hawk's Pro Skater 4 GT4P52 = Tony Hawk's Pro Skater 4 GT5E7N = Starsky & Hutch GT5P7N = Starsky & Hutch GT6E70 = Terminator 3: The Redemption GT6J70 = Terminator 3: The Redemption GT6P70 = Terminator 3: The Redemption GT7E41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7P41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7X41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT8E78 = Big Mutha Truckers GT8P78 = Big Mutha Truckers GT8P7N = Big Mutha Truckers GTAE5S = Top Angler : Real Bass Fishing GTAP5S = Top Angler: Real Bass Fishing GTCJBL = GT Cube GTDE52 = Tony Hawk's Underground GTDP52 = Tony Hawk's Underground GTEE01 = 1080° Avalanche GTEJ01 = 1080° Silver Storm GTEP01 = 1080° Avalanche GTFEA4 = Teenage Mutant Ninja Turtles GTFPA4 = Teenage Mutant Ninja Turtles GTGE60 = Top Gun: Combat Zones GTGP60 = Top Gun: Combat Zones GTHJD9 = Charinko Hero GTIE69 = Tiger Woods PGA Tour 2003 GTIP69 = Tiger Woods PGA Tour 2003 GTJE5L = Tom & Jerry in War of the Whiskers GTKD51 = Turok Evolution GTKE51 = Turok Evolution GTKP51 = Turok Evolution GTLE52 = True Crime: Streets of LA GTLP52 = True Crime: Streets of LA GTLX52 = True Crime: Streets of LA GTMJDA = Mutsu To Nohohon GTNJ18 = Hudson Selection Vol. 4: Adventure Island GTOJAF = Tales of Symphonia GTPP6S = Knights Of The Temple : Infernal Crusade GTQE6S = Tonka: Rescue Patrol GTRE78 = Tetris Worlds GTRP78 = Tetris Worlds GTSE4F = TimeSplitters 2 GTSP4F = TimeSplitters 2 GTUE8G = Tube Slider - The Championship of Future Formula GTVE70 = Transworld Surf: Next Wave GTWE70 = Taz Wanted GTWP70 = Taz Wanted GTYE69 = Ty the Tasmanian Tiger GTYP69 = Ty: The Tasmanian Tiger GTZE41 = Tarzan Untamed GTZP41 = Tarzan Freeride GU2D78 = 2 Games in 1: The Incredibles / Finding Nemo GU2F78 = 2 Games in 1: The Incredibles / Finding Nemo GU3D78 = 2 Games in 1: The SpongeBob SquarePants Movie / Tak 2: The Staff of Dreams GU4Y78 = 2 Games in 1: The SpongeBob SquarePants Movie / Battle for Bikini Bottom GU6E78 = Nicktoons - Battle for Volcano Island GUBE69 = The Urbz: Sims in the City GUBJ13 = The Urbz: Sims In The City GUBP69 = The Urbz: Sims In The City GUCD69 = UEFA Champions League 2004-2005 GUCF69 = UEFA Champions League 2004-2005 GUCP69 = UEFA Champions League 2004-2005 GUFE4Z = Ultimate Fighting Championship Throwdown GUFP4Z = UFC: Throwdown GUGD69 = Need For Speed Underground 2 GUGE69 = Need For Speed Underground 2 GUGF69 = Need For Speed Underground 2 GUGP69 = Need For Speed Underground 2 GUMD52 = Gun GUME52 = Gun GUMP52 = Gun GUNE5D = Gauntlet: Dark Legacy GUNP5D = Gauntlet: Dark Legacy GUPE8P = Shadow the Hedgehog GUPJ8P = Shadow the Hedgehog GUPP8P = Shadow the Hedgehog GUSE7F = Universal Studios Theme Park Adventure GUSP7F = Universal Studios Theme Park Adventure GUTD52 = Ultimate Spider-Man GUTE52 = Ultimate Spider-Man GUTF52 = Ultimate Spider-Man GUTI52 = Ultimate Spider-Man GUTJC0 = Ultimate Spider-Man GUTP52 = Ultimate Spider-Man GUTS52 = Ultimate Spider-Man GUVE51 = Freestyle Street Soccer GUVP51 = Urban Freestyle Soccer GUZE41 = Batman: Rise of Sin Tzu GUZP41 = Batman Rise of Sin Tzu GV3J70 = V-Rally 3 GV3P70 = V-Rally 3 GV4E69 = MVP Baseball 2005 GVCE08 = Viewtiful Joe: Red Hot Rumble GVCJ08 = Viewtiful Joe: Battle Carnival GVCP08 = Viewtiful Joe: Red Hot Rumble GVDE78 = Bratz Forever Diamondz GVDP78 = Bratz Forever Diamondz GVHE4F = Bionicle Heroes GVJE08 = Viewtiful Joe GVJJ08 = Viewtiful Joe GVJP08 = Viewtiful Joe GVKE52 = Cabela's Dangerous Hunts 2 GVLD69 = Marvel Nemesis: Rise of the Imperfects GVLE69 = Marvel Nemesis: Rise of the Imperfects GVLF69 = Marvel Nemesis: Rise of the Imperfects GVLP69 = Marvel Nemesis: Rise of the Imperfects GVMP41 = Super Bust-A-Move All Stars GVOE69 = Bionicle GVOP69 = Bionicle GVPE69 = MVP Baseball 2004 GVRE7H = Grooverider Slot Car Thunder GVS46E = Virtua Striker 4 Ver.2006 GVS46J = Virtua Striker 4 Ver.2006 GVSE8P = Virtua Striker 2002 GVSJ8P = VIRTUA STRIKER 3 ver.2002 GVSJ9P = Virtua Striker 4 Ver.2006 GVSP8P = Virtua Striker 3 Ver. 2002 GVWJDQ = Gakuen Toshi Vara Noir Roses GW2E78 = WWE Day of Reckoning 2 GW2P78 = WWE Day of Reckoning 2 GW3E78 = WWE WrestleMania X8 GW3JG2 = WWE WrestleMania X8 GW3P78 = WWE Wrestlemania X8 GW4E69 = Tiger Woods PGA Tour 2004 GW4P69 = Tiger Woods PGA Tour 2004 GW5D69 = Need For Speed Carbon GW5E69 = Need For Speed Carbon GW5F69 = Need For Speed Carbon GW5P69 = Need For Speed Carbon GW6JEM = Winning Eleven 6 Final Evolution GW7D69 = James Bond 007 in Agent Under Fire GW7E69 = 007: Agent Under Fire GW7F69 = James Bond 007 in Agent Under Fire GW7P69 = James Bond 007 in Agent Under Fire GW8E52 = World Series of Poker GW9E78 = WWE WrestleMania XIX GW9JG2 = WWE WrestleMania XIX GW9P78 = WWE WrestleMania XIX GWAD8P = Spartan Total Warrior GWAE8P = Spartan Total Warrior GWAF8P = Spartan Total Warrior GWAP8P = Spartan Total Warrior GWBE41 = Worms Blast GWBP41 = Worms Blast GWDP6S = World Racing GWEE51 = 18 Wheeler: American Pro Trucker GWEP8P = 18 Wheeler American Pro Trucker GWGE4F = Swingerz Golf GWGJ4F = Wai Wai Golf GWGP4F = Ace Golf GWHE41 = Winnie The Pooh Rumbly Tumbly Adventures GWHP41 = Winnie de Poeh en het Knaagje in zijn Maagje GWJE52 = Tony Hawk's American Wasteland GWKE41 = Peter Jackson's King Kong: The Official Game of the Movie GWKP41 = Peter Jackson's King Kong: The Official Game of the Movie GWLE6L = Wallace & Gromit in Project Zoo GWLP6L = Wallace & Gromit : Project Zoo GWLX6L = Wallace & Gromit in Project Zoo GWME51 = Worms 3D GWMP8P = Worms 3D GWOE5G = Blowout GWPE78 = WWE Day of Reckoning GWPJG2 = WWE Day of Reckoning GWPP78 = WWE Day of Reckoning GWQE52 = Wreckless: The Yakuza Missions GWQP52 = Wreckless: The Yakuza Missions GWRE01 = Wave Race: Blue Storm GWRJ01 = Wave Race: Blue Storm GWRP01 = Wave Race: Blue Storm GWSEA4 = ESPN International Winter Sports 2002 GWSJA4 = Hyper Sports 2002 Winter GWSPA4 = ESPN International Winter Sports GWTEA4 = WTA Tour Tennis GWTJA4 = WTA Tour Tennis GWTPA4 = Pro Tennis WTA Tour GWUE7D = Whirl Tour GWUP7D = Whirl Tour GWVE52 = X2: Wolverine's Revenge GWVP52 = X-Men 2: Wolverine's Revenge GWVX52 = X-Men 2 : Wolverine's Revenge GWWE01 = Wario World GWWJ01 = Wario World GWWP01 = Wario World GWYE41 = Tom Clancy's Splinter Cell: Double Agent GWYX41 = Tom Clancy's Splinter Cell: Double Agent GWZE01 = Dance Dance Revolution: Mario Mix GWZJ01 = Dance Dance Revolution: Mario Mix GWZP01 = Dancing Stage Mario Mix GX2D52 = X-Men Legends II: Rise of Apocalypse GX2E52 = X-Men Legends II: Rise of Apocalypse GX2P52 = X-Men Legends II: Rise of Apocalypse GX2S52 = X-Men Legends II: Rise of Apocalypse GX3E41 = XIII GX3P41 = XIII GX3X41 = XIII GXAE51 = XGRA Extreme G Racing Association GXAP51 = XGRA Extreme G Racing Association GXBE69 = SSX 3 GXBP69 = SSX 3 GXCE01 = Custom Robo GXEE8P = Sonic Riders GXEJ8P = Sonic Riders GXEP8P = Sonic Riders GXFD69 = FIFA Football 2004 GXFE69 = FIFA Soccer 2004 GXFF69 = FIFA Football 2004 GXFI69 = FIFA Football 2004 GXFP69 = FIFA Football 2004 GXFS69 = FIFA Football 2004 GXGE08 = Mega Man X Collection GXLE52 = X-Men Legends GXLP52 = X-Men Legends GXLX52 = X-Men Legends GXME52 = X-Men: Next Dimension GXMF52 = X-Men: Next Dimension GXMP52 = X-Men: Next Dimension GXNE5D = Rampage Total Destruction GXOE69 = SSX on Tour GXOJ69 = SSX On Tour with Mario GXOP69 = SSX On Tour GXOX69 = SSX On Tour GXPE78 = Sphinx and the Cursed Mummy GXPP78 = Sphinx and the Cursed Mummy GXQF41 = Taxi 3 GXRE08 = Mega Man X: Command Mission GXRJ08 = Rockman X: Command Mission GXRP08 = Mega Man X: Command Mission GXSE8P = Sonic Adventure DX: Director's Cut GXSP6W = Sonic Adventure DX : Director's Cut GXSP8P = Sonic Adventure DX: Director's Cut GXUE41 = Surf's Up GXXE01 = Pokémon XD: Gale of Darkness GXXJ01 = Pokemon XD: Yami no Kaze Dark Lugia GXXP01 = Pokémon XD: Gale of Darkness GY2E01 = Donkey Konga 2 GY2J01 = Donkey Konga 2 GY2P01 = Donkey Konga 2 GY3J01 = Donkey Konga 3 GYAD78 = Barnyard GYAE78 = Barnyard GYAP78 = Barnyard GYAX78 = Barnyard GYBE01 = Donkey Kong Jungle Beat GYBJ01 = Donkey Kong Jungle Beat GYBP01 = Donkey Kong Jungle Beat GYFEA4 = Yu-Gi-Oh! The Falsebound Kingdom GYFJA4 = Yu-Gi-Oh! The Falsebound Kingdom GYFPA4 = Yu-Gi-Oh! The Falsebound Kingdom GYKEB2 = Zatch Bell! Mamodo Battles GYMJA4 = Jikkyou Powerful Major League GYQE01 = Mario Superstar Baseball GYQJ01 = Super Mario Stadium Miracle Baseball GYQP01 = Mario Superstar Baseball GYRE41 = TMNT GYRP41 = TMNT GYTE69 = Ty The Tasmanian Tiger 2: Bush Rescue GYTP69 = Ty The Tasmanian Tiger 2: Bush Rescue GYWDE9 = Harvest Moon: A Wonderful Life GYWEE9 = Harvest Moon: A Wonderful Life GYWJ99 = Bokujou Monogatari: Wonderful Life GYWP41 = Harvest Moon: A Wonderful Life GYWPE9 = Harvest Moon: A Wonderful Life GZ2E01 = The Legend of Zelda: Twilight Princess GZ2J01 = Zelda no Densetsu: Twilight Princess GZ2P01 = The Legend of Zelda: Twilight Princess GZ3E70 = Dragon Ball Z: Budokai 2 GZ3P70 = Dragon Ball Z: Budokai 2 GZ3PB2 = Dragon Ball Z Budokai 2 GZCE51 = ZooCube GZCJB0 = ZooCube GZCP51 = Zoocube GZDE70 = Godzilla: Destroy all Monsters Melee GZDJ70 = Godzilla: Kaijuu Dairantou GZDP70 = Godzilla: Destroy all Monsters Melee GZEE70 = Dragon Ball Z: Sagas GZFJBP = Gekituisenki - Zero Fighter GZHJDA = Zoids Full Metal Crash GZLE01 = The Legend of Zelda: The Wind Waker GZLJ01 = Zelda no Densetsu: Kaze no Takuto GZLP01 = The Legend of Zelda: The Wind Waker GZMP7D = Butt-Ugly Martians Zoom or Doom GZOJDA = Zoids vs. GZPE70 = Zapper - One Wicked Cricket! GZPP70 = Zapper: One Wicked Cricket! GZQE7D = Robots GZQJ7D = Robots GZQP7D = Robots GZSE70 = Zoids Battle Legends GZSJDA = Zoids VS. II GZVJDA = Zoids vs. III GZWE01 = Wario Ware Inc.: Mega Party Game$! GZWJ01 = Atumare!! made in wario GZWP01 = Wario Ware Inc.: Mega Party Game$! HAAA = Fotokanaal HABA = Wii Shop Channel HABK = Wii Shop Channel HACA = Mii Channel HACK = Mii Channel HADE = Internet Channel HADJ = Internet Channel HADP = Internet Channel HAFE = Forecast Channel HAFJ = Weather Channel HAFP = Weather Channel HAGE = News Channel HAGJ = News Channel HAGP = News Channel HAJE = Everybody Votes Channel HAJJ = Everybody Votes Channel HAJP = Everybody Votes Channel HAPE = Check Mii Out Channel HAPJ = Mii Contest Channel HAPP = Check Mii Out Channel HATE = Nintendo Channel HATJ = Nintendo Channel HATP = Nintendo Channel HAVJ = Today and Tomorrow Fortune Teller HAVK = Today And Tomorrow Channel HAVP = Today and Tomorrow Channel HAWE = Metroid Prime 3 Preview HAWJ = Metroid Prime 3 Preview HAWP = Metroid Prime 3 Preview HAYA = Fotokanaal HAYK = Photo Channel HBNJ = TV Friend Channel HBWE01 = New Super Mario Bros. Wii: Hellboy Edition HC3J = USB Flash Optimization HCAJ = Band Bros. DX Speaker Channel HCAP = Jam with the Band Live HCBJ = Photo Channel 1.0 Restore Program HCDJ = Digicam Print Channel HCFE = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Wii Speak Channel HCGE = Wii + Internet HCGJ = Wii Plus Internet HCGP = Wii Plus Internet HCHJ = Food Service HCIJ = Wii no ma HCJP = BBC iPlayer Channel HCLE = Netflix HCLP = Netflix HCMP = Kirby TV HCQE = Hulu Plus HCQJ = Hulu HCRE = The Legend of Zelda: Skyward Sword Save Data Update Channel HCRJ = The Legend of Zelda Skyward Sword Update HCRP = The Legend of Zelda Skyward Sword Update HCSE = Wii U Transfer Tool HCSJ = Wii U Transfer Tool HCSP = Wii U Transfer Tool HCTE = Wii System Transfer HCTJ = Wii System Transfer HCTP = Wii System Transfer HCUE = Wii Menu Electronic Manual HCUJ = Wii Menu Electronic Manual HCUP = Wii Menu Electronic Manual HCVA = Wii U Menu HCWE = Amazon Instant Video HCWP = Amazon Instant Video HCXE = YouTube HCXJ = YouTube HCXP = YouTube HCZE = Wii System Transfer HWFL = HackWiiFlow JA2J = Shin Megami Tensei JA3J = Kamaitachi no Yoru JA4E = Super Ghouls 'n Ghosts JA4J = Chou-Makai-Mura JA4P = Super Ghouls'n Ghosts JA5J = Heracles no Eikou III: Kamigami no Chinmoku JA6E = Zombies Ate My Neighbors JA6J = Zombies Ate My Neighbors JA6P = Zombies JA7D = ActRaiser JA7E = ActRaiser JA7F = ActRaiser JA7J = Actraiser JA7P = ActRaiser JA8E = Final Fight JA8J = Final Fight JA8P = Final Fight JAAE = Super Mario World JAAJ = Super Mario World JAAK = Super Mario World JAAP = Super Mario World JABJ = Mario no Super Picross JABL = Mario’s Super Picross JACE = F-Zero JACJ = F-Zero JACK = F-Zero JACP = F-Zero JADD = The Legend of Zelda: A Link to the Past JADE = The Legend of Zelda: A Link to the Past JADF = The Legend of Zelda: A Link to the Past JADJ = Zelda no Densetsu: Kamigami no Triforce JADK = The Legend of Zelda: A Link to the Past JADP = The Legend of Zelda: A Link to the Past JAEE = Donkey Kong Country JAEJ = Super Donkey Kong JAEK = Donkey Kong Country JAEP = Donkey Kong Country JAFD = SimCity JAFE = Sim City JAFF = SimCity JAFJ = SimCity JAFP = SimCity JAGJ = Fire Emblem: Monshou no Nazo JAHE = R-Type III: The 3rd Lightning JAHJ = R-Type III: The Third Lightning JAHK = R-Type III: The Third Lightning JAHP = R-TYPE III : The Third Lightning JAIE = Super Castlevania IV JAIJ = Akumajou Dracula JAIP = Super Castlevania IV JAJE = Street Fighter II: The World Warrior JAJJ = Street Fighter II JAJP = Street Fighter II: The World Warrior JALE = Contra III: The Alien Wars JALJ = Contra Spirits JALK = Contra III: The Alien Wars JALP = Super Probotector: Alien Rebels JAME = Gradius III JAMJ = Gradius III JAMK = Gradius III JAMM = Gradius III JAPJ = Fire Emblem: Seisen no Keifu JAUJ = Famicom Bunko: Hajimari no Mori JAVE = Super Metroid JAVJ = Super Metroid JAVK = Super Metroid JAVP = Super Metroid JAWE = Romance of the Three Kingdoms IV: Wall of Fire JAWJ = San Goku Shi IV JAZD = The Legend of the Mystical Ninja JAZE = The Legend of The Mystical Ninja JAZJ = Ganbare Goemon: Yukihime Kyuushutsu Emaki JAZP = The Legend of the Mystical Ninja JB3D = Harvest Moon JB3E = Harvest Moon JB3J = Harvest Moon JB3P = Harvest Moon JB5J = Super Gussun Oyoyo JB6J = Treasure Hunter G JB7J = Front Mission: Gun Hazard JB9J = Gakkou de atta Kowai Hanashi JBAE = Metal Marines JBAJ = Militia JBBE = Super Street Fighter II: The New Challengers JBBJ = Super Street Fighter II: The New Challengers JBBP = Super Street Fighter II: The New Challengers JBCE = Kirby's Dream Course JBCJ = Kirby Bowl JBCK = Kirby's Dream Course JBCP = Kirby's Dream Course JBDD = Donkey Kong Country 2: Diddy's Kong-Quest JBDE = Donkey Kong Country 2: Diddy's Kong Quest JBDJ = Super Donkey Kong 2: Dixie & Diddy JBDK = Donkey Kong Country 2: Diddy Kong's Quest JBDP = Donkey Kong Country 2: Diddy's Kong-Quest JBEJ = Magical Drop JBFJ = Otogirisou JBGJ = Mystery Dungeon: Shiren the Wanderer JBHJ = Heracles no Eikou IV: Kamigami-kara no Okurimono JBIE = Street Fighter II Turbo: Hyper Fighting JBIJ = Street Fighter II Turbo: Hyper Fighting JBIP = Street Fighter II Turbo: Hyper Fighting JBKE = Breath of Fire II JBKJ = Breath of Fire II: Shimei no Ko JBKP = Breath of Fire II JBLE = Pac-Attack JBLJ = Cosmo Gang the Puzzle JBLP = Pac-Attack JBNE = Darius Twin JBNJ = Darius Twin JBOJ = Panel de Pon JBOK = Panel de Pon JBPE = Donkey Kong Country 3: Dixie Kong's Double Trouble JBPJ = Super Donkey Kong 3: Nazo no Krems Shima JBPP = Donkey Kong Country 3: Dixie Kong’s Double Trouble JBQE = Kirby's Avalanche JBQJ = Kirby's Avalanche JBQP = Kirby's Ghost Trap JBRE = Vegas Stakes JBRJ = Vegas Stakes JBRP = Vegas Stakes JBSE = Axelay JBSJ = Axelay JBSP = Axelay JBTE = Super Turrican JBTJ = Super Turrican JBTP = Super Turrican JBUE = Super Turrican 2 JBUJ = Super Turrican Two JBVJ = Der Langrisser JBWE = Cybernator JBWJ = Assault Suits Valken JBWK = Cybernator JBWP = Cybernator JBYE = Super R-Type JBYJ = Super R-Type JBYK = Super R-Type JBYP = Super R-Type JC2J = Taikou Risshiden JC3J = Bahamut Lagoon JC4E = Indiana Jones' Greatest Adventures JC4J = Indiana Jones Great Adventure JC4P = Indiana Jones' Greatest Adventures JC5J = Romancing SaGa JC6J = Romancing SaGa 2 JC7E = The Combatribes JC7J = The Combatribes JC8E = Final Fantasy II JC8J = Final Fantasy IV JC8M = Final Fantasy II JC8P = Final Fantasy 2 JC9J = Final Fantasy V JCAJ = DoReMi Fantasy: Milon no DokiDoki Daibouken JCAL = DoReMi Fantasy - Milon’s DokiDoki Adventure JCAN = DoReMi Fantasy: Milon's DokiDoki Adventure JCBE = Super Mario RPG: Legend of the Seven Stars JCBJ = Super Mario RPG JCBM = Super Mario RPG: Legend of the Seven Stars JCCE = Kirby Super Star JCCJ = Hoshi no Kirby Super Deluxe JCCP = Kirby’s Fun Pak JCDE = Kirby's Dream Land 3 JCDJ = Hoshi no Kirby 3 JCDM = Kirby’s Dream Land 3 JCEJ = Fire Emblem: Thracia 776 JCGJ = Ganbare Goemon 2: Kiteretsu Shougun Magginesu JCHJ = Ganbare Goemon 3 JCIJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo JCJE = Super Punch-Out!! JCJJ = Super Punch-Out!! JCJP = Super Punch Out!! JCKE = Space Invaders: The Original Game JCKJ = Space Invaders: The Original Game JCKP = Space Invaders -The Original Game JCLD = Secret of Mana JCLE = Secret of Mana JCLF = Secret of Mana JCLJ = Seiken Densetsu 2 JCLP = Secret of Mana JCMJ = Super Wagyan Land JCNE = Prince of Persia JCNJ = Prince of Persia JCTE = Ogre Battle: The March of the Black Queen JCTJ = Densetsu no Ogre Battle: The March of the Black Queen JCTM = Ogre Battle: The March of the Black Queen JCUE = PilotWings JCUJ = Tactics Ogre: Let Us Cling Together JCVE = Pilotwings JCVJ = Pilotwings JCVP = Pilotwings JCWE = Super Mario Kart JCWJ = Super Mario Kart JCWP = Super Mario Kart JCXE = Nobunaga's Ambition JCXJ = Super Nobunaga no Yabou: Zengokuban JCYE = Uncharted Waters: New Horizons JCYJ = Daikoukai Jidai II JCZE = Genghis Khan II: Clan of the Gray Wolf JCZJ = Super Aoki Ookami to Shiroki Meshika: Genchou Hishi JD2J = Bishoujo Janshi Suchie-Pai JD3E = Super E.D.F. Earth Defense Force JD3J = Super E.D.F. Earth Defense Force JD3P = Super EDF Earth Defense Force JD4E = Rival Turf! JD4J = Rushing Beat JD4P = Rival Turf! JD5E = Brawl Brothers JD5J = Rushing Beat Ran: Fukusei Toshi JD5P = Brawl Brothers JD6E = The Ignition Factor JD6J = Fire Fighting JD6M = The Ignition Factor JD7E = Super Adventure Island JD7J = Takahashi Meijin no Daibouken Jima JD7P = Super Adventure Island JD8E = Super Adventure Island II JD8J = Takahashi Meijin no Daibouken Jima II JD8P = Super Adventure Island II JD9E = Super Bonk JD9J = Chou-Genjin JD9M = Super Bonk JDAE = Final Fantasy III JDAJ = Final Fantasy VI JDAP = Final Fantasy III JDBE = Super Bomberman 3 JDCE = Street Fighter Alpha 2 JDCJ = Street Fighter Two Alpha JDCP = Street Fighter Alpha 2 JDDE = Final Fight 2 JDDJ = Final Fight Two JDDP = Final Fight 2 JDEE = Final Fight 3 JDEJ = Final Fight Tough JDEP = Final Fight 3 JDFJ = Sutte Hakkun JDHJ = Super Famicom Wars JDIE = Super Star Wars JDIJ = Super Star Wars JDIP = Super Star Wars JDJE = Super Star Wars: The Empire Strikes Back JDJJ = Super Star Wars The Empire Strikes Back JDJP = Super Star Wars: The Empire Strikes Back JDKJ = Metal Max 2 JDLE = Super Star Wars: Return of the Jedi JDLJ = Super Star Wars Return Of The Jedi JDLP = Super Star Wars: Return of the Jedi JDMJ = Kirby no Kirakira Kizzu JDNE = Ghoul Patrol JDNJ = Ghoul Patrol JDOJ = Heisei Shin Onigashima: Zenpen JDPJ = Heisei Shin Onigashima: Kouhen JDQJ = Romancing Sa-Ga 3 JDRJ = Clock Tower JDSJ = Shin Megami Tensei II JDTJ = Shin Megami Tensei if... JDUJ = Albert Odyssey JDVE = Wild Guns JDVJ = Wild Guns JDVP = Wild Guns JDWE = Aero the Acrobat JDWJ = Aero The Acrobat JDWP = Aero The Acrobat JDXE = Aero the Acrobat 2 JDXJ = Aero The Acrobat Two JDXP = Aero the Acrobat 2 JDYJ = Rudra no Hihou JDZE = Final Fantasy Mystic Quest JDZJ = Final Fantasy USA: Mystic Quest JEAE = Natsume Championship Wrestling JEAJ = Natsume Championship Wrestling JEAP = Natsume Championship Wrestling JEBE = Mega Man X JEBJ = RockMan X JECE = Chrono Trigger JECJ = Chrono Trigger JECM = Chrono Trigger JECP = Chrono Trigger JEDJ = Kunio-Kun no Dodge Ball Dayo Zenin Shuugo! JEEJ = Majin Tensei JEFJ = Majin Tensei II: Spiral Nemesis JEGJ = Gouketuji Ichizoku JEHE = Mega Man X2 JEHJ = RockMan X2 JEIJ = Metal Max Returns JEJJ = Tsukikomori JEKJ = Kyuyaku Megami Tensei: Megami Tensei I・II JODI = Homebrew Channel JOUE01 = New Super Mario Bros. Wii 10 The Journey KMCP06 = Wiimms MKW Fun 2010-12.pal+ KMKE01 = Kustom Mario Kart Wii KMNE03 = Newer Super Mario Bros. Wii KMNE10 = Koopa Country KMNJ03 = Newer Super Mario Bros. Wii KMNP03 = Newer Super Mario Bros. Wii KMNP10 = Koopa Country L40P4Q = Sing IT: Pop hits, los 40 principales LAAJ = Hokuto no Ken LABE = Fantasy Zone LABJ = Fantasy Zone LABP = Fantasy Zone LACE = Wonder Boy LACJ = Super Wonder Boy LACP = Wonder Boy LADE = Phantasy Star LADJ = Phantasy Star LADP = Phantasy Star LAEE = Alex Kidd in Miracle World LAEJ = Alex Kidd in Miracle World LAEP = Alex Kidd in Miracle World LAFJ = Ashura LAFN = Secret Commando LAFP = Secret Command LAGE = Sonic The Hedgehog LAGJ = Sonic the Hedgehog LAGP = Sonic The Hedgehog LAHE = Space Harrier LAHJ = Space Harrier LAHP = Space Harrier LAIE = Enduro Racer LAIJ = Enduro Racer LAIP = Enduro Racer LAJE = Sonic The Hedgehog 2 LAJJ = Sonic the Hedgehog 2 LAJP = Sonic The Hedgehog 2 LAKE = Wonder Boy in Monster Land LAKJ = Super Wonder Boy: Monster World LAKP = Wonder Boy in Monster Land LALE = Fantasy Zone II: The Tears of OPA-OPA LALJ = Fantasy Zone II: The Tears of Opa-Opa LALP = Fantasy Zone II LAME = Sonic Chaos LAMJ = Sonic Chaos LAMP = Sonic Chaos LANE = Alex Kidd: The Lost Stars LANJ = Alex Kidd: The Lost Stars LANP = Alex Kidd: The Lost Stars LAOE = R-Type LAOJ = R-Type LAOP = R-Type LAPE = Wonder Boy III: The Dragon's Trap LAPP = Wonder Boy III: The Dragon's Trap LAQE = Alex Kidd in Shinobi World LAQP = Alex Kidd in Shinobi World LULZ = Homebrew Channel MA2J = Dyna Brothers MA3E = Puyo Puyo 2 MA3J = Puyo Puyo Tsuu MA3L = Puyo Puyo 2 MA4J = Bahamut Senki MA5J = Rent A Hero MA6E = Streets of Rage 2 MA6J = Bare Knuckle II: Shitou no Chinkon Uta MA6P = Streets of Rage 2 MA7E = Shining in the Darkness MA7J = Shining and the Darkness MA7P = Shining in the Darkness MA8E = Ecco: The Tides of Time MA8J = Ecco the Dolphin 2 MA8P = Ecco: The Tides of Time MA9J = The Hybrid Front MAAE = Altered Beast MAAJ = Juuouki MAAP = Altered Beast MABE = Columns MABJ = Columns MABP = Columns MACE = Dr. Robotnik's Mean Bean Machine MACJ = Puyo Puyo MACP = Dr. Robotnik's Mean Bean Machine MADE = Ecco the Dolphin MADJ = Ecco the Dolphin MADP = Ecco the Dolphin MAEE = Golden Axe MAEJ = Golden Axe MAEP = Golden Axe MAFE = Gunstar Heroes MAFJ = Gunstar Heroes MAFP = Gunstar Heroes MAGE = Ristar MAGJ = Ristar MAGP = Ristar MAHE = Sonic the Hedgehog MAHJ = Sonic the Hedgehog MAHP = Sonic the Hedgehog MAIE = Space Harrier II MAIJ = Space Harrier II MAIP = Space Harrier II MAJE = Toe Jam & Earl MAJJ = ToeJam & Earl MAJP = ToeJam & Earl MAKE = Shadow Dancer: The Secret of Shinobi MAKJ = Shadow Dancer: The Secret of Shinobi MAKP = Shadow Dancer: The Secret of Shinobi MALE = Bonanza Bros. MALJ = Bonanza Bros. MALP = Bonanza Bros. MAME = Sword of Vermillion MAMJ = Vermilion MAMP = Sword of Vermilion MANE = Gain Ground MANJ = Gain Ground MANP = Gain Ground MAOE = Bio-Hazard Battle MAOJ = Crying: Aseimei Sensou MAOP = Bio-Hazard Battle MAPE = Comix Zone MAPJ = Comix Zone MAPP = Comix Zone MAQE = Streets of Rage MAQJ = Bare Knuckle: Ikari no Tekken MAQP = Streets of Rage MARE = Beyond Oasis MARJ = The Story of Thor: Hikari o Tsugu Mono MARP = The Story of Thor MASE = Vectorman MASJ = Vectorman MASP = Vectorman MATE = Sonic Spinball MATJ = Sonic Spinball MATP = Sonic Spinball MAUJ = Puzzle & Action: Tant-R MAVE = Wonder Boy in Monster World MAVJ = Wonder Boy V: Monster World III MAVP = Wonder Boy In Monster World MAWE = Virtua Fighter 2 MAWJ = Virtua Fighter 2 MAWP = Virtua Fighter 2 MAXE = Alex Kidd In The Enchanted Castle MAXJ = Alex Kidd: Tenkuu Mashiro MAXP = Alex Kidd In The Enchanted Castle MAYE = Alien Storm MAYJ = Alien Storm MAYP = Alien Storm MAZE = ToeJam & Earl in Panic on Funkotron MAZP = ToeJam & Earl in Panic on Funkotron MB2J = Langrisser MB3E = Monster World IV MB3J = Monster World IV MB4J = Party Quiz Mega Q MB5J = Rangurissah II MB6E = Shining Force II MB6J = Shining Force II: Inishie no Fuuin MB6P = Shining Force II MB7E = Mega Turrican MB7P = Mega Turrican MB8E = Phantasy Star II MB8J = Phantasy Star II: Kaerazaru Toki no Owari ni MB8P = Phantasy Star II MB9J = Pepenga Pengo MBAJ = Pulseman MBAL = Pulseman MBAN = Pulseman MBBE = Sonic the Hedgehog 2 MBBJ = Sonic the Hedgehog 2 MBBP = Sonic the Hedgehog 2 MBCE = Kid Chameleon MBCJ = Chameleon Kid MBCP = Kid Chameleon MBDE = Golden Axe II MBDJ = Golden Axe II MBDP = Golden Axe II MBEE = Shining Force MBEJ = Shining Force: Kamigami no Isan MBEP = Shining Force MBFE = Shinobi III: Return of the Ninja Master MBFJ = The Super Soldier II MBFP = Shinobi III: Return of the Ninja master MBGE = Dynamite Headdy MBGJ = Dynamite Headdy MBGP = Dynamite Headdy MBHJ = Puzzle & Action: Ichidant-R MBIE = Landstalker: The Treasures of King Nole MBIJ = LandStalker: Koutei no Zaihou MBIP = Landstalker: The Treasures of King Nole MBJE = Ghouls'n Ghosts MBJJ = Dai Makai-Mura MBJP = Ghouls'n Ghosts MBKJ = Crack Down MBKP = Crack Down MBLJ = ESWAT: Cyber Police MBLP = ESWAT City Under Siege MBME = Sonic the Hedgehog 3 MBMJ = Sonic the Hedgehog 3 MBMP = Sonic the Hedgehog 3 MBNJ = Chelnov MBOE = Golden Axe III MBOJ = Golden Axe III MBOP = Golden Axe III MBPE = Super Thunder Blade MBPJ = Super Thunder Blade MBPP = Super Thunder Blade MBQE = Streets of Rage 3 MBQJ = Bare Knuckle III MBQP = Streets of Rage 3 MBRE = Rolling Thunder 2 MBRJ = Rolling Thunder 2 MBRP = Rolling Thunder 2 MBSJ = Dyna Brothers 2 Special MBTE = Alien Soldier MBTJ = Alien Soldier MBTP = Alien Soldier MBUE = Sonic 3D: Blast MBUJ = Sonic 3D Blast MBUP = Sonic 3D: Flickies' Island MBVJ = Jusu Kihei Leynos MBWE = Columns III: Revenge of Columns MBWJ = Columns III: Taiketsu! Columns World MBWM = Columns III: Revenge of Columns MBXE = Ecco Jr. MBXJ = Ecco Jr. MBXM = Ecco Jr. MBYE = Light Crusader MBYJ = Light Crusader MBYP = Light Crusader MBZE = Eternal Champions MBZJ = Eternal Champions MBZP = Eternal Champions MC2E = Earthworm Jim 2 MC2J = Earthworm Jim 2 MC2P = Earthworm Jim 2 MC3E = Super Street Fighter II: The New Challengers MC3J = Super Street Fighter 2: The New Challengers MC3P = Super Street Fighter II: The New Challengers MC4E = Strider MC4J = Strider Hiryu MCAJ = Gley Lancer MCAL = Gley Lancer MCAN = Gley Lancer MCBE = Powerball MCBJ = Wrestleball MCCE = Phantasy Star III MCCJ = Toki no Keishousha: Phantasy Star III MCCP = Phantasy Star III: Generations of Doom MCDE = Sonic & Knuckles MCDJ = Sonic & Knuckles MCDP = Sonic & Knuckles MCEJ = Super Fantasy Zone MCEN = Super Fantasy Zone MCEP = Super Fantasy Zone MCGE = Forgotten Worlds MCGJ = Forgotten Worlds MCGP = Forgotten Worlds MCHE = M.U.S.H.A. MCHJ = Musha Aleste MCHM = MUSHA : Metallic Uniframe Super Hybrid Armor MCIJ = Gynoug MCJE = Splatterhouse 2 MCJJ = Splatterhouse Part 2 MCJP = Splatterhouse 2 MCKE = Phantasy Star IV MCKJ = Phantasy Star: Sennenki no Owari ni MCKP = Phantasy Star IV MCLE = Street Fighter II': Special Champion Edition MCLJ = Street Fighter II' Plus: Champion Edition MCLP = Street Fighter II’: Special Champion Edition MCMJ = Lord Monarch: Tokoton Sentou Densetsu MCNJ = Hokuto no Ken: Shin Seikimatu Kyuseisyu Densetsu MCOJ = Sorcerian MCPE = Earthworm Jim MCPJ = Earthworm Jim MCPP = Earthworm Jim MCQE = Boogerman: A Pick and Flick Adventure MCQP = Boogerman - A Pick and Flick Adventure MCRE = Wolf of the Battlefield: MERCS MCRJ = Senjou no Ookami II MCRP = MERCS: Wolf of the Battlefield MCSJ = Wonder Boy III: Monster Lair MCSN = Wonder Boy III: Monster Lair MCSP = Wonder Boy III: Monster Lair MCTE = Clay Fighter MCTP = Clay Fighter MCUJ = Dragon Slayer: The Legend of Heroes MCVE = Pitfall: The Mayan Adventure MCVJ = Pitfall: The Mayan Adventure MCVP = Pitfall: The Mayan Adventure MCWE = Galaxy Force II MCWJ = Galaxy Force II MCWP = Galaxy Force II MCXJ = Dragon Slayer: The Legend of Heroes MCYE = The Revenge of Shinobi MCYJ = The Super Shinobi MCYP = The Revenge of Shinobi MCZE = Shanghai II: Dragon's Eye MCZP = Shanghai II Dragon's Eye MDUE01 = Mario Kart: Track Grand Priix MECPSI = SingItStar Mecano METE01 = New Super Metroid Bros. Wii MIJPSI = SingItStar Michael Jackson MILPSI = Sing IT Star: Miliki MKDE02 = Darky Kart Wii MKTE01 = Mario Kart Wii Teknik MKWP01 = Super Mario Kart for Wii MMRE01 = D.U. Super Mario Bros 2.1 Madness Returns MRRE01 = New Super Mario Bros. Wii Retro Remix MRRP01 = New Super Mario Bros. Wii Retro Remix NA3E = Bomberman Hero NA3J = Bomberman Hero NA3P = Bomberman Hero NAAE = Super Mario 64 NAAJ = Super Mario 64 NAAP = Super Mario 64 NABE = Mario Kart 64 NABJ = Mario Kart 64 NABK = Mario Kart 64 NABP = Mario Kart 64 NACE = The Legend of Zelda: Ocarina of Time NACJ = Zelda no Densetsu: Toki no Ocarina NACP = The Legend of Zelda: Ocarina of Time NADE = Star Fox 64 NADJ = Star Fox 64 NADK = Star Fox 64 NADP = Lylat Wars NAEE = Paper Mario NAEJ = Mario Story NAEP = Paper Mario NAFE = F-Zero X NAFJ = F-Zero X NAFP = F-Zero X NAGJ = Aerogauge NAHE = Yoshi's Story NAHJ = Yoshi's Story NAHP = Yoshi's Story NAIE = Wave Race 64 NAIJ = Wave Race 64: Kawasaki Jet Ski NAIP = Wave Race 64 NAJ8 = The Legend of Zelda: Ocarina of Time (spanish translation) NAJ9 = Super Smash Bros. NAJJ = Tsumi to Batsu NAJL = Sin & Punishment NAJN = Sin and Punishment NAKD = Pokémon Snap NAKE = Pokémon Snap NAKF = Pokémon Snap NAKI = Pokémon Snap NAKJ = Pokémon Snap NAKP = Pokémon Snap NAKS = Pokémon Snap NALE = Super Smash Bros. NALJ = Nintendo All-Star Dairantou Smash Brothers NALP = Super Smash Bros. NAME = Kirby 64: The Crystal Shards NAMJ = Hoshi no Kirby 64 NAMK = Kirby 64: The Crystal Shards NAMP = Kirby 64: The Crystal Shards NAND = Pokémon Puzzle League NANE = Pokémon Puzzle League NANF = Pokémon Puzzle League NANJ = Pokemon Puzzle League NANP = Pokémon Puzzle League NAOE = 1080° Snowboarding NAOJ = 1080° Snowboarding NAOK = 1080° Snowboarding NAOP = 1080 : TenEighty Snowboarding NAPJ = Custom Robo V2 NARE = The Legend of Zelda: Majora's Mask NARJ = Zelda no Densetsu: Majora no Kamen NARP = The Legend of Zelda: Majora's Mask NASE = Cruis'n USA NASJ = Cruisn USA NASP = Cruis'n USA NATE = Mario Tennis NATJ = Mario Tennis 64 NATP = Mario Tennis NAUE = Mario Golf NAUJ = Mario Golf 64 NAUP = Mario Golf NAYE = Ogre Battle 64: Person of Lordly Caliber NAYJ = Ogre Battle 64: Person of Lordly Caliber NAYM = Ogre Battle 64 : Person of Lordly Caliber NAZE = Mario Party 2 NAZJ = Mario Party 2 NAZP = Mario Party 2 NEEA = The Legend of Zelda: Ocarina of Time Master Quest NEWE01 = New Super Mario Bros Wii 15 A New World NK2O = Neek2o NMNP01 = Newer Super Mario Bros. Wii NRJ1FR = StarSing : NRJ Music Tour v1.1 NSMB02 = New Super Mario Bros. Wii 2 NSSP01 = Newer Summer Sun NWRP01 = Newer Super Mario Bros. Wii NZXM = Super Mario 64 Multiplayer ONKELZ = SingItStar Böhse Onkelz PAL OTFPSI = Sing IT: Operación triunfo P2ME01 = Metroid Prime 2: Echoes (Bonus Disc) PA2J = Nekketsu Koukou Dodgeball Bu: CD Soccer Hen PA3J = Salamander PA4J = Parasol Stars PA6E = Bloody Wolf PA6J = Narazumono Sentou Butai: Bloody Wolf PA6P = Bloody Wolf PA7E = Alien Crush PA7J = Alien Crush PA7P = Alien Crush PA8E = Ordyne PA8J = Ordyne PA9E = Splatterhouse PA9J = Splatterhouse PA9P = Splatterhouse PAAE = Bomberman '93 PAAP = Bomberman '93 PABE = Bonk's Adventure PABJ = PC Genjin PABP = Bonk's Adventure PACE = Dungeon Explorer PACJ = Dungeon Explorer PACP = Dungeon Explorer PADE = R-Type PADJ = R-Type I PADP = R-Type PAEE = Super Star Soldier PAEJ = Super Star Soldier PAEP = Super Star Soldier PAFE = Victory Run PAFJ = Victory Run: Eikou no 13,000KM PAFP = Victory Run PAGJ = Bomberman '94 PAGL = Bomberman'94 PAGN = Bomberman '94 PAHE = Battle Lode Runner PAHJ = Battle Lode Runner PAHP = Battle Lode Runner PAIE = New Adventure Island PAIJ = Takahashi Meijin no Shin Bouken Jima PAIP = New Adventure Island PAJJ = Joshoken Necromancer PAKE = Dragon's Curse PAKJ = Adventure Island PAKP = Dragon's Curse PALE = Soldier Blade PALJ = Soldier Blade PALP = Soldier Blade PAME = Neutopia PAMJ = Neutopia: Frey no Shou PAMP = Neutopia PANE = Military Madness PANJ = Nectaris PANP = Military Madness PAOJ = Final Soldier PAOL = Final Soldier PAON = Final Soldier PAPJ = R-Type II PAQJ = Gradius PARJ = Detana TwinBee PARL = Detana Twin Bee PARN = Detana Twin Bee PASJ = Cadash PATJ = Kiki Kaikai PAUJ = Kaizou Chounin Shubibinman PAVE = Vigilante PAVJ = Vigilante PAVP = Vigilante PAWE = Galaga '90 PAWJ = Galaga '88 PAWP = Galaga'90 PAYJ = Valkyrie no Densetsu PAZJ = Genpei Toumaden PB2E = Neutopia II PB2J = Neutopia II PB2P = Neutopia II PB3E = Devil's Crush PB3J = Devil Crash PB3P = Devil's Crush PB5J = Ninja Ryukenden PB6E = Cratermaze PB6P = Cratermaze PB7J = Sengoku Mahjong PB8E = Blazing Lazers PB8J = Blazing Lazers PB8P = Blazing Lazers PB9E = World Sports Competition PB9J = Power Sports PB9P = World Sports Competition PBAE = Dragon Spirit PBAJ = Dragon Spirit PBAP = Dragon Spirit PBCJ = Wonder-Momo PBDE = Double Dungeons PBDJ = Double Dungeons PBDP = Double Dungeons PBEE = Moto Roader PBEJ = Moto Roader PBEP = Motoroader PBFJ = Fire ProWrestling: Combination Tag PBHE = Bonk's Revenge PBHJ = PC Genjin 2 PBHP = Bonk's Revenge PBIE = Bonk 3: Bonk's Big Adventure PBIJ = PC Genjin 3 PBIP = Bonk III: Bonk's Big Adventure PBJE = Samurai Ghost PBJJ = Genpei Toumaden: Kannoni PBJP = Samurai Ghost PBME = Legend of Hero Tonma PBMJ = Legend of Hero Tonma PBMP = Legend of Hero Tonma PBNE = Ninja Spirit PBNJ = Saigou no Nindou: Ninja Spirit PBNP = Ninja Spirit PBSE = Chew Man Fu PBSJ = Be Ball PBSP = Chew Man Fu PBTE = China Warrior PBTJ = The Kung Fu PBTP = China Warrior PBUE = Bravoman PBUJ = Chouzetsu Rinjin Bravoman PBVJ = Benkei Gaiden PBWE = Air “Zonk” PBWJ = PC Denjin: Punkic Cyborgs PBWP = Air 'Zonk' PBXE = Shockman PBXJ = Kaizou Chounin Shubibinman 2: Atanaru Teki PBXP = Shockman PBYJ = Out Live PBZE = J.J. & Jeff PBZP = J.J. & Jeff PC2E = Chase H.Q. PC2J = Chase H.Q. PC2P = Chase H.Q. PC3J = Darius Plus PC4J = Space Invaders: Fukkatsu no Hi PC5J = Dragon Saber PC6E01 = Pokémon Colosseum Bonus Disc PC6J = Final Blaster PC7J = Mizubaku Daibouken PC8J = The Ninjawarriors PC9J = The NewZealand Story PCAE = Silent Debuggers PCAJ = Silent Debuggers PCAP = Silent Debuggers PCBE = Dead Moon PCBJ = Dead Moon: Tsuki Sekai no Akumu PCBP = Dead Moon PCCJ = Makai Hakkenden Shada PCDJ = Appare! Gateball PCEE = Power Golf PCEJ = Power Golf PCEP = Power Golf PCHE = Drop Off PCHJ = Drop Rock Hora Hora PCHP = Drop Off PCJJ = Override PCKJ = Gai Flame PCMJ = Mr. Heli no Daibouken PCNJ = Winning Shot PCOE = Psychosis PCOJ = Paranoia PCOP = Psychosis PCPJ = Power Eleven PCQJ = Psycho Chaser PCRJ = Break In PCRL = Break In PCRN = Break In PCSJ = Digital Champ: Battle Boxing PCSJ = Digital Champ: Battle Boxing PCSJ01 = Pokemon Colosseum Bonus Disc PCSL = Digital Champ : Battle Boxing PCSN = Digital Champ Battle Boxing PCTJ = Power Tennis PCUJ = Fire ProWrestling 2nd Bout PCVE = World Class Baseball PCVP = World Class Baseball PCWJ = Image Fight PCXJ = Power League IV PCYJ = Wallaby!! Usagi no Kuni no Kangaroo Race PDCJ = Dai Makaimura PDDJ = Volfied PDEJ = S.C.I.: Special Criminal Investigation PDFJ = Jigoku Meguri PDGJ = Fire ProWrestling 3: Legend Bout PDHJ = Rastan Saga II PDIE = Champion Wrestler PDJJ = Street Fighter II': Champion Edition PDJL = Street Fighter II' : Champion Edition PDJN = Street Fighter II: Champion Edition PDUE01 = Another Super Mario Bros. Wii PKBJ01 = The Tower of Druaga PLUS = WiiMC+ PM4E01 = Mario Kart: Double Dash!! Bonus Disc PMNEO1 = New Old Super Mario Bros. Wii POPPSI = SingItStar Pop PPNE01 = New Super Mario Bros. Wii 2: The Next Levels PPNP01 = New Super Mario Bros. Wii 2: The Next Levels PRJE01 = Pac-Man vs. PRJJ01 = Pac-Man vs. PRJP01 = Pac-Man vs. PROE01 = New Super Mario Bros. Wii 14 Project Mario PT1PSI = SingIt Star Portugal Hits PT2PSI = SingIt Portugal Hits Summer Party PT3PSI = Sing IT Portugal Hits - Morangos com Açucar PUTA01 = Guitar Hero III Custom : Rock Hits PWNP69 = Pwned Super Mario Bros. Wii PXWE = Project X: Love Potion Disaster PZLE01 = The Legend of Zelda: Collector's Edition PZLJ01 = The Legend of Zelda: Collector's Edition PZLP01 = The Legend of Zelda: Collector's Edition QA2J = Nekketsu Koukou Dodge Ball-Bu: CD Soccer-hen QA3E = SimEarth: The Living Planet QA3J = SimEarth QA3P = SimEarth: The Living Planet QA4J = Super Darius II QA5J = Space Invaders: The Original Game QA6J = Super Darius QA7J = Legend of Xanadu: Kaze no Densetsu Xanadu QA8J = Spriggan Mark 2 QA9J = Kaze no Densetsu: Xanadu II QAAE = Super Air Zonk QAAJ = CD Denjin: Rockabilly Tengoku QAAP = Super Air Zonk QABE = Ys Book I & II QABJ = Ys I + II QABP = Ys Book I & II QACJ = Cho Aniki QACL = Cho Aniki QACN = Cho Aniki QADJ = Gradius II: Gofer no Yabou QADL = Gradius II: Gofer no Yabou QADN = Gradius II Gofer No Yabou QAEJ = A.III: A-Ressha de Ikou III QAFE = The Dynastic Hero QAFJ = Chou Eiyuu Densetsu: Dynastic Hero QAFP = The Dynastic Hero QAGE = Gate of Thunder QAGJ = Gate of Thunder QAGP = Gate of Thunder QAHJ = Kawa no Nushi Tsuni Shizenha QAJJ = Image Fight II QAKJ = Ai Chou Aniki QALJ = The Atlas: Renaissance Voyager QANJ = Neo Nectaris QAOJ = Dungeon Explorer II QAPJ = Akumajou Dracula X: Chi no Rondo QAPL = Castlevania : Rondo of Blood QAPN = Castlevania Rondo of Blood QAPP = Castlevania: Rondo of Blood QAQJ = Dragon Slayer: Eiyuu Densetsu QARJ = Blood Gear QASE = Lords of Thunder QASJ = Winds of Thunder QASP = Lords of Thunder QATE = Riot Zone QATJ = Crest of Wolf QATP = Riot Zone QAUE = Monster Lair QAUJ = Wonder Boy III: Monster Lair QAUP = Monster Lair QAVJ = Bomberman: Panic Bomber QAWJ = Star Parodier QAWL = Star Parodier QAWN = Star Parodier QAXJ = Martial Champion QAYJ = Seirei Senshi Spriggan QAZJ = Eikan wa Kimi ni: Koko Yakyu Zenkoku Taikai QBAJ = L Dis QBBE = Fighting Street QBBJ = Fighting Street QBBP = Fighting Street R01PET = SingItStar Queen R02PEA = SingItStar Rock Ballads R15POH = SingIt Star Radio 105 R22E01 = FlingSmash R22J01 = Tataite Hazumu: Super Smash Ball Plus R22P01 = FlingSmash R23E52 = Barbie and the Three Musketeers R23P52 = Barbie en De Drie Musketiers R24J01 = Chibi-Robo! R25EWR = LEGO Harry Potter: Years 1-4 R25PWR = LEGO Harry Potter: Jaren 1-4 R26E5G = Data East Arcade Classics R27E54 = Dora Saves the Crystal Kingdom R27X54 = Dora redt het Land van Kristal R28E54 = Top Spin 4 R28P54 = Top Spin 4 R29E52 = NPPL Championship Paintball 2009 R29P52 = Millennium Championship Paintball 2009 R2AE7D = Ice Age 2: The Meltdown R2AP7D = Ice Age 2: The Meltdown R2AX7D = Ice Age 2: The Meltdown R2DEEB = Dokapon Kingdom R2DJEP = Dokapon Kingdom For Wii R2DPAP = Dokapon Kingdom R2DPJW = Dokapon Kingdom R2EJ99 = Fish Eyes Wii R2FE5G = Freddi Fish: Kelp Seed Mystery R2FP70 = Freddi Fish en het verhaal van de verdwenen zeewierzaadjes R2GEXJ = Fragile Dreams: Farewell Ruins of the Moon R2GJAF = Fragile: Sayonara Tsuki no Haikyo R2GP99 = Fragile Dreams: Farewell Ruins of the Moon R2HE41 = Petz Horse Club R2IE69 = Madden NFL 10 R2IP69 = Madden NFL 10 R2JJAF = Taiko no Tatsujin Wii R2KE54 = Don King Boxing R2KP54 = Don King Boxing R2LJMS = Hula Wii: Hura de Hajimeru Bi to Kenkou!! R2ME20 = M&M's Adventure R2NE69 = NASCAR Kart Racing R2OE68 = Medieval Games R2OP68 = Medieval Games R2PE9B = Super Swing Golf Season 2 R2PJ9B = Super Swing Golf Season 2 R2PKZ4 = Super Swing Golf Season 2 R2PP99 = Super Swing Golf R2PP9B = Super Swing Golf R2QJC0 = Cooking Mama 2 Taihen Mama Wa Ooisogashi R2RE4F = Pony Friends 2 R2RP4F = Pony Friends 2 R2SE18 = Deca Sports 2 R2SJ18 = Deca Sporta 2 R2SP18 = Sports Island 2 R2TE41 = Teenage Mutant Ninja Turtles: Smash-Up R2TP41 = Teenage Mutant Ninja Turtles: Smash-Up R2UE8P = Let's Tap R2UJ8P = Let's Tap R2UP8P = Let's Tap R2VE01 = Sin & Punishment: Star Successor R2VJ01 = Sin and Punishment: Successor to the Sky R2VP01 = Sin and Punishment: Successor of the Skies R2WEA4 = Pro Evolution Soccer 2009 R2WJA4 = Winning Eleven PLAY MAKER 2009 R2WPA4 = Pro Evolution Soccer 2009 R2WXA4 = Pro Evolution Soccer 2009 R2YE54 = Birthday Party Bash R2YP54 = Mijn Verjaardag! R32J01 = Metroid Prime 2 R33E69 = AC/DC Live: Rock Band Track Pack R33P69 = AC/DC Live: Rock Band Track Pack R34E69 = Rock Band: Country Track Pack R35JC8 = Sangokushi 11 with Power-Up Kit R36E69 = Green Day: Rock Band R36P69 = Green Day: Rock Band R37E69 = Rock Band: Metal Track Pack R38E78 = Marvel Super Hero Squad R38P78 = Marvel Super Hero Squad R38X78 = Marvel Super Hero Squad: Walmart Edition R38Y78 = Marvel Super Hero Squad R39EFP = Shimano Xtreme Fishing R39PNK = Shimano Xtreme Fishing R3AE20 = Story Hour: Adventures R3AP20 = Story Hour: Adventures R3AP7J = Story Hour: Adventures R3BE8P = Samba de Amigo R3BJ8P = Samba de Amigo R3BP8P = Samba de Amigo R3CE20 = Chrysler Classic Racing R3CP20 = Chrysler Classic Racing R3CP7J = Chrysler Classic Racing R3DES5 = Dream Pinball 3D R3DPS5 = Dream Pinball 3D R3EEWR = Game Party 3 R3EPWR = Game Party 3 R3FJA4 = Jikkyou Powerful Major League 3 R3GXUG = Kidz Sports: Crazy Mini Golf R3HP6Z = Agent Hugo: Hula Holiday R3HX6Z = Agent Hugo: Hula Holiday R3IJ01 = Metroid Prime R3JE5G = Go Play Circus Star R3KP6N = Skyscraper R3LEWR = Green Lantern: Rise of the Manhunters R3LPWR = Green Lantern: Rise of the Manhunters R3ME01 = Metroid Prime: Trilogy R3MP01 = Metroid Prime: Trilogy R3NEXS = Guilty Gear XX Accent Core Plus R3NPH3 = Guilty Gear XX Accent Core Plus R3OE01 = Metroid: Other M R3OJ01 = Metroid: Other M R3OP01 = Metroid: Other M R3PEWR = Speed Racer: The Videogame R3PJ52 = Speed Racer R3PPWR = Speed Racer: The Videogame R3RE8P = Sonic & SEGA All-Stars Racing R3RP8P = Sonic & SEGA All-Stars Racing R3SE52 = Spider-Man: Web of Shadows R3SP52 = Spider-Man: Web of Shadows R3TE54 = Top Spin 3 R3TJG9 = Top Spin 3 R3TP54 = Top Spin 3 R3UJGD = Oyako de Asobo: Miffy no Omocha Bako R3VEFP = Deer Drive R3VPNK = Deer Drive R3XE6U = Sam & Max: Season One R3XP6V = Sam & Max: Season One R3YE70 = Sam & Max: Season Two: Beyond Time and Space R3YP70 = Sam & Max: Season Two: Beyond Time and Space R3ZE69 = Rock Band Track Pack: Classic Rock R42E69 = The Sims 2: Castaway R42P69 = De Sims 2: Op een Onbewoond Eiland R43E69 = EA Sports Active: Personal Trainer R43J13 = EA Sports Active Personal Trainer Wii 30-Hi Seikatsu Kaizen Program R43P69 = EA Sports Active: Personal Trainer R44J8P = Suzumiya Haruhi no Heiretsu R46ENS = Phantom Brave: We Meet Again R46JKB = Phantom Brave Wii R47E20 = ATV Quad Kings R48E7D = The Spiderwick Chronicles R48P7D = The Spiderwick Chronicles R49E01 = Donkey Kong Jungle Beat R49J01 = Donkey Kong: Jungle Beat R49P01 = Donkey Kong: Jungle Beat R4AE69 = SimAnimals R4AJ13 = SimAnimals R4AP69 = SimAnimals R4BEJZ = Championship Foosball R4BPGT = Table Football R4CE69 = SimCity Creator R4CJ13 = Simcity Creator R4CK69 = SimCity Creator R4CP69 = Simcity Creator R4DDUS = Die drei Fragezeichen - Das verfluchte Schloss R4EE01 = Endless Ocean: Blue World R4EJ01 = Forever Blue: Umi no Yobigoe (Endless Ocean 2) R4EP01 = Endless Ocean 2: Een zee vol avontuur R4FE20 = Story Hour: Fairy Tales R4FP20 = Story Hour: Fairy Tales R4FP7J = Story Hour: Fairy Tales R4IPNK = Mad Tracks R4LPUG = Farmyard Party: Featuring the Olympigs R4LXUG = Farmyard Party: Featuring the Olympigs R4MJ0Q = Shikakui Atama wo Marukusuru Wii R4NE5G = Major Minor's Majestic March R4NP5G = Major Minor's Majestic March R4NX5G = Major Minor's Majestic March R4PE69 = The Sims 2: Pets R4PP69 = De Sims 2: Huisdieren R4QE01 = Mario Strikers Charged R4QJ01 = Mario Strikers Charged R4QK01 = Mario Power Soccer R4QP01 = Mario Strikers Charged Football R4RE69 = FIFA Soccer 10 R4RJ13 = FIFA 10 WORLD CLASS SOCCER R4RK69 = FIFA 10 R4RP69 = FIFA 10 R4RX69 = FIFA 10 R4RY69 = FIFA 10 R4RZ69 = FIFA Soccer 10 R4SE54 = MLB Superstars R4VEA4 = Storybook Workshop R4VJA4 = Teleshibai Wii R4VJAF = Tere Shibai Wii R4WJA4 = Jikkyou Powerful Major League 2009 R4YJ2M = Sukeban Shachou Rena Wii R4ZE01 = Fatal Frame 4: Mask of the Lunar Eclipse R4ZJ01 = Fatal Frame IV: Mask of the Lunar Eclipse R4ZP01 = Fatal Frame IV: Mask of the Lunar Eclipse R52E08 = Neopets Puzzle Adventure R52P08 = Neopets Puzzle Adventure R53PFH = In The Mix Featuring Armin van Buuren R54FMR = Countdown: The Game R55F41 = Weekend Miljonairs R55P41 = Weekend Miljonairs 1e Editie R56EG9 = Astro Boy: The Video Game R56PG9 = Astro Boy: The Video Game R57FMR = Questions pour un champion R58DMR = U-Sing R58FMR = U-Sing R58PMR = U-Sing R58SMR = U-Sing R59D4Q = Club Penguin: Game Day! R59E4Q = Club Penguin: Game Day! R59P4Q = Club Penguin: Game Day! R5AE8P = The Golden Compass R5AP8P = The Golden Compass R5AX8P = The Golden Compass R5DE5G = Flip's Twisted World R5EPMR = Countdown: The Game R5FE41 = Academy of Champions: Soccer R5FP41 = Academy of Champions R5GE78 = Are You Smarter Than A 5th Grader?: Make the Grade R5IE4Q = Toy Story Mania! R5IP4Q = Toy Story Mania! R5IR4Q = Toy Story Mania! R5IX4Q = Toy Story Mania! R5JES5 = Pirates vs Ninjas Dodgeball R5JPS5 = Pirates vs Ninjas Dodgeball R5MJAF = Kotoba No Puzzle Mojipittan Wii Deluxe R5NJN9 = Doala De Wii R5OENR = Party Pigs: Farmyard Games R5OXUG = Farmyard Party: Featuring the Olympigs R5PE69 = Harry Potter and the Order of the Phoenix R5PJ13 = Harry Potter and the Order of the Phoenix R5PP69 = Harry Potter en de Orde van de Feniks R5PX69 = Harry Potter en de Orde van de Feniks R5QPGT = Circus R5SERW = Mortimer Beckett and the Secrets of Spooky Manor R5TE69 = Grand Slam Tennis R5TJ13 = Grand Slam Tennis R5TP69 = Grand Slam Tennis R5UE41 = CSI: Deadly Intent R5UP41 = CSI: Deadly Intent R5VE41 = James Cameron's Avatar: The Game R5VP41 = James Cameron's Avatar: The Game R5VX41 = James Cameron's Avatar: The Game R5WEA4 = Silent Hill: Shattered Memories R5WJA4 = Silent Hill: Shattered Memories R5XJ13 = MySims Agents R5XP69 = MySims Agents R5YD78 = All Star Cheerleader 2 R5YE78 = All Star Cheer Squad 2 R5YP78 = All Star Cheerleader 2 R62E4Q = Disney Sing It: Pop Hits R62P4Q = Disney Sing It: Pop Hits R63EG9 = Family Party: 30 Great Games Outdoor Fun R63PG9 = Family Party: 30 Great Games Outdoor Fun R64E01 = Wii Music R64J01 = Wii Music R64K01 = Wii Music R64P01 = Wii Music R65ENR = Buck Fever R66E41 = Press Your Luck 2010 Edition R67E6K = Smart Series Presents: JaJa's Adventure R68E5G = Go Play City Sports R69E36 = DiRT 2 R69P36 = Colin McRae: DiRT 2 R6APPU = Baby and Me R6BE78 = de Blob R6BJ78 = Blob Colorful Na Kibou R6BK78 = de Blob R6BP78 = de Blob R6BX78 = de Blob R6CEAF = We Cheer 2 R6CJAF = WE CHEER Dancing Spirits! R6DFJW = Code de la Route R6EE41 = Family Feud 2010 Edition R6FE41 = Six Flags Fun Park R6FERS = Six Flags Fun Park R6FP41 = Fun Park Party R6GPMR = Golden Balls R6HE54 = Ni Hao, Kai-lan: Super Game Day R6HP54 = Ni Hao, Kai-lan: Super Game Day R6IE54 = Baseball Blast! R6JJGD = Fullmetal Alchemist: Prince of the Dawn R6KP36 = Ashes Cricket 2009 R6KU36 = Ashes Cricket 2009 R6LEWR = LEGO Rock Band R6LPWR = LEGO Rock Band R6ME5Z = America's Next Top Model R6MPML = America's Next Top Model R6MXMR = Top Model R6NE41 = Shaun White Snowboarding: World Stage R6NP41 = Shaun White Snowboarding: World Stage R6NY41 = Shaun White Snowboarding: World Stage R6OE78 = Cars Race-O-Rama R6OP78 = Cars Race-O-Rama R6OX78 = Cars Race-O-Rama R6QE69 = MySims Agents R6REJH = TrackMania: Build to Race R6RPHH = TrackMania R6TEA4 = Tornado Outbreak R6TPA4 = Tornado Outbreak R6VE4Z = King of Clubs R6VPGN = King of Clubs R6WE68 = AMF Bowling World Lanes R6WP68 = AMF Bowling World Lanes R6XE69 = Hasbro: Family Game Night 2 R6XP69 = Hasbro: Familie Spellen Avond 2 R6YEXS = Squeeballs Party R6YPH3 = Squeeballs Party R72E5G = Cake Mania: In The Mix! R72P5G = Cake Mania: In The Mix! R74E20 = Arcade Shooting Gallery R75E20 = Dream Salon R76E54 = NBA 2K10 R76P54 = NBA 2K10 R77JAF = SD Gundam: G Generation Wars R79JAF = Mobile Suit Gundam: MS Sensen 0079 R7AE69 = SimAnimals Africa R7AJ13 = SimAnimals Africa R7AP69 = SimAnimals Africa R7BE20 = Jelly Belly Ballistic Beans R7BP7J = Jelly Belly Ballistic Beans R7CJ01 = Captain Rainbow R7EE8P = NiGHTS: Journey of Dreams R7EJ8P = Nights Journey Of Dreams R7EP8P = NiGHTS: Journey of Dreams R7FEGD = Final Fantasy Fables: Chocobo's Dungeon R7FJGD = Final Fantasy Fables: Chocobo's Dungeon R7FPGD = Final Fantasy Fables: Chocobo's Dungeon R7GEAF = Dragon Ball: Revenge of King Piccolo R7GJAF = Dragon Ball: Tenkaichi Daibouken R7GPAF = Dragon Ball: Revenge of King Piccolo R7HE6K = Army Rescue R7IE69 = Charm Girls Club: Pajama Party R7IP69 = Charm Girls Club: Pyjama Party R7KE6K = Rock Blast R7LP7J = Margot's Bepuzzled! R7MXFR = Musiic Party: Rock the House R7NE20 = Cold Stone Creamery: Scoop It Up R7OE54 = NHL 2K10 R7OP54 = NHL 2K10 R7PE01 = Punch-Out!! R7PJ01 = Punch-Out!! R7PP01 = Punch-Out!! R7QE52 = Chaotic: Shadow Warriors R7RE52 = Little League World Series Baseball 2009 R7SE5G = Escape The Museum R7SP5G = Escape The Museum R7TFJW = Pétanque Pro R7VEWR = Vacation Isle: Beach Party R7VPWR = Vacation Isle: Beach Party R7WE52 = Mountain Sports R7WP52 = Mountain Sports R7XE69 = Need for Speed: Nitro R7XJ13 = Need for Speed: Nitro R7XP69 = Need for Speed: Nitro R7YFMR = Peking Express R7ZE41 = Team Elimination Games R7ZP41 = Crazy Crew Party R82E52 = Animal Planet: Vet Life R82JG0 = Darts Wii DX R82P52 = Animal Planet: Vet Life R83EA4 = Pop'n Music R83JA4 = Pop'n Music R83PA4 = Pop'n Rhythm R84EE9 = Harvest Moon: Tree Of Tranquility R84J99 = Bokujo for Wii R84P99 = Harvest Moon: Tree of Tranquility R85EG9 = The Secret Saturdays: Beasts of the 5th Sun R85PG9 = The Secret Saturdays: Beasts of the 5th Sun R86E20 = Dream Dance & Cheer R87EVN = Ski-Doo: Snowmobile Challenge R88J2L = Anpanman Niko Niko Party R89JEL = Tokyo Friend Park 2 Wii R8AE01 = PokéPark Wii: Pikachu's Adventure R8AJ01 = PokéPark Wii: Pikachu no Daibouken R8AP01 = PokéPark Wii: Pikachu's Adventure R8BE41 = Imagine Party Babyz R8BP41 = Babysitting Party R8DEA4 = Yu-Gi-Oh! 5D's: Duel Transer R8DJA4 = Yu-Gi-Oh! 5D's: Duel Transer R8DPA4 = Yu-Gi-Oh! 5D's: Master of the Cards R8EJQC = Earth Seeker R8FES5 = Fast Food Panic R8FJHA = Takumi Restaurant ha Daihanjou! R8FJSC = Takumi Restaurant wa Daihanjou! (Simplified Chinese Translation) R8FPNP = Fast Food Panic R8GJC8 = G1 Jockey Wii 2008 R8GPC8 = G1 Jockey Wii 2008 R8HE4Q = Hannah Montana: The Movie R8HP4Q = Hannah Montana: The Movie R8HX4Q = Hannah Montana: The Movie R8HY4Q = Hannah Montana: The Movie R8IE78 = SpongeBob's Truth or Square R8IP78 = SpongeBob Squarepants: Truth or Square R8IS78 = SpongeBob's Truth or Square R8JEWR = The Lord of the Rings: Aragorn's Quest R8JPWR = In de Ban van de Ring: Aragorn's Avontuur R8KPKM = Street Football 2 R8LE20 = Chicken Blaster R8LP7J = Chicken Blaster R8NEA4 = The Cages: Pro Style Batting Practice R8NJG0 = Batting Revolution R8OE54 = Ringling Bros. and Barnum & Bailey Circus R8OX54 = Mijn Circus R8PC01 = Super Paper Mario(CN) R8PE01 = Super Paper Mario R8PJ01 = Super Paper Mario R8PK01 = Super Paper Mario R8PP01 = Super Paper Mario R8QPRT = Crazy Quiz: Are You Crazy Enough? R8RP41 = Arthur en De Wraak Van Malthazard R8SE41 = Vacation Sports R8SP41 = World Sports Party R8SX41 = World Sports Party R8TENR = Tournament Pool R8UXMR = Adibou R8VE41 = Petz Rescue: Wildlife Vet R8VP41 = Red De Aarde : Jouw missie: Verzorg wilde dieren R8XE52 = Jurassic: The Hunted R8XZ52 = Top Shot Dinosaur Hunter R8YE52 = Cabela's Big Game Hunter 2010 R8ZE8P = Daisy Fuentes Pilates R8ZPGT = Daisy Fuentes Pilates R92E01 = Pikmin 2 R92J01 = Pikmin 2 R92P01 = Pikmin 2 R94PMR = The Ultimate Red Ball Challenge R94XMR = The Ultimate Red Ball Challenge Wipeout R96EAF = Klonoa R96JAF = Kaze no Klonoa Door to Phantomile R96KAF = Klonoa - Door to Phantomile R96PAF = Klonoa R97E9B = Family Fun Football R9AE52 = Activision Demo Action Pack (Demo) R9BPMT = Bob de Bouwer: We Bouwen een Feestje! R9CPMR = I'm a Celebrity...Get Me Out of Here! R9DE78 = Drawn to Life: The Next Chapter R9DP78 = Drawn to Life: Het Nieuwe Hoofdstuk R9EPNP = Brico Party R9FE36 = F1 2009 R9FJ36 = F1 2009 R9FP36 = F1 2009 R9GEWR = Legend of the Guardians: The Owls of Ga'Hoole R9GPWR = Legende van Ga'Hoole R9HE78 = Are You Smarter Than A 5th Grader?: Game Time R9IE01 = Pikmin R9IJ01 = Pikmin R9IK01 = Pikmin R9IP01 = Pikmin R9JE69 = The Beatles: Rock Band R9JP69 = The Beatles: Rock Band R9KE20 = Groovin' Blocks R9LE41 = Sleepover Party R9LP41 = Girls Life: Pyjama Party R9ME5Z = World Championship Athletics R9MPFR = Summer Athletics 2009 R9NPMR = Family Fortunes R9OE69 = Tiger Woods PGA Tour 10 R9OK69 = Tiger Woods PGA Tour 10 R9OP69 = Tiger Woods PGA Tour 10 R9QPNG = Dance Party Club Hits R9RPNG = Dance Party Pop Hits R9SPPL = Sudoku Ball: Detective R9TE69 = Tiger Woods PGA Tour 09 All-Play R9TJ13 = Tiger Woods PGA Tour 09 All-Play R9TK69 = Tiger Woods PGA Tour 09 All-Play R9TP69 = Tiger Woods PGA Tour 09 All-Play R9UE52 = Build-A-Bear Workshop: Friendship Valley R9UPGY = Build-A-Bear Workshop: Friendship Valley R9VE52 = Cabela's Outdoor Adventures 2010 R9WPSP = WSC Real 09: World Snooker Championship R9XE52 = Arcade Zone R9XP52 = Arcade Zone R9YES5 = Sled Shred R9ZE54 = Major League Baseball 2K9 RABAZZ = System Menu Changer RADP01 = New Super Mario Bros. Wii 0-6 Radiance RB2E6K = Balloon Pop RB2J2K = Rainbow Pop RB2P6K = Pop! RB2PGT = Pop! RB4E08 = Resident Evil 4: Wii Edition RB4J08 = Biohazard 4 Wii Edition RB4P08 = Resident Evil 4: Wii Edition RB4X08 = Resident Evil 4: Wii Edition RB5E41 = Brothers In Arms: Earned In Blood RB5P41 = Brothers In Arms: Earned In Blood RB6J18 = Bomberman RB7E54 = Bully: Scholarship Edition RB7P54 = Bully: Scholarship Edition RB8E70 = Backyard Baseball '09 RB9D78 = Bratz: The Movie RB9E78 = Bratz: The Movie RB9P78 = Bratz: The Movie RB9X78 = Bratz: The Movie RB9Y78 = Bratz: The Movie RBAE41 = Blazing Angels: Squadrons of WWII RBAP41 = Blazing Angels: Squadrons of WWII RBBE18 = Bomberman Land RBBJ18 = Bomberman Land Wii RBBP99 = Bomberman Land Wii RBCP41 = Telly Addicts RBEE52 = Bee Movie Game RBEP52 = Bee Movie Game RBEX52 = Bee Movie Game RBFE20 = Balls of Fury RBFP20 = Balls of Fury RBFP7J = Balls of Fury RBGE54 = The BIGS RBGP54 = The Bigs RBHE08 = Resident Evil Archives: Resident Evil Zero RBHJ08 = Biohazard 0 RBHP08 = Resident Evil Archives: Resident Evil Zero RBIEE9 = Harvest Moon: Animal Parade RBIJ99 = Bokujou Monogatari Waku Waku Animal March RBIP99 = Harvest Moon: Animal Parade RBKE69 = Boom Blox RBKJ13 = Boom Blox RBKK69 = Boom Blox RBKP69 = Boom Blox RBLE8P = Bleach: Shattered Blade RBLJ8P = Bleach: Shattered Blade RBLP8P = Bleach: Shattered Blade RBME5G = Bust-a-Move Bash! RBMPGT = Bust-A-Move RBNEG9 = Ben 10: Protector of Earth RBNPG9 = Ben 10: Protector of Earth RBNXG9 = Ben 10: Protector of Earth RBOE69 = Boogie RBOP69 = Boogie RBPE4Z = Brunswick Pro Bowling RBPP4Z = Brunswick Pro Bowling RBPPGT = Brunswick Pro Bowling RBQENR = Classic British Motor Racing RBQPUG = Classic British Motor Racing RBRE5G = Blast Works: Build, Trade, Destroy RBRP5G = Blast Works: Build, Trade, Destroy RBRX5G = Blast Works: Build, Trade, Destroy RBSJ08 = Sengoku Basara 2 Heroes (Double Pack) RBSJ09 = Sengoku Basara 2 Heroes RBTE8P = SEGA Bass Fishing RBTJ8P = Sega Bass Fishing RBTP8P = Sega Bass Fishing RBUE08 = Resident Evil: The Umbrella Chronicles RBUJ08 = Biohazard The Umbrella Chronicles RBUK08 = Biohazard The Umbrella Chronicles RBUP08 = Resident Evil: The Umbrella Chronicles RBVE52 = Barbie as The Island Princess RBVP52 = Barbie als de Eiland prinses RBWE01 = Battalion Wars 2 RBWJ01 = Totsugeki Famicom Wars vs. RBWP01 = Battalion Wars 2 RBXJ8P = Bleach: Versus Crusade RBYE78 = Barnyard RBYJ78 = Barnyard RBYP78 = Barnyard RBZE5Z = Billy the Wizard: Rocket Broomstick Racing RBZP5Z = Billy the Wizard: Rocket Broomstick Racing RBZPUG = Billy the Wizard: Rocket Broomstick Racing RBZXUG = Billy the Wizard: Rocket Broomstick Racing RC2E78 = Cars: Mater-National RC2P78 = Cars: De Internationale Race van Takel RC2X78 = Cars: De Internationale Race van Takel RC2Y78 = Cars: De Internationale Race van Takel RC3E41 = Petz Catz 2 RC3J41 = Nyanko To Mahou No Boushi RC3P41 = Catz RC3X41 = Catz RC4JD9 = Crayon Shin-Chan: Saikyou Kazoku Kasukabe King Wii RC4SGT = Shin Chan The New Adventures For Wii RC5JDQ = Osouji Sentai Clean Keeper RC7E20 = Sea Monsters: A Prehistoric Adventure RC7P7J = Sea Monsters: A Prehistoric Adventure RC8E7D = Crash: Mind Over Mutant RC8P7D = Crash Bandicoot: Mind Over Mutant RC8X7D = Crash: Mind Over Mutant RC9PGN = CID: The Dummy RCAE78 = Cars RCAJ78 = Cars RCAP78 = Cars RCAX78 = Cars RCAY78 = Cars RCBE52 = Cabela's Big Game Hunter RCBP52 = Cabela's Big Game Hunter RCCE5G = Cooking Mama: Cook Off RCCJC0 = Cooking Mama RCCPGT = Cooking Mama RCCR78 = Guitar Hero III Custom: Coheed and Cambria RCDD52 = Call of Duty 3 RCDE52 = Call of Duty 3 RCDP52 = Call of Duty 3 RCDX52 = Call of Duty 3 RCEE5Z = Mini Desktop Racing RCEPUG = Mini Desktop Racing RCEXUG = Mini Desktop Racing RCFE41 = Cosmic Family RCFP41 = Cosmic Family RCGE54 = Carnival Games RCGP54 = Carnival: Kermis Games RCHC52 = Guitar Hero III Custom : Guitar Hero II RCHEAF = We Cheer RCHJAF = We Cheer RCHPAF = We Cheer RCHPGT = We cheer RCIE41 = CSI: Hard Evidence RCIP41 = CSI: Hard Evidence RCJE8P = The Conduit RCJP8P = The Conduit RCKPGN = Alan Hansen's Sports Challenge RCLE4Q = Disney's Chicken Little: Ace in Action RCLP4Q = Chicken Little: De Avonturen van Ace RCOC99 = Meitantei Conan: Tsuioku no Mirage RCOJ99 = Meitantei Conan: Tsuioku no Mirage RCOK99 = Detective Conan: Case Closed: The Mirapolis Investigation RCOKZF = Case Closed: The Mirapolis Investigation RCOPNP = Case Closed - One Truth Prevails: The Mirapolis Investigation RCPE18 = Kororinpa: Marble Mania RCPJ18 = Kororinpa RCPP18 = Kororinpa RCQEDA = Penny Racers Party: Turbo-Q Speedway RCQJDA = Choro Q RCRE5D = Cruis'n RCRP5D = Cruis'n RCSE20 = Chicken Shoot RCSP20 = Chicken Shoot RCSP7J = Chicken Shoot RCTE5Z = Counter Force RCTP5Z = Counter Force RCTPGT = Counter Force RCUE52 = Cabela's Legendary Adventures RCUP52 = Cabela's Legendary Adventures RCVE41 = Far Cry: Vengeance RCVP41 = Far Cry: Vengeance RCXE78 = All Star Cheer Squad RCXP78 = All Star Cheerleader RCXX78 = All Star Cheerleader RCYPGN = Cheggers Party Quiz RD2E41 = Red Steel 2 RD2J41 = Red Steel 2 RD2K41 = Red Steel 2 RD2P41 = Red Steel 2 RD2X41 = Red Steel 2 RD4EA4 = Dance Dance Revolution: Hottest Party 2 RD4JA4 = Dance Dance Revolution: Furu Furu Party RD4PA4 = Dance Dance Revolution: Hottest Party 2 RD6EE9 = Animal Kingdom: Wildlife Expedition RD6J8N = Doubutu Kisoutengai RD6PNP = SAFAR'Wii RD8E52 = Dancing with the Stars RD9J18 = Sudoku RDAE52 = Dancing with the Stars: We Dance! RDBE70 = Dragon Ball Z: Budokai Tenkaichi 2 RDBJAF = Dragon Ball Z: Sparking! NEO RDBP70 = Dragon Ball Z: Budokai Tenkaichi 2 RDBPAF = Dragon Ball Z: Budokai Tenkaichi 2 RDCE78 = Deadly Creatures RDCP78 = Deadly Creatures RDDEA4 = Dance Dance Revolution: Hottest Party RDDJA4 = Dance Dance Revolution: Hottest Party RDDPA4 = Dance Dance Revolution Hottest Party RDEJ0A = Zenkoku Dekotora Matsuri RDFE41 = Shaun White Snowboarding: Road Trip RDFP41 = Shaun White Snowboarding: Road Trip RDGEA4 = Castlevania Judgment RDGJA4 = Akumajou Dracula Judgment RDGPA4 = Castlevania Judgment RDHE78 = Destroy All Humans! Big Willy Unleashed RDHP78 = Destroy All Humans! Big Willy Unleashed RDIE41 = The Dog Island RDIJG2 = The Dog Island RDIP41 = The Dog Island RDJE4F = Death Jr.: Root of Evil RDJP4F = Death Jr.: Root of Evil RDKE01 = Donkey Kong: Barrel Blast RDKJ01 = Donkey Kong Taru Jet Race RDKP01 = Donkey Kong: Jet Race RDLE5G = Spy Fox in Dry Cereal RDLP70 = Spy Fox In Operatie Melk Weg RDME6K = Domino Rally RDMJ8N = Go! Go! Minon RDMPHZ = Minon: Everyday Hero RDNEA4 = Dance Dance Revolution: Disney Grooves RDOE41 = Petz Dogz 2 RDOJ41 = Dog To Mahou No Boushi RDOP41 = Dogz RDOX41 = Dogz RDPE54 = Dora Saves the Snow Princess RDPP54 = Dora Redt de Sneeuwprinses RDPX54 = Dora redt de Sneeuwprinses RDQEGD = Dragon Quest Swords: The Masked Queen and The Tower of Mirrors RDQJGD = Dragon Quest Swords: Kamen no Joou to Kagami no Tou RDQPGD = Dragon Quest Swords: The Masked Queen and the Tower of Mirrors RDREA4 = Dewy's Adventure RDRJA4 = Dewy's Adventure RDRPA4 = Dewy's Adventure RDSE70 = Dragon Ball Z: Budokai Tenkaichi 3 RDSJAF = Dragon Ball Z: Sparking! METEOR RDSPAF = Dragon Ball Z: Budokai Tenkaichi 3 RDSZ70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino RDTEAF = Tamagotchi: Party On! RDTJAF = Tamagotchi Pikadai RDTPAF = Tamagotchi: Party On! RDUE01 = DU Super Mario Bros. : Find That Princess RDUJDQ = Sugorochronicle Migite Ni Ken Wo Hidarite Ni Saikoro Wo RDVE41 = Driver: Parallel Lines RDVP41 = Driver: Parallel Lines RDWEG9 = Dragon Blade: Wrath of Fire RDWJG9 = Dragon Blade: Wrath Of Fire RDWPG9 = Dragon Blade: Wrath of Fire RDXE18 = Deca Sports RDXJ18 = Deca Sporta RDXKA4 = Deca Sporta RDXP18 = Sports Island RDYEGN = CID: The Dummy RDZJ01 = Disaster: Day of Crisis RDZP01 = Disaster: Day of Crisis RE3ENR = WWII Aces RE4E08 = Resident Evil Archives: Resident Evil RE4J08 = Biohazard RE4P08 = Resident Evil Archives: Resident Evil RE5PAF = The Munchables RE6PRT = Summer Challenge: Athletics Tournament RE7PNK = Hunting Challenge RE8J99 = Katekyoo Hitman Reborn Kindan No Yami No Delta REAE69 = Celebrity Sports Showdown REAF69 = Celebrity Sports Showdown REAP69 = Celebrity Sports Showdown REBE4Z = Mr Bean's Wacky World of Wii REBPMT = Mr Bean's Wacky World of Wii RECE6K = Spy Games: Elevator Mission RECP6K = Spy Games: Elevator Mission REDE41 = Red Steel REDJ41 = Red Steel REDP41 = Red Steel REFP41 = My French Coach: Improve Your French REGE36 = Emergency Mayhem REGP36 = Emergency Mayhem REHE41 = Emergency Heroes REHP41 = Emergency Heroes REJEAF = Active Life: Extreme Challenge REJJAF = Family Trainer 2 REJPAF = Family Trainer: Extreme Challenge REKE41 = Gold's Gym: Cardio Workout REKJ2N = Shape Boxing Wii De Enjoy Diet REKP41 = My Fitness Coach: Cardio Workout REKU41 = My Fitness Coach: Cardio Workout RELEA4 = Elebits RELJA4 = Elebits RELKA4 = Elebits RELPA4 = Eledees RELSAB = Sonic Adventure DX: Director's Cut (Preview Prototype) REMJ8P = Doraemon Wii Himitsu Douguou Ketteisen RENE8P = Sonic and the Black Knight RENJ8P = Sonic and the Black Knight RENP8P = Sonic and the Black Knight REQE54 = Go Diego Go! Safari Rescue REQP54 = Go, Diego, Go! Safari Avontuur REQX54 = Go, Diego, Go!: Safari Avontuur REQY54 = Go, Diego, Go! Safari Avontuur RESP41 = My Spanish Coach: Improve Your Spanish RETJAF = Ennichi No Tatsujin REUPNK = My Body Coach REVJ8P = Imabi Kisô: Kaimei Hen REVJBP = Imabikisou: Kaimei Hen REWFMR = My Horse Club REWXMR = My Horse Club: Op zoek naar de mooie Appaloosa REWYMR = My Horse Club: Op zoek naar de mooie Appaloosa REXE01 = Excite Truck REXJ01 = Excite Truck REXP01 = Excite Truck REYE4Q = Disney Sing It: High School Musical 3 Senior Year REYP4Q = Disney Sing It: High School Musical 3 REYX4Q = Disney Sing It: High School Musical 3 REZEJJ = Fritz Chess REZPKM = Fritz Chess RF2E54 = Fantastic Four: Rise of the Silver Surfer RF2P54 = Fantastic Four: Rise of the Silver Surfer RF3E52 = Ferrari Challenge: Trofeo Pirelli RF3P6M = Ferrari Challenge RF4E36 = Super Fruit Fall RF4P6M = Super Fruit Fall RF7J08 = Tatsunoko vs. Capcom: Cross Generation of Heroes RF8E69 = FIFA Soccer 08 RF8J13 = FIFA 08 RF8K69 = FIFA 08 RF8P69 = FIFA 08 RF8X69 = FIFA 08 RF8Y69 = FIFA 08 RF9E69 = FIFA Soccer 09 All-Play RF9J13 = FIFA 09 All-Play RF9K69 = FIFA 09 All-Play RF9P69 = FIFA 09 All-Play RF9X69 = FIFA 09 All-Play RF9Y69 = FIFA 09 All-Play RFAEAF = Active Life: Outdoor Challenge RFAJAF = Family Trainer: Athletic World RFAPAF = Family Trainer RFBE01 = Endless Ocean RFBJ01 = Forever Blue RFBP01 = Endless Ocean RFCEGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFCJGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFCPGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFEE01 = Fire Emblem: Radiant Dawn RFEJ01 = Fire Emblem Akatsuki No Megami RFEP01 = Fire Emblem: Radiant Dawn RFFEGD = Final Fantasy Crystal Chronicles: Echoes of Time RFFJGD = Final Fantasy Crystal Chronicles: Echoes of Time RFFPGD = Final Fantasy Crystal Chronicles: Echoes of Time RFJJAF = Family Jockey RFKE41 = My Fitness Coach RFKJ41 = My Fitness Coach RFKP41 = My Fitness Coach: Fit En Gezond RFKX41 = My Fitness Coach: Fit en Gezond RFLE69 = Madden NFL 09 All-Play RFLP69 = Madden NFL 09 All-Play RFLPWK = Wii Freeloader RFMJAF = Pro Yakyuu Family Stadium RFNE01 = Wii Fit RFNJ01 = Wii Fit RFNK01 = Wii Fit RFNP01 = Wii Fit RFNW01 = Wii Fit RFOE52 = Spider-Man: Friend or Foe RFOP52 = Spider-Man: Friend or Foe RFOX52 = Spider-Man: Friend or Foe RFPE01 = Wii Fit Plus RFPJ01 = Wii Fit Plus RFPK01 = Wii Fit Plus RFPP01 = Wii Fit Plus RFPR01 = Wii Fit Plus RFPW01 = Wii Fit Plus RFQE69 = FaceBreaker K.O. Party RFQJ13 = FaceBreaker K.O. Party RFQJ69 = FaceBreaker K.O. Party RFQK69 = FaceBreaker: K.O. Party RFQP69 = FaceBreaker: K.O. Party RFRE5G = Furu Furu Park RFRJC0 = Furu Furu Park RFSEEB = Shiren the Wanderer RFSJ8P = Fushigi No Dungeon: Furai No Shiren 3 RFTE70 = Backyard Football RFTP70 = Backyard Football '08 RFUJA4 = Mahjong Kakutou Club Wii: Wi-fi Taiou RFVE52 = Monkey Mischief! Party Time RFVP52 = Monkey Mischief! 20 Games RFWE5Z = Safari Adventures Africa RFWPNK = Safari Adventures Africa RFYFMR = Fort Boyard RFZE41 = Imagine Fashion Party RFZP41 = Laura's Passie Modeshow RG0E52 = Guitar Hero III Custom : Green Day Plus RG1552 = Guitar Hero III Custom : Weird Al Yankovic RG1E52 = Guitar Hero III Custom : Revenge RG2E52 = Guitar Hero III Custom : The Beatles Plus RG2EXS = Guilty Gear XX Accent Core RG2JJF = Guilty Gear XX Accent Core RG2PGT = Guilty Gear XX Accent Core RG2PXS = Guilty Gear XX Accent Core RG3E52 = Guitar Hero III Custom : Muse and Rush RG4152 = Guitar Hero III Custom : Sum 41 RG4E52 = Guitar Hero Mayan Apocalypse RG4JC0 = Let's Go By Train Shinkansen EX RG5EWR = Guinness World Records: The Videogame RG5PWR = Guinness World Records: The Videogame RG6E69 = Boogie SuperStar RG6P69 = Boogie Superstar RG7EQH = City Builder RG8E41 = Petz Sports RG8P41 = Petz Sports: Dog Playground RG9E52 = Guitar Hero III Custom : Anarchy RG9E54 = Carnival Games: Mini Golf RG9P54 = Carnival Games: Mini Golf RGAE8P = Planet 51: The Game RGAP8P = Planet 51: Het Spel RGBE08 = Harvey Birdman: Attorney at Law RGBP08 = Harvey Birdman: Attorney at Law RGCEXS = MiniCopter: Adventure Flight RGCJJF = Petitcopter Wii Adventure Flight RGCM52 = Guitar Hero III Custom : Metallica RGCPGT = Radio Helicopter RGCS52 = Guitar Hero III Custom : ClasSick Edition RGDEA4 = Target: Terror RGDPA4 = Target: Terror RGEJJ9 = The World Of Golden Eggs Norinori Rhythm RGEK52 = Guitar Hero III Custom: Slipknot RGFE69 = The Godfather: Blackhand Edition RGFF69 = The Godfather: blackhand edition RGFI69 = The Godfather: Blackhand Edition RGFP69 = The Godfather: Blackhand Edition RGFS69 = The Godfather: Blackhand Edition RGGE52 = Guitar Hero III Custom : Rock The Games RGGJAF = Gegege No Kitarou Youkai Daiundoukai RGHC20 = Guitar Hero III Custom : Fail Edition RGHE51 = Guitar Hero III Custom : Aspero RGHE52 = Guitar Hero III: Legends of Rock RGHE60 = Guitar Hero III Custom: WTF Custom RGHE61 = I Fought The Law - GH3 RGHE62 = Sweet Home Alabama - GH3 RGHE69 = Guitar Hero III Custom : Legends of METAL RGHEMR = Guitar Hero III Custom : Modern Rock RGHI52 = Guitar Hero III Custom: Chimba RGHJ52 = Guitar Hero III Legends of Rock RGHK52 = Guitar Hero III Legends of Rock RGHP52 = Guitar Hero III: Legends Of Rock RGHPOH = SingItStar Italian Greatest Hits RGHPS2 = Guitar Hero III Custom : J-Music RGHX52 = Guitar Hero III Custom: Anime's Alex Chan RGIJC8 = G1 Jockey Wii RGIPC8 = G1 Jockey Wii RGJE4Z = George of the Jungle: Search for the Secret RGJP7U = George of the Jungle: Search for the Secret RGKE52 = Guitar Hero III Custom : KoRn RGKENR = Kidz Sports: Crazy Golf RGKPNR = Crazy Mini Golf RGLE7D = Geometry Wars: Galaxies RGLP7D = Geometry Wars: Galaxies RGME5D = The Grim Adventures of Billy & Mandy RGMP5D = The Grim Adventures of Billy & Mandy RGNJAF = Gintama Yorozuya Tuve RGOJJ9 = The World of Golden Eggs Nissan Note Version RGPJAF = Anime Slot Revolution Pachi-Slot Kidou Senshi Gundam II Ai Senshi Hen RGQE70 = Ghostbusters: The Video Game RGQP70 = Ghostbusters: The Video Game RGRM52 = Guitar Hero III Custom: Rock & Metal RGSE8P = Ghost Squad RGSJ8P = Ghost Squad RGSP8P = Ghost Squad RGTE41 = GT Pro Series RGTJBL = GT Pro Series RGTP41 = GT Pro Series RGVE52 = Guitar Hero: Aerosmith RGVE99 = Guitar Hero Aerosmith Custom: NOT Aerosmith but... RGVJ52 = Guitar Hero: Aerosmith RGVP52 = Guitar Hero: Aerosmith RGWE41 = Rabbids Go Home RGWJ41 = Rabbids Go Home RGWP41 = Rabbids Go Home RGWX41 = Rabbids Go Home RGXE5D = Game Party RGXEFN = Guitar Hero III Custom: Meteo Last Custom RGXM52 = Guitar Hero III Custom : xMxExTxAxLx's Edition RGXP5D = Game Party RGYE5Z = Action Girlz Racing RGYPUG = Action Girlz Racing RGZC52 = Guitar Hero III Custom : Led Zeppelin RGZE52 = Guitar Hero III Custom : Shred Edition RGZE70 = Godzilla Unleashed RGZP70 = Godzilla Unleashed RH2E41 = Hell's Kitchen: The Video Game RH2P41 = Hell's Kitchen The game RH3E4Q = High School Musical 3: Senior Year Dance! RH3J4Q = High School Musical 3: Senior Year Dance! RH3P4Q = High School Musical 3: Senior Year Dance! RH4XUG = Hamster Heroes RH5EVN = Horse Life Adventures RH5PKM = Horse Life 2 RH6E69 = Harry Potter and the Half-Blood Prince RH6K69 = Harry Potter and the Half Blood Prince RH6P69 = Harry Potter en de Halfbloed Prins RH7J8P = Jissen Pachislot Hisshouhou! Sammy's Collection Hokuto no Ken Wii RH8E4F = Tomb Raider: Underworld RH8JEL = Tomb Raider: Underworld RH8P4F = Tomb Raider: Underworld RH8X4F = Tomb Raider: Underworld RH9JC8 = Harukanaru Toki no Naka de 4 RHAE01 = Wii Play RHAJ01 = Hajimete no Wii RHAK01 = Wii Play RHAP01 = Wii Play RHAW01 = Wii Play RHCE52 = The History Channel: Battle for the Pacific RHCP52 = The History Channel: Battle for the Pacific RHD222 = The House of The Dead 2 RHD333 = The House of the Dead 3 RHDE8P = The House of the Dead 2 & 3 Return RHDJ8P = The House of The Dead 2 & 3 Return RHDP8P = The House of The Dead 2 & 3 Return RHEEJJ = Professor Heinz Wolff's Gravity RHEPKM = Professor Heinz Wolff's Gravity RHFE5D = Happy Feet RHFP5D = Happy Feet RHGH52 = Guitar Hero III Custom : RandomHero's RHGP6Z = Agent Hugo: Lemoon Twist RHGX6Z = Agent Hugo: Lemoon Twist RHHJ8J = Suzumiya Haruhi no Gekidou RHIEXJ = Victorious Boxers: Revolution RHIJ41 = Hajime No Ippo Revolution RHIJJ9 = Hajime No Ippo Revolution RHIP41 = Victorious Boxers Challenge RHJJ13 = Ginsei Table Games Wii RHKE18 = Help Wanted: 50 Wacky Jobs RHKJ18 = Hataraku Hit RHKP18 = Job Island RHLE4Z = World Championship Poker Featuring Howard Lederer: All-In RHLPGT = World Championship Poker Featuring Howard Lederer: All-In RHMEE9 = Harvest Moon: Magical Melody RHMP99 = Harvest Moon: Magical Melody RHNE70 = My Horse & Me RHNP70 = My Horse and Me RHOE8P = The House of the Dead: Overkill RHOJ8P = The House of The Dead: Overkill RHOP8P = The House of the Dead: Overkill RHPJ8N = Akko De Pon! Ikasama Hourouki RHQE4Q = Hannah Montana: Spotlight World Tour RHQP4Q = Hannah Montana: Spotlight World Tour RHQX4Q = Hannah Montana: Spotlight World Tour RHQY4Q = Hannah Montana: Spotlight World Tour RHRJ99 = Kateikyou Hitman Reborn! Dream Hyper Battle! Wii RHSE36 = Heatseeker RHSP36 = Heatseeker RHSX36 = Heatseeker RHSY36 = Heatseeker RHTE54 = Manhunt 2 RHTP54 = Manhunt 2 RHUE20 = Skate City Heroes RHUP20 = Skate City Heroes RHUP7J = Skate City Heroes RHVE5Z = Crazy Chicken Tales RHVPFR = Crazy Chicken Tales RHWE52 = Hot Wheels: Beat That! RHWP52 = Hot Wheels: Beat That! RHXE78 = Battle of the Bands RHXP78 = Battle of the Bands RHYJAF = Haneru no Tobira Wii RHZE41 = Petz Horsez 2 RHZP41 = Horsez: Plezier op de manege RI1POH = SingItStar Italian Party RI2E4Q = High School Musical: Sing It! RI2P4Q = High School Musical: Sing It! RI2POH = SingItStar Italian Party vol. 2 RI3E5D = The Ant Bully RI3P5D = The Ant Bully RI3POH = SingItStar Italian Top.it RI6ENR = Summer Sports 2: Island Sports Party RI6P41 = Summer Sports Party RI7E4Z = Monster Mayhem: Build and Battle RI8E41 = Brothers In Arms: Road to Hill 30 RI8P41 = Brothers In Arms: Road To Hill 30 RI9EGT = Diva Girls: Divas on Ice RI9PGT = Diva Girls: Princess On Ice RIAE52 = Ice Age: Dawn of the Dinosaurs RIAI52 = Ice Age 3: Dawn of the Dinosaurs RIAP52 = Ice Age 3: Dawn of the Dinosaurs RIBES5 = Igor the Game RIBPKM = Igor: The Game RICENR = Iron Chef America: Supreme Cuisine RIDE20 = Smiley World: Island Challenge RIDP7J = Smiley World: Island Challenge RIEEA4 = Karaoke Revolution Presents: American Idol Encore RIFEA4 = Karaoke Revolution Presents: American Idol Encore 2 RIGE54 = Go Diego Go! Great Dinosaur Rescue RIGP54 = Go, Diego, Go! Het Grote Dinosaurus Avontuur RIHE8P = The Incredible Hulk RIHP8P = The Incredible Hulk RIIEQH = Kart Racer RIIPNG = Kart Racer RIIV = Riivolution RIJE69 = G.I. JOE: The Rise of Cobra RIJP69 = G.I. JOE: The Rise of Cobra RIKEQH = Truck Racer RIKPNG = Truck Racer RILJ18 = Puzzle Series Vol. 2: Illust Logic + Colorful Logic RIME36 = Impossible Mission RIMP6M = Impossible Mission RINE08 = Dead Rising: Chop Till You Drop RINJ08 = Dead Rising Zombie No Ikenie RINP08 = Dead Rising: Chop Till You Drop RIOPSU = Horrible Histories: Ruthless Romans RIPEAF = One Piece: Unlimited Adventure RIPJAF = One Piece: Unlimited Adventure RIPPAF = One Piece Unlimited Cruise 1 - The Treasure Beneath the Waves RIQPUJ = Dansen op het ijs RIRE8P = Iron Man RIRP8P = Iron Man RITFMR = Intervilles, le jeu officiel RIUJAF = One Piece Unlimited Cruise 2: Awakening of a Hero RIUPAF = One Piece Unlimited Cruise 2: Awakening of a Hero RIVEXJ = Ivy The Kiwi? RIVJAF = Ivy the Kiwi? RIVP99 = Ivy The Kiwi? RIWENR = Burger Island RIXE20 = Dodge Racing: Charger vs. Challenger RIXP7J = Dodge Racing: Charger vs Challenger RIYE52 = Space Camp RIYP52 = Space Camp RIZENR = Indianapolis 500 Legends RJ2E52 = 007: Quantum of Solace RJ2JGD = 007: Quantum of Solace RJ2P52 = 007: Quantum of Solace RJ3E20 = Jeep Thrills RJ3P7J = Jeep Thrills RJ4ENR = Jewel Master: Cradle of Rome RJ4PRM = Jewel Master: Cradle of Rome RJ6E69 = MySims Sky Heroes RJ6P69 = MySims Sky Heroes RJ7FWP = Télé 7 Jeux: Mots Fléchés RJ8E64 = Indiana Jones and the Staff of Kings RJ8P64 = Indiana Jones and the Staff of Kings RJ9E5Z = thinkSMART Family RJ9FMR = Think Logic Trainer RJ9PFR = Think Logic Trainer RJ9XML = Think Logic Trainer RJAD52 = Call of Duty: Modern Warfare - Reflex Edition RJAE52 = Call of Duty: Modern Warfare - Reflex Edition RJAP52 = Call of Duty: Modern Warfare - Reflex Edition RJAX52 = Call of Duty: Modern Warfare - Reflex Edition RJBJAF = Daikaijuu Battle Ultra Coliseum RJCE52 = Score International Baja 1000: World Championship Offroad Racing RJCP52 = Score International Baja 1000: World Championship Offroad Racing RJDPKM = Mijn Dierenkliniek RJEE70 = Jenga World Tour RJEP70 = Jenga World Tour RJFE5G = Jillian Michaels' Fitness Ultimatum 2009 RJFP5G = Jillian Michaels' Fitness Ultimatum RJFPKM = Jillian Michaels Fitness Ultimatum 2009 RJGJDA = Jinsei Game Wii RJHE52 = Madagascar Kartz RJHP52 = Madagascar Kartz RJIP6M = Ferrari: The Race Experience RJJE8P = Jambo! Safari Animal Rescue RJJG52 = Guitar Hero III Custom : JJ-KwiK's Edition RJJP8P = Jambo! Safari Animal Rescue RJMERS = Jumper: Griffin's Story RJMPRS = Jumper: Griffin's Story RJNE20 = Build 'N Race RJOEXJ = Ju-on: The Grudge RJOJJ9 = Kyoufu Taikan Juon RJOP99 = Ju-On The Grudge RJPJA4 = Jikkyou Powerful Pro Yakyuu Wii RJQE5G = Pajama Sam: Don't Fear the Dark RJQP70 = Pajama Sam: De Helse-Jacht Op De Duistere Nacht RJREA4 = Dance Dance Revolution: Hottest Party 3 RJRJA4 = Dance Dance Revolution: MUSIC FIT RJRPA4 = Dance Dance Revolution: Hottest Party 3 RJSENR = Kawasaki Jet Ski RJSPNR = Kawasaki Jet Ski RJSPUG = Kawasaki Jet Ski RJSXUG = Kawasaki Jet Ski RJTJ01 = Minna no Joushiki Ryoku TV RJVEGN = Hysteria Hospital: Emergency Ward RJVPGN = Hysteria Hospital: Emergency Ward RJWJEL = Jawa mammoth And A Secret Stone RJXE5G = Go Play Lumberjacks RJXXFR = Go Play Lumberjacks RJYE5Z = Doctor Fizzwizzle's Animal Rescue RJZP7U = SNK Arcade Classics Volume 1 RK2EEB = Trauma Center: New Blood RK2JEB = Trauma Center: New Blood RK2P01 = Trauma Center: New Blood RK3J01 = And-Kensaku RK4JAF = Kekkaishi RK5E01 = Kirby's Epic Yarn RK5J01 = Keito no Kirby RK5K01 = Kirby's Epic Yarn RK5P01 = Kirby's Epic Yarn RK6E18 = Marble Saga: Kororinpa RK6J18 = Kororinpa 2 RK6P18 = Marbles! Balance Challenge RK7J0A = Ougon no Kizuna RK8E54 = Major League Baseball 2K8 RK9EA4 = Karaoke Revolution RK9PA4 = Karaoke Revolution RKAE6K = Ultimate Shooting Collection RKAJMS = Milestone Shooting Collection RKAK8M = Milestone Shooting Collection Karous Wii RKAP6K = Ultimate Shooting Collection RKBE41 = Cranium Kabookii RKBP41 = Cranium Kabookii RKDEEB = Trauma Center: Second Opinion RKDJEB = Trauma Center: Second Opinion RKDJG9 = Kamen Rider: Climax Heroes W RKDP01 = Trauma Center: Second Opinion RKDPEB = Trauma Center: Second Opinion RKEENR = Cate West: The Vanishing Files RKEPGN = Cate West: The Vanishing Files RKEPNR = Cate West: The Vanishing Files RKFEH4 = The King of Fighters Collection: The Orochi Saga RKFKZA = King of Fighters Collection: The Orochi Saga RKFP7U = King of Fighters Collection: The Orochi Saga RKGEGY = Bratz Kidz: Slumber Party RKGPGY = Bratz: Kidz Party RKHE52 = Kung Fu Panda: Legendary Warriors RKHP52 = Kung Fu Panda: Legendary Warriors RKIENR = Kidz Sports: Ice Hockey RKIPUG = Kidz Sports: Ice Hockey RKJJ0Q = 250 Mannin no Kanken Wii de Tokoton Kanji Nou RKKE6K = Heavenly Guardian RKLEG9 = Coraline RKLPG9 = Coraline RKME5D = Mortal Kombat: Armageddon RKMP5D = Mortal Kombat: Armageddon RKNJ2N = Kanken Wii: Kanji Ou Kettei Sen RKOJBL = Relaxuma: Minna de Goyururi Seikatsu RKPE52 = Kung Fu Panda RKPJ52 = Kung Fu Panda RKPK52 = Kung Fu Panda RKPP52 = Kung Fu Panda RKPV52 = Kung Fu Panda RKPY52 = Kung Fu Panda RKQENR = Candace Kane's Candy Factory RKSENR = Kidz Sports: Basketball RKSPUG = Kidz Sports: Basketball RKTENR = Kidz Sports: International Soccer RKTXUG = Kidz Sports: International Football RKVE54 = The BIGS 2 RKVP54 = The Bigs 2: Baseball RKWJ18 = Jigsaw Puzzle Kyo-no Wan Ko RKXE69 = Rock Band RKXP69 = Rock Band RKYE20 = Army Men: Soldiers of Misfortune RKYP20 = Army Men: Soldiers of Misfortune RKYP7J = Army Men: Soldiers of Misfortune RKZEA4 = Lost in Blue: Shipwrecked RKZJA4 = Survival Kids Wii RKZPA4 = Lost in Blue: Shipwrecked RL2E78 = Gallop & Ride! RL2HMN = Paard & Pony: Mijn Paardenstal RL2HMR = Paard & Pony: Mijn Paardenstal RL2PFR = Paard & Pony: Mijn Paardenstal RL3EMJ = Luxor 3 RL4E64 = LEGO Indiana Jones 2: The Adventure Continues RL4P64 = LEGO Indiana Jones 2: The Adventure Continues RL5E52 = iCarly RL5P52 = iCarly RL6E69 = NERF N-Strike Elite RL7E69 = Littlest Pet Shop: Friends RL7P69 = Littlest Pet Shop: Vrienden RL8E54 = MLB Power Pros 2008 RL9ESD = Guitar Hero Linkin Park RL9PHZ = King of Pool RLADMR = Deal or No Deal: The Banker Is Back RLAE20 = Deal or No Deal RLAPMR = Deal or No Deal: The Banker Is Back RLBEWR = LEGO Batman: The Videogame RLBPWR = LEGO Batman: The Videogame RLCP7J = Love is... in bloom RLDEGY = Legend of the Dragon RLDPFK = Legend Of The Dragon RLEEFS = Ten Pin Alley 2 RLEPFS = Ten Pin Alley 2 RLFE64 = Star Wars The Clone Wars: Lightsaber Duels RLFP64 = Star Wars The Clone Wars: Lightsaber Duels RLGE64 = LEGO Star Wars: The Complete Saga RLGJ52 = LEGO Star Wars: The Complete Saga RLGP64 = LEGO Star Wars: The Complete Saga RLHE52 = Little League World Series Baseball 2008 RLHP52 = Little League World Series Baseball RLIE64 = LEGO Indiana Jones: The Original Adventures RLIL78 = Guitar Hero 2nd Custom RLIP64 = LEGO Indiana Jones: The Original Adventures RLJEHJ = Line Rider 2: Unbound RLJPKM = Line Rider Freestyle RLKEGY = Code Lyoko: Quest for Infinity RLKPFK = Code Lyoko: Quest for Infinity RLLP70 = Go West!: Een Lucky Luke Avontuur! RLMJH4 = Metal Slug Complete RLNEVN = Survivor RLNFMR = Expeditie Robinson RLNHMR = Expeditie Robinson RLNIMR = Expeditie Robinson RLNPMR = Survivor RLPE69 = Littlest Pet Shop RLPP69 = Littlest Pet Shop RLQE52 = Big League Sports RLQP52 = World Championship Sports RLRE4F = Tomb Raider: Anniversary RLRJEL = Tomb Raider: Anniversary RLRP4F = Tomb Raider: Anniversary RLSE8P = Alien Syndrome RLSP8P = Alien Syndrome RLTENR = London Taxi: Rush Hour RLTPNR = London Taxi: Rush Hour RLTXUG = London Taxi: Rush Hour RLUE4Q = Disney's Bolt RLUP4Q = Bolt RLUX4Q = Bolt RLUY4Q = Bolt RLVE78 = Avatar: The Last Airbender RLVP78 = Avatar: De Legende van Aang RLWE78 = Ratatouille RLWJ78 = Ratatouille RLWP78 = Ratatouille RLWW78 = Ratatouille RLWX78 = Ratatouille RLWY78 = Ratatouille RLWZ78 = Ratatouille RLXEMJ = Luxor: Pharaoh's Challenge RLXP36 = Luxor: Pharaoh's Challenge RLYEWR = Looney Tunes: Acme Arsenal RLYPWR = Looney Tunes: Acme Arsenal RLZE4Z = Defendin' De Penguin RLZP4Z = Defendin' De Penguin RLZPXT = Defendin' De Penguin RM2E69 = Medal of Honor: Heroes 2 RM2J13 = Medal of Honor: Heroes 2 RM2P69 = Medal of Honor: Heroes 2 RM2U69 = Medal of Honor: Heroes 2 RM2X69 = Medal of Honor: Heroes 2 RM3E01 = Metroid Prime 3: Corruption RM3J01 = Metroid Prime 3: Corruption RM3P01 = Metroid Prime 3: Corruption RM4E41 = Monster 4x4: World Circuit RM4J41 = Monster 4x4: World Circuit RM4P41 = Monster 4x4: World Circuit RM5E7D = The Mummy: Tomb of the Dragon Emperor RM5P7D = The Mummy: Tomb Of The Dragon Emperor RM6EEB = Baroque RM6P99 = Baroque RM7E4F = Monster Lab RM7P4F = Monster Lab RM8E01 = Mario Party 8 RM8J01 = Mario Party 8 RM8K01 = Mario Party 8 RM8P01 = Mario Party 8 RM9EGM = Mushroom Men: The Spore Wars RM9PGM = Mushroom Men: The Spore Wars RMAE01 = Mario Power Tennis RMAJ01 = Mario Power Tennis RMAP01 = Mario Power Tennis RMBE01 = Mario Super Sluggers RMBJ01 = Super Mario Stadium: Family Baseball RMCC01 = Mario Kart Wii (Custom) RMCE01 = Mario Kart Wii RMCE02 = Wiimms MKW Fun 2010-02.p RMCE03 = Wiimms MKW Fun 2010-10.p RMCE04 = Wiimms MKW Fun 2010-12.p RMCE05 = Wiimms MKW Fun 2010-12.p RMCE06 = Wiimms MKW Fun 2010-12.ntsc RMCE07 = Wiimms MKW Retro 2011-02.ntsc RMCE08 = Wiimms MKW Fun 2011-03.ntsc RMCE09 = Wiimms MKW Fun 2011-06.ntsc RMCE10 = Wiimms MKW Fun 2011-07.ntsc RMCE11 = Wiimms MKW Fun 2011-08.ntsc RMCE12 = Wiimms MKW Fun 2011-11.ntsc RMCE13 = Wiimms MKW Fun 2012-01.ntsc RMCE14 = Wiimms MKW Revival 2012-02.ntsc RMCE15 = Wiimms MKW Boost 2012-03.ntsc RMCE16 = Wiimms MKW Fun 2012-05.ntsc RMCE17 = Wiimms MKW Fun 2012-09.ntsc RMCE18 = Wiimms MKW N64 2012-10.ntsc RMCE19 = Wiimms MKW Fun 2012-12.ntsc RMCE20 = Wiimms MKW Fun 2013-04.ntsc RMCE21 = Wiimms MKW Fun 2013-09.ntsc RMCE22 = Wiimms MKW Fun 2013-10.ntsc RMCE23 = Wiimms MKW Fun 2014-01.ntsc RMCE24 = Wiimms MKW Retro 2014-02.ntsc RMCE25 = Wiimms MKW Fun 2014-04.ntsc RMCE26 = Wiimms MKW Fun 2014-11.ntsc RMCE65 = Mario Kart Wii: Double Dash 64 RMCE66 = Mizy's Texture Pack RMCE67 = Rookie's Texture & Music Pack RMCE68 = Character Kart Wii RMCE69 = Venom Kart Wii RMCE70 = Stickboy Kart Wii RMCE71 = Funky's Riivolution RMCE72 = CtocKart Wii RMCE73 = Mario Kart Adventures RMCE74 = Mario Kart Adventures RMCE75 = Cam, Tom and Troy's CTGP Pack RMCE76 = Pro CT Pack RMCE77 = SpyKid's CT Pack RMCE78 = Mario Kart: Double Dash!! Wii RMCE79 = Super Mario Kart Wii RMCE80 = Mario Kart 64 Wii RMCE81 = Spade's Custom Track Pack RMCE82 = HD's Retro Pack RMCE83 = Glitch Kart Wii RMCE84 = Legend's Awesome CT Pack RMCE85 = Project Double Dash!! RMCE86 = Newer Mario Kart Wii Revolution!: Backward Circuits RMCE87 = Newer Mario Kart Wii Revolution!: Sunset Sun & Dark Moon RMCE88 = Kaizo Kart Wii RMCE89 = Mario Kart Extra RMCE90 = Mario Kart QZW RMCE91 = Medal Kart 64 RMCE92 = MKWLH100's Custom Track Pack RMCE93 = MKW Hack Pack RMCE94 = Custom Track Kart Wii RMCE95 = Soarin's CT Pack X RMCE96 = Mario Kart 6 RMCE97 = Mario Kart Wii Awesomeness 2 RMCE98 = Mario Kart Wii Awesomeness RMCE99 = ReedyCustomPack Ultimate RMCEA1 = Mario Kart Adventures v0.8 RMCECT = Mario Kart Wii CTGP Revolution RMCEDK = Darky Kart Wii RMCEG2 = Mario Kart Wii CTGP Revolution RMCEGP = Mario Kart Wii CTGP Revolution RMCEWS = Wine's CT Pack RMCJ01 = Mario Kart Wii RMCJ12 = Wiimms MKW Fun 2011-11 RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCK01 = Mario Kart Wii RMCP01 = Mario Kart Wii RMCP02 = Wiimms MKW Fun 2010-02.p RMCP03 = Wiimms MKW Fun 2010-10.p RMCP04 = Wiimms MKW Fun 2010-12.p RMCP05 = Custom Mario Kart Wii RMCP06 = Wiimms MKW Fun 2010-12.pal RMCP07 = Wiimms MKW Retro 2011-02.pal RMCP08 = Wiimms MKW Fun 2011-03.pal RMCP09 = Wiimms MKW Fun 2011-06.pal RMCP10 = Wiimms MKW Fun 2011-07.pal RMCP11 = Wiimms MKW Fun 2011-08.pal RMCP12 = Wiimms MKW Fun 2011-11.pal RMCP13 = Wiimms MKW Fun 2012-01.pal RMCP14 = Wiimms MKW Revival 2012-02.pal RMCP15 = Wiimms MKW Boost 2012-03.pal RMCP16 = Wiimms MKW Fun 2012-05.pal RMCP17 = Wiimms MKW Fun 2012-09.pal RMCP18 = Wiimms MKW N64 2012-10.pal RMCP19 = Wiimms MKW Fun 2012-12.pal RMCP20 = Wiimms MKW Fun 2013-04.pal RMCP21 = Wiimms MKW Fun 2013-09.pal RMCP22 = Wiimms MKW Fun 2013-10.pal RMCP23 = Wiimms MKW Fun 2014-01.pal RMCP24 = Wiimms MKW Retro 2014-02.pal RMCP25 = Wiimms MKW Fun 2014-04.pal RMCP26 = Wiimms MKW Fun 2014-11.pal RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCX = Mario Kart Wii CTGP Revolution Channel RMDE69 = Madden NFL 07 RMDP69 = Madden NFL 07 RMEJDA = Major Dream RMFE68 = AMF Bowling Pinbusters! RMFP68 = AMF Bowling Pinbusters! RMGC01 = Super Mario Galaxy RMGE01 = Super Mario Galaxy RMGE52 = Guitar Hero III Custom : Megadeth RMGJ01 = Super Mario Galaxy RMGK01 = Super Mario Galaxy RMGP01 = Super Mario Galaxy RMGR01 = Super Mario Galaxy RMHC08 = Monster Hunter Tri (Custom) RMHE08 = Monster Hunter Tri RMHJ08 = Monster Hunter Tri RMHP08 = Monster Hunter Tri RMIE20 = Margot's Word Brain RMIP7J = Margot's Word Brain RMJJC8 = Mah-jong Rally Wii RMKE01 = Mario Sports Mix RMKE02 = Custom Kart 1 RMKJ01 = Mario Sports Mix RMKP01 = Mario Sports Mix RMLEH4 = Metal Slug Anthology RMLJH4 = Metal Slug Complete RMLK52 = Metal Slug Complete RMLP7U = Metal Slug Anthology RMLPH4 = Metal Slug Anthology RMME7U = Mercury Meltdown Revolution RMMJ7U = Tama-run RMMP52 = Guitar Hero III Custom : Metal Mayhem RMMP7U = Mercury Meltdown Revolution RMNDFR = My Pet Hotel RMNHMN = Mijn Dierenpension: Verzorg en speel met de leukste dieren! RMNHMR = Mijn Dierenpension: Verzorg en speel met de leukste dieren! RMNPFR = My Pet Hotel RMOE52 = Monster Jam RMOP52 = Monster Jam RMPE54 = MLB Power Pros RMPP54 = MLB Power Pros RMQENR = Myth Makers: Orbs of Doom RMQPUG = Myth Makers: Orbs of Doom RMQXUG = Myth Makers: Orbs of Doom RMRE5Z = Cocoto Magic Circus RMRPNK = Cocoto Magic Circus RMRXNK = Cocoto Magic Circus RMSE52 = Marvel: Ultimate Alliance 2 RMSP52 = Marvel: Ultimate Alliance 2 RMTJ18 = Momotarô Dentetsu 16 RMUE52 = Marvel: Ultimate Alliance RMUJ2K = Marvel: Ultimate Alliance RMUP52 = Marvel: Ultimate Alliance RMVE69 = Medal of Honor: Vanguard RMVP69 = Medal of Honor: Vanguard RMVX69 = Medal of Honor: Vanguard RMWE20 = M&M's Kart Racing RMWP20 = M&M's Kart Racing RMXE78 = MX vs. ATV: Untamed RMXF78 = MX vs. ATV: Untamed RMXP78 = MX vs. ATV: Untamed RMYE5Z = Myth Makers: Super Kart GP RMYPUG = Myth Makers: Super Kart GP RMYXUG = Myth Makers: Super Kart GP RMZE5Z = Myth Makers: Trixie in Toyland RMZPUG = Myth Makers: Trixie in Toyland RN2EAF = Namco Museum Remix RN2K70 = Namco Museum Remix RN2P70 = Namco Museum Remix RN3E78 = Nicktoons: Attack of the Toybots RN3J78 = Nicktoons: Attack of the Toybots RN3P78 = Spongebob En Zijn Vrienden: Aanval Van De Speelgoedrobots RN3X78 = SpongeBob: Aanval van de Speelgoedrobots RN4E41 = Dawn of Discovery RN4P41 = ANNO: Creëer een Nieuwe Wereld RN5E78 = The Naked Brothers Band: The Video Game RN5P78 = The Naked Brothers Band: The Video Game RN6ENR = North American Hunting Extravaganza RN6P7J = North American Hunting Extravaganza RN7E78 = Neighborhood Games RN7P78 = Big Family Games RN8JC8 = Nobunaga no Yabou Kakushin with Power-Up Kit RN9E4F = Escape from Bug Island RN9JEL = Necro-Nesia RN9P4F = Escape From Bug Island RNAE69 = NCAA Football 09 RNBE69 = NBA Live 08 RNBP69 = NBA Live 08 RNBX69 = NBA Live 08 RNCEH4 = SNK Arcade Classics Volume 1 RNCPH4 = SNK Arcade Classics Volume 1 RNDJAF = Nodame Cantabile Dream Orchestra RNEEDA = Naruto Shippuden: Clash of Ninja Revolution 3 RNEJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX 3 RNEPDA = Naruto Shippuden: Clash of Ninja Revolution 3 RNFE69 = Madden NFL 08 RNFP69 = Madden NFL 08 RNGJ99 = Negima!? Neo-Pactio Fight!! RNHE41 = No More Heroes RNHJ99 = No More Heroes RNHK8M = No More Heroes RNHP41 = No More Heroes RNHP99 = No More Heroes RNIPGT = Mind, Body & Soul: Nutrition Matters RNJE4F = Mini Ninjas RNJP4F = Mini Ninjas RNKE69 = NERF N-Strike RNKP69 = NERF N-Strike RNLE54 = NHL 2K9 RNLP54 = NHL 2K9 RNME5Z = Ninjabread Man RNMPUG = Ninjabread Man RNMXUG = Ninjabread Man RNNE4Q = The Chronicles of Narnia: Prince Caspian RNNJ4Q = The Chronicles of Narnia: Prince Caspian RNNP4Q = De Kronieken van Narnia: Prins Caspian RNNX4Q = De Kronieken van Narnia: Prins Caspian RNNY4Q = De Kronieken van Narnia: Prins Caspian RNNZ4Q = The Chronicles of Narnia: Prince Caspian RNOJ01 = Another Code R Kioku no Tobira RNOP01 = Another Code: R - A Journey Into Lost Memories RNPE69 = Need for Speed: ProStreet RNPJ13 = Need for Speed: ProStreet RNPK69 = Need for Speed: ProStreet RNPP69 = Need for Speed: ProStreet RNPX69 = Need for Speed: ProStreet RNPY69 = Need for Speed: ProStreet RNRE41 = Nitro Bike RNRJ41 = Nitro Bike RNRP41 = Nitro Bike RNSD69 = Need for Speed: Carbon RNSE69 = Need for Speed Carbon RNSF69 = Need for Speed: Carbon RNSJ13 = Need for Speed: Carbon RNSP69 = Need for Speed: Carbon RNSX69 = Need for Speed: Carbon RNUE8P = Nancy Drew: The White Wolf of Icicle Creek RNVE5Z = Anubis II RNVP5Z = Anubis II RNVPUG = Anubis II RNVXUG = Anubis II RNWJAF = Namco Carnival RNWKAF = Namco Museum Remix RNXEDA = Naruto: Clash of Ninja Revolution RNXJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX RNXPDA = Naruto: Clash of Ninja Revolution RNYEDA = Naruto: Clash of Ninja Revolution 2 RNYJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX 2 RNYPDA = Naruto: Clash of Ninja Revolution 2 RNZE69 = Ninja Reflex RNZJ13 = Ninja Reflex RNZK69 = Ninja Reflex RNZP69 = Ninja Reflex RO2E7N = Ford Racing Off Road RO2P7N = Off Road RO3EXJ = Little King's Story RO3J99 = Little King's Story RO3P99 = Little King's Story RO4JDA = Toshinden RO5E52 = Hot Wheels: Battle Force 5 RO5P52 = Hot Wheels: Battle Force 5 RO7E7D = Legend of Spyro: The Eternal Night RO7P7D = De Legende van Spyro: De Eeuwige Nacht RO8E7D = Legend of Spyro: Dawn of the Dragon RO8P7D = De Legende van Spyro: De Opkomst van een Draak RO8X7D = The Legend of Spyro: Dawn of the Dragon RO9EFS = Aqua Panic! RO9PNK = Aqua Panic! ROAE36 = Overlord: Dark Legend ROAP36 = Overlord: Dark Legend ROBE7U = Obscure: The Aftermath ROBPPL = Obscure 2 ROCE5Z = Cocoto Kart Racer ROCPNK = Cocoto Kart Racer RODE01 = WarioWare: Smooth Moves RODJ01 = WarioWare: Smooth Moves RODK01 = WarioWare: Smooth Moves RODP01 = WarioWare: Smooth Moves ROEEJZ = Hotel for Dogs ROEPGT = Honden Hotel ROFE5Z = Offroad Extreme Special Edition ROFPUG = Offroad Extreme! ROFXUG = Offroad Extreme! ROGE78 = Tak and the Guardians of Gross ROGP78 = Tak and the Guardians of Gross ROHJAF = Happy Dance Collection ROJE52 = Rapala: We Fish ROJP52 = Rapala: We Fish ROKJ18 = Karaoke Joysound Wii ROLE8P = Mario & Sonic at the Olympic Winter Games ROLJ01 = Mario & Sonic at the Olympic Winter Games ROLK01 = Mario & Sonic at the Olympic Winter Games ROLP8P = Mario & Sonic op de Olympische Winterspelen ROMESD = Monster Hunter G (English Patched) ROMJ08 = Monster Hunter G RONEG9 = Onechanbara: Bikini Zombie Slayers RONJG9 = Onechanbara Revolution RONPG9 = Onechanbara: Bikini Zombie Slayers ROPE41 = Open Season ROPP41 = Baas in eigen bos ROQJEP = Baroque For Wii ROSJ01 = Takt of Magic ROTE20 = Twin Strike: Operation Thunder ROTP20 = Twin Strike: Operation Thunder ROTP7J = Twin Strike: Operation Thunder ROUJAF = One Piece Unlimited Cruise 1: The Treasure Beneath the Waves ROUPAF = One Piece Unlimited Cruise 1: The Treasure Beneath the Waves ROVE6U = Playmobil: Circus ROVPHM = Playmobil Circus: Actie in de ring ROWE08 = Okami ROWJ08 = Okami ROWP08 = Okami ROXE20 = Order Up! ROXP7J = Order Up! ROXX7J = Order Up! ROYE41 = Cloudy with a Chance of Meatballs ROYP41 = Cloudy with a Chance of Meatballs ROYX41 = Het Regent Gehaktballen RP2E69 = Smarty Pants RP2P69 = Smarty Pants RP3JAF = Pro Golfer Saru RP4E69 = MySims Party RP4J13 = Boku To Sim No Machi Party RP4P69 = MySims Party RP5JA4 = Jikkyou Powerful Pro Baseball 15 RP6E41 = Petz Crazy Monkeyz RP6P41 = Petz Monkey Madness RP7E52 = Pirates: Hunt for Blackbeard's Booty RP7P52 = Pirates: Hunt for Blackbeard's Booty RP9ERS = Space Chimps RP9PRS = Space Chimps RP9XRS = Space Chimps RPAF70 = Kid Paddle: Lost in the Game RPBE01 = Pokémon Battle Revolution RPBJ01 = Pokémon Battle Revolution RPBP01 = Pokémon Battle Revolution RPCE20 = Puzzler Collection RPCP41 = Puzzler Collection RPCX7J = Puzzler Collection RPDEGN = PDC World Championship Darts 2008 RPDPGN = PDC World Championship Darts 2008 RPFE52 = Pitfall: The Big Adventure RPFP52 = Pitfall: The Big Adventure RPFU52 = Pitfall: The Big Adventure RPGE5D = Rampage: Total Destruction RPGP5D = Rampage: Total Destruction RPHPPN = Peppa Pig: The Game RPIE52 = Pimp My Ride RPIP52 = Pimp My Ride RPJE7U = Arc Rise Fantasia RPJJ99 = Arc Rise Fantasia RPKE52 = World Series of Poker: Tournament of Champions 2007 Edition RPKP52 = World Series of Poker: Tournament of Champions RPLE52 = Rapala Tournament Fishing RPLP52 = Rapala Tournament Fishing RPMJA4 = Jikkyou Powerful Pro Major League 2 RPNE78 = Paws & Claws: Pet Resort RPOEC8 = Opoona RPOJC8 = Opoona RPOPC8 = Opoona RPPE41 = Prince of Persia: Rival Swords RPPP41 = Prince of Persia: Rival Swords RPQES5 = Pool Party RPQPS5 = Pool Party RPSE4Q = Disney Princess: Enchanted Journey RPSJ4Q = Disney Princess Wii RPSP4Q = Disney Princess: De Betoverende Reis RPTD52 = Puppy Luv RPTE52 = Puppy Luv: Your New Best Friend RPTP52 = Puppy Luv: Your New Best Friend RPUJ8P = Puyo Puyo! 15th Anniversary RPVE4Z = Purr Pals RPVPKM = Purr Pals RPWX41 = Prince of Persia: The Forgotten Sands RPWZ41 = Prince of Persia: The Forgotten Sands RPXE69 = EA Playground RPXJ13 = EA Playground RPXP69 = EA Playground RPYE9B = Super Swing Golf RPYJ9B = Super Swing Golf RPYP9B = Pangya! Golf With Style RPZJA4 = Jikkyou Powerful Pro Baseball Wii Ketteiban RQ2JK6 = Crazy Climber Wii RQ3PGN = PDC World Championship Darts 2009 RQ4E78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ4J78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ4P78 = SpongeBob Squarepants: Creatuur van de Krokante Krab RQ5E5G = Mad Dog McCree Gunslinger Pack RQ5P5G = Mad Dog McCree Gunslinger Pack RQ5X5G = Mad Dog McCree Gunslinger Pack RQ6EJJ = Cursed Mountain RQ6PKM = Cursed Mountain RQ6XKM = Cursed Mountain RQ7E20 = Martian Panic RQ7PXT = Martian Panic RQ8E08 = MotoGP 08 RQ8P08 = MotoGP RQ9E69 = NBA Live 09 All-Play RQ9F69 = NBA Live 09 All-Play RQ9P69 = NBA Live 09 All-Play RQ9S69 = NBA Live 09 All-Play RQBENR = Kawasaki Quad Bikes RQBPNR = Kawasaki Quad Bikes RQBPUG = Kawasaki Quad Bikes RQBXUG = Kawasaki Quad Bikes RQCEAF = The Munchables RQCJAF = Tabemon RQEE6U = Agatha Christie: Evil Under the Sun RQEP6V = Agatha Christie: Evil Under The Sun RQFE6U = Safecracker: The Ultimate Puzzle Adventure RQFP6V = Safecracker RQGE69 = MySims Racing RQGJ13 = MySims Racing RQGJ69 = Boku To Sim No Machi Racing RQGP69 = MySims Racing RQIJ01 = Minna ga Shuyaku no NHK Kouhaku Quiz Kassen RQJE7D = Crash of the Titans RQJP7D = Crash of the Titans RQJX7D = Crash of the Titans RQKE41 = Circus Games RQKP41 = Fun Fair Party RQLE64 = Star Wars The Clone Wars: Republic Heroes RQLP64 = Star Wars The Clone Wars: Republic Heroes RQMEVN = Ocean Commander RQMPVN = Ocean Commander RQNEWR = Scooby-Doo! First Frights RQNPWR = Scooby-Doo! Operatie Kippenvel RQOE69 = Spore Hero RQOJ13 = Spore Hero RQOP69 = Spore Helden RQPE52 = Cabela's Trophy Bucks RQPP52 = cabela's big game hunter 2009 RQPZ52 = Cabela's Monster Buck Hunter RQQE52 = Guitar Hero III Custom : Queen RQQE70 = Backyard Football '09 RQREXJ = The Sky Crawlers: Innocent Aces RQRJAF = The Sky Crawlers: Innocent Aces RQRPAF = The Sky Crawlers: Innocent Aces RQSE4Z = Pinball Hall of Fame: The Gottlieb Collection RQSP6M = Gottlieb Pinball Classics RQTE6U = Agatha Christie: And Then There Were None RQTP6V = Agatha Christie: And Then There Were None RQUEFS = Super PickUps RQVE20 = Pacific Liberator RQVP20 = Pacific Liberator RQWEG9 = Puzzle Quest: Challenge of the Warlords RQWPG9 = Puzzle Quest - Challenge of the Warlords RQXP70 = Asterix en de Olympische Spelen RQYENR = Fantasy Aquarium World RQZE41 = Monster 4x4: Stunt Racer RQZP41 = Monster 4x4: Stunt Racer RR2ENR = Rig Racer 2 RR2PNR = Rig Racer 2 RR2PUG = Rig Racer 2 RR3EA4 = Ultimate Party Challenge RR3JA4 = Family Challenge Wii RR3PA4 = Let's Party! RR4EGY = Build-A-Bear Workshop: A Friend Fur All Seasons RR4PFK = Build-A-Bear Workshop: A Friend Fur All Seasons RR5E70 = Ready 2 Rumble Revolution RR5P70 = Ready 2 Rumble Revolution RR7PVP = Real Madrid The Game RR8PUJ = International Athletics RR9E78 = WWE SmackDown vs. Raw 2009 RRAE5Z = Rock 'N' Roll Adventures RRAPUG = Rock 'N' Roll Adventures RRAXUG = Rock 'N' Roll Adventures RRBE41 = Rayman Raving Rabbids RRBJ41 = Rayman Raving Rabbids RRBP41 = Rayman Raving Rabbids RRCE52 = Barbie Horse Adventures: Riding Camp RRCP52 = Barbie Paardenavonturen: Het Paardrijkamp RRDE69 = Rock Band Track Pack: Vol. 2 RRDP69 = Rock Band Song Pack 2 RREE69 = Rock Band Track Pack: Vol. 1 RREP69 = Rock Band Song Pack 1 RRFEE9 = Reel Fishing: Angler's Dream RRFPE9 = Reel Fishing: Angler's Dream RRGE52 = Madagascar: Escape 2 Africa RRGP52 = Madagascar 2: Escape 2 Africa RRHPUJ = Mary King's Riding School 2 RRHXUJ = In Mary Kings Riding School 2 RRIPTV = Paint Party RRJFMR = Ready Steady Cook: The Game RRJIMR = Ready Steady Cook: The Game RRJPMR = Ready Steady Cook: The Game RRKE70 = Alone in the Dark RRKP70 = Alone in the Dark RRLE78 = Bratz: Girlz Really Rock RRLP78 = Bratz: Girlz Really Rock RRLX78 = Bratz: Girlz Really Rock RRLY78 = Bratz: Girlz Really Rock RRLZ78 = Bratz: Girlz Really Rock RRME69 = Hasbro: Family Game Night RRMP69 = Hasbro Familie Spellen Avond RRMX69 = Hasbro: Familie Spellen Avond RRPE41 = The Price Is Right RRQE52 = Shrek's Carnival Craze Party Games RRQP52 = Shrek - Crazy Party Games RRQX52 = Shrek - Crazy Party Games RRRE5Z = Real Heroes: Firefighter RRRPRM = Real Heroes: Firefighter RRSE4Q = Meet The Robinsons RRSJ4Q = Meet The Robinsons RRSP4Q = Meet The Robinsons RRSX4Q = Meet The Robinsons RRTE52 = Block Party 20 Games RRTP52 = Block Party! 20 Games RRUEJF = Winter Sports 2: The Next Challenge RRUFRT = Winter Sports 2009: The Next Challenge RRUJJF = Winter Sports 2009 The Next Challenge RRUPRT = Winter Sports 2009: The Next Challenge RRVENR = Battle Rage: Mech Conflict RRVPNR = Battle Rage: The Robot Wars RRWJAF = Super Robot Taisen NEO RRXE5Z = Monster Trux Arenas: Special Edition RRXPUG = Monster Trux Arenas RRXXUG = Monster Trux Arenas RRYEHG = Rogue Trooper: Quartz Zone Massacre RRYPHY = Rogue Trooper: Quartz Zone Massacre RRZEGY = Rubik's World RRZPGY = Rubik's Puzzle World RS2E20 = Ultimate Duck Hunting RS2EGJ = Ultimate Duck Hunting RS2PGJ = Ultimate Duck Hunting RS3E52 = Spider-Man 3 RS3J52 = Spider-Man 3 RS3P52 = Spider-Man 3 RS3X52 = Spider-Man 3 RS4EXS = Castle of Shikigami III RS4JJF = Shikigami No Shiro III RS4PXS = Castle Of Shikigami III RS5EC8 = Samurai Warriors: Katana RS5JC8 = Sengoku Musou KATANA RS5PC8 = Samurai Warriors: Katana RS7J01 = Eyeshield 21 Field Saikyo no Senshi Tachi RS8J8N = Shanghai RS9E8P = Sonic Riders: Zero Gravity RS9J8P = Sonic Riders: Shooting Star Story RS9P8P = Sonic Riders: Zero Gravity RSAE78 = SpongeBob's Atlantis SquarePantis RSAP78 = SpongeBob's Atlantis SquarePantis RSBE01 = Super Smash Bros. Brawl RSBE02 = Super Smash Bros. Project M Red Version RSBE03 = Super Smash Bros. Brawl DX RSBE04 = Super Smash Bros. Project M+ RSBE05 = Super Smash Bros. Project M Patt Edition RSBE06 = Darkon360's Brawl Hack Pack RSBE07 = Super Smash Bros. Project M: Theytah's Custom Build RSBE08 = Smash Bros. Infinite RSBE09 = Springboy64's Brawl Hack Pack RSBE10 = Brawl Ying Yang Edition RSBE11 = Professor MGW's Tournament Hack Pack #1 RSBE12 = Professor MGW's Tournament Hack Pack #2 RSBE13 = Professor MGW's Hack Pack #3 RSBE14 = Super Smash Bros. Brawl- Zeus RSBE15 = Super Smash Bros. Brawl Minus Mugen RSBE16 = Super Smash Bros. Brawl Shock RSBE17 = Super Smash Bros. Brawl - Battlefield Build RSBE18 = Super Smash Bros. Project M: Tournament Hack Pack RSBE19 = Super Smash Bros. Project M: Fully Dressed Edition RSBE20 = Pikezer's BrawlEx Pack RSBE21 = Calabrel's Custom Project M Build RSBE22 = Project M: Rage83's Competitive Custom Build RSBE23 = Super Smash Bros. Project M: Justice Build RSBE24 = Super Smash Bros. 3 RSBE25 = Super Smash Bros. Red Version RSBE26 = Super Smash Bros. Silver RSBE27 = Springboy64's Super Smash Bros. Brawl Hack Pack RSBE28 = SuperYoshiStar's Super Smash Bros. Brawl Hack Pack RSBE29 = Super Smash Bros. Project M: YoeiX Custom Build RSBE30 = Super Smash Bros. Project M: Arko's Loaded Custom Build RSBE31 = Super Smash Bros. Project M: Arko's Tournament Custom Build RSBE32 = Super Smash Bros. Project M: Sempai's Build RSBE33 = Super Smash Bros. Brawl Yin Yang Edition 2: The Balance of Kyu RSBE34 = Super Smash Bros. Project U: Blue Version RSBE35 = Super Smash Bros. Brawl Legacy: Project M RSBE36 = Super Smash Bros. Project Best RSBE37 = Super Smash Bros. Project M: Psycho Ghost's Build RSBE38 = Super Smash Sisters Generations RSBE39 = Super Smash Bros. Ultra Project M RSBE40 = Super Smash Bros. Project M: Ragnarok Edition RSBE41 = Super Smash Bros. Project M: Calabrel's Custom Build RSBE42 = Super Smash Bros. Project M: RedX Anime/Game Custom Build RSBEBB = Super Smash Bros. Balanced Brawl RSBEBM = Super Smash Bros. Brawl Minus RSBEBP = Super Smash Bros. Brawl Plus RSBEC3 = Super Smash Bros. Project M 3.5 Netplay Build RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBEWM = Super Smash Bros. Project M Wi-Fi RSBJ01 = Dairantou Smash Brothers X RSBK01 = Dairantou Smash Brothers X RSBP01 = Super Smash Bros. Brawl RSCD7D = Scarface: The World Is Yours RSCE7D = Scarface: The World Is Yours RSCP7D = Scarface: The World Is Yours RSCU7D = Scarface: The World Is Yours RSDJAF = SD Gundam: Scad Hammers RSEJGD = Soul Eater Monotone Princess RSFC99 = Muramasa: The Demon Blade (Custom) RSFE7U = Muramasa: The Demon Blade RSFJ99 = Oboro Muramasa RSFP99 = Muramasa: The Demon Blade RSHE69 = MySims Kingdom RSHJ13 = Boku to Sim no Machi Kingdom RSHK69 = MySims Kingdom RSHP69 = MySims Kingdom RSIE69 = MySims RSIJ13 = Boku To Sim No Machi RSIP69 = MySims RSJE41 = Broken Sword: Shadow of the Templars (Director's Cut) RSJESD = Guitar Hero III Custom : System of a Down RSJP41 = Broken Sword: Shadow of the Templars - The Director's Cut RSKE52 = Shrek The Third RSKP52 = Shrek de Derde RSKX52 = Shrek de Derde RSLEAF = Soulcalibur: Legends RSLJAF = Soulcalibur: Legends RSLKAF = Soulcalibur: Legends RSLPAF = Soulcalibur Legends RSME8P = Super Monkey Ball: Banana Blitz RSMJ8P = Super Monkey Ball: Banana Blitz RSMP8P = Super Monkey Ball: Banana Blitz RSND69 = The Simpsons Game RSNE69 = The Simpsons Game RSNF69 = The Simpsons Game RSNP69 = The Simpsons Game RSNX69 = The Simpsons Game RSOE4Z = Solitaire & Mahjong RSOP4Z = Solitaire & Mahjong RSPE01 = Wii Sports RSPJ01 = Wii Sports RSPK01 = Wii Sports RSPP01 = Wii Sports RSPW01 = Wii Sports RSQEAF = We Ski RSQJAF = Family Ski RSQPAF = Family Ski RSRE8P = Sonic and the Secret Rings RSRJ8P = Sonic and the Secret Rings RSRP8P = Sonic and the Secret Rings RSSEH4 = Samurai Shodown Anthology RSSJH4 = Samurai Spirits: Rokuban Shoubu RSSK52 = Samurai Shodown Anthology RSSP7U = Samurai Shodown Anthology RSTE64 = Star Wars: The Force Unleashed RSTJ52 = Star Wars: The Force Unleashed RSTP64 = Star Wars: The Force Unleashed RSUENR = Summer Sports: Paradise Island RSUP41 = Sports Party RSVE8P = Sonic Unleashed RSVJ8P = Sonic World Adventure RSVP8P = Sonic Unleashed RSWE08 = Spyborgs RSWP08 = Spyborgs RSXE69 = SSX Blur RSXJ13 = SSX Blur RSXK69 = SSX Blur RSXP69 = SSX Blur RSXX78 = Guitar Hero RadioHead RSYE20 = Showtime Championship Boxing RSYP06 = Super Smash Bros. Brawl : YF06's Mod RSYP7J = Showtime Championship Boxing RSZJES = Yukinko Daisenpuu RSZPGT = Legend of Sayuki RT2E20 = Arctic Tale RT2P20 = Arctic Tale RT2P7J = Arctic Tale RT3E54 = Rockstar Games Presents: Table Tennis RT3JEL = Rockstar Games Presents: Table Tennis RT3P54 = Rockstar Games Presents: Table Tennis RT4EAF = Tales of Symphonia: Dawn of the New World RT4JAF = Tales Of Symphonia: Ratatosk no Kishi RT4PAF = Tales of Symphonia: Dawn of the New World RT5E8P = SEGA Superstars Tennis RT5P8P = SEGA Superstars Tennis RT6FKM = Magic Roundabout RT6PKM = Magic Roundabout RT7E69 = Tiger Woods PGA Tour 07 RT7F69 = Tiger Woods PGA Tour 07 RT7P69 = Tiger Woods PGA Tour 07 RT8E69 = Tiger Woods PGA Tour 08 RT8J13 = Tiger Woods PGA Tour Golf 08 RT8K69 = Tiger Woods PGA Tour Golf 08 RT8P69 = Tiger Woods PGA Tour 08 RT9E52 = Tony Hawk's Proving Ground RT9P52 = Tony Hawk's Proving Ground RTAE41 = Tom Clancy's H.A.W.X. 2 RTAP41 = Tom Clancy's H.A.W.X. 2 RTBE52 = Rapala Fishing Frenzy RTBP52 = Rapala Fishing Frenzy RTCE41 = Tom Clancy's Splinter Cell: Double Agent RTCP41 = Tom Clancy's Splinter Cell: Double Agent RTDE6K = The Monkey King: The Legend Begins RTDJES = Shin Chuuka Taisen RTDK8M = Shin Chuuka Taisen RTEE78 = Paws & Claws: Pet Vet RTEHMR = Ik ben dierenarts RTEPFR = My Vet Practice RTFE52 = Transformers: The Game RTFJ52 = Transformers: The Game RTFK52 = Transformers: The Game RTFP52 = Transformers: The Game RTFX52 = Transformers: The Game RTFY52 = Transformers: The Game RTGJ18 = Wi-Fi Taiô Gensen Table Games Wii RTHE52 = Tony Hawk's Downhill Jam RTHP52 = Tony Hawk's Downhill Jam RTIE8P = Wacky World of Sports RTIJ8P = Wacky World of Sports RTIP8P = Wacky World of Sports RTJE68 = Star Trek: Conquest RTJP68 = Star Trek: Conquest RTKE5Z = Octomania RTKJDQ = Sharuui Takoron RTKK8M = Sharuui Takoron RTLE18 = Fishing Master: World Tour RTLJ18 = Mezase Tsuri Master Sekai Ni Challenge Hen RTLP18 = Fishing Master RTME41 = TMNT RTMP41 = TMNT: Teenage Mutant Ninja Turtles RTNE41 = Tenchu: Shadow Assassins RTNJCQ = Tenchu 4 RTNP41 = Tenchu: Shadow Assassins RTOJ8P = 428: Fuusa Sareta Shibuya de RTPP41 = Top Trumps Adventures RTQENR = Monster Trux Offroad RTQPUG = Monster Trux Offroad RTQXUG = Monster Trux Offroad RTRE18 = Fishing Master RTRJ18 = Mezase Tsuri Master RTRP18 = Fishing Master RTSEVN = Totally Spies! Totally Party RTSP41 = Totally Spies! Totally Party RTTJAF = Tamagotchi no Furifuri Kagekidan RTUEJJ = Secret Files Tunguska RTUFKM = Secret Files: Tunguska RTUPKM = Secret Files: Tunguska RTVE64 = Thrillville: Off the Rails RTVP64 = Thrillville: Off The Rails RTWE5D = TNA iMPACT! RTWP5D = TNA iMPACT! RTYP01 = Wii Chess RTZE08 = Zack & Wiki: Quest for Barbaros' Treasure RTZJ08 = Zack & Wiki: Quest For Barbaros' Treasure RTZK08 = Zack & Wiki: Quest For Barbaros' Treasure RTZP08 = Zack & Wiki: Quest For Barbaros' Treasure RU1P4Q = Disney Sing It:: Sing It Star Singstar 1 RU2E5Z = Winter Sports 2: The Next Challenge RU2P4Q = Disney Sing It: Sing It Star Singstar 2 RU2P5Z = RTL Winter Sports 2009: The Next Challenge RU3E5Z = Summer Athletics: The Ultimate Challenge RU4E41 = My Fitness Coach 2: Exercise & Nutrition RU4X41 = NewU Fitness First Personal Trainer RU5E4Q = The Princess and the Frog RU5P4Q = De Prinses en de Kikker RU5V4Q = Disney: The Princess and the Frog RU5X4Q = De Prinses en de Kikker RU5Y4Q = The Princess and the Frog (Riverboat Jazz Edition) RU6EHG = Free Running RU6PHY = Free Running RU7E5G = Night at the Museum: Battle of the Smithsonian - The Video Game RU7X5G = Night at the Museum: Battle of the Smithsonian RU8EFS = Bass Pro Shops: The Hunt RU9EGT = My Ballet Studio RU9PGT = Diva Girls: Diva Ballerina RUAE52 = Monster Jam: Urban Assault RUAP52 = Monster Jam: Urban Assault RUBEVN = Ultimate Board Game Collection RUBP7N = Ultimate Board Game Collection RUCE5Z = Winter Sports: The Ultimate Challenge RUCPRT = Winter Sports 2008: The Ultimate Challenge RUCXRT = Winter Sports 2008: The Ultimate Challenge RUEE4Q = G-Force RUEP4Q = G-Force RUEX4Q = G-Force RUEY4Q = G-Force RUFEMV = Rune Factory: Frontier RUFJ99 = Rune Factory: Frontier RUFP99 = Rune Factory: Frontier RUGE7T = Goosebumps: HorrorLand RUGP5G = Goosebumps: HorrorLand RUHE52 = Bakugan Battle Brawlers RUHP52 = Bakugan Battle Brawlers RUHX52 = Bakugan Battle Brawlers (Toys R Us Edition) RUHZ52 = Bakugan Battle Brawlers RUIE4Q = Disney: Sing It RUIGGD = SingItStar Ned. 80's RUIP4Q = Disney: Sing It RUIX4Q = Disney: Sing It RUKEGT = Rolling Stone: Drum King RUKPGT = We Rock: Drum King RULE4Q = Ultimate Band RULP4Q = Ultimate Band RUME5Z = Ski and Shoot RUMPFR = Summer Athletics 2009 RUNJ0Q = New Unou Kids Wii EX RUOEPL = Aliens in the Attic RUOPPL = Aliens in the Attic RUPJC8 = Winning Post 7 Maximum 2008 RUQD78 = Up RUQE78 = Up RUQI78 = Up RUQJJE = Carl jii san no sora tobu Ie RUQP78 = Up RUQS78 = Up RUQX78 = Up RUREPL = Pool Hall Pro RURPPL = Pool Hall Pro RUSE78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUSK78 = SpongeBob SquarePants Featuring Nicktoons: Globs of Doom RUSP78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUSX78 = Spongebob SquarePants: De Strijd Tegen Slijm RUSY78 = SpongeBob Squarepants: Strijd Tegen Slijm RUUE01 = Animal Crossing: City Folk RUUJ01 = Machi He Ikouyo: Doubutsu no Mori RUUK01 = Animal Crossing: City Folk RUUP01 = Animal Crossing: Let's Go to the City RUWJC8 = Winning Post World RUXPUG = Urban Extreme: Street Rage RUXXUG = Urban Extreme: Street Rage RUYE41 = No More Heroes 2: Desperate Struggle RUYJ99 = No More Heroes 2: Desperate Struggle RUYP99 = No More Heroes 2: Desperate Struggle RUZE7T = Ultimate I SPY RUZP5G = Ultimate I SPY RV2E5D = Game Party 2 RV2P5D = More Game Party RV3P6N = Clever Kids: Creepy Crawlies RV7SMR = Expeditie Robinson RV8E20 = Beach Fun: Summer Challenge RV8PRT = Beach Fun: Summer Challenge RV9E78 = Avatar: The Last Airbender - Into the Inferno RV9P78 = Avatar: De Legende van Aang - De Vuurmeester RVAE78 = Avatar: The Last Airbender - The Burning Earth RVAP78 = Avatar: De Legende van Aang - De Brandende Aarde RVBERS = Alvin and the Chipmunks RVBPRS = Alvin and the Chipmunks RVDPLG = Diabolik: The Original Sin RVEFMR = Bienvenue Chez Les Ch'tis RVFE20 = Bigfoot: Collision Course RVFP7J = Bigfoot: Collision Course RVGE78 = Merv Griffin's Crosswords RVGP78 = Margot's Word Brain RVHP41 = Scrabble Interactive: 2009 Edition RVIE4F = Bionicle Heroes RVIP4F = Bionicle Heroes RVJPFR = So Blonde: Back to the Island RVKEXJ = Valhalla Knights: Eldar Saga RVKJ99 = Valhalla Knights Elder Saga RVKKZA = Valhalla Knights: Eldar Saga RVKP99 = Eldar Saga RVLPA4 = Rock Revolution RVNE20 = Calvin Tucker's Redneck Jamboree RVNP20 = Calvin Tucker's Redneck Jamboree RVNP7J = Calvin Tucker's Redneck Jamboree RVOEPL = Vertigo RVOPPL = Vertigo RVPEFS = PopStar Guitar RVPPFS = PopStar Guitar RVQE41 = Movie Games RVQP41 = Movie Studios Party RVREFS = Rebel Raiders: Operation Nighthawk RVRPFS = Rebel Raiders: Operation Nighthawk RVRPKG = Rebel Raiders: Operation Nighthawk RVSE69 = Skate It RVSJ13 = Skate It RVSP69 = Skate It RVTFMR = Real Stories: Veterinaire RVTPMR = Ik ben dierenarts RVTXMR = Ik ben dierenarts RVUE8P = Virtua Tennis 2009 RVUP8P = Virtua Tennis 2009 RVVE78 = Big Beach Sports RVVP78 = Big Beach Sports RVXFRT = RTL Biathlon 2009 RVXPRT = RTL Biathlon 2009 RVYD52 = Call of Duty: World at War RVYE52 = Call of Duty: World at War RVYK52 = Call of Duty: World at War RVYP52 = Call of Duty: World at War RVYX52 = Call of Duty: World at War RVYY52 = Call of Duty: World at War RVZE52 = Monsters vs. Aliens RVZP52 = Monsters vs. Aliens RW3E4Q = Pirates of the Caribbean: At World's End RW3J4Q = Pirates Of The Caribbean: At World's End RW3P4Q = Pirates Of The Caribbean: At World's End RW4D41 = My Word Coach - Verbeter Je Woordenschat RW5F41 = Weekend Miljonairs 2e Editie RW5P41 = Weekend Miljonairs 2e Editie RW6PA4 = Dance Dance Revolution: Winx Club RW7E41 = Shaun White Snowboarding: Road Trip - Target Limited Edition RW8P41 = Laura's Passie : Wilde Paarden RW9P78 = WWE SmackDown vs. Raw 2009 RW9X78 = WWE SmackDown vs. Raw 2009 RWAD78 = WALL-E RWAE78 = WALL•E RWAJ78 = WALL•E RWAK78 = WALL•E RWAP78 = WALL•E RWAR78 = WALL•E RWAU78 = WALL•E RWAX78 = WALL•E RWAY78 = WALL•E RWAZ78 = WALL•E RWBENR = Kawasaki Snowmobiles RWBXUG = Kawasaki Snow Mobiles RWCE4Z = Pinball Hall of Fame: The Williams Collection RWCP4Z = Pinball: Hall Of Fame RWCP6M = Williams Pinball Classics RWDC52 = Guitar Hero III Custom: WD Custom RWDE5G = Wild Earth: African Safari RWDP5G = Wild Earth: African Safari RWEEA4 = Pro Evolution Soccer 2008 RWEJA4 = Winning Eleven PLAY MAKER 2008 RWEPA4 = Pro Evolution Soccer 2008 RWFH41 = My Word Coach: Verbeter je Woordenschat RWGE08 = We Love Golf! RWGJ08 = We Love Golf! RWGP08 = We Love Golf! RWHP4F = Top Trumps: Doctor Who RWIE18 = Wing Island RWIJ18 = Wing Island RWIP18 = Wing Island RWJENR = WordJong Party RWKE5G = Cooking Mama: World Kitchen RWKPGT = Cooking Mama 2: World Kitchen RWLE01 = Wario Land: Shake It! RWLJ01 = Warioland Shake RWLK01 = Wario Land Shaking RWLP01 = Wario Land: The Shake Dimension RWME78 = Worms: A Space Oddity RWMP78 = Worms: A Space Oddity RWNF70 = Warning: Code De La Route RWOE69 = Monopoly RWOJ13 = Monopoly RWOP69 = Monopoly Here & Now Worldwide Edition RWQPSP = WSC Real 08: World Snooker Championship RWRE4F = Wacky Races: Crash & Dash RWRP4F = Wacky Races: Crash & Dash RWSE8P = Mario & Sonic at the Olympic Games RWSJ01 = Mario & Sonic at the Olympic Games RWSK01 = Mario & Sonic at the Olympic Games RWSP8P = Mario & Sonic op de Olympische Spelen RWTEG9 = Ben 10: Alien Force RWTPG9 = Ben 10: Alien Force RWUE52 = X-Men Origins: Wolverine RWUP52 = X-Men Origins: Wolverine RWUX52 = X-Men Origins: Wolverine RWWE52 = Guitar Hero III Custom : WWE The Hits RWWE78 = WWE SmackDown vs. Raw 2008 RWWJ78 = WWE SmackDown vs. Raw 2008 RWWP78 = WWE SmackDown vs. Raw 2008 RWWX78 = WWE SmackDown vs. Raw 2008 RWXES5 = Brave: A Warrior's Tale RWXPS5 = Brave: A Warrior's Tale RWYPHH = Runaway: The Dream of the Turtle RWZE5G = Wonder World Amusement Park RWZP5G = Wonder World Amusement Park RWZX5G = Wonder World Amusement Park RX2E70 = My Horse & Me: Riding for Gold RX2P70 = My Horse & Me 2 RX3E01 = ExciteBots: Trick Racing RX3J01 = ExciteBots: Trick Racing RX4E4Z = Casper's Scare School: Spooky Sports Day RX4PMT = Casper en de Spookschool: Spooky sportdag RX5E52 = Tony Hawk: Ride RX5P52 = Tony Hawk: Ride RX6E78 = The Biggest Loser RX6P78 = The Biggest Loser RX7JGD = Meja-maji March RX8JA4 = Jikkyou Powerful Pro Yakyuu Next RX9E69 = Need for Speed: Undercover RX9J13 = Need for Speed: Undercover RX9K69 = Need for Speed: Undercover RX9P69 = Need for Speed: Undercover RX9X69 = Need for Speed: Undercover RX9Y69 = Need for Speed: Undercover RXAE78 = WWE SmackDown vs. Raw 2010 RXAP78 = WWE SmackDown vs. Raw 2010 RXBE70 = Backyard Baseball '10 RXBP70 = Backyard Baseball '10 RXCE4Z = Dave Mirra BMX Challenge RXCP4Z = Dave Mirra BMX Challenge RXCPGT = Dave Mirra BMX Challenge RXDD4Q = Disney Th!nk Fast RXDE4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDJ4Q = Disney Th!nk Haya Oshi Quiz RXDP4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDR4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDX4Q = Disney Th!nk Fast RXDY4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXEJDA = Major Wii Perfect Closer RXFEVN = Offshore Tycoon RXGE6K = Geon Cube RXGP6K = Geon Cube RXHF5D = Chaos à La Maison RXIE52 = Transformers: Revenge of the Fallen RXIP52 = Transformers: Revenge of the Fallen RXJJDA = Jinsei Game Wii EX RXKEGL = TV Show King Party RXKFGL = TV Show King Party RXKPGL = TV Show King Party RXLE41 = Grey's Anatomy: The Video Game RXLP41 = Grey's Anatomy: The Video Game RXMJ8P = Miburi & Teburi RXNEXS = Hooked Again: Real Motion Fishing RXNJJF = Bass Fishing Wii World Tournament RXNPGT = Big Catch Bass Fishing 2 RXPEXS = Hooked!: Real Motion Fishing RXPJJF = Bass Fishing Wii RXPPGT = Big Catch Bass Fishing RXQEWR = Where the Wild Things Are RXQPWR = Where the Wild Things Are RXRERS = The Tale of Despereaux RXRPRS = The Tale of Despereaux RXRXRS = The Tale Of Despereaux RXSPA4 = Dancing Stage: Hottest Party RXUE41 = Surf's Up RXUP41 = Surf's Up RXUX41 = Surf's Up RXVXWP = Télé 7 Jeux: Mots Croisés RXWE20 = M&M's Beach Party RXXE4Q = Spectrobes: Origins RXXJ4Q = Spectrobes: Origins RXXP4Q = Spectrobes: Origins RXYE4Z = Puzzle Challenge: Crosswords and More! RXYP4Z = Puzzle Challenge Crosswords RXZE52 = Cabela's Dangerous Hunts 2009 RXZP52 = Cabela's Dangerous Hunts 2009 RY2E41 = Rayman Raving Rabbids 2 RY2J41 = Rayman Raving Rabbids 2 RY2K41 = Rayman Raving Rabbids 2 RY2P41 = Rayman Raving Rabbids 2 RY2R41 = Rayman Raving Rabbids 2 RY3E41 = Rayman Raving Rabbids TV Party RY3J41 = Rayman Raving Rabbids TV Party RY3K41 = Rayman Raving Rabbids: TV Party RY3P41 = Rayman Raving Rabbids: TV Party RY4J8P = Puyo Puyo 7 RY5E52 = Big League Sports: Summer RY5P52 = World Championship Sports: Summer RY6EA4 = Walk It Out! RY6PA4 = Step to the Beat RY7PHZ = Ninja Captains RY8EFS = Bass Pro Shops: The Strike RYAJDA = Yattaman Wii Bikkuridokkiri Machine De Mou Race Da Koron RYAJSC = Yatterman Wii (Simplified Chinese Translation) RYBE69 = Boom Blox: Bash Party RYBP69 = Boom Blox: Smash Party RYDELT = Pet Pals: Animal Doctor RYDP6V = Pet Pals RYEEEB = 101-in-1 Party Megamix RYEPHZ = 101-in-1 Party Megamix RYGE9B = Rygar: The Battle of Argus RYGJ9B = Argus No Senshi Muscle Impact RYGP99 = Rygar: The Battle of Argus RYHES5 = Roogoo: Twisted Towers RYHPS5 = Roogoo: Twisted Towers RYIE9B = SPRay RYIP9B = Spray RYJPTV = Prinses Lillifee RYKEAF = We Ski & Snowboard RYKJAF = Family Ski: World Ski & Snowboard RYKPAF = Family Ski & Snowboard RYLDSV = Germany's Next Top Model RYNE6U = The Hardy Boys: The Hidden Theft RYNP6V = The Hardy Boys: The Hidden Theft RYOEA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYOJA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYOPA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYQE69 = Trivial Pursuit RYQP69 = Trivial Pursuit RYQX69 = Trivial Pursuit Nordic RYRE41 = Your Shape RYRP41 = Your Shape RYTE4Z = PBR: Out of the Chute RYVEMS = Arcade Shooter: Ilvelo RYVJMS = Illvelo Wii RYWE01 = Big Brain Academy: Wii Degree RYWJ01 = Wii de Yawaraka Atama Juku RYWK01 = Big Brain Academy: Wii Degree RYWP01 = Big Brain Academy for Wii RYXE20 = Yamaha Supercross RYXP7J = Yamaha Supercross RYZE6U = World Party Games RYZPTV = Play the World RZ2JG9 = Simple Wii Series Vol. 1: The Minna de Kart Race RZ3JG9 = Simple Wii Series Vol. 2: The Minna de Bass Tsuri Taikai RZ4JG9 = Simple Wii Series Vol. 3: The Casino Party RZ5JG9 = Simple Wii Series Vol. 4: The Shooting Action RZ6JG9 = Simple Wii Series Vol. 5: The Block Kuzushi RZ7JG9 = Simple Wii Series Vol. 6: The Waiwai Konbatto RZ8JG9 = Simple 2000 Series Wii Vol. 1: The Table Game RZ9EG9 = Family Party: 30 Great Games RZ9JG9 = Simple 2000 Series Wii Vol. 2: The Party Game RZ9PG9 = Family Party: 30 Great Games RZAPTV = Lernerfolg Grundschule Power Math RZCE6K = Saint RZDC01 = The Legend of Zelda: Twilight Princess (Custom) RZDE01 = The Legend of Zelda: Twilight Princess RZDJ01 = The Legend of Zelda: Twilight Princess RZDK01 = The Legend of Zelda: Twilight Princess RZDP01 = The Legend of Zelda: Twilight Princess RZEE52 = Science Papa RZEP52 = Science Papa RZFPKM = Secret Files 2: Puritas Cordis RZHE5G = Zoo Hospital RZHP5G = Zoo Hospital RZHX5G = Zoo Hospital RZIE20 = Winter Sports 3: The Great Tournament RZIPRT = Winter Sports 2010: The Great Tournament RZJD69 = Dead Space: Extraction RZJE69 = Dead Space: Extraction RZJJ13 = Dead Space: Extraction RZJP69 = Dead Space: Extraction RZKE20 = Puzzle Kingdoms RZKP7J = Puzzle Kingdoms RZLE41 = Cook Wars RZLP41 = Crazy Cooking Party RZNJ01 = Zangeki no Reginleiv RZOE78 = World of Zoo RZOP78 = World of Zoo RZPE01 = Link's Crossbow Training RZPJ01 = Link's Crossbow Training RZPK01 = Link's Crossbow Training RZPP01 = Link's Crossbow Training RZREGT = The Destiny of Zorro RZRPGT = The Destiny of Zorro RZSEGJ = Speed Zone RZSP68 = Wheelspin RZTE01 = Wii Sports Resort RZTJ01 = Wii Sports Resort RZTK01 = Wii Sports Resort RZTP01 = Wii Sports Resort RZTW01 = Wii Sports Resort RZUE4Z = Crayola Colorful Journey RZYE41 = My Word Coach RZYF41 = My Word Coach: Verbeter je woordenschat RZYP41 = My Word Coach: Verbeter je woordenschat RZYS41 = My Word Coach: Verbeter je woordenschat RZZE8P = MadWorld RZZJEL = MadWorld RZZP8P = MadWorld S02PES = Sing It Star 90's S22JAF = Family Fishing S22K01 = Family Fishing S25JGD = Dragon Quest 25 Collection: Famicom & Super Famicom Dragon Quest I-II-III S26PML = 2-in-1: Pony Friends 2 + My Riding Stables: Life with Horses S2AEAF = Active Life: Explorer S2AJAF = Minna de Bouken! Family Trainer S2APAF = Family Trainer: Treasure Adventure S2BEPZ = Country Dance 2 S2BPXT = Country Dance 2 S2CE54 = New Carnival Games S2CP54 = New Carnival Funfair Games S2DPML = Dance! It's Your Stage S2EE41 = ABBA: You Can Dance S2EP41 = ABBA: You Can Dance S2HE70 = Haunted House S2HP70 = Haunted House S2IE8P = Iron Man 2 S2IP8P = Iron Man 2 S2LE01 = PokéPark 2: Wonders Beyond S2LJ01 = PokéPark 2: Beyond the World S2LP01 = PokéPark 2: Wonders Beyond S2ME69 = Madden NFL 13 S2OEFS = Bass Pro Shops: The Strike - Tournament Edition S2PEA4 = Pro Evolution Soccer 2012 S2PJA4 = Winning Eleven PLAY MAKER 2012 S2PPA4 = Pro Evolution Soccer 2012 S2PXA4 = Pro Evolution Soccer 2012 S2PYA4 = Pro Evolution Soccer 2012 S2QE54 = NBA 2K12 S2QP54 = NBA 2K12 S2RPNK = Reload S2TJAF = Taiko no Tatsujin Wii: Dodoon to 2 Daime! S2VEG9 = Victorious: Taking the Lead S2VPAF = Victorious: Taking the Lead S2WE78 = WWE All Stars S2WP78 = WWE All Stars S2XE41 = De Smurfen 2 S2XP41 = De Smurfen 2 S2YE52 = Wipeout: Create & Crash S2ZE52 = Zhu Zhu Pets: Featuring The Wild Bunch S2ZP52 = Zhu Zhu Pets: Featuring the Wild Bunch S3AE5G = Attack of the Movies 3D S3BEWR = Batman: The Brave and the Bold S3BPWR = Batman: The Brave and the Bold S3CENR = Triple Crown Championship Snowboarding S3DE18 = Deca Sports 3 S3DJ18 = Deca Sporta 3 S3DP18 = Sports Island 3 S3EE78 = Barbie Jet, Set & Style! S3EP78 = Barbie: Glam, Jet & Stijl S3FE69 = FIFA Soccer 13 S3FP69 = FIFA 13 S3FX69 = FIFA 13 S3GE20 = Glacier 3: The Meltdown S3GPXT = Glacier 3 S3HJ08 = Sengoku Basara 3 Utage S3IEA4 = Pro Evolution Soccer 2013 S3IPA4 = Pro Evolution Soccer 2013 S3IXA4 = Pro Evolution Soccer 2013 S3IYA4 = Pro Evolution Soccer 2013 S3LPY1 = Andrew Lloyd Webber Musicals: Sing and Dance S3ME69 = The Sims 3 S3MP69 = De Sims 3 S3PE4Q = Disney Princess: My Fairytale Adventure S3PP4Q = Disney Princess: My Fairytale Adventure S3PX4Q = Disney Princess: My Fairytale Adventure S3RJMS = Twinkle Queen S3SJ18 = Karaoke Joysound Wii Super DX: Hitori de Minna de Utai Houdai! S3TJAF = Taiko no Tatsujin Wii: Minna de Party ☆ 3 Daime! S3WEG9 = Family Party: 30 Great Games Winter Fun S3WPG9 = Family Party: 30 Great Games Winter Fun S3XE78 = WWE '13 S3XP78 = WWE '13 S3ZE52 = Men In Black: Alien Crisis S3ZP52 = Men In Black: Alien Crisis S4MJGD = Dragon Quest X Online: Mesamashi Itsutsu no Shuzoku S4SJGD = Dragon Quest X: Nemureru Yuusha to Michibiki no Meiyuu Online S4TJAF = Taiko no Tatsujin Wii: Ketteiban S59E01 = Samurai Warriors 3 S59JC8 = Sengoku Musou 3 S59P01 = Samurai Warriors 3 S5BETL = Back to the Future: The Game S5BPKM = Back to the Future: The Game S5KJAF = Taiko no Tatsujin Wii Chou Goukaban S5QJC8 = SengokuMusou 3 Moushouden S5RESZ = Ram Racing S5RPNJ = Ram Racing S5SJHF = Inazuma Eleven Go Strikers 2013 S5TEG9 = Ben 10: Omniverse S5TPAF = Ben 10: Omniverse S5WE20 = Around The World in 50 Games S6BE4Q = Brave: The Video Game S6BP4Q = Brave: The Video Game S6BY4Q = Brave: The Video Game S6IE78 = Disney Princess: Enchanting Storybooks S6IP78 = Disney Princess: Betoverende Verhalen S6RE52 = Wreck-It Ralph S6RP52 = Wreck-It Ralph S6TJGD = Dragon Quest X (All in One Package) S72E01 = Kirby's Dream Collection: Special Edition S72J01 = Hoshi No Kirby: 20th Anniversary Edition S75E69 = Monopoly Streets S75P69 = Monopoly Streets S7AEWR = LEGO Batman 2: DC Super Heroes S7AKWR = LEGO Batman 2: DC Super Heroes S7AKZA = Lego Superheroes 1 S7APWR = LEGO Batman 2: DC Super Heroes S7BE69 = Trivial Pursuit: Bet You Know It S7BP69 = Trivial Pursuit: Casual S7CJAF = Kamen Rider Climax Heroes Fourze S7DE52 = Angry Birds: Star Wars S7DP52 = Angry Birds: Star Wars S7EP52 = Transformers: Ultimate Battle Edition S7FE5G = Zumba Kids S7FPGT = Zumba Kids: The Ultimate Zumba Dance Party S7JPKM = Let's Sing 6 - Spanish version S7KPKM = Let's Sing 2014 S7SP41 = The Smurfs Party Pack S80U3Q = SingItStar Ultimate 80s SA3E5G = Alvin and the Chipmunks: Chipwrecked SA3P5G = Alvin and the Chipmunks: Chipwrecked SA5E78 = Are You Smarter Than A 5th Grader?: Back to School SA6EG9 = Ben 10: Galactic Racing SA6PAF = Ben 10: Galactic Racing SA7ESZ = Gummy Bears: Magical Medallion SA8P52 = The Amazing Spider-Man SA9D7K = Bibi und Tina Das grosse Reiterfest SAAJA4 = Winning Eleven PLAY MAKER 2013 SABENR = Alien Monster Bowling League SABPJG = Alien Monster Bowling League SACPVS = ACB Total 2010/2011 SACSVS = ACB Total 2010/2011 SADE70 = Backyard Sports: Sandlot Sluggers SAFUHS = AFL: Australian Football League SAGE41 = The Amazing Race SAHE69 = Hasbro: Family Game Night Fun Pack SAJE52 = Cabela's Survival: Shadows of Katmai SAJP52 = Cabela's Survival: Shadows of Katmai SAKENS = Sakura Wars: So Long, My Love SAKPNS = Sakura Wars: So Long, My Love SALE4Q = Alice in Wonderland SALP4Q = Alice in Wonderland SAME01 = New Super Mario Bros. Wii 11 American Revolution SANE01 = New Super Mario Bros. Wii Five Spica Edition SANEFS = Bass Pro Shops: The Hunt - Trophy Showdown SANT3Q = SingItStar Anthems SAOE78 = Monster High: Ghoul Spirit SAOP78 = Monster High: De Graf Geest SAQE5G = Harley Pasternak's Hollywood Workout SARE4Z = Aladdin Magic Racer SARP01 = New Super Mario Bros. Wii 4 Arcadia Another Ride SARPNK = Aladin: Magic Racer SASEWW = Atrévete a Soñar SATE6K = Chuck E. Cheese's Super Collection SAUJ8P = Puyo Puyo!! 20th Anniversary SAVE5G = Alvin and the Chipmunks: The Squeakquel SAVX5G = Alvin and the Chipmunks: The Squeakquel SAWE52 = Angry Birds Trilogy SAWP52 = Angry Birds Trilogy SAXPFH = Max & the Magic Marker SAYE20 = Boot Camp Academy SAYP41 = Boot Camp Academy SAZE52 = The Amazing Spider-Man SAZP52 = The Amazing Spider-Man SB2ES5 = My Baby First Steps SB2PNP = My Baby 2: Mijn Baby Wordt Groot SB3E08 = Sengoku Basara: Samurai Heroes SB3J08 = Sengoku BASARA 3 SB3P08 = Sengoku Basara: Samurai Heroes SB4C01 = Super Mario Galaxy 2 (Custom) SB4E01 = Super Mario Galaxy 2 SB4E02 = Neo Mario Galaxy SB4E03 = Super Mario Galaxy: Plumber's Way SB4E04 = Super Mario Sunshine Galaxy SB4E05 = Season Cycle Galaxy SB4E25 = Super Mario Galaxy 2.5 SB4J01 = Super Mario Galaxy 2 SB4J02 = Neo Mario Galaxy SB4J05 = Season Cycle Galaxy SB4K01 = Super Mario Galaxy 2 SB4P01 = Super Mario Galaxy 2 SB4P02 = Neo Mario Galaxy SB4P05 = Season Cycle Galaxy SB4W01 = Super Mario Galaxy 2 SB5E54 = NBA 2K11 SB5P54 = NBA 2K11 SB6E52 = Bakugan: Defenders of the Core SB6P52 = Bakugan Battle Brawlers: Defenders of the Core SB7IVU = Planet Basket 2009/2010 SB8EQH = Burger Bot SB9E78 = Barbie: Groom and Glam Pups SB9P78 = Barbie: Hondenshow Puppy's SBAJGD = Dragon Quest Monsters: Battle Road Victory SBBE18 = Beyblade: Metal Fusion - Battle Fortress SBBJ18 = Metal Fight Beyblade Gachinko Stadium SBBP18 = Beyblade: Metal Fusion - Counter Leone SBCJ2N = Billy's Boot Camp: Wii de Enjoy Diet! SBDE08 = Resident Evil: The Darkside Chronicles SBDJ08 = Biohazard: The Darkside Chronicles SBDK08 = Biohazard: The Darkside Chronicles SBDP08 = Resident Evil: The Darkside Chronicles SBEPSV = Bermuda Triangle SBFE70 = Backyard Football '10 SBHEFP = Remington Great American Bird Hunt SBHPNK = Remington Great American Bird Hunt SBIEVZ = Busy Scissors SBIPVZ = Busy Scissors SBJEG9 = Ben 10: Ultimate Alien Cosmic Destruction SBJPAF = Ben 10: Ultimate Alien: Cosmic Destruction SBKEPZ = Brunswick Zone Cosmic Bowling SBLE5G = A Boy and His Blob SBLP5G = A Boy and His Blob SBNEG9 = Ben 10: Alien Force Vilgax Attacks SBNPG9 = Ben 10: Alien Force: Vilgax Attacks SBOD3Q = SingItStar Best of Disney SBQE4Z = Big Buck Hunter Pro SBREJJ = Let's Play Ballerina SBRPKM = Ballerina SBSE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh SBSEFP = Remington Super Slam Hunting: North America SBSURN = Remington Super Slam Hunting: North America SBVE78 = SpongeBob's Boating Bash SBVG3Q = SingItStar Boybands vs Girlbands SBVP78 = SpongeBob Squarepants: Boten Bots Race SBVS78 = SpongeBob's Boating Bash SBWC11 = New Super Mario Bros. 3: The Wrath of Shadow Bowser SBWE5G = Babysitting Mama SBWJRA = Babysitter Mama SBWPGT = Cooking Mama World: Babysitting Mama SBXEWR = The Bachelor: The Video Game SBYE41 = Dance on Broadway SBYP41 = Dance on Broadway SBZESZ = Bermuda Triangle: Saving the Coral SC2E8P = Conduit 2 SC2P8P = Conduit 2 SC4E64 = LEGO Star Wars III: The Clone Wars SC4P64 = LEGO Star Wars III: The Clone Wars SC5PGN = Challenge Me: Word Puzzles SC6PGN = Challenge Me: Brain Puzzles 2 SC7D52 = Call of Duty: Black Ops SC7E52 = Call of Duty: Black Ops SC7F52 = Call of Duty: Black Ops SC7I52 = Call of Duty: Black Ops SC7P52 = Call of Duty: Black Ops SC7S52 = Call of Duty: Black Ops SC8E01 = Wii Play: Motion SC8J01 = Wii Play: Motion SC8K01 = Wii Play: Motion SC8P01 = Wii Play: Motion SC9P52 = Cabela's Big Game Hunter 2010 SCAE18 = Calling SCAJ18 = CALLING Kuroki Chakushin SCAP18 = Calling SCBPNK = Cyberbike Cycling Sports SCDE52 = Cabela's Dangerous Hunts 2011 SCDP52 = Cabela's Dangerous Hunts 2011 SCEE6K = Chuck E. Cheese's Party Games SCFPNK = Cocoto Festival SCGE20 = Calvin Tucker's Redneck: Farm Animal Racing Tournament SCGPXT = Calvin Tucker's: Farm Animals Racing Tournament SCHEQH = Canada Hunt SCIE41 = CSI: Fatal Conspiracy SCIP41 = CSI: Fatal Conspiracy SCJE4Q = LEGO Pirates of the Caribbean: The Video Game SCJP4Q = LEGO Pirates of the Caribbean: The Video Game SCKE6K = Chuck E. Cheese's Sports Games SCMJAF = Kamen Rider Climax Heroes OOO SCNEA4 = Scene It? Twilight SCNPA4 = Scene It? Twilight SCPE70 = Centipede: Infestation SCQDRV = Schlag den Raab - Das 2. Spiel SCREJH = Chicken Riot SCRPJH = Chicken Riot SCSE52 = Cruise Ship Vacation Games SCSPGR = Cruise Ship Resort SCTE01 = The Curse of Black Toad SCTPNK = Cocoto Surprise SCUPFR = Crazy Chicken: Carnival SCWE41 = Gold's Gym: Dance Workout SCWP41 = My Fitness Coach: Dance Workout SCXESZ = Chevrolet Camaro: Wild Ride SCXPNJ = Chevrolet Camaro: Wild Ride SCYE4Q = Cars 2 SCYP4Q = Cars 2 SCYX4Q = Cars 2 SCYY4Q = Cars 2 SCYZ4Q = Cars 2 SCZEMH = Crazy Machines SCZPFR = Crazy Machines SD2E41 = Just Dance 2 SD2J01 = Just Dance Wii SD2K41 = Just Dance 2 SD2P41 = Just Dance 2 SD2Y41 = Just Dance 2: Best Buy Edition SD3DSV = Der Gesundheitscoach SD5PTV = Lernerfolg Grundschule Deutsch SD6PTV = Lernerfolg Grundschule Englisch SD7PTV = Lernerfolg Grundschule Mathematik SD8DSV = Mein neues Leben Abenteuer auf Tropicana SD9JAF = SD Gundam Gashapon Wars SDAE01 = Scooby-Doo! The Bros Adventure SDAE5G = The Daring Game for Girls SDBE78 = de Blob 2 SDBP78 = de Blob 2 SDDPML = The Ultimate Battle Of The Sexes SDEE5G = Dance Sensation! SDFE4Q = Disney Sing It: Family Hits SDFP4Q = Disney Sing It: Family Hits SDGE4Q = Disney Channel: All Star Party SDGP4Q = Disney Channel: All Star Party SDHER3 = Super Smash Bros. Brawl Dark Hole/D.A.R.S. SDIE4Q = Disney Sing It: Party Hits SDIP4Q = Disney Sing It: Party Hits SDJJAF = SD Gundam: G Generation World SDLE78 = Dood's Big Adventure SDLP78 = Krabbel's Grote Avontuur SDMEG9 = Despicable Me: The Game SDMPAF = Verschrikkelijke ikke: En de rest kan stikke SDNE41 = Just Dance SDNP41 = Just Dance SDOPLR = Doctor Who: Return To Earth SDPE54 = Dora's Big Birthday Adventure SDPP54 = Dora's Grote Verjaardag Avontuur SDQJGD = Dragon Quest X Inishie no Ryu no Denshou Online SDREYG = Maximum Racing: Drag & Stock Racer SDRP3Q = SingItStar Deutsch Rock-Pop Vol. 1 SDRPNG = Drag & Stock Racer SDSPNG = We Dance SDTH3Q = SingItStar Die Toten Hosen SDTPGN = PDC World Championship Darts: Pro Tour SDUE41 = The Smurfs Dance Party SDUP41 = De Smurfen: Dance Party SDUPO1 = DU Super Mario Bros. : DU Edition SDVE41 = Driver: San Francisco SDVP41 = Driver: San Francisco SDWE18 = Lost in Shadow SDWJ18 = Lost in Shadow SDWP18 = A Shadow's Tale SDXE4Q = Disney Universe SDXP4Q = Disney Universe SDYEA4 = Dance Dance Revolution SDYPA4 = Dance Dance Revolution: Hottest Party 4 SDZE41 = Just Dance Kids SDZP41 = Dance Juniors SE2E69 = EA Sports Active 2 SE2P69 = EA Sports Active 2 SE3E41 = Just Dance 2015 SE3P41 = Just Dance 2015 SEAE69 = EA Sports Active: More Workouts SEAJ13 = EA Sports Active More Workout SEAP69 = EA Sports Active: Extra Trainingen SECE69 = Create SECP69 = Create SEGA = Genplus GX SEGE6U = Yoga SEGP6V = Yoga SEKJ99 = Ikenie no Yoru SELE69 = FIFA Soccer 11 SELP69 = FIFA 11 SELX69 = FIFA 11 SEME4Q = Disney Epic Mickey SEMJ01 = Disney Epic Mickey: Mickey Mouse and the Magic Brush SEMP4Q = Disney Epic Mickey SEMX4Q = Disney Epic Mickey SEMY4Q = Disney Epic Mickey SEMZ4Q = Disney Epic Mickey SENPZX = Enclave: Shadows of Twilight SEOP01 = New Super Mario Bros. Wii 8 Omega SEOP4Q = Sing It: Edad de Oro del Pop Español SEPE41 = The Black Eyed Peas Experience SEPP41 = The Black Eyed Peas Experience SEPX41 = The Black Eyed Peas Experience D1 Edition SEPZ41 = The Black Eyed Peas Experience: Limited Edition SERE4Q = Disney Epic Mickey 2: The Power of Two SERF4Q = Disney Epic Mickey 2: The Power of Two SERK4Q = Disney Epic Mickey 2: The Power of Two SERP4Q = Disney Epic Mickey 2: The Power of 2 SERV4Q = Disney Epic Mickey 2: The Power of Two SESEWR = Sesame Street: Ready, Set, Grover! SESPWR = Sesamstraat: Klaar Voor De Start, Grover! SESUWR = Sesame Street: Ready, Set, Grover! SEZJHF = Inazuma Eleven Strikers 2012 Xtreme SF2P64 = Star Wars: The Force Unleashed II SF4E20 = Flatout SF4PXT = Flatout SF5E41 = Fit in Six SF5J41 = Fit in Six SF5P41 = My Fitness Coach: Club SF7E41 = Family Feud 2012 Edition SF8E01 = Donkey Kong Country Returns SF8J01 = Donkey Kong Returns SF8P01 = Donkey Kong Country Returns SFAE41 = Family Feud Decades SFAJGD = Fullmetal Alchemist: Daughter of the Dusk SFBE70 = Backyard Sports Football: Rookie Rush SFDE01 = New Super Mario Bros. Wii 9 Virtue: This Fall Darkness SFDEAF = Active Life: Magical Carnival SFDJAF = Issyoni Asobou! Dream Theme Park SFDPAF = Family Trainer: Magical Carnival SFGE69 = Hasbro: Family Game Night 4 - The Game Show SFGP69 = Hasbro: Familie Spellen Avond 4 SFHEFP = Outdoor Action Double Pack SFIE01 = Mystery Case Files: The Malgrave Incident SFIP01 = Mystery Case Files: The Malgrave Incident SFKEG9 = Family Party: Fitness Fun SFKPAF = Family Party: Fitness Fun SFLDSV = Der Fluch der Osterinsel SFOEAF = Food Network: Cook or Be Cooked SFPPFR = Fantastic Football Fan Party SFQE8P = Captain America: Super Soldier SFQP8P = Captain America: Super Soldier SFRDRV = Fit & Fun SFRPXT = Fit & Fun SFSPGT = All Round Hunter SFTE78 = Wheel of Fortune SFTP78 = Wheel of Fortune SFUE64 = Star Wars: The Force Unleashed II SFVEXJ = Fishing Resort SFWE69 = 2010 FIFA World Cup South Africa SFWJ13 = 2010 FIFA World Cup South Africa SFWK13 = 2010 FIFA World Cup: South Africa SFWK69 = 2010 FIFA World Cup South Africa SFWP69 = 2010 FIFA World Cup South Africa SFWX69 = 2010 FIFA World Cup South Africa SFWY69 = 2010 FIFA World Cup South Africa SFWZ69 = 2010 FIFA World Cup South Africa SFXPKM = The X Factor SFXXKM = X Factor SFYEG9 = Family Party: 90 Great Games Party Pack SFYPAF = Family Party: 90 Great Games Party Pack SFZEPZ = Pheasants Forever: Wingshooter SFZPXT = Pheasants Forever SG2EFS = Crazy Mini Golf 2 SG2XUG = Crazy Mini Golf 2 SG2YFS = Crazy Mini Golf 2 SG3DSV = Germany's Next Top Model 2010 SG5PSV = Family Quiz SG6DSV = Galileo Family Quiz SG7E20 = The Garfield Show: Threat of the Space Lasagna SG7PVL = The Garfield Show: Threat of the Space Lasagna SG8EG9 = Yogi Bear SG8PAF = Yogi Bear: The Videogame SG9EYC = Gremlins: Gizmo SGAE8P = Tournament of Legends SGAP8P = Tournament of Legends SGBE5G = Greg Hastings Paintball 2 SGCE20 = Glacier 2 SGDEJJ = Let's Play Garden SGDPKM = Play Gardens SGEEG9 = Nat Geo Challenge! Wild Life SGEPLG = National Geographics Quiz! Wild Life SGHE41 = Tom Clancy's Ghost Recon SGHP41 = Tom Clancy's Ghost Recon SGI1CL = SingIt Clasicos SGI1DB = Sing IT: Dibujos Animados SGI1MC = SingItStar Mecano SGI1ML = Sing It Star: Miliki SGI1PT = Sing IT: Party SGI1RC = Sing IT: Rocks 2 SGIEA4 = GTI Club Supermini Festa! SGIJA4 = GTI Club World City Race SGIPA4 = GTI Club Supermini Festa! SGJDSV = Galileo Mystery: The Crown of Midas SGJPSV = The Crown of Midas SGKEC8 = Champion Jockey: G1 Jockey & Gallop Racer SGKJC8 = Champion Jockey: Gallop Racer & GI Jockey SGKPC8 = Champion Jockey: G1 Jockey & Gallop Racer SGLEA4 = Gormiti: The Lords of Nature! SGLPA4 = Gormiti: The Lords of Nature! SGNE69 = Hasbro: Family Game Night Value Pack SGODKP = Mini Golf Resort SGOETV = Mini Golf Resort SGPEYG = Maximum Racing: GP Classic Racing SGPPNG = GP Classic Racing SGPTI1 = Sing It Party SGQDSV = Germany's Next Top Model 2011 SGREGT = Grease SGRPGT = Grease: the game SGSESZ = Family Gameshow SGSP7J = Family GameShow SGTEFS = My Personal Golf Trainer with IMG Academies and David Leadbetter SGTPUG = My Personal Golf Trainer with IMG Academies and David Leadbetter SGUE4Q = Disney Guilty Party SGVEAF = Go Vacation SGVJAF = Go Vacation SGVPAF = Go Vacation SGWD7K = Bibi Blocksberg SGXE41 = Battle of Giants: Dinosaurs Strike SGXP41 = Strijd der Giganten: Dinosaurs Vallen Aan SGYESZ = Gummy Bears Mini Golf SGYPNJ = Gummy Bears Mini Golf SH2JMS = Hula Wii: Tanoshiku Hula o Odorou!! SH3E54 = NHL 2K11 SH3P54 = NHL 2K11 SH4EFP = Heavy Fire: Afghanistan SH4PNK = Heavy Fire: Afghanistan SH5E69 = Harry Potter and the Deathly Hallows, Part 2 SH5P69 = Harry Potter and the Deathly Hallows - Part 2 SH6E52 = Cabela's Big Game Hunter 2012 SH6P52 = Cabela's Big Game Hunter 2012 SH7ESZ = Honda ATV Fever SH7PNJ = ATV Fever SH8E52 = Cabela's Adventure Camp SH8P52 = Cabela's Adventure Camp SH9ESZ = Heathcliff: The Fast and the Furriest SHBE69 = Hasbro: Family Game Night 3 SHBP69 = Hasbro: Familie Spellen Avond 3 SHDE52 = How to Train Your Dragon SHDP52 = Hoe Tem Je Een Draak SHEDRM = Der Bauernhof SHFE20 = Basketball Hall of Fame: Ultimate Hoops Challenge SHGDRM = Holiday Games SHHE69 = Harry Potter and the Deathly Hallows, Part 1 SHHP69 = Harry Potter and the Deathly Hallows - Part 1 SHIJ2N = Shape Boxing 2 Wii Enjoy Diet! SHKE20 = Hello Kitty Seasons SHKPNQ = Hello Kitty Seasons SHLPA4 = Silent Hill: Shattered Memories SHMPLR = Horrid Henry: Missions of Mischief SHNE41 = Shaun White Skateboarding SHNP41 = Shaun White Skateboarding SHOXKR = Hugo: Magic in the Troll Woods SHOYKR = Hugo: Magic in the Troll Woods SHPE5G = Our House Party SHSE20 = Hyper Fighters SHSPXT = Hyper Fighters SHTE20 = Mathews Bow Hunting SHUE52 = Cabela's Dangerous Hunts 2011: Special Edition SHVE78 = Hot Wheels: Track Attack SHVP78 = Hot Wheels: Track Attack SHWE41 = Hollywood Squares SHXEWR = Happy Feet Two SHXPWR = Happy Feet 2 SHYE69 = NHL SlapShot SHYP69 = EA Sports: NHL Slapshot SHZENR = Harley Davidson: Road Trip SI3E69 = FIFA Soccer 12 SI3P69 = FIFA 12 SI3X69 = FIFA 12 SIABOH = SingItStar Placebo SIAE52 = Ice Age: Continental Drift - Arctic Games SIAP52 = Ice Age 4: Continental Drift SIBBHJ = SingItStar Country SIDE54 = Sid Meier's Pirates! SIDP54 = Sid Meier's Pirates! SIESP1 = Sing It: Canciones en Español SIFESZ = The Island of Dr. Frankenstein SIFPNJ = The Island of Dr. Frankenstein SIFPOH = SingItStar Fussballhits SIHE4Z = Sing 4: The Hits Edition SIIE8P = Mario & Sonic at the London 2012 Olympic Games SIIJ01 = Mario & Sonic at the London 2012 Olympic Games SIIP8P = Mario & Sonic op de Olympische Spelen – Londen 2012 SIJE52 = iCarly 2: iJoin the Click! SIJP52 = iCarly 2: iJoin the Click! SILE78 = Worms: Battle Islands SILP4Q = Latino Sing It SILP78 = Worms Battle Islands SIME69 = MySims Collection SINPNG = We Sing: Robbie Williams SIPE7T = I SPY Game Pack SIS1OH = SingItStar Volume 1 SIS2OH = SingItStar ABBA SIS3OH = SingItStar Summer Party SIS4OH = SingItStar Amped SIS5OH = SingItStar Pop Hits SIS7OH = SingItStar Take That SIS80Q = SingItStar Ultimate 80's SIS80S = StarSing : '80s Volume 1 v1.2 SIS90H = SingItStar 90´s SIS9OH = SingItStar 90's SISACD = StarSing AC/DC SISAOH = SingItStar Après Ski Party SISBOH = SingItStar R'n'B SISCOH = SingItStar Chartbreaker SISCS1 = SingItStar Chartsurfer Vol. 1 SISDAE = SingItStar Die Ärzte SISDEM = SingItStar Depeche Mode SISDOH = SingItStar The Dome SISENR = Princess Isabella: A Witch's Curse SISHOH = SingItStar Hottest Hits SISJ0Q = Pelvic Fitness by Wii (Isometric & Karate Exercise) SISLIP = StarSing : Linkin Park v1.2 SISLOH = SingItStar Legends SISMEL = StarSing : Happy Birthday Mélanie v1.1 SISMJ1 = StarSing : Michael Jackson v2.1 SISMOH = SingItStar Mallorca Party SISP10 = SingItStar Studio100 SISP12 = StarSing : Pop Hits 1 & 2 v2.0 SISP34 = StarSing : Pop Hits 3 & 4 v2.0 SISPBC = SingItStar Britney vs Christina SISPOH = SingItStar Party SISPOP = StarSing : Pop v1.1 SISPUH = Princess Isabella: A Witch's Curse SISQ3Q = SingItStar Queen SISR3Q = SingItStar Rocks! SISREU = StarSing : Rocks! v1.1 SISRP4 = SingItStar Rocks! SISSOH = SingItStar Schlager SISTDK = SingItStar - Turkish Party SITPNG = We Sing: Deutsche Hits SIUUNG = We Sing Down Under SIXE01 = New Super Mario Bros Wii 16 Revelations SIXE41 = Drawsome! Tablet SJ2EWR = Scooby-Doo! and the Spooky Swamp SJ2PWR = Scooby-Doo! En Het Spookmoeras SJ3JDA = Jinsei Game: Happy Family SJ3PNL = Jakers! Kart Racing SJ5JDA = Jinsei Game Happy Family Gotouchi Neta Zouryou Shiage SJ6E41 = Just Dance Disney Party SJ6P41 = Just Dance Disney Party SJ7E41 = Just Dance Kids 2014 SJ7P41 = Just Dance Kids 2014 SJ9E41 = Just Dance Summer Party SJ9P41 = Just Dance 2: Extra Songs SJAE5G = JAWS: Ultimate Predator SJBE52 = GoldenEye 007 SJBJ01 = GoldenEye 007 SJBP52 = GoldenEye 007 SJCEZW = Jerry Rice & Nitus' Dog Football SJDE41 = Just Dance 3 SJDJ01 = Just Dance Wii 2 SJDK41 = Just Dance 3 SJDP41 = Just Dance 3 SJDX41 = Just Dance 3 Special Edition SJDY41 = Just Dance 3: Best Buy Exclusive Edition SJDZ41 = Just Dance 3: Target Exclusive Edition SJEEPK = JumpStart Escape from Adventure Island SJFE4Z = Kid Fit Island Resort SJFPGR = Junior Fitness Trainer SJFXGR = Junior Fitness Trainer SJGEPK = JumpStart Get Moving Family Fitness SJHE41 = Just Dance Greatest Hits SJIEG9 = Jillian Michaels Fitness Ultimatum 2011 SJJEA4 = Jimmie Johnson's Anything With An Engine SJKEPK = JumpStart Crazy Karts SJLEFS = Junior League Sports SJLPXT = Junior League Sports SJME5G = Jillian Michaels Fitness Ultimatum 2010 SJMPGT = Jillian Michaels Fitness Ultimatum 2010 SJOE41 = Just Dance 2014 SJOP41 = Just Dance 2014 SJPE78 = Jeopardy! SJQEPZ = Jewel Quest Trilogy SJQPGR = Jewel Quest Trilogy SJREA4 = Def Jam Rapstar SJRXA4 = Def Jam Rapstar SJSEPK = JumpStart Pet Rescue SJTP41 = Just Dance: Best Of SJUE20 = Dino Strike SJUPXT = Dino Strike SJVE20 = Shawn Johnson Gymnastics SJWJA4 = Winning Eleven PLAY MAKER 2010 Japan Challenge SJXD41 = Just Dance 4 SJXE41 = Just Dance 4 SJXP41 = Just Dance 4 SJZE41 = Just Dance Kids 2 SJZP41 = Just Dance Kids SK3EEB = Trauma Team SK4E52 = Shrek Forever After SK4P52 = Shrek Voor Eeuwig En Altijd SK5PY1 = Kylie Sing & Dance SK6KJD = K-POP Dance Festival SK7PVZ = Disney Violetta: Rhythm & Music SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8P52 = Skylanders: Trap Team SK8V52 = Skylanders: Trap Team SKAEA4 = Karaoke Revolution Glee SKAPA4 = Karaoke Revolution Glee SKBEG9 = Kidz Bop Dance Party SKCE20 = Bigfoot: King of Crush SKDJ18 = Karaoke Joysound Wii Duet Song SKEJ18 = Karaoke Joysound Wii: Enka Kayoukyoku Hen SKGEA4 = Karaoke Revolution Glee Volume 2 SKGPA4 = Karaoke Revolution Glee Volume 2 SKHJAF = Kamen Rider Super Climax Heroes SKJE78 = You Don't Know Jack SKKPHY = Captain Morgane and the Golden Turtle SKKXHY = Captain Morgane and the Golden Turtle SKLDSV = K11 - Kommissare im Einsatz SKMJAF = Kamen Rider Climax Heroes W SKOEA4 = Karaoke Revolution Glee Volume 3 SKOPA4 = Karaoke Revolution Glee Volume 3 SKREG9 = Kamen Rider Dragon Knight SKSE54 = NBA 2K13 SKSP54 = NBA 2K13 SKTE78 = All Star Karate SKTP78 = All Star Karate SKUE78 = Kung Fu Panda 2 SKUP78 = Kung Fu Panda 2 SKVE20 = Kevin Van Dam's Big Bass Challenge SKWPNK = Cocoto Kart Racer 2 SKXE20 = Pirate Blast SKXPFH = Pirate Blast SKYE52 = Skylanders: Giants SKYP52 = Skylanders: Giants SKYX52 = Skylanders: Giants SKYZ52 = Skylanders: Giants SKZE52 = DreamWorks Super Star Kartz SKZP52 = DreamWorks Super Star Kartz SL2J01 = Zero: Shinku no Chou SL2P01 = Project Zero 2: Wii Edition SL3ENR = Dragon's Lair Trilogy SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = The Last Airbender SLAP78 = The Last Airbender SLAZ78 = The Last Airbender: ToysRUs Special Edition SLCEGN = Get Up And Dance SLCPGN = Get Up And Dance SLDEYG = Let's Dance SLDPLG = Let's Dance with Mel B SLEE78 = Deepak Chopra's Leela SLEP78 = Deepak Chopra's Leela SLFE01 = New Super Mario Bros. 3 The Final Levels SLFP01 = New Super Mario Bros. 3: The Final Levels SLFPKM = Let's Sing SLFXKM = Let's Sing 5 - Spanish version SLHEWR = LEGO Harry Potter: Years 5-7 SLHPWR = LEGO Harry Potter: Jaren 5-7 SLIE52 = Little League World Series Baseball: Double Play SLLEWW = Lucha Libre AAA: Héroes del Ring SLPP5D = The Spirit of the Wolf SLREWR = LEGO The Lord of the Rings SLRPWR = LEGO The Lord of the Rings SLSEXJ = The Last Story SLSJ01 = The Last Story SLSP01 = The Last Story SLTEJJ = NewU Fitness First Mind Body: Yoga & Pilates Workout SLTPLG = NewU Fitness First Mind Body: Yoga & Pilates Workout SLVP41 = We Dare SLWE41 = Where's Waldo? The Fantastic Journey SLYESZ = Beastly SLYPNJ = Beastly SM2E52 = 10 Minute Solution SM2P52 = 10 Minute Solution SM3E01 = Super Mario Bros. 3+ SM4E20 = Monster Trucks Mayhem SM4PXT = Monster Trucks SM5EAF = Power Rangers Samurai SM5PAF = Power Rangers Samurai SM6PNK = My Body Coach 2: Fitness & Dance SM7E69 = Madden NFL 12 SM8D52 = Call of Duty: Modern Warfare 3 SM8E52 = Call of Duty: Modern Warfare 3 SM8F52 = Call of Duty: Modern Warfare 3 SM8I52 = Call of Duty: Modern Warfare 3 SM8P52 = Call of Duty: Modern Warfare 3 SM8S52 = Call of Duty: Modern Warfare 3 SM8X52 = Call of Duty: Modern Warfare 3 SM9E54 = Major League Baseball 2K12 SMAENR = Marines: Modern Urban Combat SMAPGN = Marines: Modern Urban Combat SMBE8P = Super Monkey Ball: Step & Roll SMBJ8P = Super Monkey Ball: Step & Roll SMBP8P = Super Monkey Ball: Step & Roll SMCENR = We Wish You A Merry Christmas SMCPXT = We Wish You A Merry Christmas SMD3OH = SingItStar e La Magia Disney SMEE69 = Madden NFL 11 SMFE4Q = Phineas and Ferb: Across the 2nd Dimension SMFP4Q = Phineas and Ferb: Across the 2nd Dimension SMGE78 = Megamind: Mega Team Unite SMGP78 = Megamind: Het Mega Team SMGX = SaveGame Manager GX SMHPNK = Marvel Super Heroes 3D: Grandmaster's Challenge SMIE41 = Who Wants To Be A Millionaire SMIG3Q = SingItStar Made in Germany SMJE52 = Monster Jam: Path of Destruction SMJP52 = Monster Jam: Path of Destruction SMKE4Z = Gem Smashers SMLE54 = Major League Baseball 2K10 SMME02 = Super Mario: Mushroom Adventure PLUS - Winter Moon SMMJ0Q = Momu chan Diet Wii Figurobics by Chon Dayon SMMP01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 4. SMMP02 = Super Mario: Mushroom Adventure PLUS: Winter Moon SMNC01 = New Super Mario Bros. Wii SMNE01 = New Super Mario Bros. Wii SMNE02 = New Super Mario Remake SMNE03 = Newer Super Mario Bros. Wii SMNE04 = Cannon Super Mario Bros. Wii SMNE05 = Another Super Mario Bros. Wii SMNE06 = Newer Summer Sun SMNE07 = Newer Holiday Special SMNE08 = Epic Super Bowser World SMNE09 = Old Super Mario Bros. Wii SMNE10 = Koopa Country SMNE11 = New Super Mario Bros. Wii 4 SMNE12 = Awesomer Super Luigi Mini SMNE13 = New Super Mario Bros. Wii 9 Summer Special SMNE14 = Super Mario World Wii SMNE15 = Newer Super Mario Bros. 7 SMNE16 = Newer Super Mario Sunshine SMNE17 = Flowery Super Mario Land Wii SMNE18 = Super Switchy Mario World Wii SMNE19 = New Super Mr. M Bros. Wii SMNE20 = New Super Mario Bros. H SMNE21 = Newer Super Mario Land Wii SMNE22 = Neo Mario Brothers Wii SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE24 = Super Mario Ghost Special SMNE25 = Happy Super Marionose Wii SMNE26 = New Super Mario Bros. DS Wii Version SMNE27 = Newer Super Mario All Star SMNE28 = New Super Mario World SMNE29 = Not So Super Toaster Bros.: The Newer Collab! SMNE2D = Super Mario 2D Land 7 SMNE30 = New Super Mario Bros. Koopa Kall SMNE31 = New Super Mario Bros. Wii - Other World SMNE32 = Super Mario Legends SMNE33 = New Super Mario Bros. Wii Rollercoaster Party SMNE34 = New Super Mario Bros. Wii: Yoshi Mode SMNE35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNE36 = New Super Mario Bros. Wii Hack Pack SMNE37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNE38 = New Super Mario Bros. Wii Underground Maze SMNE39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNE40 = Newer Super Mario Bros. Wii U SMNE41 = Devil Mario Winter Special SMNE42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNE99 = Children's Super Mario Bros. Wii SMNED2 = New Super Mario Bros. + Animal Edition SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNENW = Newer Mario Escapade SMNEPM = Super Mario: Mushroom Adventure PLUS SMNEPS = New Super Mario Bros. Plus SMNERE = Retro Mario Bros. SMNERV = RVLution Wii SMNESL = Newer Super Mario Land Wii SMNESM = New Super Ghost Mario Wii SMNESN = New Super Mario Bros. Wii H SMNESS = New Super Mario Bros. 7 SMNEXD = Deluxe Super Mario Bros. Wii SMNEXR = Super Mario Remix SMNEYE = 8Forrest's Super Mario Bros. Wii SMNEYL = Luigi's Super Yoshi Bros. SMNEYM = You Super Mario Bros. Me Summer Special SMNEYS = Yoshi Super Mario Bros. Wii SMNEYU = You Super Mario Bros. Me SMNEYW = Newer Super Mario World Yoshi Way SMNEYY = You Super Mario Bros. Me Autumn Adventure SMNEZ2 = New JeDa Mario Bros. Wii SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZG = GF Super Mario Bros. Wii SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZQ = Basic Super Mario Bros. Wii SMNEZR = Newer Super Wario World Wii SMNEZS = Another Newer Super Mario Bros. Wii SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZX = Donkey Kong Remastered SMNEZY = Super Mario Skyland SMNEZZ = New Super Mario Bros. 2 Wii Version SMNJ01 = New Super Mario Bros. Wii SMNJ02 = Awesomer Super Luigi Mini SMNJ03 = Newer Super Mario Bros. Wii SMNJ04 = Cannon Super Mario Bros. Wii SMNJ06 = Newer Summer Sun SMNJ07 = Newer Holiday Special SMNJ08 = Epic Super Bowser World SMNJ10 = Koopa Country SMNJ11 = New Super Mario Bros. Wii 4 SMNJ13 = New Super Mario Bros. Wii 9 Summer Special SMNJ14 = Super Mario World Wii SMNJ15 = Newer Super Mario Bros. 7 SMNJ16 = Newer Super Mario Sunshine SMNJ17 = Flowery Super Mario Land Wii SMNJ18 = Super Switchy Mario World Wii SMNJ19 = New Super Mr. M Bros. Wii SMNJ20 = New Super Mario Bros. H SMNJ21 = Newer Super Mario Land Wii SMNJ22 = Neo Mario Brothers Wii SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ24 = Super Mario Ghost Special SMNJ25 = Happy Super Marionose Wii SMNJ26 = New Super Mario Bros. DS Wii Version SMNJ27 = Newer Super Mario All Star SMNJ28 = New Super Mario World SMNJ29 = Not So Super Toaster Bros.: The Newer Collab! SMNJ2D = Super Mario 2D Land Wii SMNJ30 = New Super Mario Bros. Koopa Kall SMNJ31 = New Super Mario Bros. Wii - Other World SMNJ32 = Super Mario Legends SMNJ33 = New Super Mario Bros. Wii Rollercoaster Party SMNJ34 = New Super Mario Bros. Wii: Yoshi Mode SMNJ35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNJ36 = New Super Mario Bros. Wii Hack Pack SMNJ37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNJ38 = New Super Mario Bros. Wii Underground Maze SMNJ39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNJ40 = Newer Super Mario Bros. Wii U SMNJ41 = Devil Mario Winter Special SMNJ42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNJ99 = Children's Super Mario Bros. Wii SMNJD2 = New Super Mario Bros. + Animal Edition SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJNW = Newer Mario Escapade SMNJPM = Super Mario: Mushroom Adventure PLUS SMNJPS = New Super Mario Bros. Plus SMNJRE = Retro Mario Bros. SMNJRV = RVLution Wii SMNJSL = Newer Super Mario Land Wii SMNJSM = New Super Ghost Mario Wii SMNJXD = Deluxe Super Mario Bros. Wii SMNJXR = Super Mario Remix SMNJYE = 8Forrest's Super Mario Bros. Wii SMNJYL = Luigi's Super Yoshi Bros. SMNJYM = You Super Mario Bros. Me Summer Special SMNJYS = Yoshi Super Mario Bros. Wii SMNJYY = You Super Mario Bros. Me Autumn Adventure SMNJZ2 = New JeDa Mario Bros. Wii SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZG = GF Super Mario Bros. Wii SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZQ = Basic Super Mario Bros. Wii SMNJZR = Newer Super Wario World Wii SMNJZS = Another Newer Super Mario Bros. Wii SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZX = Donkey Kong Remastered SMNJZY = Super Mario Skyland SMNJZZ = New Super Mario Bros. 2 Wii Version SMNK01 = New Super Mario Bros. Wii SMNP01 = New Super Mario Bros. Wii SMNP02 = Awesomer Super Luigi Mini SMNP03 = Newer Super Mario Bros. Wii SMNP04 = Cannon Super Mario Bros. Wii SMNP05 = Another Super Mario Bros. Wii SMNP06 = Newer Summer Sun SMNP07 = Newer Holiday Special SMNP08 = Epic Super Bowser World SMNP10 = Koopa Country SMNP11 = New Super Mario Bros. Wii 4 SMNP12 = Awesomer Super Luigi Mini SMNP13 = New Super Mario Bros. Wii 9 Summer Special SMNP14 = Super Mario World Wii SMNP15 = Newer Super Mario Bros. 7 SMNP16 = Newer Super Mario Sunshine SMNP17 = Flowery Super Mario Land Wii SMNP18 = Super Switchy Mario World Wii SMNP19 = New Super Mr. M Bros. Wii SMNP20 = New Super Mario Bros. H SMNP21 = Newer Super Mario Land Wii SMNP22 = Neo Mario Brothers Wii SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP24 = Super Mario Ghost Special SMNP25 = Happy Super Marionose Wii SMNP26 = New Super Mario Bros. DS Wii Version SMNP27 = Newer Super Mario All Star SMNP28 = New Super Mario World SMNP29 = Not So Super Toaster Bros.: The Newer Collab! SMNP2D = Super Mario 2D Land Wii SMNP30 = New Super Mario Bros. Koopa Kall SMNP31 = New Super Mario Bros. Wii - Other World SMNP32 = Super Mario Legends SMNP33 = New Super Mario Bros. Wii Rollercoaster Party SMNP34 = New Super Mario Bros. Wii: Yoshi Mode SMNP35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNP36 = New Super Mario Bros. Wii Hack Pack SMNP37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNP38 = New Super Mario Bros. Wii Underground Maze SMNP39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNP40 = Newer Super Mario Bros. Wii U SMNP41 = Devil Mario Winter Special SMNP42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNP77 = New Super Mario Bros. Wii Arcadia SMNP99 = Children's Super Mario Bros. Wii SMNPD2 = New Super Mario Bros. + Animal Edition SMNPDU = DU Super Mario Bros. : Anniversary Edition SMNPLL = Newer Super Luigi Wii SMNPLM = Newer Super Luigi Wii Dark Moon SMNPMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNPNW = Newer Mario Escapade SMNPO1 = New Super Mario Custom Edition SMNPPM = Super Mario: Mushroom Adventure PLUS SMNPPS = New Super Mario Bros. Plus SMNPRE = Retro Mario Bros. SMNPRV = RVLution Wii SMNPSL = Newer Super Mario Land Wii SMNPSM = New Super Ghost Mario Wii SMNPXD = Deluxe Super Mario Bros. Wii SMNPXR = Super Mario Remix SMNPYE = 8Forrest's Super Mario Bros. Wii SMNPYL = Luigi's Super Yoshi Bros. SMNPYM = You Super Mario Bros. Me Summer Special SMNPYS = Yoshi Super Mario Bros. Wii SMNPYY = You Super Mario Bros. Me Autumn Adventure SMNPZ2 = New JeDa Mario Bros. Wii SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZG = GF Super Mario Bros. Wii SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZQ = Basic Super Mario Bros. Wii SMNPZR = Newer Super Wario World Wii SMNPZS = Another Newer Super Mario Bros. Wii SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZX = Donkey Kong Remastered SMNPZY = Super Mario Skyland SMNPZZ = New Super Mario Bros. 2 Wii Version SMNW01 = New Super Mario Bros. Wii SMOE41 = Michael Jackson: The Experience SMOJ41 = Michael Jackson: The Experience SMOP41 = Michael Jackson The Experience SMOT3Q = SingItStar Motown SMOX41 = Michael Jackson: The Experience - Walmart Edition SMOY41 = Michael Jackson: The Experience - Special Edition SMPE69 = Monopoly Collection SMPP01 = New Super Mario Bros. Wii 2: The Other P SMPP69 = Monopoly Collection SMRE01 = New Super Mario Bros. Wii: Super Mario Bros. 1 Custom SMRE78 = WWE SmackDown vs. Raw 2011 SMRP78 = WWE SmackDown vs. Raw 2011 SMSE01 = New Super Mario Bros Wii 12 Sunshine Paradise SMSE78 = Marvel Super Hero Squad: The Infinity Gauntlet SMSP78 = Marvel Super Hero Squad: The Infinity Gauntlet SMTJ18 = Momotarô Dentetsu 2010 SMUJAF = Daikaijuu Battle: Ultra Coliseum DX - Ultra Senshi Daishuuketsu SMVE01 = Super Mario Vacation SMVE54 = Major League Baseball 2K11 SMVJ01 = Super Mario Vacation SMVP01 = Super Mario Vacation SMWE01 = Newer Super Mario World U SMWE4Z = Man vs. Wild SMWJ01 = Newer Super Mario World U SMWP01 = Newer Super Mario World U SMYE20 = Minute to Win It SMZE78 = Marvel Super Hero Squad: Comic Combat SMZP78 = Marvel Super Hero Squad: Comic Combat SN2E69 = NERF N-Strike Double Blast Bundle SN3EYG = Maximum Racing: Rally Racer SN3PNG = Rally Racer SN4EDA = Naruto Shippuden: Dragon Blade Chronicles SN4JDA = Naruto Shippuuden: Ryujinki SN4XGT = Naruto Shippuden: Dragon Blade Chronicles SN5EYG = Maximum Racing: Crash Car Racer SN5PNG = Crash Car Racer SN6EYG = Maximum Racing: Super Karts SN6PNG = Super Karts SN7EYG = Maximum Racing: Super Truck Racer SN7PNG = Super Truck Racer SN8EYG = Maximum Racing: Sprint Cars SN8PNG = Sprint Cars SN9E54 = Nickelodeon Fit SNAE52 = Cabela's North American Adventures 2011 SNBE41 = NCIS: The Game SNBP41 = NCIS: The Game SNCE8P = Sonic Colors SNCJ8P = Sonic Colors SNCP8P = Sonic Colours SNDE20 = Deal or No Deal: Special Edition SNEENR = North American Hunting Extravaganza 2 SNEPXT = North American Hunting 2: Extravaganza SNFE69 = EA Sports Active NFL Training Camp SNGEJJ = Get Fit with Mel B SNGPLG = Get Fit with Mel B SNHE69 = Need for Speed: Hot Pursuit SNHJ13 = Need for Speed: Hot Pursuit SNHP69 = Need for Speed: Hot Pursuit SNIE54 = Nicktoons MLB SNJE69 = NBA Jam SNJP69 = NBA Jam SNKX54 = Nickelodeon Fit SNLE01 = New Super Mario Bros. Wii 0-2 Next Generation Levels SNLE54 = Nickelodeon Dance SNLP54 = Nickelodeon Dance SNLX54 = Nickelodeon Dance SNMEAF = Namco Museum Megamix SNOPY1 = Now! That's What I Call Music: Dance & Sing SNPE52 = NASCAR The Game: Inside Line SNQE7U = National Geographic Challenge! SNQPLG = National Geographic Challenge! SNRE52 = NASCAR Unleashed SNSE52 = NASCAR 2011: The Game SNTEXN = Netflix Instant Streaming Disc SNUPJW = Happy Neuron Academy SNVE69 = Need for Speed: The Run SNVJ13 = Need for Speed: The Run SNVP69 = Need for Speed: The Run SNXJDA = Naruto Shippuuden: Gekitou Ninja Taisen Special SNYEVZ = Monster High: 13 Wishes SNYPVZ = Monster High: 13 Wishes SNZEVZ = Barbie: Dreamhouse Party SNZPVZ = Barbie: Dreamhouse Party SO3EE9 = Rune Factory: Tides of Destiny SO3J99 = Rune Factory: Oceans SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg 2 SOCE4Z = Deadliest Catch: Sea of Chaos SOIEEB = 101-in-1 Sports Party Megamix SOIPHZ = 101-in-1 Sports Party Megamix SOJE41 = Rayman Origins SOJP41 = Rayman Origins SOKEA4 = Karaoke Joysound SOKJ18 = Karaoke Joysound Wii DX SOME01 = Rhythm Heaven Fever SOMJ01 = Minna no Rhythm Tengoku SOMK01 = Rhythm Heaven Fever SOMP01 = Beat the Beat: Rhythm Paradise SONDMR = My First Songs SONFMR = My First Songs SONPMR = My First Songs SORE4Z = The Oregon Trail SOSEG9 = Turbo: Super Stunt Squad SOSPAF = Turbo: Super Stunt Squad SOTE52 = Wipeout: The Game SOUE01 = The Legend of Zelda: Skyward Sword SOUJ01 = The Legend of Zelda: Skyward Sword SOUK01 = The Legend of Zelda: Skyward Sword SOUP01 = The Legend of Zelda: Skyward Sword SP2E01 = Wii Sports + Wii Sports Resort SP2P01 = Wii Sports + Wii Sports Resort SP3E41 = The $1,000,000 Pyramid SP4PJW = Pétanque Master SP4V = Castlevania: Rondo of Blood SP5E70 = The Kore Gang: Outvasion From Inner Earth SP5PVV = The Kore Gang: Outvasion From Inner Earth SP6DSV = Popstars SP7EAF = Pac-Man Party SP7JAF = Pac-Man Party SP7PAF = Pac-Man Party SP8E78 = The Penguins of Madagascar: Dr. Blowhole Returns Again! SP8P78 = De Pinguïns van Madagascar: Dr. Blowhole Keert Weer Terug! SP9P4Q = SingIt Star POP 2009 SP9PJW = Pucca's Race for Kisses SPAE5G = Pirates Plund-Arrr SPBPGT = Spellbound Party SPCPZS = Pocoyo Racing SPDE52 = Spider-Man: Shattered Dimensions SPDP52 = Spider-Man: Shattered Dimensions SPEE20 = Speed SPEPXT = Speed SPGPPN = Peppa Pig: Fun And Games SPHPJW = Spaghetti Western Shooter SPIE18 = Oops! Prank Party SPIJ18 = Party Game Box 100 SPIP18 = Games Island SPKXPV = Springdale: Riding Adventures SPMDRM = Mahjongg Party SPMPWP = Mahjong Party Pack SPOPFR = Winter Sports 2011: Go for Gold SPPEFS = Power Punch SPQE7T = I SPY Spooky Mansion SPRE01 = New Super Mario Bros. Wii 14 Project Mario SPRE41 = The Price Is Right: 2010 Edition SPTJEB = Hospital. 6 nin no Ishi SPUE20 = Let's Paint SPVEA4 = Pro Evolution Soccer 2011 SPVPA4 = Pro Evolution Soccer 2011 SPVXA4 = Pro Evolution Soccer 2011 SPVYA4 = Pro Evolution Soccer 2011 SPWHZH = Het Studio 100 Speeleiland SPXP41 = Prince of Persia: The Forgotten Sands SPYDSV = Yetisports: Penguin Party Island SPZE5G = Pizza Delivery Boy SQ2EPZ = Country Dance SQ2PXT = Country Dance SQAE52 = Cabela's African Adventures SQBPXT = The Cube SQDE8P = Gunblade NY & LA Machineguns : Arcade Hits Pack SQDP8P = Gunblade NY & LA Machineguns: Arcade Hits Pack SQEENG = We Sing Pop! SQEPNG = We Sing Pop! SQFE5G = Phineas and Ferb: Quest for Cool Stuff SQFPGT = Phineas and Ferb: Quest for Cool Stuff SQIE4Q = Disney Infinity SQIP4Q = Disney Infinity SQIY4Q = Disney Infinity SQKE5G = Cooking Mama 2-Pack SQKK01 = Cooking Mama 2 Pack SQLE4Z = Cartoon Network Punch Time Explosion XL SQLPGN = Cartoon Network: Punch Time Explosion XL SQME52 = Spider-Man: Edge of Time SQMP52 = Spider-Man: Edge of Time SQPPX4 = Speed 2 SQQEVZ = Disney Planes: Fire & Rescue SQQPVZ = Disney Planes: Fire & Rescue SQRPNG = We Sing Rock! SQTPML = De Strijd, Tussen Jongens En Meisjes SQUDX3 = Quiz Party SQUFX3 = Quiz Party SQVE69 = FIFA 15 SQVP69 = FIFA 15 - Legacy Edition SQVX69 = FIFA 15 - Legacy Edition SR4E41 = Raving Rabbids: Travel in Time SR4J41 = Raving Rabbids: Travel in Time SR4P41 = Raving Rabbids: Travel in Time SR5E41 = Raving Rabbids Party Collection SR5P41 = Raving Rabbids: Party Collection SR6EHG = Reader Rabbit 1st Grade SR7EHG = Reader Rabbit 2nd Grade SR8EHG = Reader Rabbit Kindergarten SR9EHG = Reader Rabbit Preschool SRAJMS = Rajirugi Noa Wii SRBP4Q = SingItStar: R&B SRBPHS = Rugby League 3 SRCE69 = Rock Band: Country Track Pack 2 SREXNL = Reader Rabbit Kindergarten SRFE52 = Rapala Pro Bass Fishing SRFP52 = Rapala Pro Bass Fishing SRGE69 = Rango SRGP01 = New Super Mario Bros Wii 2 Reggie SRGP69 = Rango SRHP01 = New Super Mario Bros. Wii 7 Retro Heaven SRIE78 = Rio SRIP78 = Rio SRJJAF = Super Sentai Battle: Ranger Cross SRKEFP = Remington Super Slam Hunting: Alaska SRKPNK = Remington Dangerous Animals SRLXNL = Reader Rabbit Preschool SRME18 = Rooms: The Main Building SRMJ18 = Rooms: Fushigi na Ugoku Heya SRNE70 = Project Runway SRNP01 = New Super Mario Bros. Wii Revolution SRNP70 = Project Runway SRPE4Q = Disney Tangled SRPP4Q = Disney Rapunzel SRQE41 = Racquet Sports SRQP41 = Racket Sports Party SRRENR = Rec Room Games SRRPGN = Great Party Games SRSE20 = Super Sonic Racer SRSPXT = Supersonic Racer SRTXNL = Reader Rabbit 1st Grade SRUE4Z = Rudolph the Red-Nosed Reindeer SRVE41 = The Price Is Right Decades SRVP01 = New Super Mario Bros Revolution SRWXNL = Reader Rabbit 2nd Grade SRXE52 = Generator Rex: Agent of Providence SRXP52 = Generator Rex: Agent of Providence SRYEAF = ExerBeat: Gym Class Workout SRYJAF = Fitness Party SRYPAF = ExerBeat: Gym Class Workout SS2PFR = Winter Sports 2012: Feel the Spirit SS3EWR = Sesame Street: Elmo's A-to-Zoo Adventure SS3PWR = Sesame Street: Elmo's A-to-Zoo Adventure SS3UWR = Sesame Street: Elmo's A-to-Zoo Adventure SS4EWR = Sesame Street: Cookie's Counting Carnival SS4UWR = Sesame Street: Cookie's Counting Carnival SS5ENR = Satisfashion SS6UHS = AFL Live: Game of the Year Edition SS7EFP = Remington Super Slam Hunting: Africa SS7URN = Remington Super Slam Hunting: Africa SS8E78 = SpongeBob SquigglePants SS8P78 = SpongeBob Squarepants: De Onnozele Krabbelaar SS9JMS = Milestone Shooting Collection 2 SSBE78 = Puss in Boots SSBP78 = De Gelaarsde kat SSCDWR = Scene It? Bright Lights! Big Screen! SSCEPM = Scene It? Bright Lights! Big Screen! SSCFPM = Scene It? Bright Lights! Big Screen! SSCFWR = Scene It? Bright Lights! Big Screen! SSCIWR = Scene It? Bright Lights! Big Screen! SSCPWR = Scene It? Bright Lights! Big Screen! SSCSWR = Scene It? Bright Lights! Big Screen! SSDDRV = Schlag den Raab SSEDNG = We Sing: Encore SSEPNG = We Sing: Encore SSEVNG = We Sing: Encore SSFPKM = Sing 4: The Hits Edition SSGPNG = We Sing SSHPHH = Sherlock Holmes: The Silver Earring SSIENR = Winter Blast: 9 Snow & Ice Games SSJEJJ = Summer Stars 2012 SSJPKM = Summer Stars 2012 SSLENR = I Love Horses: Rider's Paradise SSLPKM = The Saddle Club SSLPOH = SingItStar Legends SSMEYG = American Mensa Academy SSMPGD = Mensa Academy SSNEYG = Sniper Elite SSNPHY = Sniper Elite SSPE52 = Skylanders: Spyro's Adventure SSPJ52 = Skylanders: Spyro's Adventure SSPP52 = Skylanders: Spyro's Adventure SSPX52 = Skylanders: Spyro's Adventure SSQE01 = Mario Party 9 SSQJ01 = Mario Party 9 SSQK01 = Mario Party 9 SSQP01 = Mario Party 9 SSQW01 = Mario Party 9 SSRE20 = Wild West Shootout SSRPXT = Wild West Shootout SSSE01 = New Super Mario Bros. Wii: Summer Sun SSSEWR = Sesame Street: Elmo's Musical Monsterpiece SSTEG9 = Kid Adventures: Sky Captain SSTPY5 = Stunt Flyer: Hero of the Skies SSUES5 = Sushi Go Round SSVE52 = Wipeout 3 SSWDRM = Water Sports SSWEPZ = Water Sports SSWPGR = Water Sports SSZE5G = Swords ST3J01 = Kiki Trick ST4PNX = Thomas & Friends: Hero of the Rails ST4XNX = Thomas & Friends: Hero of the Rails ST5E52 = Transformers: Cybertron Adventures ST5P52 = Transformers: Cybertron Adventures ST6E78 = The Biggest Loser Challenge ST6P78 = The Biggest Loser Challenge ST7E01 = Fortune Street ST7JGD = Itadaki Street Wii ST7P01 = Boom Street ST8P75 = SingItStar 80's ST9E52 = Top Shot Arcade STAE78 = Pictionary STAP75 = SingItStar Apres Ski Hits STAP78 = Pictionary STAU78 = Pictionary STCP75 = SingItStar Singstar STDEFP = Reload STDP75 = SingItStar Deutsch Rock-Pop STEETR = Tetris Party Deluxe STEJ18 = Tetris Party Premium STEPTR = Tetris Party Deluxe STFE52 = Transformers: Prime STFP52 = Transformers Prime: The Game STGJAF = Tales of Graces STHE8P = THOR: God of Thunder STHP75 = SingItStar Hottest Hits STHP8P = THOR: God of Thunder STIFKM = Titeuf le Film STJJAF = Taiko no Tatsujin Wii: Ketteiban STKE08 = Tatsunoko vs. Capcom: Ultimate All-Stars STKJ08 = Tatsunoko vs. Capcom: Ultimate All-Stars STKP08 = Tatsunoko vs. Capcom: Ultimate All-Stars STLE78 = Truth or Lies STLP78 = Truth or Lies STMEGN = Titanic Mystery STMPKP = Titanic Mystery STNE41 = The Adventures of Tintin: The Game STNP41 = De avonturen van Kuifje: Het geheim van de eenhoorn STOE4Q = Cars Toon: Mater's Tall Tales STOP4Q = Cars Toon: Takel's Sterke Verhalen STOX4Q = Cars Toon: Mater's Tall Tales STPP75 = SingItStar Pop Hits STPPML = Pet Vet: Marine Patrol STQJHF = Inazuma Eleven Strikers STQP01 = Inazuma Eleven Strikers STQP75 = SingItStar Queen STQX01 = Inazuma Eleven Strikers STRE4Q = Tron: Evolution - Battle Grids STRP4Q = Tron: Evolution - Battle Grids STRP75 = SingItStar Rock Ballads STRX4Q = Tron: Evolution - Battle Grids Championship Edition STSE4Q = Toy Story 3 STSP4Q = Toy Story 3 STSP75 = SingItStar Schlager STSX4Q = Toy Story 3 STSY4Q = Toy Story 3 STSZ4Q = Toy Story 3: Toy Box Special Edition STTDRM = Hidden Mysteries: Titanic STTE52 = Hidden Mysteries: Titanic STTPGR = Hidden Mysteries Titanic: Secrets of the Fateful Voyage STTXGR = Hidden Mysteries: Titanic STUPRN = Turbo Trainz STVDSV = TV Total Events STWE69 = Tiger Woods PGA Tour 11 STWP69 = Tiger Woods PGA Tour 11 STXE69 = Tiger Woods PGA Tour 12: The Masters STXP69 = Tiger Woods PGA Tour 12: The Masters STYE52 = Tony Hawk: Shred STYP52 = Tony Hawk : Shred STZE52 = Transformers: Dark of the Moon - Stealth Force Edition STZP52 = Transformers: Dark of the Moon - Stealth Force Edition SU2E54 = Nickelodeon Dance 2 SU2P54 = Nickelodeon Dance 2 SU2X54 = Nickelodeon Dance 2 SU3DMR = U-Sing 2 SU3FMR = U-Sing 2 SU3HMR = U-Sing 2: Popstars Edition SU3PMR = U-Sing 2 SU3SMR = U-Sing 2 SU3UMR = U-Sing 2: Australian Edition SU4E78 = UFC Personal Trainer: The Ultimate Fitness System SU4P78 = UFC Personal Trainer: The Ultimate Fitness System SU5EVZ = Monster High: Skultimate Roller Maze SU5PVZ = Monster High: Skultimate Roller Maze SU6E5G = Zumba Fitness Core SU6P5G = Zumba Fitness Core SU6XGT = Zumba Fitness Core SU7EG9 = Rise of the Guardians SU7PAF = Rise of the Guardians SU8PNG = We Sing: Deutsche Hits 2 SU9E4Q = Disney Planes SU9P4Q = Disney Planes SU9X4Q = Disney Planes SUKE01 = Kirby's Return to Dream Land SUKJ01 = Hoshi no Kirby Wii SUKK01 = Kirby's Return to Dream Land SUKP01 = Kirby's Adventure Wii SUMJC8 = Winning Post World 2010 SUNEYG = Deer Drive Legends SUOE41 = The Hip Hop Dance Experience SUOP41 = The Hip Hop Dance Experience SUPE01 = Wii Party SUPJ01 = Wii Party SUPK01 = Wii Party SUPP01 = Wii Party SUQENG = We Sing UK Hits SUQPNG = We Sing: UK Hits SURE01 = New Super Mario Bros. Wii 19 Resurrection U SUREA4 = Dance Dance Revolution II SURPA4 = Dance Dance Revolution: Hottest Party 5 SUSFMR = U-Sing Johnny Hallyday SUSPMR = U-Sing Girls Night SUTESZ = Once Upon A Time SUUE78 = uDraw Studio: Instant Artist SUUP78 = uDraw Studio: Instant Artist SUVE52 = Cabela's Dangerous Hunts 2013 SUVP52 = Cabela's Dangerous Hunts 2013 SUWE78 = uDraw Studio SUWP78 = uDraw Studio SUXEA4 = Pro Evolution Soccer 2010 SUXJA4 = Winning Eleven PLAY MAKER 2010 SUXPA4 = Pro Evolution Soccer 2010 SUXXA4 = Pro Evolution Soccer 2010 SUXYA4 = Pro Evolution Soccer 2010 SUYDRV = Schlag den Raab - Das 3. Spiel SUZD7K = Benjamin Blümchen - Törööö im Zoo SV2E78 = Big Beach Sports 2 SV2P78 = Big Beach Sports 2 SV3EG9 = Madagascar 3: The Video Game SV3PAF = Madagascar 3: Europe's Most Wanted SV4E8P = Virtua Tennis 4 SV4P8P = Virtua Tennis 4 SV5PRV = The Voice of Germany Vol. 2 SV6SRV = The Voice SV7EVZ = Penguins of Madagascar SV7PVZ = Penguins of Madagascar SVBE52 = Battleship SVBP52 = Battleship SVCEPZ = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = SpongeBob Squarepants: Plankton's Robotic Revenge SVHP69 = FIFA 14 - Legacy Edition SVHX69 = FIFA 14 - Legacy Edition SVME01 = Super Mario All-Stars SVMJ01 = Super Mario Collection: 25th Anniversary Edition SVMK01 = Super Mario All-Stars SVMP01 = Super Mario All-Stars : 25th Anniversary Edition SVOEWW = El Chavo SVPESZ = Vegas Party SVPPNJ = Vegas Party SVSPZX = Battle vs Chess SVTEXS = Bit.Trip Complete SVTP99 = BIT.TRIP COMPLETE SVUPRV = The Voice of Germany SVVEG9 = The Croods: Prehistoric Party! SVVPAF = The Croods: Prehistoric Party! SVWEQH = Veggy World SVXE52 = Skylanders: Swap Force SVXF52 = Skylanders: Swap Force SVXI52 = Skylanders: Swap Force SVXP52 = Skylanders: Swap Force SVXY52 = Skylanders: Swap Force SVYEG9 = Ben 10: Omniverse 2 SVYPAF = Ben 10: Omniverse 2 SVZEVZ = How to Train Your Dragon 2 SVZPVZ = Hoe Tem Je Een Draak 2 SW2E52 = Wipeout 2 SW3EJJ = Winter Stars SW3PKM = Winter Stars SW4JA4 = Winning Eleven PLAY MAKER 2011 SW6E78 = WWE '12 SW6P78 = WWE '12 SW7EVN = Gunslingers SW7PNK = Western Heroes SW8ENG = We Sing 80s SW8PNG = We Sing 80s SW9EVN = Wicked Monsters Blast! SW9PYT = Wicked Monsters Blast! SWAE52 = DJ Hero SWAP52 = DJ Hero SWBE52 = DJ Hero 2 SWBP01 = New Super Mario Bros. Wii 0 Where It All Began SWBP52 = DJ Hero 2 SX2PNG = Jungle Kartz SX3EXJ = Pandora's Tower SX3J01 = Pandora’s Tower: Until I Return to Your Side SX3P01 = Pandora's Tower SX4E01 = Xenoblade Chronicles SX4J01 = Xenoblade SX4P01 = Xenoblade Chronicles SX5E4Z = Santa Claus is Comin' to Town! SX6JAF = Pretty Cure All Stars Everyone Gather ☆ Let's Dance SX7E52 = Teenage Mutant Ninja Turtles SX7P52 = Teenage Mutant Ninja Turtles SX8E52 = X-Men Destiny SX8P52 = X-Men Destiny SXAE52 = Guitar Hero: World Tour SXAP52 = Guitar Hero: World Tour SXBE52 = Guitar Hero: Metallica SXBP52 = Guitar Hero: Metallica SXCE52 = Guitar Hero: Smash Hits SXCP52 = Guitar Hero: Greatest Hits SXDE52 = Guitar Hero: Van Halen SXDP52 = Guitar Hero: Van Halen SXEE52 = Guitar Hero 5 SXEF52 = Guitar Hero III Custom : Megadeth SXEP52 = Guitar Hero 5 SXFE52 = Band Hero SXFF52 = Guitar Hero III Custom : My Chemical Romance SXFP52 = Band Hero SXIE52 = Guitar Hero: Warriors of Rock SXIP52 = Guitar Hero: Warriors of Rock SY8PKM = Let's Sing 2015 SZ2E5G = Zumba Fitness 2 SZ2P5G = Zumba Fitness 2 SZ2XGT = Zumba Fitness 2 SZ3E5G = Zumba Fitness World Party SZ3PGT = Zumba Fitness World Party SZ5E5G = Zumba Fitness SZ5PGT = Zumba Fitness SZAE69 = Rock Band 2 SZAP69 = Rock Band 2 SZBE69 = Rock Band 3 SZBP69 = Rock Band 3 SZEE01 = New Super Mario Bros Wii 13 Shadow Zero Escape TITLES = http://www.gametdb.com (type: Wii language: NL version: 20150208111148) UGPE01 = Game Boy Player UGPJ01 = Game Boy Player UGPP01 = Game Boy Player ULFW = uLoader UUUE01 = New Super Mario Bros. Wii 19 Resurrection U VBGX = Visual Boy Advance GX VIPE01 = New Super Mario Bros Wii 18 Vip Mix W22E = Planet Fish W24E = 2 Fast 4 Gnomz W2AE = Big Bass Arcade W2CE = Brain Challenge W2CJ = Brain Challenge W2CP = Brain Challenge W2FP = Physiofun - Balance Training W2GD = Phoenix Wright Ace Attorney: Justice for All (Deutsche Version) W2GE = Phoenix Wright: Ace Attorney Justice for All W2GI = Phoenix Wright: Ace Attorney - Justice for All W2GJ = Gyakuten Saiban 2 W2GP = Phoenix Wright Ace Attorney: Justice for All W2IE = Fishie Fishie W2IP = Fishie Fishie W2JE = Just Jam W2KE = Let's Catch W2KJ = Let's Catch W2KP = Let's Catch W2LE = Bloons W2LP = Bloons W2ME = Blaster Master: Overdrive W2MP = Blaster Master: Overdrive W2OE = My Aquarium 2 W2OJ = Blue Oasis: Michinaru Shinkai W2OP = My Aquarium 2 W2PP = Physiofun: Pelvic Floor Training W2TE = Drill Sergeant Mindstrong W2TJ = Onitore Kyoukan ha Onigunsou W2TP = Brain Cadets W2YE = Fireplacing W2YP = My Fireplace W34J = Simple Series Vol. 4: The Misshitsu kara no Dasshutsu W3AE = Carmen Sandiego Adventures in Math: The Big Ben Burglary W3BE = Soccer Bashi W3BP = Soccer Bashi W3DJ = 3° C W3FE = 3D Pixel Racing W3FP = 3D Pixel Racing W3GD = Phoenix Wright Ace Attorney 3: Trials And Tribulations W3GE = Phoenix Wright Ace Attorney: Trials and Tribulations W3GI = Phoenix Wright: Ace Attorney - Trials and Tribulations W3GJ = Gyakuten Saiban 3 W3GP = Phoenix Wright Ace Attorney: Trials and Tribulations W3JE = Triple Jumping Sports W3KE = ThruSpace W3KJ = Surinuke Anatousu W3KP = ThruSpace: High Velocity 3D Puzzle W3LE = Carmen Sandiego Adventures in Math: The Lady Liberty Larceny W3ME = The Three Musketeers: One for all W3MP = The Three Musketeers: One for all W3PE = Triple Throwing Sports W3RE = Triple Running Sports W3SE = Triple Shot Sports W3TE = Pearl Harbor Trilogy - 1941: Red Sun Rising W3TP = Pearl Harbor Trilogy 1941: Red Sun Rising W42J = Fortune: Hoshi no Furisosogu Oka W44E = Stop Stress: A Day of Fury W44P = Stop Stress: A Day of Fury W48E = ShadowPlay W4AE = Arcade Sports W4AP = Arcade Sports: Air Hockey, Bowling, Pool, Snooker W4KE = Deer Captor W4KJ = Shikagari W4OJ = Shikakui Atama wo Marukusuru Challenge W4TE = Spaceball Revolution W4TP = Spaceball Revolution W54E = 5 Spots Party W54P = 5 Spots Party W5AE = 5 Arcade Gems W5AP = 5 Arcade Gems W5IE = 5 in 1 Solitaire W6BE = Eco Shooter: Plant 530 W6BJ = 530 Eco Shooter W6BP = Eco-Shooter: Plant 530 W72P = Successfully Learning German Year 3 W73P = Successfully Learning German Year 4 W74P = Successfully Learning German Year 5 W7IP = Successfully Learning German Year 2 W82J = Jintori Action Taikokenchi Karakuri Shiro no Nazo W8BP = Babel Rising W8CE = Bit.Trip Core W8CJ = BIT.TRIP CORE: Rhythm Seijin no Gyakushuu W8CP = Bit.Trip Core W8DJ = Mebius Drive W8IJ = Hachi-One Diver Wii W8LE = Balloon Pop Festival W8PJ = Ouchi de Mugen Puchi Puchi Wii W8WE = Happy Holidays: Halloween W8WP = Happy Holidays: Halloween W8XE = Battle Poker W9BE = Big Town Shoot Out W9BP = Big Town Shoot W9IE = Evasive Space W9IJ = Kiken Kuuiki W9LE = Christmas Clix W9RE = Happy Holidays: Christmas W9RP = Happy Holidays: Christmas W9UE = Cruise Party W9UP = Cruise Party WA2E = Magnetica Twist WA2J = Minna de Puzzloop WA2P = Actionloop Twist WA4E = WarioWare: D.I.Y. Showcase WA4J = WarioWare: D.I.Y. Showcase WA4P = WarioWare: Do It Yourself – Showcase WA5E = Carmen Sandiego Adventures in Math: The Island of Diamonds WA7E = Toribash WA7P = Toribash Violence Perfected WA8E = Art Style: Rotozoa WA8J = Art Style: Penta Tentacles WA8P = Art Style: Penta Tentacles WAAE = Aya and the Cubes of Light WAAP = Aya and the Cubes of Light WABE = Art of Balance WABP = Art of Balance WACE = Arcade Essentials WACP = Arcade Essentials WAEE = Around The World WAEP = Around the world WAFE = Airport Mania: First Flight WAFP = Airport Mania: First Flight WAGE = Pinocchio's Puzzle WAHE = Trenches Generals WAHP = Trenches: Generals WAIE = 101-in-1 Explosive Megamix WAIP = 101-in-1 Explosive Megamix WAJE = MotoHeroz WAJP = MotoHeroz WAKE = Carmen Sandiego Adventures in Math: The Case of the Crumbling Cathedral WALE = Art Style: Light Trax WALJ = Art Style: Lightstream WALP = Art Style: light trax WAME = Carmen Sandiego Adventures in Math: The Great Gateway Grab WANE = Ant Nation WANP = Ant Nation WAOE = The Very Hungry Caterpillar's ABCs WAOJ = Harapeko Aomushi no ABC WAOP = The Very Hungry Caterpillar´s ABC WAQJ = Yakuman Wii: Ide Yousuke no Kenkou Mahjong WARE01 = DU Super Wario Bros. WARJ = Tsuushin Taikyoku Igo Doujou 2700 Mon WASJ = Tsuushin Taikyoku: Hayazashi Syogi Sandan WATE = Astro Bugz Revenge WAUJ = Tsushin Taikyoku: World Chess WAYE = And Yet It Moves WAYP = And Yet It Moves WAZE = The Amazing Brain Train WB2E = Strong Bad Episode 4: Dangeresque 3 WB2P = Strong Bad Episode 4: Dangeresque 3 WB3E = Strong Bad Episode 5: 8-bit is Enough WB3P = Strong Bad Episode 5: 8-bit is Enough WB4E = Wild West Guns WB4J = Wild West Guns WB4P = Wild West Guns WB5E = Block Breaker Deluxe WB5J = Block Breaker Deluxe WB5P = Block Breaker Deluxe WB6E = TV Show King WB6J = TV Show King WB6P = TV Show King WB7E = Midnight Pool WB7J = Hamaru Billiards WB7P = Midnight Pool WB8E = Midnight Bowling WB8J = Hamaru Bowling WB8P = Midnight Bowling WBAJ = Bakutan WBBE = Snowboard Riot WBBJ = Board Warriors WBBP = Snowboard Riot WBDE = Brain Drain WBDP = Brain Drain WBEE = Pong Toss: Frat Party Games WBEP = Beer Pong: Frat Party Games WBFE = Bit.Trip Fate WBFP = Bit.Trip Fate WBGP = Bang Attack WBHE = Blood Beach WBHP = Blood Beach WBIE = Boingz WBJE = Harvest Moon: My Little Shop WBJJ = Bokujou Monogatari Series: Makiba no Omise WBKE = Arkanoid Plus! WBKJ = Arkanoid Plus! WBKP = Arkanoid Plus! WBLE = Bubble Bobble Plus! WBLJ = Bubble Bobble Wii WBLP = Bubble Bobble Plus! WBME = My Pokémon Ranch WBMJ = Minna no Pokémon Bokujou WBMP = My Pokémon Ranch WBNE = Bonsai Barber WBNJ = Bonsai Barber WBNP = Bonsai Barber WBOE = Gravitronix WBPE = PLÄTTCHEN twist 'n' paint WBPP = PLÄTTCHEN - twist 'n' paint WBQE = Star Soldier R WBQJ = Star Soldier R WBQP = Star Soldier R WBRP = Pirates: The Key of Dreams WBSE = Pop WBSJ = Pop WBSP = Pop WBTJ = Fantasic Tambourine WBVE = SPOGS Racing WBVP = SPOGS Racing WBWE = Critter Round-Up WBWJ = Saku Saku Animal Panic WBWP = Critter Round-Up WBXE = Strong Bad Episode 1: Homestar Ruiner WBXP = Strong Bad Episode 1: Homestar Ruiner WBYE = Strong Bad Episode 2: Strong Badia - The Free WBYP = Strong Bad Episode 2: Strong Badia - The Free WBZE = Strong Bad Episode 3: Baddest of the Bands WBZP = Strong Bad Episode 3: Baddest of the Bands WC2E = Crystal Defenders R2 WC2J = Crystal Defenders R2 WC2P = Crystal Defenders R2 WC6E = Chronos Twins DX WC6P = Chronos Twins DX WC8J = Line Attack Heroes WCHE = Chess Challenge! WCHP = Chess Challenge WCIE = Crystal Defenders R1 WCIJ = Crystal Defenders R1 WCIP = Crystal Defenders R1 WCJE = Cocoto Platform Jumper WCJP = Cocoto: Platform Jumper WCKE = chick chick BOOM WCKJ = chick chick BOOM WCKP = chick chick BOOM WCLE = Doc Clock: The Toasted Sandwich of Time WCNJ = Tokyo City Nights WCOE = Cocoto Fishing Master WCOP = Cocoto Fishing Master WCPE = Copter Crisis WCPP = Copter Crisis WCRE = Carnival King WCSE = CueSports: Pool Revolution WCSJ = Cue Sports: Wi-Fi Taisen Billiards WCSP = CueSports: Snooker vs Billiards WCUE = 3-2-1, Rattle Battle! WCUJ = Atsui 12-Game: FuriFuri Party! WCUP = 3-2-1, Rattle Battle! WCVE = Cave Story WCVP = Cave Story WCZE = ColorZ WCZJ = ColorZ WCZP = ColorZ WD2J = Simple Wii Series Vol. 2: The Number Puzzle Neo WD9E = Castlevania The Adventure ReBirth WD9J = Dracula Densetsu ReBirth WD9P = Castlevania: The Adventure ReBirth WDAJ = Darts Wii WDBE = Derby Dogs WDBJ = Dirby Dog WDDE = Diner Dash WDDJ = Diner Dash WDDP = Diner Dash WDEE = Magic Destiny Astrological Games WDEP = Magic Destiny Astrological Games WDFE = Defend your Castle WDFP = Defend your Castle WDHE = Art Style: ROTOHEX WDHJ = Art Style: Dialhex WDHP = Art Style: ROTOHEX WDIJ = Simple Wii Series Vol. 1: The Block Kuzushi Neo WDKE = Dart Rage WDME = Dr. Mario Online RX WDMJ = Dr. Mario & Saikin Bokumetsu WDMP = Dr. Mario & Germ Buster WDNJ = Discipline Teikoku no Tanjyou WDOE = Driift Mania WDOP = Driift Mania WDPE = Dr. Mario Online Rx (Friend Battle Demo) WDPJ = Dr. Mario Online Rx (Friend Battle Demo) WDPP = Dr. Mario & Germ Buster (Friend Battle Demo) WDRE = Mr Driller W WDRJ = Mr. Driller World WDRP = Mr. Driller W WDSE = Dragon Master Spell Caster WDSP = Dragon Master Spell Caster WDVE = Voodoo Dice WDVP = Voodoo Dice WDXE = Diatomic WE6E = My Dolphin WE6J = Sea Farm: Iruka to Watashi no Showtime WE9E = Alien Crush Returns WE9J = Alien Crush Returns WE9P = Alien Crush Returns WEDE = Eduardo the Samurai Toaster WEME = Aha! I Got It! Escape Game WEMJ = 1 Nuke! Dasshutsu Game * My Home Hen WEMP = Aha! I Got It! Escape Game WENE = TNT Racers WENP = TNT Racers WEQE = Equilibrio WEQJ = Katamuki Spirits WEQP = Equilibrio WERE = My Aquarium WERJ = Blue Oasis: The Healing Space of Fish WERP = My Aquarium WETE = PictureBook Games: Pop-Up Pursuit WETJ = Asoberu Ehon: Tobida Sugoroku WETP = PictureBook Games: A Pop-Up Adventure WEVE = Viral Survival WEVJ = Peakvox Escape Virus WEVP = Viral Survival WF2E = Final Fantasy Crystal Chronicles: My Life as a Darklord WF2J = Final Fantasy Crystal Chronicles: Hikari to Yami no Himegimi to Sekai Seifuku no Tou WF2P = Final Fantasy Crystal Chronicles: My Life as a Darklord WF3E = Family Games - Pen & Paper Edition WF4E = Final Fantasy IV: The After Years WF4J = Final Fantasy IV: The After Years - Tsuki no Kikan WF4P = Final Fantasy IV: The After Years WF5E = Family Card Games WF5J = Okiraku Daifugou Wii WF5P = Family Card Games WF6E = Frobot WFAE = Fast Draw Showdown WFAP = Fast Draw Showdown WFBE = Sandy Beach WFBJ = Beach e Oki o Tsukuccha Wow! WFBP = Sandy Beach WFCE = Final Fantasy Crystal Chronicles: My Life as a King WFCJ = Final Fantasy Crystal Chronicles: Chiisana Ousama to Yakusoku no Kuni WFCP = Final Fantasy Crystal Chronicles: My Life as a King WFDE = Save the Furries WFEE = Fenimore Fillmore "The Westerner" WFFE = Fun! Fun! Minigolf WFFF4I = Fatal Frame 4: Mask of the Lunar Eclipse WFFJ = Fun! Fun! Minigolf WFFP = Fun! Fun! Minigolf WFGE = Frogger Returns WFGJ = Frogger Returns WFGP = Frogger Returns WFHE = Flight Control WFHP = Flight Control WFIE = Reel Fishing Challenge WFIJ = Fish Eyes Challenge WFIP = Reel Fishing Challenge WFKE = Family Go-Kart Racing WFKJ = Okiraku Kart Wii WFLE = Fluidity WFLP = Hydroventure WFME = Family & Friends Party WFMP = Family & Friends Party WFNE = Fish Tank WFNP = Fish Tank WFPJ = Hirameki Card Battle Mekuruca WFQP = Frogger: Hyper Arcade Edition WFSJ = Minna no Theater Wii WFTE = Fish 'em All WFTP = Fish'em All! WFUE = Furry Legends WFUP = Furry Legends WFVE = Soccer Up WFVP = Football Up WFWE = Flower Works WFWP = Flowerworks: Follie's Adventure WFXE = Cosy Fire WFXP = Cosy Fire WFYE = Family Games Pen & Paper Edition WFYP = Family Games Pen & Paper Edition WG2J = Sugar Bunnies Wii: Youkoso * Bunnies Field e WG4E = GhostSlayer WGAE = Ghost Mania WGAP = Ghost Mania WGDE = Gradius Rebirth WGDJ = Gradius Rebirth: Updated WGDP = Gradius Rebirth WGFP = Girlfriends Forever: Magic Skate WGGE = Gabrielle's Ghostly Groove: Monster Mix WGGJ = Ushimitsu Monstruo Puchi: Fushigi na Oshiro no Dance Party WGGP = Gabrielle's Ghostly Groove: Monster Mix WGLE = Gene Labs WGMJ = Game SoundStation WGOE = World of Goo WGOJ = World of Goo WGOP = World of Goo WGPE = AquaSpace WGPJ = Aqua Living: TV de Nagameru Uotachi WGPP = Zenquaria: Virtual Aquarium WGSD = Phoenix Wright: Ace Attorney (Deutsche Version) WGSE = Phoenix Wright: Ace Attorney WGSF = Phoenix Wright: Ace Attorney (French Version) WGSI = Phoenix Wright: Ace Attorney WGSJ = Gyakuten Saiban: Yomigaeru Gyakuten WGSP = Phoenix Wright: Ace Attorney WGTJ = Sekai no Omoshiro Party Game WGUJ = Aero Guitar WGVE = Groovin' Blocks WGYE = Gyrostarr WH3E = Home Sweet Home WH3P = Home Sweet Home WHBE = Hubert the Teddy Bear: Winter Games WHEE = Heracles: Chariot Racing WHEP = Heracles: Chariot Racing WHFE = Heavy Fire: Special Operations WHFP = Heavy Fire: Special Operations WHHJ = Let's Zenryoku Hitchhike!!!!!!!!! WHMP51 = New Super Mario Bros. Wii: The Ultimate Wii-Homebrew.com Edition WHOE = Hockey Allstar Shootout WHPE = Sexy Poker WHPP = Sexy Poker WHRE = Heron Steam Machine WHRP = Heron: Steam Machine WHUE = Ghost Mansion Party WHUJ = Ghost Mansion Party WHUP = Ghost Mansion Party WHVE = High Voltage: Hot Rod Show WHWE = HoopWorld WHWP = HoopWorld: BasketBrawl WHXE = Helix WHXP = Helix WHYE = Heavy Fire: Black Arms WHZE = Horizon Riders WIBE = bittos+ WICE = NyxQuest Kindred Spirits WICJ = NyxQuest WICP = NyxQuest: Kindred Spirits WIDE = Dracula: Undead Awakening WIDP = Dracula: Undead Awakening WIEE = Tales of Monkey Island: Chapter 3 - Lair of the Leviathan WIEP = Tales of Monkey Island Chapter 3: Lair of the Leviathan WIGE = Incoming WIHE = Play with Birds WIKJ = Ivy the Kiwi? Mini WILE = Tales of Monkey Island: Chapter 1 - Launch of the Screaming Narwhal WILP = Tales of Monkey Island Chapter 1: Launch of the Screaming Narwhal WIMC = WiiMC WINE = The Incredible Maze WINJ = Chokkan! Balance * Labyrinth WINP = The Incredible Maze WIRE = Tales of Monkey Island: Chapter 5 - Rise of the Pirate God WIRP = Tales of Monkey Island Chapter 5: Rise Of The Pirate God WISE = Tales of Monkey Island: Chapter 2 - The Seige of Spinner Cay WISP = Tales of Monkey Island Chapter 2: Siege Of Spinner Cay WITE = Aha! I Found It! Hidden Object Game WITJ = Aa! Mitsuketa! Item Sagashi Game WITP = Aha! I Found It! Hidden Object Game WIUE = Inkub WIVE = Space Invaders Get Even WIVJ = Space Invaders Get Even WIVP = Space Invaders Get Even WIYE = Tales of Monkey Island: Chapter 4 - The Trial and Execution of Guybrush Threepwood WIYP = Tales of Monkey Island Chapter 4: The Trial and Execution of Guybrush Threepwood WJ2J = Jinsei Game: Happy Step WJAE = Jam City Rollergirls WJAP = Jam City Rollergirls WJCE = JellyCar 2 WJEE = Jett Rocket WJEP = Jett Rocket WJFE = Gnomz WJFP = Gnomz WJGJ = Jinsei Game WJKE = Jewel Keepers Easter Island WJKP = Jewel Keepers: Easter Island WJPJ = Janken Party Paradise WJSE = Jungle Speed WJSP = Jungle Speed WJWE = Bejeweled 2 WJWP = Bejeweled 2 WK2J = Kappa-kun to Asobou: Kappa-kun to Ota no Shimikai WK3J = Kappa-kun to Asobou: Kappa-kun to Mori no Nakamatachi WK9J = Minna de Asobou Koinu de Kururin WKBE = You, Me, and the Cubes WKBJ = Kimi to Boku to Rittai WKBP = You, Me and the Cubes WKCE = Kyotokei WKCP = Kyotokei WKDE = Pirates: The Key of Dreams WKEJ = RakuRaku Kinen Apori Wii: Kinenka no Isha ga Osheru Nanoka de yameru Houhou WKFE = Kung Fu Funk: Everybody is Kung Fu Fighting! WKFP = Kung Fu Funk: Everybody Is Kung Fu Fighting WKHE = Big Kahuna Party WKIE = The Mystery of Whiterock Castle WKIP = The Mystery of Whiterock Castle WKKE = Party Fun Pirate WKKJ = Kurohige Kiki Ippatsu WKKP = Pop-Up Pirates! WKNJ = Kanken Minna de Waiwai Kanji Nou WKPJ = Kappa Kun to Mori no Nakama Tachi WKQJ = Kentei! TV Wii Minna de Gotouchi Quiz Battle WKRP = Karate Phants: Gloves of Glory WKTE = Contra Rebirth WKTJ = Contra ReBirth WKTP = Contra ReBirth WKUJ = Downtown Nekketsu Dodgeball WKWE = Adventure on Lost Island: Hidden Object Game WKWJ = Item Sagashi * Yousei to Fushigi no Shima WKWP = Adventure on LOST ISLAND: Hidden Object Game WL2E = Target Toss Pro: Lawn Darts WL5E = HB Arcade Disc Golf WL9E = Let's Create! Pottery WLCE = Bingo Party Deluxe WLCJ = Wai Wai Bingo Deluxe WLCP = Bingo Party Deluxe WLDJ = Boku mo Sekai o Sukuitai: Battle Tournament WLEE = Leren met de PooYoo's: Aflevering 1 WLEJ = Pooyoo to Asobou Episode 1 WLEP = Leren met de PooYoo's: Aflevering 1 WLGE = HB Arcade Cards WLIE = Liight WLJJ = Boku mo Sekai o Sukuitai: Battle Tournament WLKJ = Okiraku Tennis SP WLLE = Little Tournament Over Yonder WLLP = Little Tournament Over Yonder WLME = La-Mulana WLMJ = La Mulana WLMP = La-Mulana WLNE = Learning with the PooYoos: Episode 2 WLNP = Leren met de PooYoo's: Aflevering 2 WLOE = LostWinds: Winter of the Melodias WLOJ = LostWinds: Winter of the Melodias WLOP = LostWinds: Winter of the Melodias WLPE = Lonpos WLPJ = Lonpos WLPP = Lonpos WLTE = LIT WLTJ = School of Darkness WLTP = LIT WLWE = LostWinds WLWJ = LostWinds WLWP = LostWinds WLXJ = Phalanx WLZE = lilt line WLZP = lilt line WM2E = My Little Baby WM2P = My Little Baby WM3E = Manic Monkey Mayhem WM3P = Manic Monkey Mayhem WM4E = Mix Superstar WM4P = Mix Superstar WM5E = MDK2 WM7E = Anima Ark of Sinners WM7P = Anima Ark of Sinners WM8E = Bomberman Blast WM8J = Wi-Fi 8-Nin Battle Bomberman WM8P = Bomberman Blast WM9E = Happy Hammerin WM9J = Tataite Mogupon WM9P = Happy Hammerin' WMAE = Magnetis WMAP = Magnetis WMBE = MaBoShi's Arcade WMBJ = Katachi no Game: Marubou Shikaku WMBP = MaBoShi: The Three Shape Arcade WMCE = Monsteca Corral: Monsters vs. Robots WMCP = Monsteca Corral: Monsters Vs. Robots WMDE = Madstone WMGE = Mart Racer WMHE = Mouse House WMJE = Dive: The Medes Islands Secret WMJP = Dive: The Medes Islands Secret WMKE = Lead the Meerkats WMKP = Lead the Meerkats WMLE = Major League Eating: The Game WMLJ = Major League Eating: The Game WMME = Muscle March WMMJ = Muscle Koushinkyoku WMMP = Muscle March WMOE = Moki Moki WMOJ = Antaga Mawashite Sukuu Puzzle: Mochimochi Q WMOP = Moki Moki WMRE = Monochrome Racing WMRP = Monochrome Racing WMSE = Enjoy your massage! WMSP = Enjoy your massage! WMWP = Miffy's World WMXE = Max & The Magic Marker WMXJ = Max & the Magic Marker WMXP = Max & the Magic Marker WMZP = Mahjong WN9E = Military Madness: Nectaris WN9J = Nectaris WN9P = Military Madness: Nectaris WNAP = Back to Nature WNEE = Penguins & Friends Hey! That's My Fish! WNEP = Penguins & Friends Hey! That’s my Fish! WNGE = Bang Attack WNKE = Niki - Rock 'n' Ball WNKP = Niki - Rock 'n' Ball WNPJ = Sugusuro Duo: New Pulsar R & V WNSE = Newton Vs The Horde WNVE = Neves Plus WNVJ = Neves Plus WNVP = Neves Plus: Phantheon of Tangrams WNWJ = Hamekomi Lucky Puzzle Wii Return WO6E = Family Pirate Party WO6J = Okiraku Sugoroku Wii WO6P = Family Pirate Party WOAE = Family Glide Hockey WOAJ = Okiraku Air Hockey Wii WOAP = Family Glide Hockey WOBE = Art Style: ORBIENT WOBJ = Art Style: Orbital WOBP = Art Style: ORBIENT WODJ = Ouudaa! WOEJ = Oekaki Logic WOFE = Overflow WOGE = Family Mini Golf WOGJ = Okiraku Putter Golf Wii WOGP = Family Mini Golf WOKE = Karaoke Joysound WOKJ = Karaoke Joysound Wii WOLJ = Othello WOMJ = Sekai no Omoshiro Party Game 2 WOPE = Word Searcher Deluxe WOSE = Family Slot Car Racing WOSJ = Okiraku Slot Car Racing Wii WOSP = Family Slot Car Racing WOTE = Overturn WOTJ = Overturn WOTP = Overturn: Mecha Wars WOXJ = Osu! Exercise Dojo WOYE = Bit Boy!! WOYJ = Bit Man WOYP = Bit Boy!! WOZJ = Kodomo Kyouiku Telebi Wii: Aiue-Oumuzu WP2E = Potpourrii WP2P = Potpourrii WP4E = Learning with the PooYoos: Episode 3 WP4P = Learning with the PooYoos: Episode 3 WP5J = Pokosuka Racing WP6J = Boku wa Plarail Untenshi: Shinkansen Joukikikansha-Hen WP7E = My Planetarium WP7J = Planetarium WP7P = My Starry Night WP9J = Po-Ka-Zu Wii WPAJ = Pokémon Fushigi no Dungeon: Susume! Honoo no Boukendan WPBE = Pub Darts WPBP = Pub Darts WPCE = Doc Louis's Punch-Out!! WPDJ = Chindouchuu!! Pole no Daibouken WPFJ = Pokémon Fushigi no Dungeon: Ikuzo! Arashi no Boukendan WPGE = Snowpack Park WPGJ = Penguin Life WPHJ = Pokémon Fushigi no Dungeon: Mesaze! Hikari no Boukendan WPIE = Pit Crew Panic! WPIJ = Pit Crew Panic WPIP = Pit Crew Panic! WPJE = Pucca's Kisses Game WPJP = Pucca's Kisses Game WPKE = Texas Hold'Em Poker WPKP = Texas Hold'Em Poker WPLE = Planet Pachinko WPNJ = Ponjan WPOJ = Popple to Mahou no Crayon WPPE = Family Table Tennis WPPJ = Okiraku Ping Pong WPPP = Family Table Tennis WPQE = Protöthea WPQP = Protöthea WPRE = Art Style: Cubello WPRJ = Art Style: Cubeleo WPRP = Art Style: CUBELLO WPSE = Pokémon Rumble WPSJ = Ransen Pokémon Scramble WPSP = Pokémon Rumble WPTJ = Fantasic Cube WPUE = Bust-A-Move Plus! WPUJ = Puzzle Bobble Wii WPUP = Puzzle Bobble Plus! WPVE = The Tales of Bearsworth Manor: Chaotic Conflicts WPVJ = Kumanage Battle-Hen: Kiina no Kirai na Aoi Hoseki WPVP = The Tales of Bearsworth Manor: Chaotic Conflicts WPWE = Pong Toss Pro - Frat Party Games WPXJ = Minna de Tobikome Penguin Diving Hooper Looper WPYE = Pallurikio WPYP = Pallurikio WPZE = Bruiser & Scratch WQ4J = Kentoushi FuriFuri Boxing WR2E = Rabbids Lab WR2P = Rabbids Lab WR4P = Rush Rush Rally Racing WR5E = Retro City Rampage WR9E = Mega Man 9 WR9J = RockMan 9: Yabou no Fukkatsu! WR9P = Mega Man 9 WRBE = Robocalypse - Beaver Defense WRBP = Robocalypse - Beaver Defense WRDE = Word Searcher WRDP = Word Searcher WREE = Racers' Islands - Crazy Arenas WREP = Racers Islands Crazy Arenas WRFE = Reel Fishing Challenge II WRFP = Reel Fishing Challenge II WRGE = Rage of the Gladiator WRGP = Rage of the Gladiator WRIE = Rainbow Islands: Towering Adventure! WRIJ = Rainbow Islands: Towering Adventure! WRIP = Rainbow Islands: Towering Adventure! WRJE = Racers' Islands - Crazy Racers WRJP = Racers Islands - Crazy Racers WRLE = FAST Racing League WRLP = FAST Racing League WRNJ = BIT.TRIP RUNNER WRPE = Burn the Rope WRQE = Deer Drive Legends WRQP = Deer Drive Legends WRRE = Robin Hood: The Return of Richard WRRP = Robin Hood: The Return Of Richard WRSE = Step Up WRTE = Robox WRUE = BIT.TRIP RUNNER WRUP = Bit.Trip Runner WRXE = Mega Man 10 WRXJ = RockMan 10 WRXP = Mega Man 10 WRYE = Robox WRYP = Robox WS2J = Saikyou Ginsei Igo WS3E = Silver Star: Chess WS3J = Saikyou Ginsei Chess WS4J = Saikyou Ginsei Mahjong WS5J = Saikyou Ginsei Gomoku Narabe WS6E = Silver Star: Reversi WS6J = Saikyou Ginsei Reversi WS7E = Fantasy Slots: Adventure Slots and Games WS8J = Minna de Taisen Puzzle Shanghai WS9E = Sudoku Challenge! WS9P = Sudoku Challenge! WSAE = Onslaught WSAJ = MadSecta WSAP = Onslaught WSBJ = Sorcery Blade WSCJ = Out of Galaxy: Gin no Koshika WSEJ = Princess Ai Monogatari WSGE = Pop 'Em Drop 'Em Samegame WSGJ = Same Game Wii WSGP = Pop Them, Drop Them SAMEGAME WSHE = Stonekeep: Bones of the Ancestors WSIJ = Saikyou Ginsei Shogi WSJE = Spot The Differences! WSJP = Spot the Differences! WSLE = The Magic Obelisk WSLJ = Shadow Walker WSME = Eat! Fat! FIGHT! WSMJ = Tsuppari Oozumou Wii Heya WSMP = Eat! Fat! FIGHT! WSNE = Sonic The Hedgehog 4 Episode I WSNJ = Sonic the Hedgehog 4: Episode I WSNP = Sonic The Hedgehog 4 Episode I WSRE = Space Trek WSSP = Solitaire WSTJ = Tenshi no Solitaire WSUE = Shootanto: Evolutionary Mayhem WSUJ = Shootanto: Kakohen WSUP = Shootanto: Evolutionary Mayhem WSWE = Swords & Soldiers WSWP = Swords & Soldiers WSXE = Stunt Cars WSXP = Stunt Cars WSYE = Snail Mail WSZE = Sneezies WSZP = Sneezies WT2E = Target Toss: Pro Bags WT3E = Tomena Sanner WT3J = Tomena Sanner Wii WT3P = Tomena Sanner WT8J = Hajite! Block Rush WTBJ = Fantasic Tambourine WTDJ = Tomica Drive WTEE = Tales of Elastic Boy: Mission 1 WTEP = Tales of Elastic Boy Mission 1 WTFE = Bit.Trip: Flux WTFP = Bit.Trip Flux WTHJ = Kaku! Ugoku! Tsukamaeru! Sensei Wii WTIE = Tiki Towers WTKE = TV Show King 2 WTKP = TV Show King 2 WTME = Adventure Island: The Beginning WTMJ = Takahashi Meijin no Bouken Jima Wii WTMP = Adventure Island: The Beginning WTNE = Family Tennis WTNJ = Okiraku Tennis Wii WTPE = Tetris Party WTPJ = Tetris Party WTPP = Tetris Party WTRE = Bit.Trip Beat WTRJ = BIT.TRIP BEAT WTRP = Bit.Trip Beat WTTE = Toki Tori WTTP = Toki Tori WTUE = Tumblebugs 2 WTWP = Fenimore Fillmore: The Westerner WTXE = Texas Hold’em Tournament WTXP = Texas Hold’em Tournament WU2P = Successfully Learning Mathematics Year 3 WU3P = Successfully Learning Mathematics Year 4 WU4P = Successfully Learning Mathematics Year 5 WUBE = Ubongo WUBP = Ubongo WUFE = Drop Zone: Under Fire WUHE = Grill-Off with Ultra Hand! WUIP = Successfully Learning Mathematics Year 2 WUKJ = Unou Kids Okigaru Unou Training WUNE = Uno WUNJ = Uno WUNP = Uno WURE = Urbanix WURP = Urbanix WVBE = Bit.Trip: Void WVBJ = BIT.TRIP VOID WVBP = Bit.Trip Void WVCE = V.I.P. Casino: Blackjack WVDJ = Kodomo Kyouiku TV Wii: Aiue-O-Chan WVFE = Bobby Carrot Forever WVFP = Bobby Carrot Forever WVIE = Violin Paradise WVKE = Water Warfare WVKJ = Bang Bang Kids WVKP = Water Warfare WVOE = Rock N' Roll Climber WVOJ = Rock n' Roll Climber WVOP = Rock'n Roll Climber WVQE = Vampire Crystals WVQP = Vampire Crystals WVSE = Gods Vs Humans WVSP = Gods Vs Humans WVUP = Mr Bumblebee Racing Champion WW2P = Where's Wally? Fantastic Journey 2 WW3P = Where's Wally? Fantastic Journey 3 WWAE = Warmen Tactics WWIP = Where's Wally? Fantastic Journey 1 WWLP = The Will of Dr. Frankenstein WWRE = Excitebike World Rally WWRJ = Excitebike: World Race WWRP = Excitebike: World Challenge WWTE = BurgerTime World Tour WWTP = BurgerTime World Tour WWXE = Paper Wars: Cannon Fodder WWXP = Paper Wars Cannon Fodder WXBE = Ben 10: Alien Force - The Rise of Hex WXBP = Ben 10: Alien Force - The Rise of Hex WXME = Xmas Puzzle WXPE = Paint Splash! WXPP = Paint Splash WXRE = Reel Fishing Ocean Challenge WYIE = escapeVektor: Chapter 1 WYIP = escapeVektor: Chapter 1 WYKJ = Yomi Kiku Asobi WYME = Yummy Yummy Cooking Jam WYMP = Yummy Yummy Cooking Jam WYSE = Yard Sale Hidden Treasures: Sunnyville WYSP = Yard Sale Hidden Treasures Sunnyville WZAE = Zombii Attack WZBP = Cricket Challenge WZGE = Zoo Disc Golf WZHE = My Zoo WZHJ = Animal Life: Doubutsu Fureai Seikatsu WZHP = My Zoo WZIE = Rubik's Puzzle Galaxy RUSH WZIP = Rubik's Puzzle Galaxy: RUSH WZJJ = Simple Series Vol. 5: The Judo WZMJ = Simple Wii Series Vol. 3: The Mahjong WZPE = Zombie Panic in Wonderland WZPJ = Zombie in Wonderland WZPP = Zombie Panic in Wonderland WZZE = The Tales of Bearsworth Manor: Puzzling Pages WZZJ = Kumanage Puzzle-Hen: Piina no Suki na Akai Candy WZZP = The Tales of Bearsworth Manor: Puzzling Pages XAAJ = Eggy XABJ = Aleste XADJ = Yie Ar Kung 2 XAEJ = Space Manbow XAFJ = Metal Gear XAGJ = Road Fighter XAHJ = Penguin Adventure: Yume Tairiku Adventure XAIJ = Quarth XAKJ = Parodius - Tako wa Chikyuu wo Sukuu XALJ = Contra XAMJ = Knightmare: Majou Densetsu XANJ = Parodius 2 XAOJ = Gofer no Yabou: Episode II XAPJ = Metal Gear 2: Solid Snake XAQJ = Salamander XBKE52 = Guitar Hero III Custom : Bullet For Kamelot XH2E = Cave Story (Demo) XH2P = Cave Story (Demo) XH3E = Frobot (Demo) XH4E = Max and the Magic Marker (Demo) XH5E = Ayim And Yet It Moves Demo XH6E = Robox (Demo) XH6P = Robox (Demo) XH7E = Lit (Demo) XH7P = Lit (Demo) XH8E = Lead the Meerkats (Demo) XH8P = Lead the Meerkats (Demo) XHAE = Pokemon Rumble (Demo) XHAP = Pokemon Rumble (Demo) XHCE = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHCJ = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHDE = NyxQuest: Kindred Spirits (Demo) XHDP = NyxQuest: Kindred Spirits (Demo) XHEE = BIT.TRIP BEAT (Demo) XHEJ = BIT.TRIP BEAT (Demo) XHEP = BIT.TRIP BEAT (Demo) XHFE = World of Goo (Demo) XHFP = World of Goo (Demo) XHIE = Fluidity (Demo) XHIP = Hydroventure (Demo) XHJE = Thruspace (Demo) XHJP = Thruspace (Demo) XHKE = Dive: The Medes Island Secret (Demo) XHKP = Dive: The Medes Secret Island (Demo) XHLE = Jett Rocket (Demo) XHLP = Jett Rocket (Demo) XHME = Art of Balance (Demo) XHMP = Art of Balance (Demo) XHQE = Zombie Panic (Demo) XHQP = Zombie Panic (Demo) XHRE = Furry Legends (Demo) XHRP = Furry Legends (Demo) XHVE = BIT.TRIP CORE (Demo) XHVP = BIT.TRIP CORE (Demo) XHWE = BIT.TRIP VOID (Demo) XHWP = BIT.TRIP VOID (Demo) XHXE = BIT.TRIP RUNNER (Demo) XHXP = BIT.TRIP RUNNER (Demo) XHZE = Chronos Twins DX (Demo) XHZP = Chronos Twins DX (Demo) XI2E = Kyotokei (Demo) XI2P = Kyotokei (Demo) XI7E = Liight (Demo) XI8E = Jam City (Demo) XI8P = Jam City (Demo) XIAE = Lilt Line (Demo) XIAP = Lilt Line (Demo) XIBE = Fish em All (Demo) XIBP = Fish em All Demo XICE = Gods vs Humans Demo XICP = Gods vs Humans Demo XIDE = Racers Islands Crazy Racers Demo XIDP = Racers Islands Crazy Racers Demo XIEE = chick chick BOOM Demo XIEP = chick chick BOOM Demo XIGE = Urbanix Demo XIGP = Urbanix Demo XIHE = Gladiator Demo XIHP = Gladiator Demo XIJE = Fast Racing League Demo XIJP = Fast Racing League Demo XIKE = Monsteca Corral Demo XIKP = Monsteca Corral Demo XINE = Learning with the Pooyoos Episode 1 Demo XINP = Learning with the Pooyoos Episode 1 Demo XIOE = Learning with the Pooyoos Episode 2 Demo XIOP = Learning with the Pooyoos Episode 2 Demo XIPE = Learning with the Pooyoos Episode 3 Demo XIPP = Learning with the Pooyoos Episode 3 Demo XIQE = Dart Rage Demo XIRE = Pong Toss Pro Demo XISE = BIT.TRIP FLUX Demo XISP = BIT.TRIP FLUX Demo XITE = Fast Draw Demo XITP = Fast Draw Demo XIUE = Soccer Bashi Demo XIUP = Soccer Bashi Demo XIVE = Mix Superstar Demo XIVP = Mix Superstar Demo XIZE = 3D Pixel Racing Demo XIZP = 3D Pixel Racing Demo XJEE = Aya and the Cubes of Light Demo XJEP = Aya and the Cubes of Light Demo XJGE = Gnomz Demo XJGP = Gnomz Demo XJHE = Paint Splash Demo XJIE = 2 Fast 4 Gnomz Demo XJSE = Karaoke Joysound (Demo) XJSP = Karaoke Joysound Wii (Demo) XNWE52 = Guitar Hero III Custom: Nightwish XXXX02 = Mario Kart Teknik ZXFP52 = Guitar Hero 3 Encore wit-2.31a/share/titles-ko.txt0000644000175000017500000107646312655737310016001 0ustar michaelmichael010E01 = Wii Backup Disc v1.31 301E01 = GameCube Service Disc AFRE01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 8. AMEE01 = New Super Mario Bros. Wii 11 American Revolution AMNE01 = Another Super Mario Bros. Wii AMOR04 = Guitar Hero III Custom : HARDcore APRP01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 2. APRP02 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 3. APRP03 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 6. APRP04 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 7. APRP06 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 5. APRP08 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 1. ASMB01 = Another Super Mario Bros. Wii BEPS01 = Guitar Hero III Custom : Rock n' Metal BOWE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh C3BE52 = Guitar Hero III Custom : Bossenator C3FP52 = Guitar Hero III Custom : Fonx #1 C3KE52 = Guitar Hero III Custom : Kyle Edition #1 C3ME52 = Guitar Hero III Custom : Modern Rock C3PP52 = Guitar Hero III Custom : Modern Pop & Rock C80E52 = Guitar Hero III Custom : Rocks the 80's C80P52 = Guitar Hero III Custom: GH I & 80's C93E = Last Ninja 2 C93P = The Last Ninja 2 C94E = Tower Toppler C94P = Nebulus C95P = Impossible Mission C96E = Summer Games II C96P = Summer Games 2 C97E = California Games C97P = California Games C98P = Paradroid C99P = Uridium C9EP = Winter Games C9GP = Mayhem in Monsterland C9HE = Boulder Dash C9HP = Boulder Dash C9IE = Cybernoid C9IP = Cybernoid C9ME = Pitstop II C9MJ = Pitstop Two C9MP = Pitstop II C9PP = The Last Ninja 3 C9QP = Jumpman C9RP = International Karate + C9SP = Impossible Mission II C9XE = The Last Ninja C9XJ = The Last Ninja C9XP = The Last Ninja C9YE = International Karate C9YJ = International Karate C9YP = International Karate C9ZP = World Games CANE52 = Guitar Hero Custom: NOT Aerosmith but... CCPE01 = Mario Kart Wii Custom: The Master Race CEMU69 = PunEmu CFEE52 = Guitar Hero III Custom : Michael Jackson CG1E52 = Guitar Hero III Custom : Guitar Hero CG1P52 = Guitar Hero III Custom: Guitar Hero I CG2E52 = Guitar Hero III Custom: Guitar Hero II CG2EFL = Guitar Hero III Custom : GH II CG2P52 = Guitar Hero III Custom : Guitar Hero II CG3ECS = Guitar Hero III Custom : ClasSick Edition CG3PCS = Guitar Hero III Custom : ClasSick Edition CGBE52 = Guitar Hero III Custom: Rock Band CGBP52 = Guitar Hero III Custom : Rock Band CGH370 = Guitar Hero III Custom : 70 New Song CGH3IM = Guitar Hero III Custom : Iron Maiden CGH3LM = Guitar Hero III Custom : Legend of Music CGH3ME = Guitar Hero III Custom : Metallica CGH3NE = Guitar Hero III Custom : Nostalgia Edition CGH3WD = Guitar Hero III Custom: WD Custom CGHCE1 = Guitar Hero III Custom : Edition Custom CGHE87 = Guitar Hero III Custom : Guitar Hero I CGHE88 = Guitar Hero III Custom : Guitar Hero II CGHE89 = GH3: Mario CGHE90 = GH3: South Park Edition CGHE91 = GH3: The Red Album CGHE92 = GH3: The Blue Album CGHE93 = GH3: Shake Rattle and Roll CGHE94 = Guitar Hero III Custom : Mars Needs Guitars CGHE95 = Guitar Hero III Custom : Rock Band CGHE96 = Guitar Hero III Custom: Rock'n'Roll Metal CGHE97 = GH3: I Fought The Law CGHE98 = GH3: Sweet Home Alabama CGHE99 = Guitar Hero III Custom : Rock The 80's CGHECB = Guitar Hero III Custom : CBT Edition CGHEDC = Guitar Hero III Custom : Downloadable Content Edition CGHEDM = Guitar Hero III Custom : DAVEMODE CGHEMC = Guitar Hero III Custom : My Chemical Romance CGHENC = Guitar Hero III Custom : NCustom CGHEPH = Guitar Hero III Custom : Puppetz Hero 2 CGHER2 = Guitar Hero III Custom : Rock Band 2 CGHERF = Guitar Hero III Custom : Rockfest 2010 CGHJ52 = Guitar Hero III Custom : Jumapa CGHKY2 = Guitar Hero III Custom : Kyle Edition #2 CGHPF2 = Guitar Hero III Custom : Fonx #2 CGHPF3 = Guitar Hero III Custom : Fonx #3 CGHPF4 = Guitar Hero III Custom : Fonx #4 CGHPF5 = Guitar Hero III Custom : Fonx #5 CGHPNT = Guitar Hero III Custom : Ntorrents Edition CGHRH2 = Guitar Hero III Custom : Rocks Hits Custom v2 CGHSKV = Guitar Hero III Custom : Starchildren & Kneos Version CGIE52 = Guitar Hero III Custom : Iron Maiden CGSP52 = Guitar Hero III Custom : Spanisk Custom by KuXu CGVECD = Guitar Hero Aerosmith Custom : AC/DC Edition CGVEM2 = Guitar Hero Aerosmith Custom : Mini Concerts Edition 2 CGVEMC = Guitar Hero Aerosmith Custom : Mini Concerts Edition CGVEUV = Guitar Hero Aerosmith Custom : Ultimate Video Game Hero CKBE88 = Mario Kart Wii Black CLAPSI = Sing IT: Clásicos CMDE52 = Guitar Hero III Custom: Megadeth CMKE01 = Mario Kart Wii Dragon Road CS0P00 = StarSing : Bollywood v2.0 CS0PZZ = StarSing : Pop Part. I v2.0 CS1P00 = StarSing : Country v2.0 CS1PZZ = StarSing : Pop Part. II v2.0 CS2P00 = StarSing : Placebo v2.0 CS2PZZ = StarSing : '80s Volume 1 v2.0 CS3P00 = StarSing : Volume 1 v2.0 CS3PZZ = StarSing : Anthems v2.0 CS4P00 = StarSing : NRJ Music Tour v2.0 CS4PZZ = StarSing : Legends v2.0 CS5P00 = StarSing : '70s v2.1 CS5PZZ = StarSing : Songs For My Jedi v1.0 CS6P00 = StarSing : Douce France v2.0 CS6PZZ = StarSing : Amped Part. I v2.0 CS7P00 = StarSing : Red Hot Chili Peppers v1.0 CS7PZZ = StarSing : Amped Part. II v2.0 CS8P00 = StarSing : '90s Volume 1 v2.0 CS8PZZ = StarSing : Disco-Funk v1.0 CS9P00 = StarSing : '80s Volume 2 v2.1 CS9PZZ = StarSing : Pop Hits 9 v1.0 CSAP00 = StarSing : '80s Volume 3 v2.1 CSAPZZ = StarSing : Best of Goldman v1.0 CSBP00 = StarSing : '90s Volume 2 v2.1 CSCP00 = StarSing : Michael Jackson v2.2 CSCPZZ = StarSing : Hottest Hits v2.0 CSDP00 = StarSing : Rocks! Volume 2 v2.0 CSDPZZ = StarSing : Boy Bands Vs. Girl Bands v2.0 CSEP00 = StarSing : Pop Hits 5 v1.3 CSFP00 = StarSing : Pop Hits 6 v1.3 CSGP00 = StarSing : Chansons Magiques de Disney v1.4 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = StarSing : Pop Hits 7 v1.3 CSJP00 = StarSing : Après-Ski Party v1.2 CSKP00 = StarSing : ABBA v1.1 CSLP00 = StarSing : Queen v2.0 CSMP00 = StarSing : Electro-Dancefloor Volume 1 v2.0 CSNP00 = StarSing : Electro-Dancefloor Volume 2 v2.0 CSOP00 = StarSing : Electro-Dancefloor Volume 3 v2.0 CSPP00 = StarSing : Linkin Park Live at Webster Hall New York v2.0 CSQP00 = StarSing : Muse v2.0 CSRP00 = StarSing : International Volume 3 v1.0 CSSP00 = StarSing : Après-Ski Party 2 v2.0 CSTP00 = StarSing : Depeche Mode v2.0 CSUP00 = StarSing : Pop Hits 8 v1.3 CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = StarSing : Génériques TV v2.0 CSYP00 = StarSing : Electro-Dancefloor Volume 4 v2.0 CSZP00 = StarSing : Glee Volume 1 v2.1 CT0P00 = StarSing : Pop Part. I v2.1 CT1P00 = StarSing : Pop Part. II v2.1 CT2P00 = StarSing : '80s Volume 1 v2.1 CT3P00 = StarSing : Anthems v2.1 CT4P00 = StarSing : Legends v2.1 CT5P00 = StarSing : Songs For My Jedi v2.0 CT6P00 = StarSing : Amped Part. I v2.1 CT7P00 = StarSing : Amped Part. II v2.1 CT8P00 = StarSing : Disco-Funk v2.0 CT9P00 = StarSing : Pop Hits 9 v1.3 CTAP00 = StarSing : Best of Goldman v2.0 CTBP00 = StarSing : Glee Volume 3 v1.0 CTCP00 = StarSing : Hottest Hits v2.0 CTDP00 = StarSing : Boy Bands Vs. Girl Bands v2.1 CTEP00 = StarSing : R&B v2.0 CTFP00 = StarSing : Rock Ballads v2.0 CTGP00 = StarSing : Take That v2.0 CTHP00 = StarSing : Summer Party v2.0 CTIP00 = StarSing : Rocks! Part. I v2.0 CTJP00 = StarSing : Rocks! Part. II v2.0 CTKP00 = StarSing : Pop Hits v2.0 CTLP00 = StarSing : Britney Spears v2.0 CTMP00 = StarSing : Shakira v1.1 CTNP00 = StarSing : Pop Hits 10 v1.3 CTOP00 = StarSing : The Beatles Volume 2 v2.0 CTPP00 = StarSing : Motown v2.0 CTQP00 = StarSing : Glee Volume 2 v1.0 CTRP00 = StarSing : International Volume 1 v1.0 CTSP00 = StarSing : International Volume 2 v1.0 CTTP00 = StarSing : '80s Volume 4 v1.0 CTUP00 = StarSing : Rihanna v1.0 CTVP00 = StarSing : Lady GaGa v1.0 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CVLE38 = Mario Kart: Victory Lane D01A = Wiimmfi Patcher D02A = Engine02 D03A = BrainSlug Wii D05A = Bash the Castle D06A = Bit Streamer D07A = BlisterBall D08A = Blob Wars: Metal Blob Solid D09A = Blobby Volley 2 Wii D0AA = MPlayer Wii Youtube D0BA = MPlayer Wii D0CA = Ocarina D0DA = MPlayer Dvdlib Edition D0EA = MPlayer Wii By Rodries D0FA = Signcheck D0GA = GCBoot D0HA = Memview D0IA = IOS Check D0JA = Open Sram Lang Modifier D0KA = WiiBServer D0LA = LibWiiGameLoad D0MA = Wiireader D0NA = lsusb D0OA = Move The Pussy Demo D0PA = Wiilax Minitro D0QA = Fission Engine Project D0RA = GRRLIB 4.0 Demo D0SA = OSDM-BAR D0TA = Homebrew Menu Demo D0UA = LibMii Example D0VA = The Scary Demo D0WA = Starfield Demo D0XA = Wire3D Demo D0YA = Something D0ZA = GRRLIB 4.3.0 Promote Intro D10A = cIOSFix D11A = ASCII Pong D12A = BuscaWiinas D13A = C-Dogs SDL D14A = Castles of Dr. Creep D15A = Wii Shop and IOS51 Installer D16A = Centipede D17A = Cobra Arcade D18A = Dump Espresso OTP D1LA = Blind D1PA = 1bit Invaders D1RA = MinimaLauncher D21A = Xroar D22A = cIOS222 installer D24A = 24 Points D26A = Wii2600 D29J01 = Monthly Nintendo Shop Demo May 2002 D2AA = Wii Deadly Cobra D2AJAF = Minna de Bouken! Family Trainer (Demo) D2BA = Jump N Bump D2CA = Wiiflow Advanced D2DA = Box2D Balls D2EA = Wiiflow Start Configurator D2GA = Wadinstallerbatch D2QA = Sqrxz 2 D2SE18 = Deca Sports 2 (Demo) D2ZA = Console Shooter D32J01 = Monthly Nintendo Shop Demo June 2002 D33A = Time Frack 2D D33J01 = Monthly Nintendo Shop Demo July 2002 D34J01 = Monthly Nintendo Shop Demo July 2002 D36A = cIOS36 installer D37A = WiiConnect D38A = cIOS38 installer D38J01 = Monthly Nintendo Shop Demo September 2002 D39A = Ctr Gts DacoTaco Edition D3DA = Time Frack 3D D3DE18 = Deca Sports 3 (Demo) D3JA = NDSLoad D3KA = Button Tester D3LA = BootMii Booter D3MA = Custom NAND Loader D3OA = cIOS USB 2 Installer D3QA = Sqrxz 3 D3WA = Warheads D40A = Luigi and the Island of Mystery D42A = ArianeB D43A = Wii Virtual Jaguar D43E01 = The Legend of Zelda: Ocarina of Time / Master Quest D43J01 = Zelda no Densetsu: Toki no Ocarina GC / Ura Zelda D43P01 = The Legend of Zelda: Ocarina of Time / Master Quest D43U01 = The Legend of Zelda: Ocarina of Time (Bonus Disc) D43W01 = The Legend of Zelda: Ocarina of Time / Master Quest D46A = Newo Escape D4BE08 = Resident Evil 4: Preview Disc D4BP01 = Resident Evil 4: Bonus Disc D4BP08 = Resident Evil Four Preview Disc D4BU01 = Resident Evil 4: Bonus Disc D4KA = Aleph WOne D4LA = Yawnd D4NA = Disc Dumper D4PA = DVD Dumper D4QA = Sqrxz 4 D4SA = USB Loader GUI FX D51A = IOS51 Update D52A = cboot252 D53J01 = Monthly Nintendo Shop Demo May 2003 D54A = cIOS Patchmii Installer D55A = PID Extractor D55J01 = Interactive Disc Catalog Summer 2003 D56A = Shopping Channel Fixer D56E01 = Interactive Multi-Game Demo Disc - Version 35 D56J01 = Pokémon Channel (Bonus Disc) D57A = Hijill GUI D57E01 = Interactive Multi-Game Demo Disc - Version 34 D58A = Priiloader HacksDen Edition D58E01 = Interactive Multi-Game Demo Disc - Version 33 D59A = TheUntitledProject D59E01 = Interactive Multi Game Demo Disc Version 32 D5AA = Alarmii D5BA = WiiFont D5CA = cLoader D5FA = Txted Mod D5HA = Title Lister D5JA = Tidy Up D5LA = Switchtosneek D5RA = Botoning D60A = Ultimate USB Loader D61A = Sand Traps Extra Levels D62A = Newo Puzzle D62E01 = Interactive Multi-Game Demo Disc - Version 31 D63A = 3D Maze D63E01 = Interactive Multi-Game Demo Disc - Version 30 D64A = Wii64 Emulator D64E01 = Interactive Multi-Game Demo Disc - Version 29 D65A = Transitory Vectors D65E01 = Interactive Multi Game Demo Disc Version 28 D65P01 = Interactive Multi-Game Demo Disc - December 2002 D66A = Secret Maryo Chronicles D66E01 = Interactive Multi-Game Demo Disc - Version 27 D67E01 = Interactive Multi-Game Demo Disc - Version 26 D67J01 = Monthly Nintendo Shop Demo December 2003 D68A = TheyDoNotDie2 D68E01 = Interactive Multi-Game Demo Disc - Version 25 D68J01 = Monthly Nintendo Shop Demo January 2004 D69A = IOS60 Installer D69E01 = Interactive Multi-Game Demo Disc - Version 24 D6AA = Pussieloader D6BA = Updatersafe D6DA = Savegame Manager Mod D6EA = Sneek FS Dumper D6FA = Anytitle Deleter Mod D6HA = AnyTitle Deleter Mod DB D6IA = DVD Info D6KA = AnyTitle Deleter DB D6MA = Banana Saves D6OA = DOP Shop D6QA = BootMii Checker D6TA = MiiPlayer D70A = Dungeon Crawl Stone Soup D71A = Panic in the Mushroom Kingdom D72A = Bfi D72E01 = Interactive Multi-Game Demo Disc - Version 23 D73E01 = Interactive Multi-Game Demo Disc - Version 22 D74E01 = Interactive Multi Game Demo Disc Version 21 D75E01 = Interactive Multi-Game Demo Disc - Version 20 D76E01 = Interactive Multi-Game Demo Disc - Version 19 D77E01 = Interactive Multi-Game Demo Disc - Version 18 D77P01 = Interactive Multi Game Demo Disc April 2006 D78A = Wii7800 D78E01 = Interactive Multi-Game Demo Disc - Version 17 D78J01 = Interactive Multi-Game Demo Disc - May 2004 D78P01 = Interactive Multi-Game Demo Disc - October 2005 D79A = Newo Defence D79E01 = Interactive Multi-Game Demo Disc - Version 16 D79P01 = Interactive Multi Game Demo Disc May 2005 D7AA = Action Replay Loader D7DA = Depanbrew D7GA = Channel Loader D7KA = RawkSD D7LA = Rumbler D7MA = IS Wad D7OA = Recovery Manager D7QA = Reboot D7SA = Childproof USB Loader D7TA = Power Mii Off D7VA = Power Off D7WA = Abbaye des Morts D7XA = NuGaSa D7YA = Resistor D81A = Newo Asteroids D82A = cIOS Patchmii Installer with Korean Disc Support D82E01 = Interactive Multi-Game Demo Disc - Version 15 D82J01 = Monthly Nintendo Shop Demo July 2004 D82P01 = Interactive Multi Game Demo Disc April 2005 D83A = Wii MFE Port D83E01 = Interactive Multi-Game Demo Disc - Version 14 D83P01 = Interactive Multi Game Demo Disc February 2005 D84A = Gambol D84E01 = Interactive Multi-Game Demo Disc - Version 13 D84P01 = Interactive Multi-Game Demo Disc - November 2004 D85A = Wii EDuke32 D85E01 = Interactive Multi-Game Demo Disc - Version 12 D85P01 = Interactive Multi Game Demo Disc July 2004 D86A = Firewii D86E01 = Interactive Multi-Game Demo Disc - Version 11 D86P01 = Interactive Multi-Game Demo Disc - May 2004 D87A = Tick Tock Boat Race D87E01 = Gamecube Preview Disc D87P01 = Interactive Multi-Game Demo Disc - March 2004 D88A = Quasi88 D88E01 = Interactive Multi-Game Demo Disc - Version 10 D88P01 = Interactive Multi-Game Demo Disc - November 2003 D89A = Wiimote Led Flasher D89E01 = Interactive Multi-Game Demo Disc - Version 9 D89J01 = Club Nintendo Original e-Catalog 2004 D89P01 = Interactive Multi-Game Demo Disc - September 2003 D8AA = Front SD ELF Loader D8BA = GameCube Homebrew Launcher D8CA = WiiSend D8DA = Menu D8EA = Gecko Loader D8FA = Shell D8JA = Calc D8QA = Brick OS D8RA = Lotto D8SA = Brainf**k D8UA = TCPLoader D8VA = Snort48 D8WA = Wiisixty D8XA = All In One Emuloader D8YA = Swissloader D8ZA = Tick Tock Zombie Shooter D91A = Jenny Thinks D92E01 = Interactive Multi-Game Demo Disc - Version 8 D92P01 = Interactive Multi Game Demo Disc June 2003 D93A = Wiiraytracer D93E01 = Interactive Multi-Game Demo Disc - Version 7 D93P01 = Interactive Multi Game Demo Disc April 2003 D94A = Nowhere D94P01 = Interactive Multi-Game Demo Disc - February 2003 D95A = RenderMii D95P01 = Interactive Multi-Game Demo Disc - December 2002 D96A = WiiMotionDemo D96P01 = Interactive Multi-Game Demo Disc - November 2002 D97A = Fire D98A = InstallMii D99A = System Channels Updater D9BA = Info D9CA = cIOS USB2 Installer D9FA = Dump D9GA = Wad Creator D9HA = WakeMiiUp D9IA = SNES9xGX Channel Installer D9KA = Txtread D9LA = Forwarder DA1A = Radianwars DA2A = Moonstone DA3A = Wiitch DA4A = arCard+Wii DA6A = Automatii DA7A = Astronomy DA8A = Beer Belly Bill 3 Grillieren DA9A = Achtung Wii Kurve DAAA = WiiNetPuzzle DAHA = Accio Hacks DALJ01 = Dairantou Smash Brothers DX (Demo) DAMA = MegaCodeDownloader DAPA = Map Maker DARA = Anyregion Changer DASA = Aspirin DASE4Q = Disney Epic Mickey (Demo) DATA = AnyTitle Deleter DATD = AnyTitle Deleter DAUEPZ = Country Dance (Demo) DAVA = Avoidance DAVE01 = Mystery Case Files: The Malgrave Incident (Demo) DAWA = Abuse Wii DAXE01 = The Legend of Zelda: Skyward Sword (Demo) DAXP01 = The Legend of Zelda: Skyward Sword (Demo) DB0A = Spitits DB2A = Mad Bomber DB3A = Squarez DB5A = mapbf DB7A = Blacks Dash DB9A = Robi DBAA = BowFishing Action DBBA = Balance Board Tools DBBE18 = Beyblade: Metal Fusion - Battle Fortress (Demo) DBCA = BootMii Configuration Editor DBDA = Bluedump DBGA = BlastGuy DBIA = Boot It DBKE69 = Boom Blox (Demo) DBKP69 = Boom Blox (Demo) DBLA = BlueMSX-wii DBMA = BootIOS DBPA = Balance Board Pro DBRA = WiiBrowser DBSA = BrawlStats DBTA = Bolt Thrower DBUA = Buttoncast DBWA = Reversmii DBXA = Biniax 2 DBZJ08 = Biohazard Zero: Trial Edition DC6A = Frodo (C64-network.org) DC7A = Calculate DCAA = Wiicasino DCAE18 = Calling (Demo) DCBA = CascadeBeneath DCCA = Christmascountdown DCDA = cIOS Downgrader DCEA = Cheat Manager DCFA = Coverfloader DCGA = Ctr-Gcs DCHA = Wiichatter DCHEAF = We Cheer (Demo) DCHJAF = We Cheer: Ohasta Produce ! Gentei Collabo Game Disc DCIA = cIOS Installer DCLA = Configurable USB Loader DCMA = Wiicm DCNA = Nandclean DCOA = Connectmii DCPA = Splatter Castle DCRA = CosmoRaketti DCSA = Cert.sys Extractor DCTA = Christmas-Type Adventure Time DCUA = cIOS Uninstaller DCVA = WiiColEm DCWA = WiiMC Channel Installer DCXA = ComixChannel DCYA = Cylinder Dodge DD2A = Double Dash Wii DD2P41 = Just Dance 2 (Demo) DD3A = Dario DD5A = Dcvg5k DD9A = Dungeons DDAA = Darkcorp DDBA = DOSBox Wii DDCA = d2x cIOS Installer DDDA = Disk Drive Lighter DDEA = WiiModder DDFA = Defendguin DDHA = Homebrew Disc Launcher DDIA = DiiLC DDLA = Disc Loader DDMA = DragonMedia Player DDOA = DOP-Mii DDRA = Wii Duplicated Channel Remover DDSA = DeSmuME DDVA = Devolution DDWA = DOP Mii Wiibrew Edition DDWE18 = Lost in Shadow - Press Disc (Demo) DDWX18 = Lost In Shadow - Best Buy (Demo) DE2A = Doubledown DE5A = Pictogrid DE7A = Commander Keen DE9A = Wii Bash DEAA = Headtracking Demo DEBA = Pong Breaker DEDA = Txted DEEA = Eeeek Eeeeek Hooooook DEFA = Fuse DEHA = Chess DEME = PunEmu DEPA = Pacman DERA = Elongated Reptile DETA = MPlayer TT DEWA = Wii Exhibit DEZP8P = Billy Hatcher and the Giant Egg (Demo) DF0A = Mini FSToolbox DF2A = Da ShAmAn DF3A = Briickout DF4A = Star Catching DF5A = Strobe Alarm Clock DF6A = Wii Quizz DF7A = Chatnoir DF8A = Trinary DF9A = Chunk Munch DFBA = Fsbrowser DFEA = FlipEm DFFA = Simple fs dumper DFGA = Smashing! DFIA = Fceugx Channel Installer DFLA = Starfall DFMA = FMyLife DFRA = FridgeMagnets DFSA = Fstoolbox DFTA = FTPii DFUA = Fuse DG3A = Giddy 3 DG7A = WiiPeng DG8A = Abusimbel Deluxe DG9A = Garnatron DGBA = Geexbox DGCA = GameCube Backup Launcher DGEA = GeckoOS DGFA = Guitars On Fire DGGA = Wii Rick Dangerous DGIA = Gravitii DGKA = ProjectGMC DGMA = GCMM DGPA = Genesis Plus DGSA = Shooting Gallery DGWA = Goodbye World DGXA = GxGeo DH7A = Harmony's Nightmare DH9A = Prophecy DHBA = Homebrew Browser DHCA = Hero City DHDA = Hidtest DHEA = Helium Boy DHFA = Homebrew Filter DHGA = HuGo-GX DHHA = HHexen DHHJ8J = Hirano Aya Premium Movie Disc from Suzumiya Haruhi no Gekidou DHIA = HackMii Installer DHKE18 = Help Wanted: 50 Wacky Jobs (Demo) DHLA = Heli DHMA = CharioMan DHSA = Homebrew Sorter DHTA = Hatari DHWA = We are nowhere DHXA = Hex DI5A = Tanks DI7A = ExistenzE DI8A = Ios58 Installer DI9A = Barrage DIBA = Revolt of the Binary Couriers DICA = Cubic DIEA = EasyIOS DIGA = Categorii DIIA = iiii DIMA = Inspectmii DINA = Mii Installer DIRA = Ironing Maiden DISA = Wii Supersonic DITA = IOS236 Installer DIXA = cIOSx installer DIYP01 = New Super Mario Bros. Wii 0-4 D.I.Y. DJAA = Arcade Jigsaw DJCA = Wii JellyCar DJFA = Joyflow DJJA = Jumping Jack DJQA = Jewel Quest DJWA = Wii System Menu DJZA = JzintvWii DK1A = Karaokii DK3A = Sketch Fight DK4A = Drawingbox DK6A = King of Fighters: Flames of Courage DK6E18 = Marble Saga Kororinpa (Demo) DK6J18 = Kororinpa 2 (Demo) DK7A = Uschtris DKBA = RPG Baker DKCA = Tick Tock Car Race DKCP01 = Darky Kart Riivo DKDA = Darkcube DKHA = Katakana and Hiragana Practice DKKA = Koreankii DKOA = Komopong DKPA = Kidspaint DKSA = Wii Stpp DKTA = Taiko DKWA = Kurushi DKWE01 = Darky Kart Wii Vol. 1 DKWE02 = Darky Kart Wii Vol. 2 DKWE03 = Darky Kart Wii Vol. 3 DKWE04 = Darky Kart Wii Vol. 4 DL3A = Ballion DL4A = LPairs DL5A = Gameload DL7A = LabClone DLBA = My Little Ball DLCA = Dance Clone DLDA = Devilock DLEA = Preloader DLFA = LifeMii DLGA = Gravity Glider DLIA = WiiMod Lite DLLA = Lolicopocalypse DLMA = LoadMii DLNA = Lander DLOA = Lightsout DLPA = Lopan DLSE64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLSP64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLTA = Leveltool DLUA = WiiLauncher DLXA = Linux Installer DLZEPW = Super Smash Bros Phoenix Wings DM0A = Pom DM5A = Missle Command DM7A = Matches DM9A = Checkregion DMAA = Mame Wii DMBA = Multiboot DMCA = Cleanrip mod DMDA = WiiMod DMEA = Mii Extractor DMFA = WiiMednafen DMGA = Mighty Channels DMHA = NanoMechas DMHE08 = Monster Hunter Tri (Demo) DMHJ08 = Monster Hunter Tri (Demo) DMIA = DIOS MIOS Booter DMJA = Mahjongg Wii DMKE01 = Mario Kart Wii 2 DMLA = Mighty Loader DMMA = MyMenuify DMNA = Magic Number DMOA = cMIOS installer DMPA = MPlayer CE DMRA = MIOS Patcher DMSA = ShutMiiReboot DMSP4Q = SingItStar: Best of Disney DMTA = Metronome DMUA = Multi Mod Manager DMWA = Wakemiiup DN0A = Thatother DN7A = Alien Breed DN9A = Point and No Click DNAA = Ncard DNCA = NeoCD-Wii DNDA = Nintendont DNEA = Gravity DNGA = NeoGamma Launcher DNHA = Headings DNIA = Bugin DNKA = Neko Project II DNMA = Newo Model Viewer DNNA = Save installer DNOA = O.T.T.F. DNPA = NeoPopWii DNRA = Newo Runner DNSA = Newo Shooter DNTA = NeoTanks DNUEDA = Naruto Clash of Ninja 2 (Demo) DNWA = Nowell DO2A = O2EM DO3A = Three Point O DO4A = MTP DO5A = Planet Hively DO6A = Mini MP3 Player DOCA = Code Downloader DOEA = ShowTest DOGA = Wii Maze of Galious DOHA = HighOctane DOIA = Neogamma IOS Switcher DOMA = Mole DONA = Offline Network Enabler DOOA = Doom DOPA = PowerCheck DORA = Rebooter DOTA = OpenTTD DP0A = Starplit DP1A = Italian Parking DP2A = Pong2 DP3A = Inkpoly DP4A = Piirates DP5A = Pix DP6A = IOS36 patcher DP7A = Brawl+ Updatifier DP8A = Timeless DP9A = Alien Puzzle Wii DPAA = WiiPaintBall DPBA = Priibootergui DPCA = Cherophobe DPEA = PieChart DPFA = Pwiictogrid DPGA = Pingus DPIA = Patched IOS 80 Installer for vWii DPIE18 = Oops! Prank Party (Demo) DPJA = Project M Launcher DPKA = Physco DPLA = Priiloader DPMA = Music Painter DPNA = RPG Pineapple Apocalypse DPNP08 = P.N.03 (Promo) DPOA = Postloader DPPA = Project Panic DPRA = PlasmaRaketti DPSA = Playstats DPTA = Two Point Five DPVA = Pattview DPWA = Pimp my Wii DQ1A = Q1rev DQ2A = Q2rev DQ6A = Light DQ7A = Quake DQ8A = LuaFWii DQ9A = Wiihttpd DQAJK2 = Aquarius Baseball DQAJSC = Aquarius Baseball (Simplified Chinese Translation) DQBA = Bible Quiz DQCA = Q2ctfrev DQGP69 = MySims Racing (Demo) DQRA = Qrevpak DQWA = Quakegx DR0A = Rokoban DR1A = Wii Whiteboard DR3A = Death Star Run DR4A = Rock Paper Scissors DR5A = Briicks DR6A = Reader DR7A = RockBlueMet DR8A = Operation DR9A = PixelPlot DRAA = RetroArch-Wii DRBA = Rock Band 2 Wad Installer DRCA = Wiicross DRDA = Drawmii DREA = Wiirecipe DRFA = Radiofeeds DRGA = Reggie Dumper DRIA = Cleanrip DRKA = Robotfindskitten DRMA = Mr. Sitwell DRME18 = Rooms: The Main Building (Demo) DROA = SlimeRoll DRP22Q = SingItStar Deutsch Rock-Pop Vol. 2 DRPA = Marcos Lopez Part II DRRA = Riiper DRSA = RedSquare DRTA = Tetris Custom DRUA = Radiofeeds Updater DRVA = Residualvm DRWA = Winterman DRZA = Zerace DS0A = ShootMii DS1A = Another Rock Paper Scissors DS2A = Swingball2 DS3A = Senet DS4A = Sar DS5A = Snaketwo DS6A = Scogger DS7A = Swing Ball DS8A = Scape DS9A = Minesweeper DSAA = Schism Tracker DSBA = SpaceBubble DSCA = Softchip DSDA = Superdump DSEA = Settings Editor GUI DSFA = Sciifii DSFE7U = Muramasa: The Demon Blade (Demo) DSGA = Savegame Manager DSHA = SysCheck HacksDen Edition DSIA = Simple IOS Patcher DSKA = SockDreams DSLA = Wii Stella DSMA = Sega Master System Plus DSNA = SNES9xGX DSOA = Bermuda Syndrome Wii DSPA = Super Star Shooter DSQA = Sqrxz DSRA = Wiistrobe DSRJ8P = Sonic and the Secret Rings (Demo) DSSA = RSSMii DSTA = Wii Solitaire DSUA = Super Mario War DSVA = scummVM DSWA = SuperTux Wii DSXA = Super Pixel Jumper DSYA = Syscheck DT0A = Tower Defense DT1A = Turnip DT2A = Matching Cards DT3A = Bichejos DT4A = Soduku DT5A = Poker DT6A = Simon DT7A = TheyDoNotDie DTAA = Wii Tac Toe DTCA = The Catachthonic DTDA = Descent DTEA = Topedit DTFA = Triiforce DTHA = Heretic DTIA = Wiitriis DTJA = Trojan DTKA = Tick Tock Tank Fight DTLA = TailTale DTLX01 = Action Replay DTMA = Tetrominos DTNA = Tunnel DTOA = Tong DTPA = Paintown DTRA = Trucha Bug Restorer DTSA = Desert Bus DTTA = Toddtris DTWA = Wiitweet DTXA = Texttris DU0A = Dumpmiinand DU7A = Uno DU8A = RealWnd DU9A = Harmonium DUAA = UAE Wii DUAP01 = DU Super Mario Bros. : Anniversary Edition DUBA = Multibu DUCE01 = Kustom Mariokart Wii DUDA = Duck Hunt DUDE01 = New Super Mario Bros. Wii Scooby-Doo! Hack DUGA = Guitar Fun DUIA = ChessUI DULA = USB Loader GX DUNA = Uname DUSA = bootOperaModUSB DUTG = DU Tag Channel DUWA = Waninkoko's USB Loader DV0A = Remove Preloader Hacks DV3A = DVD Browser DV9A = SensorMii DVDA = cIOS DVD Dumper DVGA = The Video Game DVHA = Horror Vacui DVIA = Vbagx Channel Installer DVJP08 = Viewtiful Joe (Promotional demo) DVLA = Vigiroth le livreur DVNA = Wiivnc DVOA = Vectoroids DVPA = Progressiveswitch DVSA = GameCube Saver DVXA = VectrexWii DW1A = Intuitwars DW5A = Marel DW6A = Wiicraft DW7A = Ravewild DWAA = WiiApple DWBA = WiirtualBoy DWCA = WiiFlow Channel Installer DWDA = Wiiflow Banner Downloader DWEA = WiiEarth DWEPA4 = Pro Evolution Soccer 2008 (Demo) DWFA = WiiFlow DWHA = WiiHandySDL DWJA = Jewel DWKA = Wiibreaker DWLA = Wii-Linux DWMA = WAD Manager DWNA = Nwancat DWPA = WiiPhysics DWRA = WiiRadio DWSA = WiiSX DWTA = Wiituka DWUA = Wufe DWWA = Winters End DWXA = WiiXplorer DX3A = Midway Space Invaders Emulator DX4A = Brawl DX Launcher DX5A = MP3+G Player DX6A = Build Blocks DX7A = Roxoptr2 DX8A = Hexen DX9A = Sand Traps DXBA = Wii X Ball DXCA = CorsixTH DXDA = DVDX DXEA = SDExplorer DXHA = Texas Holdem Poker DXIA = Piixelator DXLA = WiiXL DXNA = bootnetflix DXPA = Xeempongwii DXQA = Quadrax DXSA = Save extractor DXSE18 = Deca Sports (Demo) DXTA = The Lone Pixel DXXA = Hexxagon DXYA = xyzzy DXZA = Megazeux DY5A = Darkcorp Lite DY6A = Liqwiid Wars DY9A = TetWiis DYAA = Syasokoban DYBA = Yabause DYCA = Tetricycle DYEA = Epilepsii DYGA = Yog DYHA = Hypno Blast DYIA = Chippy DYMA = YAWMM DYOA = Toy Wars DYPA = PongYourWii DYSA = Shiny tank DYTA = Newo Tokyo DYUA = UFO Racer DYWA = Yahtzwii DYYA = System Setting Replace Tool DZ0A = Eject DZ7A = SameGame DZ8A = WiiMPC DZ9A = Teeter Torture DZDE01 = The Legend of Zelda: Twilight Princess (Demo) DZDP01 = The Legend of Zelda: Twilight Princess (Demo) DZIA = Ziip DZPA = Puzsion DZQA = Quizz DZRA = Rezerwar DZSA = Szigoy DZXA = FBZX Wii DZYA = Snake Two DZZA = OpenJazz E52E = 1942 E52J = 1942 E52P = 1942 E53E = Black Tiger E53J = Black Dragon E53P = Black Tiger E54E = Ghosts 'n Goblins E54J = Makaimura E54P = Ghost'n Goblins E55E = Commando E55J = Senji no Ookami E55P = Commando E56E = Exed Exes E56J = Exed Eyes E56P = Exed Exes E57E = SonSon E57J = Son Son E57P = SonSon E58J = Mr. Do! E59J = Karate Dou E5AJ = Ikki E5BJ = Shanghai E5VJ = Renegade E5WE = Wonder Boy in Monster Land E5WJ = Wonder Boy in Monster Land E5XJ = Puyo Puyo Tsu E5YJ = Puyo Puyo E5ZE = Super Hang-On E5ZJ = Super Hang-On E62E = Space Harrier E62J = Space Harrier E62P = Space Harrier E63E = Shinobi E63J = Shinobi Virtual Arcade E63P = Shinobi E64J = Rolling Thunder 2 E65J = Valkyrie no Densetsu E66J = Ordyne E67J = Dig Dug E68J = Galaga E69J = Baraduke E6AJ = Moon Cresta E6BJ = Crazy Climber E6CJ = Rompers E6DJ = Toy Pop E6EJ = Libble Rabble E6FJ = Galaxian E6GJ = Namco Quester E6HJ = Face Off E6IJ = Trink Force E6JJ = Bakutotsu Kijuutei: BaRaDuKe II E6KJ = Chouzetsu Rinjin - Berabow Man E6LJ = Marchen Maze E6ME = Tecmo Bowl E6MJ = Tecmo Bowl E6NE = Solomon's Key E6NJ = Solomon no Kagi E6NP = Solomon's Key E6OJ = Bomb Jack Arcade E6PE = Ninja Gaiden E6PJ = Ninja Ryukenden Arcade E6PP = Ninja Gaiden E6QE = Rygar E6QJ = Argos no Senshi E6QP = Rygar E6SJ = New Rally-X E6VE = Zaxxon 3-D E6VJ = Zaxxon E6VP = Zaxxon E6WE = Golden Axe E6WJ = Golden Axe E6WP = Golden Axe E6XE = Altered Beast E6XP = Altered Beast E6YJ = Space Invaders E6ZE = Starforce E6ZJ = Star Force E6ZP = Star Force E72J = Starblade E73E = Mappy E73J = Mappy E73P = Mappy E74J = Cosmo Gang the Puzzle E75J = Genpei Toumaden E76J = Emeraldia E77J = The Return of Ishtar E78J = Solvalou E79E = Gaplus E79J = Gaplus E79P = Gaplus E7AJ = Grobda E7BJ = Dig Dug II E7CJ = Bosconian E7EJ = Dragon Buster E7FJ = Dragon Saber E7GJ = Dragon Spirit E7HJ = Xevious E7IJ = Finest Hour E7JJ = Knuckle Heads E7KJ = Pac-Mania E7LJ = Cosmo Gang the Video E7MJ = Phelios E7NJ = Rolling Thunder E7OJ = Burning Force E7PJ = Marvel Land E7QJ = Galaga '88 E7RJ = Wonder Momo E7SJ = Assault E7TJ = Hopping Mappy E7UJ = Splatterhouse E7VJ = Cyber Sled E7WJ = Numan Athletics E7XJ = Youkai Douchuki E7YJ = Sky Kid E7ZE = The Tower of Druaga E7ZJ = Druaga no Tou E7ZP = The Tower of Druaga EA2E = Metal Slug 2 EA2J = Metal Slug 2 EA2P = Metal Slug 2 EA3J = Galaxy Fight: Universal Warriors EA4E = Samurai Showdown III EA4J = Samurai Spirits Kibeniro Musouken EA4P = Samurai Shodown III EA5E = Fatal Fury 3: Road to the Final Victory EA5J = Garou Densetsu 3: Road to the Final Victory EA5P = Fatal Fury 3: Road To The Final Victory EA6E = The King of Fighters '96 EA6J = The King of Fighters '96 EA7E = Samurai Shodown IV: Amakusa's Revenge EA7J = Samurai Spirits: Amakusa Kourin EA8E = Ironclad EA8J = Ironclad: Chotetsu Brikinger EA8M = Iron Clad EA9J = Waku Waku 7 EAAE = Fatal Fury EAAJ = Garou Densetsu: Shukumei no Takatai EAAP = Fatal Fury EABE = World Heroes EABJ = World Heroes EABP = World Heroes EACE = Magician Lord EACJ = Magician Lord EACP = Magician Lord EADE = Art of Fighting EADJ = Ryuuko no Ken EADP = Art of Fighting EAEE = Samurai Showdown EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen EAEP = Samurai Showdown EAFE = Blue's Journey EAFJ = Raguy EAFP = Blue's Journey EAGE = The King of Fighters '94 EAGJ = The King of Fighters '94 EAGP = The King of Fighters '94 EAHE = Baseball Stars 2 EAHJ = Baseball Stars 2 EAHP = Baseball Stars 2 EAIE = Top Hunter EAIJ = Top Hunter EAIP = Top Hunter EAJE = Metal Slug EAJJ = Metal Slug EAJP = Metal Slug EAKE = Burning Fight EAKJ = Burning Fight EAKP = Burning Fight EALE = Art of Fighting 2 EALJ = Ryuuko no Ken 2 EALP = Art of Fighting 2 EAME = Ninja Combat EAMJ = Ninja Combat EAMP = Ninja Combat EANE = Fatal Fury 2 EANJ = Garou Densetsu 2: Aratanaru Tatakai EANP = Fatal Fury 2 EAOE = King of the Monsters EAOJ = King of the Monsters EAOP = King of the Monsters EAPE = Ninja Commando EAPJ = Ninja Commando EAPP = Ninja Commando EAQE = WORLD HEROES 2 EAQJ = World Heroes 2 EARE = Neo Turf Masters EARJ = Neo Turf Masters EARP = Neo Turf Masters EASE = Samurai Showdown 2 EASJ = Shin Samurai Spirits Haoumaru Jigokuhen EASP = Samurai Shodown II EATE = WORLD HEROES 2 JET EATJ = World Heroes 2 Jet EAUJ = Twinkle Star Sprites EAVE = The King of Fighters ’95 EAVJ = The King of Fighters '95 EAVP = The King of Fighters '95 EAWE = Fatal Fury Special EAWJ = Garou Densetsu Special EAWP = Fatal Fury Special EAYJ = King of The Monsters 2 EAZE = WORLD HEROES PERFECT EAZJ = World Heroes Perfect EB2E = REAL BOUT FATAL FURY SPECIAL EB2J = Real Bout Garou Densetsu Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB6E = Metal Slug 3 EB6J = Metal Slug 3 EB6P = Metal Slug 3 EB7J = The Super Spy EB8E = SHOCK TROOPERS EB8J = Shock Troopers EB9J = Pulstar EBAE = Magical Drop II EBAJ = Magical Drop 2 EBAP = Magical Drop II EBBE = Fighters History Dynamite EBBJ = Fighter's History Dynamite EBBP = Karnov's Revenge EBCJ = Flying Power Disc EBDE = Magical Drop III EBDJ = Magical Drop III EBDP = Magical Drop 3 EBEE = Street Slam EBEJ = Dunk Dream EBEP = Street Hoop EBFE = Spin Master EBFJ = Miracle Adventure EBFP = Spin master EBGE = The King of Fighters '97 EBGJ = The King of Fighters '97 EBKJ = Last Resort EBLJ = Tsuukai GanGan Koushinkyoku EBMJ = Fire Suplex EBNJ = Fu'un Mokushiroku: Kakutou Sousei EBOJ = Fu'un Super Tag Battle EBPJ = League Bowling EBQE = NINJA MASTER'S EBQJ = Ninja Master's Haou Ninpou-chou EBRJ = Joy Joy Kid EBSE = The Path of the Warrior: Art of Fighting 3 EBSJ = Art of Fighting: Ryuuko no Ken Gaiden EBTJ = Crossed Swords EBUE = 2020 SUPER BASEBALL EBUJ = Super Baseball 2020 EBVJ = Shin-Oh-Ken EBWE = SENGOKU EBWJ = Sengoku Denshou EBXE = SENGOKU 2 EBXJ = Sengoku 2 EBZE = REAL BOUT FATAL FURY EBZJ = Real Bout Garou Densetsu ECAE = Real Bout Fatal Fury 2: The Newcomers ECAJ = Real Bout Garou Densetsu 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECDJ = Stakes Winner: G1 Kanzen Seihahe no Michi ECEE = THE LAST BLADE 2 ECEJ = Bakumatsu Rouman Dai Ni Maku: Gekka no Kenshi ECFJ = Blazing Star ECGE = Shock Troopers: 2nd Squad ECGJ = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECJE = The King of Fighters '99 ECJJ = Metal Slug 4 ECKE = NAM-1975 ECKJ = NAM-1975 ECLJ = Stakes Winner 2 ECMJ = Tokuten Oh: Honoo no Libero ECNE = Sengoku 3 ECNJ = Sengoku Denshou 2001 ENDP01 = New SUPER MARIO BROS. Wii 20 The End For Now EVOP01 = New Super Mario Bros. Wii 0-5 Evolution FA2J = Exerion FA3J = Formation Z FA4J = Devil World FA4P = Devil World FA5J = Fire Emblem: Ankoku Ryu to Hikari no Tsurugi FA6E = Donkey Kong Jr. Math FA6J = Donkey Kong Jr. no Sansuu Asobi FA6P = Donkey Kong Jr. Math FA7E = Yoshi FA7J = Yoshi no Tamago FA7K = Yoshi FA7P = Mario & Yoshi FA8E = Kirby's Adventure FA8F = Kirby's Adventure FA8J = Hoshi no Kirby: Yume no Izumi no Monogatari FA8K = Kirby's Adventure FA8P = Kirby's Adventure FA9E = Zelda II: The Adventure of Link FA9J = The Legend of Zelda 2: Link no Bouken FA9P = Zelda II: The Adventure of Link FAAE = Donkey Kong FAAJ = Donkey Kong FAAK = Donkey Kong FAAP = Donkey Kong FABE = Donkey Kong Jr. FABJ = Donkey Kong Jr. FABP = Donkey Kong Jr. FACE = Pinball FACJ = Pinball FACP = Pinball FADJ = Gomoku Narabe Renju FAFE = Mario Bros. FAFJ = Mario Bros. FAFK = Mario Bros. FAFP = Mario Bros. FAGE = Super Mario Bros. FAGJ = Super Mario Bros. FAGK = Super Mario Bros. FAGP = Super Mario Bros. FAHE = Tennis FAHJ = Tennis FAHP = Tennis FAIE = Soccer FAIJ = Soccer FAIP = Soccer FAJE = Ice Hockey FAJJ = Ice Hockey FAJP = Ice Hockey FAKE = The Legend of Zelda FAKJ = Zelda no Densetsu FAKK = The Legend of Zelda FAKP = The Legend of Zelda FALE = Baseball FALJ = Baseball FALP = Baseball FAME = Wario's Woods FAMJ = Wario no Mori FAMP = Wario's Woods FANE = Urban Champion FANJ = Urban Champion FANK = Urban Champion FANP = Urban Champion FAOE = Solomon's Key FAOJ = Solomon no Kagi FAOP = Solomon's Key FAPE = NES Open Tournament Golf FAPJ = Mario Open Golf FAPK = NES Open Tournament Golf FAPP = NES Open Tournament Golf FAQJ = Ninja Jajamaru-kun FAQL = Ninja JaJaMaru-kun FAQN = Ninja JaJaMaru-kun FARE = Gradius FARJ = Gradius FARP = Gradius FASE = Xevious FASJ = Xevious FASK = Xevious FASP = Xevious FATE = The Legend of Kage FATJ = Kage no Densetsu FAVE = Tecmo Bowl FAVJ = Tecmo Bowl FAWE = Elevator Action FAWJ = Elevator Action FAXE = Pac-Man FAXJ = Pac-Man FAXK = Pac-Man FAXP = Pac-Man FAYJ = Ikki FAZJ = Field Combat FAZK = Downtown Nekketsu Koushinkyoku: Soreyuke Daiundoukai FB2J = Super Mario Bros. 2 FB2L = Super Mario Bros.: The Lost Levels FB2N = Super Mario Bros.: The Lost Levels FB3J = Valkyrie no Bouken: Toki no Kagi Densetsu FB4E = Lunar Pool FB4J = Lunar Ball FB4P = Lunar Pool FB5E = Zanac FB5J = Zanac FB6J = Front Line FB7J = Nuts & Milk FB8J = Challenger FB9J = Pooyan FBAJ = Smash Ping Pong FBAL = Smash Table Tennis FBBE = Mach Rider FBBJ = Mach Rider FBBP = Mach Rider FBCE = Excitebike FBCJ = Excitebike FBCP = Excitebike FBDE = Kid Icarus FBDJ = Hikari Shinwa: Palutena no Kagami FBDK = Kid Icarus FBDP = Kid Icarus FBEE = Ice Climber FBEJ = Ice Climber FBEP = Ice Climber FBHE = Castlevania FBHJ = Akumajou Dracula FBHP = Castlevania FBIE = Punch Out!! Featuring Mr. Dream FBIJ = Punch-Out!! FBIP = Punch-Out!! FBJE = Mighty Bomb Jack FBJJ = Mighty Bomb Jack FBJP = Mighty Bomb Jack FBKE = Teenage Mutant Ninja Turtles FBKJ = Gekikame Ninja Den FBKP = Teenage Mutant Ninja Turles FBLE = Lode Runner FBLJ = Lode Runner FBLM = Lode Runner FBNE = Ninja Gaiden FBNJ = Ninja Ryuukenden FBNM = Ninja Gaiden FBOJ = Gradius II FBQJ = Druaga no Tou FBRE = Galaga FBRJ = Galaga FBRK = Galaga FBRP = Galaga FBSE = Milon's Secret Castle FBSJ = Meikyuu Kumikyoku: Milon no Daibouken FBSM = Milon's Secret Castle FBUE = Adventures of Lolo FBUJ = Adventures of Lolo FBUK = Adventures of Lolo FBUP = Adventures of Lolo FBVJ = Tsuppari Oozumou FBWJ = Joy Mech Fight FBWK = Joy Mech Fight FBXJ = Famicom Wars FBYE = Super Mario Bros. 2 FBYJ = Super Mario USA FBYK = Super Mario USA FBYP = Super Mario Bros. 2 FBZE = Metroid FBZJ = Metroid FBZP = Metroid FC2J = Hanjuku Hero FC3E = Bubble Bobble FC3J = Bubble Bobble FC3K = Bubble Bobble FC3P = Bubble Bobble FC4J = Chack'n Pop FC5J = Ganbare Goemon Karakuki Douchuu FC6E = StarTropics FC6J = Startropics FC6P = StarTropics FC7E = NES Play Action Football FC7J = NES Play Action Football FC8E = Castlevania II Simon's Quest FC8J = Dracula II: Noroi no Fuuin FC8P = Castlevania II: Simon's Quest FC9J = Metal Slader Glory FCAE = Star Soldier FCAJ = Star Soldier FCEJ = Esper Dream FCEU = FCE Ultra GX FCFJ = Yie Ar Kung Fu FCGJ = TwinBee FCHJ = Flappy FCIJ = Volguard 2 FCJJ = SD Gundam World: Gachapon Senshi 2 - Capsule Senki FCNJ = Kekkyoku Nankyoku Daibouken FCNK = Antarctic Adventure FCOJ = Battle City FCPE = Balloon Fight FCPJ = Balloon Fight FCPP = Balloon Fight FCQE = Ninja Gaiden II: The Dark Sword of Chaos FCQJ = Ninja Gaiden Two FCRE = Adventure Island FCRJ = Takahashi Meijin no Boukenjima FCRK = Hudson's Adventure Island FCRP = Adventure Island FCSE = Super C FCSJ = Super Contra FCSP = Probotector II: Return of the Evil Forces FCTE = Mega Man FCTJ = RockMan FCTP = Mega Man FCUE = Volleyball FCUJ = Volleyball FCUP = Volleyball FCVE = Wrecking Crew FCVJ = Wrecking Crew FCVP = Wrecking Crew FCWE = Super Mario Bros. 3 FCWJ = Super Mario Bros. 3 FCWK = Super Mario Bros. 3 FCWP = Super Mario Bros. 3 FCYE = Yoshi’s Cookie FCYJ = Yoshi no Cookie FCYK = Yoshi's Cookie FCYP = Yoshi’s Cookie FCZE = King's Knight FCZJ = Kings Knight FD2E = Double Dragon FD2J = Double Dragon FD2P = Double Dragon FD3J = Nekketsu Koukou Dodgeball-bu Soccer-hen FD3K = Nekketsu Koukou Dodgeball-bu Soccer-hen FD6E = Adventures of Lolo 2 FD6P = Adventures of Lolo 2 FD7E = Mega Man 3 FD7J = RockMan 3: Dr. Wily no Saigo?! FD7P = Mega Man 3 FDAE = Spelunker FDAJ = Spelunker FDAM = Spelunker FDBJ = Famicom Mukashi Banashi: Shin Onigashima - Kouhen FDCJ = Star Luster FDEJ = Mappy FDFE = Bases Loaded FDFJ = Moero!! Pro Yakyuu FDGE = Ghosts'n Goblins FDGJ = Makai-Mura FDGP = Ghosts'n Goblins FDIJ = Bokosuka Wars FDLE = Ninja Gaiden III: The Ancient Ship of Doom FDLJ = Ninja Gaiden Three FDNE = Mega Man 2 FDNJ = RockMan 2 FDNP = Mega Man 2 FDOE = Operation Wolf FDOJ = Operation Wolf FDOP = Operation Wolf FDPE = Blades of Steel FDPP = Blades of Steel FDQE = Double Dribble FDQP = Double Dribble FDRP = Skate or Die FDSJ = Famicom Tantei Club: Kieta Koukeisha (Kouhen) FDTE = Renegade FDTJ = Renegade FDUE = Super Dodge Ball FDUJ = Nekketsu Koukou Dodge Ball Bu FDVE = River City Ransom FDVJ = Downtown Nekketsu Monogatari FDVK = Downtown Nekketsu Monogatari FDVP = Street Gangs FDWJ = Downtown Special: Kunio-kun no Jidaigeki Dayo Zenin Shuugou! FDXJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo (Kouhen) FDYJ = Fire Emblem Gaiden FDZJ = Downtown Nekketsu Koushinkyoku FE5J = Toukaidou Gojuusan Tsugi FE6J = Ninja kun Majyou no Bouken FE7J = Ninja kun Ashura no Shou FE8J = Takeshi no Chousenjou FE9J = Ike Ike! Nekketsu Hockey-bu: Subette Koronde Dairantou FECE = Skykid FECJ = Sky Kid FEDJ = Dig Dug FEDL = Dig Dug FEDN = Dig Dug FEEJ = Tantei Jinguji Saburo: Shinjuku Chuo Koen Satsujin Jiken FEFJ = Detective Saburo Jinguji 2: Yokohama-Ko Renzoku Satsujin Jiken FEGJ = Tantei Jinguuji Saburo - Kikenna Futari - Zenkouhen FEHJ = Tantei Jinguuji Saburo: Toki no Sugiyuku Mama ni FEIE = City Connection FEIJ = City Connection FEIP = City Connection FEJJ = Nazo no Murasame Jou FELJ = Transformers: Convoy no Nazo FEMJ = Bio-Miracle Bokutte Upa FEML = Bio Miracle Bokutte UPA FEMN = Bio Miracle Bokutte UPA FENE = Life Force FENJ = Salamander FEOJ = Zoids: Mokushiroku FEPJ = Getsu Fuuma Den FEQE = Castlevania III: Dracula's Curse FEQJ = Akumajo Densetsu FEQP = Castlevania III Dracula's Curse FERE = Zoda’s Revenge: StarTropics II FERJ = Zoda's Revenge FERM = Startropics II: Zoda's Revenge FESE = Clu Clu Land FESJ = Clu Clu Land FESP = Clu Clu Land FEUE = Donkey Kong 3 FEUJ = Donkey Kong 3 FEUP = Donkey Kong 3 FEVJ = Atlantis no Nazo FEWJ = Dragon Buster FEXJ = Wagyan Land FF2J = Sugoro Quest: Dice no Senshi Tachi FF4E = BurgerTime FF4J = BurgerTime FF5E = Double Dragon II: The Revenge FF5J = Double Dragon 2: The Revenge FF6J = Ganbare Goemon 2 FF7J = Ganbare Goemon Gaiden: Kieta Ougon Kiseru FFAE = Final Fantasy FFAJ = Final Fantasy FFAM = Final Fantasy FFBJ = Final Fantasy II FFDE = Crash 'N The Boys Street Challenge FFDJ = Bikkuri Nekketsu Shin Kiroku! Harukanaru Kin Medal FFEE = A Boy and His Blob: Trouble on Blobolonia FFEP = A Boy and His Blob: Trouble on Blobolonia FFFJ = Final Fantasy III FFGJ = SD Gundam World: Gachapon Senshi - Scramble Wars FFJJ = Metal Max FFKJ = Championship Lode Runner FFLE = Princess Tomato in the Salad Kingdom FFLJ = Salad no Kuni no Tomato Hime FFME = Blaster Master FFMJ = Chou-Wakusei Senki MetaFight FFMP = Blaster Master FFNE = Mega Man 4 FFNJ = RockMan 4: Aratanaru Yabou!! FFNP = Mega Man 4 FFOJ = Moero TwinBee: Cinnamon Hakase o Sukue! FFPB = Ufouria: The Saga FFPJ = Furu Furu Park FFQE = Shadow of the Ninja FFQM = Shadow of the Ninja FFRE = Faxanadu FFRJ = Faxanadu FFRP = Faxanadu FFTJ = Binary Land FFUE = Adventure Island 2 FFUJ = Takahashi Meijin no Bouken Jima II FFUP = Adventure Island 2 FFVE = S.C.A.T. FFVP = S.C.A.T.: Special Cybernetic Attack Team FFWP = Donkey Kong: Original Edition FFXJ = 25th Anniversary SUPER MARIO BROS. FFXP = Super Mario Brothers: 25th Anniversary Exclusive FFYE = Mega Man 5 FFYJ = RockMan 5: Blues no Wana!? FFZJ = Seicross FFZY = Contra FJOR = Kung Fu FMCA = The Goonies G01E01 = Super Smash Bros. Melee: SD Remix G01J01 = Super Smash Bros. Melee: SD Remix G01P01 = Super Smash Bros. Melee: SD Remix G02E01 = Super Smash Bros. Melee: 20XX Training Pack G02J01 = Super Smash Bros. Melee: 20XX Training Pack G02P01 = Super Smash Bros. Melee: 20XX Training Pack G2BE5G = Black & Bruised G2BP7D = Black & Bruised G2CD52 = True Crime: New York City G2CE52 = True Crime: New York City G2CP52 = True Crime: New York City G2CX52 = True Crime: New York City G2FD78 = Tak 2: The Staff of Dreams G2FE78 = Tak 2: The Staff of Dreams G2FF78 = Tak 2: The Staff of Dreams G2FP78 = Tak 2: The Staff of Dreams G2GJB2 = Mobile Suit Gundam: Gundam vs. Z Gundam G2KE8P = NHL 2K3 G2KP8P = NHL 2K3 G2ME01 = Metroid Prime 2: Echoes G2MEAB = Metroid Prime 3 (E3 Beta) G2MJ01 = Metroid Prime 2: Dark Echoes G2MP01 = Metroid Prime 2: Echoes G2OE41 = Prince of Persia: Warrior Within G2OP41 = Prince of Persia: Warrior Within G2PE6U = Spirits And Spells G2RE52 = Shrek SuperSlam G2SJGE = Shikigami no Shiro II G2TE52 = Tony Hawk's Underground 2 G2TP52 = Tony Hawk's Underground 2 G2VE08 = Viewtiful Joe 2 G2VJ08 = Viewtiful Joe 2: Blackfilm no Nazo G2VP08 = Viewtiful Joe 2 G2XE8P = Sonic Gems Collection G2XP8P = Sonic Gems Collection G3AD69 = Lord of the Rings: The Third Age G3AE69 = Lord of the Rings: The Third Age G3AF69 = Lord of the Rings: The Third Age G3AP69 = Lord of the Rings: The Third Age G3AS69 = Lord of the Rings: The Third Age G3BE9G = Serious Sam: Next Encounter G3BP54 = Serious Sam: Next Encounter G3BP9G = Serious Sam: Next Encounter G3DE6L = Carmen Sandiego: The Secret of the Stolen Drums G3DP6L = Carmen Sandiego: The Secret of the Stolen Drums G3DX6L = Carmen Sandiego: The Secret of the Stolen Drums G3EE51 = XGIII: Extreme G Racing G3EJ51 = XGIII: Extreme G Racing G3EP51 = XGIII: Extreme G Racing G3FD69 = TimeSplitters: Future Perfect G3FE69 = TimeSplitters: Future Perfect G3FF69 = TimeSplitters: Future Perfect G3FP69 = TimeSplitters: Future Perfect G3FS69 = TimeSplitters: Future Perfect G3JEAF = Curious George G3LE8P = Super Monkey Ball Adventure G3LP8P = Super Monkey Ball Adventure G3ME41 = Tom Clancy's The Sum of All Fears G3MP41 = The Sum of All Fears G3NJDA = NARUTO Gekitô Ninja Taisen! 3 G3QEA4 = Teenage Mutant Ninja Turtles 3: Mutant Nightmare G3RD52 = Shrek 2 G3RE52 = Shrek 2 G3RF52 = Shrek 2 G3RP52 = Shrek 2 G3SE41 = Bust-A-Move 3000 G3TJ8P = Derby Tsuku 3: Derby Uma O Tsukurou! G3VE69 = NBA Street Vol.3 G3VP69 = NBA Street Vol.3 G3XE52 = X-Men: The Official Game G3XP52 = X-Men: The Official Game G3YP52 = Shrek Super Slam G3YX52 = Shrek Super Slam G3YY52 = Shrek Super Slam G4AEE9 = Harvest Moon: Magical Melody G4BE08 = Resident Evil 4 G4BJ08 = Biohazard 4 G4BP08 = Resident Evil 4 G4CE54 = Charlie and the Chocolate Factory G4CP54 = Charlie and the Chocolate Factory G4FD69 = FIFA 07 G4FE69 = FIFA Soccer 07 G4FF69 = FIFA 07 G4FP69 = FIFA 07 G4GEE9 = Harvest Moon: Another Wonderful Life G4IE52 = Shrek Smash n' Crash Racing G4IP52 = Shrek Smash n' Crash Racing G4ME69 = The Sims Bustin' Out G4MP69 = The Sims: Bustin' Out G4NJDA = NARUTO Gekitô Ninja Taisen! 4 G4OE69 = The Sims 2 : Pets G4OP69 = The Sims 2 : Pets G4QE01 = Super Mario Strikers G4QJ01 = Super Mario Strikers G4QP01 = Mario Smash Football G4SE01 = The Legend of Zelda: Four Swords Adventures G4SJ01 = The Legend of Zelda: Four Swords + G4SP01 = The Legend of Zelda: Four Swords Adventures G4ZE69 = The Sims 2 G4ZP69 = The Sims 2 G5BE4Z = Strike Force Bowling G5DE78 = Scooby-Doo! - Unmasked G5DP78 = Scooby-Doo! - Unmasked G5NEAF = Namco Museum 50th Anniversary G5NP69 = Namco Museum 50th Anniversary G5SE7D = Spyro: A Hero's Tail G5SP7D = Spyro: A Hero's Tail G5TE69 = Tiger Woods PGA Tour 2005 G5TP69 = Tiger Woods PGA Tour 2005 G62E54 = Major League Baseball 2k6 G63E41 = Tom Clancy's Rainbow Six 3 G63P41 = Tom Clancy's Rainbow Six 3 G6FD69 = 2006 FIFA World Cup G6FE69 = 2006 FIFA World Cup G6FF69 = 2006 FIFA World Cup G6FP69 = 2006 FIFA World Cup G6ME69 = Madden NFL 06 G6MP69 = Madden NFL 06 G6NE69 = NBA Live 06 G6NP69 = NBA Live 06 G6QE08 = Mega Man Anniversary Collection G6SE7D = The Legend of Spyro: A New Beginning G6SP7D = The Legend of Spyro: A New Beginning G6TE5G = Teen Titans G6TP5G = Teen Titans G6TP78 = Teen Titans G6WE69 = Tiger Woods PGA Tour 06 G6WP69 = Tiger Woods PGA Tour 06 G7ME69 = Madden NFL 07 G89EAF = Pac-Man World Rally G8FE8P = Virtua Quest G8ME01 = Paper Mario: The Thousand-Year Door G8MJ01 = Paper Mario RPG G8MP01 = Paper Mario: The Thousand-year Door G8OJ18 = Bobobo-bo Bo-bobo Dassutsu! Hajike Royale G8SJAF = Battle Stadium D.O.N G8WE01 = Battalion Wars G8WP01 = Battalion Wars G94E01 = Interactive Multi-Game Demo Disc - August 2002 G95E01 = Interactive Multi-Game Demo Disc - July 2002 G96E01 = Interactive Multi-Game Demo Disc - June 2002 G97E01 = Interactive Multi-Game Demo Disc - March 2002 G97P01 = Interactive Multi Game Demo Disc - September 2002 G97U01 = Interactive Multi-Game Demo Disc - September 2002 G98E01 = Interactive Multi-Game Demo Disc - January 2002 G98P01 = Interactive Multi Game Demo Disc May 2002 G99E01 = Interactive Multi-Game Demo Disc - October 2001 G99P01 = Interactive Multi Game Demo Disc March 2002 G9BEE9 = Mark Davis Pro Bass Challenge G9RD7D = Crash Tag Team Racing G9RE7D = Crash Tag Team Racing G9RF7D = Crash Tag Team Racing G9RP7D = Crash Tag Team Racing G9SE8P = Sonic Heroes G9SJ8P = Sonic Heroes G9SP8P = Sonic Heroes G9TD52 = Shark Tale G9TE52 = Shark Tale G9TF52 = Shark Tale G9TI52 = Shark Tale G9TJC0 = Shark Tale G9TP52 = Shark Tale GA2E51 = All-Star Baseball 2002 GA3E51 = All-Star Baseball 2003 GA4E51 = All-Star Baseball 2004 GA7E70 = Backyard Sports Baseball 2007 GAAJ08 = Disney's Mickey & Minnie Trick & Chase GABEAF = Zatch Bell! Mamodo Fury GACE5H = Army Men: Air Combat The Elite Missions GAEJ01 = Doubutu no Mori e+ GAFE01 = Animal Crossing GAFJ01 = Animal Forest + GAFP01 = Animal Crossing GAFU01 = Animal Crossing GAGP70 = Asterix & Obelix XXL GAHEGG = Alien Hominid GAKE5D = Midway Arcade Treasures GALE01 = Super Smash Bros. Melee GALJ01 = Dairantou Smash Brothers DX GALP01 = Super Smash Bros. Melee GAME5H = Army Men Sarges War GANE7U = Animaniacs: The Great Edgar Hunt GANP7U = Animaniacs: The Great Edgar Hunt GAPE52 = American Chopper 2 - Full Throttle GAQE6S = Aquaman: Battle of Atlantis GARE5H = Army Men: RTS GASE8P = Sonic Adventure DX: Director's Cut (Review Prototype) GASJ8P = Sonic Adventure DX GATE51 = ATV Quad Power Racing 2 GATP51 = ATV Quad Power Racing 2 GAUE08 = Auto Modellista GAUJ08 = Auto Modellista: U.S.-tuned GAVE78 = Avatar The Last Airbender GAVP78 = Avatar: The Legend of Aang GAVY78 = Avatar: The Legend of Aang GAXE5D = The Ant Bully GAYE5D = Midway Arcade Treasures 2 GAZD69 = Harry Potter and the Prisoner of Azkaban GAZE69 = Harry Potter and the Prisoner of Azkaban GAZF69 = Harry Potter and the Prisoner of Azkaban GAZH69 = Harry Potter and the Prisoner of Azkaban GAZI69 = Harry Potter and the Prisoner of Azkaban GAZJ69 = Harry Potter to Azkaban no Shuujin GAZM69 = Harry Potter and the Prisoner of Azkaban GAZP69 = Harry Potter and the Prisoner of Azkaban GAZS69 = Harry Potter and the Prisoner of Azkaban GB2J18 = Bomberman Land 2 GB3E51 = BMX XXX GB3P51 = BMX XXX GB4E51 = Burnout 2: Point of Impact GB4P51 = Burnout 2: Point of Impact GBAE8P = NBA 2K2 GBDE5G = BloodRayne GBDP7D = BloodRayne GBDS7D = BloodRayne GBFE70 = Backyard Football GBGE5G = Bomberman Generation GBGP7D = Bomberman Generation GBHDC8 = Mystic Heroes GBHEC8 = Mystic Heroes GBHFC8 = Mystic Heroes GBHJC8 = Battle Houshin GBHPC8 = Mystic Heroes GBIE08 = Resident Evil GBIJ08 = Biohazard GBIP08 = Resident Evil GBKE70 = Backyard Baseball GBLE52 = Bloody Roar: Primal Fury GBLP52 = Bloody Roar: Primal Fury GBME7F = Batman: Dark Tomorrow GBMP7F = Batman: Dark Tomorrow GBNJC0 = Warrior Blade: Rastan vs. Barbarian GBOE51 = Burnout GBOP51 = Burnout GBQE78 = Rocket Power: Beach Bandits GBQP78 = Rocket Power: Beach Bandits GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTP70 = Beyblade VForce - Super Tournament Battle GBVE41 = Batman: Vengeance GBVP41 = Batman Vengeance GBWD64 = Star Wars Bounty Hunter GBWE64 = Star Wars Bounty Hunter GBWF64 = Star Wars Bounty Hunter GBWP64 = Star Wars Bounty Hunter GBWS64 = Star Wars Bounty Hunter GBXE51 = Dave Mirra Freestyle BMX 2 GBXP51 = Dave Mirra Freestyle BMX 2 GBYE0A = Super Bubble Pop GBZE08 = Resident Evil Zero GBZJ08 = Resident Evil Zero GBZP08 = Resident Evil Zero GC2E9G = Conflict: Desert Storm II: Back to Baghdad GC2P75 = Conflict: Desert Storm II: Back to Baghdad GC3D78 = Scooby-Doo!: Mystery Mayhem GC3E78 = Scooby-Doo!: Mystery Mayhem GC3F78 = Scooby-Doo!: Mystery Mayhem GC3P78 = Scooby-Doo!: Mystery Mayhem GC4JBN = Shinseiki GPX Cyber Formula Road To The EVOLUTION GC5PNK = Cocoto: Kart Racer GC6E01 = Pokémon Colosseum GC6J01 = Pokémon Colosseum GC6P01 = Pokémon Colosseum GC7PNK = Cocoto Platform Jumper GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBP7D = Crash Bandicoot: The Wrath of Cortex GCCE01 = Final Fantasy Crystal Chronicles GCCJ01 = Final Fantasy Crystal Chronicles GCCJGC = Final Fantasy Crystal Chronicles GCCP01 = Final Fantasy Crystal Chronicles GCDE08 = Resident Evil Code: Veronica X GCDJ08 = Biohazard: Code Veronica GCDP08 = Resident Evil Code Veronica X GCEE41 = Tom Clancy's Splinter Cell GCEP41 = Tom Clancy's Splinter Cell GCFE9G = Conflict: Desert Storm GCFP75 = Conflict: Desert Storm GCGE41 = Charlie's Angels GCGP41 = Charlie's Angels GCHE78 = WWE Crush Hour GCHP78 = WWE Crush Hour GCIE69 = The Sims GCIP69 = The Sims GCJE41 = Tom Clancy's Splinter Cell: Chaos Theory GCJP41 = Tom Clancy's Splinter Cell: Chaos Theory GCLE69 = Cel Damage GCLP69 = Cel Damage GCMJA4 = Muscle Champion ~Battle of Muscle Island~ GCNE7D = Crash Nitro Kart GCNP7D = Crash Nitro Kart GCOD52 = Call of Duty: Finest Hour GCOE52 = Call of Duty: Finest Hour GCOF52 = Call of Duty: Finest Hour GCOP52 = Call of Duty: Finest Hour GCPE6S = Casper: Spirit Dimensions GCPP6S = Casper: Spirit Dimensions GCQD7D = Buffy The Vampire Slayer Chaos Bleeds GCQE7D = Buffy the Vampire Slayer: Chaos Bleeds GCQF7D = Buffy The Vampire Slayer Chaos Bleeds GCQP7D = Buffy The Vampire Slayer Chaos Bleeds GCSEAF = Street Racing Syndicate GCSPAF = Street Racing Syndicate GCTE51 = Crazy Taxi GCTP51 = Crazy Taxi GCUE69 = NCAA Football 2005 GCVEEB = Cubivore: Survival of the Fittest GCWP6X = Castleween GCZE69 = Catwoman GCZP69 = Catwoman GD4E6S = Dinotopia - The Sunstone Odyssey GD5JB2 = Dragon Drive: D-Masters Shot GD6EB2 = Digimon Rumble Arena 2 GD6P70 = Digimon Rumble Arena 2 GD7E70 = Dragon Ball Z - Budokai GD7JB2 = Dragon Ball Z - Budokai GD7P70 = Dragon Ball Z - Budokai GD7PB2 = Dragon Ball Z Budokai GD9E69 = Drome Racers GD9P69 = Drome Racers GDAJE5 = Doraemon Minna De Asobou! GDBJ01 = Doubutsu Bancho GDCE51 = Speed Kings GDCP51 = Speed Kings GDDE41 = Disney's Donald Duck: Goin' Quackers GDDP41 = Disney's Donald Duck: Qu@ck Att@ck GDED71 = Baldur's Gate Dark Alliance GDEE71 = Baldur's Gate: Dark Alliance GDEF71 = Baldur's Gate: Dark Alliance GDEP71 = Baldur's Gate Dark Alliance GDFE5D = Defender GDFP5D = Defender: For All Mankind GDGE7H = Dragon's Lair 3D: Return to the Lair GDGP78 = Dragon's Lair 3D Special Edition GDIE7D = Die Hard: Vendetta GDIP7D = Die Hard: Vendetta GDIX7D = Die Hard: Vendetta GDIY7D = Die Hard: Vendetta GDJEB2 = Digimon World 4 GDJJB2 = Digimon World X GDKEA4 = Disney Sports Soccer GDKPA4 = Disney Sports: Football GDLEA4 = Disney Sports Basketball GDLPA4 = Disney Sports: Basketball GDME01 = Disney's Magical Mirror Starring Mickey Mouse GDMJ01 = Disney's Mickey Mouse no Fushigi na Kagami GDMP01 = Disney's Magical Mirror Starring Mickey Mouse GDNJE8 = Dokapon DX GDOP41 = Disney's Donald Duck PK GDPJAF = Mr. Driller: Drill Land GDQE7L = Darkened Skye GDQP6S = Darkened Skye GDREAF = Dead to Rights GDRP69 = Dead to Rights GDRPAF = Dead to Rights GDSE78 = Dark Summit GDSP78 = Dark Summit GDTE69 = Def Jam Vendetta GDTP69 = Def Jam Vendetta GDUJA7 = Duel Masters Nettou Battle GDVE6L = Driven GDVP6L = Driven GDWEA4 = Disney Sports Football GDXEA4 = Disney Sports Skateboarding GDXJA4 = Disney Sports Skateboarding GDXPA4 = Disney Sports Skateboarding GE3E5D = Midway Arcade Treasures 3 GE4E7D = 4x4 Evo 2 GE5EA4 = TMNT: Mutant Melee GE6JA4 = Eisei Meijin VI GE9E5D = Ed, Edd n Eddy: The Mis-Edventures GEAE8P = Skies of Arcadia Legends GEAJ8P = Eternal Arcadia Legends GEAP8P = Skies of Arcadia Legends GEBEA4 = Evolution Snowboarding GEBPA4 = Evolution Snowboarding GEDE01 = Eternal Darkness: Sanity's Requiem GEDJ01 = Eternal Darkness: Manekareta 13-nin GEDP01 = Eternal Darkness: Sanity's Requiem GEJJCM = Jikkyou Powerful Pro Yakyuu 11 Chou Ketteiban GEME7F = Egg Mania: Eggstreme Madness GEMP7F = Eggo Mania GEND69 = James Bond 007: Everything Or Nothing GENE69 = James Bond 007: Everything Or Nothing GENF69 = James Bond 007: Everything Or Nothing GENP69 = 007: Everything Or Nothing GENS69 = James Bond 007: Everything Or Nothing GEOE08 = Capcom vs. SNK 2 EO GEOP08 = Capcom Vs. SNK2 EO: Millionaire Fighting 2001 GESEA4 = Evolution Skateboarding GESPA4 = Evolution Skateboarding GEVJ0M = Shinki Sekai Evolutia GEWE41 = Evolution Worlds GEWP41 = Evolution Worlds GEXE52 = Disney's Extreme Skate Adventure GEXP52 = Disney Extreme Skate Adventure GEXX52 = Disney's Extreme Skate Adventure GEXY52 = Disney Extreme Skate Adventure GEYE69 = Fight Night Round 2 GEYJ69 = Fight Night Round 2 GEYP69 = Fight Night Round 2 GEZE8P = Billy Hatcher and the Giant Egg GEZP8P = Billy Hatcher and the Giant Egg GF2E69 = F1 2002 GF2P69 = F1 2002 GF3E8P = NFL 2K3 GF3P8P = NFL 2K3 GF4E52 = Fantastic 4 GF4F52 = Fantastic Four GF4P52 = Fantastic 4 GF5D69 = FIFA Football 2005 GF5E69 = FIFA Soccer 2005 GF5F69 = FIFA Football 2005 GF5H69 = FIFA Football 2005 GF5I69 = FIFA Football 2005 GF5P69 = FIFA Football 2005 GF5S69 = FIFA Football 2005 GF6D69 = FIFA 06 GF6E69 = FIFA Soccer 06 GF6F69 = FIFA 06 GF6H69 = FIFA 06 GF6P69 = FIFA 06 GF6S69 = FIFA 06 GF7E01 = Star Fox: Assault GF7P01 = Star Fox Assault GF8E69 = FIFA Street GF8P69 = FIFA Street GFAD69 = FIFA Soccer 2003 GFAE69 = FIFA Soccer 2003 GFAF69 = FIFA Soccer 2003 GFAI69 = FIFA Football 2003 GFAJ69 = FIFA Soccer 2003 GFAP69 = FIFA Football 2003 GFAS69 = FIFA Football 2003 GFBE5D = FireBlade GFBP5D = Fireblade GFCP69 = F1 Career Challenge GFDD69 = Freedom Fighters GFDE69 = Freedom Fighters GFDF69 = Freedom Fighters GFDP69 = Freedom Fighters GFEE01 = Fire Emblem: Path of Radiance GFEJ01 = Fire Emblem: Souen no Kiseki GFEP01 = Fire Emblem: Path of Radiance GFFE5D = Freaky Flyers GFGEA4 = Frogger Beyond GFGPA4 = Frogger Beyond GFHP6V = Neighbours From Hell GFIE69 = 2002 FIFA World Cup GFKE69 = Freekstyle GFKP69 = Freekstyle GFMJAF = Family Stadium 2003 GFNJG2 = Finding Nemo GFOE78 = The Fairly OddParents - Shadow Showdown GFPEA4 = Frogger: Ancient Shadow GFQEA4 = Frogger's Adventures: The Rescue GFSD69 = 2002 FIFA World Cup GFSE69 = FIFA Soccer 2002 GFSF69 = 2002 FIFA World Cup GFSJ69 = FIFA Soccer 2002 GFSP69 = 2002 FIFA World Cup GFTE01 = Mario Golf: Toadstool Tour GFTJ01 = Mario Golf: Family Tour GFTP01 = Mario Golf: Toadstool Tour GFUE4Z = Future Tactics: The Uprising GFUP6V = Future Tactics: The Uprising GFVE5D = NFL Blitz Pro GFWE78 = The Fairly OddParents: Breakin' Da Rules GFXE5D = Freestyle Metal X GFYE69 = FIFA Street 2 GFYP69 = FIFA Street 2 GFZE01 = F-Zero GX GFZJ01 = F-Zero GX GFZJ8P = F-Zero AX GFZP01 = F-Zero GX GG1J08 = Donkey Kong: Jungle Fever GG2E4Z = Trigger Man GG3J08 = Donkey Kong: Banana Kingdom GG4E08 = Gotcha Force GG4P08 = Gotcha Force GG5E52 = Cabela's Big Game Hunter 2005 GGAJB2 = Mobile Suit Gundam: The Ace Pilot GGCE0A = Goblin Commander: Unleash The Horde GGCP0A = Goblin Commander: Unleash the Horde GGEE41 = Beyond Good & Evil GGEP41 = Beyond Good And Evil GGEX41 = Beyond Good And Evil GGEY41 = Beyond Good And Evil GGFJ01 = GiFTPiA GGNE5D = The Grim Adventures of Billy and Mandy GGPE01 = Mario Kart Arcade GP GGPE02 = Mario Kart Arcade GP 2 GGPJ02 = Mario Kart Arcade GP 2 GGPJAF = SD Gundam Gashapon Wars GGPJB2 = SD Gundam Gashapon Wars GGRD41 = Tom Clancy's Ghost Recon GGRE41 = Tom Clancy's Ghost Recon GGRP41 = Tom Clancy's Ghost Recon GGSEA4 = Metal Gear Solid: The Twin Snakes GGSJA4 = Metal Gear Solid: The Twin Snakes GGSPA4 = Metal Gear Solid: The Twin Snakes GGTE01 = Chibi-Robo! GGTJ01 = Chibi-Robo! GGTP01 = Chibi-Robo! GGVD78 = Spongebob Squarepants : The Movie GGVE78 = SpongeBob SquarePants: The Movie GGVP78 = Spongebob Squarepants: The Movie GGVX78 = Spongebob Squarepants : The Movie GGYE41 = Tom Clancy's Ghost Recon 2 GGYP41 = Tom Clancy's Ghost Recon 2 GGZE52 = Madagascar GGZH52 = Madagascar GGZI52 = Madagascar GGZJB2 = Madagascar GGZP52 = Madagascar GGZS52 = Madagascar GGZX52 = Madagascar GH2E69 = Need for Speed: Hot Pursuit 2 GH2P69 = Need For Speed Hot Pursuit 2 GH3E69 = NHL 2003 GH3P69 = NHL 2003 GH4D69 = Harry Potter and the Goblet of Fire GH4E69 = Harry Potter and the Goblet of Fire GH4F69 = Harry Potter and the Goblet of Fire GH4H69 = Harry Potter and the Goblet of Fire GH4I69 = Harry Potter and the Goblet of Fire GH4J69 = Harry Potter to Honoo no Goblet GH4M69 = Harry Potter and the Goblet of Fire GH4P69 = Harry Potter and the Goblet of Fire GH4S69 = Harry Potter and the Goblet of Fire GH5D52 = Over The Hedge GH5E52 = Over The Hedge GH5F52 = Over The Hedge GH5P52 = Over The Hedge GH6EAF = Hello Kitty: Roller Rescue GH6P7N = Hello Kitty: Roller Rescue GH7E5D = Happy Feet GH9P52 = Tony Hawk's American Wasteland GHAE08 = Resident Evil 2 GHAJ08 = Biohazard 2 GHAP08 = Resident Evil 2 GHBE7D = The Hobbit GHBP7D = The Hobbit GHCD4Q = Chicken Little GHCE4Q = Chicken Little GHCF4Q = Chicken Little GHCJG9 = Chicken Little GHCP4Q = Chicken Little GHEJ91 = Homeland GHFE4Z = Pinball Hall Of Fame: The Gottlieb Collection GHGEEB = Go! Go! Hypergrind GHKD7D = Hulk GHKE7D = Hulk GHKF7D = Hulk GHKP7D = Hulk GHKS7D = Hulk GHLE69 = Harry Potter and the Sorcerer's Stone GHLJ69 = Harry Potter to Kenja no Ishi GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Sorcerer's Stone GHLY69 = Harry Potter and the Sorcerer's Stone GHLZ69 = Harry Potter and the Sorcerer's Stone GHMD4F = Hitman 2: Silent Assassin GHME4F = Hitman 2: Silent Assassin GHMF4F = Hitman 2: Silent Assassin GHMP4F = Hitman 2: Silent Assassin GHNE71 = Hunter: The Reckoning GHNX71 = Hunter: The Reckoning GHPE52 = Street Hoops GHQE7D = The Simpsons: Hit & Run GHQP7D = The Simpsons: Hit & Run GHRE78 = Hot Wheels: World Race GHRP78 = Hot Wheels: World Race GHSE69 = Harry Potter and the Chamber of Secrets GHSJ69 = Harry Potter to Himitsu no Heya GHSP69 = Harry Potter and the Chamber of Secrets GHSX69 = Harry Potter and the Chamber of Secrets GHSY69 = Harry Potter and the Chamber of Secrets GHTJA4 = Hikaru No Go 3 GHUE7D = The Incredible Hulk: Ultimate Destruction GHUF7D = The Incredible Hulk Ultimate Destruction GHUP7D = The Incredible Hulk Ultimate Destruction GHVE08 = Disney's Hide & Sneak GHVP08 = Disney's Hide & Sneak GHWE78 = Hot Wheels: Velocity X GHWP78 = Hot Wheels: Velocity X GHYE6S = The Haunted Mansion GHZE5D = NHL Hitz Pro GI2J18 = Momotarou Dentetsu 12 GIAE7D = Ice Age 2: The Meltdown GIAP7D = Ice Age 2 : The Meltdown GIBE4F = The Italian Job GIBP4F = The Italian Job GICD78 = The Incredibles GICE78 = The Incredibles GICF78 = The Incredibles GICH78 = The Incredibles GICJG9 = Mr. Inkurediburu GICP78 = The Incredibles GIFJDQ = Generation of Chaos Exceed GIGJ8P = Bleach GC: Tasogare Ni Mamieru Shinigami GIHD78 = Scooby-Doo! Night of 100 Frights GIHE78 = Scooby-Doo! Night of 100 Frights GIHP78 = Scooby-Doo! Night of 100 Frights GIIJ18 = Momotarou Dentetsu 11 GIJEFP = Space Raiders GIJJC0 = Space Raiders GIKE70 = Ikaruga GIKJ70 = Ikaruga GIKP70 = Ikaruga GILE51 = Aggressive Inline GILP51 = Aggressive Inline GINE69 = Batman Begins GINX69 = Batman Begins GIPEAF = Shonen Jump's One Piece: Pirates Carnival GIPJB2 = Shonen Jump's One Piece: Pirates Carnival GIQE78 = The Incredibles: Rise of the Underminer GIQJ8P = The Incredibles: Rise of the Underminer GIQP78 = The Incredibles: Rise of the Underminer GIQX78 = The Incredibles: Rise of the Underminer GIQY78 = The Incredibles: Rise of the Underminer GISE36 = Second Sight GISP36 = Second Sight GITE01 = Geist GITP01 = Geist GIVE4Z = Intellivision Lives GIZE52 = Ty the Tasmanian Tiger 3: Night of the Quinkan GJ2JCM = Jikkyou World Soccer 2002 GJ2PA4 = International Superstar Soccer 2 GJ3PA4 = International Superstar Soccer 3 GJBE18 = Bomberman Jetters GJBE5G = Bomberman Jetters GJBJ18 = Bomberman Jetters GJCE8P = Samurai Jack: The Shadow of Aku GJCP8P = Samurai Jack: The Shadow of Aku GJDE5S = Judge Dredd: Dredd vs. Death GJDX7D = Judge Dredd: Dredd vs. Death GJDY7D = Judge Dredd: Dredd vs. Death GJFE78 = Jimmy Neutron Jet Fusion GJFP78 = Jimmy Neutron Jet Fusion GJKD52 = Star Wars Jedi Knight II: Jedi Outcast GJKE52 = Star Wars Jedi Knight II: Jedi Outcast GJKF52 = Star Wars Jedi Knight II: Jedi Outcast GJKP52 = Star Wars Jedi Knight II: Jedi Outcast GJNE78 = Jimmy Neutron Boy Genius GJNP78 = Jimmy Neutron Boy Genius GJPJCM = Jikkyou Powerful Pro Yakyuu 11 GJSJ18 = Hudson Selection Vol. 2: Star Soldier GJUD78 = Tak and the Power of JuJu GJUE78 = Tak and the Power of Juju GJUF78 = Tak and the Power of JuJu GJUP78 = Tak and the Power of JuJu GJWE78 = Tak: The Great JuJu Challenge GJWP78 = Tak: The Great JuJu Challenge GJXE51 = Vexx GJXP51 = Vexx GJYE78 = Jimmy Neutron: Attack of the Twonkies GJYP78 = Jimmy Neutron Boy Genius: Attack of the Twonkies GJZE52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GJZP52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GK2D52 = Spider-Man 2 GK2E52 = Spider-Man 2 GK2F52 = Spider-Man 2 GK2P52 = Spider-Man 2 GK3E8P = NBA 2K3 GK3P8P = NBA 2K3 GK4E01 = Baten Kaitos Origins GK4J01 = Baten Kaitos II: Hajimari no Tsubasa to Kamigami no Shishi GK5E78 = Monster House GK5P78 = Monster House GK5X78 = Monster House GK6JA4 = Croket Banking No Kikiwosukue GK7E08 = Killer7 GK7J08 = Killer7 GK7P08 = Killer 7 GK9EA4 = Karaoke Revolution Party GKAE8P = Amazing Island GKAJ8P = Kaijuu no Shima: Amazing Island GKBEAF = Baten Kaitos Eternal Wings and the Lost Ocean GKBJAF = Baten Kaitos: Owaranai Tsubasa to Ushinawareta Umi GKBPAF = Baten Kaitos: Eternal Wings and the Lost Ocean GKDJ01 = Kyojin no Doshin GKDP01 = Doshin the Giant GKEJA4 = PAWAFURU PUROYAKYU 12 KETTEIBAN GKFEGG = Chaos Field GKFJ8P = Chaos Field Expanded GKGE01 = Donkey Konga GKGJ01 = Donkey Konga GKGP01 = Donkey Konga GKHEA4 = King Arthur GKHPA4 = King Arthur GKJD78 = Cars GKJE78 = Cars GKJF78 = Cars GKJH78 = Cars GKJJ78 = Cars GKJP78 = Cars GKJS78 = Cars GKKE69 = Knockout Kings 2003 GKKP69 = Knockout Kings 2003 GKLD69 = Lord of the Rings: The Return of the King GKLE69 = Lord of the Rings: The Return of the King GKLF69 = Lord of the Rings: The Return of the King GKLI69 = Lord of the Rings: The Return of the King GKLJ69 = The Lord of the Rings: The Return of the King GKLP69 = Lord of the Rings: The Return of the King GKLS69 = Lord of the Rings: The Return of the King GKME41 = Prince of Persia: The Two Thrones GKMP41 = Prince of Persia: The Two Thrones GKNEB2 = Ultimate Muscle: Legends vs. New Generation GKNJB2 = Kinnikuman Nisei: Shinsedai Choujin vs Densetsu Choujin GKOE70 = Kao The Kangaroo Round 2 GKOP6V = Kao The Kangaroo Round 2 GKPJA4 = Jikkyou Powerful Pro Yakyuu 12 GKQJ01 = Kururin Squash! GKREB2 = Ribbit King GKRPB2 = Ribbit King GKSE52 = Kelly Slater's Pro Surfer GKSP52 = Kelly Slater's Pro Surfer GKSX52 = Kelly Slater's Pro Surfer GKTJA4 = Captain Tsubasa: Ougon Sedai no Chousen GKUE9G = Scaler GKWJ18 = DreamMix TV World Fighters GKXJE7 = Kiwame Mahjong DX2 GKYE01 = Kirby Air Ride GKYJ01 = Kirby Airride GKYP01 = Kirby Air Ride GKZD9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZE9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZF9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP54 = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GL2E51 = Legends of Wrestling 2 GL2P51 = Legends of Wrestling II GL3JE8 = Lupin The Third - Umi Ni Kieta Hihou GL5E4F = LEGO Star Wars: The Video Game GL5P4F = LEGO Star Wars: The Video Game GL5X4F = LEGO Star Wars: The Video Game GL7E64 = LEGO Star Wars II: The Original Trilogy GL7P64 = LEGO Star Wars II: The Original Trilogy GL8D4F = Lara Croft Tomb Raider: Legend GL8E4F = Lara Croft Tomb Raider: Legend GL8F4F = Lara Croft Tomb Raider: Legend GL8P4F = Lara Croft Tomb Raider: Legend GLBE8P = Home Run King GLCD52 = Lemony Snickets A Series Of Unfortunate Events GLCE52 = Lemony Snickets A Series Of Unfortunate Events GLCF52 = Lemony Snickets A Series Of Unfortunate Events GLCP52 = Lemony Snickets A Series Of Unfortunate Events GLCS52 = Lemony Snickets A Series Of Unfortunate Events GLEE08 = Resident Evil 3: Nemesis GLEJ08 = BioHazard 3: Last Escape GLEP08 = Resident Evil 3: Nemesis GLGP41 = Largo Winch : Empire Under Threat GLHEG9 = Flushed Away GLHPG9 = Flushed Away GLIJA7 = Special Jinsei Game GLJJMS = Radirgy GLLE78 = Ratatouille GLLF78 = Ratatouille GLME01 = Luigi's Mansion GLMJ01 = Luigi's Mansion GLMP01 = Luigi's Mansion GLNE69 = Looney Tunes: Back in Action GLNP69 = Looney Tunes: Back in Action GLOD69 = Lord of the Rings: The Two Towers GLOE69 = Lord of the Rings: The Two Towers GLOF69 = Lord of the Rings: The Two Towers GLOI69 = Lord of the Rings: The Two Towers GLOP69 = Lord of the Rings: The Two Towers GLOS69 = Lord of the Rings: The Two Towers GLQE41 = Tom Clancy's Rainbow Six: Lockdown GLQP41 = Tom Clancy's Rainbow Six: Lockdown GLRD64 = Star Wars Rogue Squadron III: Rebel Strike GLRE64 = Star Wars Rogue Squadron III: Rebel Strike GLRF64 = Star Wars Rogue Squadron III: Rebel Strike GLRJ13 = Star Wars Rogue Squadron III: Rebel Strike GLRP64 = Star Wars Rogue Squadron III: Rebel Strike GLSD64 = Gladius GLSE64 = Gladius GLSF64 = Gladius GLSP64 = Gladius GLUE7U = Lotus Challenge GLVD4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVE4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVF4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVP4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLWE51 = Legends of Wrestling GLWP51 = Legends of Wrestling GLXJ29 = Legend of Golfer GLYE69 = NBA Live 2005 GLYP69 = NBA Live 2005 GLZD69 = James Bond 007: From Russia With Love GLZE69 = 007: From Russia With Love GLZF69 = James Bond 007: From Russia With Love GLZP69 = James Bond 007: From Russia With Love GM2E8P = Super Monkey Ball 2 GM2J8P = Super Monkey Ball 2 GM2P8P = Super Monkey Ball 2 GM3E69 = Madden NFL 2003 GM3P69 = Madden NFL 2003 GM4E01 = Mario Kart: Double Dash!! GM4J01 = Mario Kart: Double Dash!! GM4P01 = Mario Kart: Double Dash!! GM5D7D = Metal Arms: Glitch in the System GM5E7D = Metal Arms: Glitch in the System GM5F7D = Metal Arms: Glitch in the System GM5P7D = Metal Arms: Glitch in the System GM6EE9 = Medabots Infinity GM6PE9 = Medabots Infinity GM8E01 = Metroid Prime GM8J01 = Metroid Prime GM8P01 = Metroid Prime GM9E6S = Muppets Party Cruise GMAE51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMAP51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMBE8P = Super Monkey Ball GMBJ8P = Super Monkey Ball GMBP8P = Super Monkey Ball GMDE69 = Madden NFL 2002 GMEE70 = Men In Black II: Alien Escape GMEP70 = Men In Black II: Alien Escape GMFD69 = Medal of Honor: Frontline GMFE69 = Medal of Honor: Frontline GMFF69 = Medal of Honor: Frontline GMFI69 = Medal of Honor: Frontline GMFP69 = Medal of Honor: Frontline GMFS69 = Medal of Honor: Frontline GMHE52 = Mat Hoffmans Pro Bmx 2 GMHF52 = Mat Hoffman's Pro BMX 2 GMHP52 = Mat Hoffman's Pro BMX 2 GMIE70 = Mission Impossible: Operation Surma GMIP70 = Mission Impossible: Operation Surma GMJE41 = Monster Jam: Maximum Destruction GMJP41 = Monster Jam: Maximum Destruction GMKD5D = Mortal Kombat: Deadly Alliance GMKE5D = Mortal Kombat: Deadly Alliance GMKP5D = Mortal Kombat: Deadly Alliance GMLEA4 = ESPN MLS Extra Time 2002 GMNE78 = Monsters, Inc. Scream Arena GMNP78 = Monsters, Inc. Scream Arena GMOP70 = Micro Machines GMPE01 = Mario Party 4 GMPJ01 = Mario Party 4 GMPP01 = Mario Party 4 GMQE70 = Monopoly Party GMQP70 = Monopoly Party GMRE70 = Big Air Freestyle GMRP70 = Big Air Freestyle GMSE01 = Super Mario Sunshine GMSJ01 = Super Mario Sunshine GMSP01 = Super Mario Sunshine GMTE69 = Disney's Party GMTP69 = Disney's Party GMUE5D = Dr. Muto GMWD52 = Minority Report: Everybody Runs GMWE52 = Minority Report: Everybody Runs GMWF52 = Minority Report: Everybody Runs GMWP52 = Minority Report: Everybody Runs GMXE70 = Enter The Matrix GMXJB2 = Enter The Matrix GMXP70 = Enter The Matrix GMYJ8P = Gekitou Pro Yakyuu GMZE41 = Monster 4x4: Masters Of Metal GN2E70 = Nascar: Dirt To Daytona GN3E5D = NHL Hitz 2003 GN3P5D = NHL Hitz 2003 GN4E69 = Nascar 2005: Chase For The Cup GN5E69 = NHL 2005 GN5P69 = NHL 2005 GN6E69 = NHL 06 GN6P69 = NHL 06 GN7E69 = NFL Street 2 GN7P69 = NFL Street 2 GN8E69 = NBA Live 2004 GN8P69 = NBA Live 2004 GN9E70 = Nickelodeon Party Blast GNAE8P = NCAA College Football 2K3 GNBE01 = NBA Courtside 2002 GNBP01 = NBA Courtside 2002 GNCE69 = Nascar Thunder 2003 GNDD69 = Need For Speed Underground GNDE69 = Need For Speed Underground GNDF69 = Need For Speed Underground GNDP69 = Need For Speed Underground GNED78 = Finding Nemo GNEE78 = Finding Nemo GNEF78 = Finding Nemo GNEP78 = Finding Nemo GNES78 = Finding Nemo GNFE5D = NFL Blitz 2002 GNGE69 = NCAA Football 2003 GNHE5D = NHL Hitz 2002 GNHP5D = NHL Hitz 20-02 GNIEA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNIPA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNJEAF = I-Ninja GNKE8P = NCAA College Basketball 2K3 GNLE69 = NBA Live 2003 GNLP69 = NBA Live 2003 GNMEAF = Namco Museum GNNE69 = NFL Street GNNP69 = NFL Street GNOE78 = Nicktoons Unite! GNOX78 = Spongebob Squarepants & Friends: Unite! GNPP70 = Nickelodeon Party Blast GNQE69 = Madden NFL 2005 GNQP69 = Madden NFL 2005 GNREDA = Naruto Clash of Ninja GNRJDA = NARUTO Gekitô Ninja Taisen! GNSE69 = NBA Street GNSJ69 = NBA Street GNUEDA = Naruto Clash of Ninja 2 GNUJDA = Naruto: Gekitou Ninja Taisen! 2 GNUPDA = Naruto: Clash of Ninja - European Version GNVE69 = NHL 2004 GNVP69 = NHL 2004 GNWE69 = Def Jam: Fight For NY GNWP69 = Def Jam: Fight For NY GNXE69 = NCAA Football 2004 GNZE69 = NBA Street Vol.2 GNZP69 = NBA Street Vol.2 GO2D4F = Blood Omen 2: The Legacy of Kain Series GO2E4F = Blood Omen 2: The Legacy of Kain Series GO2F4F = Blood Omen 2: The Legacy of Kain Series GO2P4F = Blood Omen 2: The Legacy of Kain Series GO3E5D = NFL Blitz 2003 GO7D69 = James Bond 007: NightFire GO7E69 = 007: NightFire GO7F69 = James Bond 007: NightFire GO7P69 = James Bond 007: NightFire GO7S69 = James Bond 007: NightFire GOAE52 = Cabela's Outdoor Adventures GOBE4Z = Bad Boys: Miami Takedown GOBP7N = Bad Boys II GOCE5D = RoadKill GODJGA = Ohenro-San: Hosshin no Dojo GOFE7L = Outlaw Golf GOFP6S = Outlaw Golf GOGJB2 = One Piece: Grand Battle! 3 GOME01 = Mario Power Tennis GOMJ01 = Mario Tennis GC GOMP01 = Mario Power Tennis GOND69 = Medal of Honor: European Assault GONE69 = Medal of Honor: European Assault GONF69 = Medal of Honor: European Assault GONJ13 = Medal of Honor: Europa Kyoushuu GONP69 = Medal of Honor: European Assault GOOE01 = Odama GOOJ01 = Odama GOOP01 = Odama GOPEB2 = Shonen Jump's One Piece: Grand Battle GOPJB2 = One Piece: Grand Battle! Rush GOQE82 = One Piece: Grand Adventure GOQEAF = Shonen Jump's One Piece: Grand Adventure GOSE41 = Open Season GOSP41 = Open Season GOSX41 = Open Season GOUPNK = Cocoto Funfair GOWD69 = Need For Speed Most Wanted GOWE69 = Need For Speed Most Wanted GOWF69 = Need For Speed Most Wanted GOWJ69 = Need For Speed Most Wanted GOWP69 = Need For Speed Most Wanted GOYD69 = GoldenEye: Rogue Agent GOYE69 = GoldenEye: Rogue Agent GOYF69 = GoldenEye: Rogue Agent GOYP69 = GoldenEye: Rogue Agent GOYS69 = GoldenEye: Rogue Agent GP2EAF = Pac-Man World 2 GP2P69 = Pac-Man World 2 GP3E78 = The Polar Express GP3P78 = The Polar Express GP4J18 = Hudson Selection Vol. 3: Bonk's Adventure GP5E01 = Mario Party 5 GP5J01 = Mario Party 5 GP5P01 = Mario Party 5 GP6E01 = Mario Party 6 GP6J01 = Mario Party 6 GP6P01 = Mario Party 6 GP7E01 = Mario Party 7 GP7J01 = Mario Party 7 GP7P01 = Mario Party 7 GP8EAF = Pac-Man World 3 GP8P69 = Pac-Man World 3 GP8PAF = Pac-Man World 3 GP9E7F = Rogue Ops GP9P7F = Rogue Ops GPAE01 = Pokémon Channel GPAJ01 = Pokémon Channel GPAP01 = Pokémon Channel GPAU01 = Pokémon Channel GPDE51 = Dakar 2: The World's Ultimate Rally GPDP51 = Dakar 2: The World's Ultimate Rally GPEJ2Q = Pool Edge GPHD52 = Pitfall: The Lost Expedition GPHE52 = Pitfall: The Lost Expedition GPHF52 = Pitfall: The Lost Expedition GPHP52 = Pitfall: The Lost Expedition GPIE01 = Pikmin GPIJ01 = Pikmin GPIP01 = Pikmin GPJJCM = Jikkyou Powerful Pro Yakyuu 10 GPKE41 = Disney's PK Out of the Shadows GPLD9G = Piglet's Big Game GPLE9G = Piglet's Big Game GPLF9G = Piglet's Big Game GPLP9G = Piglet's Big Game GPMEAF = Pac Man Fever GPNE08 = P.N.03 GPNJ08 = P.N.03 GPNP08 = P.N.03 GPOE8P = Phantasy Star Online Episode I & II GPOJ8P = Phantasy Star Online Episode I & II GPOP8P = Phantasy Star Online Episode I&II GPPJCM = Jikkyou Powerful Pro Yakyuu 9 GPQE6L = The Powerpuff Girls: Relish Rampage GPQP6L = The Powerpuff Girls: Relish Rampage GPRE7U = Pool Paradise GPRP7U = Pool Paradise GPSE8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPSJ8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPSP8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPTE41 = Prince of Persia: The Sands of Time GPTP41 = Prince of Persia: The Sands of Time GPUE8P = Puyo Pop Fever GPUP6W = Puyo Pop Fever GPUP8P = Puyo Pop Fever GPVE01 = Pikmin 2 GPVJ01 = Pikmin 2 GPVP01 = Pikmin 2 GPWEAF = Spawn: Armageddon GPWP69 = Spawn: Armageddon GPWPAF = Spawn: Armageddon GPXE01 = Pokémon Box: Ruby & Sapphire GPXJ01 = Pokémon Box: Ruby & Sapphire GPXP01 = Pokémon Box: Ruby & Sapphire GPYJ8P = Puyo Pop Fever GPZJ01 = Nintendo Puzzle Collection GQ4E78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ4F78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ4P78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ8E69 = Madden NFL 08 GQBE51 = NFL Quarterback Club 2002 GQCD52 = Call of Duty 2: Big Red One GQCE52 = Call of Duty 2: Big Red One GQCF52 = Call of Duty 2: Big Red One GQCP52 = Call of Duty 2: Big Red One GQCS52 = Call of Duty 2: Big Red One GQFFFK = Franklin: A Birthday Surprise GQLE9G = Dora The Explorer: Journey To The Purple Planet GQLP54 = Dora The Explorer: Journey to the Purple Planet GQNE5D = Mortal Kombat: Deception GQPE78 = SpongeBob SquarePants: Battle for Bikini Bottom GQPP78 = SpongeBob Squarepants: Battle For Bikini Bottom GQQD78 = SpongeBob SquarePants: Lights, Camera, PANTS! GQQE78 = SpongeBob SquarePants: Lights, Camera, Pants! GQQF78 = SpongeBob SquarePants: Lights, Camera, PANTS! GQQH78 = SpongeBob SquarePants: Lights, Camera, Pants! GQQP78 = SpongeBob SquarePants: Lights, Camera, Pants! GQRJ18 = Hudson Selection Vol. 1: Cubic Lode Runner GQSDAF = Tales of Symphonia GQSEAF = Tales of Symphonia GQSFAF = Tales of Symphonia GQSIAF = Tales of Symphonia GQSPAF = Tales of Symphonia GQSSAF = Tales of Symphonia GQTE4Q = Meet the Robinsons GQWE69 = Harry Potter: Quidditch World Cup GQWJ69 = Harry Potter World Cup GQWP69 = Harry Potter: Quidditch World Cup GQWX69 = Harry Potter: Quidditch World Cup GQXE69 = Madden NFL 2004 GQXP69 = Madden NFL 2004 GQZJ01 = Densetsu no Quiz Ou Ketteisen GR2E52 = Lost Kingdoms 2 GR2JCQ = Rune II: Koruten no Kagi no Himitsu GR2P52 = Lost Kingdoms 2 GR3E5D = Red Card 2003 GR4EMZ = MC Groovz Dance Craze GR4PMZ = MC Groovz Dance Craze GR5J1K = Robocop: Aratanaru Kiki GR6D78 = Bratz: Rock Angelz GR6E78 = Bratz: Rock Angelz GR6F78 = Bratz: Rock Angelz GR6P78 = Bratz: Rock Angelz GR8D69 = Medal of Honor: Rising Sun GR8E69 = Medal of Honor: Rising Sun GR8F69 = Medal of Honor: Rising Sun GR8J69 = Medal of Honor: Rising Sun GR8P69 = Medal of Honor: Rising Sun GR9E6L = Reign of Fire GR9P6L = Reign of Fire GRAE5Z = Rally Championship GRAP75 = Rally Championship GRBE6S = Robotech: Battlecry GRBP6S = Robotech : Battlecry GRDP5D = RedCard GREE08 = Mega Man Network Transmission GREJ08 = RockMan EXE Transmission GREP08 = Mega Man Network Transmission GRFD78 = Red Faction II GRFE78 = Red Faction II GRFF78 = Red Faction II GRFP78 = Red Faction II GRHE41 = Rayman 3: Hoodlum Havoc GRHP41 = Rayman 3: Hoodlum Havoc GRJEAF = R: Racing Evolution GRJJAF = R:Racing Evolution: Life in the Fast Lane GRJP69 = R: Racing GRKE41 = Rocky GRKP7G = Rocky GRLE41 = Pro Rally GRLP41 = Pro Rally GRMJDA = Monopoly: Mezase!! Daifugou Jinsei!! GRNE52 = Lost Kingdoms GRNJCQ = Rune GRNP52 = Lost Kingdoms GROE5Z = Road Trip: The Arcade Edition GROP7J = Gadget Racers GRQE41 = City Racer GRRE78 = Rugrats: Royal Ransom GRRP78 = Rugrats: Royal Ransom GRSEAF = SoulCalibur II GRSJAF = SoulCalibur II GRSPAF = SoulCalibur II GRUE78 = Power Rangers Dino Thunder GRUF78 = Power Rangers Dino Thunder GRUP78 = Power Rangers Dino Thunder GRVEA4 = Rave Master GRWJD9 = Super Robot Taisen GC GRYE41 = Rayman Arena GS2D78 = Summoner: A Goddess Reborn GS2E78 = Summoner: A Goddess Reborn GS2F78 = Summoner: A Goddess Reborn GS2P78 = Summoner: A Goddess Reborn GS3E51 = SX Superstar GS3P51 = SX Superstar GS7E5D = MLB SlugFest 2004 GS8E7D = Spyro: Enter the Dragonfly GS8P7D = Spyro: Enter the Dragonfly GS9E6S = Shrek Extra Large GS9P6S = Shrek Extra Large GSAE01 = Star Fox Adventures GSAJ01 = StarFox Adventures GSAP01 = Star Fox Adventures GSBJ8P = Sonic Adventure 2: Battle GSCE51 = Jeremy McGrath SuperCross World GSCP51 = Jeremy McGrath SuperCross World GSDEAF = Smashing Drive GSEJB2 = Shaman King: Soul Fight GSGE5D = MLB SlugFest 2003 GSHE5D = SpyHunter GSHP5D = SpyHunter GSKE7D = The Scorpion King: Rise of the Akkadian GSKP7D = The Scorpion King : Rise of the Akkadian GSMD52 = Spider-Man GSME52 = Spider-Man: The Movie GSMF52 = Spider-Man GSMP52 = Spider-Man GSNE8P = Sonic Adventure 2: Battle GSNP8P = Sonic Adventure 2: Battle GSOE8P = Sonic Mega Collection GSOJ8P = Sonic Mega Collection GSOP8P = Sonic Mega Collection GSPE69 = The Simpsons: Road Rage GSPP69 = The Simpsons: Road Rage GSQE78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSQP78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSRE7S = Smuggler's Run: Warzones GSRP7S = Smuggler's Run: Warzones GSSE8P = Sega Soccer Slam GSSJ8P = Sega Soccer Slam GSSP70 = Sega Soccer Slam GSSP8P = Sega Soccer Slam GSTE69 = SSX Tricky GSTJ69 = SSX Tricky GSTP69 = SSX Tricky GSUE70 = Superman: Shadow of Apokolips GSUP70 = Superman: Shadow of Apokolips GSVE78 = MX Superfly Featuring Ricky Carmichael GSVP78 = MX Superfly featuring Ricky Carmichael GSWD64 = Star Wars Rogue Leader: Rogue Squadron II GSWE64 = Star Wars Rogue Squadron II: Rogue Leader GSWF64 = Star Wars Rogue Leader: Rogue Squadron II GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = Star Wars Rogue Leader: Rogue Squadron II GSWP64 = Star Wars Rogue Leader: Rogue Squadron II GSWS64 = Star Wars Rogue Leader: Rogue Squadron II GSXD64 = Star Wars: The Clone Wars GSXE64 = Star Wars: The Clone Wars GSXF64 = Star Wars: The Clone Wars GSXJ13 = Star Wars: Clone Sensou GSXP64 = Star Wars: The Clone Wars GSXS64 = Star Wars: The Clone Wars GSYE6S = Shrek: Super Party GSYP6S = Shrek: Super Party GSZP41 = Speed Challenge: Jacques Villeneuve Racing Vision GT2J18 = Tengai Makyou 2: Manji Maru GT3D52 = Tony Hawk's Pro Skater 3 GT3E52 = Tony Hawk's Pro Skater 3 GT3F52 = Tony Hawk's Pro Skater 3 GT3J52 = Tony Hawk's Pro Skater 3 GT3P52 = Tony Hawk's Pro Skater 3 GT4D52 = Tony Hawk's Pro Skater 4 GT4E52 = Tony Hawk's Pro Skater 4 GT4F52 = Tony Hawk's Pro Skater 4 GT4P52 = Tony Hawk's Pro Skater 4 GT5E7N = Starsky & Hutch GT5P7N = Starsky & Hutch GT6E70 = Terminator 3: The Redemption GT6J70 = Terminator 3: The Redemption GT6P70 = Terminator 3: The Redemption GT7E41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7P41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7X41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT8E78 = Big Mutha Truckers GT8P78 = Big Mutha Truckers GT8P7N = Big Mutha Truckers GTAE5S = Top Angler : Real Bass Fishing GTAP5S = Top Angler: Real Bass Fishing GTCJBL = GT Cube GTDE52 = Tony Hawk's Underground GTDP52 = Tony Hawk's Underground GTEE01 = 1080° Avalanche GTEJ01 = 1080° Silver Storm GTEP01 = 1080° Avalanche GTFEA4 = Teenage Mutant Ninja Turtles GTFPA4 = Teenage Mutant Ninja Turtles GTGE60 = Top Gun: Combat Zones GTGP60 = Top Gun: Combat Zones GTHJD9 = Charinko Hero GTIE69 = Tiger Woods PGA Tour 2003 GTIP69 = Tiger Woods PGA Tour 2003 GTJE5L = Tom & Jerry in War of the Whiskers GTKD51 = Turok Evolution GTKE51 = Turok Evolution GTKP51 = Turok Evolution GTLE52 = True Crime: Streets of LA GTLP52 = True Crime: Streets of LA GTLX52 = True Crime: Streets of LA GTMJDA = Mutsu To Nohohon GTNJ18 = Hudson Selection Vol. 4: Adventure Island GTOJAF = Tales of Symphonia GTPP6S = Knights Of The Temple : Infernal Crusade GTQE6S = Tonka: Rescue Patrol GTRE78 = Tetris Worlds GTRP78 = Tetris Worlds GTSE4F = TimeSplitters 2 GTSP4F = TimeSplitters 2 GTUE8G = Tube Slider - The Championship of Future Formula GTVE70 = Transworld Surf: Next Wave GTWE70 = Taz Wanted GTWP70 = Taz Wanted GTYE69 = Ty the Tasmanian Tiger GTYP69 = Ty: The Tasmanian Tiger GTZE41 = Tarzan Untamed GTZP41 = Tarzan Freeride GU2D78 = 2 Games in 1: The Incredibles / Finding Nemo GU2F78 = 2 Games in 1: The Incredibles / Finding Nemo GU3D78 = 2 Games in 1: The SpongeBob SquarePants Movie / Tak 2: The Staff of Dreams GU4Y78 = 2 Games in 1: The SpongeBob SquarePants Movie / Battle for Bikini Bottom GU6E78 = Nicktoons - Battle for Volcano Island GUBE69 = The Urbz: Sims in the City GUBJ13 = The Urbz: Sims In The City GUBP69 = The Urbz: Sims In The City GUCD69 = UEFA Champions League 2004-2005 GUCF69 = UEFA Champions League 2004-2005 GUCP69 = UEFA Champions League 2004-2005 GUFE4Z = Ultimate Fighting Championship Throwdown GUFP4Z = UFC: Throwdown GUGD69 = Need For Speed Underground 2 GUGE69 = Need For Speed Underground 2 GUGF69 = Need For Speed Underground 2 GUGP69 = Need For Speed Underground 2 GUMD52 = Gun GUME52 = Gun GUMP52 = Gun GUNE5D = Gauntlet: Dark Legacy GUNP5D = Gauntlet: Dark Legacy GUPE8P = Shadow the Hedgehog GUPJ8P = Shadow the Hedgehog GUPP8P = Shadow the Hedgehog GUSE7F = Universal Studios Theme Park Adventure GUSP7F = Universal Studios Theme Park Adventure GUTD52 = Ultimate Spider-Man GUTE52 = Ultimate Spider-Man GUTF52 = Ultimate Spider-Man GUTI52 = Ultimate Spider-Man GUTJC0 = Ultimate Spider-Man GUTP52 = Ultimate Spider-Man GUTS52 = Ultimate Spider-Man GUVE51 = Freestyle Street Soccer GUVP51 = Urban Freestyle Soccer GUZE41 = Batman: Rise of Sin Tzu GUZP41 = Batman Rise of Sin Tzu GV3J70 = V-Rally 3 GV3P70 = V-Rally 3 GV4E69 = MVP Baseball 2005 GVCE08 = Viewtiful Joe: Red Hot Rumble GVCJ08 = Viewtiful Joe: Battle Carnival GVCP08 = Viewtiful Joe: Red Hot Rumble GVDE78 = Bratz Forever Diamondz GVDP78 = Bratz Forever Diamondz GVHE4F = Bionicle Heroes GVJE08 = Viewtiful Joe GVJJ08 = Viewtiful Joe GVJP08 = Viewtiful Joe GVKE52 = Cabela's Dangerous Hunts 2 GVLD69 = Marvel Nemesis: Rise of the Imperfects GVLE69 = Marvel Nemesis: Rise of the Imperfects GVLF69 = Marvel Nemesis: Rise of the Imperfects GVLP69 = Marvel Nemesis: Rise of the Imperfects GVMP41 = Super Bust-A-Move All Stars GVOE69 = Bionicle GVOP69 = Bionicle GVPE69 = MVP Baseball 2004 GVRE7H = Grooverider Slot Car Thunder GVS46E = Virtua Striker 4 Ver.2006 GVS46J = Virtua Striker 4 Ver.2006 GVSE8P = Virtua Striker 2002 GVSJ8P = VIRTUA STRIKER 3 ver.2002 GVSJ9P = Virtua Striker 4 Ver.2006 GVSP8P = Virtua Striker 3 Ver. 2002 GVWJDQ = Gakuen Toshi Vara Noir Roses GW2E78 = WWE Day of Reckoning 2 GW2P78 = WWE Day of Reckoning 2 GW3E78 = WWE WrestleMania X8 GW3JG2 = WWE WrestleMania X8 GW3P78 = WWE Wrestlemania X8 GW4E69 = Tiger Woods PGA Tour 2004 GW4P69 = Tiger Woods PGA Tour 2004 GW5D69 = Need For Speed Carbon GW5E69 = Need For Speed Carbon GW5F69 = Need For Speed Carbon GW5P69 = Need For Speed Carbon GW6JEM = Winning Eleven 6 Final Evolution GW7D69 = James Bond 007 in Agent Under Fire GW7E69 = 007: Agent Under Fire GW7F69 = James Bond 007 in Agent Under Fire GW7P69 = James Bond 007 in Agent Under Fire GW8E52 = World Series of Poker GW9E78 = WWE WrestleMania XIX GW9JG2 = WWE WrestleMania XIX GW9P78 = WWE WrestleMania XIX GWAD8P = Spartan Total Warrior GWAE8P = Spartan Total Warrior GWAF8P = Spartan Total Warrior GWAP8P = Spartan Total Warrior GWBE41 = Worms Blast GWBP41 = Worms Blast GWDP6S = World Racing GWEE51 = 18 Wheeler: American Pro Trucker GWEP8P = 18 Wheeler American Pro Trucker GWGE4F = Swingerz Golf GWGJ4F = Wai Wai Golf GWGP4F = Ace Golf GWHE41 = Winnie The Pooh Rumbly Tumbly Adventures GWHP41 = Winnie the Pooh's Rumbly Tumbly Adventure GWJE52 = Tony Hawk's American Wasteland GWKE41 = Peter Jackson's King Kong: The Official Game of the Movie GWKP41 = Peter Jackson's King Kong: The Official Game of the Movie GWLE6L = Wallace & Gromit in Project Zoo GWLP6L = Wallace & Gromit : Project Zoo GWLX6L = Wallace & Gromit in Project Zoo GWME51 = Worms 3D GWMP8P = Worms 3D GWOE5G = Blowout GWPE78 = WWE Day of Reckoning GWPJG2 = WWE Day of Reckoning GWPP78 = WWE Day of Reckoning GWQE52 = Wreckless: The Yakuza Missions GWQP52 = Wreckless: The Yakuza Missions GWRE01 = Wave Race: Blue Storm GWRJ01 = Wave Race: Blue Storm GWRP01 = Wave Race: Blue Storm GWSEA4 = ESPN International Winter Sports 2002 GWSJA4 = Hyper Sports 2002 Winter GWSPA4 = ESPN International Winter Sports GWTEA4 = WTA Tour Tennis GWTJA4 = WTA Tour Tennis GWTPA4 = Pro Tennis WTA Tour GWUE7D = Whirl Tour GWUP7D = Whirl Tour GWVE52 = X2: Wolverine's Revenge GWVP52 = X-Men 2: Wolverine's Revenge GWVX52 = X-Men 2 : Wolverine's Revenge GWWE01 = Wario World GWWJ01 = Wario World GWWP01 = Wario World GWYE41 = Tom Clancy's Splinter Cell: Double Agent GWYX41 = Tom Clancy's Splinter Cell: Double Agent GWZE01 = Dance Dance Revolution: Mario Mix GWZJ01 = Dance Dance Revolution: Mario Mix GWZP01 = Dancing Stage Mario Mix GX2D52 = X-Men Legends II: Rise of Apocalypse GX2E52 = X-Men Legends II: Rise of Apocalypse GX2P52 = X-Men Legends II: Rise of Apocalypse GX2S52 = X-Men Legends II: Rise of Apocalypse GX3E41 = XIII GX3P41 = XIII GX3X41 = XIII GXAE51 = XGRA Extreme G Racing Association GXAP51 = XGRA Extreme G Racing Association GXBE69 = SSX 3 GXBP69 = SSX 3 GXCE01 = Custom Robo GXEE8P = Sonic Riders GXEJ8P = Sonic Riders GXEP8P = Sonic Riders GXFD69 = FIFA Football 2004 GXFE69 = FIFA Soccer 2004 GXFF69 = FIFA Football 2004 GXFI69 = FIFA Football 2004 GXFP69 = FIFA Football 2004 GXFS69 = FIFA Football 2004 GXGE08 = Mega Man X Collection GXLE52 = X-Men Legends GXLP52 = X-Men Legends GXLX52 = X-Men Legends GXME52 = X-Men: Next Dimension GXMF52 = X-Men: Next Dimension GXMP52 = X-Men: Next Dimension GXNE5D = Rampage Total Destruction GXOE69 = SSX on Tour GXOJ69 = SSX On Tour with Mario GXOP69 = SSX On Tour GXOX69 = SSX On Tour GXPE78 = Sphinx and the Cursed Mummy GXPP78 = Sphinx and the Cursed Mummy GXQF41 = Taxi 3 GXRE08 = Mega Man X: Command Mission GXRJ08 = Rockman X: Command Mission GXRP08 = Mega Man X: Command Mission GXSE8P = Sonic Adventure DX: Director's Cut GXSP6W = Sonic Adventure DX : Director's Cut GXSP8P = Sonic Adventure DX: Director's Cut GXUE41 = Surf's Up GXXE01 = Pokémon XD: Gale of Darkness GXXJ01 = Pokemon XD: Yami no Kaze Dark Lugia GXXP01 = Pokémon XD: Gale of Darkness GY2E01 = Donkey Konga 2 GY2J01 = Donkey Konga 2 GY2P01 = Donkey Konga 2 GY3J01 = Donkey Konga 3 GYAD78 = Barnyard GYAE78 = Barnyard GYAP78 = Barnyard GYAX78 = Barnyard GYBE01 = Donkey Kong Jungle Beat GYBJ01 = Donkey Kong Jungle Beat GYBP01 = Donkey Kong Jungle Beat GYFEA4 = Yu-Gi-Oh! The Falsebound Kingdom GYFJA4 = Yu-Gi-Oh! The Falsebound Kingdom GYFPA4 = Yu-Gi-Oh! The Falsebound Kingdom GYKEB2 = Zatch Bell! Mamodo Battles GYMJA4 = Jikkyou Powerful Major League GYQE01 = Mario Superstar Baseball GYQJ01 = Super Mario Stadium Miracle Baseball GYQP01 = Mario Superstar Baseball GYRE41 = TMNT GYRP41 = TMNT GYTE69 = Ty The Tasmanian Tiger 2: Bush Rescue GYTP69 = Ty The Tasmanian Tiger 2: Bush Rescue GYWDE9 = Harvest Moon: A Wonderful Life GYWEE9 = Harvest Moon: A Wonderful Life GYWJ99 = Bokujou Monogatari: Wonderful Life GYWP41 = Harvest Moon: A Wonderful Life GYWPE9 = Harvest Moon: A Wonderful Life GZ2E01 = The Legend of Zelda: Twilight Princess GZ2J01 = Zelda no Densetsu: Twilight Princess GZ2P01 = The Legend of Zelda: Twilight Princess GZ3E70 = Dragon Ball Z: Budokai 2 GZ3P70 = Dragon Ball Z: Budokai 2 GZ3PB2 = Dragon Ball Z Budokai 2 GZCE51 = ZooCube GZCJB0 = ZooCube GZCP51 = Zoocube GZDE70 = Godzilla: Destroy all Monsters Melee GZDJ70 = Godzilla: Kaijuu Dairantou GZDP70 = Godzilla: Destroy all Monsters Melee GZEE70 = Dragon Ball Z: Sagas GZFJBP = Gekituisenki - Zero Fighter GZHJDA = Zoids Full Metal Crash GZLE01 = The Legend of Zelda: The Wind Waker GZLJ01 = Zelda no Densetsu: Kaze no Takuto GZLP01 = The Legend of Zelda: The Wind Waker GZMP7D = Butt-Ugly Martians Zoom or Doom GZOJDA = Zoids vs. GZPE70 = Zapper - One Wicked Cricket! GZPP70 = Zapper: One Wicked Cricket! GZQE7D = Robots GZQJ7D = Robots GZQP7D = Robots GZSE70 = Zoids Battle Legends GZSJDA = Zoids VS. II GZVJDA = Zoids vs. III GZWE01 = Wario Ware Inc.: Mega Party Game$! GZWJ01 = Atumare!! made in wario GZWP01 = Wario Ware Inc.: Mega Party Game$! HAAA = Photo Channel HABA = Wii Shop Channel HABK = Wii Shop Channel HACA = Mii Channel HACK = Mii Channel HADE = Internet Channel HADJ = Internet Channel HADP = Internet Channel HAFE = Forecast Channel HAFJ = Weather Channel HAFP = Weather Channel HAGE = News Channel HAGJ = News Channel HAGP = News Channel HAJE = Everybody Votes Channel HAJJ = Everybody Votes Channel HAJP = Everybody Votes Channel HAPE = Check Mii Out Channel HAPJ = Mii Contest Channel HAPP = Check Mii Out Channel HATE = Nintendo Channel HATJ = Nintendo Channel HATP = Nintendo Channel HAVJ = Today and Tomorrow Fortune Teller HAVK = Today And Tomorrow Channel HAVP = Today and Tomorrow Channel HAWE = Metroid Prime 3 Preview HAWJ = Metroid Prime 3 Preview HAWP = Metroid Prime 3 Preview HAYA = Photo Channel HAYK = Photo Channel HBNJ = TV Friend Channel HBWE01 = New Super Mario Bros. Wii: Hellboy Edition HC3J = USB Flash Optimization HCAJ = Band Bros. DX Speaker Channel HCAP = Jam with the Band Live HCBJ = Photo Channel 1.0 Restore Program HCDJ = Digicam Print Channel HCFE = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Wii Speak Channel HCGE = Wii + Internet HCGJ = Wii Plus Internet HCGP = Wii Plus Internet HCHJ = Food Service HCIJ = Wii no ma HCJP = BBC iPlayer Channel HCLE = Netflix HCLP = Netflix HCMP = Kirby TV HCQE = Hulu Plus HCQJ = Hulu HCRE = The Legend of Zelda: Skyward Sword Save Data Update Channel HCRJ = The Legend of Zelda Skyward Sword Update HCRP = The Legend of Zelda Skyward Sword Update HCSE = Wii U Transfer Tool HCSJ = Wii U Transfer Tool HCSP = Wii U Transfer Tool HCTE = Wii System Transfer HCTJ = Wii System Transfer HCTP = Wii System Transfer HCUE = Wii Menu Electronic Manual HCUJ = Wii Menu Electronic Manual HCUP = Wii Menu Electronic Manual HCVA = Wii U Menu HCWE = Amazon Instant Video HCWP = Amazon Instant Video HCXE = YouTube HCXJ = YouTube HCXP = YouTube HCZE = Wii System Transfer HWFL = HackWiiFlow JA2J = Shin Megami Tensei JA3J = Kamaitachi no Yoru JA4E = Super Ghouls 'n Ghosts JA4J = Chou-Makai-Mura JA4P = Super Ghouls'n Ghosts JA5J = Heracles no Eikou III: Kamigami no Chinmoku JA6E = Zombies Ate My Neighbors JA6J = Zombies Ate My Neighbors JA6P = Zombies JA7D = ActRaiser JA7E = ActRaiser JA7F = ActRaiser JA7J = Actraiser JA7P = ActRaiser JA8E = Final Fight JA8J = Final Fight JA8P = Final Fight JAAE = Super Mario World JAAJ = Super Mario World JAAK = Super Mario World JAAP = Super Mario World JABJ = Mario no Super Picross JABL = Mario’s Super Picross JACE = F-Zero JACJ = F-Zero JACK = F-Zero JACP = F-Zero JADD = The Legend of Zelda: A Link to the Past JADE = The Legend of Zelda: A Link to the Past JADF = The Legend of Zelda: A Link to the Past JADJ = Zelda no Densetsu: Kamigami no Triforce JADK = The Legend of Zelda: A Link to the Past JADP = The Legend of Zelda: A Link to the Past JAEE = Donkey Kong Country JAEJ = Super Donkey Kong JAEK = Donkey Kong Country JAEP = Donkey Kong Country JAFD = SimCity JAFE = Sim City JAFF = SimCity JAFJ = SimCity JAFP = SimCity JAGJ = Fire Emblem: Monshou no Nazo JAHE = R-Type III: The 3rd Lightning JAHJ = R-Type III: The Third Lightning JAHK = R-Type III: The Third Lightning JAHP = R-TYPE III : The Third Lightning JAIE = Super Castlevania IV JAIJ = Akumajou Dracula JAIP = Super Castlevania IV JAJE = Street Fighter II: The World Warrior JAJJ = Street Fighter II JAJP = Street Fighter II: The World Warrior JALE = Contra III: The Alien Wars JALJ = Contra Spirits JALK = Contra III: The Alien Wars JALP = Super Probotector: Alien Rebels JAME = Gradius III JAMJ = Gradius III JAMK = Gradius III JAMM = Gradius III JAPJ = Fire Emblem: Seisen no Keifu JAUJ = Famicom Bunko: Hajimari no Mori JAVE = Super Metroid JAVJ = Super Metroid JAVK = Super Metroid JAVP = Super Metroid JAWE = Romance of the Three Kingdoms IV: Wall of Fire JAWJ = San Goku Shi IV JAZD = The Legend of the Mystical Ninja JAZE = The Legend of The Mystical Ninja JAZJ = Ganbare Goemon: Yukihime Kyuushutsu Emaki JAZP = The Legend of the Mystical Ninja JB3D = Harvest Moon JB3E = Harvest Moon JB3J = Harvest Moon JB3P = Harvest Moon JB5J = Super Gussun Oyoyo JB6J = Treasure Hunter G JB7J = Front Mission: Gun Hazard JB9J = Gakkou de atta Kowai Hanashi JBAE = Metal Marines JBAJ = Militia JBBE = Super Street Fighter II: The New Challengers JBBJ = Super Street Fighter II: The New Challengers JBBP = Super Street Fighter II: The New Challengers JBCE = Kirby's Dream Course JBCJ = Kirby Bowl JBCK = Kirby's Dream Course JBCP = Kirby's Dream Course JBDD = Donkey Kong Country 2: Diddy's Kong-Quest JBDE = Donkey Kong Country 2: Diddy's Kong Quest JBDJ = Super Donkey Kong 2: Dixie & Diddy JBDK = Donkey Kong Country 2: Diddy Kong's Quest JBDP = Donkey Kong Country 2: Diddy's Kong-Quest JBEJ = Magical Drop JBFJ = Otogirisou JBGJ = Mystery Dungeon: Shiren the Wanderer JBHJ = Heracles no Eikou IV: Kamigami-kara no Okurimono JBIE = Street Fighter II Turbo: Hyper Fighting JBIJ = Street Fighter II Turbo: Hyper Fighting JBIP = Street Fighter II Turbo: Hyper Fighting JBKE = Breath of Fire II JBKJ = Breath of Fire II: Shimei no Ko JBKP = Breath of Fire II JBLE = Pac-Attack JBLJ = Cosmo Gang the Puzzle JBLP = Pac-Attack JBNE = Darius Twin JBNJ = Darius Twin JBOJ = Panel de Pon JBOK = Panel de Pon JBPE = Donkey Kong Country 3: Dixie Kong's Double Trouble JBPJ = Super Donkey Kong 3: Nazo no Krems Shima JBPP = Donkey Kong Country 3: Dixie Kong’s Double Trouble JBQE = Kirby's Avalanche JBQJ = Kirby's Avalanche JBQP = Kirby's Ghost Trap JBRE = Vegas Stakes JBRJ = Vegas Stakes JBRP = Vegas Stakes JBSE = Axelay JBSJ = Axelay JBSP = Axelay JBTE = Super Turrican JBTJ = Super Turrican JBTP = Super Turrican JBUE = Super Turrican 2 JBUJ = Super Turrican Two JBVJ = Der Langrisser JBWE = Cybernator JBWJ = Assault Suits Valken JBWK = Cybernator JBWP = Cybernator JBYE = Super R-Type JBYJ = Super R-Type JBYK = Super R-Type JBYP = Super R-Type JC2J = Taikou Risshiden JC3J = Bahamut Lagoon JC4E = Indiana Jones' Greatest Adventures JC4J = Indiana Jones Great Adventure JC4P = Indiana Jones' Greatest Adventures JC5J = Romancing SaGa JC6J = Romancing SaGa 2 JC7E = The Combatribes JC7J = The Combatribes JC8E = Final Fantasy II JC8J = Final Fantasy IV JC8M = Final Fantasy II JC8P = Final Fantasy 2 JC9J = Final Fantasy V JCAJ = DoReMi Fantasy: Milon no DokiDoki Daibouken JCAL = DoReMi Fantasy - Milon’s DokiDoki Adventure JCAN = DoReMi Fantasy: Milon's DokiDoki Adventure JCBE = Super Mario RPG: Legend of the Seven Stars JCBJ = Super Mario RPG JCBM = Super Mario RPG: Legend of the Seven Stars JCCE = Kirby Super Star JCCJ = Hoshi no Kirby Super Deluxe JCCP = Kirby’s Fun Pak JCDE = Kirby's Dream Land 3 JCDJ = Hoshi no Kirby 3 JCDM = Kirby’s Dream Land 3 JCEJ = Fire Emblem: Thracia 776 JCGJ = Ganbare Goemon 2: Kiteretsu Shougun Magginesu JCHJ = Ganbare Goemon 3 JCIJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo JCJE = Super Punch-Out!! JCJJ = Super Punch-Out!! JCJP = Super Punch Out!! JCKE = Space Invaders: The Original Game JCKJ = Space Invaders: The Original Game JCKP = Space Invaders -The Original Game JCLD = Secret of Mana JCLE = Secret of Mana JCLF = Secret of Mana JCLJ = Seiken Densetsu 2 JCLP = Secret of Mana JCMJ = Super Wagyan Land JCNE = Prince of Persia JCNJ = Prince of Persia JCTE = Ogre Battle: The March of the Black Queen JCTJ = Densetsu no Ogre Battle: The March of the Black Queen JCTM = Ogre Battle: The March of the Black Queen JCUE = PilotWings JCUJ = Tactics Ogre: Let Us Cling Together JCVE = Pilotwings JCVJ = Pilotwings JCVP = Pilotwings JCWE = Super Mario Kart JCWJ = Super Mario Kart JCWP = Super Mario Kart JCXE = Nobunaga's Ambition JCXJ = Super Nobunaga no Yabou: Zengokuban JCYE = Uncharted Waters: New Horizons JCYJ = Daikoukai Jidai II JCZE = Genghis Khan II: Clan of the Gray Wolf JCZJ = Super Aoki Ookami to Shiroki Meshika: Genchou Hishi JD2J = Bishoujo Janshi Suchie-Pai JD3E = Super E.D.F. Earth Defense Force JD3J = Super E.D.F. Earth Defense Force JD3P = Super EDF Earth Defense Force JD4E = Rival Turf! JD4J = Rushing Beat JD4P = Rival Turf! JD5E = Brawl Brothers JD5J = Rushing Beat Ran: Fukusei Toshi JD5P = Brawl Brothers JD6E = The Ignition Factor JD6J = Fire Fighting JD6M = The Ignition Factor JD7E = Super Adventure Island JD7J = Takahashi Meijin no Daibouken Jima JD7P = Super Adventure Island JD8E = Super Adventure Island II JD8J = Takahashi Meijin no Daibouken Jima II JD8P = Super Adventure Island II JD9E = Super Bonk JD9J = Chou-Genjin JD9M = Super Bonk JDAE = Final Fantasy III JDAJ = Final Fantasy VI JDAP = Final Fantasy III JDBE = Super Bomberman 3 JDCE = Street Fighter Alpha 2 JDCJ = Street Fighter Two Alpha JDCP = Street Fighter Alpha 2 JDDE = Final Fight 2 JDDJ = Final Fight Two JDDP = Final Fight 2 JDEE = Final Fight 3 JDEJ = Final Fight Tough JDEP = Final Fight 3 JDFJ = Sutte Hakkun JDHJ = Super Famicom Wars JDIE = Super Star Wars JDIJ = Super Star Wars JDIP = Super Star Wars JDJE = Super Star Wars: The Empire Strikes Back JDJJ = Super Star Wars The Empire Strikes Back JDJP = Super Star Wars: The Empire Strikes Back JDKJ = Metal Max 2 JDLE = Super Star Wars: Return of the Jedi JDLJ = Super Star Wars Return Of The Jedi JDLP = Super Star Wars: Return of the Jedi JDMJ = Kirby no Kirakira Kizzu JDNE = Ghoul Patrol JDNJ = Ghoul Patrol JDOJ = Heisei Shin Onigashima: Zenpen JDPJ = Heisei Shin Onigashima: Kouhen JDQJ = Romancing Sa-Ga 3 JDRJ = Clock Tower JDSJ = Shin Megami Tensei II JDTJ = Shin Megami Tensei if... JDUJ = Albert Odyssey JDVE = Wild Guns JDVJ = Wild Guns JDVP = Wild Guns JDWE = Aero the Acrobat JDWJ = Aero The Acrobat JDWP = Aero The Acrobat JDXE = Aero the Acrobat 2 JDXJ = Aero The Acrobat Two JDXP = Aero the Acrobat 2 JDYJ = Rudra no Hihou JDZE = Final Fantasy Mystic Quest JDZJ = Final Fantasy USA: Mystic Quest JEAE = Natsume Championship Wrestling JEAJ = Natsume Championship Wrestling JEAP = Natsume Championship Wrestling JEBE = Mega Man X JEBJ = RockMan X JECE = Chrono Trigger JECJ = Chrono Trigger JECM = Chrono Trigger JECP = Chrono Trigger JEDJ = Kunio-Kun no Dodge Ball Dayo Zenin Shuugo! JEEJ = Majin Tensei JEFJ = Majin Tensei II: Spiral Nemesis JEGJ = Gouketuji Ichizoku JEHE = Mega Man X2 JEHJ = RockMan X2 JEIJ = Metal Max Returns JEJJ = Tsukikomori JEKJ = Kyuyaku Megami Tensei: Megami Tensei I・II JODI = Homebrew Channel JOUE01 = New Super Mario Bros. Wii 10 The Journey KMCP06 = Wiimms MKW Fun 2010-12.pal+ KMKE01 = Kustom Mario Kart Wii KMNE03 = Newer Super Mario Bros. Wii KMNE10 = Koopa Country KMNJ03 = Newer Super Mario Bros. Wii KMNP03 = Newer Super Mario Bros. Wii KMNP10 = Koopa Country L40P4Q = Sing IT: Pop hits, los 40 principales LAAJ = Hokuto no Ken LABE = Fantasy Zone LABJ = Fantasy Zone LABP = Fantasy Zone LACE = Wonder Boy LACJ = Super Wonder Boy LACP = Wonder Boy LADE = Phantasy Star LADJ = Phantasy Star LADP = Phantasy Star LAEE = Alex Kidd in Miracle World LAEJ = Alex Kidd in Miracle World LAEP = Alex Kidd in Miracle World LAFJ = Ashura LAFN = Secret Commando LAFP = Secret Command LAGE = Sonic The Hedgehog LAGJ = Sonic the Hedgehog LAGP = Sonic The Hedgehog LAHE = Space Harrier LAHJ = Space Harrier LAHP = Space Harrier LAIE = Enduro Racer LAIJ = Enduro Racer LAIP = Enduro Racer LAJE = Sonic The Hedgehog 2 LAJJ = Sonic the Hedgehog 2 LAJP = Sonic The Hedgehog 2 LAKE = Wonder Boy in Monster Land LAKJ = Super Wonder Boy: Monster World LAKP = Wonder Boy in Monster Land LALE = Fantasy Zone II: The Tears of OPA-OPA LALJ = Fantasy Zone II: The Tears of Opa-Opa LALP = Fantasy Zone II LAME = Sonic Chaos LAMJ = Sonic Chaos LAMP = Sonic Chaos LANE = Alex Kidd: The Lost Stars LANJ = Alex Kidd: The Lost Stars LANP = Alex Kidd: The Lost Stars LAOE = R-Type LAOJ = R-Type LAOP = R-Type LAPE = Wonder Boy III: The Dragon's Trap LAPP = Wonder Boy III: The Dragon's Trap LAQE = Alex Kidd in Shinobi World LAQP = Alex Kidd in Shinobi World LULZ = Homebrew Channel MA2J = Dyna Brothers MA3E = Puyo Puyo 2 MA3J = Puyo Puyo Tsuu MA3L = Puyo Puyo 2 MA4J = Bahamut Senki MA5J = Rent A Hero MA6E = Streets of Rage 2 MA6J = Bare Knuckle II: Shitou no Chinkon Uta MA6P = Streets of Rage 2 MA7E = Shining in the Darkness MA7J = Shining and the Darkness MA7P = Shining in the Darkness MA8E = Ecco: The Tides of Time MA8J = Ecco the Dolphin 2 MA8P = Ecco: The Tides of Time MA9J = The Hybrid Front MAAE = Altered Beast MAAJ = Juuouki MAAP = Altered Beast MABE = Columns MABJ = Columns MABP = Columns MACE = Dr. Robotnik's Mean Bean Machine MACJ = Puyo Puyo MACP = Dr. Robotnik's Mean Bean Machine MADE = Ecco the Dolphin MADJ = Ecco the Dolphin MADP = Ecco the Dolphin MAEE = Golden Axe MAEJ = Golden Axe MAEP = Golden Axe MAFE = Gunstar Heroes MAFJ = Gunstar Heroes MAFP = Gunstar Heroes MAGE = Ristar MAGJ = Ristar MAGP = Ristar MAHE = Sonic the Hedgehog MAHJ = Sonic the Hedgehog MAHP = Sonic the Hedgehog MAIE = Space Harrier II MAIJ = Space Harrier II MAIP = Space Harrier II MAJE = Toe Jam & Earl MAJJ = ToeJam & Earl MAJP = ToeJam & Earl MAKE = Shadow Dancer: The Secret of Shinobi MAKJ = Shadow Dancer: The Secret of Shinobi MAKP = Shadow Dancer: The Secret of Shinobi MALE = Bonanza Bros. MALJ = Bonanza Bros. MALP = Bonanza Bros. MAME = Sword of Vermillion MAMJ = Vermilion MAMP = Sword of Vermilion MANE = Gain Ground MANJ = Gain Ground MANP = Gain Ground MAOE = Bio-Hazard Battle MAOJ = Crying: Aseimei Sensou MAOP = Bio-Hazard Battle MAPE = Comix Zone MAPJ = Comix Zone MAPP = Comix Zone MAQE = Streets of Rage MAQJ = Bare Knuckle: Ikari no Tekken MAQP = Streets of Rage MARE = Beyond Oasis MARJ = The Story of Thor: Hikari o Tsugu Mono MARP = The Story of Thor MASE = Vectorman MASJ = Vectorman MASP = Vectorman MATE = Sonic Spinball MATJ = Sonic Spinball MATP = Sonic Spinball MAUJ = Puzzle & Action: Tant-R MAVE = Wonder Boy in Monster World MAVJ = Wonder Boy V: Monster World III MAVP = Wonder Boy In Monster World MAWE = Virtua Fighter 2 MAWJ = Virtua Fighter 2 MAWP = Virtua Fighter 2 MAXE = Alex Kidd In The Enchanted Castle MAXJ = Alex Kidd: Tenkuu Mashiro MAXP = Alex Kidd In The Enchanted Castle MAYE = Alien Storm MAYJ = Alien Storm MAYP = Alien Storm MAZE = ToeJam & Earl in Panic on Funkotron MAZP = ToeJam & Earl in Panic on Funkotron MB2J = Langrisser MB3E = Monster World IV MB3J = Monster World IV MB4J = Party Quiz Mega Q MB5J = Rangurissah II MB6E = Shining Force II MB6J = Shining Force II: Inishie no Fuuin MB6P = Shining Force II MB7E = Mega Turrican MB7P = Mega Turrican MB8E = Phantasy Star II MB8J = Phantasy Star II: Kaerazaru Toki no Owari ni MB8P = Phantasy Star II MB9J = Pepenga Pengo MBAJ = Pulseman MBAL = Pulseman MBAN = Pulseman MBBE = Sonic the Hedgehog 2 MBBJ = Sonic the Hedgehog 2 MBBP = Sonic the Hedgehog 2 MBCE = Kid Chameleon MBCJ = Chameleon Kid MBCP = Kid Chameleon MBDE = Golden Axe II MBDJ = Golden Axe II MBDP = Golden Axe II MBEE = Shining Force MBEJ = Shining Force: Kamigami no Isan MBEP = Shining Force MBFE = Shinobi III: Return of the Ninja Master MBFJ = The Super Soldier II MBFP = Shinobi III: Return of the Ninja master MBGE = Dynamite Headdy MBGJ = Dynamite Headdy MBGP = Dynamite Headdy MBHJ = Puzzle & Action: Ichidant-R MBIE = Landstalker: The Treasures of King Nole MBIJ = LandStalker: Koutei no Zaihou MBIP = Landstalker: The Treasures of King Nole MBJE = Ghouls'n Ghosts MBJJ = Dai Makai-Mura MBJP = Ghouls'n Ghosts MBKJ = Crack Down MBKP = Crack Down MBLJ = ESWAT: Cyber Police MBLP = ESWAT City Under Siege MBME = Sonic the Hedgehog 3 MBMJ = Sonic the Hedgehog 3 MBMP = Sonic the Hedgehog 3 MBNJ = Chelnov MBOE = Golden Axe III MBOJ = Golden Axe III MBOP = Golden Axe III MBPE = Super Thunder Blade MBPJ = Super Thunder Blade MBPP = Super Thunder Blade MBQE = Streets of Rage 3 MBQJ = Bare Knuckle III MBQP = Streets of Rage 3 MBRE = Rolling Thunder 2 MBRJ = Rolling Thunder 2 MBRP = Rolling Thunder 2 MBSJ = Dyna Brothers 2 Special MBTE = Alien Soldier MBTJ = Alien Soldier MBTP = Alien Soldier MBUE = Sonic 3D: Blast MBUJ = Sonic 3D Blast MBUP = Sonic 3D: Flickies' Island MBVJ = Jusu Kihei Leynos MBWE = Columns III: Revenge of Columns MBWJ = Columns III: Taiketsu! Columns World MBWM = Columns III: Revenge of Columns MBXE = Ecco Jr. MBXJ = Ecco Jr. MBXM = Ecco Jr. MBYE = Light Crusader MBYJ = Light Crusader MBYP = Light Crusader MBZE = Eternal Champions MBZJ = Eternal Champions MBZP = Eternal Champions MC2E = Earthworm Jim 2 MC2J = Earthworm Jim 2 MC2P = Earthworm Jim 2 MC3E = Super Street Fighter II: The New Challengers MC3J = Super Street Fighter 2: The New Challengers MC3P = Super Street Fighter II: The New Challengers MC4E = Strider MC4J = Strider Hiryu MCAJ = Gley Lancer MCAL = Gley Lancer MCAN = Gley Lancer MCBE = Powerball MCBJ = Wrestleball MCCE = Phantasy Star III MCCJ = Toki no Keishousha: Phantasy Star III MCCP = Phantasy Star III: Generations of Doom MCDE = Sonic & Knuckles MCDJ = Sonic & Knuckles MCDP = Sonic & Knuckles MCEJ = Super Fantasy Zone MCEN = Super Fantasy Zone MCEP = Super Fantasy Zone MCGE = Forgotten Worlds MCGJ = Forgotten Worlds MCGP = Forgotten Worlds MCHE = M.U.S.H.A. MCHJ = Musha Aleste MCHM = MUSHA : Metallic Uniframe Super Hybrid Armor MCIJ = Gynoug MCJE = Splatterhouse 2 MCJJ = Splatterhouse Part 2 MCJP = Splatterhouse 2 MCKE = Phantasy Star IV MCKJ = Phantasy Star: Sennenki no Owari ni MCKP = Phantasy Star IV MCLE = Street Fighter II': Special Champion Edition MCLJ = Street Fighter II' Plus: Champion Edition MCLP = Street Fighter II’: Special Champion Edition MCMJ = Lord Monarch: Tokoton Sentou Densetsu MCNJ = Hokuto no Ken: Shin Seikimatu Kyuseisyu Densetsu MCOJ = Sorcerian MCPE = Earthworm Jim MCPJ = Earthworm Jim MCPP = Earthworm Jim MCQE = Boogerman: A Pick and Flick Adventure MCQP = Boogerman - A Pick and Flick Adventure MCRE = Wolf of the Battlefield: MERCS MCRJ = Senjou no Ookami II MCRP = MERCS: Wolf of the Battlefield MCSJ = Wonder Boy III: Monster Lair MCSN = Wonder Boy III: Monster Lair MCSP = Wonder Boy III: Monster Lair MCTE = Clay Fighter MCTP = Clay Fighter MCUJ = Dragon Slayer: The Legend of Heroes MCVE = Pitfall: The Mayan Adventure MCVJ = Pitfall: The Mayan Adventure MCVP = Pitfall: The Mayan Adventure MCWE = Galaxy Force II MCWJ = Galaxy Force II MCWP = Galaxy Force II MCXJ = Dragon Slayer: The Legend of Heroes MCYE = The Revenge of Shinobi MCYJ = The Super Shinobi MCYP = The Revenge of Shinobi MCZE = Shanghai II: Dragon's Eye MCZP = Shanghai II Dragon's Eye MDUE01 = Mario Kart: Track Grand Priix MECPSI = SingItStar Mecano METE01 = New Super Metroid Bros. Wii MIJPSI = SingItStar Michael Jackson MILPSI = Sing IT Star: Miliki MKDE02 = Darky Kart Wii MKTE01 = Mario Kart Wii Teknik MKWP01 = Super Mario Kart for Wii MMRE01 = D.U. Super Mario Bros 2.1 Madness Returns MRRE01 = New Super Mario Bros. Wii Retro Remix MRRP01 = New Super Mario Bros. Wii Retro Remix NA3E = Bomberman Hero NA3J = Bomberman Hero NA3P = Bomberman Hero NAAE = Super Mario 64 NAAJ = Super Mario 64 NAAP = Super Mario 64 NABE = Mario Kart 64 NABJ = Mario Kart 64 NABK = Mario Kart 64 NABP = Mario Kart 64 NACE = The Legend of Zelda: Ocarina of Time NACJ = Zelda no Densetsu: Toki no Ocarina NACP = The Legend of Zelda: Ocarina of Time NADE = Star Fox 64 NADJ = Star Fox 64 NADK = Star Fox 64 NADP = Lylat Wars NAEE = Paper Mario NAEJ = Mario Story NAEP = Paper Mario NAFE = F-Zero X NAFJ = F-Zero X NAFP = F-Zero X NAGJ = Aerogauge NAHE = Yoshi's Story NAHJ = Yoshi's Story NAHP = Yoshi's Story NAIE = Wave Race 64 NAIJ = Wave Race 64: Kawasaki Jet Ski NAIP = Wave Race 64 NAJ8 = The Legend of Zelda: Ocarina of Time (spanish translation) NAJ9 = Super Smash Bros. NAJJ = Tsumi to Batsu NAJL = Sin & Punishment NAJN = Sin and Punishment NAKD = Pokémon Snap NAKE = Pokémon Snap NAKF = Pokémon Snap NAKI = Pokémon Snap NAKJ = Pokémon Snap NAKP = Pokémon Snap NAKS = Pokémon Snap NALE = Super Smash Bros. NALJ = Nintendo All-Star Dairantou Smash Brothers NALP = Super Smash Bros. NAME = Kirby 64: The Crystal Shards NAMJ = Hoshi no Kirby 64 NAMK = Kirby 64: The Crystal Shards NAMP = Kirby 64: The Crystal Shards NAND = Pokémon Puzzle League NANE = Pokémon Puzzle League NANF = Pokémon Puzzle League NANJ = Pokemon Puzzle League NANP = Pokémon Puzzle League NAOE = 1080° Snowboarding NAOJ = 1080° Snowboarding NAOK = 1080° Snowboarding NAOP = 1080 : TenEighty Snowboarding NAPJ = Custom Robo V2 NARE = The Legend of Zelda: Majora's Mask NARJ = Zelda no Densetsu: Majora no Kamen NARP = The Legend of Zelda: Majora's Mask NASE = Cruis'n USA NASJ = Cruisn USA NASP = Cruis'n USA NATE = Mario Tennis NATJ = Mario Tennis 64 NATP = Mario Tennis NAUE = Mario Golf NAUJ = Mario Golf 64 NAUP = Mario Golf NAYE = Ogre Battle 64: Person of Lordly Caliber NAYJ = Ogre Battle 64: Person of Lordly Caliber NAYM = Ogre Battle 64 : Person of Lordly Caliber NAZE = Mario Party 2 NAZJ = Mario Party 2 NAZP = Mario Party 2 NEEA = The Legend of Zelda: Ocarina of Time Master Quest NEWE01 = New Super Mario Bros Wii 15 A New World NK2O = Neek2o NMNP01 = Newer Super Mario Bros. Wii NRJ1FR = StarSing : NRJ Music Tour v1.1 NSMB02 = New Super Mario Bros. Wii 2 NSSP01 = Newer Summer Sun NWRP01 = Newer Super Mario Bros. Wii NZXM = Super Mario 64 Multiplayer ONKELZ = SingItStar Böhse Onkelz PAL OTFPSI = Sing IT: Operación triunfo P2ME01 = Metroid Prime 2: Echoes (Bonus Disc) PA2J = Nekketsu Koukou Dodgeball Bu: CD Soccer Hen PA3J = Salamander PA4J = Parasol Stars PA6E = Bloody Wolf PA6J = Narazumono Sentou Butai: Bloody Wolf PA6P = Bloody Wolf PA7E = Alien Crush PA7J = Alien Crush PA7P = Alien Crush PA8E = Ordyne PA8J = Ordyne PA9E = Splatterhouse PA9J = Splatterhouse PA9P = Splatterhouse PAAE = Bomberman '93 PAAP = Bomberman '93 PABE = Bonk's Adventure PABJ = PC Genjin PABP = Bonk's Adventure PACE = Dungeon Explorer PACJ = Dungeon Explorer PACP = Dungeon Explorer PADE = R-Type PADJ = R-Type I PADP = R-Type PAEE = Super Star Soldier PAEJ = Super Star Soldier PAEP = Super Star Soldier PAFE = Victory Run PAFJ = Victory Run: Eikou no 13,000KM PAFP = Victory Run PAGJ = Bomberman '94 PAGL = Bomberman'94 PAGN = Bomberman '94 PAHE = Battle Lode Runner PAHJ = Battle Lode Runner PAHP = Battle Lode Runner PAIE = New Adventure Island PAIJ = Takahashi Meijin no Shin Bouken Jima PAIP = New Adventure Island PAJJ = Joshoken Necromancer PAKE = Dragon's Curse PAKJ = Adventure Island PAKP = Dragon's Curse PALE = Soldier Blade PALJ = Soldier Blade PALP = Soldier Blade PAME = Neutopia PAMJ = Neutopia: Frey no Shou PAMP = Neutopia PANE = Military Madness PANJ = Nectaris PANP = Military Madness PAOJ = Final Soldier PAOL = Final Soldier PAON = Final Soldier PAPJ = R-Type II PAQJ = Gradius PARJ = Detana TwinBee PARL = Detana Twin Bee PARN = Detana Twin Bee PASJ = Cadash PATJ = Kiki Kaikai PAUJ = Kaizou Chounin Shubibinman PAVE = Vigilante PAVJ = Vigilante PAVP = Vigilante PAWE = Galaga '90 PAWJ = Galaga '88 PAWP = Galaga'90 PAYJ = Valkyrie no Densetsu PAZJ = Genpei Toumaden PB2E = Neutopia II PB2J = Neutopia II PB2P = Neutopia II PB3E = Devil's Crush PB3J = Devil Crash PB3P = Devil's Crush PB5J = Ninja Ryukenden PB6E = Cratermaze PB6P = Cratermaze PB7J = Sengoku Mahjong PB8E = Blazing Lazers PB8J = Blazing Lazers PB8P = Blazing Lazers PB9E = World Sports Competition PB9J = Power Sports PB9P = World Sports Competition PBAE = Dragon Spirit PBAJ = Dragon Spirit PBAP = Dragon Spirit PBCJ = Wonder-Momo PBDE = Double Dungeons PBDJ = Double Dungeons PBDP = Double Dungeons PBEE = Moto Roader PBEJ = Moto Roader PBEP = Motoroader PBFJ = Fire ProWrestling: Combination Tag PBHE = Bonk's Revenge PBHJ = PC Genjin 2 PBHP = Bonk's Revenge PBIE = Bonk 3: Bonk's Big Adventure PBIJ = PC Genjin 3 PBIP = Bonk III: Bonk's Big Adventure PBJE = Samurai Ghost PBJJ = Genpei Toumaden: Kannoni PBJP = Samurai Ghost PBME = Legend of Hero Tonma PBMJ = Legend of Hero Tonma PBMP = Legend of Hero Tonma PBNE = Ninja Spirit PBNJ = Saigou no Nindou: Ninja Spirit PBNP = Ninja Spirit PBSE = Chew Man Fu PBSJ = Be Ball PBSP = Chew Man Fu PBTE = China Warrior PBTJ = The Kung Fu PBTP = China Warrior PBUE = Bravoman PBUJ = Chouzetsu Rinjin Bravoman PBVJ = Benkei Gaiden PBWE = Air “Zonk” PBWJ = PC Denjin: Punkic Cyborgs PBWP = Air 'Zonk' PBXE = Shockman PBXJ = Kaizou Chounin Shubibinman 2: Atanaru Teki PBXP = Shockman PBYJ = Out Live PBZE = J.J. & Jeff PBZP = J.J. & Jeff PC2E = Chase H.Q. PC2J = Chase H.Q. PC2P = Chase H.Q. PC3J = Darius Plus PC4J = Space Invaders: Fukkatsu no Hi PC5J = Dragon Saber PC6E01 = Pokémon Colosseum Bonus Disc PC6J = Final Blaster PC7J = Mizubaku Daibouken PC8J = The Ninjawarriors PC9J = The NewZealand Story PCAE = Silent Debuggers PCAJ = Silent Debuggers PCAP = Silent Debuggers PCBE = Dead Moon PCBJ = Dead Moon: Tsuki Sekai no Akumu PCBP = Dead Moon PCCJ = Makai Hakkenden Shada PCDJ = Appare! Gateball PCEE = Power Golf PCEJ = Power Golf PCEP = Power Golf PCHE = Drop Off PCHJ = Drop Rock Hora Hora PCHP = Drop Off PCJJ = Override PCKJ = Gai Flame PCMJ = Mr. Heli no Daibouken PCNJ = Winning Shot PCOE = Psychosis PCOJ = Paranoia PCOP = Psychosis PCPJ = Power Eleven PCQJ = Psycho Chaser PCRJ = Break In PCRL = Break In PCRN = Break In PCSJ = Digital Champ: Battle Boxing PCSJ = Digital Champ: Battle Boxing PCSJ01 = Pokemon Colosseum Bonus Disc PCSL = Digital Champ : Battle Boxing PCSN = Digital Champ Battle Boxing PCTJ = Power Tennis PCUJ = Fire ProWrestling 2nd Bout PCVE = World Class Baseball PCVP = World Class Baseball PCWJ = Image Fight PCXJ = Power League IV PCYJ = Wallaby!! Usagi no Kuni no Kangaroo Race PDCJ = Dai Makaimura PDDJ = Volfied PDEJ = S.C.I.: Special Criminal Investigation PDFJ = Jigoku Meguri PDGJ = Fire ProWrestling 3: Legend Bout PDHJ = Rastan Saga II PDIE = Champion Wrestler PDJJ = Street Fighter II': Champion Edition PDJL = Street Fighter II' : Champion Edition PDJN = Street Fighter II: Champion Edition PDUE01 = Another Super Mario Bros. Wii PKBJ01 = The Tower of Druaga PLUS = WiiMC+ PM4E01 = Mario Kart: Double Dash!! Bonus Disc PMNEO1 = New Old Super Mario Bros. Wii POPPSI = SingItStar Pop PPNE01 = New Super Mario Bros. Wii 2: The Next Levels PPNP01 = New Super Mario Bros. Wii 2: The Next Levels PRJE01 = Pac-Man vs. PRJJ01 = Pac-Man vs. PRJP01 = Pac-Man vs. PROE01 = New Super Mario Bros. Wii 14 Project Mario PT1PSI = SingIt Star Portugal Hits PT2PSI = SingIt Portugal Hits Summer Party PT3PSI = Sing IT Portugal Hits - Morangos com Açucar PUTA01 = Guitar Hero III Custom : Rock Hits PWNP69 = Pwned Super Mario Bros. Wii PXWE = Project X: Love Potion Disaster PZLE01 = The Legend of Zelda: Collector's Edition PZLJ01 = The Legend of Zelda: Collector's Edition PZLP01 = The Legend of Zelda: Collector's Edition QA2J = Nekketsu Koukou Dodge Ball-Bu: CD Soccer-hen QA3E = SimEarth: The Living Planet QA3J = SimEarth QA3P = SimEarth: The Living Planet QA4J = Super Darius II QA5J = Space Invaders: The Original Game QA6J = Super Darius QA7J = Legend of Xanadu: Kaze no Densetsu Xanadu QA8J = Spriggan Mark 2 QA9J = Kaze no Densetsu: Xanadu II QAAE = Super Air Zonk QAAJ = CD Denjin: Rockabilly Tengoku QAAP = Super Air Zonk QABE = Ys Book I & II QABJ = Ys I + II QABP = Ys Book I & II QACJ = Cho Aniki QACL = Cho Aniki QACN = Cho Aniki QADJ = Gradius II: Gofer no Yabou QADL = Gradius II: Gofer no Yabou QADN = Gradius II Gofer No Yabou QAEJ = A.III: A-Ressha de Ikou III QAFE = The Dynastic Hero QAFJ = Chou Eiyuu Densetsu: Dynastic Hero QAFP = The Dynastic Hero QAGE = Gate of Thunder QAGJ = Gate of Thunder QAGP = Gate of Thunder QAHJ = Kawa no Nushi Tsuni Shizenha QAJJ = Image Fight II QAKJ = Ai Chou Aniki QALJ = The Atlas: Renaissance Voyager QANJ = Neo Nectaris QAOJ = Dungeon Explorer II QAPJ = Akumajou Dracula X: Chi no Rondo QAPL = Castlevania : Rondo of Blood QAPN = Castlevania Rondo of Blood QAPP = Castlevania: Rondo of Blood QAQJ = Dragon Slayer: Eiyuu Densetsu QARJ = Blood Gear QASE = Lords of Thunder QASJ = Winds of Thunder QASP = Lords of Thunder QATE = Riot Zone QATJ = Crest of Wolf QATP = Riot Zone QAUE = Monster Lair QAUJ = Wonder Boy III: Monster Lair QAUP = Monster Lair QAVJ = Bomberman: Panic Bomber QAWJ = Star Parodier QAWL = Star Parodier QAWN = Star Parodier QAXJ = Martial Champion QAYJ = Seirei Senshi Spriggan QAZJ = Eikan wa Kimi ni: Koko Yakyu Zenkoku Taikai QBAJ = L Dis QBBE = Fighting Street QBBJ = Fighting Street QBBP = Fighting Street R01PET = SingItStar Queen R02PEA = SingItStar Rock Ballads R15POH = SingIt Star Radio 105 R22E01 = FlingSmash R22J01 = Tataite Hazumu: Super Smash Ball Plus R22P01 = FlingSmash R23E52 = Barbie and the Three Musketeers R23P52 = Barbie and the Three Musketeers R24J01 = Chibi-Robo! R25EWR = LEGO Harry Potter: Years 1-4 R25PWR = LEGO Harry Potter: Years 1-4 R26E5G = Data East Arcade Classics R27E54 = Dora Saves the Crystal Kingdom R27X54 = Dora Saves the Crystal Kingdom R28E54 = Top Spin 4 R28P54 = Top Spin 4 R29E52 = NPPL Championship Paintball 2009 R29P52 = Millennium Series Championship Paintball 2009 R2AE7D = Ice Age 2: The Meltdown R2AP7D = Ice Age 2: The Meltdown R2AX7D = Ice Age 2: The Meltdown R2DEEB = Dokapon Kingdom R2DJEP = Dokapon Kingdom For Wii R2DPAP = Dokapon Kingdom R2DPJW = Dokapon Kingdom R2EJ99 = Fish Eyes Wii R2FE5G = Freddi Fish: Kelp Seed Mystery R2FP70 = Freddi Fish: Kelp Seed Mystery R2GEXJ = Fragile Dreams: Farewell Ruins of the Moon R2GJAF = Fragile: Sayonara Tsuki no Haikyo R2GP99 = Fragile Dreams: Farewell Ruins of the Moon R2HE41 = Petz Horse Club R2IE69 = Madden NFL 10 R2IP69 = Madden NFL 10 R2JJAF = Taiko no Tatsujin Wii R2KE54 = Don King Boxing R2KP54 = Don King Boxing R2LJMS = Hula Wii: Hura de Hajimeru Bi to Kenkou!! R2ME20 = M&M's Adventure R2NE69 = NASCAR Kart Racing R2OE68 = Medieval Games R2OP68 = Medieval Games R2PE9B = Super Swing Golf Season 2 R2PJ9B = Super Swing Golf Season 2 R2PKZ4 = 스윙골프 팡야 2nd 샷! R2PP99 = Super Swing Golf R2PP9B = Super Swing Golf R2QJC0 = Cooking Mama 2 Taihen Mama Wa Ooisogashi R2RE4F = Pony Friends 2 R2RP4F = Pony Friends 2 R2SE18 = Deca Sports 2 R2SJ18 = Deca Sporta 2 R2SP18 = Sports Island 2 R2TE41 = Teenage Mutant Ninja Turtles: Smash-Up R2TP41 = Teenage Mutant Ninja Turtles: Smash-Up R2UE8P = Let's Tap R2UJ8P = Let's Tap R2UP8P = Let's Tap R2VE01 = Sin & Punishment: Star Successor R2VJ01 = Sin and Punishment: Successor to the Sky R2VP01 = Sin and Punishment: Successor of the Skies R2WEA4 = Pro Evolution Soccer 2009 R2WJA4 = Winning Eleven PLAY MAKER 2009 R2WPA4 = Pro Evolution Soccer 2009 R2WXA4 = Pro Evolution Soccer 2009 R2YE54 = Birthday Party Bash R2YP54 = It's my Birthday! R32J01 = Metroid Prime 2 R33E69 = AC/DC Live: Rock Band Track Pack R33P69 = AC/DC Live: Rock Band Song Pack R34E69 = Rock Band: Country Track Pack R35JC8 = Sangokushi 11 with Power-Up Kit R36E69 = Green Day: Rock Band R36P69 = Green Day: Rock Band R37E69 = Rock Band: Metal Track Pack R38E78 = Marvel Super Hero Squad R38P78 = Marvel Super Hero Squad R38X78 = Marvel Super Hero Squad: Walmart Edition R38Y78 = Marvel Super Hero Squad R39EFP = Shimano Xtreme Fishing R39PNK = Shimano Extreme Fishing R3AE20 = Story Hour: Adventures R3AP20 = Story Hour: Adventures R3AP7J = Story Hour: Adventures R3BE8P = Samba de Amigo R3BJ8P = Samba de Amigo R3BP8P = Samba de Amigo R3CE20 = Chrysler Classic Racing R3CP20 = Chrysler Classic Racing R3CP7J = Chrysler Classic Racing R3DES5 = Dream Pinball 3D R3DPS5 = Dream Pinball 3D R3EEWR = Game Party 3 R3EPWR = Game Party 3 R3FJA4 = Jikkyou Powerful Major League 3 R3GXUG = Kidz Sports: Crazy Mini Golf R3HP6Z = Agent Hugo: Hula Holiday R3HX6Z = Agent Hugo: Hula Holiday R3IJ01 = Metroid Prime R3JE5G = Go Play Circus Star R3KP6N = Skyscraper R3LEWR = Green Lantern: Rise of the Manhunters R3LPWR = Green Lantern: Rise of the Manhunters R3ME01 = Metroid Prime: Trilogy R3MP01 = Metroid Prime: Trilogy R3NEXS = Guilty Gear XX Accent Core Plus R3NPH3 = Guilty Gear XX Accent Core Plus R3OE01 = Metroid: Other M R3OJ01 = Metroid: Other M R3OP01 = Metroid: Other M R3PEWR = Speed Racer: The Videogame R3PJ52 = Speed Racer R3PPWR = Speed Racer: The Videogame R3RE8P = Sonic & SEGA All-Stars Racing R3RP8P = Sonic & SEGA All-Stars Racing R3SE52 = Spider-Man: Web of Shadows R3SP52 = Spider-Man: Web of Shadows R3TE54 = Top Spin 3 R3TJG9 = Top Spin 3 R3TP54 = Top Spin 3 R3UJGD = Oyako de Asobo: Miffy no Omocha Bako R3VEFP = Deer Drive R3VPNK = Deer Drive R3XE6U = Sam & Max: Season One R3XP6V = Sam & Max: Season One R3YE70 = Sam & Max: Season Two: Beyond Time and Space R3YP70 = Sam & Max: Season Two: Beyond Time and Space R3ZE69 = Rock Band Track Pack: Classic Rock R42E69 = The Sims 2: Castaway R42P69 = The Sims 2: Castaway R43E69 = EA Sports Active: Personal Trainer R43J13 = EA Sports Active Personal Trainer Wii 30-Hi Seikatsu Kaizen Program R43P69 = EA Sports Active: Personal Trainer R44J8P = Suzumiya Haruhi no Heiretsu R46ENS = Phantom Brave: We Meet Again R46JKB = Phantom Brave Wii R47E20 = ATV Quad Kings R48E7D = The Spiderwick Chronicles R48P7D = The Spiderwick Chronicles R49E01 = Donkey Kong Jungle Beat R49J01 = Donkey Kong: Jungle Beat R49P01 = Donkey Kong: Jungle Beat R4AE69 = SimAnimals R4AJ13 = SimAnimals R4AP69 = SimAnimals R4BEJZ = Championship Foosball R4BPGT = Table Football R4CE69 = SimCity Creator R4CJ13 = Simcity Creator R4CK69 = 심시티 나만의 도시 R4CP69 = Simcity Creator R4DDUS = Die drei Fragezeichen - Das verfluchte Schloss R4EE01 = Endless Ocean: Blue World R4EJ01 = Forever Blue: Umi no Yobigoe (Endless Ocean 2) R4EP01 = Endless Ocean 2: Adventures of the Deep R4FE20 = Story Hour: Fairy Tales R4FP20 = Story Hour: Fairy Tales R4FP7J = Story Hour: Fairy Tales R4IPNK = Mad Tracks R4LPUG = Athletic Piggy Party R4LXUG = Athletic Piggy Party R4MJ0Q = Shikakui Atama wo Marukusuru Wii R4NE5G = Major Minor's Majestic March R4NP5G = Major Minor's Majestic March R4NX5G = Major Minor's Majestic March R4PE69 = The Sims 2: Pets R4PP69 = The Sims 2: Pets R4QE01 = Mario Strikers Charged R4QJ01 = Mario Strikers Charged R4QK01 = 마리오 파워 사커 R4QP01 = Mario Strikers Charged Football R4RE69 = FIFA Soccer 10 R4RJ13 = FIFA 10 WORLD CLASS SOCCER R4RK69 = FIFA 10 R4RP69 = FIFA 10 R4RX69 = FIFA 10 R4RY69 = FIFA 10 R4RZ69 = FIFA Soccer 10 R4SE54 = MLB Superstars R4VEA4 = Storybook Workshop R4VJA4 = Teleshibai Wii R4VJAF = Tere Shibai Wii R4WJA4 = Jikkyou Powerful Major League 2009 R4YJ2M = Sukeban Shachou Rena Wii R4ZE01 = Fatal Frame 4: Mask of the Lunar Eclipse R4ZJ01 = Fatal Frame IV: Mask of the Lunar Eclipse R4ZP01 = Fatal Frame IV: Mask of the Lunar Eclipse R52E08 = Neopets Puzzle Adventure R52P08 = Neopets Puzzle Adventure R53PFH = In The Mix Featuring Armin van Buuren R54FMR = Countdown: The Game R55F41 = Qui Veut Gagner Des Millions: 1ère Edition R55P41 = Who Wants To Be A Millionaire: 1st Edition R56EG9 = Astro Boy: The Video Game R56PG9 = Astro Boy: The Video Game R57FMR = Questions pour un champion R58DMR = U-Sing R58FMR = U-Sing R58PMR = U-Sing R58SMR = U-Sing R59D4Q = Club Penguin: Game Day! R59E4Q = Club Penguin: Game Day! R59P4Q = Club Penguin: Game Day! R5AE8P = The Golden Compass R5AP8P = The Golden Compass R5AX8P = The Golden Compass R5DE5G = Flip's Twisted World R5EPMR = Countdown: The Game R5FE41 = Academy of Champions: Soccer R5FP41 = Academy of Champions: Football R5GE78 = Are You Smarter Than A 5th Grader?: Make the Grade R5IE4Q = Toy Story Mania! R5IP4Q = Toy Story Mania! R5IR4Q = Toy Story Mania! R5IX4Q = Toy Story Mania! R5JES5 = Pirates vs Ninjas Dodgeball R5JPS5 = Pirates vs Ninjas Dodgeball R5MJAF = Kotoba No Puzzle Mojipittan Wii Deluxe R5NJN9 = Doala De Wii R5OENR = Party Pigs: Farmyard Games R5OXUG = Farmyard Party: Featuring the Olympigs R5PE69 = Harry Potter and the Order of the Phoenix R5PJ13 = Harry Potter and the Order of the Phoenix R5PP69 = Harry Potter and the Order of the Phoenix R5PX69 = Harry Potter and the Order of the Phoenix R5QPGT = Circus R5SERW = Mortimer Beckett and the Secrets of Spooky Manor R5TE69 = Grand Slam Tennis R5TJ13 = Grand Slam Tennis R5TP69 = Grand Slam Tennis R5UE41 = CSI: Deadly Intent R5UP41 = CSI: Deadly Intent R5VE41 = James Cameron's Avatar: The Game R5VP41 = James Cameron's Avatar: The Game R5VX41 = James Cameron's Avatar: The Game R5WEA4 = Silent Hill: Shattered Memories R5WJA4 = Silent Hill: Shattered Memories R5XJ13 = MySims Agents R5XP69 = MySims Agents R5YD78 = All Star Cheerleader 2 R5YE78 = All Star Cheer Squad 2 R5YP78 = All Star Cheerleader 2 R62E4Q = Disney Sing It: Pop Hits R62P4Q = Disney Sing It: Pop Hits R63EG9 = Family Party: 30 Great Games Outdoor Fun R63PG9 = Family Party: 30 Great Games Outdoor Fun R64E01 = Wii Music R64J01 = Wii Music R64K01 = 위 뮤직 R64P01 = Wii Music R65ENR = Buck Fever R66E41 = Press Your Luck 2010 Edition R67E6K = Smart Series Presents: JaJa's Adventure R68E5G = Go Play City Sports R69E36 = DiRT 2 R69P36 = Colin McRae: DiRT 2 R6APPU = Baby and Me R6BE78 = de Blob R6BJ78 = Blob Colorful Na Kibou R6BK78 = 더 블랍 R6BP78 = de Blob R6BX78 = de Blob R6CEAF = We Cheer 2 R6CJAF = WE CHEER Dancing Spirits! R6DFJW = Code de la Route R6EE41 = Family Feud 2010 Edition R6FE41 = Six Flags Fun Park R6FERS = Six Flags Fun Park R6FP41 = Fun Park Party R6GPMR = Golden Balls R6HE54 = Ni Hao, Kai-lan: Super Game Day R6HP54 = Ni Hao, Kai-lan: Super Game Day R6IE54 = Baseball Blast! R6JJGD = Fullmetal Alchemist: Prince of the Dawn R6KP36 = Ashes Cricket 2009 R6KU36 = Ashes Cricket 2009 R6LEWR = LEGO Rock Band R6LPWR = LEGO Rock Band R6ME5Z = America's Next Top Model R6MPML = America's Next Top Model R6MXMR = Top Model R6NE41 = Shaun White Snowboarding: World Stage R6NP41 = Shaun White Snowboarding: World Stage R6NY41 = Shaun White Snowboarding: World Stage R6OE78 = Cars Race-O-Rama R6OP78 = Cars Race-O-Rama R6OX78 = Cars Race-O-Rama R6QE69 = MySims Agents R6REJH = TrackMania: Build to Race R6RPHH = TrackMania R6TEA4 = Tornado Outbreak R6TPA4 = Tornado Outbreak R6VE4Z = King of Clubs R6VPGN = King of Clubs R6WE68 = AMF Bowling World Lanes R6WP68 = AMF Bowling World Lanes R6XE69 = Hasbro: Family Game Night 2 R6XP69 = Hasbro: Family Game Night 2 R6YEXS = Squeeballs Party R6YPH3 = Squeeballs Party R72E5G = Cake Mania: In The Mix! R72P5G = Cake Mania: In The Mix! R74E20 = Arcade Shooting Gallery R75E20 = Dream Salon R76E54 = NBA 2K10 R76P54 = NBA 2K10 R77JAF = SD Gundam: G Generation Wars R79JAF = Mobile Suit Gundam: MS Sensen 0079 R7AE69 = SimAnimals Africa R7AJ13 = SimAnimals Africa R7AP69 = SimAnimals Africa R7BE20 = Jelly Belly Ballistic Beans R7BP7J = Jelly Belly Ballistic Beans R7CJ01 = Captain Rainbow R7EE8P = NiGHTS: Journey of Dreams R7EJ8P = Nights Journey Of Dreams R7EP8P = NiGHTS: Journey of Dreams R7FEGD = Final Fantasy Fables: Chocobo's Dungeon R7FJGD = Final Fantasy Fables: Chocobo's Dungeon R7FPGD = Final Fantasy Fables: Chocobo's Dungeon R7GEAF = Dragon Ball: Revenge of King Piccolo R7GJAF = Dragon Ball: Tenkaichi Daibouken R7GPAF = Dragon Ball: Revenge of King Piccolo R7HE6K = Army Rescue R7IE69 = Charm Girls Club: Pajama Party R7IP69 = Charm Girls Club: Pyjama Party R7KE6K = Rock Blast R7LP7J = Margot's Bepuzzled! R7MXFR = Musiic Party: Rock the House R7NE20 = Cold Stone Creamery: Scoop It Up R7OE54 = NHL 2K10 R7OP54 = NHL 2K10 R7PE01 = Punch-Out!! R7PJ01 = Punch-Out!! R7PP01 = Punch-Out!! R7QE52 = Chaotic: Shadow Warriors R7RE52 = Little League World Series Baseball 2009 R7SE5G = Escape The Museum R7SP5G = Escape The Museum R7TFJW = Pétanque Pro R7VEWR = Vacation Isle: Beach Party R7VPWR = Vacation Isle: Beach Party R7WE52 = Mountain Sports R7WP52 = Mountain Sports R7XE69 = Need for Speed: Nitro R7XJ13 = Need for Speed: Nitro R7XP69 = Need for Speed: Nitro R7YFMR = Pékin Express R7ZE41 = Team Elimination Games R7ZP41 = Knockout Party R82E52 = Animal Planet: Vet Life R82JG0 = Darts Wii DX R82P52 = Animal Planet: Vet Life R83EA4 = Pop'n Music R83JA4 = Pop'n Music R83PA4 = Pop'n Rhythm R84EE9 = Harvest Moon: Tree Of Tranquility R84J99 = Bokujo for Wii R84P99 = Harvest Moon: Tree of Tranquility R85EG9 = The Secret Saturdays: Beasts of the 5th Sun R85PG9 = The Secret Saturdays: Beasts of the 5th Sun R86E20 = Dream Dance & Cheer R87EVN = Ski-Doo: Snowmobile Challenge R88J2L = Anpanman Niko Niko Party R89JEL = Tokyo Friend Park 2 Wii R8AE01 = PokéPark Wii: Pikachu's Adventure R8AJ01 = PokéPark Wii: Pikachu no Daibouken R8AP01 = PokéPark Wii: Pikachu's Adventure R8BE41 = Imagine Party Babyz R8BP41 = Babysitting Party R8DEA4 = Yu-Gi-Oh! 5D's: Duel Transer R8DJA4 = Yu-Gi-Oh! 5D's: Duel Transer R8DPA4 = Yu-Gi-Oh! 5D's: Master of the Cards R8EJQC = Earth Seeker R8FES5 = Fast Food Panic R8FJHA = Takumi Restaurant ha Daihanjou! R8FJSC = Takumi Restaurant wa Daihanjou! (Simplified Chinese Translation) R8FPNP = Fast Food Panic R8GJC8 = G1 Jockey Wii 2008 R8GPC8 = G1 Jockey Wii 2008 R8HE4Q = Hannah Montana: The Movie R8HP4Q = Hannah Montana: The Movie R8HX4Q = Hannah Montana: The Movie R8HY4Q = Hannah Montana: The Movie R8IE78 = SpongeBob's Truth or Square R8IP78 = SpongeBob's Truth or Square R8IS78 = SpongeBob's Truth or Square R8JEWR = The Lord of the Rings: Aragorn's Quest R8JPWR = The Lord of the Rings: Aragorn's Quest R8KPKM = Street Football 2 R8LE20 = Chicken Blaster R8LP7J = Chicken Blaster R8NEA4 = The Cages: Pro Style Batting Practice R8NJG0 = Batting Revolution R8OE54 = Ringling Bros. and Barnum & Bailey Circus R8OX54 = It's My Circus R8PC01 = Super Paper Mario(CN) R8PE01 = Super Paper Mario R8PJ01 = Super Paper Mario R8PK01 = 슈퍼 페이퍼 마리오 R8PP01 = Super Paper Mario R8QPRT = Crazy Quiz: Are You Crazy Enough? R8RP41 = Arthur and the Revenge of Maltazard R8SE41 = Vacation Sports R8SP41 = World Sports Party R8SX41 = World Sports Party R8TENR = Tournament Pool R8UXMR = Adibou R8VE41 = Petz Rescue: Wildlife Vet R8VP41 = Planet Rescue: Wildlife Vet R8XE52 = Jurassic: The Hunted R8XZ52 = Top Shot Dinosaur Hunter R8YE52 = Cabela's Big Game Hunter 2010 R8ZE8P = Daisy Fuentes Pilates R8ZPGT = Daisy Fuentes Pilates R92E01 = Pikmin 2 R92J01 = Pikmin 2 R92P01 = Pikmin 2 R94PMR = The Ultimate Red Ball Challenge R94XMR = The Ultimate Red Ball Challenge R96EAF = Klonoa R96JAF = Kaze no Klonoa Door to Phantomile R96KAF = 바람의 크로노아 R96PAF = Klonoa R97E9B = Family Fun Football R9AE52 = Activision Demo Action Pack (Demo) R9BPMT = Bob the Builder: Festival of Fun R9CPMR = I'm a Celebrity...Get Me Out of Here! R9DE78 = Drawn to Life: The Next Chapter R9DP78 = Drawn to Life: The Next Chapter R9EPNP = Fix It: Home Improvement Challenge R9FE36 = F1 2009 R9FJ36 = F1 2009 R9FP36 = F1 2009 R9GEWR = Legend of the Guardians: The Owls of Ga'Hoole R9GPWR = Legend of the Guardians: The Owls of Ga'Hoole R9HE78 = Are You Smarter Than A 5th Grader?: Game Time R9IE01 = Pikmin R9IJ01 = Pikmin R9IK01 = 피크민 R9IP01 = Pikmin R9JE69 = The Beatles: Rock Band R9JP69 = The Beatles: Rock Band R9KE20 = Groovin' Blocks R9LE41 = Sleepover Party R9LP41 = Girls Life: Sleepover Party R9ME5Z = World Championship Athletics R9MPFR = Summer Athletics 2009 R9NPMR = Family Fortunes R9OE69 = Tiger Woods PGA Tour 10 R9OK69 = 타이거 우즈 PGA 투어 10 R9OP69 = Tiger Woods PGA Tour 10 R9QPNG = Dance Party Club Hits R9RPNG = Dance Party Pop Hits R9SPPL = Sudoku Ball: Detective R9TE69 = Tiger Woods PGA Tour 09 All-Play R9TJ13 = Tiger Woods PGA Tour 09 All-Play R9TK69 = 타이거 우즈 PGA Tour 09 ALL-PLAY R9TP69 = Tiger Woods PGA Tour 09 All-Play R9UE52 = Build-A-Bear Workshop: Friendship Valley R9UPGY = Build-A-Bear Workshop: Friendship Valley R9VE52 = Cabela's Outdoor Adventures 2010 R9WPSP = WSC Real 09: World Snooker Championship R9XE52 = Arcade Zone R9XP52 = Arcade Zone R9YES5 = Sled Shred R9ZE54 = Major League Baseball 2K9 RABAZZ = System Menu Changer RADP01 = New Super Mario Bros. Wii 0-6 Radiance RB2E6K = Balloon Pop RB2J2K = Rainbow Pop RB2P6K = Pop! RB2PGT = Pop! RB4E08 = Resident Evil 4: Wii Edition RB4J08 = Biohazard 4 Wii Edition RB4P08 = Resident Evil 4: Wii Edition RB4X08 = Resident Evil 4: Wii Edition RB5E41 = Brothers In Arms: Earned In Blood RB5P41 = Brothers In Arms: Earned In Blood RB6J18 = Bomberman RB7E54 = Bully: Scholarship Edition RB7P54 = Bully: Scholarship Edition RB8E70 = Backyard Baseball '09 RB9D78 = Bratz: The Movie RB9E78 = Bratz: The Movie RB9P78 = Bratz: The Movie RB9X78 = Bratz: The Movie RB9Y78 = Bratz: The Movie RBAE41 = Blazing Angels: Squadrons of WWII RBAP41 = Blazing Angels: Squadrons of WWII RBBE18 = Bomberman Land RBBJ18 = Bomberman Land Wii RBBP99 = Bomberman Land Wii RBCP41 = Telly Addicts RBEE52 = Bee Movie Game RBEP52 = Bee Movie Game RBEX52 = Bee Movie Game RBFE20 = Balls of Fury RBFP20 = Balls of Fury RBFP7J = Balls of Fury RBGE54 = The BIGS RBGP54 = The Bigs RBHE08 = Resident Evil Archives: Resident Evil Zero RBHJ08 = Biohazard 0 RBHP08 = Resident Evil Archives: Resident Evil Zero RBIEE9 = Harvest Moon: Animal Parade RBIJ99 = Bokujou Monogatari Waku Waku Animal March RBIP99 = Harvest Moon: Animal Parade RBKE69 = Boom Blox RBKJ13 = Boom Blox RBKK69 = 붐 블록스 RBKP69 = Boom Blox RBLE8P = Bleach: Shattered Blade RBLJ8P = Bleach: Shattered Blade RBLP8P = Bleach: Shattered Blade RBME5G = Bust-a-Move Bash! RBMPGT = Bust-A-Move RBNEG9 = Ben 10: Protector of Earth RBNPG9 = Ben 10: Protector of Earth RBNXG9 = Ben 10: Protector of Earth RBOE69 = Boogie RBOP69 = Boogie RBPE4Z = Brunswick Pro Bowling RBPP4Z = Brunswick Pro Bowling RBPPGT = Brunswick Pro Bowling RBQENR = Classic British Motor Racing RBQPUG = Classic British Motor Racing RBRE5G = Blast Works: Build, Trade, Destroy RBRP5G = Blast Works: Build, Trade, Destroy RBRX5G = Blast Works: Build, Trade, Destroy RBSJ08 = Sengoku Basara 2 Heroes (Double Pack) RBSJ09 = Sengoku Basara 2 Heroes RBTE8P = SEGA Bass Fishing RBTJ8P = Sega Bass Fishing RBTP8P = Sega Bass Fishing RBUE08 = Resident Evil: The Umbrella Chronicles RBUJ08 = Biohazard The Umbrella Chronicles RBUK08 = 바이오하자드: 엄브렐러 크로니컬즈 RBUP08 = Resident Evil: The Umbrella Chronicles RBVE52 = Barbie as The Island Princess RBVP52 = Barbie as The Island Princess RBWE01 = Battalion Wars 2 RBWJ01 = Totsugeki Famicom Wars vs. RBWP01 = Battalion Wars 2 RBXJ8P = Bleach: Versus Crusade RBYE78 = Barnyard RBYJ78 = Barnyard RBYP78 = Barnyard RBZE5Z = Billy the Wizard: Rocket Broomstick Racing RBZP5Z = Billy the Wizard: Rocket Broomstick Racing RBZPUG = Billy the Wizard: Rocket Broomstick Racing RBZXUG = Billy the Wizard: Rocket Broomstick Racing RC2E78 = Cars: Mater-National RC2P78 = Cars: Mater-National RC2X78 = Cars: Mater-National RC2Y78 = Cars: Mater-National RC3E41 = Petz Catz 2 RC3J41 = Nyanko To Mahou No Boushi RC3P41 = Catz RC3X41 = Catz RC4JD9 = Crayon Shin-Chan: Saikyou Kazoku Kasukabe King Wii RC4SGT = Shin Chan The New Adventures For Wii RC5JDQ = Osouji Sentai Clean Keeper RC7E20 = Sea Monsters: A Prehistoric Adventure RC7P7J = Sea Monsters: A Prehistoric Adventure RC8E7D = Crash: Mind Over Mutant RC8P7D = Crash: Mind Over Mutant RC8X7D = Crash: Mind Over Mutant RC9PGN = CID: The Dummy RCAE78 = Cars RCAJ78 = Cars RCAP78 = Cars RCAX78 = Cars RCAY78 = Cars RCBE52 = Cabela's Big Game Hunter RCBP52 = Cabela's Big Game Hunter RCCE5G = Cooking Mama: Cook Off RCCJC0 = Cooking Mama RCCPGT = Cooking Mama RCCR78 = Guitar Hero III Custom: Coheed and Cambria RCDD52 = Call of Duty 3 RCDE52 = Call of Duty 3 RCDP52 = Call of Duty 3 RCDX52 = Call of Duty 3 RCEE5Z = Mini Desktop Racing RCEPUG = Mini Desktop Racing RCEXUG = Mini Desktop Racing RCFE41 = Cosmic Family RCFP41 = Cosmic Family RCGE54 = Carnival Games RCGP54 = Carnival Games RCHC52 = Guitar Hero III Custom : Guitar Hero II RCHEAF = We Cheer RCHJAF = We Cheer RCHPAF = We Cheer RCHPGT = We Cheer RCIE41 = CSI: Hard Evidence RCIP41 = CSI: Hard Evidence RCJE8P = The Conduit RCJP8P = The Conduit RCKPGN = Alan Hansen's Sports Challenge RCLE4Q = Disney's Chicken Little: Ace in Action RCLP4Q = Chicken Little: Ace In Action RCOC99 = Meitantei Conan: Tsuioku no Mirage RCOJ99 = Meitantei Conan: Tsuioku no Mirage RCOK99 = Detective Conan: Case Closed: The Mirapolis Investigation RCOKZF = 명탐정 홈즈 추억의 환상 RCOPNP = Case Closed: The Mirapolis Investigation RCPE18 = Kororinpa: Marble Mania RCPJ18 = Kororinpa RCPP18 = Kororinpa RCQEDA = Penny Racers Party: Turbo-Q Speedway RCQJDA = Choro Q RCRE5D = Cruis'n RCRP5D = Cruis'n RCSE20 = Chicken Shoot RCSP20 = Chicken Shoot RCSP7J = Chicken Shoot RCTE5Z = Counter Force RCTP5Z = Counter Force RCTPGT = Counter Force RCUE52 = Cabela's Legendary Adventures RCUP52 = Cabela's Legendary Adventures RCVE41 = Far Cry: Vengeance RCVP41 = Far Cry: Vengeance RCXE78 = All Star Cheer Squad RCXP78 = All Star Cheerleader RCXX78 = All Star Cheerleader RCYPGN = Cheggers Party Quiz RD2E41 = Red Steel 2 RD2J41 = Red Steel 2 RD2K41 = 레드스틸2 RD2P41 = Red Steel 2 RD2X41 = Red Steel 2 RD4EA4 = Dance Dance Revolution: Hottest Party 2 RD4JA4 = Dance Dance Revolution: Furu Furu Party RD4PA4 = Dance Dance Revolution: Hottest Party 2 RD6EE9 = Animal Kingdom: Wildlife Expedition RD6J8N = Doubutu Kisoutengai RD6PNP = SAFAR'Wii RD8E52 = Dancing with the Stars RD9J18 = Sudoku RDAE52 = Dancing with the Stars: We Dance! RDBE70 = Dragon Ball Z: Budokai Tenkaichi 2 RDBJAF = Dragon Ball Z: Sparking! NEO RDBP70 = Dragon Ball Z: Budokai Tenkaichi 2 RDBPAF = Dragon Ball Z: Budokai Tenkaichi 2 RDCE78 = Deadly Creatures RDCP78 = Deadly Creatures RDDEA4 = Dance Dance Revolution: Hottest Party RDDJA4 = Dance Dance Revolution: Hottest Party RDDPA4 = Dance Dance Revolution Hottest Party RDEJ0A = Zenkoku Dekotora Matsuri RDFE41 = Shaun White Snowboarding: Road Trip RDFP41 = Shaun White Snowboarding: Road Trip RDGEA4 = Castlevania Judgment RDGJA4 = Akumajou Dracula Judgment RDGPA4 = Castlevania Judgment RDHE78 = Destroy All Humans! Big Willy Unleashed RDHP78 = Destroy All Humans! Big Willy Unleashed RDIE41 = The Dog Island RDIJG2 = The Dog Island RDIP41 = The Dog Island RDJE4F = Death Jr.: Root of Evil RDJP4F = Death Jr.: Root of Evil RDKE01 = Donkey Kong: Barrel Blast RDKJ01 = Donkey Kong Taru Jet Race RDKP01 = Donkey Kong: Jet Race RDLE5G = Spy Fox in Dry Cereal RDLP70 = Spy Fox In Dry Cereal RDME6K = Domino Rally RDMJ8N = Go! Go! Minon RDMPHZ = Minon: Everyday Hero RDNEA4 = Dance Dance Revolution: Disney Grooves RDOE41 = Petz Dogz 2 RDOJ41 = Dog To Mahou No Boushi RDOP41 = Dogz RDOX41 = Dogz RDPE54 = Dora Saves the Snow Princess RDPP54 = Dora Saves the Snow Princess RDPX54 = Dora Saves the Snow Princess RDQEGD = Dragon Quest Swords: The Masked Queen and The Tower of Mirrors RDQJGD = Dragon Quest Swords: Kamen no Joou to Kagami no Tou RDQPGD = Dragon Quest Swords: The Masked Queen and the Tower of Mirrors RDREA4 = Dewy's Adventure RDRJA4 = Dewy's Adventure RDRPA4 = Dewy's Adventure RDSE70 = Dragon Ball Z: Budokai Tenkaichi 3 RDSJAF = Dragon Ball Z: Sparking! METEOR RDSPAF = Dragon Ball Z: Budokai Tenkaichi 3 RDSZ70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino RDTEAF = Tamagotchi: Party On! RDTJAF = Tamagotchi Pikadai RDTPAF = Tamagotchi: Party On! RDUE01 = DU Super Mario Bros. : Find That Princess RDUJDQ = Sugorochronicle Migite Ni Ken Wo Hidarite Ni Saikoro Wo RDVE41 = Driver: Parallel Lines RDVP41 = Driver: Parallel Lines RDWEG9 = Dragon Blade: Wrath of Fire RDWJG9 = Dragon Blade: Wrath Of Fire RDWPG9 = Dragon Blade: Wrath Of Fire RDXE18 = Deca Sports RDXJ18 = Deca Sporta RDXKA4 = 데카스포르타 Wii로 즐기는 스포츠 RDXP18 = Sports Island RDYEGN = CID: The Dummy RDZJ01 = Disaster: Day of Crisis RDZP01 = Disaster: Day of Crisis RE3ENR = WWII Aces RE4E08 = Resident Evil Archives: Resident Evil RE4J08 = Biohazard RE4P08 = Resident Evil Archives: Resident Evil RE5PAF = The Munchables RE6PRT = Summer Challenge: Athletics Tournament RE7PNK = Hunting Challenge RE8J99 = Katekyoo Hitman Reborn Kindan No Yami No Delta REAE69 = Celebrity Sports Showdown REAF69 = Celebrity Sports Showdown REAP69 = Celebrity Sports Showdown REBE4Z = Mr Bean's Wacky World of Wii REBPMT = Mr Bean's Wacky World of Wii RECE6K = Spy Games: Elevator Mission RECP6K = Spy Games: Elevator Mission REDE41 = Red Steel REDJ41 = Red Steel REDP41 = Red Steel REFP41 = My French Coach: Improve Your French REGE36 = Emergency Mayhem REGP36 = Emergency Mayhem REHE41 = Emergency Heroes REHP41 = Emergency Heroes REJEAF = Active Life: Extreme Challenge REJJAF = Family Trainer 2 REJPAF = Family Trainer: Extreme Challenge REKE41 = Gold's Gym: Cardio Workout REKJ2N = Shape Boxing Wii De Enjoy Diet REKP41 = My Fitness Coach: Cardio Workout REKU41 = Gold's Gym: Cardio Workout RELEA4 = Elebits RELJA4 = Elebits RELKA4 = 엘레비츠 RELPA4 = Eledees RELSAB = Sonic Adventure DX: Director's Cut (Preview Prototype) REMJ8P = Doraemon Wii Himitsu Douguou Ketteisen RENE8P = Sonic and the Black Knight RENJ8P = Sonic and the Black Knight RENP8P = Sonic and the Black Knight REQE54 = Go Diego Go! Safari Rescue REQP54 = Go Diego Go! Safari Rescue REQX54 = Go Diego Go! Safari Rescue REQY54 = Go Diego Go! Safari Rescue RESP41 = My Spanish Coach: Improve Your Spanish RETJAF = Ennichi No Tatsujin REUPNK = My Body Coach REVJ8P = Imabi Kisô: Kaimei Hen REVJBP = Imabikisou: Kaimei Hen REWFMR = My Horse Club: On the Trail of the Mysterious Appaloosa REWXMR = My Horse Club: On the Trail of the Mysterious Appaloosa REWYMR = My Horse Club: On the Trail of the Mysterious Appaloosa REXE01 = Excite Truck REXJ01 = Excite Truck REXP01 = Excite Truck REYE4Q = Disney Sing It: High School Musical 3 Senior Year REYP4Q = Disney Sing It: High School Musical 3 REYX4Q = Disney Sing It: High School Musical 3 REZEJJ = Fritz Chess REZPKM = Fritz Chess RF2E54 = Fantastic Four: Rise of the Silver Surfer RF2P54 = Fantastic Four: Rise of the Silver Surfer RF3E52 = Ferrari Challenge: Trofeo Pirelli RF3P6M = Ferrari Challenge RF4E36 = Super Fruit Fall RF4P6M = Super Fruit Fall RF7J08 = Tatsunoko vs. Capcom: Cross Generation of Heroes RF8E69 = FIFA Soccer 08 RF8J13 = FIFA 08 RF8K69 = FIFA 08 RF8P69 = FIFA 08 RF8X69 = FIFA 08 RF8Y69 = FIFA 08 RF9E69 = FIFA Soccer 09 All-Play RF9J13 = FIFA 09 All-Play RF9K69 = FIFA 09 All-Play RF9P69 = FIFA 09 All-Play RF9X69 = FIFA 09 All-Play RF9Y69 = FIFA 09 All-Play RFAEAF = Active Life: Outdoor Challenge RFAJAF = Family Trainer: Athletic World RFAPAF = Family Trainer RFBE01 = Endless Ocean RFBJ01 = Forever Blue RFBP01 = Endless Ocean RFCEGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFCJGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFCPGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFEE01 = Fire Emblem: Radiant Dawn RFEJ01 = Fire Emblem Akatsuki No Megami RFEP01 = Fire Emblem: Radiant Dawn RFFEGD = Final Fantasy Crystal Chronicles: Echoes of Time RFFJGD = Final Fantasy Crystal Chronicles: Echoes of Time RFFPGD = Final Fantasy Crystal Chronicles: Echoes of Time RFJJAF = Family Jockey RFKE41 = My Fitness Coach RFKJ41 = My Fitness Coach RFKP41 = My Fitness Coach: Get In Shape RFKX41 = My Fitness Coach: Get In Shape RFLE69 = Madden NFL 09 All-Play RFLP69 = Madden NFL 09 All-Play RFLPWK = Wii Freeloader RFMJAF = Pro Yakyuu Family Stadium RFNE01 = Wii Fit RFNJ01 = Wii Fit RFNK01 = Wii Fit RFNP01 = Wii Fit RFNW01 = Wii Fit RFOE52 = Spider-Man: Friend or Foe RFOP52 = Spider-Man: Friend or Foe RFOX52 = Spider-Man: Friend or Foe RFPE01 = Wii Fit Plus RFPJ01 = Wii Fit Plus RFPK01 = 위 피트 플러스 RFPP01 = Wii Fit Plus RFPR01 = Wii Fit Plus RFPW01 = Wii Fit Plus RFQE69 = FaceBreaker K.O. Party RFQJ13 = FaceBreaker K.O. Party RFQJ69 = FaceBreaker K.O. Party RFQK69 = 페이스브레이커: K.O. 파티 RFQP69 = FaceBreaker: K.O. Party RFRE5G = Furu Furu Park RFRJC0 = Furu Furu Park RFSEEB = Shiren the Wanderer RFSJ8P = Fushigi No Dungeon: Furai No Shiren 3 RFTE70 = Backyard Football RFTP70 = Backyard Football '08 RFUJA4 = Mahjong Kakutou Club Wii: Wi-fi Taiou RFVE52 = Monkey Mischief! Party Time RFVP52 = Monkey Mischief! 20 Games RFWE5Z = Safari Adventures Africa RFWPNK = Safari Adventures Africa RFYFMR = Fort Boyard RFZE41 = Imagine Fashion Party RFZP41 = Imagine Fashion Idol RG0E52 = Guitar Hero III Custom : Green Day Plus RG1552 = Guitar Hero III Custom : Weird Al Yankovic RG1E52 = Guitar Hero III Custom : Revenge RG2E52 = Guitar Hero III Custom : The Beatles Plus RG2EXS = Guilty Gear XX Accent Core RG2JJF = Guilty Gear XX Accent Core RG2PGT = Guilty Gear XX Accent Core RG2PXS = Guilty Gear XX Accent Core RG3E52 = Guitar Hero III Custom : Muse and Rush RG4152 = Guitar Hero III Custom : Sum 41 RG4E52 = Guitar Hero Mayan Apocalypse RG4JC0 = Let's Go By Train Shinkansen EX RG5EWR = Guinness World Records: The Videogame RG5PWR = Guinness World Records: The Videogame RG6E69 = Boogie SuperStar RG6P69 = Boogie SuperStar RG7EQH = City Builder RG8E41 = Petz Sports RG8P41 = Petz Sports: Dog Playground RG9E52 = Guitar Hero III Custom : Anarchy RG9E54 = Carnival Games: Mini Golf RG9P54 = Carnival Games: Mini Golf RGAE8P = Planet 51: The Game RGAP8P = Planet 51: The Game RGBE08 = Harvey Birdman: Attorney at Law RGBP08 = Harvey Birdman: Attorney at Law RGCEXS = MiniCopter: Adventure Flight RGCJJF = Petitcopter Wii Adventure Flight RGCM52 = Guitar Hero III Custom : Metallica RGCPGT = Radio Helicopter RGCS52 = Guitar Hero III Custom : ClasSick Edition RGDEA4 = Target: Terror RGDPA4 = Target: Terror RGEJJ9 = The World Of Golden Eggs Norinori Rhythm RGEK52 = Guitar Hero III Custom: Slipknot RGFE69 = The Godfather: Blackhand Edition RGFF69 = The Godfather: Blackhand Edition RGFI69 = The Godfather: Blackhand Edition RGFP69 = The Godfather: Blackhand Edition RGFS69 = The Godfather: Blackhand Edition RGGE52 = Guitar Hero III Custom : Rock The Games RGGJAF = Gegege No Kitarou Youkai Daiundoukai RGHC20 = Guitar Hero III Custom : Fail Edition RGHE51 = Guitar Hero III Custom : Aspero RGHE52 = Guitar Hero III: Legends of Rock RGHE60 = Guitar Hero III Custom: WTF Custom RGHE61 = I Fought The Law - GH3 RGHE62 = Sweet Home Alabama - GH3 RGHE69 = Guitar Hero III Custom : Legends of METAL RGHEMR = Guitar Hero III Custom : Modern Rock RGHI52 = Guitar Hero III Custom: Chimba RGHJ52 = Guitar Hero III Legends of Rock RGHK52 = 기타히어로3: 레전드 오브 락 RGHP52 = Guitar Hero III: Legends of Rock RGHPOH = SingItStar Italian Greatest Hits RGHPS2 = Guitar Hero III Custom : J-Music RGHX52 = Guitar Hero III Custom: Anime's Alex Chan RGIJC8 = G1 Jockey Wii RGIPC8 = G1 Jockey Wii RGJE4Z = George of the Jungle: Search for the Secret RGJP7U = George of the Jungle: Search for the Secret RGKE52 = Guitar Hero III Custom : KoRn RGKENR = Kidz Sports: Crazy Golf RGKPNR = Crazy Mini Golf RGLE7D = Geometry Wars: Galaxies RGLP7D = Geometry Wars: Galaxies RGME5D = The Grim Adventures of Billy & Mandy RGMP5D = The Grim Adventures of Billy & Mandy RGNJAF = Gintama Yorozuya Tuve RGOJJ9 = The World of Golden Eggs Nissan Note Version RGPJAF = Anime Slot Revolution Pachi-Slot Kidou Senshi Gundam II Ai Senshi Hen RGQE70 = Ghostbusters: The Video Game RGQP70 = Ghostbusters: The Video Game RGRM52 = Guitar Hero III Custom: Rock & Metal RGSE8P = Ghost Squad RGSJ8P = Ghost Squad RGSP8P = Ghost Squad RGTE41 = GT Pro Series RGTJBL = GT Pro Series RGTP41 = GT Pro Series RGVE52 = Guitar Hero: Aerosmith RGVE99 = Guitar Hero Aerosmith Custom: NOT Aerosmith but... RGVJ52 = Guitar Hero: Aerosmith RGVP52 = Guitar Hero: Aerosmith RGWE41 = Rabbids Go Home RGWJ41 = Rabbids Go Home RGWP41 = Rabbids Go Home RGWX41 = Rabbids Go Home RGXE5D = Game Party RGXEFN = Guitar Hero III Custom: Meteo Last Custom RGXM52 = Guitar Hero III Custom : xMxExTxAxLx's Edition RGXP5D = Game Party RGYE5Z = Action Girlz Racing RGYPUG = Action Girlz Racing RGZC52 = Guitar Hero III Custom : Led Zeppelin RGZE52 = Guitar Hero III Custom : Shred Edition RGZE70 = Godzilla Unleashed RGZP70 = Godzilla Unleashed RH2E41 = Hell's Kitchen: The Video Game RH2P41 = Hell's Kitchen RH3E4Q = High School Musical 3: Senior Year Dance! RH3J4Q = High School Musical 3: Senior Year Dance! RH3P4Q = High School Musical 3: Senior Year Dance! RH4XUG = Hamster Heroes RH5EVN = Horse Life Adventures RH5PKM = Horse Life 2 RH6E69 = Harry Potter and the Half-Blood Prince RH6K69 = 해리포터와 혼혈왕자 RH6P69 = Harry Potter and the Half-Blood Prince RH7J8P = Jissen Pachislot Hisshouhou! Sammy's Collection Hokuto no Ken Wii RH8E4F = Tomb Raider: Underworld RH8JEL = Tomb Raider: Underworld RH8P4F = Tomb Raider: Underworld RH8X4F = Tomb Raider: Underworld RH9JC8 = Harukanaru Toki no Naka de 4 RHAE01 = Wii Play RHAJ01 = Hajimete no Wii RHAK01 = 처음 만나는 Wii RHAP01 = Wii Play RHAW01 = Wii Play RHCE52 = The History Channel: Battle for the Pacific RHCP52 = The History Channel: Battle for the Pacific RHD222 = The House of The Dead 2 RHD333 = The House of the Dead 3 RHDE8P = The House of the Dead 2 & 3 Return RHDJ8P = The House of The Dead 2 & 3 Return RHDP8P = The House of the Dead 2 & 3 Return RHEEJJ = Professor Heinz Wolff's Gravity RHEPKM = Professor Heinz Wolff's Gravity RHFE5D = Happy Feet RHFP5D = Happy Feet RHGH52 = Guitar Hero III Custom : RandomHero's RHGP6Z = Agent Hugo: Lemoon Twist RHGX6Z = Agent Hugo: Lemoon Twist RHHJ8J = Suzumiya Haruhi no Gekidou RHIEXJ = Victorious Boxers: Revolution RHIJ41 = Hajime No Ippo Revolution RHIJJ9 = Hajime No Ippo Revolution RHIP41 = Victorious Boxers Challenge RHJJ13 = Ginsei Table Games Wii RHKE18 = Help Wanted: 50 Wacky Jobs RHKJ18 = Hataraku Hit RHKP18 = Job Island: Hard Working People RHLE4Z = World Championship Poker Featuring Howard Lederer: All-In RHLPGT = World Championship Poker Featuring Howard Lederer: All-In RHMEE9 = Harvest Moon: Magical Melody RHMP99 = Harvest Moon: Magical Melody RHNE70 = My Horse & Me RHNP70 = My Horse & Me RHOE8P = The House of the Dead: Overkill RHOJ8P = The House of The Dead: Overkill RHOP8P = The House of the Dead: Overkill RHPJ8N = Akko De Pon! Ikasama Hourouki RHQE4Q = Hannah Montana: Spotlight World Tour RHQP4Q = Hannah Montana: Spotlight World Tour RHQX4Q = Hannah Montana: Spotlight World Tour RHQY4Q = Hannah Montana: Spotlight World Tour RHRJ99 = Kateikyou Hitman Reborn! Dream Hyper Battle! Wii RHSE36 = Heatseeker RHSP36 = Heatseeker RHSX36 = Heatseeker RHSY36 = Heatseeker RHTE54 = Manhunt 2 RHTP54 = Manhunt 2 RHUE20 = Skate City Heroes RHUP20 = Skate City Heroes RHUP7J = Skate City Heroes RHVE5Z = Crazy Chicken Tales RHVPFR = Crazy Chicken Tales RHWE52 = Hot Wheels: Beat That! RHWP52 = Hot Wheels: Beat That! RHXE78 = Battle of the Bands RHXP78 = Battle of the Bands RHYJAF = Haneru no Tobira Wii RHZE41 = Petz Horsez 2 RHZP41 = Pippa Funnell: Ranch Rescue RI1POH = SingItStar Italian Party RI2E4Q = High School Musical: Sing It! RI2P4Q = Disney Sing It: High School Musical RI2POH = SingItStar Italian Party vol. 2 RI3E5D = The Ant Bully RI3P5D = The Ant Bully RI3POH = SingItStar Italian Top.it RI6ENR = Summer Sports 2: Island Sports Party RI6P41 = Summer Sports Party RI7E4Z = Monster Mayhem: Build and Battle RI8E41 = Brothers In Arms: Road to Hill 30 RI8P41 = Brothers In Arms: Road To Hill 30 RI9EGT = Diva Girls: Divas on Ice RI9PGT = Diva Girls: Princess On Ice RIAE52 = Ice Age: Dawn of the Dinosaurs RIAI52 = Ice Age 3: Dawn of the Dinosaurs RIAP52 = Ice Age 3: Dawn of the Dinosaurs RIBES5 = Igor the Game RIBPKM = Igor: The Game RICENR = Iron Chef America: Supreme Cuisine RIDE20 = Smiley World: Island Challenge RIDP7J = Smiley World: Island Challenge RIEEA4 = Karaoke Revolution Presents: American Idol Encore RIFEA4 = Karaoke Revolution Presents: American Idol Encore 2 RIGE54 = Go Diego Go! Great Dinosaur Rescue RIGP54 = Go, Diego, Go! Great Dinosaur Rescue RIHE8P = The Incredible Hulk RIHP8P = The Incredible Hulk RIIEQH = Kart Racer RIIPNG = Kart Racer RIIV = Riivolution RIJE69 = G.I. JOE: The Rise of Cobra RIJP69 = G.I. JOE: The Rise of Cobra RIKEQH = Truck Racer RIKPNG = Truck Racer RILJ18 = Puzzle Series Vol. 2: Illust Logic + Colorful Logic RIME36 = Impossible Mission RIMP6M = Impossible Mission RINE08 = Dead Rising: Chop Till You Drop RINJ08 = Dead Rising Zombie No Ikenie RINP08 = Dead Rising: Chop Till You Drop RIOPSU = Horrible Histories: Ruthless Romans RIPEAF = One Piece: Unlimited Adventure RIPJAF = One Piece: Unlimited Adventure RIPPAF = One Piece Unlimited Cruise 1: The Treasure Beneath the Waves RIQPUJ = Dancing on Ice RIRE8P = Iron Man RIRP8P = Iron Man RITFMR = Intervilles, le jeu officiel RIUJAF = One Piece Unlimited Cruise 2: Awakening of a Hero RIUPAF = One Piece Unlimited Cruise 2: Awakening of a Hero RIVEXJ = Ivy The Kiwi? RIVJAF = Ivy the Kiwi? RIVP99 = Ivy The Kiwi? RIWENR = Burger Island RIXE20 = Dodge Racing: Charger vs. Challenger RIXP7J = Dodge Racing: Charger vs Challenger RIYE52 = Space Camp RIYP52 = Space Camp RIZENR = Indianapolis 500 Legends RJ2E52 = 007: Quantum of Solace RJ2JGD = 007: Quantum of Solace RJ2P52 = 007: Quantum of Solace RJ3E20 = Jeep Thrills RJ3P7J = Jeep Thrills RJ4ENR = Jewel Master: Cradle of Rome RJ4PRM = Jewel Master: Cradle of Rome RJ6E69 = MySims Sky Heroes RJ6P69 = MySims Sky Heroes RJ7FWP = Télé 7 Jeux: Mots Fléchés RJ8E64 = Indiana Jones and the Staff of Kings RJ8P64 = Indiana Jones and the Staff of Kings RJ9E5Z = thinkSMART Family RJ9FMR = Think Logic Trainer RJ9PFR = Think Logic Trainer RJ9XML = Think Logic Trainer RJAD52 = Call of Duty: Modern Warfare - Reflex Edition RJAE52 = Call of Duty: Modern Warfare - Reflex Edition RJAP52 = Call of Duty: Modern Warfare - Reflex Edition RJAX52 = Call of Duty: Modern Warfare - Reflex Edition RJBJAF = Daikaijuu Battle Ultra Coliseum RJCE52 = Score International Baja 1000: World Championship Offroad Racing RJCP52 = Score International Baja 1000: World Championship Offroad Racing RJDPKM = My Animal Centre RJEE70 = Jenga World Tour RJEP70 = Jenga World Tour RJFE5G = Jillian Michaels' Fitness Ultimatum 2009 RJFP5G = Jillian Michaels' Fitness Ultimatum 2009 RJFPKM = Jillian Michaels' Fitness Ultimatum 2009 RJGJDA = Jinsei Game Wii RJHE52 = Madagascar Kartz RJHP52 = Madagascar Kartz RJIP6M = Ferrari: The Race Experience RJJE8P = Jambo! Safari Animal Rescue RJJG52 = Guitar Hero III Custom : JJ-KwiK's Edition RJJP8P = Jambo! Safari RJMERS = Jumper: Griffin's Story RJMPRS = Jumper: Griffin's Story RJNE20 = Build 'N Race RJOEXJ = Ju-on: The Grudge RJOJJ9 = Kyoufu Taikan Juon RJOP99 = Ju-On The Grudge RJPJA4 = Jikkyou Powerful Pro Yakyuu Wii RJQE5G = Pajama Sam: Don't Fear the Dark RJQP70 = Pajama Sam: No Need to Hide when it's Dark Outside RJREA4 = Dance Dance Revolution: Hottest Party 3 RJRJA4 = Dance Dance Revolution: MUSIC FIT RJRPA4 = Dance Dance Revolution: Hottest Party 3 RJSENR = Kawasaki Jet Ski RJSPNR = Kawasaki Jet Ski RJSPUG = Kawasaki Jet Ski RJSXUG = Kawasaki Jet Ski RJTJ01 = Minna no Joushiki Ryoku TV RJVEGN = Hysteria Hospital: Emergency Ward RJVPGN = Hysteria Hospital: Emergency Ward RJWJEL = Jawa mammoth And A Secret Stone RJXE5G = Go Play Lumberjacks RJXXFR = Go Play Lumberjacks RJYE5Z = Doctor Fizzwizzle's Animal Rescue RJZP7U = SNK Arcade Classics Volume 1 RK2EEB = Trauma Center: New Blood RK2JEB = Trauma Center: New Blood RK2P01 = Trauma Center: New Blood RK3J01 = And-Kensaku RK4JAF = Kekkaishi RK5E01 = Kirby's Epic Yarn RK5J01 = Keito no Kirby RK5K01 = 털실 커비의 이야기 RK5P01 = Kirby's Epic Yarn RK6E18 = Marble Saga: Kororinpa RK6J18 = Kororinpa 2 RK6P18 = Marbles! Balance Challenge RK7J0A = Ougon no Kizuna RK8E54 = Major League Baseball 2K8 RK9EA4 = Karaoke Revolution RK9PA4 = Karaoke Revolution RKAE6K = Ultimate Shooting Collection RKAJMS = Milestone Shooting Collection RKAK8M = 마일스톤 슈팅 컬렉션 카라스 Wii RKAP6K = Ultimate Shooting Collection RKBE41 = Cranium Kabookii RKBP41 = Cranium Kabookii RKDEEB = Trauma Center: Second Opinion RKDJEB = Trauma Center: Second Opinion RKDJG9 = Kamen Rider: Climax Heroes W RKDP01 = Trauma Center: Second Opinion RKDPEB = Trauma Center: Second Opinion RKEENR = Cate West: The Vanishing Files RKEPGN = Cate West: The Vanishing Files RKEPNR = Cate West: The Vanishing Files RKFEH4 = The King of Fighters Collection: The Orochi Saga RKFKZA = 킹 오브 파이터즈 컬렉션 오로치 사가 RKFP7U = King of Fighters Collection: The Orochi Saga RKGEGY = Bratz Kidz: Slumber Party RKGPGY = Bratz: Kidz Party RKHE52 = Kung Fu Panda: Legendary Warriors RKHP52 = Kung Fu Panda: Legendary Warriors RKIENR = Kidz Sports: Ice Hockey RKIPUG = Kidz Sports: Ice Hockey RKJJ0Q = 250 Mannin no Kanken Wii de Tokoton Kanji Nou RKKE6K = Heavenly Guardian RKLEG9 = Coraline RKLPG9 = Coraline RKME5D = Mortal Kombat: Armageddon RKMP5D = Mortal Kombat: Armageddon RKNJ2N = Kanken Wii: Kanji Ou Kettei Sen RKOJBL = Relaxuma: Minna de Goyururi Seikatsu RKPE52 = Kung Fu Panda RKPJ52 = Kung Fu Panda RKPK52 = 쿵푸팬더 RKPP52 = Kung Fu Panda RKPV52 = Kung Fu Panda RKPY52 = Kung Fu Panda RKQENR = Candace Kane's Candy Factory RKSENR = Kidz Sports: Basketball RKSPUG = Kidz Sports: Basketball RKTENR = Kidz Sports: International Soccer RKTXUG = Kidz Sports: International Football RKVE54 = The BIGS 2 RKVP54 = The Bigs 2: Baseball RKWJ18 = Jigsaw Puzzle Kyo-no Wan Ko RKXE69 = Rock Band RKXP69 = Rock Band RKYE20 = Army Men: Soldiers of Misfortune RKYP20 = Army Men: Soldiers of Misfortune RKYP7J = Army Men: Soldiers of Misfortune RKZEA4 = Lost in Blue: Shipwrecked RKZJA4 = Survival Kids Wii RKZPA4 = Lost in Blue: Shipwrecked RL2E78 = Gallop & Ride! RL2HMN = Horse & Pony: My Riding Stables RL2HMR = Horse & Pony: My Riding Stables RL2PFR = Horse & Pony: My Riding Stables RL3EMJ = Luxor 3 RL4E64 = LEGO Indiana Jones 2: The Adventure Continues RL4P64 = LEGO Indiana Jones 2: The Adventure Continues RL5E52 = iCarly RL5P52 = iCarly RL6E69 = NERF N-Strike Elite RL7E69 = Littlest Pet Shop: Friends RL7P69 = Littlest Pet Shop: Friends RL8E54 = MLB Power Pros 2008 RL9ESD = Guitar Hero Linkin Park RL9PHZ = King of Pool RLADMR = Deal or No Deal: The Banker Is Back RLAE20 = Deal or No Deal RLAPMR = Deal or No Deal: The Banker Is Back RLBEWR = LEGO Batman: The Videogame RLBPWR = LEGO Batman: The Videogame RLCP7J = Love is... in bloom RLDEGY = Legend of the Dragon RLDPFK = Legend Of The Dragon RLEEFS = Ten Pin Alley 2 RLEPFS = Ten Pin Alley 2 RLFE64 = Star Wars The Clone Wars: Lightsaber Duels RLFP64 = Star Wars The Clone Wars: Lightsaber Duels RLGE64 = LEGO Star Wars: The Complete Saga RLGJ52 = LEGO Star Wars: The Complete Saga RLGP64 = LEGO Star Wars: The Complete Saga RLHE52 = Little League World Series Baseball 2008 RLHP52 = Little League World Series Baseball 2008 RLIE64 = LEGO Indiana Jones: The Original Adventures RLIL78 = Guitar Hero 2nd Custom RLIP64 = LEGO Indiana Jones: The Original Adventures RLJEHJ = Line Rider 2: Unbound RLJPKM = Line Rider Freestyle RLKEGY = Code Lyoko: Quest for Infinity RLKPFK = Code Lyoko: Quest for Infinity RLLP70 = Go West: A Lucky Luke Adventure RLMJH4 = Metal Slug Complete RLNEVN = Survivor RLNFMR = Survivor RLNHMR = Survivor RLNIMR = Survivor RLNPMR = Survivor RLPE69 = Littlest Pet Shop RLPP69 = Littlest Pet Shop RLQE52 = Big League Sports RLQP52 = World Championship Sports RLRE4F = Tomb Raider: Anniversary RLRJEL = Tomb Raider: Anniversary RLRP4F = Tomb Raider: Anniversary RLSE8P = Alien Syndrome RLSP8P = Alien Syndrome RLTENR = London Taxi: Rush Hour RLTPNR = London Taxi: Rush Hour RLTXUG = London Taxi: Rush Hour RLUE4Q = Disney's Bolt RLUP4Q = Bolt RLUX4Q = Bolt RLUY4Q = Bolt RLVE78 = Avatar: The Last Airbender RLVP78 = Avatar: The Legend of Aang RLWE78 = Ratatouille RLWJ78 = Ratatouille RLWP78 = Ratatouille RLWW78 = Ratatouille RLWX78 = Ratatouille RLWY78 = Ratatouille RLWZ78 = Ratatouille RLXEMJ = Luxor: Pharaoh's Challenge RLXP36 = Luxor: Pharaoh's Challenge RLYEWR = Looney Tunes: Acme Arsenal RLYPWR = Looney Tunes: Acme Arsenal RLZE4Z = Defendin' De Penguin RLZP4Z = Defendin' De Penguin RLZPXT = Defendin' De Penguin RM2E69 = Medal of Honor: Heroes 2 RM2J13 = Medal of Honor: Heroes 2 RM2P69 = Medal of Honor: Heroes 2 RM2U69 = Medal of Honor: Heroes 2 RM2X69 = Medal of Honor: Heroes 2 RM3E01 = Metroid Prime 3: Corruption RM3J01 = Metroid Prime 3: Corruption RM3P01 = Metroid Prime 3: Corruption RM4E41 = Monster 4x4: World Circuit RM4J41 = Monster 4x4: World Circuit RM4P41 = Monster 4x4: World Circuit RM5E7D = The Mummy: Tomb of the Dragon Emperor RM5P7D = The Mummy: Tomb Of The Dragon Emperor RM6EEB = Baroque RM6P99 = Baroque RM7E4F = Monster Lab RM7P4F = Monster Lab RM8E01 = 마리오 파티 8 RM8J01 = 마리오 파티 8 RM8K01 = 마리오 파티 8 RM8P01 = 마리오 파티 8 RM9EGM = Mushroom Men: The Spore Wars RM9PGM = Mushroom Men: The Spore Wars RMAE01 = Mario Power Tennis RMAJ01 = Mario Power Tennis RMAP01 = Mario Power Tennis RMBE01 = Mario Super Sluggers RMBJ01 = Super Mario Stadium: Family Baseball RMCC01 = Mario Kart Wii (Custom) RMCE01 = Mario Kart Wii RMCE02 = Wiimms MKW Fun 2010-02.p RMCE03 = Wiimms MKW Fun 2010-10.p RMCE04 = Wiimms MKW Fun 2010-12.p RMCE05 = Wiimms MKW Fun 2010-12.p RMCE06 = Wiimms MKW Fun 2010-12.ntsc RMCE07 = Wiimms MKW Retro 2011-02.ntsc RMCE08 = Wiimms MKW Fun 2011-03.ntsc RMCE09 = Wiimms MKW Fun 2011-06.ntsc RMCE10 = Wiimms MKW Fun 2011-07.ntsc RMCE11 = Wiimms MKW Fun 2011-08.ntsc RMCE12 = Wiimms MKW Fun 2011-11.ntsc RMCE13 = Wiimms MKW Fun 2012-01.ntsc RMCE14 = Wiimms MKW Revival 2012-02.ntsc RMCE15 = Wiimms MKW Boost 2012-03.ntsc RMCE16 = Wiimms MKW Fun 2012-05.ntsc RMCE17 = Wiimms MKW Fun 2012-09.ntsc RMCE18 = Wiimms MKW N64 2012-10.ntsc RMCE19 = Wiimms MKW Fun 2012-12.ntsc RMCE20 = Wiimms MKW Fun 2013-04.ntsc RMCE21 = Wiimms MKW Fun 2013-09.ntsc RMCE22 = Wiimms MKW Fun 2013-10.ntsc RMCE23 = Wiimms MKW Fun 2014-01.ntsc RMCE24 = Wiimms MKW Retro 2014-02.ntsc RMCE25 = Wiimms MKW Fun 2014-04.ntsc RMCE26 = Wiimms MKW Fun 2014-11.ntsc RMCE65 = Mario Kart Wii: Double Dash 64 RMCE66 = Mizy's Texture Pack RMCE67 = Rookie's Texture & Music Pack RMCE68 = Character Kart Wii RMCE69 = Venom Kart Wii RMCE70 = Stickboy Kart Wii RMCE71 = Funky's Riivolution RMCE72 = CtocKart Wii RMCE73 = Mario Kart Adventures RMCE74 = Mario Kart Adventures RMCE75 = Cam, Tom and Troy's CTGP Pack RMCE76 = Pro CT Pack RMCE77 = SpyKid's CT Pack RMCE78 = Mario Kart: Double Dash!! Wii RMCE79 = Super Mario Kart Wii RMCE80 = Mario Kart 64 Wii RMCE81 = Spade's Custom Track Pack RMCE82 = HD's Retro Pack RMCE83 = Glitch Kart Wii RMCE84 = Legend's Awesome CT Pack RMCE85 = Project Double Dash!! RMCE86 = Newer Mario Kart Wii Revolution!: Backward Circuits RMCE87 = Newer Mario Kart Wii Revolution!: Sunset Sun & Dark Moon RMCE88 = Kaizo Kart Wii RMCE89 = Mario Kart Extra RMCE90 = Mario Kart QZW RMCE91 = Medal Kart 64 RMCE92 = MKWLH100's Custom Track Pack RMCE93 = MKW Hack Pack RMCE94 = Custom Track Kart Wii RMCE95 = Soarin's CT Pack X RMCE96 = Mario Kart 6 RMCE97 = Mario Kart Wii Awesomeness 2 RMCE98 = Mario Kart Wii Awesomeness RMCE99 = ReedyCustomPack Ultimate RMCEA1 = Mario Kart Adventures v0.8 RMCECT = Mario Kart Wii CTGP Revolution RMCEDK = Darky Kart Wii RMCEG2 = Mario Kart Wii CTGP Revolution RMCEGP = Mario Kart Wii CTGP Revolution RMCEWS = Wine's CT Pack RMCJ01 = Mario Kart Wii RMCJ12 = Wiimms MKW Fun 2011-11 RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCK01 = 마리오 카트 Wii RMCP01 = Mario Kart Wii RMCP02 = Wiimms MKW Fun 2010-02.p RMCP03 = Wiimms MKW Fun 2010-10.p RMCP04 = Wiimms MKW Fun 2010-12.p RMCP05 = Custom Mario Kart Wii RMCP06 = Wiimms MKW Fun 2010-12.pal RMCP07 = Wiimms MKW Retro 2011-02.pal RMCP08 = Wiimms MKW Fun 2011-03.pal RMCP09 = Wiimms MKW Fun 2011-06.pal RMCP10 = Wiimms MKW Fun 2011-07.pal RMCP11 = Wiimms MKW Fun 2011-08.pal RMCP12 = Wiimms MKW Fun 2011-11.pal RMCP13 = Wiimms MKW Fun 2012-01.pal RMCP14 = Wiimms MKW Revival 2012-02.pal RMCP15 = Wiimms MKW Boost 2012-03.pal RMCP16 = Wiimms MKW Fun 2012-05.pal RMCP17 = Wiimms MKW Fun 2012-09.pal RMCP18 = Wiimms MKW N64 2012-10.pal RMCP19 = Wiimms MKW Fun 2012-12.pal RMCP20 = Wiimms MKW Fun 2013-04.pal RMCP21 = Wiimms MKW Fun 2013-09.pal RMCP22 = Wiimms MKW Fun 2013-10.pal RMCP23 = Wiimms MKW Fun 2014-01.pal RMCP24 = Wiimms MKW Retro 2014-02.pal RMCP25 = Wiimms MKW Fun 2014-04.pal RMCP26 = Wiimms MKW Fun 2014-11.pal RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCX = Mario Kart Wii CTGP Revolution Channel RMDE69 = Madden NFL 07 RMDP69 = Madden NFL 07 RMEJDA = Major Dream RMFE68 = AMF Bowling Pinbusters! RMFP68 = AMF Bowling Pinbusters! RMGC01 = Super Mario Galaxy RMGE01 = Super Mario Galaxy RMGE52 = Guitar Hero III Custom : Megadeth RMGJ01 = Super Mario Galaxy RMGK01 = 슈퍼 마리오 Wii 갤럭시 어드벤처 RMGP01 = Super Mario Galaxy RMGR01 = Super Mario Galaxy RMHC08 = Monster Hunter Tri (Custom) RMHE08 = Monster Hunter Tri RMHJ08 = Monster Hunter Tri RMHP08 = Monster Hunter Tri RMIE20 = Margot's Word Brain RMIP7J = Margot's Word Brain RMJJC8 = Mah-jong Rally Wii RMKE01 = Mario Sports Mix RMKE02 = Custom Kart 1 RMKJ01 = Mario Sports Mix RMKP01 = Mario Sports Mix RMLEH4 = Metal Slug Anthology RMLJH4 = Metal Slug Complete RMLK52 = 메탈슬러그 컴플리트 RMLP7U = Metal Slug Anthology RMLPH4 = Metal Slug Anthology RMME7U = Mercury Meltdown Revolution RMMJ7U = Tama-run RMMP52 = Guitar Hero III Custom : Metal Mayhem RMMP7U = Mercury Meltdown Revolution RMNDFR = My Pet Hotel RMNHMN = My Pet Hotel RMNHMR = My Pet Hotel RMNPFR = My Pet Hotel RMOE52 = Monster Jam RMOP52 = Monster Jam RMPE54 = MLB Power Pros RMPP54 = MLB Power Pros RMQENR = Myth Makers: Orbs of Doom RMQPUG = Myth Makers: Orbs of Doom RMQXUG = Myth Makers: Orbs of Doom RMRE5Z = Cocoto Magic Circus RMRPNK = Cocoto Magic Circus RMRXNK = Cocoto Magic Circus RMSE52 = Marvel: Ultimate Alliance 2 RMSP52 = Marvel: Ultimate Alliance 2 RMTJ18 = Momotarô Dentetsu 16 RMUE52 = Marvel: Ultimate Alliance RMUJ2K = Marvel: Ultimate Alliance RMUP52 = Marvel: Ultimate Alliance RMVE69 = Medal of Honor: Vanguard RMVP69 = Medal of Honor: Vanguard RMVX69 = Medal of Honor: Vanguard RMWE20 = M&M's Kart Racing RMWP20 = M&M's Kart Racing RMXE78 = MX vs. ATV: Untamed RMXF78 = MX vs. ATV: Untamed RMXP78 = MX vs. ATV: Untamed RMYE5Z = Myth Makers: Super Kart GP RMYPUG = Myth Makers: Super Kart GP RMYXUG = Myth Makers: Super Kart GP RMZE5Z = Myth Makers: Trixie in Toyland RMZPUG = Myth Makers: Trixie in Toyland RN2EAF = Namco Museum Remix RN2K70 = Namco Museum Remix RN2P70 = Namco Museum Remix RN3E78 = Nicktoons: Attack of the Toybots RN3J78 = Nicktoons: Attack of the Toybots RN3P78 = Nicktoons: Attack of the Toybots RN3X78 = Nicktoons: Attack Of The Toybots RN4E41 = Dawn of Discovery RN4P41 = ANNO: Create a New World RN5E78 = The Naked Brothers Band: The Video Game RN5P78 = The Naked Brothers Band: The Video Game RN6ENR = North American Hunting Extravaganza RN6P7J = North American Hunting Extravaganza RN7E78 = Neighborhood Games RN7P78 = Big Family Games RN8JC8 = Nobunaga no Yabou Kakushin with Power-Up Kit RN9E4F = Escape from Bug Island RN9JEL = Necro-Nesia RN9P4F = Escape From Bug Island RNAE69 = NCAA Football 09 RNBE69 = NBA Live 08 RNBP69 = NBA Live 08 RNBX69 = NBA Live 08 RNCEH4 = SNK Arcade Classics Volume 1 RNCPH4 = SNK Arcade Classics Volume 1 RNDJAF = Nodame Cantabile Dream Orchestra RNEEDA = Naruto Shippuden: Clash of Ninja Revolution 3 RNEJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX 3 RNEPDA = Naruto Shippuden: Clash of Ninja Revolution 3 RNFE69 = Madden NFL 08 RNFP69 = Madden NFL 08 RNGJ99 = Negima!? Neo-Pactio Fight!! RNHE41 = No More Heroes RNHJ99 = No More Heroes RNHK8M = 노 모어 히어로즈 RNHP41 = No More Heroes RNHP99 = No More Heroes RNIPGT = Mind, Body & Soul: Nutrition Matters RNJE4F = Mini Ninjas RNJP4F = Mini Ninjas RNKE69 = NERF N-Strike RNKP69 = NERF N-Strike RNLE54 = NHL 2K9 RNLP54 = NHL 2K9 RNME5Z = Ninjabread Man RNMPUG = Ninjabread Man RNMXUG = Ninjabread Man RNNE4Q = The Chronicles of Narnia: Prince Caspian RNNJ4Q = The Chronicles of Narnia: Prince Caspian RNNP4Q = The Chronicles of Narnia: Prince Caspian RNNX4Q = The Chronicles of Narnia: Prince Caspian RNNY4Q = The Chronicles of Narnia: Prince Caspian RNNZ4Q = The Chronicles of Narnia: Prince Caspian RNOJ01 = Another Code R Kioku no Tobira RNOP01 = Another Code: R - A Journey into Lost Memories RNPE69 = Need for Speed: ProStreet RNPJ13 = Need for Speed: ProStreet RNPK69 = 니드포스피드: 프로스트리트 RNPP69 = Need for Speed: ProStreet RNPX69 = Need for Speed: ProStreet RNPY69 = Need for Speed: ProStreet RNRE41 = Nitro Bike RNRJ41 = Nitro Bike RNRP41 = Nitro Bike RNSD69 = Need for Speed: Carbon RNSE69 = Need for Speed Carbon RNSF69 = Need for Speed: Carbon RNSJ13 = Need for Speed: Carbon RNSP69 = Need for Speed Carbon RNSX69 = Need for Speed: Carbon RNUE8P = Nancy Drew: The White Wolf of Icicle Creek RNVE5Z = Anubis II RNVP5Z = Anubis II RNVPUG = Anubis II RNVXUG = Anubis II RNWJAF = Namco Carnival RNWKAF = 남코 뮤지엄 리믹스 RNXEDA = Naruto: Clash of Ninja Revolution RNXJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX RNXPDA = Naruto: Clash of Ninja Revolution RNYEDA = Naruto: Clash of Ninja Revolution 2 RNYJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX 2 RNYPDA = Naruto: Clash of Ninja Revolution 2 RNZE69 = Ninja Reflex RNZJ13 = Ninja Reflex RNZK69 = 닌자 리플렉스 RNZP69 = Ninja Reflex RO2E7N = Ford Racing Off Road RO2P7N = Off Road RO3EXJ = Little King's Story RO3J99 = Little King's Story RO3P99 = Little King's Story RO4JDA = Toshinden RO5E52 = Hot Wheels: Battle Force 5 RO5P52 = Hot Wheels: Battle Force 5 RO7E7D = Legend of Spyro: The Eternal Night RO7P7D = The Legend of Spyro: The Eternal Night RO8E7D = Legend of Spyro: Dawn of the Dragon RO8P7D = The Legend of Spyro: Dawn of the Dragon RO8X7D = The Legend of Spyro: Dawn of the Dragon RO9EFS = Aqua Panic! RO9PNK = Aqua Panic! ROAE36 = Overlord: Dark Legend ROAP36 = Overlord: Dark Legend ROBE7U = Obscure: The Aftermath ROBPPL = Obscure 2 ROCE5Z = Cocoto Kart Racer ROCPNK = Cocoto Kart Racer RODE01 = WarioWare: Smooth Moves RODJ01 = WarioWare: Smooth Moves RODK01 = 춤춰라 메이드 인 와리오 RODP01 = WarioWare: Smooth Moves ROEEJZ = Hotel for Dogs ROEPGT = Hotel For Dogs ROFE5Z = Offroad Extreme Special Edition ROFPUG = Offroad Extreme! ROFXUG = Offroad Extreme! ROGE78 = Tak and the Guardians of Gross ROGP78 = Tak and the Guardians of Gross ROHJAF = Happy Dance Collection ROJE52 = Rapala: We Fish ROJP52 = Rapala: We Fish ROKJ18 = Karaoke Joysound Wii ROLE8P = Mario & Sonic at the Olympic Winter Games ROLJ01 = Mario & Sonic at the Olympic Winter Games ROLK01 = 마리오와 소닉 밴쿠버 동계올림픽 ROLP8P = Mario & Sonic at the Olympic Winter Games ROMESD = Monster Hunter G (English Patched) ROMJ08 = Monster Hunter G RONEG9 = Onechanbara: Bikini Zombie Slayers RONJG9 = Onechanbara Revolution RONPG9 = Onechanbara: Bikini Zombie Slayers ROPE41 = Open Season ROPP41 = Open Season ROQJEP = Baroque For Wii ROSJ01 = Takt of Magic ROTE20 = Twin Strike: Operation Thunder ROTP20 = Twin Strike: Operation Thunder ROTP7J = Twin Strike: Operation Thunder ROUJAF = One Piece Unlimited Cruise 1: The Treasure Beneath the Waves ROUPAF = One Piece Unlimited Cruise 1: The Treasure Beneath the Waves ROVE6U = Playmobil: Circus ROVPHM = Playmobil: Circus ROWE08 = Okami ROWJ08 = Okami ROWP08 = Okami ROXE20 = Order Up! ROXP7J = Order Up! ROXX7J = Order Up! ROYE41 = Cloudy with a Chance of Meatballs ROYP41 = Cloudy with a Chance of Meatballs ROYX41 = Cloudy with a Chance of Meatballs RP2E69 = Smarty Pants RP2P69 = Smarty Pants RP3JAF = Pro Golfer Saru RP4E69 = MySims Party RP4J13 = Boku To Sim No Machi Party RP4P69 = MySims Party RP5JA4 = Jikkyou Powerful Pro Baseball 15 RP6E41 = Petz Crazy Monkeyz RP6P41 = Petz Monkey Madness RP7E52 = Pirates: Hunt for Blackbeard's Booty RP7P52 = Pirates: Hunt for Blackbeard's Booty RP9ERS = Space Chimps RP9PRS = Space Chimps RP9XRS = Space Chimps RPAF70 = Kid Paddle: Lost in the Game RPBE01 = Pokémon Battle Revolution RPBJ01 = Pokémon Battle Revolution RPBP01 = Pokémon Battle Revolution RPCE20 = Puzzler Collection RPCP41 = Puzzler Collection RPCX7J = Puzzler Collection RPDEGN = PDC World Championship Darts 2008 RPDPGN = PDC World Championship Darts 2008 RPFE52 = Pitfall: The Big Adventure RPFP52 = Pitfall: The Big Adventure RPFU52 = Pitfall: The Big Adventure RPGE5D = Rampage: Total Destruction RPGP5D = Rampage: Total Destruction RPHPPN = Peppa Pig: The Game RPIE52 = Pimp My Ride RPIP52 = Pimp My Ride RPJE7U = Arc Rise Fantasia RPJJ99 = Arc Rise Fantasia RPKE52 = World Series of Poker: Tournament of Champions 2007 Edition RPKP52 = World Series of Poker: Tournament of Champions 2007 Edition RPLE52 = Rapala Tournament Fishing RPLP52 = Rapala Tournament Fishing RPMJA4 = Jikkyou Powerful Pro Major League 2 RPNE78 = Paws & Claws: Pet Resort RPOEC8 = Opoona RPOJC8 = Opoona RPOPC8 = Opoona RPPE41 = Prince of Persia: Rival Swords RPPP41 = Prince of Persia: Rival Swords RPQES5 = Pool Party RPQPS5 = Pool Party RPSE4Q = Disney Princess: Enchanted Journey RPSJ4Q = Disney Princess Wii RPSP4Q = Disney Princess: Enchanted Journey RPTD52 = Puppy Luv RPTE52 = Puppy Luv: Your New Best Friend RPTP52 = Puppy Luv: Your New Best Friend RPUJ8P = Puyo Puyo! 15th Anniversary RPVE4Z = Purr Pals RPVPKM = Purr Pals RPWX41 = Prince of Persia: The Forgotten Sands RPWZ41 = Prince of Persia: The Forgotten Sands RPXE69 = EA Playground RPXJ13 = EA Playground RPXP69 = EA Playground RPYE9B = Super Swing Golf RPYJ9B = Super Swing Golf RPYP9B = Pangya! Golf With Style RPZJA4 = Jikkyou Powerful Pro Baseball Wii Ketteiban RQ2JK6 = Crazy Climber Wii RQ3PGN = PDC World Championship Darts 2009 RQ4E78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ4J78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ4P78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ5E5G = Mad Dog McCree Gunslinger Pack RQ5P5G = Mad Dog McCree Gunslinger Pack RQ5X5G = Mad Dog McCree Gunslinger Pack RQ6EJJ = Cursed Mountain RQ6PKM = Cursed Mountain RQ6XKM = Cursed Mountain RQ7E20 = Martian Panic RQ7PXT = Martian Panic RQ8E08 = MotoGP 08 RQ8P08 = MotoGP RQ9E69 = NBA Live 09 All-Play RQ9F69 = NBA Live 09 All-Play RQ9P69 = NBA Live 09 All-Play RQ9S69 = NBA Live 09 All-Play RQBENR = Kawasaki Quad Bikes RQBPNR = Kawasaki Quad Bikes RQBPUG = Kawasaki Quad Bikes RQBXUG = Kawasaki Quad Bikes RQCEAF = The Munchables RQCJAF = Tabemon RQEE6U = Agatha Christie: Evil Under the Sun RQEP6V = Agatha Christie: Evil Under the Sun RQFE6U = Safecracker: The Ultimate Puzzle Adventure RQFP6V = Safecracker RQGE69 = MySims Racing RQGJ13 = MySims Racing RQGJ69 = Boku To Sim No Machi Racing RQGP69 = MySims Racing RQIJ01 = Minna ga Shuyaku no NHK Kouhaku Quiz Kassen RQJE7D = Crash of the Titans RQJP7D = Crash of the Titans RQJX7D = Crash of the Titans RQKE41 = Circus Games RQKP41 = Fun Fair Party RQLE64 = Star Wars The Clone Wars: Republic Heroes RQLP64 = Star Wars The Clone Wars: Republic Heroes RQMEVN = Ocean Commander RQMPVN = Ocean Commander RQNEWR = Scooby-Doo! First Frights RQNPWR = Scooby-Doo! First Frights RQOE69 = Spore Hero RQOJ13 = Spore Hero RQOP69 = Spore Hero RQPE52 = Cabela's Trophy Bucks RQPP52 = Cabela's Trophy Bucks RQPZ52 = Cabela's Monster Buck Hunter RQQE52 = Guitar Hero III Custom : Queen RQQE70 = Backyard Football '09 RQREXJ = The Sky Crawlers: Innocent Aces RQRJAF = The Sky Crawlers: Innocent Aces RQRPAF = The Sky Crawlers: Innocent Aces RQSE4Z = Pinball Hall of Fame: The Gottlieb Collection RQSP6M = Gottlieb Pinball Classics RQTE6U = Agatha Christie: And Then There Were None RQTP6V = Agatha Christie: And Then There Were None RQUEFS = Super PickUps RQVE20 = Pacific Liberator RQVP20 = Pacific Liberator RQWEG9 = Puzzle Quest: Challenge of the Warlords RQWPG9 = Puzzle Quest: Challenge of the Warlords RQXP70 = Asterix at the Olympic Games RQYENR = Fantasy Aquarium World RQZE41 = Monster 4x4: Stunt Racer RQZP41 = Monster 4x4: Stunt Racer RR2ENR = Rig Racer 2 RR2PNR = Rig Racer 2 RR2PUG = Rig Racer 2 RR3EA4 = Ultimate Party Challenge RR3JA4 = Family Challenge Wii RR3PA4 = Let's Party! RR4EGY = Build-A-Bear Workshop: A Friend Fur All Seasons RR4PFK = Build-A-Bear Workshop: A Friend Fur All Seasons RR5E70 = Ready 2 Rumble Revolution RR5P70 = Ready 2 Rumble Revolution RR7PVP = Real Madrid The Game RR8PUJ = International Athletics RR9E78 = WWE SmackDown vs. Raw 2009 RRAE5Z = Rock 'N' Roll Adventures RRAPUG = Rock 'N' Roll Adventures RRAXUG = Rock 'N' Roll Adventures RRBE41 = Rayman Raving Rabbids RRBJ41 = Rayman Raving Rabbids RRBP41 = Rayman Raving Rabbids RRCE52 = Barbie Horse Adventures: Riding Camp RRCP52 = Barbie Horse Adventures: Riding Camp RRDE69 = Rock Band Track Pack: Vol. 2 RRDP69 = Rock Band Song Pack 2 RREE69 = Rock Band Track Pack: Vol. 1 RREP69 = Rock Band Song Pack 1 RRFEE9 = Reel Fishing: Angler's Dream RRFPE9 = Reel Fishing: Angler's Dream RRGE52 = Madagascar: Escape 2 Africa RRGP52 = Madagascar 2: Escape 2 Africa RRHPUJ = Mary King's Riding School 2 RRHXUJ = Mary King's Riding School 2 RRIPTV = Paint Party RRJFMR = Ready Steady Cook: The Game RRJIMR = Ready Steady Cook: The Game RRJPMR = Ready Steady Cook: The Game RRKE70 = Alone in the Dark RRKP70 = Alone in the Dark RRLE78 = Bratz: Girlz Really Rock RRLP78 = Bratz: Girlz Really Rock RRLX78 = Bratz: Girlz Really Rock RRLY78 = Bratz: Girlz Really Rock RRLZ78 = Bratz: Girlz Really Rock RRME69 = Hasbro: Family Game Night RRMP69 = Hasbro: Family Game Night RRMX69 = Hasbro: Family Game Night RRPE41 = The Price Is Right RRQE52 = Shrek's Carnival Craze Party Games RRQP52 = Shrek's Carnival Craze Party Games RRQX52 = Shrek's Carnival Craze Party Games RRRE5Z = Real Heroes: Firefighter RRRPRM = Real Heroes: Firefighter RRSE4Q = Meet The Robinsons RRSJ4Q = Meet The Robinsons RRSP4Q = Meet The Robinsons RRSX4Q = Meet The Robinsons RRTE52 = Block Party 20 Games RRTP52 = Block Party! 20 Games RRUEJF = Winter Sports 2: The Next Challenge RRUFRT = Winter Sports 2009: The Next Challenge RRUJJF = Winter Sports 2009 The Next Challenge RRUPRT = Winter Sports 2009: The Next Challenge RRVENR = Battle Rage: Mech Conflict RRVPNR = Battle Rage: The Robot Wars RRWJAF = Super Robot Taisen NEO RRXE5Z = Monster Trux Arenas: Special Edition RRXPUG = Monster Trux Arenas RRXXUG = Monster Trux Arenas RRYEHG = Rogue Trooper: Quartz Zone Massacre RRYPHY = Rogue Trooper: Quartz Zone Massacre RRZEGY = Rubik's World RRZPGY = Rubik's Puzzle World RS2E20 = Ultimate Duck Hunting RS2EGJ = Ultimate Duck Hunting RS2PGJ = Ultimate Duck Hunting RS3E52 = Spider-Man 3 RS3J52 = Spider-Man 3 RS3P52 = Spider-Man 3 RS3X52 = Spider-Man 3 RS4EXS = Castle of Shikigami III RS4JJF = Shikigami No Shiro III RS4PXS = Castle Of Shikigami III RS5EC8 = Samurai Warriors: Katana RS5JC8 = Sengoku Musou KATANA RS5PC8 = Samurai Warriors: Katana RS7J01 = Eyeshield 21 Field Saikyo no Senshi Tachi RS8J8N = Shanghai RS9E8P = Sonic Riders: Zero Gravity RS9J8P = Sonic Riders: Shooting Star Story RS9P8P = Sonic Riders: Zero Gravity RSAE78 = SpongeBob's Atlantis SquarePantis RSAP78 = SpongeBob's Atlantis SquarePantis RSBE01 = Super Smash Bros. Brawl RSBE02 = Super Smash Bros. Project M Red Version RSBE03 = Super Smash Bros. Brawl DX RSBE04 = Super Smash Bros. Project M+ RSBE05 = Super Smash Bros. Project M Patt Edition RSBE06 = Darkon360's Brawl Hack Pack RSBE07 = Super Smash Bros. Project M: Theytah's Custom Build RSBE08 = Smash Bros. Infinite RSBE09 = Springboy64's Brawl Hack Pack RSBE10 = Brawl Ying Yang Edition RSBE11 = Professor MGW's Tournament Hack Pack #1 RSBE12 = Professor MGW's Tournament Hack Pack #2 RSBE13 = Professor MGW's Hack Pack #3 RSBE14 = Super Smash Bros. Brawl- Zeus RSBE15 = Super Smash Bros. Brawl Minus Mugen RSBE16 = Super Smash Bros. Brawl Shock RSBE17 = Super Smash Bros. Brawl - Battlefield Build RSBE18 = Super Smash Bros. Project M: Tournament Hack Pack RSBE19 = Super Smash Bros. Project M: Fully Dressed Edition RSBE20 = Pikezer's BrawlEx Pack RSBE21 = Calabrel's Custom Project M Build RSBE22 = Project M: Rage83's Competitive Custom Build RSBE23 = Super Smash Bros. Project M: Justice Build RSBE24 = Super Smash Bros. 3 RSBE25 = Super Smash Bros. Red Version RSBE26 = Super Smash Bros. Silver RSBE27 = Springboy64's Super Smash Bros. Brawl Hack Pack RSBE28 = SuperYoshiStar's Super Smash Bros. Brawl Hack Pack RSBE29 = Super Smash Bros. Project M: YoeiX Custom Build RSBE30 = Super Smash Bros. Project M: Arko's Loaded Custom Build RSBE31 = Super Smash Bros. Project M: Arko's Tournament Custom Build RSBE32 = Super Smash Bros. Project M: Sempai's Build RSBE33 = Super Smash Bros. Brawl Yin Yang Edition 2: The Balance of Kyu RSBE34 = Super Smash Bros. Project U: Blue Version RSBE35 = Super Smash Bros. Brawl Legacy: Project M RSBE36 = Super Smash Bros. Project Best RSBE37 = Super Smash Bros. Project M: Psycho Ghost's Build RSBE38 = Super Smash Sisters Generations RSBE39 = Super Smash Bros. Ultra Project M RSBE40 = Super Smash Bros. Project M: Ragnarok Edition RSBE41 = Super Smash Bros. Project M: Calabrel's Custom Build RSBE42 = Super Smash Bros. Project M: RedX Anime/Game Custom Build RSBEBB = Super Smash Bros. Balanced Brawl RSBEBM = Super Smash Bros. Brawl Minus RSBEBP = Super Smash Bros. Brawl Plus RSBEC3 = Super Smash Bros. Project M 3.5 Netplay Build RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBEWM = Super Smash Bros. Project M Wi-Fi RSBJ01 = Dairantou Smash Brothers X RSBK01 = 대난투 스매시 브라더스 RSBP01 = Super Smash Bros. Brawl RSCD7D = Scarface: The World Is Yours RSCE7D = Scarface: The World Is Yours RSCP7D = Scarface: The World Is Yours RSCU7D = Scarface: The World Is Yours RSDJAF = SD Gundam: Scad Hammers RSEJGD = Soul Eater Monotone Princess RSFC99 = Muramasa: The Demon Blade (Custom) RSFE7U = Muramasa: The Demon Blade RSFJ99 = Oboro Muramasa RSFP99 = Muramasa: The Demon Blade RSHE69 = MySims Kingdom RSHJ13 = Boku to Sim no Machi Kingdom RSHK69 = 마이 심즈 심들의 왕국 RSHP69 = MySims Kingdom RSIE69 = MySims RSIJ13 = Boku To Sim No Machi RSIP69 = MySims RSJE41 = Broken Sword: Shadow of the Templars (Director's Cut) RSJESD = Guitar Hero III Custom : System of a Down RSJP41 = Broken Sword: Shadow of the Templars - The Director's Cut RSKE52 = Shrek The Third RSKP52 = Shrek The Third RSKX52 = Shrek The Third RSLEAF = Soulcalibur: Legends RSLJAF = Soulcalibur: Legends RSLKAF = 소울 칼리버 레전즈 RSLPAF = Soulcalibur: Legends RSME8P = Super Monkey Ball: Banana Blitz RSMJ8P = Super Monkey Ball: Banana Blitz RSMP8P = Super Monkey Ball: Banana Blitz RSND69 = The Simpsons Game RSNE69 = The Simpsons Game RSNF69 = The Simpsons Game RSNP69 = The Simpsons Game RSNX69 = The Simpsons Game RSOE4Z = Solitaire & Mahjong RSOP4Z = Solitaire & Mahjong RSPE01 = Wii Sports RSPJ01 = Wii Sports RSPK01 = Wii 스포츠 RSPP01 = Wii Sports RSPW01 = Wii Sports RSQEAF = We Ski RSQJAF = Family Ski RSQPAF = Family Ski RSRE8P = Sonic and the Secret Rings RSRJ8P = Sonic and the Secret Rings RSRP8P = Sonic and the Secret Rings RSSEH4 = Samurai Shodown Anthology RSSJH4 = Samurai Spirits: Rokuban Shoubu RSSK52 = 사무라이 스피리츠 6번의 승부 RSSP7U = Samurai Shodown Anthology RSTE64 = Star Wars: The Force Unleashed RSTJ52 = Star Wars: The Force Unleashed RSTP64 = Star Wars: The Force Unleashed RSUENR = Summer Sports: Paradise Island RSUP41 = Sports Party RSVE8P = Sonic Unleashed RSVJ8P = Sonic World Adventure RSVP8P = Sonic Unleashed RSWE08 = Spyborgs RSWP08 = Spyborgs RSXE69 = SSX Blur RSXJ13 = SSX Blur RSXK69 = SSX 블러 RSXP69 = SSX Blur RSXX78 = Guitar Hero RadioHead RSYE20 = Showtime Championship Boxing RSYP06 = Super Smash Bros. Brawl : YF06's Mod RSYP7J = Showtime Championship Boxing RSZJES = Yukinko Daisenpuu RSZPGT = Legend of Sayuki RT2E20 = Arctic Tale RT2P20 = Arctic Tale RT2P7J = Arctic Tale RT3E54 = Rockstar Games Presents: Table Tennis RT3JEL = Rockstar Games Presents: Table Tennis RT3P54 = Rockstar Games Presents: Table Tennis RT4EAF = Tales of Symphonia: Dawn of the New World RT4JAF = Tales Of Symphonia: Ratatosk no Kishi RT4PAF = Tales of Symphonia: Dawn of the New World RT5E8P = SEGA Superstars Tennis RT5P8P = SEGA Superstars Tennis RT6FKM = Magic Roundabout RT6PKM = The Magic Roundabout RT7E69 = Tiger Woods PGA Tour 07 RT7F69 = Tiger Woods PGA Tour 07 RT7P69 = Tiger Woods PGA Tour 07 RT8E69 = Tiger Woods PGA Tour 08 RT8J13 = Tiger Woods PGA Tour Golf 08 RT8K69 = 타이거 우즈 PGA Tour 08 RT8P69 = Tiger Woods PGA Tour 08 RT9E52 = Tony Hawk's Proving Ground RT9P52 = Tony Hawk's Proving Ground RTAE41 = Tom Clancy's H.A.W.X. 2 RTAP41 = Tom Clancy's H.A.W.X. 2 RTBE52 = Rapala Fishing Frenzy RTBP52 = Rapala Fishing Frenzy RTCE41 = Tom Clancy's Splinter Cell: Double Agent RTCP41 = Tom Clancy's Splinter Cell: Double Agent RTDE6K = The Monkey King: The Legend Begins RTDJES = Shin Chuuka Taisen RTDK8M = 신중화대선 ~마이클과 메이메이의 모험~ RTEE78 = Paws & Claws: Pet Vet RTEHMR = Real Stories: Veterinaire RTEPFR = My Vet Practice RTFE52 = Transformers: The Game RTFJ52 = Transformers: The Game RTFK52 = 트랜스포머: 더 게임 RTFP52 = Transformers: The Game RTFX52 = Transformers: The Game RTFY52 = Transformers: The Game RTGJ18 = Wi-Fi Taiô Gensen Table Games Wii RTHE52 = Tony Hawk's Downhill Jam RTHP52 = Tony Hawk's Downhill Jam RTIE8P = Wacky World of Sports RTIJ8P = Wacky World of Sports RTIP8P = Wacky World of Sports RTJE68 = Star Trek: Conquest RTJP68 = Star Trek: Conquest RTKE5Z = Octomania RTKJDQ = Sharuui Takoron RTKK8M = 모두 함께~ 타코롱 RTLE18 = Fishing Master: World Tour RTLJ18 = Mezase Tsuri Master Sekai Ni Challenge Hen RTLP18 = Fishing Master: World Tour RTME41 = TMNT RTMP41 = TMNT: Teenage Mutant Ninja Turtles RTNE41 = Tenchu: Shadow Assassins RTNJCQ = Tenchu 4 RTNP41 = Tenchu: Shadow Assassins RTOJ8P = 428: Fuusa Sareta Shibuya de RTPP41 = Top Trumps Adventures RTQENR = Monster Trux Offroad RTQPUG = Monster Trux Offroad RTQXUG = Monster Trux Offroad RTRE18 = Fishing Master RTRJ18 = Mezase Tsuri Master RTRP18 = Fishing Master RTSEVN = Totally Spies! Totally Party RTSP41 = Totally Spies! Totally Party RTTJAF = Tamagotchi no Furifuri Kagekidan RTUEJJ = Secret Files Tunguska RTUFKM = Secret Files: Tunguska RTUPKM = Secret Files: Tunguska RTVE64 = Thrillville: Off the Rails RTVP64 = Thrillville: Off The Rails RTWE5D = TNA iMPACT! RTWP5D = TNA iMPACT! RTYP01 = Wii Chess RTZE08 = Zack & Wiki: Quest for Barbaros' Treasure RTZJ08 = Takarajima Z Barbaros' Treasure RTZK08 = 잭 & 위키: 발바로스의 보물 RTZP08 = Zack & Wiki: Quest For Barbaros' Treasure RU1P4Q = Disney Sing It:: Sing It Star Singstar 1 RU2E5Z = Winter Sports 2: The Next Challenge RU2P4Q = Disney Sing It: Sing It Star Singstar 2 RU2P5Z = Winter Sports 2 The Next Challenge RU3E5Z = Summer Athletics: The Ultimate Challenge RU4E41 = My Fitness Coach 2: Exercise & Nutrition RU4X41 = NewU Fitness First Personal Trainer RU5E4Q = The Princess and the Frog RU5P4Q = Disney The Princess and the Frog RU5V4Q = Disney: The Princess and the Frog RU5X4Q = Disney: The Princess and the Frog RU5Y4Q = The Princess and the Frog (Riverboat Jazz Edition) RU6EHG = Free Running RU6PHY = Free Running RU7E5G = Night at the Museum: Battle of the Smithsonian - The Video Game RU7X5G = Night at the Museum: Battle of the Smithsonian - The Video Game RU8EFS = Bass Pro Shops: The Hunt RU9EGT = My Ballet Studio RU9PGT = Diva Girls: Diva Ballerina RUAE52 = Monster Jam: Urban Assault RUAP52 = Monster Jam: Urban Assault RUBEVN = Ultimate Board Game Collection RUBP7N = Ultimate Board Game Collection RUCE5Z = Winter Sports: The Ultimate Challenge RUCPRT = Winter Sports 2008: The Ultimate Challenge RUCXRT = Winter Sports 2008: The Ultimate Challenge RUEE4Q = G-Force RUEP4Q = G-Force RUEX4Q = G-Force RUEY4Q = G-Force RUFEMV = Rune Factory: Frontier RUFJ99 = Rune Factory: Frontier RUFP99 = Rune Factory: Frontier RUGE7T = Goosebumps: HorrorLand RUGP5G = Goosebumps: HorrorLand RUHE52 = Bakugan Battle Brawlers RUHP52 = Bakugan Battle Brawlers RUHX52 = Bakugan Battle Brawlers (Toys R Us Edition) RUHZ52 = Bakugan Battle Brawlers RUIE4Q = Disney: Sing It RUIGGD = SingItStar Ned. 80's RUIP4Q = Disney: Sing It RUIX4Q = Disney: Sing It RUKEGT = Rolling Stone: Drum King RUKPGT = We Rock: Drum King RULE4Q = Ultimate Band RULP4Q = Ultimate Band RUME5Z = Ski and Shoot RUMPFR = Summer Athletics RUNJ0Q = New Unou Kids Wii EX RUOEPL = Aliens in the Attic RUOPPL = Aliens in the Attic RUPJC8 = Winning Post 7 Maximum 2008 RUQD78 = Up RUQE78 = Up RUQI78 = Up RUQJJE = Carl jii san no sora tobu Ie RUQP78 = Up RUQS78 = Up RUQX78 = Up RUREPL = Pool Hall Pro RURPPL = Pool Hall Pro RUSE78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUSK78 = 스폰지밥과 친구들 RUSP78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUSX78 = SpongeBob SquarePants Featuring Nicktoons: Globs of Doom RUSY78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUUE01 = Animal Crossing: City Folk RUUJ01 = Machi He Ikouyo: Doubutsu no Mori RUUK01 = 타운으로 놀러가요 동물의 숲 RUUP01 = Animal Crossing: Let's Go to the City RUWJC8 = Winning Post World RUXPUG = Urban Extreme: Street Rage RUXXUG = Urban Extreme: Street Rage RUYE41 = No More Heroes 2: Desperate Struggle RUYJ99 = No More Heroes 2: Desperate Struggle RUYP99 = No More Heroes 2: Desperate Struggle RUZE7T = Ultimate I SPY RUZP5G = Ultimate I SPY RV2E5D = Game Party 2 RV2P5D = More Game Party RV3P6N = Clever Kids: Creepy Crawlies RV7SMR = Survivor RV8E20 = Beach Fun: Summer Challenge RV8PRT = Beach Fun: Summer Challenge RV9E78 = Avatar: The Last Airbender - Into the Inferno RV9P78 = Avatar: The Legend of Aang - Into the Inferno RVAE78 = Avatar: The Last Airbender - The Burning Earth RVAP78 = Avatar: The Legend of Aang - The Burning Earth RVBERS = Alvin and the Chipmunks RVBPRS = Alvin and the Chipmunks RVDPLG = Diabolik: The Original Sin RVEFMR = Bienvenue Chez Les Ch'tis RVFE20 = Bigfoot: Collision Course RVFP7J = Bigfoot: Collision Course RVGE78 = Merv Griffin's Crosswords RVGP78 = Margot's Word Brain RVHP41 = Scrabble Interactive: 2009 Edition RVIE4F = Bionicle Heroes RVIP4F = Bionicle Heroes RVJPFR = So Blonde: Back to the Island RVKEXJ = Valhalla Knights: Eldar Saga RVKJ99 = Valhalla Knights Elder Saga RVKKZA = 발할라 나이츠: 엘더 사가 RVKP99 = Eldar Saga RVLPA4 = Rock Revolution RVNE20 = Calvin Tucker's Redneck Jamboree RVNP20 = Calvin Tucker's Redneck Jamboree RVNP7J = Calvin Tucker's Redneck Jamboree RVOEPL = Vertigo RVOPPL = Vertigo RVPEFS = PopStar Guitar RVPPFS = PopStar Guitar RVQE41 = Movie Games RVQP41 = Movie Studios Party RVREFS = Rebel Raiders: Operation Nighthawk RVRPFS = Rebel Raiders: Operation Nighthawk RVRPKG = Rebel Raiders: Operation Nighthawk RVSE69 = Skate It RVSJ13 = Skate It RVSP69 = Skate It RVTFMR = Real Stories: Veterinaire RVTPMR = My Pet Club RVTXMR = Real Stories: Veterinaire RVUE8P = Virtua Tennis 2009 RVUP8P = Virtua Tennis 2009 RVVE78 = Big Beach Sports RVVP78 = Big Beach Sports RVXFRT = RTL Biathlon 2009 RVXPRT = RTL Biathlon 2009 RVYD52 = Call of Duty: World at War RVYE52 = Call of Duty: World at War RVYK52 = 콜 오브 듀티: 월드 앳 워 RVYP52 = Call of Duty: World at War RVYX52 = Call of Duty: World at War RVYY52 = Call of Duty: World at War RVZE52 = Monsters vs. Aliens RVZP52 = Monsters vs. Aliens RW3E4Q = Pirates of the Caribbean: At World's End RW3J4Q = Pirates Of The Caribbean: At World's End RW3P4Q = Pirates Of The Caribbean: At World's End RW4D41 = My Word Coach: Develop your vocabulary RW5F41 = Who Wants To Be A Millionaire: 2nd Edition RW5P41 = Who Wants To Be A Millionaire: 2nd Edition RW6PA4 = Dance Dance Revolution: Winx Club RW7E41 = Shaun White Snowboarding: Road Trip - Target Limited Edition RW8P41 = Imagine Champion Rider RW9P78 = WWE SmackDown vs. Raw 2009 RW9X78 = WWE SmackDown vs. Raw 2009 RWAD78 = WALL•E RWAE78 = WALL•E RWAJ78 = WALL•E RWAK78 = 월•E RWAP78 = WALL•E RWAR78 = WALL•E RWAU78 = WALL•E RWAX78 = WALL•E RWAY78 = WALL•E RWAZ78 = WALL•E RWBENR = Kawasaki Snowmobiles RWBXUG = Kawasaki Snow Mobiles RWCE4Z = Pinball Hall of Fame: The Williams Collection RWCP4Z = Pinball: Hall Of Fame RWCP6M = Williams Pinball Classics RWDC52 = Guitar Hero III Custom: WD Custom RWDE5G = Wild Earth: African Safari RWDP5G = Wild Earth: African Safari RWEEA4 = Pro Evolution Soccer 2008 RWEJA4 = Winning Eleven PLAY MAKER 2008 RWEPA4 = Pro Evolution Soccer 2008 RWFH41 = My Word Coach: Develop your vocabulary RWGE08 = We Love Golf! RWGJ08 = We Love Golf! RWGP08 = We Love Golf! RWHP4F = Top Trumps: Doctor Who RWIE18 = Wing Island RWIJ18 = Wing Island RWIP18 = Wing Island RWJENR = WordJong Party RWKE5G = Cooking Mama: World Kitchen RWKPGT = Cooking Mama 2: World Kitchen RWLE01 = Wario Land: Shake It! RWLJ01 = Warioland Shake RWLK01 = 와리오 랜드 쉐이킹 RWLP01 = Wario Land: The Shake Dimension RWME78 = Worms: A Space Oddity RWMP78 = Worms: A Space Oddity RWNF70 = Warning: Code De La Route RWOE69 = Monopoly RWOJ13 = Monopoly RWOP69 = Monopoly RWQPSP = WSC Real 08: World Snooker Championship RWRE4F = Wacky Races: Crash & Dash RWRP4F = Wacky Races: Crash & Dash RWSE8P = Mario & Sonic at the Olympic Games RWSJ01 = Mario & Sonic at the Olympic Games RWSK01 = 마리오와 소닉 베이징 올림픽 RWSP8P = Mario & Sonic at the Olympic Games RWTEG9 = Ben 10: Alien Force RWTPG9 = Ben 10: Alien Force RWUE52 = X-Men Origins: Wolverine RWUP52 = X-Men Origins: Wolverine RWUX52 = X-Men Origins: Wolverine RWWE52 = Guitar Hero III Custom : WWE The Hits RWWE78 = WWE SmackDown vs. Raw 2008 RWWJ78 = WWE SmackDown vs. Raw 2008 RWWP78 = WWE SmackDown vs. Raw 2008 RWWX78 = WWE SmackDown vs. Raw 2008 RWXES5 = Brave: A Warrior's Tale RWXPS5 = Brave: A Warrior's Tale RWYPHH = Runaway: The Dream of the Turtle RWZE5G = Wonder World Amusement Park RWZP5G = Wonder World Amusement Park RWZX5G = Wonder World Amusement Park RX2E70 = My Horse & Me: Riding for Gold RX2P70 = My Horse & Me 2 RX3E01 = ExciteBots: Trick Racing RX3J01 = ExciteBots: Trick Racing RX4E4Z = Casper's Scare School: Spooky Sports Day RX4PMT = Casper's Scare School: Spooky Sports Day RX5E52 = Tony Hawk: Ride RX5P52 = Tony Hawk: Ride RX6E78 = The Biggest Loser RX6P78 = The Biggest Loser RX7JGD = Meja-maji March RX8JA4 = Jikkyou Powerful Pro Yakyuu Next RX9E69 = Need for Speed: Undercover RX9J13 = Need for Speed: Undercover RX9K69 = 니드포스피드 언더커버 RX9P69 = Need for Speed: Undercover RX9X69 = Need for Speed: Undercover RX9Y69 = Need for Speed: Undercover RXAE78 = WWE SmackDown vs. Raw 2010 RXAP78 = WWE SmackDown vs. Raw 2010 RXBE70 = Backyard Baseball '10 RXBP70 = Backyard Baseball '10 RXCE4Z = Dave Mirra BMX Challenge RXCP4Z = Dave Mirra BMX Challenge RXCPGT = Dave Mirra BMX Challenge RXDD4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDE4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDJ4Q = Disney Th!nk Haya Oshi Quiz RXDP4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDR4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDX4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDY4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXEJDA = Major Wii Perfect Closer RXFEVN = Offshore Tycoon RXGE6K = Geon Cube RXGP6K = Geon Cube RXHF5D = Chaos à La Maison RXIE52 = Transformers: Revenge of the Fallen RXIP52 = Transformers: Revenge of the Fallen RXJJDA = Jinsei Game Wii EX RXKEGL = TV Show King Party RXKFGL = TV Show King Party RXKPGL = TV Show King Party RXLE41 = Grey's Anatomy: The Video Game RXLP41 = Grey's Anatomy: The Video Game RXMJ8P = Miburi & Teburi RXNEXS = Hooked Again: Real Motion Fishing RXNJJF = Bass Fishing Wii World Tournament RXNPGT = Big Catch Bass Fishing 2 RXPEXS = Hooked!: Real Motion Fishing RXPJJF = Bass Fishing Wii RXPPGT = Big Catch Bass Fishing RXQEWR = Where the Wild Things Are RXQPWR = Where the Wild Things Are RXRERS = The Tale of Despereaux RXRPRS = The Tale of Despereaux RXRXRS = The Tale Of Despereaux RXSPA4 = Dancing Stage: Hottest Party RXUE41 = Surf's Up RXUP41 = Surf's Up RXUX41 = Surf's Up RXVXWP = Télé 7 Jeux: Mots Croisés RXWE20 = M&M's Beach Party RXXE4Q = Spectrobes: Origins RXXJ4Q = Spectrobes: Origins RXXP4Q = Spectrobes: Origins RXYE4Z = Puzzle Challenge: Crosswords and More! RXYP4Z = Puzzle Challenge Crosswords RXZE52 = Cabela's Dangerous Hunts 2009 RXZP52 = Cabela's Dangerous Adventures RY2E41 = Rayman Raving Rabbids 2 RY2J41 = Rayman Raving Rabbids 2 RY2K41 = 래이맨 엽기토끼 2 RY2P41 = Rayman Raving Rabbids 2 RY2R41 = Rayman Raving Rabbids 2 RY3E41 = Rayman Raving Rabbids TV Party RY3J41 = Rayman Raving Rabbids TV Party RY3K41 = 래이맨 엽기토끼 TV파티 RY3P41 = Rayman Raving Rabbids: TV Party RY4J8P = Puyo Puyo 7 RY5E52 = Big League Sports: Summer RY5P52 = World Championship Sports: Summer RY6EA4 = Walk It Out! RY6PA4 = Step to the Beat RY7PHZ = Ninja Captains RY8EFS = Bass Pro Shops: The Strike RYAJDA = Yattaman Wii Bikkuridokkiri Machine De Mou Race Da Koron RYAJSC = Yatterman Wii (Simplified Chinese Translation) RYBE69 = Boom Blox: Bash Party RYBP69 = Boom Blox: Bash Party RYDELT = Pet Pals: Animal Doctor RYDP6V = Pet Pals: Animal Doctor RYEEEB = 101-in-1 Party Megamix RYEPHZ = 101-in-1 Party Megamix RYGE9B = Rygar: The Battle of Argus RYGJ9B = Argus No Senshi Muscle Impact RYGP99 = Rygar: The Battle of Argus RYHES5 = Roogoo: Twisted Towers RYHPS5 = Roogoo: Twisted Towers RYIE9B = SPRay RYIP9B = SPRay RYJPTV = Princess Lillifee's Magic Fairy RYKEAF = We Ski & Snowboard RYKJAF = Family Ski: World Ski & Snowboard RYKPAF = Family Ski & Snowboard RYLDSV = Germany's Next Top Model RYNE6U = The Hardy Boys: The Hidden Theft RYNP6V = The Hardy Boys: The Hidden Theft RYOEA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYOJA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYOPA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYQE69 = Trivial Pursuit RYQP69 = Trivial Pursuit RYQX69 = Trivial Pursuit Nordic RYRE41 = Your Shape RYRP41 = Your Shape RYTE4Z = PBR: Out of the Chute RYVEMS = Arcade Shooter: Ilvelo RYVJMS = Illvelo Wii RYWE01 = Big Brain Academy: Wii Degree RYWJ01 = Wii de Yawaraka Atama Juku RYWK01 = Wii로 다함께! 말랑말랑 두뇌교실 RYWP01 = Big Brain Academy for Wii RYXE20 = Yamaha Supercross RYXP7J = Yamaha Supercross RYZE6U = World Party Games RYZPTV = Play the World RZ2JG9 = Simple Wii Series Vol. 1: The Minna de Kart Race RZ3JG9 = Simple Wii Series Vol. 2: The Minna de Bass Tsuri Taikai RZ4JG9 = Simple Wii Series Vol. 3: The Casino Party RZ5JG9 = Simple Wii Series Vol. 4: The Shooting Action RZ6JG9 = Simple Wii Series Vol. 5: The Block Kuzushi RZ7JG9 = Simple Wii Series Vol. 6: The Waiwai Konbatto RZ8JG9 = Simple 2000 Series Wii Vol. 1: The Table Game RZ9EG9 = Family Party: 30 Great Games RZ9JG9 = Simple 2000 Series Wii Vol. 2: The Party Game RZ9PG9 = Family Party: 30 Great Games RZAPTV = Lernerfolg Grundschule Power Math RZCE6K = Saint RZDC01 = The Legend of Zelda: Twilight Princess (Custom) RZDE01 = The Legend of Zelda: Twilight Princess RZDJ01 = The Legend of Zelda: Twilight Princess RZDK01 = 젤다의 전설- 황혼의 공주 RZDP01 = The Legend of Zelda: Twilight Princess RZEE52 = Science Papa RZEP52 = Science Papa RZFPKM = Secret Files 2: Puritas Cordis RZHE5G = Zoo Hospital RZHP5G = Zoo Hospital RZHX5G = Zoo Hospital RZIE20 = Winter Sports 3: The Great Tournament RZIPRT = Winter Sports 2010: The Great Tournament RZJD69 = Dead Space: Extraction RZJE69 = Dead Space: Extraction RZJJ13 = Dead Space: Extraction RZJP69 = Dead Space: Extraction RZKE20 = Puzzle Kingdoms RZKP7J = Puzzle Kingdoms RZLE41 = Cook Wars RZLP41 = Cook-off Party RZNJ01 = Zangeki no Reginleiv RZOE78 = World of Zoo RZOP78 = World of Zoo RZPE01 = Link's Crossbow Training RZPJ01 = Link's Crossbow Training RZPK01 = 링크의 사격트레이닝 RZPP01 = Link's Crossbow Training RZREGT = The Destiny of Zorro RZRPGT = The Destiny of Zorro RZSEGJ = Speed Zone RZSP68 = Wheelspin RZTE01 = Wii Sports Resort RZTJ01 = Wii Sports Resort RZTK01 = 위 스포츠 리조트 RZTP01 = Wii Sports Resort RZTW01 = Wii Sports Resort RZUE4Z = Crayola Colorful Journey RZYE41 = My Word Coach RZYF41 = My Word Coach: Develop your vocabulary RZYP41 = My Word Coach: Develop your vocabulary RZYS41 = My Word Coach: Develop your vocabulary RZZE8P = MadWorld RZZJEL = MadWorld RZZP8P = MadWorld S02PES = Sing It Star 90's S22JAF = Family Fishing S22K01 = Family Fishing S25JGD = Dragon Quest 25 Collection: Famicom & Super Famicom Dragon Quest I-II-III S26PML = 2-in-1: Pony Friends 2 + My Riding Stables: Life with Horses S2AEAF = Active Life: Explorer S2AJAF = Minna de Bouken! Family Trainer S2APAF = Family Trainer: Treasure Adventure S2BEPZ = Country Dance 2 S2BPXT = Country Dance 2 S2CE54 = New Carnival Games S2CP54 = New Carnival Funfair Games S2DPML = Dance! It's Your Stage S2EE41 = ABBA: You Can Dance S2EP41 = ABBA: You Can Dance S2HE70 = Haunted House S2HP70 = Haunted House S2IE8P = Iron Man 2 S2IP8P = Iron Man 2 S2LE01 = PokéPark 2: Wonders Beyond S2LJ01 = PokéPark 2: Beyond the World S2LP01 = PokéPark 2: Wonders Beyond S2ME69 = Madden NFL 13 S2OEFS = Bass Pro Shops: The Strike - Tournament Edition S2PEA4 = Pro Evolution Soccer 2012 S2PJA4 = Winning Eleven PLAY MAKER 2012 S2PPA4 = Pro Evolution Soccer 2012 S2PXA4 = Pro Evolution Soccer 2012 S2PYA4 = Pro Evolution Soccer 2012 S2QE54 = NBA 2K12 S2QP54 = NBA 2K12 S2RPNK = Reload S2TJAF = Taiko no Tatsujin Wii: Dodoon to 2 Daime! S2VEG9 = Victorious: Taking the Lead S2VPAF = Victorious: Taking the Lead S2WE78 = WWE All Stars S2WP78 = WWE All Stars S2XE41 = The Smurfs 2 S2XP41 = The Smurfs 2 S2YE52 = Wipeout: Create & Crash S2ZE52 = Zhu Zhu Pets: Featuring The Wild Bunch S2ZP52 = Zhu Zhu Pets: Featuring the Wild Bunch S3AE5G = Attack of the Movies 3D S3BEWR = Batman: The Brave and the Bold S3BPWR = Batman: The Brave and the Bold S3CENR = Triple Crown Championship Snowboarding S3DE18 = Deca Sports 3 S3DJ18 = Deca Sporta 3 S3DP18 = Sports Island 3 S3EE78 = Barbie Jet, Set & Style! S3EP78 = Barbie Jet, Set & Style! S3FE69 = FIFA Soccer 13 S3FP69 = FIFA 13 S3FX69 = FIFA 13 S3GE20 = Glacier 3: The Meltdown S3GPXT = Glacier 3 S3HJ08 = Sengoku Basara 3 Utage S3IEA4 = Pro Evolution Soccer 2013 S3IPA4 = Pro Evolution Soccer 2013 S3IXA4 = Pro Evolution Soccer 2013 S3IYA4 = Pro Evolution Soccer 2013 S3LPY1 = Andrew Lloyd Webber Musicals: Sing and Dance S3ME69 = The Sims 3 S3MP69 = The Sims 3 S3PE4Q = Disney Princess: My Fairytale Adventure S3PP4Q = Disney Princess: My Fairytale Adventure S3PX4Q = Disney Princess: My Fairytale Adventure S3RJMS = Twinkle Queen S3SJ18 = Karaoke Joysound Wii Super DX: Hitori de Minna de Utai Houdai! S3TJAF = Taiko no Tatsujin Wii: Minna de Party ☆ 3 Daime! S3WEG9 = Family Party: 30 Great Games Winter Fun S3WPG9 = Family Party: 30 Great Games Winter Fun S3XE78 = WWE '13 S3XP78 = WWE '13 S3ZE52 = Men In Black: Alien Crisis S3ZP52 = Men In Black: Alien Crisis S4MJGD = Dragon Quest X Online: Mesamashi Itsutsu no Shuzoku S4SJGD = Dragon Quest X: Nemureru Yuusha to Michibiki no Meiyuu Online S4TJAF = Taiko no Tatsujin Wii: Ketteiban S59E01 = Samurai Warriors 3 S59JC8 = Sengoku Musou 3 S59P01 = Samurai Warriors 3 S5BETL = Back to the Future: The Game S5BPKM = Back to the Future: The Game S5KJAF = Taiko no Tatsujin Wii Chou Goukaban S5QJC8 = SengokuMusou 3 Moushouden S5RESZ = Ram Racing S5RPNJ = Ram Racing S5SJHF = Inazuma Eleven Go Strikers 2013 S5TEG9 = Ben 10: Omniverse S5TPAF = Ben 10: Omniverse S5WE20 = Around The World in 50 Games S6BE4Q = Brave: The Video Game S6BP4Q = Brave: The Video Game S6BY4Q = Brave: The Video Game S6IE78 = Disney Princess: Enchanting Storybooks S6IP78 = Disney Princess: Enchanting Storybooks S6RE52 = Wreck-It Ralph S6RP52 = Wreck-It Ralph S6TJGD = Dragon Quest X (All in One Package) S72E01 = Kirby's Dream Collection: Special Edition S72J01 = Hoshi No Kirby: 20th Anniversary Edition S75E69 = Monopoly Streets S75P69 = Monopoly Streets S7AEWR = LEGO Batman 2: DC Super Heroes S7AKWR = LEGO Batman 2: DC Super Heroes S7AKZA = 레고 배트맨 2 S7APWR = LEGO Batman 2: DC Super Heroes S7BE69 = Trivial Pursuit: Bet You Know It S7BP69 = Trivial Pursuit: Casual S7CJAF = Kamen Rider Climax Heroes Fourze S7DE52 = Angry Birds: Star Wars S7DP52 = Angry Birds: Star Wars S7EP52 = Transformers: Ultimate Battle Edition S7FE5G = Zumba Kids S7FPGT = Zumba Kids: The Ultimate Zumba Dance Party S7JPKM = Let's Sing 6 - Spanish version S7KPKM = Let's Sing 2014 S7SP41 = The Smurfs Party Pack S80U3Q = SingItStar Ultimate 80s SA3E5G = Alvin and the Chipmunks: Chipwrecked SA3P5G = Alvin and the Chipmunks: Chipwrecked SA5E78 = Are You Smarter Than A 5th Grader?: Back to School SA6EG9 = Ben 10: Galactic Racing SA6PAF = Ben 10: Galactic Racing SA7ESZ = Gummy Bears: Magical Medallion SA8P52 = The Amazing Spider-Man SA9D7K = Bibi und Tina Das grosse Reiterfest SAAJA4 = Winning Eleven PLAY MAKER 2013 SABENR = Alien Monster Bowling League SABPJG = Alien Monster Bowling League SACPVS = ACB Total 2010/2011 SACSVS = ACB Total 2010/2011 SADE70 = Backyard Sports: Sandlot Sluggers SAFUHS = AFL: Australian Football League SAGE41 = The Amazing Race SAHE69 = Hasbro: Family Game Night Fun Pack SAJE52 = Cabela's Survival: Shadows of Katmai SAJP52 = Cabela's Survival: Shadows of Katmai SAKENS = Sakura Wars: So Long, My Love SAKPNS = Sakura Wars: So Long, My Love SALE4Q = Alice in Wonderland SALP4Q = Alice in Wonderland SAME01 = New Super Mario Bros. Wii 11 American Revolution SANE01 = New Super Mario Bros. Wii Five Spica Edition SANEFS = Bass Pro Shops: The Hunt - Trophy Showdown SANT3Q = SingItStar Anthems SAOE78 = Monster High: Ghoul Spirit SAOP78 = Monster High: Ghoul Spirit SAQE5G = Harley Pasternak's Hollywood Workout SARE4Z = Aladdin Magic Racer SARP01 = New Super Mario Bros. Wii 4 Arcadia Another Ride SARPNK = Aladin: Magic Racer SASEWW = Atrévete a Soñar SATE6K = Chuck E. Cheese's Super Collection SAUJ8P = Puyo Puyo!! 20th Anniversary SAVE5G = Alvin and the Chipmunks: The Squeakquel SAVX5G = Alvin and the Chipmunks: The Squeakquel SAWE52 = Angry Birds Trilogy SAWP52 = Angry Birds Trilogy SAXPFH = Max & the Magic Marker SAYE20 = Boot Camp Academy SAYP41 = Boot Camp Academy SAZE52 = The Amazing Spider-Man SAZP52 = The Amazing Spider-Man SB2ES5 = My Baby First Steps SB2PNP = My Baby 2: My Baby Grew Up SB3E08 = Sengoku Basara: Samurai Heroes SB3J08 = Sengoku BASARA 3 SB3P08 = Sengoku Basara: Samurai Heroes SB4C01 = Super Mario Galaxy 2 (Custom) SB4E01 = Super Mario Galaxy 2 SB4E02 = Neo Mario Galaxy SB4E03 = Super Mario Galaxy: Plumber's Way SB4E04 = Super Mario Sunshine Galaxy SB4E05 = Season Cycle Galaxy SB4E25 = Super Mario Galaxy 2.5 SB4J01 = Super Mario Galaxy 2 SB4J02 = Neo Mario Galaxy SB4J05 = Season Cycle Galaxy SB4K01 = 갤럭시 어드벤쳐 투게더 SB4P01 = Super Mario Galaxy 2 SB4P02 = Neo Mario Galaxy SB4P05 = Season Cycle Galaxy SB4W01 = Super Mario Galaxy 2 SB5E54 = NBA 2K11 SB5P54 = NBA 2K11 SB6E52 = Bakugan: Defenders of the Core SB6P52 = Bakugan: Defenders of the Core SB7IVU = Planet Basket 2009/2010 SB8EQH = Burger Bot SB9E78 = Barbie: Groom and Glam Pups SB9P78 = Barbie: Groom and Glam Pups SBAJGD = Dragon Quest Monsters: Battle Road Victory SBBE18 = Beyblade: Metal Fusion - Battle Fortress SBBJ18 = Metal Fight Beyblade Gachinko Stadium SBBP18 = Beyblade: Metal Fusion - Counter Leone SBCJ2N = Billy's Boot Camp: Wii de Enjoy Diet! SBDE08 = Resident Evil: The Darkside Chronicles SBDJ08 = Biohazard: The Darkside Chronicles SBDK08 = 바이오 하자드: 다크사이드 크로니클즈 SBDP08 = Resident Evil: The Darkside Chronicles SBEPSV = Bermuda Triangle SBFE70 = Backyard Football '10 SBHEFP = Remington Great American Bird Hunt SBHPNK = Remington Great American Bird Hunt SBIEVZ = Busy Scissors SBIPVZ = Busy Scissors SBJEG9 = Ben 10: Ultimate Alien Cosmic Destruction SBJPAF = Ben 10: Ultimate Alien Cosmic Destruction SBKEPZ = Brunswick Zone Cosmic Bowling SBLE5G = A Boy and His Blob SBLP5G = A Boy and His Blob SBNEG9 = Ben 10: Alien Force Vilgax Attacks SBNPG9 = Ben 10: Alien Force Vilgax Attacks SBOD3Q = SingItStar Best of Disney SBQE4Z = Big Buck Hunter Pro SBREJJ = Let's Play Ballerina SBRPKM = Ballerina SBSE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh SBSEFP = Remington Super Slam Hunting: North America SBSURN = Remington Super Slam Hunting: North America SBVE78 = SpongeBob's Boating Bash SBVG3Q = SingItStar Boybands vs Girlbands SBVP78 = SpongeBob's Boating Bash SBVS78 = SpongeBob's Boating Bash SBWC11 = New Super Mario Bros. 3: The Wrath of Shadow Bowser SBWE5G = Babysitting Mama SBWJRA = Babysitter Mama SBWPGT = Cooking Mama World: Babysitting Mama SBXEWR = The Bachelor: The Video Game SBYE41 = Dance on Broadway SBYP41 = Dance on Broadway SBZESZ = Bermuda Triangle: Saving the Coral SC2E8P = Conduit 2 SC2P8P = Conduit 2 SC4E64 = LEGO Star Wars III: The Clone Wars SC4P64 = LEGO Star Wars III: The Clone Wars SC5PGN = Challenge Me: Word Puzzles SC6PGN = Challenge Me: Brain Puzzles 2 SC7D52 = Call of Duty: Black Ops SC7E52 = Call of Duty: Black Ops SC7F52 = Call of Duty: Black Ops SC7I52 = Call of Duty: Black Ops SC7P52 = Call of Duty: Black Ops SC7S52 = Call of Duty: Black Ops SC8E01 = Wii Play: Motion SC8J01 = Wii Play: Motion SC8K01 = Wii 리모컨플러스로 즐기는 버라이어티 게임 박스 SC8P01 = Wii Play: Motion SC9P52 = Cabela's Big Game Hunter 2010 SCAE18 = Calling SCAJ18 = CALLING Kuroki Chakushin SCAP18 = Calling SCBPNK = Cyberbike Cycling Sports SCDE52 = Cabela's Dangerous Hunts 2011 SCDP52 = Cabela's Dangerous Hunts 2011 SCEE6K = Chuck E. Cheese's Party Games SCFPNK = Cocoto Festival SCGE20 = Calvin Tucker's Redneck: Farm Animal Racing Tournament SCGPXT = Calvin Tucker's: Farm Animals Racing Tournament SCHEQH = Canada Hunt SCIE41 = CSI: Fatal Conspiracy SCIP41 = CSI: Fatal Conspiracy SCJE4Q = LEGO Pirates of the Caribbean: The Video Game SCJP4Q = LEGO Pirates of the Caribbean: The Video Game SCKE6K = Chuck E. Cheese's Sports Games SCMJAF = Kamen Rider Climax Heroes OOO SCNEA4 = Scene It? Twilight SCNPA4 = Scene It? Twilight SCPE70 = Centipede: Infestation SCQDRV = Schlag den Raab - Das 2. Spiel SCREJH = Chicken Riot SCRPJH = Chicken Riot SCSE52 = Cruise Ship Vacation Games SCSPGR = Cruise Ship Resort SCTE01 = The Curse of Black Toad SCTPNK = Cocoto Surprise SCUPFR = Crazy Chicken: Carnival SCWE41 = Gold's Gym: Dance Workout SCWP41 = My Fitness Coach: Dance Workout SCXESZ = Chevrolet Camaro: Wild Ride SCXPNJ = Chevrolet Camaro: Wild Ride SCYE4Q = Cars 2 SCYP4Q = Cars 2 SCYX4Q = Cars 2 SCYY4Q = Cars 2 SCYZ4Q = Cars 2 SCZEMH = Crazy Machines SCZPFR = Crazy Machines SD2E41 = Just Dance 2 SD2J01 = Just Dance Wii SD2K41 = 저스트 댄스 2 SD2P41 = Just Dance 2 SD2Y41 = Just Dance 2: Best Buy Edition SD3DSV = Der Gesundheitscoach SD5PTV = Lernerfolg Grundschule Deutsch SD6PTV = Lernerfolg Grundschule Englisch SD7PTV = Lernerfolg Grundschule Mathematik SD8DSV = Mein neues Leben Abenteuer auf Tropicana SD9JAF = SD Gundam Gashapon Wars SDAE01 = Scooby-Doo! The Bros Adventure SDAE5G = The Daring Game for Girls SDBE78 = de Blob 2 SDBP78 = de Blob 2 SDDPML = The Ultimate Battle Of The Sexes SDEE5G = Dance Sensation! SDFE4Q = Disney Sing It: Family Hits SDFP4Q = Disney Sing It: Family Hits SDGE4Q = Disney Channel: All Star Party SDGP4Q = Disney Channel: All Star Party SDHER3 = Super Smash Bros. Brawl Dark Hole/D.A.R.S. SDIE4Q = Disney Sing It: Party Hits SDIP4Q = Disney Sing It: Party Hits SDJJAF = SD Gundam: G Generation World SDLE78 = Dood's Big Adventure SDLP78 = Dood's Big Adventure SDMEG9 = Despicable Me: The Game SDMPAF = Despicable Me: The Game SDNE41 = Just Dance SDNP41 = Just Dance SDOPLR = Doctor Who: Return To Earth SDPE54 = Dora's Big Birthday Adventure SDPP54 = Dora's Big Birthday SDQJGD = Dragon Quest X Inishie no Ryu no Denshou Online SDREYG = Maximum Racing: Drag & Stock Racer SDRP3Q = SingItStar Deutsch Rock-Pop Vol. 1 SDRPNG = Drag & Stock Racer SDSPNG = We Dance SDTH3Q = SingItStar Die Toten Hosen SDTPGN = PDC World Championship Darts: Pro Tour SDUE41 = The Smurfs Dance Party SDUP41 = The Smurfs: Dance Party SDUPO1 = DU Super Mario Bros. : DU Edition SDVE41 = Driver: San Francisco SDVP41 = Driver: San Francisco SDWE18 = Lost in Shadow SDWJ18 = Lost in Shadow SDWP18 = A Shadow's Tale SDXE4Q = Disney Universe SDXP4Q = Disney Universe SDYEA4 = Dance Dance Revolution SDYPA4 = Dance Dance Revolution: Hottest Party 4 SDZE41 = Just Dance Kids SDZP41 = Dance Juniors SE2E69 = EA Sports Active 2 SE2P69 = EA Sports Active 2 SE3E41 = Just Dance 2015 SE3P41 = Just Dance 2015 SEAE69 = EA Sports Active: More Workouts SEAJ13 = EA Sports Active More Workout SEAP69 = EA Sports Active: More Workouts SECE69 = Create SECP69 = Create SEGA = Genplus GX SEGE6U = Yoga SEGP6V = Yoga SEKJ99 = Ikenie no Yoru SELE69 = FIFA Soccer 11 SELP69 = FIFA 11 SELX69 = FIFA 11 SEME4Q = Disney Epic Mickey SEMJ01 = Disney Epic Mickey: Mickey Mouse and the Magic Brush SEMP4Q = Disney Epic Mickey SEMX4Q = Disney Epic Mickey SEMY4Q = Disney Epic Mickey SEMZ4Q = Disney Epic Mickey SENPZX = Enclave: Shadows of Twilight SEOP01 = New Super Mario Bros. Wii 8 Omega SEOP4Q = Sing It: Edad de Oro del Pop Español SEPE41 = The Black Eyed Peas Experience SEPP41 = The Black Eyed Peas Experience SEPX41 = The Black Eyed Peas Experience D1 Edition SEPZ41 = The Black Eyed Peas Experience: Limited Edition SERE4Q = Disney Epic Mickey 2: The Power of Two SERF4Q = Disney Epic Mickey 2: The Power of Two SERK4Q = Disney Epic Mickey 2: The Power of Two SERP4Q = Disney Epic Mickey 2: The Power of Two SERV4Q = Disney Epic Mickey 2: The Power of Two SESEWR = Sesame Street: Ready, Set, Grover! SESPWR = Sesame Street: Ready, Set, Grover! SESUWR = Sesame Street: Ready, Set, Grover! SEZJHF = Inazuma Eleven Strikers 2012 Xtreme SF2P64 = Star Wars: The Force Unleashed II SF4E20 = Flatout SF4PXT = Flatout SF5E41 = Fit in Six SF5J41 = Fit in Six SF5P41 = My Fitness Coach: Club SF7E41 = Family Feud 2012 Edition SF8E01 = Donkey Kong Country Returns SF8J01 = Donkey Kong Returns SF8P01 = Donkey Kong Country Returns SFAE41 = Family Feud Decades SFAJGD = Fullmetal Alchemist: Daughter of the Dusk SFBE70 = Backyard Sports Football: Rookie Rush SFDE01 = New Super Mario Bros. Wii 9 Virtue: This Fall Darkness SFDEAF = Active Life: Magical Carnival SFDJAF = Issyoni Asobou! Dream Theme Park SFDPAF = Family Trainer: Magical Carnival SFGE69 = Hasbro: Family Game Night 4 - The Game Show SFGP69 = Hasbro: Family Game Night 4 - The Game Show SFHEFP = Outdoor Action Double Pack SFIE01 = Mystery Case Files: The Malgrave Incident SFIP01 = Mystery Case Files: The Malgrave Incident SFKEG9 = Family Party: Fitness Fun SFKPAF = Family Party: Fitness Fun SFLDSV = Der Fluch der Osterinsel SFOEAF = Food Network: Cook or Be Cooked SFPPFR = Fantastic Football Fan Party SFQE8P = Captain America: Super Soldier SFQP8P = Captain America: Super Soldier SFRDRV = Fit & Fun SFRPXT = Fit & Fun SFSPGT = All Round Hunter SFTE78 = Wheel of Fortune SFTP78 = Wheel of Fortune SFUE64 = Star Wars: The Force Unleashed II SFVEXJ = Fishing Resort SFWE69 = 2010 FIFA World Cup South Africa SFWJ13 = 2010 FIFA World Cup South Africa SFWK13 = 2010 FIFA World Cup: South Africa SFWK69 = 2010 피파 월드컵 남아공 SFWP69 = 2010 FIFA World Cup South Africa SFWX69 = 2010 FIFA World Cup South Africa SFWY69 = 2010 FIFA World Cup South Africa SFWZ69 = 2010 FIFA World Cup South Africa SFXPKM = The X Factor SFXXKM = X Factor SFYEG9 = Family Party: 90 Great Games Party Pack SFYPAF = Family Party: 90 Great Games Party Pack SFZEPZ = Pheasants Forever: Wingshooter SFZPXT = Pheasants Forever SG2EFS = Crazy Mini Golf 2 SG2XUG = Crazy Mini Golf 2 SG2YFS = Crazy Mini Golf 2 SG3DSV = Germany's Next Top Model 2010 SG5PSV = Family Quiz SG6DSV = Galileo Family Quiz SG7E20 = The Garfield Show: Threat of the Space Lasagna SG7PVL = The Garfield Show: Threat of the Space Lasagna SG8EG9 = Yogi Bear SG8PAF = Yogi Bear: The Video Game SG9EYC = Gremlins: Gizmo SGAE8P = Tournament of Legends SGAP8P = Tournament of Legends SGBE5G = Greg Hastings Paintball 2 SGCE20 = Glacier 2 SGDEJJ = Let's Play Garden SGDPKM = Play Gardens SGEEG9 = Nat Geo Challenge! Wild Life SGEPLG = Nat Geo Quiz! Wild Life SGHE41 = Tom Clancy's Ghost Recon SGHP41 = Tom Clancy's Ghost Recon SGI1CL = SingIt Clasicos SGI1DB = Sing IT: Dibujos Animados SGI1MC = SingItStar Mecano SGI1ML = Sing It Star: Miliki SGI1PT = Sing IT: Party SGI1RC = Sing IT: Rocks 2 SGIEA4 = GTI Club Supermini Festa! SGIJA4 = GTI Club World City Race SGIPA4 = GTI Club Supermini Festa! SGJDSV = Galileo Mystery: The Crown of Midas SGJPSV = The Crown of Midas SGKEC8 = Champion Jockey: G1 Jockey & Gallop Racer SGKJC8 = Champion Jockey: Gallop Racer & GI Jockey SGKPC8 = Champion Jockey: G1 Jockey & Gallop Racer SGLEA4 = Gormiti: The Lords of Nature! SGLPA4 = Gormiti: The Lords of Nature! SGNE69 = Hasbro: Family Game Night Value Pack SGODKP = Mini Golf Resort SGOETV = Mini Golf Resort SGPEYG = Maximum Racing: GP Classic Racing SGPPNG = GP Classic Racing SGPTI1 = Sing It Party SGQDSV = Germany's Next Top Model 2011 SGREGT = Grease SGRPGT = Grease SGSESZ = Family Gameshow SGSP7J = Family GameShow SGTEFS = My Personal Golf Trainer with IMG Academies and David Leadbetter SGTPUG = My Personal Golf Trainer with IMG Academies and David Leadbetter SGUE4Q = Disney Guilty Party SGVEAF = Go Vacation SGVJAF = Go Vacation SGVPAF = Go Vacation SGWD7K = Bibi Blocksberg SGXE41 = Battle of Giants: Dinosaurs Strike SGXP41 = Combat of Giants: Dinosaurs Strike SGYESZ = Gummy Bears Mini Golf SGYPNJ = Gummy Bears Mini Golf SH2JMS = Hula Wii: Tanoshiku Hula o Odorou!! SH3E54 = NHL 2K11 SH3P54 = NHL 2K11 SH4EFP = Heavy Fire: Afghanistan SH4PNK = Heavy Fire: Afghanistan SH5E69 = Harry Potter and the Deathly Hallows, Part 2 SH5P69 = Harry Potter and the Deathly Hallows - Part 2 SH6E52 = Cabela's Big Game Hunter 2012 SH6P52 = Cabela's Big Game Hunter 2012 SH7ESZ = Honda ATV Fever SH7PNJ = ATV Fever SH8E52 = Cabela's Adventure Camp SH8P52 = Cabela's Adventure Camp SH9ESZ = Heathcliff: The Fast and the Furriest SHBE69 = Hasbro: Family Game Night 3 SHBP69 = Hasbro: Family Game Night 3 SHDE52 = How to Train Your Dragon SHDP52 = How to Train Your Dragon SHEDRM = Der Bauernhof SHFE20 = Basketball Hall of Fame: Ultimate Hoops Challenge SHGDRM = Holiday Games SHHE69 = Harry Potter and the Deathly Hallows, Part 1 SHHP69 = Harry Potter and the Deathly Hallows - Part 1 SHIJ2N = Shape Boxing 2 Wii Enjoy Diet! SHKE20 = Hello Kitty Seasons SHKPNQ = Hello Kitty Seasons SHLPA4 = Silent Hill: Shattered Memories SHMPLR = Horrid Henry: Missions of Mischief SHNE41 = Shaun White Skateboarding SHNP41 = Shaun White Skateboarding SHOXKR = Hugo: Magic in the Troll Woods SHOYKR = Hugo: Magic in the Troll Woods SHPE5G = Our House Party SHSE20 = Hyper Fighters SHSPXT = Hyper Fighters SHTE20 = Mathews Bow Hunting SHUE52 = Cabela's Dangerous Hunts 2011: Special Edition SHVE78 = Hot Wheels: Track Attack SHVP78 = Hot Wheels: Track Attack SHWE41 = Hollywood Squares SHXEWR = Happy Feet Two SHXPWR = Happy Feet 2 SHYE69 = NHL SlapShot SHYP69 = EA Sports: NHL Slapshot SHZENR = Harley Davidson: Road Trip SI3E69 = FIFA Soccer 12 SI3P69 = FIFA 12 SI3X69 = FIFA 12 SIABOH = SingItStar Placebo SIAE52 = Ice Age: Continental Drift - Arctic Games SIAP52 = Ice Age 4: Continental Drift - Artic Games SIBBHJ = SingItStar Country SIDE54 = Sid Meier's Pirates! SIDP54 = Sid Meier's Pirates! SIESP1 = Sing It: Canciones en Español SIFESZ = The Island of Dr. Frankenstein SIFPNJ = The Island of Dr. Frankenstein SIFPOH = SingItStar Fussballhits SIHE4Z = Sing 4: The Hits Edition SIIE8P = Mario & Sonic at the London 2012 Olympic Games SIIJ01 = Mario & Sonic at the London 2012 Olympic Games SIIP8P = Mario & Sonic at the London 2012 Olympic Games SIJE52 = iCarly 2: iJoin the Click! SIJP52 = iCarly 2: iJoin the Click! SILE78 = Worms: Battle Islands SILP4Q = Latino Sing It SILP78 = Worms Battle Islands SIME69 = MySims Collection SINPNG = We Sing: Robbie Williams SIPE7T = I SPY Game Pack SIS1OH = SingItStar Volume 1 SIS2OH = SingItStar ABBA SIS3OH = SingItStar Summer Party SIS4OH = SingItStar Amped SIS5OH = SingItStar Pop Hits SIS7OH = SingItStar Take That SIS80Q = SingItStar Ultimate 80's SIS80S = StarSing : '80s Volume 1 v1.2 SIS90H = SingItStar 90´s SIS9OH = SingItStar 90's SISACD = StarSing AC/DC SISAOH = SingItStar Après Ski Party SISBOH = SingItStar R'n'B SISCOH = SingItStar Chartbreaker SISCS1 = SingItStar Chartsurfer Vol. 1 SISDAE = SingItStar Die Ärzte SISDEM = SingItStar Depeche Mode SISDOH = SingItStar The Dome SISENR = Princess Isabella: A Witch's Curse SISHOH = SingItStar Hottest Hits SISJ0Q = Pelvic Fitness by Wii (Isometric & Karate Exercise) SISLIP = StarSing : Linkin Park v1.2 SISLOH = SingItStar Legends SISMEL = StarSing : Happy Birthday Mélanie v1.1 SISMJ1 = StarSing : Michael Jackson v2.1 SISMOH = SingItStar Mallorca Party SISP10 = SingItStar Studio100 SISP12 = StarSing : Pop Hits 1 & 2 v2.0 SISP34 = StarSing : Pop Hits 3 & 4 v2.0 SISPBC = SingItStar Britney vs Christina SISPOH = SingItStar Party SISPOP = StarSing : Pop v1.1 SISPUH = Princess Isabella: A Witch's Curse SISQ3Q = SingItStar Queen SISR3Q = SingItStar Rocks! SISREU = StarSing : Rocks! v1.1 SISRP4 = SingItStar Rocks! SISSOH = SingItStar Schlager SISTDK = SingItStar - Turkish Party SITPNG = We Sing: Deutsche Hits SIUUNG = We Sing Down Under SIXE01 = New Super Mario Bros Wii 16 Revelations SIXE41 = Drawsome! Tablet SJ2EWR = Scooby-Doo! and the Spooky Swamp SJ2PWR = Scooby-Doo! and the Spooky Swamp SJ3JDA = Jinsei Game: Happy Family SJ3PNL = Jakers! Kart Racing SJ5JDA = Jinsei Game Happy Family Gotouchi Neta Zouryou Shiage SJ6E41 = Just Dance Disney Party SJ6P41 = Just Dance Disney Party SJ7E41 = Just Dance Kids 2014 SJ7P41 = Just Dance Kids 2014 SJ9E41 = Just Dance Summer Party SJ9P41 = Just Dance 2: Extra Songs SJAE5G = JAWS: Ultimate Predator SJBE52 = GoldenEye 007 SJBJ01 = GoldenEye 007 SJBP52 = GoldenEye 007 SJCEZW = Jerry Rice & Nitus' Dog Football SJDE41 = Just Dance 3 SJDJ01 = Just Dance Wii 2 SJDK41 = 저스트 댄스 3 SJDP41 = Just Dance 3 SJDX41 = Just Dance 3 Special Edition SJDY41 = Just Dance 3: Best Buy Exclusive Edition SJDZ41 = Just Dance 3: Target Exclusive Edition SJEEPK = JumpStart Escape from Adventure Island SJFE4Z = Kid Fit Island Resort SJFPGR = Junior Fitness Trainer SJFXGR = Junior Fitness Trainer SJGEPK = JumpStart Get Moving Family Fitness SJHE41 = Just Dance Greatest Hits SJIEG9 = Jillian Michaels Fitness Ultimatum 2011 SJJEA4 = Jimmie Johnson's Anything With An Engine SJKEPK = JumpStart Crazy Karts SJLEFS = Junior League Sports SJLPXT = Junior League Sports SJME5G = Jillian Michaels Fitness Ultimatum 2010 SJMPGT = Jillian Michaels Fitness Ultimatum 2010 SJOE41 = Just Dance 2014 SJOP41 = Just Dance 2014 SJPE78 = Jeopardy! SJQEPZ = Jewel Quest Trilogy SJQPGR = Jewel Quest Trilogy SJREA4 = Def Jam Rapstar SJRXA4 = Def Jam Rapstar SJSEPK = JumpStart Pet Rescue SJTP41 = Just Dance: Best Of SJUE20 = Dino Strike SJUPXT = Dino Strike SJVE20 = Shawn Johnson Gymnastics SJWJA4 = Winning Eleven PLAY MAKER 2010 Japan Challenge SJXD41 = Just Dance 4 SJXE41 = Just Dance 4 SJXP41 = Just Dance 4 SJZE41 = Just Dance Kids 2 SJZP41 = Just Dance Kids SK3EEB = Trauma Team SK4E52 = Shrek Forever After SK4P52 = Shrek Forever After SK5PY1 = Kylie Sing & Dance SK6KJD = 케이팝 댄스 페스티벌 SK7PVZ = Disney Violetta: Rhythm & Music SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8P52 = Skylanders: Trap Team SK8V52 = Skylanders: Trap Team SKAEA4 = Karaoke Revolution Glee SKAPA4 = Karaoke Revolution Glee SKBEG9 = Kidz Bop Dance Party SKCE20 = Bigfoot: King of Crush SKDJ18 = Karaoke Joysound Wii Duet Song SKEJ18 = Karaoke Joysound Wii: Enka Kayoukyoku Hen SKGEA4 = Karaoke Revolution Glee Volume 2 SKGPA4 = Karaoke Revolution Glee Volume 2 SKHJAF = Kamen Rider Super Climax Heroes SKJE78 = You Don't Know Jack SKKPHY = Captain Morgane and the Golden Turtle SKKXHY = Captain Morgane and the Golden Turtle SKLDSV = K11 - Kommissare im Einsatz SKMJAF = Kamen Rider Climax Heroes W SKOEA4 = Karaoke Revolution Glee Volume 3 SKOPA4 = Karaoke Revolution Glee Volume 3 SKREG9 = Kamen Rider Dragon Knight SKSE54 = NBA 2K13 SKSP54 = NBA 2K13 SKTE78 = All Star Karate SKTP78 = All Star Karate SKUE78 = Kung Fu Panda 2 SKUP78 = Kung Fu Panda 2 SKVE20 = Kevin Van Dam's Big Bass Challenge SKWPNK = Cocoto Kart Racer 2 SKXE20 = Pirate Blast SKXPFH = Pirate Blast SKYE52 = Skylanders: Giants SKYP52 = Skylanders: Giants SKYX52 = Skylanders: Giants SKYZ52 = Skylanders: Giants SKZE52 = DreamWorks Super Star Kartz SKZP52 = DreamWorks Super Star Kartz SL2J01 = Zero: Shinku no Chou SL2P01 = Project Zero 2: Wii Edition SL3ENR = Dragon's Lair Trilogy SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = The Last Airbender SLAP78 = The Last Airbender SLAZ78 = The Last Airbender: ToysRUs Special Edition SLCEGN = Get Up And Dance SLCPGN = Get Up And Dance SLDEYG = Let's Dance SLDPLG = Let's Dance with Mel B SLEE78 = Deepak Chopra's Leela SLEP78 = Deepak Chopra's Leela SLFE01 = New Super Mario Bros. 3 The Final Levels SLFP01 = New Super Mario Bros. 3: The Final Levels SLFPKM = Let's Sing SLFXKM = Let's Sing 5 - Spanish version SLHEWR = LEGO Harry Potter: Years 5-7 SLHPWR = LEGO Harry Potter: Years 5-7 SLIE52 = Little League World Series Baseball: Double Play SLLEWW = Lucha Libre AAA: Héroes del Ring SLPP5D = The Spirit of the Wolf SLREWR = LEGO The Lord of the Rings SLRPWR = LEGO The Lord of the Rings SLSEXJ = The Last Story SLSJ01 = The Last Story SLSP01 = The Last Story SLTEJJ = NewU Fitness First Mind Body: Yoga & Pilates Workout SLTPLG = NewU Fitness First Mind Body: Yoga & Pilates Workout SLVP41 = We Dare SLWE41 = Where's Waldo? The Fantastic Journey SLYESZ = Beastly SLYPNJ = Beastly SM2E52 = 10 Minute Solution SM2P52 = 10 Minute Solution SM3E01 = Super Mario Bros. 3+ SM4E20 = Monster Trucks Mayhem SM4PXT = Monster Trucks: Ultra Mega Xtreme!!! SM5EAF = Power Rangers Samurai SM5PAF = Power Rangers Samurai SM6PNK = My Body Coach 2: Fitness & Dance SM7E69 = Madden NFL 12 SM8D52 = Call of Duty: Modern Warfare 3 SM8E52 = Call of Duty: Modern Warfare 3 SM8F52 = Call of Duty: Modern Warfare 3 SM8I52 = Call of Duty: Modern Warfare 3 SM8P52 = Call of Duty: Modern Warfare 3 SM8S52 = Call of Duty: Modern Warfare 3 SM8X52 = Call of Duty: Modern Warfare 3 SM9E54 = Major League Baseball 2K12 SMAENR = Marines: Modern Urban Combat SMAPGN = Marines: Modern Urban Combat SMBE8P = Super Monkey Ball: Step & Roll SMBJ8P = Super Monkey Ball: Step & Roll SMBP8P = Super Monkey Ball: Step & Roll SMCENR = We Wish You A Merry Christmas SMCPXT = We Wish You A Merry Christmas SMD3OH = SingItStar e La Magia Disney SMEE69 = Madden NFL 11 SMFE4Q = Phineas and Ferb: Across the 2nd Dimension SMFP4Q = Phineas and Ferb: Across the 2nd Dimension SMGE78 = Megamind: Mega Team Unite SMGP78 = Megamind: Mega Team Unite SMGX = SaveGame Manager GX SMHPNK = Marvel Super Heroes 3D: Grandmaster's Challenge SMIE41 = Who Wants To Be A Millionaire SMIG3Q = SingItStar Made in Germany SMJE52 = Monster Jam: Path of Destruction SMJP52 = Monster Jam: Path of Destruction SMKE4Z = Gem Smashers SMLE54 = Major League Baseball 2K10 SMME02 = Super Mario: Mushroom Adventure PLUS - Winter Moon SMMJ0Q = Momu chan Diet Wii Figurobics by Chon Dayon SMMP01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 4. SMMP02 = Super Mario: Mushroom Adventure PLUS: Winter Moon SMNC01 = New Super Mario Bros. Wii SMNE01 = New Super Mario Bros. Wii SMNE02 = New Super Mario Remake SMNE03 = Newer Super Mario Bros. Wii SMNE04 = Cannon Super Mario Bros. Wii SMNE05 = Another Super Mario Bros. Wii SMNE06 = Newer Summer Sun SMNE07 = Newer Holiday Special SMNE08 = Epic Super Bowser World SMNE09 = Old Super Mario Bros. Wii SMNE10 = Koopa Country SMNE11 = New Super Mario Bros. Wii 4 SMNE12 = Awesomer Super Luigi Mini SMNE13 = New Super Mario Bros. Wii 9 Summer Special SMNE14 = Super Mario World Wii SMNE15 = Newer Super Mario Bros. 7 SMNE16 = Newer Super Mario Sunshine SMNE17 = Flowery Super Mario Land Wii SMNE18 = Super Switchy Mario World Wii SMNE19 = New Super Mr. M Bros. Wii SMNE20 = New Super Mario Bros. H SMNE21 = Newer Super Mario Land Wii SMNE22 = Neo Mario Brothers Wii SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE24 = Super Mario Ghost Special SMNE25 = Happy Super Marionose Wii SMNE26 = New Super Mario Bros. DS Wii Version SMNE27 = Newer Super Mario All Star SMNE28 = New Super Mario World SMNE29 = Not So Super Toaster Bros.: The Newer Collab! SMNE2D = Super Mario 2D Land 7 SMNE30 = New Super Mario Bros. Koopa Kall SMNE31 = New Super Mario Bros. Wii - Other World SMNE32 = Super Mario Legends SMNE33 = New Super Mario Bros. Wii Rollercoaster Party SMNE34 = New Super Mario Bros. Wii: Yoshi Mode SMNE35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNE36 = New Super Mario Bros. Wii Hack Pack SMNE37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNE38 = New Super Mario Bros. Wii Underground Maze SMNE39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNE40 = Newer Super Mario Bros. Wii U SMNE41 = Devil Mario Winter Special SMNE42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNE99 = Children's Super Mario Bros. Wii SMNED2 = New Super Mario Bros. + Animal Edition SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNENW = Newer Mario Escapade SMNEPM = Super Mario: Mushroom Adventure PLUS SMNEPS = New Super Mario Bros. Plus SMNERE = Retro Mario Bros. SMNERV = RVLution Wii SMNESL = Newer Super Mario Land Wii SMNESM = New Super Ghost Mario Wii SMNESN = New Super Mario Bros. Wii H SMNESS = New Super Mario Bros. 7 SMNEXD = Deluxe Super Mario Bros. Wii SMNEXR = Super Mario Remix SMNEYE = 8Forrest's Super Mario Bros. Wii SMNEYL = Luigi's Super Yoshi Bros. SMNEYM = You Super Mario Bros. Me Summer Special SMNEYS = Yoshi Super Mario Bros. Wii SMNEYU = You Super Mario Bros. Me SMNEYW = Newer Super Mario World Yoshi Way SMNEYY = You Super Mario Bros. Me Autumn Adventure SMNEZ2 = New JeDa Mario Bros. Wii SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZG = GF Super Mario Bros. Wii SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZQ = Basic Super Mario Bros. Wii SMNEZR = Newer Super Wario World Wii SMNEZS = Another Newer Super Mario Bros. Wii SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZX = Donkey Kong Remastered SMNEZY = Super Mario Skyland SMNEZZ = New Super Mario Bros. 2 Wii Version SMNJ01 = New Super Mario Bros. Wii SMNJ02 = Awesomer Super Luigi Mini SMNJ03 = Newer Super Mario Bros. Wii SMNJ04 = Cannon Super Mario Bros. Wii SMNJ06 = Newer Summer Sun SMNJ07 = Newer Holiday Special SMNJ08 = Epic Super Bowser World SMNJ10 = Koopa Country SMNJ11 = New Super Mario Bros. Wii 4 SMNJ13 = New Super Mario Bros. Wii 9 Summer Special SMNJ14 = Super Mario World Wii SMNJ15 = Newer Super Mario Bros. 7 SMNJ16 = Newer Super Mario Sunshine SMNJ17 = Flowery Super Mario Land Wii SMNJ18 = Super Switchy Mario World Wii SMNJ19 = New Super Mr. M Bros. Wii SMNJ20 = New Super Mario Bros. H SMNJ21 = Newer Super Mario Land Wii SMNJ22 = Neo Mario Brothers Wii SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ24 = Super Mario Ghost Special SMNJ25 = Happy Super Marionose Wii SMNJ26 = New Super Mario Bros. DS Wii Version SMNJ27 = Newer Super Mario All Star SMNJ28 = New Super Mario World SMNJ29 = Not So Super Toaster Bros.: The Newer Collab! SMNJ2D = Super Mario 2D Land Wii SMNJ30 = New Super Mario Bros. Koopa Kall SMNJ31 = New Super Mario Bros. Wii - Other World SMNJ32 = Super Mario Legends SMNJ33 = New Super Mario Bros. Wii Rollercoaster Party SMNJ34 = New Super Mario Bros. Wii: Yoshi Mode SMNJ35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNJ36 = New Super Mario Bros. Wii Hack Pack SMNJ37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNJ38 = New Super Mario Bros. Wii Underground Maze SMNJ39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNJ40 = Newer Super Mario Bros. Wii U SMNJ41 = Devil Mario Winter Special SMNJ42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNJ99 = Children's Super Mario Bros. Wii SMNJD2 = New Super Mario Bros. + Animal Edition SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJNW = Newer Mario Escapade SMNJPM = Super Mario: Mushroom Adventure PLUS SMNJPS = New Super Mario Bros. Plus SMNJRE = Retro Mario Bros. SMNJRV = RVLution Wii SMNJSL = Newer Super Mario Land Wii SMNJSM = New Super Ghost Mario Wii SMNJXD = Deluxe Super Mario Bros. Wii SMNJXR = Super Mario Remix SMNJYE = 8Forrest's Super Mario Bros. Wii SMNJYL = Luigi's Super Yoshi Bros. SMNJYM = You Super Mario Bros. Me Summer Special SMNJYS = Yoshi Super Mario Bros. Wii SMNJYY = You Super Mario Bros. Me Autumn Adventure SMNJZ2 = New JeDa Mario Bros. Wii SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZG = GF Super Mario Bros. Wii SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZQ = Basic Super Mario Bros. Wii SMNJZR = Newer Super Wario World Wii SMNJZS = Another Newer Super Mario Bros. Wii SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZX = Donkey Kong Remastered SMNJZY = Super Mario Skyland SMNJZZ = New Super Mario Bros. 2 Wii Version SMNK01 = 뉴 슈퍼 마리오브라더스 Wii SMNP01 = New Super Mario Bros. Wii SMNP02 = Awesomer Super Luigi Mini SMNP03 = Newer Super Mario Bros. Wii SMNP04 = Cannon Super Mario Bros. Wii SMNP05 = Another Super Mario Bros. Wii SMNP06 = Newer Summer Sun SMNP07 = Newer Holiday Special SMNP08 = Epic Super Bowser World SMNP10 = Koopa Country SMNP11 = New Super Mario Bros. Wii 4 SMNP12 = Awesomer Super Luigi Mini SMNP13 = New Super Mario Bros. Wii 9 Summer Special SMNP14 = Super Mario World Wii SMNP15 = Newer Super Mario Bros. 7 SMNP16 = Newer Super Mario Sunshine SMNP17 = Flowery Super Mario Land Wii SMNP18 = Super Switchy Mario World Wii SMNP19 = New Super Mr. M Bros. Wii SMNP20 = New Super Mario Bros. H SMNP21 = Newer Super Mario Land Wii SMNP22 = Neo Mario Brothers Wii SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP24 = Super Mario Ghost Special SMNP25 = Happy Super Marionose Wii SMNP26 = New Super Mario Bros. DS Wii Version SMNP27 = Newer Super Mario All Star SMNP28 = New Super Mario World SMNP29 = Not So Super Toaster Bros.: The Newer Collab! SMNP2D = Super Mario 2D Land Wii SMNP30 = New Super Mario Bros. Koopa Kall SMNP31 = New Super Mario Bros. Wii - Other World SMNP32 = Super Mario Legends SMNP33 = New Super Mario Bros. Wii Rollercoaster Party SMNP34 = New Super Mario Bros. Wii: Yoshi Mode SMNP35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNP36 = New Super Mario Bros. Wii Hack Pack SMNP37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNP38 = New Super Mario Bros. Wii Underground Maze SMNP39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNP40 = Newer Super Mario Bros. Wii U SMNP41 = Devil Mario Winter Special SMNP42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNP77 = New Super Mario Bros. Wii Arcadia SMNP99 = Children's Super Mario Bros. Wii SMNPD2 = New Super Mario Bros. + Animal Edition SMNPDU = DU Super Mario Bros. : Anniversary Edition SMNPLL = Newer Super Luigi Wii SMNPLM = Newer Super Luigi Wii Dark Moon SMNPMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNPNW = Newer Mario Escapade SMNPO1 = New Super Mario Custom Edition SMNPPM = Super Mario: Mushroom Adventure PLUS SMNPPS = New Super Mario Bros. Plus SMNPRE = Retro Mario Bros. SMNPRV = RVLution Wii SMNPSL = Newer Super Mario Land Wii SMNPSM = New Super Ghost Mario Wii SMNPXD = Deluxe Super Mario Bros. Wii SMNPXR = Super Mario Remix SMNPYE = 8Forrest's Super Mario Bros. Wii SMNPYL = Luigi's Super Yoshi Bros. SMNPYM = You Super Mario Bros. Me Summer Special SMNPYS = Yoshi Super Mario Bros. Wii SMNPYY = You Super Mario Bros. Me Autumn Adventure SMNPZ2 = New JeDa Mario Bros. Wii SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZG = GF Super Mario Bros. Wii SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZQ = Basic Super Mario Bros. Wii SMNPZR = Newer Super Wario World Wii SMNPZS = Another Newer Super Mario Bros. Wii SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZX = Donkey Kong Remastered SMNPZY = Super Mario Skyland SMNPZZ = New Super Mario Bros. 2 Wii Version SMNW01 = New Super Mario Bros. Wii SMOE41 = Michael Jackson: The Experience SMOJ41 = Michael Jackson: The Experience SMOP41 = Michael Jackson The Experience SMOT3Q = SingItStar Motown SMOX41 = Michael Jackson: The Experience - Walmart Edition SMOY41 = Michael Jackson: The Experience - Special Edition SMPE69 = Monopoly Collection SMPP01 = New Super Mario Bros. Wii 2: The Other P SMPP69 = Monopoly Collection SMRE01 = New Super Mario Bros. Wii: Super Mario Bros. 1 Custom SMRE78 = WWE SmackDown vs. Raw 2011 SMRP78 = WWE SmackDown vs. Raw 2011 SMSE01 = New Super Mario Bros Wii 12 Sunshine Paradise SMSE78 = Marvel Super Hero Squad: The Infinity Gauntlet SMSP78 = Marvel Super Hero Squad: The Infinity Gauntlet SMTJ18 = Momotarô Dentetsu 2010 SMUJAF = Daikaijuu Battle: Ultra Coliseum DX - Ultra Senshi Daishuuketsu SMVE01 = Super Mario Vacation SMVE54 = Major League Baseball 2K11 SMVJ01 = Super Mario Vacation SMVP01 = Super Mario Vacation SMWE01 = Newer Super Mario World U SMWE4Z = Man vs. Wild SMWJ01 = Newer Super Mario World U SMWP01 = Newer Super Mario World U SMYE20 = Minute to Win It SMZE78 = Marvel Super Hero Squad: Comic Combat SMZP78 = Marvel Super Hero Squad: Comic Combat SN2E69 = NERF N-Strike Double Blast Bundle SN3EYG = Maximum Racing: Rally Racer SN3PNG = Rally Racer SN4EDA = Naruto Shippuden: Dragon Blade Chronicles SN4JDA = Naruto Shippuuden: Ryujinki SN4XGT = Naruto Shippuden: Dragon Blade Chronicles SN5EYG = Maximum Racing: Crash Car Racer SN5PNG = Crash Car Racer SN6EYG = Maximum Racing: Super Karts SN6PNG = Super Karts SN7EYG = Maximum Racing: Super Truck Racer SN7PNG = Super Truck Racer SN8EYG = Maximum Racing: Sprint Cars SN8PNG = Sprint Cars SN9E54 = Nickelodeon Fit SNAE52 = Cabela's North American Adventures 2011 SNBE41 = NCIS: The Game SNBP41 = NCIS: The Game SNCE8P = Sonic Colors SNCJ8P = Sonic Colors SNCP8P = Sonic Colours SNDE20 = Deal or No Deal: Special Edition SNEENR = North American Hunting Extravaganza 2 SNEPXT = North American Hunting 2: Extravaganza SNFE69 = EA Sports Active NFL Training Camp SNGEJJ = Get Fit with Mel B SNGPLG = Get Fit with Mel B SNHE69 = Need for Speed: Hot Pursuit SNHJ13 = Need for Speed: Hot Pursuit SNHP69 = Need for Speed: Hot Pursuit SNIE54 = Nicktoons MLB SNJE69 = NBA Jam SNJP69 = NBA Jam SNKX54 = Nickelodeon Fit SNLE01 = New Super Mario Bros. Wii 0-2 Next Generation Levels SNLE54 = Nickelodeon Dance SNLP54 = Nickelodeon Dance SNLX54 = Nickelodeon Dance SNMEAF = Namco Museum Megamix SNOPY1 = Now! That's What I Call Music: Dance & Sing SNPE52 = NASCAR The Game: Inside Line SNQE7U = National Geographic Challenge! SNQPLG = National Geographic Challenge! SNRE52 = NASCAR Unleashed SNSE52 = NASCAR 2011: The Game SNTEXN = Netflix Instant Streaming Disc SNUPJW = Happy Neuron Academy SNVE69 = Need for Speed: The Run SNVJ13 = Need for Speed: The Run SNVP69 = Need for Speed: The Run SNXJDA = Naruto Shippuuden: Gekitou Ninja Taisen Special SNYEVZ = Monster High: 13 Wishes SNYPVZ = Monster High: 13 Wishes SNZEVZ = Barbie: Dreamhouse Party SNZPVZ = Barbie: Dreamhouse Party SO3EE9 = Rune Factory: Tides of Destiny SO3J99 = Rune Factory: Oceans SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg 2 SOCE4Z = Deadliest Catch: Sea of Chaos SOIEEB = 101-in-1 Sports Party Megamix SOIPHZ = 101-in-1 Sports Party Megamix SOJE41 = Rayman Origins SOJP41 = Rayman Origins SOKEA4 = Karaoke Joysound SOKJ18 = Karaoke Joysound Wii DX SOME01 = Rhythm Heaven Fever SOMJ01 = Minna no Rhythm Tengoku SOMK01 = 리듬 세상 Wii SOMP01 = Beat the Beat: Rhythm Paradise SONDMR = My First Songs SONFMR = My First Songs SONPMR = My First Songs SORE4Z = The Oregon Trail SOSEG9 = Turbo: Super Stunt Squad SOSPAF = Turbo: Super Stunt Squad SOTE52 = Wipeout: The Game SOUE01 = The Legend of Zelda: Skyward Sword SOUJ01 = The Legend of Zelda: Skyward Sword SOUK01 = 젤다의 전설 스카이워드 소드 SOUP01 = The Legend of Zelda: Skyward Sword SP2E01 = Wii Sports + Wii Sports Resort SP2P01 = Wii Sports + Wii Sports Resort SP3E41 = The $1,000,000 Pyramid SP4PJW = Pétanque Master SP4V = Castlevania: Rondo of Blood SP5E70 = The Kore Gang: Outvasion From Inner Earth SP5PVV = The Kore Gang: Outvasion From Inner Earth SP6DSV = Popstars SP7EAF = Pac-Man Party SP7JAF = Pac-Man Party SP7PAF = Pac-Man Party SP8E78 = The Penguins of Madagascar: Dr. Blowhole Returns Again! SP8P78 = The Penguins of Madagascar: Dr. Blowhole Returns Again! SP9P4Q = SingIt Star POP 2009 SP9PJW = Pucca's Race for Kisses SPAE5G = Pirates Plund-Arrr SPBPGT = Spellbound Party SPCPZS = Pocoyo Racing SPDE52 = Spider-Man: Shattered Dimensions SPDP52 = Spider-Man: Shattered Dimensions SPEE20 = Speed SPEPXT = Speed SPGPPN = Peppa Pig: Fun And Games SPHPJW = Spaghetti Western Shooter SPIE18 = Oops! Prank Party SPIJ18 = Party Game Box 100 SPIP18 = Games Island SPKXPV = Springdale: Riding Adventures SPMDRM = Mahjongg Party SPMPWP = Mahjong Party Pack SPOPFR = Winter Sports 2011: Go for Gold SPPEFS = Power Punch SPQE7T = I SPY Spooky Mansion SPRE01 = New Super Mario Bros. Wii 14 Project Mario SPRE41 = The Price Is Right: 2010 Edition SPTJEB = Hospital. 6 nin no Ishi SPUE20 = Let's Paint SPVEA4 = Pro Evolution Soccer 2011 SPVPA4 = Pro Evolution Soccer 2011 SPVXA4 = Pro Evolution Soccer 2011 SPVYA4 = Pro Evolution Soccer 2011 SPWHZH = The Studio 100: Play Island SPXP41 = Prince of Persia: The Forgotten Sands SPYDSV = Yetisports: Penguin Party Island SPZE5G = Pizza Delivery Boy SQ2EPZ = Country Dance SQ2PXT = Country Dance SQAE52 = Cabela's African Adventures SQBPXT = The Cube SQDE8P = Gunblade NY & LA Machineguns : Arcade Hits Pack SQDP8P = Gunblade NY & LA Machineguns: Arcade Hits Pack SQEENG = We Sing Pop! SQEPNG = We Sing Pop! SQFE5G = Phineas and Ferb: Quest for Cool Stuff SQFPGT = Phineas and Ferb: Quest for Cool Stuff SQIE4Q = Disney Infinity SQIP4Q = Disney Infinity SQIY4Q = Disney Infinity SQKE5G = Cooking Mama 2-Pack SQKK01 = Cooking Mama 2 Pack SQLE4Z = Cartoon Network Punch Time Explosion XL SQLPGN = Cartoon Network: Punch Time Explosion XL SQME52 = Spider-Man: Edge of Time SQMP52 = Spider-Man: Edge of Time SQPPX4 = Speed 2 SQQEVZ = Disney Planes: Fire & Rescue SQQPVZ = Disney Planes: Fire & Rescue SQRPNG = We Sing Rock! SQTPML = The Ultimate Battle Of The Sexes: Quizz & Play! SQUDX3 = Quiz Party SQUFX3 = Quiz Party SQVE69 = FIFA 15 SQVP69 = FIFA 15 - Legacy Edition SQVX69 = FIFA 15 - Legacy Edition SR4E41 = Raving Rabbids: Travel in Time SR4J41 = Raving Rabbids: Travel in Time SR4P41 = Raving Rabbids: Travel in Time SR5E41 = Raving Rabbids Party Collection SR5P41 = Raving Rabbids Party Collection SR6EHG = Reader Rabbit 1st Grade SR7EHG = Reader Rabbit 2nd Grade SR8EHG = Reader Rabbit Kindergarten SR9EHG = Reader Rabbit Preschool SRAJMS = Rajirugi Noa Wii SRBP4Q = SingItStar: R&B SRBPHS = Rugby League 3 SRCE69 = Rock Band: Country Track Pack 2 SREXNL = Reader Rabbit Kindergarten SRFE52 = Rapala Pro Bass Fishing SRFP52 = Rapala Pro Bass Fishing SRGE69 = Rango SRGP01 = New Super Mario Bros Wii 2 Reggie SRGP69 = Rango SRHP01 = New Super Mario Bros. Wii 7 Retro Heaven SRIE78 = Rio SRIP78 = Rio SRJJAF = Super Sentai Battle: Ranger Cross SRKEFP = Remington Super Slam Hunting: Alaska SRKPNK = Remington Dangerous Animals SRLXNL = Reader Rabbit Preschool SRME18 = Rooms: The Main Building SRMJ18 = Rooms: Fushigi na Ugoku Heya SRNE70 = Project Runway SRNP01 = New Super Mario Bros. Wii Revolution SRNP70 = Project Runway SRPE4Q = Disney Tangled SRPP4Q = Disney Tangled SRQE41 = Racquet Sports SRQP41 = Racket Sports Party SRRENR = Rec Room Games SRRPGN = Great Party Games SRSE20 = Super Sonic Racer SRSPXT = Supersonic Racer SRTXNL = Reader Rabbit 1st Grade SRUE4Z = Rudolph the Red-Nosed Reindeer SRVE41 = The Price Is Right Decades SRVP01 = New Super Mario Bros Revolution SRWXNL = Reader Rabbit 2nd Grade SRXE52 = Generator Rex: Agent of Providence SRXP52 = Generator Rex: Agent of Providence SRYEAF = ExerBeat: Gym Class Workout SRYJAF = Fitness Party SRYPAF = ExerBeat: Gym Class Workout SS2PFR = Winter Sports 2012: Feel the Spirit SS3EWR = Sesame Street: Elmo's A-to-Zoo Adventure SS3PWR = Sesame Street: Elmo's A-to-Zoo Adventure SS3UWR = Sesame Street: Elmo's A-to-Zoo Adventure SS4EWR = Sesame Street: Cookie's Counting Carnival SS4UWR = Sesame Street: Cookie's Counting Carnival SS5ENR = Satisfashion SS6UHS = AFL Live: Game of the Year Edition SS7EFP = Remington Super Slam Hunting: Africa SS7URN = Remington Super Slam Hunting: Africa SS8E78 = SpongeBob SquigglePants SS8P78 = SpongeBob SquigglePants SS9JMS = Milestone Shooting Collection 2 SSBE78 = Puss in Boots SSBP78 = Puss in Boots SSCDWR = Scene It? Bright Lights! Big Screen! SSCEPM = Scene It? Bright Lights! Big Screen! SSCFPM = Scene It? Bright Lights! Big Screen! SSCFWR = Scene It? Bright Lights! Big Screen! SSCIWR = Scene It? Bright Lights! Big Screen! SSCPWR = Scene It? Bright Lights! Big Screen! SSCSWR = Scene It? Bright Lights! Big Screen! SSDDRV = Schlag den Raab SSEDNG = We Sing: Encore SSEPNG = We Sing: Encore SSEVNG = We Sing: Encore SSFPKM = Sing 4: The Hits Edition SSGPNG = We Sing SSHPHH = Sherlock Holmes: The Silver Earring SSIENR = Winter Blast: 9 Snow & Ice Games SSJEJJ = Summer Stars 2012 SSJPKM = Summer Stars 2012 SSLENR = I Love Horses: Rider's Paradise SSLPKM = The Saddle Club SSLPOH = SingItStar Legends SSMEYG = American Mensa Academy SSMPGD = Mensa Academy SSNEYG = Sniper Elite SSNPHY = Sniper Elite SSPE52 = Skylanders: Spyro's Adventure SSPJ52 = Skylanders: Spyro's Adventure SSPP52 = Skylanders: Spyro's Adventure SSPX52 = Skylanders: Spyro's Adventure SSQE01 = 마리오 파티 9 SSQJ01 = 마리오 파티 9 SSQK01 = 마리오 파티 9 SSQP01 = 마리오 파티 9 SSQW01 = Mario Party 9 SSRE20 = Wild West Shootout SSRPXT = Wild West Shootout SSSE01 = New Super Mario Bros. Wii: Summer Sun SSSEWR = Sesame Street: Elmo's Musical Monsterpiece SSTEG9 = Kid Adventures: Sky Captain SSTPY5 = Stunt Flyer: Hero of the Skies SSUES5 = Sushi Go Round SSVE52 = Wipeout 3 SSWDRM = Water Sports SSWEPZ = Water Sports SSWPGR = Water Sports SSZE5G = Swords ST3J01 = Kiki Trick ST4PNX = Thomas & Friends: Hero of the Rails ST4XNX = Thomas & Friends: Hero of the Rails ST5E52 = Transformers: Cybertron Adventures ST5P52 = Transformers: Cybertron Adventures ST6E78 = The Biggest Loser Challenge ST6P78 = The Biggest Loser Challenge ST7E01 = Fortune Street ST7JGD = Itadaki Street Wii ST7P01 = Boom Street ST8P75 = SingItStar 80's ST9E52 = Top Shot Arcade STAE78 = Pictionary STAP75 = SingItStar Apres Ski Hits STAP78 = Pictionary STAU78 = Pictionary STCP75 = SingItStar Singstar STDEFP = Reload STDP75 = SingItStar Deutsch Rock-Pop STEETR = Tetris Party Deluxe STEJ18 = Tetris Party Premium STEPTR = Tetris Party Deluxe STFE52 = Transformers: Prime STFP52 = Transformers Prime: The Game STGJAF = Tales of Graces STHE8P = THOR: God of Thunder STHP75 = SingItStar Hottest Hits STHP8P = THOR: God of Thunder STIFKM = Titeuf le Film STJJAF = Taiko no Tatsujin Wii: Ketteiban STKE08 = Tatsunoko vs. Capcom: Ultimate All-Stars STKJ08 = Tatsunoko vs. Capcom: Ultimate All-Stars STKP08 = Tatsunoko vs. Capcom: Ultimate All-Stars STLE78 = Truth or Lies STLP78 = Truth or Lies STMEGN = Titanic Mystery STMPKP = Titanic Mystery STNE41 = The Adventures of Tintin: The Game STNP41 = The Adventures of Tintin: The Secret of the Unicorn STOE4Q = Cars Toon: Mater's Tall Tales STOP4Q = Cars Toon: Mater's Tall Tales STOX4Q = Cars Toon: Mater's Tall Tales STPP75 = SingItStar Pop Hits STPPML = Pet Vet: Marine Patrol STQJHF = Inazuma Eleven Strikers STQP01 = Inazuma Eleven Strikers STQP75 = SingItStar Queen STQX01 = Inazuma Eleven Strikers STRE4Q = Tron: Evolution - Battle Grids STRP4Q = Tron: Evolution - Battle Grids STRP75 = SingItStar Rock Ballads STRX4Q = Tron: Evolution - Battle Grids Championship Edition STSE4Q = Toy Story 3 STSP4Q = Toy Story 3 STSP75 = SingItStar Schlager STSX4Q = Toy Story 3 STSY4Q = Toy Story 3 STSZ4Q = Toy Story 3: Toy Box Special Edition STTDRM = Hidden Mysteries: Titanic STTE52 = Hidden Mysteries: Titanic STTPGR = Hidden Mysteries Titanic: Secrets of the Fateful Voyage STTXGR = Hidden Mysteries: Titanic STUPRN = Turbo Trainz STVDSV = TV Total Events STWE69 = Tiger Woods PGA Tour 11 STWP69 = Tiger Woods PGA Tour 11 STXE69 = Tiger Woods PGA Tour 12: The Masters STXP69 = Tiger Woods PGA Tour 12: The Masters STYE52 = Tony Hawk: Shred STYP52 = Tony Hawk: Shred STZE52 = Transformers: Dark of the Moon - Stealth Force Edition STZP52 = Transformers: Dark of the Moon - Stealth Force Edition SU2E54 = Nickelodeon Dance 2 SU2P54 = Nickelodeon Dance 2 SU2X54 = Nickelodeon Dance 2 SU3DMR = U-Sing 2 SU3FMR = U-Sing 2 SU3HMR = U-Sing 2: Popstars Edition SU3PMR = U-Sing 2 SU3SMR = U-Sing 2 SU3UMR = U-Sing 2: Australian Edition SU4E78 = UFC Personal Trainer: The Ultimate Fitness System SU4P78 = UFC Personal Trainer: The Ultimate Fitness System SU5EVZ = Monster High: Skultimate Roller Maze SU5PVZ = Monster High: Skultimate Roller Maze SU6E5G = Zumba Fitness Core SU6P5G = Zumba Fitness Core SU6XGT = Zumba Fitness Core SU7EG9 = Rise of the Guardians SU7PAF = Rise of the Guardians SU8PNG = We Sing: Deutsche Hits 2 SU9E4Q = Disney Planes SU9P4Q = Disney Planes SU9X4Q = Disney Planes SUKE01 = Kirby's Return to Dream Land SUKJ01 = Hoshi no Kirby Wii SUKK01 = 별의 커비 SUKP01 = Kirby's Adventure Wii SUMJC8 = Winning Post World 2010 SUNEYG = Deer Drive Legends SUOE41 = The Hip Hop Dance Experience SUOP41 = The Hip Hop Dance Experience SUPE01 = Wii Party SUPJ01 = Wii Party SUPK01 = wii 파티 SUPP01 = Wii Party SUQENG = We Sing UK Hits SUQPNG = We Sing: UK Hits SURE01 = New Super Mario Bros. Wii 19 Resurrection U SUREA4 = Dance Dance Revolution II SURPA4 = Dance Dance Revolution: Hottest Party 5 SUSFMR = U-Sing Johnny Hallyday SUSPMR = U-Sing Girls Night SUTESZ = Once Upon A Time SUUE78 = uDraw Studio: Instant Artist SUUP78 = uDraw Studio: Instant Artist SUVE52 = Cabela's Dangerous Hunts 2013 SUVP52 = Cabela's Dangerous Hunts 2013 SUWE78 = uDraw Studio SUWP78 = uDraw Studio SUXEA4 = Pro Evolution Soccer 2010 SUXJA4 = Winning Eleven PLAY MAKER 2010 SUXPA4 = Pro Evolution Soccer 2010 SUXXA4 = Pro Evolution Soccer 2010 SUXYA4 = Pro Evolution Soccer 2010 SUYDRV = Schlag den Raab - Das 3. Spiel SUZD7K = Benjamin Blümchen - Törööö im Zoo SV2E78 = Big Beach Sports 2 SV2P78 = Big Beach Sports 2 SV3EG9 = Madagascar 3: The Video Game SV3PAF = Madagascar 3: Europe's Most Wanted SV4E8P = Virtua Tennis 4 SV4P8P = Virtua Tennis 4 SV5PRV = The Voice of Germany Vol. 2 SV6SRV = The Voice SV7EVZ = Penguins of Madagascar SV7PVZ = Penguins of Madagascar SVBE52 = Battleship SVBP52 = Battleship SVCEPZ = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVHP69 = FIFA 14 - Legacy Edition SVHX69 = FIFA 14 - Legacy Edition SVME01 = Super Mario All-Stars SVMJ01 = Super Mario Collection: 25th Anniversary Edition SVMK01 = 슈퍼 마리오 25주년 스페셜 에디션 SVMP01 = Super Mario All-Stars: 25th Anniversary Edition SVOEWW = El Chavo SVPESZ = Vegas Party SVPPNJ = Vegas Party SVSPZX = Battle vs Chess SVTEXS = Bit.Trip Complete SVTP99 = BIT.TRIP COMPLETE SVUPRV = The Voice of Germany SVVEG9 = The Croods: Prehistoric Party! SVVPAF = The Croods: Prehistoric Party! SVWEQH = Veggy World SVXE52 = Skylanders: Swap Force SVXF52 = Skylanders: Swap Force SVXI52 = Skylanders: Swap Force SVXP52 = Skylanders: Swap Force SVXY52 = Skylanders: Swap Force SVYEG9 = Ben 10: Omniverse 2 SVYPAF = Ben 10: Omniverse 2 SVZEVZ = How to Train Your Dragon 2 SVZPVZ = How to Train Your Dragon 2 SW2E52 = Wipeout 2 SW3EJJ = Winter Stars SW3PKM = Winter Stars SW4JA4 = Winning Eleven PLAY MAKER 2011 SW6E78 = WWE '12 SW6P78 = WWE '12 SW7EVN = Gunslingers SW7PNK = Western Heroes SW8ENG = We Sing 80s SW8PNG = We Sing 80s SW9EVN = Wicked Monsters Blast! SW9PYT = Wicked Monsters Blast! SWAE52 = DJ Hero SWAP52 = DJ Hero SWBE52 = DJ Hero 2 SWBP01 = New Super Mario Bros. Wii 0 Where It All Began SWBP52 = DJ Hero 2 SX2PNG = Jungle Kartz SX3EXJ = Pandora's Tower SX3J01 = Pandora’s Tower: Until I Return to Your Side SX3P01 = Pandora's Tower SX4E01 = Xenoblade Chronicles SX4J01 = Xenoblade SX4P01 = Xenoblade Chronicles SX5E4Z = Santa Claus is Comin' to Town! SX6JAF = Pretty Cure All Stars Everyone Gather ☆ Let's Dance SX7E52 = Teenage Mutant Ninja Turtles SX7P52 = Teenage Mutant Ninja Turtles SX8E52 = X-Men Destiny SX8P52 = X-Men Destiny SXAE52 = Guitar Hero: World Tour SXAP52 = Guitar Hero: World Tour SXBE52 = Guitar Hero: Metallica SXBP52 = Guitar Hero: Metallica SXCE52 = Guitar Hero: Smash Hits SXCP52 = Guitar Hero: Greatest Hits SXDE52 = Guitar Hero: Van Halen SXDP52 = Guitar Hero: Van Halen SXEE52 = Guitar Hero 5 SXEF52 = Guitar Hero III Custom : Megadeth SXEP52 = Guitar Hero 5 SXFE52 = Band Hero SXFF52 = Guitar Hero III Custom : My Chemical Romance SXFP52 = Band Hero SXIE52 = Guitar Hero: Warriors of Rock SXIP52 = Guitar Hero: Warriors of Rock SY8PKM = Let's Sing 2015 SZ2E5G = Zumba Fitness 2 SZ2P5G = Zumba Fitness 2 SZ2XGT = Zumba Fitness 2 SZ3E5G = Zumba Fitness World Party SZ3PGT = Zumba Fitness World Party SZ5E5G = Zumba Fitness SZ5PGT = Zumba Fitness SZAE69 = Rock Band 2 SZAP69 = Rock Band 2 SZBE69 = Rock Band 3 SZBP69 = Rock Band 3 SZEE01 = New Super Mario Bros Wii 13 Shadow Zero Escape TITLES = http://www.gametdb.com (type: Wii language: KO version: 20150208110353) UGPE01 = Game Boy Player UGPJ01 = Game Boy Player UGPP01 = Game Boy Player ULFW = uLoader UUUE01 = New Super Mario Bros. Wii 19 Resurrection U VBGX = Visual Boy Advance GX VIPE01 = New Super Mario Bros Wii 18 Vip Mix W22E = Planet Fish W24E = 2 Fast 4 Gnomz W2AE = Big Bass Arcade W2CE = Brain Challenge W2CJ = Brain Challenge W2CP = Brain Challenge W2FP = Physiofun - Balance Training W2GD = Phoenix Wright Ace Attorney: Justice for All (Deutsche Version) W2GE = Phoenix Wright: Ace Attorney Justice for All W2GI = Phoenix Wright: Ace Attorney - Justice for All W2GJ = Gyakuten Saiban 2 W2GP = Phoenix Wright Ace Attorney: Justice for All W2IE = Fishie Fishie W2IP = Fishie Fishie W2JE = Just Jam W2KE = Let's Catch W2KJ = Let's Catch W2KP = Let's Catch W2LE = Bloons W2LP = Bloons W2ME = Blaster Master: Overdrive W2MP = Blaster Master: Overdrive W2OE = My Aquarium 2 W2OJ = Blue Oasis: Michinaru Shinkai W2OP = My Aquarium 2 W2PP = Physiofun: Pelvic Floor Training W2TE = Drill Sergeant Mindstrong W2TJ = Onitore Kyoukan ha Onigunsou W2TP = Brain Cadets W2YE = Fireplacing W2YP = My Fireplace W34J = Simple Series Vol. 4: The Misshitsu kara no Dasshutsu W3AE = Carmen Sandiego Adventures in Math: The Big Ben Burglary W3BE = Soccer Bashi W3BP = Soccer Bashi W3DJ = 3° C W3FE = 3D Pixel Racing W3FP = 3D Pixel Racing W3GD = Phoenix Wright Ace Attorney 3: Trials And Tribulations W3GE = Phoenix Wright Ace Attorney: Trials and Tribulations W3GI = Phoenix Wright: Ace Attorney - Trials and Tribulations W3GJ = Gyakuten Saiban 3 W3GP = Phoenix Wright Ace Attorney: Trials and Tribulations W3JE = Triple Jumping Sports W3KE = ThruSpace W3KJ = Surinuke Anatousu W3KP = ThruSpace: High Velocity 3D Puzzle W3LE = Carmen Sandiego Adventures in Math: The Lady Liberty Larceny W3ME = The Three Musketeers: One for all W3MP = The Three Musketeers: One for all W3PE = Triple Throwing Sports W3RE = Triple Running Sports W3SE = Triple Shot Sports W3TE = Pearl Harbor Trilogy - 1941: Red Sun Rising W3TP = Pearl Harbor Trilogy 1941: Red Sun Rising W42J = Fortune: Hoshi no Furisosogu Oka W44E = Stop Stress: A Day of Fury W44P = Stop Stress: A Day of Fury W48E = ShadowPlay W4AE = Arcade Sports W4AP = Arcade Sports: Air Hockey, Bowling, Pool, Snooker W4KE = Deer Captor W4KJ = Shikagari W4OJ = Shikakui Atama wo Marukusuru Challenge W4TE = Spaceball Revolution W4TP = Spaceball Revolution W54E = 5 Spots Party W54P = 5 Spots Party W5AE = 5 Arcade Gems W5AP = 5 Arcade Gems W5IE = 5 in 1 Solitaire W6BE = Eco Shooter: Plant 530 W6BJ = 530 Eco Shooter W6BP = Eco-Shooter: Plant 530 W72P = Successfully Learning German Year 3 W73P = Successfully Learning German Year 4 W74P = Successfully Learning German Year 5 W7IP = Successfully Learning German Year 2 W82J = Jintori Action Taikokenchi Karakuri Shiro no Nazo W8BP = Babel Rising W8CE = Bit.Trip Core W8CJ = BIT.TRIP CORE: Rhythm Seijin no Gyakushuu W8CP = Bit.Trip Core W8DJ = Mebius Drive W8IJ = Hachi-One Diver Wii W8LE = Balloon Pop Festival W8PJ = Ouchi de Mugen Puchi Puchi Wii W8WE = Happy Holidays: Halloween W8WP = Happy Holidays: Halloween W8XE = Battle Poker W9BE = Big Town Shoot Out W9BP = Big Town Shoot W9IE = Evasive Space W9IJ = Kiken Kuuiki W9LE = Christmas Clix W9RE = Happy Holidays: Christmas W9RP = Happy Holidays: Christmas W9UE = Cruise Party W9UP = Cruise Party WA2E = Magnetica Twist WA2J = Minna de Puzzloop WA2P = Actionloop Twist WA4E = WarioWare: D.I.Y. Showcase WA4J = WarioWare: D.I.Y. Showcase WA4P = WarioWare: Do It Yourself – Showcase WA5E = Carmen Sandiego Adventures in Math: The Island of Diamonds WA7E = Toribash WA7P = Toribash Violence Perfected WA8E = Art Style: Rotozoa WA8J = Art Style: Penta Tentacles WA8P = Art Style: Penta Tentacles WAAE = Aya and the Cubes of Light WAAP = Aya and the Cubes of Light WABE = Art of Balance WABP = Art of Balance WACE = Arcade Essentials WACP = Arcade Essentials WAEE = Around The World WAEP = Around the world WAFE = Airport Mania: First Flight WAFP = Airport Mania: First Flight WAGE = Pinocchio's Puzzle WAHE = Trenches Generals WAHP = Trenches: Generals WAIE = 101-in-1 Explosive Megamix WAIP = 101-in-1 Explosive Megamix WAJE = MotoHeroz WAJP = MotoHeroz WAKE = Carmen Sandiego Adventures in Math: The Case of the Crumbling Cathedral WALE = Art Style: Light Trax WALJ = Art Style: Lightstream WALP = Art Style: light trax WAME = Carmen Sandiego Adventures in Math: The Great Gateway Grab WANE = Ant Nation WANP = Ant Nation WAOE = The Very Hungry Caterpillar's ABCs WAOJ = Harapeko Aomushi no ABC WAOP = The Very Hungry Caterpillar´s ABC WAQJ = Yakuman Wii: Ide Yousuke no Kenkou Mahjong WARE01 = DU Super Wario Bros. WARJ = Tsuushin Taikyoku Igo Doujou 2700 Mon WASJ = Tsuushin Taikyoku: Hayazashi Syogi Sandan WATE = Astro Bugz Revenge WAUJ = Tsushin Taikyoku: World Chess WAYE = And Yet It Moves WAYP = And Yet It Moves WAZE = The Amazing Brain Train WB2E = Strong Bad Episode 4: Dangeresque 3 WB2P = Strong Bad Episode 4: Dangeresque 3 WB3E = Strong Bad Episode 5: 8-bit is Enough WB3P = Strong Bad Episode 5: 8-bit is Enough WB4E = Wild West Guns WB4J = Wild West Guns WB4P = Wild West Guns WB5E = Block Breaker Deluxe WB5J = Block Breaker Deluxe WB5P = Block Breaker Deluxe WB6E = TV Show King WB6J = TV Show King WB6P = TV Show King WB7E = Midnight Pool WB7J = Hamaru Billiards WB7P = Midnight Pool WB8E = Midnight Bowling WB8J = Hamaru Bowling WB8P = Midnight Bowling WBAJ = Bakutan WBBE = Snowboard Riot WBBJ = Board Warriors WBBP = Snowboard Riot WBDE = Brain Drain WBDP = Brain Drain WBEE = Pong Toss: Frat Party Games WBEP = Beer Pong: Frat Party Games WBFE = Bit.Trip Fate WBFP = Bit.Trip Fate WBGP = Bang Attack WBHE = Blood Beach WBHP = Blood Beach WBIE = Boingz WBJE = Harvest Moon: My Little Shop WBJJ = Bokujou Monogatari Series: Makiba no Omise WBKE = Arkanoid Plus! WBKJ = Arkanoid Plus! WBKP = Arkanoid Plus! WBLE = Bubble Bobble Plus! WBLJ = Bubble Bobble Wii WBLP = Bubble Bobble Plus! WBME = My Pokémon Ranch WBMJ = Minna no Pokémon Bokujou WBMP = My Pokémon Ranch WBNE = Bonsai Barber WBNJ = Bonsai Barber WBNP = Bonsai Barber WBOE = Gravitronix WBPE = PLÄTTCHEN twist 'n' paint WBPP = PLÄTTCHEN - twist 'n' paint WBQE = Star Soldier R WBQJ = Star Soldier R WBQP = Star Soldier R WBRP = Pirates: The Key of Dreams WBSE = Pop WBSJ = Pop WBSP = Pop WBTJ = Fantasic Tambourine WBVE = SPOGS Racing WBVP = SPOGS Racing WBWE = Critter Round-Up WBWJ = Saku Saku Animal Panic WBWP = Critter Round-Up WBXE = Strong Bad Episode 1: Homestar Ruiner WBXP = Strong Bad Episode 1: Homestar Ruiner WBYE = Strong Bad Episode 2: Strong Badia - The Free WBYP = Strong Bad Episode 2: Strong Badia - The Free WBZE = Strong Bad Episode 3: Baddest of the Bands WBZP = Strong Bad Episode 3: Baddest of the Bands WC2E = Crystal Defenders R2 WC2J = Crystal Defenders R2 WC2P = Crystal Defenders R2 WC6E = Chronos Twins DX WC6P = Chronos Twins DX WC8J = Line Attack Heroes WCHE = Chess Challenge! WCHP = Chess Challenge WCIE = Crystal Defenders R1 WCIJ = Crystal Defenders R1 WCIP = Crystal Defenders R1 WCJE = Cocoto Platform Jumper WCJP = Cocoto: Platform Jumper WCKE = chick chick BOOM WCKJ = chick chick BOOM WCKP = chick chick BOOM WCLE = Doc Clock: The Toasted Sandwich of Time WCNJ = Tokyo City Nights WCOE = Cocoto Fishing Master WCOP = Cocoto Fishing Master WCPE = Copter Crisis WCPP = Copter Crisis WCRE = Carnival King WCSE = CueSports: Pool Revolution WCSJ = Cue Sports: Wi-Fi Taisen Billiards WCSP = CueSports: Snooker vs Billiards WCUE = 3-2-1, Rattle Battle! WCUJ = Atsui 12-Game: FuriFuri Party! WCUP = 3-2-1, Rattle Battle! WCVE = Cave Story WCVP = Cave Story WCZE = ColorZ WCZJ = ColorZ WCZP = ColorZ WD2J = Simple Wii Series Vol. 2: The Number Puzzle Neo WD9E = Castlevania The Adventure ReBirth WD9J = Dracula Densetsu ReBirth WD9P = Castlevania: The Adventure ReBirth WDAJ = Darts Wii WDBE = Derby Dogs WDBJ = Dirby Dog WDDE = Diner Dash WDDJ = Diner Dash WDDP = Diner Dash WDEE = Magic Destiny Astrological Games WDEP = Magic Destiny Astrological Games WDFE = Defend your Castle WDFP = Defend your Castle WDHE = Art Style: ROTOHEX WDHJ = Art Style: Dialhex WDHP = Art Style: ROTOHEX WDIJ = Simple Wii Series Vol. 1: The Block Kuzushi Neo WDKE = Dart Rage WDME = Dr. Mario Online RX WDMJ = Dr. Mario & Saikin Bokumetsu WDMP = Dr. Mario & Germ Buster WDNJ = Discipline Teikoku no Tanjyou WDOE = Driift Mania WDOP = Driift Mania WDPE = Dr. Mario Online Rx (Friend Battle Demo) WDPJ = Dr. Mario Online Rx (Friend Battle Demo) WDPP = Dr. Mario & Germ Buster (Friend Battle Demo) WDRE = Mr Driller W WDRJ = Mr. Driller World WDRP = Mr. Driller W WDSE = Dragon Master Spell Caster WDSP = Dragon Master Spell Caster WDVE = Voodoo Dice WDVP = Voodoo Dice WDXE = Diatomic WE6E = My Dolphin WE6J = Sea Farm: Iruka to Watashi no Showtime WE9E = Alien Crush Returns WE9J = Alien Crush Returns WE9P = Alien Crush Returns WEDE = Eduardo the Samurai Toaster WEME = Aha! I Got It! Escape Game WEMJ = 1 Nuke! Dasshutsu Game * My Home Hen WEMP = Aha! I Got It! Escape Game WENE = TNT Racers WENP = TNT Racers WEQE = Equilibrio WEQJ = Katamuki Spirits WEQP = Equilibrio WERE = My Aquarium WERJ = Blue Oasis: The Healing Space of Fish WERP = My Aquarium WETE = PictureBook Games: Pop-Up Pursuit WETJ = Asoberu Ehon: Tobida Sugoroku WETP = PictureBook Games: A Pop-Up Adventure WEVE = Viral Survival WEVJ = Peakvox Escape Virus WEVP = Viral Survival WF2E = Final Fantasy Crystal Chronicles: My Life as a Darklord WF2J = Final Fantasy Crystal Chronicles: Hikari to Yami no Himegimi to Sekai Seifuku no Tou WF2P = Final Fantasy Crystal Chronicles: My Life as a Darklord WF3E = Family Games - Pen & Paper Edition WF4E = Final Fantasy IV: The After Years WF4J = Final Fantasy IV: The After Years - Tsuki no Kikan WF4P = Final Fantasy IV: The After Years WF5E = Family Card Games WF5J = Okiraku Daifugou Wii WF5P = Family Card Games WF6E = Frobot WFAE = Fast Draw Showdown WFAP = Fast Draw Showdown WFBE = Sandy Beach WFBJ = Beach e Oki o Tsukuccha Wow! WFBP = Sandy Beach WFCE = Final Fantasy Crystal Chronicles: My Life as a King WFCJ = Final Fantasy Crystal Chronicles: Chiisana Ousama to Yakusoku no Kuni WFCP = Final Fantasy Crystal Chronicles: My Life as a King WFDE = Save the Furries WFEE = Fenimore Fillmore "The Westerner" WFFE = Fun! Fun! Minigolf WFFF4I = Fatal Frame 4: Mask of the Lunar Eclipse WFFJ = Fun! Fun! Minigolf WFFP = Fun! Fun! Minigolf WFGE = Frogger Returns WFGJ = Frogger Returns WFGP = Frogger Returns WFHE = Flight Control WFHP = Flight Control WFIE = Reel Fishing Challenge WFIJ = Fish Eyes Challenge WFIP = Reel Fishing Challenge WFKE = Family Go-Kart Racing WFKJ = Okiraku Kart Wii WFLE = Fluidity WFLP = Hydroventure WFME = Family & Friends Party WFMP = Family & Friends Party WFNE = Fish Tank WFNP = Fish Tank WFPJ = Hirameki Card Battle Mekuruca WFQP = Frogger: Hyper Arcade Edition WFSJ = Minna no Theater Wii WFTE = Fish 'em All WFTP = Fish'em All! WFUE = Furry Legends WFUP = Furry Legends WFVE = Soccer Up WFVP = Football Up WFWE = Flower Works WFWP = Flowerworks: Follie's Adventure WFXE = Cosy Fire WFXP = Cosy Fire WFYE = Family Games Pen & Paper Edition WFYP = Family Games Pen & Paper Edition WG2J = Sugar Bunnies Wii: Youkoso * Bunnies Field e WG4E = GhostSlayer WGAE = Ghost Mania WGAP = Ghost Mania WGDE = Gradius Rebirth WGDJ = Gradius Rebirth: Updated WGDP = Gradius Rebirth WGFP = Girlfriends Forever: Magic Skate WGGE = Gabrielle's Ghostly Groove: Monster Mix WGGJ = Ushimitsu Monstruo Puchi: Fushigi na Oshiro no Dance Party WGGP = Gabrielle's Ghostly Groove: Monster Mix WGLE = Gene Labs WGMJ = Game SoundStation WGOE = World of Goo WGOJ = World of Goo WGOP = World of Goo WGPE = AquaSpace WGPJ = Aqua Living: TV de Nagameru Uotachi WGPP = Zenquaria: Virtual Aquarium WGSD = Phoenix Wright: Ace Attorney (Deutsche Version) WGSE = Phoenix Wright: Ace Attorney WGSF = Phoenix Wright: Ace Attorney (French Version) WGSI = Phoenix Wright: Ace Attorney WGSJ = Gyakuten Saiban: Yomigaeru Gyakuten WGSP = Phoenix Wright: Ace Attorney WGTJ = Sekai no Omoshiro Party Game WGUJ = Aero Guitar WGVE = Groovin' Blocks WGYE = Gyrostarr WH3E = Home Sweet Home WH3P = Home Sweet Home WHBE = Hubert the Teddy Bear: Winter Games WHEE = Heracles: Chariot Racing WHEP = Heracles: Chariot Racing WHFE = Heavy Fire: Special Operations WHFP = Heavy Fire: Special Operations WHHJ = Let's Zenryoku Hitchhike!!!!!!!!! WHMP51 = New Super Mario Bros. Wii: The Ultimate Wii-Homebrew.com Edition WHOE = Hockey Allstar Shootout WHPE = Sexy Poker WHPP = Sexy Poker WHRE = Heron Steam Machine WHRP = Heron: Steam Machine WHUE = Ghost Mansion Party WHUJ = Ghost Mansion Party WHUP = Ghost Mansion Party WHVE = High Voltage: Hot Rod Show WHWE = HoopWorld WHWP = HoopWorld: BasketBrawl WHXE = Helix WHXP = Helix WHYE = Heavy Fire: Black Arms WHZE = Horizon Riders WIBE = bittos+ WICE = NyxQuest Kindred Spirits WICJ = NyxQuest WICP = NyxQuest: Kindred Spirits WIDE = Dracula: Undead Awakening WIDP = Dracula: Undead Awakening WIEE = Tales of Monkey Island: Chapter 3 - Lair of the Leviathan WIEP = Tales of Monkey Island Chapter 3: Lair of the Leviathan WIGE = Incoming WIHE = Play with Birds WIKJ = Ivy the Kiwi? Mini WILE = Tales of Monkey Island: Chapter 1 - Launch of the Screaming Narwhal WILP = Tales of Monkey Island Chapter 1: Launch of the Screaming Narwhal WIMC = WiiMC WINE = The Incredible Maze WINJ = Chokkan! Balance * Labyrinth WINP = The Incredible Maze WIRE = Tales of Monkey Island: Chapter 5 - Rise of the Pirate God WIRP = Tales of Monkey Island Chapter 5: Rise Of The Pirate God WISE = Tales of Monkey Island: Chapter 2 - The Seige of Spinner Cay WISP = Tales of Monkey Island Chapter 2: Siege Of Spinner Cay WITE = Aha! I Found It! Hidden Object Game WITJ = Aa! Mitsuketa! Item Sagashi Game WITP = Aha! I Found It! Hidden Object Game WIUE = Inkub WIVE = Space Invaders Get Even WIVJ = Space Invaders Get Even WIVP = Space Invaders Get Even WIYE = Tales of Monkey Island: Chapter 4 - The Trial and Execution of Guybrush Threepwood WIYP = Tales of Monkey Island Chapter 4: The Trial and Execution of Guybrush Threepwood WJ2J = Jinsei Game: Happy Step WJAE = Jam City Rollergirls WJAP = Jam City Rollergirls WJCE = JellyCar 2 WJEE = Jett Rocket WJEP = Jett Rocket WJFE = Gnomz WJFP = Gnomz WJGJ = Jinsei Game WJKE = Jewel Keepers Easter Island WJKP = Jewel Keepers: Easter Island WJPJ = Janken Party Paradise WJSE = Jungle Speed WJSP = Jungle Speed WJWE = Bejeweled 2 WJWP = Bejeweled 2 WK2J = Kappa-kun to Asobou: Kappa-kun to Ota no Shimikai WK3J = Kappa-kun to Asobou: Kappa-kun to Mori no Nakamatachi WK9J = Minna de Asobou Koinu de Kururin WKBE = You, Me, and the Cubes WKBJ = Kimi to Boku to Rittai WKBP = You, Me and the Cubes WKCE = Kyotokei WKCP = Kyotokei WKDE = Pirates: The Key of Dreams WKEJ = RakuRaku Kinen Apori Wii: Kinenka no Isha ga Osheru Nanoka de yameru Houhou WKFE = Kung Fu Funk: Everybody is Kung Fu Fighting! WKFP = Kung Fu Funk: Everybody Is Kung Fu Fighting WKHE = Big Kahuna Party WKIE = The Mystery of Whiterock Castle WKIP = The Mystery of Whiterock Castle WKKE = Party Fun Pirate WKKJ = Kurohige Kiki Ippatsu WKKP = Pop-Up Pirates! WKNJ = Kanken Minna de Waiwai Kanji Nou WKPJ = Kappa Kun to Mori no Nakama Tachi WKQJ = Kentei! TV Wii Minna de Gotouchi Quiz Battle WKRP = Karate Phants: Gloves of Glory WKTE = Contra Rebirth WKTJ = Contra ReBirth WKTP = Contra ReBirth WKUJ = Downtown Nekketsu Dodgeball WKWE = Adventure on Lost Island: Hidden Object Game WKWJ = Item Sagashi * Yousei to Fushigi no Shima WKWP = Adventure on LOST ISLAND: Hidden Object Game WL2E = Target Toss Pro: Lawn Darts WL5E = HB Arcade Disc Golf WL9E = Let's Create! Pottery WLCE = Bingo Party Deluxe WLCJ = Wai Wai Bingo Deluxe WLCP = Bingo Party Deluxe WLDJ = Boku mo Sekai o Sukuitai: Battle Tournament WLEE = Learning with the PooYoos: Episode 1 WLEJ = Pooyoo to Asobou Episode 1 WLEP = Learning with the PooYoos: Episode 1 WLGE = HB Arcade Cards WLIE = Liight WLJJ = Boku mo Sekai o Sukuitai: Battle Tournament WLKJ = Okiraku Tennis SP WLLE = Little Tournament Over Yonder WLLP = Little Tournament Over Yonder WLME = La-Mulana WLMJ = La Mulana WLMP = La-Mulana WLNE = Learning with the PooYoos: Episode 2 WLNP = Learning with the PooYoos: Episode 2 WLOE = LostWinds: Winter of the Melodias WLOJ = LostWinds: Winter of the Melodias WLOP = LostWinds: Winter of the Melodias WLPE = Lonpos WLPJ = Lonpos WLPP = Lonpos WLTE = LIT WLTJ = School of Darkness WLTP = LIT WLWE = LostWinds WLWJ = LostWinds WLWP = LostWinds WLXJ = Phalanx WLZE = lilt line WLZP = lilt line WM2E = My Little Baby WM2P = My Little Baby WM3E = Manic Monkey Mayhem WM3P = Manic Monkey Mayhem WM4E = Mix Superstar WM4P = Mix Superstar WM5E = MDK2 WM7E = Anima Ark of Sinners WM7P = Anima Ark of Sinners WM8E = Bomberman Blast WM8J = Wi-Fi 8-Nin Battle Bomberman WM8P = Bomberman Blast WM9E = Happy Hammerin WM9J = Tataite Mogupon WM9P = Happy Hammerin' WMAE = Magnetis WMAP = Magnetis WMBE = MaBoShi's Arcade WMBJ = Katachi no Game: Marubou Shikaku WMBP = MaBoShi: The Three Shape Arcade WMCE = Monsteca Corral: Monsters vs. Robots WMCP = Monsteca Corral: Monsters Vs. Robots WMDE = Madstone WMGE = Mart Racer WMHE = Mouse House WMJE = Dive: The Medes Islands Secret WMJP = Dive: The Medes Islands Secret WMKE = Lead the Meerkats WMKP = Lead the Meerkats WMLE = Major League Eating: The Game WMLJ = Major League Eating: The Game WMME = Muscle March WMMJ = Muscle Koushinkyoku WMMP = Muscle March WMOE = Moki Moki WMOJ = Antaga Mawashite Sukuu Puzzle: Mochimochi Q WMOP = Moki Moki WMRE = Monochrome Racing WMRP = Monochrome Racing WMSE = Enjoy your massage! WMSP = Enjoy your massage! WMWP = Miffy's World WMXE = Max & The Magic Marker WMXJ = Max & the Magic Marker WMXP = Max & the Magic Marker WMZP = Mahjong WN9E = Military Madness: Nectaris WN9J = Nectaris WN9P = Military Madness: Nectaris WNAP = Back to Nature WNEE = Penguins & Friends Hey! That's My Fish! WNEP = Penguins & Friends Hey! That’s my Fish! WNGE = Bang Attack WNKE = Niki - Rock 'n' Ball WNKP = Niki - Rock 'n' Ball WNPJ = Sugusuro Duo: New Pulsar R & V WNSE = Newton Vs The Horde WNVE = Neves Plus WNVJ = Neves Plus WNVP = Neves Plus: Phantheon of Tangrams WNWJ = Hamekomi Lucky Puzzle Wii Return WO6E = Family Pirate Party WO6J = Okiraku Sugoroku Wii WO6P = Family Pirate Party WOAE = Family Glide Hockey WOAJ = Okiraku Air Hockey Wii WOAP = Family Glide Hockey WOBE = Art Style: ORBIENT WOBJ = Art Style: Orbital WOBP = Art Style: ORBIENT WODJ = Ouudaa! WOEJ = Oekaki Logic WOFE = Overflow WOGE = Family Mini Golf WOGJ = Okiraku Putter Golf Wii WOGP = Family Mini Golf WOKE = Karaoke Joysound WOKJ = Karaoke Joysound Wii WOLJ = Othello WOMJ = Sekai no Omoshiro Party Game 2 WOPE = Word Searcher Deluxe WOSE = Family Slot Car Racing WOSJ = Okiraku Slot Car Racing Wii WOSP = Family Slot Car Racing WOTE = Overturn WOTJ = Overturn WOTP = Overturn: Mecha Wars WOXJ = Osu! Exercise Dojo WOYE = Bit Boy!! WOYJ = Bit Man WOYP = Bit Boy!! WOZJ = Kodomo Kyouiku Telebi Wii: Aiue-Oumuzu WP2E = Potpourrii WP2P = Potpourrii WP4E = Learning with the PooYoos: Episode 3 WP4P = Learning with the PooYoos: Episode 3 WP5J = Pokosuka Racing WP6J = Boku wa Plarail Untenshi: Shinkansen Joukikikansha-Hen WP7E = My Planetarium WP7J = Planetarium WP7P = My Starry Night WP9J = Po-Ka-Zu Wii WPAJ = Pokémon Fushigi no Dungeon: Susume! Honoo no Boukendan WPBE = Pub Darts WPBP = Pub Darts WPCE = Doc Louis's Punch-Out!! WPDJ = Chindouchuu!! Pole no Daibouken WPFJ = Pokémon Fushigi no Dungeon: Ikuzo! Arashi no Boukendan WPGE = Snowpack Park WPGJ = Penguin Life WPHJ = Pokémon Fushigi no Dungeon: Mesaze! Hikari no Boukendan WPIE = Pit Crew Panic! WPIJ = Pit Crew Panic WPIP = Pit Crew Panic! WPJE = Pucca's Kisses Game WPJP = Pucca's Kisses Game WPKE = Texas Hold'Em Poker WPKP = Texas Hold'Em Poker WPLE = Planet Pachinko WPNJ = Ponjan WPOJ = Popple to Mahou no Crayon WPPE = Family Table Tennis WPPJ = Okiraku Ping Pong WPPP = Family Table Tennis WPQE = Protöthea WPQP = Protöthea WPRE = Art Style: Cubello WPRJ = Art Style: Cubeleo WPRP = Art Style: CUBELLO WPSE = Pokémon Rumble WPSJ = Ransen Pokémon Scramble WPSP = Pokémon Rumble WPTJ = Fantasic Cube WPUE = Bust-A-Move Plus! WPUJ = Puzzle Bobble Wii WPUP = Puzzle Bobble Plus! WPVE = The Tales of Bearsworth Manor: Chaotic Conflicts WPVJ = Kumanage Battle-Hen: Kiina no Kirai na Aoi Hoseki WPVP = The Tales of Bearsworth Manor: Chaotic Conflicts WPWE = Pong Toss Pro - Frat Party Games WPXJ = Minna de Tobikome Penguin Diving Hooper Looper WPYE = Pallurikio WPYP = Pallurikio WPZE = Bruiser & Scratch WQ4J = Kentoushi FuriFuri Boxing WR2E = Rabbids Lab WR2P = Rabbids Lab WR4P = Rush Rush Rally Racing WR5E = Retro City Rampage WR9E = Mega Man 9 WR9J = RockMan 9: Yabou no Fukkatsu! WR9P = Mega Man 9 WRBE = Robocalypse - Beaver Defense WRBP = Robocalypse - Beaver Defense WRDE = Word Searcher WRDP = Word Searcher WREE = Racers' Islands - Crazy Arenas WREP = Racers Islands Crazy Arenas WRFE = Reel Fishing Challenge II WRFP = Reel Fishing Challenge II WRGE = Rage of the Gladiator WRGP = Rage of the Gladiator WRIE = Rainbow Islands: Towering Adventure! WRIJ = Rainbow Islands: Towering Adventure! WRIP = Rainbow Islands: Towering Adventure! WRJE = Racers' Islands - Crazy Racers WRJP = Racers Islands - Crazy Racers WRLE = FAST Racing League WRLP = FAST Racing League WRNJ = BIT.TRIP RUNNER WRPE = Burn the Rope WRQE = Deer Drive Legends WRQP = Deer Drive Legends WRRE = Robin Hood: The Return of Richard WRRP = Robin Hood: The Return Of Richard WRSE = Step Up WRTE = Robox WRUE = BIT.TRIP RUNNER WRUP = Bit.Trip Runner WRXE = Mega Man 10 WRXJ = RockMan 10 WRXP = Mega Man 10 WRYE = Robox WRYP = Robox WS2J = Saikyou Ginsei Igo WS3E = Silver Star: Chess WS3J = Saikyou Ginsei Chess WS4J = Saikyou Ginsei Mahjong WS5J = Saikyou Ginsei Gomoku Narabe WS6E = Silver Star: Reversi WS6J = Saikyou Ginsei Reversi WS7E = Fantasy Slots: Adventure Slots and Games WS8J = Minna de Taisen Puzzle Shanghai WS9E = Sudoku Challenge! WS9P = Sudoku Challenge! WSAE = Onslaught WSAJ = MadSecta WSAP = Onslaught WSBJ = Sorcery Blade WSCJ = Out of Galaxy: Gin no Koshika WSEJ = Princess Ai Monogatari WSGE = Pop 'Em Drop 'Em Samegame WSGJ = Same Game Wii WSGP = Pop Them, Drop Them SAMEGAME WSHE = Stonekeep: Bones of the Ancestors WSIJ = Saikyou Ginsei Shogi WSJE = Spot The Differences! WSJP = Spot the Differences! WSLE = The Magic Obelisk WSLJ = Shadow Walker WSME = Eat! Fat! FIGHT! WSMJ = Tsuppari Oozumou Wii Heya WSMP = Eat! Fat! FIGHT! WSNE = Sonic The Hedgehog 4 Episode I WSNJ = Sonic the Hedgehog 4: Episode I WSNP = Sonic The Hedgehog 4 Episode I WSRE = Space Trek WSSP = Solitaire WSTJ = Tenshi no Solitaire WSUE = Shootanto: Evolutionary Mayhem WSUJ = Shootanto: Kakohen WSUP = Shootanto: Evolutionary Mayhem WSWE = Swords & Soldiers WSWP = Swords & Soldiers WSXE = Stunt Cars WSXP = Stunt Cars WSYE = Snail Mail WSZE = Sneezies WSZP = Sneezies WT2E = Target Toss: Pro Bags WT3E = Tomena Sanner WT3J = Tomena Sanner Wii WT3P = Tomena Sanner WT8J = Hajite! Block Rush WTBJ = Fantasic Tambourine WTDJ = Tomica Drive WTEE = Tales of Elastic Boy: Mission 1 WTEP = Tales of Elastic Boy Mission 1 WTFE = Bit.Trip: Flux WTFP = Bit.Trip Flux WTHJ = Kaku! Ugoku! Tsukamaeru! Sensei Wii WTIE = Tiki Towers WTKE = TV Show King 2 WTKP = TV Show King 2 WTME = Adventure Island: The Beginning WTMJ = Takahashi Meijin no Bouken Jima Wii WTMP = Adventure Island: The Beginning WTNE = Family Tennis WTNJ = Okiraku Tennis Wii WTPE = Tetris Party WTPJ = Tetris Party WTPP = Tetris Party WTRE = Bit.Trip Beat WTRJ = BIT.TRIP BEAT WTRP = Bit.Trip Beat WTTE = Toki Tori WTTP = Toki Tori WTUE = Tumblebugs 2 WTWP = Fenimore Fillmore: The Westerner WTXE = Texas Hold’em Tournament WTXP = Texas Hold’em Tournament WU2P = Successfully Learning Mathematics Year 3 WU3P = Successfully Learning Mathematics Year 4 WU4P = Successfully Learning Mathematics Year 5 WUBE = Ubongo WUBP = Ubongo WUFE = Drop Zone: Under Fire WUHE = Grill-Off with Ultra Hand! WUIP = Successfully Learning Mathematics Year 2 WUKJ = Unou Kids Okigaru Unou Training WUNE = Uno WUNJ = Uno WUNP = Uno WURE = Urbanix WURP = Urbanix WVBE = Bit.Trip: Void WVBJ = BIT.TRIP VOID WVBP = Bit.Trip Void WVCE = V.I.P. Casino: Blackjack WVDJ = Kodomo Kyouiku TV Wii: Aiue-O-Chan WVFE = Bobby Carrot Forever WVFP = Bobby Carrot Forever WVIE = Violin Paradise WVKE = Water Warfare WVKJ = Bang Bang Kids WVKP = Water Warfare WVOE = Rock N' Roll Climber WVOJ = Rock n' Roll Climber WVOP = Rock'n Roll Climber WVQE = Vampire Crystals WVQP = Vampire Crystals WVSE = Gods Vs Humans WVSP = Gods Vs Humans WVUP = Mr Bumblebee Racing Champion WW2P = Where's Wally? Fantastic Journey 2 WW3P = Where's Wally? Fantastic Journey 3 WWAE = Warmen Tactics WWIP = Where's Wally? Fantastic Journey 1 WWLP = The Will of Dr. Frankenstein WWRE = Excitebike World Rally WWRJ = Excitebike: World Race WWRP = Excitebike: World Challenge WWTE = BurgerTime World Tour WWTP = BurgerTime World Tour WWXE = Paper Wars: Cannon Fodder WWXP = Paper Wars Cannon Fodder WXBE = Ben 10: Alien Force - The Rise of Hex WXBP = Ben 10: Alien Force - The Rise of Hex WXME = Xmas Puzzle WXPE = Paint Splash! WXPP = Paint Splash WXRE = Reel Fishing Ocean Challenge WYIE = escapeVektor: Chapter 1 WYIP = escapeVektor: Chapter 1 WYKJ = Yomi Kiku Asobi WYME = Yummy Yummy Cooking Jam WYMP = Yummy Yummy Cooking Jam WYSE = Yard Sale Hidden Treasures: Sunnyville WYSP = Yard Sale Hidden Treasures Sunnyville WZAE = Zombii Attack WZBP = Cricket Challenge WZGE = Zoo Disc Golf WZHE = My Zoo WZHJ = Animal Life: Doubutsu Fureai Seikatsu WZHP = My Zoo WZIE = Rubik's Puzzle Galaxy RUSH WZIP = Rubik's Puzzle Galaxy: RUSH WZJJ = Simple Series Vol. 5: The Judo WZMJ = Simple Wii Series Vol. 3: The Mahjong WZPE = Zombie Panic in Wonderland WZPJ = Zombie in Wonderland WZPP = Zombie Panic in Wonderland WZZE = The Tales of Bearsworth Manor: Puzzling Pages WZZJ = Kumanage Puzzle-Hen: Piina no Suki na Akai Candy WZZP = The Tales of Bearsworth Manor: Puzzling Pages XAAJ = Eggy XABJ = Aleste XADJ = Yie Ar Kung 2 XAEJ = Space Manbow XAFJ = Metal Gear XAGJ = Road Fighter XAHJ = Penguin Adventure: Yume Tairiku Adventure XAIJ = Quarth XAKJ = Parodius - Tako wa Chikyuu wo Sukuu XALJ = Contra XAMJ = Knightmare: Majou Densetsu XANJ = Parodius 2 XAOJ = Gofer no Yabou: Episode II XAPJ = Metal Gear 2: Solid Snake XAQJ = Salamander XBKE52 = Guitar Hero III Custom : Bullet For Kamelot XH2E = Cave Story (Demo) XH2P = Cave Story (Demo) XH3E = Frobot (Demo) XH4E = Max and the Magic Marker (Demo) XH5E = Ayim And Yet It Moves Demo XH6E = Robox (Demo) XH6P = Robox (Demo) XH7E = Lit (Demo) XH7P = Lit (Demo) XH8E = Lead the Meerkats (Demo) XH8P = Lead the Meerkats (Demo) XHAE = Pokemon Rumble (Demo) XHAP = Pokemon Rumble (Demo) XHCE = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHCJ = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHDE = NyxQuest: Kindred Spirits (Demo) XHDP = NyxQuest: Kindred Spirits (Demo) XHEE = BIT.TRIP BEAT (Demo) XHEJ = BIT.TRIP BEAT (Demo) XHEP = BIT.TRIP BEAT (Demo) XHFE = World of Goo (Demo) XHFP = World of Goo (Demo) XHIE = Fluidity (Demo) XHIP = Hydroventure (Demo) XHJE = Thruspace (Demo) XHJP = Thruspace (Demo) XHKE = Dive: The Medes Island Secret (Demo) XHKP = Dive: The Medes Secret Island (Demo) XHLE = Jett Rocket (Demo) XHLP = Jett Rocket (Demo) XHME = Art of Balance (Demo) XHMP = Art of Balance (Demo) XHQE = Zombie Panic (Demo) XHQP = Zombie Panic (Demo) XHRE = Furry Legends (Demo) XHRP = Furry Legends (Demo) XHVE = BIT.TRIP CORE (Demo) XHVP = BIT.TRIP CORE (Demo) XHWE = BIT.TRIP VOID (Demo) XHWP = BIT.TRIP VOID (Demo) XHXE = BIT.TRIP RUNNER (Demo) XHXP = BIT.TRIP RUNNER (Demo) XHZE = Chronos Twins DX (Demo) XHZP = Chronos Twins DX (Demo) XI2E = Kyotokei (Demo) XI2P = Kyotokei (Demo) XI7E = Liight (Demo) XI8E = Jam City (Demo) XI8P = Jam City (Demo) XIAE = Lilt Line (Demo) XIAP = Lilt Line (Demo) XIBE = Fish em All (Demo) XIBP = Fish em All Demo XICE = Gods vs Humans Demo XICP = Gods vs Humans Demo XIDE = Racers Islands Crazy Racers Demo XIDP = Racers Islands Crazy Racers Demo XIEE = chick chick BOOM Demo XIEP = chick chick BOOM Demo XIGE = Urbanix Demo XIGP = Urbanix Demo XIHE = Gladiator Demo XIHP = Gladiator Demo XIJE = Fast Racing League Demo XIJP = Fast Racing League Demo XIKE = Monsteca Corral Demo XIKP = Monsteca Corral Demo XINE = Learning with the Pooyoos Episode 1 Demo XINP = Learning with the Pooyoos Episode 1 Demo XIOE = Learning with the Pooyoos Episode 2 Demo XIOP = Learning with the Pooyoos Episode 2 Demo XIPE = Learning with the Pooyoos Episode 3 Demo XIPP = Learning with the Pooyoos Episode 3 Demo XIQE = Dart Rage Demo XIRE = Pong Toss Pro Demo XISE = BIT.TRIP FLUX Demo XISP = BIT.TRIP FLUX Demo XITE = Fast Draw Demo XITP = Fast Draw Demo XIUE = Soccer Bashi Demo XIUP = Soccer Bashi Demo XIVE = Mix Superstar Demo XIVP = Mix Superstar Demo XIZE = 3D Pixel Racing Demo XIZP = 3D Pixel Racing Demo XJEE = Aya and the Cubes of Light Demo XJEP = Aya and the Cubes of Light Demo XJGE = Gnomz Demo XJGP = Gnomz Demo XJHE = Paint Splash Demo XJIE = 2 Fast 4 Gnomz Demo XJSE = Karaoke Joysound (Demo) XJSP = Karaoke Joysound Wii (Demo) XNWE52 = Guitar Hero III Custom: Nightwish XXXX02 = Mario Kart Teknik ZXFP52 = Guitar Hero 3 Encore wit-2.31a/share/titles-de.txt0000644000175000017500000110133512655737310015743 0ustar michaelmichael010E01 = Wii Backup Disc v1.31 301E01 = GameCube Service Disc AFRE01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 8. AMEE01 = New Super Mario Bros. Wii 11 American Revolution AMNE01 = Another Super Mario Bros. Wii AMOR04 = Guitar Hero III Custom : HARDcore APRP01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 2. APRP02 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 3. APRP03 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 6. APRP04 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 7. APRP06 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 5. APRP08 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 1. ASMB01 = Another Super Mario Bros. Wii BEPS01 = Guitar Hero III Custom : Rock n' Metal BOWE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh C3BE52 = Guitar Hero III Custom : Bossenator C3FP52 = Guitar Hero III Custom : Fonx #1 C3KE52 = Guitar Hero III Custom : Kyle Edition #1 C3ME52 = Guitar Hero III Custom : Modern Rock C3PP52 = Guitar Hero III Custom : Modern Pop & Rock C80E52 = Guitar Hero III Custom : Rocks the 80's C80P52 = Guitar Hero III Custom: GH I & 80's C93E = Last Ninja 2 C93P = The Last Ninja 2 C94E = Tower Toppler C94P = Nebulus C95P = Impossible Mission C96E = Summer Games II C96P = Summer Games 2 C97E = California Games C97P = California Games C98P = Paradroid C99P = Uridium C9EP = Winter Games C9GP = Mayhem in Monsterland C9HE = Boulder Dash C9HP = Boulder Dash C9IE = Cybernoid C9IP = Cybernoid C9ME = Pitstop II C9MJ = Pitstop Two C9MP = Pitstop II C9PP = The Last Ninja 3 C9QP = Jumpman C9RP = International Karate + C9SP = Impossible Mission II C9XE = The Last Ninja C9XJ = The Last Ninja C9XP = The Last Ninja C9YE = International Karate C9YJ = International Karate C9YP = International Karate C9ZP = World Games CANE52 = Guitar Hero Custom: NOT Aerosmith but... CCPE01 = Mario Kart Wii Custom: The Master Race CEMU69 = PunEmu CFEE52 = Guitar Hero III Custom : Michael Jackson CG1E52 = Guitar Hero III Custom : Guitar Hero CG1P52 = Guitar Hero III Custom: Guitar Hero I CG2E52 = Guitar Hero III Custom: Guitar Hero II CG2EFL = Guitar Hero III Custom : GH II CG2P52 = Guitar Hero III Custom : Guitar Hero II CG3ECS = Guitar Hero III Custom : ClasSick Edition CG3PCS = Guitar Hero III Custom : ClasSick Edition CGBE52 = Guitar Hero III Custom: Rock Band CGBP52 = Guitar Hero III Custom : Rock Band CGH370 = Guitar Hero III Custom : 70 New Song CGH3IM = Guitar Hero III Custom : Iron Maiden CGH3LM = Guitar Hero III Custom : Legend of Music CGH3ME = Guitar Hero III Custom : Metallica CGH3NE = Guitar Hero III Custom : Nostalgia Edition CGH3WD = Guitar Hero III Custom: WD Custom CGHCE1 = Guitar Hero III Custom : Edition Custom CGHE87 = Guitar Hero III Custom : Guitar Hero I CGHE88 = Guitar Hero III Custom : Guitar Hero II CGHE89 = GH3: Mario CGHE90 = GH3: South Park Edition CGHE91 = GH3: The Red Album CGHE92 = GH3: The Blue Album CGHE93 = GH3: Shake Rattle and Roll CGHE94 = Guitar Hero III Custom : Mars Needs Guitars CGHE95 = Guitar Hero III Custom : Rock Band CGHE96 = Guitar Hero III Custom: Rock'n'Roll Metal CGHE97 = GH3: I Fought The Law CGHE98 = GH3: Sweet Home Alabama CGHE99 = Guitar Hero III Custom : Rock The 80's CGHECB = Guitar Hero III Custom : CBT Edition CGHEDC = Guitar Hero III Custom : Downloadable Content Edition CGHEDM = Guitar Hero III Custom : DAVEMODE CGHEMC = Guitar Hero III Custom : My Chemical Romance CGHENC = Guitar Hero III Custom : NCustom CGHEPH = Guitar Hero III Custom : Puppetz Hero 2 CGHER2 = Guitar Hero III Custom : Rock Band 2 CGHERF = Guitar Hero III Custom : Rockfest 2010 CGHJ52 = Guitar Hero III Custom : Jumapa CGHKY2 = Guitar Hero III Custom : Kyle Edition #2 CGHPF2 = Guitar Hero III Custom : Fonx #2 CGHPF3 = Guitar Hero III Custom : Fonx #3 CGHPF4 = Guitar Hero III Custom : Fonx #4 CGHPF5 = Guitar Hero III Custom : Fonx #5 CGHPNT = Guitar Hero III Custom : Ntorrents Edition CGHRH2 = Guitar Hero III Custom : Rocks Hits Custom v2 CGHSKV = Guitar Hero III Custom : Starchildren & Kneos Version CGIE52 = Guitar Hero III Custom : Iron Maiden CGSP52 = Guitar Hero III Custom : Spanisk Custom by KuXu CGVECD = Guitar Hero Aerosmith Custom : AC/DC Edition CGVEM2 = Guitar Hero Aerosmith Custom : Mini Concerts Edition 2 CGVEMC = Guitar Hero Aerosmith Custom : Mini Concerts Edition CGVEUV = Guitar Hero Aerosmith Custom : Ultimate Video Game Hero CKBE88 = Mario Kart Wii Black CLAPSI = Sing IT: Clásicos CMDE52 = Guitar Hero III Custom: Megadeth CMKE01 = Mario Kart Wii Dragon Road CS0P00 = StarSing : Bollywood v2.0 CS0PZZ = StarSing : Pop Part. I v2.0 CS1P00 = StarSing : Country v2.0 CS1PZZ = StarSing : Pop Part. II v2.0 CS2P00 = StarSing : Placebo v2.0 CS2PZZ = StarSing : '80s Volume 1 v2.0 CS3P00 = StarSing : Volume 1 v2.0 CS3PZZ = StarSing : Anthems v2.0 CS4P00 = SingItStar NRJ Music Tour CS4PZZ = StarSing : Legends v2.0 CS5P00 = StarSing : '70s v2.1 CS5PZZ = StarSing : Songs For My Jedi v1.0 CS6P00 = StarSing : Douce France v2.0 CS6PZZ = StarSing : Amped Part. I v2.0 CS7P00 = StarSing : Red Hot Chili Peppers v1.0 CS7PZZ = StarSing : Amped Part. II v2.0 CS8P00 = StarSing : '90s Volume 1 v2.0 CS8PZZ = StarSing : Disco-Funk v1.0 CS9P00 = StarSing : '80s Volume 2 v2.1 CS9PZZ = StarSing : Pop Hits 9 v1.0 CSAP00 = StarSing : '80s Volume 3 v2.1 CSAPZZ = StarSing : Best of Goldman v1.0 CSBP00 = StarSing : '90s Volume 2 v2.1 CSCP00 = StarSing : Michael Jackson v2.2 CSCPZZ = StarSing : Hottest Hits v2.0 CSDP00 = StarSing : Rocks! Volume 2 v2.0 CSDPZZ = StarSing : Boy Bands Vs. Girl Bands v2.0 CSEP00 = StarSing : Pop Hits 5 v1.3 CSFP00 = StarSing : Pop Hits 6 v1.3 CSGP00 = StarSing : Chansons Magiques de Disney v1.4 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = StarSing : Pop Hits 7 v1.3 CSJP00 = StarSing : Après-Ski Party v1.2 CSKP00 = StarSing : ABBA v1.1 CSLP00 = StarSing : Queen v2.0 CSMP00 = StarSing : Electro-Dancefloor Volume 1 v2.0 CSNP00 = StarSing : Electro-Dancefloor Volume 2 v2.0 CSOP00 = StarSing : Electro-Dancefloor Volume 3 v2.0 CSPP00 = StarSing : Linkin Park Live at Webster Hall New York v2.0 CSQP00 = StarSing : Muse v2.0 CSRP00 = StarSing : International Volume 3 v1.0 CSSP00 = StarSing : Après-Ski Party 2 v2.0 CSTP00 = StarSing : Depeche Mode v2.0 CSUP00 = StarSing : Pop Hits 8 v1.3 CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = StarSing : Génériques TV v2.0 CSYP00 = StarSing : Electro-Dancefloor Volume 4 v2.0 CSZP00 = StarSing : Glee Volume 1 v2.1 CT0P00 = StarSing : Pop Part. I v2.1 CT1P00 = StarSing : Pop Part. II v2.1 CT2P00 = StarSing : '80s Volume 1 v2.1 CT3P00 = StarSing : Anthems v2.1 CT4P00 = StarSing : Legends v2.1 CT5P00 = StarSing : Songs For My Jedi v2.0 CT6P00 = StarSing : Amped Part. I v2.1 CT7P00 = StarSing : Amped Part. II v2.1 CT8P00 = StarSing : Disco-Funk v2.0 CT9P00 = StarSing : Pop Hits 9 v1.3 CTAP00 = StarSing : Best of Goldman v2.0 CTBP00 = StarSing : Glee Volume 3 v1.0 CTCP00 = StarSing : Hottest Hits v2.0 CTDP00 = StarSing : Boy Bands Vs. Girl Bands v2.1 CTEP00 = StarSing : R&B v2.0 CTFP00 = StarSing : Rock Ballads v2.0 CTGP00 = StarSing : Take That v2.0 CTHP00 = StarSing : Summer Party v2.0 CTIP00 = StarSing : Rocks! Part. I v2.0 CTJP00 = StarSing : Rocks! Part. II v2.0 CTKP00 = StarSing : Pop Hits v2.0 CTLP00 = StarSing : Britney Spears v2.0 CTMP00 = StarSing : Shakira v1.1 CTNP00 = StarSing : Pop Hits 10 v1.3 CTOP00 = StarSing : The Beatles Volume 2 v2.0 CTPP00 = StarSing : Motown v2.0 CTQP00 = StarSing : Glee Volume 2 v1.0 CTRP00 = StarSing : International Volume 1 v1.0 CTSP00 = StarSing : International Volume 2 v1.0 CTTP00 = StarSing : '80s Volume 4 v1.0 CTUP00 = StarSing : Rihanna v1.0 CTVP00 = StarSing : Lady GaGa v1.0 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CVLE38 = Mario Kart: Victory Lane D01A = Wiimmfi Patcher D02A = Engine02 D03A = BrainSlug Wii D05A = Bash the Castle D06A = Bit Streamer D07A = BlisterBall D08A = Blob Wars: Metal Blob Solid D09A = Blobby Volley 2 Wii D0AA = MPlayer Wii Youtube D0BA = MPlayer Wii D0CA = Ocarina D0DA = MPlayer Dvdlib Edition D0EA = MPlayer Wii By Rodries D0FA = Signcheck D0GA = GCBoot D0HA = Memview D0IA = IOS Check D0JA = Open Sram Lang Modifier D0KA = WiiBServer D0LA = LibWiiGameLoad D0MA = Wiireader D0NA = lsusb D0OA = Move The Pussy Demo D0PA = Wiilax Minitro D0QA = Fission Engine Project D0RA = GRRLIB 4.0 Demo D0SA = OSDM-BAR D0TA = Homebrew Menu Demo D0UA = LibMii Example D0VA = The Scary Demo D0WA = Starfield Demo D0XA = Wire3D Demo D0YA = Something D0ZA = GRRLIB 4.3.0 Promote Intro D10A = cIOSFix D11A = ASCII Pong D12A = BuscaWiinas D13A = C-Dogs SDL D14A = Castles of Dr. Creep D15A = Wii Shop and IOS51 Installer D16A = Centipede D17A = Cobra Arcade D18A = Dump Espresso OTP D1LA = Blind D1PA = 1bit Invaders D1RA = MinimaLauncher D21A = Xroar D22A = cIOS222 installer D24A = 24 Points D26A = Wii2600 D29J01 = Monthly Nintendo Shop Demo May 2002 D2AA = Wii Deadly Cobra D2AJAF = Minna de Bouken! Family Trainer (Demo) D2BA = Jump N Bump D2CA = Wiiflow Advanced D2DA = Box2D Balls D2EA = Wiiflow Start Configurator D2GA = Wadinstallerbatch D2QA = Sqrxz 2 D2SE18 = Deca Sports 2 (Demo) D2ZA = Console Shooter D32J01 = Monthly Nintendo Shop Demo June 2002 D33A = Time Frack 2D D33J01 = Monthly Nintendo Shop Demo July 2002 D34J01 = Monthly Nintendo Shop Demo July 2002 D36A = cIOS36 installer D37A = WiiConnect D38A = cIOS38 installer D38J01 = Monthly Nintendo Shop Demo September 2002 D39A = Ctr Gts DacoTaco Edition D3DA = Time Frack 3D D3DE18 = Deca Sports 3 (Demo) D3JA = NDSLoad D3KA = Button Tester D3LA = BootMii Booter D3MA = Custom NAND Loader D3OA = cIOS USB 2 Installer D3QA = Sqrxz 3 D3WA = Warheads D40A = Luigi and the Island of Mystery D42A = ArianeB D43A = Wii Virtual Jaguar D43E01 = The Legend of Zelda: Ocarina of Time / Master Quest D43J01 = Zelda no Densetsu: Toki no Ocarina GC / Ura Zelda D43P01 = The Legend of Zelda: Ocarina of Time / Master Quest D43U01 = The Legend of Zelda: Ocarina of Time (Bonus Disc) D43W01 = The Legend of Zelda: Ocarina of Time / Master Quest D46A = Newo Escape D4BE08 = Resident Evil 4: Preview Disc D4BP01 = Resident Evil 4: Bonus Disc D4BP08 = Resident Evil Four Preview Disc D4BU01 = Resident Evil 4: Bonus Disc D4KA = Aleph WOne D4LA = Yawnd D4NA = Disc Dumper D4PA = DVD Dumper D4QA = Sqrxz 4 D4SA = USB Loader GUI FX D51A = IOS51 Update D52A = cboot252 D53J01 = Monthly Nintendo Shop Demo May 2003 D54A = cIOS Patchmii Installer D55A = PID Extractor D55J01 = Interactive Disc Catalog Summer 2003 D56A = Shopping Channel Fixer D56E01 = Interactive Multi-Game Demo Disc - Version 35 D56J01 = Pokémon Channel (Bonus Disc) D57A = Hijill GUI D57E01 = Interactive Multi-Game Demo Disc - Version 34 D58A = Priiloader HacksDen Edition D58E01 = Interactive Multi-Game Demo Disc - Version 33 D59A = TheUntitledProject D59E01 = Interactive Multi Game Demo Disc Version 32 D5AA = Alarmii D5BA = WiiFont D5CA = cLoader D5FA = Txted Mod D5HA = Title Lister D5JA = Tidy Up D5LA = Switchtosneek D5RA = Botoning D60A = Ultimate USB Loader D61A = Sand Traps Extra Levels D62A = Newo Puzzle D62E01 = Interactive Multi-Game Demo Disc - Version 31 D63A = 3D Maze D63E01 = Interactive Multi-Game Demo Disc - Version 30 D64A = Wii64 Emulator D64E01 = Interactive Multi-Game Demo Disc - Version 29 D65A = Transitory Vectors D65E01 = Interactive Multi Game Demo Disc Version 28 D65P01 = Interactive Multi-Game Demo Disc - December 2002 D66A = Secret Maryo Chronicles D66E01 = Interactive Multi-Game Demo Disc - Version 27 D67E01 = Interactive Multi-Game Demo Disc - Version 26 D67J01 = Monthly Nintendo Shop Demo December 2003 D68A = TheyDoNotDie2 D68E01 = Interactive Multi-Game Demo Disc - Version 25 D68J01 = Monthly Nintendo Shop Demo January 2004 D69A = IOS60 Installer D69E01 = Interactive Multi-Game Demo Disc - Version 24 D6AA = Pussieloader D6BA = Updatersafe D6DA = Savegame Manager Mod D6EA = Sneek FS Dumper D6FA = Anytitle Deleter Mod D6HA = AnyTitle Deleter Mod DB D6IA = DVD Info D6KA = AnyTitle Deleter DB D6MA = Banana Saves D6OA = DOP Shop D6QA = BootMii Checker D6TA = MiiPlayer D70A = Dungeon Crawl Stone Soup D71A = Panic in the Mushroom Kingdom D72A = Bfi D72E01 = Interactive Multi-Game Demo Disc - Version 23 D73E01 = Interactive Multi-Game Demo Disc - Version 22 D74E01 = Interactive Multi Game Demo Disc Version 21 D75E01 = Interactive Multi-Game Demo Disc - Version 20 D76E01 = Interactive Multi-Game Demo Disc - Version 19 D77E01 = Interactive Multi-Game Demo Disc - Version 18 D77P01 = Interactive Multi Game Demo Disc April 2006 D78A = Wii7800 D78E01 = Interactive Multi-Game Demo Disc - Version 17 D78J01 = Interactive Multi-Game Demo Disc - May 2004 D78P01 = Interactive Multi-Game Demo Disc - October 2005 D79A = Newo Defence D79E01 = Interactive Multi-Game Demo Disc - Version 16 D79P01 = Interactive Multi Game Demo Disc May 2005 D7AA = Action Replay Loader D7DA = Depanbrew D7GA = Channel Loader D7KA = RawkSD D7LA = Rumbler D7MA = IS Wad D7OA = Recovery Manager D7QA = Reboot D7SA = Childproof USB Loader D7TA = Power Mii Off D7VA = Power Off D7WA = Abbaye des Morts D7XA = NuGaSa D7YA = Resistor D81A = Newo Asteroids D82A = cIOS Patchmii Installer with Korean Disc Support D82E01 = Interactive Multi-Game Demo Disc - Version 15 D82J01 = Monthly Nintendo Shop Demo July 2004 D82P01 = Interactive Multi Game Demo Disc April 2005 D83A = Wii MFE Port D83E01 = Interactive Multi-Game Demo Disc - Version 14 D83P01 = Interactive Multi Game Demo Disc February 2005 D84A = Gambol D84E01 = Interactive Multi-Game Demo Disc - Version 13 D84P01 = Interactive Multi-Game Demo Disc - November 2004 D85A = Wii EDuke32 D85E01 = Interactive Multi-Game Demo Disc - Version 12 D85P01 = Interactive Multi Game Demo Disc July 2004 D86A = Firewii D86E01 = Interactive Multi-Game Demo Disc - Version 11 D86P01 = Interactive Multi-Game Demo Disc - May 2004 D87A = Tick Tock Boat Race D87E01 = Gamecube Preview Disc D87P01 = Interactive Multi-Game Demo Disc - March 2004 D88A = Quasi88 D88E01 = Interactive Multi-Game Demo Disc - Version 10 D88P01 = Interactive Multi-Game Demo Disc - November 2003 D89A = Wiimote Led Flasher D89E01 = Interactive Multi-Game Demo Disc - Version 9 D89J01 = Club Nintendo Original e-Catalog 2004 D89P01 = Interactive Multi-Game Demo Disc - September 2003 D8AA = Front SD ELF Loader D8BA = GameCube Homebrew Launcher D8CA = WiiSend D8DA = Menu D8EA = Gecko Loader D8FA = Shell D8JA = Calc D8QA = Brick OS D8RA = Lotto D8SA = Brainf**k D8UA = TCPLoader D8VA = Snort48 D8WA = Wiisixty D8XA = All In One Emuloader D8YA = Swissloader D8ZA = Tick Tock Zombie Shooter D91A = Jenny Thinks D92E01 = Interactive Multi-Game Demo Disc - Version 8 D92P01 = Interactive Multi Game Demo Disc June 2003 D93A = Wiiraytracer D93E01 = Interactive Multi-Game Demo Disc - Version 7 D93P01 = Interactive Multi Game Demo Disc April 2003 D94A = Nowhere D94P01 = Interactive Multi-Game Demo Disc - February 2003 D95A = RenderMii D95P01 = Interactive Multi-Game Demo Disc - December 2002 D96A = WiiMotionDemo D96P01 = Interactive Multi-Game Demo Disc - November 2002 D97A = Fire D98A = InstallMii D99A = System Channels Updater D9BA = Info D9CA = cIOS USB2 Installer D9FA = Dump D9GA = Wad Creator D9HA = WakeMiiUp D9IA = SNES9xGX Channel Installer D9KA = Txtread D9LA = Forwarder DA1A = Radianwars DA2A = Moonstone DA3A = Wiitch DA4A = arCard+Wii DA6A = Automatii DA7A = Astronomy DA8A = Beer Belly Bill 3 Grillieren DA9A = Achtung Wii Kurve DAAA = WiiNetPuzzle DAHA = Accio Hacks DALJ01 = Dairantou Smash Brothers DX (Demo) DAMA = MegaCodeDownloader DAPA = Map Maker DARA = Anyregion Changer DASA = Aspirin DASE4Q = Disney Epic Mickey (Demo) DATA = AnyTitle Deleter DATD = AnyTitle Deleter DAUEPZ = Country Dance (Demo) DAVA = Avoidance DAVE01 = Mystery Case Files: The Malgrave Incident (Demo) DAWA = Abuse Wii DAXE01 = The Legend of Zelda: Skyward Sword (Demo) DAXP01 = The Legend of Zelda: Skyward Sword (Demo) DB0A = Spitits DB2A = Mad Bomber DB3A = Squarez DB5A = mapbf DB7A = Blacks Dash DB9A = Robi DBAA = BowFishing Action DBBA = Balance Board Tools DBBE18 = Beyblade: Metal Fusion - Battle Fortress (Demo) DBCA = BootMii Configuration Editor DBDA = Bluedump DBGA = BlastGuy DBIA = Boot It DBKE69 = Boom Blox (Demo) DBKP69 = Boom Blox (Demo) DBLA = BlueMSX-wii DBMA = BootIOS DBPA = Balance Board Pro DBRA = WiiBrowser DBSA = BrawlStats DBTA = Bolt Thrower DBUA = Buttoncast DBWA = Reversmii DBXA = Biniax 2 DBZJ08 = Biohazard Zero: Trial Edition DC6A = Frodo (C64-network.org) DC7A = Calculate DCAA = Wiicasino DCAE18 = Calling (Demo) DCBA = CascadeBeneath DCCA = Christmascountdown DCDA = cIOS Downgrader DCEA = Cheat Manager DCFA = Coverfloader DCGA = Ctr-Gcs DCHA = Wiichatter DCHEAF = We Cheer (Demo) DCHJAF = We Cheer: Ohasta Produce ! Gentei Collabo Game Disc DCIA = cIOS Installer DCLA = Configurable USB Loader DCMA = Wiicm DCNA = Nandclean DCOA = Connectmii DCPA = Splatter Castle DCRA = CosmoRaketti DCSA = Cert.sys Extractor DCTA = Christmas-Type Adventure Time DCUA = cIOS Uninstaller DCVA = WiiColEm DCWA = WiiMC Channel Installer DCXA = ComixChannel DCYA = Cylinder Dodge DD2A = Double Dash Wii DD2P41 = Just Dance 2 (Demo) DD3A = Dario DD5A = Dcvg5k DD9A = Dungeons DDAA = Darkcorp DDBA = DOSBox Wii DDCA = d2x cIOS Installer DDDA = Disk Drive Lighter DDEA = WiiModder DDFA = Defendguin DDHA = Homebrew Disc Launcher DDIA = DiiLC DDLA = Disc Loader DDMA = DragonMedia Player DDOA = DOP-Mii DDRA = Wii Duplicated Channel Remover DDSA = DeSmuME DDVA = Devolution DDWA = DOP Mii Wiibrew Edition DDWE18 = Lost in Shadow - Press Disc (Demo) DDWX18 = Lost In Shadow - Best Buy (Demo) DE2A = Doubledown DE5A = Pictogrid DE7A = Commander Keen DE9A = Wii Bash DEAA = Headtracking Demo DEBA = Pong Breaker DEDA = Txted DEEA = Eeeek Eeeeek Hooooook DEFA = Fuse DEHA = Chess DEME = PunEmu DEPA = Pacman DERA = Elongated Reptile DETA = MPlayer TT DEWA = Wii Exhibit DEZP8P = Billy Hatcher and the Giant Egg (Demo) DF0A = Mini FSToolbox DF2A = Da ShAmAn DF3A = Briickout DF4A = Star Catching DF5A = Strobe Alarm Clock DF6A = Wii Quizz DF7A = Chatnoir DF8A = Trinary DF9A = Chunk Munch DFBA = Fsbrowser DFEA = FlipEm DFFA = Simple fs dumper DFGA = Smashing! DFIA = Fceugx Channel Installer DFLA = Starfall DFMA = FMyLife DFRA = FridgeMagnets DFSA = Fstoolbox DFTA = FTPii DFUA = Fuse DG3A = Giddy 3 DG7A = WiiPeng DG8A = Abusimbel Deluxe DG9A = Garnatron DGBA = Geexbox DGCA = GameCube Backup Launcher DGEA = GeckoOS DGFA = Guitars On Fire DGGA = Wii Rick Dangerous DGIA = Gravitii DGKA = ProjectGMC DGMA = GCMM DGPA = Genesis Plus DGSA = Shooting Gallery DGWA = Goodbye World DGXA = GxGeo DH7A = Harmony's Nightmare DH9A = Prophecy DHBA = Homebrew Browser DHCA = Hero City DHDA = Hidtest DHEA = Helium Boy DHFA = Homebrew Filter DHGA = HuGo-GX DHHA = HHexen DHHJ8J = Hirano Aya Premium Movie Disc from Suzumiya Haruhi no Gekidou DHIA = HackMii Installer DHKE18 = Help Wanted: 50 Wacky Jobs (Demo) DHLA = Heli DHMA = CharioMan DHSA = Homebrew Sorter DHTA = Hatari DHWA = We are nowhere DHXA = Hex DI5A = Tanks DI7A = ExistenzE DI8A = Ios58 Installer DI9A = Barrage DIBA = Revolt of the Binary Couriers DICA = Cubic DIEA = EasyIOS DIGA = Categorii DIIA = iiii DIMA = Inspectmii DINA = Mii Installer DIRA = Ironing Maiden DISA = Wii Supersonic DITA = IOS236 Installer DIXA = cIOSx installer DIYP01 = New Super Mario Bros. Wii 0-4 D.I.Y. DJAA = Arcade Jigsaw DJCA = Wii JellyCar DJFA = Joyflow DJJA = Jumping Jack DJQA = Jewel Quest DJWA = Wii System Menu DJZA = JzintvWii DK1A = Karaokii DK3A = Sketch Fight DK4A = Drawingbox DK6A = King of Fighters: Flames of Courage DK6E18 = Marble Saga Kororinpa (Demo) DK6J18 = Kororinpa 2 (Demo) DK7A = Uschtris DKBA = RPG Baker DKCA = Tick Tock Car Race DKCP01 = Darky Kart Riivo DKDA = Darkcube DKHA = Katakana and Hiragana Practice DKKA = Koreankii DKOA = Komopong DKPA = Kidspaint DKSA = Wii Stpp DKTA = Taiko DKWA = Kurushi DKWE01 = Darky Kart Wii Vol. 1 DKWE02 = Darky Kart Wii Vol. 2 DKWE03 = Darky Kart Wii Vol. 3 DKWE04 = Darky Kart Wii Vol. 4 DL3A = Ballion DL4A = LPairs DL5A = Gameload DL7A = LabClone DLBA = My Little Ball DLCA = Dance Clone DLDA = Devilock DLEA = Preloader DLFA = LifeMii DLGA = Gravity Glider DLIA = WiiMod Lite DLLA = Lolicopocalypse DLMA = LoadMii DLNA = Lander DLOA = Lightsout DLPA = Lopan DLSE64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLSP64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLTA = Leveltool DLUA = WiiLauncher DLXA = Linux Installer DLZEPW = Super Smash Bros Phoenix Wings DM0A = Pom DM5A = Missle Command DM7A = Matches DM9A = Checkregion DMAA = Mame Wii DMBA = Multiboot DMCA = Cleanrip mod DMDA = WiiMod DMEA = Mii Extractor DMFA = WiiMednafen DMGA = Mighty Channels DMHA = NanoMechas DMHE08 = Monster Hunter Tri (Demo) DMHJ08 = Monster Hunter Tri (Demo) DMIA = DIOS MIOS Booter DMJA = Mahjongg Wii DMKE01 = Mario Kart Wii 2 DMLA = Mighty Loader DMMA = MyMenuify DMNA = Magic Number DMOA = cMIOS installer DMPA = MPlayer CE DMRA = MIOS Patcher DMSA = ShutMiiReboot DMSP4Q = SingItStar: Best of Disney DMTA = Metronome DMUA = Multi Mod Manager DMWA = Wakemiiup DN0A = Thatother DN7A = Alien Breed DN9A = Point and No Click DNAA = Ncard DNCA = NeoCD-Wii DNDA = Nintendont DNEA = Gravity DNGA = NeoGamma Launcher DNHA = Headings DNIA = Bugin DNKA = Neko Project II DNMA = Newo Model Viewer DNNA = Save installer DNOA = O.T.T.F. DNPA = NeoPopWii DNRA = Newo Runner DNSA = Newo Shooter DNTA = NeoTanks DNUEDA = Naruto Clash of Ninja 2 (Demo) DNWA = Nowell DO2A = O2EM DO3A = Three Point O DO4A = MTP DO5A = Planet Hively DO6A = Mini MP3 Player DOCA = Code Downloader DOEA = ShowTest DOGA = Wii Maze of Galious DOHA = HighOctane DOIA = Neogamma IOS Switcher DOMA = Mole DONA = Offline Network Enabler DOOA = Doom DOPA = PowerCheck DORA = Rebooter DOTA = OpenTTD DP0A = Starplit DP1A = Italian Parking DP2A = Pong2 DP3A = Inkpoly DP4A = Piirates DP5A = Pix DP6A = IOS36 patcher DP7A = Brawl+ Updatifier DP8A = Timeless DP9A = Alien Puzzle Wii DPAA = WiiPaintBall DPBA = Priibootergui DPCA = Cherophobe DPEA = PieChart DPFA = Pwiictogrid DPGA = Pingus DPIA = Patched IOS 80 Installer for vWii DPIE18 = Oops! Prank Party (Demo) DPJA = Project M Launcher DPKA = Physco DPLA = Priiloader DPMA = Music Painter DPNA = RPG Pineapple Apocalypse DPNP08 = P.N.03 (Promo) DPOA = Postloader DPPA = Project Panic DPRA = PlasmaRaketti DPSA = Playstats DPTA = Two Point Five DPVA = Pattview DPWA = Pimp my Wii DQ1A = Q1rev DQ2A = Q2rev DQ6A = Light DQ7A = Quake DQ8A = LuaFWii DQ9A = Wiihttpd DQAJK2 = Aquarius Baseball DQAJSC = Aquarius Baseball (Simplified Chinese Translation) DQBA = Bible Quiz DQCA = Q2ctfrev DQGP69 = MySims Racing (Demo) DQRA = Qrevpak DQWA = Quakegx DR0A = Rokoban DR1A = Wii Whiteboard DR3A = Death Star Run DR4A = Rock Paper Scissors DR5A = Briicks DR6A = Reader DR7A = RockBlueMet DR8A = Operation DR9A = PixelPlot DRAA = RetroArch-Wii DRBA = Rock Band 2 Wad Installer DRCA = Wiicross DRDA = Drawmii DREA = Wiirecipe DRFA = Radiofeeds DRGA = Reggie Dumper DRIA = Cleanrip DRKA = Robotfindskitten DRMA = Mr. Sitwell DRME18 = Rooms: The Main Building (Demo) DROA = SlimeRoll DRP22Q = SingItStar Deutsch Rock-Pop Vol. 2 DRPA = Marcos Lopez Part II DRRA = Riiper DRSA = RedSquare DRTA = Tetris Custom DRUA = Radiofeeds Updater DRVA = Residualvm DRWA = Winterman DRZA = Zerace DS0A = ShootMii DS1A = Another Rock Paper Scissors DS2A = Swingball2 DS3A = Senet DS4A = Sar DS5A = Snaketwo DS6A = Scogger DS7A = Swing Ball DS8A = Scape DS9A = Minesweeper DSAA = Schism Tracker DSBA = SpaceBubble DSCA = Softchip DSDA = Superdump DSEA = Settings Editor GUI DSFA = Sciifii DSFE7U = Muramasa: The Demon Blade (Demo) DSGA = Savegame Manager DSHA = SysCheck HacksDen Edition DSIA = Simple IOS Patcher DSKA = SockDreams DSLA = Wii Stella DSMA = Sega Master System Plus DSNA = SNES9xGX DSOA = Bermuda Syndrome Wii DSPA = Super Star Shooter DSQA = Sqrxz DSRA = Wiistrobe DSRJ8P = Sonic and the Secret Rings (Demo) DSSA = RSSMii DSTA = Wii Solitaire DSUA = Super Mario War DSVA = scummVM DSWA = SuperTux Wii DSXA = Super Pixel Jumper DSYA = Syscheck DT0A = Tower Defense DT1A = Turnip DT2A = Matching Cards DT3A = Bichejos DT4A = Soduku DT5A = Poker DT6A = Simon DT7A = TheyDoNotDie DTAA = Wii Tac Toe DTCA = The Catachthonic DTDA = Descent DTEA = Topedit DTFA = Triiforce DTHA = Heretic DTIA = Wiitriis DTJA = Trojan DTKA = Tick Tock Tank Fight DTLA = TailTale DTLX01 = Action Replay DTMA = Tetrominos DTNA = Tunnel DTOA = Tong DTPA = Paintown DTRA = Trucha Bug Restorer DTSA = Desert Bus DTTA = Toddtris DTWA = Wiitweet DTXA = Texttris DU0A = Dumpmiinand DU7A = Uno DU8A = RealWnd DU9A = Harmonium DUAA = UAE Wii DUAP01 = DU Super Mario Bros. : Anniversary Edition DUBA = Multibu DUCE01 = Kustom Mariokart Wii DUDA = Duck Hunt DUDE01 = New Super Mario Bros. Wii Scooby-Doo! Hack DUGA = Guitar Fun DUIA = ChessUI DULA = USB Loader GX DUNA = Uname DUSA = bootOperaModUSB DUTG = DU Tag Channel DUWA = Waninkoko's USB Loader DV0A = Remove Preloader Hacks DV3A = DVD Browser DV9A = SensorMii DVDA = cIOS DVD Dumper DVGA = The Video Game DVHA = Horror Vacui DVIA = Vbagx Channel Installer DVJP08 = Viewtiful Joe (Promotional demo) DVLA = Vigiroth le livreur DVNA = Wiivnc DVOA = Vectoroids DVPA = Progressiveswitch DVSA = GameCube Saver DVXA = VectrexWii DW1A = Intuitwars DW5A = Marel DW6A = Wiicraft DW7A = Ravewild DWAA = WiiApple DWBA = WiirtualBoy DWCA = WiiFlow Channel Installer DWDA = Wiiflow Banner Downloader DWEA = WiiEarth DWEPA4 = Pro Evolution Soccer 2008 (Demo) DWFA = WiiFlow DWHA = WiiHandySDL DWJA = Jewel DWKA = Wiibreaker DWLA = Wii-Linux DWMA = WAD Manager DWNA = Nwancat DWPA = WiiPhysics DWRA = WiiRadio DWSA = WiiSX DWTA = Wiituka DWUA = Wufe DWWA = Winters End DWXA = WiiXplorer DX3A = Midway Space Invaders Emulator DX4A = Brawl DX Launcher DX5A = MP3+G Player DX6A = Build Blocks DX7A = Roxoptr2 DX8A = Hexen DX9A = Sand Traps DXBA = Wii X Ball DXCA = CorsixTH DXDA = DVDX DXEA = SDExplorer DXHA = Texas Holdem Poker DXIA = Piixelator DXLA = WiiXL DXNA = bootnetflix DXPA = Xeempongwii DXQA = Quadrax DXSA = Save extractor DXSE18 = Deca Sports (Demo) DXTA = The Lone Pixel DXXA = Hexxagon DXYA = xyzzy DXZA = Megazeux DY5A = Darkcorp Lite DY6A = Liqwiid Wars DY9A = TetWiis DYAA = Syasokoban DYBA = Yabause DYCA = Tetricycle DYEA = Epilepsii DYGA = Yog DYHA = Hypno Blast DYIA = Chippy DYMA = YAWMM DYOA = Toy Wars DYPA = PongYourWii DYSA = Shiny tank DYTA = Newo Tokyo DYUA = UFO Racer DYWA = Yahtzwii DYYA = System Setting Replace Tool DZ0A = Eject DZ7A = SameGame DZ8A = WiiMPC DZ9A = Teeter Torture DZDE01 = The Legend of Zelda: Twilight Princess (Demo) DZDP01 = The Legend of Zelda: Twilight Princess (Demo) DZIA = Ziip DZPA = Puzsion DZQA = Quizz DZRA = Rezerwar DZSA = Szigoy DZXA = FBZX Wii DZYA = Snake Two DZZA = OpenJazz E52E = 1942 E52J = 1942 E52P = 1942 E53E = Black Tiger E53J = Black Dragon E53P = Black Tiger E54E = Ghosts 'n Goblins E54J = Makaimura E54P = Ghost'n Goblins E55E = Commando E55J = Senji no Ookami E55P = Commando E56E = Exed Exes E56J = Exed Eyes E56P = Exed Exes E57E = SonSon E57J = Son Son E57P = SonSon E58J = Mr. Do! E59J = Karate Dou E5AJ = Ikki E5BJ = Shanghai E5VJ = Renegade E5WE = Wonder Boy in Monster Land E5WJ = Wonder Boy in Monster Land E5XJ = Puyo Puyo Tsu E5YJ = Puyo Puyo E5ZE = Super Hang-On E5ZJ = Super Hang-On E62E = Space Harrier E62J = Space Harrier E62P = Space Harrier E63E = Shinobi E63J = Shinobi Virtual Arcade E63P = Shinobi E64J = Rolling Thunder 2 E65J = Valkyrie no Densetsu E66J = Ordyne E67J = Dig Dug E68J = Galaga E69J = Baraduke E6AJ = Moon Cresta E6BJ = Crazy Climber E6CJ = Rompers E6DJ = Toy Pop E6EJ = Libble Rabble E6FJ = Galaxian E6GJ = Namco Quester E6HJ = Face Off E6IJ = Trink Force E6JJ = Bakutotsu Kijuutei: BaRaDuKe II E6KJ = Chouzetsu Rinjin - Berabow Man E6LJ = Marchen Maze E6ME = Tecmo Bowl E6MJ = Tecmo Bowl E6NE = Solomon's Key E6NJ = Solomon no Kagi E6NP = Solomon's Key E6OJ = Bomb Jack Arcade E6PE = Ninja Gaiden E6PJ = Ninja Ryukenden Arcade E6PP = Ninja Gaiden E6QE = Rygar E6QJ = Argos no Senshi E6QP = Rygar E6SJ = New Rally-X E6VE = Zaxxon 3-D E6VJ = Zaxxon E6VP = Zaxxon E6WE = Golden Axe E6WJ = Golden Axe E6WP = Golden Axe E6XE = Altered Beast E6XP = Altered Beast E6YJ = Space Invaders E6ZE = Starforce E6ZJ = Star Force E6ZP = Star Force E72J = Starblade E73E = Mappy E73J = Mappy E73P = Mappy E74J = Cosmo Gang the Puzzle E75J = Genpei Toumaden E76J = Emeraldia E77J = The Return of Ishtar E78J = Solvalou E79E = Gaplus E79J = Gaplus E79P = Gaplus E7AJ = Grobda E7BJ = Dig Dug II E7CJ = Bosconian E7EJ = Dragon Buster E7FJ = Dragon Saber E7GJ = Dragon Spirit E7HJ = Xevious E7IJ = Finest Hour E7JJ = Knuckle Heads E7KJ = Pac-Mania E7LJ = Cosmo Gang the Video E7MJ = Phelios E7NJ = Rolling Thunder E7OJ = Burning Force E7PJ = Marvel Land E7QJ = Galaga '88 E7RJ = Wonder Momo E7SJ = Assault E7TJ = Hopping Mappy E7UJ = Splatterhouse E7VJ = Cyber Sled E7WJ = Numan Athletics E7XJ = Youkai Douchuki E7YJ = Sky Kid E7ZE = The Tower of Druaga E7ZJ = Druaga no Tou E7ZP = The Tower of Druaga EA2E = Metal Slug 2 EA2J = Metal Slug 2 EA2P = Metal Slug 2 EA3J = Galaxy Fight: Universal Warriors EA4E = Samurai Showdown III EA4J = Samurai Spirits Kibeniro Musouken EA4P = Samurai Shodown III EA5E = Fatal Fury 3: Road to the Final Victory EA5J = Garou Densetsu 3: Road to the Final Victory EA5P = Fatal Fury 3: Road To The Final Victory EA6E = The King of Fighters '96 EA6J = The King of Fighters '96 EA7E = Samurai Shodown IV: Amakusa's Revenge EA7J = Samurai Spirits: Amakusa Kourin EA8E = Ironclad EA8J = Ironclad: Chotetsu Brikinger EA8M = Iron Clad EA9J = Waku Waku 7 EAAE = Fatal Fury EAAJ = Garou Densetsu: Shukumei no Takatai EAAP = Fatal Fury EABE = World Heroes EABJ = World Heroes EABP = World Heroes EACE = Magician Lord EACJ = Magician Lord EACP = Magician Lord EADE = Art of Fighting EADJ = Ryuuko no Ken EADP = Art of Fighting EAEE = Samurai Showdown EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen EAEP = Samurai Showdown EAFE = Blue's Journey EAFJ = Raguy EAFP = Blue's Journey EAGE = The King of Fighters '94 EAGJ = The King of Fighters '94 EAGP = The King of Fighters '94 EAHE = Baseball Stars 2 EAHJ = Baseball Stars 2 EAHP = Baseball Stars 2 EAIE = Top Hunter EAIJ = Top Hunter EAIP = Top Hunter EAJE = Metal Slug EAJJ = Metal Slug EAJP = Metal Slug EAKE = Burning Fight EAKJ = Burning Fight EAKP = Burning Fight EALE = Art of Fighting 2 EALJ = Ryuuko no Ken 2 EALP = Art of Fighting 2 EAME = Ninja Combat EAMJ = Ninja Combat EAMP = Ninja Combat EANE = Fatal Fury 2 EANJ = Garou Densetsu 2: Aratanaru Tatakai EANP = Fatal Fury 2 EAOE = King of the Monsters EAOJ = King of the Monsters EAOP = King of the Monsters EAPE = Ninja Commando EAPJ = Ninja Commando EAPP = Ninja Commando EAQE = WORLD HEROES 2 EAQJ = World Heroes 2 EARE = Neo Turf Masters EARJ = Neo Turf Masters EARP = Neo Turf Masters EASE = Samurai Showdown 2 EASJ = Shin Samurai Spirits Haoumaru Jigokuhen EASP = Samurai Shodown II EATE = WORLD HEROES 2 JET EATJ = World Heroes 2 Jet EAUJ = Twinkle Star Sprites EAVE = The King of Fighters ’95 EAVJ = The King of Fighters '95 EAVP = The King of Fighters '95 EAWE = Fatal Fury Special EAWJ = Garou Densetsu Special EAWP = Fatal Fury Special EAYJ = King of The Monsters 2 EAZE = WORLD HEROES PERFECT EAZJ = World Heroes Perfect EB2E = REAL BOUT FATAL FURY SPECIAL EB2J = Real Bout Garou Densetsu Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB6E = Metal Slug 3 EB6J = Metal Slug 3 EB6P = Metal Slug 3 EB7J = The Super Spy EB8E = SHOCK TROOPERS EB8J = Shock Troopers EB9J = Pulstar EBAE = Magical Drop II EBAJ = Magical Drop 2 EBAP = Magical Drop II EBBE = Fighters History Dynamite EBBJ = Fighter's History Dynamite EBBP = Karnov's Revenge EBCJ = Flying Power Disc EBDE = Magical Drop III EBDJ = Magical Drop III EBDP = Magical Drop 3 EBEE = Street Slam EBEJ = Dunk Dream EBEP = Street Hoop EBFE = Spin Master EBFJ = Miracle Adventure EBFP = Spin master EBGE = The King of Fighters '97 EBGJ = The King of Fighters '97 EBKJ = Last Resort EBLJ = Tsuukai GanGan Koushinkyoku EBMJ = Fire Suplex EBNJ = Fu'un Mokushiroku: Kakutou Sousei EBOJ = Fu'un Super Tag Battle EBPJ = League Bowling EBQE = NINJA MASTER'S EBQJ = Ninja Master's Haou Ninpou-chou EBRJ = Joy Joy Kid EBSE = The Path of the Warrior: Art of Fighting 3 EBSJ = Art of Fighting: Ryuuko no Ken Gaiden EBTJ = Crossed Swords EBUE = 2020 SUPER BASEBALL EBUJ = Super Baseball 2020 EBVJ = Shin-Oh-Ken EBWE = SENGOKU EBWJ = Sengoku Denshou EBXE = SENGOKU 2 EBXJ = Sengoku 2 EBZE = REAL BOUT FATAL FURY EBZJ = Real Bout Garou Densetsu ECAE = Real Bout Fatal Fury 2: The Newcomers ECAJ = Real Bout Garou Densetsu 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECDJ = Stakes Winner: G1 Kanzen Seihahe no Michi ECEE = THE LAST BLADE 2 ECEJ = Bakumatsu Rouman Dai Ni Maku: Gekka no Kenshi ECFJ = Blazing Star ECGE = Shock Troopers: 2nd Squad ECGJ = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECJE = The King of Fighters '99 ECJJ = Metal Slug 4 ECKE = NAM-1975 ECKJ = NAM-1975 ECLJ = Stakes Winner 2 ECMJ = Tokuten Oh: Honoo no Libero ECNE = Sengoku 3 ECNJ = Sengoku Denshou 2001 ENDP01 = New SUPER MARIO BROS. Wii 20 The End For Now EVOP01 = New Super Mario Bros. Wii 0-5 Evolution FA2J = Exerion FA3J = Formation Z FA4J = Devil World FA4P = Devil World FA5J = Fire Emblem: Ankoku Ryu to Hikari no Tsurugi FA6E = Donkey Kong Jr. Math FA6J = Donkey Kong Jr. no Sansuu Asobi FA6P = Donkey Kong Jr. Math FA7E = Yoshi FA7J = Yoshi no Tamago FA7K = Yoshi FA7P = Mario & Yoshi FA8E = Kirby's Adventure FA8F = Kirby's Adventure FA8J = Hoshi no Kirby: Yume no Izumi no Monogatari FA8K = Kirby's Adventure FA8P = Kirby's Adventure FA9E = Zelda II: The Adventure of Link FA9J = The Legend of Zelda 2: Link no Bouken FA9P = Zelda II: The Adventure of Link FAAE = Donkey Kong FAAJ = Donkey Kong FAAK = Donkey Kong FAAP = Donkey Kong FABE = Donkey Kong Jr. FABJ = Donkey Kong Jr. FABP = Donkey Kong Jr. FACE = Pinball FACJ = Pinball FACP = Pinball FADJ = Gomoku Narabe Renju FAFE = Mario Bros. FAFJ = Mario Bros. FAFK = Mario Bros. FAFP = Mario Bros. FAGE = Super Mario Bros. FAGJ = Super Mario Bros. FAGK = Super Mario Bros. FAGP = Super Mario Bros. FAHE = Tennis FAHJ = Tennis FAHP = Tennis FAIE = Soccer FAIJ = Soccer FAIP = Soccer FAJE = Ice Hockey FAJJ = Ice Hockey FAJP = Ice Hockey FAKE = The Legend of Zelda FAKJ = Zelda no Densetsu FAKK = The Legend of Zelda FAKP = The Legend of Zelda FALE = Baseball FALJ = Baseball FALP = Baseball FAME = Wario's Woods FAMJ = Wario no Mori FAMP = Wario's Woods FANE = Urban Champion FANJ = Urban Champion FANK = Urban Champion FANP = Urban Champion FAOE = Solomon's Key FAOJ = Solomon no Kagi FAOP = Solomon's Key FAPE = NES Open Tournament Golf FAPJ = Mario Open Golf FAPK = NES Open Tournament Golf FAPP = NES Open Tournament Golf FAQJ = Ninja Jajamaru-kun FAQL = Ninja JaJaMaru-kun FAQN = Ninja JaJaMaru-kun FARE = Gradius FARJ = Gradius FARP = Gradius FASE = Xevious FASJ = Xevious FASK = Xevious FASP = Xevious FATE = The Legend of Kage FATJ = Kage no Densetsu FAVE = Tecmo Bowl FAVJ = Tecmo Bowl FAWE = Elevator Action FAWJ = Elevator Action FAXE = Pac-Man FAXJ = Pac-Man FAXK = Pac-Man FAXP = Pac-Man FAYJ = Ikki FAZJ = Field Combat FAZK = Downtown Nekketsu Koushinkyoku: Soreyuke Daiundoukai FB2J = Super Mario Bros. 2 FB2L = Super Mario Bros.: The Lost Levels FB2N = Super Mario Bros.: The Lost Levels FB3J = Valkyrie no Bouken: Toki no Kagi Densetsu FB4E = Lunar Pool FB4J = Lunar Ball FB4P = Lunar Pool FB5E = Zanac FB5J = Zanac FB6J = Front Line FB7J = Nuts & Milk FB8J = Challenger FB9J = Pooyan FBAJ = Smash Ping Pong FBAL = Smash Table Tennis FBBE = Mach Rider FBBJ = Mach Rider FBBP = Mach Rider FBCE = Excitebike FBCJ = Excitebike FBCP = Excitebike FBDE = Kid Icarus FBDJ = Hikari Shinwa: Palutena no Kagami FBDK = Kid Icarus FBDP = Kid Icarus FBEE = Ice Climber FBEJ = Ice Climber FBEP = Ice Climber FBHE = Castlevania FBHJ = Akumajou Dracula FBHP = Castlevania FBIE = Punch Out!! Featuring Mr. Dream FBIJ = Punch-Out!! FBIP = Punch-Out!! FBJE = Mighty Bomb Jack FBJJ = Mighty Bomb Jack FBJP = Mighty Bomb Jack FBKE = Teenage Mutant Ninja Turtles FBKJ = Gekikame Ninja Den FBKP = Teenage Mutant Ninja Turles FBLE = Lode Runner FBLJ = Lode Runner FBLM = Lode Runner FBNE = Ninja Gaiden FBNJ = Ninja Ryuukenden FBNM = Ninja Gaiden FBOJ = Gradius II FBQJ = Druaga no Tou FBRE = Galaga FBRJ = Galaga FBRK = Galaga FBRP = Galaga FBSE = Milon's Secret Castle FBSJ = Meikyuu Kumikyoku: Milon no Daibouken FBSM = Milon's Secret Castle FBUE = Adventures of Lolo FBUJ = Adventures of Lolo FBUK = Adventures of Lolo FBUP = Adventures of Lolo FBVJ = Tsuppari Oozumou FBWJ = Joy Mech Fight FBWK = Joy Mech Fight FBXJ = Famicom Wars FBYE = Super Mario Bros. 2 FBYJ = Super Mario USA FBYK = Super Mario USA FBYP = Super Mario Bros. 2 FBZE = Metroid FBZJ = Metroid FBZP = Metroid FC2J = Hanjuku Hero FC3E = Bubble Bobble FC3J = Bubble Bobble FC3K = Bubble Bobble FC3P = Bubble Bobble FC4J = Chack'n Pop FC5J = Ganbare Goemon Karakuki Douchuu FC6E = StarTropics FC6J = Startropics FC6P = StarTropics FC7E = NES Play Action Football FC7J = NES Play Action Football FC8E = Castlevania II Simon's Quest FC8J = Dracula II: Noroi no Fuuin FC8P = Castlevania II: Simon's Quest FC9J = Metal Slader Glory FCAE = Star Soldier FCAJ = Star Soldier FCEJ = Esper Dream FCEU = FCE Ultra GX FCFJ = Yie Ar Kung Fu FCGJ = TwinBee FCHJ = Flappy FCIJ = Volguard 2 FCJJ = SD Gundam World: Gachapon Senshi 2 - Capsule Senki FCNJ = Kekkyoku Nankyoku Daibouken FCNK = Antarctic Adventure FCOJ = Battle City FCPE = Balloon Fight FCPJ = Balloon Fight FCPP = Balloon Fight FCQE = Ninja Gaiden II: The Dark Sword of Chaos FCQJ = Ninja Gaiden Two FCRE = Adventure Island FCRJ = Takahashi Meijin no Boukenjima FCRK = Hudson's Adventure Island FCRP = Adventure Island FCSE = Super C FCSJ = Super Contra FCSP = Probotector II: Return of the Evil Forces FCTE = Mega Man FCTJ = RockMan FCTP = Mega Man FCUE = Volleyball FCUJ = Volleyball FCUP = Volleyball FCVE = Wrecking Crew FCVJ = Wrecking Crew FCVP = Wrecking Crew FCWE = Super Mario Bros. 3 FCWJ = Super Mario Bros. 3 FCWK = Super Mario Bros. 3 FCWP = Super Mario Bros. 3 FCYE = Yoshi’s Cookie FCYJ = Yoshi no Cookie FCYK = Yoshi's Cookie FCYP = Yoshi’s Cookie FCZE = King's Knight FCZJ = Kings Knight FD2E = Double Dragon FD2J = Double Dragon FD2P = Double Dragon FD3J = Nekketsu Koukou Dodgeball-bu Soccer-hen FD3K = Nekketsu Koukou Dodgeball-bu Soccer-hen FD6E = Adventures of Lolo 2 FD6P = Adventures of Lolo 2 FD7E = Mega Man 3 FD7J = RockMan 3: Dr. Wily no Saigo?! FD7P = Mega Man 3 FDAE = Spelunker FDAJ = Spelunker FDAM = Spelunker FDBJ = Famicom Mukashi Banashi: Shin Onigashima - Kouhen FDCJ = Star Luster FDEJ = Mappy FDFE = Bases Loaded FDFJ = Moero!! Pro Yakyuu FDGE = Ghosts'n Goblins FDGJ = Makai-Mura FDGP = Ghosts'n Goblins FDIJ = Bokosuka Wars FDLE = Ninja Gaiden III: The Ancient Ship of Doom FDLJ = Ninja Gaiden Three FDNE = Mega Man 2 FDNJ = RockMan 2 FDNP = Mega Man 2 FDOE = Operation Wolf FDOJ = Operation Wolf FDOP = Operation Wolf FDPE = Blades of Steel FDPP = Blades of Steel FDQE = Double Dribble FDQP = Double Dribble FDRP = Skate or Die FDSJ = Famicom Tantei Club: Kieta Koukeisha (Kouhen) FDTE = Renegade FDTJ = Renegade FDUE = Super Dodge Ball FDUJ = Nekketsu Koukou Dodge Ball Bu FDVE = River City Ransom FDVJ = Downtown Nekketsu Monogatari FDVK = Downtown Nekketsu Monogatari FDVP = Street Gangs FDWJ = Downtown Special: Kunio-kun no Jidaigeki Dayo Zenin Shuugou! FDXJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo (Kouhen) FDYJ = Fire Emblem Gaiden FDZJ = Downtown Nekketsu Koushinkyoku FE5J = Toukaidou Gojuusan Tsugi FE6J = Ninja kun Majyou no Bouken FE7J = Ninja kun Ashura no Shou FE8J = Takeshi no Chousenjou FE9J = Ike Ike! Nekketsu Hockey-bu: Subette Koronde Dairantou FECE = Skykid FECJ = Sky Kid FEDJ = Dig Dug FEDL = Dig Dug FEDN = Dig Dug FEEJ = Tantei Jinguji Saburo: Shinjuku Chuo Koen Satsujin Jiken FEFJ = Detective Saburo Jinguji 2: Yokohama-Ko Renzoku Satsujin Jiken FEGJ = Tantei Jinguuji Saburo - Kikenna Futari - Zenkouhen FEHJ = Tantei Jinguuji Saburo: Toki no Sugiyuku Mama ni FEIE = City Connection FEIJ = City Connection FEIP = City Connection FEJJ = Nazo no Murasame Jou FELJ = Transformers: Convoy no Nazo FEMJ = Bio-Miracle Bokutte Upa FEML = Bio Miracle Bokutte UPA FEMN = Bio Miracle Bokutte UPA FENE = Life Force FENJ = Salamander FEOJ = Zoids: Mokushiroku FEPJ = Getsu Fuuma Den FEQE = Castlevania III: Dracula's Curse FEQJ = Akumajo Densetsu FEQP = Castlevania III Dracula's Curse FERE = Zoda’s Revenge: StarTropics II FERJ = Zoda's Revenge FERM = Startropics II: Zoda's Revenge FESE = Clu Clu Land FESJ = Clu Clu Land FESP = Clu Clu Land FEUE = Donkey Kong 3 FEUJ = Donkey Kong 3 FEUP = Donkey Kong 3 FEVJ = Atlantis no Nazo FEWJ = Dragon Buster FEXJ = Wagyan Land FF2J = Sugoro Quest: Dice no Senshi Tachi FF4E = BurgerTime FF4J = BurgerTime FF5E = Double Dragon II: The Revenge FF5J = Double Dragon 2: The Revenge FF6J = Ganbare Goemon 2 FF7J = Ganbare Goemon Gaiden: Kieta Ougon Kiseru FFAE = Final Fantasy FFAJ = Final Fantasy FFAM = Final Fantasy FFBJ = Final Fantasy II FFDE = Crash 'N The Boys Street Challenge FFDJ = Bikkuri Nekketsu Shin Kiroku! Harukanaru Kin Medal FFEE = A Boy and His Blob: Trouble on Blobolonia FFEP = A Boy and His Blob: Trouble on Blobolonia FFFJ = Final Fantasy III FFGJ = SD Gundam World: Gachapon Senshi - Scramble Wars FFJJ = Metal Max FFKJ = Championship Lode Runner FFLE = Princess Tomato in the Salad Kingdom FFLJ = Salad no Kuni no Tomato Hime FFME = Blaster Master FFMJ = Chou-Wakusei Senki MetaFight FFMP = Blaster Master FFNE = Mega Man 4 FFNJ = RockMan 4: Aratanaru Yabou!! FFNP = Mega Man 4 FFOJ = Moero TwinBee: Cinnamon Hakase o Sukue! FFPB = Ufouria: The Saga FFPJ = Furu Furu Park FFQE = Shadow of the Ninja FFQM = Shadow of the Ninja FFRE = Faxanadu FFRJ = Faxanadu FFRP = Faxanadu FFTJ = Binary Land FFUE = Adventure Island 2 FFUJ = Takahashi Meijin no Bouken Jima II FFUP = Adventure Island 2 FFVE = S.C.A.T. FFVP = S.C.A.T.: Special Cybernetic Attack Team FFWP = Donkey Kong: Original Edition FFXJ = 25th Anniversary SUPER MARIO BROS. FFXP = Super Mario Brothers: 25th Anniversary Exclusive FFYE = Mega Man 5 FFYJ = RockMan 5: Blues no Wana!? FFZJ = Seicross FFZY = Contra FJOR = Kung Fu FMCA = The Goonies G01E01 = Super Smash Bros. Melee: SD Remix G01J01 = Super Smash Bros. Melee: SD Remix G01P01 = Super Smash Bros. Melee: SD Remix G02E01 = Super Smash Bros. Melee: 20XX Training Pack G02J01 = Super Smash Bros. Melee: 20XX Training Pack G02P01 = Super Smash Bros. Melee: 20XX Training Pack G2BE5G = Black & Bruised G2BP7D = Black & Bruised G2CD52 = True Crime: New York City G2CE52 = True Crime: New York City G2CP52 = True Crime: New York City G2CX52 = True Crime: New York City G2FD78 = Tak 2: The Staff of Dreams G2FE78 = Tak 2: The Staff of Dreams G2FF78 = Tak 2: The Staff of Dreams G2FP78 = Tak 2: The Staff of Dreams G2GJB2 = Mobile Suit Gundam: Gundam vs. Z Gundam G2KE8P = NHL 2K3 G2KP8P = NHL 2K3 G2ME01 = Metroid Prime 2: Echoes G2MEAB = Metroid Prime 3 (E3 Beta) G2MJ01 = Metroid Prime 2: Dark Echoes G2MP01 = Metroid Prime 2: Echoes G2OE41 = Prince of Persia: Warrior Within G2OP41 = Prince of Persia: Warrior Within G2PE6U = Spirits And Spells G2RE52 = Shrek SuperSlam G2SJGE = Shikigami no Shiro II G2TE52 = Tony Hawk's Underground 2 G2TP52 = Tony Hawk's Underground 2 G2VE08 = Viewtiful Joe 2 G2VJ08 = Viewtiful Joe 2: Blackfilm no Nazo G2VP08 = Viewtiful Joe 2 G2XE8P = Sonic Gems Collection G2XP8P = Sonic Gems Collection G3AD69 = Der Herr der Ringe: Das dritte Zeitalter G3AE69 = Lord of the Rings: The Third Age G3AF69 = Lord of the Rings: The Third Age G3AP69 = Lord of the Rings: The Third Age G3AS69 = Lord of the Rings: The Third Age G3BE9G = Serious Sam: Next Encounter G3BP54 = Serious Sam: Next Encounter G3BP9G = Serious Sam: Next Encounter G3DE6L = Carmen Sandiego: The Secret of the Stolen Drums G3DP6L = Carmen Sandiego: The Secret of the Stolen Drums G3DX6L = Carmen Sandiego: Das Geheimnis der gestohlenen Trommeln G3EE51 = XGIII: Extreme G Racing G3EJ51 = XGIII: Extreme G Racing G3EP51 = XGIII: Extreme G Racing G3FD69 = TimeSplitters: Future Perfect G3FE69 = TimeSplitters: Future Perfect G3FF69 = TimeSplitters: Future Perfect G3FP69 = TimeSplitters: Future Perfect G3FS69 = TimeSplitters: Future Perfect G3JEAF = Curious George G3LE8P = Super Monkey Ball Adventure G3LP8P = Super Monkey Ball Adventure G3ME41 = Tom Clancy's The Sum of All Fears G3MP41 = Der Anschlag G3NJDA = NARUTO Gekitô Ninja Taisen! 3 G3QEA4 = Teenage Mutant Ninja Turtles 3: Mutant Nightmare G3RD52 = Shrek 2 G3RE52 = Shrek 2 G3RF52 = Shrek 2 G3RP52 = Shrek 2 G3SE41 = Bust-A-Move 3000 G3TJ8P = Derby Tsuku 3: Derby Uma O Tsukurou! G3VE69 = NBA Street Vol.3 G3VP69 = NBA Street Vol.3 G3XE52 = X-Men: The Official Game G3XP52 = X-Men: The Official Game G3YP52 = Shrek Super Slam G3YX52 = Shrek Super Slam G3YY52 = Shrek Super Slam G4AEE9 = Harvest Moon: Magical Melody G4BE08 = Resident Evil 4 G4BJ08 = Biohazard 4 G4BP08 = Resident Evil 4 G4CE54 = Charlie and the Chocolate Factory G4CP54 = Charlie und die Schokoladen-fabrik G4FD69 = FIFA 07 G4FE69 = FIFA Soccer 07 G4FF69 = FIFA 07 G4FP69 = FIFA 07 G4GEE9 = Harvest Moon: Another Wonderful Life G4IE52 = Shrek Smash n' Crash Racing G4IP52 = Shrek Smash n' Crash Racing G4ME69 = The Sims Bustin' Out G4MP69 = Die Sims: Brechen Aus G4NJDA = NARUTO Gekitô Ninja Taisen! 4 G4OE69 = The Sims 2 : Pets G4OP69 = Die Sims 2: Haustiere G4QE01 = Super Mario Strikers G4QJ01 = Super Mario Strikers G4QP01 = Mario Smash Football G4SE01 = The Legend of Zelda: Four Swords Adventures G4SJ01 = The Legend of Zelda: Four Swords + G4SP01 = The Legend of Zelda: Four Swords Adventures G4ZE69 = The Sims 2 G4ZP69 = Die Sims 2 G5BE4Z = Strike Force Bowling G5DE78 = Scooby-Doo! - Unmasked G5DP78 = Scooby-Doo! - Unmasked G5NEAF = Namco Museum 50th Anniversary G5NP69 = Namco Museum 50th Anniversary G5SE7D = Spyro: A Hero's Tail G5SP7D = Spyro: A Hero's Tail G5TE69 = Tiger Woods PGA Tour 2005 G5TP69 = Tiger Woods PGA Tour 2005 G62E54 = Major League Baseball 2k6 G63E41 = Tom Clancy's Rainbow Six 3 G63P41 = Tom Clancy's Rainbow Six 3 G6FD69 = FIFA Fussball-Weltmeisterschaft 2006 G6FE69 = 2006 FIFA World Cup G6FF69 = 2006 FIFA World Cup G6FP69 = 2006 FIFA World Cup G6ME69 = Madden NFL 06 G6MP69 = Madden NFL 06 G6NE69 = NBA Live 06 G6NP69 = NBA Live 06 G6QE08 = Mega Man Anniversary Collection G6SE7D = The Legend of Spyro: A New Beginning G6SP7D = The Legend of Spyro: A New Beginning G6TE5G = Teen Titans G6TP5G = Teen Titans G6TP78 = Teen Titans G6WE69 = Tiger Woods PGA Tour 06 G6WP69 = Tiger Woods PGA Tour 06 G7ME69 = Madden NFL 07 G89EAF = Pac-Man World Rally G8FE8P = Virtua Quest G8ME01 = Paper Mario: The Thousand-Year Door G8MJ01 = Paper Mario RPG G8MP01 = Paper Mario: Die Legende Vom Äonentor G8OJ18 = Bobobo-bo Bo-bobo Dassutsu! Hajike Royale G8SJAF = Battle Stadium D.O.N G8WE01 = Battalion Wars G8WP01 = Battalion Wars G94E01 = Interactive Multi-Game Demo Disc - August 2002 G95E01 = Interactive Multi-Game Demo Disc - July 2002 G96E01 = Interactive Multi-Game Demo Disc - June 2002 G97E01 = Interactive Multi-Game Demo Disc - March 2002 G97P01 = Interactive Multi Game Demo Disc - September 2002 G97U01 = Interactive Multi-Game Demo Disc - September 2002 G98E01 = Interactive Multi-Game Demo Disc - January 2002 G98P01 = Interactive Multi Game Demo Disc May 2002 G99E01 = Interactive Multi-Game Demo Disc - October 2001 G99P01 = Interactive Multi Game Demo Disc March 2002 G9BEE9 = Mark Davis Pro Bass Challenge G9RD7D = Crash Tag Team Racing G9RE7D = Crash Tag Team Racing G9RF7D = Crash Tag Team Racing G9RP7D = Crash Tag Team Racing G9SE8P = Sonic Heroes G9SJ8P = Sonic Heroes G9SP8P = Sonic Heroes G9TD52 = Grosse Haie: Kleine Fische G9TE52 = Shark Tale G9TF52 = Shark Tale G9TI52 = Shark Tale G9TJC0 = Shark Tale G9TP52 = Shark Tale GA2E51 = All-Star Baseball 2002 GA3E51 = All-Star Baseball 2003 GA4E51 = All-Star Baseball 2004 GA7E70 = Backyard Sports Baseball 2007 GAAJ08 = Disney's Mickey & Minnie Trick & Chase GABEAF = Zatch Bell! Mamodo Fury GACE5H = Army Men: Air Combat The Elite Missions GAEJ01 = Doubutu no Mori e+ GAFE01 = Animal Crossing GAFJ01 = Animal Forest + GAFP01 = Animal Crossing GAFU01 = Animal Crossing GAGP70 = Asterix & Obelix XXL GAHEGG = Alien Hominid GAKE5D = Midway Arcade Treasures GALE01 = Super Smash Bros. Melee GALJ01 = Dairantou Smash Brothers DX GALP01 = Super Smash Bros. Melee GAME5H = Army Men Sarges War GANE7U = Animaniacs: The Great Edgar Hunt GANP7U = Animaniacs: The Great Edgar Hunt GAPE52 = American Chopper 2 - Full Throttle GAQE6S = Aquaman: Battle of Atlantis GARE5H = Army Men: RTS GASE8P = Sonic Adventure DX: Director's Cut (Review Prototype) GASJ8P = Sonic Adventure DX GATE51 = ATV Quad Power Racing 2 GATP51 = ATV Quad Power Racing 2 GAUE08 = Auto Modellista GAUJ08 = Auto Modellista: U.S.-tuned GAVE78 = Avatar The Last Airbender GAVP78 = Avatar: The Legend of Aang GAVY78 = Avatar: The Legend of Aang GAXE5D = The Ant Bully GAYE5D = Midway Arcade Treasures 2 GAZD69 = Harry Potter und der Gefangene von Askaban GAZE69 = Harry Potter and the Prisoner of Azkaban GAZF69 = Harry Potter and the Prisoner of Azkaban GAZH69 = Harry Potter and the Prisoner of Azkaban GAZI69 = Harry Potter and the Prisoner of Azkaban GAZJ69 = Harry Potter to Azkaban no Shuujin GAZM69 = Harry Potter and the Prisoner of Azkaban GAZP69 = Harry Potter and the Prisoner of Azkaban GAZS69 = Harry Potter and the Prisoner of Azkaban GB2J18 = Bomberman Land 2 GB3E51 = BMX XXX GB3P51 = BMX XXX GB4E51 = Burnout 2: Point of Impact GB4P51 = Burnout 2: Point of Impact GBAE8P = NBA 2K2 GBDE5G = BloodRayne GBDP7D = BloodRayne GBDS7D = BloodRayne GBFE70 = Backyard Football GBGE5G = Bomberman Generation GBGP7D = Bomberman Generation GBHDC8 = Mystic Heroes GBHEC8 = Mystic Heroes GBHFC8 = Mystic Heroes GBHJC8 = Battle Houshin GBHPC8 = Mystic Heroes GBIE08 = Resident Evil GBIJ08 = Biohazard GBIP08 = Resident Evil GBKE70 = Backyard Baseball GBLE52 = Bloody Roar: Primal Fury GBLP52 = Bloody Roar: Primal Fury GBME7F = Batman: Dark Tomorrow GBMP7F = Batman: Dark Tomorrow GBNJC0 = Warrior Blade: Rastan vs. Barbarian GBOE51 = Burnout GBOP51 = Burnout GBQE78 = Rocket Power: Beach Bandits GBQP78 = Rocket Power: Beach Bandits GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTP70 = Beyblade VForce - Super Tournament Battle GBVE41 = Batman: Vengeance GBVP41 = Batman Vengeance GBWD64 = Star Wars Bounty Hunter GBWE64 = Star Wars Bounty Hunter GBWF64 = Star Wars Bounty Hunter GBWP64 = Star Wars Bounty Hunter GBWS64 = Star Wars Bounty Hunter GBXE51 = Dave Mirra Freestyle BMX 2 GBXP51 = Dave Mirra Freestyle BMX 2 GBYE0A = Super Bubble Pop GBZE08 = Resident Evil Zero GBZJ08 = Resident Evil Zero GBZP08 = Resident Evil Zero GC2E9G = Conflict: Desert Storm II: Back to Baghdad GC2P75 = Conflict: Desert Storm II: Back to Baghdad GC3D78 = Scooby-Doo!: Fluch der Folianten GC3E78 = Scooby-Doo!: Mystery Mayhem GC3F78 = Scooby-Doo!: Mystery Mayhem GC3P78 = Scooby-Doo!: Mystery Mayhem GC4JBN = Shinseiki GPX Cyber Formula Road To The EVOLUTION GC5PNK = Cocoto: Kart Racer GC6E01 = Pokémon Colosseum GC6J01 = Pokémon Colosseum GC6P01 = Pokémon Colosseum GC7PNK = Cocoto Platform Jumper GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBP7D = Crash Bandicoot: Der Zorn Des Cortex GCCE01 = Final Fantasy Crystal Chronicles GCCJ01 = Final Fantasy Crystal Chronicles GCCJGC = Final Fantasy Crystal Chronicles GCCP01 = Final Fantasy Crystal Chronicles GCDE08 = Resident Evil Code: Veronica X GCDJ08 = Biohazard: Code Veronica GCDP08 = Resident Evil Code Veronica X GCEE41 = Tom Clancy's Splinter Cell GCEP41 = Tom Clancy's Splinter Cell GCFE9G = Conflict: Desert Storm GCFP75 = Conflict: Desert Storm GCGE41 = Charlie's Angels GCGP41 = 3 Engel Für Charlie: Volle Power GCHE78 = WWE Crush Hour GCHP78 = WWE Crush Hour GCIE69 = The Sims GCIP69 = Die Sims GCJE41 = Tom Clancy's Splinter Cell: Chaos Theory GCJP41 = Tom Clancy's Splinter Cell: Chaos Theory GCLE69 = Cel Damage GCLP69 = Cel Damage GCMJA4 = Muscle Champion ~Battle of Muscle Island~ GCNE7D = Crash Nitro Kart GCNP7D = Crash Nitro Kart GCOD52 = Call of Duty: Finest Hour GCOE52 = Call of Duty: Finest Hour GCOF52 = Call of Duty: Finest Hour GCOP52 = Call of Duty: Finest Hour GCPE6S = Casper: Spirit Dimensions GCPP6S = Casper: Spirit Dimensions GCQD7D = Buffy im Bann der Dämonen: Chaos Bleeds GCQE7D = Buffy the Vampire Slayer: Chaos Bleeds GCQF7D = Buffy The Vampire Slayer Chaos Bleeds GCQP7D = Buffy The Vampire Slayer Chaos Bleeds GCSEAF = Street Racing Syndicate GCSPAF = Street Racing Syndicate GCTE51 = Crazy Taxi GCTP51 = Crazy Taxi GCUE69 = NCAA Football 2005 GCVEEB = Cubivore: Survival of the Fittest GCWP6X = Castleween GCZE69 = Catwoman GCZP69 = Catwoman GD4E6S = Dinotopia - The Sunstone Odyssey GD5JB2 = Dragon Drive: D-Masters Shot GD6EB2 = Digimon Rumble Arena 2 GD6P70 = Digimon Rumble Arena 2 GD7E70 = Dragon Ball Z - Budokai GD7JB2 = Dragon Ball Z - Budokai GD7P70 = Dragon Ball Z - Budokai GD7PB2 = Dragon Ball Z Budokai GD9E69 = Drome Racers GD9P69 = Drome Racers GDAJE5 = Doraemon Minna De Asobou! GDBJ01 = Doubutsu Bancho GDCE51 = Speed Kings GDCP51 = Speed Kings GDDE41 = Disney's Donald Duck: Goin' Quackers GDDP41 = Disney's Donald Duck: Qu@ck Att@ck GDED71 = Baldur's Gate Dark Alliance GDEE71 = Baldur's Gate: Dark Alliance GDEF71 = Baldur's Gate: Dark Alliance GDEP71 = Baldur's Gate Dark Alliance GDFE5D = Defender GDFP5D = Defender: For All Mankind GDGE7H = Dragon's Lair 3D: Return to the Lair GDGP78 = Dragon's Lair 3D Special Edition GDIE7D = Die Hard: Vendetta GDIP7D = Die Hard: Vendetta GDIX7D = Die Hard: Vendetta GDIY7D = Die Hard: Vendetta GDJEB2 = Digimon World 4 GDJJB2 = Digimon World X GDKEA4 = Disney Sports Soccer GDKPA4 = Disney´s Sports Fußball GDLEA4 = Disney Sports Basketball GDLPA4 = Disney Sports: Basketball GDME01 = Disney's Magical Mirror Starring Mickey Mouse GDMJ01 = Disney's Mickey Mouse no Fushigi na Kagami GDMP01 = Disney's Magical Mirror Starring Mickey Mouse GDNJE8 = Dokapon DX GDOP41 = Disney's Donald Duck Phantomias: Platyrhynchos Kineticus GDPJAF = Mr. Driller: Drill Land GDQE7L = Darkened Skye GDQP6S = Darkened Skye GDREAF = Dead to Rights GDRP69 = Dead to Rights GDRPAF = Dead to Rights GDSE78 = Dark Summit GDSP78 = Dark Summit GDTE69 = Def Jam Vendetta GDTP69 = Def Jam Vendetta GDUJA7 = Duel Masters Nettou Battle GDVE6L = Driven GDVP6L = Driven GDWEA4 = Disney Sports Football GDXEA4 = Disney Sports Skateboarding GDXJA4 = Disney Sports Skateboarding GDXPA4 = Disney Sports Skateboarding GE3E5D = Midway Arcade Treasures 3 GE4E7D = 4x4 Evo 2 GE5EA4 = TMNT: Mutant Melee GE6JA4 = Eisei Meijin VI GE9E5D = Ed, Edd n Eddy: The Mis-Edventures GEAE8P = Skies of Arcadia Legends GEAJ8P = Eternal Arcadia Legends GEAP8P = Skies of Arcadia Legends GEBEA4 = Evolution Snowboarding GEBPA4 = Evolution Snowboarding GEDE01 = Eternal Darkness: Sanity's Requiem GEDJ01 = Eternal Darkness: Manekareta 13-nin GEDP01 = Eternal Darkness: Sanity's Requiem GEJJCM = Jikkyou Powerful Pro Yakyuu 11 Chou Ketteiban GEME7F = Egg Mania: Eggstreme Madness GEMP7F = Eggo Mania GEND69 = James Bond 007: Alles Oder Nichts GENE69 = James Bond 007: Everything Or Nothing GENF69 = James Bond 007: Everything Or Nothing GENP69 = James Bond 007: Alles Oder Nichts GENS69 = James Bond 007: Everything Or Nothing GEOE08 = Capcom vs. SNK 2 EO GEOP08 = Capcom Vs. SNK2 EO: Millionaire Fighting 2001 GESEA4 = Evolution Skateboarding GESPA4 = Evolution Skateboarding GEVJ0M = Shinki Sekai Evolutia GEWE41 = Evolution Worlds GEWP41 = Evolution Worlds GEXE52 = Disney's Extreme Skate Adventure GEXP52 = Disney Extreme Skate Adventure GEXX52 = Disney's Extreme Skate Adventure GEXY52 = Disney Extreme Skate Adventure GEYE69 = Fight Night Round 2 GEYJ69 = Fight Night Round 2 GEYP69 = Fight Night Round 2 GEZE8P = Billy Hatcher and the Giant Egg GEZP8P = Billy Hatcher and the Giant Egg GF2E69 = F1 2002 GF2P69 = F1 2002 GF3E8P = NFL 2K3 GF3P8P = NFL 2K3 GF4E52 = Fantastic 4 GF4F52 = Fantastic Four GF4P52 = Fantastic 4 GF5D69 = FIFA Football 2005 GF5E69 = FIFA Soccer 2005 GF5F69 = FIFA Football 2005 GF5H69 = FIFA Football 2005 GF5I69 = FIFA Football 2005 GF5P69 = FIFA Football 2005 GF5S69 = FIFA Football 2005 GF6D69 = FIFA 06 GF6E69 = FIFA Soccer 06 GF6F69 = FIFA 06 GF6H69 = FIFA 06 GF6P69 = FIFA 06 GF6S69 = FIFA 06 GF7E01 = Star Fox: Assault GF7P01 = Star Fox Assault GF8E69 = FIFA Street GF8P69 = FIFA Street GFAD69 = FIFA Football 2003 GFAE69 = FIFA Soccer 2003 GFAF69 = FIFA Soccer 2003 GFAI69 = FIFA Football 2003 GFAJ69 = FIFA Soccer 2003 GFAP69 = FIFA Football 2003 GFAS69 = FIFA Football 2003 GFBE5D = FireBlade GFBP5D = Fireblade GFCP69 = F1 Career Challenge GFDD69 = Freedom Fighters GFDE69 = Freedom Fighters GFDF69 = Freedom Fighters GFDP69 = Freedom Fighters GFEE01 = Fire Emblem: Path of Radiance GFEJ01 = Fire Emblem: Souen no Kiseki GFEP01 = Fire Emblem: Path of Radiance GFFE5D = Freaky Flyers GFGEA4 = Frogger Beyond GFGPA4 = Frogger Beyond GFHP6V = Neighbours From Hell GFIE69 = 2002 FIFA World Cup GFKE69 = Freekstyle GFKP69 = Freekstyle GFMJAF = Family Stadium 2003 GFNJG2 = Finding Nemo GFOE78 = The Fairly OddParents - Shadow Showdown GFPEA4 = Frogger: Ancient Shadow GFQEA4 = Frogger's Adventures: The Rescue GFSD69 = FIFA Fussball Weltmeisterschaft 2002 GFSE69 = FIFA Soccer 2002 GFSF69 = 2002 FIFA World Cup GFSJ69 = FIFA Soccer 2002 GFSP69 = 2002 FIFA World Cup GFTE01 = Mario Golf: Toadstool Tour GFTJ01 = Mario Golf: Family Tour GFTP01 = Mario Golf: Toadstool Tour GFUE4Z = Future Tactics: The Uprising GFUP6V = Future Tactics: The Uprising GFVE5D = NFL Blitz Pro GFWE78 = The Fairly OddParents: Breakin' Da Rules GFXE5D = Freestyle Metal X GFYE69 = FIFA Street 2 GFYP69 = FIFA Street 2 GFZE01 = F-Zero GX GFZJ01 = F-Zero GX GFZJ8P = F-Zero AX GFZP01 = F-Zero GX GG1J08 = Donkey Kong: Jungle Fever GG2E4Z = Trigger Man GG3J08 = Donkey Kong: Banana Kingdom GG4E08 = Gotcha Force GG4P08 = Gotcha Force GG5E52 = Cabela's Big Game Hunter 2005 GGAJB2 = Mobile Suit Gundam: The Ace Pilot GGCE0A = Goblin Commander: Unleash The Horde GGCP0A = Goblin Commander: Unleash the Horde GGEE41 = Beyond Good & Evil GGEP41 = Beyond Good And Evil GGEX41 = Beyond Good And Evil GGEY41 = Beyond Good And Evil GGFJ01 = GiFTPiA GGNE5D = The Grim Adventures of Billy and Mandy GGPE01 = Mario Kart Arcade GP GGPE02 = Mario Kart Arcade GP 2 GGPJ02 = Mario Kart Arcade GP 2 GGPJAF = SD Gundam Gashapon Wars GGPJB2 = SD Gundam Gashapon Wars GGRD41 = Tom Clancy's Ghost Recon GGRE41 = Tom Clancy's Ghost Recon GGRP41 = Tom Clancy's Ghost Recon GGSEA4 = Metal Gear Solid: The Twin Snakes GGSJA4 = Metal Gear Solid: The Twin Snakes GGSPA4 = Metal Gear Solid: The Twin Snakes GGTE01 = Chibi-Robo! GGTJ01 = Chibi-Robo! GGTP01 = Chibi-Robo! GGVD78 = Der SpongBob Schwammkopf Film GGVE78 = SpongeBob SquarePants: The Movie GGVP78 = Spongebob Squarepants: The Movie GGVX78 = Spongebob Squarepants : The Movie GGYE41 = Tom Clancy's Ghost Recon 2 GGYP41 = Tom Clancy's Ghost Recon 2 GGZE52 = Madagascar GGZH52 = Madagascar GGZI52 = Madagascar GGZJB2 = Madagascar GGZP52 = Madagascar GGZS52 = Madagascar GGZX52 = Madagascar GH2E69 = Need for Speed: Hot Pursuit 2 GH2P69 = Need For Speed Hot Pursuit 2 GH3E69 = NHL 2003 GH3P69 = NHL 2003 GH4D69 = Harry Potter und der Feuerkelch GH4E69 = Harry Potter and the Goblet of Fire GH4F69 = Harry Potter and the Goblet of Fire GH4H69 = Harry Potter and the Goblet of Fire GH4I69 = Harry Potter and the Goblet of Fire GH4J69 = Harry Potter to Honoo no Goblet GH4M69 = Harry Potter and the Goblet of Fire GH4P69 = Harry Potter and the Goblet of Fire GH4S69 = Harry Potter and the Goblet of Fire GH5D52 = Ab Durch Die Hecke GH5E52 = Over The Hedge GH5F52 = Over The Hedge GH5P52 = Over The Hedge GH6EAF = Hello Kitty: Roller Rescue GH6P7N = Hello Kitty: Roller Rescue GH7E5D = Happy Feet GH9P52 = Tony Hawk's American Wasteland GHAE08 = Resident Evil 2 GHAJ08 = Biohazard 2 GHAP08 = Resident Evil 2 GHBE7D = The Hobbit GHBP7D = Der Hobbit GHCD4Q = Himmel und Huhn GHCE4Q = Chicken Little GHCF4Q = Chicken Little GHCJG9 = Chicken Little GHCP4Q = Chicken Little GHEJ91 = Homeland GHFE4Z = Pinball Hall Of Fame: The Gottlieb Collection GHGEEB = Go! Go! Hypergrind GHKD7D = Hulk GHKE7D = Hulk GHKF7D = Hulk GHKP7D = Hulk GHKS7D = Hulk GHLE69 = Harry Potter and the Sorcerer's Stone GHLJ69 = Harry Potter to Kenja no Ishi GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Sorcerer's Stone GHLY69 = Harry Potter und der Stein der Weisen GHLZ69 = Harry Potter and the Sorcerer's Stone GHMD4F = Hitman 2: Silent Assassin GHME4F = Hitman 2: Silent Assassin GHMF4F = Hitman 2: Silent Assassin GHMP4F = Hitman 2: Silent Assassin GHNE71 = Hunter: The Reckoning GHNX71 = Hunter: The Reckoning GHPE52 = Street Hoops GHQE7D = The Simpsons: Hit & Run GHQP7D = The Simpsons: Hit & Run GHRE78 = Hot Wheels: World Race GHRP78 = Hot Wheels: World Race GHSE69 = Harry Potter and the Chamber of Secrets GHSJ69 = Harry Potter to Himitsu no Heya GHSP69 = Harry Potter and the Chamber of Secrets GHSX69 = Harry Potter and the Chamber of Secrets GHSY69 = Harry Potter Und Die Kammer Des Schreckens GHTJA4 = Hikaru No Go 3 GHUE7D = The Incredible Hulk: Ultimate Destruction GHUF7D = The Incredible Hulk Ultimate Destruction GHUP7D = The Incredible Hulk Ultimate Destruction GHVE08 = Disney's Hide & Sneak GHVP08 = Disney's Tricky Micky GHWE78 = Hot Wheels: Velocity X GHWP78 = Hot Wheels: Velocity X GHYE6S = The Haunted Mansion GHZE5D = NHL Hitz Pro GI2J18 = Momotarou Dentetsu 12 GIAE7D = Ice Age 2: The Meltdown GIAP7D = Ice Age 2 : Jetzt Taut's GIBE4F = The Italian Job GIBP4F = The Italian Job GICD78 = Die Unglaublichen GICE78 = The Incredibles GICF78 = The Incredibles GICH78 = The Incredibles GICJG9 = Mr. Inkurediburu GICP78 = The Incredibles GIFJDQ = Generation of Chaos Exceed GIGJ8P = Bleach GC: Tasogare Ni Mamieru Shinigami GIHD78 = Scooby-Doo! Nacht der 100 Schrecken GIHE78 = Scooby-Doo! Night of 100 Frights GIHP78 = Scooby-Doo! Night of 100 Frights GIIJ18 = Momotarou Dentetsu 11 GIJEFP = Space Raiders GIJJC0 = Space Raiders GIKE70 = Ikaruga GIKJ70 = Ikaruga GIKP70 = Ikaruga GILE51 = Aggressive Inline GILP51 = Aggressive Inline GINE69 = Batman Begins GINX69 = Batman Begins GIPEAF = Shonen Jump's One Piece: Pirates Carnival GIPJB2 = Shonen Jump's One Piece: Pirates Carnival GIQE78 = The Incredibles: Rise of the Underminer GIQJ8P = The Incredibles: Rise of the Underminer GIQP78 = The Incredibles: Rise of the Underminer GIQX78 = The Incredibles: Rise of the Underminer GIQY78 = Die Unglaublichen: Der Angriff Des Tunnelgräbers GISE36 = Second Sight GISP36 = Second Sight GITE01 = Geist GITP01 = Geist GIVE4Z = Intellivision Lives GIZE52 = Ty the Tasmanian Tiger 3: Night of the Quinkan GJ2JCM = Jikkyou World Soccer 2002 GJ2PA4 = International Superstar Soccer 2 GJ3PA4 = International Superstar Soccer 3 GJBE18 = Bomberman Jetters GJBE5G = Bomberman Jetters GJBJ18 = Bomberman Jetters GJCE8P = Samurai Jack: The Shadow of Aku GJCP8P = Samurai Jack: The Shadow of Aku GJDE5S = Judge Dredd: Dredd vs. Death GJDX7D = Judge Dredd: Dredd vs. Death GJDY7D = Judge Dredd: Dredd vs. Death GJFE78 = Jimmy Neutron Jet Fusion GJFP78 = Jimmy Neutron Jet Fusion GJKD52 = Star Wars Jedi Knight II: Jedi Outcast GJKE52 = Star Wars Jedi Knight II: Jedi Outcast GJKF52 = Star Wars Jedi Knight II: Jedi Outcast GJKP52 = Star Wars Jedi Knight II: Jedi Outcast GJNE78 = Jimmy Neutron Boy Genius GJNP78 = Jimmy Neutron Boy Genius GJPJCM = Jikkyou Powerful Pro Yakyuu 11 GJSJ18 = Hudson Selection Vol. 2: Star Soldier GJUD78 = Tak und die Macht des Juju GJUE78 = Tak and the Power of Juju GJUF78 = Tak and the Power of JuJu GJUP78 = Tak and the Power of JuJu GJWE78 = Tak: The Great JuJu Challenge GJWP78 = Tak: The Great JuJu Challenge GJXE51 = Vexx GJXP51 = Vexx GJYE78 = Jimmy Neutron: Attack of the Twonkies GJYP78 = Jimmy Neutron Boy Genius: Attack of the Twonkies GJZE52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GJZP52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GK2D52 = Spider-Man 2 GK2E52 = Spider-Man 2 GK2F52 = Spider-Man 2 GK2P52 = Spider-Man 2 GK3E8P = NBA 2K3 GK3P8P = NBA 2K3 GK4E01 = Baten Kaitos Origins GK4J01 = Baten Kaitos II: Hajimari no Tsubasa to Kamigami no Shishi GK5E78 = Monster House GK5P78 = Monster House GK5X78 = Monster House GK6JA4 = Croket Banking No Kikiwosukue GK7E08 = Killer7 GK7J08 = Killer7 GK7P08 = Killer 7 GK9EA4 = Karaoke Revolution Party GKAE8P = Amazing Island GKAJ8P = Kaijuu no Shima: Amazing Island GKBEAF = Baten Kaitos Eternal Wings and the Lost Ocean GKBJAF = Baten Kaitos: Owaranai Tsubasa to Ushinawareta Umi GKBPAF = Baten Kaitos: Die Schwingen der Ewigkeit und der verlorene Ozean GKDJ01 = Kyojin no Doshin GKDP01 = Doshin the Giant GKEJA4 = PAWAFURU PUROYAKYU 12 KETTEIBAN GKFEGG = Chaos Field GKFJ8P = Chaos Field Expanded GKGE01 = Donkey Konga GKGJ01 = Donkey Konga GKGP01 = Donkey Konga GKHEA4 = King Arthur GKHPA4 = King Arthur GKJD78 = Cars GKJE78 = Cars GKJF78 = Cars GKJH78 = Cars GKJJ78 = Cars GKJP78 = Cars GKJS78 = Cars GKKE69 = Knockout Kings 2003 GKKP69 = Knockout Kings 2003 GKLD69 = Der Herr der Ringe: Die Rückkehr des Königs GKLE69 = Lord of the Rings: The Return of the King GKLF69 = Lord of the Rings: The Return of the King GKLI69 = Lord of the Rings: The Return of the King GKLJ69 = The Lord of the Rings: The Return of the King GKLP69 = Lord of the Rings: The Return of the King GKLS69 = Lord of the Rings: The Return of the King GKME41 = Prince of Persia: The Two Thrones GKMP41 = Prince of Persia: The Two Thrones GKNEB2 = Ultimate Muscle: Legends vs. New Generation GKNJB2 = Kinnikuman Nisei: Shinsedai Choujin vs Densetsu Choujin GKOE70 = Kao The Kangaroo Round 2 GKOP6V = Kao The Kangaroo Round 2 GKPJA4 = Jikkyou Powerful Pro Yakyuu 12 GKQJ01 = Kururin Squash! GKREB2 = Ribbit King GKRPB2 = Ribbit King GKSE52 = Kelly Slater's Pro Surfer GKSP52 = Kelly Slater's Pro Surfer GKSX52 = Kelly Slater's Pro Surfer GKTJA4 = Captain Tsubasa: Ougon Sedai no Chousen GKUE9G = Scaler GKWJ18 = DreamMix TV World Fighters GKXJE7 = Kiwame Mahjong DX2 GKYE01 = Kirby Air Ride GKYJ01 = Kirby Airride GKYP01 = Kirby Air Ride GKZD9G = Codename: Kids Next Door: Operation: V.I.D.E.O.S.P.I.E.L. GKZE9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZF9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP54 = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GL2E51 = Legends of Wrestling 2 GL2P51 = Legends of Wrestling II GL3JE8 = Lupin The Third - Umi Ni Kieta Hihou GL5E4F = LEGO Star Wars: The Video Game GL5P4F = LEGO Star Wars: The Video Game GL5X4F = Lego Star Wars : Das Videospiel GL7E64 = LEGO Star Wars II: The Original Trilogy GL7P64 = LEGO Star Wars II: Die klassische Trilogie GL8D4F = Lara Croft Tomb Raider: Legend GL8E4F = Lara Croft Tomb Raider: Legend GL8F4F = Lara Croft Tomb Raider: Legend GL8P4F = Lara Croft Tomb Raider: Legend GLBE8P = Home Run King GLCD52 = Lemony Snicket: Rätselhafte Ereignisse GLCE52 = Lemony Snickets A Series Of Unfortunate Events GLCF52 = Lemony Snickets A Series Of Unfortunate Events GLCP52 = Lemony Snickets A Series Of Unfortunate Events GLCS52 = Lemony Snickets A Series Of Unfortunate Events GLEE08 = Resident Evil 3: Nemesis GLEJ08 = BioHazard 3: Last Escape GLEP08 = Resident Evil 3: Nemesis GLGP41 = Largo Winch : Empire Under Threat GLHEG9 = Flushed Away GLHPG9 = Flutsch und weg GLIJA7 = Special Jinsei Game GLJJMS = Radirgy GLLE78 = Ratatouille GLLF78 = Ratatouille GLME01 = Luigi's Mansion GLMJ01 = Luigi's Mansion GLMP01 = Luigi's Mansion GLNE69 = Looney Tunes: Back in Action GLNP69 = Looney Tunes: Back in Action GLOD69 = Der Herr Der Ringe: Die Zwei Türme GLOE69 = Lord of the Rings: The Two Towers GLOF69 = Lord of the Rings: The Two Towers GLOI69 = Lord of the Rings: The Two Towers GLOP69 = Lord of the Rings: The Two Towers GLOS69 = Lord of the Rings: The Two Towers GLQE41 = Tom Clancy's Rainbow Six: Lockdown GLQP41 = Tom Clancy's Rainbow Six: Lockdown GLRD64 = Star Wars Rogue Squadron III: Rebel Strike GLRE64 = Star Wars Rogue Squadron III: Rebel Strike GLRF64 = Star Wars Rogue Squadron III: Rebel Strike GLRJ13 = Star Wars Rogue Squadron III: Rebel Strike GLRP64 = Star Wars Rogue Squadron III: Rebel Strike GLSD64 = Gladius GLSE64 = Gladius GLSF64 = Gladius GLSP64 = Gladius GLUE7U = Lotus Challenge GLVD4Q = Die Chroniken von Narnia: Der König von Narnia GLVE4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVF4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVP4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLWE51 = Legends of Wrestling GLWP51 = Legends of Wrestling GLXJ29 = Legend of Golfer GLYE69 = NBA Live 2005 GLYP69 = NBA Live 2005 GLZD69 = 007: Liebesgrüsse aus Moskau GLZE69 = 007: From Russia With Love GLZF69 = James Bond 007: From Russia With Love GLZP69 = James Bond 007: From Russia With Love GM2E8P = Super Monkey Ball 2 GM2J8P = Super Monkey Ball 2 GM2P8P = Super Monkey Ball 2 GM3E69 = Madden NFL 2003 GM3P69 = Madden NFL 2003 GM4E01 = Mario Kart: Double Dash!! GM4J01 = Mario Kart: Double Dash!! GM4P01 = Mario Kart: Double Dash!! GM5D7D = Metal Arms: Glitch in the System GM5E7D = Metal Arms: Glitch in the System GM5F7D = Metal Arms: Glitch in the System GM5P7D = Metal Arms: Glitch in the System GM6EE9 = Medabots Infinity GM6PE9 = Medabots Infinity GM8E01 = Metroid Prime GM8J01 = Metroid Prime GM8P01 = Metroid Prime GM9E6S = Muppets Party Cruise GMAE51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMAP51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMBE8P = Super Monkey Ball GMBJ8P = Super Monkey Ball GMBP8P = Super Monkey Ball GMDE69 = Madden NFL 2002 GMEE70 = Men In Black II: Alien Escape GMEP70 = Men In Black II: Alien Escape GMFD69 = Medal of Honor: Frontline GMFE69 = Medal of Honor: Frontline GMFF69 = Medal of Honor: Frontline GMFI69 = Medal of Honor: Frontline GMFP69 = Medal of Honor: Frontline GMFS69 = Medal of Honor: Frontline GMHE52 = Mat Hoffmans Pro Bmx 2 GMHF52 = Mat Hoffman's Pro BMX 2 GMHP52 = Mat Hoffman's Pro BMX 2 GMIE70 = Mission Impossible: Operation Surma GMIP70 = Mission Impossible: Operation Surma GMJE41 = Monster Jam: Maximum Destruction GMJP41 = Monster Jam: Maximum Destruction GMKD5D = Mortal Kombat: Deadly Alliance GMKE5D = Mortal Kombat: Deadly Alliance GMKP5D = Mortal Kombat: Deadly Alliance GMLEA4 = ESPN MLS Extra Time 2002 GMNE78 = Monsters, Inc. Scream Arena GMNP78 = Die Monster AG : Monster Ball GMOP70 = Micro Machines GMPE01 = Mario Party 4 GMPJ01 = Mario Party 4 GMPP01 = Mario Party 4 GMQE70 = Monopoly Party GMQP70 = Monopoly Party GMRE70 = Big Air Freestyle GMRP70 = Big Air Freestyle GMSE01 = Super Mario Sunshine GMSJ01 = Super Mario Sunshine GMSP01 = Super Mario Sunshine GMTE69 = Disney's Party GMTP69 = Disney's Party GMUE5D = Dr. Muto GMWD52 = Minority Report: Everybody Runs GMWE52 = Minority Report: Everybody Runs GMWF52 = Minority Report: Everybody Runs GMWP52 = Minority Report: Everybody Runs GMXE70 = Enter The Matrix GMXJB2 = Enter The Matrix GMXP70 = Enter The Matrix GMYJ8P = Gekitou Pro Yakyuu GMZE41 = Monster 4x4: Masters Of Metal GN2E70 = Nascar: Dirt To Daytona GN3E5D = NHL Hitz 2003 GN3P5D = NHL Hitz 2003 GN4E69 = Nascar 2005: Chase For The Cup GN5E69 = NHL 2005 GN5P69 = NHL 2005 GN6E69 = NHL 06 GN6P69 = NHL 06 GN7E69 = NFL Street 2 GN7P69 = NFL Street 2 GN8E69 = NBA Live 2004 GN8P69 = NBA Live 2004 GN9E70 = Nickelodeon Party Blast GNAE8P = NCAA College Football 2K3 GNBE01 = NBA Courtside 2002 GNBP01 = NBA Courtside 2002 GNCE69 = Nascar Thunder 2003 GNDD69 = Need For Speed Underground GNDE69 = Need For Speed Underground GNDF69 = Need For Speed Underground GNDP69 = Need For Speed Underground GNED78 = Findet Nemo GNEE78 = Finding Nemo GNEF78 = Finding Nemo GNEP78 = Finding Nemo GNES78 = Finding Nemo GNFE5D = NFL Blitz 2002 GNGE69 = NCAA Football 2003 GNHE5D = NHL Hitz 2002 GNHP5D = NHL Hitz 20-02 GNIEA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNIPA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNJEAF = I-Ninja GNKE8P = NCAA College Basketball 2K3 GNLE69 = NBA Live 2003 GNLP69 = NBA Live 2003 GNMEAF = Namco Museum GNNE69 = NFL Street GNNP69 = NFL Street GNOE78 = Nicktoons Unite! GNOX78 = Spongebob Squarepants & Friends: Unite! GNPP70 = Nickelodeon Party Blast GNQE69 = Madden NFL 2005 GNQP69 = Madden NFL 2005 GNREDA = Naruto Clash of Ninja GNRJDA = NARUTO Gekitô Ninja Taisen! GNSE69 = NBA Street GNSJ69 = NBA Street GNUEDA = Naruto Clash of Ninja 2 GNUJDA = Naruto: Gekitou Ninja Taisen! 2 GNUPDA = Naruto: Clash of Ninja - European Version GNVE69 = NHL 2004 GNVP69 = NHL 2004 GNWE69 = Def Jam: Fight For NY GNWP69 = Def Jam: Fight For NY GNXE69 = NCAA Football 2004 GNZE69 = NBA Street Vol.2 GNZP69 = NBA Street Vol.2 GO2D4F = Blood Omen 2: The Legacy of Kain Series GO2E4F = Blood Omen 2: The Legacy of Kain Series GO2F4F = Blood Omen 2: The Legacy of Kain Series GO2P4F = Blood Omen 2: The Legacy of Kain Series GO3E5D = NFL Blitz 2003 GO7D69 = James Bond 007: NightFire GO7E69 = 007: NightFire GO7F69 = James Bond 007: NightFire GO7P69 = James Bond 007: NightFire GO7S69 = James Bond 007: NightFire GOAE52 = Cabela's Outdoor Adventures GOBE4Z = Bad Boys: Miami Takedown GOBP7N = Bad Boys II GOCE5D = RoadKill GODJGA = Ohenro-San: Hosshin no Dojo GOFE7L = Outlaw Golf GOFP6S = Outlaw Golf GOGJB2 = One Piece: Grand Battle! 3 GOME01 = Mario Power Tennis GOMJ01 = Mario Tennis GC GOMP01 = Mario Power Tennis GOND69 = Medal of Honor: European Assault GONE69 = Medal of Honor: European Assault GONF69 = Medal of Honor: European Assault GONJ13 = Medal of Honor: Europa Kyoushuu GONP69 = Medal of Honor: European Assault GOOE01 = Odama GOOJ01 = Odama GOOP01 = Odama GOPEB2 = Shonen Jump's One Piece: Grand Battle GOPJB2 = One Piece: Grand Battle! Rush GOQE82 = One Piece: Grand Adventure GOQEAF = Shonen Jump's One Piece: Grand Adventure GOSE41 = Open Season GOSP41 = Open Season GOSX41 = Jagdfieber GOUPNK = Cocoto Funfair GOWD69 = Need For Speed Most Wanted GOWE69 = Need For Speed Most Wanted GOWF69 = Need For Speed Most Wanted GOWJ69 = Need For Speed Most Wanted GOWP69 = Need For Speed Most Wanted GOYD69 = GoldenEye : Rogue Agent GOYE69 = GoldenEye: Rogue Agent GOYF69 = GoldenEye: Rogue Agent GOYP69 = GoldenEye: Rogue Agent GOYS69 = GoldenEye: Rogue Agent GP2EAF = Pac-Man World 2 GP2P69 = Pac-Man World 2 GP3E78 = The Polar Express GP3P78 = Der Polarexpress GP4J18 = Hudson Selection Vol. 3: Bonk's Adventure GP5E01 = Mario Party 5 GP5J01 = Mario Party 5 GP5P01 = Mario Party 5 GP6E01 = Mario Party 6 GP6J01 = Mario Party 6 GP6P01 = Mario Party 6 GP7E01 = Mario Party 7 GP7J01 = Mario Party 7 GP7P01 = Mario Party 7 GP8EAF = Pac-Man World 3 GP8P69 = Pac-Man World 3 GP8PAF = Pac-Man World 3 GP9E7F = Rogue Ops GP9P7F = Rogue Ops GPAE01 = Pokémon Channel GPAJ01 = Pokémon Channel GPAP01 = Pokémon Channel GPAU01 = Pokémon Channel GPDE51 = Dakar 2: The World's Ultimate Rally GPDP51 = Dakar 2: The World's Ultimate Rally GPEJ2Q = Pool Edge GPHD52 = Pitfall: Die verlorene Expedition GPHE52 = Pitfall: The Lost Expedition GPHF52 = Pitfall: The Lost Expedition GPHP52 = Pitfall: The Lost Expedition GPIE01 = Pikmin GPIJ01 = Pikmin GPIP01 = Pikmin GPJJCM = Jikkyou Powerful Pro Yakyuu 10 GPKE41 = Disney's PK Out of the Shadows GPLD9G = Disney's Ferkels Grosses Abenteuer - Spiel GPLE9G = Piglet's Big Game GPLF9G = Piglet's Big Game GPLP9G = Piglet's Big Game GPMEAF = Pac Man Fever GPNE08 = P.N.03 GPNJ08 = P.N.03 GPNP08 = P.N.03 GPOE8P = Phantasy Star Online Episode I & II GPOJ8P = Phantasy Star Online Episode I & II GPOP8P = Phantasy Star Online Episode I&II GPPJCM = Jikkyou Powerful Pro Yakyuu 9 GPQE6L = The Powerpuff Girls: Relish Rampage GPQP6L = The Powerpuff Girls: Kampf den Gurkenschurken GPRE7U = Pool Paradise GPRP7U = Pool Paradise GPSE8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPSJ8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPSP8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPTE41 = Prince of Persia: The Sands of Time GPTP41 = Prince of Persia: The Sands of Time GPUE8P = Puyo Pop Fever GPUP6W = Puyo Pop Fever GPUP8P = Puyo Pop Fever GPVE01 = Pikmin 2 GPVJ01 = Pikmin 2 GPVP01 = Pikmin 2 GPWEAF = Spawn: Armageddon GPWP69 = Spawn: Armageddon GPWPAF = Spawn: Armageddon GPXE01 = Pokémon Box: Ruby & Sapphire GPXJ01 = Pokémon Box: Ruby & Sapphire GPXP01 = Pokémon Box: Rubin & Saphir GPYJ8P = Puyo Pop Fever GPZJ01 = Nintendo Puzzle Collection GQ4E78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ4F78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ4P78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ8E69 = Madden NFL 08 GQBE51 = NFL Quarterback Club 2002 GQCD52 = Call of Duty 2: Big Red One GQCE52 = Call of Duty 2: Big Red One GQCF52 = Call of Duty 2: Big Red One GQCP52 = Call of Duty 2: Big Red One GQCS52 = Call of Duty 2: Big Red One GQFFFK = Franklin: A Birthday Surprise GQLE9G = Dora The Explorer: Journey To The Purple Planet GQLP54 = Dora The Explorer: Journey to the Purple Planet GQNE5D = Mortal Kombat: Deception GQPE78 = SpongeBob SquarePants: Battle for Bikini Bottom GQPP78 = SpongeBob Squarepants: Battle For Bikini Bottom GQQD78 = Nickelodeon SpongeBob Schwammkopf: Film ab! GQQE78 = SpongeBob SquarePants: Lights, Camera, Pants! GQQF78 = SpongeBob SquarePants: Lights, Camera, PANTS! GQQH78 = SpongeBob SquarePants: Lights, Camera, Pants! GQQP78 = SpongeBob SquarePants: Lights, Camera, Pants! GQRJ18 = Hudson Selection Vol. 1: Cubic Lode Runner GQSDAF = Tales of Symphonia GQSEAF = Tales of Symphonia GQSFAF = Tales of Symphonia GQSIAF = Tales of Symphonia GQSPAF = Tales of Symphonia GQSSAF = Tales of Symphonia GQTE4Q = Meet the Robinsons GQWE69 = Harry Potter: Quidditch World Cup GQWJ69 = Harry Potter World Cup GQWP69 = Harry Potter: Quidditch World Cup GQWX69 = Harry Potter: Quidditch - Weltmeisterschaft GQXE69 = Madden NFL 2004 GQXP69 = Madden NFL 2004 GQZJ01 = Densetsu no Quiz Ou Ketteisen GR2E52 = Lost Kingdoms 2 GR2JCQ = Rune II: Koruten no Kagi no Himitsu GR2P52 = Lost Kingdoms 2 GR3E5D = Red Card 2003 GR4EMZ = MC Groovz Dance Craze GR4PMZ = MC Groovz Dance Craze GR5J1K = Robocop: Aratanaru Kiki GR6D78 = Bratz: Rock Angelz GR6E78 = Bratz: Rock Angelz GR6F78 = Bratz: Rock Angelz GR6P78 = Bratz: Rock Angelz GR8D69 = Medal of Honor: Rising Sun GR8E69 = Medal of Honor: Rising Sun GR8F69 = Medal of Honor: Rising Sun GR8J69 = Medal of Honor: Rising Sun GR8P69 = Medal of Honor: Rising Sun GR9E6L = Reign of Fire GR9P6L = Die Herrschaft Des Feuers GRAE5Z = Rally Championship GRAP75 = Rally Championship GRBE6S = Robotech: Battlecry GRBP6S = Robotech : Battlecry GRDP5D = RedCard GREE08 = Mega Man Network Transmission GREJ08 = RockMan EXE Transmission GREP08 = Mega Man Network Transmission GRFD78 = Red Faction II GRFE78 = Red Faction II GRFF78 = Red Faction II GRFP78 = Red Faction II GRHE41 = Rayman 3: Hoodlum Havoc GRHP41 = Rayman 3: Hoodlum Havoc GRJEAF = R: Racing Evolution GRJJAF = R:Racing Evolution: Life in the Fast Lane GRJP69 = R: Racing GRKE41 = Rocky GRKP7G = Rocky GRLE41 = Pro Rally GRLP41 = Pro Rally GRMJDA = Monopoly: Mezase!! Daifugou Jinsei!! GRNE52 = Lost Kingdoms GRNJCQ = Rune GRNP52 = Lost Kingdoms GROE5Z = Road Trip: The Arcade Edition GROP7J = Gadget Racers GRQE41 = City Racer GRRE78 = Rugrats: Royal Ransom GRRP78 = Rugrats: Royal Ransom GRSEAF = SoulCalibur II GRSJAF = SoulCalibur II GRSPAF = SoulCalibur II GRUE78 = Power Rangers Dino Thunder GRUF78 = Power Rangers Dino Thunder GRUP78 = Power Rangers Dino Thunder GRVEA4 = Rave Master GRWJD9 = Super Robot Taisen GC GRYE41 = Rayman Arena GS2D78 = Summoner: A Goddess Reborn GS2E78 = Summoner: A Goddess Reborn GS2F78 = Summoner: A Goddess Reborn GS2P78 = Summoner: A Goddess Reborn GS3E51 = SX Superstar GS3P51 = SX Superstar GS7E5D = MLB SlugFest 2004 GS8E7D = Spyro: Enter the Dragonfly GS8P7D = Spyro: Enter the Dragonfly GS9E6S = Shrek Extra Large GS9P6S = Shrek Extra Large GSAE01 = Star Fox Adventures GSAJ01 = StarFox Adventures GSAP01 = Star Fox Adventures GSBJ8P = Sonic Adventure 2: Battle GSCE51 = Jeremy McGrath SuperCross World GSCP51 = Jeremy McGrath SuperCross World GSDEAF = Smashing Drive GSEJB2 = Shaman King: Soul Fight GSGE5D = MLB SlugFest 2003 GSHE5D = SpyHunter GSHP5D = SpyHunter GSKE7D = The Scorpion King: Rise of the Akkadian GSKP7D = The Scorpion King : Aufstieg des Akkadiers GSMD52 = Spider-Man GSME52 = Spider-Man: The Movie GSMF52 = Spider-Man GSMP52 = Spider-Man GSNE8P = Sonic Adventure 2: Battle GSNP8P = Sonic Adventure 2: Battle GSOE8P = Sonic Mega Collection GSOJ8P = Sonic Mega Collection GSOP8P = Sonic Mega Collection GSPE69 = The Simpsons: Road Rage GSPP69 = The Simpsons: Road Rage GSQE78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSQP78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSRE7S = Smuggler's Run: Warzones GSRP7S = Smuggler's Run: Warzones GSSE8P = Sega Soccer Slam GSSJ8P = Sega Soccer Slam GSSP70 = Sega Soccer Slam GSSP8P = Sega Soccer Slam GSTE69 = SSX Tricky GSTJ69 = SSX Tricky GSTP69 = SSX Tricky GSUE70 = Superman: Shadow of Apokolips GSUP70 = Superman: Shadow of Apokolips GSVE78 = MX Superfly Featuring Ricky Carmichael GSVP78 = MX Superfly featuring Ricky Carmichael GSWD64 = Star Wars Rogue Leader: Rogue Squadron II GSWE64 = Star Wars Rogue Squadron II: Rogue Leader GSWF64 = Star Wars Rogue Leader: Rogue Squadron II GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = Star Wars Rogue Leader: Rogue Squadron II GSWP64 = Star Wars Rogue Leader: Rogue Squadron II GSWS64 = Star Wars Rogue Leader: Rogue Squadron II GSXD64 = Star Wars: The Clone Wars GSXE64 = Star Wars: The Clone Wars GSXF64 = Star Wars: The Clone Wars GSXJ13 = Star Wars: Clone Sensou GSXP64 = Star Wars: The Clone Wars GSXS64 = Star Wars: The Clone Wars GSYE6S = Shrek: Super Party GSYP6S = Shrek: Super Party GSZP41 = Speed Challenge: Jacques Villeneuve Racing Vision GT2J18 = Tengai Makyou 2: Manji Maru GT3D52 = Tony Hawk's Pro Skater 3 GT3E52 = Tony Hawk's Pro Skater 3 GT3F52 = Tony Hawk's Pro Skater 3 GT3J52 = Tony Hawk's Pro Skater 3 GT3P52 = Tony Hawk's Pro Skater 3 GT4D52 = Tony Hawk's Pro Skater 4 GT4E52 = Tony Hawk's Pro Skater 4 GT4F52 = Tony Hawk's Pro Skater 4 GT4P52 = Tony Hawk's Pro Skater 4 GT5E7N = Starsky & Hutch GT5P7N = Starsky & Hutch GT6E70 = Terminator 3: The Redemption GT6J70 = Terminator 3: The Redemption GT6P70 = Terminator 3: The Redemption GT7E41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7P41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7X41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT8E78 = Big Mutha Truckers GT8P78 = Big Mutha Truckers GT8P7N = Big Mutha Truckers GTAE5S = Top Angler : Real Bass Fishing GTAP5S = Top Angler: Real Bass Fishing GTCJBL = GT Cube GTDE52 = Tony Hawk's Underground GTDP52 = Tony Hawk's Underground GTEE01 = 1080° Avalanche GTEJ01 = 1080° Silver Storm GTEP01 = 1080° Avalanche GTFEA4 = Teenage Mutant Ninja Turtles GTFPA4 = Teenage Mutant Ninja Turtles GTGE60 = Top Gun: Combat Zones GTGP60 = Top Gun: Combat Zones GTHJD9 = Charinko Hero GTIE69 = Tiger Woods PGA Tour 2003 GTIP69 = Tiger Woods PGA Tour 2003 GTJE5L = Tom & Jerry in War of the Whiskers GTKD51 = Turok Evolution GTKE51 = Turok Evolution GTKP51 = Turok Evolution GTLE52 = True Crime: Streets of LA GTLP52 = True Crime: Streets of LA GTLX52 = True Crime: Streets of LA GTMJDA = Mutsu To Nohohon GTNJ18 = Hudson Selection Vol. 4: Adventure Island GTOJAF = Tales of Symphonia GTPP6S = Knights Of The Temple : Infernal Crusade GTQE6S = Tonka: Rescue Patrol GTRE78 = Tetris Worlds GTRP78 = Tetris Worlds GTSE4F = TimeSplitters 2 GTSP4F = TimeSplitters 2 GTUE8G = Tube Slider - The Championship of Future Formula GTVE70 = Transworld Surf: Next Wave GTWE70 = Taz Wanted GTWP70 = Taz Wanted GTYE69 = Ty the Tasmanian Tiger GTYP69 = Ty: The Tasmanian Tiger GTZE41 = Tarzan Untamed GTZP41 = Tarzan Freeride GU2D78 = 2 Games in 1: Die Unglaublichen - The Incredibles + Findet Nemo GU2F78 = 2 Games in 1: The Incredibles / Finding Nemo GU3D78 = 2 Games in 1: Nickelodeon SpongeBob Schwammkopf: Der Film + Nickelodeon Tak 2: Der Stab der Träume GU4Y78 = 2 Games in 1 : Nickelodeon SpongeBob Schwammkopf: Der Film + Nickelodeon SpongeBob Schwammkopf: Schlacht um Bikini Bottom GU6E78 = Nicktoons - Battle for Volcano Island GUBE69 = The Urbz: Sims in the City GUBJ13 = The Urbz: Sims In The City GUBP69 = Die Urbz: Sims in the City GUCD69 = UEFA Champions League 2004-2005 GUCF69 = UEFA Champions League 2004-2005 GUCP69 = UEFA Champions League 2004-2005 GUFE4Z = Ultimate Fighting Championship Throwdown GUFP4Z = UFC: Throwdown GUGD69 = Need For Speed Underground 2 GUGE69 = Need For Speed Underground 2 GUGF69 = Need For Speed Underground 2 GUGP69 = Need For Speed Underground 2 GUMD52 = Gun GUME52 = Gun GUMP52 = Gun GUNE5D = Gauntlet: Dark Legacy GUNP5D = Gauntlet: Dark Legacy GUPE8P = Shadow the Hedgehog GUPJ8P = Shadow the Hedgehog GUPP8P = Shadow the Hedgehog GUSE7F = Universal Studios Theme Park Adventure GUSP7F = Universal Studios Theme Park Adventure GUTD52 = Ultimate Spider-Man GUTE52 = Ultimate Spider-Man GUTF52 = Ultimate Spider-Man GUTI52 = Ultimate Spider-Man GUTJC0 = Ultimate Spider-Man GUTP52 = Ultimate Spider-Man GUTS52 = Ultimate Spider-Man GUVE51 = Freestyle Street Soccer GUVP51 = Urban Freestyle Soccer GUZE41 = Batman: Rise of Sin Tzu GUZP41 = Batman Rise of Sin Tzu GV3J70 = V-Rally 3 GV3P70 = V-Rally 3 GV4E69 = MVP Baseball 2005 GVCE08 = Viewtiful Joe: Red Hot Rumble GVCJ08 = Viewtiful Joe: Battle Carnival GVCP08 = Viewtiful Joe: Red Hot Rumble GVDE78 = Bratz Forever Diamondz GVDP78 = Bratz Forever Diamondz GVHE4F = Bionicle Heroes GVJE08 = Viewtiful Joe GVJJ08 = Viewtiful Joe GVJP08 = Viewtiful Joe GVKE52 = Cabela's Dangerous Hunts 2 GVLD69 = Marvel Nemesis: Rise of the Imperfects GVLE69 = Marvel Nemesis: Rise of the Imperfects GVLF69 = Marvel Nemesis: Rise of the Imperfects GVLP69 = Marvel Nemesis: Rise of the Imperfects GVMP41 = Super Bust-A-Move All Stars GVOE69 = Bionicle GVOP69 = Bionicle GVPE69 = MVP Baseball 2004 GVRE7H = Grooverider Slot Car Thunder GVS46E = Virtua Striker 4 Ver.2006 GVS46J = Virtua Striker 4 Ver.2006 GVSE8P = Virtua Striker 2002 GVSJ8P = VIRTUA STRIKER 3 ver.2002 GVSJ9P = Virtua Striker 4 Ver.2006 GVSP8P = Virtua Striker 3 Ver. 2002 GVWJDQ = Gakuen Toshi Vara Noir Roses GW2E78 = WWE Day of Reckoning 2 GW2P78 = WWE Day of Reckoning 2 GW3E78 = WWE WrestleMania X8 GW3JG2 = WWE WrestleMania X8 GW3P78 = WWE Wrestlemania X8 GW4E69 = Tiger Woods PGA Tour 2004 GW4P69 = Tiger Woods PGA Tour 2004 GW5D69 = Need For Speed Carbon GW5E69 = Need For Speed Carbon GW5F69 = Need For Speed Carbon GW5P69 = Need For Speed Carbon GW6JEM = Winning Eleven 6 Final Evolution GW7D69 = James Bond 007 Agent im Kreuzfeuer GW7E69 = 007: Agent Under Fire GW7F69 = James Bond 007 in Agent Under Fire GW7P69 = James Bond 007 in Agent Under Fire GW8E52 = World Series of Poker GW9E78 = WWE WrestleMania XIX GW9JG2 = WWE WrestleMania XIX GW9P78 = WWE WrestleMania XIX GWAD8P = Spartan Total Warrior GWAE8P = Spartan Total Warrior GWAF8P = Spartan Total Warrior GWAP8P = Spartan Total Warrior GWBE41 = Worms Blast GWBP41 = Worms Blast GWDP6S = World Racing GWEE51 = 18 Wheeler: American Pro Trucker GWEP8P = 18 Wheeler American Pro Trucker GWGE4F = Swingerz Golf GWGJ4F = Wai Wai Golf GWGP4F = Ace Golf GWHE41 = Winnie The Pooh Rumbly Tumbly Adventures GWHP41 = Winnie Puuh: Kunterbunte Abenteuer GWJE52 = Tony Hawk's American Wasteland GWKE41 = Peter Jackson's King Kong: The Official Game of the Movie GWKP41 = Peter Jackson's King Kong: The Official Game of the Movie GWLE6L = Wallace & Gromit in Project Zoo GWLP6L = Wallace & Gromit : Project Zoo GWLX6L = Wallace & Gromit in Projekt Zoo GWME51 = Worms 3D GWMP8P = Worms 3D GWOE5G = Blowout GWPE78 = WWE Day of Reckoning GWPJG2 = WWE Day of Reckoning GWPP78 = WWE Day of Reckoning GWQE52 = Wreckless: The Yakuza Missions GWQP52 = Wreckless: The Yakuza Missions GWRE01 = Wave Race: Blue Storm GWRJ01 = Wave Race: Blue Storm GWRP01 = Wave Race: Blue Storm GWSEA4 = ESPN International Winter Sports 2002 GWSJA4 = Hyper Sports 2002 Winter GWSPA4 = ESPN International Winter Sports GWTEA4 = WTA Tour Tennis GWTJA4 = WTA Tour Tennis GWTPA4 = Pro Tennis WTA Tour GWUE7D = Whirl Tour GWUP7D = Whirl Tour GWVE52 = X2: Wolverine's Revenge GWVP52 = X-Men 2: Wolverine's Revenge GWVX52 = X-Men 2 : Wolverine's Revenge GWWE01 = Wario World GWWJ01 = Wario World GWWP01 = Wario World GWYE41 = Tom Clancy's Splinter Cell: Double Agent GWYX41 = Tom Clancy's Splinter Cell: Double Agent GWZE01 = Dance Dance Revolution: Mario Mix GWZJ01 = Dance Dance Revolution: Mario Mix GWZP01 = Dancing Stage Mario Mix GX2D52 = X-Men Legends II: Rise of Apocalypse GX2E52 = X-Men Legends II: Rise of Apocalypse GX2P52 = X-Men Legends II: Rise of Apocalypse GX2S52 = X-Men Legends II: Rise of Apocalypse GX3E41 = XIII GX3P41 = XIII GX3X41 = XIII GXAE51 = XGRA Extreme G Racing Association GXAP51 = XGRA Extreme G Racing Association GXBE69 = SSX 3 GXBP69 = SSX 3 GXCE01 = Custom Robo GXEE8P = Sonic Riders GXEJ8P = Sonic Riders GXEP8P = Sonic Riders GXFD69 = FIFA Football 2004 GXFE69 = FIFA Soccer 2004 GXFF69 = FIFA Football 2004 GXFI69 = FIFA Football 2004 GXFP69 = FIFA Football 2004 GXFS69 = FIFA Football 2004 GXGE08 = Mega Man X Collection GXLE52 = X-Men Legends GXLP52 = X-Men Legends GXLX52 = X-Men Legends GXME52 = X-Men: Next Dimension GXMF52 = X-Men: Next Dimension GXMP52 = X-Men: Next Dimension GXNE5D = Rampage Total Destruction GXOE69 = SSX on Tour GXOJ69 = SSX On Tour with Mario GXOP69 = SSX On Tour GXOX69 = SSX On Tour GXPE78 = Sphinx and the Cursed Mummy GXPP78 = Sphinx und die verfluchte Mumie GXQF41 = Taxi 3 GXRE08 = Mega Man X: Command Mission GXRJ08 = Rockman X: Command Mission GXRP08 = Mega Man X: Command Mission GXSE8P = Sonic Adventure DX: Director's Cut GXSP6W = Sonic Adventure DX : Director's Cut GXSP8P = Sonic Adventure DX: Director's Cut GXUE41 = Surf's Up GXXE01 = Pokémon XD: Gale of Darkness GXXJ01 = Pokemon XD: Yami no Kaze Dark Lugia GXXP01 = Pokémon XD: Der Dunkle Sturm GY2E01 = Donkey Konga 2 GY2J01 = Donkey Konga 2 GY2P01 = Donkey Konga 2 GY3J01 = Donkey Konga 3 GYAD78 = Der Tierisch Verrückte Bauernhof GYAE78 = Barnyard GYAP78 = Barnyard GYAX78 = Barnyard GYBE01 = Donkey Kong Jungle Beat GYBJ01 = Donkey Kong Jungle Beat GYBP01 = Donkey Kong Jungle Beat GYFEA4 = Yu-Gi-Oh! The Falsebound Kingdom GYFJA4 = Yu-Gi-Oh! The Falsebound Kingdom GYFPA4 = Yu-Gi-Oh! Königreich der Illusionen GYKEB2 = Zatch Bell! Mamodo Battles GYMJA4 = Jikkyou Powerful Major League GYQE01 = Mario Superstar Baseball GYQJ01 = Super Mario Stadium Miracle Baseball GYQP01 = Mario Superstar Baseball GYRE41 = TMNT GYRP41 = TMNT GYTE69 = Ty The Tasmanian Tiger 2: Bush Rescue GYTP69 = Ty der Tasmanische Tiger 2: Die Bumerang-Gang GYWDE9 = Harvest Moon: A Wonderful Life GYWEE9 = Harvest Moon: A Wonderful Life GYWJ99 = Bokujou Monogatari: Wonderful Life GYWP41 = Harvest Moon: A Wonderful Life GYWPE9 = Harvest Moon: A Wonderful Life GZ2E01 = The Legend of Zelda: Twilight Princess GZ2J01 = Zelda no Densetsu: Twilight Princess GZ2P01 = The Legend of Zelda: Twilight Princess GZ3E70 = Dragon Ball Z: Budokai 2 GZ3P70 = Dragon Ball Z: Budokai 2 GZ3PB2 = Dragon Ball Z Budokai 2 GZCE51 = ZooCube GZCJB0 = ZooCube GZCP51 = Zoocube GZDE70 = Godzilla: Destroy all Monsters Melee GZDJ70 = Godzilla: Kaijuu Dairantou GZDP70 = Godzilla: Destroy all Monsters Melee GZEE70 = Dragon Ball Z: Sagas GZFJBP = Gekituisenki - Zero Fighter GZHJDA = Zoids Full Metal Crash GZLE01 = The Legend of Zelda: The Wind Waker GZLJ01 = Zelda no Densetsu: Kaze no Takuto GZLP01 = The Legend of Zelda: The Wind Waker GZMP7D = Butt-Ugly Martians Zoom or Doom GZOJDA = Zoids vs. GZPE70 = Zapper - One Wicked Cricket! GZPP70 = Zapper: Eine total Durchgeknallte Grille! GZQE7D = Robots GZQJ7D = Robots GZQP7D = Robots GZSE70 = Zoids Battle Legends GZSJDA = Zoids VS. II GZVJDA = Zoids vs. III GZWE01 = Wario Ware Inc.: Mega Party Game$! GZWJ01 = Atumare!! made in wario GZWP01 = Wario Ware Inc.: Mega Party Game$! HAAA = Fotokanal HABA = Wii-Shop-Kanal HABK = Wii Shop Channel HACA = Mii-Kanal HACK = Mii Channel HADE = Internet Kanal HADJ = Internet Channel HADP = Internet-Kanal HAFE = Forecast Channel HAFJ = Weather Channel HAFP = Wetterkanal HAGE = Nachrichtenkanal HAGJ = News Channel HAGP = Nachrichtenkanal HAJE = Everybody Votes Channel HAJJ = Everybody Votes Channel HAJP = Everybody Votes Channel HAPE = Check Mii Out Channel HAPJ = Mii Contest Channel HAPP = Mii-Wettbewerbskanal HATE = Nintendo Channel HATJ = Nintendo Channel HATP = Nintendo Channel HAVJ = Today and Tomorrow Fortune Teller HAVK = Today And Tomorrow Channel HAVP = Today and Tomorrow Channel HAWE = Metroid Prime 3 Preview HAWJ = Metroid Prime 3 Preview HAWP = Metroid Prime 3 Preview HAYA = Fotokanal HAYK = Photo Channel HBNJ = TV Friend Channel HBWE01 = New Super Mario Bros. Wii: Hellboy Edition HC3J = USB Flash Optimization HCAJ = Band Bros. DX Speaker Channel HCAP = Jam with the Band Live HCBJ = Photo Channel 1.0 Restore Program HCDJ = Digicam Print Channel HCFE = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Wii Speak Channel HCGE = Wii + Internet HCGJ = Wii Plus Internet HCGP = Wii Plus Internet HCHJ = Food Service HCIJ = Wii no ma HCJP = BBC iPlayer Channel HCLE = Netflix HCLP = Netflix HCMP = Kirby TV HCQE = Hulu Plus HCQJ = Hulu HCRE = The Legend of Zelda: Skyward Sword Save Data Update Channel HCRJ = The Legend of Zelda Skyward Sword Update HCRP = The Legend of Zelda Skyward Sword Update HCSE = Wii U Transfer Tool HCSJ = Wii U Transfer Tool HCSP = Wii U Transfer Tool HCTE = Wii System Transfer HCTJ = Wii System Transfer HCTP = Wii System Transfer HCUE = Wii Menu Electronic Manual HCUJ = Wii Menu Electronic Manual HCUP = Wii Menu Electronic Manual HCVA = Wii U Menu HCWE = Amazon Instant Video HCWP = Amazon Instant Video HCXE = YouTube HCXJ = YouTube HCXP = YouTube HCZE = Wii System Transfer HWFL = HackWiiFlow JA2J = Shin Megami Tensei JA3J = Kamaitachi no Yoru JA4E = Super Ghouls 'n Ghosts JA4J = Chou-Makai-Mura JA4P = Super Ghouls'n Ghosts JA5J = Heracles no Eikou III: Kamigami no Chinmoku JA6E = Zombies Ate My Neighbors JA6J = Zombies Ate My Neighbors JA6P = Zombies JA7D = ActRaiser JA7E = ActRaiser JA7F = ActRaiser JA7J = Actraiser JA7P = ActRaiser JA8E = Final Fight JA8J = Final Fight JA8P = Final Fight JAAE = Super Mario World JAAJ = Super Mario World JAAK = Super Mario World JAAP = Super Mario World JABJ = Mario no Super Picross JABL = Mario’s Super Picross JACE = F-Zero JACJ = F-Zero JACK = F-Zero JACP = F-Zero JADD = The Legend of Zelda: A Link to the Past JADE = The Legend of Zelda: A Link to the Past JADF = The Legend of Zelda: A Link to the Past JADJ = Zelda no Densetsu: Kamigami no Triforce JADK = The Legend of Zelda: A Link to the Past JADP = The Legend of Zelda: A Link to the Past JAEE = Donkey Kong Country JAEJ = Super Donkey Kong JAEK = Donkey Kong Country JAEP = Donkey Kong Country JAFD = SimCity JAFE = Sim City JAFF = SimCity JAFJ = SimCity JAFP = SimCity JAGJ = Fire Emblem: Monshou no Nazo JAHE = R-Type III: The 3rd Lightning JAHJ = R-Type III: The Third Lightning JAHK = R-Type III: The Third Lightning JAHP = R-TYPE III : The Third Lightning JAIE = Super Castlevania IV JAIJ = Akumajou Dracula JAIP = Super Castlevania IV JAJE = Street Fighter II: The World Warrior JAJJ = Street Fighter II JAJP = Street Fighter II: The World Warrior JALE = Contra III: The Alien Wars JALJ = Contra Spirits JALK = Contra III: The Alien Wars JALP = Super Probotector: Alien Rebels JAME = Gradius III JAMJ = Gradius III JAMK = Gradius III JAMM = Gradius III JAPJ = Fire Emblem: Seisen no Keifu JAUJ = Famicom Bunko: Hajimari no Mori JAVE = Super Metroid JAVJ = Super Metroid JAVK = Super Metroid JAVP = Super Metroid JAWE = Romance of the Three Kingdoms IV: Wall of Fire JAWJ = San Goku Shi IV JAZD = The Legend of the Mystical Ninja JAZE = The Legend of The Mystical Ninja JAZJ = Ganbare Goemon: Yukihime Kyuushutsu Emaki JAZP = The Legend of the Mystical Ninja JB3D = Harvest Moon JB3E = Harvest Moon JB3J = Harvest Moon JB3P = Harvest Moon JB5J = Super Gussun Oyoyo JB6J = Treasure Hunter G JB7J = Front Mission: Gun Hazard JB9J = Gakkou de atta Kowai Hanashi JBAE = Metal Marines JBAJ = Militia JBBE = Super Street Fighter II: The New Challengers JBBJ = Super Street Fighter II: The New Challengers JBBP = Super Street Fighter II: The New Challengers JBCE = Kirby's Dream Course JBCJ = Kirby Bowl JBCK = Kirby's Dream Course JBCP = Kirby's Dream Course JBDD = Donkey Kong Country 2: Diddy's Kong-Quest JBDE = Donkey Kong Country 2: Diddy's Kong Quest JBDJ = Super Donkey Kong 2: Dixie & Diddy JBDK = Donkey Kong Country 2: Diddy Kong's Quest JBDP = Donkey Kong Country 2: Diddy's Kong-Quest JBEJ = Magical Drop JBFJ = Otogirisou JBGJ = Mystery Dungeon: Shiren the Wanderer JBHJ = Heracles no Eikou IV: Kamigami-kara no Okurimono JBIE = Street Fighter II Turbo: Hyper Fighting JBIJ = Street Fighter II Turbo: Hyper Fighting JBIP = Street Fighter II Turbo: Hyper Fighting JBKE = Breath of Fire II JBKJ = Breath of Fire II: Shimei no Ko JBKP = Breath of Fire II JBLE = Pac-Attack JBLJ = Cosmo Gang the Puzzle JBLP = Pac-Attack JBNE = Darius Twin JBNJ = Darius Twin JBOJ = Panel de Pon JBOK = Panel de Pon JBPE = Donkey Kong Country 3: Dixie Kong's Double Trouble JBPJ = Super Donkey Kong 3: Nazo no Krems Shima JBPP = Donkey Kong Country 3: Dixie Kong’s Double Trouble JBQE = Kirby's Avalanche JBQJ = Kirby's Avalanche JBQP = Kirby's Ghost Trap JBRE = Vegas Stakes JBRJ = Vegas Stakes JBRP = Vegas Stakes JBSE = Axelay JBSJ = Axelay JBSP = Axelay JBTE = Super Turrican JBTJ = Super Turrican JBTP = Super Turrican JBUE = Super Turrican 2 JBUJ = Super Turrican Two JBVJ = Der Langrisser JBWE = Cybernator JBWJ = Assault Suits Valken JBWK = Cybernator JBWP = Cybernator JBYE = Super R-Type JBYJ = Super R-Type JBYK = Super R-Type JBYP = Super R-Type JC2J = Taikou Risshiden JC3J = Bahamut Lagoon JC4E = Indiana Jones' Greatest Adventures JC4J = Indiana Jones Great Adventure JC4P = Indiana Jones' Greatest Adventures JC5J = Romancing SaGa JC6J = Romancing SaGa 2 JC7E = The Combatribes JC7J = The Combatribes JC8E = Final Fantasy II JC8J = Final Fantasy IV JC8M = Final Fantasy II JC8P = Final Fantasy 2 JC9J = Final Fantasy V JCAJ = DoReMi Fantasy: Milon no DokiDoki Daibouken JCAL = DoReMi Fantasy - Milon’s DokiDoki Adventure JCAN = DoReMi Fantasy: Milon's DokiDoki Adventure JCBE = Super Mario RPG: Legend of the Seven Stars JCBJ = Super Mario RPG JCBM = Super Mario RPG: Legend of the Seven Stars JCCE = Kirby Super Star JCCJ = Hoshi no Kirby Super Deluxe JCCP = Kirby’s Fun Pak JCDE = Kirby's Dream Land 3 JCDJ = Hoshi no Kirby 3 JCDM = Kirby’s Dream Land 3 JCEJ = Fire Emblem: Thracia 776 JCGJ = Ganbare Goemon 2: Kiteretsu Shougun Magginesu JCHJ = Ganbare Goemon 3 JCIJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo JCJE = Super Punch-Out!! JCJJ = Super Punch-Out!! JCJP = Super Punch Out!! JCKE = Space Invaders: The Original Game JCKJ = Space Invaders: The Original Game JCKP = Space Invaders -The Original Game JCLD = Secret of Mana JCLE = Secret of Mana JCLF = Secret of Mana JCLJ = Seiken Densetsu 2 JCLP = Secret of Mana JCMJ = Super Wagyan Land JCNE = Prince of Persia JCNJ = Prince of Persia JCTE = Ogre Battle: The March of the Black Queen JCTJ = Densetsu no Ogre Battle: The March of the Black Queen JCTM = Ogre Battle: The March of the Black Queen JCUE = PilotWings JCUJ = Tactics Ogre: Let Us Cling Together JCVE = Pilotwings JCVJ = Pilotwings JCVP = Pilotwings JCWE = Super Mario Kart JCWJ = Super Mario Kart JCWP = Super Mario Kart JCXE = Nobunaga's Ambition JCXJ = Super Nobunaga no Yabou: Zengokuban JCYE = Uncharted Waters: New Horizons JCYJ = Daikoukai Jidai II JCZE = Genghis Khan II: Clan of the Gray Wolf JCZJ = Super Aoki Ookami to Shiroki Meshika: Genchou Hishi JD2J = Bishoujo Janshi Suchie-Pai JD3E = Super E.D.F. Earth Defense Force JD3J = Super E.D.F. Earth Defense Force JD3P = Super EDF Earth Defense Force JD4E = Rival Turf! JD4J = Rushing Beat JD4P = Rival Turf! JD5E = Brawl Brothers JD5J = Rushing Beat Ran: Fukusei Toshi JD5P = Brawl Brothers JD6E = The Ignition Factor JD6J = Fire Fighting JD6M = The Ignition Factor JD7E = Super Adventure Island JD7J = Takahashi Meijin no Daibouken Jima JD7P = Super Adventure Island JD8E = Super Adventure Island II JD8J = Takahashi Meijin no Daibouken Jima II JD8P = Super Adventure Island II JD9E = Super Bonk JD9J = Chou-Genjin JD9M = Super Bonk JDAE = Final Fantasy III JDAJ = Final Fantasy VI JDAP = Final Fantasy III JDBE = Super Bomberman 3 JDCE = Street Fighter Alpha 2 JDCJ = Street Fighter Two Alpha JDCP = Street Fighter Alpha 2 JDDE = Final Fight 2 JDDJ = Final Fight Two JDDP = Final Fight 2 JDEE = Final Fight 3 JDEJ = Final Fight Tough JDEP = Final Fight 3 JDFJ = Sutte Hakkun JDHJ = Super Famicom Wars JDIE = Super Star Wars JDIJ = Super Star Wars JDIP = Super Star Wars JDJE = Super Star Wars: The Empire Strikes Back JDJJ = Super Star Wars The Empire Strikes Back JDJP = Super Star Wars: The Empire Strikes Back JDKJ = Metal Max 2 JDLE = Super Star Wars: Return of the Jedi JDLJ = Super Star Wars Return Of The Jedi JDLP = Super Star Wars: Return of the Jedi JDMJ = Kirby no Kirakira Kizzu JDNE = Ghoul Patrol JDNJ = Ghoul Patrol JDOJ = Heisei Shin Onigashima: Zenpen JDPJ = Heisei Shin Onigashima: Kouhen JDQJ = Romancing Sa-Ga 3 JDRJ = Clock Tower JDSJ = Shin Megami Tensei II JDTJ = Shin Megami Tensei if... JDUJ = Albert Odyssey JDVE = Wild Guns JDVJ = Wild Guns JDVP = Wild Guns JDWE = Aero the Acrobat JDWJ = Aero The Acrobat JDWP = Aero The Acrobat JDXE = Aero the Acrobat 2 JDXJ = Aero The Acrobat Two JDXP = Aero the Acrobat 2 JDYJ = Rudra no Hihou JDZE = Final Fantasy Mystic Quest JDZJ = Final Fantasy USA: Mystic Quest JEAE = Natsume Championship Wrestling JEAJ = Natsume Championship Wrestling JEAP = Natsume Championship Wrestling JEBE = Mega Man X JEBJ = RockMan X JECE = Chrono Trigger JECJ = Chrono Trigger JECM = Chrono Trigger JECP = Chrono Trigger JEDJ = Kunio-Kun no Dodge Ball Dayo Zenin Shuugo! JEEJ = Majin Tensei JEFJ = Majin Tensei II: Spiral Nemesis JEGJ = Gouketuji Ichizoku JEHE = Mega Man X2 JEHJ = RockMan X2 JEIJ = Metal Max Returns JEJJ = Tsukikomori JEKJ = Kyuyaku Megami Tensei: Megami Tensei I・II JODI = Homebrew Channel JOUE01 = New Super Mario Bros. Wii 10 The Journey KMCP06 = Wiimms MKW Fun 2010-12.pal+ KMKE01 = Kustom Mario Kart Wii KMNE03 = Newer Super Mario Bros. Wii KMNE10 = Koopa Country KMNJ03 = Newer Super Mario Bros. Wii KMNP03 = Newer Super Mario Bros. Wii KMNP10 = Koopa Country L40P4Q = Sing IT: Pop hits, los 40 principales LAAJ = Hokuto no Ken LABE = Fantasy Zone LABJ = Fantasy Zone LABP = Fantasy Zone LACE = Wonder Boy LACJ = Super Wonder Boy LACP = Wonder Boy LADE = Phantasy Star LADJ = Phantasy Star LADP = Phantasy Star LAEE = Alex Kidd in Miracle World LAEJ = Alex Kidd in Miracle World LAEP = Alex Kidd in Miracle World LAFJ = Ashura LAFN = Secret Commando LAFP = Secret Command LAGE = Sonic The Hedgehog LAGJ = Sonic the Hedgehog LAGP = Sonic The Hedgehog LAHE = Space Harrier LAHJ = Space Harrier LAHP = Space Harrier LAIE = Enduro Racer LAIJ = Enduro Racer LAIP = Enduro Racer LAJE = Sonic The Hedgehog 2 LAJJ = Sonic the Hedgehog 2 LAJP = Sonic The Hedgehog 2 LAKE = Wonder Boy in Monster Land LAKJ = Super Wonder Boy: Monster World LAKP = Wonder Boy in Monster Land LALE = Fantasy Zone II: The Tears of OPA-OPA LALJ = Fantasy Zone II: The Tears of Opa-Opa LALP = Fantasy Zone II LAME = Sonic Chaos LAMJ = Sonic Chaos LAMP = Sonic Chaos LANE = Alex Kidd: The Lost Stars LANJ = Alex Kidd: The Lost Stars LANP = Alex Kidd: The Lost Stars LAOE = R-Type LAOJ = R-Type LAOP = R-Type LAPE = Wonder Boy III: The Dragon's Trap LAPP = Wonder Boy III: The Dragon's Trap LAQE = Alex Kidd in Shinobi World LAQP = Alex Kidd in Shinobi World LULZ = Homebrew Channel MA2J = Dyna Brothers MA3E = Puyo Puyo 2 MA3J = Puyo Puyo Tsuu MA3L = Puyo Puyo 2 MA4J = Bahamut Senki MA5J = Rent A Hero MA6E = Streets of Rage 2 MA6J = Bare Knuckle II: Shitou no Chinkon Uta MA6P = Streets of Rage 2 MA7E = Shining in the Darkness MA7J = Shining and the Darkness MA7P = Shining in the Darkness MA8E = Ecco: The Tides of Time MA8J = Ecco the Dolphin 2 MA8P = Ecco: The Tides of Time MA9J = The Hybrid Front MAAE = Altered Beast MAAJ = Juuouki MAAP = Altered Beast MABE = Columns MABJ = Columns MABP = Columns MACE = Dr. Robotnik's Mean Bean Machine MACJ = Puyo Puyo MACP = Dr. Robotnik's Mean Bean Machine MADE = Ecco the Dolphin MADJ = Ecco the Dolphin MADP = Ecco the Dolphin MAEE = Golden Axe MAEJ = Golden Axe MAEP = Golden Axe MAFE = Gunstar Heroes MAFJ = Gunstar Heroes MAFP = Gunstar Heroes MAGE = Ristar MAGJ = Ristar MAGP = Ristar MAHE = Sonic the Hedgehog MAHJ = Sonic the Hedgehog MAHP = Sonic the Hedgehog MAIE = Space Harrier II MAIJ = Space Harrier II MAIP = Space Harrier II MAJE = Toe Jam & Earl MAJJ = ToeJam & Earl MAJP = ToeJam & Earl MAKE = Shadow Dancer: The Secret of Shinobi MAKJ = Shadow Dancer: The Secret of Shinobi MAKP = Shadow Dancer: The Secret of Shinobi MALE = Bonanza Bros. MALJ = Bonanza Bros. MALP = Bonanza Bros. MAME = Sword of Vermillion MAMJ = Vermilion MAMP = Sword of Vermilion MANE = Gain Ground MANJ = Gain Ground MANP = Gain Ground MAOE = Bio-Hazard Battle MAOJ = Crying: Aseimei Sensou MAOP = Bio-Hazard Battle MAPE = Comix Zone MAPJ = Comix Zone MAPP = Comix Zone MAQE = Streets of Rage MAQJ = Bare Knuckle: Ikari no Tekken MAQP = Streets of Rage MARE = Beyond Oasis MARJ = The Story of Thor: Hikari o Tsugu Mono MARP = The Story of Thor MASE = Vectorman MASJ = Vectorman MASP = Vectorman MATE = Sonic Spinball MATJ = Sonic Spinball MATP = Sonic Spinball MAUJ = Puzzle & Action: Tant-R MAVE = Wonder Boy in Monster World MAVJ = Wonder Boy V: Monster World III MAVP = Wonder Boy In Monster World MAWE = Virtua Fighter 2 MAWJ = Virtua Fighter 2 MAWP = Virtua Fighter 2 MAXE = Alex Kidd In The Enchanted Castle MAXJ = Alex Kidd: Tenkuu Mashiro MAXP = Alex Kidd In The Enchanted Castle MAYE = Alien Storm MAYJ = Alien Storm MAYP = Alien Storm MAZE = ToeJam & Earl in Panic on Funkotron MAZP = ToeJam & Earl in Panic on Funkotron MB2J = Langrisser MB3E = Monster World IV MB3J = Monster World IV MB4J = Party Quiz Mega Q MB5J = Rangurissah II MB6E = Shining Force II MB6J = Shining Force II: Inishie no Fuuin MB6P = Shining Force II MB7E = Mega Turrican MB7P = Mega Turrican MB8E = Phantasy Star II MB8J = Phantasy Star II: Kaerazaru Toki no Owari ni MB8P = Phantasy Star II MB9J = Pepenga Pengo MBAJ = Pulseman MBAL = Pulseman MBAN = Pulseman MBBE = Sonic the Hedgehog 2 MBBJ = Sonic the Hedgehog 2 MBBP = Sonic the Hedgehog 2 MBCE = Kid Chameleon MBCJ = Chameleon Kid MBCP = Kid Chameleon MBDE = Golden Axe II MBDJ = Golden Axe II MBDP = Golden Axe II MBEE = Shining Force MBEJ = Shining Force: Kamigami no Isan MBEP = Shining Force MBFE = Shinobi III: Return of the Ninja Master MBFJ = The Super Soldier II MBFP = Shinobi III: Return of the Ninja master MBGE = Dynamite Headdy MBGJ = Dynamite Headdy MBGP = Dynamite Headdy MBHJ = Puzzle & Action: Ichidant-R MBIE = Landstalker: The Treasures of King Nole MBIJ = LandStalker: Koutei no Zaihou MBIP = Landstalker: Die Schätze von König Nolo MBJE = Ghouls'n Ghosts MBJJ = Dai Makai-Mura MBJP = Ghouls'n Ghosts MBKJ = Crack Down MBKP = Crack Down MBLJ = ESWAT: Cyber Police MBLP = ESWAT City Under Siege MBME = Sonic the Hedgehog 3 MBMJ = Sonic the Hedgehog 3 MBMP = Sonic the Hedgehog 3 MBNJ = Chelnov MBOE = Golden Axe III MBOJ = Golden Axe III MBOP = Golden Axe III MBPE = Super Thunder Blade MBPJ = Super Thunder Blade MBPP = Super Thunder Blade MBQE = Streets of Rage 3 MBQJ = Bare Knuckle III MBQP = Streets of Rage 3 MBRE = Rolling Thunder 2 MBRJ = Rolling Thunder 2 MBRP = Rolling Thunder 2 MBSJ = Dyna Brothers 2 Special MBTE = Alien Soldier MBTJ = Alien Soldier MBTP = Alien Soldier MBUE = Sonic 3D: Blast MBUJ = Sonic 3D Blast MBUP = Sonic 3D: Flickies' Island MBVJ = Jusu Kihei Leynos MBWE = Columns III: Revenge of Columns MBWJ = Columns III: Taiketsu! Columns World MBWM = Columns III: Revenge of Columns MBXE = Ecco Jr. MBXJ = Ecco Jr. MBXM = Ecco Jr. MBYE = Light Crusader MBYJ = Light Crusader MBYP = Light Crusader MBZE = Eternal Champions MBZJ = Eternal Champions MBZP = Eternal Champions MC2E = Earthworm Jim 2 MC2J = Earthworm Jim 2 MC2P = Earthworm Jim 2 MC3E = Super Street Fighter II: The New Challengers MC3J = Super Street Fighter 2: The New Challengers MC3P = Super Street Fighter II: The New Challengers MC4E = Strider MC4J = Strider Hiryu MCAJ = Gley Lancer MCAL = Gley Lancer MCAN = Gley Lancer MCBE = Powerball MCBJ = Wrestleball MCCE = Phantasy Star III MCCJ = Toki no Keishousha: Phantasy Star III MCCP = Phantasy Star III: Generations of Doom MCDE = Sonic & Knuckles MCDJ = Sonic & Knuckles MCDP = Sonic & Knuckles MCEJ = Super Fantasy Zone MCEN = Super Fantasy Zone MCEP = Super Fantasy Zone MCGE = Forgotten Worlds MCGJ = Forgotten Worlds MCGP = Forgotten Worlds MCHE = M.U.S.H.A. MCHJ = Musha Aleste MCHM = MUSHA : Metallic Uniframe Super Hybrid Armor MCIJ = Gynoug MCJE = Splatterhouse 2 MCJJ = Splatterhouse Part 2 MCJP = Splatterhouse 2 MCKE = Phantasy Star IV MCKJ = Phantasy Star: Sennenki no Owari ni MCKP = Phantasy Star IV MCLE = Street Fighter II': Special Champion Edition MCLJ = Street Fighter II' Plus: Champion Edition MCLP = Street Fighter II’: Special Champion Edition MCMJ = Lord Monarch: Tokoton Sentou Densetsu MCNJ = Hokuto no Ken: Shin Seikimatu Kyuseisyu Densetsu MCOJ = Sorcerian MCPE = Earthworm Jim MCPJ = Earthworm Jim MCPP = Earthworm Jim MCQE = Boogerman: A Pick and Flick Adventure MCQP = Boogerman - A Pick and Flick Adventure MCRE = Wolf of the Battlefield: MERCS MCRJ = Senjou no Ookami II MCRP = MERCS: Wolf of the Battlefield MCSJ = Wonder Boy III: Monster Lair MCSN = Wonder Boy III: Monster Lair MCSP = Wonder Boy III: Monster Lair MCTE = Clay Fighter MCTP = Clay Fighter MCUJ = Dragon Slayer: The Legend of Heroes MCVE = Pitfall: The Mayan Adventure MCVJ = Pitfall: The Mayan Adventure MCVP = Pitfall: The Mayan Adventure MCWE = Galaxy Force II MCWJ = Galaxy Force II MCWP = Galaxy Force II MCXJ = Dragon Slayer: The Legend of Heroes MCYE = The Revenge of Shinobi MCYJ = The Super Shinobi MCYP = The Revenge of Shinobi MCZE = Shanghai II: Dragon's Eye MCZP = Shanghai II Dragon's Eye MDUE01 = Mario Kart: Track Grand Priix MECPSI = SingItStar Mecano METE01 = New Super Metroid Bros. Wii MIJPSI = SingItStar Michael Jackson MILPSI = Sing IT Star: Miliki MKDE02 = Darky Kart Wii MKTE01 = Mario Kart Wii Teknik MKWP01 = Super Mario Kart for Wii MMRE01 = D.U. Super Mario Bros 2.1 Madness Returns MRRE01 = New Super Mario Bros. Wii Retro Remix MRRP01 = New Super Mario Bros. Wii Retro Remix NA3E = Bomberman Hero NA3J = Bomberman Hero NA3P = Bomberman Hero NAAE = Super Mario 64 NAAJ = Super Mario 64 NAAP = Super Mario 64 NABE = Mario Kart 64 NABJ = Mario Kart 64 NABK = Mario Kart 64 NABP = Mario Kart 64 NACE = The Legend of Zelda: Ocarina of Time NACJ = Zelda no Densetsu: Toki no Ocarina NACP = The Legend of Zelda: Ocarina of Time NADE = Lylat wars NADJ = Star Fox 64 NADK = Star Fox 64 NADP = Lylat Wars NAEE = Paper Mario NAEJ = Mario Story NAEP = Paper Mario NAFE = F-Zero X NAFJ = F-Zero X NAFP = F-Zero X NAGJ = Aerogauge NAHE = Yoshi's Story NAHJ = Yoshi's Story NAHP = Yoshi's Story NAIE = Wave Race 64 NAIJ = Wave Race 64: Kawasaki Jet Ski NAIP = Wave Race 64 NAJ8 = The Legend of Zelda: Ocarina of Time (spanish translation) NAJ9 = Super Smash Bros. NAJJ = Tsumi to Batsu NAJL = Sin & Punishment NAJN = Sin and Punishment NAKD = Pokémon Snap NAKE = Pokémon Snap NAKF = Pokémon Snap NAKI = Pokémon Snap NAKJ = Pokémon Snap NAKP = Pokémon Snap NAKS = Pokémon Snap NALE = Super Smash Bros. NALJ = Nintendo All-Star Dairantou Smash Brothers NALP = Super Smash Bros. NAME = Kirby 64: The Crystal Shards NAMJ = Hoshi no Kirby 64 NAMK = Kirby 64: The Crystal Shards NAMP = Kirby 64: The Crystal Shards NAND = Pokémon Puzzle League NANE = Pokémon Puzzle League NANF = Pokémon Puzzle League NANJ = Pokemon Puzzle League NANP = Pokémon Puzzle League NAOE = 1080° Snowboarding NAOJ = 1080° Snowboarding NAOK = 1080° Snowboarding NAOP = 1080 : TenEighty Snowboarding NAPJ = Custom Robo V2 NARE = The Legend of Zelda: Majora's Mask NARJ = Zelda no Densetsu: Majora no Kamen NARP = The Legend of Zelda: Majora's Mask NASE = Cruis'n USA NASJ = Cruisn USA NASP = Cruis'n USA NATE = Mario Tennis NATJ = Mario Tennis 64 NATP = Mario Tennis NAUE = Mario Golf NAUJ = Mario Golf 64 NAUP = Mario Golf NAYE = Ogre Battle 64: Person of Lordly Caliber NAYJ = Ogre Battle 64: Person of Lordly Caliber NAYM = Ogre Battle 64 : Person of Lordly Caliber NAZE = Mario Party 2 NAZJ = Mario Party 2 NAZP = Mario Party 2 NEEA = The Legend of Zelda: Ocarina of Time Master Quest NEWE01 = New Super Mario Bros Wii 15 A New World NK2O = Neek2o NMNP01 = Newer Super Mario Bros. Wii NRJ1FR = StarSing : NRJ Music Tour v1.1 NSMB02 = New Super Mario Bros. Wii 2 NSSP01 = Newer Summer Sun NWRP01 = Newer Super Mario Bros. Wii NZXM = Super Mario 64 Multiplayer ONKELZ = SingItStar Böhse Onkelz PAL OTFPSI = Sing IT: Operación triunfo P2ME01 = Metroid Prime 2: Echoes (Bonus Disc) PA2J = Nekketsu Koukou Dodgeball Bu: CD Soccer Hen PA3J = Salamander PA4J = Parasol Stars PA6E = Bloody Wolf PA6J = Narazumono Sentou Butai: Bloody Wolf PA6P = Bloody Wolf PA7E = Alien Crush PA7J = Alien Crush PA7P = Alien Crush PA8E = Ordyne PA8J = Ordyne PA9E = Splatterhouse PA9J = Splatterhouse PA9P = Splatterhouse PAAE = Bomberman '93 PAAP = Bomberman '93 PABE = Bonk's Adventure PABJ = PC Genjin PABP = Bonk's Adventure PACE = Dungeon Explorer PACJ = Dungeon Explorer PACP = Dungeon Explorer PADE = R-Type PADJ = R-Type I PADP = R-Type PAEE = Super Star Soldier PAEJ = Super Star Soldier PAEP = Super Star Soldier PAFE = Victory Run PAFJ = Victory Run: Eikou no 13,000KM PAFP = Victory Run PAGJ = Bomberman '94 PAGL = Bomberman'94 PAGN = Bomberman '94 PAHE = Battle Lode Runner PAHJ = Battle Lode Runner PAHP = Battle Lode Runner PAIE = New Adventure Island PAIJ = Takahashi Meijin no Shin Bouken Jima PAIP = New Adventure Island PAJJ = Joshoken Necromancer PAKE = Dragon's Curse PAKJ = Adventure Island PAKP = Dragon's Curse PALE = Soldier Blade PALJ = Soldier Blade PALP = Soldier Blade PAME = Neutopia PAMJ = Neutopia: Frey no Shou PAMP = Neutopia PANE = Military Madness PANJ = Nectaris PANP = Military Madness PAOJ = Final Soldier PAOL = Final Soldier PAON = Final Soldier PAPJ = R-Type II PAQJ = Gradius PARJ = Detana TwinBee PARL = Detana Twin Bee PARN = Detana Twin Bee PASJ = Cadash PATJ = Kiki Kaikai PAUJ = Kaizou Chounin Shubibinman PAVE = Vigilante PAVJ = Vigilante PAVP = Vigilante PAWE = Galaga '90 PAWJ = Galaga '88 PAWP = Galaga'90 PAYJ = Valkyrie no Densetsu PAZJ = Genpei Toumaden PB2E = Neutopia II PB2J = Neutopia II PB2P = Neutopia II PB3E = Devil's Crush PB3J = Devil Crash PB3P = Devil's Crush PB5J = Ninja Ryukenden PB6E = Cratermaze PB6P = Cratermaze PB7J = Sengoku Mahjong PB8E = Blazing Lazers PB8J = Blazing Lazers PB8P = Blazing Lazers PB9E = World Sports Competition PB9J = Power Sports PB9P = World Sports Competition PBAE = Dragon Spirit PBAJ = Dragon Spirit PBAP = Dragon Spirit PBCJ = Wonder-Momo PBDE = Double Dungeons PBDJ = Double Dungeons PBDP = Double Dungeons PBEE = Moto Roader PBEJ = Moto Roader PBEP = Motoroader PBFJ = Fire ProWrestling: Combination Tag PBHE = Bonk's Revenge PBHJ = PC Genjin 2 PBHP = Bonk's Revenge PBIE = Bonk 3: Bonk's Big Adventure PBIJ = PC Genjin 3 PBIP = Bonk III: Bonk's Big Adventure PBJE = Samurai Ghost PBJJ = Genpei Toumaden: Kannoni PBJP = Samurai Ghost PBME = Legend of Hero Tonma PBMJ = Legend of Hero Tonma PBMP = Legend of Hero Tonma PBNE = Ninja Spirit PBNJ = Saigou no Nindou: Ninja Spirit PBNP = Ninja Spirit PBSE = Chew Man Fu PBSJ = Be Ball PBSP = Chew Man Fu PBTE = China Warrior PBTJ = The Kung Fu PBTP = China Warrior PBUE = Bravoman PBUJ = Chouzetsu Rinjin Bravoman PBVJ = Benkei Gaiden PBWE = Air “Zonk” PBWJ = PC Denjin: Punkic Cyborgs PBWP = Air 'Zonk' PBXE = Shockman PBXJ = Kaizou Chounin Shubibinman 2: Atanaru Teki PBXP = Shockman PBYJ = Out Live PBZE = J.J. & Jeff PBZP = J.J. & Jeff PC2E = Chase H.Q. PC2J = Chase H.Q. PC2P = Chase H.Q. PC3J = Darius Plus PC4J = Space Invaders: Fukkatsu no Hi PC5J = Dragon Saber PC6E01 = Pokémon Colosseum Bonus Disc PC6J = Final Blaster PC7J = Mizubaku Daibouken PC8J = The Ninjawarriors PC9J = The NewZealand Story PCAE = Silent Debuggers PCAJ = Silent Debuggers PCAP = Silent Debuggers PCBE = Dead Moon PCBJ = Dead Moon: Tsuki Sekai no Akumu PCBP = Dead Moon PCCJ = Makai Hakkenden Shada PCDJ = Appare! Gateball PCEE = Power Golf PCEJ = Power Golf PCEP = Power Golf PCHE = Drop Off PCHJ = Drop Rock Hora Hora PCHP = Drop Off PCJJ = Override PCKJ = Gai Flame PCMJ = Mr. Heli no Daibouken PCNJ = Winning Shot PCOE = Psychosis PCOJ = Paranoia PCOP = Psychosis PCPJ = Power Eleven PCQJ = Psycho Chaser PCRJ = Break In PCRL = Break In PCRN = Break In PCSJ = Digital Champ: Battle Boxing PCSJ = Digital Champ: Battle Boxing PCSJ01 = Pokemon Colosseum Bonus Disc PCSL = Digital Champ : Battle Boxing PCSN = Digital Champ Battle Boxing PCTJ = Power Tennis PCUJ = Fire ProWrestling 2nd Bout PCVE = World Class Baseball PCVP = World Class Baseball PCWJ = Image Fight PCXJ = Power League IV PCYJ = Wallaby!! Usagi no Kuni no Kangaroo Race PDCJ = Dai Makaimura PDDJ = Volfied PDEJ = S.C.I.: Special Criminal Investigation PDFJ = Jigoku Meguri PDGJ = Fire ProWrestling 3: Legend Bout PDHJ = Rastan Saga II PDIE = Champion Wrestler PDJJ = Street Fighter II': Champion Edition PDJL = Street Fighter II' : Champion Edition PDJN = Street Fighter II: Champion Edition PDUE01 = Another Super Mario Bros. Wii PKBJ01 = The Tower of Druaga PLUS = WiiMC+ PM4E01 = Mario Kart: Double Dash!! Bonus Disc PMNEO1 = New Old Super Mario Bros. Wii POPPSI = SingItStar Pop PPNE01 = New Super Mario Bros. Wii 2: The Next Levels PPNP01 = New Super Mario Bros. Wii 2: The Next Levels PRJE01 = Pac-Man vs. PRJJ01 = Pac-Man vs. PRJP01 = Pac-Man vs. PROE01 = New Super Mario Bros. Wii 14 Project Mario PT1PSI = SingIt Star Portugal Hits PT2PSI = SingIt Portugal Hits Summer Party PT3PSI = Sing IT Portugal Hits - Morangos com Açucar PUTA01 = Guitar Hero III Custom : Rock Hits PWNP69 = Pwned Super Mario Bros. Wii PXWE = Project X: Love Potion Disaster PZLE01 = The Legend of Zelda: Collector's Edition PZLJ01 = The Legend of Zelda: Collector's Edition PZLP01 = The Legend of Zelda: Collector's Edition QA2J = Nekketsu Koukou Dodge Ball-Bu: CD Soccer-hen QA3E = SimEarth: The Living Planet QA3J = SimEarth QA3P = SimEarth: The Living Planet QA4J = Super Darius II QA5J = Space Invaders: The Original Game QA6J = Super Darius QA7J = Legend of Xanadu: Kaze no Densetsu Xanadu QA8J = Spriggan Mark 2 QA9J = Kaze no Densetsu: Xanadu II QAAE = Super Air Zonk QAAJ = CD Denjin: Rockabilly Tengoku QAAP = Super Air Zonk QABE = Ys Book I & II QABJ = Ys I + II QABP = Ys Book I & II QACJ = Cho Aniki QACL = Cho Aniki QACN = Cho Aniki QADJ = Gradius II: Gofer no Yabou QADL = Gradius II: Gofer no Yabou QADN = Gradius II Gofer No Yabou QAEJ = A.III: A-Ressha de Ikou III QAFE = The Dynastic Hero QAFJ = Chou Eiyuu Densetsu: Dynastic Hero QAFP = The Dynastic Hero QAGE = Gate of Thunder QAGJ = Gate of Thunder QAGP = Gate of Thunder QAHJ = Kawa no Nushi Tsuni Shizenha QAJJ = Image Fight II QAKJ = Ai Chou Aniki QALJ = The Atlas: Renaissance Voyager QANJ = Neo Nectaris QAOJ = Dungeon Explorer II QAPJ = Akumajou Dracula X: Chi no Rondo QAPL = Castlevania : Rondo of Blood QAPN = Castlevania Rondo of Blood QAPP = Castlevania: Rondo of Blood QAQJ = Dragon Slayer: Eiyuu Densetsu QARJ = Blood Gear QASE = Lords of Thunder QASJ = Winds of Thunder QASP = Lords of Thunder QATE = Riot Zone QATJ = Crest of Wolf QATP = Riot Zone QAUE = Monster Lair QAUJ = Wonder Boy III: Monster Lair QAUP = Monster Lair QAVJ = Bomberman: Panic Bomber QAWJ = Star Parodier QAWL = Star Parodier QAWN = Star Parodier QAXJ = Martial Champion QAYJ = Seirei Senshi Spriggan QAZJ = Eikan wa Kimi ni: Koko Yakyu Zenkoku Taikai QBAJ = L Dis QBBE = Fighting Street QBBJ = Fighting Street QBBP = Fighting Street R01PET = SingItStar Queen R02PEA = SingItStar Rock Ballads R15POH = SingIt Star Radio 105 R22E01 = FlingSmash R22J01 = FlingSmash R22P01 = FlingSmash R23E52 = Barbie and the Three Musketeers R23P52 = Barbie und Die Drei Musketiere R24J01 = Chibi-Robo! R25EWR = LEGO Harry Potter: Years 1-4 R25PWR = LEGO Harry Potter: Die Jahre 1-4 R26E5G = Data East Arcade Classics R27E54 = Dora Saves the Crystal Kingdom R27X54 = Dora Saves the Crystal Kingdom R28E54 = Top Spin 4 R28P54 = Top Spin 4 R29E52 = NPPL Championship Paintball 2009 R29P52 = Millennium Championship Paintball 2009 R2AE7D = Ice Age 2: The Meltdown R2AP7D = Ice Age 2 - Jetzt taut's R2AX7D = Ice Age 2 - Jetzt taut's R2DEEB = Dokapon Kingdom R2DJEP = Dokapon Kingdom For Wii R2DPAP = Dokapon Kingdom R2DPJW = Dokapon Kingdom R2EJ99 = Fish Eyes Wii R2FE5G = Freddi Fish: Kelp Seed Mystery R2FP70 = Fritzi Fisch und der verschwundene Schatz R2GEXJ = Fragile Dreams: Farewell Ruins of the Moon R2GJAF = Fragile: Sayonara Tsuki no Haikyo R2GP99 = Fragile Dreams - Farewell Ruins of the Moon R2HE41 = Petz Horse Club R2IE69 = Madden NFL 10 R2IP69 = Madden NFL 10 R2JJAF = Taiko no Tatsujin Wii R2KE54 = Don King Boxing R2KP54 = Don King Boxing R2LJMS = Hula Wii: Hura de Hajimeru Bi to Kenkou!! R2ME20 = M&M's Adventure R2NE69 = NASCAR Kart Racing R2OE68 = Medieval Games R2OP68 = Medieval Games R2PE9B = Super Swing Golf Season 2 R2PJ9B = Super Swing Golf Season 2 R2PKZ4 = Super Swing Golf Season 2 R2PP99 = Super Swing Golf R2PP9B = Super Swing Golf R2QJC0 = Cooking Mama 2 Taihen Mama Wa Ooisogashi R2RE4F = Pony Friends 2 R2RP4F = Pony Friends 2 R2SE18 = Deca Sports 2 R2SJ18 = Deca Sporta 2 R2SP18 = Sports Island 2 R2TE41 = Teenage Mutant Ninja Turtles: Smash-Up R2TP41 = Teenage Mutant Ninja Turtles: Smash-Up R2UE8P = Let's Tap R2UJ8P = Let's Tap R2UP8P = Let's Tap R2VE01 = Sin & Punishment: Star Successor R2VJ01 = Sin and Punishment: Successor to the Sky R2VP01 = Sin and Punishment: Successor of the Skies R2WEA4 = Pro Evolution Soccer 2009 R2WJA4 = Winning Eleven PLAY MAKER 2009 R2WPA4 = Pro Evolution Soccer 2009 R2WXA4 = Pro Evolution Soccer 2009 R2YE54 = Birthday Party Bash R2YP54 = Alles gute zum Geburtstag! R32J01 = Metroid Prime 2 R33E69 = AC/DC Live: Rock Band Track Pack R33P69 = AC/DC Live: Rock Band Song Pack R34E69 = Rock Band: Country Track Pack R35JC8 = Sangokushi 11 with Power-Up Kit R36E69 = Green Day: Rock Band R36P69 = Green Day: Rock Band R37E69 = Rock Band: Metal Track Pack R38E78 = Marvel Super Hero Squad R38P78 = Marvel Super Hero Squad R38X78 = Marvel Super Hero Squad: Walmart Edition R38Y78 = Marvel Super Hero Squad R39EFP = Shimano Xtreme Fishing R39PNK = Shimano Extreme Fishing R3AE20 = Story Hour: Adventures R3AP20 = Story Hour: Adventures R3AP7J = Story Hour: Adventures R3BE8P = Samba de Amigo R3BJ8P = Samba de Amigo R3BP8P = Samba de Amigo R3CE20 = Chrysler Classic Racing R3CP20 = Chrysler Classic Racing R3CP7J = Chrysler Classic Racing R3DES5 = Dream Pinball 3D R3DPS5 = Dream Pinball 3D R3EEWR = Game Party 3 R3EPWR = Game Party 3 R3FJA4 = Jikkyou Powerful Major League 3 R3GXUG = Kidz Sports: Crazy Mini Golf R3HP6Z = Agent Hugo: Hula Holiday R3HX6Z = Agent Hugo: Hula Holiday R3IJ01 = Metroid Prime R3JE5G = Go Play Circus Star R3KP6N = Skyscraper R3LEWR = Green Lantern: Rise of the Manhunters R3LPWR = Green Lantern: Rise of the Manhunters R3ME01 = Metroid Prime: Trilogy R3MP01 = Metroid Prime: Trilogy R3NEXS = Guilty Gear XX Accent Core Plus R3NPH3 = Guilty Gear XX Accent Core Plus R3OE01 = Metroid: Other M R3OJ01 = Metroid: Other M R3OP01 = Metroid: Other M R3PEWR = Speed Racer: The Videogame R3PJ52 = Speed Racer R3PPWR = Speed Racer: The Videogame R3RE8P = Sonic & SEGA All-Stars Racing R3RP8P = Sonic & SEGA All-Stars Racing R3SE52 = Spider-Man: Web of Shadows R3SP52 = Spider-Man: Web of Shadows R3TE54 = Top Spin 3 R3TJG9 = Top Spin 3 R3TP54 = Top Spin 3 R3UJGD = Oyako de Asobo: Miffy no Omocha Bako R3VEFP = Deer Drive R3VPNK = Deer Drive R3XE6U = Sam & Max: Season One R3XP6V = Sam & Max: Season One R3YE70 = Sam & Max: Season Two: Beyond Time and Space R3YP70 = Sam & Max: Season Two: All-Zeit Bereit R3ZE69 = Rock Band Track Pack: Classic Rock R42E69 = The Sims 2: Castaway R42P69 = Die Sims 2: Gestrandet R43E69 = EA Sports Active: Personal Trainer R43J13 = EA Sports Active Personal Trainer Wii 30-Hi Seikatsu Kaizen Program R43P69 = EA Sports Active R44J8P = Suzumiya Haruhi no Heiretsu R46ENS = Phantom Brave: We Meet Again R46JKB = Phantom Brave Wii R47E20 = ATV Quad Kings R48E7D = The Spiderwick Chronicles R48P7D = Die Geheimnisse der Spiderwicks R49E01 = Donkey Kong Jungle Beat R49J01 = Donkey Kong: Jungle Beat R49P01 = Donkey Kong: Jungle Beat R4AE69 = SimAnimals R4AJ13 = SimAnimals R4AP69 = SimAnimals R4BEJZ = Championship Foosball R4BPGT = Tischfußball 2008 R4CE69 = SimCity Creator R4CJ13 = Simcity Creator R4CK69 = SimCity Creator R4CP69 = SimCity Creator R4DDUS = Die drei Fragezeichen - Das verfluchte Schloss R4EE01 = Endless Ocean: Blue World R4EJ01 = Forever Blue: Umi no Yobigoe (Endless Ocean 2) R4EP01 = Endless Ocean 2: Der Ruf des Meeres R4FE20 = Story Hour: Fairy Tales R4FP20 = Story Hour: Fairy Tales R4FP7J = Story Hour: Fairy Tales R4IPNK = Mad Tracks R4LPUG = Schweine Party R4LXUG = Schweine Party R4MJ0Q = Shikakui Atama wo Marukusuru Wii R4NE5G = Major Minor's Majestic March R4NP5G = Major Minor's Majestic March R4NX5G = Major Minor's Majestic March R4PE69 = The Sims 2: Pets R4PP69 = Die Sims 2: Haustiere R4QE01 = Mario Strikers Charged R4QJ01 = Mario Strikers Charged R4QK01 = Mario Power Soccer R4QP01 = Mario Strikers Charged Football R4RE69 = FIFA Soccer 10 R4RJ13 = FIFA 10 WORLD CLASS SOCCER R4RK69 = FIFA 10 R4RP69 = FIFA 10 R4RX69 = FIFA 10 R4RY69 = FIFA 10 R4RZ69 = FIFA Soccer 10 R4SE54 = MLB Superstars R4VEA4 = Storybook Workshop R4VJA4 = Teleshibai Wii R4VJAF = Tere Shibai Wii R4WJA4 = Jikkyou Powerful Major League 2009 R4YJ2M = Sukeban Shachou Rena Wii R4ZE01 = Fatal Frame 4: Mask of the Lunar Eclipse R4ZJ01 = Fatal Frame 4: Mask of the Lunar Eclipse R4ZP01 = Fatal Frame IV: Mask of the Lunar Eclipse R52E08 = Neopets Puzzle Adventure R52P08 = Neopets Puzzle Adventure R53PFH = In The Mix Featuring Armin van Buuren R54FMR = Countdown: The Game R55F41 = Qui Veut Gagner Des Millions: 1ère Edition R55P41 = Wer wird Millionär R56EG9 = Astro Boy: The Video Game R56PG9 = Astro Boy: The Video Game R57FMR = Questions pour un champion R58DMR = U-Sing R58FMR = U-Sing R58PMR = U-Sing R58SMR = U-Sing R59D4Q = Club Penguin: Game Day! R59E4Q = Club Penguin: Game Day! R59P4Q = Club Penguin: Game Day! R5AE8P = The Golden Compass R5AP8P = Der Goldene Kompass R5AX8P = Der Goldene Kompass R5DE5G = Flip's Twisted World R5EPMR = Countdown: The Game R5FE41 = Academy of Champions: Soccer R5FP41 = Academy of Champions: Fussball R5GE78 = Are You Smarter Than A 5th Grader?: Make the Grade R5IE4Q = Toy Story Mania! R5IP4Q = Toy Story Mania! R5IR4Q = Toy Story Mania! R5IX4Q = Toy Story Mania! R5JES5 = Pirates vs Ninjas Dodgeball R5JPS5 = Völkerball aka Dodgeball (Pirates vs Ninjas Dodgeball) R5MJAF = Kotoba No Puzzle Mojipittan Wii Deluxe R5NJN9 = Doala De Wii R5OENR = Party Pigs: Farmyard Games R5OXUG = Schweine Party R5PE69 = Harry Potter and the Order of the Phoenix R5PJ13 = Harry Potter and the Order of the Phoenix R5PP69 = Harry Potter und der Orden des Phönix R5PX69 = Harry Potter und der Orden des Phönix R5QPGT = Zirkus R5SERW = Mortimer Beckett and the Secrets of Spooky Manor R5TE69 = Grand Slam Tennis R5TJ13 = Grand Slam Tennis R5TP69 = Grand Slam Tennis R5UE41 = CSI: Deadly Intent R5UP41 = CSI: Tödliche Absichten R5VE41 = James Cameron's Avatar: The Game R5VP41 = James Cameron's Avatar: Das Spiel R5VX41 = James Cameron's Avatar: Das Spiel R5WEA4 = Silent Hill: Shattered Memories R5WJA4 = Silent Hill: Shattered Memories R5XJ13 = MySims Agents R5XP69 = MySims Agents R5YD78 = All Star Cheerleader 2 R5YE78 = All Star Cheer Squad 2 R5YP78 = All Star Cheerleader 2 R62E4Q = Disney Sing It: Pop Hits R62P4Q = Disney Sing It: Pop Hits R63EG9 = Family Party: 30 Great Games Outdoor Fun R63PG9 = Family Party: 30 Great Games Outdoor Fun R64E01 = Wii Music R64J01 = Wii Music R64K01 = Wii Music R64P01 = Wii Music R65ENR = Buck Fever R66E41 = Press Your Luck 2010 Edition R67E6K = Smart Series Presents: JaJa's Adventure R68E5G = Go Play City Sports R69E36 = DiRT 2 R69P36 = Colin McRae: DiRT 2 R6APPU = Mein Baby und ich R6BE78 = de Blob R6BJ78 = Blob Colorful Na Kibou R6BK78 = de Blob R6BP78 = de Blob R6BX78 = de Blob R6CEAF = We Cheer 2 R6CJAF = WE CHEER Dancing Spirits! R6DFJW = Code de la Route R6EE41 = Family Feud 2010 Edition R6FE41 = Six Flags Fun Park R6FERS = Six Flags Fun Park R6FP41 = Fun Park Party R6GPMR = Golden Balls R6HE54 = Ni Hao, Kai-lan: Super Game Day R6HP54 = Ni Hao, Kai-lan: Super Game Day R6IE54 = Baseball Blast! R6JJGD = Fullmetal Alchemist: Prince of the Dawn R6KP36 = Ashes Cricket 2009 R6KU36 = Ashes Cricket 2009 R6LEWR = LEGO Rock Band R6LPWR = LEGO Rock Band R6ME5Z = America's Next Top Model R6MPML = America´s Next Top Model R6MXMR = Top Model R6NE41 = Shaun White Snowboarding: World Stage R6NP41 = Shaun White Snowboarding: World Stage R6NY41 = Shaun White Snowboarding: World Stage R6OE78 = Cars Race-O-Rama R6OP78 = Cars Race-O-Rama R6OX78 = Cars Race-O-Rama R6QE69 = MySims Agents R6REJH = TrackMania: Build to Race R6RPHH = TrackMania R6TEA4 = Tornado Outbreak R6TPA4 = Tornado Outbreak R6VE4Z = King of Clubs R6VPGN = King of Clubs R6WE68 = AMF Bowling World Lanes R6WP68 = AMF Bowling: World Lanes R6XE69 = Hasbro: Family Game Night 2 R6XP69 = Hasbro - Spiel Mal Wieder! R6YEXS = Squeeballs Party R6YPH3 = Squeeballs Party R72E5G = Cake Mania: In The Mix! R72P5G = Cake Mania: In The Mix! R74E20 = Arcade Shooting Gallery R75E20 = Dream Salon R76E54 = NBA 2K10 R76P54 = NBA 2K10 R77JAF = SD Gundam: G Generation Wars R79JAF = Mobile Suit Gundam: MS Sensen 0079 R7AE69 = SimAnimals Africa R7AJ13 = SimAnimals Africa R7AP69 = SimAnimals Afrika R7BE20 = Jelly Belly Ballistic Beans R7BP7J = Jelly Belly - Ballistic Beans R7CJ01 = Captain Rainbow R7EE8P = NiGHTS: Journey of Dreams R7EJ8P = Nights Journey Of Dreams R7EP8P = NiGHTS: Journey of Dreams R7FEGD = Final Fantasy Fables: Chocobo's Dungeon R7FJGD = Final Fantasy Fables: Chocobo's Dungeon R7FPGD = Final Fantasy Fables: Chocobo's Dungeon R7GEAF = Dragon Ball: Revenge of King Piccolo R7GJAF = Dragon Ball: Tenkaichi Daibouken R7GPAF = Dragon Ball: Revenge of King Piccolo R7HE6K = Army Rescue R7IE69 = Charm Girls Club: Pajama Party R7IP69 = Charm Girls Club: Pyjama Party R7KE6K = Rock Blast R7LP7J = Margot's Bepuzzled! R7MXFR = Musiic Party: Rock the House R7NE20 = Cold Stone Creamery: Scoop It Up R7OE54 = NHL 2K10 R7OP54 = NHL 2K10 R7PE01 = Punch-Out!! R7PJ01 = Punch-Out!! R7PP01 = Punch-Out!! R7QE52 = Chaotic: Shadow Warriors R7RE52 = Little League World Series Baseball 2009 R7SE5G = Escape The Museum R7SP5G = Escape the Museum R7TFJW = Pétanque Pro R7VEWR = Vacation Isle: Beach Party R7VPWR = Vacation Isle: Beach Party R7WE52 = Mountain Sports R7WP52 = Mountain Sports R7XE69 = Need for Speed: Nitro R7XJ13 = Need for Speed: Nitro R7XP69 = Need for Speed: Nitro R7YFMR = Pékin Express R7ZE41 = Team Elimination Games R7ZP41 = Die verrückte TV Show R82E52 = Animal Planet: Vet Life R82JG0 = Darts Wii DX R82P52 = Animal Planet: Tierarzt R83EA4 = Pop'n Music R83JA4 = Pop'n Music R83PA4 = Pop'n Rhythm R84EE9 = Harvest Moon: Tree Of Tranquility R84J99 = Bokujo for Wii R84P99 = Harvest Moon: Baum der Stille R85EG9 = The Secret Saturdays: Beasts of the 5th Sun R85PG9 = The Secret Saturdays: Beasts of the 5th Sun R86E20 = Dream Dance & Cheer R87EVN = Ski-Doo: Snowmobile Challenge R88J2L = Anpanman Niko Niko Party R89JEL = Tokyo Friend Park 2 Wii R8AE01 = PokéPark Wii: Pikachu's Adventure R8AJ01 = PokéPark Wii: Pikachu no Daibouken R8AP01 = PokéPark Wii: Pikachus großes Abenteuer R8BE41 = Imagine Party Babyz R8BP41 = Babysitting Party R8DEA4 = Yu-Gi-Oh! 5D's: Duel Transer R8DJA4 = Yu-Gi-Oh! 5D's: Duel Transer R8DPA4 = Yu-Gi-Oh! 5D's: Master of the Cards R8EJQC = Earth Seeker R8FES5 = Fast Food Panic R8FJHA = Takumi Restaurant ha Daihanjou! R8FJSC = Takumi Restaurant wa Daihanjou! (Simplified Chinese Translation) R8FPNP = Fast Food Panic R8GJC8 = G1 Jockey Wii 2008 R8GPC8 = G1 Jockey Wii 2008 R8HE4Q = Hannah Montana: The Movie R8HP4Q = Hannah Montana: Der Film R8HX4Q = Hannah Montana: Der Film R8HY4Q = Hannah Montana: The Movie R8IE78 = SpongeBob's Truth or Square R8IP78 = SpongeBob's Eiskalt Entwischt R8IS78 = SpongeBob's Truth or Square R8JEWR = The Lord of the Rings: Aragorn's Quest R8JPWR = Der Herr der Ringe: Die Abenteuer von Aragorn R8KPKM = Street Football 2 R8LE20 = Chicken Blaster R8LP7J = Chicken Blaster R8NEA4 = The Cages: Pro Style Batting Practice R8NJG0 = Batting Revolution R8OE54 = Ringling Bros. and Barnum & Bailey Circus R8OX54 = Wir gehen in den Zirkus R8PC01 = Super Paper Mario(CN) R8PE01 = Super Paper Mario R8PJ01 = Super Paper Mario R8PK01 = Super Paper Mario R8PP01 = Super Paper Mario R8QPRT = Crazy Quiz: Are You Crazy Enough? R8RP41 = Arthur 2 und die Minimoys: Die Rückkehr Des Bösen M R8SE41 = Vacation Sports R8SP41 = World Sports Party R8SX41 = World Sports Party R8TENR = Tournament Pool R8UXMR = Addy Junior und die verzauberte Natur R8VE41 = Petz Rescue: Wildlife Vet R8VP41 = Einsatz Erde: Die Tierretter R8XE52 = Jurassic: The Hunted R8XZ52 = Top Shot Dinosaur Hunter R8YE52 = Cabela's Big Game Hunter 2010 R8ZE8P = Daisy Fuentes Pilates R8ZPGT = Daisy Fuentes Pilates R92E01 = Pikmin 2 R92J01 = Pikmin 2 R92P01 = Pikmin 2 R94PMR = The Ultimate Red Ball Challenge R94XMR = The Ultimate Red Ball Challenge R96EAF = Klonoa R96JAF = Kaze no Klonoa Door to Phantomile R96KAF = Klonoa - Door to Phantomile R96PAF = Klonoa R97E9B = Family Fun Football R9AE52 = Activision Demo Action Pack (Demo) R9BPMT = Bob der Baumeister: Fest der Freude R9CPMR = I'm a Celebrity...Get Me Out of Here! R9DE78 = Drawn to Life: The Next Chapter R9DP78 = Der magische Stift R9EPNP = Brico Party: Werde Heimwerker-König R9FE36 = F1 2009 R9FJ36 = F1 2009 R9FP36 = F1 2009 R9GEWR = Legend of the Guardians: The Owls of Ga'Hoole R9GPWR = Die Legende der Wächter R9HE78 = Are You Smarter Than A 5th Grader?: Game Time R9IE01 = Pikmin R9IJ01 = Pikmin R9IK01 = Pikmin R9IP01 = Pikmin R9JE69 = The Beatles: Rock Band R9JP69 = The Beatles: Rock Band R9KE20 = Groovin' Blocks R9LE41 = Sleepover Party R9LP41 = Girls Life: Pyjama-Party R9ME5Z = World Championship Athletics R9MPFR = Summer Athletics 2009 R9NPMR = Family Fortunes R9OE69 = Tiger Woods PGA Tour 10 R9OK69 = Tiger Woods PGA Tour 10 R9OP69 = Tiger Woods PGA Tour 10 R9QPNG = Dance Party Club Hits R9RPNG = Dance Party - Pop Hits R9SPPL = Sudoku Ball: Detective R9TE69 = Tiger Woods PGA Tour 09 All-Play R9TJ13 = Tiger Woods PGA Tour 09 All-Play R9TK69 = Tiger Woods PGA Tour 09 All-Play R9TP69 = Tiger Woods PGA Tour 09 All-Play R9UE52 = Build-A-Bear Workshop: Friendship Valley R9UPGY = Build-A-Bear Workshop: Friendship Valley R9VE52 = Cabela's Outdoor Adventures 2010 R9WPSP = WSC Real 09: World Snooker Championship R9XE52 = Arcade Zone R9XP52 = Arcade Zone R9YES5 = Sled Shred R9ZE54 = Major League Baseball 2K9 RABAZZ = System Menu Changer RADP01 = New Super Mario Bros. Wii 0-6 Radiance RB2E6K = Balloon Pop RB2J2K = Rainbow Pop RB2P6K = Balloon Pop! RB2PGT = Balloon Pop! RB4E08 = Resident Evil 4: Wii Edition RB4J08 = Biohazard 4 Wii Edition RB4P08 = Resident Evil 4: Wii Edition RB4X08 = Resident Evil 4: Wii Edition RB5E41 = Brothers In Arms: Earned In Blood RB5P41 = Brothers In Arms: Earned In Blood RB6J18 = Bomberman RB7E54 = Bully: Scholarship Edition RB7P54 = Bully: Die Ehrenrunde RB8E70 = Backyard Baseball '09 RB9D78 = Bratz: The Movie RB9E78 = Bratz: The Movie RB9P78 = Bratz: The Movie RB9X78 = Bratz: The Movie RB9Y78 = Bratz: The Movie RBAE41 = Blazing Angels: Squadrons of WWII RBAP41 = Blazing Angels: Squadrons of WWII RBBE18 = Bomberman Land RBBJ18 = Bomberman Land Wii RBBP99 = Bomberman Land Wii RBCP41 = Telly Addicts RBEE52 = Bee Movie Game RBEP52 = Bee Movie: Das Game RBEX52 = Bee Movie: Das Game RBFE20 = Balls of Fury RBFP20 = Balls of Fury RBFP7J = Balls of Fury RBGE54 = The BIGS RBGP54 = The Bigs - Baseball RBHE08 = Resident Evil Archives: Resident Evil Zero RBHJ08 = Resident Evil Zero RBHP08 = Resident Evil Archives: Resident Evil Zero RBIEE9 = Harvest Moon: Animal Parade RBIJ99 = Bokujou Monogatari Waku Waku Animal March RBIP99 = Harvest Moon: Deine Tierparade RBKE69 = Boom Blox RBKJ13 = Boom Blox RBKK69 = Boom Blox RBKP69 = Boom Blox RBLE8P = Bleach: Shattered Blade RBLJ8P = Bleach: Shattered Blade RBLP8P = Bleach: Shattered Blade RBME5G = Bust-a-Move Bash! RBMPGT = Bust A Move RBNEG9 = Ben 10: Protector of Earth RBNPG9 = Ben 10: Protector of Earth RBNXG9 = Ben 10: Protector of Earth RBOE69 = Boogie RBOP69 = Boogie RBPE4Z = Brunswick Pro Bowling RBPP4Z = Brunswick Pro Bowling RBPPGT = Brunswick Pro Bowling RBQENR = Classic British Motor Racing RBQPUG = Classic British Motor Racing RBRE5G = Blast Works: Build, Trade, Destroy RBRP5G = Blast Works: Build, Trade, Destroy RBRX5G = Blast Works: Build, Trade, Destroy RBSJ08 = Sengoku Basara 2 Heroes (Double Pack) RBSJ09 = Sengoku Basara 2 Heroes RBTE8P = SEGA Bass Fishing RBTJ8P = Sega Bass Fishing RBTP8P = Sega Bass Fishing RBUE08 = Resident Evil: The Umbrella Chronicles RBUJ08 = Biohazard The Umbrella Chronicles RBUK08 = Biohazard The Umbrella Chronicles RBUP08 = Resident Evil: The Umbrella Chronicles RBVE52 = Barbie as The Island Princess RBVP52 = Barbie als Prinzessin der Tierinsel RBWE01 = Battalion Wars 2 RBWJ01 = Totsugeki Famicom Wars vs. RBWP01 = Battalion Wars 2 RBXJ8P = Bleach: Versus Crusade RBYE78 = Barnyard RBYJ78 = Barnyard RBYP78 = Der tierisch verrückte Bauernhof RBZE5Z = Billy the Wizard: Rocket Broomstick Racing RBZP5Z = Billy the Wizard: Rocket Broomstick Racing RBZPUG = Billy the Wizard: Rocket Broomstick Racing RBZXUG = Billy the Wizard: Rocket Broomstick Racing RC2E78 = Cars: Mater-National RC2P78 = Cars: Hook International RC2X78 = Cars: Hook International RC2Y78 = Cars: Hook International RC3E41 = Petz Catz 2 RC3J41 = Nyanko To Mahou No Boushi RC3P41 = Petz: Katzenfreunde RC3X41 = Petz: Katzenfreunde RC4JD9 = Crayon Shin-Chan: Saikyou Kazoku Kasukabe King Wii RC4SGT = Shin Chan The New Adventures For Wii RC5JDQ = Osouji Sentai Clean Keeper RC7E20 = Sea Monsters: A Prehistoric Adventure RC7P7J = Sea Monsters: A Prehistoric Adventure RC8E7D = Crash: Mind Over Mutant RC8P7D = Crash: Herrscher Der Mutanten RC8X7D = Crash: Mind Over Mutant RC9PGN = CID : The Dummy RCAE78 = Cars RCAJ78 = Cars RCAP78 = Cars RCAX78 = Cars RCAY78 = Cars RCBE52 = Cabela's Big Game Hunter RCBP52 = Cabela's Big Game Hunter RCCE5G = Cooking Mama: Cook Off RCCJC0 = Cooking Mama RCCPGT = Cooking Mama 1 RCCR78 = Guitar Hero III Custom: Coheed and Cambria RCDD52 = Call of Duty 3 RCDE52 = Call of Duty 3 RCDP52 = Call of Duty 3 RCDX52 = Call of Duty 3 RCEE5Z = Mini Desktop Racing RCEPUG = Mini Desktop Racing RCEXUG = Mini Desktop Racing RCFE41 = Cosmic Family RCFP41 = Cosmic Family RCGE54 = Carnival Games RCGP54 = Carnival - Die Jahrmarkt-Party RCHC52 = Guitar Hero III Custom : Guitar Hero II RCHEAF = We Cheer RCHJAF = We Cheer RCHPAF = We Cheer RCHPGT = We Cheer RCIE41 = CSI: Hard Evidence RCIP41 = CSI: Eindeutige Beweise RCJE8P = The Conduit RCJP8P = The Conduit RCKPGN = Klaus Gronewalds Sports Challenge RCLE4Q = Disney's Chicken Little: Ace in Action RCLP4Q = Himmel und Huhn: Ace in Action RCOC99 = Meitantei Conan: Tsuioku no Mirage RCOJ99 = Meitantei Conan: Tsuioku no Mirage RCOK99 = Detective Conan: Case Closed: The Mirapolis Investigation RCOKZF = Case Closed: The Mirapolis Investigation RCOPNP = Detective Conan - Die Mirapolis Ermittlung RCPE18 = Kororinpa: Marble Mania RCPJ18 = Kororinpa RCPP18 = Kororinpa RCQEDA = Penny Racers Party: Turbo-Q Speedway RCQJDA = Choro Q RCRE5D = Cruis'n RCRP5D = Cruis'n RCSE20 = Chicken Shoot RCSP20 = Chicken Shoot RCSP7J = Chicken Shoot RCTE5Z = Counter Force RCTP5Z = Counter Force RCTPGT = Counter Force RCUE52 = Cabela's Legendary Adventures RCUP52 = Cabela's Legendary Adventures RCVE41 = Far Cry: Vengeance RCVP41 = Far Cry: Vengeance RCXE78 = All Star Cheer Squad RCXP78 = All Star Cheerleader RCXX78 = All Star Cheerleader RCYPGN = Cheggers Party Quiz RD2E41 = Red Steel 2 RD2J41 = Red Steel 2 RD2K41 = Red Steel 2 RD2P41 = Red Steel 2 RD2X41 = Red Steel 2 RD4EA4 = Dance Dance Revolution: Hottest Party 2 RD4JA4 = Dance Dance Revolution: Furu Furu Party RD4PA4 = Dance Dance Revolution: Hottest Party 2 RD6EE9 = Animal Kingdom: Wildlife Expedition RD6J8N = Doubutu Kisoutengai RD6PNP = SAFAR'Wii RD8E52 = Dancing with the Stars RD9J18 = Sudoku RDAE52 = Dancing with the Stars: We Dance! RDBE70 = Dragon Ball Z: Budokai Tenkaichi 2 RDBJAF = Dragon Ball Z: Sparking! NEO RDBP70 = Dragon Ball Z: Budokai Tenkaichi 2 RDBPAF = Dragon Ball Z: Budokai Tenkaichi 2 RDCE78 = Deadly Creatures RDCP78 = Deadly Creatures RDDEA4 = Dance Dance Revolution: Hottest Party RDDJA4 = Dance Dance Revolution: Hottest Party RDDPA4 = Dance Dance Revolution Hottest Party RDEJ0A = Zenkoku Dekotora Matsuri RDFE41 = Shaun White Snowboarding: Road Trip RDFP41 = Shaun White Snowboarding: Road Trip RDGEA4 = Castlevania Judgment RDGJA4 = Akumajou Dracula Judgment RDGPA4 = Castlevania Judgement RDHE78 = Destroy All Humans! Big Willy Unleashed RDHP78 = Destroy All Humans! Big Willy: Entfesselt RDIE41 = The Dog Island RDIJG2 = The Dog Island RDIP41 = The Dog Island RDJE4F = Death Jr.: Root of Evil RDJP4F = Death Jr.: Root of Evil RDKE01 = Donkey Kong: Barrel Blast RDKJ01 = Donkey Kong Taru Jet Race RDKP01 = Donkey Kong: Jet Race RDLE5G = Spy Fox in Dry Cereal RDLP70 = Spy Fox: Das Milchkartell RDME6K = Domino Rally RDMJ8N = Go! Go! Minon RDMPHZ = Minon: Der Held der Stunde RDNEA4 = Dance Dance Revolution: Disney Grooves RDOE41 = Petz Dogz 2 RDOJ41 = Dog To Mahou No Boushi RDOP41 = Petz: Hundefreunde RDOX41 = Petz: Hundefreunde RDPE54 = Dora Saves the Snow Princess RDPP54 = Dora Saves the Snow Princess RDPX54 = Dora Saves the Snow Princess RDQEGD = Dragon Quest Swords: The Masked Queen and The Tower of Mirrors RDQJGD = Dragon Quest Swords: Kamen no Joou to Kagami no Tou RDQPGD = Dragon Quest Swords: Die maskierte Königin und der Spiegelturm RDREA4 = Dewy's Adventure RDRJA4 = Dewy's Adventure RDRPA4 = Dewy's Adventure RDSE70 = Dragon Ball Z: Budokai Tenkaichi 3 RDSJAF = Dragon Ball Z: Sparking! METEOR RDSPAF = Dragon Ball Z: Budokai Tenkaichi 3 RDSZ70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino RDTEAF = Tamagotchi: Party On! RDTJAF = Tamagotchi Pikadai RDTPAF = Tamagotchi: Party On! RDUE01 = DU Super Mario Bros. : Find That Princess RDUJDQ = Sugorochronicle Migite Ni Ken Wo Hidarite Ni Saikoro Wo RDVE41 = Driver: Parallel Lines RDVP41 = Driver: Parallel Lines RDWEG9 = Dragon Blade: Wrath of Fire RDWJG9 = Dragon Blade: Wrath Of Fire RDWPG9 = Dragon Blade: Wrath of Fire RDXE18 = Deca Sports RDXJ18 = Deca Sporta RDXKA4 = Deca Sporta RDXP18 = Sports Island RDYEGN = CID: The Dummy RDZJ01 = Disaster: Day of Crisis RDZP01 = Disaster: Day of Crisis RE3ENR = WWII Aces RE4E08 = Resident Evil Archives: Resident Evil RE4J08 = Biohazard RE4P08 = Resident Evil Archives: Resident Evil RE5PAF = The Munchables RE6PRT = Summer Challenge: Athletics Tournament RE7PNK = Hunting Challenge RE8J99 = Katekyoo Hitman Reborn Kindan No Yami No Delta REAE69 = Celebrity Sports Showdown REAF69 = Celebrity Sports Showdown REAP69 = Celebrity Sports Showdown REBE4Z = Mr Bean's Wacky World of Wii REBPMT = Mr. Bean's Wacky World of Wii RECE6K = Spy Games: Elevator Mission RECP6K = Spy Games: Elevator Mission REDE41 = Red Steel REDJ41 = Red Steel REDP41 = Red Steel REFP41 = My French Coach: Improve Your French REGE36 = Emergency Mayhem REGP36 = Alarm: Brennpunkt City REHE41 = Emergency Heroes REHP41 = Emergency Heroes REJEAF = Active Life: Extreme Challenge REJJAF = Family Trainer 2 REJPAF = Family Trainer: Extreme Challenge REKE41 = Gold's Gym: Cardio Workout REKJ2N = Shape Boxing Wii De Enjoy Diet REKP41 = Mein Fitness Coach: Cardio Workout REKU41 = Gold's Gym: Cardio Workout RELEA4 = Elebits RELJA4 = Elebits RELKA4 = Elebits RELPA4 = Eledees RELSAB = Sonic Adventure DX: Director's Cut (Preview Prototype) REMJ8P = Doraemon Wii Himitsu Douguou Ketteisen RENE8P = Sonic and the Black Knight RENJ8P = Sonic and the Black Knight RENP8P = Sonic und der Schwarze Ritter REQE54 = Go Diego Go! Safari Rescue REQP54 = Go Diego Go! Safari Rescue REQX54 = Go Diego Go! Safari Rescue REQY54 = Go Diego Go! Safari Rescue RESP41 = My Spanish Coach: Improve Your Spanish RETJAF = Ennichi No Tatsujin REUPNK = My Body Coach REVJ8P = Imabi Kisô: Kaimei Hen REVJBP = Imabikisou: Kaimei Hen REWFMR = My Horse Club: On the Trail of the Mysterious Appaloosa REWXMR = My Horse Club: On the Trail of the Mysterious Appaloosa REWYMR = My Horse Club: Auf der Spur der Appaloosas REXE01 = Excite Truck REXJ01 = Excite Truck REXP01 = Excite Truck REYE4Q = Disney Sing It: High School Musical 3 Senior Year REYP4Q = Disney Sing It: High School Musical 3 REYX4Q = Disney Sing It: High School Musical 3 REZEJJ = Fritz Chess REZPKM = Fritz by Chessbase RF2E54 = Fantastic Four: Rise of the Silver Surfer RF2P54 = Fantastic Four: Rise of the Silver Surfer RF3E52 = Ferrari Challenge: Trofeo Pirelli RF3P6M = Ferrari Challenge: Trofeo Pirelli RF4E36 = Super Fruit Fall RF4P6M = Super Fruit Fall RF7J08 = Tatsunoko vs. Capcom: Cross Generation of Heroes RF8E69 = FIFA Soccer 08 RF8J13 = FIFA 08 RF8K69 = FIFA 08 RF8P69 = FIFA 08 RF8X69 = FIFA 08 RF8Y69 = FIFA 08 RF9E69 = FIFA Soccer 09 All-Play RF9J13 = FIFA 09 All-Play RF9K69 = FIFA 09 All-Play RF9P69 = FIFA 09 All-Play RF9X69 = FIFA 09 All-Play RF9Y69 = FIFA 09 All-Play RFAEAF = Active Life: Outdoor Challenge RFAJAF = Family Trainer: Athletic World RFAPAF = Family Trainer RFBE01 = Endless Ocean RFBJ01 = Forever Blue RFBP01 = Endless Ocean RFCEGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFCJGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFCPGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFEE01 = Fire Emblem: Radiant Dawn RFEJ01 = Fire Emblem Akatsuki No Megami RFEP01 = Fire Emblem: Radiant Dawn RFFEGD = Final Fantasy Crystal Chronicles: Echoes of Time RFFJGD = Final Fantasy Crystal Chronicles: Echoes of Time RFFPGD = Final Fantasy Crystal Chronicles: Echoes of Time RFJJAF = Family Jockey RFKE41 = My Fitness Coach RFKJ41 = My Fitness Coach RFKP41 = Mein Fitness-Coach: Gut in Form RFKX41 = Mein Fitness Coach: Gut in Form RFLE69 = Madden NFL 09 All-Play RFLP69 = Madden NFL 09 All-Play RFLPWK = Wii Freeloader RFMJAF = Pro Yakyuu Family Stadium RFNE01 = Wii Fit RFNJ01 = Wii Fit RFNK01 = Wii Fit RFNP01 = Wii Fit RFNW01 = Wii Fit RFOE52 = Spider-Man: Friend or Foe RFOP52 = Spider-Man: Friend or Foe RFOX52 = Spider-Man: Freund oder Feind RFPE01 = Wii Fit Plus RFPJ01 = Wii Fit Plus RFPK01 = Wii Fit Plus RFPP01 = Wii Fit Plus RFPR01 = Wii Fit Plus RFPW01 = Wii Fit Plus RFQE69 = FaceBreaker K.O. Party RFQJ13 = FaceBreaker K.O. Party RFQJ69 = FaceBreaker K.O. Party RFQK69 = FaceBreaker: K.O. Party RFQP69 = FaceBreaker: K.O. Party RFRE5G = Furu Furu Park RFRJC0 = Furu Furu Park RFSEEB = Shiren the Wanderer RFSJ8P = Fushigi No Dungeon: Furai No Shiren 3 RFTE70 = Backyard Football RFTP70 = Backyard Football '08 RFUJA4 = Mahjong Kakutou Club Wii: Wi-fi Taiou RFVE52 = Monkey Mischief! Party Time RFVP52 = Affenzirkus! 20 Spiele RFWE5Z = Safari Adventures Africa RFWPNK = Safari-Abenteuer in Afrika RFYFMR = Fort Boyard RFZE41 = Imagine Fashion Party RFZP41 = Sophies Freunde: Fashion-Show RG0E52 = Guitar Hero III Custom : Green Day Plus RG1552 = Guitar Hero III Custom : Weird Al Yankovic RG1E52 = Guitar Hero III Custom : Revenge RG2E52 = Guitar Hero III Custom : The Beatles Plus RG2EXS = Guilty Gear XX Accent Core RG2JJF = Guilty Gear XX Accent Core RG2PGT = Guilty Gear XX Accent Core RG2PXS = Guilty Gear XX Accent Core RG3E52 = Guitar Hero III Custom : Muse and Rush RG4152 = Guitar Hero III Custom : Sum 41 RG4E52 = Guitar Hero Mayan Apocalypse RG4JC0 = Let's Go By Train Shinkansen EX RG5EWR = Guinness World Records: The Videogame RG5PWR = Guinness World Records: Das Videospiel RG6E69 = Boogie SuperStar RG6P69 = Boogie Superstar RG7EQH = City Builder RG8E41 = Petz Sports RG8P41 = Petz Sports: Wilder Hunde-Spaß RG9E52 = Guitar Hero III Custom : Anarchy RG9E54 = Carnival Games: Mini Golf RG9P54 = Carnival Games: Mini Golf RGAE8P = Planet 51: The Game RGAP8P = Planet 51: Das Spiel RGBE08 = Harvey Birdman: Attorney at Law RGBP08 = Harvey Birdman: Attorney at Law RGCEXS = MiniCopter: Adventure Flight RGCJJF = Petitcopter Wii Adventure Flight RGCM52 = Guitar Hero III Custom : Metallica RGCPGT = Radio Helicopter RGCS52 = Guitar Hero III Custom : ClasSick Edition RGDEA4 = Target: Terror RGDPA4 = Target: Terror RGEJJ9 = The World Of Golden Eggs Norinori Rhythm RGEK52 = Guitar Hero III Custom: Slipknot RGFE69 = The Godfather: Blackhand Edition RGFF69 = The Godfather: Blackhand Edition RGFI69 = The Godfather: Blackhand Edition RGFP69 = Der Pate: Blackhand Edition RGFS69 = The Godfather: Blackhand Edition RGGE52 = Guitar Hero III Custom : Rock The Games RGGJAF = Gegege No Kitarou Youkai Daiundoukai RGHC20 = Guitar Hero III Custom : Fail Edition RGHE51 = Guitar Hero III Custom : Aspero RGHE52 = Guitar Hero III: Legends of Rock RGHE60 = Guitar Hero III Custom: WTF Custom RGHE61 = I Fought The Law - GH3 RGHE62 = Sweet Home Alabama - GH3 RGHE69 = Guitar Hero III Custom : Legends of METAL RGHEMR = Guitar Hero III Custom : Modern Rock RGHI52 = Guitar Hero III Custom: Chimba RGHJ52 = Guitar Hero III Legends of Rock RGHK52 = Guitar Hero III Legends of Rock RGHP52 = Guitar Hero III: Legends Of Rock RGHPOH = SingItStar Italian Greatest Hits RGHPS2 = Guitar Hero III Custom : J-Music RGHX52 = Guitar Hero III Custom: Anime's Alex Chan RGIJC8 = G1 Jockey Wii RGIPC8 = G1 Jockey Wii RGJE4Z = George of the Jungle: Search for the Secret RGJP7U = George Der aus dem Dschungel kam RGKE52 = Guitar Hero III Custom : KoRn RGKENR = Kidz Sports: Crazy Golf RGKPNR = Crazy Mini Golf RGLE7D = Geometry Wars: Galaxies RGLP7D = Geometry Wars: Galaxies RGME5D = The Grim Adventures of Billy & Mandy RGMP5D = The Grim Adventures of Billy & Mandy RGNJAF = Gintama Yorozuya Tuve RGOJJ9 = The World of Golden Eggs Nissan Note Version RGPJAF = Anime Slot Revolution Pachi-Slot Kidou Senshi Gundam II Ai Senshi Hen RGQE70 = Ghostbusters: Das Videospiel RGQP70 = Ghostbusters: Das Videospiel RGRM52 = Guitar Hero III Custom: Rock & Metal RGSE8P = Ghost Squad RGSJ8P = Ghost Squad RGSP8P = Ghost Squad RGTE41 = GT Pro Series RGTJBL = GT Pro Series RGTP41 = GT Pro Series RGVE52 = Guitar Hero: Aerosmith RGVE99 = Guitar Hero Aerosmith Custom: NOT Aerosmith but... RGVJ52 = Guitar Hero: Aerosmith RGVP52 = Guitar Hero: Aerosmith RGWE41 = Rabbids Go Home RGWJ41 = Rabbids Go Home RGWP41 = Rabbids Go Home RGWX41 = Rabbids Go Home RGXE5D = Game Party RGXEFN = Guitar Hero III Custom: Meteo Last Custom RGXM52 = Guitar Hero III Custom : xMxExTxAxLx's Edition RGXP5D = Game Party RGYE5Z = Action Girlz Racing RGYPUG = Action Girlz Racing RGZC52 = Guitar Hero III Custom : Led Zeppelin RGZE52 = Guitar Hero III Custom : Shred Edition RGZE70 = Godzilla Unleashed RGZP70 = Godzilla Unleashed RH2E41 = Hell's Kitchen: The Video Game RH2P41 = Hell's Kitchen RH3E4Q = High School Musical 3: Senior Year Dance! RH3J4Q = High School Musical 3: Senior Year Dance! RH3P4Q = High School Musical 3: Senior Year Dance! RH4XUG = Hamster Heroes RH5EVN = Horse Life Adventures RH5PKM = Horse Life: Freunde für immer RH6E69 = Harry Potter and the Half-Blood Prince RH6K69 = Harry Potter and the Half Blood Prince RH6P69 = Harry Potter und der Halbblutprinz RH7J8P = Jissen Pachislot Hisshouhou! Sammy's Collection Hokuto no Ken Wii RH8E4F = Tomb Raider: Underworld RH8JEL = Tomb Raider: Underworld RH8P4F = Tomb Raider: Underworld RH8X4F = Tomb Raider: Underworld RH9JC8 = Harukanaru Toki no Naka de 4 RHAE01 = Wii Play RHAJ01 = Hajimete no Wii RHAK01 = Wii Play RHAP01 = Wii Play RHAW01 = Wii Play RHCE52 = The History Channel: Battle for the Pacific RHCP52 = The History Channel: Battle for the Pacific RHD222 = The House of The Dead 2 RHD333 = The House of the Dead 3 RHDE8P = The House of the Dead 2 & 3 Return RHDJ8P = The House of The Dead 2 & 3 Return RHDP8P = The House of the Dead 2 & 3 Return RHEEJJ = Professor Heinz Wolff's Gravity RHEPKM = Professor Heinz Wolff's Gravity RHFE5D = Happy Feet RHFP5D = Happy Feet RHGH52 = Guitar Hero III Custom : RandomHero's RHGP6Z = Agent Hugo: Lemoon Twist RHGX6Z = Agent Hugo: Lemoon Twist RHHJ8J = Suzumiya Haruhi no Gekidou RHIEXJ = Victorious Boxers: Revolution RHIJ41 = Hajime No Ippo Revolution RHIJJ9 = Hajime No Ippo Revolution RHIP41 = Victorious Boxers Challenge RHJJ13 = Ginsei Table Games Wii RHKE18 = Help Wanted: 50 Wacky Jobs RHKJ18 = Hataraku Hit RHKP18 = Job Island RHLE4Z = World Championship Poker Featuring Howard Lederer: All-In RHLPGT = World Championship Poker Featuring Howard Lederer: All-In RHMEE9 = Harvest Moon: Magical Melody RHMP99 = Harvest Moon: Magical Melody RHNE70 = My Horse & Me RHNP70 = My Horse & Me - Mein Pferd und Ich RHOE8P = The House of the Dead: Overkill RHOJ8P = The House of The Dead: Overkill RHOP8P = The House of the Dead: Overkill RHPJ8N = Akko De Pon! Ikasama Hourouki RHQE4Q = Hannah Montana: Spotlight World Tour RHQP4Q = Hannah Montana: Welttournee im Rampenlicht RHQX4Q = Hannah Montana: Welttournee im Rampenlicht RHQY4Q = Hannah Montana: Welttournee im Rampenlicht RHRJ99 = Kateikyou Hitman Reborn! Dream Hyper Battle! Wii RHSE36 = Heatseeker RHSP36 = Heatseeker RHSX36 = Heatseeker RHSY36 = Heatseeker RHTE54 = Manhunt 2 RHTP54 = Manhunt 2 RHUE20 = Skate City Heroes RHUP20 = Skate City Heroes RHUP7J = Skate City Heroes RHVE5Z = Crazy Chicken Tales RHVPFR = Moorhuhn - Das verbotene Schloss RHWE52 = Hot Wheels: Beat That! RHWP52 = Hot Wheels: Beat That! RHXE78 = Battle of the Bands RHXP78 = Battle of the Bands RHYJAF = Haneru no Tobira Wii RHZE41 = Petz Horsez 2 RHZP41 = Abenteuer auf dem Reiterhof: Die Pferdeflüsterin RI1POH = SingItStar Italian Party RI2E4Q = High School Musical: Sing It! RI2P4Q = High School Musical: Sing It! RI2POH = SingItStar Italian Party vol. 2 RI3E5D = The Ant Bully RI3P5D = Lucas der Ameisenschreck RI3POH = SingItStar Italian Top.it RI6ENR = Summer Sports 2: Island Sports Party RI6P41 = Summer Sports Party RI7E4Z = Monster Mayhem: Build and Battle RI8E41 = Brothers In Arms: Road to Hill 30 RI8P41 = Brothers In Arms: Road To Hill 30 RI9EGT = Diva Girls: Divas on Ice RI9PGT = Diva Girls: Princess On Ice RIAE52 = Ice Age: Dawn of the Dinosaurs RIAI52 = Ice Age 3: Dawn of the Dinosaurs RIAP52 = Ice Age 3: Die Dinosaurier sind los RIBES5 = Igor the Game RIBPKM = Igor: Das Spiel RICENR = Iron Chef America: Supreme Cuisine RIDE20 = Smiley World: Island Challenge RIDP7J = Smiley World: Island Challenge RIEEA4 = Karaoke Revolution Presents: American Idol Encore RIFEA4 = Karaoke Revolution Presents: American Idol Encore 2 RIGE54 = Go Diego Go! Great Dinosaur Rescue RIGP54 = Go, Diego, Go! Great Dinosaur Rescue RIHE8P = The Incredible Hulk RIHP8P = Der unglaubliche Hulk RIIEQH = Kart Racer RIIPNG = Kart Racer RIIV = Riivolution RIJE69 = G.I. JOE: The Rise of Cobra RIJP69 = G.I. Joe: Geheimauftrag Cobra RIKEQH = Truck Racer RIKPNG = Truck Racer RILJ18 = Puzzle Series Vol. 2: Illust Logic + Colorful Logic RIME36 = Impossible Mission RIMP6M = Impossible Mission RINE08 = Dead Rising: Chop Till You Drop RINJ08 = Dead Rising Zombie No Ikenie RINP08 = Dead Rising: Chop Till You Drop RIOPSU = Schauderhafte Geschichten: Skrupellose Römer RIPEAF = One Piece: Unlimited Adventure RIPJAF = One Piece: Unlimited Adventure RIPPAF = One Piece Unlimited Cruise 1 - Der Schatz unter den Wellen RIQPUJ = Dancing on Ice RIRE8P = Iron Man RIRP8P = Iron Man: The Video Game RITFMR = Intervilles, le jeu officiel RIUJAF = One Piece Unlimited Cruise 2: Awakening of a Hero RIUPAF = One Piece Unlimited Cruise 2: Das Erwachen eines Helden RIVEXJ = Ivy The Kiwi? RIVJAF = Ivy the Kiwi? RIVP99 = Ivy The Kiwi? RIWENR = Burger Island RIXE20 = Dodge Racing: Charger vs. Challenger RIXP7J = Dodge Racing: Charger vs Challenger RIYE52 = Space Camp RIYP52 = Space Camp RIZENR = Indianapolis 500 Legends RJ2E52 = 007: Quantum of Solace RJ2JGD = 007: Quantum of Solace RJ2P52 = 007: Ein Quantum Trost RJ3E20 = Jeep Thrills RJ3P7J = Jeep Thrills RJ4ENR = Jewel Master: Cradle of Rome RJ4PRM = Jewel Master: Cradle of Rome RJ6E69 = MySims Sky Heroes RJ6P69 = MySims Sky Heroes RJ7FWP = Télé 7 Jeux: Mots Fléchés RJ8E64 = Indiana Jones and the Staff of Kings RJ8P64 = Indiana Jones und der Stab der Könige RJ9E5Z = thinkSMART Family RJ9FMR = Think Logic Trainer RJ9PFR = Think Logic Trainer - Training für Körper und Geist RJ9XML = Think Logic Trainer RJAD52 = Call of Duty: Modern Warfare - Reflex Edition RJAE52 = Call of Duty: Modern Warfare - Reflex Edition RJAP52 = Call of Duty: Modern Warfare - Reflex Edition RJAX52 = Call of Duty: Modern Warfare - Reflex Edition RJBJAF = Daikaijuu Battle Ultra Coliseum RJCE52 = Score International Baja 1000: World Championship Offroad Racing RJCP52 = Score International Baja 1000: World Championship Offroad Racing RJDPKM = Meine Tierklinik RJEE70 = Jenga World Tour RJEP70 = Jenga World Tour RJFE5G = Jillian Michaels' Fitness Ultimatum 2009 RJFP5G = Jillian Michaels' Fitness Ultimatum RJFPKM = Jillian Michaels Fitness Ultimatum 2009 RJGJDA = Jinsei Game Wii RJHE52 = Madagascar Kartz RJHP52 = Madagascar Kartz RJIP6M = Ferrari: The Race Experience RJJE8P = Jambo! Safari Animal Rescue RJJG52 = Guitar Hero III Custom : JJ-KwiK's Edition RJJP8P = Jambo! Safari Die Wildhuter RJMERS = Jumper: Griffin's Story RJMPRS = Jumper: Griffin's Story RJNE20 = Build 'N Race RJOEXJ = Ju-on: The Grudge RJOJJ9 = Kyoufu Taikan Juon RJOP99 = Ju-On Der Fluch RJPJA4 = Jikkyou Powerful Pro Yakyuu Wii RJQE5G = Pajama Sam: Don't Fear the Dark RJQP70 = Pyjama Pit: Keine Angst im Dunkeln RJREA4 = Dance Dance Revolution: Hottest Party 3 RJRJA4 = Dance Dance Revolution: MUSIC FIT RJRPA4 = Dance Dance Revolution: Hottest Party 3 RJSENR = Kawasaki Jet Ski RJSPNR = Kawasaki Jet Ski RJSPUG = Kawasaki Jet Ski RJSXUG = Kawasaki Jet Ski RJTJ01 = Minna no Joushiki Ryoku TV RJVEGN = Hysteria Hospital: Emergency Ward RJVPGN = Hysteria Hospital: Emergency Ward RJWJEL = Jawa mammoth And A Secret Stone RJXE5G = Go Play Lumberjacks RJXXFR = Go Play Lumberjacks - Die verrückte Holzfäller-Meisterschaft RJYE5Z = Doctor Fizzwizzle's Animal Rescue RJZP7U = SNK Arcade Classics Volume 1 RK2EEB = Trauma Center: New Blood RK2JEB = Trauma Center: New Blood RK2P01 = Trauma Center: New Blood RK3J01 = And-Kensaku RK4JAF = Kekkaishi RK5E01 = Kirby's Epic Yarn RK5J01 = Keito no Kirby RK5K01 = Kirby's Epic Yarn RK5P01 = Kirby und das magische Garn RK6E18 = Marble Saga: Kororinpa RK6J18 = Kororinpa 2 RK6P18 = Marbles! Balance Challenge RK7J0A = Ougon no Kizuna RK8E54 = Major League Baseball 2K8 RK9EA4 = Karaoke Revolution RK9PA4 = Karaoke Revolution RKAE6K = Ultimate Shooting Collection RKAJMS = Milestone Shooting Collection RKAK8M = Milestone Shooting Collection Karous Wii RKAP6K = Ultimate Shooting Collection RKBE41 = Cranium Kabookii RKBP41 = Cranium Kabookii RKDEEB = Trauma Center: Second Opinion RKDJEB = Trauma Center: Second Opinion RKDJG9 = Kamen Rider: Climax Heroes W RKDP01 = Trauma Center: Second Opinion RKDPEB = Trauma Center: Second Opinion RKEENR = Cate West: The Vanishing Files RKEPGN = Cate West: The Vanishing Files RKEPNR = Cate West: The Vanishing Files RKFEH4 = The King of Fighters Collection: The Orochi Saga RKFKZA = King of Fighters Collection: The Orochi Saga RKFP7U = King of Fighters Collection: The Orochi Saga RKGEGY = Bratz Kidz: Slumber Party RKGPGY = Bratz - Kidz Party RKHE52 = Kung Fu Panda: Legendary Warriors RKHP52 = Kung Fu Panda: Legendäre Kämpfer RKIENR = Kidz Sports: Ice Hockey RKIPUG = Kidz Sports: Ice Hockey RKJJ0Q = 250 Mannin no Kanken Wii de Tokoton Kanji Nou RKKE6K = Heavenly Guardian RKLEG9 = Coraline RKLPG9 = Coraline RKME5D = Mortal Kombat: Armageddon RKMP5D = Mortal Kombat: Armageddon RKNJ2N = Kanken Wii: Kanji Ou Kettei Sen RKOJBL = Relaxuma: Minna de Goyururi Seikatsu RKPE52 = Kung Fu Panda RKPJ52 = Kung Fu Panda RKPK52 = Kung Fu Panda RKPP52 = Kung Fu Panda RKPV52 = Kung Fu Panda RKPY52 = Kung Fu Panda RKQENR = Candace Kane's Candy Factory RKSENR = Kidz Sports: Basketball RKSPUG = Kidz Sports: Basketball RKTENR = Kidz Sports: International Soccer RKTXUG = Kidz Sports: International Football RKVE54 = The BIGS 2 RKVP54 = The Bigs 2: Baseball RKWJ18 = Jigsaw Puzzle Kyo-no Wan Ko RKXE69 = Rock Band RKXP69 = Rock Band RKYE20 = Army Men: Soldiers of Misfortune RKYP20 = Army Men: Soldiers of Misfortune RKYP7J = Army Men: Soldiers of Misfortune RKZEA4 = Lost in Blue: Shipwrecked RKZJA4 = Survival Kids Wii RKZPA4 = Lost in Blue: Shipwrecked RL2E78 = Gallop & Ride! RL2HMN = Horse & Pony: My Riding Stables RL2HMR = Horse & Pony: My Riding Stables RL2PFR = Pferd & Pony: Mein Gestüt - Ein Leben für die Pferde RL3EMJ = Luxor 3 RL4E64 = LEGO Indiana Jones 2: The Adventure Continues RL4P64 = LEGO Indiana Jones 2: Die neuen Abenteuer RL5E52 = iCarly RL5P52 = iCarly RL6E69 = NERF N-Strike Elite RL7E69 = Littlest Pet Shop: Friends RL7P69 = Littlest Pet Shop: Freunde RL8E54 = MLB Power Pros 2008 RL9ESD = Guitar Hero Linkin Park RL9PHZ = King of Pool RLADMR = Deal Or No Deal: Der Banker Schlägt Zurück RLAE20 = Deal or No Deal RLAPMR = Deal Or No Deal: Der Banker Schlägt Zurück RLBEWR = LEGO Batman: The Videogame RLBPWR = LEGO Batman: Das Videospiel RLCP7J = Love is... in bloom RLDEGY = Legend of the Dragon RLDPFK = Legend Of The Dragon RLEEFS = Ten Pin Alley 2 RLEPFS = Ten Pin Alley 2 RLFE64 = Star Wars The Clone Wars: Lightsaber Duels RLFP64 = Star Wars The Clone Wars: Lichtschwertduelle RLGE64 = LEGO Star Wars: The Complete Saga RLGJ52 = LEGO Star Wars: The Complete Saga RLGP64 = LEGO Star Wars: Die Komplette Saga RLHE52 = Little League World Series Baseball 2008 RLHP52 = Little League World Series Baseball 2008 RLIE64 = LEGO Indiana Jones: The Original Adventures RLIL78 = Guitar Hero 2nd Custom RLIP64 = LEGO Indiana Jones: Die legendären Abenteuer RLJEHJ = Line Rider 2: Unbound RLJPKM = Line Rider Freestyle RLKEGY = Code Lyoko: Quest for Infinity RLKPFK = Code Lyoko: Quest for Infinity RLLP70 = Go West!: Ein Abenteuer mit Lucky Luke RLMJH4 = Metal Slug Complete RLNEVN = Survivor RLNFMR = Survivor RLNHMR = Survivor RLNIMR = Survivor RLNPMR = Survivor RLPE69 = Littlest Pet Shop RLPP69 = Littlest Pet Shop RLQE52 = Big League Sports RLQP52 = World Championship Sports RLRE4F = Tomb Raider: Anniversary RLRJEL = Tomb Raider: Anniversary RLRP4F = Tomb Raider: Anniversary RLSE8P = Alien Syndrome RLSP8P = Alien Syndrome RLTENR = London Taxi: Rush Hour RLTPNR = London Taxi: Rush Hour RLTXUG = London Taxi: Rush Hour RLUE4Q = Disney's Bolt RLUP4Q = Bolt RLUX4Q = Bolt: Ein Hund für alle Fälle! RLUY4Q = Bolt RLVE78 = Avatar: The Last Airbender RLVP78 = Avatar - Der Herr der Elemente RLWE78 = Ratatouille RLWJ78 = Ratatouille RLWP78 = Ratatouille RLWW78 = Ratatouille RLWX78 = Ratatouille RLWY78 = Ratatouille RLWZ78 = Ratatouille RLXEMJ = Luxor: Pharaoh's Challenge RLXP36 = Luxor: Pharaoh's Challenge RLYEWR = Looney Tunes: Acme Arsenal RLYPWR = Looney Tunes: Acme Arsenal RLZE4Z = Defendin' De Penguin RLZP4Z = Defendin' De Penguin RLZPXT = Defendin' De Penguin RM2E69 = Medal of Honor: Heroes 2 RM2J13 = Medal of Honor: Heroes 2 RM2P69 = Medal of Honor: Heroes 2 RM2U69 = Medal of Honor: Heroes 2 RM2X69 = Medal of Honor: Heroes 2 RM3E01 = Metroid Prime 3: Corruption RM3J01 = Metroid Prime 3: Corruption RM3P01 = Metroid Prime 3: Corruption RM4E41 = Monster 4x4: World Circuit RM4J41 = Monster 4x4: World Circuit RM4P41 = Monster 4x4: World Circuit RM5E7D = The Mummy: Tomb of the Dragon Emperor RM5P7D = Die Mumie: Das Grabmal des Drachenkaisers RM6EEB = Baroque RM6P99 = Baroque RM7E4F = Monster Lab RM7P4F = Monster Lab RM8E01 = Mario Party 8 RM8J01 = Mario Party 8 RM8K01 = Mario Party 8 RM8P01 = Mario Party 8 RM9EGM = Mushroom Men: The Spore Wars RM9PGM = Mushroom Men: Der Sporenkrieg RMAE01 = Mario Power Tennis RMAJ01 = Mario Power Tennis RMAP01 = Mario Power Tennis RMBE01 = Mario Super Sluggers RMBJ01 = Super Mario Stadium: Family Baseball RMCC01 = Mario Kart Wii (Custom) RMCE01 = Mario Kart Wii RMCE02 = Wiimms MKW Fun 2010-02.p RMCE03 = Wiimms MKW Fun 2010-10.p RMCE04 = Wiimms MKW Fun 2010-12.p RMCE05 = Wiimms MKW Fun 2010-12.p RMCE06 = Wiimms MKW Fun 2010-12.ntsc RMCE07 = Wiimms MKW Retro 2011-02.ntsc RMCE08 = Wiimms MKW Fun 2011-03.ntsc RMCE09 = Wiimms MKW Fun 2011-06.ntsc RMCE10 = Wiimms MKW Fun 2011-07.ntsc RMCE11 = Wiimms MKW Fun 2011-08.ntsc RMCE12 = Wiimms MKW Fun 2011-11.ntsc RMCE13 = Wiimms MKW Fun 2012-01.ntsc RMCE14 = Wiimms MKW Revival 2012-02.ntsc RMCE15 = Wiimms MKW Boost 2012-03.ntsc RMCE16 = Wiimms MKW Fun 2012-05.ntsc RMCE17 = Wiimms MKW Fun 2012-09.ntsc RMCE18 = Wiimms MKW N64 2012-10.ntsc RMCE19 = Wiimms MKW Fun 2012-12.ntsc RMCE20 = Wiimms MKW Fun 2013-04.ntsc RMCE21 = Wiimms MKW Fun 2013-09.ntsc RMCE22 = Wiimms MKW Fun 2013-10.ntsc RMCE23 = Wiimms MKW Fun 2014-01.ntsc RMCE24 = Wiimms MKW Retro 2014-02.ntsc RMCE25 = Wiimms MKW Fun 2014-04.ntsc RMCE26 = Wiimms MKW Fun 2014-11.ntsc RMCE65 = Mario Kart Wii: Double Dash 64 RMCE66 = Mizy's Texture Pack RMCE67 = Rookie's Texture & Music Pack RMCE68 = Character Kart Wii RMCE69 = Venom Kart Wii RMCE70 = Stickboy Kart Wii RMCE71 = Funky's Riivolution RMCE72 = CtocKart Wii RMCE73 = Mario Kart Adventures RMCE74 = Mario Kart Adventures RMCE75 = Cam, Tom and Troy's CTGP Pack RMCE76 = Pro CT Pack RMCE77 = SpyKid's CT Pack RMCE78 = Mario Kart: Double Dash!! Wii RMCE79 = Super Mario Kart Wii RMCE80 = Mario Kart 64 Wii RMCE81 = Spade's Custom Track Pack RMCE82 = HD's Retro Pack RMCE83 = Glitch Kart Wii RMCE84 = Legend's Awesome CT Pack RMCE85 = Project Double Dash!! RMCE86 = Newer Mario Kart Wii Revolution!: Backward Circuits RMCE87 = Newer Mario Kart Wii Revolution!: Sunset Sun & Dark Moon RMCE88 = Kaizo Kart Wii RMCE89 = Mario Kart Extra RMCE90 = Mario Kart QZW RMCE91 = Medal Kart 64 RMCE92 = MKWLH100's Custom Track Pack RMCE93 = MKW Hack Pack RMCE94 = Custom Track Kart Wii RMCE95 = Soarin's CT Pack X RMCE96 = Mario Kart 6 RMCE97 = Mario Kart Wii Awesomeness 2 RMCE98 = Mario Kart Wii Awesomeness RMCE99 = ReedyCustomPack Ultimate RMCEA1 = Mario Kart Adventures v0.8 RMCECT = Mario Kart Wii CTGP Revolution RMCEDK = Darky Kart Wii RMCEG2 = Mario Kart Wii CTGP Revolution RMCEGP = Mario Kart Wii CTGP Revolution RMCEWS = Wine's CT Pack RMCJ01 = Mario Kart Wii RMCJ12 = Wiimms MKW Fun 2011-11 RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCK01 = Mario Kart Wii RMCP01 = Mario Kart Wii RMCP02 = Wiimms MKW Fun 2010-02.p RMCP03 = Wiimms MKW Fun 2010-10.p RMCP04 = Wiimms MKW Fun 2010-12.p RMCP05 = Custom Mario Kart Wii RMCP06 = Wiimms MKW Fun 2010-12.pal RMCP07 = Wiimms MKW Retro 2011-02.pal RMCP08 = Wiimms MKW Fun 2011-03.pal RMCP09 = Wiimms MKW Fun 2011-06.pal RMCP10 = Wiimms MKW Fun 2011-07.pal RMCP11 = Wiimms MKW Fun 2011-08.pal RMCP12 = Wiimms MKW Fun 2011-11.pal RMCP13 = Wiimms MKW Fun 2012-01.pal RMCP14 = Wiimms MKW Revival 2012-02.pal RMCP15 = Wiimms MKW Boost 2012-03.pal RMCP16 = Wiimms MKW Fun 2012-05.pal RMCP17 = Wiimms MKW Fun 2012-09.pal RMCP18 = Wiimms MKW N64 2012-10.pal RMCP19 = Wiimms MKW Fun 2012-12.pal RMCP20 = Wiimms MKW Fun 2013-04.pal RMCP21 = Wiimms MKW Fun 2013-09.pal RMCP22 = Wiimms MKW Fun 2013-10.pal RMCP23 = Wiimms MKW Fun 2014-01.pal RMCP24 = Wiimms MKW Retro 2014-02.pal RMCP25 = Wiimms MKW Fun 2014-04.pal RMCP26 = Wiimms MKW Fun 2014-11.pal RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCX = Mario Kart Wii CTGP Revolution Channel RMDE69 = Madden NFL 07 RMDP69 = Madden NFL 07 RMEJDA = Major Dream RMFE68 = AMF Bowling Pinbusters! RMFP68 = AMF Bowling Pinbusters! RMGC01 = Super Mario Galaxy RMGE01 = Super Mario Galaxy RMGE52 = Guitar Hero III Custom : Megadeth RMGJ01 = Super Mario Galaxy RMGK01 = Super Mario Galaxy RMGP01 = Super Mario Galaxy RMGR01 = Super Mario Galaxy RMHC08 = Monster Hunter Tri (Custom) RMHE08 = Monster Hunter Tri RMHJ08 = Monster Hunter Tri RMHP08 = Monster Hunter Tri RMIE20 = Margot's Word Brain RMIP7J = Margot's Word Brain RMJJC8 = Mah-jong Rally Wii RMKE01 = Mario Sports Mix RMKE02 = Custom Kart 1 RMKJ01 = Mario Sports Mix RMKP01 = Mario Sports Mix RMLEH4 = Metal Slug Anthology RMLJH4 = Metal Slug Complete RMLK52 = Metal Slug Complete RMLP7U = Metal Slug Anthology RMLPH4 = Metal Slug Anthology RMME7U = Mercury Meltdown Revolution RMMJ7U = Tama-run RMMP52 = Guitar Hero III Custom : Metal Mayhem RMMP7U = Mercury Meltdown Revolution RMNDFR = Meine Tierpension RMNHMN = My Pet Hotel RMNHMR = My Pet Hotel RMNPFR = Meine Tierpension RMOE52 = Monster Jam RMOP52 = Monster Jam RMPE54 = MLB Power Pros RMPP54 = MLB Power Pros RMQENR = Myth Makers: Orbs of Doom RMQPUG = Myth Makers: Orbs of Doom RMQXUG = Myth Makers: Orbs of Doom RMRE5Z = Cocoto Magic Circus RMRPNK = Cocoto Magic Circus RMRXNK = Cocoto Magic Circus RMSE52 = Marvel: Ultimate Alliance 2 RMSP52 = Marvel: Ultimate Alliance 2 RMTJ18 = Momotarô Dentetsu 16 RMUE52 = Marvel: Ultimate Alliance RMUJ2K = Marvel: Ultimate Alliance RMUP52 = Marvel: Ultimate Alliance RMVE69 = Medal of Honor: Vanguard RMVP69 = Medal of Honor: Vanguard RMVX69 = Medal of Honor: Vanguard RMWE20 = M&M's Kart Racing RMWP20 = M&M's Kart Racing RMXE78 = MX vs. ATV: Untamed RMXF78 = MX vs. ATV: Untamed RMXP78 = MX vs ATV: Untamed RMYE5Z = Myth Makers: Super Kart GP RMYPUG = Myth Makers: Super Kart GP RMYXUG = Myth Makers: Super Kart GP RMZE5Z = Myth Makers: Trixie in Toyland RMZPUG = Myth Makers: Trixie in Toyland RN2EAF = Namco Museum Remix RN2K70 = Namco Museum Remix RN2P70 = Namco Museum Remix RN3E78 = Nicktoons: Attack of the Toybots RN3J78 = Nicktoons: Attack of the Toybots RN3P78 = SpongeBob und seine Freunde: Angriff der Spielzeugroboter RN3X78 = SpongeBob und seine Freunde: Angriff der Spielzeugroboter RN4E41 = Dawn of Discovery RN4P41 = ANNO: Erschaffe eine neue Welt RN5E78 = The Naked Brothers Band: The Video Game RN5P78 = The Naked Brothers Band: The Video Game RN6ENR = North American Hunting Extravaganza RN6P7J = North American Hunting Extravaganza RN7E78 = Neighborhood Games RN7P78 = Big Family Games RN8JC8 = Nobunaga no Yabou Kakushin with Power-Up Kit RN9E4F = Escape from Bug Island RN9JEL = Necro-Nesia RN9P4F = Escape From Bug Island RNAE69 = NCAA Football 09 RNBE69 = NBA Live 08 RNBP69 = NBA Live 08 RNBX69 = NBA Live 08 RNCEH4 = SNK Arcade Classics Volume 1 RNCPH4 = SNK Arcade Classics Volume 1 RNDJAF = Nodame Cantabile Dream Orchestra RNEEDA = Naruto Shippuden: Clash of Ninja Revolution 3 RNEJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX 3 RNEPDA = Naruto Shippuden: Clash of Ninja Revolution 3 RNFE69 = Madden NFL 08 RNFP69 = Madden NFL 08 RNGJ99 = Negima!? Neo-Pactio Fight!! RNHE41 = No More Heroes RNHJ99 = No More Heroes RNHK8M = No More Heroes RNHP41 = No More Heroes RNHP99 = No More Heroes RNIPGT = Mind.Body.Soul: Ernährung ist Wichtig RNJE4F = Mini Ninjas RNJP4F = Mini Ninjas RNKE69 = NERF N-Strike RNKP69 = NERF N-Strike RNLE54 = NHL 2K9 RNLP54 = NHL 2K9 RNME5Z = Ninjabread Man RNMPUG = Ninjabread Man RNMXUG = Ninjabread Man RNNE4Q = The Chronicles of Narnia: Prince Caspian RNNJ4Q = The Chronicles of Narnia: Prince Caspian RNNP4Q = Die Chroniken Von Narnia: Prinz Kaspian Von Narnia RNNX4Q = Die Chroniken von Narnia: Prinz Kaspian RNNY4Q = Die Chroniken von Narnia: Prinz Kaspian RNNZ4Q = Die Chroniken von Narnia: Prinz Kaspian RNOJ01 = Another Code R Kioku no Tobira RNOP01 = Another Code: R - Die Suche nach der verborgenen Erinnerung RNPE69 = Need for Speed: ProStreet RNPJ13 = Need for Speed: ProStreet RNPK69 = Need for Speed: ProStreet RNPP69 = Need for Speed: ProStreet RNPX69 = Need for Speed: ProStreet RNPY69 = Need for Speed: ProStreet RNRE41 = Nitro Bike RNRJ41 = Nitro Bike RNRP41 = Nitro Bike RNSD69 = Need for Speed: Carbon RNSE69 = Need for Speed Carbon RNSF69 = Need for Speed: Carbon RNSJ13 = Need for Speed: Carbon RNSP69 = Need for Speed Carbon RNSX69 = Need for Speed: Carbon RNUE8P = Nancy Drew: The White Wolf of Icicle Creek RNVE5Z = Anubis II RNVP5Z = Anubis II RNVPUG = Anubis II RNVXUG = Anubis II RNWJAF = Namco Carnival RNWKAF = Namco Museum Remix RNXEDA = Naruto: Clash of Ninja Revolution RNXJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX RNXPDA = Naruto: Clash of Ninja Revolution RNYEDA = Naruto: Clash of Ninja Revolution 2 RNYJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX 2 RNYPDA = Naruto: Clash of Ninja Revolution 2 RNZE69 = Ninja Reflex RNZJ13 = Ninja Reflex RNZK69 = Ninja Reflex RNZP69 = Ninja Reflex RO2E7N = Ford Racing Off Road RO2P7N = Off Road RO3EXJ = Little King's Story RO3J99 = Little King's Story RO3P99 = Little King's Story RO4JDA = Toshinden RO5E52 = Hot Wheels: Battle Force 5 RO5P52 = Hot Wheels: Battle Force 5 RO7E7D = Legend of Spyro: The Eternal Night RO7P7D = The Legend of Spyro: The Eternal Night RO8E7D = Legend of Spyro: Dawn of the Dragon RO8P7D = The Legend of Spyro: Dawn of the Dragon RO8X7D = The Legend of Spyro: Dawn of the Dragon RO9EFS = Aqua Panic! RO9PNK = Aqua Panic! ROAE36 = Overlord: Dark Legend ROAP36 = Overlord: Dark Legend ROBE7U = Obscure: The Aftermath ROBPPL = Obscure 2 ROCE5Z = Cocoto Kart Racer ROCPNK = Cocoto Kart Racer RODE01 = WarioWare: Smooth Moves RODJ01 = WarioWare: Smooth Moves RODK01 = WarioWare: Smooth Moves RODP01 = WarioWare: Smooth Moves ROEEJZ = Hotel for Dogs ROEPGT = Das Hundehotel ROFE5Z = Offroad Extreme Special Edition ROFPUG = Offroad Extreme! ROFXUG = Offroad Extreme! ROGE78 = Tak and the Guardians of Gross ROGP78 = Tak - Das Geheimnis des glühenden Kristalls ROHJAF = Happy Dance Collection ROJE52 = Rapala: We Fish ROJP52 = Rapala: Angel-Spaß ROKJ18 = Karaoke Joysound Wii ROLE8P = Mario & Sonic at the Olympic Winter Games ROLJ01 = Mario & Sonic at the Olympic Winter Games ROLK01 = Mario & Sonic at the Olympic Winter Games ROLP8P = Mario & Sonic bei den Olympischen Winterspielen ROMESD = Monster Hunter G (English Patched) ROMJ08 = Monster Hunter G RONEG9 = Onechanbara: Bikini Zombie Slayers RONJG9 = Onechanbara Revolution RONPG9 = Onechanbara: Bikini Zombie Slayers ROPE41 = Open Season ROPP41 = Jagdfieber ROQJEP = Baroque For Wii ROSJ01 = Takt of Magic ROTE20 = Twin Strike: Operation Thunder ROTP20 = Twin Strike: Operation Thunder ROTP7J = Twin Strike: Operation Thunderstorm ROUJAF = One Piece Unlimited Cruise 1: The Treasure Beneath the Waves ROUPAF = One Piece Unlimited Cruise 1: Der Schatz unter den Wellen ROVE6U = Playmobil: Circus ROVPHM = Playmobil Circus: Manege frei! ROWE08 = Okami ROWJ08 = Okami ROWP08 = Okami ROXE20 = Order Up! ROXP7J = Order Up! ROXX7J = Order Up! ROYE41 = Cloudy with a Chance of Meatballs ROYP41 = Wolkig Mit Aussicht Auf Fleischbällchen: Das Videospiel ROYX41 = Wolkig mit Aussicht auf Fleischbällchen RP2E69 = Smarty Pants RP2P69 = Smarty Pants - Das Besserwisserspiel RP3JAF = Pro Golfer Saru RP4E69 = MySims Party RP4J13 = Boku To Sim No Machi Party RP4P69 = MySims Party RP5JA4 = Jikkyou Powerful Pro Baseball 15 RP6E41 = Petz Crazy Monkeyz RP6P41 = Petz: Die Affen sind los RP7E52 = Pirates: Hunt for Blackbeard's Booty RP7P52 = Piraten: Die Jagd nach Blackbeards Schatz RP9ERS = Space Chimps RP9PRS = Space Chimps: Affen Im All RP9XRS = Space Chimps: Affen Im All RPAF70 = Kid Paddle: Lost in the Game RPBE01 = Pokémon Battle Revolution RPBJ01 = Pokémon Battle Revolution RPBP01 = Pokémon Battle Revolution RPCE20 = Puzzler Collection RPCP41 = Puzzler Collection RPCX7J = Puzzler Collection RPDEGN = PDC World Championship Darts 2008 RPDPGN = PDC World Championship Darts 2008 RPFE52 = Pitfall: The Big Adventure RPFP52 = Pitfall: Das große Abenteuer RPFU52 = Pitfall: The Big Adventure RPGE5D = Rampage: Total Destruction RPGP5D = Rampage: Total Destruction RPHPPN = Peppa Pig: The Game RPIE52 = Pimp My Ride RPIP52 = Pimp My Ride RPJE7U = Arc Rise Fantasia RPJJ99 = Arc Rise Fantasia RPKE52 = World Series of Poker: Tournament of Champions 2007 Edition RPKP52 = World Series of Poker: Tournament of Champions 2007 Edition RPLE52 = Rapala Tournament Fishing RPLP52 = Rapala Tournament Fishing RPMJA4 = Jikkyou Powerful Pro Major League 2 RPNE78 = Paws & Claws: Pet Resort RPOEC8 = Opoona RPOJC8 = Opoona RPOPC8 = Opoona RPPE41 = Prince of Persia: Rival Swords RPPP41 = Prince of Persia: Rival Swords RPQES5 = Pool Party RPQPS5 = Pool Party RPSE4Q = Disney Princess: Enchanted Journey RPSJ4Q = Disney Princess Wii RPSP4Q = Disney Prinzessinnen: Märchenhafte Reise RPTD52 = Tierbabys - Mein kleiner Welpe RPTE52 = Puppy Luv: Your New Best Friend RPTP52 = Puppy Luv: Your New Best Friend RPUJ8P = Puyo Puyo! 15th Anniversary RPVE4Z = Purr Pals RPVPKM = Mein erstes Katzenbaby RPWX41 = Prince of Persia: Die Vergessene Zeit RPWZ41 = Prince of Persia: The Forgotten Sands RPXE69 = EA Playground RPXJ13 = EA Playground RPXP69 = EA Playground RPYE9B = Super Swing Golf RPYJ9B = Super Swing Golf RPYP9B = Pangya! Golf with Style RPZJA4 = Jikkyou Powerful Pro Baseball Wii Ketteiban RQ2JK6 = Crazy Climber Wii RQ3PGN = PDC World Championship Darts 2009 RQ4E78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ4J78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ4P78 = SpongeBob Schwammkopf: Die Kreatur aus der Krossen Krabbe RQ5E5G = Mad Dog McCree Gunslinger Pack RQ5P5G = Mad Dog McCree Gunslinger Pack RQ5X5G = Mad Dog McCree Gunslinger Pack RQ6EJJ = Cursed Mountain RQ6PKM = Cursed Mountain RQ6XKM = Cursed Mountain RQ7E20 = Martian Panic RQ7PXT = Martian Panic RQ8E08 = MotoGP 08 RQ8P08 = Moto GP RQ9E69 = NBA Live 09 All-Play RQ9F69 = NBA Live 09 All-Play RQ9P69 = NBA Live 09 All-Play RQ9S69 = NBA Live 09 All-Play RQBENR = Kawasaki Quad Bikes RQBPNR = Kawasaki Quad Bikes RQBPUG = Kawasaki Quad Bikes RQBXUG = Kawasaki Quad Bikes RQCEAF = The Munchables RQCJAF = Tabemon RQEE6U = Agatha Christie: Evil Under the Sun RQEP6V = Agatha Christie: Das Böse unter der Sonne RQFE6U = Safecracker: The Ultimate Puzzle Adventure RQFP6V = Safecracker: Das ultimative Puzzle-Abenteuer RQGE69 = MySims Racing RQGJ13 = MySims Racing RQGJ69 = Boku To Sim No Machi Racing RQGP69 = MySims Racing RQIJ01 = Minna ga Shuyaku no NHK Kouhaku Quiz Kassen RQJE7D = Crash of the Titans RQJP7D = Crash of the Titans RQJX7D = Crash of the Titans RQKE41 = Circus Games RQKP41 = Kirmes Party RQLE64 = Star Wars The Clone Wars: Republic Heroes RQLP64 = Star Wars The Clone Wars: Republic Heroes RQMEVN = Ocean Commander RQMPVN = Ocean Commander RQNEWR = Scooby-Doo! First Frights RQNPWR = Scooby-Doo! Geheimnisvolle Abenteuer RQOE69 = Spore Hero RQOJ13 = Spore Hero RQOP69 = Spore Helden RQPE52 = Cabela's Trophy Bucks RQPP52 = Cabela's Trophy Bucks RQPZ52 = Cabela's Monster Buck Hunter RQQE52 = Guitar Hero III Custom : Queen RQQE70 = Backyard Football '09 RQREXJ = The Sky Crawlers: Innocent Aces RQRJAF = The Sky Crawlers: Innocent Aces RQRPAF = The Sky Crawlers: Innocent Aces RQSE4Z = Pinball Hall of Fame: The Gottlieb Collection RQSP6M = Gottlieb Pinball Classics RQTE6U = Agatha Christie: And Then There Were None RQTP6V = Agatha Christie: Und dann gabs keines mehr RQUEFS = Super PickUps RQVE20 = Pacific Liberator RQVP20 = Pacific Liberator RQWEG9 = Puzzle Quest: Challenge of the Warlords RQWPG9 = Puzzle Quest - Challenge of the Warlords RQXP70 = Asterix bei den Olympischen Spielen RQYENR = Fantasy Aquarium World RQZE41 = Monster 4x4: Stunt Racer RQZP41 = Monster 4x4: Stunt Racer RR2ENR = Rig Racer 2 RR2PNR = Rig Racer 2 RR2PUG = Rig Racer 2 RR3EA4 = Ultimate Party Challenge RR3JA4 = Family Challenge Wii RR3PA4 = Let's Party! RR4EGY = Build-A-Bear Workshop: A Friend Fur All Seasons RR4PFK = Build-A-Bear Workshop: A Friend Fur All Seasons RR5E70 = Ready 2 Rumble Revolution RR5P70 = Ready 2 Rumble Revolution RR7PVP = Real Madrid The Game RR8PUJ = International Athletics RR9E78 = WWE SmackDown vs. Raw 2009 RRAE5Z = Rock 'N' Roll Adventures RRAPUG = Rock 'N' Roll Adventures RRAXUG = Rock 'N' Roll Adventures RRBE41 = Rayman Raving Rabbids RRBJ41 = Rayman Raving Rabbids RRBP41 = Rayman Raving Rabbids RRCE52 = Barbie Horse Adventures: Riding Camp RRCP52 = Barbie Pferdeabenteuer: Im Reitercamp RRDE69 = Rock Band Track Pack: Vol. 2 RRDP69 = Rock Band Song Pack 2 RREE69 = Rock Band Track Pack: Vol. 1 RREP69 = Rock Band Song Pack 1 RRFEE9 = Reel Fishing: Angler's Dream RRFPE9 = Reel Fishing: Angler's Dream RRGE52 = Madagascar: Escape 2 Africa RRGP52 = Madagascar 2 RRHPUJ = Mary King's Reitschule: 2nd Edition RRHXUJ = Mary King's Riding School 2 RRIPTV = Die Montagsmaler RRJFMR = Ready Steady Cook: The Game RRJIMR = Ready Steady Cook: The Game RRJPMR = Ready Steady Cook: The Game RRKE70 = Alone in the Dark RRKP70 = Alone in the Dark RRLE78 = Bratz: Girlz Really Rock RRLP78 = Bratz: Girlz Really Rock RRLX78 = Bratz: Girlz Really Rock RRLY78 = Bratz: Girlz Really Rock RRLZ78 = Bratz: Girlz Really Rock RRME69 = Hasbro: Family Game Night RRMP69 = Hasbro Familien-Spieleabend RRMX69 = Hasbro: Familien-Spieleabend RRPE41 = The Price Is Right RRQE52 = Shrek's Carnival Craze Party Games RRQP52 = Shreks: Schräge Partyspiele RRQX52 = Shreks: Schräge Partyspiele RRRE5Z = Real Heroes: Firefighter RRRPRM = Real Heroes: Firefighter RRSE4Q = Meet The Robinsons RRSJ4Q = Meet The Robinsons RRSP4Q = Triff die Robinsons RRSX4Q = Triff die Robinsons RRTE52 = Block Party 20 Games RRTP52 = Party Games: 20 Spiele RRUEJF = Winter Sports 2: The Next Challenge RRUFRT = Winter Sports 2009: The Next Challenge RRUJJF = Winter Sports 2009 The Next Challenge RRUPRT = Winter Sports 2009: The Next Challenge RRVENR = Battle Rage: Mech Conflict RRVPNR = Battle Rage: The Robot Wars RRWJAF = Super Robot Taisen NEO RRXE5Z = Monster Trux Arenas: Special Edition RRXPUG = Monster Trux Arenas RRXXUG = Monster Trux Arenas RRYEHG = Rogue Trooper: Quartz Zone Massacre RRYPHY = Rogue Trooper: Quartz Zone Massacre RRZEGY = Rubik's World RRZPGY = Rubik's Puzzle World RS2E20 = Ultimate Duck Hunting RS2EGJ = Ultimate Duck Hunting RS2PGJ = Ultimate Duck Hunting RS3E52 = Spider-Man 3 RS3J52 = Spider-Man 3 RS3P52 = Spider-Man 3 RS3X52 = Spider-Man 3 RS4EXS = Castle of Shikigami III RS4JJF = Shikigami No Shiro III RS4PXS = Castle Of Shikigami III RS5EC8 = Samurai Warriors: Katana RS5JC8 = Sengoku Musou KATANA RS5PC8 = Samurai Warriors: Katana RS7J01 = Eyeshield 21 Field Saikyo no Senshi Tachi RS8J8N = Shanghai RS9E8P = Sonic Riders: Zero Gravity RS9J8P = Sonic Riders: Shooting Star Story RS9P8P = Sonic Riders: Zero Gravity RSAE78 = SpongeBob's Atlantis SquarePantis RSAP78 = SpongeBob's Atlantisches Abenteuer RSBE01 = Super Smash Bros. Brawl RSBE02 = Super Smash Bros. Project M Red Version RSBE03 = Super Smash Bros. Brawl DX RSBE04 = Super Smash Bros. Project M+ RSBE05 = Super Smash Bros. Project M Patt Edition RSBE06 = Darkon360's Brawl Hack Pack RSBE07 = Super Smash Bros. Project M: Theytah's Custom Build RSBE08 = Smash Bros. Infinite RSBE09 = Springboy64's Brawl Hack Pack RSBE10 = Brawl Ying Yang Edition RSBE11 = Professor MGW's Tournament Hack Pack #1 RSBE12 = Professor MGW's Tournament Hack Pack #2 RSBE13 = Professor MGW's Hack Pack #3 RSBE14 = Super Smash Bros. Brawl- Zeus RSBE15 = Super Smash Bros. Brawl Minus Mugen RSBE16 = Super Smash Bros. Brawl Shock RSBE17 = Super Smash Bros. Brawl - Battlefield Build RSBE18 = Super Smash Bros. Project M: Tournament Hack Pack RSBE19 = Super Smash Bros. Project M: Fully Dressed Edition RSBE20 = Pikezer's BrawlEx Pack RSBE21 = Calabrel's Custom Project M Build RSBE22 = Project M: Rage83's Competitive Custom Build RSBE23 = Super Smash Bros. Project M: Justice Build RSBE24 = Super Smash Bros. 3 RSBE25 = Super Smash Bros. Red Version RSBE26 = Super Smash Bros. Silver RSBE27 = Springboy64's Super Smash Bros. Brawl Hack Pack RSBE28 = SuperYoshiStar's Super Smash Bros. Brawl Hack Pack RSBE29 = Super Smash Bros. Project M: YoeiX Custom Build RSBE30 = Super Smash Bros. Project M: Arko's Loaded Custom Build RSBE31 = Super Smash Bros. Project M: Arko's Tournament Custom Build RSBE32 = Super Smash Bros. Project M: Sempai's Build RSBE33 = Super Smash Bros. Brawl Yin Yang Edition 2: The Balance of Kyu RSBE34 = Super Smash Bros. Project U: Blue Version RSBE35 = Super Smash Bros. Brawl Legacy: Project M RSBE36 = Super Smash Bros. Project Best RSBE37 = Super Smash Bros. Project M: Psycho Ghost's Build RSBE38 = Super Smash Sisters Generations RSBE39 = Super Smash Bros. Ultra Project M RSBE40 = Super Smash Bros. Project M: Ragnarok Edition RSBE41 = Super Smash Bros. Project M: Calabrel's Custom Build RSBE42 = Super Smash Bros. Project M: RedX Anime/Game Custom Build RSBEBB = Super Smash Bros. Balanced Brawl RSBEBM = Super Smash Bros. Brawl Minus RSBEBP = Super Smash Bros. Brawl Plus RSBEC3 = Super Smash Bros. Project M 3.5 Netplay Build RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBEWM = Super Smash Bros. Project M Wi-Fi RSBJ01 = Dairantou Smash Brothers X RSBK01 = Dairantou Smash Brothers X RSBP01 = Super Smash Bros. Brawl RSCD7D = Scarface: The World Is Yours RSCE7D = Scarface: The World Is Yours RSCP7D = Scarface: The World Is Yours RSCU7D = Scarface: The World Is Yours RSDJAF = SD Gundam: Scad Hammers RSEJGD = Soul Eater Monotone Princess RSFC99 = Muramasa: The Demon Blade (Custom) RSFE7U = Muramasa: The Demon Blade RSFJ99 = Oboro Muramasa RSFP99 = Muramasa: The Demon Blade RSHE69 = MySims Kingdom RSHJ13 = Boku to Sim no Machi Kingdom RSHK69 = MySims Kingdom RSHP69 = MySims Kingdom RSIE69 = MySims RSIJ13 = Boku To Sim No Machi RSIP69 = MySims RSJE41 = Broken Sword: Shadow of the Templars (Director's Cut) RSJESD = Guitar Hero III Custom : System of a Down RSJP41 = Baphomets Fluch - The Director's Cut RSKE52 = Shrek The Third RSKP52 = Shrek der Dritte RSKX52 = Shrek der Dritte RSLEAF = Soulcalibur: Legends RSLJAF = Soulcalibur: Legends RSLKAF = Soulcalibur: Legends RSLPAF = Soulcalibur Legends RSME8P = Super Monkey Ball: Banana Blitz RSMJ8P = Super Monkey Ball: Banana Blitz RSMP8P = Super Monkey Ball: Banana Blitz RSND69 = Die Simpsons: Das Spiel RSNE69 = The Simpsons Game RSNF69 = The Simpsons Game RSNP69 = Die Simpsons: Das Spiel RSNX69 = Die Simpsons: Das Spiel RSOE4Z = Solitaire & Mahjong RSOP4Z = Solitaire & Mahjong RSPE01 = Wii Sports RSPJ01 = Wii Sports RSPK01 = Wii Sports RSPP01 = Wii Sports RSPW01 = Wii Sports RSQEAF = We Ski RSQJAF = Family Ski RSQPAF = Family Ski RSRE8P = Sonic and the Secret Rings RSRJ8P = Sonic and the Secret Rings RSRP8P = Sonic und die Geheimen Ringe RSSEH4 = Samurai Shodown Anthology RSSJH4 = Samurai Spirits: Rokuban Shoubu RSSK52 = Samurai Shodown Anthology RSSP7U = Samurai Shodown Anthology RSTE64 = Star Wars: The Force Unleashed RSTJ52 = Star Wars: The Force Unleashed RSTP64 = Star Wars: The Force Unleashed RSUENR = Summer Sports: Paradise Island RSUP41 = Sports Party RSVE8P = Sonic Unleashed RSVJ8P = Sonic World Adventure RSVP8P = Sonic Unleashed RSWE08 = Spyborgs RSWP08 = Spyborgs RSXE69 = SSX Blur RSXJ13 = SSX Blur RSXK69 = SSX Blur RSXP69 = SSX Blur RSXX78 = Guitar Hero RadioHead RSYE20 = Showtime Championship Boxing RSYP06 = Super Smash Bros. Brawl : YF06's Mod RSYP7J = Showtime Championship Boxing RSZJES = Yukinko Daisenpuu RSZPGT = Legend of Sayuki RT2E20 = Arctic Tale RT2P20 = Arctic Tale RT2P7J = Arctic Tale RT3E54 = Rockstar Games Presents: Table Tennis RT3JEL = Rockstar Games Presents: Table Tennis RT3P54 = Rockstar Games präsentiert Tischtennis RT4EAF = Tales of Symphonia: Dawn of the New World RT4JAF = Tales Of Symphonia: Ratatosk no Kishi RT4PAF = Tales of Symphonia: Dawn of the New World RT5E8P = SEGA Superstars Tennis RT5P8P = SEGA Superstars Tennis RT6FKM = Magic Roundabout RT6PKM = Das Zauberkarussell RT7E69 = Tiger Woods PGA Tour 07 RT7F69 = Tiger Woods PGA Tour 07 RT7P69 = Tiger Woods PGA Tour 07 RT8E69 = Tiger Woods PGA Tour 08 RT8J13 = Tiger Woods PGA Tour Golf 08 RT8K69 = Tiger Woods PGA Tour Golf 08 RT8P69 = Tiger Woods PGA Tour 08 RT9E52 = Tony Hawk's Proving Ground RT9P52 = Tony Hawk's Proving Ground RTAE41 = Tom Clancy's H.A.W.X. 2 RTAP41 = Tom Clancy's H.A.W.X. 2 RTBE52 = Rapala Fishing Frenzy RTBP52 = Rapala Fishing Frenzy RTCE41 = Tom Clancy's Splinter Cell: Double Agent RTCP41 = Tom Clancy's Splinter Cell: Double Agent RTDE6K = The Monkey King: The Legend Begins RTDJES = Shin Chuuka Taisen RTDK8M = Shin Chuuka Taisen RTEE78 = Paws & Claws: Pet Vet RTEHMR = Tierliebe Groß Geschrieben RTEPFR = Meine Tierarztpraxis RTFE52 = Transformers: The Game RTFJ52 = Transformers: The Game RTFK52 = Transformers: The Game RTFP52 = Transformers: The Game RTFX52 = Transformers: The Game RTFY52 = Transformers: The Game RTGJ18 = Wi-Fi Taiô Gensen Table Games Wii RTHE52 = Tony Hawk's Downhill Jam RTHP52 = Tony Hawk's Downhill Jam RTIE8P = Wacky World of Sports RTIJ8P = Wacky World of Sports RTIP8P = Die wahnsinnige Welt des Sports RTJE68 = Star Trek: Conquest RTJP68 = Star Trek: Conquest RTKE5Z = Octomania RTKJDQ = Sharuui Takoron RTKK8M = Sharuui Takoron RTLE18 = Fishing Master: World Tour RTLJ18 = Mezase Tsuri Master Sekai Ni Challenge Hen RTLP18 = Fishing Master: World Tour RTME41 = TMNT RTMP41 = TMNT: Teenage Mutant Ninja Turtles RTNE41 = Tenchu: Shadow Assassins RTNJCQ = Tenchu 4 RTNP41 = Tenchu: Shadow Assassins RTOJ8P = 428: Fuusa Sareta Shibuya de RTPP41 = Top Trumps Adventures RTQENR = Monster Trux Offroad RTQPUG = Monster Trux Offroad RTQXUG = Monster Trux Offroad RTRE18 = Fishing Master RTRJ18 = Mezase Tsuri Master RTRP18 = Fishing Master RTSEVN = Totally Spies! Totally Party RTSP41 = Totally Spies! Totally Party RTTJAF = Tamagotchi no Furifuri Kagekidan RTUEJJ = Secret Files Tunguska RTUFKM = Geheimakte: Tunguska RTUPKM = Geheimakte: Tunguska RTVE64 = Thrillville: Off the Rails RTVP64 = Thrillville: Verrückte Achterbahn RTWE5D = TNA iMPACT! RTWP5D = TNA iMPACT! RTYP01 = Wii Schach RTZE08 = Zack & Wiki: Quest for Barbaros' Treasure RTZJ08 = Zack & Wiki: Der Schatz von Barbaros RTZK08 = Zack & Wiki: Quest For Barbaros' Treasure RTZP08 = Zack & Wiki: Der Schatz von Barbaros RU1P4Q = Disney Sing It:: Sing It Star Singstar 1 RU2E5Z = Winter Sports 2: The Next Challenge RU2P4Q = Disney Sing It: Sing It Star Singstar 2 RU2P5Z = Winter Sports 2 The Next Challenge RU3E5Z = Summer Athletics: The Ultimate Challenge RU4E41 = My Fitness Coach 2: Exercise & Nutrition RU4X41 = NewU Fitness First Personal Trainer RU5E4Q = The Princess and the Frog RU5P4Q = Küss den Frosch RU5V4Q = Disney: The Princess and the Frog RU5X4Q = Küss den Frosch RU5Y4Q = The Princess and the Frog (Riverboat Jazz Edition) RU6EHG = Free Running RU6PHY = Free Running RU7E5G = Night at the Museum: Battle of the Smithsonian - The Video Game RU7X5G = Nachts im Museum 2: Das Spiel RU8EFS = Bass Pro Shops: The Hunt RU9EGT = My Ballet Studio RU9PGT = Diva Girls: Diva Ballerina RUAE52 = Monster Jam: Urban Assault RUAP52 = Monster Jam: Urban Assault RUBEVN = Ultimate Board Game Collection RUBP7N = Die ultimative Brettspiele-Sammlung RUCE5Z = Winter Sports: The Ultimate Challenge RUCPRT = Winter Sports 2008: The Ultimate Challenge RUCXRT = RTL Winter Sports 2008 RUEE4Q = G-Force RUEP4Q = G-Force - Agenten mit Biss RUEX4Q = G-Force: Agenten mit Biss RUEY4Q = G-Force: Agenten mit Biss RUFEMV = Rune Factory: Frontier RUFJ99 = Rune Factory: Frontier RUFP99 = Rune Factory Frontier RUGE7T = Goosebumps: HorrorLand RUGP5G = Goosebumps: HorrorLand RUHE52 = Bakugan Battle Brawlers RUHP52 = Bakugan Battle Brawlers RUHX52 = Bakugan Battle Brawlers (Toys R Us Edition) RUHZ52 = Bakugan Battle Brawlers RUIE4Q = Disney: Sing It RUIGGD = SingItStar Ned. 80's RUIP4Q = Disney Sing It RUIX4Q = Disney: Sing It RUKEGT = Rolling Stone: Drum King RUKPGT = We Rock: Drum King RULE4Q = Ultimate Band RULP4Q = Ultimate Band RUME5Z = Ski and Shoot RUMPFR = Summer Athletics RUNJ0Q = New Unou Kids Wii EX RUOEPL = Aliens in the Attic RUOPPL = Die Noobs - Klein aber Gemein RUPJC8 = Winning Post 7 Maximum 2008 RUQD78 = Oben RUQE78 = Up RUQI78 = Oben RUQJJE = Carl jii san no sora tobu Ie RUQP78 = Oben RUQS78 = Oben RUQX78 = Oben RUREPL = Pool Hall Pro RURPPL = Pool Hall Pro RUSE78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUSK78 = SpongeBob SquarePants Featuring Nicktoons: Globs of Doom RUSP78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUSX78 = Sponge Bob und seine Freunde: Die Macht des Schleims RUSY78 = SpongeBob und seine Freunde: Die Macht des Schleims RUUE01 = Animal Crossing: City Folk RUUJ01 = Machi He Ikouyo: Doubutsu no Mori RUUK01 = Animal Crossing: City Folk RUUP01 = Animal Crossing: Let's Go to the City RUWJC8 = Winning Post World RUXPUG = Urban Extreme: Street Rage RUXXUG = Urban Extreme: Street Rage RUYE41 = No More Heroes 2: Desperate Struggle RUYJ99 = No More Heroes 2: Desperate Struggle RUYP99 = No More Heroes 2: Desperate Struggle RUZE7T = Ultimate I SPY RUZP5G = Ultimate I SPY RV2E5D = Game Party 2 RV2P5D = More Game Party RV3P6N = Clever Kids: Krabbeltiere RV7SMR = Survivor RV8E20 = Beach Fun: Summer Challenge RV8PRT = Beach Fun: Summer Challenge RV9E78 = Avatar: The Last Airbender - Into the Inferno RV9P78 = Avatar: Der Herr der Elemente - Der Pfad des Feuers RVAE78 = Avatar: The Last Airbender - The Burning Earth RVAP78 = Avatar: Der Herr der Elemente - Die Erde brennt RVBERS = Alvin and the Chipmunks RVBPRS = Alvin und die Chipmunks: Der Kinofilm RVDPLG = Diabolik: The Original Sin RVEFMR = Bienvenue Chez Les Ch'tis RVFE20 = Bigfoot: Collision Course RVFP7J = Bigfoot: Collision Course RVGE78 = Merv Griffin's Crosswords RVGP78 = Margot's Word Brain RVHP41 = Scrabble Interactive: 2009 Edition RVIE4F = Bionicle Heroes RVIP4F = Bionicle Heroes RVJPFR = So Blonde: Zurück auf die Insel RVKEXJ = Valhalla Knights: Eldar Saga RVKJ99 = Valhalla Knights Elder Saga RVKKZA = Valhalla Knights: Eldar Saga RVKP99 = Eldar Saga RVLPA4 = Rock Revolution RVNE20 = Calvin Tucker's Redneck Jamboree RVNP20 = Calvin Tucker's Redneck Jamboree RVNP7J = Calvin Tucker's Redneck Jamboree RVOEPL = Vertigo RVOPPL = Vertigo RVPEFS = PopStar Guitar RVPPFS = PopStar Guitar RVQE41 = Movie Games RVQP41 = Hollywood Studio Party RVREFS = Rebel Raiders: Operation Nighthawk RVRPFS = Rebel Raiders: Operation Nighthawk RVRPKG = Rebel Raiders: Operation Nighthawk RVSE69 = Skate It RVSJ13 = Skate It RVSP69 = Skate It RVTFMR = Tierliebe Gross Geschrieben RVTPMR = My Pet Club RVTXMR = Tierliebe Groß Geschrieben RVUE8P = Virtua Tennis 2009 RVUP8P = Virtua Tennis 2009 RVVE78 = Big Beach Sports RVVP78 = Big Beach Sports RVXFRT = RTL Biathlon 2009 RVXPRT = RTL Biathlon 2009 RVYD52 = Call of Duty: World at War RVYE52 = Call of Duty: World at War RVYK52 = Call of Duty: World at War RVYP52 = Call of Duty: World at War RVYX52 = Call of Duty: World at War RVYY52 = Call of Duty: World at War RVZE52 = Monsters vs. Aliens RVZP52 = Monsters vs. Aliens RW3E4Q = Pirates of the Caribbean: At World's End RW3J4Q = Pirates Of The Caribbean: At World's End RW3P4Q = Pirates of the Caribbean: Am Ende der Welt RW4D41 = Mein Wortschatz-Coach - Verbessere dein Ausdrucksvermögen RW5F41 = Who Wants To Be A Millionaire: 2nd Edition RW5P41 = Wer wird Millionär 2 RW6PA4 = Dance Dance Revolution: Winx Club RW7E41 = Shaun White Snowboarding: Road Trip - Target Limited Edition RW8P41 = Abenteuer auf dem Reiterhof: Die wilden Mustangs RW9P78 = WWE SmackDown vs. Raw 2009 RW9X78 = WWE SmackDown vs. Raw 2009 RWAD78 = WALL-E: Der Letzte räumt die Erde auf RWAE78 = WALL•E RWAJ78 = WALL•E RWAK78 = WALL•E RWAP78 = WALL•E: Der Letzte räumt die Erde auf RWAR78 = WALL•E RWAU78 = WALL•E: Der Letzte räumt die Erde auf RWAX78 = WALL•E RWAY78 = WALL•E RWAZ78 = WALL•E: Der Letzte räumt die Erde auf RWBENR = Kawasaki Snowmobiles RWBXUG = Kawasaki Snow Mobiles RWCE4Z = Pinball Hall of Fame: The Williams Collection RWCP4Z = Pinball: Hall Of Fame RWCP6M = Williams Pinball Classics RWDC52 = Guitar Hero III Custom: WD Custom RWDE5G = Wild Earth: African Safari RWDP5G = Wild Earth: African Safari RWEEA4 = Pro Evolution Soccer 2008 RWEJA4 = Winning Eleven PLAY MAKER 2008 RWEPA4 = Pro Evolution Soccer 2008 RWFH41 = Mein Wortschatz-Coach: Verbessere dein Ausdrucksvermögen RWGE08 = We Love Golf! RWGJ08 = We Love Golf! RWGP08 = We Love Golf! RWHP4F = Top Trumps: Doctor Who RWIE18 = Wing Island RWIJ18 = Wing Island RWIP18 = Wing Island RWJENR = WordJong Party RWKE5G = Cooking Mama: World Kitchen RWKPGT = Cooking Mama 2: World Kitchen RWLE01 = Wario Land: Shake It! RWLJ01 = Warioland Shake RWLK01 = Wario Land Shaking RWLP01 = Wario Land: The Shake Dimension RWME78 = Worms: A Space Oddity RWMP78 = Worms: Odyssee im Wurmraum RWNF70 = Warning: Code De La Route RWOE69 = Monopoly RWOJ13 = Monopoly RWOP69 = Monopoly RWQPSP = WSC Real 08: World Snooker Championship RWRE4F = Wacky Races: Crash & Dash RWRP4F = Wacky Races: Crash & Dash RWSE8P = Mario & Sonic at the Olympic Games RWSJ01 = Mario & Sonic at the Olympic Games RWSK01 = Mario & Sonic at the Olympic Games RWSP8P = Mario & Sonic bei den Olympischen Spielen RWTEG9 = Ben 10: Alien Force RWTPG9 = Ben 10: Alien Force RWUE52 = X-Men Origins: Wolverine RWUP52 = X-Men Origins: Wolverine RWUX52 = X-Men Origins: Wolverine RWWE52 = Guitar Hero III Custom : WWE The Hits RWWE78 = WWE SmackDown vs. Raw 2008 RWWJ78 = WWE SmackDown vs. Raw 2008 RWWP78 = WWE SmackDown vs. Raw 2008 RWWX78 = WWE SmackDown vs. Raw 2008 RWXES5 = Brave: A Warrior's Tale RWXPS5 = Brave: A Warrior's Tale RWYPHH = Runaway: The Dream of the Turtle RWZE5G = Wonder World Amusement Park RWZP5G = Wonder World Amusement Park RWZX5G = Wonder World Amusement Park RX2E70 = My Horse & Me: Riding for Gold RX2P70 = My Horse & Me 2: Mein Pferd und Ich RX3E01 = ExciteBots: Trick Racing RX3J01 = ExciteBots: Trick Racing RX4E4Z = Casper's Scare School: Spooky Sports Day RX4PMT = Casper's Schreckensschule: Der gruselige Sporttag RX5E52 = Tony Hawk: Ride RX5P52 = Tony Hawk: Ride RX6E78 = The Biggest Loser RX6P78 = The Biggest Loser RX7JGD = Meja-maji March RX8JA4 = Jikkyou Powerful Pro Yakyuu Next RX9E69 = Need for Speed: Undercover RX9J13 = Need for Speed: Undercover RX9K69 = Need for Speed: Undercover RX9P69 = Need for Speed: Undercover RX9X69 = Need for Speed: Undercover RX9Y69 = Need for Speed: Undercover RXAE78 = WWE SmackDown vs. Raw 2010 RXAP78 = WWE SmackDown vs. Raw 2010 RXBE70 = Backyard Baseball '10 RXBP70 = Backyard Baseball '10 RXCE4Z = Dave Mirra BMX Challenge RXCP4Z = Dave Mirra BMX Challenge RXCPGT = Dave Mirra BMX Challenge RXDD4Q = Disney Th!nk - Das Schnelldenker-Quiz RXDE4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDJ4Q = Disney Th!nk Haya Oshi Quiz RXDP4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDR4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDX4Q = Disney Th!nk: Schnelldenkerquiz RXDY4Q = Disney Th!nk: Schnelldenkerquiz RXEJDA = Major Wii Perfect Closer RXFEVN = Offshore Tycoon RXGE6K = Geon Cube RXGP6K = Geon Cube RXHF5D = Chaos à La Maison RXIE52 = Transformers: Revenge of the Fallen RXIP52 = Transformers: Die Rache RXJJDA = Jinsei Game Wii EX RXKEGL = TV Show King Party RXKFGL = TV Show King Party RXKPGL = TV Show King Party RXLE41 = Grey's Anatomy: The Video Game RXLP41 = Grey's Anatomy: The Video Game RXMJ8P = Miburi & Teburi RXNEXS = Hooked Again: Real Motion Fishing RXNJJF = Bass Fishing Wii World Tournament RXNPGT = Big Catch Bass Fishing 2 RXPEXS = Hooked!: Real Motion Fishing RXPJJF = Bass Fishing Wii RXPPGT = Big Catch Bass Fishing RXQEWR = Where the Wild Things Are RXQPWR = Wo die wilden Kerle wohnen RXRERS = The Tale of Despereaux RXRPRS = The Tale of Despereaux RXRXRS = Despereaux: Der kleine Mäuseheld RXSPA4 = Dancing Stage: Hottest Party RXUE41 = Surf's Up RXUP41 = Könige Der Wellen RXUX41 = Könige Der Wellen RXVXWP = Télé 7 Jeux: Mots Croisés RXWE20 = M&M's Beach Party RXXE4Q = Spectrobes: Origins RXXJ4Q = Spectrobes: Origins RXXP4Q = Spectrobes: Der Ursprung RXYE4Z = Puzzle Challenge: Crosswords and More! RXYP4Z = Puzzle Challenge Crosswords RXZE52 = Cabela's Dangerous Hunts 2009 RXZP52 = Cabela's Dangerous Adventures RY2E41 = Rayman Raving Rabbids 2 RY2J41 = Rayman Raving Rabbids 2 RY2K41 = Rayman Raving Rabbids 2 RY2P41 = Rayman Raving Rabbids 2 RY2R41 = Rayman Raving Rabbids 2 RY3E41 = Rayman Raving Rabbids TV Party RY3J41 = Rayman Raving Rabbids TV Party RY3K41 = Rayman Raving Rabbids: TV Party RY3P41 = Rayman Raving Rabbids: TV Party RY4J8P = Puyo Puyo 7 RY5E52 = Big League Sports: Summer RY5P52 = World Championship Sports: Summer RY6EA4 = Walk It Out! RY6PA4 = Step to the Beat RY7PHZ = Ninja Captains RY8EFS = Bass Pro Shops: The Strike RYAJDA = Yattaman Wii Bikkuridokkiri Machine De Mou Race Da Koron RYAJSC = Yatterman Wii (Simplified Chinese Translation) RYBE69 = Boom Blox: Bash Party RYBP69 = Boom Blox: Smash Party RYDELT = Pet Pals: Animal Doctor RYDP6V = Pet Pals: Tierdoktor RYEEEB = 101-in-1 Party Megamix RYEPHZ = 101-in-1 Party Megamix RYGE9B = Rygar: The Battle of Argus RYGJ9B = Argus No Senshi Muscle Impact RYGP99 = Rygar: The Battle of Argus RYHES5 = Roogoo: Twisted Towers RYHPS5 = Roogoo: Twisted Towers RYIE9B = SPRay RYIP9B = SPRay RYJPTV = Prinzessin Lillifee: Die große Feenparty RYKEAF = We Ski & Snowboard RYKJAF = Family Ski: World Ski & Snowboard RYKPAF = Family Ski & Snowboard RYLDSV = Germany's Next Top Model RYNE6U = The Hardy Boys: The Hidden Theft RYNP6V = The Hardy Boys: The Hidden Theft RYOEA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYOJA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYOPA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYQE69 = Trivial Pursuit RYQP69 = Trivial Pursuit RYQX69 = Trivial Pursuit Nordic RYRE41 = Your Shape RYRP41 = Your Shape RYTE4Z = PBR: Out of the Chute RYVEMS = Arcade Shooter: Ilvelo RYVJMS = Illvelo Wii RYWE01 = Big Brain Academy: Wii Degree RYWJ01 = Wii de Yawaraka Atama Juku RYWK01 = Big Brain Academy: Wii Degree RYWP01 = Big Brain Academy für Wii RYXE20 = Yamaha Supercross RYXP7J = Yamaha Supercross RYZE6U = World Party Games RYZPTV = Play the World RZ2JG9 = Simple Wii Series Vol. 1: The Minna de Kart Race RZ3JG9 = Simple Wii Series Vol. 2: The Minna de Bass Tsuri Taikai RZ4JG9 = Simple Wii Series Vol. 3: The Casino Party RZ5JG9 = Simple Wii Series Vol. 4: The Shooting Action RZ6JG9 = Simple Wii Series Vol. 5: The Block Kuzushi RZ7JG9 = Simple Wii Series Vol. 6: The Waiwai Konbatto RZ8JG9 = Simple 2000 Series Wii Vol. 1: The Table Game RZ9EG9 = Family Party: 30 Great Games RZ9JG9 = Simple 2000 Series Wii Vol. 2: The Party Game RZ9PG9 = Family Party: 30 Great Games RZAPTV = Lernerfolg Grundschule: Power Mathe - Der Kopfrechentrainer RZCE6K = Saint RZDC01 = The Legend of Zelda: Twilight Princess (Custom) RZDE01 = The Legend of Zelda: Twilight Princess RZDJ01 = The Legend of Zelda: Twilight Princess RZDK01 = The Legend of Zelda: Twilight Princess RZDP01 = The Legend of Zelda: Twilight Princess RZEE52 = Science Papa RZEP52 = Science Papa: Der Wissenschafts-Trainer RZFPKM = Geheimakte 2: Puritas Cordis RZHE5G = Zoo Hospital RZHP5G = Zoo Hospital RZHX5G = Zoo Hospital RZIE20 = Winter Sports 3: The Great Tournament RZIPRT = Winter Sports 2010: The Great Tournament RZJD69 = Dead Space: Extraction RZJE69 = Dead Space: Extraction RZJJ13 = Dead Space: Extraction RZJP69 = Dead Space: Extraction RZKE20 = Puzzle Kingdoms RZKP7J = Puzzle Kingdoms RZLE41 = Cook Wars RZLP41 = Fuchsteufels Küche RZNJ01 = Zangeki no Reginleiv RZOE78 = World of Zoo RZOP78 = World of Zoo RZPE01 = Link's Crossbow Training RZPJ01 = Link's Crossbow Training RZPK01 = Link's Crossbow Training RZPP01 = Link's Crossbow Training RZREGT = The Destiny of Zorro RZRPGT = Das Schicksal des Zorro RZSEGJ = Speed Zone RZSP68 = Wheelspin RZTE01 = Wii Sports Resort RZTJ01 = Wii Sports Resort RZTK01 = Wii Sports Resort RZTP01 = Wii Sports Resort RZTW01 = Wii Sports Resort RZUE4Z = Crayola Colorful Journey RZYE41 = My Word Coach RZYF41 = Mein Wortschatz-Coach: Verbessere Dein Ausdrucksvermögen RZYP41 = Mein Wortschatz:Coach RZYS41 = My Word Coach: Develop your vocabulary RZZE8P = MadWorld RZZJEL = MadWorld RZZP8P = MadWorld S02PES = Sing It Star 90's S22JAF = Family Fishing S22K01 = Family Fishing S25JGD = Dragon Quest 25 Collection: Famicom & Super Famicom Dragon Quest I-II-III S26PML = 2-in-1: Pony Friends 2 + My Riding Stables: Life with Horses S2AEAF = Active Life: Explorer S2AJAF = Minna de Bouken! Family Trainer S2APAF = Family Trainer: Treasure Adventure S2BEPZ = Country Dance 2 S2BPXT = Country Dance 2 S2CE54 = New Carnival Games S2CP54 = Die Neue Carnival Jahrmarkt-Party S2DPML = Dance! It's Your Stage S2EE41 = ABBA: You Can Dance S2EP41 = ABBA: You Can Dance S2HE70 = Haunted House S2HP70 = Haunted House S2IE8P = Iron Man 2 S2IP8P = Iron Man 2 S2LE01 = PokéPark 2: Wonders Beyond S2LJ01 = PokéPark 2: Beyond the World S2LP01 = PokéPark 2: Die Dimension der Wünsche S2ME69 = Madden NFL 13 S2OEFS = Bass Pro Shops: The Strike - Tournament Edition S2PEA4 = Pro Evolution Soccer 2012 S2PJA4 = Winning Eleven PLAY MAKER 2012 S2PPA4 = Pro Evolution Soccer 2012 S2PXA4 = Pro Evolution Soccer 2012 S2PYA4 = Pro Evolution Soccer 2012 S2QE54 = NBA 2K12 S2QP54 = NBA 2K12 S2RPNK = Reload S2TJAF = Taiko no Tatsujin Wii: Dodoon to 2 Daime! S2VEG9 = Victorious: Taking the Lead S2VPAF = Victorious: Taking the Lead S2WE78 = WWE All Stars S2WP78 = WWE All Stars S2XE41 = Die Schlümpfe 2 S2XP41 = Die Schlümpfe 2 S2YE52 = Wipeout: Create & Crash S2ZE52 = Zhu Zhu Pets: Featuring The Wild Bunch S2ZP52 = Zhu Zhu Pets: Lustige Waldtiere S3AE5G = Attack of the Movies 3D S3BEWR = Batman: The Brave and the Bold S3BPWR = Batman: The Brave and the Bold S3CENR = Triple Crown Championship Snowboarding S3DE18 = Deca Sports 3 S3DJ18 = Deca Sporta 3 S3DP18 = Sports Island 3 S3EE78 = Barbie Jet, Set & Style! S3EP78 = Barbie: Fashionista Inc. S3FE69 = FIFA Soccer 13 S3FP69 = FIFA 13 S3FX69 = FIFA 13 S3GE20 = Glacier 3: The Meltdown S3GPXT = Glacier 3 S3HJ08 = Sengoku Basara 3 Utage S3IEA4 = Pro Evolution Soccer 2013 S3IPA4 = Pro Evolution Soccer 2013 S3IXA4 = Pro Evolution Soccer 2013 S3IYA4 = Pro Evolution Soccer 2013 S3LPY1 = Andrew Lloyd Webber Musicals: Sing and Dance S3ME69 = The Sims 3 S3MP69 = Die Sims 3 S3PE4Q = Disney Princess: My Fairytale Adventure S3PP4Q = Disney Princess: Mein Märchenhaftes Abenteuer S3PX4Q = Disney Princess: My Fairytale Adventure S3RJMS = Twinkle Queen S3SJ18 = Karaoke Joysound Wii Super DX: Hitori de Minna de Utai Houdai! S3TJAF = Taiko no Tatsujin Wii: Minna de Party ☆ 3 Daime! S3WEG9 = Family Party: 30 Great Games Winter Fun S3WPG9 = Family Party: 30 Great Games Winter Fun S3XE78 = WWE '13 S3XP78 = WWE '13 S3ZE52 = Men In Black: Alien Crisis S3ZP52 = Men In Black: Alien Crisis S4MJGD = Dragon Quest X Online: Mesamashi Itsutsu no Shuzoku S4SJGD = Dragon Quest X: Nemureru Yuusha to Michibiki no Meiyuu Online S4TJAF = Taiko no Tatsujin Wii: Ketteiban S59E01 = Samurai Warriors 3 S59JC8 = Sengoku Musou 3 S59P01 = Samurai Warriors 3 S5BETL = Back to the Future: The Game S5BPKM = Zurück in die Zukunft - Das Spiel S5KJAF = Taiko no Tatsujin Wii Chou Goukaban S5QJC8 = SengokuMusou 3 Moushouden S5RESZ = Ram Racing S5RPNJ = Ram Racing S5SJHF = Inazuma Eleven Go Strikers 2013 S5TEG9 = Ben 10: Omniverse S5TPAF = Ben 10: Omniverse S5WE20 = Around The World in 50 Games S6BE4Q = Brave: The Video Game S6BP4Q = Merida - Legende der Highlands S6BY4Q = Brave: The Video Game S6IE78 = Disney Princess: Enchanting Storybooks S6IP78 = Disney Prinzessin: Bezaubernde Geschichten S6RE52 = Wreck-It Ralph S6RP52 = Ralph Reichts S6TJGD = Dragon Quest X (All in One Package) S72E01 = Kirby's Dream Collection: Special Edition S72J01 = Hoshi No Kirby: 20th Anniversary Edition S75E69 = Monopoly Streets S75P69 = Monopoly Streets S7AEWR = LEGO Batman 2: DC Super Heroes S7AKWR = LEGO Batman 2: DC Super Heroes S7AKZA = Lego Superheroes 1 S7APWR = LEGO Batman 2: DC Super Heroes S7BE69 = Trivial Pursuit: Bet You Know It S7BP69 = Trivial Pursuit: Wetten & Gewinnen S7CJAF = Kamen Rider Climax Heroes Fourze S7DE52 = Angry Birds: Star Wars S7DP52 = Angry Birds: Star Wars S7EP52 = Transformers: Ultimate Battle Edition S7FE5G = Zumba Kids S7FPGT = Zumba Kids: Die ultimate Zumba tanz-party S7JPKM = Let's Sing 6 - Spanish version S7KPKM = Let's Sing 2014 S7SP41 = Die Schlümpfe Party Pack S80U3Q = SingItStar Ultimate 80s SA3E5G = Alvin and the Chipmunks: Chipwrecked SA3P5G = Alvin und Die Chipmunks 3: Chip Brunch SA5E78 = Are You Smarter Than A 5th Grader?: Back to School SA6EG9 = Ben 10: Galactic Racing SA6PAF = Ben 10: Galactic Racing SA7ESZ = Gummy Bears: Magical Medallion SA8P52 = The Amazing Spider-Man SA9D7K = Bibi und Tina Das grosse Reiterfest SAAJA4 = Winning Eleven PLAY MAKER 2013 SABENR = Alien Monster Bowling League SABPJG = Alien Monster Bowling League SACPVS = ACB Total 2010/2011 SACSVS = ACB Total 2010/2011 SADE70 = Backyard Sports: Sandlot Sluggers SAFUHS = AFL: Australian Football League SAGE41 = The Amazing Race SAHE69 = Hasbro: Family Game Night Fun Pack SAJE52 = Cabela's Survival: Shadows of Katmai SAJP52 = Cabela's Survival: Shadows of Katmai SAKENS = Sakura Wars: So Long, My Love SAKPNS = Sakura Wars: So Long, My Love SALE4Q = Alice in Wonderland SALP4Q = Alice Im Wunderland SAME01 = New Super Mario Bros. Wii 11 American Revolution SANE01 = New Super Mario Bros. Wii Five Spica Edition SANEFS = Bass Pro Shops: The Hunt - Trophy Showdown SANT3Q = SingItStar Anthems SAOE78 = Monster High: Ghoul Spirit SAOP78 = Monster High: Monsterkrasse Highschool-Klasse! SAQE5G = Harley Pasternak's Hollywood Workout SARE4Z = Aladdin Magic Racer SARP01 = New Super Mario Bros. Wii 4 Arcadia Another Ride SARPNK = Aladin: Magic Racer SASEWW = Atrévete a Soñar SATE6K = Chuck E. Cheese's Super Collection SAUJ8P = Puyo Puyo!! 20th Anniversary SAVE5G = Alvin and the Chipmunks: The Squeakquel SAVX5G = Alvin und die Chipmunks 2: Ohren zu und durch SAWE52 = Angry Birds Trilogy SAWP52 = Angry Birds Trilogy SAXPFH = Max & the Magic Marker SAYE20 = Boot Camp Academy SAYP41 = Das verrückte Soldaten-Camp SAZE52 = The Amazing Spider-Man SAZP52 = The Amazing Spider-Man SB2ES5 = My Baby First Steps SB2PNP = My Baby 2: My Baby Grew Up SB3E08 = Sengoku Basara: Samurai Heroes SB3J08 = Sengoku BASARA 3 SB3P08 = Sengoku Basara: Samurai Heroes SB4C01 = Super Mario Galaxy 2 (Custom) SB4E01 = Super Mario Galaxy 2 SB4E02 = Neo Mario Galaxy SB4E03 = Super Mario Galaxy: Plumber's Way SB4E04 = Super Mario Sunshine Galaxy SB4E05 = Season Cycle Galaxy SB4E25 = Super Mario Galaxy 2.5 SB4J01 = Super Mario Galaxy 2 SB4J02 = Neo Mario Galaxy SB4J05 = Season Cycle Galaxy SB4K01 = Super Mario Galaxy 2 SB4P01 = Super Mario Galaxy 2 SB4P02 = Neo Mario Galaxy SB4P05 = Season Cycle Galaxy SB4W01 = Super Mario Galaxy 2 SB5E54 = NBA 2K11 SB5P54 = NBA 2K11 SB6E52 = Bakugan: Defenders of the Core SB6P52 = Bakugan Battle Brawlers: Beschützer des Kerns SB7IVU = Planet Basket 2009/2010 SB8EQH = Burger Bot SB9E78 = Barbie: Groom and Glam Pups SB9P78 = Barbie: Fun and Fashion Dogs SBAJGD = Dragon Quest Monsters: Battle Road Victory SBBE18 = Beyblade: Metal Fusion - Battle Fortress SBBJ18 = Metal Fight Beyblade Gachinko Stadium SBBP18 = Beyblade: Metal Fusion - Counter Leone SBCJ2N = Billy's Boot Camp: Wii de Enjoy Diet! SBDE08 = Resident Evil: The Darkside Chronicles SBDJ08 = Biohazard: The Darkside Chronicles SBDK08 = Biohazard: The Darkside Chronicles SBDP08 = Resident Evil: The Darkside Chronicles SBEPSV = Bermuda Triangle SBFE70 = Backyard Football '10 SBHEFP = Remington Great American Bird Hunt SBHPNK = Remington Great American Bird Hunt SBIEVZ = Busy Scissors SBIPVZ = Dein Friseursalon SBJEG9 = Ben 10: Ultimate Alien Cosmic Destruction SBJPAF = Ben 10: Ultimate Alien: Cosmic Destruction SBKEPZ = Brunswick Zone Cosmic Bowling SBLE5G = A Boy and His Blob SBLP5G = A Boy and His Blob SBNEG9 = Ben 10: Alien Force Vilgax Attacks SBNPG9 = Ben 10: Alien Force: Vilgax Attacks SBOD3Q = SingItStar Best of Disney SBQE4Z = Big Buck Hunter Pro SBREJJ = Let's Play Ballerina SBRPKM = Spielen wir Ballerina SBSE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh SBSEFP = Remington Super Slam Hunting: North America SBSURN = Remington Super Slam Hunting: North America SBVE78 = SpongeBob's Boating Bash SBVG3Q = SingItStar Boybands vs Girlbands SBVP78 = SpongeBob Schwammkopf: Volle Kanne Vollgas SBVS78 = SpongeBob's Boating Bash SBWC11 = New Super Mario Bros. 3: The Wrath of Shadow Bowser SBWE5G = Babysitting Mama SBWJRA = Babysitter Mama SBWPGT = Cooking Mama World: Babysitting Mama SBXEWR = The Bachelor: The Video Game SBYE41 = Dance on Broadway SBYP41 = Dance on Broadway SBZESZ = Bermuda Triangle: Saving the Coral SC2E8P = Conduit 2 SC2P8P = Conduit 2 SC4E64 = LEGO Star Wars III: The Clone Wars SC4P64 = LEGO Star Wars III: The Clone Wars SC5PGN = Challenge Me: Word Puzzles SC6PGN = Challenge Me: Brain Puzzles 2 SC7D52 = Call of Duty: Black Ops SC7E52 = Call of Duty: Black Ops SC7F52 = Call of Duty: Black Ops SC7I52 = Call of Duty: Black Ops SC7P52 = Call of Duty: Black Ops SC7S52 = Call of Duty: Black Ops SC8E01 = Wii Play: Motion SC8J01 = Wii Play: Motion SC8K01 = Wii Play: Motion SC8P01 = Wii Play: Motion SC9P52 = Cabela's Big Game Hunter 2010 SCAE18 = Calling SCAJ18 = CALLING Kuroki Chakushin SCAP18 = Calling SCBPNK = Cyberbike Cycling Sports SCDE52 = Cabela's Dangerous Hunts 2011 SCDP52 = Cabela's Dangerous Hunts 2011 SCEE6K = Chuck E. Cheese's Party Games SCFPNK = Cocoto Festival SCGE20 = Calvin Tucker's Redneck: Farm Animal Racing Tournament SCGPXT = Calvin Tucker's: Farm Animals Racing Tournament SCHEQH = Canada Hunt SCIE41 = CSI: Fatal Conspiracy SCIP41 = CSI: Tödliche Verschwörung SCJE4Q = LEGO Pirates of the Caribbean: The Video Game SCJP4Q = LEGO Pirates of the Caribbean: Das Videospiel SCKE6K = Chuck E. Cheese's Sports Games SCMJAF = Kamen Rider Climax Heroes OOO SCNEA4 = Scene It? Twilight SCNPA4 = Scene It? Twilight SCPE70 = Centipede: Infestation SCQDRV = Schlag den Raab - Das 2. Spiel SCREJH = Chicken Riot SCRPJH = Chicken Riot: Die wilde Hühnerjagd SCSE52 = Cruise Ship Vacation Games SCSPGR = Cruise Ship Resort SCTE01 = The Curse of Black Toad SCTPNK = Cocoto Surprise SCUPFR = Moorhuhn - Jahrmarkt-Party SCWE41 = Gold's Gym: Dance Workout SCWP41 = Mein Fitness-Coach: Dance Workout SCXESZ = Chevrolet Camaro: Wild Ride SCXPNJ = Chevrolet Camaro: Wild Ride SCYE4Q = Cars 2 SCYP4Q = Cars 2: Das Videospiel SCYX4Q = Cars 2 SCYY4Q = Cars 2: Das Videospiel SCYZ4Q = Cars 2: Das Videospiel SCZEMH = Crazy Machines SCZPFR = Crazy Machines SD2E41 = Just Dance 2 SD2J01 = Just Dance Wii SD2K41 = Just Dance 2 SD2P41 = Just Dance 2 SD2Y41 = Just Dance 2: Best Buy Edition SD3DSV = Der Gesundheitscoach SD5PTV = Lernerfolg Grundschule Deutsch SD6PTV = Lernerfolg Grundschule Englisch SD7PTV = Lernerfolg Grundschule Mathematik SD8DSV = Mein neues Leben Abenteuer auf Tropicana SD9JAF = SD Gundam Gashapon Wars SDAE01 = Scooby-Doo! The Bros Adventure SDAE5G = The Daring Game for Girls SDBE78 = de Blob 2 SDBP78 = de Blob 2 SDDPML = Das Duell - Männer vs Frauen SDEE5G = Dance Sensation! SDFE4Q = Disney Sing It: Family Hits SDFP4Q = Disney Sing It: Filmhits SDGE4Q = Disney Channel: All Star Party SDGP4Q = Disney Channel: All Star Party Games SDHER3 = Super Smash Bros. Brawl Dark Hole/D.A.R.S. SDIE4Q = Disney Sing It: Party Hits SDIP4Q = Disney Sing It: Pop Party SDJJAF = SD Gundam: G Generation World SDLE78 = Dood's Big Adventure SDLP78 = Doods großes Abenteuer SDMEG9 = Despicable Me: The Game SDMPAF = Ich - Einfach Unverbesserlich SDNE41 = Just Dance SDNP41 = Just Dance SDOPLR = Doctor Who: Return To Earth SDPE54 = Dora's Big Birthday Adventure SDPP54 = Dora - Das große Geburtstagsabenteuer SDQJGD = Dragon Quest X Inishie no Ryu no Denshou Online SDREYG = Maximum Racing: Drag & Stock Racer SDRP3Q = SingItStar Deutsch Rock-Pop Vol. 1 SDRPNG = Drag & Stock Racer SDSPNG = We Dance SDTH3Q = SingItStar Die Toten Hosen SDTPGN = PDC World Championship Darts: Pro Tour SDUE41 = The Smurfs Dance Party SDUP41 = Die Schlümpfe: Dance Party SDUPO1 = DU Super Mario Bros. : DU Edition SDVE41 = Driver: San Francisco SDVP41 = Driver: San Francisco SDWE18 = Lost in Shadow SDWJ18 = Lost in Shadow SDWP18 = Der Schattenläufer und die Rätsel des dunklen Turms SDXE4Q = Disney Universe SDXP4Q = Disney Universe SDYEA4 = Dance Dance Revolution SDYPA4 = Dance Dance Revolution - Hottest Party 4 SDZE41 = Just Dance Kids SDZP41 = Dance Juniors SE2E69 = EA Sports Active 2 SE2P69 = EA Sports Active 2 SE3E41 = Just Dance 2015 SE3P41 = Just Dance 2015 SEAE69 = EA Sports Active: More Workouts SEAJ13 = EA Sports Active More Workout SEAP69 = EA Sports Active: Mehr Workouts SECE69 = Create SECP69 = Create SEGA = Genplus GX SEGE6U = Yoga SEGP6V = Yoga SEKJ99 = Ikenie no Yoru SELE69 = FIFA Soccer 11 SELP69 = FIFA 11 SELX69 = FIFA 11 SEME4Q = Disney Epic Mickey SEMJ01 = Disney Epic Mickey: Mickey Mouse and the Magic Brush SEMP4Q = Disney Micky Epic SEMX4Q = Disney Micky Epic SEMY4Q = Disney Epic Mickey SEMZ4Q = Disney Epic Mickey SENPZX = Enclave: Shadows of Twilight SEOP01 = New Super Mario Bros. Wii 8 Omega SEOP4Q = Sing It: Edad de Oro del Pop Español SEPE41 = The Black Eyed Peas Experience SEPP41 = The Black Eyed Peas Experience SEPX41 = The Black Eyed Peas Experience D1 Edition SEPZ41 = The Black Eyed Peas Experience: Limited Edition SERE4Q = Disney Epic Mickey 2: The Power of Two SERF4Q = Disney Micky Epic: Die Macht der 2 SERK4Q = Disney Epic Mickey 2: The Power of Two SERP4Q = Disney Micky Epic: Die Macht der 2 SERV4Q = Disney Epic Mickey 2: The Power of Two SESEWR = Sesame Street: Ready, Set, Grover! SESPWR = Sesame Street: Ready, Set, Grover! SESUWR = Sesame Street: Ready, Set, Grover! SEZJHF = Inazuma Eleven Strikers 2012 Xtreme SF2P64 = Star Wars: The Force Unleashed II SF4E20 = Flatout SF4PXT = Flatout SF5E41 = Fit in Six SF5J41 = Fit in Six SF5P41 = Mein Fitness-Coach: Club SF7E41 = Family Feud 2012 Edition SF8E01 = Donkey Kong Country Returns SF8J01 = Donkey Kong Returns SF8P01 = Donkey Kong Country Returns SFAE41 = Family Feud Decades SFAJGD = Fullmetal Alchemist: Daughter of the Dusk SFBE70 = Backyard Sports Football: Rookie Rush SFDE01 = New Super Mario Bros. Wii 9 Virtue: This Fall Darkness SFDEAF = Active Life: Magical Carnival SFDJAF = Issyoni Asobou! Dream Theme Park SFDPAF = Family Trainer: Magical Carnival SFGE69 = Hasbro: Family Game Night 4 - The Game Show SFGP69 = Hasbro: Family Game Night 4 - The Game Show SFHEFP = Outdoor Action Double Pack SFIE01 = Mystery Case Files: The Malgrave Incident SFIP01 = Mystery Case Files: Der Fall Malgrave SFKEG9 = Family Party: Fitness Fun SFKPAF = Family Party: Fitness Fun SFLDSV = Der Fluch der Osterinsel SFOEAF = Food Network: Cook or Be Cooked SFPPFR = Fussball Fan Party SFQE8P = Captain America: Super Soldier SFQP8P = Captain America: Super Soldier SFRDRV = Fit for Fun SFRPXT = Fit for Fun SFSPGT = All Round Hunter SFTE78 = Wheel of Fortune SFTP78 = Wheel of Fortune SFUE64 = Star Wars: The Force Unleashed II SFVEXJ = Fishing Resort SFWE69 = 2010 FIFA World Cup South Africa SFWJ13 = 2010 FIFA World Cup South Africa SFWK13 = 2010 FIFA World Cup: South Africa SFWK69 = 2010 FIFA World Cup South Africa SFWP69 = 2010 FIFA World Cup South Africa SFWX69 = FIFA Fussball-Weltmeisterschaft Südafrika 2010 SFWY69 = 2010 FIFA World Cup South Africa SFWZ69 = 2010 FIFA World Cup South Africa SFXPKM = X Factor SFXXKM = X Factor SFYEG9 = Family Party: 90 Great Games Party Pack SFYPAF = Family Party 90 SFZEPZ = Pheasants Forever: Wingshooter SFZPXT = Pheasants Forever SG2EFS = Crazy Mini Golf 2 SG2XUG = Crazy Mini Golf 2 SG2YFS = Crazy Mini Golf 2 SG3DSV = Germany's Next Top Model 2010 SG5PSV = Galileo Family Quiz SG6DSV = Galileo Family Quiz SG7E20 = The Garfield Show: Threat of the Space Lasagna SG7PVL = Die Garfield Show - Invasion der Space Lasagne SG8EG9 = Yogi Bear SG8PAF = Yogi Bär: Das Videospiel SG9EYC = Gremlins: Gizmo SGAE8P = Tournament of Legends SGAP8P = Tournament of Legends SGBE5G = Greg Hastings Paintball 2 SGCE20 = Glacier 2 SGDEJJ = Let's Play Garden SGDPKM = Der total verrückte Gartenspaß SGEEG9 = Nat Geo Challenge! Wild Life SGEPLG = Nat Geo Quiz! Wild Life SGHE41 = Tom Clancy's Ghost Recon SGHP41 = Tom Clancy's Ghost Recon SGI1CL = SingIt Clasicos SGI1DB = Sing IT: Dibujos Animados SGI1MC = SingItStar Mecano SGI1ML = Sing It Star: Miliki SGI1PT = Sing IT: Party SGI1RC = Sing IT: Rocks 2 SGIEA4 = GTI Club Supermini Festa! SGIJA4 = GTI Club World City Race SGIPA4 = GTI Club Supermini Festa! SGJDSV = Galileo Mystery: Die Krone des Midas SGJPSV = Galileo Mystery: Die Krone des Midas SGKEC8 = Champion Jockey: G1 Jockey & Gallop Racer SGKJC8 = Champion Jockey: Gallop Racer & GI Jockey SGKPC8 = Champion Jockey: G1 Jockey & Gallop Racer SGLEA4 = Gormiti: The Lords of Nature! SGLPA4 = Gormiti: Die Herrscher der Natur! SGNE69 = Hasbro: Family Game Night Value Pack SGODKP = Mini Golf Resort SGOETV = Mini Golf Resort SGPEYG = Maximum Racing: GP Classic Racing SGPPNG = GP Classic Racing SGPTI1 = Sing It Party SGQDSV = Germany's Next Top Model 2011 SGREGT = Grease SGRPGT = Grease SGSESZ = Family Gameshow SGSP7J = Family GameShow SGTEFS = My Personal Golf Trainer with IMG Academies and David Leadbetter SGTPUG = My Personal Golf Trainer with IMG Academies and David Leadbetter SGUE4Q = Disney Guilty Party SGVEAF = Go Vacation SGVJAF = Go Vacation SGVPAF = Go Vacation SGWD7K = Bibi Blocksberg: Das große Hexenbesen-Rennen! SGXE41 = Battle of Giants: Dinosaurs Strike SGXP41 = Kampf der Giganten: Angriff der Dinosaurier SGYESZ = Gummy Bears Mini Golf SGYPNJ = Gummy Bears Mini Golf SH2JMS = Hula Wii: Tanoshiku Hula o Odorou!! SH3E54 = NHL 2K11 SH3P54 = NHL 2K11 SH4EFP = Heavy Fire: Afghanistan SH4PNK = Heavy Fire: Afghanistan SH5E69 = Harry Potter and the Deathly Hallows, Part 2 SH5P69 = Harry Potter und die Heiligtümer des Todes - Teil 2 SH6E52 = Cabela's Big Game Hunter 2012 SH6P52 = Cabela's Big Game Hunter 2012 SH7ESZ = Honda ATV Fever SH7PNJ = ATV Fever SH8E52 = Cabela's Adventure Camp SH8P52 = Cabela's Adventure Camp SH9ESZ = Heathcliff: The Fast and the Furriest SHBE69 = Hasbro: Family Game Night 3 SHBP69 = Hasbro: Spiel mal wieder 3 SHDE52 = How to Train Your Dragon SHDP52 = Drachenzähmen leicht gemacht SHEDRM = Der Bauernhof SHFE20 = Basketball Hall of Fame: Ultimate Hoops Challenge SHGDRM = Holiday Games SHHE69 = Harry Potter and the Deathly Hallows, Part 1 SHHP69 = Harry Potter und die Heiligtümer des Todes - Teil 1 SHIJ2N = Shape Boxing 2 Wii Enjoy Diet! SHKE20 = Hello Kitty Seasons SHKPNQ = Hello Kitty Seasons SHLPA4 = Silent Hill: Shattered Memories SHMPLR = Henry der Schreckliche SHNE41 = Shaun White Skateboarding SHNP41 = Shaun White Skateboarding SHOXKR = Hugo - Zauberei im Trollwald SHOYKR = Hugo: Magic in the Troll Woods SHPE5G = Our House Party SHSE20 = Hyper Fighters SHSPXT = Hyper Fighters SHTE20 = Mathews Bow Hunting SHUE52 = Cabela's Dangerous Hunts 2011: Special Edition SHVE78 = Hot Wheels: Track Attack SHVP78 = Hot Wheels: Track Attack SHWE41 = Hollywood Squares SHXEWR = Happy Feet Two SHXPWR = Happy Feet 2 SHYE69 = NHL SlapShot SHYP69 = EA Sports: NHL Slapshot SHZENR = Harley Davidson: Road Trip SI3E69 = FIFA Soccer 12 SI3P69 = FIFA 12 SI3X69 = FIFA 12 SIABOH = SingItStar Placebo SIAE52 = Ice Age: Continental Drift - Arctic Games SIAP52 = Ice Age 4: Voll Verschoben - Die Arktischen Spiele SIBBHJ = SingItStar Country SIDE54 = Sid Meier's Pirates! SIDP54 = Sid Meier's Pirates! SIESP1 = Sing It: Canciones en Español SIFESZ = The Island of Dr. Frankenstein SIFPNJ = The Island of Dr. Frankenstein SIFPOH = SingItStar Fussballhits SIHE4Z = Sing 4: The Hits Edition SIIE8P = Mario & Sonic at the London 2012 Olympic Games SIIJ01 = Mario & Sonic at the London 2012 Olympic Games SIIP8P = Mario & Sonic bei den Olympischen Spielen London 2012 SIJE52 = iCarly 2: iJoin the Click! SIJP52 = iCarly 2: Ab in die Klicke! SILE78 = Worms: Battle Islands SILP4Q = Latino Sing It SILP78 = Worms Battle Islands SIME69 = MySims Collection SINPNG = We Sing: Robbie Williams SIPE7T = I SPY Game Pack SIS1OH = SingItStar Custom: Volume 1 SIS2OH = SingItStar ABBA SIS3OH = SingItStar Summer Party SIS4OH = SingItStar Amped SIS5OH = SingItStar Pop Hits SIS7OH = SingItStar Take That SIS80Q = SingItStar Ultimate 80's SIS80S = StarSing : '80s Volume 1 v1.2 SIS90H = SingItStar 90´s SIS9OH = SingItStar 90's SISACD = SingItStar AC/DC SISAOH = SingItStar Après Ski Party SISBOH = SingItStar R'n'B SISCOH = SingItStar Chartbreaker SISCS1 = SingItStar Chartsurfer Vol. 1 SISDAE = SingItStar Die Ärzte SISDEM = SingItStar Depeche Mode SISDOH = SingItStar The Dome SISENR = Princess Isabella: A Witch's Curse SISHOH = SingItStar Hottest Hits SISJ0Q = Pelvic Fitness by Wii (Isometric & Karate Exercise) SISLIP = StarSing : Linkin Park v1.2 SISLOH = SingItStar Legends SISMEL = StarSing : Happy Birthday Mélanie v1.1 SISMJ1 = StarSing : Michael Jackson v2.1 SISMOH = SingItStar Mallorca Party SISP10 = SingItStar Studio100 SISP12 = StarSing : Pop Hits 1 & 2 v2.0 SISP34 = StarSing : Pop Hits 3 & 4 v2.0 SISPBC = SingItStar Britney vs Christina SISPOH = SingItStar Custom: Party SISPOP = StarSing : Pop v1.1 SISPUH = Princess Isabella: A Witch's Curse SISQ3Q = SingItStar Queen SISR3Q = SingItStar Rocks! SISREU = StarSing : Rocks! v1.1 SISRP4 = SingItStar Rocks! SISSOH = SingItStar Schlager SISTDK = SingItStar - Turkish Party SITPNG = We Sing: Deutsche Hits SIUUNG = We Sing Down Under SIXE01 = New Super Mario Bros Wii 16 Revelations SIXE41 = Drawsome! Tablet SJ2EWR = Scooby-Doo! and the Spooky Swamp SJ2PWR = Scooby-Doo! und der Spuk im Sumpf SJ3JDA = Jinsei Game: Happy Family SJ3PNL = Jakers! Kart Racing SJ5JDA = Jinsei Game Happy Family Gotouchi Neta Zouryou Shiage SJ6E41 = Just Dance Disney Party SJ6P41 = Just Dance Disney Party SJ7E41 = Just Dance Kids 2014 SJ7P41 = Just Dance Kids 2014 SJ9E41 = Just Dance Summer Party SJ9P41 = Just Dance 2: Extra Songs SJAE5G = JAWS: Ultimate Predator SJBE52 = GoldenEye 007 SJBJ01 = GoldenEye 007 SJBP52 = GoldenEye 007 SJCEZW = Jerry Rice & Nitus' Dog Football SJDE41 = Just Dance 3 SJDJ01 = Just Dance Wii 2 SJDK41 = Just Dance 3 SJDP41 = Just Dance 3 SJDX41 = Just Dance 3 Special Edition SJDY41 = Just Dance 3: Best Buy Exclusive Edition SJDZ41 = Just Dance 3: Target Exclusive Edition SJEEPK = JumpStart Escape from Adventure Island SJFE4Z = Kid Fit Island Resort SJFPGR = Junior Fitness Trainer SJFXGR = Junior Fitness Trainer SJGEPK = JumpStart Get Moving Family Fitness SJHE41 = Just Dance Greatest Hits SJIEG9 = Jillian Michaels Fitness Ultimatum 2011 SJJEA4 = Jimmie Johnson's Anything With An Engine SJKEPK = JumpStart Crazy Karts SJLEFS = Junior League Sports SJLPXT = Junior League Sports SJME5G = Jillian Michaels Fitness Ultimatum 2010 SJMPGT = Jillian Michaels Fitness Ultimatum 2010 SJOE41 = Just Dance 2014 SJOP41 = Just Dance 2014 SJPE78 = Jeopardy! SJQEPZ = Jewel Quest Trilogy SJQPGR = Jewel Quest Trilogy SJREA4 = Def Jam Rapstar SJRXA4 = Def Jam Rapstar SJSEPK = JumpStart Pet Rescue SJTP41 = Just Dance: Best Of SJUE20 = Dino Strike SJUPXT = Dino Strike SJVE20 = Shawn Johnson Gymnastics SJWJA4 = Winning Eleven PLAY MAKER 2010 Japan Challenge SJXD41 = Just Dance 4 SJXE41 = Just Dance 4 SJXP41 = Just Dance 4 SJZE41 = Just Dance Kids 2 SJZP41 = Just Dance Kids SK3EEB = Trauma Team SK4E52 = Shrek Forever After SK4P52 = Für immer Shrek SK5PY1 = Kylie Sing & Dance SK6KJD = K-POP Dance Festival SK7PVZ = Disney Violetta: Rhythmus und Musik SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8P52 = Skylanders: Trap Team SK8V52 = Skylanders: Trap Team SKAEA4 = Karaoke Revolution Glee SKAPA4 = Karaoke Revolution Glee SKBEG9 = Kidz Bop Dance Party SKCE20 = Bigfoot: King of Crush SKDJ18 = Karaoke Joysound Wii Duet Song SKEJ18 = Karaoke Joysound Wii: Enka Kayoukyoku Hen SKGEA4 = Karaoke Revolution Glee Volume 2 SKGPA4 = Karaoke Revolution Glee Volume 2 SKHJAF = Kamen Rider Super Climax Heroes SKJE78 = You Don't Know Jack SKKPHY = Captain Morgane and the Golden Turtle SKKXHY = Captain Morgane and the Golden Turtle SKLDSV = K11 - Kommissare im Einsatz SKMJAF = Kamen Rider Climax Heroes W SKOEA4 = Karaoke Revolution Glee Volume 3 SKOPA4 = Karaoke Revolution Glee Volume 3 SKREG9 = Kamen Rider Dragon Knight SKSE54 = NBA 2K13 SKSP54 = NBA 2K13 SKTE78 = All Star Karate SKTP78 = All Star Karate SKUE78 = Kung Fu Panda 2 SKUP78 = Kung Fu Panda 2 SKVE20 = Kevin Van Dam's Big Bass Challenge SKWPNK = Cocoto Kart Racer 2 SKXE20 = Pirate Blast SKXPFH = Pirate Blast SKYE52 = Skylanders: Giants SKYP52 = Skylanders: Giants SKYX52 = Skylanders: Giants SKYZ52 = Skylanders: Giants SKZE52 = DreamWorks Super Star Kartz SKZP52 = DreamWorks Super Star Kartz SL2J01 = Zero: Shinku no Chou SL2P01 = Project Zero 2: Wii Edition SL3ENR = Dragon's Lair Trilogy SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = The Last Airbender SLAP78 = Die Legende von Aang SLAZ78 = The Last Airbender: ToysRUs Special Edition SLCEGN = Get Up And Dance SLCPGN = Get Up And Dance SLDEYG = Let's Dance SLDPLG = Let's Dance with Mel B SLEE78 = Deepak Chopra's Leela SLEP78 = Deepak Chopra's Leela SLFE01 = New Super Mario Bros. 3 The Final Levels SLFP01 = New Super Mario Bros. 3: The Final Levels SLFPKM = Let's Sing SLFXKM = Let's Sing 5 - Spanish version SLHEWR = LEGO Harry Potter: Years 5-7 SLHPWR = LEGO Harry Potter: Die Jahre 5-7 SLIE52 = Little League World Series Baseball: Double Play SLLEWW = Lucha Libre AAA: Héroes del Ring SLPP5D = The Spirit of the Wolf SLREWR = LEGO The Lord of the Rings SLRPWR = LEGO Der Herr der Ringe SLSEXJ = The Last Story SLSJ01 = The Last Story SLSP01 = The Last Story SLTEJJ = NewU Fitness First Mind Body: Yoga & Pilates Workout SLTPLG = NewU Fitness First Mind Body: Yoga & Pilates Workout SLVP41 = Flirt-Gewitter SLWE41 = Where's Waldo? The Fantastic Journey SLYESZ = Beastly SLYPNJ = Beastly SM2E52 = 10 Minute Solution SM2P52 = 10 Minute Solution SM3E01 = Super Mario Bros. 3+ SM4E20 = Monster Trucks Mayhem SM4PXT = Monster Trucks: Ultra Mega Xtreme!!! SM5EAF = Power Rangers Samurai SM5PAF = Power Rangers Samurai SM6PNK = My Body Coach 2: Fitness & Dance SM7E69 = Madden NFL 12 SM8D52 = Call of Duty: Modern Warfare 3 SM8E52 = Call of Duty: Modern Warfare 3 SM8F52 = Call of Duty: Modern Warfare 3 SM8I52 = Call of Duty: Modern Warfare 3 SM8P52 = Call of Duty: Modern Warfare 3 SM8S52 = Call of Duty: Modern Warfare 3 SM8X52 = Call of Duty: Modern Warfare 3 SM9E54 = Major League Baseball 2K12 SMAENR = Marines: Modern Urban Combat SMAPGN = Marines: Modern Urban Combat SMBE8P = Super Monkey Ball: Step & Roll SMBJ8P = Super Monkey Ball: Step & Roll SMBP8P = Super Monkey Ball: Step & Roll SMCENR = We Wish You A Merry Christmas SMCPXT = We Wish You A Merry Christmas SMD3OH = SingItStar e La Magia Disney SMEE69 = Madden NFL 11 SMFE4Q = Phineas and Ferb: Across the 2nd Dimension SMFP4Q = Phineas und Ferb: Quer durch die 2. Dimension SMGE78 = Megamind: Mega Team Unite SMGP78 = Megamind: Das Bündnis von Team Mega SMGX = SaveGame Manager GX SMHPNK = Marvel Super Heroes 3D: Grandmaster's Challenge SMIE41 = Who Wants To Be A Millionaire SMIG3Q = SingItStar Made in Germany SMJE52 = Monster Jam: Path of Destruction SMJP52 = Monster Jam: Pfad der Zerstörung SMKE4Z = Gem Smashers SMLE54 = Major League Baseball 2K10 SMME02 = Super Mario: Mushroom Adventure PLUS - Winter Moon SMMJ0Q = Momu chan Diet Wii Figurobics by Chon Dayon SMMP01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 4. SMMP02 = Super Mario: Mushroom Adventure PLUS: Winter Moon SMNC01 = New Super Mario Bros. Wii SMNE01 = New Super Mario Bros. Wii SMNE02 = New Super Mario Remake SMNE03 = Newer Super Mario Bros. Wii SMNE04 = Cannon Super Mario Bros. Wii SMNE05 = Another Super Mario Bros. Wii SMNE06 = Newer Summer Sun SMNE07 = Newer Holiday Special SMNE08 = Epic Super Bowser World SMNE09 = Old Super Mario Bros. Wii SMNE10 = Koopa Country SMNE11 = New Super Mario Bros. Wii 4 SMNE12 = Awesomer Super Luigi Mini SMNE13 = New Super Mario Bros. Wii 9 Summer Special SMNE14 = Super Mario World Wii SMNE15 = Newer Super Mario Bros. 7 SMNE16 = Newer Super Mario Sunshine SMNE17 = Flowery Super Mario Land Wii SMNE18 = Super Switchy Mario World Wii SMNE19 = New Super Mr. M Bros. Wii SMNE20 = New Super Mario Bros. H SMNE21 = Newer Super Mario Land Wii SMNE22 = Neo Mario Brothers Wii SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE24 = Super Mario Ghost Special SMNE25 = Happy Super Marionose Wii SMNE26 = New Super Mario Bros. DS Wii Version SMNE27 = Newer Super Mario All Star SMNE28 = New Super Mario World SMNE29 = Not So Super Toaster Bros.: The Newer Collab! SMNE2D = Super Mario 2D Land 7 SMNE30 = New Super Mario Bros. Koopa Kall SMNE31 = New Super Mario Bros. Wii - Other World SMNE32 = Super Mario Legends SMNE33 = New Super Mario Bros. Wii Rollercoaster Party SMNE34 = New Super Mario Bros. Wii: Yoshi Mode SMNE35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNE36 = New Super Mario Bros. Wii Hack Pack SMNE37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNE38 = New Super Mario Bros. Wii Underground Maze SMNE39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNE40 = Newer Super Mario Bros. Wii U SMNE41 = Devil Mario Winter Special SMNE42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNE99 = Children's Super Mario Bros. Wii SMNED2 = New Super Mario Bros. + Animal Edition SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNENW = Newer Mario Escapade SMNEPM = Super Mario: Mushroom Adventure PLUS SMNEPS = New Super Mario Bros. Plus SMNERE = Retro Mario Bros. SMNERV = RVLution Wii SMNESL = Newer Super Mario Land Wii SMNESM = New Super Ghost Mario Wii SMNESN = New Super Mario Bros. Wii H SMNESS = New Super Mario Bros. 7 SMNEXD = Deluxe Super Mario Bros. Wii SMNEXR = Super Mario Remix SMNEYE = 8Forrest's Super Mario Bros. Wii SMNEYL = Luigi's Super Yoshi Bros. SMNEYM = You Super Mario Bros. Me Summer Special SMNEYS = Yoshi Super Mario Bros. Wii SMNEYU = You Super Mario Bros. Me SMNEYW = Newer Super Mario World Yoshi Way SMNEYY = You Super Mario Bros. Me Autumn Adventure SMNEZ2 = New JeDa Mario Bros. Wii SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZG = GF Super Mario Bros. Wii SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZQ = Basic Super Mario Bros. Wii SMNEZR = Newer Super Wario World Wii SMNEZS = Another Newer Super Mario Bros. Wii SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZX = Donkey Kong Remastered SMNEZY = Super Mario Skyland SMNEZZ = New Super Mario Bros. 2 Wii Version SMNJ01 = New Super Mario Bros. Wii SMNJ02 = Awesomer Super Luigi Mini SMNJ03 = Newer Super Mario Bros. Wii SMNJ04 = Cannon Super Mario Bros. Wii SMNJ06 = Newer Summer Sun SMNJ07 = Newer Holiday Special SMNJ08 = Epic Super Bowser World SMNJ10 = Koopa Country SMNJ11 = New Super Mario Bros. Wii 4 SMNJ13 = New Super Mario Bros. Wii 9 Summer Special SMNJ14 = Super Mario World Wii SMNJ15 = Newer Super Mario Bros. 7 SMNJ16 = Newer Super Mario Sunshine SMNJ17 = Flowery Super Mario Land Wii SMNJ18 = Super Switchy Mario World Wii SMNJ19 = New Super Mr. M Bros. Wii SMNJ20 = New Super Mario Bros. H SMNJ21 = Newer Super Mario Land Wii SMNJ22 = Neo Mario Brothers Wii SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ24 = Super Mario Ghost Special SMNJ25 = Happy Super Marionose Wii SMNJ26 = New Super Mario Bros. DS Wii Version SMNJ27 = Newer Super Mario All Star SMNJ28 = New Super Mario World SMNJ29 = Not So Super Toaster Bros.: The Newer Collab! SMNJ2D = Super Mario 2D Land Wii SMNJ30 = New Super Mario Bros. Koopa Kall SMNJ31 = New Super Mario Bros. Wii - Other World SMNJ32 = Super Mario Legends SMNJ33 = New Super Mario Bros. Wii Rollercoaster Party SMNJ34 = New Super Mario Bros. Wii: Yoshi Mode SMNJ35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNJ36 = New Super Mario Bros. Wii Hack Pack SMNJ37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNJ38 = New Super Mario Bros. Wii Underground Maze SMNJ39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNJ40 = Newer Super Mario Bros. Wii U SMNJ41 = Devil Mario Winter Special SMNJ42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNJ99 = Children's Super Mario Bros. Wii SMNJD2 = New Super Mario Bros. + Animal Edition SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJNW = Newer Mario Escapade SMNJPM = Super Mario: Mushroom Adventure PLUS SMNJPS = New Super Mario Bros. Plus SMNJRE = Retro Mario Bros. SMNJRV = RVLution Wii SMNJSL = Newer Super Mario Land Wii SMNJSM = New Super Ghost Mario Wii SMNJXD = Deluxe Super Mario Bros. Wii SMNJXR = Super Mario Remix SMNJYE = 8Forrest's Super Mario Bros. Wii SMNJYL = Luigi's Super Yoshi Bros. SMNJYM = You Super Mario Bros. Me Summer Special SMNJYS = Yoshi Super Mario Bros. Wii SMNJYY = You Super Mario Bros. Me Autumn Adventure SMNJZ2 = New JeDa Mario Bros. Wii SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZG = GF Super Mario Bros. Wii SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZQ = Basic Super Mario Bros. Wii SMNJZR = Newer Super Wario World Wii SMNJZS = Another Newer Super Mario Bros. Wii SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZX = Donkey Kong Remastered SMNJZY = Super Mario Skyland SMNJZZ = New Super Mario Bros. 2 Wii Version SMNK01 = New Super Mario Bros. Wii SMNP01 = New Super Mario Bros. Wii SMNP02 = Awesomer Super Luigi Mini SMNP03 = Newer Super Mario Bros. Wii SMNP04 = Cannon Super Mario Bros. Wii SMNP05 = Another Super Mario Bros. Wii SMNP06 = Newer Summer Sun SMNP07 = Newer Holiday Special SMNP08 = Epic Super Bowser World SMNP10 = Koopa Country SMNP11 = New Super Mario Bros. Wii 4 SMNP12 = Awesomer Super Luigi Mini SMNP13 = New Super Mario Bros. Wii 9 Summer Special SMNP14 = Super Mario World Wii SMNP15 = Newer Super Mario Bros. 7 SMNP16 = Newer Super Mario Sunshine SMNP17 = Flowery Super Mario Land Wii SMNP18 = Super Switchy Mario World Wii SMNP19 = New Super Mr. M Bros. Wii SMNP20 = New Super Mario Bros. H SMNP21 = Newer Super Mario Land Wii SMNP22 = Neo Mario Brothers Wii SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP24 = Super Mario Ghost Special SMNP25 = Happy Super Marionose Wii SMNP26 = New Super Mario Bros. DS Wii Version SMNP27 = Newer Super Mario All Star SMNP28 = New Super Mario World SMNP29 = Not So Super Toaster Bros.: The Newer Collab! SMNP2D = Super Mario 2D Land Wii SMNP30 = New Super Mario Bros. Koopa Kall SMNP31 = New Super Mario Bros. Wii - Other World SMNP32 = Super Mario Legends SMNP33 = New Super Mario Bros. Wii Rollercoaster Party SMNP34 = New Super Mario Bros. Wii: Yoshi Mode SMNP35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNP36 = New Super Mario Bros. Wii Hack Pack SMNP37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNP38 = New Super Mario Bros. Wii Underground Maze SMNP39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNP40 = Newer Super Mario Bros. Wii U SMNP41 = Devil Mario Winter Special SMNP42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNP77 = New Super Mario Bros. Wii Arcadia SMNP99 = Children's Super Mario Bros. Wii SMNPD2 = New Super Mario Bros. + Animal Edition SMNPDU = DU Super Mario Bros. : Anniversary Edition SMNPLL = Newer Super Luigi Wii SMNPLM = Newer Super Luigi Wii Dark Moon SMNPMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNPNW = Newer Mario Escapade SMNPO1 = New Super Mario Custom Edition SMNPPM = Super Mario: Mushroom Adventure PLUS SMNPPS = New Super Mario Bros. Plus SMNPRE = Retro Mario Bros. SMNPRV = RVLution Wii SMNPSL = Newer Super Mario Land Wii SMNPSM = New Super Ghost Mario Wii SMNPXD = Deluxe Super Mario Bros. Wii SMNPXR = Super Mario Remix SMNPYE = 8Forrest's Super Mario Bros. Wii SMNPYL = Luigi's Super Yoshi Bros. SMNPYM = You Super Mario Bros. Me Summer Special SMNPYS = Yoshi Super Mario Bros. Wii SMNPYY = You Super Mario Bros. Me Autumn Adventure SMNPZ2 = New JeDa Mario Bros. Wii SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZG = GF Super Mario Bros. Wii SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZQ = Basic Super Mario Bros. Wii SMNPZR = Newer Super Wario World Wii SMNPZS = Another Newer Super Mario Bros. Wii SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZX = Donkey Kong Remastered SMNPZY = Super Mario Skyland SMNPZZ = New Super Mario Bros. 2 Wii Version SMNW01 = New Super Mario Bros. Wii SMOE41 = Michael Jackson: The Experience SMOJ41 = Michael Jackson: The Experience SMOP41 = Michael Jackson The Experience SMOT3Q = SingItStar Motown SMOX41 = Michael Jackson: The Experience - Walmart Edition SMOY41 = Michael Jackson: The Experience - Special Edition SMPE69 = Monopoly Collection SMPP01 = New Super Mario Bros. Wii 2: The Other P SMPP69 = Monopoly Collection SMRE01 = New Super Mario Bros. Wii: Super Mario Bros. 1 Custom SMRE78 = WWE SmackDown vs. Raw 2011 SMRP78 = WWE SmackDown vs. Raw 2011 SMSE01 = New Super Mario Bros Wii 12 Sunshine Paradise SMSE78 = Marvel Super Hero Squad: The Infinity Gauntlet SMSP78 = Marvel Super Hero Squad: The Infinity Gauntlet SMTJ18 = Momotarô Dentetsu 2010 SMUJAF = Daikaijuu Battle: Ultra Coliseum DX - Ultra Senshi Daishuuketsu SMVE01 = Super Mario Vacation SMVE54 = Major League Baseball 2K11 SMVJ01 = Super Mario Vacation SMVP01 = Super Mario Vacation SMWE01 = Newer Super Mario World U SMWE4Z = Man vs. Wild SMWJ01 = Newer Super Mario World U SMWP01 = Newer Super Mario World U SMYE20 = Minute to Win It SMZE78 = Marvel Super Hero Squad: Comic Combat SMZP78 = Marvel Super Hero Squad: Comic Combat SN2E69 = NERF N-Strike Double Blast Bundle SN3EYG = Maximum Racing: Rally Racer SN3PNG = Rally Racer SN4EDA = Naruto Shippuden: Dragon Blade Chronicles SN4JDA = Naruto Shippuuden: Ryujinki SN4XGT = Naruto Shippuden: Dragon Blade Chronicles SN5EYG = Maximum Racing: Crash Car Racer SN5PNG = Crash Car Racer SN6EYG = Maximum Racing: Super Karts SN6PNG = Super Karts SN7EYG = Maximum Racing: Super Truck Racer SN7PNG = Super Truck Racer SN8EYG = Maximum Racing: Sprint Cars SN8PNG = Sprint Cars SN9E54 = Nickelodeon Fit SNAE52 = Cabela's North American Adventures 2011 SNBE41 = NCIS: The Game SNBP41 = NCIS: The Game SNCE8P = Sonic Colors SNCJ8P = Sonic Colors SNCP8P = Sonic Colours SNDE20 = Deal or No Deal: Special Edition SNEENR = North American Hunting Extravaganza 2 SNEPXT = North American Hunting 2: Extravaganza SNFE69 = EA Sports Active NFL Training Camp SNGEJJ = Get Fit with Mel B SNGPLG = Get Fit with Mel B SNHE69 = Need for Speed: Hot Pursuit SNHJ13 = Need for Speed: Hot Pursuit SNHP69 = Need for Speed: Hot Pursuit SNIE54 = Nicktoons MLB SNJE69 = NBA Jam SNJP69 = NBA Jam SNKX54 = Nickelodeon Fit SNLE01 = New Super Mario Bros. Wii 0-2 Next Generation Levels SNLE54 = Nickelodeon Dance SNLP54 = Nickelodeon Dance SNLX54 = Nickelodeon Dance SNMEAF = Namco Museum Megamix SNOPY1 = Now! That's What I Call Music: Dance & Sing SNPE52 = NASCAR The Game: Inside Line SNQE7U = National Geographic Challenge! SNQPLG = National Geographic Challenge! SNRE52 = NASCAR Unleashed SNSE52 = NASCAR 2011: The Game SNTEXN = Netflix Instant Streaming Disc SNUPJW = Happy Neuron Academy SNVE69 = Need for Speed: The Run SNVJ13 = Need for Speed: The Run SNVP69 = Need for Speed: The Run SNXJDA = Naruto Shippuuden: Gekitou Ninja Taisen Special SNYEVZ = Monster High: 13 Wishes SNYPVZ = Monster High: 13 Wünsche SNZEVZ = Barbie: Dreamhouse Party SNZPVZ = Barbie: Dreamhouse Party SO3EE9 = Rune Factory: Tides of Destiny SO3J99 = Rune Factory: Oceans SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg - Das große Hexenbesen-Rennen 2 SOCE4Z = Deadliest Catch: Sea of Chaos SOIEEB = 101-in-1 Sports Party Megamix SOIPHZ = 101-in-1 Sports Party Megamix SOJE41 = Rayman Origins SOJP41 = Rayman Origins SOKEA4 = Karaoke Joysound SOKJ18 = Karaoke Joysound Wii DX SOME01 = Rhythm Heaven Fever SOMJ01 = Minna no Rhythm Tengoku SOMK01 = Rhythm Heaven Fever SOMP01 = Beat the Beat: Rhythm Paradise SONDMR = Meine ersten Mitsing-Lieder SONFMR = Meine ersten Mitsing-Lieder SONPMR = My First Songs SORE4Z = The Oregon Trail SOSEG9 = Turbo: Super Stunt Squad SOSPAF = Turbo: Die Super-Stunt-Gang SOTE52 = Wipeout: The Game SOUE01 = The Legend of Zelda: Skyward Sword SOUJ01 = The Legend of Zelda: Skyward Sword SOUK01 = The Legend of Zelda: Skyward Sword SOUP01 = The Legend of Zelda: Skyward Sword SP2E01 = Wii Sports + Wii Sports Resort SP2P01 = Wii Sports + Wii Sports Resort SP3E41 = The $1,000,000 Pyramid SP4PJW = Pétanque Master SP4V = Castlevania: Rondo of Blood SP5E70 = The Kore Gang: Outvasion From Inner Earth SP5PVV = The Kore Gang: Invasion der Inner-Irdischen SP6DSV = Popstars SP7EAF = Pac-Man Party SP7JAF = Pac-Man Party SP7PAF = Pac-Man Party SP8E78 = The Penguins of Madagascar: Dr. Blowhole Returns Again! SP8P78 = Die Pinguine aus Madagaskar: Dr. Seltsam kehrt zurück SP9P4Q = SingIt Star POP 2009 SP9PJW = Pucca's Race for Kisses SPAE5G = Pirates Plund-Arrr SPBPGT = Richtig Buchstabieren Party SPCPZS = Pocoyo Racing SPDE52 = Spider-Man: Shattered Dimensions SPDP52 = Spider-Man: Dimensions SPEE20 = Speed SPEPXT = Speed SPGPPN = Peppa Pig: Fun And Games SPHPJW = Spaghetti Western Shooter SPIE18 = Oops! Prank Party SPIJ18 = Party Game Box 100 SPIP18 = Games Island SPKXPV = Springdale: Riding Adventures SPMDRM = Mahjongg Party SPMPWP = Mahjong Party Pack SPOPFR = Winter Sports 2011: Go for Gold SPPEFS = Power Punch SPQE7T = I SPY Spooky Mansion SPRE01 = New Super Mario Bros. Wii 14 Project Mario SPRE41 = The Price Is Right: 2010 Edition SPTJEB = Hospital. 6 nin no Ishi SPUE20 = Let's Paint SPVEA4 = Pro Evolution Soccer 2011 SPVPA4 = Pro Evolution Soccer 2011 SPVXA4 = Pro Evolution Soccer 2011 SPVYA4 = Pro Evolution Soccer 2011 SPWHZH = The Studio 100: Play Island SPXP41 = Prince of Persia: Die Vergessene Zeit SPYDSV = Yetisports: Penguin Party Island SPZE5G = Pizza Delivery Boy SQ2EPZ = Country Dance SQ2PXT = Country Dance SQAE52 = Cabela's African Adventures SQBPXT = The Cube SQDE8P = Gunblade NY & LA Machineguns : Arcade Hits Pack SQDP8P = Gunblade NY & LA Machineguns: Arcade Hits Pack SQEENG = We Sing Pop! SQEPNG = We Sing Pop! SQFE5G = Phineas and Ferb: Quest for Cool Stuff SQFPGT = Phineas and Ferb: Quest for Cool Stuff SQIE4Q = Disney Infinity SQIP4Q = Disney Infinity SQIY4Q = Disney Infinity SQKE5G = Cooking Mama 2-Pack SQKK01 = Cooking Mama 2 Pack SQLE4Z = Cartoon Network Punch Time Explosion XL SQLPGN = Cartoon Network: Punch Time Explosion XL SQME52 = Spider-Man: Edge of Time SQMP52 = Spider-Man: Edge of Time SQPPX4 = Speed 2 SQQEVZ = Disney Planes: Fire & Rescue SQQPVZ = Planes 2: Immer im Einsatz SQRPNG = We Sing Rock! SQTPML = Das Duell - Männer vs. Frauen: Partyspaß Total! SQUDX3 = Quiz Party SQUFX3 = Quiz Party SQVE69 = FIFA 15 SQVP69 = FIFA 15 - Legacy Edition SQVX69 = FIFA 15 - Legacy Edition SR4E41 = Raving Rabbids: Travel in Time SR4J41 = Raving Rabbids: Travel in Time SR4P41 = Raving Rabbids: Die verrückte Zeitreise SR5E41 = Raving Rabbids Party Collection SR5P41 = Raving Rabbids Party Collection SR6EHG = Reader Rabbit 1st Grade SR7EHG = Reader Rabbit 2nd Grade SR8EHG = Reader Rabbit Kindergarten SR9EHG = Reader Rabbit Preschool SRAJMS = Rajirugi Noa Wii SRBP4Q = SingItStar: R&B SRBPHS = Rugby League 3 SRCE69 = Rock Band: Country Track Pack 2 SREXNL = Reader Rabbit Kindergarten SRFE52 = Rapala Pro Bass Fishing SRFP52 = Rapala Pro Bass Fishing SRGE69 = Rango SRGP01 = New Super Mario Bros Wii 2 Reggie SRGP69 = Rango SRHP01 = New Super Mario Bros. Wii 7 Retro Heaven SRIE78 = Rio SRIP78 = Rio SRJJAF = Super Sentai Battle: Ranger Cross SRKEFP = Remington Super Slam Hunting: Alaska SRKPNK = Remington Dangerous Animals SRLXNL = Reader Rabbit Preschool SRME18 = Rooms: The Main Building SRMJ18 = Rooms: Fushigi na Ugoku Heya SRNE70 = Project Runway SRNP01 = New Super Mario Bros. Wii Revolution SRNP70 = Project Runway SRPE4Q = Disney Tangled SRPP4Q = Disney Rapunzel: Neu verföhnt SRQE41 = Racquet Sports SRQP41 = Racket Sports Party SRRENR = Rec Room Games SRRPGN = Great Party Games SRSE20 = Super Sonic Racer SRSPXT = Supersonic Racer SRTXNL = Reader Rabbit 1st Grade SRUE4Z = Rudolph the Red-Nosed Reindeer SRVE41 = The Price Is Right Decades SRVP01 = New Super Mario Bros Revolution SRWXNL = Reader Rabbit 2nd Grade SRXE52 = Generator Rex: Agent of Providence SRXP52 = Generator Rex: Agent of Providence SRYEAF = ExerBeat: Gym Class Workout SRYJAF = Fitness Party SRYPAF = ExerBeat: Gym Class Workout SS2PFR = Winter Sports 2012: Feel the Spirit SS3EWR = Sesame Street: Elmo's A-to-Zoo Adventure SS3PWR = Sesame Street: Elmo's A-to-Zoo Adventure SS3UWR = Sesame Street: Elmo's A-to-Zoo Adventure SS4EWR = Sesame Street: Cookie's Counting Carnival SS4UWR = Sesame Street: Cookie's Counting Carnival SS5ENR = Satisfashion SS6UHS = AFL Live: Game of the Year Edition SS7EFP = Remington Super Slam Hunting: Africa SS7URN = Remington Super Slam Hunting: Africa SS8E78 = SpongeBob SquigglePants SS8P78 = SpongeBob Schwammkopf: verflixt und zugemalt SS9JMS = Milestone Shooting Collection 2 SSBE78 = Puss in Boots SSBP78 = Der gestiefelte Kater SSCDWR = Scene It? Ganz großes Kino! SSCEPM = Scene It? Bright Lights! Big Screen! SSCFPM = Scene It? Bright Lights! Big Screen! SSCFWR = Scene It? Ganz großes Kino! SSCIWR = Scene It? Ganz großes Kino! SSCPWR = Scene It? Ganz großes Kino! SSCSWR = Scene It? Ganz großes Kino! SSDDRV = Schlag den Raab SSEDNG = We Sing Vol. 2 SSEPNG = We Sing Vol. 2 SSEVNG = We Sing: Encore SSFPKM = Sing 4: The Hits Edition SSGPNG = We Sing SSHPHH = Sherlock Holmes: Das Geheimnis des silbernen Ohrrings SSIENR = Winter Blast: 9 Snow & Ice Games SSJEJJ = Summer Stars 2012 SSJPKM = Summer Stars 2012 SSLENR = I Love Horses: Rider's Paradise SSLPKM = The Saddle Club SSLPOH = SingItStar Legends SSMEYG = American Mensa Academy SSMPGD = Mensa Academy SSNEYG = Sniper Elite SSNPHY = Sniper Elite SSPE52 = Skylanders: Spyro's Adventure SSPJ52 = Skylanders: Spyro's Adventure SSPP52 = Skylanders: Spyro's Adventure SSPX52 = Skylanders: Spyro's Adventure SSQE01 = Mario Party 9 SSQJ01 = Mario Party 9 SSQK01 = Mario Party 9 SSQP01 = Mario Party 9 SSQW01 = Mario Party 9 SSRE20 = Wild West Shootout SSRPXT = Wild West Shootout SSSE01 = New Super Mario Bros. Wii: Summer Sun SSSEWR = Sesame Street: Elmo's Musical Monsterpiece SSTEG9 = Kid Adventures: Sky Captain SSTPY5 = Stunt Flyer: Hero of the Skies SSUES5 = Sushi Go Round SSVE52 = Wipeout 3 SSWDRM = Water Sports SSWEPZ = Water Sports SSWPGR = Water Sports SSZE5G = Swords ST3J01 = Kiki Trick ST4PNX = Thomas & Friends: Hero of the Rails ST4XNX = Thomas & Friends: Hero of the Rails ST5E52 = Transformers: Cybertron Adventures ST5P52 = Transformers: Mission auf Cybertron ST6E78 = The Biggest Loser Challenge ST6P78 = The Biggest Loser Challenge ST7E01 = Fortune Street ST7JGD = Itadaki Street Wii ST7P01 = Straßen des Glücks ST8P75 = SingItStar 80's ST9E52 = Top Shot Arcade STAE78 = Pictionary STAP75 = SingItStar Apres Ski Hits STAP78 = Pictionary STAU78 = Pictionary STCP75 = SingItStar Singstar STDEFP = Reload STDP75 = SingItStar Deutsch Rock-Pop STEETR = Tetris Party Deluxe STEJ18 = Tetris Party Premium STEPTR = Tetris Party Deluxe STFE52 = Transformers: Prime STFP52 = Transformers Prime: The Game STGJAF = Tales of Graces STHE8P = THOR: God of Thunder STHP75 = SingItStar Hottest Hits STHP8P = THOR: God of Thunder STIFKM = Titeuf le Film STJJAF = Taiko no Tatsujin Wii: Ketteiban STKE08 = Tatsunoko vs. Capcom: Ultimate All-Stars STKJ08 = Tatsunoko vs. Capcom: Ultimate All-Stars STKP08 = Tatsunoko vs. Capcom: Ultimate All-Stars STLE78 = Truth or Lies STLP78 = Stimmt's (Truth or Lies) STMEGN = Titanic Mystery STMPKP = Titanic Mystery STNE41 = The Adventures of Tintin: The Game STNP41 = Die Abenteuer von Tim und Struppi: Das Geheimnis der Einhorn STOE4Q = Cars Toon: Mater's Tall Tales STOP4Q = Cars Toon: Hooks unglaubliche Geschichten STOX4Q = Cars Toon: Mater's Tall Tales STPP75 = SingItStar Pop Hits STPPML = Meine Tierarztpraxis SOS am Ozean STQJHF = Inazuma Eleven Strikers STQP01 = Inazuma Eleven Strikers STQP75 = SingItStar Queen STQX01 = Inazuma Eleven Strikers STRE4Q = Tron: Evolution - Battle Grids STRP4Q = Tron: Evolution - Battle Grids STRP75 = SingItStar Rock Ballads STRX4Q = Tron: Evolution - Battle Grids Championship Edition STSE4Q = Toy Story 3 STSP4Q = Toy Story 3 STSP75 = SingItStar Schlager STSX4Q = Toy Story 3 STSY4Q = Toy Story 3 STSZ4Q = Toy Story 3: Toy Box Special Edition STTDRM = Hidden Mysteries: Titanic STTE52 = Hidden Mysteries: Titanic STTPGR = Hidden Mysteries: Titanic STTXGR = Hidden Mysteries: Titanic STUPRN = Turbo Trainz STVDSV = TV Total Events STWE69 = Tiger Woods PGA Tour 11 STWP69 = Tiger Woods PGA Tour 11 STXE69 = Tiger Woods PGA Tour 12: The Masters STXP69 = Tiger Woods PGA Tour 12: The Masters STYE52 = Tony Hawk: Shred STYP52 = Tony Hawk: Shred STZE52 = Transformers: Dark of the Moon - Stealth Force Edition STZP52 = Transformers 3: Stealth Force Edition SU2E54 = Nickelodeon Dance 2 SU2P54 = Nickelodeon Dance 2 SU2X54 = Nickelodeon Dance 2 SU3DMR = U-Sing 2 SU3FMR = U-Sing 2 SU3HMR = U-Sing 2: Popstars Edition SU3PMR = U-Sing 2 SU3SMR = U-Sing 2 SU3UMR = U-Sing 2: Australian Edition SU4E78 = UFC Personal Trainer: The Ultimate Fitness System SU4P78 = UFC Personal Trainer: The Ultimate Fitness System SU5EVZ = Monster High: Skultimate Roller Maze SU5PVZ = Monster High: Labyrinth-Skaten SU6E5G = Zumba Fitness Core SU6P5G = Zumba Fitness Core SU6XGT = Zumba Fitness Core SU7EG9 = Rise of the Guardians SU7PAF = Die Hüter des Lichts SU8PNG = We Sing: Deutsche Hits 2 SU9E4Q = Disney Planes SU9P4Q = Disney Planes SU9X4Q = Disney Planes SUKE01 = Kirby's Return to Dream Land SUKJ01 = Hoshi no Kirby Wii SUKK01 = Kirby's Return to Dream Land SUKP01 = Kirby's Adventure Wii SUMJC8 = Winning Post World 2010 SUNEYG = Deer Drive Legends SUOE41 = The Hip Hop Dance Experience SUOP41 = The Hip Hop Dance Experience SUPE01 = Wii Party SUPJ01 = Wii Party SUPK01 = Wii Party SUPP01 = Wii Party SUQENG = We Sing UK Hits SUQPNG = We Sing: UK Hits SURE01 = New Super Mario Bros. Wii 19 Resurrection U SUREA4 = Dance Dance Revolution II SURPA4 = Dance Dance Revolution: Hottest Party 5 SUSFMR = U-Sing Johnny Hallyday SUSPMR = U-Sing Girls Night SUTESZ = Once Upon A Time SUUE78 = uDraw Studio: Instant Artist SUUP78 = uDraw Studio: Instant Artist SUVE52 = Cabela's Dangerous Hunts 2013 SUVP52 = Cabela's Dangerous Hunts 2013 SUWE78 = uDraw Studio SUWP78 = uDraw Studio SUXEA4 = Pro Evolution Soccer 2010 SUXJA4 = Winning Eleven PLAY MAKER 2010 SUXPA4 = Pro Evolution Soccer 2010 SUXXA4 = Pro Evolution Soccer 2010 SUXYA4 = Pro Evolution Soccer 2010 SUYDRV = Schlag den Raab - Das 3. Spiel SUZD7K = Benjamin Blümchen - Törööö im Zoo SV2E78 = Big Beach Sports 2 SV2P78 = Big Beach Sports 2 SV3EG9 = Madagascar 3: The Video Game SV3PAF = Madagascar 3: Flucht durch Europa SV4E8P = Virtua Tennis 4 SV4P8P = Virtua Tennis 4 SV5PRV = The Voice of Germany Vol. 2 SV6SRV = The Voice SV7EVZ = Penguins of Madagascar SV7PVZ = Die Pinguine aus Madagascar SVBE52 = Battleship SVBP52 = Battleship SVCEPZ = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = Spongebob Schwammkopf: Planktons Fiese Robo-Rache SVHP69 = FIFA 14 - Legacy Edition SVHX69 = FIFA 14 - Legacy Edition SVME01 = Super Mario All-Stars SVMJ01 = Super Mario Collection: 25th Anniversary Edition SVMK01 = Super Mario All-Stars SVMP01 = Super Mario All-Stars: 25 Jahre Jubiläumsedition SVOEWW = El Chavo SVPESZ = Vegas Party SVPPNJ = Vegas Party SVSPZX = Battle vs Chess SVTEXS = Bit.Trip Complete SVTP99 = BIT.TRIP COMPLETE SVUPRV = The Voice of Germany SVVEG9 = The Croods: Prehistoric Party! SVVPAF = Die Croods: Steinzeit Party! SVWEQH = Veggy World SVXE52 = Skylanders: Swap Force SVXF52 = Skylanders: Swap Force SVXI52 = Skylanders: Swap Force SVXP52 = Skylanders: Swap Force SVXY52 = Skylanders: Swap Force SVYEG9 = Ben 10: Omniverse 2 SVYPAF = Ben 10: Omniverse 2 SVZEVZ = How to Train Your Dragon 2 SVZPVZ = How to Train Your Dragon 2 SW2E52 = Wipeout 2 SW3EJJ = Winter Stars SW3PKM = Eurosport Winter Stars SW4JA4 = Winning Eleven PLAY MAKER 2011 SW6E78 = WWE '12 SW6P78 = WWE '12 SW7EVN = Gunslingers SW7PNK = Western Heroes SW8ENG = We Sing 80s SW8PNG = We Sing 80s SW9EVN = Wicked Monsters Blast! SW9PYT = Wicked Monsters Blast! SWAE52 = DJ Hero SWAP52 = DJ Hero SWBE52 = DJ Hero 2 SWBP01 = New Super Mario Bros. Wii 0 Where It All Began SWBP52 = DJ Hero 2 SX2PNG = Jungle Kartz SX3EXJ = Pandora's Tower SX3J01 = Pandora’s Tower: Until I Return to Your Side SX3P01 = Pandora's Tower SX4E01 = Xenoblade Chronicles SX4J01 = Xenoblade SX4P01 = Xenoblade Chronicles SX5E4Z = Santa Claus is Comin' to Town! SX6JAF = Pretty Cure All Stars Everyone Gather ☆ Let's Dance SX7E52 = Teenage Mutant Ninja Turtles SX7P52 = Teenage Mutant Ninja Turtles SX8E52 = X-Men Destiny SX8P52 = X-Men Destiny SXAE52 = Guitar Hero: World Tour SXAP52 = Guitar Hero: World Tour SXBE52 = Guitar Hero: Metallica SXBP52 = Guitar Hero: Metallica SXCE52 = Guitar Hero: Smash Hits SXCP52 = Guitar Hero: Greatest Hits SXDE52 = Guitar Hero: Van Halen SXDP52 = Guitar Hero: Van Halen SXEE52 = Guitar Hero 5 SXEF52 = Guitar Hero III Custom : Megadeth SXEP52 = Guitar Hero 5 SXFE52 = Band Hero SXFF52 = Guitar Hero III Custom : My Chemical Romance SXFP52 = Band Hero SXIE52 = Guitar Hero: Warriors of Rock SXIP52 = Guitar Hero: Warriors of Rock SY8PKM = Let's Sing 2015 SZ2E5G = Zumba Fitness 2 SZ2P5G = Zumba Fitness 2 SZ2XGT = Zumba Fitness 2 SZ3E5G = Zumba Fitness World Party SZ3PGT = Zumba Fitness World Party SZ5E5G = Zumba Fitness SZ5PGT = Zumba Fitness SZAE69 = Rock Band 2 SZAP69 = Rock Band 2 SZBE69 = Rock Band 3 SZBP69 = Rock Band 3 SZEE01 = New Super Mario Bros Wii 13 Shadow Zero Escape TITLES = http://www.gametdb.com (type: Wii language: DE version: 20150208103554) UGPE01 = Game Boy Player UGPJ01 = Game Boy Player UGPP01 = Game Boy Player ULFW = uLoader UUUE01 = New Super Mario Bros. Wii 19 Resurrection U VBGX = Visual Boy Advance GX VIPE01 = New Super Mario Bros Wii 18 Vip Mix W22E = Planet Fish W24E = 2 Fast 4 Gnomz W2AE = Big Bass Arcade W2CE = Brain Challenge W2CJ = Brain Challenge W2CP = Gehirntraining W2FP = Physiofun - Balance Training W2GD = Phoenix Wright Ace Attorney: Justice for All (Deutsche Version) W2GE = Phoenix Wright: Ace Attorney Justice for All W2GI = Phoenix Wright: Ace Attorney - Justice for All W2GJ = Gyakuten Saiban 2 W2GP = Phoenix Wright Ace Attorney: Justice for All W2IE = Fishie Fishie W2IP = Fishie Fishie W2JE = Just Jam W2KE = Let's Catch W2KJ = Let's Catch W2KP = Let's Catch W2LE = Bloons W2LP = Bloons W2ME = Blaster Master: Overdrive W2MP = Blaster Master: Overdrive W2OE = My Aquarium 2 W2OJ = Blue Oasis: Michinaru Shinkai W2OP = My Aquarium 2 W2PP = Physiofun - Beckenboden Training W2TE = Drill Sergeant Mindstrong W2TJ = Onitore Kyoukan ha Onigunsou W2TP = Brain Cadets W2YE = Fireplacing W2YP = My Fireplace W34J = Simple Series Vol. 4: The Misshitsu kara no Dasshutsu W3AE = Carmen Sandiego Adventures in Math: The Big Ben Burglary W3BE = Soccer Bashi W3BP = Soccer Bashi W3DJ = 3° C W3FE = 3D Pixel Racing W3FP = 3D Pixel Racing W3GD = Phoenix Wright Ace Attorney 3: Trials And Tribulations W3GE = Phoenix Wright Ace Attorney: Trials and Tribulations W3GI = Phoenix Wright: Ace Attorney - Trials and Tribulations W3GJ = Gyakuten Saiban 3 W3GP = Phoenix Wright Ace Attorney: Trials and Tribulations W3JE = Triple Jumping Sports W3KE = ThruSpace W3KJ = Surinuke Anatousu W3KP = ThruSpace: High Velocity 3D Puzzle W3LE = Carmen Sandiego Adventures in Math: The Lady Liberty Larceny W3ME = The Three Musketeers: One for all W3MP = Die Drei Musketiere Einer für alle! W3PE = Triple Throwing Sports W3RE = Triple Running Sports W3SE = Triple Shot Sports W3TE = Pearl Harbor Trilogy - 1941: Red Sun Rising W3TP = Pearl Harbor Trilogy 1941 - Red Sun Rising W42J = Fortune: Hoshi no Furisosogu Oka W44E = Stop Stress: A Day of Fury W44P = Stop Stress: A Day of Fury W48E = ShadowPlay W4AE = Arcade Sports W4AP = Arcade Sports: Air Hockey, Bowling, Pool, Snooker W4KE = Deer Captor W4KJ = Shikagari W4OJ = Shikakui Atama wo Marukusuru Challenge W4TE = Spaceball Revolution W4TP = Spaceball Revolution W54E = 5 Spots Party W54P = 5 Spots Party W5AE = 5 Arcade Gems W5AP = 5 Arcade Gems W5IE = 5 in 1 Solitaire W6BE = Eco Shooter: Plant 530 W6BJ = 530 Eco Shooter W6BP = Eco-Shooter: Plant 530 W72P = Successfully Learning German Year 3 W73P = Lernerfolg Grundschule Deutsch Klasse 4 W74P = Lernerfolg Grundschule Deutsch Klasse 5 W7IP = Lernerfolg Grundschule Deutsch Klasse 2 W82J = Jintori Action Taikokenchi Karakuri Shiro no Nazo W8BP = Babel Rising W8CE = Bit.Trip Core W8CJ = BIT.TRIP CORE: Rhythm Seijin no Gyakushuu W8CP = Bit.Trip Core W8DJ = Mebius Drive W8IJ = Hachi-One Diver Wii W8LE = Balloon Pop Festival W8PJ = Ouchi de Mugen Puchi Puchi Wii W8WE = Happy Holidays: Halloween W8WP = Happy Holidays Halloween W8XE = Battle Poker W9BE = Big Town Shoot Out W9BP = Big Town Shoot W9IE = Evasive Space W9IJ = Kiken Kuuiki W9LE = Christmas Clix W9RE = Happy Holidays: Christmas W9RP = Happy Holidays Christmas W9UE = Cruise Party W9UP = Cruise Party WA2E = Magnetica Twist WA2J = Minna de Puzzloop WA2P = Actionloop Twist WA4E = WarioWare: D.I.Y. Showcase WA4J = WarioWare: D.I.Y. Showcase WA4P = WarioWare: Do It Yourself – Showcase WA5E = Carmen Sandiego Adventures in Math: The Island of Diamonds WA7E = Toribash WA7P = Toribash Violence Perfected WA8E = Art Style: Rotozoa WA8J = Art Style: Penta Tentacles WA8P = Art Style: Penta Tentacles WAAE = Aya and the Cubes of Light WAAP = Aya and the Cubes of Light WABE = Art of Balance WABP = Art of Balance WACE = Arcade Essentials WACP = Arcade Essentials WAEE = Around The World WAEP = Around the world WAFE = Airport Mania: First Flight WAFP = Airport Mania: First Flight WAGE = Pinocchio's Puzzle WAHE = Trenches Generals WAHP = Trenches: Generals WAIE = 101-in-1 Explosive Megamix WAIP = 101-in-1 Explosive Megamix WAJE = MotoHeroz WAJP = MotoHeroz WAKE = Carmen Sandiego Adventures in Math: The Case of the Crumbling Cathedral WALE = Art Style: Light Trax WALJ = Art Style: Lightstream WALP = Art Style: light trax WAME = Carmen Sandiego Adventures in Math: The Great Gateway Grab WANE = Ant Nation WANP = Ant Nation WAOE = The Very Hungry Caterpillar's ABCs WAOJ = Harapeko Aomushi no ABC WAOP = The Very Hungry Caterpillar´s ABC WAQJ = Yakuman Wii: Ide Yousuke no Kenkou Mahjong WARE01 = DU Super Wario Bros. WARJ = Tsuushin Taikyoku Igo Doujou 2700 Mon WASJ = Tsuushin Taikyoku: Hayazashi Syogi Sandan WATE = Astro Bugz Revenge WAUJ = Tsushin Taikyoku: World Chess WAYE = And Yet It Moves WAYP = And Yet It Moves WAZE = The Amazing Brain Train WB2E = Strong Bad Episode 4: Dangeresque 3 WB2P = Strong Bad Episode 4: Dangeresque 3 WB3E = Strong Bad Episode 5: 8-bit is Enough WB3P = Strong Bad Episode 5: 8-bit is Enough WB4E = Wild West Guns WB4J = Wild West Guns WB4P = Wild West Guns WB5E = Block Breaker Deluxe WB5J = Block Breaker Deluxe WB5P = Block Breaker Deluxe WB6E = TV Show King WB6J = TV Show King WB6P = TV Show King WB7E = Midnight Pool WB7J = Hamaru Billiards WB7P = Midnight Pool WB8E = Midnight Bowling WB8J = Hamaru Bowling WB8P = Midnight Bowling WBAJ = Bakutan WBBE = Snowboard Riot WBBJ = Board Warriors WBBP = Snowboard Riot WBDE = Brain Drain WBDP = Brain Drain WBEE = Pong Toss: Frat Party Games WBEP = Beer Pong: Frat Party Games WBFE = Bit.Trip Fate WBFP = Bit.Trip Fate WBGP = Bang Attack WBHE = Blood Beach WBHP = Blood Beach WBIE = Boingz WBJE = Harvest Moon: My Little Shop WBJJ = Bokujou Monogatari Series: Makiba no Omise WBKE = Arkanoid Plus! WBKJ = Arkanoid Plus! WBKP = Arkanoid Plus! WBLE = Bubble Bobble Plus! WBLJ = Bubble Bobble Wii WBLP = Bubble Bobble Plus! WBME = My Pokémon Ranch WBMJ = Minna no Pokémon Bokujou WBMP = My Pokémon Ranch WBNE = Bonsai Barber WBNJ = Bonsai Barber WBNP = Bonsai Barber WBOE = Gravitronix WBPE = PLÄTTCHEN twist 'n' paint WBPP = PLÄTTCHEN - twist 'n' paint WBQE = Star Soldier R WBQJ = Star Soldier R WBQP = Star Soldier R WBRP = Pirates: The Key of Dreams WBSE = Pop WBSJ = Pop WBSP = Pop WBTJ = Fantasic Tambourine WBVE = SPOGS Racing WBVP = SPOGS Racing WBWE = Critter Round-Up WBWJ = Saku Saku Animal Panic WBWP = Critter Round-Up WBXE = Strong Bad Episode 1: Homestar Ruiner WBXP = Strong Bad Episode 1: Homestar Ruiner WBYE = Strong Bad Episode 2: Strong Badia - The Free WBYP = Strong Bad Episode 2: Strong Badia - The Free WBZE = Strong Bad Episode 3: Baddest of the Bands WBZP = Strong Bad Episode 3: Baddest of the Bands WC2E = Crystal Defenders R2 WC2J = Crystal Defenders R2 WC2P = Crystal Defenders R2 WC6E = Chronos Twins DX WC6P = Chronos Twins DX WC8J = Line Attack Heroes WCHE = Chess Challenge! WCHP = Chess Challenge WCIE = Crystal Defenders R1 WCIJ = Crystal Defenders R1 WCIP = Crystal Defenders R1 WCJE = Cocoto Platform Jumper WCJP = Cocoto: Platform Jumper WCKE = chick chick BOOM WCKJ = chick chick BOOM WCKP = chick chick BOOM WCLE = Doc Clock: The Toasted Sandwich of Time WCNJ = Tokyo City Nights WCOE = Cocoto Fishing Master WCOP = Cocoto Fishing Master WCPE = Copter Crisis WCPP = Copter Crisis WCRE = Carnival King WCSE = CueSports: Pool Revolution WCSJ = Cue Sports: Wi-Fi Taisen Billiards WCSP = CueSports: Snooker vs Billiards WCUE = 3-2-1, Rattle Battle! WCUJ = Atsui 12-Game: FuriFuri Party! WCUP = 3-2-1, Rattle Battle! WCVE = Cave Story WCVP = Cave Story WCZE = ColorZ WCZJ = ColorZ WCZP = ColorZ WD2J = Simple Wii Series Vol. 2: The Number Puzzle Neo WD9E = Castlevania The Adventure ReBirth WD9J = Dracula Densetsu ReBirth WD9P = Castlevania: The Adventure ReBirth WDAJ = Darts Wii WDBE = Derby Dogs WDBJ = Dirby Dog WDDE = Diner Dash WDDJ = Diner Dash WDDP = Diner Dash WDEE = Magic Destiny Astrological Games WDEP = Magic Destiny Astrological Games WDFE = Defend your Castle WDFP = Defend your Castle WDHE = Art Style: ROTOHEX WDHJ = Art Style: Dialhex WDHP = Art Style: ROTOHEX WDIJ = Simple Wii Series Vol. 1: The Block Kuzushi Neo WDKE = Dart Rage WDME = Dr. Mario Online RX WDMJ = Dr. Mario & Saikin Bokumetsu WDMP = Dr. Mario & Bazillenjagd WDNJ = Discipline Teikoku no Tanjyou WDOE = Driift Mania WDOP = Driift Mania WDPE = Dr. Mario Online Rx (Friend Battle Demo) WDPJ = Dr. Mario Online Rx (Friend Battle Demo) WDPP = Dr. Mario & Germ Buster (Friend Battle Demo) WDRE = Mr Driller W WDRJ = Mr. Driller World WDRP = Mr. Driller W WDSE = Dragon Master Spell Caster WDSP = Dragon Master Spell Caster WDVE = Voodoo Dice WDVP = Voodoo Dice WDXE = Diatomic WE6E = My Dolphin WE6J = Sea Farm: Iruka to Watashi no Showtime WE9E = Alien Crush Returns WE9J = Alien Crush Returns WE9P = Alien Crush Returns WEDE = Eduardo the Samurai Toaster WEME = Aha! I Got It! Escape Game WEMJ = 1 Nuke! Dasshutsu Game * My Home Hen WEMP = Aha! I Got It! Escape Game WENE = TNT Racers WENP = TNT Racers WEQE = Equilibrio WEQJ = Katamuki Spirits WEQP = Equilibrio WERE = My Aquarium WERJ = Blue Oasis: The Healing Space of Fish WERP = My Aquarium WETE = PictureBook Games: Pop-Up Pursuit WETJ = Asoberu Ehon: Tobida Sugoroku WETP = Bilderbuch-Spiele: Ein Abenteuer zum Aufklappen WEVE = Viral Survival WEVJ = Peakvox Escape Virus WEVP = Viral Survival WF2E = Final Fantasy Crystal Chronicles: My Life as a Darklord WF2J = Final Fantasy Crystal Chronicles: Hikari to Yami no Himegimi to Sekai Seifuku no Tou WF2P = FFCC: My Life as a Darklord WF3E = Family Games - Pen & Paper Edition WF4E = Final Fantasy IV: The After Years WF4J = Final Fantasy IV: The After Years - Tsuki no Kikan WF4P = Final Fantasy IV: The After Years WF5E = Family Card Games WF5J = Okiraku Daifugou Wii WF5P = Family Card Games WF6E = Frobot WFAE = Fast Draw Showdown WFAP = Fast Draw Showdown WFBE = Sandy Beach WFBJ = Beach e Oki o Tsukuccha Wow! WFBP = Sandy Beach WFCE = Final Fantasy Crystal Chronicles: My Life as a King WFCJ = Final Fantasy Crystal Chronicles: Chiisana Ousama to Yakusoku no Kuni WFCP = FFCC: My Life as a King WFDE = Save the Furries WFEE = Fenimore Fillmore "The Westerner" WFFE = Fun! Fun! Minigolf WFFF4I = Fatal Frame 4: Mask of the Lunar Eclipse WFFJ = Fun! Fun! Minigolf WFFP = Fun! Fun! Minigolf WFGE = Frogger Returns WFGJ = Frogger Returns WFGP = Frogger Returns WFHE = Flight Control WFHP = Flight Control WFIE = Reel Fishing Challenge WFIJ = Fish Eyes Challenge WFIP = Reel Fishing Challenge WFKE = Family Go-Kart Racing WFKJ = Okiraku Kart Wii WFLE = Fluidity WFLP = Hydroventure WFME = Family & Friends Party WFMP = Family & Friends Party WFNE = Fish Tank WFNP = Fish Tank WFPJ = Hirameki Card Battle Mekuruca WFQP = Frogger: Hyper Arcade Edition WFSJ = Minna no Theater Wii WFTE = Fish 'em All WFTP = Fish'em All! WFUE = Furry Legends WFUP = Furry Legends WFVE = Soccer Up WFVP = Football Up WFWE = Flower Works WFWP = Flowerworks: Follie's Adventure WFXE = Cosy Fire WFXP = Cosy Fire WFYE = Family Games Pen & Paper Edition WFYP = Family Games Pen & Paper Edition WG2J = Sugar Bunnies Wii: Youkoso * Bunnies Field e WG4E = GhostSlayer WGAE = Ghost Mania WGAP = Ghost Mania WGDE = Gradius Rebirth WGDJ = Gradius Rebirth: Updated WGDP = Gradius Rebirth WGFP = Girlfriends Forever Magic Skate WGGE = Gabrielle's Ghostly Groove: Monster Mix WGGJ = Ushimitsu Monstruo Puchi: Fushigi na Oshiro no Dance Party WGGP = Gabrielle's Ghostly Groove: Monster Mix WGLE = Gene Labs WGMJ = Game SoundStation WGOE = World of Goo WGOJ = World of Goo WGOP = World of Goo WGPE = AquaSpace WGPJ = Aqua Living: TV de Nagameru Uotachi WGPP = Zenquaria Virtuelles Aquarium WGSD = Phoenix Wright: Ace Attorney (Deutsche Version) WGSE = Phoenix Wright: Ace Attorney WGSF = Phoenix Wright: Ace Attorney (French Version) WGSI = Phoenix Wright: Ace Attorney WGSJ = Gyakuten Saiban: Yomigaeru Gyakuten WGSP = Phoenix Wright: Ace Attorney WGTJ = Sekai no Omoshiro Party Game WGUJ = Aero Guitar WGVE = Groovin' Blocks WGYE = Gyrostarr WH3E = Home Sweet Home WH3P = Home Sweet Home WHBE = Hubert the Teddy Bear: Winter Games WHEE = Heracles: Chariot Racing WHEP = Heracles: Chariot Racing WHFE = Heavy Fire: Special Operations WHFP = Heavy Fire: Special Operations WHHJ = Let's Zenryoku Hitchhike!!!!!!!!! WHMP51 = New Super Mario Bros. Wii: The Ultimate Wii-Homebrew.com Edition WHOE = Hockey Allstar Shootout WHPE = Sexy Poker WHPP = Sexy Poker WHRE = Heron Steam Machine WHRP = Heron: Steam Machine WHUE = Ghost Mansion Party WHUJ = Ghost Mansion Party WHUP = Geisterhaus-Partyschreck WHVE = High Voltage: Hot Rod Show WHWE = HoopWorld WHWP = HoopWorld: BasketBrawl WHXE = Helix WHXP = Helix WHYE = Heavy Fire: Black Arms WHZE = Horizon Riders WIBE = bittos+ WICE = NyxQuest Kindred Spirits WICJ = NyxQuest WICP = NyxQuest: Kindred Spirits WIDE = Dracula: Undead Awakening WIDP = Dracula: Undead Awakening WIEE = Tales of Monkey Island: Chapter 3 - Lair of the Leviathan WIEP = Tales of Monkey Island Chapter 3: Lair of the Leviathan WIGE = Incoming WIHE = Play with Birds WIKJ = Ivy the Kiwi? Mini WILE = Tales of Monkey Island: Chapter 1 - Launch of the Screaming Narwhal WILP = Tales of Monkey Island Chapter 1: Launch of the Screaming Narwhal WIMC = WiiMC WINE = The Incredible Maze WINJ = Chokkan! Balance * Labyrinth WINP = Das Verrückte Labyrinth WIRE = Tales of Monkey Island: Chapter 5 - Rise of the Pirate God WIRP = Tales of Monkey Island Chapter 5: Rise Of The Pirate God WISE = Tales of Monkey Island: Chapter 2 - The Seige of Spinner Cay WISP = Tales of Monkey Island Chapter 2: Siege Of Spinner Cay WITE = Aha! I Found It! Hidden Object Game WITJ = Aa! Mitsuketa! Item Sagashi Game WITP = Aha! I Found It! Hidden Object Game WIUE = Inkub WIVE = Space Invaders Get Even WIVJ = Space Invaders Get Even WIVP = Space Invaders Get Even WIYE = Tales of Monkey Island: Chapter 4 - The Trial and Execution of Guybrush Threepwood WIYP = Tales of Monkey Island Chapter 4: The Trial and Execution of Guybrush Threepwood WJ2J = Jinsei Game: Happy Step WJAE = Jam City Rollergirls WJAP = Jam City Rollergirls WJCE = JellyCar 2 WJEE = Jett Rocket WJEP = Jett Rocket WJFE = Gnomz WJFP = Gnomz WJGJ = Jinsei Game WJKE = Jewel Keepers Easter Island WJKP = Jewel Keepers: Easter Island WJPJ = Janken Party Paradise WJSE = Jungle Speed WJSP = Jungle Speed WJWE = Bejeweled 2 WJWP = Bejeweled 2 WK2J = Kappa-kun to Asobou: Kappa-kun to Ota no Shimikai WK3J = Kappa-kun to Asobou: Kappa-kun to Mori no Nakamatachi WK9J = Minna de Asobou Koinu de Kururin WKBE = You, Me, and the Cubes WKBJ = Kimi to Boku to Rittai WKBP = You, Me and the Cubes WKCE = Kyotokei WKCP = Kyotokei WKDE = Pirates: The Key of Dreams WKEJ = RakuRaku Kinen Apori Wii: Kinenka no Isha ga Osheru Nanoka de yameru Houhou WKFE = Kung Fu Funk: Everybody is Kung Fu Fighting! WKFP = Kung Fu Funk - Everybody Is Kung Fu Fighting WKHE = Big Kahuna Party WKIE = The Mystery of Whiterock Castle WKIP = The Mystery of Whiterock Castle WKKE = Party Fun Pirate WKKJ = Kurohige Kiki Ippatsu WKKP = Pop-Up Pirates! WKNJ = Kanken Minna de Waiwai Kanji Nou WKPJ = Kappa Kun to Mori no Nakama Tachi WKQJ = Kentei! TV Wii Minna de Gotouchi Quiz Battle WKRP = Karate Phants: Gloves of Glory WKTE = Contra Rebirth WKTJ = Contra ReBirth WKTP = Contra ReBirth WKUJ = Downtown Nekketsu Dodgeball WKWE = Adventure on Lost Island: Hidden Object Game WKWJ = Item Sagashi * Yousei to Fushigi no Shima WKWP = Adventure on LOST ISLAND: Hidden Object Game WL2E = Target Toss Pro: Lawn Darts WL5E = HB Arcade Disc Golf WL9E = Let's Create! Pottery WLCE = Bingo Party Deluxe WLCJ = Wai Wai Bingo Deluxe WLCP = Bingo Party Deluxe WLDJ = Boku mo Sekai o Sukuitai: Battle Tournament WLEE = Lernen mit den PooYoos: Teil 1 WLEJ = Pooyoo to Asobou Episode 1 WLEP = Lernen mit den PooYoos: Teil 1 WLGE = HB Arcade Cards WLIE = Liight WLJJ = Boku mo Sekai o Sukuitai: Battle Tournament WLKJ = Okiraku Tennis SP WLLE = Little Tournament Over Yonder WLLP = Little Tournament Over Yonder WLME = La-Mulana WLMJ = La Mulana WLMP = La-Mulana WLNE = Lernen mit den PooYoos: Teil 2 WLNP = Lernen mit den PooYoos: Teil 2 WLOE = LostWinds: Winter of the Melodias WLOJ = LostWinds: Winter of the Melodias WLOP = LostWinds: Winter of the Melodias WLPE = Lonpos WLPJ = Lonpos WLPP = Lonpos WLTE = LIT WLTJ = School of Darkness WLTP = LIT WLWE = LostWinds WLWJ = LostWinds WLWP = LostWinds WLXJ = Phalanx WLZE = lilt line WLZP = lilt line WM2E = My Little Baby WM2P = My Little Baby WM3E = Manic Monkey Mayhem WM3P = Manic Monkey Mayhem WM4E = Mix Superstar WM4P = Mix Superstar WM5E = MDK2 WM7E = Anima Ark of Sinners WM7P = Anima Ark of Sinners WM8E = Bomberman Blast WM8J = Wi-Fi 8-Nin Battle Bomberman WM8P = Bomberman Blast WM9E = Happy Hammerin WM9J = Tataite Mogupon WM9P = Happy Hammerin' WMAE = Magnetis WMAP = Magnetis WMBE = MaBoShi's Arcade WMBJ = Katachi no Game: Marubou Shikaku WMBP = MaBoShi: Drei-Formen-Action WMCE = Monsteca Corral: Monsters vs. Robots WMCP = Monsteca Corral - Monsters Vs. Robots WMDE = Madstone WMGE = Mart Racer WMHE = Mouse House WMJE = Dive: The Medes Islands Secret WMJP = Dive - The Medes Islands Secret WMKE = Lead the Meerkats WMKP = Lead the Meerkats WMLE = Major League Eating: The Game WMLJ = Major League Eating: The Game WMME = Muscle March WMMJ = Muscle Koushinkyoku WMMP = Muscle March WMOE = Moki Moki WMOJ = Antaga Mawashite Sukuu Puzzle: Mochimochi Q WMOP = Moki Moki WMRE = Monochrome Racing WMRP = Monochrome Racing WMSE = Enjoy your massage! WMSP = Enjoy your massage! WMWP = Miffy's World WMXE = Max & The Magic Marker WMXJ = Max & the Magic Marker WMXP = Max & the Magic Marker WMZP = Mahjong WN9E = Military Madness: Nectaris WN9J = Nectaris WN9P = Military Madness: Nectaris WNAP = Back to Nature WNEE = Penguins & Friends Hey! That's My Fish! WNEP = Penguins & Friends Hey! That’s my Fish! WNGE = Bang Attack WNKE = Niki - Rock 'n' Ball WNKP = Niki - Rock 'n' Ball WNPJ = Sugusuro Duo: New Pulsar R & V WNSE = Newton Vs The Horde WNVE = Neves Plus WNVJ = Neves Plus WNVP = Neves Plus: Phantheon of Tangrams WNWJ = Hamekomi Lucky Puzzle Wii Return WO6E = Family Pirate Party WO6J = Okiraku Sugoroku Wii WO6P = Family Pirate Party WOAE = Family Glide Hockey WOAJ = Okiraku Air Hockey Wii WOAP = Family Glide Hockey WOBE = Art Style: ORBIENT WOBJ = Art Style: Orbital WOBP = Art Style: ORBIENT WODJ = Ouudaa! WOEJ = Oekaki Logic WOFE = Overflow WOGE = Family Mini Golf WOGJ = Okiraku Putter Golf Wii WOGP = Family Mini Golf WOKE = Karaoke Joysound WOKJ = Karaoke Joysound Wii WOLJ = Othello WOMJ = Sekai no Omoshiro Party Game 2 WOPE = Word Searcher Deluxe WOSE = Family Slot Car Racing WOSJ = Okiraku Slot Car Racing Wii WOSP = Family Slot Car Racing WOTE = Overturn WOTJ = Overturn WOTP = Overturn: Mecha Wars WOXJ = Osu! Exercise Dojo WOYE = Bit Boy!! WOYJ = Bit Man WOYP = Bit Boy!! WOZJ = Kodomo Kyouiku Telebi Wii: Aiue-Oumuzu WP2E = Potpourrii WP2P = Potpourrii WP4E = Learning with the PooYoos: Episode 3 WP4P = Learning with the PooYoos: Episode 3 WP5J = Pokosuka Racing WP6J = Boku wa Plarail Untenshi: Shinkansen Joukikikansha-Hen WP7E = My Planetarium WP7J = Planetarium WP7P = My Starry Night WP9J = Po-Ka-Zu Wii WPAJ = Pokémon Fushigi no Dungeon: Susume! Honoo no Boukendan WPBE = Pub Darts WPBP = Pub Darts WPCE = Doc Louis's Punch-Out!! WPDJ = Chindouchuu!! Pole no Daibouken WPFJ = Pokémon Fushigi no Dungeon: Ikuzo! Arashi no Boukendan WPGE = Snowpack Park WPGJ = Penguin Life WPHJ = Pokémon Fushigi no Dungeon: Mesaze! Hikari no Boukendan WPIE = Pit Crew Panic! WPIJ = Pit Crew Panic WPIP = Pit Crew Panic! WPJE = Pucca's Kisses Game WPJP = Pucca – Mission: Küsse WPKE = Texas Hold'Em Poker WPKP = Texas Hold'Em Poker WPLE = Planet Pachinko WPNJ = Ponjan WPOJ = Popple to Mahou no Crayon WPPE = Family Table Tennis WPPJ = Okiraku Ping Pong WPPP = Family Table Tennis WPQE = Protöthea WPQP = Protöthea WPRE = Art Style: Cubello WPRJ = Art Style: Cubeleo WPRP = Art Style: CUBELLO WPSE = Pokémon Rumble WPSJ = Ransen Pokémon Scramble WPSP = Pokémon Rumble WPTJ = Fantasic Cube WPUE = Bust-A-Move Plus! WPUJ = Puzzle Bobble Wii WPUP = Puzzle Bobble Plus! WPVE = The Tales of Bearsworth Manor: Chaotic Conflicts WPVJ = Kumanage Battle-Hen: Kiina no Kirai na Aoi Hoseki WPVP = The Tales of Bearsworth Manor - Chaotic Conflicts WPWE = Pong Toss Pro - Frat Party Games WPXJ = Minna de Tobikome Penguin Diving Hooper Looper WPYE = Pallurikio WPYP = Pallurikio WPZE = Bruiser & Scratch WQ4J = Kentoushi FuriFuri Boxing WR2E = Rabbids Lab WR2P = Rabbids Lab WR4P = Rush Rush Rally Racing WR5E = Retro City Rampage WR9E = Mega Man 9 WR9J = RockMan 9: Yabou no Fukkatsu! WR9P = Mega Man 9 WRBE = Robocalypse - Beaver Defense WRBP = Robocalypse - Beaver Defense WRDE = Word Searcher WRDP = Word Searcher WREE = Racers' Islands - Crazy Arenas WREP = Racers Islands Crazy Arenas WRFE = Reel Fishing Challenge II WRFP = Reel Fishing Challenge II WRGE = Rage of the Gladiator WRGP = Rage of the Gladiator WRIE = Rainbow Islands: Towering Adventure! WRIJ = Rainbow Islands: Towering Adventure! WRIP = Rainbow Islands: Towering Adventure! WRJE = Racers' Islands - Crazy Racers WRJP = Racers Islands - Crazy Racers WRLE = FAST Racing League WRLP = FAST Racing League WRNJ = BIT.TRIP RUNNER WRPE = Burn the Rope WRQE = Deer Drive Legends WRQP = Deer Drive Legends WRRE = Robin Hood: The Return of Richard WRRP = Robin Hood: The Return Of Richard WRSE = Step Up WRTE = Robox WRUE = BIT.TRIP RUNNER WRUP = Bit.Trip Runner WRXE = Mega Man 10 WRXJ = RockMan 10 WRXP = Mega Man 10 WRYE = Robox WRYP = Robox WS2J = Saikyou Ginsei Igo WS3E = Silver Star: Chess WS3J = Saikyou Ginsei Chess WS4J = Saikyou Ginsei Mahjong WS5J = Saikyou Ginsei Gomoku Narabe WS6E = Silver Star: Reversi WS6J = Saikyou Ginsei Reversi WS7E = Fantasy Slots: Adventure Slots and Games WS8J = Minna de Taisen Puzzle Shanghai WS9E = Sudoku Challenge! WS9P = Sudoku Challenge! WSAE = Onslaught WSAJ = MadSecta WSAP = Onslaught WSBJ = Sorcery Blade WSCJ = Out of Galaxy: Gin no Koshika WSEJ = Princess Ai Monogatari WSGE = Pop 'Em Drop 'Em Samegame WSGJ = Same Game Wii WSGP = Pop Them, Drop Them SAMEGAME WSHE = Stonekeep: Bones of the Ancestors WSIJ = Saikyou Ginsei Shogi WSJE = Spot The Differences! WSJP = Spot the Differences! WSLE = The Magic Obelisk WSLJ = Shadow Walker WSME = Eat! Fat! FIGHT! WSMJ = Tsuppari Oozumou Wii Heya WSMP = Eat! Fat! FIGHT! WSNE = Sonic The Hedgehog 4 Episode I WSNJ = Sonic the Hedgehog 4: Episode I WSNP = Sonic The Hedgehog 4 Episode I WSRE = Space Trek WSSP = Solitaire WSTJ = Tenshi no Solitaire WSUE = Shootanto: Evolutionary Mayhem WSUJ = Shootanto: Kakohen WSUP = Shootanto: Evolutionary Mayhem WSWE = Swords & Soldiers WSWP = Swords & Soldiers WSXE = Stunt Cars WSXP = Stunt Cars WSYE = Snail Mail WSZE = Sneezies WSZP = Sneezies WT2E = Target Toss: Pro Bags WT3E = Tomena Sanner WT3J = Tomena Sanner Wii WT3P = Tomena Sanner WT8J = Hajite! Block Rush WTBJ = Fantasic Tambourine WTDJ = Tomica Drive WTEE = Tales of Elastic Boy: Mission 1 WTEP = Tales of Elastic Boy Mission 1 WTFE = Bit.Trip: Flux WTFP = Bit.Trip Flux WTHJ = Kaku! Ugoku! Tsukamaeru! Sensei Wii WTIE = Tiki Towers WTKE = TV Show King 2 WTKP = TV Show King 2 WTME = Adventure Island: The Beginning WTMJ = Takahashi Meijin no Bouken Jima Wii WTMP = Adventure Island: The Beginning WTNE = Family Tennis WTNJ = Okiraku Tennis Wii WTPE = Tetris Party WTPJ = Tetris Party WTPP = Tetris Party WTRE = Bit.Trip Beat WTRJ = BIT.TRIP BEAT WTRP = Bit.Trip Beat WTTE = Toki Tori WTTP = Toki Tori WTUE = Tumblebugs 2 WTWP = Fenimore Fillmore: The Westerner WTXE = Texas Hold’em Tournament WTXP = Texas Hold’em Tournament WU2P = Successfully Learning Mathematics Year 3 WU3P = Successfully Learning Mathematics Year 4 WU4P = Successfully Learning Mathematics Year 5 WUBE = Ubongo WUBP = Ubongo WUFE = Drop Zone: Under Fire WUHE = Grill-Off with Ultra Hand! WUIP = Successfully Learning Mathematics Year 2 WUKJ = Unou Kids Okigaru Unou Training WUNE = Uno WUNJ = Uno WUNP = Uno WURE = Urbanix WURP = Urbanix WVBE = Bit.Trip: Void WVBJ = BIT.TRIP VOID WVBP = Bit.Trip Void WVCE = V.I.P. Casino: Blackjack WVDJ = Kodomo Kyouiku TV Wii: Aiue-O-Chan WVFE = Bobby Carrot Forever WVFP = Bobby Carrot Forever WVIE = Violin Paradise WVKE = Water Warfare WVKJ = Bang Bang Kids WVKP = Water Warfare WVOE = Rock N' Roll Climber WVOJ = Rock n' Roll Climber WVOP = Rock'n Roll Climber WVQE = Vampire Crystals WVQP = Vampire Crystals WVSE = Gods Vs Humans WVSP = Gods Vs Humans WVUP = Mr Bumblebee Racing Champion WW2P = Where's Wally? Fantastic Journey 2 WW3P = Where's Wally? Fantastic Journey 3 WWAE = Warmen Tactics WWIP = Where's Wally? Fantastic Journey 1 WWLP = The Will of Dr. Frankenstein WWRE = Excitebike World Rally WWRJ = Excitebike: World Race WWRP = Excitebike: World Challenge WWTE = BurgerTime World Tour WWTP = BurgerTime World Tour WWXE = Paper Wars: Cannon Fodder WWXP = Paper Wars Cannon Fodder WXBE = Ben 10: Alien Force - The Rise of Hex WXBP = Ben 10: Alien Force - The Rise of Hex WXME = Xmas Puzzle WXPE = Paint Splash! WXPP = Paint Splash WXRE = Reel Fishing Ocean Challenge WYIE = escapeVektor: Chapter 1 WYIP = escapeVektor: Chapter 1 WYKJ = Yomi Kiku Asobi WYME = Yummy Yummy Cooking Jam WYMP = Yummy Yummy Cooking Jam WYSE = Yard Sale Hidden Treasures: Sunnyville WYSP = Yard Sale Hidden Treasures Sunnyville WZAE = Zombii Attack WZBP = Cricket Challenge WZGE = Zoo Disc Golf WZHE = My Zoo WZHJ = Animal Life: Doubutsu Fureai Seikatsu WZHP = My Zoo WZIE = Rubik's Puzzle Galaxy RUSH WZIP = Rubik's Puzzle Galaxy: RUSH WZJJ = Simple Series Vol. 5: The Judo WZMJ = Simple Wii Series Vol. 3: The Mahjong WZPE = Zombie Panic in Wonderland WZPJ = Zombie in Wonderland WZPP = Zombie Panic in Wonderland WZZE = The Tales of Bearsworth Manor: Puzzling Pages WZZJ = Kumanage Puzzle-Hen: Piina no Suki na Akai Candy WZZP = The Tales of Bearsworth Manor - Puzzling Pages XAAJ = Eggy XABJ = Aleste XADJ = Yie Ar Kung 2 XAEJ = Space Manbow XAFJ = Metal Gear XAGJ = Road Fighter XAHJ = Penguin Adventure: Yume Tairiku Adventure XAIJ = Quarth XAKJ = Parodius - Tako wa Chikyuu wo Sukuu XALJ = Contra XAMJ = Knightmare: Majou Densetsu XANJ = Parodius 2 XAOJ = Gofer no Yabou: Episode II XAPJ = Metal Gear 2: Solid Snake XAQJ = Salamander XBKE52 = Guitar Hero III Custom : Bullet For Kamelot XH2E = Cave Story (Demo) XH2P = Cave Story (Demo) XH3E = Frobot (Demo) XH4E = Max and the Magic Marker (Demo) XH5E = Ayim And Yet It Moves Demo XH6E = Robox (Demo) XH6P = Robox (Demo) XH7E = Lit (Demo) XH7P = Lit (Demo) XH8E = Lead the Meerkats (Demo) XH8P = Lead the Meerkats (Demo) XHAE = Pokemon Rumble (Demo) XHAP = Pokemon Rumble (Demo) XHCE = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHCJ = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHDE = NyxQuest: Kindred Spirits (Demo) XHDP = NyxQuest: Kindred Spirits (Demo) XHEE = BIT.TRIP BEAT (Demo) XHEJ = BIT.TRIP BEAT (Demo) XHEP = BIT.TRIP BEAT (Demo) XHFE = World of Goo (Demo) XHFP = World of Goo (Demo) XHIE = Fluidity (Demo) XHIP = Hydroventure (Demo) XHJE = Thruspace (Demo) XHJP = Thruspace (Demo) XHKE = Dive: The Medes Island Secret (Demo) XHKP = Dive: The Medes Secret Island (Demo) XHLE = Jett Rocket (Demo) XHLP = Jett Rocket (Demo) XHME = Art of Balance (Demo) XHMP = Art of Balance (Demo) XHQE = Zombie Panic (Demo) XHQP = Zombie Panic (Demo) XHRE = Furry Legends (Demo) XHRP = Furry Legends (Demo) XHVE = BIT.TRIP CORE (Demo) XHVP = BIT.TRIP CORE (Demo) XHWE = BIT.TRIP VOID (Demo) XHWP = BIT.TRIP VOID (Demo) XHXE = BIT.TRIP RUNNER (Demo) XHXP = BIT.TRIP RUNNER (Demo) XHZE = Chronos Twins DX (Demo) XHZP = Chronos Twins DX (Demo) XI2E = Kyotokei (Demo) XI2P = Kyotokei (Demo) XI7E = Liight (Demo) XI8E = Jam City (Demo) XI8P = Jam City (Demo) XIAE = Lilt Line (Demo) XIAP = Lilt Line (Demo) XIBE = Fish em All (Demo) XIBP = Fish em All Demo XICE = Gods vs Humans Demo XICP = Gods vs Humans Demo XIDE = Racers Islands Crazy Racers Demo XIDP = Racers Islands Crazy Racers Demo XIEE = chick chick BOOM Demo XIEP = chick chick BOOM Demo XIGE = Urbanix Demo XIGP = Urbanix Demo XIHE = Gladiator Demo XIHP = Gladiator Demo XIJE = Fast Racing League Demo XIJP = Fast Racing League Demo XIKE = Monsteca Corral Demo XIKP = Monsteca Corral Demo XINE = Learning with the Pooyoos Episode 1 Demo XINP = Learning with the Pooyoos Episode 1 Demo XIOE = Learning with the Pooyoos Episode 2 Demo XIOP = Learning with the Pooyoos Episode 2 Demo XIPE = Learning with the Pooyoos Episode 3 Demo XIPP = Learning with the Pooyoos Episode 3 Demo XIQE = Dart Rage Demo XIRE = Pong Toss Pro Demo XISE = BIT.TRIP FLUX Demo XISP = BIT.TRIP FLUX Demo XITE = Fast Draw Demo XITP = Fast Draw Demo XIUE = Soccer Bashi Demo XIUP = Soccer Bashi Demo XIVE = Mix Superstar Demo XIVP = Mix Superstar Demo XIZE = 3D Pixel Racing Demo XIZP = 3D Pixel Racing Demo XJEE = Aya and the Cubes of Light Demo XJEP = Aya and the Cubes of Light Demo XJGE = Gnomz Demo XJGP = Gnomz Demo XJHE = Paint Splash Demo XJIE = 2 Fast 4 Gnomz Demo XJSE = Karaoke Joysound (Demo) XJSP = Karaoke Joysound Wii (Demo) XNWE52 = Guitar Hero III Custom: Nightwish XXXX02 = Mario Kart Teknik ZXFP52 = Guitar Hero 3 Encore wit-2.31a/share/titles-fr.txt0000644000175000017500000110207712655737310015766 0ustar michaelmichael010E01 = Wii Backup Disc v1.31 301E01 = GameCube Service Disc AFRE01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 8. AMEE01 = New Super Mario Bros. Wii 11 American Revolution AMNE01 = Another Super Mario Bros. Wii AMOR04 = Guitar Hero III Custom : HARDcore APRP01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 2. APRP02 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 3. APRP03 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 6. APRP04 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 7. APRP06 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 5. APRP08 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 1. ASMB01 = Another Super Mario Bros. Wii BEPS01 = Guitar Hero III Custom : Rock n' Metal BOWE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh C3BE52 = Guitar Hero III Custom : Bossenator C3FP52 = Guitar Hero III Custom : Fonx #1 C3KE52 = Guitar Hero III Custom : Kyle Edition #1 C3ME52 = Guitar Hero III Custom : Modern Rock C3PP52 = Guitar Hero III Custom : Modern Pop & Rock C80E52 = Guitar Hero III Custom : Rocks the 80's C80P52 = Guitar Hero III Custom: GH I & 80's C93E = Last Ninja 2 C93P = The Last Ninja 2 C94E = Tower Toppler C94P = Nebulus C95P = Impossible Mission C96E = Summer Games II C96P = Summer Games 2 C97E = California Games C97P = California Games C98P = Paradroid C99P = Uridium C9EP = Winter Games C9GP = Mayhem in Monsterland C9HE = Boulder Dash C9HP = Boulder Dash C9IE = Cybernoid C9IP = Cybernoid C9ME = Pitstop II C9MJ = Pitstop Two C9MP = Pitstop II C9PP = The Last Ninja 3 C9QP = Jumpman C9RP = International Karate + C9SP = Impossible Mission II C9XE = The Last Ninja C9XJ = The Last Ninja C9XP = The Last Ninja C9YE = International Karate C9YJ = International Karate C9YP = International Karate C9ZP = World Games CANE52 = Guitar Hero Custom: NOT Aerosmith but... CCPE01 = Mario Kart Wii Custom: The Master Race CEMU69 = PunEmu CFEE52 = Guitar Hero III Custom : Michael Jackson CG1E52 = Guitar Hero III Custom : Guitar Hero CG1P52 = Guitar Hero III Custom: Guitar Hero I CG2E52 = Guitar Hero III Custom: Guitar Hero II CG2EFL = Guitar Hero III Custom : GH II CG2P52 = Guitar Hero III Custom : Guitar Hero II CG3ECS = Guitar Hero III Custom : ClasSick Edition CG3PCS = Guitar Hero III Custom : ClasSick Edition CGBE52 = Guitar Hero III Custom: Rock Band CGBP52 = Guitar Hero III Custom : Rock Band CGH370 = Guitar Hero III Custom : 70 New Song CGH3IM = Guitar Hero III Custom : Iron Maiden CGH3LM = Guitar Hero III Custom : Legend of Music CGH3ME = Guitar Hero III Custom : Metallica CGH3NE = Guitar Hero III Custom : Nostalgia Edition CGH3WD = Guitar Hero III Custom: WD Custom CGHCE1 = Guitar Hero III Custom : Edition Custom CGHE87 = Guitar Hero III Custom : Guitar Hero I CGHE88 = Guitar Hero III Custom : Guitar Hero II CGHE89 = GH3: Mario CGHE90 = GH3: South Park Edition CGHE91 = GH3: The Red Album CGHE92 = GH3: The Blue Album CGHE93 = GH3: Shake Rattle and Roll CGHE94 = Guitar Hero III Custom : Mars Needs Guitars CGHE95 = Guitar Hero III Custom : Rock Band CGHE96 = Guitar Hero III Custom: Rock'n'Roll Metal CGHE97 = GH3: I Fought The Law CGHE98 = GH3: Sweet Home Alabama CGHE99 = Guitar Hero III Custom : Rock The 80's CGHECB = Guitar Hero III Custom : CBT Edition CGHEDC = Guitar Hero III Custom : Downloadable Content Edition CGHEDM = Guitar Hero III Custom : DAVEMODE CGHEMC = Guitar Hero III Custom : My Chemical Romance CGHENC = Guitar Hero III Custom : NCustom CGHEPH = Guitar Hero III Custom : Puppetz Hero 2 CGHER2 = Guitar Hero III Custom : Rock Band 2 CGHERF = Guitar Hero III Custom : Rockfest 2010 CGHJ52 = Guitar Hero III Custom : Jumapa CGHKY2 = Guitar Hero III Custom : Kyle Edition #2 CGHPF2 = Guitar Hero III Custom : Fonx #2 CGHPF3 = Guitar Hero III Custom : Fonx #3 CGHPF4 = Guitar Hero III Custom : Fonx #4 CGHPF5 = Guitar Hero III Custom : Fonx #5 CGHPNT = Guitar Hero III Custom : Ntorrents Edition CGHRH2 = Guitar Hero III Custom : Rocks Hits Custom v2 CGHSKV = Guitar Hero III Custom : Starchildren & Kneos Version CGIE52 = Guitar Hero III Custom : Iron Maiden CGSP52 = Guitar Hero III Custom : Spanisk Custom by KuXu CGVECD = Guitar Hero Aerosmith Custom : AC/DC Edition CGVEM2 = Guitar Hero Aerosmith Custom : Mini Concerts Edition 2 CGVEMC = Guitar Hero Aerosmith Custom : Mini Concerts Edition CGVEUV = Guitar Hero Aerosmith Custom : Ultimate Video Game Hero CKBE88 = Mario Kart Wii Black CLAPSI = Sing IT: Clásicos CMDE52 = Guitar Hero III Custom: Megadeth CMKE01 = Mario Kart Wii Dragon Road CS0P00 = StarSing : Bollywood v2.0 CS0PZZ = StarSing : Pop Part. I v2.0 CS1P00 = StarSing : Country v2.0 CS1PZZ = StarSing : Pop Part. II v2.0 CS2P00 = StarSing : Placebo v2.0 CS2PZZ = StarSing : '80s Volume 1 v2.0 CS3P00 = StarSing : Volume 1 v2.0 CS3PZZ = StarSing : Anthems v2.0 CS4P00 = StarSing : NRJ Music Tour v2.0 CS4PZZ = StarSing : Legends v2.0 CS5P00 = StarSing : '70s v2.1 CS5PZZ = StarSing : Songs For My Jedi v1.0 CS6P00 = StarSing : Douce France v2.0 CS6PZZ = StarSing : Amped Part. I v2.0 CS7P00 = StarSing : Red Hot Chili Peppers v1.0 CS7PZZ = StarSing : Amped Part. II v2.0 CS8P00 = StarSing : '90s Volume 1 v2.0 CS8PZZ = StarSing : Disco-Funk v1.0 CS9P00 = StarSing : '80s Volume 2 v2.1 CS9PZZ = StarSing : Pop Hits 9 v1.0 CSAP00 = StarSing : '80s Volume 3 v2.1 CSAPZZ = StarSing : Best of Goldman v1.0 CSBP00 = StarSing : '90s Volume 2 v2.1 CSCP00 = StarSing : Michael Jackson v2.2 CSCPZZ = StarSing : Hottest Hits v2.0 CSDP00 = StarSing : Rocks! Volume 2 v2.0 CSDPZZ = StarSing : Boy Bands Vs. Girl Bands v2.0 CSEP00 = StarSing : Pop Hits 5 v1.3 CSFP00 = StarSing : Pop Hits 6 v1.3 CSGP00 = StarSing : Chansons Magiques de Disney v1.4 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = StarSing : Pop Hits 7 v1.3 CSJP00 = StarSing : Après-Ski Party v1.2 CSKP00 = StarSing : ABBA v1.1 CSLP00 = StarSing : Queen v2.0 CSMP00 = StarSing : Electro-Dancefloor Volume 1 v2.0 CSNP00 = StarSing : Electro-Dancefloor Volume 2 v2.0 CSOP00 = StarSing : Electro-Dancefloor Volume 3 v2.0 CSPP00 = StarSing : Linkin Park Live at Webster Hall New York v2.0 CSQP00 = StarSing : Muse v2.0 CSRP00 = StarSing : International Volume 3 v1.0 CSSP00 = StarSing : Après-Ski Party 2 v2.0 CSTP00 = StarSing : Depeche Mode v2.0 CSUP00 = StarSing : Pop Hits 8 v1.3 CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = StarSing : Génériques TV v2.0 CSYP00 = StarSing : Electro-Dancefloor Volume 4 v2.0 CSZP00 = StarSing : Glee Volume 1 v2.1 CT0P00 = StarSing : Pop Part. I v2.1 CT1P00 = StarSing : Pop Part. II v2.1 CT2P00 = StarSing : '80s Volume 1 v2.1 CT3P00 = StarSing : Anthems v2.1 CT4P00 = StarSing : Legends v2.1 CT5P00 = StarSing : Songs For My Jedi v2.0 CT6P00 = StarSing : Amped Part. I v2.1 CT7P00 = StarSing : Amped Part. II v2.1 CT8P00 = StarSing : Disco-Funk v2.0 CT9P00 = StarSing : Pop Hits 9 v1.3 CTAP00 = StarSing : Best of Goldman v2.0 CTBP00 = StarSing : Glee Volume 3 v1.0 CTCP00 = StarSing : Hottest Hits v2.0 CTDP00 = StarSing : Boy Bands Vs. Girl Bands v2.1 CTEP00 = StarSing : R&B v2.0 CTFP00 = StarSing : Rock Ballads v2.0 CTGP00 = StarSing : Take That v2.0 CTHP00 = StarSing : Summer Party v2.0 CTIP00 = StarSing : Rocks! Part. I v2.0 CTJP00 = StarSing : Rocks! Part. II v2.0 CTKP00 = StarSing : Pop Hits v2.0 CTLP00 = StarSing : Britney Spears v2.0 CTMP00 = StarSing : Shakira v1.1 CTNP00 = StarSing : Pop Hits 10 v1.3 CTOP00 = StarSing : The Beatles Volume 2 v2.0 CTPP00 = StarSing : Motown v2.0 CTQP00 = StarSing : Glee Volume 2 v1.0 CTRP00 = StarSing : International Volume 1 v1.0 CTSP00 = StarSing : International Volume 2 v1.0 CTTP00 = StarSing : '80s Volume 4 v1.0 CTUP00 = StarSing : Rihanna v1.0 CTVP00 = StarSing : Lady GaGa v1.0 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CVLE38 = Mario Kart: Victory Lane D01A = Wiimmfi Patcher D02A = Engine02 D03A = BrainSlug Wii D05A = Bash the Castle D06A = Bit Streamer D07A = BlisterBall D08A = Blob Wars: Metal Blob Solid D09A = Blobby Volley 2 Wii D0AA = MPlayer Wii Youtube D0BA = MPlayer Wii D0CA = Ocarina D0DA = MPlayer Dvdlib Edition D0EA = MPlayer Wii By Rodries D0FA = Signcheck D0GA = GCBoot D0HA = Memview D0IA = IOS Check D0JA = Open Sram Lang Modifier D0KA = WiiBServer D0LA = LibWiiGameLoad D0MA = Wiireader D0NA = lsusb D0OA = Move The Pussy Demo D0PA = Wiilax Minitro D0QA = Fission Engine Project D0RA = GRRLIB 4.0 Demo D0SA = OSDM-BAR D0TA = Homebrew Menu Demo D0UA = LibMii Example D0VA = The Scary Demo D0WA = Starfield Demo D0XA = Wire3D Demo D0YA = Something D0ZA = GRRLIB 4.3.0 Promote Intro D10A = cIOSFix D11A = ASCII Pong D12A = BuscaWiinas D13A = C-Dogs SDL D14A = Castles of Dr. Creep D15A = Wii Shop and IOS51 Installer D16A = Centipede D17A = Cobra Arcade D18A = Dump Espresso OTP D1LA = Blind D1PA = 1bit Invaders D1RA = MinimaLauncher D21A = Xroar D22A = cIOS222 installer D24A = 24 Points D26A = Wii2600 D29J01 = Monthly Nintendo Shop Demo May 2002 D2AA = Wii Deadly Cobra D2AJAF = Minna de Bouken! Family Trainer (Demo) D2BA = Jump N Bump D2CA = Wiiflow Advanced D2DA = Box2D Balls D2EA = Wiiflow Start Configurator D2GA = Wadinstallerbatch D2QA = Sqrxz 2 D2SE18 = Deca Sports 2 (Demo) D2ZA = Console Shooter D32J01 = Monthly Nintendo Shop Demo June 2002 D33A = Time Frack 2D D33J01 = Monthly Nintendo Shop Demo July 2002 D34J01 = Monthly Nintendo Shop Demo July 2002 D36A = cIOS36 installer D37A = WiiConnect D38A = cIOS38 installer D38J01 = Monthly Nintendo Shop Demo September 2002 D39A = Ctr Gts DacoTaco Edition D3DA = Time Frack 3D D3DE18 = Deca Sports 3 (Demo) D3JA = NDSLoad D3KA = Button Tester D3LA = BootMii Booter D3MA = Custom NAND Loader D3OA = cIOS USB 2 Installer D3QA = Sqrxz 3 D3WA = Warheads D40A = Luigi and the Island of Mystery D42A = ArianeB D43A = Wii Virtual Jaguar D43E01 = The Legend of Zelda: Ocarina of Time / Master Quest D43J01 = Zelda no Densetsu: Toki no Ocarina GC / Ura Zelda D43P01 = The Legend of Zelda: Ocarina of Time / Master Quest D43U01 = The Legend of Zelda: Ocarina of Time (Bonus Disc) D43W01 = The Legend of Zelda: Ocarina of Time / Master Quest D46A = Newo Escape D4BE08 = Resident Evil 4: Preview Disc D4BP01 = Resident Evil 4: Bonus Disc D4BP08 = Resident Evil Four Preview Disc D4BU01 = Resident Evil 4: Bonus Disc D4KA = Aleph WOne D4LA = Yawnd D4NA = Disc Dumper D4PA = DVD Dumper D4QA = Sqrxz 4 D4SA = USB Loader GUI FX D51A = IOS51 Update D52A = cboot252 D53J01 = Monthly Nintendo Shop Demo May 2003 D54A = cIOS Patchmii Installer D55A = PID Extractor D55J01 = Interactive Disc Catalog Summer 2003 D56A = Shopping Channel Fixer D56E01 = Interactive Multi-Game Demo Disc - Version 35 D56J01 = Pokémon Channel (Bonus Disc) D57A = Hijill GUI D57E01 = Interactive Multi-Game Demo Disc - Version 34 D58A = Priiloader HacksDen Edition D58E01 = Interactive Multi-Game Demo Disc - Version 33 D59A = TheUntitledProject D59E01 = Interactive Multi Game Demo Disc Version 32 D5AA = Alarmii D5BA = WiiFont D5CA = cLoader D5FA = Txted Mod D5HA = Title Lister D5JA = Tidy Up D5LA = Switchtosneek D5RA = Botoning D60A = Ultimate USB Loader D61A = Sand Traps Extra Levels D62A = Newo Puzzle D62E01 = Interactive Multi-Game Demo Disc - Version 31 D63A = 3D Maze D63E01 = Interactive Multi-Game Demo Disc - Version 30 D64A = Wii64 Emulator D64E01 = Interactive Multi-Game Demo Disc - Version 29 D65A = Transitory Vectors D65E01 = Interactive Multi Game Demo Disc Version 28 D65P01 = Interactive Multi-Game Demo Disc - December 2002 D66A = Secret Maryo Chronicles D66E01 = Interactive Multi-Game Demo Disc - Version 27 D67E01 = Interactive Multi-Game Demo Disc - Version 26 D67J01 = Monthly Nintendo Shop Demo December 2003 D68A = TheyDoNotDie2 D68E01 = Interactive Multi-Game Demo Disc - Version 25 D68J01 = Monthly Nintendo Shop Demo January 2004 D69A = IOS60 Installer D69E01 = Interactive Multi-Game Demo Disc - Version 24 D6AA = Pussieloader D6BA = Updatersafe D6DA = Savegame Manager Mod D6EA = Sneek FS Dumper D6FA = Anytitle Deleter Mod D6HA = AnyTitle Deleter Mod DB D6IA = DVD Info D6KA = AnyTitle Deleter DB D6MA = Banana Saves D6OA = DOP Shop D6QA = BootMii Checker D6TA = MiiPlayer D70A = Dungeon Crawl Stone Soup D71A = Panic in the Mushroom Kingdom D72A = Bfi D72E01 = Interactive Multi-Game Demo Disc - Version 23 D73E01 = Interactive Multi-Game Demo Disc - Version 22 D74E01 = Interactive Multi Game Demo Disc Version 21 D75E01 = Interactive Multi-Game Demo Disc - Version 20 D76E01 = Interactive Multi-Game Demo Disc - Version 19 D77E01 = Interactive Multi-Game Demo Disc - Version 18 D77P01 = Interactive Multi Game Demo Disc April 2006 D78A = Wii7800 D78E01 = Interactive Multi-Game Demo Disc - Version 17 D78J01 = Interactive Multi-Game Demo Disc - May 2004 D78P01 = Interactive Multi-Game Demo Disc - October 2005 D79A = Newo Defence D79E01 = Interactive Multi-Game Demo Disc - Version 16 D79P01 = Interactive Multi Game Demo Disc May 2005 D7AA = Action Replay Loader D7DA = Depanbrew D7GA = Channel Loader D7KA = RawkSD D7LA = Rumbler D7MA = IS Wad D7OA = Recovery Manager D7QA = Reboot D7SA = Childproof USB Loader D7TA = Power Mii Off D7VA = Power Off D7WA = Abbaye des Morts D7XA = NuGaSa D7YA = Resistor D81A = Newo Asteroids D82A = cIOS Patchmii Installer with Korean Disc Support D82E01 = Interactive Multi-Game Demo Disc - Version 15 D82J01 = Monthly Nintendo Shop Demo July 2004 D82P01 = Interactive Multi Game Demo Disc April 2005 D83A = Wii MFE Port D83E01 = Interactive Multi-Game Demo Disc - Version 14 D83P01 = Interactive Multi Game Demo Disc February 2005 D84A = Gambol D84E01 = Interactive Multi-Game Demo Disc - Version 13 D84P01 = Interactive Multi-Game Demo Disc - November 2004 D85A = Wii EDuke32 D85E01 = Interactive Multi-Game Demo Disc - Version 12 D85P01 = Interactive Multi Game Demo Disc July 2004 D86A = Firewii D86E01 = Interactive Multi-Game Demo Disc - Version 11 D86P01 = Interactive Multi-Game Demo Disc - May 2004 D87A = Tick Tock Boat Race D87E01 = Gamecube Preview Disc D87P01 = Interactive Multi-Game Demo Disc - March 2004 D88A = Quasi88 D88E01 = Interactive Multi-Game Demo Disc - Version 10 D88P01 = Interactive Multi-Game Demo Disc - November 2003 D89A = Wiimote Led Flasher D89E01 = Interactive Multi-Game Demo Disc - Version 9 D89J01 = Club Nintendo Original e-Catalog 2004 D89P01 = Interactive Multi-Game Demo Disc - September 2003 D8AA = Front SD ELF Loader D8BA = GameCube Homebrew Launcher D8CA = WiiSend D8DA = Menu D8EA = Gecko Loader D8FA = Shell D8JA = Calc D8QA = Brick OS D8RA = Lotto D8SA = Brainf**k D8UA = TCPLoader D8VA = Snort48 D8WA = Wiisixty D8XA = All In One Emuloader D8YA = Swissloader D8ZA = Tick Tock Zombie Shooter D91A = Jenny Thinks D92E01 = Interactive Multi-Game Demo Disc - Version 8 D92P01 = Interactive Multi Game Demo Disc June 2003 D93A = Wiiraytracer D93E01 = Interactive Multi-Game Demo Disc - Version 7 D93P01 = Interactive Multi Game Demo Disc April 2003 D94A = Nowhere D94P01 = Interactive Multi-Game Demo Disc - February 2003 D95A = RenderMii D95P01 = Interactive Multi-Game Demo Disc - December 2002 D96A = WiiMotionDemo D96P01 = Interactive Multi-Game Demo Disc - November 2002 D97A = Fire D98A = InstallMii D99A = System Channels Updater D9BA = Info D9CA = cIOS USB2 Installer D9FA = Dump D9GA = Wad Creator D9HA = WakeMiiUp D9IA = SNES9xGX Channel Installer D9KA = Txtread D9LA = Forwarder DA1A = Radianwars DA2A = Moonstone DA3A = Wiitch DA4A = arCard+Wii DA6A = Automatii DA7A = Astronomy DA8A = Beer Belly Bill 3 Grillieren DA9A = Achtung Wii Kurve DAAA = WiiNetPuzzle DAHA = Accio Hacks DALJ01 = Dairantou Smash Brothers DX (Demo) DAMA = MegaCodeDownloader DAPA = Map Maker DARA = Anyregion Changer DASA = Aspirin DASE4Q = Disney Epic Mickey (Demo) DATA = AnyTitle Deleter DATD = AnyTitle Deleter DAUEPZ = Country Dance (Demo) DAVA = Avoidance DAVE01 = Mystery Case Files: The Malgrave Incident (Demo) DAWA = Abuse Wii DAXE01 = The Legend of Zelda: Skyward Sword (Demo) DAXP01 = The Legend of Zelda: Skyward Sword (Demo) DB0A = Spitits DB2A = Mad Bomber DB3A = Squarez DB5A = mapbf DB7A = Blacks Dash DB9A = Robi DBAA = BowFishing Action DBBA = Balance Board Tools DBBE18 = Beyblade: Metal Fusion - Battle Fortress (Demo) DBCA = BootMii Configuration Editor DBDA = Bluedump DBGA = BlastGuy DBIA = Boot It DBKE69 = Boom Blox (Demo) DBKP69 = Boom Blox (Demo) DBLA = BlueMSX-wii DBMA = BootIOS DBPA = Balance Board Pro DBRA = WiiBrowser DBSA = BrawlStats DBTA = Bolt Thrower DBUA = Buttoncast DBWA = Reversmii DBXA = Biniax 2 DBZJ08 = Biohazard Zero: Trial Edition DC6A = Frodo (C64-network.org) DC7A = Calculate DCAA = Wiicasino DCAE18 = Calling (Demo) DCBA = CascadeBeneath DCCA = Christmascountdown DCDA = cIOS Downgrader DCEA = Cheat Manager DCFA = Coverfloader DCGA = Ctr-Gcs DCHA = Wiichatter DCHEAF = We Cheer (Demo) DCHJAF = We Cheer: Ohasta Produce ! Gentei Collabo Game Disc DCIA = cIOS Installer DCLA = Configurable USB Loader DCMA = Wiicm DCNA = Nandclean DCOA = Connectmii DCPA = Splatter Castle DCRA = CosmoRaketti DCSA = Cert.sys Extractor DCTA = Christmas-Type Adventure Time DCUA = cIOS Uninstaller DCVA = WiiColEm DCWA = WiiMC Channel Installer DCXA = ComixChannel DCYA = Cylinder Dodge DD2A = Double Dash Wii DD2P41 = Just Dance 2 (Demo) DD3A = Dario DD5A = Dcvg5k DD9A = Dungeons DDAA = Darkcorp DDBA = DOSBox Wii DDCA = d2x cIOS Installer DDDA = Disk Drive Lighter DDEA = WiiModder DDFA = Defendguin DDHA = Homebrew Disc Launcher DDIA = DiiLC DDLA = Disc Loader DDMA = DragonMedia Player DDOA = DOP-Mii DDRA = Wii Duplicated Channel Remover DDSA = DeSmuME DDVA = Devolution DDWA = DOP Mii Wiibrew Edition DDWE18 = Lost in Shadow - Press Disc (Demo) DDWX18 = Lost In Shadow - Best Buy (Demo) DE2A = Doubledown DE5A = Pictogrid DE7A = Commander Keen DE9A = Wii Bash DEAA = Headtracking Demo DEBA = Pong Breaker DEDA = Txted DEEA = Eeeek Eeeeek Hooooook DEFA = Fuse DEHA = Chess DEME = PunEmu DEPA = Pacman DERA = Elongated Reptile DETA = MPlayer TT DEWA = Wii Exhibit DEZP8P = Billy Hatcher and the Giant Egg (Demo) DF0A = Mini FSToolbox DF2A = Da ShAmAn DF3A = Briickout DF4A = Star Catching DF5A = Strobe Alarm Clock DF6A = Wii Quizz DF7A = Chatnoir DF8A = Trinary DF9A = Chunk Munch DFBA = Fsbrowser DFEA = FlipEm DFFA = Simple fs dumper DFGA = Smashing! DFIA = Fceugx Channel Installer DFLA = Starfall DFMA = FMyLife DFRA = FridgeMagnets DFSA = Fstoolbox DFTA = FTPii DFUA = Fuse DG3A = Giddy 3 DG7A = WiiPeng DG8A = Abusimbel Deluxe DG9A = Garnatron DGBA = Geexbox DGCA = GameCube Backup Launcher DGEA = GeckoOS DGFA = Guitars On Fire DGGA = Wii Rick Dangerous DGIA = Gravitii DGKA = ProjectGMC DGMA = GCMM DGPA = Genesis Plus DGSA = Shooting Gallery DGWA = Goodbye World DGXA = GxGeo DH7A = Harmony's Nightmare DH9A = Prophecy DHBA = Homebrew Browser DHCA = Hero City DHDA = Hidtest DHEA = Helium Boy DHFA = Homebrew Filter DHGA = HuGo-GX DHHA = HHexen DHHJ8J = Hirano Aya Premium Movie Disc from Suzumiya Haruhi no Gekidou DHIA = HackMii Installer DHKE18 = Help Wanted: 50 Wacky Jobs (Demo) DHLA = Heli DHMA = CharioMan DHSA = Homebrew Sorter DHTA = Hatari DHWA = We are nowhere DHXA = Hex DI5A = Tanks DI7A = ExistenzE DI8A = Ios58 Installer DI9A = Barrage DIBA = Revolt of the Binary Couriers DICA = Cubic DIEA = EasyIOS DIGA = Categorii DIIA = iiii DIMA = Inspectmii DINA = Mii Installer DIRA = Ironing Maiden DISA = Wii Supersonic DITA = IOS236 Installer DIXA = cIOSx installer DIYP01 = New Super Mario Bros. Wii 0-4 D.I.Y. DJAA = Arcade Jigsaw DJCA = Wii JellyCar DJFA = Joyflow DJJA = Jumping Jack DJQA = Jewel Quest DJWA = Wii System Menu DJZA = JzintvWii DK1A = Karaokii DK3A = Sketch Fight DK4A = Drawingbox DK6A = King of Fighters: Flames of Courage DK6E18 = Marble Saga Kororinpa (Demo) DK6J18 = Kororinpa 2 (Demo) DK7A = Uschtris DKBA = RPG Baker DKCA = Tick Tock Car Race DKCP01 = Darky Kart Riivo DKDA = Darkcube DKHA = Katakana and Hiragana Practice DKKA = Koreankii DKOA = Komopong DKPA = Kidspaint DKSA = Wii Stpp DKTA = Taiko DKWA = Kurushi DKWE01 = Darky Kart Wii Vol. 1 DKWE02 = Darky Kart Wii Vol. 2 DKWE03 = Darky Kart Wii Vol. 3 DKWE04 = Darky Kart Wii Vol. 4 DL3A = Ballion DL4A = LPairs DL5A = Gameload DL7A = LabClone DLBA = My Little Ball DLCA = Dance Clone DLDA = Devilock DLEA = Preloader DLFA = LifeMii DLGA = Gravity Glider DLIA = WiiMod Lite DLLA = Lolicopocalypse DLMA = LoadMii DLNA = Lander DLOA = Lightsout DLPA = Lopan DLSE64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLSP64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLTA = Leveltool DLUA = WiiLauncher DLXA = Linux Installer DLZEPW = Super Smash Bros Phoenix Wings DM0A = Pom DM5A = Missle Command DM7A = Matches DM9A = Checkregion DMAA = Mame Wii DMBA = Multiboot DMCA = Cleanrip mod DMDA = WiiMod DMEA = Mii Extractor DMFA = WiiMednafen DMGA = Mighty Channels DMHA = NanoMechas DMHE08 = Monster Hunter Tri (Demo) DMHJ08 = Monster Hunter Tri (Demo) DMIA = DIOS MIOS Booter DMJA = Mahjongg Wii DMKE01 = Mario Kart Wii 2 DMLA = Mighty Loader DMMA = MyMenuify DMNA = Magic Number DMOA = cMIOS installer DMPA = MPlayer CE DMRA = MIOS Patcher DMSA = ShutMiiReboot DMSP4Q = SingItStar: Best of Disney DMTA = Metronome DMUA = Multi Mod Manager DMWA = Wakemiiup DN0A = Thatother DN7A = Alien Breed DN9A = Point and No Click DNAA = Ncard DNCA = NeoCD-Wii DNDA = Nintendont DNEA = Gravity DNGA = NeoGamma Launcher DNHA = Headings DNIA = Bugin DNKA = Neko Project II DNMA = Newo Model Viewer DNNA = Save installer DNOA = O.T.T.F. DNPA = NeoPopWii DNRA = Newo Runner DNSA = Newo Shooter DNTA = NeoTanks DNUEDA = Naruto Clash of Ninja 2 (Demo) DNWA = Nowell DO2A = O2EM DO3A = Three Point O DO4A = MTP DO5A = Planet Hively DO6A = Mini MP3 Player DOCA = Code Downloader DOEA = ShowTest DOGA = Wii Maze of Galious DOHA = HighOctane DOIA = Neogamma IOS Switcher DOMA = Mole DONA = Offline Network Enabler DOOA = Doom DOPA = PowerCheck DORA = Rebooter DOTA = OpenTTD DP0A = Starplit DP1A = Italian Parking DP2A = Pong2 DP3A = Inkpoly DP4A = Piirates DP5A = Pix DP6A = IOS36 patcher DP7A = Brawl+ Updatifier DP8A = Timeless DP9A = Alien Puzzle Wii DPAA = WiiPaintBall DPBA = Priibootergui DPCA = Cherophobe DPEA = PieChart DPFA = Pwiictogrid DPGA = Pingus DPIA = Patched IOS 80 Installer for vWii DPIE18 = Oops! Prank Party (Demo) DPJA = Project M Launcher DPKA = Physco DPLA = Priiloader DPMA = Music Painter DPNA = RPG Pineapple Apocalypse DPNP08 = P.N.03 (Promo) DPOA = Postloader DPPA = Project Panic DPRA = PlasmaRaketti DPSA = Playstats DPTA = Two Point Five DPVA = Pattview DPWA = Pimp my Wii DQ1A = Q1rev DQ2A = Q2rev DQ6A = Light DQ7A = Quake DQ8A = LuaFWii DQ9A = Wiihttpd DQAJK2 = Aquarius Baseball DQAJSC = Aquarius Baseball (Simplified Chinese Translation) DQBA = Bible Quiz DQCA = Q2ctfrev DQGP69 = MySims Racing (Demo) DQRA = Qrevpak DQWA = Quakegx DR0A = Rokoban DR1A = Wii Whiteboard DR3A = Death Star Run DR4A = Rock Paper Scissors DR5A = Briicks DR6A = Reader DR7A = RockBlueMet DR8A = Operation DR9A = PixelPlot DRAA = RetroArch-Wii DRBA = Rock Band 2 Wad Installer DRCA = Wiicross DRDA = Drawmii DREA = Wiirecipe DRFA = Radiofeeds DRGA = Reggie Dumper DRIA = Cleanrip DRKA = Robotfindskitten DRMA = Mr. Sitwell DRME18 = Rooms: The Main Building (Demo) DROA = SlimeRoll DRP22Q = SingItStar Deutsch Rock-Pop Vol. 2 DRPA = Marcos Lopez Part II DRRA = Riiper DRSA = RedSquare DRTA = Tetris Custom DRUA = Radiofeeds Updater DRVA = Residualvm DRWA = Winterman DRZA = Zerace DS0A = ShootMii DS1A = Another Rock Paper Scissors DS2A = Swingball2 DS3A = Senet DS4A = Sar DS5A = Snaketwo DS6A = Scogger DS7A = Swing Ball DS8A = Scape DS9A = Minesweeper DSAA = Schism Tracker DSBA = SpaceBubble DSCA = Softchip DSDA = Superdump DSEA = Settings Editor GUI DSFA = Sciifii DSFE7U = Muramasa: The Demon Blade (Demo) DSGA = Savegame Manager DSHA = SysCheck HacksDen Edition DSIA = Simple IOS Patcher DSKA = SockDreams DSLA = Wii Stella DSMA = Sega Master System Plus DSNA = SNES9xGX DSOA = Bermuda Syndrome Wii DSPA = Super Star Shooter DSQA = Sqrxz DSRA = Wiistrobe DSRJ8P = Sonic and the Secret Rings (Demo) DSSA = RSSMii DSTA = Wii Solitaire DSUA = Super Mario War DSVA = scummVM DSWA = SuperTux Wii DSXA = Super Pixel Jumper DSYA = Syscheck DT0A = Tower Defense DT1A = Turnip DT2A = Matching Cards DT3A = Bichejos DT4A = Soduku DT5A = Poker DT6A = Simon DT7A = TheyDoNotDie DTAA = Wii Tac Toe DTCA = The Catachthonic DTDA = Descent DTEA = Topedit DTFA = Triiforce DTHA = Heretic DTIA = Wiitriis DTJA = Trojan DTKA = Tick Tock Tank Fight DTLA = TailTale DTLX01 = Action Replay DTMA = Tetrominos DTNA = Tunnel DTOA = Tong DTPA = Paintown DTRA = Trucha Bug Restorer DTSA = Desert Bus DTTA = Toddtris DTWA = Wiitweet DTXA = Texttris DU0A = Dumpmiinand DU7A = Uno DU8A = RealWnd DU9A = Harmonium DUAA = UAE Wii DUAP01 = DU Super Mario Bros. : Anniversary Edition DUBA = Multibu DUCE01 = Kustom Mariokart Wii DUDA = Duck Hunt DUDE01 = New Super Mario Bros. Wii Scooby-Doo! Hack DUGA = Guitar Fun DUIA = ChessUI DULA = USB Loader GX DUNA = Uname DUSA = bootOperaModUSB DUTG = DU Tag Channel DUWA = Waninkoko's USB Loader DV0A = Remove Preloader Hacks DV3A = DVD Browser DV9A = SensorMii DVDA = cIOS DVD Dumper DVGA = The Video Game DVHA = Horror Vacui DVIA = Vbagx Channel Installer DVJP08 = Viewtiful Joe (Promotional demo) DVLA = Vigiroth le livreur DVNA = Wiivnc DVOA = Vectoroids DVPA = Progressiveswitch DVSA = GameCube Saver DVXA = VectrexWii DW1A = Intuitwars DW5A = Marel DW6A = Wiicraft DW7A = Ravewild DWAA = WiiApple DWBA = WiirtualBoy DWCA = WiiFlow Channel Installer DWDA = Wiiflow Banner Downloader DWEA = WiiEarth DWEPA4 = Pro Evolution Soccer 2008 (Demo) DWFA = WiiFlow DWHA = WiiHandySDL DWJA = Jewel DWKA = Wiibreaker DWLA = Wii-Linux DWMA = WAD Manager DWNA = Nwancat DWPA = WiiPhysics DWRA = WiiRadio DWSA = WiiSX DWTA = Wiituka DWUA = Wufe DWWA = Winters End DWXA = WiiXplorer DX3A = Midway Space Invaders Emulator DX4A = Brawl DX Launcher DX5A = MP3+G Player DX6A = Build Blocks DX7A = Roxoptr2 DX8A = Hexen DX9A = Sand Traps DXBA = Wii X Ball DXCA = CorsixTH DXDA = DVDX DXEA = SDExplorer DXHA = Texas Holdem Poker DXIA = Piixelator DXLA = WiiXL DXNA = bootnetflix DXPA = Xeempongwii DXQA = Quadrax DXSA = Save extractor DXSE18 = Deca Sports (Demo) DXTA = The Lone Pixel DXXA = Hexxagon DXYA = xyzzy DXZA = Megazeux DY5A = Darkcorp Lite DY6A = Liqwiid Wars DY9A = TetWiis DYAA = Syasokoban DYBA = Yabause DYCA = Tetricycle DYEA = Epilepsii DYGA = Yog DYHA = Hypno Blast DYIA = Chippy DYMA = YAWMM DYOA = Toy Wars DYPA = PongYourWii DYSA = Shiny tank DYTA = Newo Tokyo DYUA = UFO Racer DYWA = Yahtzwii DYYA = System Setting Replace Tool DZ0A = Eject DZ7A = SameGame DZ8A = WiiMPC DZ9A = Teeter Torture DZDE01 = The Legend of Zelda: Twilight Princess (Demo) DZDP01 = The Legend of Zelda: Twilight Princess (Demo) DZIA = Ziip DZPA = Puzsion DZQA = Quizz DZRA = Rezerwar DZSA = Szigoy DZXA = FBZX Wii DZYA = Snake Two DZZA = OpenJazz E52E = 1942 E52J = 1942 E52P = 1942 E53E = Black Tiger E53J = Black Dragon E53P = Black Tiger E54E = Ghosts 'n Goblins E54J = Makaimura E54P = Ghost'n Goblins E55E = Commando E55J = Senji no Ookami E55P = Commando E56E = Exed Exes E56J = Exed Eyes E56P = Exed Exes E57E = SonSon E57J = Son Son E57P = SonSon E58J = Mr. Do! E59J = Karate Dou E5AJ = Ikki E5BJ = Shanghai E5VJ = Renegade E5WE = Wonder Boy in Monster Land E5WJ = Wonder Boy in Monster Land E5XJ = Puyo Puyo Tsu E5YJ = Puyo Puyo E5ZE = Super Hang-On E5ZJ = Super Hang-On E62E = Space Harrier E62J = Space Harrier E62P = Space Harrier E63E = Shinobi E63J = Shinobi Virtual Arcade E63P = Shinobi E64J = Rolling Thunder 2 E65J = Valkyrie no Densetsu E66J = Ordyne E67J = Dig Dug E68J = Galaga E69J = Baraduke E6AJ = Moon Cresta E6BJ = Crazy Climber E6CJ = Rompers E6DJ = Toy Pop E6EJ = Libble Rabble E6FJ = Galaxian E6GJ = Namco Quester E6HJ = Face Off E6IJ = Trink Force E6JJ = Bakutotsu Kijuutei: BaRaDuKe II E6KJ = Chouzetsu Rinjin - Berabow Man E6LJ = Marchen Maze E6ME = Tecmo Bowl E6MJ = Tecmo Bowl E6NE = Solomon's Key E6NJ = Solomon no Kagi E6NP = Solomon's Key E6OJ = Bomb Jack Arcade E6PE = Ninja Gaiden E6PJ = Ninja Ryukenden Arcade E6PP = Ninja Gaiden E6QE = Rygar E6QJ = Argos no Senshi E6QP = Rygar E6SJ = New Rally-X E6VE = Zaxxon 3-D E6VJ = Zaxxon E6VP = Zaxxon E6WE = Golden Axe E6WJ = Golden Axe E6WP = Golden Axe E6XE = Altered Beast E6XP = Altered Beast E6YJ = Space Invaders E6ZE = Starforce E6ZJ = Star Force E6ZP = Star Force E72J = Starblade E73E = Mappy E73J = Mappy E73P = Mappy E74J = Cosmo Gang the Puzzle E75J = Genpei Toumaden E76J = Emeraldia E77J = The Return of Ishtar E78J = Solvalou E79E = Gaplus E79J = Gaplus E79P = Gaplus E7AJ = Grobda E7BJ = Dig Dug II E7CJ = Bosconian E7EJ = Dragon Buster E7FJ = Dragon Saber E7GJ = Dragon Spirit E7HJ = Xevious E7IJ = Finest Hour E7JJ = Knuckle Heads E7KJ = Pac-Mania E7LJ = Cosmo Gang the Video E7MJ = Phelios E7NJ = Rolling Thunder E7OJ = Burning Force E7PJ = Marvel Land E7QJ = Galaga '88 E7RJ = Wonder Momo E7SJ = Assault E7TJ = Hopping Mappy E7UJ = Splatterhouse E7VJ = Cyber Sled E7WJ = Numan Athletics E7XJ = Youkai Douchuki E7YJ = Sky Kid E7ZE = The Tower of Druaga E7ZJ = Druaga no Tou E7ZP = The Tower of Druaga EA2E = Metal Slug 2 EA2J = Metal Slug 2 EA2P = Metal Slug 2 EA3J = Galaxy Fight: Universal Warriors EA4E = Samurai Showdown III EA4J = Samurai Spirits Kibeniro Musouken EA4P = Samurai Shodown III EA5E = Fatal Fury 3: Road to the Final Victory EA5J = Garou Densetsu 3: Road to the Final Victory EA5P = Fatal Fury 3 : Road To The Final Victory EA6E = The King of Fighters '96 EA6J = The King of Fighters '96 EA7E = Samurai Shodown IV: Amakusa's Revenge EA7J = Samurai Spirits: Amakusa Kourin EA8E = Ironclad EA8J = Ironclad: Chotetsu Brikinger EA8M = Iron Clad EA9J = Waku Waku 7 EAAE = Fatal Fury EAAJ = Garou Densetsu: Shukumei no Takatai EAAP = Fatal Fury EABE = World Heroes EABJ = World Heroes EABP = World Heroes EACE = Magician Lord EACJ = Magician Lord EACP = Magician Lord EADE = Art of Fighting EADJ = Ryuuko no Ken EADP = Art of Fighting EAEE = Samurai Showdown EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen EAEP = Samurai Showdown EAFE = Blue's Journey EAFJ = Raguy EAFP = Blue's Journey EAGE = The King of Fighters '94 EAGJ = The King of Fighters '94 EAGP = The King of Fighters '94 EAHE = Baseball Stars 2 EAHJ = Baseball Stars 2 EAHP = Baseball Stars 2 EAIE = Top Hunter EAIJ = Top Hunter EAIP = Top Hunter EAJE = Metal Slug EAJJ = Metal Slug EAJP = Metal Slug EAKE = Burning Fight EAKJ = Burning Fight EAKP = Burning Fight EALE = Art of Fighting 2 EALJ = Ryuuko no Ken 2 EALP = Art of Fighting 2 EAME = Ninja Combat EAMJ = Ninja Combat EAMP = Ninja Combat EANE = Fatal Fury 2 EANJ = Garou Densetsu 2: Aratanaru Tatakai EANP = Fatal Fury 2 EAOE = King of the Monsters EAOJ = King of the Monsters EAOP = King of the Monsters EAPE = Ninja Commando EAPJ = Ninja Commando EAPP = Ninja Commando EAQE = WORLD HEROES 2 EAQJ = World Heroes 2 EARE = Neo Turf Masters EARJ = Neo Turf Masters EARP = Neo Turf Masters EASE = Samurai Showdown 2 EASJ = Shin Samurai Spirits Haoumaru Jigokuhen EASP = Samurai Shodown II EATE = WORLD HEROES 2 JET EATJ = World Heroes 2 Jet EAUJ = Twinkle Star Sprites EAVE = The King of Fighters ’95 EAVJ = The King of Fighters '95 EAVP = The King of Fighters '95 EAWE = Fatal Fury Special EAWJ = Garou Densetsu Special EAWP = Fatal Fury Special EAYJ = King of The Monsters 2 EAZE = WORLD HEROES PERFECT EAZJ = World Heroes Perfect EB2E = REAL BOUT FATAL FURY SPECIAL EB2J = Real Bout Garou Densetsu Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB6E = Metal Slug 3 EB6J = Metal Slug 3 EB6P = Metal Slug 3 EB7J = The Super Spy EB8E = SHOCK TROOPERS EB8J = Shock Troopers EB9J = Pulstar EBAE = Magical Drop II EBAJ = Magical Drop 2 EBAP = Magical Drop II EBBE = Fighters History Dynamite EBBJ = Fighter's History Dynamite EBBP = Karnov's Revenge EBCJ = Flying Power Disc EBDE = Magical Drop III EBDJ = Magical Drop III EBDP = Magical Drop 3 EBEE = Street Slam EBEJ = Dunk Dream EBEP = Street Hoop EBFE = Spin Master EBFJ = Miracle Adventure EBFP = Spin master EBGE = The King of Fighters '97 EBGJ = The King of Fighters '97 EBKJ = Last Resort EBLJ = Tsuukai GanGan Koushinkyoku EBMJ = Fire Suplex EBNJ = Fu'un Mokushiroku: Kakutou Sousei EBOJ = Fu'un Super Tag Battle EBPJ = League Bowling EBQE = NINJA MASTER'S EBQJ = Ninja Master's Haou Ninpou-chou EBRJ = Joy Joy Kid EBSE = The Path of the Warrior: Art of Fighting 3 EBSJ = Art of Fighting: Ryuuko no Ken Gaiden EBTJ = Crossed Swords EBUE = 2020 SUPER BASEBALL EBUJ = Super Baseball 2020 EBVJ = Shin-Oh-Ken EBWE = SENGOKU EBWJ = Sengoku Denshou EBXE = SENGOKU 2 EBXJ = Sengoku 2 EBZE = REAL BOUT FATAL FURY EBZJ = Real Bout Garou Densetsu ECAE = Real Bout Fatal Fury 2: The Newcomers ECAJ = Real Bout Garou Densetsu 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECDJ = Stakes Winner: G1 Kanzen Seihahe no Michi ECEE = THE LAST BLADE 2 ECEJ = Bakumatsu Rouman Dai Ni Maku: Gekka no Kenshi ECFJ = Blazing Star ECGE = Shock Troopers: 2nd Squad ECGJ = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECJE = The King of Fighters '99 ECJJ = Metal Slug 4 ECKE = NAM-1975 ECKJ = NAM-1975 ECLJ = Stakes Winner 2 ECMJ = Tokuten Oh: Honoo no Libero ECNE = Sengoku 3 ECNJ = Sengoku Denshou 2001 ENDP01 = New SUPER MARIO BROS. Wii 20 The End For Now EVOP01 = New Super Mario Bros. Wii 0-5 Evolution FA2J = Exerion FA3J = Formation Z FA4J = Devil World FA4P = Devil World FA5J = Fire Emblem: Ankoku Ryu to Hikari no Tsurugi FA6E = Donkey Kong Jr. Math FA6J = Donkey Kong Jr. no Sansuu Asobi FA6P = Donkey Kong Jr. Math FA7E = Yoshi FA7J = Yoshi no Tamago FA7K = Yoshi FA7P = Mario & Yoshi FA8E = Kirby's Adventure FA8F = Kirby's Adventure FA8J = Hoshi no Kirby: Yume no Izumi no Monogatari FA8K = Kirby's Adventure FA8P = Kirby's Adventure FA9E = Zelda II: The Adventure of Link FA9J = The Legend of Zelda 2: Link no Bouken FA9P = Zelda II : The Adventure of Link FAAE = Donkey Kong FAAJ = Donkey Kong FAAK = Donkey Kong FAAP = Donkey Kong FABE = Donkey Kong Jr. FABJ = Donkey Kong Jr. FABP = Donkey Kong Jr. FACE = Pinball FACJ = Pinball FACP = Pinball FADJ = Gomoku Narabe Renju FAFE = Mario Bros. FAFJ = Mario Bros. FAFK = Mario Bros. FAFP = Mario Bros. FAGE = Super Mario Bros. FAGJ = Super Mario Bros. FAGK = Super Mario Bros. FAGP = Super Mario Bros. FAHE = Tennis FAHJ = Tennis FAHP = Tennis FAIE = Soccer FAIJ = Soccer FAIP = Soccer FAJE = Ice Hockey FAJJ = Ice Hockey FAJP = Ice Hockey FAKE = The Legend of Zelda FAKJ = Zelda no Densetsu FAKK = The Legend of Zelda FAKP = The Legend of Zelda FALE = Baseball FALJ = Baseball FALP = Baseball FAME = Wario's Woods FAMJ = Wario no Mori FAMP = Wario's Woods FANE = Urban Champion FANJ = Urban Champion FANK = Urban Champion FANP = Urban Champion FAOE = Solomon's Key FAOJ = Solomon no Kagi FAOP = Solomon's Key FAPE = NES Open Tournament Golf FAPJ = Mario Open Golf FAPK = NES Open Tournament Golf FAPP = NES Open Tournament Golf FAQJ = Ninja Jajamaru-kun FAQL = Ninja JaJaMaru-kun FAQN = Ninja JaJaMaru-kun FARE = Gradius FARJ = Gradius FARP = Gradius FASE = Xevious FASJ = Xevious FASK = Xevious FASP = Xevious FATE = The Legend of Kage FATJ = Kage no Densetsu FAVE = Tecmo Bowl FAVJ = Tecmo Bowl FAWE = Elevator Action FAWJ = Elevator Action FAXE = Pac-Man FAXJ = Pac-Man FAXK = Pac-Man FAXP = Pac-Man FAYJ = Ikki FAZJ = Field Combat FAZK = Downtown Nekketsu Koushinkyoku: Soreyuke Daiundoukai FB2J = Super Mario Bros. 2 FB2L = Super Mario Bros. : The Lost Levels FB2N = Super Mario Bros.: The Lost Levels FB3J = Valkyrie no Bouken: Toki no Kagi Densetsu FB4E = Lunar Pool FB4J = Lunar Ball FB4P = Lunar Pool FB5E = Zanac FB5J = Zanac FB6J = Front Line FB7J = Nuts & Milk FB8J = Challenger FB9J = Pooyan FBAJ = Smash Ping Pong FBAL = Smash Table Tennis FBBE = Mach Rider FBBJ = Mach Rider FBBP = Mach Rider FBCE = Excitebike FBCJ = Excitebike FBCP = Excitebike FBDE = Kid Icarus FBDJ = Hikari Shinwa: Palutena no Kagami FBDK = Kid Icarus FBDP = Kid Icarus FBEE = Ice Climber FBEJ = Ice Climber FBEP = Ice Climber FBHE = Castlevania FBHJ = Akumajou Dracula FBHP = Castlevania FBIE = Punch Out!! Featuring Mr. Dream FBIJ = Punch-Out!! FBIP = Punch-Out!! FBJE = Mighty Bomb Jack FBJJ = Mighty Bomb Jack FBJP = Mighty Bomb Jack FBKE = Teenage Mutant Ninja Turtles FBKJ = Gekikame Ninja Den FBKP = Teenage Mutant Ninja Turles FBLE = Lode Runner FBLJ = Lode Runner FBLM = Lode Runner FBNE = Ninja Gaiden FBNJ = Ninja Ryuukenden FBNM = Ninja Gaiden FBOJ = Gradius II FBQJ = Druaga no Tou FBRE = Galaga FBRJ = Galaga FBRK = Galaga FBRP = Galaga FBSE = Milon's Secret Castle FBSJ = Meikyuu Kumikyoku: Milon no Daibouken FBSM = Milon's Secret Castle FBUE = Adventures of Lolo FBUJ = Adventures of Lolo FBUK = Adventures of Lolo FBUP = Adventures of Lolo FBVJ = Tsuppari Oozumou FBWJ = Joy Mech Fight FBWK = Joy Mech Fight FBXJ = Famicom Wars FBYE = Super Mario Bros. 2 FBYJ = Super Mario USA FBYK = Super Mario USA FBYP = Super Mario Bros. 2 FBZE = Metroid FBZJ = Metroid FBZP = Metroid FC2J = Hanjuku Hero FC3E = Bubble Bobble FC3J = Bubble Bobble FC3K = Bubble Bobble FC3P = Bubble Bobble FC4J = Chack'n Pop FC5J = Ganbare Goemon Karakuki Douchuu FC6E = StarTropics FC6J = Startropics FC6P = StarTropics FC7E = NES Play Action Football FC7J = NES Play Action Football FC8E = Castlevania II Simon's Quest FC8J = Dracula II: Noroi no Fuuin FC8P = Castlevania II : Simon's Quest FC9J = Metal Slader Glory FCAE = Star Soldier FCAJ = Star Soldier FCEJ = Esper Dream FCEU = FCE Ultra GX FCFJ = Yie Ar Kung Fu FCGJ = TwinBee FCHJ = Flappy FCIJ = Volguard 2 FCJJ = SD Gundam World: Gachapon Senshi 2 - Capsule Senki FCNJ = Kekkyoku Nankyoku Daibouken FCNK = Antarctic Adventure FCOJ = Battle City FCPE = Balloon Fight FCPJ = Balloon Fight FCPP = Balloon Fight FCQE = Ninja Gaiden II: The Dark Sword of Chaos FCQJ = Ninja Gaiden Two FCRE = Adventure Island FCRJ = Takahashi Meijin no Boukenjima FCRK = Hudson's Adventure Island FCRP = Adventure Island FCSE = Super C FCSJ = Super Contra FCSP = Probotector II : Return of the Evil Forces FCTE = Mega Man FCTJ = RockMan FCTP = Mega Man FCUE = Volleyball FCUJ = Volleyball FCUP = Volleyball FCVE = Wrecking Crew FCVJ = Wrecking Crew FCVP = Wrecking Crew FCWE = Super Mario Bros. 3 FCWJ = Super Mario Bros. 3 FCWK = Super Mario Bros. 3 FCWP = Super Mario Bros. 3 FCYE = Yoshi’s Cookie FCYJ = Yoshi no Cookie FCYK = Yoshi's Cookie FCYP = Yoshi’s Cookie FCZE = King's Knight FCZJ = Kings Knight FD2E = Double Dragon FD2J = Double Dragon FD2P = Double Dragon FD3J = Nekketsu Koukou Dodgeball-bu Soccer-hen FD3K = Nekketsu Koukou Dodgeball-bu Soccer-hen FD6E = Adventures of Lolo 2 FD6P = Adventures of Lolo 2 FD7E = Mega Man 3 FD7J = RockMan 3: Dr. Wily no Saigo?! FD7P = Mega Man 3 FDAE = Spelunker FDAJ = Spelunker FDAM = Spelunker FDBJ = Famicom Mukashi Banashi: Shin Onigashima - Kouhen FDCJ = Star Luster FDEJ = Mappy FDFE = Bases Loaded FDFJ = Moero!! Pro Yakyuu FDGE = Ghosts'n Goblins FDGJ = Makai-Mura FDGP = Ghosts'n Goblins FDIJ = Bokosuka Wars FDLE = Ninja Gaiden III: The Ancient Ship of Doom FDLJ = Ninja Gaiden Three FDNE = Mega Man 2 FDNJ = RockMan 2 FDNP = Mega Man 2 FDOE = Operation Wolf FDOJ = Operation Wolf FDOP = Operation Wolf FDPE = Blades of Steel FDPP = Blades of Steel FDQE = Double Dribble FDQP = Double Dribble FDRP = Skate or Die FDSJ = Famicom Tantei Club: Kieta Koukeisha (Kouhen) FDTE = Renegade FDTJ = Renegade FDUE = Super Dodge Ball FDUJ = Nekketsu Koukou Dodge Ball Bu FDVE = River City Ransom FDVJ = Downtown Nekketsu Monogatari FDVK = Downtown Nekketsu Monogatari FDVP = Street Gangs FDWJ = Downtown Special: Kunio-kun no Jidaigeki Dayo Zenin Shuugou! FDXJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo (Kouhen) FDYJ = Fire Emblem Gaiden FDZJ = Downtown Nekketsu Koushinkyoku FE5J = Toukaidou Gojuusan Tsugi FE6J = Ninja kun Majyou no Bouken FE7J = Ninja kun Ashura no Shou FE8J = Takeshi no Chousenjou FE9J = Ike Ike! Nekketsu Hockey-bu: Subette Koronde Dairantou FECE = Skykid FECJ = Sky Kid FEDJ = Dig Dug FEDL = Dig Dug FEDN = Dig Dug FEEJ = Tantei Jinguji Saburo: Shinjuku Chuo Koen Satsujin Jiken FEFJ = Detective Saburo Jinguji 2: Yokohama-Ko Renzoku Satsujin Jiken FEGJ = Tantei Jinguuji Saburo - Kikenna Futari - Zenkouhen FEHJ = Tantei Jinguuji Saburo: Toki no Sugiyuku Mama ni FEIE = City Connection FEIJ = City Connection FEIP = City Connection FEJJ = Nazo no Murasame Jou FELJ = Transformers: Convoy no Nazo FEMJ = Bio-Miracle Bokutte Upa FEML = Bio Miracle Bokutte UPA FEMN = Bio Miracle Bokutte UPA FENE = Life Force FENJ = Salamander FEOJ = Zoids: Mokushiroku FEPJ = Getsu Fuuma Den FEQE = Castlevania III: Dracula's Curse FEQJ = Akumajo Densetsu FEQP = Castlevania III Dracula's Curse FERE = Zoda’s Revenge: StarTropics II FERJ = Zoda's Revenge FERM = Startropics II: Zoda's Revenge FESE = Clu Clu Land FESJ = Clu Clu Land FESP = Clu Clu Land FEUE = Donkey Kong 3 FEUJ = Donkey Kong 3 FEUP = Donkey Kong 3 FEVJ = Atlantis no Nazo FEWJ = Dragon Buster FEXJ = Wagyan Land FF2J = Sugoro Quest: Dice no Senshi Tachi FF4E = BurgerTime FF4J = BurgerTime FF5E = Double Dragon II: The Revenge FF5J = Double Dragon 2: The Revenge FF6J = Ganbare Goemon 2 FF7J = Ganbare Goemon Gaiden: Kieta Ougon Kiseru FFAE = Final Fantasy FFAJ = Final Fantasy FFAM = Final Fantasy FFBJ = Final Fantasy II FFDE = Crash 'N The Boys Street Challenge FFDJ = Bikkuri Nekketsu Shin Kiroku! Harukanaru Kin Medal FFEE = A Boy and His Blob: Trouble on Blobolonia FFEP = A Boy and His Blob : Trouble on Blobolonia FFFJ = Final Fantasy III FFGJ = SD Gundam World: Gachapon Senshi - Scramble Wars FFJJ = Metal Max FFKJ = Championship Lode Runner FFLE = Princess Tomato in the Salad Kingdom FFLJ = Salad no Kuni no Tomato Hime FFME = Blaster Master FFMJ = Chou-Wakusei Senki MetaFight FFMP = Blaster Master FFNE = Mega Man 4 FFNJ = RockMan 4: Aratanaru Yabou!! FFNP = Mega Man 4 FFOJ = Moero TwinBee: Cinnamon Hakase o Sukue! FFPB = Ufouria: The Saga FFPJ = Furu Furu Park FFQE = Shadow of the Ninja FFQM = Shadow of the Ninja FFRE = Faxanadu FFRJ = Faxanadu FFRP = Faxanadu FFTJ = Binary Land FFUE = Adventure Island 2 FFUJ = Takahashi Meijin no Bouken Jima II FFUP = Adventure Island 2 FFVE = S.C.A.T. FFVP = S.C.A.T.: Special Cybernetic Attack Team FFWP = Donkey Kong: Original Edition FFXJ = 25th Anniversary SUPER MARIO BROS. FFXP = Super Mario Brothers: 25th Anniversary Exclusive FFYE = Mega Man 5 FFYJ = RockMan 5: Blues no Wana!? FFZJ = Seicross FFZY = Contra FJOR = Kung Fu FMCA = The Goonies G01E01 = Super Smash Bros. Melee: SD Remix G01J01 = Super Smash Bros. Melee: SD Remix G01P01 = Super Smash Bros. Melee: SD Remix G02E01 = Super Smash Bros. Melee: 20XX Training Pack G02J01 = Super Smash Bros. Melee: 20XX Training Pack G02P01 = Super Smash Bros. Melee: 20XX Training Pack G2BE5G = Black & Bruised G2BP7D = Black & Bruised G2CD52 = True Crime: New York City G2CE52 = True Crime: New York City G2CP52 = True Crime: New York City G2CX52 = True Crime: New York City G2FD78 = Tak 2: The Staff of Dreams G2FE78 = Tak 2: The Staff of Dreams G2FF78 = Tak 2: Le Sceptre des Rêves G2FP78 = Tak 2: The Staff of Dreams G2GJB2 = Mobile Suit Gundam: Gundam vs. Z Gundam G2KE8P = NHL 2K3 G2KP8P = NHL 2K3 G2ME01 = Metroid Prime 2: Echoes G2MEAB = Metroid Prime 3 (E3 Beta) G2MJ01 = Metroid Prime 2: Dark Echoes G2MP01 = Metroid Prime 2: Echoes G2OE41 = Prince of Persia: Warrior Within G2OP41 = Prince of Persia: Warrior Within G2PE6U = Spirits And Spells G2RE52 = Shrek SuperSlam G2SJGE = Shikigami no Shiro II G2TE52 = Tony Hawk's Underground 2 G2TP52 = Tony Hawk's Underground 2 G2VE08 = Viewtiful Joe 2 G2VJ08 = Viewtiful Joe 2: Blackfilm no Nazo G2VP08 = Viewtiful Joe 2 G2XE8P = Sonic Gems Collection G2XP8P = Sonic Gems Collection G3AD69 = Lord of the Rings: The Third Age G3AE69 = Lord of the Rings: The Third Age G3AF69 = Le Seigneur des Anneaux : Le Tiers Âge G3AP69 = Lord of the Rings: The Third Age G3AS69 = Lord of the Rings: The Third Age G3BE9G = Serious Sam: Next Encounter G3BP54 = Serious Sam: Next Encounter G3BP9G = Serious Sam: Next Encounter G3DE6L = Carmen Sandiego: The Secret of the Stolen Drums G3DP6L = Carmen Sandiego : Le Secret des Tam-Tams Volés G3DX6L = Carmen Sandiego: The Secret of the Stolen Drums G3EE51 = XGIII: Extreme G Racing G3EJ51 = XGIII: Extreme G Racing G3EP51 = XGIII: Extreme G Racing G3FD69 = TimeSplitters: Future Perfect G3FE69 = TimeSplitters: Future Perfect G3FF69 = TimeSplitters: Future Perfect G3FP69 = TimeSplitters: Future Perfect G3FS69 = TimeSplitters: Future Perfect G3JEAF = Curious George G3LE8P = Super Monkey Ball Adventure G3LP8P = Super Monkey Ball Adventure G3ME41 = Tom Clancy's The Sum of All Fears G3MP41 = La Somme de toutes les Peurs G3NJDA = NARUTO Gekitô Ninja Taisen! 3 G3QEA4 = Teenage Mutant Ninja Turtles 3: Mutant Nightmare G3RD52 = Shrek 2 G3RE52 = Shrek 2 G3RF52 = Shrek 2 G3RP52 = Shrek 2 G3SE41 = Bust-A-Move 3000 G3TJ8P = Derby Tsuku 3: Derby Uma O Tsukurou! G3VE69 = NBA Street Vol.3 G3VP69 = NBA Street Vol.3 G3XE52 = X-Men: The Official Game G3XP52 = X-Men: Le Jeu Officiel G3YP52 = Shrek Super Slam G3YX52 = Shrek Super Slam G3YY52 = Shrek Super Slam G4AEE9 = Harvest Moon: Magical Melody G4BE08 = Resident Evil 4 G4BJ08 = Biohazard 4 G4BP08 = Resident Evil 4 G4CE54 = Charlie and the Chocolate Factory G4CP54 = Charlie et la Chocolaterie G4FD69 = FIFA 07 G4FE69 = FIFA Soccer 07 G4FF69 = FIFA 07 G4FP69 = FIFA 07 G4GEE9 = Harvest Moon: Another Wonderful Life G4IE52 = Shrek Smash n' Crash Racing G4IP52 = Shrek Smash n' Crash Racing G4ME69 = The Sims Bustin' Out G4MP69 = Les Sims: Permis de Sortir G4NJDA = NARUTO Gekitô Ninja Taisen! 4 G4OE69 = The Sims 2 : Pets G4OP69 = Les Sims 2 : Animaux & Cie G4QE01 = Super Mario Strikers G4QJ01 = Super Mario Strikers G4QP01 = Mario Smash Football G4SE01 = The Legend of Zelda: Four Swords Adventures G4SJ01 = The Legend of Zelda: Four Swords + G4SP01 = The Legend of Zelda: Four Swords Adventures G4ZE69 = The Sims 2 G4ZP69 = Les Sims 2 G5BE4Z = Strike Force Bowling G5DE78 = Scooby-Doo! - Unmasked G5DP78 = Scooby-Doo! : Démasqué G5NEAF = Namco Museum 50th Anniversary G5NP69 = Namco Museum 50th Anniversary G5SE7D = Spyro: A Hero's Tail G5SP7D = Spyro: A Hero's Tail G5TE69 = Tiger Woods PGA Tour 2005 G5TP69 = Tiger Woods PGA Tour 2005 G62E54 = Major League Baseball 2k6 G63E41 = Tom Clancy's Rainbow Six 3 G63P41 = Tom Clancy's Rainbow Six 3 G6FD69 = 2006 FIFA World Cup G6FE69 = 2006 FIFA World Cup G6FF69 = Coupe du Monde de la FIFA 2006 G6FP69 = 2006 FIFA World Cup G6ME69 = Madden NFL 06 G6MP69 = Madden NFL 06 G6NE69 = NBA Live 06 G6NP69 = NBA Live 06 G6QE08 = Mega Man Anniversary Collection G6SE7D = The Legend of Spyro: A New Beginning G6SP7D = The Legend of Spyro: A New Beginning G6TE5G = Teen Titans G6TP5G = Teen Titans G6TP78 = Teen Titans G6WE69 = Tiger Woods PGA Tour 06 G6WP69 = Tiger Woods PGA Tour 06 G7ME69 = Madden NFL 07 G89EAF = Pac-Man World Rally G8FE8P = Virtua Quest G8ME01 = Paper Mario: The Thousand-Year Door G8MJ01 = Paper Mario RPG G8MP01 = Paper Mario: La Porte Millénaire G8OJ18 = Bobobo-bo Bo-bobo Dassutsu! Hajike Royale G8SJAF = Battle Stadium D.O.N G8WE01 = Battalion Wars G8WP01 = Battalion Wars G94E01 = Interactive Multi-Game Demo Disc - August 2002 G95E01 = Interactive Multi-Game Demo Disc - July 2002 G96E01 = Interactive Multi-Game Demo Disc - June 2002 G97E01 = Interactive Multi-Game Demo Disc - March 2002 G97P01 = Interactive Multi Game Demo Disc - September 2002 G97U01 = Interactive Multi-Game Demo Disc - September 2002 G98E01 = Interactive Multi-Game Demo Disc - January 2002 G98P01 = Interactive Multi Game Demo Disc May 2002 G99E01 = Interactive Multi-Game Demo Disc - October 2001 G99P01 = Interactive Multi Game Demo Disc March 2002 G9BEE9 = Mark Davis Pro Bass Challenge G9RD7D = Crash Tag Team Racing G9RE7D = Crash Tag Team Racing G9RF7D = Crash Tag Team Racing G9RP7D = Crash Tag Team Racing G9SE8P = Sonic Heroes G9SJ8P = Sonic Heroes G9SP8P = Sonic Heroes G9TD52 = Shark Tale G9TE52 = Shark Tale G9TF52 = Shark Tale G9TI52 = Shark Tale G9TJC0 = Shark Tale G9TP52 = Shark Tale GA2E51 = All-Star Baseball 2002 GA3E51 = All-Star Baseball 2003 GA4E51 = All-Star Baseball 2004 GA7E70 = Backyard Sports Baseball 2007 GAAJ08 = Disney's Mickey & Minnie Trick & Chase GABEAF = Zatch Bell! Mamodo Fury GACE5H = Army Men: Air Combat The Elite Missions GAEJ01 = Doubutu no Mori e+ GAFE01 = Animal Crossing GAFJ01 = Animal Forest + GAFP01 = Animal Crossing GAFU01 = Animal Crossing GAGP70 = Asterix & Obelix XXL GAHEGG = Alien Hominid GAKE5D = Midway Arcade Treasures GALE01 = Super Smash Bros. Melee GALJ01 = Dairantou Smash Brothers DX GALP01 = Super Smash Bros. Melee GAME5H = Army Men Sarges War GANE7U = Animaniacs: The Great Edgar Hunt GANP7U = Animaniacs: The Great Edgar Hunt GAPE52 = American Chopper 2 - Full Throttle GAQE6S = Aquaman: Battle of Atlantis GARE5H = Army Men: RTS GASE8P = Sonic Adventure DX: Director's Cut (Review Prototype) GASJ8P = Sonic Adventure DX GATE51 = ATV Quad Power Racing 2 GATP51 = ATV Quad Power Racing 2 GAUE08 = Auto Modellista GAUJ08 = Auto Modellista: U.S.-tuned GAVE78 = Avatar The Last Airbender GAVP78 = Avatar: The Legend of Aang GAVY78 = Avatar : Le Dernier Maître de l'Air GAXE5D = The Ant Bully GAYE5D = Midway Arcade Treasures 2 GAZD69 = Harry Potter and the Prisoner of Azkaban GAZE69 = Harry Potter and the Prisoner of Azkaban GAZF69 = Harry Potter et le Prisonnier d'Azkaban GAZH69 = Harry Potter and the Prisoner of Azkaban GAZI69 = Harry Potter and the Prisoner of Azkaban GAZJ69 = Harry Potter to Azkaban no Shuujin GAZM69 = Harry Potter and the Prisoner of Azkaban GAZP69 = Harry Potter and the Prisoner of Azkaban GAZS69 = Harry Potter and the Prisoner of Azkaban GB2J18 = Bomberman Land 2 GB3E51 = BMX XXX GB3P51 = BMX XXX GB4E51 = Burnout 2: Point of Impact GB4P51 = Burnout 2: Point of Impact GBAE8P = NBA 2K2 GBDE5G = BloodRayne GBDP7D = BloodRayne GBDS7D = BloodRayne GBFE70 = Backyard Football GBGE5G = Bomberman Generation GBGP7D = Bomberman Generation GBHDC8 = Mystic Heroes GBHEC8 = Mystic Heroes GBHFC8 = Mystic Heroes GBHJC8 = Battle Houshin GBHPC8 = Mystic Heroes GBIE08 = Resident Evil GBIJ08 = Biohazard GBIP08 = Resident Evil GBKE70 = Backyard Baseball GBLE52 = Bloody Roar: Primal Fury GBLP52 = Bloody Roar: Primal Fury GBME7F = Batman: Dark Tomorrow GBMP7F = Batman: Dark Tomorrow GBNJC0 = Warrior Blade: Rastan vs. Barbarian GBOE51 = Burnout GBOP51 = Burnout GBQE78 = Rocket Power: Beach Bandits GBQP78 = Rocket Power: Beach Bandits GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTP70 = Beyblade VForce - Super Tournament Battle GBVE41 = Batman: Vengeance GBVP41 = Batman Vengeance GBWD64 = Star Wars Bounty Hunter GBWE64 = Star Wars Bounty Hunter GBWF64 = Star Wars Bounty Hunter GBWP64 = Star Wars Bounty Hunter GBWS64 = Star Wars Bounty Hunter GBXE51 = Dave Mirra Freestyle BMX 2 GBXP51 = Dave Mirra Freestyle BMX 2 GBYE0A = Super Bubble Pop GBZE08 = Resident Evil Zero GBZJ08 = Resident Evil Zero GBZP08 = Resident Evil Zero GC2E9G = Conflict: Desert Storm II: Back to Baghdad GC2P75 = Conflict: Desert Storm II: Back to Baghdad GC3D78 = Scooby-Doo!: Mystery Mayhem GC3E78 = Scooby-Doo!: Mystery Mayhem GC3F78 = Scooby-Doo! : Le Livre des Ténèbres GC3P78 = Scooby-Doo!: Mystery Mayhem GC4JBN = Shinseiki GPX Cyber Formula Road To The EVOLUTION GC5PNK = Cocoto: Kart Racer GC6E01 = Pokémon Colosseum GC6J01 = Pokémon Colosseum GC6P01 = Pokémon Colosseum GC7PNK = Cocoto Platform Jumper GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBP7D = Crash Bandicoot : La Vengeance de Cortex GCCE01 = Final Fantasy Crystal Chronicles GCCJ01 = Final Fantasy Crystal Chronicles GCCJGC = Final Fantasy Crystal Chronicles GCCP01 = Final Fantasy Crystal Chronicles GCDE08 = Resident Evil Code: Veronica X GCDJ08 = Biohazard: Code Veronica GCDP08 = Resident Evil Code Veronica X GCEE41 = Tom Clancy's Splinter Cell GCEP41 = Tom Clancy's Splinter Cell GCFE9G = Conflict: Desert Storm GCFP75 = Conflict: Desert Storm GCGE41 = Charlie's Angels GCGP41 = Charlie's Angels: Les Anges se Déchaînent GCHE78 = WWE Crush Hour GCHP78 = WWE Crush Hour GCIE69 = The Sims GCIP69 = Les Sims GCJE41 = Tom Clancy's Splinter Cell: Chaos Theory GCJP41 = Tom Clancy's Splinter Cell: Chaos Theory GCLE69 = Cel Damage GCLP69 = Cel Damage GCMJA4 = Muscle Champion ~Battle of Muscle Island~ GCNE7D = Crash Nitro Kart GCNP7D = Crash Nitro Kart GCOD52 = Call of Duty: Finest Hour GCOE52 = Call of Duty: Finest Hour GCOF52 = Call of Duty : Le Jour De Gloire GCOP52 = Call of Duty: Finest Hour GCPE6S = Casper: Spirit Dimensions GCPP6S = Casper: Spirit Dimensions GCQD7D = Buffy The Vampire Slayer Chaos Bleeds GCQE7D = Buffy the Vampire Slayer: Chaos Bleeds GCQF7D = Buffy contre les Vampires : Chaos Bleeds GCQP7D = Buffy The Vampire Slayer Chaos Bleeds GCSEAF = Street Racing Syndicate GCSPAF = Street Racing Syndicate GCTE51 = Crazy Taxi GCTP51 = Crazy Taxi GCUE69 = NCAA Football 2005 GCVEEB = Cubivore: Survival of the Fittest GCWP6X = Castleween GCZE69 = Catwoman GCZP69 = Catwoman GD4E6S = Dinotopia - The Sunstone Odyssey GD5JB2 = Dragon Drive: D-Masters Shot GD6EB2 = Digimon Rumble Arena 2 GD6P70 = Digimon Rumble Arena 2 GD7E70 = Dragon Ball Z - Budokai GD7JB2 = Dragon Ball Z - Budokai GD7P70 = Dragon Ball Z - Budokai GD7PB2 = Dragon Ball Z Budokai GD9E69 = Drome Racers GD9P69 = Drome Racers GDAJE5 = Doraemon Minna De Asobou! GDBJ01 = Doubutsu Bancho GDCE51 = Speed Kings GDCP51 = Speed Kings GDDE41 = Disney's Donald Duck: Goin' Quackers GDDP41 = Donald Cou@k Att@k?*! GDED71 = Baldur's Gate Dark Alliance GDEE71 = Baldur's Gate: Dark Alliance GDEF71 = Baldur's Gate: Dark Alliance GDEP71 = Baldur's Gate Dark Alliance GDFE5D = Defender GDFP5D = Defender: For All Mankind GDGE7H = Dragon's Lair 3D: Return to the Lair GDGP78 = Dragon's Lair 3D Special Edition GDIE7D = Die Hard: Vendetta GDIP7D = Die Hard: Vendetta GDIX7D = Die Hard: Vendetta GDIY7D = Die Hard: Vendetta GDJEB2 = Digimon World 4 GDJJB2 = Digimon World X GDKEA4 = Disney Sports Soccer GDKPA4 = Disney Sports: Football GDLEA4 = Disney Sports Basketball GDLPA4 = Disney Sports: Basketball GDME01 = Disney's Magical Mirror Starring Mickey Mouse GDMJ01 = Disney's Mickey Mouse no Fushigi na Kagami GDMP01 = Disney's Magical Mirror Starring Mickey Mouse GDNJE8 = Dokapon DX GDOP41 = Disney's Donald Qui est PK ? GDPJAF = Mr. Driller: Drill Land GDQE7L = Darkened Skye GDQP6S = Darkened Skye GDREAF = Dead to Rights GDRP69 = Dead to Rights GDRPAF = Dead to Rights GDSE78 = Dark Summit GDSP78 = Dark Summit GDTE69 = Def Jam Vendetta GDTP69 = Def Jam Vendetta GDUJA7 = Duel Masters Nettou Battle GDVE6L = Driven GDVP6L = Driven GDWEA4 = Disney Sports Football GDXEA4 = Disney Sports Skateboarding GDXJA4 = Disney Sports Skateboarding GDXPA4 = Disney Sports Skateboarding GE3E5D = Midway Arcade Treasures 3 GE4E7D = 4x4 Evo 2 GE5EA4 = TMNT: Mutant Melee GE6JA4 = Eisei Meijin VI GE9E5D = Ed, Edd n Eddy: The Mis-Edventures GEAE8P = Skies of Arcadia Legends GEAJ8P = Eternal Arcadia Legends GEAP8P = Skies of Arcadia Legends GEBEA4 = Evolution Snowboarding GEBPA4 = Evolution Snowboarding GEDE01 = Eternal Darkness: Sanity's Requiem GEDJ01 = Eternal Darkness: Manekareta 13-nin GEDP01 = Eternal Darkness: Sanity's Requiem GEJJCM = Jikkyou Powerful Pro Yakyuu 11 Chou Ketteiban GEME7F = Egg Mania: Eggstreme Madness GEMP7F = Eggo Mania GEND69 = James Bond 007: Everything Or Nothing GENE69 = James Bond 007: Everything Or Nothing GENF69 = 007 : Quitte ou Double GENP69 = 007: Everything Or Nothing GENS69 = James Bond 007: Everything Or Nothing GEOE08 = Capcom vs. SNK 2 EO GEOP08 = Capcom Vs. SNK2 EO: Millionaire Fighting 2001 GESEA4 = Evolution Skateboarding GESPA4 = Evolution Skateboarding GEVJ0M = Shinki Sekai Evolutia GEWE41 = Evolution Worlds GEWP41 = Evolution Worlds GEXE52 = Disney's Extreme Skate Adventure GEXP52 = Disney Extreme Skate Adventure GEXX52 = Disney's Extreme Skate Adventure GEXY52 = Disney Extreme Skate Adventure GEYE69 = Fight Night Round 2 GEYJ69 = Fight Night Round 2 GEYP69 = Fight Night Round 2 GEZE8P = Billy Hatcher and the Giant Egg GEZP8P = Billy Hatcher and the Giant Egg GF2E69 = F1 2002 GF2P69 = F1 2002 GF3E8P = NFL 2K3 GF3P8P = NFL 2K3 GF4E52 = Fantastic 4 GF4F52 = Les 4 Fantastiques GF4P52 = Fantastic 4 GF5D69 = FIFA Football 2005 GF5E69 = FIFA Soccer 2005 GF5F69 = FIFA Football 2005 GF5H69 = FIFA Football 2005 GF5I69 = FIFA Football 2005 GF5P69 = FIFA Football 2005 GF5S69 = FIFA Football 2005 GF6D69 = FIFA 06 GF6E69 = FIFA Soccer 06 GF6F69 = FIFA 06 GF6H69 = FIFA 06 GF6P69 = FIFA 06 GF6S69 = FIFA 06 GF7E01 = Star Fox: Assault GF7P01 = Star Fox Assault GF8E69 = FIFA Street GF8P69 = FIFA Street GFAD69 = FIFA Soccer 2003 GFAE69 = FIFA Soccer 2003 GFAF69 = FIFA Football 2003 GFAI69 = FIFA Football 2003 GFAJ69 = FIFA Soccer 2003 GFAP69 = FIFA Football 2003 GFAS69 = FIFA Football 2003 GFBE5D = FireBlade GFBP5D = Fireblade GFCP69 = F1 Career Challenge GFDD69 = Freedom Fighters GFDE69 = Freedom Fighters GFDF69 = Freedom Fighters GFDP69 = Freedom Fighters GFEE01 = Fire Emblem: Path of Radiance GFEJ01 = Fire Emblem: Souen no Kiseki GFEP01 = Fire Emblem: Path of Radiance GFFE5D = Freaky Flyers GFGEA4 = Frogger Beyond GFGPA4 = Frogger Beyond GFHP6V = Neighbours From Hell GFIE69 = 2002 FIFA World Cup GFKE69 = Freekstyle GFKP69 = Freekstyle GFMJAF = Family Stadium 2003 GFNJG2 = Finding Nemo GFOE78 = The Fairly OddParents - Shadow Showdown GFPEA4 = Frogger: Ancient Shadow GFQEA4 = Frogger's Adventures: The Rescue GFSD69 = 2002 FIFA World Cup GFSE69 = FIFA Soccer 2002 GFSF69 = Coupe du Monde FIFA 2002 GFSJ69 = FIFA Soccer 2002 GFSP69 = 2002 FIFA World Cup GFTE01 = Mario Golf: Toadstool Tour GFTJ01 = Mario Golf: Family Tour GFTP01 = Mario Golf: Toadstool Tour GFUE4Z = Future Tactics: The Uprising GFUP6V = Future Tactics: The Uprising GFVE5D = NFL Blitz Pro GFWE78 = The Fairly OddParents: Breakin' Da Rules GFXE5D = Freestyle Metal X GFYE69 = FIFA Street 2 GFYP69 = FIFA Street 2 GFZE01 = F-Zero GX GFZJ01 = F-Zero GX GFZJ8P = F-Zero AX GFZP01 = F-Zero GX GG1J08 = Donkey Kong: Jungle Fever GG2E4Z = Trigger Man GG3J08 = Donkey Kong: Banana Kingdom GG4E08 = Gotcha Force GG4P08 = Gotcha Force GG5E52 = Cabela's Big Game Hunter 2005 GGAJB2 = Mobile Suit Gundam: The Ace Pilot GGCE0A = Goblin Commander: Unleash The Horde GGCP0A = Goblin Commander: Unleash the Horde GGEE41 = Beyond Good & Evil GGEP41 = Beyond Good And Evil GGEX41 = Beyond Good And Evil GGEY41 = Beyond Good And Evil GGFJ01 = GiFTPiA GGNE5D = The Grim Adventures of Billy and Mandy GGPE01 = Mario Kart Arcade GP GGPE02 = Mario Kart Arcade GP 2 GGPJ02 = Mario Kart Arcade GP 2 GGPJAF = SD Gundam Gashapon Wars GGPJB2 = SD Gundam Gashapon Wars GGRD41 = Tom Clancy's Ghost Recon GGRE41 = Tom Clancy's Ghost Recon GGRP41 = Tom Clancy's Ghost Recon GGSEA4 = Metal Gear Solid: The Twin Snakes GGSJA4 = Metal Gear Solid: The Twin Snakes GGSPA4 = Metal Gear Solid: The Twin Snakes GGTE01 = Chibi-Robo! GGTJ01 = Chibi-Robo! GGTP01 = Chibi-Robo! GGVD78 = Spongebob Squarepants : The Movie GGVE78 = SpongeBob SquarePants: The Movie GGVP78 = Spongebob Squarepants: The Movie GGVX78 = Bob l'Eponge : Le Film GGYE41 = Tom Clancy's Ghost Recon 2 GGYP41 = Tom Clancy's Ghost Recon 2 GGZE52 = Madagascar GGZH52 = Madagascar GGZI52 = Madagascar GGZJB2 = Madagascar GGZP52 = Madagascar GGZS52 = Madagascar GGZX52 = Madagascar GH2E69 = Need for Speed: Hot Pursuit 2 GH2P69 = Need for Speed : Poursuite Infernale 2 GH3E69 = NHL 2003 GH3P69 = NHL 2003 GH4D69 = Harry Potter and the Goblet of Fire GH4E69 = Harry Potter and the Goblet of Fire GH4F69 = Harry Potter et la Coupe de Feu GH4H69 = Harry Potter and the Goblet of Fire GH4I69 = Harry Potter and the Goblet of Fire GH4J69 = Harry Potter to Honoo no Goblet GH4M69 = Harry Potter and the Goblet of Fire GH4P69 = Harry Potter and the Goblet of Fire GH4S69 = Harry Potter and the Goblet of Fire GH5D52 = Over The Hedge GH5E52 = Over The Hedge GH5F52 = Nos Voisins, les Hommes GH5P52 = Over The Hedge GH6EAF = Hello Kitty: Roller Rescue GH6P7N = Hello Kitty: Roller Rescue GH7E5D = Happy Feet GH9P52 = Tony Hawk's American Wasteland GHAE08 = Resident Evil 2 GHAJ08 = Biohazard 2 GHAP08 = Resident Evil 2 GHBE7D = The Hobbit GHBP7D = Bilbo le Hobbit GHCD4Q = Chicken Little GHCE4Q = Chicken Little GHCF4Q = Chicken Little GHCJG9 = Chicken Little GHCP4Q = Chicken Little GHEJ91 = Homeland GHFE4Z = Pinball Hall Of Fame: The Gottlieb Collection GHGEEB = Go! Go! Hypergrind GHKD7D = Hulk GHKE7D = Hulk GHKF7D = Hulk GHKP7D = Hulk GHKS7D = Hulk GHLE69 = Harry Potter and the Sorcerer's Stone GHLJ69 = Harry Potter to Kenja no Ishi GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Sorcerer's Stone GHLY69 = Harry Potter à l'école des sorciers GHLZ69 = Harry Potter and the Sorcerer's Stone GHMD4F = Hitman 2: Silent Assassin GHME4F = Hitman 2: Silent Assassin GHMF4F = Hitman 2: Silent Assassin GHMP4F = Hitman 2: Silent Assassin GHNE71 = Hunter: The Reckoning GHNX71 = Hunter: The Reckoning GHPE52 = Street Hoops GHQE7D = The Simpsons: Hit & Run GHQP7D = The Simpsons: Hit & Run GHRE78 = Hot Wheels: World Race GHRP78 = Hot Wheels: World Race GHSE69 = Harry Potter and the Chamber of Secrets GHSJ69 = Harry Potter to Himitsu no Heya GHSP69 = Harry Potter and the Chamber of Secrets GHSX69 = Harry Potter and the Chamber of Secrets GHSY69 = Harry Potter et la Chambre des Secrets GHTJA4 = Hikaru No Go 3 GHUE7D = The Incredible Hulk: Ultimate Destruction GHUF7D = The Incredible Hulk Ultimate Destruction GHUP7D = The Incredible Hulk Ultimate Destruction GHVE08 = Disney's Hide & Sneak GHVP08 = Disney Cache-Cache Furtif GHWE78 = Hot Wheels: Velocity X GHWP78 = Hot Wheels: Velocity X GHYE6S = The Haunted Mansion GHZE5D = NHL Hitz Pro GI2J18 = Momotarou Dentetsu 12 GIAE7D = Ice Age 2: The Meltdown GIAP7D = L'Age de Glace 2 GIBE4F = The Italian Job GIBP4F = The Italian Job GICD78 = The Incredibles GICE78 = The Incredibles GICF78 = Les Indestructibles GICH78 = The Incredibles GICJG9 = Mr. Inkurediburu GICP78 = The Incredibles GIFJDQ = Generation of Chaos Exceed GIGJ8P = Bleach GC: Tasogare Ni Mamieru Shinigami GIHD78 = Scooby-Doo! Night of 100 Frights GIHE78 = Scooby-Doo! Night of 100 Frights GIHP78 = Scooby-Doo! : La Nuit des 100 Frissons GIIJ18 = Momotarou Dentetsu 11 GIJEFP = Space Raiders GIJJC0 = Space Raiders GIKE70 = Ikaruga GIKJ70 = Ikaruga GIKP70 = Ikaruga GILE51 = Aggressive Inline GILP51 = Aggressive Inline GINE69 = Batman Begins GINX69 = Batman Begins GIPEAF = Shonen Jump's One Piece: Pirates Carnival GIPJB2 = Shonen Jump's One Piece: Pirates Carnival GIQE78 = The Incredibles: Rise of the Underminer GIQJ8P = The Incredibles: Rise of the Underminer GIQP78 = The Incredibles: Rise of the Underminer GIQX78 = Les Indestructibles: La Terrible Attaque du Démolisseur GIQY78 = The Incredibles: Rise of the Underminer GISE36 = Second Sight GISP36 = Second Sight GITE01 = Geist GITP01 = Geist GIVE4Z = Intellivision Lives GIZE52 = Ty the Tasmanian Tiger 3: Night of the Quinkan GJ2JCM = Jikkyou World Soccer 2002 GJ2PA4 = International Superstar Soccer 2 GJ3PA4 = International Superstar Soccer 3 GJBE18 = Bomberman Jetters GJBE5G = Bomberman Jetters GJBJ18 = Bomberman Jetters GJCE8P = Samurai Jack: The Shadow of Aku GJCP8P = Samurai Jack: The Shadow of Aku GJDE5S = Judge Dredd: Dredd vs. Death GJDX7D = Judge Dredd: Dredd vs. Death GJDY7D = Judge Dredd: Dredd vs. Death GJFE78 = Jimmy Neutron Jet Fusion GJFP78 = Jimmy Neutron Jet Fusion GJKD52 = Star Wars Jedi Knight II: Jedi Outcast GJKE52 = Star Wars Jedi Knight II: Jedi Outcast GJKF52 = Star Wars Jedi Knight II: Jedi Outcast GJKP52 = Star Wars Jedi Knight II: Jedi Outcast GJNE78 = Jimmy Neutron Boy Genius GJNP78 = Jimmy Neutron Boy Genius GJPJCM = Jikkyou Powerful Pro Yakyuu 11 GJSJ18 = Hudson Selection Vol. 2: Star Soldier GJUD78 = Tak and the Power of JuJu GJUE78 = Tak and the Power of Juju GJUF78 = Tak et le Pouvoir de Juju GJUP78 = Tak and the Power of JuJu GJWE78 = Tak: The Great JuJu Challenge GJWP78 = Tak: The Great JuJu Challenge GJXE51 = Vexx GJXP51 = Vexx GJYE78 = Jimmy Neutron: Attack of the Twonkies GJYP78 = Jimmy Neutron Boy Genius: Attack of the Twonkies GJZE52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GJZP52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GK2D52 = Spider-Man 2 GK2E52 = Spider-Man 2 GK2F52 = Spider-Man 2 GK2P52 = Spider-Man 2 GK3E8P = NBA 2K3 GK3P8P = NBA 2K3 GK4E01 = Baten Kaitos Origins GK4J01 = Baten Kaitos II: Hajimari no Tsubasa to Kamigami no Shishi GK5E78 = Monster House GK5P78 = Monster House GK5X78 = Monster House GK6JA4 = Croket Banking No Kikiwosukue GK7E08 = Killer7 GK7J08 = Killer7 GK7P08 = Killer 7 GK9EA4 = Karaoke Revolution Party GKAE8P = Amazing Island GKAJ8P = Kaijuu no Shima: Amazing Island GKBEAF = Baten Kaitos Eternal Wings and the Lost Ocean GKBJAF = Baten Kaitos: Owaranai Tsubasa to Ushinawareta Umi GKBPAF = Baten Kaitos: Les ailes éternelles et l'océan perdu GKDJ01 = Kyojin no Doshin GKDP01 = Doshin the Giant GKEJA4 = PAWAFURU PUROYAKYU 12 KETTEIBAN GKFEGG = Chaos Field GKFJ8P = Chaos Field Expanded GKGE01 = Donkey Konga GKGJ01 = Donkey Konga GKGP01 = Donkey Konga GKHEA4 = King Arthur GKHPA4 = King Arthur GKJD78 = Cars GKJE78 = Cars GKJF78 = Cars: Quatre Roues GKJH78 = Cars GKJJ78 = Cars GKJP78 = Cars GKJS78 = Cars GKKE69 = Knockout Kings 2003 GKKP69 = Knockout Kings 2003 GKLD69 = Lord of the Rings: The Return of the King GKLE69 = Lord of the Rings: The Return of the King GKLF69 = Le Seigneur des Anneaux : Le Retour du Roi GKLI69 = Lord of the Rings: The Return of the King GKLJ69 = The Lord of the Rings: The Return of the King GKLP69 = Lord of the Rings: The Return of the King GKLS69 = Lord of the Rings: The Return of the King GKME41 = Prince of Persia: The Two Thrones GKMP41 = Prince of Persia: Les Deux Royaumes GKNEB2 = Ultimate Muscle: Legends vs. New Generation GKNJB2 = Kinnikuman Nisei: Shinsedai Choujin vs Densetsu Choujin GKOE70 = Kao The Kangaroo Round 2 GKOP6V = Kao The Kangaroo Round 2 GKPJA4 = Jikkyou Powerful Pro Yakyuu 12 GKQJ01 = Kururin Squash! GKREB2 = Ribbit King GKRPB2 = Ribbit King GKSE52 = Kelly Slater's Pro Surfer GKSP52 = Kelly Slater's Pro Surfer GKSX52 = Kelly Slater's Pro Surfer GKTJA4 = Captain Tsubasa: Ougon Sedai no Chousen GKUE9G = Scaler GKWJ18 = DreamMix TV World Fighters GKXJE7 = Kiwame Mahjong DX2 GKYE01 = Kirby Air Ride GKYJ01 = Kirby Airride GKYP01 = Kirby Air Ride GKZD9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZE9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZF9G = Kids Next Door - Operation - J.E.U.V.I.D.E.O GKZP54 = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GL2E51 = Legends of Wrestling 2 GL2P51 = Legends of Wrestling II GL3JE8 = Lupin The Third - Umi Ni Kieta Hihou GL5E4F = LEGO Star Wars: The Video Game GL5P4F = LEGO Star Wars: The Video Game GL5X4F = Lego Star Wars : Le Jeu Vidéo GL7E64 = LEGO Star Wars II: The Original Trilogy GL7P64 = Lego Star Wars II: La Trilogie Originale GL8D4F = Lara Croft Tomb Raider: Legend GL8E4F = Lara Croft Tomb Raider: Legend GL8F4F = Lara Croft Tomb Raider: Legend GL8P4F = Lara Croft Tomb Raider: Legend GLBE8P = Home Run King GLCD52 = Lemony Snickets A Series Of Unfortunate Events GLCE52 = Lemony Snickets A Series Of Unfortunate Events GLCF52 = Les Desastreuses Aventures des Orphelins Baudelaire GLCP52 = Lemony Snickets A Series Of Unfortunate Events GLCS52 = Lemony Snickets A Series Of Unfortunate Events GLEE08 = Resident Evil 3: Nemesis GLEJ08 = BioHazard 3: Last Escape GLEP08 = Resident Evil 3: Nemesis GLGP41 = Largo Winch : Aller Simple pour les Balkans GLHEG9 = Flushed Away GLHPG9 = Souris City GLIJA7 = Special Jinsei Game GLJJMS = Radirgy GLLE78 = Ratatouille GLLF78 = Ratatouille GLME01 = Luigi's Mansion GLMJ01 = Luigi's Mansion GLMP01 = Luigi's Mansion GLNE69 = Looney Tunes: Back in Action GLNP69 = Les Looney Tunes Passent à l'Action GLOD69 = Lord of the Rings: The Two Towers GLOE69 = Lord of the Rings: The Two Towers GLOF69 = Le Seigneur des Anneaux : Les Deux Tours GLOI69 = Lord of the Rings: The Two Towers GLOP69 = Lord of the Rings: The Two Towers GLOS69 = Lord of the Rings: The Two Towers GLQE41 = Tom Clancy's Rainbow Six: Lockdown GLQP41 = Tom Clancy's Rainbow Six: Lockdown GLRD64 = Star Wars Rogue Squadron III: Rebel Strike GLRE64 = Star Wars Rogue Squadron III: Rebel Strike GLRF64 = Star Wars Rogue Squadron III: Rebel Strike GLRJ13 = Star Wars Rogue Squadron III: Rebel Strike GLRP64 = Star Wars Rogue Squadron III: Rebel Strike GLSD64 = Gladius GLSE64 = Gladius GLSF64 = Gladius GLSP64 = Gladius GLUE7U = Lotus Challenge GLVD4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVE4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVF4Q = Le Monde de Narnia: Le Lion, la Sorcière et l'Armoire Magique GLVP4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLWE51 = Legends of Wrestling GLWP51 = Legends of Wrestling GLXJ29 = Legend of Golfer GLYE69 = NBA Live 2005 GLYP69 = NBA Live 2005 GLZD69 = James Bond 007: From Russia With Love GLZE69 = 007: From Russia With Love GLZF69 = 007 : Bons Baisers de Russie GLZP69 = James Bond 007: From Russia With Love GM2E8P = Super Monkey Ball 2 GM2J8P = Super Monkey Ball 2 GM2P8P = Super Monkey Ball 2 GM3E69 = Madden NFL 2003 GM3P69 = Madden NFL 2003 GM4E01 = Mario Kart: Double Dash!! GM4J01 = Mario Kart: Double Dash!! GM4P01 = Mario Kart: Double Dash!! GM5D7D = Metal Arms: Glitch in the System GM5E7D = Metal Arms: Glitch in the System GM5F7D = Metal Arms: Glitch in the System GM5P7D = Metal Arms: Glitch in the System GM6EE9 = Medabots Infinity GM6PE9 = Medabots Infinity GM8E01 = Metroid Prime GM8J01 = Metroid Prime GM8P01 = Metroid Prime GM9E6S = Muppets Party Cruise GMAE51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMAP51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMBE8P = Super Monkey Ball GMBJ8P = Super Monkey Ball GMBP8P = Super Monkey Ball GMDE69 = Madden NFL 2002 GMEE70 = Men In Black II: Alien Escape GMEP70 = Men In Black II: Alien Escape GMFD69 = Medal of Honor: Frontline GMFE69 = Medal of Honor: Frontline GMFF69 = Medal of Honor : En Première Ligne GMFI69 = Medal of Honor: Frontline GMFP69 = Medal of Honor: Frontline GMFS69 = Medal of Honor: Frontline GMHE52 = Mat Hoffmans Pro Bmx 2 GMHF52 = Mat Hoffman's Pro BMX 2 GMHP52 = Mat Hoffman's Pro BMX 2 GMIE70 = Mission Impossible: Operation Surma GMIP70 = Mission Impossible: Operation Surma GMJE41 = Monster Jam: Maximum Destruction GMJP41 = Monster Jam: Maximum Destruction GMKD5D = Mortal Kombat: Deadly Alliance GMKE5D = Mortal Kombat: Deadly Alliance GMKP5D = Mortal Kombat: Deadly Alliance GMLEA4 = ESPN MLS Extra Time 2002 GMNE78 = Monsters, Inc. Scream Arena GMNP78 = Monstres & Cie : Crazy Balls GMOP70 = Micro Machines GMPE01 = Mario Party 4 GMPJ01 = Mario Party 4 GMPP01 = Mario Party 4 GMQE70 = Monopoly Party GMQP70 = Monopoly Party GMRE70 = Big Air Freestyle GMRP70 = Big Air Freestyle GMSE01 = Super Mario Sunshine GMSJ01 = Super Mario Sunshine GMSP01 = Super Mario Sunshine GMTE69 = Disney's Party GMTP69 = Disney's Party GMUE5D = Dr. Muto GMWD52 = Minority Report: Everybody Runs GMWE52 = Minority Report: Everybody Runs GMWF52 = Minority Report: Le futur vous rattrape GMWP52 = Minority Report: Everybody Runs GMXE70 = Enter The Matrix GMXJB2 = Enter The Matrix GMXP70 = Enter The Matrix GMYJ8P = Gekitou Pro Yakyuu GMZE41 = Monster 4x4: Masters Of Metal GN2E70 = Nascar: Dirt To Daytona GN3E5D = NHL Hitz 2003 GN3P5D = NHL Hitz 2003 GN4E69 = Nascar 2005: Chase For The Cup GN5E69 = NHL 2005 GN5P69 = NHL 2005 GN6E69 = NHL 06 GN6P69 = NHL 06 GN7E69 = NFL Street 2 GN7P69 = NFL Street 2 GN8E69 = NBA Live 2004 GN8P69 = NBA Live 2004 GN9E70 = Nickelodeon Party Blast GNAE8P = NCAA College Football 2K3 GNBE01 = NBA Courtside 2002 GNBP01 = NBA Courtside 2002 GNCE69 = Nascar Thunder 2003 GNDD69 = Need For Speed Underground GNDE69 = Need For Speed Underground GNDF69 = Need For Speed Underground GNDP69 = Need For Speed Underground GNED78 = Finding Nemo GNEE78 = Finding Nemo GNEF78 = Le Monde De Némo GNEP78 = Finding Nemo GNES78 = Finding Nemo GNFE5D = NFL Blitz 2002 GNGE69 = NCAA Football 2003 GNHE5D = NHL Hitz 2002 GNHP5D = NHL Hitz 20-02 GNIEA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNIPA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNJEAF = I-Ninja GNKE8P = NCAA College Basketball 2K3 GNLE69 = NBA Live 2003 GNLP69 = NBA Live 2003 GNMEAF = Namco Museum GNNE69 = NFL Street GNNP69 = NFL Street GNOE78 = Nicktoons Unite! GNOX78 = Spongebob Squarepants & Friends: Unite! GNPP70 = Nickelodeon Party Blast GNQE69 = Madden NFL 2005 GNQP69 = Madden NFL 2005 GNREDA = Naruto Clash of Ninja GNRJDA = NARUTO Gekitô Ninja Taisen! GNSE69 = NBA Street GNSJ69 = NBA Street GNUEDA = Naruto Clash of Ninja 2 GNUJDA = Naruto: Gekitou Ninja Taisen! 2 GNUPDA = Naruto: Clash of Ninja - European Version GNVE69 = NHL 2004 GNVP69 = NHL 2004 GNWE69 = Def Jam: Fight For NY GNWP69 = Def Jam: Fight For NY GNXE69 = NCAA Football 2004 GNZE69 = NBA Street Vol.2 GNZP69 = NBA Street Vol.2 GO2D4F = Blood Omen 2: The Legacy of Kain Series GO2E4F = Blood Omen 2: The Legacy of Kain Series GO2F4F = Blood Omen 2: The Legacy of Kain Series GO2P4F = Blood Omen 2: The Legacy of Kain Series GO3E5D = NFL Blitz 2003 GO7D69 = James Bond 007: NightFire GO7E69 = 007: NightFire GO7F69 = James Bond 007: NightFire GO7P69 = James Bond 007: NightFire GO7S69 = James Bond 007: NightFire GOAE52 = Cabela's Outdoor Adventures GOBE4Z = Bad Boys: Miami Takedown GOBP7N = Bad Boys II GOCE5D = RoadKill GODJGA = Ohenro-San: Hosshin no Dojo GOFE7L = Outlaw Golf GOFP6S = Outlaw Golf GOGJB2 = One Piece: Grand Battle! 3 GOME01 = Mario Power Tennis GOMJ01 = Mario Tennis GC GOMP01 = Mario Power Tennis GOND69 = Medal of Honor: European Assault GONE69 = Medal of Honor: European Assault GONF69 = Medal of Honor : Les Faucons de Guerre GONJ13 = Medal of Honor: Europa Kyoushuu GONP69 = Medal of Honor: European Assault GOOE01 = Odama GOOJ01 = Odama GOOP01 = Odama GOPEB2 = Shonen Jump's One Piece: Grand Battle GOPJB2 = One Piece: Grand Battle! Rush GOQE82 = One Piece: Grand Adventure GOQEAF = Shonen Jump's One Piece: Grand Adventure GOSE41 = Open Season GOSP41 = Les Rebelles de la Forêt GOSX41 = Open Season GOUPNK = Cocoto Funfair GOWD69 = Need For Speed Most Wanted GOWE69 = Need For Speed Most Wanted GOWF69 = Need For Speed Most Wanted GOWJ69 = Need For Speed Most Wanted GOWP69 = Need For Speed Most Wanted GOYD69 = GoldenEye: Rogue Agent GOYE69 = GoldenEye: Rogue Agent GOYF69 = GoldenEye : Au service du Mal GOYP69 = GoldenEye: Rogue Agent GOYS69 = GoldenEye: Rogue Agent GP2EAF = Pac-Man World 2 GP2P69 = Pac-Man World 2 GP3E78 = The Polar Express GP3P78 = Le Pole Express GP4J18 = Hudson Selection Vol. 3: Bonk's Adventure GP5E01 = Mario Party 5 GP5J01 = Mario Party 5 GP5P01 = Mario Party 5 GP6E01 = Mario Party 6 GP6J01 = Mario Party 6 GP6P01 = Mario Party 6 GP7E01 = Mario Party 7 GP7J01 = Mario Party 7 GP7P01 = Mario Party 7 GP8EAF = Pac-Man World 3 GP8P69 = Pac-Man World 3 GP8PAF = Pac-Man World 3 GP9E7F = Rogue Ops GP9P7F = Rogue Ops GPAE01 = Pokémon Channel GPAJ01 = Pokémon Channel GPAP01 = Pokémon Channel GPAU01 = Pokémon Channel GPDE51 = Dakar 2: The World's Ultimate Rally GPDP51 = Dakar 2: The World's Ultimate Rally GPEJ2Q = Pool Edge GPHD52 = Pitfall: The Lost Expedition GPHE52 = Pitfall: The Lost Expedition GPHF52 = Pitfall: L'Expédition Perdue GPHP52 = Pitfall: The Lost Expedition GPIE01 = Pikmin GPIJ01 = Pikmin GPIP01 = Pikmin GPJJCM = Jikkyou Powerful Pro Yakyuu 10 GPKE41 = Disney's PK Out of the Shadows GPLD9G = Piglet's Big Game GPLE9G = Piglet's Big Game GPLF9G = Les Aventures de Porcinet GPLP9G = Piglet's Big Game GPMEAF = Pac Man Fever GPNE08 = P.N.03 GPNJ08 = P.N.03 GPNP08 = P.N.03 GPOE8P = Phantasy Star Online Episode I & II GPOJ8P = Phantasy Star Online Episode I & II GPOP8P = Phantasy Star Online Episode I&II GPPJCM = Jikkyou Powerful Pro Yakyuu 9 GPQE6L = The Powerpuff Girls: Relish Rampage GPQP6L = The Powerpuff Girls: L'Attaque des Aromates GPRE7U = Pool Paradise GPRP7U = Pool Paradise GPSE8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPSJ8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPSP8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPTE41 = Prince of Persia: The Sands of Time GPTP41 = Prince of Persia: The Sands of Time GPUE8P = Puyo Pop Fever GPUP6W = Puyo Pop Fever GPUP8P = Puyo Pop Fever GPVE01 = Pikmin 2 GPVJ01 = Pikmin 2 GPVP01 = Pikmin 2 GPWEAF = Spawn: Armageddon GPWP69 = Spawn: Armageddon GPWPAF = Spawn: Armageddon GPXE01 = Pokémon Box: Ruby & Sapphire GPXJ01 = Pokémon Box: Ruby & Sapphire GPXP01 = Pokémon Box : Rubis & Saphir GPYJ8P = Puyo Pop Fever GPZJ01 = Nintendo Puzzle Collection GQ4E78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ4F78 = Bob L'éponge: La Créature du Crabe Croustillant GQ4P78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ8E69 = Madden NFL 08 GQBE51 = NFL Quarterback Club 2002 GQCD52 = Call of Duty 2: Big Red One GQCE52 = Call of Duty 2: Big Red One GQCF52 = Call of Duty 2: Big Red One GQCP52 = Call of Duty 2: Big Red One GQCS52 = Call of Duty 2: Big Red One GQFFFK = Franklin: Un anniversaire surprise GQLE9G = Dora The Explorer: Journey To The Purple Planet GQLP54 = Dora l'Exploratrice: Voyage sur la Planète Violette GQNE5D = Mortal Kombat: Deception GQPE78 = SpongeBob SquarePants: Battle for Bikini Bottom GQPP78 = Bob l'Eponge: Bataille pour Bikini Bottom GQQD78 = SpongeBob SquarePants: Lights, Camera, PANTS! GQQE78 = SpongeBob SquarePants: Lights, Camera, Pants! GQQF78 = Bob L'éponge : Silence on tourne! GQQH78 = SpongeBob SquarePants: Lights, Camera, Pants! GQQP78 = SpongeBob SquarePants: Lights, Camera, Pants! GQRJ18 = Hudson Selection Vol. 1: Cubic Lode Runner GQSDAF = Tales of Symphonia GQSEAF = Tales of Symphonia GQSFAF = Tales of Symphonia GQSIAF = Tales of Symphonia GQSPAF = Tales of Symphonia GQSSAF = Tales of Symphonia GQTE4Q = Meet the Robinsons GQWE69 = Harry Potter: Quidditch World Cup GQWJ69 = Harry Potter World Cup GQWP69 = Harry Potter: Quidditch World Cup GQWX69 = Harry Potter: Coupe du Monde de Quidditch GQXE69 = Madden NFL 2004 GQXP69 = Madden NFL 2004 GQZJ01 = Densetsu no Quiz Ou Ketteisen GR2E52 = Lost Kingdoms 2 GR2JCQ = Rune II: Koruten no Kagi no Himitsu GR2P52 = Les Royaumes Perdus II GR3E5D = Red Card 2003 GR4EMZ = MC Groovz Dance Craze GR4PMZ = MC Groovz Dance Craze GR5J1K = Robocop: Aratanaru Kiki GR6D78 = Bratz: Rock Angelz GR6E78 = Bratz: Rock Angelz GR6F78 = Bratz: Rock Angelz GR6P78 = Bratz: Rock Angelz GR8D69 = Medal of Honor: Rising Sun GR8E69 = Medal of Honor: Rising Sun GR8F69 = Medal of Honor : Soleil Levant GR8J69 = Medal of Honor: Rising Sun GR8P69 = Medal of Honor: Rising Sun GR9E6L = Reign of Fire GR9P6L = Le Règne Du Feu GRAE5Z = Rally Championship GRAP75 = Rally Championship GRBE6S = Robotech: Battlecry GRBP6S = Robotech : Battlecry GRDP5D = RedCard GREE08 = Mega Man Network Transmission GREJ08 = RockMan EXE Transmission GREP08 = Mega Man Network Transmission GRFD78 = Red Faction II GRFE78 = Red Faction II GRFF78 = Red Faction II GRFP78 = Red Faction II GRHE41 = Rayman 3: Hoodlum Havoc GRHP41 = Rayman 3: Hoodlum Havoc GRJEAF = R: Racing Evolution GRJJAF = R:Racing Evolution: Life in the Fast Lane GRJP69 = R: Racing GRKE41 = Rocky GRKP7G = Rocky GRLE41 = Pro Rally GRLP41 = Pro Rally GRMJDA = Monopoly: Mezase!! Daifugou Jinsei!! GRNE52 = Lost Kingdoms GRNJCQ = Rune GRNP52 = Les Royaumes Perdus GROE5Z = Road Trip: The Arcade Edition GROP7J = Gadget Racers GRQE41 = City Racer GRRE78 = Rugrats: Royal Ransom GRRP78 = Rugrats: Royal Ransom GRSEAF = SoulCalibur II GRSJAF = SoulCalibur II GRSPAF = SoulCalibur II GRUE78 = Power Rangers Dino Thunder GRUF78 = Power Rangers : Dino Tonnerre GRUP78 = Power Rangers Dino Thunder GRVEA4 = Rave Master GRWJD9 = Super Robot Taisen GC GRYE41 = Rayman Arena GS2D78 = Summoner: A Goddess Reborn GS2E78 = Summoner: A Goddess Reborn GS2F78 = Summoner : La Déesse Réincarnée GS2P78 = Summoner: A Goddess Reborn GS3E51 = SX Superstar GS3P51 = SX Superstar GS7E5D = MLB SlugFest 2004 GS8E7D = Spyro: Enter the Dragonfly GS8P7D = Spyro: Enter the Dragonfly GS9E6S = Shrek Extra Large GS9P6S = Shrek Extra Large GSAE01 = Star Fox Adventures GSAJ01 = StarFox Adventures GSAP01 = Star Fox Adventures GSBJ8P = Sonic Adventure 2: Battle GSCE51 = Jeremy McGrath SuperCross World GSCP51 = Jeremy McGrath SuperCross World GSDEAF = Smashing Drive GSEJB2 = Shaman King: Soul Fight GSGE5D = MLB SlugFest 2003 GSHE5D = SpyHunter GSHP5D = SpyHunter GSKE7D = The Scorpion King: Rise of the Akkadian GSKP7D = Le Roi Scorpion : L'Ascension de l'Akkadien GSMD52 = Spider-Man GSME52 = Spider-Man: The Movie GSMF52 = Spider-Man GSMP52 = Spider-Man GSNE8P = Sonic Adventure 2: Battle GSNP8P = Sonic Adventure 2: Battle GSOE8P = Sonic Mega Collection GSOJ8P = Sonic Mega Collection GSOP8P = Sonic Mega Collection GSPE69 = The Simpsons: Road Rage GSPP69 = The Simpsons: Road Rage GSQE78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSQP78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSRE7S = Smuggler's Run: Warzones GSRP7S = Smuggler's Run: Warzones GSSE8P = Sega Soccer Slam GSSJ8P = Sega Soccer Slam GSSP70 = Sega Soccer Slam GSSP8P = Sega Soccer Slam GSTE69 = SSX Tricky GSTJ69 = SSX Tricky GSTP69 = SSX Tricky GSUE70 = Superman: Shadow of Apokolips GSUP70 = Superman: Shadow of Apokolips GSVE78 = MX Superfly Featuring Ricky Carmichael GSVP78 = MX Superfly featuring Ricky Carmichael GSWD64 = Star Wars Rogue Leader: Rogue Squadron II GSWE64 = Star Wars Rogue Squadron II: Rogue Leader GSWF64 = Star Wars Rogue Leader: Rogue Squadron II GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = Star Wars Rogue Leader: Rogue Squadron II GSWP64 = Star Wars Rogue Leader: Rogue Squadron II GSWS64 = Star Wars Rogue Leader: Rogue Squadron II GSXD64 = Star Wars: The Clone Wars GSXE64 = Star Wars: The Clone Wars GSXF64 = Star Wars: The Clone Wars GSXJ13 = Star Wars: Clone Sensou GSXP64 = Star Wars: The Clone Wars GSXS64 = Star Wars: The Clone Wars GSYE6S = Shrek: Super Party GSYP6S = Shrek: Super Party GSZP41 = Speed Challenge: Jacques Villeneuve Racing Vision GT2J18 = Tengai Makyou 2: Manji Maru GT3D52 = Tony Hawk's Pro Skater 3 GT3E52 = Tony Hawk's Pro Skater 3 GT3F52 = Tony Hawk's Pro Skater 3 GT3J52 = Tony Hawk's Pro Skater 3 GT3P52 = Tony Hawk's Pro Skater 3 GT4D52 = Tony Hawk's Pro Skater 4 GT4E52 = Tony Hawk's Pro Skater 4 GT4F52 = Tony Hawk's Pro Skater 4 GT4P52 = Tony Hawk's Pro Skater 4 GT5E7N = Starsky & Hutch GT5P7N = Starsky & Hutch GT6E70 = Terminator 3: The Redemption GT6J70 = Terminator 3: The Redemption GT6P70 = Terminator 3: The Redemption GT7E41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7P41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7X41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT8E78 = Big Mutha Truckers GT8P78 = Big Mutha Truckers GT8P7N = Big Mutha Truckers GTAE5S = Top Angler : Real Bass Fishing GTAP5S = Top Angler: Real Bass Fishing GTCJBL = GT Cube GTDE52 = Tony Hawk's Underground GTDP52 = Tony Hawk's Underground GTEE01 = 1080° Avalanche GTEJ01 = 1080° Silver Storm GTEP01 = 1080° Avalanche GTFEA4 = Teenage Mutant Ninja Turtles GTFPA4 = Teenage Mutant Ninja Turtles GTGE60 = Top Gun: Combat Zones GTGP60 = Top Gun: Combat Zones GTHJD9 = Charinko Hero GTIE69 = Tiger Woods PGA Tour 2003 GTIP69 = Tiger Woods PGA Tour 2003 GTJE5L = Tom & Jerry in War of the Whiskers GTKD51 = Turok Evolution GTKE51 = Turok Evolution GTKP51 = Turok Evolution GTLE52 = True Crime: Streets of LA GTLP52 = True Crime: Streets of LA GTLX52 = True Crime: Streets of LA GTMJDA = Mutsu To Nohohon GTNJ18 = Hudson Selection Vol. 4: Adventure Island GTOJAF = Tales of Symphonia GTPP6S = Knights Of The Temple : Infernal Crusade GTQE6S = Tonka: Rescue Patrol GTRE78 = Tetris Worlds GTRP78 = Tetris Worlds GTSE4F = TimeSplitters 2 GTSP4F = TimeSplitters 2 GTUE8G = Tube Slider - The Championship of Future Formula GTVE70 = Transworld Surf: Next Wave GTWE70 = Taz Wanted GTWP70 = Taz Wanted GTYE69 = Ty the Tasmanian Tiger GTYP69 = Ty: Le Tigre de Tasmanie GTZE41 = Tarzan Untamed GTZP41 = Tarzan Freeride GU2D78 = 2 Games in 1: The Incredibles / Finding Nemo GU2F78 = 2 Games in 1: Les Indestructibles / Le Monde de Nemo GU3D78 = 2 Games in 1: The SpongeBob SquarePants Movie / Tak 2: The Staff of Dreams GU4Y78 = 2 Games in 1: The SpongeBob SquarePants Movie / Battle for Bikini Bottom GU6E78 = Nicktoons - Battle for Volcano Island GUBE69 = The Urbz: Sims in the City GUBJ13 = The Urbz: Sims In The City GUBP69 = Les Urbz: Les Sims in the City GUCD69 = UEFA Champions League 2004-2005 GUCF69 = UEFA Champions League 2004-2005 GUCP69 = UEFA Champions League 2004-2005 GUFE4Z = Ultimate Fighting Championship Throwdown GUFP4Z = UFC: Throwdown GUGD69 = Need For Speed Underground 2 GUGE69 = Need For Speed Underground 2 GUGF69 = Need For Speed Underground 2 GUGP69 = Need For Speed Underground 2 GUMD52 = Gun GUME52 = Gun GUMP52 = Gun GUNE5D = Gauntlet: Dark Legacy GUNP5D = Gauntlet: Dark Legacy GUPE8P = Shadow the Hedgehog GUPJ8P = Shadow the Hedgehog GUPP8P = Shadow the Hedgehog GUSE7F = Universal Studios Theme Park Adventure GUSP7F = Universal Studios Theme Park Adventure GUTD52 = Ultimate Spider-Man GUTE52 = Ultimate Spider-Man GUTF52 = Ultimate Spider-Man GUTI52 = Ultimate Spider-Man GUTJC0 = Ultimate Spider-Man GUTP52 = Ultimate Spider-Man GUTS52 = Ultimate Spider-Man GUVE51 = Freestyle Street Soccer GUVP51 = Urban Freestyle Soccer GUZE41 = Batman: Rise of Sin Tzu GUZP41 = Batman Rise of Sin Tzu GV3J70 = V-Rally 3 GV3P70 = V-Rally 3 GV4E69 = MVP Baseball 2005 GVCE08 = Viewtiful Joe: Red Hot Rumble GVCJ08 = Viewtiful Joe: Battle Carnival GVCP08 = Viewtiful Joe: Red Hot Rumble GVDE78 = Bratz Forever Diamondz GVDP78 = Bratz Forever Diamondz GVHE4F = Bionicle Heroes GVJE08 = Viewtiful Joe GVJJ08 = Viewtiful Joe GVJP08 = Viewtiful Joe GVKE52 = Cabela's Dangerous Hunts 2 GVLD69 = Marvel Nemesis: Rise of the Imperfects GVLE69 = Marvel Nemesis: Rise of the Imperfects GVLF69 = Marvel Nemesis : L'Avenement des Imparfaits GVLP69 = Marvel Nemesis: Rise of the Imperfects GVMP41 = Super Bust-A-Move All Stars GVOE69 = Bionicle GVOP69 = Bionicle GVPE69 = MVP Baseball 2004 GVRE7H = Grooverider Slot Car Thunder GVS46E = Virtua Striker 4 Ver.2006 GVS46J = Virtua Striker 4 Ver.2006 GVSE8P = Virtua Striker 2002 GVSJ8P = VIRTUA STRIKER 3 ver.2002 GVSJ9P = Virtua Striker 4 Ver.2006 GVSP8P = Virtua Striker 3 Ver. 2002 GVWJDQ = Gakuen Toshi Vara Noir Roses GW2E78 = WWE Day of Reckoning 2 GW2P78 = WWE Day of Reckoning 2 GW3E78 = WWE WrestleMania X8 GW3JG2 = WWE WrestleMania X8 GW3P78 = WWE Wrestlemania X8 GW4E69 = Tiger Woods PGA Tour 2004 GW4P69 = Tiger Woods PGA Tour 2004 GW5D69 = Need For Speed Carbon GW5E69 = Need For Speed Carbon GW5F69 = Need For Speed Carbon GW5P69 = Need For Speed Carbon GW6JEM = Winning Eleven 6 Final Evolution GW7D69 = James Bond 007 in Agent Under Fire GW7E69 = 007: Agent Under Fire GW7F69 = James bond 007 dans Espion pour Cible GW7P69 = James Bond 007 in Agent Under Fire GW8E52 = World Series of Poker GW9E78 = WWE WrestleMania XIX GW9JG2 = WWE WrestleMania XIX GW9P78 = WWE WrestleMania XIX GWAD8P = Spartan Total Warrior GWAE8P = Spartan Total Warrior GWAF8P = Spartan Total Warrior GWAP8P = Spartan Total Warrior GWBE41 = Worms Blast GWBP41 = Worms Blast GWDP6S = World Racing GWEE51 = 18 Wheeler: American Pro Trucker GWEP8P = 18 Wheeler American Pro Trucker GWGE4F = Swingerz Golf GWGJ4F = Wai Wai Golf GWGP4F = Ace Golf GWHE41 = Winnie The Pooh Rumbly Tumbly Adventures GWHP41 = Winnie l'Ourson: à la Recherche des Souvenirs Oubliés GWJE52 = Tony Hawk's American Wasteland GWKE41 = Peter Jackson's King Kong: The Official Game of the Movie GWKP41 = Peter Jackson's King Kong: The Official Game of the Movie GWLE6L = Wallace & Gromit in Project Zoo GWLP6L = Wallace & Gromit : Project Zoo GWLX6L = Wallace & Gromit dans Le Project Zoo GWME51 = Worms 3D GWMP8P = Worms 3D GWOE5G = Blowout GWPE78 = WWE Day of Reckoning GWPJG2 = WWE Day of Reckoning GWPP78 = WWE Day of Reckoning GWQE52 = Wreckless: The Yakuza Missions GWQP52 = Wreckless: The Yakuza Missions GWRE01 = Wave Race: Blue Storm GWRJ01 = Wave Race: Blue Storm GWRP01 = Wave Race: Blue Storm GWSEA4 = ESPN International Winter Sports 2002 GWSJA4 = Hyper Sports 2002 Winter GWSPA4 = ESPN International Winter Sports GWTEA4 = WTA Tour Tennis GWTJA4 = WTA Tour Tennis GWTPA4 = Pro Tennis WTA Tour GWUE7D = Whirl Tour GWUP7D = Whirl Tour GWVE52 = X2: Wolverine's Revenge GWVP52 = X-Men 2: Wolverine's Revenge GWVX52 = X-Men 2 : La Vengeance de Wolverine GWWE01 = Wario World GWWJ01 = Wario World GWWP01 = Wario World GWYE41 = Tom Clancy's Splinter Cell: Double Agent GWYX41 = Tom Clancy's Splinter Cell: Double Agent GWZE01 = Dance Dance Revolution: Mario Mix GWZJ01 = Dance Dance Revolution: Mario Mix GWZP01 = Dancing Stage Mario Mix GX2D52 = X-Men Legends II: Rise of Apocalypse GX2E52 = X-Men Legends II: Rise of Apocalypse GX2P52 = X-Men Legends II : L'Avenement d'Apocalypse GX2S52 = X-Men Legends II: Rise of Apocalypse GX3E41 = XIII GX3P41 = XIII GX3X41 = XIII GXAE51 = XGRA Extreme G Racing Association GXAP51 = XGRA Extreme G Racing Association GXBE69 = SSX 3 GXBP69 = SSX 3 GXCE01 = Custom Robo GXEE8P = Sonic Riders GXEJ8P = Sonic Riders GXEP8P = Sonic Riders GXFD69 = FIFA Football 2004 GXFE69 = FIFA Soccer 2004 GXFF69 = FIFA Football 2004 GXFI69 = FIFA Football 2004 GXFP69 = FIFA Football 2004 GXFS69 = FIFA Football 2004 GXGE08 = Mega Man X Collection GXLE52 = X-Men Legends GXLP52 = X-Men Legends GXLX52 = X-Men Legends GXME52 = X-Men: Next Dimension GXMF52 = X-Men: Next Dimension GXMP52 = X-Men: Next Dimension GXNE5D = Rampage Total Destruction GXOE69 = SSX on Tour GXOJ69 = SSX On Tour with Mario GXOP69 = SSX On Tour GXOX69 = SSX On Tour GXPE78 = Sphinx and the Cursed Mummy GXPP78 = Sphinx et la Malédiction de la Momie GXQF41 = Taxi 3 GXRE08 = Mega Man X: Command Mission GXRJ08 = Rockman X: Command Mission GXRP08 = Mega Man X: Command Mission GXSE8P = Sonic Adventure DX: Director's Cut GXSP6W = Sonic Adventure DX : Director's Cut GXSP8P = Sonic Adventure DX: Director's Cut GXUE41 = Surf's Up GXXE01 = Pokémon XD: Gale of Darkness GXXJ01 = Pokemon XD: Yami no Kaze Dark Lugia GXXP01 = Pokémon XD : Le Souffle Des Ténèbres GY2E01 = Donkey Konga 2 GY2J01 = Donkey Konga 2 GY2P01 = Donkey Konga 2 GY3J01 = Donkey Konga 3 GYAD78 = Barnyard GYAE78 = Barnyard GYAP78 = Barnyard GYAX78 = La Ferme en Folie GYBE01 = Donkey Kong Jungle Beat GYBJ01 = Donkey Kong Jungle Beat GYBP01 = Donkey Kong Jungle Beat GYFEA4 = Yu-Gi-Oh! The Falsebound Kingdom GYFJA4 = Yu-Gi-Oh! The Falsebound Kingdom GYFPA4 = Yu-Gi-Oh! L'Empire des Illusions GYKEB2 = Zatch Bell! Mamodo Battles GYMJA4 = Jikkyou Powerful Major League GYQE01 = Mario Superstar Baseball GYQJ01 = Super Mario Stadium Miracle Baseball GYQP01 = Mario Superstar Baseball GYRE41 = TMNT GYRP41 = TMNT GYTE69 = Ty The Tasmanian Tiger 2: Bush Rescue GYTP69 = Ty : Le Tigre de Tasmanie 2: Opération Sauvetage GYWDE9 = Harvest Moon: A Wonderful Life GYWEE9 = Harvest Moon: A Wonderful Life GYWJ99 = Bokujou Monogatari: Wonderful Life GYWP41 = Harvest Moon: A Wonderful Life GYWPE9 = Harvest Moon: A Wonderful Life GZ2E01 = The Legend of Zelda: Twilight Princess GZ2J01 = Zelda no Densetsu: Twilight Princess GZ2P01 = The Legend of Zelda: Twilight Princess GZ3E70 = Dragon Ball Z: Budokai 2 GZ3P70 = Dragon Ball Z: Budokai 2 GZ3PB2 = Dragon Ball Z Budokai 2 GZCE51 = ZooCube GZCJB0 = ZooCube GZCP51 = Zoocube GZDE70 = Godzilla: Destroy all Monsters Melee GZDJ70 = Godzilla: Kaijuu Dairantou GZDP70 = Godzilla: Destroy all Monsters Melee GZEE70 = Dragon Ball Z: Sagas GZFJBP = Gekituisenki - Zero Fighter GZHJDA = Zoids Full Metal Crash GZLE01 = The Legend of Zelda: The Wind Waker GZLJ01 = Zelda no Densetsu: Kaze no Takuto GZLP01 = The Legend of Zelda: The Wind Waker GZMP7D = Butt-Ugly Martians Zoom or Doom GZOJDA = Zoids vs. GZPE70 = Zapper - One Wicked Cricket! GZPP70 = Zapper: Le Criquet Ravageur ! GZQE7D = Robots GZQJ7D = Robots GZQP7D = Robots GZSE70 = Zoids Battle Legends GZSJDA = Zoids VS. II GZVJDA = Zoids vs. III GZWE01 = Wario Ware Inc.: Mega Party Game$! GZWJ01 = Atumare!! made in wario GZWP01 = Wario Ware Inc.: Mega Party Game$! HAAA = Chaîne Photos HABA = Chaîne Boutique HABK = Wii Shop Channel HACA = Chaîne Mii HACK = Mii Channel HADE = Chaîne Internet HADJ = Internet Channel HADP = Chaîne Internet HAFE = Forecast Channel HAFJ = Weather Channel HAFP = Chaîne Météo HAGE = Chaîne infos HAGJ = News Channel HAGP = Chaîne Infos HAJE = Everybody Votes Channel HAJJ = Everybody Votes Channel HAJP = Chaîne Votes HAPE = Check Mii Out Channel HAPJ = Mii Contest Channel HAPP = Chaîne Concours Mii HATE = Nintendo Channel HATJ = Nintendo Channel HATP = Chaîne Nintendo HAVJ = Today and Tomorrow Fortune Teller HAVK = Today And Tomorrow Channel HAVP = Today and Tomorrow Channel HAWE = Metroid Prime 3 Preview HAWJ = Metroid Prime 3 Preview HAWP = Metroid Prime 3 Preview HAYA = Chaîne Photos HAYK = Photo Channel HBNJ = TV Friend Channel HBWE01 = New Super Mario Bros. Wii: Hellboy Edition HC3J = USB Flash Optimization HCAJ = Band Bros. DX Speaker Channel HCAP = Jam with the Band Live HCBJ = Photo Channel 1.0 Restore Program HCDJ = Digicam Print Channel HCFE = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Chaîne Wii Speak HCGE = Wii + Internet HCGJ = Wii Plus Internet HCGP = Wii Plus Internet HCHJ = Food Service HCIJ = Wii no ma HCJP = BBC iPlayer Channel HCLE = Netflix HCLP = Netflix HCMP = Chaîne Kirby TV HCQE = Hulu Plus HCQJ = Hulu HCRE = The Legend of Zelda: Skyward Sword Save Data Update Channel HCRJ = The Legend of Zelda Skyward Sword Update HCRP = The Legend of Zelda Skyward Sword Update HCSE = Wii U Transfer Tool HCSJ = Wii U Transfer Tool HCSP = Wii U Transfer Tool HCTE = Wii System Transfer HCTJ = Wii System Transfer HCTP = Wii System Transfer HCUE = Wii Menu Electronic Manual HCUJ = Wii Menu Electronic Manual HCUP = Wii Menu Electronic Manual HCVA = Wii U Menu HCWE = Amazon Instant Video HCWP = Amazon Instant Video HCXE = YouTube HCXJ = YouTube HCXP = YouTube HCZE = Wii System Transfer HWFL = HackWiiFlow JA2J = Shin Megami Tensei JA3J = Kamaitachi no Yoru JA4E = Super Ghouls 'n Ghosts JA4J = Chou-Makai-Mura JA4P = Super Ghouls'n Ghosts JA5J = Heracles no Eikou III: Kamigami no Chinmoku JA6E = Zombies Ate My Neighbors JA6J = Zombies Ate My Neighbors JA6P = Zombies JA7D = ActRaiser JA7E = ActRaiser JA7F = ActRaiser JA7J = Actraiser JA7P = ActRaiser JA8E = Final Fight JA8J = Final Fight JA8P = Final Fight JAAE = Super Mario World JAAJ = Super Mario World JAAK = Super Mario World JAAP = Super Mario World JABJ = Mario no Super Picross JABL = Mario’s Super Picross JACE = F-Zero JACJ = F-Zero JACK = F-Zero JACP = F-Zero JADD = The Legend of Zelda : A Link to the Past JADE = The Legend of Zelda : A Link to the Past JADF = The Legend of Zelda : A Link to the Past JADJ = Zelda no Densetsu: Kamigami no Triforce JADK = The Legend of Zelda: A Link to the Past JADP = The Legend of Zelda : A Link to the Past JAEE = Donkey Kong Country JAEJ = Super Donkey Kong JAEK = Donkey Kong Country JAEP = Donkey Kong Country JAFD = SimCity JAFE = Sim City JAFF = SimCity JAFJ = SimCity JAFP = SimCity JAGJ = Fire Emblem: Monshou no Nazo JAHE = R-Type III: The 3rd Lightning JAHJ = R-Type III: The Third Lightning JAHK = R-Type III: The Third Lightning JAHP = R-TYPE III : The Third Lightning JAIE = Super Castlevania IV JAIJ = Akumajou Dracula JAIP = Super Castlevania IV JAJE = Street Fighter II: The World Warrior JAJJ = Street Fighter II JAJP = Street Fighter II : The World Warrior JALE = Contra III: The Alien Wars JALJ = Contra Spirits JALK = Contra III: The Alien Wars JALP = Super Probotector : Alien Rebels JAME = Gradius III JAMJ = Gradius III JAMK = Gradius III JAMM = Gradius III JAPJ = Fire Emblem: Seisen no Keifu JAUJ = Famicom Bunko: Hajimari no Mori JAVE = Super Metroid JAVJ = Super Metroid JAVK = Super Metroid JAVP = Super Metroid JAWE = Romance of the Three Kingdoms IV: Wall of Fire JAWJ = San Goku Shi IV JAZD = The Legend of the Mystical Ninja JAZE = The Legend of The Mystical Ninja JAZJ = Ganbare Goemon: Yukihime Kyuushutsu Emaki JAZP = The Legend of the Mystical Ninja JB3D = Harvest Moon JB3E = Harvest Moon JB3J = Harvest Moon JB3P = Harvest Moon JB5J = Super Gussun Oyoyo JB6J = Treasure Hunter G JB7J = Front Mission: Gun Hazard JB9J = Gakkou de atta Kowai Hanashi JBAE = Metal Marines JBAJ = Militia JBBE = Super Street Fighter II: The New Challengers JBBJ = Super Street Fighter II: The New Challengers JBBP = Super Street Fighter II : The New Challengers JBCE = Kirby's Dream Course JBCJ = Kirby Bowl JBCK = Kirby's Dream Course JBCP = Kirby's Dream Course JBDD = Donkey Kong Country 2: Diddy's Kong-Quest JBDE = Donkey Kong Country 2: Diddy's Kong Quest JBDJ = Super Donkey Kong 2: Dixie & Diddy JBDK = Donkey Kong Country 2: Diddy Kong's Quest JBDP = Donkey Kong Country 2 : Diddy's Kong-Quest JBEJ = Magical Drop JBFJ = Otogirisou JBGJ = Mystery Dungeon: Shiren the Wanderer JBHJ = Heracles no Eikou IV: Kamigami-kara no Okurimono JBIE = Street Fighter II Turbo: Hyper Fighting JBIJ = Street Fighter II Turbo: Hyper Fighting JBIP = Street Fighter II Turbo : Hyper Fighting JBKE = Breath of Fire II JBKJ = Breath of Fire II: Shimei no Ko JBKP = Breath of Fire II JBLE = Pac-Attack JBLJ = Cosmo Gang the Puzzle JBLP = Pac-Attack JBNE = Darius Twin JBNJ = Darius Twin JBOJ = Panel de Pon JBOK = Panel de Pon JBPE = Donkey Kong Country 3: Dixie Kong's Double Trouble JBPJ = Super Donkey Kong 3: Nazo no Krems Shima JBPP = Donkey Kong Country 3 : Dixie Kong’s Double Trouble JBQE = Kirby's Avalanche JBQJ = Kirby's Avalanche JBQP = Kirby's Ghost Trap JBRE = Vegas Stakes JBRJ = Vegas Stakes JBRP = Vegas Stakes JBSE = Axelay JBSJ = Axelay JBSP = Axelay JBTE = Super Turrican JBTJ = Super Turrican JBTP = Super Turrican JBUE = Super Turrican 2 JBUJ = Super Turrican Two JBVJ = Der Langrisser JBWE = Cybernator JBWJ = Assault Suits Valken JBWK = Cybernator JBWP = Cybernator JBYE = Super R-Type JBYJ = Super R-Type JBYK = Super R-Type JBYP = Super R-Type JC2J = Taikou Risshiden JC3J = Bahamut Lagoon JC4E = Indiana Jones' Greatest Adventures JC4J = Indiana Jones Great Adventure JC4P = Indiana Jones' Greatest Adventures JC5J = Romancing SaGa JC6J = Romancing SaGa 2 JC7E = The Combatribes JC7J = The Combatribes JC8E = Final Fantasy II JC8J = Final Fantasy IV JC8M = Final Fantasy II JC8P = Final Fantasy 2 JC9J = Final Fantasy V JCAJ = DoReMi Fantasy: Milon no DokiDoki Daibouken JCAL = DoReMi Fantasy - Milon’s DokiDoki Adventure JCAN = DoReMi Fantasy: Milon's DokiDoki Adventure JCBE = Super Mario RPG: Legend of the Seven Stars JCBJ = Super Mario RPG JCBM = Super Mario RPG : Legend of the Seven Stars JCCE = Kirby Super Star JCCJ = Hoshi no Kirby Super Deluxe JCCP = Kirby’s Fun Pak JCDE = Kirby's Dream Land 3 JCDJ = Hoshi no Kirby 3 JCDM = Kirby’s Dream Land 3 JCEJ = Fire Emblem: Thracia 776 JCGJ = Ganbare Goemon 2: Kiteretsu Shougun Magginesu JCHJ = Ganbare Goemon 3 JCIJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo JCJE = Super Punch-Out!! JCJJ = Super Punch-Out!! JCJP = Super Punch Out!! JCKE = Space Invaders: The Original Game JCKJ = Space Invaders: The Original Game JCKP = Space Invaders -The Original Game JCLD = Secret of Mana JCLE = Secret of Mana JCLF = Secret of Mana JCLJ = Seiken Densetsu 2 JCLP = Secret of Mana JCMJ = Super Wagyan Land JCNE = Prince of Persia JCNJ = Prince of Persia JCTE = Ogre Battle: The March of the Black Queen JCTJ = Densetsu no Ogre Battle: The March of the Black Queen JCTM = Ogre Battle : The March of the Black Queen JCUE = PilotWings JCUJ = Tactics Ogre: Let Us Cling Together JCVE = Pilotwings JCVJ = Pilotwings JCVP = Pilotwings JCWE = Super Mario Kart JCWJ = Super Mario Kart JCWP = Super Mario Kart JCXE = Nobunaga's Ambition JCXJ = Super Nobunaga no Yabou: Zengokuban JCYE = Uncharted Waters: New Horizons JCYJ = Daikoukai Jidai II JCZE = Genghis Khan II: Clan of the Gray Wolf JCZJ = Super Aoki Ookami to Shiroki Meshika: Genchou Hishi JD2J = Bishoujo Janshi Suchie-Pai JD3E = Super E.D.F. Earth Defense Force JD3J = Super E.D.F. Earth Defense Force JD3P = Super EDF Earth Defense Force JD4E = Rival Turf! JD4J = Rushing Beat JD4P = Rival Turf! JD5E = Brawl Brothers JD5J = Rushing Beat Ran: Fukusei Toshi JD5P = Brawl Brothers JD6E = The Ignition Factor JD6J = Fire Fighting JD6M = The Ignition Factor JD7E = Super Adventure Island JD7J = Takahashi Meijin no Daibouken Jima JD7P = Super Adventure Island JD8E = Super Adventure Island II JD8J = Takahashi Meijin no Daibouken Jima II JD8P = Super Adventure Island II JD9E = Super Bonk JD9J = Chou-Genjin JD9M = Super Bonk JDAE = Final Fantasy III JDAJ = Final Fantasy VI JDAP = Final Fantasy III JDBE = Super Bomberman 3 JDCE = Street Fighter Alpha 2 JDCJ = Street Fighter Two Alpha JDCP = Street Fighter Alpha 2 JDDE = Final Fight 2 JDDJ = Final Fight Two JDDP = Final Fight 2 JDEE = Final Fight 3 JDEJ = Final Fight Tough JDEP = Final Fight 3 JDFJ = Sutte Hakkun JDHJ = Super Famicom Wars JDIE = Super Star Wars JDIJ = Super Star Wars JDIP = Super Star Wars JDJE = Super Star Wars: The Empire Strikes Back JDJJ = Super Star Wars The Empire Strikes Back JDJP = Super Star Wars : The Empire Strikes Back JDKJ = Metal Max 2 JDLE = Super Star Wars: Return of the Jedi JDLJ = Super Star Wars Return Of The Jedi JDLP = Super Star Wars : Return of the Jedi JDMJ = Kirby no Kirakira Kizzu JDNE = Ghoul Patrol JDNJ = Ghoul Patrol JDOJ = Heisei Shin Onigashima: Zenpen JDPJ = Heisei Shin Onigashima: Kouhen JDQJ = Romancing Sa-Ga 3 JDRJ = Clock Tower JDSJ = Shin Megami Tensei II JDTJ = Shin Megami Tensei if... JDUJ = Albert Odyssey JDVE = Wild Guns JDVJ = Wild Guns JDVP = Wild Guns JDWE = Aero the Acrobat JDWJ = Aero The Acrobat JDWP = Aero The Acrobat JDXE = Aero the Acrobat 2 JDXJ = Aero The Acrobat Two JDXP = Aero the Acrobat 2 JDYJ = Rudra no Hihou JDZE = Final Fantasy Mystic Quest JDZJ = Final Fantasy USA: Mystic Quest JEAE = Natsume Championship Wrestling JEAJ = Natsume Championship Wrestling JEAP = Natsume Championship Wrestling JEBE = Mega Man X JEBJ = RockMan X JECE = Chrono Trigger JECJ = Chrono Trigger JECM = Chrono Trigger JECP = Chrono Trigger JEDJ = Kunio-Kun no Dodge Ball Dayo Zenin Shuugo! JEEJ = Majin Tensei JEFJ = Majin Tensei II: Spiral Nemesis JEGJ = Gouketuji Ichizoku JEHE = Mega Man X2 JEHJ = RockMan X2 JEIJ = Metal Max Returns JEJJ = Tsukikomori JEKJ = Kyuyaku Megami Tensei: Megami Tensei I・II JODI = Homebrew Channel JOUE01 = New Super Mario Bros. Wii 10 The Journey KMCP06 = Wiimms MKW Fun 2010-12.pal+ KMKE01 = Kustom Mario Kart Wii KMNE03 = Newer Super Mario Bros. Wii KMNE10 = Koopa Country KMNJ03 = Newer Super Mario Bros. Wii KMNP03 = Newer Super Mario Bros. Wii KMNP10 = Koopa Country L40P4Q = Sing IT: Pop hits, los 40 principales LAAJ = Hokuto no Ken LABE = Fantasy Zone LABJ = Fantasy Zone LABP = Fantasy Zone LACE = Wonder Boy LACJ = Super Wonder Boy LACP = Wonder Boy LADE = Phantasy Star LADJ = Phantasy Star LADP = Phantasy Star LAEE = Alex Kidd in Miracle World LAEJ = Alex Kidd in Miracle World LAEP = Alex Kidd in Miracle World LAFJ = Ashura LAFN = Secret Commando LAFP = Secret Command LAGE = Sonic The Hedgehog LAGJ = Sonic the Hedgehog LAGP = Sonic The Hedgehog LAHE = Space Harrier LAHJ = Space Harrier LAHP = Space Harrier LAIE = Enduro Racer LAIJ = Enduro Racer LAIP = Enduro Racer LAJE = Sonic The Hedgehog 2 LAJJ = Sonic the Hedgehog 2 LAJP = Sonic The Hedgehog 2 LAKE = Wonder Boy in Monster Land LAKJ = Super Wonder Boy: Monster World LAKP = Wonder Boy in Monster Land LALE = Fantasy Zone II: The Tears of OPA-OPA LALJ = Fantasy Zone II: The Tears of Opa-Opa LALP = Fantasy Zone II LAME = Sonic Chaos LAMJ = Sonic Chaos LAMP = Sonic Chaos LANE = Alex Kidd: The Lost Stars LANJ = Alex Kidd: The Lost Stars LANP = Alex Kidd: The Lost Stars LAOE = R-Type LAOJ = R-Type LAOP = R-Type LAPE = Wonder Boy III: The Dragon's Trap LAPP = Wonder Boy III: The Dragon's Trap LAQE = Alex Kidd in Shinobi World LAQP = Alex Kidd in Shinobi World LULZ = Homebrew Channel MA2J = Dyna Brothers MA3E = Puyo Puyo 2 MA3J = Puyo Puyo Tsuu MA3L = Puyo Puyo 2 MA4J = Bahamut Senki MA5J = Rent A Hero MA6E = Streets of Rage 2 MA6J = Bare Knuckle II: Shitou no Chinkon Uta MA6P = Streets of Rage 2 MA7E = Shining in the Darkness MA7J = Shining and the Darkness MA7P = Shining in the Darkness MA8E = Ecco: The Tides of Time MA8J = Ecco the Dolphin 2 MA8P = Ecco: The Tides of Time MA9J = The Hybrid Front MAAE = Altered Beast MAAJ = Juuouki MAAP = Altered Beast MABE = Columns MABJ = Columns MABP = Columns MACE = Dr. Robotnik's Mean Bean Machine MACJ = Puyo Puyo MACP = Dr. Robotnik's Mean Bean Machine MADE = Ecco the Dolphin MADJ = Ecco the Dolphin MADP = Ecco the Dolphin MAEE = Golden Axe MAEJ = Golden Axe MAEP = Golden Axe MAFE = Gunstar Heroes MAFJ = Gunstar Heroes MAFP = Gunstar Heroes MAGE = Ristar MAGJ = Ristar MAGP = Ristar MAHE = Sonic the Hedgehog MAHJ = Sonic the Hedgehog MAHP = Sonic the Hedgehog MAIE = Space Harrier II MAIJ = Space Harrier II MAIP = Space Harrier II MAJE = Toe Jam & Earl MAJJ = ToeJam & Earl MAJP = ToeJam & Earl MAKE = Shadow Dancer: The Secret of Shinobi MAKJ = Shadow Dancer: The Secret of Shinobi MAKP = Shadow Dancer : The Secret of Shinobi MALE = Bonanza Bros. MALJ = Bonanza Bros. MALP = Bonanza Bros. MAME = Sword of Vermillion MAMJ = Vermilion MAMP = Sword of Vermilion MANE = Gain Ground MANJ = Gain Ground MANP = Gain Ground MAOE = Bio-Hazard Battle MAOJ = Crying: Aseimei Sensou MAOP = Bio-Hazard Battle MAPE = Comix Zone MAPJ = Comix Zone MAPP = Comix Zone MAQE = Streets of Rage MAQJ = Bare Knuckle: Ikari no Tekken MAQP = Streets of Rage MARE = Beyond Oasis MARJ = The Story of Thor: Hikari o Tsugu Mono MARP = La Légende de Thor MASE = Vectorman MASJ = Vectorman MASP = Vectorman MATE = Sonic Spinball MATJ = Sonic Spinball MATP = Sonic Spinball MAUJ = Puzzle & Action: Tant-R MAVE = Wonder Boy in Monster World MAVJ = Wonder Boy V: Monster World III MAVP = Wonder Boy In Monster World MAWE = Virtua Fighter 2 MAWJ = Virtua Fighter 2 MAWP = Virtua Fighter 2 MAXE = Alex Kidd In The Enchanted Castle MAXJ = Alex Kidd: Tenkuu Mashiro MAXP = Alex Kidd In The Enchanted Castle MAYE = Alien Storm MAYJ = Alien Storm MAYP = Alien Storm MAZE = ToeJam & Earl in Panic on Funkotron MAZP = ToeJam & Earl in Panic on Funkotron MB2J = Langrisser MB3E = Monster World IV MB3J = Monster World IV MB4J = Party Quiz Mega Q MB5J = Rangurissah II MB6E = Shining Force II MB6J = Shining Force II: Inishie no Fuuin MB6P = Shining Force II MB7E = Mega Turrican MB7P = Mega Turrican MB8E = Phantasy Star II MB8J = Phantasy Star II: Kaerazaru Toki no Owari ni MB8P = Phantasy Star II MB9J = Pepenga Pengo MBAJ = Pulseman MBAL = Pulseman MBAN = Pulseman MBBE = Sonic the Hedgehog 2 MBBJ = Sonic the Hedgehog 2 MBBP = Sonic the Hedgehog 2 MBCE = Kid Chameleon MBCJ = Chameleon Kid MBCP = Kid Chameleon MBDE = Golden Axe II MBDJ = Golden Axe II MBDP = Golden Axe II MBEE = Shining Force MBEJ = Shining Force: Kamigami no Isan MBEP = Shining Force MBFE = Shinobi III: Return of the Ninja Master MBFJ = The Super Soldier II MBFP = Shinobi III: Return of the Ninja master MBGE = Dynamite Headdy MBGJ = Dynamite Headdy MBGP = Dynamite Headdy MBHJ = Puzzle & Action: Ichidant-R MBIE = Landstalker: The Treasures of King Nole MBIJ = LandStalker: Koutei no Zaihou MBIP = Landstalker : Le Trésor du Roi Nole MBJE = Ghouls'n Ghosts MBJJ = Dai Makai-Mura MBJP = Ghouls'n Ghosts MBKJ = Crack Down MBKP = Crack Down MBLJ = ESWAT: Cyber Police MBLP = ESWAT City Under Siege MBME = Sonic the Hedgehog 3 MBMJ = Sonic the Hedgehog 3 MBMP = Sonic the Hedgehog 3 MBNJ = Chelnov MBOE = Golden Axe III MBOJ = Golden Axe III MBOP = Golden Axe III MBPE = Super Thunder Blade MBPJ = Super Thunder Blade MBPP = Super Thunder Blade MBQE = Streets of Rage 3 MBQJ = Bare Knuckle III MBQP = Streets of Rage 3 MBRE = Rolling Thunder 2 MBRJ = Rolling Thunder 2 MBRP = Rolling Thunder 2 MBSJ = Dyna Brothers 2 Special MBTE = Alien Soldier MBTJ = Alien Soldier MBTP = Alien Soldier MBUE = Sonic 3D: Blast MBUJ = Sonic 3D Blast MBUP = Sonic 3D: Flickies' Island MBVJ = Jusu Kihei Leynos MBWE = Columns III: Revenge of Columns MBWJ = Columns III: Taiketsu! Columns World MBWM = Columns III: Revenge of Columns MBXE = Ecco Jr. MBXJ = Ecco Jr. MBXM = Ecco Jr. MBYE = Light Crusader MBYJ = Light Crusader MBYP = Light Crusader MBZE = Eternal Champions MBZJ = Eternal Champions MBZP = Eternal Champions MC2E = Earthworm Jim 2 MC2J = Earthworm Jim 2 MC2P = Earthworm Jim 2 MC3E = Super Street Fighter II: The New Challengers MC3J = Super Street Fighter 2: The New Challengers MC3P = Super Street Fighter II: The New Challengers MC4E = Strider MC4J = Strider Hiryu MCAJ = Gley Lancer MCAL = Gley Lancer MCAN = Gley Lancer MCBE = Powerball MCBJ = Wrestleball MCCE = Phantasy Star III MCCJ = Toki no Keishousha: Phantasy Star III MCCP = Phantasy Star III: Generations of Doom MCDE = Sonic & Knuckles MCDJ = Sonic & Knuckles MCDP = Sonic & Knuckles MCEJ = Super Fantasy Zone MCEN = Super Fantasy Zone MCEP = Super Fantasy Zone MCGE = Forgotten Worlds MCGJ = Forgotten Worlds MCGP = Forgotten Worlds MCHE = M.U.S.H.A. MCHJ = Musha Aleste MCHM = MUSHA : Metallic Uniframe Super Hybrid Armor MCIJ = Gynoug MCJE = Splatterhouse 2 MCJJ = Splatterhouse Part 2 MCJP = Splatterhouse 2 MCKE = Phantasy Star IV MCKJ = Phantasy Star: Sennenki no Owari ni MCKP = Phantasy Star IV MCLE = Street Fighter II': Special Champion Edition MCLJ = Street Fighter II' Plus: Champion Edition MCLP = Street Fighter II’: Special Champion Edition MCMJ = Lord Monarch: Tokoton Sentou Densetsu MCNJ = Hokuto no Ken: Shin Seikimatu Kyuseisyu Densetsu MCOJ = Sorcerian MCPE = Earthworm Jim MCPJ = Earthworm Jim MCPP = Earthworm Jim MCQE = Boogerman: A Pick and Flick Adventure MCQP = Boogerman - A Pick and Flick Adventure MCRE = Wolf of the Battlefield: MERCS MCRJ = Senjou no Ookami II MCRP = MERCS: Wolf of the Battlefield MCSJ = Wonder Boy III: Monster Lair MCSN = Wonder Boy III: Monster Lair MCSP = Wonder Boy III: Monster Lair MCTE = Clay Fighter MCTP = Clay Fighter MCUJ = Dragon Slayer: The Legend of Heroes MCVE = Pitfall: The Mayan Adventure MCVJ = Pitfall: The Mayan Adventure MCVP = Pitfall: The Mayan Adventure MCWE = Galaxy Force II MCWJ = Galaxy Force II MCWP = Galaxy Force II MCXJ = Dragon Slayer: The Legend of Heroes MCYE = The Revenge of Shinobi MCYJ = The Super Shinobi MCYP = The Revenge of Shinobi MCZE = Shanghai II: Dragon's Eye MCZP = Shanghai II Dragon's Eye MDUE01 = Mario Kart: Track Grand Priix MECPSI = SingItStar Mecano METE01 = New Super Metroid Bros. Wii MIJPSI = SingItStar Michael Jackson MILPSI = Sing IT Star: Miliki MKDE02 = Darky Kart Wii MKTE01 = Mario Kart Wii Teknik MKWP01 = Super Mario Kart for Wii MMRE01 = D.U. Super Mario Bros 2.1 Madness Returns MRRE01 = New Super Mario Bros. Wii Retro Remix MRRP01 = New Super Mario Bros. Wii Retro Remix NA3E = Bomberman Hero NA3J = Bomberman Hero NA3P = Bomberman Hero NAAE = Super Mario 64 NAAJ = Super Mario 64 NAAP = Super Mario 64 NABE = Mario Kart 64 NABJ = Mario Kart 64 NABK = Mario Kart 64 NABP = Mario Kart 64 NACE = The Legend of Zelda: Ocarina of Time NACJ = Zelda no Densetsu: Toki no Ocarina NACP = The Legend of Zelda : Ocarina of Time NADE = Star Fox 64 NADJ = Star Fox 64 NADK = Star Fox 64 NADP = Lylat Wars NAEE = Paper Mario NAEJ = Mario Story NAEP = Paper Mario NAFE = F-Zero X NAFJ = F-Zero X NAFP = F-Zero X NAGJ = Aerogauge NAHE = Yoshi's Story NAHJ = Yoshi's Story NAHP = Yoshi's Story NAIE = Wave Race 64 NAIJ = Wave Race 64: Kawasaki Jet Ski NAIP = Wave Race 64 NAJ8 = The Legend of Zelda: Ocarina of Time (spanish translation) NAJ9 = Super Smash Bros. NAJJ = Tsumi to Batsu NAJL = Sin & Punishment NAJN = Sin and Punishment NAKD = Pokémon Snap NAKE = Pokémon Snap NAKF = Pokémon Snap NAKI = Pokémon Snap NAKJ = Pokémon Snap NAKP = Pokémon Snap NAKS = Pokémon Snap NALE = Super Smash Bros. NALJ = Nintendo All-Star Dairantou Smash Brothers NALP = Super Smash Bros. NAME = Kirby 64 : The Crystal Shards NAMJ = Hoshi no Kirby 64 NAMK = Kirby 64: The Crystal Shards NAMP = Kirby 64 : The Crystal Shards NAND = Pokémon Puzzle League NANE = Pokémon Puzzle League NANF = Pokémon Puzzle League NANJ = Pokemon Puzzle League NANP = Pokémon Puzzle League NAOE = 1080° Snowboarding NAOJ = 1080° Snowboarding NAOK = 1080° Snowboarding NAOP = 1080 : TenEighty Snowboarding NAPJ = Custom Robo V2 NARE = The Legend of Zelda: Majora's Mask NARJ = Zelda no Densetsu: Majora no Kamen NARP = The Legend of Zelda : Majora's Mask NASE = Cruis'n USA NASJ = Cruisn USA NASP = Cruis'n USA NATE = Mario Tennis NATJ = Mario Tennis 64 NATP = Mario Tennis NAUE = Mario Golf NAUJ = Mario Golf 64 NAUP = Mario Golf NAYE = Ogre Battle 64: Person of Lordly Caliber NAYJ = Ogre Battle 64: Person of Lordly Caliber NAYM = Ogre Battle 64 : Person of Lordly Caliber NAZE = Mario Party 2 NAZJ = Mario Party 2 NAZP = Mario Party 2 NEEA = The Legend of Zelda: Ocarina of Time Master Quest NEWE01 = New Super Mario Bros Wii 15 A New World NK2O = Neek2o NMNP01 = Newer Super Mario Bros. Wii NRJ1FR = StarSing : NRJ Music Tour v1.1 NSMB02 = New Super Mario Bros. Wii 2 NSSP01 = Newer Summer Sun NWRP01 = Newer Super Mario Bros. Wii NZXM = Super Mario 64 Multiplayer ONKELZ = SingItStar Böhse Onkelz PAL OTFPSI = Sing IT: Operación triunfo P2ME01 = Metroid Prime 2: Echoes (Bonus Disc) PA2J = Nekketsu Koukou Dodgeball Bu: CD Soccer Hen PA3J = Salamander PA4J = Parasol Stars PA6E = Bloody Wolf PA6J = Narazumono Sentou Butai: Bloody Wolf PA6P = Bloody Wolf PA7E = Alien Crush PA7J = Alien Crush PA7P = Alien Crush PA8E = Ordyne PA8J = Ordyne PA9E = Splatterhouse PA9J = Splatterhouse PA9P = Splatterhouse PAAE = Bomberman '93 PAAP = Bomberman '93 PABE = Bonk's Adventure PABJ = PC Genjin PABP = Bonk's Adventure PACE = Dungeon Explorer PACJ = Dungeon Explorer PACP = Dungeon Explorer PADE = R-Type PADJ = R-Type I PADP = R-Type PAEE = Super Star Soldier PAEJ = Super Star Soldier PAEP = Super Star Soldier PAFE = Victory Run PAFJ = Victory Run: Eikou no 13,000KM PAFP = Victory Run PAGJ = Bomberman '94 PAGL = Bomberman'94 PAGN = Bomberman '94 PAHE = Battle Lode Runner PAHJ = Battle Lode Runner PAHP = Battle Lode Runner PAIE = New Adventure Island PAIJ = Takahashi Meijin no Shin Bouken Jima PAIP = New Adventure Island PAJJ = Joshoken Necromancer PAKE = Dragon's Curse PAKJ = Adventure Island PAKP = Dragon's Curse PALE = Soldier Blade PALJ = Soldier Blade PALP = Soldier Blade PAME = Neutopia PAMJ = Neutopia: Frey no Shou PAMP = Neutopia PANE = Military Madness PANJ = Nectaris PANP = Military Madness PAOJ = Final Soldier PAOL = Final Soldier PAON = Final Soldier PAPJ = R-Type II PAQJ = Gradius PARJ = Detana TwinBee PARL = Detana Twin Bee PARN = Detana Twin Bee PASJ = Cadash PATJ = Kiki Kaikai PAUJ = Kaizou Chounin Shubibinman PAVE = Vigilante PAVJ = Vigilante PAVP = Vigilante PAWE = Galaga '90 PAWJ = Galaga '88 PAWP = Galaga'88 PAYJ = Valkyrie no Densetsu PAZJ = Genpei Toumaden PB2E = Neutopia II PB2J = Neutopia II PB2P = Neutopia II PB3E = Devil's Crush PB3J = Devil Crash PB3P = Devil Crash PB5J = Ninja Ryukenden PB6E = Cratermaze PB6P = Cratermaze PB7J = Sengoku Mahjong PB8E = Blazing Lazers PB8J = Blazing Lazers PB8P = Blazing Lazers PB9E = World Sports Competition PB9J = Power Sports PB9P = World Sports Competition PBAE = Dragon Spirit PBAJ = Dragon Spirit PBAP = Dragon Spirit PBCJ = Wonder-Momo PBDE = Double Dungeons PBDJ = Double Dungeons PBDP = Double Dungeons PBEE = Moto Roader PBEJ = Moto Roader PBEP = Motoroader PBFJ = Fire ProWrestling: Combination Tag PBHE = Bonk's Revenge PBHJ = PC Genjin 2 PBHP = Bonk's Revenge PBIE = Bonk 3: Bonk's Big Adventure PBIJ = PC Genjin 3 PBIP = Bonk III : Bonk's Big Adventure PBJE = Samurai Ghost PBJJ = Genpei Toumaden: Kannoni PBJP = Samurai Ghost PBME = Legend of Hero Tonma PBMJ = Legend of Hero Tonma PBMP = Legend of Hero Tonma PBNE = Ninja Spirit PBNJ = Saigou no Nindou: Ninja Spirit PBNP = Ninja Spirit PBSE = Chew Man Fu PBSJ = Be Ball PBSP = Chew Man Fu PBTE = China Warrior PBTJ = The Kung Fu PBTP = China Warrior PBUE = Bravoman PBUJ = Chouzetsu Rinjin Bravoman PBVJ = Benkei Gaiden PBWE = Air “Zonk” PBWJ = PC Denjin: Punkic Cyborgs PBWP = Air 'Zonk' PBXE = Shockman PBXJ = Kaizou Chounin Shubibinman 2: Atanaru Teki PBXP = Shockman PBYJ = Out Live PBZE = J.J. & Jeff PBZP = J.J. & Jeff PC2E = Chase H.Q. PC2J = Chase H.Q. PC2P = Taito Chase H.Q. PC3J = Darius Plus PC4J = Space Invaders: Fukkatsu no Hi PC5J = Dragon Saber PC6E01 = Pokémon Colosseum Bonus Disc PC6J = Final Blaster PC7J = Mizubaku Daibouken PC8J = The Ninjawarriors PC9J = The NewZealand Story PCAE = Silent Debuggers PCAJ = Silent Debuggers PCAP = Silent Debuggers PCBE = Dead Moon PCBJ = Dead Moon: Tsuki Sekai no Akumu PCBP = Dead Moon PCCJ = Makai Hakkenden Shada PCDJ = Appare! Gateball PCEE = Power Golf PCEJ = Power Golf PCEP = Power Golf PCHE = Drop Off PCHJ = Drop Rock Hora Hora PCHP = Drop Off PCJJ = Override PCKJ = Gai Flame PCMJ = Mr. Heli no Daibouken PCNJ = Winning Shot PCOE = Psychosis PCOJ = Paranoia PCOP = Psychosis PCPJ = Power Eleven PCQJ = Psycho Chaser PCRJ = Break In PCRL = Break In PCRN = Break In PCSJ = Digital Champ: Battle Boxing PCSJ = Digital Champ: Battle Boxing PCSJ01 = Pokemon Colosseum Bonus Disc PCSL = Digital Champ : Battle Boxing PCSN = Digital Champ Battle Boxing PCTJ = Power Tennis PCUJ = Fire ProWrestling 2nd Bout PCVE = World Class Baseball PCVP = World Class Baseball PCWJ = Image Fight PCXJ = Power League IV PCYJ = Wallaby!! Usagi no Kuni no Kangaroo Race PDCJ = Dai Makaimura PDDJ = Volfied PDEJ = S.C.I.: Special Criminal Investigation PDFJ = Jigoku Meguri PDGJ = Fire ProWrestling 3: Legend Bout PDHJ = Rastan Saga II PDIE = Champion Wrestler PDJJ = Street Fighter II': Champion Edition PDJL = Street Fighter II' : Champion Edition PDJN = Street Fighter II: Champion Edition PDUE01 = Another Super Mario Bros. Wii PKBJ01 = The Tower of Druaga PLUS = WiiMC+ PM4E01 = Mario Kart: Double Dash!! Bonus Disc PMNEO1 = New Old Super Mario Bros. Wii POPPSI = SingItStar Pop PPNE01 = New Super Mario Bros. Wii 2: The Next Levels PPNP01 = New Super Mario Bros. Wii 2: The Next Levels PRJE01 = Pac-Man vs. PRJJ01 = Pac-Man vs. PRJP01 = Pac-Man vs. PROE01 = New Super Mario Bros. Wii 14 Project Mario PT1PSI = SingIt Star Portugal Hits PT2PSI = SingIt Portugal Hits Summer Party PT3PSI = Sing IT Portugal Hits - Morangos com Açucar PUTA01 = Guitar Hero III Custom : Rock Hits PWNP69 = Pwned Super Mario Bros. Wii PXWE = Project X: Love Potion Disaster PZLE01 = The Legend of Zelda: Collector's Edition PZLJ01 = The Legend of Zelda: Collector's Edition PZLP01 = The Legend of Zelda: Collector's Edition QA2J = Nekketsu Koukou Dodge Ball-Bu: CD Soccer-hen QA3E = SimEarth: The Living Planet QA3J = SimEarth QA3P = SimEarth : The Living Planet QA4J = Super Darius II QA5J = Space Invaders: The Original Game QA6J = Super Darius QA7J = Legend of Xanadu: Kaze no Densetsu Xanadu QA8J = Spriggan Mark 2 QA9J = Kaze no Densetsu: Xanadu II QAAE = Super Air Zonk QAAJ = CD Denjin: Rockabilly Tengoku QAAP = Super Air Zonk QABE = Ys Book I & II QABJ = Ys I + II QABP = Ys Book I & II QACJ = Cho Aniki QACL = Cho Aniki QACN = Cho Aniki QADJ = Gradius II: Gofer no Yabou QADL = Gradius II : Gofer no Yabou QADN = Gradius II Gofer No Yabou QAEJ = A.III: A-Ressha de Ikou III QAFE = The Dynastic Hero QAFJ = Chou Eiyuu Densetsu: Dynastic Hero QAFP = The Dynastic Hero QAGE = Gate of Thunder QAGJ = Gate of Thunder QAGP = Gate of Thunder QAHJ = Kawa no Nushi Tsuni Shizenha QAJJ = Image Fight II QAKJ = Ai Chou Aniki QALJ = The Atlas: Renaissance Voyager QANJ = Neo Nectaris QAOJ = Dungeon Explorer II QAPJ = Akumajou Dracula X: Chi no Rondo QAPL = Castlevania : Rondo of Blood QAPN = Castlevania Rondo of Blood QAPP = Castlevania : Rondo of Blood QAQJ = Dragon Slayer: Eiyuu Densetsu QARJ = Blood Gear QASE = Lords of Thunder QASJ = Winds of Thunder QASP = Lords of Thunder QATE = Riot Zone QATJ = Crest of Wolf QATP = Riot Zone QAUE = Monster Lair QAUJ = Wonder Boy III: Monster Lair QAUP = Monster Lair QAVJ = Bomberman: Panic Bomber QAWJ = Star Parodier QAWL = Star Parodier QAWN = Star Parodier QAXJ = Martial Champion QAYJ = Seirei Senshi Spriggan QAZJ = Eikan wa Kimi ni: Koko Yakyu Zenkoku Taikai QBAJ = L Dis QBBE = Fighting Street QBBJ = Fighting Street QBBP = Fighting Street R01PET = SingItStar Queen R02PEA = SingItStar Rock Ballads R15POH = SingIt Star Radio 105 R22E01 = FlingSmash R22J01 = FlingSmash R22P01 = FlingSmash R23E52 = Barbie and the Three Musketeers R23P52 = Barbie et les Trois Mousquetaires R24J01 = Chibi-Robo! R25EWR = LEGO Harry Potter: Years 1-4 R25PWR = LEGO Harry Potter : Années 1 à 4 R26E5G = Data East Arcade Classics R27E54 = Dora Saves the Crystal Kingdom R27X54 = Dora Sauve le Royaume de Crystal R28E54 = Top Spin 4 R28P54 = Top Spin 4 R29E52 = NPPL Championship Paintball 2009 R29P52 = Millennium Championship Paintball 2009 R2AE7D = L'Age de Glace 2 R2AP7D = L'Age de Glace 2 R2AX7D = L'Age de Glace 2 R2DEEB = Dokapon Kingdom R2DJEP = Dokapon Kingdom For Wii R2DPAP = Dokapon Kingdom R2DPJW = Dokapon Kingdom R2EJ99 = Fish Eyes Wii R2FE5G = Freddi Fish: Kelp Seed Mystery R2FP70 = Marine Malice et le mystère des graines d'algue R2GEXJ = Fragile Dreams: Farewell Ruins of the Moon R2GJAF = Fragile: Sayonara Tsuki no Haikyo R2GP99 = Fragile Dreams ~ Farewell Ruins of the Moon~ R2HE41 = Petz Horse Club R2IE69 = Madden NFL 10 R2IP69 = Madden NFL 10 R2JJAF = Taiko no Tatsujin Wii R2KE54 = Don King Boxing R2KP54 = Don King Boxing R2LJMS = Hula Wii: Hura de Hajimeru Bi to Kenkou!! R2ME20 = M&M's Adventure R2NE69 = NASCAR Kart Racing R2OE68 = Medieval Games R2OP68 = Medieval Games R2PE9B = Super Swing Golf Season 2 R2PJ9B = Super Swing Golf Season 2 R2PKZ4 = Super Swing Golf Season 2 R2PP99 = Super Swing Golf R2PP9B = Super Swing Golf R2QJC0 = Cooking Mama 2 Taihen Mama Wa Ooisogashi R2RE4F = Pony Friends 2 R2RP4F = Pony Friends 2 R2SE18 = Deca Sports 2 R2SJ18 = Deca Sporta 2 R2SP18 = Sports Island 2 R2TE41 = Teenage Mutant Ninja Turtles: Smash-Up R2TP41 = Teenage Mutant Ninja Turtles: Smash-Up R2UE8P = Let's Tap R2UJ8P = Let's Tap R2UP8P = Let's Tap R2VE01 = Sin & Punishment: Star Successor R2VJ01 = Sin and Punishment: Successor to the Sky R2VP01 = Sin and Punishment : Successor of the Skies R2WEA4 = Pro Evolution Soccer 2009 R2WJA4 = Winning Eleven PLAY MAKER 2009 R2WPA4 = Pro Evolution Soccer 2009 R2WXA4 = Pro Evolution Soccer 2009 R2YE54 = Birthday Party Bash R2YP54 = C'est mon anniversaire! R32J01 = Metroid Prime 2 R33E69 = Rock Band : AC/DC Live [Track Pack] R33P69 = Rock Band : AC/DC Live [Song Pack] R34E69 = Rock Band: Country Track Pack R35JC8 = Sangokushi 11 with Power-Up Kit R36E69 = Green Day: Rock Band R36P69 = Green Day : Rock Band R37E69 = Rock Band: Metal Track Pack R38E78 = Marvel Super Hero Squad R38P78 = Marvel Super Hero Squad R38X78 = Marvel Super Hero Squad: Walmart Edition R38Y78 = Marvel Super Hero Squad R39EFP = Shimano Xtreme Fishing R39PNK = Shimano Extreme Fishing R3AE20 = Story Hour: Adventures R3AP20 = Story Hour : Adventures R3AP7J = Story Hour : Adventures R3BE8P = Samba de Amigo R3BJ8P = Samba de Amigo R3BP8P = Samba de Amigo R3CE20 = Chrysler Classic Racing R3CP20 = Chrysler Classic Racing R3CP7J = Chrysler Classic Racing R3DES5 = Dream Pinball 3D R3DPS5 = Dream Pinball 3D R3EEWR = Game Party 3 R3EPWR = Game Party 3 R3FJA4 = Jikkyou Powerful Major League 3 R3GXUG = Crazy Mini Golf R3HP6Z = Agent Hugo : Hula Holiday R3HX6Z = Agent Hugo: Hula Holiday R3IJ01 = Metroid Prime R3JE5G = Go Play Circus Star R3KP6N = Skyscraper R3LEWR = Green Lantern: Rise of the Manhunters R3LPWR = Green Lantern: La Révolte des Manhunters R3ME01 = Metroid Prime: Trilogy R3MP01 = Metroid Prime Trilogy R3NEXS = Guilty Gear XX Accent Core Plus R3NPH3 = Guilty Gear XX Accent Core Plus R3OE01 = Metroid: Other M R3OJ01 = Metroid: Other M R3OP01 = Metroid : Other M R3PEWR = Speed Racer: The Videogame R3PJ52 = Speed Racer R3PPWR = Speed Racer : Le Jeu Vidéo R3RE8P = Sonic & SEGA All-Stars Racing R3RP8P = Sonic & SEGA All-Stars Racing R3SE52 = Spider-Man: Web of Shadows R3SP52 = Spider-Man : Le Règne des Ombres R3TE54 = Top Spin 3 R3TJG9 = Top Spin 3 R3TP54 = Top Spin 3 R3UJGD = Oyako de Asobo: Miffy no Omocha Bako R3VEFP = Deer Drive R3VPNK = Deer Drive R3XE6U = Sam & Max: Season One R3XP6V = Sam & Max : Saison 1 R3YE70 = Sam & Max : Saison 2 : Au-Delà du Temps et de l'Espace R3YP70 = Sam & Max : Saison 2 : Au-Delà du Temps et de l'Espace R3ZE69 = Rock Band Track Pack: Classic Rock R42E69 = The Sims 2: Castaway R42P69 = Les Sims 2 : Naufragés R43E69 = EA Sports Active: Personal Trainer R43J13 = EA Sports Active Personal Trainer Wii 30-Hi Seikatsu Kaizen Program R43P69 = EA Sports Active R44J8P = Suzumiya Haruhi no Heiretsu R46ENS = Phantom Brave: We Meet Again R46JKB = Phantom Brave Wii R47E20 = ATV Quad Kings R48E7D = The Spiderwick Chronicles R48P7D = Les Chroniques De Spiderwick R49E01 = Donkey Kong Jungle Beat R49J01 = Donkey Kong: Jungle Beat R49P01 = Donkey Kong : Jungle Beat R4AE69 = SimAnimals R4AJ13 = SimAnimals R4AP69 = SimAnimals R4BEJZ = Championship Foosball R4BPGT = Baby Foot R4CE69 = SimCity Creator R4CJ13 = Simcity Creator R4CK69 = SimCity Creator R4CP69 = Simcity Creator R4DDUS = Die drei Fragezeichen - Das verfluchte Schloss R4EE01 = Endless Ocean: Blue World R4EJ01 = Forever Blue: Umi no Yobigoe (Endless Ocean 2) R4EP01 = Endless Ocean 2 : Aventuriers des Fonds Marins R4FE20 = Story Hour: Fairy Tales R4FP20 = Story Hour: Fairy Tales R4FP7J = Story Hour: Fairy Tales R4IPNK = Mad Tracks R4LPUG = Athletic Piggy Party R4LXUG = Athletic Piggy Party R4MJ0Q = Shikakui Atama wo Marukusuru Wii R4NE5G = Major Minor's Majestic March R4NP5G = Major Minor's Majestic March R4NX5G = Major Minor's Majestic March R4PE69 = The Sims 2: Pets R4PP69 = Les Sims 2 : Animaux & Cie R4QE01 = Mario Strikers Charged R4QJ01 = Mario Strikers Charged R4QK01 = Mario Power Soccer R4QP01 = Mario Strikers Charged Football R4RE69 = FIFA Soccer 10 R4RJ13 = FIFA 10 WORLD CLASS SOCCER R4RK69 = FIFA 10 R4RP69 = FIFA 10 R4RX69 = FIFA 10 R4RY69 = FIFA 10 R4RZ69 = FIFA Soccer 10 R4SE54 = MLB Superstars R4VEA4 = Storybook Workshop R4VJA4 = Teleshibai Wii R4VJAF = Tere Shibai Wii R4WJA4 = Jikkyou Powerful Major League 2009 R4YJ2M = Sukeban Shachou Rena Wii R4ZE01 = Fatal Frame 4: Mask of the Lunar Eclipse R4ZJ01 = Project Zero 4 - Mask of the Lunar Eclipse R4ZP01 = Project Zero 4 - Mask of the Lunar Eclipse R52E08 = Neopets Puzzle Adventure R52P08 = Neopets Puzzle Adventure R53PFH = In The Mix Featuring Armin van Buuren R54FMR = Des Chiffres & des Lettres R55F41 = Qui Veut Gagner Des Millions : 1ère Edition R55P41 = Qui Veut Gagner Des Millions : 1ère Edition R56EG9 = Astro Boy: The Video Game R56PG9 = Astro Boy: The Video Game R57FMR = Questions pour un champion : Le jeu officiel R58DMR = U-Sing R58FMR = U-Sing R58PMR = U-Sing R58SMR = U-Sing R59D4Q = Club Penguin: Game Day! R59E4Q = Club Penguin: Game Day! R59P4Q = Club Penguin: Game Day! R5AE8P = The Golden Compass R5AP8P = À la Croisée des Mondes : La Boussole d'Or R5AX8P = À la Croisée des Mondes : La Boussole d'Or R5DE5G = Flip's Twisted World R5EPMR = Des Chiffres & des Lettres R5FE41 = Academy of Champions: Soccer R5FP41 = Academy of Champions : Football R5GE78 = Are You Smarter Than A 5th Grader?: Make the Grade R5IE4Q = Toy Story Mania! R5IP4Q = Toy Story Mania! R5IR4Q = Toy Story Mania! R5IX4Q = Toy Story Mania! R5JES5 = Pirates vs Ninjas Dodgeball R5JPS5 = Pirates vs Ninjas Dodgeball R5MJAF = Kotoba No Puzzle Mojipittan Wii Deluxe R5NJN9 = Doala De Wii R5OENR = Party Pigs: Farmyard Games R5OXUG = Farmyard Party: Featuring the Olympigs R5PE69 = Harry Potter and the Order of the Phoenix R5PJ13 = Harry Potter and the Order of the Phoenix R5PP69 = Harry Potter et l'Ordre du Phénix R5PX69 = Harry Potter et l'Ordre du Phénix R5QPGT = Les Fous Du Cirque R5SERW = Mortimer Beckett and the Secrets of Spooky Manor R5TE69 = Grand Slam Tennis R5TJ13 = Grand Slam Tennis R5TP69 = Grand Chelem Tennis R5UE41 = CSI: Deadly Intent R5UP41 = Les Experts: Préméditation R5VE41 = James Cameron's Avatar: The Game R5VP41 = James Cameron's Avatar : The Game R5VX41 = James Cameron's Avatar : The Game R5WEA4 = Silent Hill: Shattered Memories R5WJA4 = Silent Hill: Shattered Memories R5XJ13 = MySims Agents R5XP69 = MySims Agents R5YD78 = All Star Pom Pom Girl 2 R5YE78 = All Star Cheer Squad 2 R5YP78 = All Star Pom Pom Girl 2 R62E4Q = Disney Sing It: Pop Hits R62P4Q = Disney Sing It : Pop Hits R63EG9 = Family Party: 30 Great Games Outdoor Fun R63PG9 = Family Party : 30 Great Games Outdoor Fun R64E01 = Wii Music R64J01 = Wii Music R64K01 = Wii Music R64P01 = Wii Music R65ENR = Buck Fever R66E41 = Press Your Luck 2010 Edition R67E6K = Smart Series Presents: JaJa's Adventure R68E5G = Go Play City Sports R69E36 = DiRT 2 R69P36 = Colin McRae : DiRT 2 R6APPU = Mon Bébé et Moi R6BE78 = de Blob R6BJ78 = Blob Colorful Na Kibou R6BK78 = de Blob R6BP78 = de Blob R6BX78 = de Blob R6CEAF = We Cheer 2 R6CJAF = WE CHEER Dancing Spirits! R6DFJW = Code de la Route R6EE41 = Family Feud 2010 Edition R6FE41 = Six Flags Fun Park R6FERS = Six Flags Fun Park R6FP41 = Fun Park Party R6GPMR = Golden Balls R6HE54 = Ni Hao, Kai-lan: Super Game Day R6HP54 = Ni Hao, Kai-lan: Super Game Day R6IE54 = Baseball Blast! R6JJGD = Fullmetal Alchemist: Prince of the Dawn R6KP36 = Ashes Cricket 2009 R6KU36 = Ashes Cricket 2009 R6LEWR = LEGO Rock Band R6LPWR = LEGO Rock Band R6ME5Z = America's Next Top Model R6MPML = America's Next Top Model R6MXMR = Top Model R6NE41 = Shaun White Snowboarding: World Stage R6NP41 = Shaun White Snowboarding : World Stage R6NY41 = Shaun White Snowboarding : World Stage R6OE78 = Cars Race-O-Rama R6OP78 = Cars Race-O-Rama R6OX78 = Cars Race-O-Rama R6QE69 = MySims Agents R6REJH = TrackMania: Build to Race R6RPHH = TrackMania R6TEA4 = Tornado Outbreak R6TPA4 = Tornado Outbreak R6VE4Z = King of Clubs R6VPGN = King of Clubs R6WE68 = AMF Bowling World Lanes R6WP68 = AMF Bowling World Lanes R6XE69 = Hasbro: Family Game Night 2 R6XP69 = Hasbro : Best of des Jeux en Famille Vol. 2 R6YEXS = Squeeballs Party R6YPH3 = Squeeballs Party R72E5G = Cake Mania: In The Mix! R72P5G = Cake Mania : In The Mix! R74E20 = Arcade Shooting Gallery R75E20 = Dream Salon R76E54 = NBA 2K10 R76P54 = NBA 2K10 R77JAF = SD Gundam: G Generation Wars R79JAF = Mobile Suit Gundam: MS Sensen 0079 R7AE69 = SimAnimals Africa R7AJ13 = SimAnimals Africa R7AP69 = SimAnimals Africa R7BE20 = Jelly Belly Ballistic Beans R7BP7J = Jelly Belly : Ballistic Beans R7CJ01 = Captain Rainbow R7EE8P = NiGHTS: Journey of Dreams R7EJ8P = Nights Journey Of Dreams R7EP8P = NiGHTS : Journey of Dreams R7FEGD = Final Fantasy Fables: Chocobo's Dungeon R7FJGD = Final Fantasy Fables: Chocobo's Dungeon R7FPGD = Final Fantasy Fables : Chocobo's Dungeon R7GEAF = Dragon Ball: Revenge of King Piccolo R7GJAF = Dragon Ball: Tenkaichi Daibouken R7GPAF = Dragon Ball : Revenge of King Piccolo R7HE6K = Army Rescue R7IE69 = Charm Girls Club: Pajama Party R7IP69 = Charm Girls Club: Pyjama Party R7KE6K = Rock Blast R7LP7J = Margot's Bepuzzled! R7MXFR = Musiic Party: Rock the House R7NE20 = Cold Stone Creamery: Scoop It Up R7OE54 = NHL 2K10 R7OP54 = NHL 2K10 R7PE01 = Punch-Out!! R7PJ01 = Punch-Out!! R7PP01 = Punch-Out!! R7QE52 = Chaotic: Shadow Warriors R7RE52 = Little League World Series Baseball 2009 R7SE5G = Escape The Museum R7SP5G = Escape The Museum R7TFJW = Pétanque Pro R7VEWR = Vacation Isle: Beach Party R7VPWR = Vacation Isle : Beach Party R7WE52 = Mountain Sports R7WP52 = Mountain Sports R7XE69 = Need for Speed: Nitro R7XJ13 = Need for Speed: Nitro R7XP69 = Need for Speed : Nitro R7YFMR = Pékin Express : La Route des Dragons R7ZE41 = Team Elimination Games R7ZP41 = Télé Maboul Party R82E52 = Animal Planet: Vet Life R82JG0 = Darts Wii DX R82P52 = Animal Planet: Vet Life R83EA4 = Pop'n Music R83JA4 = Pop'n Music R83PA4 = Pop'n Rhythm R84EE9 = Harvest Moon: Tree Of Tranquility R84J99 = Bokujo for Wii R84P99 = Harvest Moon : L'Arbre de la Sérénité R85EG9 = The Secret Saturdays: Beasts of the 5th Sun R85PG9 = The Secret Saturdays: Beasts of the 5th Sun R86E20 = Dream Dance & Cheer R87EVN = Ski-Doo: Snowmobile Challenge R88J2L = Anpanman Niko Niko Party R89JEL = Tokyo Friend Park 2 Wii R8AE01 = PokéPark Wii: Pikachu's Adventure R8AJ01 = PokéPark Wii: Pikachu no Daibouken R8AP01 = PokéPark Wii : La Grande Aventure de Pikachu R8BE41 = Imagine Party Babyz R8BP41 = Bébés Party R8DEA4 = Yu-Gi-Oh! 5D's: Duel Transer R8DJA4 = Yu-Gi-Oh! 5D's: Duel Transer R8DPA4 = Yu-Gi-Oh! 5D's : Master of the Cards R8EJQC = Earth Seeker R8FES5 = Fast Food Panic R8FJHA = Takumi Restaurant ha Daihanjou! R8FJSC = Takumi Restaurant wa Daihanjou! (Simplified Chinese Translation) R8FPNP = Fast Food Panic R8GJC8 = G1 Jockey Wii 2008 R8GPC8 = G1 Jockey Wii 2008 R8HE4Q = Hannah Montana: The Movie R8HP4Q = Hannah Montana : Le Film R8HX4Q = Hannah Montana : Le Film R8HY4Q = Hannah Montana : Le Film R8IE78 = SpongeBob's Truth or Square R8IP78 = Bob l'éponge R8IS78 = SpongeBob's Truth or Square R8JEWR = The Lord of the Rings: Aragorn's Quest R8JPWR = Le Seigneur des Anneaux: La Quête d'Aragorn R8KPKM = Foot 2 Rue : Nicolas Anelka R8LE20 = Chicken Blaster R8LP7J = Chicken Blaster R8NEA4 = The Cages: Pro Style Batting Practice R8NJG0 = Batting Revolution R8OE54 = Ringling Bros. and Barnum & Bailey Circus R8OX54 = C'est mon Cirque R8PC01 = Super Paper Mario(CN) R8PE01 = Super Paper Mario R8PJ01 = Super Paper Mario R8PK01 = Super Paper Mario R8PP01 = Super Paper Mario R8QPRT = Crazy Quiz: Are You Crazy Enough? R8RP41 = Arthur et la Vengeance de Maltazard R8SE41 = Vacation Sports R8SP41 = Vacances Sports Party R8SX41 = World Sports Party R8TENR = Tournament Pool R8UXMR = Adibou et les saisons magiques R8VE41 = Petz Rescue: Wildlife Vet R8VP41 = Planète Nature : Au Secours des Animaux Sauvages R8XE52 = Jurassic: The Hunted R8XZ52 = Top Shot Dinosaur Hunter R8YE52 = Cabela's Big Game Hunter 2010 R8ZE8P = Daisy Fuentes Pilates R8ZPGT = Daisy Fuentes Pilates R92E01 = Pikmin 2 R92J01 = Pikmin 2 R92P01 = Nouvelle Façon de Jouer ! Pikmin 2 R94PMR = Total Dérapage R94XMR = Total Dérapage : Prêts pour le Grand Frisson ? R96EAF = Klonoa R96JAF = Kaze no Klonoa Door to Phantomile R96KAF = Klonoa - Door to Phantomile R96PAF = Klonoa R97E9B = Family Fun Football R9AE52 = Activision Demo Action Pack (Demo) R9BPMT = Bob le bricoleur : On s'amuse comme des fous R9CPMR = I'm a Celebrity...Get Me Out of Here! R9DE78 = Dessine ton Aventure R9DP78 = Dessine Ton Aventure R9EPNP = Brico Party: Les As du Bricolage R9FE36 = F1 2009 R9FJ36 = F1 2009 R9FP36 = F1 2009 R9GEWR = Legend of the Guardians: The Owls of Ga'Hoole R9GPWR = Le Royaume de Ga'Hoole R9HE78 = Are You Smarter Than A 5th Grader?: Game Time R9IE01 = Pikmin R9IJ01 = Pikmin R9IK01 = Pikmin R9IP01 = Nouvelle Façon de Jouer ! Pikmin R9JE69 = The Beatles: Rock Band R9JP69 = The Beatles : Rock Band R9KE20 = Groovin' Blocks R9LE41 = Sleepover Party R9LP41 = Girls Life: Pyjama Party R9ME5Z = World Championship Athletics R9MPFR = Summer Athletics 2009 R9NPMR = Family Fortunes R9OE69 = Tiger Woods PGA Tour 10 R9OK69 = Tiger Woods PGA Tour 10 R9OP69 = Tiger Woods PGA Tour 10 R9QPNG = Dance Party Club Hits R9RPNG = Dance Party Pop Hits R9SPPL = Sudoku Ball : Detective R9TE69 = Tiger Woods PGA Tour 09 All-Play R9TJ13 = Tiger Woods PGA Tour 09 All-Play R9TK69 = Tiger Woods PGA Tour 09 All-Play R9TP69 = Tiger Woods PGA Tour 09 All-Play R9UE52 = Build-A-Bear Workshop: Friendship Valley R9UPGY = Build-A-Bear Workshop: Friendship Valley R9VE52 = Cabela's Outdoor Adventures 2010 R9WPSP = WSC Real 09: World Snooker Championship R9XE52 = Arcade Zone R9XP52 = Arcade Zone R9YES5 = Sled Shred R9ZE54 = Major League Baseball 2K9 RABAZZ = System Menu Changer RADP01 = New Super Mario Bros. Wii 0-6 Radiance RB2E6K = Balloon Pop RB2J2K = Rainbow Pop RB2P6K = Pop! RB2PGT = Pop! RB4E08 = Resident Evil 4: Wii Edition RB4J08 = Biohazard 4 Wii Edition RB4P08 = Resident Evil 4 : Wii Edition RB4X08 = Resident Evil 4 : Wii Edition RB5E41 = Brothers In Arms: Earned In Blood RB5P41 = Brothers in Arms : Earned in Blood RB6J18 = Bomberman RB7E54 = Bully: Scholarship Edition RB7P54 = Bully : Scholarship Edition RB8E70 = Backyard Baseball '09 RB9D78 = Bratz: The Movie RB9E78 = Bratz: The Movie RB9P78 = Bratz: The Movie RB9X78 = Bratz: The Movie RB9Y78 = Bratz: The Movie RBAE41 = Blazing Angels: Squadrons of WWII RBAP41 = Blazing Angels : Squadrons of WWII RBBE18 = Bomberman Land RBBJ18 = Bomberman Land Wii RBBP99 = Bomberman Land Wii RBCP41 = Telly Addicts RBEE52 = Drôle d'abeille - Le Jeu RBEP52 = Bee Movie : Le Jeu RBEX52 = Bee Movie Game RBFE20 = Balls of Fury RBFP20 = Balls of Fury RBFP7J = Balls of Fury RBGE54 = The BIGS RBGP54 = The Bigs RBHE08 = Resident Evil Archives: Resident Evil Zero RBHJ08 = Biohazard 0 RBHP08 = Resident Evil Archives : Resident Evil Zero RBIEE9 = Harvest Moon: Animal Parade RBIJ99 = Bokujou Monogatari Waku Waku Animal March RBIP99 = Harvest Moon RBKE69 = Boom Blox RBKJ13 = Boom Blox RBKK69 = Boom Blox RBKP69 = Boom Blox RBLE8P = Bleach: Shattered Blade RBLJ8P = Bleach: Shattered Blade RBLP8P = Bleach : Shattered Blade RBME5G = Bust-a-Move Bash! RBMPGT = Bust A Move RBNEG9 = Ben 10: Protector of Earth RBNPG9 = Ben 10 : Protector of Earth RBNXG9 = Ben 10 : Protector of Earth RBOE69 = Boogie RBOP69 = Boogie RBPE4Z = Brunswick Pro Bowling RBPP4Z = Brunswick Pro Bowling RBPPGT = Brunswick Pro Bowling RBQENR = Classic British Motor Racing RBQPUG = Classic British Motor Racing RBRE5G = Blast Works: Build, Trade, Destroy RBRP5G = Blast Works : Build, Trade, Destroy RBRX5G = Blast Works : Build, Trade, Destroy RBSJ08 = Sengoku Basara 2 Heroes (Double Pack) RBSJ09 = Sengoku Basara 2 Heroes RBTE8P = SEGA Bass Fishing RBTJ8P = Sega Bass Fishing RBTP8P = Sega Bass Fishing RBUE08 = Resident Evil: The Umbrella Chronicles RBUJ08 = Biohazard The Umbrella Chronicles RBUK08 = Biohazard The Umbrella Chronicles RBUP08 = Resident Evil : The Umbrella Chronicles RBVE52 = Barbie as The Island Princess RBVP52 = Barbie : Princesse de l'île merveilleuse RBWE01 = Battalion Wars 2 RBWJ01 = Totsugeki Famicom Wars vs. RBWP01 = BWii : Battalion Wars 2 RBXJ8P = Bleach: Versus Crusade RBYE78 = Barnyard RBYJ78 = Barnyard RBYP78 = La Ferme en Folie RBZE5Z = Billy the Wizard: Rocket Broomstick Racing RBZP5Z = Billy the Wizard : Rocket Broomstick Racing RBZPUG = Billy the Wizard: Rocket Broomstick Racing RBZXUG = Billy the Wizard: Rocket Broomstick Racing RC2E78 = Cars: Mater-National RC2P78 = Cars : La Coupe Internationale de Martin RC2X78 = Cars : La Coupe Internationale de Martin RC2Y78 = Cars : La Coupe Internationale de Martin RC3E41 = Petz Catz 2 RC3J41 = Nyanko To Mahou No Boushi RC3P41 = Catz RC3X41 = Catz RC4JD9 = Crayon Shin-Chan: Saikyou Kazoku Kasukabe King Wii RC4SGT = Shin Chan Les Nouvelles Aventures Pour Wii RC5JDQ = Osouji Sentai Clean Keeper RC7E20 = Sea Monsters: A Prehistoric Adventure RC7P7J = Sea Monsters : A Prehistoric Adventure RC8E7D = Crash: Mind Over Mutant RC8P7D = Crash : Génération Mutant RC8X7D = Crash: Mind Over Mutant RC9PGN = CID : The Dummy RCAE78 = Cars RCAJ78 = Cars RCAP78 = Cars RCAX78 = Cars RCAY78 = Cars RCBE52 = Cabela's Big Game Hunter RCBP52 = Cabela's Big Game Hunter RCCE5G = Cooking Mama: Cook Off RCCJC0 = Cooking Mama RCCPGT = Cooking Mama RCCR78 = Guitar Hero III Custom: Coheed and Cambria RCDD52 = Call of Duty 3 : En Marche vers Paris RCDE52 = Call of Duty 3 RCDP52 = Call of Duty 3 : En Marche vers Paris RCDX52 = Call of Duty 3 : En Marche vers Paris RCEE5Z = Mini Desktop Racing RCEPUG = Mini Desktop Racing RCEXUG = Mini Desktop Racing RCFE41 = Cosmic Family RCFP41 = La Famille Cosmic RCGE54 = Carnival Games RCGP54 = Carnival: Fête Foraine RCHC52 = Guitar Hero III Custom : Guitar Hero II RCHEAF = We Cheer RCHJAF = We Cheer RCHPAF = We Cheer RCHPGT = We Cheer RCIE41 = CSI: Hard Evidence RCIP41 = Les Experts : Morts Programmées RCJE8P = The Conduit RCJP8P = The Conduit RCKPGN = Sports Challenge : Defi Sports RCLE4Q = Disney's Chicken Little: Ace in Action RCLP4Q = Chicken Little : Aventures Intergalactiques RCOC99 = Meitantei Conan: Tsuioku no Mirage RCOJ99 = Meitantei Conan: Tsuioku no Mirage RCOK99 = Detective Conan: Case Closed: The Mirapolis Investigation RCOKZF = Case Closed: The Mirapolis Investigation RCOPNP = Détective Conan : Enquête RCPE18 = Kororinpa: Marble Mania RCPJ18 = Kororinpa RCPP18 = Kororinpa RCQEDA = Penny Racers Party: Turbo-Q Speedway RCQJDA = Choro Q RCRE5D = Cruis'n RCRP5D = Cruis'n RCSE20 = Chicken Shoot RCSP20 = Chicken Shoot RCSP7J = Chicken Shoot RCTE5Z = Counter Force RCTP5Z = Counter Force RCTPGT = Counter Force RCUE52 = Cabela's Legendary Adventures RCUP52 = Cabela's Legendary Adventures RCVE41 = Far Cry: Vengeance RCVP41 = Far Cry : Vengeance RCXE78 = All Star Cheer Squad RCXP78 = All Star Pom-pom Girl RCXX78 = All Star Cheerleader RCYPGN = Cheggers Party Quiz RD2E41 = Red Steel 2 RD2J41 = Red Steel 2 RD2K41 = Red Steel 2 RD2P41 = Red Steel 2 RD2X41 = Red Steel 2 RD4EA4 = Dance Dance Revolution: Hottest Party 2 RD4JA4 = Dance Dance Revolution: Furu Furu Party RD4PA4 = Dance Dance Revolution : Hottest Party 2 RD6EE9 = Animal Kingdom: Wildlife Expedition RD6J8N = Doubutu Kisoutengai RD6PNP = Safar'Wii RD8E52 = Dancing with the Stars RD9J18 = Sudoku RDAE52 = Dancing with the Stars: We Dance! RDBE70 = Dragon Ball Z: Budokai Tenkaichi 2 RDBJAF = Dragon Ball Z: Sparking! NEO RDBP70 = Dragon Ball Z : Budokai Tenkaichi 2 RDBPAF = Dragon Ball Z : Budokai Tenkaichi 2 RDCE78 = Deadly Creatures RDCP78 = Deadly Creatures RDDEA4 = Dance Dance Revolution: Hottest Party RDDJA4 = Dance Dance Revolution: Hottest Party RDDPA4 = Dance Dance Revolution Hottest Party RDEJ0A = Zenkoku Dekotora Matsuri RDFE41 = Shaun White Snowboarding: Road Trip RDFP41 = Shaun White Snowboarding : Road Trip RDGEA4 = Castlevania Judgment RDGJA4 = Akumajou Dracula Judgment RDGPA4 = Castlevania Judgment RDHE78 = Destroy All Humans! Big Willy Unleashed RDHP78 = Destroy All Humans! Lachez Le Gros Willy! RDIE41 = The Dog Island RDIJG2 = The Dog Island RDIP41 = The Dog Island RDJE4F = Death Jr.: Root of Evil RDJP4F = Death Jr. : Root of Evil RDKE01 = Donkey Kong: Barrel Blast RDKJ01 = Donkey Kong Taru Jet Race RDKP01 = Donkey Kong : Jet Race RDLE5G = Spy Fox in Dry Cereal RDLP70 = James Renard - Opération Milkshake RDME6K = Domino Rally RDMJ8N = Go! Go! Minon RDMPHZ = Minon: Everyday Hero RDNEA4 = Dance Dance Revolution: Disney Grooves RDOE41 = Petz Dogz 2 RDOJ41 = Dog To Mahou No Boushi RDOP41 = Dogz RDOX41 = Dogz RDPE54 = Dora Saves the Snow Princess RDPP54 = Dora sauve la Princesse des Neiges RDPX54 = Dora sauve la Princesse des Neiges RDQEGD = Dragon Quest Swords: The Masked Queen and The Tower of Mirrors RDQJGD = Dragon Quest Swords: Kamen no Joou to Kagami no Tou RDQPGD = Dragon Quest Swords : la Reine masquée et la Tour des miroirs RDREA4 = Dewy's Adventure RDRJA4 = Dewy's Adventure RDRPA4 = Dewy's Adventure RDSE70 = Dragon Ball Z: Budokai Tenkaichi 3 RDSJAF = Dragon Ball Z: Sparking! METEOR RDSPAF = Dragon Ball Z : Budokai Tenkaichi 3 RDSZ70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino RDTEAF = Tamagotchi: Party On! RDTJAF = Tamagotchi Pikadai RDTPAF = Tamagotchi : Party On! RDUE01 = DU Super Mario Bros. : Find That Princess RDUJDQ = Sugorochronicle Migite Ni Ken Wo Hidarite Ni Saikoro Wo RDVE41 = Driver: Parallel Lines RDVP41 = Driver : Parallel Lines RDWEG9 = Dragon Blade: Wrath of Fire RDWJG9 = Dragon Blade: Wrath Of Fire RDWPG9 = Dragon Blade : Wrath Of Fire RDXE18 = Deca Sports RDXJ18 = Deca Sporta RDXKA4 = Deca Sporta RDXP18 = Sports Island RDYEGN = CID: The Dummy RDZJ01 = Disaster: Day of Crisis RDZP01 = Disaster : Day of Crisis RE3ENR = WWII Aces RE4E08 = Resident Evil Archives: Resident Evil RE4J08 = Biohazard RE4P08 = Resident Evil Archives : Resident Evil RE5PAF = The Munchables RE6PRT = Summer Challenge: Athletics Tournament RE7PNK = Hunting Challenge RE8J99 = Katekyoo Hitman Reborn Kindan No Yami No Delta REAE69 = Celebrity Sports Showdown REAF69 = Le Tournoi Des Célébrités REAP69 = Le Tournoi Des Célébrités REBE4Z = Mr Bean's Wacky World of Wii REBPMT = Mr Bean : Total Délire sur Wii RECE6K = Spy Games: Elevator Mission RECP6K = Spy Games: Elevator Mission REDE41 = Red Steel REDJ41 = Red Steel REDP41 = Red Steel REFP41 = My French Coach: Improve Your French REGE36 = Emergency Mayhem REGP36 = Panique Aux Urgences REHE41 = Emergency Heroes REHP41 = Emergency Heroes REJEAF = Active Life: Extreme Challenge REJJAF = Family Trainer 2 REJPAF = Family Trainer: Extreme Challenge REKE41 = Mon Coach Personnel : Mon Programme Cardio-Training REKJ2N = Shape Boxing Wii De Enjoy Diet REKP41 = Mon Coach Personnel : Mon Programme Cardio-Training REKU41 = Gold's Gym: Cardio Workout RELEA4 = Elebits RELJA4 = Elebits RELKA4 = Elebits RELPA4 = Eledees RELSAB = Sonic Adventure DX: Director's Cut (Preview Prototype) REMJ8P = Doraemon Wii Himitsu Douguou Ketteisen RENE8P = Sonic et le Chevalier Noir RENJ8P = Sonic and the Black Knight RENP8P = Sonic et le Chevalier Noir REQE54 = Go Diego Go! Safari Rescue REQP54 = Go Diego! Mission Safari REQX54 = Go Diego! Mission Safari REQY54 = Go Diego! Mission Safari RESP41 = Mon Coach Personnel : J'améliore Mon Espagnol RETJAF = Ennichi No Tatsujin REUPNK = My Body Coach REVJ8P = Imabi Kisô: Kaimei Hen REVJBP = Imabikisou: Kaimei Hen REWFMR = Real Stories : Mission Equitation REWXMR = My Horse Club: On the Trail of the Mysterious Appaloosa REWYMR = Real Stories : Mission Equitation REXE01 = Excite Truck REXJ01 = Excite Truck REXP01 = Excite Truck REYE4Q = Disney Sing It: High School Musical 3 Senior Year REYP4Q = Disney Sing It REYX4Q = Disney Sing It: High School Musical 3 REZEJJ = Fritz Chess REZPKM = Fritz by Chessbase RF2E54 = Fantastic Four: Rise of the Silver Surfer RF2P54 = Les 4 Fantastiques et le Surfer d'Argent RF3E52 = Ferrari Challenge: Trofeo Pirelli RF3P6M = Ferrari Challenge RF4E36 = Super Fruit Fall RF4P6M = Super Fruit Fall RF7J08 = Tatsunoko vs. Capcom: Cross Generation of Heroes RF8E69 = FIFA Soccer 08 RF8J13 = FIFA 08 RF8K69 = FIFA 08 RF8P69 = FIFA 08 RF8X69 = FIFA 08 RF8Y69 = FIFA 08 RF9E69 = FIFA Soccer 09 All-Play RF9J13 = FIFA 09 All-Play RF9K69 = FIFA 09 All-Play RF9P69 = FIFA 09 All-Play RF9X69 = FIFA 09 All-Play RF9Y69 = FIFA 09 All-Play RFAEAF = Active Life: Outdoor Challenge RFAJAF = Family Trainer: Athletic World RFAPAF = Family Trainer RFBE01 = Endless Ocean RFBJ01 = Forever Blue RFBP01 = Endless Ocean RFCEGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFCJGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFCPGD = Final Fantasy Crystal Chronicles : The Crystal Bearers RFEE01 = Fire Emblem: Radiant Dawn RFEJ01 = Fire Emblem Akatsuki No Megami RFEP01 = Fire Emblem : Radiant Dawn RFFEGD = Final Fantasy Crystal Chronicles: Echoes of Time RFFJGD = Final Fantasy Crystal Chronicles: Echoes of Time RFFPGD = Final Fantasy Crystal Chronicles : Echoes of Time RFJJAF = Family Jockey RFKE41 = My Fitness Coach RFKJ41 = My Fitness Coach RFKP41 = Mon Coach Personnel : Mon Programme Forme et Fitness RFKX41 = Mon Coach Personnel : Mon Programme Forme et Fitness RFLE69 = Madden NFL 09 All-Play RFLP69 = Madden NFL 09 All-Play RFLPWK = Wii Freeloader RFMJAF = Pro Yakyuu Family Stadium RFNE01 = Wii Fit RFNJ01 = Wii Fit RFNK01 = Wii Fit RFNP01 = Wii Fit RFNW01 = Wii Fit RFOE52 = Spider-Man: Friend or Foe RFOP52 = Spider-Man : Allié Ou Ennemi RFOX52 = Spider-Man : Allié ou Ennemi RFPE01 = Wii Fit Plus RFPJ01 = Wii Fit Plus RFPK01 = Wii Fit Plus RFPP01 = Wii Fit Plus RFPR01 = Wii Fit Plus RFPW01 = Wii Fit Plus RFQE69 = FaceBreaker K.O. Party RFQJ13 = FaceBreaker K.O. Party RFQJ69 = FaceBreaker K.O. Party RFQK69 = FaceBreaker: K.O. Party RFQP69 = FaceBreaker : K.O. Party RFRE5G = Furu Furu Park RFRJC0 = Furu Furu Park RFSEEB = Shiren the Wanderer RFSJ8P = Fushigi No Dungeon: Furai No Shiren 3 RFTE70 = Backyard Football RFTP70 = Backyard Football '08 RFUJA4 = Mahjong Kakutou Club Wii: Wi-fi Taiou RFVE52 = Monkey Mischief! Party Time RFVP52 = Les Singes Farceurs! 20 Mini-Jeux RFWE5Z = Safari Adventures Africa RFWPNK = Safari Adventures : Afrique RFYFMR = Fort Boyard : Le Jeu RFZE41 = Imagine Fashion Party RFZP41 = Léa Passion Star de la Mode RG0E52 = Guitar Hero III Custom : Green Day Plus RG1552 = Guitar Hero III Custom : Weird Al Yankovic RG1E52 = Guitar Hero III Custom : Revenge RG2E52 = Guitar Hero III Custom : The Beatles Plus RG2EXS = Guilty Gear XX Accent Core RG2JJF = Guilty Gear XX Accent Core RG2PGT = Guilty Gear XX Accent Core RG2PXS = Guilty Gear XX Accent Core RG3E52 = Guitar Hero III Custom : Muse and Rush RG4152 = Guitar Hero III Custom : Sum 41 RG4E52 = Guitar Hero Mayan Apocalypse RG4JC0 = Let's Go By Train Shinkansen EX RG5EWR = Guinness World Records: The Videogame RG5PWR = Le Mondial des Records : Le Jeu Vidéo Officiel RG6E69 = Boogie SuperStar RG6P69 = Boogie Superstar RG7EQH = City Builder RG8E41 = Petz Sports RG8P41 = Petz Sports : Chiots & Compagnie RG9E52 = Guitar Hero III Custom : Anarchy RG9E54 = Carnival Games: Mini Golf RG9P54 = Carnival Games : Mini Golf RGAE8P = Planet 51: The Game RGAP8P = Planète 51 : Le Jeu RGBE08 = Harvey Birdman: Attorney at Law RGBP08 = Harvey Birdman: Attorney at Law RGCEXS = MiniCopter: Adventure Flight RGCJJF = Petitcopter Wii Adventure Flight RGCM52 = Guitar Hero III Custom : Metallica RGCPGT = Radio Helicopter RGCS52 = Guitar Hero III Custom : ClasSick Edition RGDEA4 = Target: Terror RGDPA4 = Target: Terror RGEJJ9 = The World Of Golden Eggs Norinori Rhythm RGEK52 = Guitar Hero III Custom: Slipknot RGFE69 = The Godfather: Blackhand Edition RGFF69 = Le Parrain : Pouvoir et Manipulation RGFI69 = Le Parrain : Pouvoir et Manipulation RGFP69 = Le Parrain : Pouvoir et Manipulation RGFS69 = Le Parrain : Pouvoir et Manipulation RGGE52 = Guitar Hero III Custom : Rock The Games RGGJAF = Gegege No Kitarou Youkai Daiundoukai RGHC20 = Guitar Hero III Custom : Fail Edition RGHE51 = Guitar Hero III Custom : Aspero RGHE52 = Guitar Hero III: Legends of Rock RGHE60 = Guitar Hero III Custom: WTF Custom RGHE61 = I Fought The Law - GH3 RGHE62 = Sweet Home Alabama - GH3 RGHE69 = Guitar Hero III Custom : Legends of METAL RGHEMR = Guitar Hero III Custom : Modern Rock RGHI52 = Guitar Hero III Custom: Chimba RGHJ52 = Guitar Hero III Legends of Rock RGHK52 = Guitar Hero III Legends of Rock RGHP52 = Guitar Hero 3 : Legends of Rock RGHPOH = SingItStar Italian Greatest Hits RGHPS2 = Guitar Hero III Custom : J-Music RGHX52 = Guitar Hero III Custom: Anime's Alex Chan RGIJC8 = G1 Jockey Wii RGIPC8 = G1 Jockey Wii RGJE4Z = George of the Jungle: Search for the Secret RGJP7U = George de la Jungle RGKE52 = Guitar Hero III Custom : KoRn RGKENR = Kidz Sports: Crazy Golf RGKPNR = Crazy Mini Golf RGLE7D = Geometry Wars : Galaxies RGLP7D = Geometry Wars : Galaxies RGME5D = The Grim Adventures of Billy & Mandy RGMP5D = The Grim Adventures of Billy & Mandy RGNJAF = Gintama Yorozuya Tuve RGOJJ9 = The World of Golden Eggs Nissan Note Version RGPJAF = Anime Slot Revolution Pachi-Slot Kidou Senshi Gundam II Ai Senshi Hen RGQE70 = Ghostbusters : Le jeu vidéo RGQP70 = SOS Fantômes : Le Jeu Vidéo RGRM52 = Guitar Hero III Custom: Rock & Metal RGSE8P = Ghost Squad RGSJ8P = Ghost Squad RGSP8P = Ghost Squad RGTE41 = GT Pro Series RGTJBL = GT Pro Series RGTP41 = GT Pro Series RGVE52 = Guitar Hero: Aerosmith RGVE99 = Guitar Hero Aerosmith Custom: NOT Aerosmith but... RGVJ52 = Guitar Hero: Aerosmith RGVP52 = Guitar Hero : Aerosmith RGWE41 = Rabbids Go Home RGWJ41 = Rabbids Go Home RGWP41 = Rabbids Go Home RGWX41 = The Lapins Crétins : La Grosse Aventure RGXE5D = Game Party RGXEFN = Guitar Hero III Custom: Meteo Last Custom RGXM52 = Guitar Hero III Custom : xMxExTxAxLx's Edition RGXP5D = Game Party RGYE5Z = Action Girlz Racing RGYPUG = Action Girlz Racing RGZC52 = Guitar Hero III Custom : Led Zeppelin RGZE52 = Guitar Hero III Custom : Shred Edition RGZE70 = Godzilla Unleashed RGZP70 = Godzilla Unleashed RH2E41 = Hell's Kitchen: The Video Game RH2P41 = Hell's Kitchen: The Video Game RH3E4Q = High School Musical 3: Senior Year Dance! RH3J4Q = High School Musical 3: Senior Year Dance! RH3P4Q = High School Musical 3 Dance! Nos Années Lycée RH4XUG = Hamster Heroes RH5EVN = Horse Life Adventures RH5PKM = Horse Life : Amis pour la vie RH6E69 = Harry Potter and the Half-Blood Prince RH6K69 = Harry Potter and the Half Blood Prince RH6P69 = Harry Potter et le Prince de Sang-Mêlé RH7J8P = Jissen Pachislot Hisshouhou! Sammy's Collection Hokuto no Ken Wii RH8E4F = Tomb Raider: Underworld RH8JEL = Tomb Raider: Underworld RH8P4F = Tomb Raider : Underworld RH8X4F = Tomb Raider : Underworld RH9JC8 = Harukanaru Toki no Naka de 4 RHAE01 = Wii Play RHAJ01 = Hajimete no Wii RHAK01 = Wii Play RHAP01 = Wii Play RHAW01 = Wii Play RHCE52 = The History Channel: Battle for the Pacific RHCP52 = The History Channel : Battle for the Pacific RHD222 = The House of The Dead 2 RHD333 = The House of the Dead 3 RHDE8P = The House of the Dead 2 & 3 Return RHDJ8P = The House of The Dead 2 & 3 Return RHDP8P = The House of the Dead 2 & 3 Return RHEEJJ = Professor Heinz Wolff's Gravity RHEPKM = Professor Heinz Wolff's Gravity RHFE5D = Happy Feet RHFP5D = Happy Feet RHGH52 = Guitar Hero III Custom : RandomHero's RHGP6Z = Agent Hugo : Lemoon Twist RHGX6Z = Agent Hugo: Lemoon Twist RHHJ8J = Suzumiya Haruhi no Gekidou RHIEXJ = Victorious Boxers: Revolution RHIJ41 = Hajime No Ippo Revolution RHIJJ9 = Hajime No Ippo Revolution RHIP41 = Victorious Boxers Challenge RHJJ13 = Ginsei Table Games Wii RHKE18 = Help Wanted: 50 Wacky Jobs RHKJ18 = Hataraku Hit RHKP18 = Job Island RHLE4Z = World Championship Poker Featuring Howard Lederer: All-In RHLPGT = World Championship Poker Featuring Howard Lederer : All-In RHMEE9 = Harvest Moon: Magical Melody RHMP99 = Harvest Moon : Magical Melody RHNE70 = My Horse & Me RHNP70 = Mon Cheval et Moi RHOE8P = The House of the Dead: Overkill RHOJ8P = The House of The Dead: Overkill RHOP8P = The House of the Dead : Overkill RHPJ8N = Akko De Pon! Ikasama Hourouki RHQE4Q = Hannah Montana: Spotlight World Tour RHQP4Q = Hannah Montana : En Tournée Mondiale RHQX4Q = Hannah Montana : En Tournée Mondiale RHQY4Q = Hannah Montana : En Tournée Mondiale RHRJ99 = Kateikyou Hitman Reborn! Dream Hyper Battle! Wii RHSE36 = Heatseeker RHSP36 = Heatseeker RHSX36 = Heatseeker RHSY36 = Heatseeker RHTE54 = Manhunt 2 RHTP54 = Manhunt 2 RHUE20 = Skate City Heroes RHUP20 = Skate City Heroes RHUP7J = Skate City Heroes RHVE5Z = Crazy Chicken Tales RHVPFR = Crazy Chicken Tales RHWE52 = Hot Wheels: Beat That! RHWP52 = Hot Wheels : Beat That! RHXE78 = Battle of the Bands RHXP78 = Battle of the Bands RHYJAF = Haneru no Tobira Wii RHZE41 = Petz Horsez 2 RHZP41 = Alexandra Ledermann: Le Haras de la Vallée RI1POH = SingItStar Italian Party RI2E4Q = High School Musical: Sing It! RI2P4Q = High School Musical : Tous en Scène RI2POH = SingItStar Italian Party vol. 2 RI3E5D = The Ant Bully RI3P5D = Lucas, Fourmi Malgré Lui RI3POH = SingItStar Italian Top.it RI6ENR = Summer Sports 2: Island Sports Party RI6P41 = Famille en folie ! Summer Sports Party RI7E4Z = Monster Mayhem: Build and Battle RI8E41 = Brothers In Arms: Road to Hill 30 RI8P41 = Brothers in Arms : Road to Hill 30 RI9EGT = Diva Girls: Divas on Ice RI9PGT = Les Lollipops : Danse sur Glace RIAE52 = L'Age de Glace 3 - Le Temps des Dinosaures RIAI52 = Ice Age 3: Dawn of the Dinosaurs RIAP52 = L'Age de Glace 3 : Le Temps des Dinosaures RIBES5 = Igor the Game RIBPKM = Igor : Le Jeu RICENR = Iron Chef America: Supreme Cuisine RIDE20 = Smiley World: Island Challenge RIDP7J = Smiley World : Island Challenge RIEEA4 = Karaoke Revolution Presents: American Idol Encore RIFEA4 = Karaoke Revolution Presents: American Idol Encore 2 RIGE54 = Go Diego Go! Great Dinosaur Rescue RIGP54 = Go, Diego, Go ! Au Secours du Dinosaure RIHE8P = The Incredible Hulk RIHP8P = L'Incroyable Hulk RIIEQH = Kart Racer RIIPNG = Kart Racer RIIV = Riivolution RIJE69 = G.I. JOE: The Rise of Cobra RIJP69 = G.I. JOE : Le réveil du Cobra RIKEQH = Truck Racer RIKPNG = Truck Racer RILJ18 = Puzzle Series Vol. 2: Illust Logic + Colorful Logic RIME36 = Impossible Mission RIMP6M = Impossible Mission RINE08 = Dead Rising: Chop Till You Drop RINJ08 = Dead Rising Zombie No Ikenie RINP08 = Dead Rising : Chop Till You Drop RIOPSU = Horribles Histoires : les Redoutables Romains RIPEAF = One Piece: Unlimited Adventure RIPJAF = One Piece: Unlimited Adventure RIPPAF = One Piece Unlimited Cruise 1 : Le Trésor sous les Flots RIQPUJ = Dancing on Ice RIRE8P = Iron Man RIRP8P = Iron Man RITFMR = Intervilles : Le Jeu Officiel RIUJAF = One Piece Unlimited Cruise 2: Awakening of a Hero RIUPAF = One Piece - Unlimited Cruise 2 : L'Eveil d'un Héros RIVEXJ = Ivy The Kiwi? RIVJAF = Ivy the Kiwi? RIVP99 = Ivy The Kiwi? RIWENR = Burger Island RIXE20 = Dodge Racing: Charger vs. Challenger RIXP7J = Dodge Racing: Charger vs Challenger RIYE52 = Space Camp RIYP52 = Space Camp RIZENR = Indianapolis 500 Legends RJ2E52 = 007: Quantum of Solace RJ2JGD = 007: Quantum of Solace RJ2P52 = 007 : Quantum of Solace RJ3E20 = Jeep Thrills RJ3P7J = Jeep Thrills RJ4ENR = Jewel Master: Cradle of Rome RJ4PRM = Naissance de Rome : Sur les Traces de César RJ6E69 = MySims Sky Heroes RJ6P69 = MySims Sky Heroes RJ7FWP = Télé 7 Jeux : Mots Fléchés RJ8E64 = Indiana Jones and the Staff of Kings RJ8P64 = Indiana Jones et le Sceptre des Rois RJ9E5Z = thinkSMART Family RJ9FMR = L'Entraîneur Cérébral et Sportif RJ9PFR = Think Logic Trainer RJ9XML = Think Logic Trainer RJAD52 = Call of Duty: Modern Warfare - Reflex Edition RJAE52 = Call of Duty: Modern Warfare - Reflex Edition RJAP52 = Call of Duty : Modern Warfare - Edition Réflexes RJAX52 = Call of Duty: Modern Warfare - Edition Réflexes RJBJAF = Daikaijuu Battle Ultra Coliseum RJCE52 = Score International Baja 1000: World Championship Offroad Racing RJCP52 = Score International Baja 1000: World Championship Offroad Racing RJDPKM = SOS Animaux RJEE70 = Jenga World Tour RJEP70 = Jenga World Tour RJFE5G = Jillian Michaels' Fitness Ultimatum 2009 RJFP5G = Jillian Michaels' Fitness Ultimatum RJFPKM = Jillian Michaels Fitness Ultimatum 2009 RJGJDA = Jinsei Game Wii RJHE52 = Madagascar Kartz RJHP52 = Madagascar Kartz RJIP6M = Ferrari: The Race Experience RJJE8P = Jambo! Safari Animal Rescue RJJG52 = Guitar Hero III Custom : JJ-KwiK's Edition RJJP8P = Jambo! Safari Ranger Adventure RJMERS = Jumper: Griffin's Story RJMPRS = Jumper : Griffin's Story RJNE20 = Build 'N Race RJOEXJ = Ju-on: The Grudge RJOJJ9 = Kyoufu Taikan Juon RJOP99 = Ju-On La Malédiction RJPJA4 = Jikkyou Powerful Pro Yakyuu Wii RJQE5G = Pajama Sam: Don't Fear the Dark RJQP70 = Sam Pyjam : Héros de la Nuit RJREA4 = Dance Dance Revolution: Hottest Party 3 RJRJA4 = Dance Dance Revolution: MUSIC FIT RJRPA4 = Dance Dance Revolution: Hottest Party 3 RJSENR = Kawasaki Jet Ski RJSPNR = Kawasaki Jet Ski RJSPUG = Kawasaki Jet Ski RJSXUG = Kawasaki Jet Ski RJTJ01 = Minna no Joushiki Ryoku TV RJVEGN = Hysteria Hospital: Emergency Ward RJVPGN = Hysteria Hospital: Emergency Ward RJWJEL = Jawa mammoth And A Secret Stone RJXE5G = Go Play Lumberjacks RJXXFR = Go Play Lumberjacks RJYE5Z = Doctor Fizzwizzle's Animal Rescue RJZP7U = SNK Arcade Classics Volume 1 RK2EEB = Trauma Center: New Blood RK2JEB = Trauma Center: New Blood RK2P01 = Trauma Center : New Blood RK3J01 = And-Kensaku RK4JAF = Kekkaishi RK5E01 = Kirby's Epic Yarn RK5J01 = Keito no Kirby RK5K01 = Kirby's Epic Yarn RK5P01 = Kirby au Fil de l'Aventure RK6E18 = Marble Saga: Kororinpa RK6J18 = Kororinpa 2 RK6P18 = Marbles! Balance Challenge RK7J0A = Ougon no Kizuna RK8E54 = Major League Baseball 2K8 RK9EA4 = Karaoke Revolution RK9PA4 = Karaoke Revolution RKAE6K = Ultimate Shooting Collection RKAJMS = Milestone Shooting Collection RKAK8M = Milestone Shooting Collection Karous Wii RKAP6K = Ultimate Shooting Collection RKBE41 = Cranium Kabookii RKBP41 = Cranium Kabookii RKDEEB = Trauma Center: Second Opinion RKDJEB = Trauma Center: Second Opinion RKDJG9 = Kamen Rider: Climax Heroes W RKDP01 = Trauma Center : Second Opinion RKDPEB = Trauma Center : Second Opinion RKEENR = Cate West: The Vanishing Files RKEPGN = Cate West : The Vanishing Files RKEPNR = Cate West : Les Affaires Non Classées RKFEH4 = The King of Fighters Collection: The Orochi Saga RKFKZA = King of Fighters Collection: The Orochi Saga RKFP7U = The King of Fighters Collection : The Orochi Saga RKGEGY = Bratz Kidz: Slumber Party RKGPGY = Bratz : Kidz Party RKHE52 = Kung Fu Panda : Guerriers Légendaires RKHP52 = Kung Fu Panda : Guerriers Légendaires RKIENR = Kidz Sports: Ice Hockey RKIPUG = Kidz Sports: Ice Hockey RKJJ0Q = 250 Mannin no Kanken Wii de Tokoton Kanji Nou RKKE6K = Heavenly Guardian RKLEG9 = Coraline RKLPG9 = Coraline RKME5D = Mortal Kombat: Armageddon RKMP5D = Mortal Kombat : Armageddon RKNJ2N = Kanken Wii: Kanji Ou Kettei Sen RKOJBL = Relaxuma: Minna de Goyururi Seikatsu RKPE52 = Kung Fu Panda RKPJ52 = Kung Fu Panda RKPK52 = Kung Fu Panda RKPP52 = Kung Fu Panda : Le Jeu RKPV52 = Kung Fu Panda RKPY52 = Kung Fu Panda : Le Jeu RKQENR = Candace Kane's Candy Factory RKSENR = Kidz Sports: Basketball RKSPUG = Kidz Sports Basketball RKTENR = Kidz Sports: International Soccer RKTXUG = Kidz Sports : International Football RKVE54 = The BIGS 2 RKVP54 = The Bigs 2: Baseball RKWJ18 = Jigsaw Puzzle Kyo-no Wan Ko RKXE69 = Rock Band RKXP69 = Rock Band RKYE20 = Army Men: Soldiers of Misfortune RKYP20 = Army Men: Soldiers of Misfortune RKYP7J = Army Men : Soldiers of Misfortune RKZEA4 = Lost in Blue: Shipwrecked RKZJA4 = Survival Kids Wii RKZPA4 = Lost in Blue : Shipwrecked RL2E78 = Gallop & Ride! RL2HMN = Horse & Pony: My Riding Stables RL2HMR = Horse & Pony: My Riding Stables RL2PFR = Cheval & Poney : Mon Haras RL3EMJ = Luxor 3 RL4E64 = LEGO Indiana Jones 2: The Adventure Continues RL4P64 = LEGO Indiana Jones 2 : L'Aventure Continue RL5E52 = iCarly RL5P52 = iCarly RL6E69 = NERF N-Strike Elite RL7E69 = Littlest Pet Shop: Friends RL7P69 = Littlest Pet Shop: Friends RL8E54 = MLB Power Pros 2008 RL9ESD = Guitar Hero Linkin Park RL9PHZ = King of Pool RLADMR = Deal or No Deal: The Banker Is Back RLAE20 = Deal or No Deal RLAPMR = Deal or No Deal: The Banker Is Back RLBEWR = LEGO Batman: The Videogame RLBPWR = LEGO Batman : Le Jeu Vidéo RLCP7J = Love is... in bloom RLDEGY = Legend of the Dragon RLDPFK = La Legende du Dragon RLEEFS = Ten Pin Alley 2 RLEPFS = Ten Pin Alley 2 RLFE64 = Star Wars The Clone Wars: Lightsaber Duels RLFP64 = Star Wars The Clone Wars : Duels au Sabre Laser RLGE64 = LEGO Star Wars: The Complete Saga RLGJ52 = LEGO Star Wars: The Complete Saga RLGP64 = LEGO Star Wars : La Saga Complète RLHE52 = Little League World Series Baseball 2008 RLHP52 = Little League World Series Baseball 2008 RLIE64 = LEGO Indiana Jones: The Original Adventures RLIL78 = Guitar Hero 2nd Custom RLIP64 = LEGO Indiana Jones : La Trilogie Originale RLJEHJ = Line Rider 2: Unbound RLJPKM = Line Rider Freestyle RLKEGY = Code Lyoko: Quest for Infinity RLKPFK = Code Lyoko : Plongez vers l'Infini RLLP70 = Lucky Luke: Tous À L'Ouest RLMJH4 = Metal Slug Complete RLNEVN = Survivor RLNFMR = Koh-Lanta RLNHMR = Koh-Lanta RLNIMR = Koh-Lanta RLNPMR = Survivor RLPE69 = Littlest Pet Shop RLPP69 = Littlest Pet Shop RLQE52 = Big League Sports RLQP52 = World Championship Sports RLRE4F = Tomb Raider: Anniversary RLRJEL = Tomb Raider: Anniversary RLRP4F = Tomb Raider : Anniversary RLSE8P = Alien Syndrome RLSP8P = Alien Syndrome RLTENR = London Taxi: Rush Hour RLTPNR = London Taxi : Rush Hour RLTXUG = London Taxi : Rush Hour RLUE4Q = Disney's Bolt RLUP4Q = Volt : Star Malgré Lui RLUX4Q = Volt : Star Malgré Lui RLUY4Q = Bolt RLVE78 = Avatar: The Last Airbender RLVP78 = Avatar : Le Dernier Maître de l'Air RLWE78 = Ratatouille RLWJ78 = Ratatouille RLWP78 = Ratatouille RLWW78 = Ratatouille RLWX78 = Ratatouille RLWY78 = Ratatouille RLWZ78 = Ratatouille RLXEMJ = Luxor: Pharaoh's Challenge RLXP36 = Luxor : Pharaoh's Challenge RLYEWR = Looney Tunes: Acme Arsenal RLYPWR = Looney Tunes: Acme Arsenal RLZE4Z = Defendin' De Penguin RLZP4Z = Defendin' De Penguin RLZPXT = Defendin' De Penguin RM2E69 = Medal of Honor: Heroes 2 RM2J13 = Medal of Honor: Heroes 2 RM2P69 = Medal of Honor : Heroes 2 RM2U69 = Medal of Honor : Heroes 2 RM2X69 = Medal of Honor : Heroes 2 RM3E01 = Metroid Prime 3: Corruption RM3J01 = Metroid Prime 3: Corruption RM3P01 = Metroid Prime 3 : Corruption RM4E41 = Monster 4x4: World Circuit RM4J41 = Monster 4x4: World Circuit RM4P41 = Monster 4x4 : World Circuit RM5E7D = The Mummy: Tomb of the Dragon Emperor RM5P7D = La Momie : La Tombe De L'empereur Dragon RM6EEB = Baroque RM6P99 = Baroque RM7E4F = Monster Lab RM7P4F = Monster Lab RM8E01 = Mario Party 8 RM8J01 = Mario Party 8 RM8K01 = Mario Party 8 RM8P01 = Mario Party 8 RM9EGM = Mushroom Men: The Spore Wars RM9PGM = Mushroom Men : La Guerre des Spores RMAE01 = Mario Power Tennis RMAJ01 = Mario Power Tennis RMAP01 = Mario Power Tennis RMBE01 = Mario Super Sluggers RMBJ01 = Super Mario Stadium: Family Baseball RMCC01 = Mario Kart Wii (Custom) RMCE01 = Mario Kart Wii RMCE02 = Wiimms MKW Fun 2010-02.p RMCE03 = Wiimms MKW Fun 2010-10.p RMCE04 = Wiimms MKW Fun 2010-12.p RMCE05 = Wiimms MKW Fun 2010-12.p RMCE06 = Wiimms MKW Fun 2010-12.ntsc RMCE07 = Wiimms MKW Retro 2011-02.ntsc RMCE08 = Wiimms MKW Fun 2011-03.ntsc RMCE09 = Wiimms MKW Fun 2011-06.ntsc RMCE10 = Wiimms MKW Fun 2011-07.ntsc RMCE11 = Wiimms MKW Fun 2011-08.ntsc RMCE12 = Wiimms MKW Fun 2011-11.ntsc RMCE13 = Wiimms MKW Fun 2012-01.ntsc RMCE14 = Wiimms MKW Revival 2012-02.ntsc RMCE15 = Wiimms MKW Boost 2012-03.ntsc RMCE16 = Wiimms MKW Fun 2012-05.ntsc RMCE17 = Wiimms MKW Fun 2012-09.ntsc RMCE18 = Wiimms MKW N64 2012-10.ntsc RMCE19 = Wiimms MKW Fun 2012-12.ntsc RMCE20 = Wiimms MKW Fun 2013-04.ntsc RMCE21 = Wiimms MKW Fun 2013-09.ntsc RMCE22 = Wiimms MKW Fun 2013-10.ntsc RMCE23 = Wiimms MKW Fun 2014-01.ntsc RMCE24 = Wiimms MKW Retro 2014-02.ntsc RMCE25 = Wiimms MKW Fun 2014-04.ntsc RMCE26 = Wiimms MKW Fun 2014-11.ntsc RMCE65 = Mario Kart Wii: Double Dash 64 RMCE66 = Mizy's Texture Pack RMCE67 = Rookie's Texture & Music Pack RMCE68 = Character Kart Wii RMCE69 = Venom Kart Wii RMCE70 = Stickboy Kart Wii RMCE71 = Funky's Riivolution RMCE72 = CtocKart Wii RMCE73 = Mario Kart Adventures RMCE74 = Mario Kart Adventures RMCE75 = Cam, Tom and Troy's CTGP Pack RMCE76 = Pro CT Pack RMCE77 = SpyKid's CT Pack RMCE78 = Mario Kart: Double Dash!! Wii RMCE79 = Super Mario Kart Wii RMCE80 = Mario Kart 64 Wii RMCE81 = Spade's Custom Track Pack RMCE82 = HD's Retro Pack RMCE83 = Glitch Kart Wii RMCE84 = Legend's Awesome CT Pack RMCE85 = Project Double Dash!! RMCE86 = Newer Mario Kart Wii Revolution!: Backward Circuits RMCE87 = Newer Mario Kart Wii Revolution!: Sunset Sun & Dark Moon RMCE88 = Kaizo Kart Wii RMCE89 = Mario Kart Extra RMCE90 = Mario Kart QZW RMCE91 = Medal Kart 64 RMCE92 = MKWLH100's Custom Track Pack RMCE93 = MKW Hack Pack RMCE94 = Custom Track Kart Wii RMCE95 = Soarin's CT Pack X RMCE96 = Mario Kart 6 RMCE97 = Mario Kart Wii Awesomeness 2 RMCE98 = Mario Kart Wii Awesomeness RMCE99 = ReedyCustomPack Ultimate RMCEA1 = Mario Kart Adventures v0.8 RMCECT = Mario Kart Wii CTGP Revolution RMCEDK = Darky Kart Wii RMCEG2 = Mario Kart Wii CTGP Revolution RMCEGP = Mario Kart Wii CTGP Revolution RMCEWS = Wine's CT Pack RMCJ01 = Mario Kart Wii RMCJ12 = Wiimms MKW Fun 2011-11 RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCK01 = Mario Kart Wii RMCP01 = Mario Kart Wii RMCP02 = Wiimms MKW Fun 2010-02.p RMCP03 = Wiimms MKW Fun 2010-10.p RMCP04 = Wiimms MKW Fun 2010-12.p RMCP05 = Custom Mario Kart Wii RMCP06 = Wiimms MKW Fun 2010-12.pal RMCP07 = Wiimms MKW Retro 2011-02.pal RMCP08 = Wiimms MKW Fun 2011-03.pal RMCP09 = Wiimms MKW Fun 2011-06.pal RMCP10 = Wiimms MKW Fun 2011-07.pal RMCP11 = Wiimms MKW Fun 2011-08.pal RMCP12 = Wiimms MKW Fun 2011-11.pal RMCP13 = Wiimms MKW Fun 2012-01.pal RMCP14 = Wiimms MKW Revival 2012-02.pal RMCP15 = Wiimms MKW Boost 2012-03.pal RMCP16 = Wiimms MKW Fun 2012-05.pal RMCP17 = Wiimms MKW Fun 2012-09.pal RMCP18 = Wiimms MKW N64 2012-10.pal RMCP19 = Wiimms MKW Fun 2012-12.pal RMCP20 = Wiimms MKW Fun 2013-04.pal RMCP21 = Wiimms MKW Fun 2013-09.pal RMCP22 = Wiimms MKW Fun 2013-10.pal RMCP23 = Wiimms MKW Fun 2014-01.pal RMCP24 = Wiimms MKW Retro 2014-02.pal RMCP25 = Wiimms MKW Fun 2014-04.pal RMCP26 = Wiimms MKW Fun 2014-11.pal RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCX = Mario Kart Wii CTGP Revolution Channel RMDE69 = Madden NFL 07 RMDP69 = Madden NFL 07 RMEJDA = Major Dream RMFE68 = AMF Bowling Pinbusters! RMFP68 = AMF Bowling Pinbusters! RMGC01 = Super Mario Galaxy RMGE01 = Super Mario Galaxy RMGE52 = Guitar Hero III Custom : Megadeth RMGJ01 = Super Mario Galaxy RMGK01 = Super Mario Galaxy RMGP01 = Super Mario Galaxy RMGR01 = Super Mario Galaxy RMHC08 = Monster Hunter Tri (Custom) RMHE08 = Monster Hunter Tri RMHJ08 = Monster Hunter Tri RMHP08 = Monster Hunter Tri RMIE20 = Margot's Word Brain RMIP7J = Margot's Word Brain RMJJC8 = Mah-jong Rally Wii RMKE01 = Mario Sports Mix RMKE02 = Custom Kart 1 RMKJ01 = Mario Sports Mix RMKP01 = Mario Sports Mix RMLEH4 = Metal Slug Anthology RMLJH4 = Metal Slug Complete RMLK52 = Metal Slug Complete RMLP7U = Metal Slug Anthology RMLPH4 = Metal Slug Anthology RMME7U = Mercury Meltdown Revolution RMMJ7U = Tama-run RMMP52 = Guitar Hero III Custom : Metal Mayhem RMMP7U = Mercury Meltdown Revolution RMNDFR = Ma Pension d'Animaux RMNHMN = My Pet Hotel RMNHMR = My Pet Hotel RMNPFR = Ma Pension d'Animaux RMOE52 = Monster Jam RMOP52 = Monster Jam RMPE54 = MLB Power Pros RMPP54 = MLB Power Pros RMQENR = Myth Makers: Orbs of Doom RMQPUG = Myth Makers: Orbs of Doom RMQXUG = Myth Makers: Orbs of Doom RMRE5Z = Cocoto Magic Circus RMRPNK = Cocoto Magic Circus RMRXNK = Cocoto Magic Circus RMSE52 = Marvel: Ultimate Alliance 2 RMSP52 = Marvel: Ultimate Alliance 2 RMTJ18 = Momotarô Dentetsu 16 RMUE52 = Marvel: Ultimate Alliance RMUJ2K = Marvel: Ultimate Alliance RMUP52 = Marvel : Ultimate Alliance RMVE69 = Medal of Honor: Vanguard RMVP69 = Medal of Honor : Avant-Garde RMVX69 = Medal of Honor : Avant-Garde RMWE20 = M&M's Kart Racing RMWP20 = M&M's Kart Racing RMXE78 = MX vs. ATV: Untamed RMXF78 = MX vs. ATV : Extreme Limite RMXP78 = MX vs. ATV : Extreme Limite RMYE5Z = Myth Makers: Super Kart GP RMYPUG = Myth Makers : Super Kart GP RMYXUG = Myth Makers : Super Kart GP RMZE5Z = Myth Makers: Trixie in Toyland RMZPUG = Myth Makers: Trixie in Toyland RN2EAF = Namco Museum Remix RN2K70 = Namco Museum Remix RN2P70 = Namco Museum Remix RN3E78 = Nicktoons: Attack of the Toybots RN3J78 = Nicktoons: Attack of the Toybots RN3P78 = Bob l'Eponge et ses Amis : Contre les Robots-Jouets RN3X78 = Bob l'Eponge et ses Amis : Contre les Robots-Jouets RN4E41 = Dawn of Discovery RN4P41 = ANNO : Créez votre Monde RN5E78 = The Naked Brothers Band: The Video Game RN5P78 = The Naked Brothers Band: The Video Game RN6ENR = North American Hunting Extravaganza RN6P7J = North American Hunting Extravaganza RN7E78 = Neighborhood Games RN7P78 = Big Family Games RN8JC8 = Nobunaga no Yabou Kakushin with Power-Up Kit RN9E4F = Escape from Bug Island RN9JEL = Necro-Nesia RN9P4F = Escape From Bug Island RNAE69 = NCAA Football 09 RNBE69 = NBA Live 08 RNBP69 = NBA Live 08 RNBX69 = NBA Live 08 RNCEH4 = SNK Arcade Classics Volume 1 RNCPH4 = SNK Arcade Classics Volume 1 RNDJAF = Nodame Cantabile Dream Orchestra RNEEDA = Naruto Shippuden: Clash of Ninja Revolution 3 RNEJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX 3 RNEPDA = Naruto Shippuden : Clash of Ninja Revolution 3 RNFE69 = Madden NFL 08 RNFP69 = Madden NFL 08 RNGJ99 = Negima!? Neo-Pactio Fight!! RNHE41 = No More Heroes RNHJ99 = No More Heroes RNHK8M = No More Heroes RNHP41 = No More Heroes RNHP99 = No More Heroes RNIPGT = Mind.Body.Soul : Nutrition RNJE4F = Mini Ninjas RNJP4F = Mini Ninjas RNKE69 = NERF N-Strike RNKP69 = NERF N-Strike RNLE54 = NHL 2K9 RNLP54 = NHL 2K9 RNME5Z = Ninjabread Man RNMPUG = Ninjabread Man RNMXUG = Ninjabread Man RNNE4Q = The Chronicles of Narnia: Prince Caspian RNNJ4Q = The Chronicles of Narnia: Prince Caspian RNNP4Q = Le Monde De Narnia Chapitre 2 : Le Prince Caspian RNNX4Q = Le Monde De Narnia Chapitre 2 : Le Prince Caspian RNNY4Q = Le Monde De Narnia Chapitre 2 : Le Prince Caspian RNNZ4Q = Le Monde De Narnia Chapitre 2 : Le Prince Caspian RNOJ01 = Another Code R Kioku no Tobira RNOP01 = Another Code : R - Les Portes de la Mémoire RNPE69 = Need for Speed: ProStreet RNPJ13 = Need for Speed: ProStreet RNPK69 = Need for Speed: ProStreet RNPP69 = Need for Speed : ProStreet RNPX69 = Need for Speed : ProStreet RNPY69 = Need for Speed: ProStreet RNRE41 = Nitro Bike RNRJ41 = Nitro Bike RNRP41 = Nitro Bike RNSD69 = Need for Speed: Carbon RNSE69 = Need for Speed Carbon RNSF69 = Need for Speed : Carbon RNSJ13 = Need for Speed: Carbon RNSP69 = Need for Speed : Carbon RNSX69 = Need for Speed : Carbon RNUE8P = Nancy Drew: The White Wolf of Icicle Creek RNVE5Z = Anubis II RNVP5Z = Anubis II RNVPUG = Anubis II RNVXUG = Anubis II RNWJAF = Namco Carnival RNWKAF = Namco Museum Remix RNXEDA = Naruto: Clash of Ninja Revolution RNXJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX RNXPDA = Naruto : Clash of Ninja Revolution European Version RNYEDA = Naruto: Clash of Ninja Revolution 2 RNYJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX 2 RNYPDA = Naruto : Clash of Ninja Revolution 2 European Version RNZE69 = Ninja Reflex RNZJ13 = Ninja Reflex RNZK69 = Ninja Reflex RNZP69 = Ninja Reflex RO2E7N = Ford Racing Off Road RO2P7N = Off Road RO3EXJ = Little King's Story RO3J99 = Little King's Story RO3P99 = Little King's Story RO4JDA = Toshinden RO5E52 = Hot Wheels: Battle Force 5 RO5P52 = Hot Wheels: Battle Force 5 RO7E7D = Legend of Spyro: The Eternal Night RO7P7D = The Legend of Spyro : The Eternal Night RO8E7D = Legend of Spyro: Dawn of the Dragon RO8P7D = La Légende de Spyro : La Naissance d'un Dragon RO8X7D = La Légende de Spyro: La Naissance d'un Dragon RO9EFS = Aqua Panic! RO9PNK = Aqua Panic! Sauvez-les Tous!!! ROAE36 = Overlord: Dark Legend ROAP36 = Overlord : Dark Legend ROBE7U = Obscure: The Aftermath ROBPPL = Obscure 2 ROCE5Z = Cocoto Kart Racer ROCPNK = Cocoto Kart Racer RODE01 = WarioWare: Smooth Moves RODJ01 = WarioWare: Smooth Moves RODK01 = WarioWare: Smooth Moves RODP01 = WarioWare : Smooth Moves ROEEJZ = Hotel for Dogs ROEPGT = Palace pour chiens ROFE5Z = Offroad Extreme Special Edition ROFPUG = Offroad Extreme! ROFXUG = Offroad Extreme! ROGE78 = Tak and the Guardians of Gross ROGP78 = Tak and the Guardians of Gross ROHJAF = Happy Dance Collection ROJE52 = Rapala: We Fish ROJP52 = Rapala: We Fish ROKJ18 = Karaoke Joysound Wii ROLE8P = Mario & Sonic at the Olympic Winter Games ROLJ01 = Mario & Sonic at the Olympic Winter Games ROLK01 = Mario & Sonic at the Olympic Winter Games ROLP8P = Mario & Sonic aux Jeux Olympiques d'Hiver ROMESD = Monster Hunter G (English Patched) ROMJ08 = Monster Hunter G RONEG9 = Onechanbara: Bikini Zombie Slayers RONJG9 = Onechanbara Revolution RONPG9 = Onechanbara : Bikini Zombie Slayers ROPE41 = Open Season ROPP41 = Les Rebelles de la Fôret ROQJEP = Baroque For Wii ROSJ01 = Takt of Magic ROTE20 = Twin Strike: Operation Thunder ROTP20 = Twin Strike : Operation Thunder ROTP7J = Twin Strike : Operation Thunder ROUJAF = One Piece Unlimited Cruise 1: The Treasure Beneath the Waves ROUPAF = One Piece - Unlimited Cruise 1 : Le Trésor sous les Flots ROVE6U = Playmobil Circus : Tous en Piste ROVPHM = Playmobil Circus: Tous en Piste ROWE08 = Okami ROWJ08 = Okami ROWP08 = Okami ROXE20 = Order Up! ROXP7J = Order Up! ROXX7J = Order Up! ROYE41 = Cloudy with a Chance of Meatballs ROYP41 = Tempête de boulettes géantes : Le Jeu Vidéo ROYX41 = Tempête de boulettes géantes : Le Jeu Vidéo RP2E69 = Smarty Pants RP2P69 = Cerebrum RP3JAF = Pro Golfer Saru RP4E69 = MySims Party RP4J13 = Boku To Sim No Machi Party RP4P69 = MySims Party RP5JA4 = Jikkyou Powerful Pro Baseball 15 RP6E41 = Petz Crazy Monkeyz RP6P41 = Petz : Singes & Compagnie RP7E52 = Pirates: Hunt for Blackbeard's Booty RP7P52 = Pirates : Le trésor de Barbe-Noire RP9ERS = Space Chimps RP9PRS = Les Chimpanzés de l'Espace RP9XRS = Les Chimpanzés de l'Espace RPAF70 = Kid Paddle : Lost in the Game RPBE01 = Pokémon Battle Revolution RPBJ01 = Pokémon Battle Revolution RPBP01 = Pokemon Battle Revolution RPCE20 = Puzzler Collection RPCP41 = Puzzler Collection RPCX7J = Puzzler Collection RPDEGN = PDC Championship Darts 2008 RPDPGN = PDC World Championship Darts 2008 RPFE52 = Pitfall: The Big Adventure RPFP52 = Pitfall : La Grande Aventure RPFU52 = Pitfall: The Big Adventure RPGE5D = Rampage: Total Destruction RPGP5D = Rampage : Total Destruction RPHPPN = Peppa Pig: The Game RPIE52 = Pimp My Ride RPIP52 = Pimp My Ride RPJE7U = Arc Rise Fantasia RPJJ99 = Arc Rise Fantasia RPKE52 = World Series of Poker: Tournament of Champions 2007 Edition RPKP52 = World Series of Poker : Tournament of Champions 2007 Edition RPLE52 = Rapala Tournament Fishing RPLP52 = Rapala Tournament Fishing RPMJA4 = Jikkyou Powerful Pro Major League 2 RPNE78 = Paws & Claws: Pet Resort RPOEC8 = Opoona RPOJC8 = Opoona RPOPC8 = Opoona RPPE41 = Prince of Persia: Rival Swords RPPP41 = Prince of Persia : Rival Swords RPQES5 = Pool Party RPQPS5 = Pool Party RPSE4Q = Disney Princess: Enchanted Journey RPSJ4Q = Disney Princess Wii RPSP4Q = Disney Princesse : Un Voyage Enchanté RPTD52 = Puppy Luv RPTE52 = Puppy Luv: Your New Best Friend RPTP52 = Puppy Luv : Votre Nouvel Ami RPUJ8P = Puyo Puyo! 15th Anniversary RPVE4Z = Purr Pals RPVPKM = Cats Academy RPWX41 = Prince of Persia : Les Sables Oubliés RPWZ41 = Prince of Persia: The Forgotten Sands RPXE69 = EA Playground RPXJ13 = EA Playground RPXP69 = EA Playground RPYE9B = Super Swing Golf RPYJ9B = Super Swing Golf RPYP9B = Pangya! Golf with Style RPZJA4 = Jikkyou Powerful Pro Baseball Wii Ketteiban RQ2JK6 = Crazy Climber Wii RQ3PGN = PDC World Championship Darts 2009 RQ4E78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ4J78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ4P78 = Bob l'éponge : La Créature du Crabe Croustillant RQ5E5G = Mad Dog McCree Gunslinger Pack RQ5P5G = Mad Dog McCree Gunslinger Pack RQ5X5G = Mad Dog McCree Gunslinger Pack RQ6EJJ = Cursed Mountain RQ6PKM = Cursed Mountain RQ6XKM = Cursed Mountain RQ7E20 = Martian Panic RQ7PXT = Martian Panic RQ8E08 = MotoGP 08 RQ8P08 = MotoGP 08 RQ9E69 = NBA Live 09 All-Play RQ9F69 = NBA Live 09 All-Play RQ9P69 = NBA Live 09 All-Play RQ9S69 = NBA Live 09 All-Play RQBENR = Kawasaki Quad Bikes RQBPNR = Kawasaki Quad Bikes RQBPUG = Kawasaki Quad Bikes RQBXUG = Kawasaki Quad Bikes RQCEAF = The Munchables RQCJAF = Tabemon RQEE6U = Agatha Christie: Evil Under the Sun RQEP6V = Agatha Christie : Les Vacances d'Hercule Poirot RQFE6U = Safecracker: The Ultimate Puzzle Adventure RQFP6V = Safecracker : Expert en Cambriolage RQGE69 = MySims Racing RQGJ13 = MySims Racing RQGJ69 = Boku To Sim No Machi Racing RQGP69 = MySims Racing RQIJ01 = Minna ga Shuyaku no NHK Kouhaku Quiz Kassen RQJE7D = Crash of the Titans RQJP7D = Crash of the Titans RQJX7D = Crash of the Titans RQKE41 = Circus Games RQKP41 = Circus Party RQLE64 = Star Wars The Clone Wars: Republic Heroes RQLP64 = Star Wars The Clone Wars : Les Héros de la République RQMEVN = Ocean Commander RQMPVN = Ocean Commander RQNEWR = Scooby-Doo! First Frights RQNPWR = Scooby-Doo! Opération Chocottes RQOE69 = Spore Hero RQOJ13 = Spore Hero RQOP69 = Spore Hero RQPE52 = Cabela's Trophy Bucks RQPP52 = Cabela's : Trophy Bucks RQPZ52 = Cabela's Monster Buck Hunter RQQE52 = Guitar Hero III Custom : Queen RQQE70 = Backyard Football '09 RQREXJ = The Sky Crawlers: Innocent Aces RQRJAF = The Sky Crawlers: Innocent Aces RQRPAF = The Sky Crawlers : Innocent Aces RQSE4Z = Pinball Hall of Fame: The Gottlieb Collection RQSP6M = Gottlieb Pinball Classics RQTE6U = Agatha Christie: And Then There Were None RQTP6V = Agatha Christie : Dix Petits Negres RQUEFS = Super PickUps RQVE20 = Pacific Liberator RQVP20 = Pacific Liberator RQWEG9 = Puzzle Quest: Challenge of the Warlords RQWPG9 = Puzzle Quest : Challenge of the Warlords RQXP70 = Astérix aux Jeux Olympiques RQYENR = Fantasy Aquarium World RQZE41 = Monster 4x4: Stunt Racer RQZP41 = Monster 4x4: Stunt Racer RR2ENR = Rig Racer 2 RR2PNR = Rig Racer 2 RR2PUG = Rig Racer 2 RR3EA4 = Ultimate Party Challenge RR3JA4 = Family Challenge Wii RR3PA4 = Let's Party! RR4EGY = Build-A-Bear Workshop: A Friend Fur All Seasons RR4PFK = Build-A-Bear Workshop : Un Ami pour chaque Saison RR5E70 = Ready 2 Rumble Revolution RR5P70 = Ready 2 Rumble Revolution RR7PVP = Real de Madrid RR8PUJ = International Athletics RR9E78 = WWE SmackDown vs. Raw 2009 RRAE5Z = Rock 'N' Roll Adventures RRAPUG = Rock 'N' Roll Adventures RRAXUG = Rock 'N' Roll Adventures RRBE41 = Rayman Raving Rabbids RRBJ41 = Rayman Raving Rabbids RRBP41 = Rayman Contre les Lapins Crétins RRCE52 = Barbie Horse Adventures: Riding Camp RRCP52 = Barbie Cavalière : Stage d'Equitation RRDE69 = Rock Band Track Pack: Vol. 2 RRDP69 = Rock Band Song Pack 2 RREE69 = Rock Band Track Pack: Vol. 1 RREP69 = Rock Band Song Pack 1 RRFEE9 = Reel Fishing: Angler's Dream RRFPE9 = Reel Fishing: Angler's Dream RRGE52 = Madagascar: Escape 2 Africa RRGP52 = Madagascar 2 RRHPUJ = Mary King's Riding School 2 RRHXUJ = Mary King's Riding School 2 RRIPTV = Paint Party RRJFMR = Cuisine Party RRJIMR = Cuisine Party RRJPMR = Cuisine Party RRKE70 = Alone in the Dark RRKP70 = Alone in the Dark RRLE78 = Bratz: Girlz Really Rock RRLP78 = Bratz : Girlz Really Rock RRLX78 = Bratz : Girlz Really Rock RRLY78 = Bratz : Girlz Really Rock RRLZ78 = Bratz: Girlz Really Rock RRME69 = Hasbro: Family Game Night RRMP69 = Hasbro : Best of des Jeux en Famille RRMX69 = Hasbro : Best of des Jeux en Famille RRPE41 = The Price Is Right RRQE52 = Shrek's Carnival Craze Party Games RRQP52 = Shrek : La Fête Foraine en Délire RRQX52 = Shrek : La Fête Foraine en Délire RRRE5Z = Real Heroes: Firefighter RRRPRM = Real Heroes : Firefighter RRSE4Q = Meet The Robinsons RRSJ4Q = Meet The Robinsons RRSP4Q = Bienvenue chez les Robinson RRSX4Q = Bienvenue chez les Robinson RRTE52 = Block Party 20 Games RRTP52 = Fête en Famille 100% Fun RRUEJF = Winter Sports 2: The Next Challenge RRUFRT = Winter Sports 2009 : The Next Challenge RRUJJF = Winter Sports 2009 The Next Challenge RRUPRT = Winter Sports 2009 : The Next Challenge RRVENR = Battle Rage: Mech Conflict RRVPNR = Battle Rage : The Robot Wars RRWJAF = Super Robot Taisen NEO RRXE5Z = Monster Trux Arenas: Special Edition RRXPUG = Monster Trux Arenas RRXXUG = Monster Trux Arenas RRYEHG = Rogue Trooper: Quartz Zone Massacre RRYPHY = Rogue Trooper : Quartz Zone Massacre RRZEGY = Rubik's World RRZPGY = Rubik's Puzzle World RS2E20 = Ultimate Duck Hunting RS2EGJ = Ultimate Duck Hunting RS2PGJ = Ultimate Duck Hunting RS3E52 = Spider-Man 3 RS3J52 = Spider-Man 3 RS3P52 = Spider-Man 3 RS3X52 = Spider-Man 3 RS4EXS = Castle of Shikigami III RS4JJF = Shikigami No Shiro III RS4PXS = Castle Of Shikigami III RS5EC8 = Samurai Warriors: Katana RS5JC8 = Sengoku Musou KATANA RS5PC8 = Samurai Warriors : Katana RS7J01 = Eyeshield 21 Field Saikyo no Senshi Tachi RS8J8N = Shanghai RS9E8P = Sonic Riders: Zero Gravity RS9J8P = Sonic Riders: Shooting Star Story RS9P8P = Sonic Riders : Zero Gravity RSAE78 = SpongeBob's Atlantis SquarePantis RSAP78 = Bob l'Eponge : Bulle en Atlantide RSBE01 = Super Smash Bros. Brawl RSBE02 = Super Smash Bros. Project M Red Version RSBE03 = Super Smash Bros. Brawl DX RSBE04 = Super Smash Bros. Project M+ RSBE05 = Super Smash Bros. Project M Patt Edition RSBE06 = Darkon360's Brawl Hack Pack RSBE07 = Super Smash Bros. Project M: Theytah's Custom Build RSBE08 = Smash Bros. Infinite RSBE09 = Springboy64's Brawl Hack Pack RSBE10 = Brawl Ying Yang Edition RSBE11 = Professor MGW's Tournament Hack Pack #1 RSBE12 = Professor MGW's Tournament Hack Pack #2 RSBE13 = Professor MGW's Hack Pack #3 RSBE14 = Super Smash Bros. Brawl- Zeus RSBE15 = Super Smash Bros. Brawl Minus Mugen RSBE16 = Super Smash Bros. Brawl Shock RSBE17 = Super Smash Bros. Brawl - Battlefield Build RSBE18 = Super Smash Bros. Project M: Tournament Hack Pack RSBE19 = Super Smash Bros. Project M: Fully Dressed Edition RSBE20 = Pikezer's BrawlEx Pack RSBE21 = Calabrel's Custom Project M Build RSBE22 = Project M: Rage83's Competitive Custom Build RSBE23 = Super Smash Bros. Project M: Justice Build RSBE24 = Super Smash Bros. 3 RSBE25 = Super Smash Bros. Red Version RSBE26 = Super Smash Bros. Silver RSBE27 = Springboy64's Super Smash Bros. Brawl Hack Pack RSBE28 = SuperYoshiStar's Super Smash Bros. Brawl Hack Pack RSBE29 = Super Smash Bros. Project M: YoeiX Custom Build RSBE30 = Super Smash Bros. Project M: Arko's Loaded Custom Build RSBE31 = Super Smash Bros. Project M: Arko's Tournament Custom Build RSBE32 = Super Smash Bros. Project M: Sempai's Build RSBE33 = Super Smash Bros. Brawl Yin Yang Edition 2: The Balance of Kyu RSBE34 = Super Smash Bros. Project U: Blue Version RSBE35 = Super Smash Bros. Brawl Legacy: Project M RSBE36 = Super Smash Bros. Project Best RSBE37 = Super Smash Bros. Project M: Psycho Ghost's Build RSBE38 = Super Smash Sisters Generations RSBE39 = Super Smash Bros. Ultra Project M RSBE40 = Super Smash Bros. Project M: Ragnarok Edition RSBE41 = Super Smash Bros. Project M: Calabrel's Custom Build RSBE42 = Super Smash Bros. Project M: RedX Anime/Game Custom Build RSBEBB = Super Smash Bros. Balanced Brawl RSBEBM = Super Smash Bros. Brawl Minus RSBEBP = Super Smash Bros. Brawl Plus RSBEC3 = Super Smash Bros. Project M 3.5 Netplay Build RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBEWM = Super Smash Bros. Project M Wi-Fi RSBJ01 = Dairantou Smash Brothers X RSBK01 = Dairantou Smash Brothers X RSBP01 = Super Smash Bros. Brawl RSCD7D = Scarface : The World Is Yours RSCE7D = Scarface: The World Is Yours RSCP7D = Scarface : The World Is Yours RSCU7D = Scarface : The World Is Yours RSDJAF = SD Gundam: Scad Hammers RSEJGD = Soul Eater Monotone Princess RSFC99 = Muramasa: The Demon Blade (Custom) RSFE7U = Muramasa: The Demon Blade RSFJ99 = Oboro Muramasa RSFP99 = Muramasa : The Demon Blade RSHE69 = MySims Kingdom RSHJ13 = Boku to Sim no Machi Kingdom RSHK69 = MySims Kingdom RSHP69 = MySims Kingdom RSIE69 = MySims RSIJ13 = Boku To Sim No Machi RSIP69 = MySims RSJE41 = Broken Sword: Shadow of the Templars (Director's Cut) RSJESD = Guitar Hero III Custom : System of a Down RSJP41 = Les Chevaliers de Baphomet : Director's Cut RSKE52 = Shrek The Third RSKP52 = Shrek le Troisième RSKX52 = Shrek le Troisième RSLEAF = Soulcalibur: Legends RSLJAF = Soulcalibur: Legends RSLKAF = Soulcalibur: Legends RSLPAF = Soulcalibur Legends RSME8P = Super Monkey Ball: Banana Blitz RSMJ8P = Super Monkey Ball: Banana Blitz RSMP8P = Super Monkey Ball : Banana Blitz RSND69 = Les Simpsons : Le Jeu RSNE69 = The Simpsons Game RSNF69 = Les Simpson : Le Jeu RSNP69 = Les Simpson : Le Jeu RSNX69 = Les Simpson : Le Jeu RSOE4Z = Solitaire & Mahjong RSOP4Z = Solitaire & Mahjong RSPE01 = Wii Sports RSPJ01 = Wii Sports RSPK01 = Wii Sports RSPP01 = Wii Sports RSPW01 = Wii Sports RSQEAF = We Ski RSQJAF = Family Ski RSQPAF = Family Ski RSRE8P = Sonic and the Secret Rings RSRJ8P = Sonic and the Secret Rings RSRP8P = Sonic and the Secret Rings RSSEH4 = Samurai Shodown Anthology RSSJH4 = Samurai Spirits: Rokuban Shoubu RSSK52 = Samurai Shodown Anthology RSSP7U = Samurai Shodown Anthology RSTE64 = Star Wars: The Force Unleashed RSTJ52 = Star Wars: The Force Unleashed RSTP64 = Star Wars : Le Pouvoir de la Force RSUENR = Summer Sports: Paradise Island RSUP41 = Sports Party RSVE8P = Sonic Unleashed RSVJ8P = Sonic World Adventure RSVP8P = Sonic Unleashed : La Malédiction du Hérisson RSWE08 = Spyborgs RSWP08 = Spyborgs RSXE69 = SSX Blur RSXJ13 = SSX Blur RSXK69 = SSX Blur RSXP69 = SSX Blur RSXX78 = Guitar Hero RadioHead RSYE20 = Showtime Championship Boxing RSYP06 = Super Smash Bros. Brawl : YF06's Mod RSYP7J = Showtime Championship Boxing RSZJES = Yukinko Daisenpuu RSZPGT = Legend of Sayuki RT2E20 = Arctic Tale RT2P20 = Arctic Tale RT2P7J = Arctic Tale RT3E54 = Rockstar Games Presents: Table Tennis RT3JEL = Rockstar Games Presents: Table Tennis RT3P54 = Rockstar Games Presents : Table Tennis RT4EAF = Tales of Symphonia: Dawn of the New World RT4JAF = Tales Of Symphonia: Ratatosk no Kishi RT4PAF = Tales of Symphonia : Dawn of the New World RT5E8P = SEGA Superstars Tennis RT5P8P = SEGA Superstars Tennis RT6FKM = Le Manège Enchanté RT6PKM = Le Manège Enchanté RT7E69 = Tiger Woods PGA Tour 07 RT7F69 = Tiger Woods PGA Tour 07 RT7P69 = Tiger Woods PGA Tour 07 RT8E69 = Tiger Woods PGA Tour 08 RT8J13 = Tiger Woods PGA Tour Golf 08 RT8K69 = Tiger Woods PGA Tour Golf 08 RT8P69 = Tiger Woods PGA Tour 08 RT9E52 = Tony Hawk's Proving Ground RT9P52 = Tony Hawk's Proving Ground RTAE41 = Tom Clancy's H.A.W.X. 2 RTAP41 = Tom Clancy's H.A.W.X. 2 RTBE52 = Rapala Fishing Frenzy RTBP52 = Rapala Fishing Frenzy RTCE41 = Tom Clancy's Splinter Cell: Double Agent RTCP41 = Tom Clancy's Splinter Cell : Double Agent RTDE6K = The Monkey King: The Legend Begins RTDJES = Shin Chuuka Taisen RTDK8M = Shin Chuuka Taisen RTEE78 = Paws & Claws: Pet Vet RTEHMR = Real Stories : Vétérinaire RTEPFR = Ma clinique veterinaire RTFE52 = Transformers: The Game RTFJ52 = Transformers: The Game RTFK52 = Transformers: The Game RTFP52 = Transformers : Le jeu RTFX52 = Transformers: The Game RTFY52 = Transformers: Le jeu RTGJ18 = Wi-Fi Taiô Gensen Table Games Wii RTHE52 = Tony Hawk's Downhill Jam RTHP52 = Tony Hawk's Downhill Jam RTIE8P = Wacky World of Sports RTIJ8P = Wacky World of Sports RTIP8P = Le Sport en Folie RTJE68 = Star Trek: Conquest RTJP68 = Star Trek : Conquest RTKE5Z = Octomania RTKJDQ = Sharuui Takoron RTKK8M = Sharuui Takoron RTLE18 = Fishing Master: World Tour RTLJ18 = Mezase Tsuri Master Sekai Ni Challenge Hen RTLP18 = Fishing Master: World Tour RTME41 = TMNT RTMP41 = TMNT : Les Tortues Ninja RTNE41 = Tenchu: Shadow Assassins RTNJCQ = Tenchu 4 RTNP41 = Tenchu : Shadow Assassins RTOJ8P = 428: Fuusa Sareta Shibuya de RTPP41 = Top Trumps Adventures RTQENR = Monster Trux Offroad RTQPUG = Monster Trux Offroad RTQXUG = Monster Trux Offroad RTRE18 = Fishing Master RTRJ18 = Mezase Tsuri Master RTRP18 = Fishing Master RTSEVN = Totally Spies! Totally Party RTSP41 = Totally Spies! Totally Party RTTJAF = Tamagotchi no Furifuri Kagekidan RTUEJJ = Secret Files Tunguska RTUFKM = Secret Files : Tunguska RTUPKM = Secret Files : Tunguska RTVE64 = Thrillville: Off the Rails RTVP64 = Thrillville : Le parc en folie RTWE5D = TNA iMPACT! RTWP5D = TNA iMPACT! RTYP01 = Wii Echecs RTZE08 = Zack & Wiki : Le Trésor de Barbaros RTZJ08 = Zack & Wiki : Le Trésor de Barbaros RTZK08 = Zack & Wiki: Quest For Barbaros' Treasure RTZP08 = Zack & Wiki : Le Trésor de Barbaros RU1P4Q = Disney Sing It:: Sing It Star Singstar 1 RU2E5Z = Winter Sports 2: The Next Challenge RU2P4Q = Disney Sing It: Sing It Star Singstar 2 RU2P5Z = Winter Sports 2009 : The Next Challenge RU3E5Z = Summer Athletics: The Ultimate Challenge RU4E41 = My Fitness Coach 2: Exercise & Nutrition RU4X41 = NewU : Fitness First Personal Trainer RU5E4Q = The Princess and the Frog RU5P4Q = La princesse et la grenouille RU5V4Q = Disney: The Princess and the Frog RU5X4Q = La princesse et la grenouille RU5Y4Q = The Princess and the Frog (Riverboat Jazz Edition) RU6EHG = Free Running RU6PHY = Free Running RU7E5G = Night at the Museum: Battle of the Smithsonian - The Video Game RU7X5G = La nuit Au Musée 2 : Le Jeu vidéo RU8EFS = Bass Pro Shops: The Hunt RU9EGT = My Ballet Studio RU9PGT = J'apprends la danse classique RUAE52 = Monster Jam: Urban Assault RUAP52 = Monster Jam : Chaos Urbain RUBEVN = Ultimate Board Game Collection RUBP7N = Le Coffret De Jeux De Societe Familial RUCE5Z = Winter Sports: The Ultimate Challenge RUCPRT = Winter Sports 2008: The Ultimate Challenge RUCXRT = Winter Sports 2008 : The Ultimate Challenge RUEE4Q = G-Force RUEP4Q = Mission-G RUEX4Q = Mission-G RUEY4Q = Mission-G RUFEMV = Rune Factory: Frontier RUFJ99 = Rune Factory: Frontier RUFP99 = Rune Factory : Frontier RUGE7T = Goosebumps: HorrorLand RUGP5G = Goosebumps: HorrorLand RUHE52 = Bakugan Battle Brawlers RUHP52 = Bakugan Battle Brawlers RUHX52 = Bakugan Battle Brawlers (Toys R Us Edition) RUHZ52 = Bakugan Battle Brawlers RUIE4Q = Disney: Sing It RUIGGD = SingItStar Ned. 80's RUIP4Q = Disney : Sing It RUIX4Q = Disney : Sing It RUKEGT = Rolling Stone: Drum King RUKPGT = We Rock : Drum King RULE4Q = Ultimate Band RULP4Q = Ultimate Band RUME5Z = Ski and Shoot RUMPFR = Summer Athletics RUNJ0Q = New Unou Kids Wii EX RUOEPL = Aliens in the Attic RUOPPL = Les Zintrus RUPJC8 = Winning Post 7 Maximum 2008 RUQD78 = Up RUQE78 = Là-Haut RUQI78 = Là-Haut RUQJJE = Carl jii san no sora tobu Ie RUQP78 = Là-Haut RUQS78 = Là-Haut RUQX78 = Là-Haut RUREPL = Pool Hall Pro RURPPL = Pool Hall Pro RUSE78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUSK78 = SpongeBob SquarePants Featuring Nicktoons: Globs of Doom RUSP78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUSX78 = Bob L'Eponge & Ses Amis: L'Ultime Alliance RUSY78 = Bob L'Eponge & Ses Amis l'Ultime Alliance RUUE01 = Animal Crossing: City Folk RUUJ01 = Machi He Ikouyo: Doubutsu no Mori RUUK01 = Animal Crossing: City Folk RUUP01 = Animal Crossing : Let's Go to the City RUWJC8 = Winning Post World RUXPUG = Urban Extreme : Street Rage RUXXUG = Urban Extreme : Street Rage RUYE41 = No More Heroes 2: Desperate Struggle RUYJ99 = No More Heroes 2: Desperate Struggle RUYP99 = No More Heroes 2 : Desperate Struggle RUZE7T = Ultimate I SPY RUZP5G = Ultimate I SPY RV2E5D = Game Party 2 RV2P5D = More Game Party RV3P6N = Clever Kids: Creepy Crawlies RV7SMR = Koh-Lanta RV8E20 = Beach Fun: Summer Challenge RV8PRT = Beach Fun : Summer Challenge RV9E78 = Avatar: The Last Airbender - Into the Inferno RV9P78 = Avatar: Le Dernier Maître de l'Air - Into the Inferno RVAE78 = Avatar: The Last Airbender - The Burning Earth RVAP78 = Avatar: Le Dernier Maître de l'Air - Le Royaume de la Terre en Feu RVBERS = Alvin and the Chipmunks RVBPRS = Alvin et les Chipmunks RVDPLG = Diabolik : The Original Sin RVEFMR = Bienvenue Chez Les Ch'tis RVFE20 = Bigfoot: Collision Course RVFP7J = Bigfoot : Collision Course RVGE78 = Merv Griffin's Crosswords RVGP78 = Margot's Word Brain RVHP41 = Scrabble Interactif RVIE4F = Bionicle Heroes RVIP4F = Bionicle Heroes RVJPFR = So Blonde : Retour sur l'Ile Oubliée RVKEXJ = Valhalla Knights: Eldar Saga RVKJ99 = Valhalla Knights Elder Saga RVKKZA = Valhalla Knights: Eldar Saga RVKP99 = Eldar Saga RVLPA4 = Rock Revolution RVNE20 = Calvin Tucker's Redneck Jamboree RVNP20 = Calvin Tucker's Redneck Jamboree RVNP7J = Calvin Tucker's Redneck Jamboree RVOEPL = Vertigo RVOPPL = Vertigo RVPEFS = PopStar Guitar RVPPFS = PopStar Guitar RVQE41 = Movie Games RVQP41 = Ciné Studios Party RVREFS = Rebel Raiders: Operation Nighthawk RVRPFS = Rebel Raiders : Operation Nighthawk RVRPKG = Rebel Raiders : Operation Nighthawk RVSE69 = Skate It RVSJ13 = Skate It RVSP69 = Skate It RVTFMR = Real Stories : Vétérinaire RVTPMR = My Pet Club RVTXMR = Real Stories : Vétérinaire RVUE8P = Virtua Tennis 2009 RVUP8P = Virtua Tennis 2009 RVVE78 = Big Beach Sports RVVP78 = Big Beach Sports RVXFRT = RTL Biathlon 2009 RVXPRT = RTL Biathlon 2009 RVYD52 = Call of Duty : World at War RVYE52 = Call of Duty: World at War RVYK52 = Call of Duty: World at War RVYP52 = Call of Duty : World at War RVYX52 = Call of Duty: World at War RVYY52 = Call of Duty: World at War RVZE52 = Monsters vs. Aliens RVZP52 = Monstres contre Aliens RW3E4Q = Pirates of the Caribbean: At World's End RW3J4Q = Pirates Of The Caribbean: At World's End RW3P4Q = Pirates des Caraibes : Jusqu'au Bout du Monde RW4D41 = My Word Coach: Develop your vocabulary RW5F41 = Qui Veut Gagner Des Millions: 2ème Edition RW5P41 = Qui Veut Gagner Des Millions : 2ème Edition RW6PA4 = Dance Dance Revolution : Winx Club RW7E41 = Shaun White Snowboarding: Road Trip - Target Limited Edition RW8P41 = Alexandra Ledermann : La colline aux chevaux sauvages RW9P78 = WWE SmackDown vs. Raw 2009 RW9X78 = WWE SmackDown vs. Raw 2009 RWAD78 = WALL•E RWAE78 = WALL•E RWAJ78 = WALL•E RWAK78 = WALL•E RWAP78 = WALL-E RWAR78 = WALL•E RWAU78 = WALL•E RWAX78 = WALL•E RWAY78 = WALL•E RWAZ78 = WALL•E RWBENR = Kawasaki Snowmobiles RWBXUG = Kawasaki Snow Mobiles RWCE4Z = Pinball Hall of Fame: The Williams Collection RWCP4Z = Pinball: Hall Of Fame RWCP6M = Williams Pinball Classics RWDC52 = Guitar Hero III Custom: WD Custom RWDE5G = Wild Earth: African Safari RWDP5G = Wild Earth : African Safari RWEEA4 = Pro Evolution Soccer 2008 RWEJA4 = Winning Eleven PLAY MAKER 2008 RWEPA4 = Pro Evolution Soccer 2008 RWFH41 = Mon Coach Personnel : J'Enrichis mon Vocabulaire RWGE08 = We Love Golf! RWGJ08 = We Love Golf! RWGP08 = We Love Golf! RWHP4F = Top Trumps: Doctor Who RWIE18 = Wing Island RWIJ18 = Wing Island RWIP18 = Wing Island RWJENR = WordJong Party RWKE5G = Cooking Mama: World Kitchen RWKPGT = Cooking Mama 2 : Tous à Table RWLE01 = Wario Land: Shake It! RWLJ01 = Warioland Shake RWLK01 = Wario Land Shaking RWLP01 = Wario Land : The Shake Dimension RWME78 = Worms: A Space Oddity RWMP78 = Worms : L'Odyssée Spatiale RWNF70 = Warning : Code De La Route RWOE69 = Monopoly RWOJ13 = Monopoly RWOP69 = Monopoly RWQPSP = WSC Real 08: World Snooker Championship RWRE4F = Wacky Races: Crash & Dash RWRP4F = Les Fous Du Volant : Battle Party RWSE8P = Mario & Sonic aux Jeux Olympiques RWSJ01 = Mario & Sonic at the Olympic Games RWSK01 = Mario & Sonic at the Olympic Games RWSP8P = Mario & Sonic aux Jeux Olympiques RWTEG9 = Ben 10: Alien Force RWTPG9 = Ben 10 : Alien Force RWUE52 = X-Men Origins: Wolverine RWUP52 = X-Men Origins : Wolverine RWUX52 = X-Men Origins : Wolverine RWWE52 = Guitar Hero III Custom : WWE The Hits RWWE78 = WWE SmackDown vs. Raw 2008 RWWJ78 = WWE SmackDown vs. Raw 2008 RWWP78 = WWE SmackDown vs. Raw 2008 RWWX78 = WWE SmackDown vs. Raw 2008 RWXES5 = Brave: A Warrior's Tale RWXPS5 = Brave : A Warrior's Tale RWYPHH = Runaway : The Dream of the Turtle RWZE5G = Wonder World Amusement Park RWZP5G = Wonder World Amusement Park RWZX5G = Wonder World Amusement Park RX2E70 = My Horse & Me: Riding for Gold RX2P70 = Mon Cheval et Moi 2 RX3E01 = ExciteBots: Trick Racing RX3J01 = ExciteBots: Trick Racing RX4E4Z = Casper's Scare School: Spooky Sports Day RX4PMT = Casper l'Ecole de la Peur: La Terrifiante Journée de Sport RX5E52 = Tony Hawk: Ride RX5P52 = Tony Hawk: Ride RX6E78 = The Biggest Loser RX6P78 = The Biggest Loser RX7JGD = Meja-maji March RX8JA4 = Jikkyou Powerful Pro Yakyuu Next RX9E69 = Need for Speed: Undercover RX9J13 = Need for Speed: Undercover RX9K69 = Need for Speed: Undercover RX9P69 = Need for Speed : Undercover RX9X69 = Need for Speed : Undercover RX9Y69 = Need for Speed : Undercover RXAE78 = WWE SmackDown vs. Raw 2010 RXAP78 = WWE SmackDown vs. Raw 2010 RXBE70 = Backyard Baseball '10 RXBP70 = Backyard Baseball '10 RXCE4Z = Dave Mirra BMX Challenge RXCP4Z = Dave Mirra BMX Challenge RXCPGT = Dave Mirra BMX Challenge RXDD4Q = Disney Th!nk Fast - Le Maxi Quiz RXDE4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDJ4Q = Disney Th!nk Haya Oshi Quiz RXDP4Q = Th!nk Fast : Le Maxi Quiz RXDR4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDX4Q = Disney Th!nk Fast : Le Maxi Quiz RXDY4Q = Th!nk Fast : Le Maxi Quiz RXEJDA = Major Wii Perfect Closer RXFEVN = Offshore Tycoon RXGE6K = Geon Cube RXGP6K = Geon Cube RXHF5D = Chaos à La Maison RXIE52 = Transformers: Revenge of the Fallen RXIP52 = Transformers : La Revanche RXJJDA = Jinsei Game Wii EX RXKEGL = TV Show King Party RXKFGL = TV Show King Party RXKPGL = TV Show King Party RXLE41 = Grey's Anatomy: The Video Game RXLP41 = Grey's Anatomy : Le Jeu Vidéo RXMJ8P = Miburi & Teburi RXNEXS = Hooked Again: Real Motion Fishing RXNJJF = Bass Fishing Wii World Tournament RXNPGT = Big Catch Bass Fishing 2 RXPEXS = Hooked!: Real Motion Fishing RXPJJF = Bass Fishing Wii RXPPGT = Big Catch Bass Fishing RXQEWR = Where the Wild Things Are RXQPWR = Max et les Maximonstres RXRERS = The Tale of Despereaux RXRPRS = Le Conte de Despereaux RXRXRS = Le Conte de Despereaux RXSPA4 = Dancing Stage Hottest Party RXUE41 = Surf's Up RXUP41 = Les Rois de la Glisse RXUX41 = Les Rois de la Glisse RXVXWP = Télé 7 Jeux : Mots Croisés RXWE20 = M&M's Beach Party RXXE4Q = Spectrobes: Origins RXXJ4Q = Spectrobes: Origins RXXP4Q = Spectrobes : Origins RXYE4Z = Puzzle Challenge: Crosswords and More! RXYP4Z = Puzzle Challenge Crosswords RXZE52 = Cabela's Dangerous Hunts 2009 RXZP52 = Cabela's Dangerous Adventures RY2E41 = Rayman Raving Rabbids 2 RY2J41 = Rayman Raving Rabbids 2 RY2K41 = Rayman Raving Rabbids 2 RY2P41 = Rayman Contre les Lapins Encore plus Crétins RY2R41 = Rayman Raving Rabbids 2 RY3E41 = Rayman Raving Rabbids TV Party RY3J41 = Rayman Raving Rabbids TV Party RY3K41 = Rayman Raving Rabbids: TV Party RY3P41 = Rayman Prod' présente : The Lapins Crétins Show RY4J8P = Puyo Puyo 7 RY5E52 = Big League Sports: Summer RY5P52 = World Championship Sports: Summer RY6EA4 = Walk It Out! RY6PA4 = Step to the Beat RY7PHZ = Ninja Captains RY8EFS = Bass Pro Shops: The Strike RYAJDA = Yattaman Wii Bikkuridokkiri Machine De Mou Race Da Koron RYAJSC = Yatterman Wii (Simplified Chinese Translation) RYBE69 = Boom Blox: Bash Party RYBP69 = Boom Blox : Smash Party RYDELT = Pet Pals: Animal Doctor RYDP6V = Pet Pals: Vétérinaire RYEEEB = 101-in-1 Party Megamix RYEPHZ = 101-in-1 Party Megamix RYGE9B = Rygar: The Battle of Argus RYGJ9B = Argus No Senshi Muscle Impact RYGP99 = Rygar : The Battle of Argus RYHES5 = Roogoo: Twisted Towers RYHPS5 = Roogoo: Twisted Towers RYIE9B = SPRay RYIP9B = SPRay RYJPTV = Princesse Lillifee : La fée magique RYKEAF = Family Ski & Snowboard RYKJAF = Family Ski: World Ski & Snowboard RYKPAF = Family Ski & Snowboard RYLDSV = Germany's Next Top Model RYNE6U = The Hardy Boys: The Hidden Theft RYNP6V = The Hardy Boys: The Hidden Theft RYOEA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYOJA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYOPA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYQE69 = Trivial Pursuit RYQP69 = Trivial Pursuit RYQX69 = Trivial Pursuit Nordic RYRE41 = Your Shape RYRP41 = Your Shape RYTE4Z = PBR: Out of the Chute RYVEMS = Arcade Shooter: Ilvelo RYVJMS = Illvelo Wii RYWE01 = Big Brain Academy: Wii Degree RYWJ01 = Wii de Yawaraka Atama Juku RYWK01 = Big Brain Academy: Wii Degree RYWP01 = Cérébrale Académie RYXE20 = Yamaha Supercross RYXP7J = Yamaha Supercross RYZE6U = World Party Games RYZPTV = Play the World RZ2JG9 = Simple Wii Series Vol. 1: The Minna de Kart Race RZ3JG9 = Simple Wii Series Vol. 2: The Minna de Bass Tsuri Taikai RZ4JG9 = Simple Wii Series Vol. 3: The Casino Party RZ5JG9 = Simple Wii Series Vol. 4: The Shooting Action RZ6JG9 = Simple Wii Series Vol. 5: The Block Kuzushi RZ7JG9 = Simple Wii Series Vol. 6: The Waiwai Konbatto RZ8JG9 = Simple 2000 Series Wii Vol. 1: The Table Game RZ9EG9 = Family Party: 30 Great Games RZ9JG9 = Simple 2000 Series Wii Vol. 2: The Party Game RZ9PG9 = Family Party : 30 Great Games RZAPTV = Lernerfolg Grundschule Power Math RZCE6K = Saint RZDC01 = The Legend of Zelda: Twilight Princess (Custom) RZDE01 = The Legend of Zelda: Twilight Princess RZDJ01 = The Legend of Zelda: Twilight Princess RZDK01 = The Legend of Zelda: Twilight Princess RZDP01 = The Legend of Zelda : Twilight Princess RZEE52 = Science Papa RZEP52 = Science Papa RZFPKM = Secret Files 2 : Puritas Cordis RZHE5G = Zoo Hospital RZHP5G = Zoo Hospital RZHX5G = Zoo Hospital RZIE20 = Winter Sports 3: The Great Tournament RZIPRT = Winter Sports 2010 : The Great Tournament RZJD69 = Dead Space : Extraction RZJE69 = Dead Space: Extraction RZJJ13 = Dead Space: Extraction RZJP69 = Dead Space : Extraction RZKE20 = Puzzle Kingdoms RZKP7J = Puzzle Kingdoms RZLE41 = Cook Wars RZLP41 = Chef Cuistot Party RZNJ01 = Zangeki no Reginleiv RZOE78 = World of Zoo RZOP78 = World of Zoo RZPE01 = Link's Crossbow Training RZPJ01 = Link's Crossbow Training RZPK01 = Link's Crossbow Training RZPP01 = Link's Crossbow Training RZREGT = The Destiny of Zorro RZRPGT = La Destinée de Zorro RZSEGJ = Speed Zone RZSP68 = Wheelspin RZTE01 = Wii Sports Resort RZTJ01 = Wii Sports Resort RZTK01 = Wii Sports Resort RZTP01 = Wii Sports Resort RZTW01 = Wii Sports Resort RZUE4Z = Crayola Colorful Journey RZYE41 = My Word Coach RZYF41 = Mon coach personnel : j'enrichis mon vocabulaire RZYP41 = Mon coach personnel : j'enrichis mon vocabulaire RZYS41 = My Word Coach: Develop your vocabulary RZZE8P = MadWorld RZZJEL = MadWorld RZZP8P = MadWorld S02PES = Sing It Star 90's S22JAF = Family Fishing S22K01 = Family Fishing S25JGD = Dragon Quest 25 Collection: Famicom & Super Famicom Dragon Quest I-II-III S26PML = 2-in-1: Pony Friends 2 + My Riding Stables: Life with Horses S2AEAF = Active Life: Explorer S2AJAF = Minna de Bouken! Family Trainer S2APAF = Family Trainer : Treasure Adventure S2BEPZ = Country Dance 2 S2BPXT = Country Dance 2 S2CE54 = New Carnival Games S2CP54 = Carnival Fête Foraine: Nouvelles Attractions S2DPML = Dance! It's Your Stage S2EE41 = ABBA: You Can Dance S2EP41 = ABBA : You Can Dance S2HE70 = Haunted House S2HP70 = Haunted House S2IE8P = Iron Man 2 S2IP8P = Iron Man 2 S2LE01 = PokéPark 2: Wonders Beyond S2LJ01 = PokéPark 2: Beyond the World S2LP01 = PokéPark 2: Le Monde des Voeux S2ME69 = Madden NFL 13 S2OEFS = Bass Pro Shops: The Strike - Tournament Edition S2PEA4 = Pro Evolution Soccer 2012 S2PJA4 = Winning Eleven PLAY MAKER 2012 S2PPA4 = Pro Evolution Soccer 2012 S2PXA4 = Pro Evolution Soccer 2012 S2PYA4 = Pro Evolution Soccer 2012 S2QE54 = NBA 2K12 S2QP54 = NBA 2K12 S2RPNK = Reload S2TJAF = Taiko no Tatsujin Wii: Dodoon to 2 Daime! S2VEG9 = Victorious: Taking the Lead S2VPAF = Victorious: Taking the Lead S2WE78 = WWE All Stars S2WP78 = WWE All Stars S2XE41 = Les Schtroumpfs 2 S2XP41 = Les Schtroumpfs 2 S2YE52 = Wipeout: Create & Crash S2ZE52 = Zhu Zhu Pets: Featuring The Wild Bunch S2ZP52 = Zhu Zhu Pets: Animaux de la Forêt S3AE5G = Attack of the Movies 3D S3BEWR = Batman: The Brave and the Bold S3BPWR = Batman: L'Alliance des Héros S3CENR = Triple Crown Championship Snowboarding S3DE18 = Deca Sports 3 S3DJ18 = Deca Sporta 3 S3DP18 = Sports Island 3 S3EE78 = Barbie Jet, Set & Style! S3EP78 = Barbie: Star de la Mode S3FE69 = FIFA Soccer 13 S3FP69 = FIFA 13 S3FX69 = FIFA 13 S3GE20 = Glacier 3: The Meltdown S3GPXT = Glacier 3 S3HJ08 = Sengoku Basara 3 Utage S3IEA4 = Pro Evolution Soccer 2013 S3IPA4 = Pro Evolution Soccer 2013 S3IXA4 = Pro Evolution Soccer 2013 S3IYA4 = Pro Evolution Soccer 2013 S3LPY1 = Andrew Lloyd Webber Musicals: Sing and Dance S3ME69 = The Sims 3 S3MP69 = Les Sims 3 S3PE4Q = Disney Princess: My Fairytale Adventure S3PP4Q = Disney Princesses: Mon Royaume Enchanté S3PX4Q = Disney Princess: My Fairytale Adventure S3RJMS = Twinkle Queen S3SJ18 = Karaoke Joysound Wii Super DX: Hitori de Minna de Utai Houdai! S3TJAF = Taiko no Tatsujin Wii: Minna de Party ☆ 3 Daime! S3WEG9 = Family Party: 30 Great Games Winter Fun S3WPG9 = Family Party : 30 Great Games Winter Fun S3XE78 = WWE '13 S3XP78 = WWE '13 S3ZE52 = Men In Black: Alien Crisis S3ZP52 = Men in Black : Alien Crisis S4MJGD = Dragon Quest X Online: Mesamashi Itsutsu no Shuzoku S4SJGD = Dragon Quest X: Nemureru Yuusha to Michibiki no Meiyuu Online S4TJAF = Taiko no Tatsujin Wii: Ketteiban S59E01 = Samurai Warriors 3 S59JC8 = Sengoku Musou 3 S59P01 = Samurai Warriors 3 S5BETL = Back to the Future: The Game S5BPKM = Retour vers le Futur - Le Jeu S5KJAF = Taiko no Tatsujin Wii Chou Goukaban S5QJC8 = SengokuMusou 3 Moushouden S5RESZ = Ram Racing S5RPNJ = Ram Racing S5SJHF = Inazuma Eleven Go Strikers 2013 S5TEG9 = Ben 10: Omniverse S5TPAF = Ben 10: Omniverse S5WE20 = Around The World in 50 Games S6BE4Q = Brave: The Video Game S6BP4Q = Rebelle S6BY4Q = Brave: The Video Game S6IE78 = Disney Princess: Enchanting Storybooks S6IP78 = Disney Princesse: Livres Enchantés S6RE52 = Wreck-It Ralph S6RP52 = Les Mondes de Ralph S6TJGD = Dragon Quest X (All in One Package) S72E01 = Kirby's Dream Collection: Special Edition S72J01 = Hoshi No Kirby: 20th Anniversary Edition S75E69 = Monopoly Streets S75P69 = Monopoly Streets S7AEWR = LEGO Batman 2: DC Super Heroes S7AKWR = LEGO Batman 2: DC Super Heroes S7AKZA = Lego Superheroes 1 S7APWR = LEGO Batman 2 : DC Super Heroes S7BE69 = Trivial Pursuit: Bet You Know It S7BP69 = Trivial Pursuit Casual S7CJAF = Kamen Rider Climax Heroes Fourze S7DE52 = Angry Birds: Star Wars S7DP52 = Angry Birds: Star Wars S7EP52 = Transformers : Édition Ultime Combat S7FE5G = Zumba Kids S7FPGT = Zumba Kids : La fête ultime pour les enfants S7JPKM = Let's Sing 6 - Spanish version S7KPKM = Let's Sing 2014 S7SP41 = Les schtroumpfs Party Pack S80U3Q = SingItStar Ultimate 80s SA3E5G = Alvin and the Chipmunks: Chipwrecked SA3P5G = Alvin et Les Chipmunks 3 SA5E78 = Are You Smarter Than A 5th Grader?: Back to School SA6EG9 = Ben 10: Galactic Racing SA6PAF = Ben 10: Galactic Racing SA7ESZ = Gummy Bears: Magical Medallion SA8P52 = The Amazing Spider-Man SA9D7K = Bibi und Tina Das grosse Reiterfest SAAJA4 = Winning Eleven PLAY MAKER 2013 SABENR = Alien Monster Bowling League SABPJG = Alien Monster Bowling League SACPVS = ACB Total 2010/2011 SACSVS = ACB Total 2010/2011 SADE70 = Backyard Sports: Sandlot Sluggers SAFUHS = AFL: Australian Football League SAGE41 = The Amazing Race SAHE69 = Hasbro: Family Game Night Fun Pack SAJE52 = Cabela's Survival: Shadows of Katmai SAJP52 = Cabela's Survival: Shadows of Katmai SAKENS = Sakura Wars: So Long, My Love SAKPNS = Sakura Wars: So Long, My Love SALE4Q = Alice in Wonderland SALP4Q = Alice au Pays des Merveilles SAME01 = New Super Mario Bros. Wii 11 American Revolution SANE01 = New Super Mario Bros. Wii Five Spica Edition SANEFS = Bass Pro Shops: The Hunt - Trophy Showdown SANT3Q = SingItStar Anthems SAOE78 = Monster High: Ghoul Spirit SAOP78 = Monster High: Lycée d'Enfer SAQE5G = Harley Pasternak's Hollywood Workout SARE4Z = Aladdin Magic Racer SARP01 = New Super Mario Bros. Wii 4 Arcadia Another Ride SARPNK = Aladin: Magic Racer SASEWW = Atrévete a Soñar SATE6K = Chuck E. Cheese's Super Collection SAUJ8P = Puyo Puyo!! 20th Anniversary SAVE5G = Alvin and the Chipmunks: The Squeakquel SAVX5G = Alvin and the Chipmunks: The Squeakquel SAWE52 = Angry Birds Trilogy SAWP52 = Angry Birds Trilogy SAXPFH = Max & the Magic Marker SAYE20 = L'Académie des Rangers SAYP41 = L'Académie des Rangers SAZE52 = The Amazing Spider-Man SAZP52 = The Amazing Spider-Man SB2ES5 = My Baby First Steps SB2PNP = My Baby 2 : Mon Bébé a Grandi SB3E08 = Sengoku Basara: Samurai Heroes SB3J08 = Sengoku BASARA 3 SB3P08 = Sengoku Basara : Samurai Heroes SB4C01 = Super Mario Galaxy 2 (Custom) SB4E01 = Super Mario Galaxy 2 SB4E02 = Neo Mario Galaxy SB4E03 = Super Mario Galaxy: Plumber's Way SB4E04 = Super Mario Sunshine Galaxy SB4E05 = Season Cycle Galaxy SB4E25 = Super Mario Galaxy 2.5 SB4J01 = Super Mario Galaxy 2 SB4J02 = Neo Mario Galaxy SB4J05 = Season Cycle Galaxy SB4K01 = Super Mario Galaxy 2 SB4P01 = Super Mario Galaxy 2 SB4P02 = Neo Mario Galaxy SB4P05 = Season Cycle Galaxy SB4W01 = Super Mario Galaxy 2 SB5E54 = NBA 2K11 SB5P54 = NBA 2K11 SB6E52 = Bakugan: Defenders of the Core SB6P52 = Bakugan : Defenders of the Core SB7IVU = Planet Basket 2009/2010 SB8EQH = Burger Bot SB9E78 = Barbie: Groom and Glam Pups SB9P78 = Barbie et le Salon de Beauté des Chiens SBAJGD = Dragon Quest Monsters: Battle Road Victory SBBE18 = Beyblade: Metal Fusion - Battle Fortress SBBJ18 = Metal Fight Beyblade Gachinko Stadium SBBP18 = Beyblade : Metal Fusion - Counter Leone SBCJ2N = Billy's Boot Camp: Wii de Enjoy Diet! SBDE08 = Resident Evil: The Darkside Chronicles SBDJ08 = Biohazard: The Darkside Chronicles SBDK08 = Biohazard: The Darkside Chronicles SBDP08 = Resident Evil : The Darkside Chronicles SBEPSV = Bermuda Triangle SBFE70 = Backyard Football '10 SBHEFP = Remington Great American Bird Hunt SBHPNK = Remington Great American Bird Hunt SBIEVZ = Busy Scissors SBIPVZ = Coiffure Académie SBJEG9 = Ben 10: Ultimate Alien Cosmic Destruction SBJPAF = Ben 10: Ultimate Alien Cosmic Destruction SBKEPZ = Brunswick Zone Cosmic Bowling SBLE5G = A Boy and His Blob SBLP5G = A Boy and His Blob SBNEG9 = Ben 10: Alien Force Vilgax Attacks SBNPG9 = Ben 10: Alien Force Vilgax Attacks SBOD3Q = StarSing : Chansons Magiques de Disney v1.1 SBQE4Z = Big Buck Hunter Pro SBREJJ = Let's Play Ballerina SBRPKM = Repetto : Naissance d'une Etoile SBSE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh SBSEFP = Remington Super Slam Hunting: North America SBSURN = Remington Super Slam Hunting: North America SBVE78 = SpongeBob's Boating Bash SBVG3Q = SingItStar Boybands vs Girlbands SBVP78 = SpongeBob's Boating Bash SBVS78 = SpongeBob's Boating Bash SBWC11 = New Super Mario Bros. 3: The Wrath of Shadow Bowser SBWE5G = Babysitting Mama SBWJRA = Babysitter Mama SBWPGT = Cooking Mama World: Babysitting Mama SBXEWR = The Bachelor: The Video Game SBYE41 = Dance on Broadway SBYP41 = Dance on Broadway SBZESZ = Bermuda Triangle: Saving the Coral SC2E8P = Conduit 2 SC2P8P = Conduit 2 SC4E64 = LEGO Star Wars III: The Clone Wars SC4P64 = LEGO Star Wars III : The Clone Wars SC5PGN = Challenge Me : Word Puzzles SC6PGN = Challenge Me : Brain Puzzles 2 SC7D52 = Call of Duty: Black Ops SC7E52 = Call of Duty: Black Ops SC7F52 = Call of Duty : Black Ops SC7I52 = Call of Duty: Black Ops SC7P52 = Call of Duty: Black Ops SC7S52 = Call of Duty: Black Ops SC8E01 = Wii Play: Motion SC8J01 = Wii Play: Motion SC8K01 = Wii Play: Motion SC8P01 = Wii Play: Motion SC9P52 = Cabela's Big Game Hunter 2010 SCAE18 = Calling SCAJ18 = CALLING Kuroki Chakushin SCAP18 = Calling SCBPNK = Cyberbike SCDE52 = Cabela's Dangerous Hunts 2011 SCDP52 = Cabela's Dangerous Hunts 2011 SCEE6K = Chuck E. Cheese's Party Games SCFPNK = Cocoto Festival SCGE20 = Calvin Tucker's Redneck: Farm Animal Racing Tournament SCGPXT = Calvin Tucker's: Farm Animals Racing Tournament SCHEQH = Canada Hunt SCIE41 = CSI: Fatal Conspiracy SCIP41 = Les Experts : Complot à Las Vegas SCJE4Q = LEGO Pirates of the Caribbean: The Video Game SCJP4Q = LEGO Pirates des Caraïbes : Le Jeu Vidéo SCKE6K = Chuck E. Cheese's Sports Games SCMJAF = Kamen Rider Climax Heroes OOO SCNEA4 = Scene It? Twilight SCNPA4 = Scene It? Twilight SCPE70 = Centipede: Infestation SCQDRV = Schlag den Raab - Das 2. Spiel SCREJH = Chicken Riot SCRPJH = Chicken Riot SCSE52 = Cruise Ship Vacation Games SCSPGR = Sports et Jeux en Croisière SCTE01 = The Curse of Black Toad SCTPNK = Cocoto Surprise SCUPFR = Crazy Chicken: Carnival SCWE41 = Gold's Gym: Dance Workout SCWP41 = Mon Coach Personnel : Danse & Fitness SCXESZ = Chevrolet Camaro: Wild Ride SCXPNJ = Chevrolet Camaro: Wild Ride SCYE4Q = Cars 2 SCYP4Q = Cars 2 SCYX4Q = Cars 2 SCYY4Q = Cars 2 SCYZ4Q = Cars 2 SCZEMH = Crazy Machines SCZPFR = Crazy Machines SD2E41 = Just Dance 2 SD2J01 = Just Dance Wii SD2K41 = Just Dance 2 SD2P41 = Just Dance 2 SD2Y41 = Just Dance 2: Best Buy Edition SD3DSV = Der Gesundheitscoach SD5PTV = Lernerfolg Grundschule Deutsch SD6PTV = Lernerfolg Grundschule Englisch SD7PTV = Lernerfolg Grundschule Mathematik SD8DSV = Mein neues Leben Abenteuer auf Tropicana SD9JAF = SD Gundam Gashapon Wars SDAE01 = Scooby-Doo! The Bros Adventure SDAE5G = The Daring Game for Girls SDBE78 = de Blob 2 SDBP78 = de Blob 2 SDDPML = The Ultimate Battle Of The Sexes SDEE5G = Dance Sensation! SDFE4Q = Disney Sing It: Family Hits SDFP4Q = Disney Sing It : Les Plus Belles Chansons des Films Disney SDGE4Q = Disney Channel: All Star Party SDGP4Q = Disney Channel : All Star Party SDHER3 = Super Smash Bros. Brawl Dark Hole/D.A.R.S. SDIE4Q = Disney Sing It: Party Hits SDIP4Q = Disney Sing It : Party Hits SDJJAF = SD Gundam: G Generation World SDLE78 = Dood's Big Adventure SDLP78 = La Grande Aventure de Dood SDMEG9 = Despicable Me: The Game SDMPAF = Moi, Moche et Méchant : Le Jeu Vidéo SDNE41 = Just Dance SDNP41 = Just Dance SDOPLR = Doctor Who: Return To Earth SDPE54 = Dora's Big Birthday Adventure SDPP54 = Joyeux Anniversaire Dora ! SDQJGD = Dragon Quest X Inishie no Ryu no Denshou Online SDREYG = Maximum Racing: Drag & Stock Racer SDRP3Q = SingItStar Deutsch Rock-Pop Vol. 1 SDRPNG = Drag & Stock Racer SDSPNG = We Dance SDTH3Q = SingItStar Die Toten Hosen SDTPGN = PDC World Championship Darts: Pro Tour SDUE41 = The Smurfs Dance Party SDUP41 = Les Schtroumpfs: Dance Party SDUPO1 = DU Super Mario Bros. : DU Edition SDVE41 = Driver: San Francisco SDVP41 = Driver : San Francisco SDWE18 = Lost in Shadow SDWJ18 = Lost in Shadow SDWP18 = A Shadow's Tale SDXE4Q = Disney Universe SDXP4Q = Disney Universe SDYEA4 = Dance Dance Revolution SDYPA4 = Dance Dance Revolution : Hottest Party 4 SDZE41 = Just Dance Kids SDZP41 = Dance Juniors SE2E69 = EA Sports Active 2 SE2P69 = EA Sports Active 2 SE3E41 = Just Dance 2015 SE3P41 = Just Dance 2015 SEAE69 = EA Sports Active: More Workouts SEAJ13 = EA Sports Active More Workout SEAP69 = EA Sports Active : Plus d'Exercices SECE69 = Create SECP69 = Create SEGA = Genplus GX SEGE6U = Yoga SEGP6V = Yoga SEKJ99 = Ikenie no Yoru SELE69 = FIFA Soccer 11 SELP69 = FIFA 11 SELX69 = FIFA 11 SEME4Q = Disney Epic Mickey SEMJ01 = Disney Epic Mickey: Mickey Mouse and the Magic Brush SEMP4Q = Disney Epic Mickey SEMX4Q = Disney Epic Mickey SEMY4Q = Disney Epic Mickey SEMZ4Q = Disney Epic Mickey SENPZX = Enclave: Shadows of Twilight SEOP01 = New Super Mario Bros. Wii 8 Omega SEOP4Q = Sing It: Edad de Oro del Pop Español SEPE41 = The Black Eyed Peas Experience SEPP41 = The Black Eyed Peas Experience SEPX41 = The Black Eyed Peas Experience D1 Edition SEPZ41 = The Black Eyed Peas Experience: Limited Edition SERE4Q = Disney Epic Mickey 2: The Power of Two SERF4Q = Disney Epic Mickey : Le Retour des Héros SERK4Q = Disney Epic Mickey 2: The Power of Two SERP4Q = Disney Epic Mickey : Le retour des héros SERV4Q = Disney Epic Mickey 2: The Power of Two SESEWR = Sesame Street: Ready, Set, Grover! SESPWR = Sesame Street: Ready, Set, Grover! SESUWR = Sesame Street: Ready, Set, Grover! SEZJHF = Inazuma Eleven Strikers 2012 Xtreme SF2P64 = Star Wars : Le Pouvoir de la Force II SF4E20 = Flatout SF4PXT = Flatout SF5E41 = Fit in Six SF5J41 = Fit in Six SF5P41 = Mon Coach Personnel : Club Fitness SF7E41 = Family Feud 2012 Edition SF8E01 = Donkey Kong Country Returns SF8J01 = Donkey Kong Returns SF8P01 = Donkey Kong Country Returns SFAE41 = Family Feud Decades SFAJGD = Fullmetal Alchemist: Daughter of the Dusk SFBE70 = Backyard Sports Football: Rookie Rush SFDE01 = New Super Mario Bros. Wii 9 Virtue: This Fall Darkness SFDEAF = Active Life: Magical Carnival SFDJAF = Issyoni Asobou! Dream Theme Park SFDPAF = Family Trainer: Magical Carnival SFGE69 = Hasbro: Family Game Night 4 - The Game Show SFGP69 = Hasbro : Best of des Jeux en Famille Vol. 4 SFHEFP = Outdoor Action Double Pack SFIE01 = Mystery Case Files: The Malgrave Incident SFIP01 = Mystery Case Files : L'Affaire Malgrave SFKEG9 = Family Party: Fitness Fun SFKPAF = Family Party: Fitness Fun SFLDSV = Der Fluch der Osterinsel SFOEAF = Food Network: Cook or Be Cooked SFPPFR = Fantastic Football Fan Party SFQE8P = Captain America: Super Soldier SFQP8P = Captain America : Super Soldier SFRDRV = Fit & Fun SFRPXT = Fit & Fun SFSPGT = All Round Hunter SFTE78 = Wheel of Fortune SFTP78 = Wheel of Fortune SFUE64 = Star Wars: The Force Unleashed II SFVEXJ = Fishing Resort SFWE69 = 2010 FIFA World Cup South Africa SFWJ13 = 2010 FIFA World Cup South Africa SFWK13 = 2010 FIFA World Cup: South Africa SFWK69 = 2010 FIFA World Cup South Africa SFWP69 = 2010 FIFA World Cup South Africa SFWX69 = Coupe du Monde de la FIFA, Afrique du Sud 2010 SFWY69 = Coupe du Monde de la FIFA SFWZ69 = 2010 FIFA World Cup South Africa SFXPKM = The X Factor SFXXKM = X Factor SFYEG9 = Family Party: 90 Great Games Party Pack SFYPAF = Family Party: 90 Great Games Party Pack SFZEPZ = Pheasants Forever: Wingshooter SFZPXT = Pheasants Forever SG2EFS = Crazy Mini Golf 2 SG2XUG = Crazy Mini Golf 2 SG2YFS = Crazy Mini Golf 2 SG3DSV = Germany's Next Top Model 2010 SG5PSV = Family Quiz SG6DSV = Galileo Family Quiz SG7E20 = The Garfield Show: Threat of the Space Lasagna SG7PVL = The Garfield Show: Threat of the Space Lasagna SG8EG9 = Yogi Bear SG8PAF = Yogi l'Ours: Le Jeu Vidéo SG9EYC = Gremlins: Gizmo SGAE8P = Tournament of Legends SGAP8P = Tournament of Legends SGBE5G = Greg Hastings Paintball 2 SGCE20 = Glacier 2 SGDEJJ = Let's Play Garden SGDPKM = Jardin en folie SGEEG9 = Nat Geo Challenge! Wild Life SGEPLG = Nat Geo Quiz! Wild Life SGHE41 = Tom Clancy's Ghost Recon SGHP41 = Tom Clancy's Ghost Recon SGI1CL = SingIt Clasicos SGI1DB = Sing IT: Dibujos Animados SGI1MC = SingItStar Mecano SGI1ML = Sing It Star: Miliki SGI1PT = Sing IT: Party SGI1RC = Sing IT: Rocks 2 SGIEA4 = GTI Club Supermini Festa! SGIJA4 = GTI Club World City Race SGIPA4 = GTI Club Supermini Festa! SGJDSV = Galileo Mystery: The Crown of Midas SGJPSV = The Crown of Midas SGKEC8 = Champion Jockey: G1 Jockey & Gallop Racer SGKJC8 = Champion Jockey: Gallop Racer & GI Jockey SGKPC8 = Champion Jockey: G1 Jockey & Gallop Racer SGLEA4 = Gormiti: The Lords of Nature! SGLPA4 = Gormiti: Les Seigneurs de la Nature! SGNE69 = Hasbro: Family Game Night Value Pack SGODKP = Mini Golf Resort SGOETV = Mini Golf Resort SGPEYG = Maximum Racing: GP Classic Racing SGPPNG = GP Classic Racing SGPTI1 = Sing It Party SGQDSV = Germany's Next Top Model 2011 SGREGT = Grease SGRPGT = Grease SGSESZ = Family Gameshow SGSP7J = Family GameShow SGTEFS = My Personal Golf Trainer with IMG Academies and David Leadbetter SGTPUG = My Personal Golf Trainer with IMG Academies and David Leadbetter SGUE4Q = Disney Guilty Party SGVEAF = Go Vacation SGVJAF = Go Vacation SGVPAF = Go Vacation SGWD7K = Bibi Blocksberg SGXE41 = Battle of Giants: Dinosaurs Strike SGXP41 = Combat de Géants: Dinosaures SGYESZ = Gummy Bears Mini Golf SGYPNJ = Gummy Bears Mini Golf SH2JMS = Hula Wii: Tanoshiku Hula o Odorou!! SH3E54 = NHL 2K11 SH3P54 = NHL 2K11 SH4EFP = Heavy Fire: Afghanistan SH4PNK = Heavy Fire: Afghanistan SH5E69 = Harry Potter et les Reliques de la Mort - Deuxième Partie SH5P69 = Harry Potter et les Reliques de la Mort - Deuxième Partie SH6E52 = Cabela's Big Game Hunter 2012 SH6P52 = Cabela's Big Game Hunter 2012 SH7ESZ = Honda ATV Fever SH7PNJ = ATV Fever SH8E52 = Cabela's Adventure Camp SH8P52 = Cabela's Adventure Camp SH9ESZ = Heathcliff: The Fast and the Furriest SHBE69 = Hasbro: Family Game Night 3 SHBP69 = Hasbro : Best of des Jeux en Famille Vol. 3 SHDE52 = How to Train Your Dragon SHDP52 = Dragons SHEDRM = Der Bauernhof SHFE20 = Basketball Hall of Fame: Ultimate Hoops Challenge SHGDRM = Holiday Games SHHE69 = Harry Potter and the Deathly Hallows, Part 1 SHHP69 = Harry Potter et les Reliques de la Mort - Première Partie SHIJ2N = Shape Boxing 2 Wii Enjoy Diet! SHKE20 = Hello Kitty Seasons SHKPNQ = Hello Kitty Seasons SHLPA4 = Silent Hill : Shattered Memories SHMPLR = Lucas la Cata SHNE41 = Shaun White Skateboarding SHNP41 = Shaun White Skateboarding SHOXKR = Hugo: Magic in the Troll Woods SHOYKR = Hugo: Magic in the Troll Woods SHPE5G = Our House Party SHSE20 = Hyper Fighters SHSPXT = Hyper Fighters SHTE20 = Mathews Bow Hunting SHUE52 = Cabela's Dangerous Hunts 2011: Special Edition SHVE78 = Hot Wheels: Track Attack SHVP78 = Hot Wheels SHWE41 = Hollywood Squares SHXEWR = Happy Feet Two SHXPWR = Happy Feet 2 SHYE69 = NHL SlapShot SHYP69 = EA Sports: NHL Slapshot SHZENR = Harley Davidson: Road Trip SI3E69 = FIFA Soccer 12 SI3P69 = FIFA 12 SI3X69 = FIFA 12 SIABOH = SingItStar Placebo SIAE52 = Ice Age: Continental Drift - Arctic Games SIAP52 = L'Âge de glace 4 : La dérive des continents - Jeux de l'Arctique SIBBHJ = SingItStar Country SIDE54 = Sid Meier's Pirates! SIDP54 = Sid Meier's Pirates! SIESP1 = Sing It: Canciones en Español SIFESZ = The Island of Dr. Frankenstein SIFPNJ = The Island of Dr. Frankenstein SIFPOH = SingItStar Fussballhits SIHE4Z = Sing 4: The Hits Edition SIIE8P = Mario & Sonic at the London 2012 Olympic Games SIIJ01 = Mario & Sonic at the London 2012 Olympic Games SIIP8P = Mario & Sonic aux Jeux Olympiques de Londres 2012 SIJE52 = iCarly 2: iJoin the Click! SIJP52 = iCarly 2: iJoin the Click! SILE78 = Worms: Battle Islands SILP4Q = SingItStar Latino SILP78 = Worms Battle Islands SIME69 = MySims Collection SINPNG = We Sing : Robbie Williams SIPE7T = I SPY Game Pack SIS1OH = SingItStar Volume 1 SIS2OH = SingItStar ABBA SIS3OH = SingItStar Summer Party SIS4OH = SingItStar Amped SIS5OH = SingItStar Pop Hits SIS7OH = SingItStar Take That SIS80Q = SingItStar Ultimate 80's SIS80S = StarSing : '80s Volume 1 v1.2 SIS90H = SingItStar 90´s SIS9OH = SingItStar 90's SISACD = StarSing AC/DC SISAOH = SingItStar Après Ski Party SISBOH = SingItStar R'n'B SISCOH = SingItStar Chartbreaker SISCS1 = SingItStar Chartsurfer Vol. 1 SISDAE = SingItStar Die Ärzte SISDEM = SingItStar Depeche Mode SISDOH = SingItStar The Dome SISENR = Princess Isabella: A Witch's Curse SISHOH = SingItStar Hottest Hits SISJ0Q = Pelvic Fitness by Wii (Isometric & Karate Exercise) SISLIP = StarSing : Linkin Park v1.2 SISLOH = SingItStar Legends SISMEL = StarSing : Happy Birthday Mélanie v1.1 SISMJ1 = StarSing : Michael Jackson v2.1 SISMOH = SingItStar Mallorca Party SISP10 = SingItStar Studio100 SISP12 = StarSing : Pop Hits 1 & 2 v2.0 SISP34 = StarSing : Pop Hits 3 & 4 v2.0 SISPBC = SingItStar Britney vs Christina SISPOH = SingItStar Party SISPOP = StarSing : Pop v1.1 SISPUH = Princess Isabella: A Witch's Curse SISQ3Q = SingItStar Queen SISR3Q = SingItStar Rocks! SISREU = StarSing : Rocks! v1.1 SISRP4 = SingItStar Rocks! SISSOH = SingItStar Schlager SISTDK = SingItStar - Turkish Party SITPNG = We Sing: Deutsche Hits SIUUNG = We Sing Down Under SIXE01 = New Super Mario Bros Wii 16 Revelations SIXE41 = Drawsome! Tablet SJ2EWR = Scooby-Doo! and the Spooky Swamp SJ2PWR = Scooby-Doo! Panique dans la Marmite SJ3JDA = Jinsei Game: Happy Family SJ3PNL = Jakers! Kart Racing SJ5JDA = Jinsei Game Happy Family Gotouchi Neta Zouryou Shiage SJ6E41 = Just Dance Disney Party SJ6P41 = Just Dance Disney Party SJ7E41 = Just Dance Kids 2014 SJ7P41 = Just Dance Kids 2014 SJ9E41 = Just Dance Summer Party SJ9P41 = Just Dance 2 : Extra Songs SJAE5G = JAWS: Ultimate Predator SJBE52 = GoldenEye 007 SJBJ01 = GoldenEye 007 SJBP52 = GoldenEye 007 SJCEZW = Jerry Rice & Nitus' Dog Football SJDE41 = Just Dance 3 SJDJ01 = Just Dance Wii 2 SJDK41 = Just Dance 3 SJDP41 = Just Dance 3 SJDX41 = Just Dance 3 Special Edition SJDY41 = Just Dance 3: Best Buy Exclusive Edition SJDZ41 = Just Dance 3: Target Exclusive Edition SJEEPK = JumpStart Escape from Adventure Island SJFE4Z = Kid Fit Island Resort SJFPGR = Junior Fitness Trainer SJFXGR = Junior Fitness Trainer SJGEPK = JumpStart Get Moving Family Fitness SJHE41 = Just Dance Greatest Hits SJIEG9 = Jillian Michaels Fitness Ultimatum 2011 SJJEA4 = Jimmie Johnson's Anything With An Engine SJKEPK = JumpStart Crazy Karts SJLEFS = Junior League Sports SJLPXT = Junior League Sports SJME5G = Jillian Michaels Fitness Ultimatum 2010 SJMPGT = Jillian Michaels Fitness Ultimatum 2010 SJOE41 = Just Dance 2014 SJOP41 = Just Dance 2014 SJPE78 = Jeopardy! SJQEPZ = Jewel Quest Trilogy SJQPGR = Jewel Quest Trilogy SJREA4 = Def Jam Rapstar SJRXA4 = Def Jam Rapstar SJSEPK = JumpStart Pet Rescue SJTP41 = Just Dance : Best Of SJUE20 = Dino Strike SJUPXT = Dino Strike SJVE20 = Shawn Johnson Gymnastics SJWJA4 = Winning Eleven PLAY MAKER 2010 Japan Challenge SJXD41 = Just Dance 4 SJXE41 = Just Dance 4 SJXP41 = Just Dance 4 SJZE41 = Just Dance Kids 2 SJZP41 = Just Dance Kids SK3EEB = Trauma Team SK4E52 = Shrek Forever After SK4P52 = Shrek 4: Il Etait une Fin SK5PY1 = Kylie Sing & Dance SK6KJD = K-POP Dance Festival SK7PVZ = Disney Violetta : Rythme et musique SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8P52 = Skylanders: Trap Team SK8V52 = Skylanders: Trap Team SKAEA4 = Karaoke Revolution Glee SKAPA4 = Karaoke Revolution Glee SKBEG9 = Kidz Bop Dance Party SKCE20 = Bigfoot: King of Crush SKDJ18 = Karaoke Joysound Wii Duet Song SKEJ18 = Karaoke Joysound Wii: Enka Kayoukyoku Hen SKGEA4 = Karaoke Revolution Glee Volume 2 SKGPA4 = Karaoke Revolution Glee Volume 2 SKHJAF = Kamen Rider Super Climax Heroes SKJE78 = You Don't Know Jack SKKPHY = Captain Morgane and the Golden Turtle SKKXHY = Captain Morgane and the Golden Turtle SKLDSV = K11 - Kommissare im Einsatz SKMJAF = Kamen Rider Climax Heroes W SKOEA4 = Karaoke Revolution Glee Volume 3 SKOPA4 = Karaoke Revolution Glee Volume 3 SKREG9 = Kamen Rider Dragon Knight SKSE54 = NBA 2K13 SKSP54 = NBA 2K13 SKTE78 = All Star Karate SKTP78 = All Star Karate SKUE78 = Kung Fu Panda 2 SKUP78 = Kung Fu Panda 2 SKVE20 = Kevin Van Dam's Big Bass Challenge SKWPNK = Cocoto Kart Racer 2 SKXE20 = Pirate Blast SKXPFH = Pirate Blast SKYE52 = Skylanders: Giants SKYP52 = Skylanders: Giants SKYX52 = Skylanders: Giants SKYZ52 = Skylanders: Giants SKZE52 = DreamWorks Super Star Kartz SKZP52 = DreamWorks Super Star Kartz SL2J01 = Zero: Shinku no Chou SL2P01 = Project Zero 2 : Wii Edition SL3ENR = Dragon's Lair Trilogy SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = The Last Airbender SLAP78 = Le Dernier Maitre de l'Air SLAZ78 = The Last Airbender: ToysRUs Special Edition SLCEGN = Get Up And Dance SLCPGN = Get Up And Dance SLDEYG = Let's Dance SLDPLG = Let's Dance with Mel B SLEE78 = Deepak Chopra's Leela SLEP78 = Deepak Chopra's Leela SLFE01 = New Super Mario Bros. 3 The Final Levels SLFP01 = New Super Mario Bros. 3: The Final Levels SLFPKM = Let's Sing SLFXKM = Let's Sing 5 - Spanish version SLHEWR = LEGO Harry Potter: Years 5-7 SLHPWR = LEGO Harry Potter : Années 5 à 7 SLIE52 = Little League World Series Baseball: Double Play SLLEWW = Lucha Libre AAA: Héroes del Ring SLPP5D = L'esprit du Loup SLREWR = LEGO The Lord of the Rings SLRPWR = LEGO Le Seigneur des Anneaux SLSEXJ = The Last Story SLSJ01 = The Last Story SLSP01 = The Last Story SLTEJJ = NewU Fitness First Mind Body: Yoga & Pilates Workout SLTPLG = NewU Fitness First Mind Body: Yoga & Pilates Workout SLVP41 = Petits Flirts Entre Amis SLWE41 = Où est Charlie? Le Voyage Fantastique SLYESZ = Beastly SLYPNJ = Beastly SM2E52 = 10 Minute Solution SM2P52 = 10 Minute Solution SM3E01 = Super Mario Bros. 3+ SM4E20 = Monster Trucks Mayhem SM4PXT = Monster Trucks: Ultra Mega Xtreme!!! SM5EAF = Power Rangers Samurai SM5PAF = Power Rangers Samurai SM6PNK = My Body Coach 2: Fitness & Dance SM7E69 = Madden NFL 12 SM8D52 = Call of Duty: Modern Warfare 3 SM8E52 = Call of Duty: Modern Warfare 3 SM8F52 = Call of Duty : Modern Warfare 3 SM8I52 = Call of Duty: Modern Warfare 3 SM8P52 = Call of Duty: Modern Warfare 3 SM8S52 = Call of Duty: Modern Warfare 3 SM8X52 = Call of Duty : Modern Warfare 3 SM9E54 = Major League Baseball 2K12 SMAENR = Marines: Modern Urban Combat SMAPGN = Marines : Modern Urban Combat SMBE8P = Super Monkey Ball: Step & Roll SMBJ8P = Super Monkey Ball: Step & Roll SMBP8P = Super Monkey Ball : Step & Roll SMCENR = We Wish You A Merry Christmas SMCPXT = We Wish You A Merry Christmas SMD3OH = SingItStar e La Magia Disney SMEE69 = Madden NFL 11 SMFE4Q = Phineas and Ferb: Across the 2nd Dimension SMFP4Q = Phineas et Ferb: Voyage dans la Deuxième Dimension SMGE78 = Megamind: Mega Team Unite SMGP78 = Megamind SMGX = SaveGame Manager GX SMHPNK = Marvel Super Heroes 3D SMIE41 = Who Wants To Be A Millionaire SMIG3Q = SingItStar Made in Germany SMJE52 = Monster Jam: Path of Destruction SMJP52 = Monster Jam: Path of Destruction SMKE4Z = Gem Smashers SMLE54 = Major League Baseball 2K10 SMME02 = Super Mario: Mushroom Adventure PLUS - Winter Moon SMMJ0Q = Momu chan Diet Wii Figurobics by Chon Dayon SMMP01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 4. SMMP02 = Super Mario: Mushroom Adventure PLUS: Winter Moon SMNC01 = New Super Mario Bros. Wii SMNE01 = New Super Mario Bros. Wii SMNE02 = New Super Mario Remake SMNE03 = Newer Super Mario Bros. Wii SMNE04 = Cannon Super Mario Bros. Wii SMNE05 = Another Super Mario Bros. Wii SMNE06 = Newer Summer Sun SMNE07 = Newer Holiday Special SMNE08 = Epic Super Bowser World SMNE09 = Old Super Mario Bros. Wii SMNE10 = Koopa Country SMNE11 = New Super Mario Bros. Wii 4 SMNE12 = Awesomer Super Luigi Mini SMNE13 = New Super Mario Bros. Wii 9 Summer Special SMNE14 = Super Mario World Wii SMNE15 = Newer Super Mario Bros. 7 SMNE16 = Newer Super Mario Sunshine SMNE17 = Flowery Super Mario Land Wii SMNE18 = Super Switchy Mario World Wii SMNE19 = New Super Mr. M Bros. Wii SMNE20 = New Super Mario Bros. H SMNE21 = Newer Super Mario Land Wii SMNE22 = Neo Mario Brothers Wii SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE24 = Super Mario Ghost Special SMNE25 = Happy Super Marionose Wii SMNE26 = New Super Mario Bros. DS Wii Version SMNE27 = Newer Super Mario All Star SMNE28 = New Super Mario World SMNE29 = Not So Super Toaster Bros.: The Newer Collab! SMNE2D = Super Mario 2D Land 7 SMNE30 = New Super Mario Bros. Koopa Kall SMNE31 = New Super Mario Bros. Wii - Other World SMNE32 = Super Mario Legends SMNE33 = New Super Mario Bros. Wii Rollercoaster Party SMNE34 = New Super Mario Bros. Wii: Yoshi Mode SMNE35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNE36 = New Super Mario Bros. Wii Hack Pack SMNE37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNE38 = New Super Mario Bros. Wii Underground Maze SMNE39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNE40 = Newer Super Mario Bros. Wii U SMNE41 = Devil Mario Winter Special SMNE42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNE99 = Children's Super Mario Bros. Wii SMNED2 = New Super Mario Bros. + Animal Edition SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNENW = Newer Mario Escapade SMNEPM = Super Mario: Mushroom Adventure PLUS SMNEPS = New Super Mario Bros. Plus SMNERE = Retro Mario Bros. SMNERV = RVLution Wii SMNESL = Newer Super Mario Land Wii SMNESM = New Super Ghost Mario Wii SMNESN = New Super Mario Bros. Wii H SMNESS = New Super Mario Bros. 7 SMNEXD = Deluxe Super Mario Bros. Wii SMNEXR = Super Mario Remix SMNEYE = 8Forrest's Super Mario Bros. Wii SMNEYL = Luigi's Super Yoshi Bros. SMNEYM = You Super Mario Bros. Me Summer Special SMNEYS = Yoshi Super Mario Bros. Wii SMNEYU = You Super Mario Bros. Me SMNEYW = Newer Super Mario World Yoshi Way SMNEYY = You Super Mario Bros. Me Autumn Adventure SMNEZ2 = New JeDa Mario Bros. Wii SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZG = GF Super Mario Bros. Wii SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZQ = Basic Super Mario Bros. Wii SMNEZR = Newer Super Wario World Wii SMNEZS = Another Newer Super Mario Bros. Wii SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZX = Donkey Kong Remastered SMNEZY = Super Mario Skyland SMNEZZ = New Super Mario Bros. 2 Wii Version SMNJ01 = New Super Mario Bros. Wii SMNJ02 = Awesomer Super Luigi Mini SMNJ03 = Newer Super Mario Bros. Wii SMNJ04 = Cannon Super Mario Bros. Wii SMNJ06 = Newer Summer Sun SMNJ07 = Newer Holiday Special SMNJ08 = Epic Super Bowser World SMNJ10 = Koopa Country SMNJ11 = New Super Mario Bros. Wii 4 SMNJ13 = New Super Mario Bros. Wii 9 Summer Special SMNJ14 = Super Mario World Wii SMNJ15 = Newer Super Mario Bros. 7 SMNJ16 = Newer Super Mario Sunshine SMNJ17 = Flowery Super Mario Land Wii SMNJ18 = Super Switchy Mario World Wii SMNJ19 = New Super Mr. M Bros. Wii SMNJ20 = New Super Mario Bros. H SMNJ21 = Newer Super Mario Land Wii SMNJ22 = Neo Mario Brothers Wii SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ24 = Super Mario Ghost Special SMNJ25 = Happy Super Marionose Wii SMNJ26 = New Super Mario Bros. DS Wii Version SMNJ27 = Newer Super Mario All Star SMNJ28 = New Super Mario World SMNJ29 = Not So Super Toaster Bros.: The Newer Collab! SMNJ2D = Super Mario 2D Land Wii SMNJ30 = New Super Mario Bros. Koopa Kall SMNJ31 = New Super Mario Bros. Wii - Other World SMNJ32 = Super Mario Legends SMNJ33 = New Super Mario Bros. Wii Rollercoaster Party SMNJ34 = New Super Mario Bros. Wii: Yoshi Mode SMNJ35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNJ36 = New Super Mario Bros. Wii Hack Pack SMNJ37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNJ38 = New Super Mario Bros. Wii Underground Maze SMNJ39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNJ40 = Newer Super Mario Bros. Wii U SMNJ41 = Devil Mario Winter Special SMNJ42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNJ99 = Children's Super Mario Bros. Wii SMNJD2 = New Super Mario Bros. + Animal Edition SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJNW = Newer Mario Escapade SMNJPM = Super Mario: Mushroom Adventure PLUS SMNJPS = New Super Mario Bros. Plus SMNJRE = Retro Mario Bros. SMNJRV = RVLution Wii SMNJSL = Newer Super Mario Land Wii SMNJSM = New Super Ghost Mario Wii SMNJXD = Deluxe Super Mario Bros. Wii SMNJXR = Super Mario Remix SMNJYE = 8Forrest's Super Mario Bros. Wii SMNJYL = Luigi's Super Yoshi Bros. SMNJYM = You Super Mario Bros. Me Summer Special SMNJYS = Yoshi Super Mario Bros. Wii SMNJYY = You Super Mario Bros. Me Autumn Adventure SMNJZ2 = New JeDa Mario Bros. Wii SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZG = GF Super Mario Bros. Wii SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZQ = Basic Super Mario Bros. Wii SMNJZR = Newer Super Wario World Wii SMNJZS = Another Newer Super Mario Bros. Wii SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZX = Donkey Kong Remastered SMNJZY = Super Mario Skyland SMNJZZ = New Super Mario Bros. 2 Wii Version SMNK01 = New Super Mario Bros. Wii SMNP01 = New Super Mario Bros. Wii SMNP02 = Awesomer Super Luigi Mini SMNP03 = Newer Super Mario Bros. Wii SMNP04 = Cannon Super Mario Bros. Wii SMNP05 = Another Super Mario Bros. Wii SMNP06 = Newer Summer Sun SMNP07 = Newer Holiday Special SMNP08 = Epic Super Bowser World SMNP10 = Koopa Country SMNP11 = New Super Mario Bros. Wii 4 SMNP12 = Awesomer Super Luigi Mini SMNP13 = New Super Mario Bros. Wii 9 Summer Special SMNP14 = Super Mario World Wii SMNP15 = Newer Super Mario Bros. 7 SMNP16 = Newer Super Mario Sunshine SMNP17 = Flowery Super Mario Land Wii SMNP18 = Super Switchy Mario World Wii SMNP19 = New Super Mr. M Bros. Wii SMNP20 = New Super Mario Bros. H SMNP21 = Newer Super Mario Land Wii SMNP22 = Neo Mario Brothers Wii SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP24 = Super Mario Ghost Special SMNP25 = Happy Super Marionose Wii SMNP26 = New Super Mario Bros. DS Wii Version SMNP27 = Newer Super Mario All Star SMNP28 = New Super Mario World SMNP29 = Not So Super Toaster Bros.: The Newer Collab! SMNP2D = Super Mario 2D Land Wii SMNP30 = New Super Mario Bros. Koopa Kall SMNP31 = New Super Mario Bros. Wii - Other World SMNP32 = Super Mario Legends SMNP33 = New Super Mario Bros. Wii Rollercoaster Party SMNP34 = New Super Mario Bros. Wii: Yoshi Mode SMNP35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNP36 = New Super Mario Bros. Wii Hack Pack SMNP37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNP38 = New Super Mario Bros. Wii Underground Maze SMNP39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNP40 = Newer Super Mario Bros. Wii U SMNP41 = Devil Mario Winter Special SMNP42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNP77 = New Super Mario Bros. Wii Arcadia SMNP99 = Children's Super Mario Bros. Wii SMNPD2 = New Super Mario Bros. + Animal Edition SMNPDU = DU Super Mario Bros. : Anniversary Edition SMNPLL = Newer Super Luigi Wii SMNPLM = Newer Super Luigi Wii Dark Moon SMNPMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNPNW = Newer Mario Escapade SMNPO1 = New Super Mario Custom Edition SMNPPM = Super Mario: Mushroom Adventure PLUS SMNPPS = New Super Mario Bros. Plus SMNPRE = Retro Mario Bros. SMNPRV = RVLution Wii SMNPSL = Newer Super Mario Land Wii SMNPSM = New Super Ghost Mario Wii SMNPXD = Deluxe Super Mario Bros. Wii SMNPXR = Super Mario Remix SMNPYE = 8Forrest's Super Mario Bros. Wii SMNPYL = Luigi's Super Yoshi Bros. SMNPYM = You Super Mario Bros. Me Summer Special SMNPYS = Yoshi Super Mario Bros. Wii SMNPYY = You Super Mario Bros. Me Autumn Adventure SMNPZ2 = New JeDa Mario Bros. Wii SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZG = GF Super Mario Bros. Wii SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZQ = Basic Super Mario Bros. Wii SMNPZR = Newer Super Wario World Wii SMNPZS = Another Newer Super Mario Bros. Wii SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZX = Donkey Kong Remastered SMNPZY = Super Mario Skyland SMNPZZ = New Super Mario Bros. 2 Wii Version SMNW01 = New Super Mario Bros. Wii SMOE41 = Michael Jackson: The Experience SMOJ41 = Michael Jackson: The Experience SMOP41 = Michael Jackson The Experience SMOT3Q = SingItStar Motown SMOX41 = Michael Jackson: The Experience - Walmart Edition SMOY41 = Michael Jackson: The Experience - Special Edition SMPE69 = Monopoly Collection SMPP01 = New Super Mario Bros. Wii 2: The Other P SMPP69 = Monopoly Collection SMRE01 = New Super Mario Bros. Wii: Super Mario Bros. 1 Custom SMRE78 = WWE SmackDown vs. Raw 2011 SMRP78 = WWE SmackDown vs. Raw 2011 SMSE01 = New Super Mario Bros Wii 12 Sunshine Paradise SMSE78 = Marvel Super Hero Squad: The Infinity Gauntlet SMSP78 = Marvel Super Hero Squad SMTJ18 = Momotarô Dentetsu 2010 SMUJAF = Daikaijuu Battle: Ultra Coliseum DX - Ultra Senshi Daishuuketsu SMVE01 = Super Mario Vacation SMVE54 = Major League Baseball 2K11 SMVJ01 = Super Mario Vacation SMVP01 = Super Mario Vacation SMWE01 = Newer Super Mario World U SMWE4Z = Man vs. Wild SMWJ01 = Newer Super Mario World U SMWP01 = Newer Super Mario World U SMYE20 = Minute to Win It SMZE78 = Marvel Super Hero Squad: Comic Combat SMZP78 = Marvel Super Hero Squad: Comic Combat SN2E69 = NERF N-Strike Double Blast Bundle SN3EYG = Maximum Racing: Rally Racer SN3PNG = Rally Racer SN4EDA = Naruto Shippuden: Dragon Blade Chronicles SN4JDA = Naruto Shippuuden: Ryujinki SN4XGT = Naruto Shippuden : Dragon Blade Chronicles SN5EYG = Maximum Racing: Crash Car Racer SN5PNG = Crash Car Racer SN6EYG = Maximum Racing: Super Karts SN6PNG = Super Karts SN7EYG = Maximum Racing: Super Truck Racer SN7PNG = Super Truck Racer SN8EYG = Maximum Racing: Sprint Cars SN8PNG = Sprint Cars SN9E54 = Nickelodeon Fit SNAE52 = Cabela's North American Adventures 2011 SNBE41 = NCIS: The Game SNBP41 = NCIS: Adapté de la série TV SNCE8P = Sonic Colors SNCJ8P = Sonic Colors SNCP8P = Sonic Colours SNDE20 = Deal or No Deal: Special Edition SNEENR = North American Hunting Extravaganza 2 SNEPXT = North American Hunting 2: Extravaganza SNFE69 = EA Sports Active NFL Training Camp SNGEJJ = Get Fit with Mel B SNGPLG = Get Fit with Mel B SNHE69 = Need for Speed: Hot Pursuit SNHJ13 = Need for Speed: Hot Pursuit SNHP69 = Need for Speed SNIE54 = Nicktoons MLB SNJE69 = NBA Jam SNJP69 = NBA Jam SNKX54 = Nickelodeon Fit SNLE01 = New Super Mario Bros. Wii 0-2 Next Generation Levels SNLE54 = Nickelodeon Dance SNLP54 = Nickelodeon Dance SNLX54 = Nickelodeon Dance SNMEAF = Namco Museum Megamix SNOPY1 = Now! That's What I Call Music: Dance & Sing SNPE52 = NASCAR The Game: Inside Line SNQE7U = National Geographic Challenge! SNQPLG = National Geographic Challenge! SNRE52 = NASCAR Unleashed SNSE52 = NASCAR 2011: The Game SNTEXN = Netflix Instant Streaming Disc SNUPJW = Happy Neuron Academy - Testez Votre Q.I. SNVE69 = Need for Speed: The Run SNVJ13 = Need for Speed: The Run SNVP69 = Need for Speed: The Run SNXJDA = Naruto Shippuuden: Gekitou Ninja Taisen Special SNYEVZ = Monster High: 13 Wishes SNYPVZ = Monster High : 13 souhaits SNZEVZ = Barbie: Dreamhouse Party SNZPVZ = Barbie: Dreamhouse Party SO3EE9 = Rune Factory: Tides of Destiny SO3J99 = Rune Factory: Oceans SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg 2 SOCE4Z = Deadliest Catch: Sea of Chaos SOIEEB = 101-in-1 Sports Party Megamix SOIPHZ = 101-in-1 Sports Party Megamix SOJE41 = Rayman Origins SOJP41 = Rayman Origins SOKEA4 = Karaoke Joysound SOKJ18 = Karaoke Joysound Wii DX SOME01 = Rhythm Heaven Fever SOMJ01 = Minna no Rhythm Tengoku SOMK01 = Rhythm Heaven Fever SOMP01 = Beat the Beat : Rhythm Paradise SONDMR = My First Songs SONFMR = Mon Premier Karaoké SONPMR = My First Songs SORE4Z = The Oregon Trail SOSEG9 = Turbo: Super Stunt Squad SOSPAF = Turbo : Équipe de Cascadeurs SOTE52 = Wipeout: The Game SOUE01 = The Legend of Zelda: Skyward Sword SOUJ01 = The Legend of Zelda: Skyward Sword SOUK01 = The Legend of Zelda: Skyward Sword SOUP01 = The Legend of Zelda : Skyward Sword SP2E01 = Wii Sports + Wii Sports Resort SP2P01 = Wii Sports + Wii Sports Resort SP3E41 = The $1,000,000 Pyramid SP4PJW = Pétanque Master SP4V = Castlevania: Rondo of Blood SP5E70 = The Kore Gang: Outvasion From Inner Earth SP5PVV = The Kore Gang : La Menace Intraterrestre SP6DSV = Popstars SP7EAF = Pac-Man Party SP7JAF = Pac-Man Party SP7PAF = Pac-Man Party SP8E78 = The Penguins of Madagascar: Dr. Blowhole Returns Again! SP8P78 = Les Pingouins de Madagascar: Le docteur Blowhole est de retour! SP9P4Q = SingIt Star POP 2009 SP9PJW = Pucca's Race for Kisses SPAE5G = Pirates Plund-Arrr SPBPGT = Spellbound Party SPCPZS = Pocoyo Racing SPDE52 = Spider-Man: Shattered Dimensions SPDP52 = Spider-Man : Dimensions SPEE20 = Speed SPEPXT = Speed SPGPPN = Peppa Pig: Fun And Games SPHPJW = Spaghetti Western Shooter SPIE18 = Oops! Prank Party SPIJ18 = Party Game Box 100 SPIP18 = Games Island SPKXPV = Springdale: Riding Adventures SPMDRM = Mahjongg Party SPMPWP = Mahjong Party Pack SPOPFR = Winter Sports 2011: Go for Gold SPPEFS = Power Punch SPQE7T = I SPY Spooky Mansion SPRE01 = New Super Mario Bros. Wii 14 Project Mario SPRE41 = The Price Is Right: 2010 Edition SPTJEB = Hospital. 6 nin no Ishi SPUE20 = Let's Paint SPVEA4 = Pro Evolution Soccer 2011 SPVPA4 = Pro Evolution Soccer 2011 SPVXA4 = Pro Evolution Soccer 2011 SPVYA4 = Pro Evolution Soccer 2011 SPWHZH = The Studio 100: Play Island SPXP41 = Prince of Persia : Les Sables Oubliés SPYDSV = Yetisports: Penguin Party Island SPZE5G = Pizza Delivery Boy SQ2EPZ = Country Dance SQ2PXT = Country Dance SQAE52 = Cabela's African Adventures SQBPXT = The Cube SQDE8P = Gunblade NY & LA Machineguns : Arcade Hits Pack SQDP8P = Gunblade NY & LA Machineguns : Arcade Hits Pack SQEENG = We Sing Pop! SQEPNG = We Sing Pop! SQFE5G = Phineas and Ferb: Quest for Cool Stuff SQFPGT = Phineas and Ferb: Quest for Cool Stuff SQIE4Q = Disney Infinity SQIP4Q = Disney Infinity SQIY4Q = Disney Infinity SQKE5G = Cooking Mama 2-Pack SQKK01 = Cooking Mama 2 Pack SQLE4Z = Cartoon Network Punch Time Explosion XL SQLPGN = Cartoon Network: Punch Time Explosion XL SQME52 = Spider-Man: Edge of Time SQMP52 = Spider-Man : Aux frontières du temps SQPPX4 = Speed 2 SQQEVZ = Disney Planes: Fire & Rescue SQQPVZ = Planes 2 : mission canadair SQRPNG = We Sing Rock! SQTPML = L'Ultime Bataille des Sexes SQUDX3 = Quiz Party SQUFX3 = Quiz Party SQVE69 = FIFA 15 SQVP69 = FIFA 15 - Edition Essentielle SQVX69 = FIFA 15 - Legacy Edition SR4E41 = Raving Rabbids: Travel in Time SR4J41 = Raving Rabbids: Travel in Time SR4P41 = The Lapins Crétins : Retour vers le Passé SR5E41 = Raving Rabbids Party Collection SR5P41 = The Lapins Crétins Party Collection SR6EHG = Lapin Malin 1ère Primaire (CP) SR7EHG = Lapin Malin 2ème Primaire (CE1) SR8EHG = Lapin Malin Maternelle Grande Section SR9EHG = Lapin Malin Maternelle Moyenne Section SRAJMS = Rajirugi Noa Wii SRBP4Q = SingItStar: R&B SRBPHS = Rugby League 3 SRCE69 = Rock Band: Country Track Pack 2 SREXNL = Reader Rabbit Kindergarten SRFE52 = Rapala Pro Bass Fishing SRFP52 = Rapala Pro Bass Fishing SRGE69 = Rango SRGP01 = New Super Mario Bros Wii 2 Reggie SRGP69 = Rango SRHP01 = New Super Mario Bros. Wii 7 Retro Heaven SRIE78 = Rio SRIP78 = Rio SRJJAF = Super Sentai Battle: Ranger Cross SRKEFP = Remington Super Slam Hunting: Alaska SRKPNK = Remington Dangerous Animals SRLXNL = Reader Rabbit Preschool SRME18 = Rooms: The Main Building SRMJ18 = Rooms: Fushigi na Ugoku Heya SRNE70 = Project Runway SRNP01 = New Super Mario Bros. Wii Revolution SRNP70 = Project Runway SRPE4Q = Disney Tangled SRPP4Q = Disney Raiponce SRQE41 = Racquet Sports SRQP41 = Racket Sports Party SRRENR = Rec Room Games SRRPGN = Great Party Games SRSE20 = Super Sonic Racer SRSPXT = Supersonic Racer SRTXNL = Reader Rabbit 1st Grade SRUE4Z = Rudolph the Red-Nosed Reindeer SRVE41 = The Price Is Right Decades SRVP01 = New Super Mario Bros Revolution SRWXNL = Reader Rabbit 2nd Grade SRXE52 = Generator Rex: Agent of Providence SRXP52 = Generator Rex: Agent of Providence SRYEAF = ExerBeat: Gym Class Workout SRYJAF = Fitness Party SRYPAF = ExerBeat : Gym Class Workout SS2PFR = Winter Sports 2012 : Feel the Spirit SS3EWR = Sesame Street: Elmo's A-to-Zoo Adventure SS3PWR = Sesame Street: Elmo's A-to-Zoo Adventure SS3UWR = Sesame Street: Elmo's A-to-Zoo Adventure SS4EWR = Sesame Street: Cookie's Counting Carnival SS4UWR = Sesame Street: Cookie's Counting Carnival SS5ENR = Satisfashion SS6UHS = AFL Live: Game of the Year Edition SS7EFP = Remington Super Slam Hunting: Africa SS7URN = Remington Super Slam Hunting: Africa SS8E78 = SpongeBob SquigglePants SS8P78 = Bob L'Eponge: La Grande Art-Venture SS9JMS = Milestone Shooting Collection 2 SSBE78 = Puss in Boots SSBP78 = Le Chat Potté SSCDWR = Scene it? Lumières! Action! SSCEPM = Scene It? Bright Lights! Big Screen! SSCFPM = Scene It? Bright Lights! Big Screen! SSCFWR = Scene it? Lumières! Action! SSCIWR = Scene it? Lumières! Action! SSCPWR = Scene it? Lumières! Action! SSCSWR = Scene it? Lumières! Action! SSDDRV = Schlag den Raab SSEDNG = We Sing: Encore SSEPNG = We Sing: Encore SSEVNG = We Sing: Encore SSFPKM = Sing 4: The Hits Edition SSGPNG = We Sing SSHPHH = Sherlock Holmes : La Boucle d'Argent SSIENR = Winter Blast: 9 Snow & Ice Games SSJEJJ = Summer Stars 2012 SSJPKM = Summer Stars 2012 SSLENR = I Love Horses: Rider's Paradise SSLPKM = Grand Galop SSLPOH = SingItStar Legends SSMEYG = American Mensa Academy SSMPGD = Mensa Academy SSNEYG = Sniper Elite SSNPHY = Sniper Elite SSPE52 = Skylanders: Spyro's Adventure SSPJ52 = Skylanders: Spyro's Adventure SSPP52 = Skylanders: Spyro's Adventure SSPX52 = Skylanders: Spyro's Adventure SSQE01 = Mario Party 9 SSQJ01 = Mario Party 9 SSQK01 = Mario Party 9 SSQP01 = Mario Party 9 SSQW01 = Mario Party 9 SSRE20 = Wild West Shootout SSRPXT = Wild West Shootout SSSE01 = New Super Mario Bros. Wii: Summer Sun SSSEWR = Sesame Street: Elmo's Musical Monsterpiece SSTEG9 = Kid Adventures: Sky Captain SSTPY5 = Stunt Flyer: Hero of the Skies SSUES5 = Sushi Go Round SSVE52 = Wipeout 3 SSWDRM = Water Sports SSWEPZ = Water Sports SSWPGR = Water Sports SSZE5G = Swords ST3J01 = Kiki Trick ST4PNX = Thomas & Friends: Hero of the Rails ST4XNX = Thomas & Friends: Hero of the Rails ST5E52 = Transformers: Cybertron Adventures ST5P52 = Transformers : Aventures sur Cybertron ST6E78 = The Biggest Loser Challenge ST6P78 = The Biggest Loser Challenge ST7E01 = Fortune Street ST7JGD = Itadaki Street Wii ST7P01 = Course à la Fortune ST8P75 = SingItStar 80's ST9E52 = Top Shot Arcade STAE78 = Pictionary STAP75 = SingItStar Apres Ski Hits STAP78 = Pictionary STAU78 = Pictionary STCP75 = SingItStar Singstar STDEFP = Reload STDP75 = SingItStar Deutsch Rock-Pop STEETR = Tetris Party Deluxe STEJ18 = Tetris Party Premium STEPTR = Tetris Party Deluxe STFE52 = Transformers: Prime STFP52 = Transformers Prime : The Game STGJAF = Tales of Graces STHE8P = THOR: God of Thunder STHP75 = SingItStar Hottest Hits STHP8P = THOR : Dieu du Tonnerre STIFKM = Titeuf le Film STJJAF = Taiko no Tatsujin Wii: Ketteiban STKE08 = Tatsunoko vs. Capcom: Ultimate All-Stars STKJ08 = Tatsunoko vs. Capcom: Ultimate All-Stars STKP08 = Tatsunoko vs. Capcom : Ultimate All-Stars STLE78 = Truth or Lies STLP78 = Truth or Lies STMEGN = Titanic Mystery STMPKP = Titanic Mystery STNE41 = The Adventures of Tintin: The Game STNP41 = Les Aventures de Tintin : Le Secret de la Licorne STOE4Q = Cars Toon : Martin se la Raconte STOP4Q = Cars Toon : Martin se la Raconte STOX4Q = Cars Toon: Mater's Tall Tales STPP75 = SingItStar Pop Hits STPPML = Pet Vet: Marine Patrol STQJHF = Inazuma Eleven Strikers STQP01 = Inazuma Eleven Strikers STQP75 = SingItStar Queen STQX01 = Inazuma Eleven Strikers STRE4Q = Tron: Evolution - Battle Grids STRP4Q = TRON : Evolution Battle Grids STRP75 = SingItStar Rock Ballads STRX4Q = Tron: Evolution - Battle Grids Championship Edition STSE4Q = Toy Story 3 STSP4Q = Toy Story 3 STSP75 = SingItStar Schlager STSX4Q = Toy Story 3 STSY4Q = Toy Story 3 STSZ4Q = Toy Story 3: Toy Box Special Edition STTDRM = Hidden Mysteries: Titanic STTE52 = Hidden Mysteries: Titanic STTPGR = Hidden Mysteries Titanic: Secrets of the Fateful Voyage STTXGR = Hidden Mysteries: Titanic STUPRN = Turbo Trainz STVDSV = TV Total Events STWE69 = Tiger Woods PGA Tour 11 STWP69 = Tiger Woods PGA Tour 11 STXE69 = Tiger Woods PGA Tour 12: The Masters STXP69 = Tiger Woods PGA Tour 12 : The Masters STYE52 = Tony Hawk: Shred STYP52 = Tony Hawk: Shred STZE52 = Transformers: Dark of the Moon - Stealth Force Edition STZP52 = Transformers 3: La Face Cachée de la Lune - Edition Stealth Force SU2E54 = Nickelodeon Dance 2 SU2P54 = Nickelodeon Dance 2 SU2X54 = Nickelodeon Dance 2 SU3DMR = U-Sing 2 SU3FMR = U-Sing 2 SU3HMR = U-Sing 2: Popstars Edition SU3PMR = U-Sing 2 SU3SMR = U-Sing 2 SU3UMR = U-Sing 2: Australian Edition SU4E78 = UFC Personal Trainer: The Ultimate Fitness System SU4P78 = UFC Personal Trainer : The Ultimate Fitness System SU5EVZ = Monster High: Skultimate Roller Maze SU5PVZ = Monster High : Course de Rollers Incroyablement Monstrueuse SU6E5G = Zumba Fitness Core SU6P5G = Zumba Fitness Core SU6XGT = Zumba Fitness Core SU7EG9 = Rise of the Guardians SU7PAF = Les Cinq Légendes SU8PNG = We Sing: Deutsche Hits 2 SU9E4Q = Disney Planes SU9P4Q = Disney Planes SU9X4Q = Disney Planes SUKE01 = Kirby's Return to Dream Land SUKJ01 = Hoshi no Kirby Wii SUKK01 = Kirby's Return to Dream Land SUKP01 = Kirby's Adventure Wii SUMJC8 = Winning Post World 2010 SUNEYG = Deer Drive Legends SUOE41 = The Hip Hop Dance Experience SUOP41 = The Hip Hop Dance Experience SUPE01 = Wii Party SUPJ01 = Wii Party SUPK01 = Wii Party SUPP01 = Wii Party SUQENG = We Sing UK Hits SUQPNG = We Sing: UK Hits SURE01 = New Super Mario Bros. Wii 19 Resurrection U SUREA4 = Dance Dance Revolution II SURPA4 = Dance Dance Revolution: Hottest Party 5 SUSFMR = U-Sing Johnny Hallyday SUSPMR = U-Sing Girls Night SUTESZ = Once Upon A Time SUUE78 = uDraw Studio: Instant Artist SUUP78 = uDraw Studio: Dessiner Facilement SUVE52 = Cabela's Dangerous Hunts 2013 SUVP52 = Cabela's Dangerous Hunts 2013 SUWE78 = uDraw Studio SUWP78 = uDraw Studio SUXEA4 = Pro Evolution Soccer 2010 SUXJA4 = Winning Eleven PLAY MAKER 2010 SUXPA4 = Pro Evolution Soccer 2010 SUXXA4 = Pro Evolution Soccer 2010 SUXYA4 = Pro Evolution Soccer 2010 SUYDRV = Schlag den Raab - Das 3. Spiel SUZD7K = Benjamin Blümchen - Törööö im Zoo SV2E78 = Big Beach Sports 2 SV2P78 = Big Beach Sports 2 SV3EG9 = Madagascar 3: The Video Game SV3PAF = Madagascar 3: Bons baisers d'Europe SV4E8P = Virtua Tennis 4 SV4P8P = Virtua Tennis 4 SV5PRV = The Voice of Germany Vol. 2 SV6SRV = The Voice SV7EVZ = Penguins of Madagascar SV7PVZ = Les Pingouins de Madagascar SVBE52 = Battleship SVBP52 = Battleship SVCEPZ = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = Bob l'éponge : La vengeance robotique de Plankton SVHP69 = FIFA 14 - Édition Essentielle SVHX69 = FIFA 14 - Édition Essentielle SVME01 = Super Mario All-Stars SVMJ01 = Super Mario Collection: 25th Anniversary Edition SVMK01 = Super Mario All-Stars SVMP01 = Super Mario All-Stars SVOEWW = El Chavo SVPESZ = Vegas Party SVPPNJ = Vegas Party SVSPZX = Battle vs Chess SVTEXS = Bit.Trip Complete SVTP99 = BIT.TRIP COMPLETE SVUPRV = The Voice of Germany SVVEG9 = The Croods: Prehistoric Party! SVVPAF = Les Croods : Fête Préhistorique ! SVWEQH = Veggy World SVXE52 = Skylanders: Swap Force SVXF52 = Skylanders: Swap Force SVXI52 = Skylanders: Swap Force SVXP52 = Skylanders: Swap Force SVXY52 = Skylanders: Swap Force SVYEG9 = Ben 10: Omniverse 2 SVYPAF = Ben 10: Omniverse 2 SVZEVZ = How to Train Your Dragon 2 SVZPVZ = How to Train Your Dragon 2 SW2E52 = Wipeout 2 SW3EJJ = Winter Stars SW3PKM = Winter Stars SW4JA4 = Winning Eleven PLAY MAKER 2011 SW6E78 = WWE '12 SW6P78 = WWE '12 SW7EVN = Gunslingers SW7PNK = Western Heroes SW8ENG = We Sing 80s SW8PNG = We Sing 80s SW9EVN = Wicked Monsters Blast! SW9PYT = Wicked Monsters Blast! SWAE52 = DJ Hero SWAP52 = DJ Hero SWBE52 = DJ Hero 2 SWBP01 = New Super Mario Bros. Wii 0 Where It All Began SWBP52 = DJ Hero 2 SX2PNG = Jungle Kartz SX3EXJ = Pandora's Tower SX3J01 = Pandora’s Tower: Until I Return to Your Side SX3P01 = Pandora's Tower SX4E01 = Xenoblade Chronicles SX4J01 = Xenoblade SX4P01 = Xenoblade Chronicles SX5E4Z = Santa Claus is Comin' to Town! SX6JAF = Pretty Cure All Stars Everyone Gather ☆ Let's Dance SX7E52 = Teenage Mutant Ninja Turtles SX7P52 = Teenage Mutant Ninja Turtles SX8E52 = X-Men Destiny SX8P52 = X-Men Destiny SXAE52 = Guitar Hero: World Tour SXAP52 = Guitar Hero : World Tour SXBE52 = Guitar Hero: Metallica SXBP52 = Guitar Hero : Metallica SXCE52 = Guitar Hero: Smash Hits SXCP52 = Guitar Hero : Greatest Hits SXDE52 = Guitar Hero: Van Halen SXDP52 = Guitar Hero : Van Halen SXEE52 = Guitar Hero 5 SXEF52 = Guitar Hero III Custom : Megadeth SXEP52 = Guitar Hero 5 SXFE52 = Band Hero SXFF52 = Guitar Hero III Custom : My Chemical Romance SXFP52 = Band Hero SXIE52 = Guitar Hero: Warriors of Rock SXIP52 = Guitar Hero : Warriors of Rock SY8PKM = Let's Sing 2015 SZ2E5G = Zumba Fitness 2 SZ2P5G = Zumba Fitness 2 SZ2XGT = Zumba Fitness 2 SZ3E5G = Zumba Fitness World Party SZ3PGT = Zumba Fitness World Party SZ5E5G = Zumba Fitness SZ5PGT = Zumba Fitness SZAE69 = Rock Band 2 SZAP69 = Rock Band 2 SZBE69 = Rock Band 3 SZBP69 = Rock Band 3 SZEE01 = New Super Mario Bros Wii 13 Shadow Zero Escape TITLES = http://www.gametdb.com (type: Wii language: FR version: 20150208102306) UGPE01 = Game Boy Player UGPJ01 = Game Boy Player UGPP01 = Game Boy Player ULFW = uLoader UUUE01 = New Super Mario Bros. Wii 19 Resurrection U VBGX = Visual Boy Advance GX VIPE01 = New Super Mario Bros Wii 18 Vip Mix W22E = Planet Fish W24E = 2 Fast 4 Gnomz W2AE = Big Bass Arcade W2CE = Brain Challenge W2CJ = Brain Challenge W2CP = Cérébral Challenge W2FP = Entrainement d'équilibre Physiofun W2GD = Phoenix Wright Ace Attorney: Justice for All (Deutsche Version) W2GE = Phoenix Wright: Ace Attorney Justice for All W2GI = Phoenix Wright: Ace Attorney - Justice for All W2GJ = Gyakuten Saiban 2 W2GP = Phoenix Wright Ace Attorney : Justice for All W2IE = Fishie Fishie W2IP = Fishie Fishie W2JE = Just Jam W2KE = Let's Catch W2KJ = Let's Catch W2KP = Let's Catch W2LE = Bloons W2LP = Bloons W2ME = Blaster Master: Overdrive W2MP = Blaster Master Overdrive W2OE = My Aquarium 2 W2OJ = Blue Oasis: Michinaru Shinkai W2OP = My Aquarium 2 W2PP = Programme de rééducation du périnée Physiofun W2TE = Drill Sergeant Mindstrong W2TJ = Onitore Kyoukan ha Onigunsou W2TP = Brain Cadets W2YE = Fireplacing W2YP = My Fireplace W34J = Simple Series Vol. 4: The Misshitsu kara no Dasshutsu W3AE = Carmen Sandiego Adventures in Math: The Big Ben Burglary W3BE = Soccer Bashi W3BP = Soccer Bashi W3DJ = 3° C W3FE = 3D Pixel Racing W3FP = 3D Pixel Racing W3GD = Phoenix Wright Ace Attorney 3: Trials And Tribulations W3GE = Phoenix Wright Ace Attorney: Trials and Tribulations W3GI = Phoenix Wright: Ace Attorney - Trials and Tribulations W3GJ = Gyakuten Saiban 3 W3GP = Phoenix Wright Ace Attorney : Trials and Tribulations W3JE = Triple Jumping Sports W3KE = Thruspace W3KJ = Surinuke Anatousu W3KP = Thruspace W3LE = Carmen Sandiego Adventures in Math: The Lady Liberty Larceny W3ME = The Three Musketeers: One for all W3MP = Les Trois Mousquetaires : Tous pour un! W3PE = Triple Throwing Sports W3RE = Triple Running Sports W3SE = Triple Shot Sports W3TE = Pearl Harbor Trilogy - 1941: Red Sun Rising W3TP = Pearl Harbor Trilogy 1941: Red Sun Rising W42J = Fortune: Hoshi no Furisosogu Oka W44E = Stop Stress: A Day of Fury W44P = Stop Stress : A Day of Fury W48E = ShadowPlay W4AE = Arcade Sports W4AP = Arcade Sports : Air Hockey, Bowling, Pool, Snooker W4KE = Deer Captor W4KJ = Shikagari W4OJ = Shikakui Atama wo Marukusuru Challenge W4TE = Spaceball Revolution W4TP = Spaceball Revolution W54E = 5 Spots Party W54P = 5 Spots Party W5AE = 5 Arcade Gems W5AP = 5 Arcade Gems W5IE = 5 in 1 Solitaire W6BE = Eco Shooter: Plant 530 W6BJ = 530 Eco Shooter W6BP = Eco-Shooter: Plant 530 W72P = Successfully Learning German Year 3 W73P = Successfully Learning German Year 4 W74P = Successfully Learning German Year 5 W7IP = Successfully Learning German Year 2 W82J = Jintori Action Taikokenchi Karakuri Shiro no Nazo W8BP = Babel Rising W8CE = Bit.Trip Core W8CJ = BIT.TRIP CORE: Rhythm Seijin no Gyakushuu W8CP = Bit.Trip Core W8DJ = Mebius Drive W8IJ = Hachi-One Diver Wii W8LE = Balloon Pop Festival W8PJ = Ouchi de Mugen Puchi Puchi Wii W8WE = Happy Holidays: Halloween W8WP = Happy Holidays Halloween W8XE = Battle Poker W9BE = Big Town Shoot Out W9BP = Big Town Shoot W9IE = Evasive Space W9IJ = Kiken Kuuiki W9LE = Christmas Clix W9RE = Happy Holidays: Christmas W9RP = Happy Holidays Christmas W9UE = Cruise Party W9UP = Cruise Party WA2E = Magnetica Twist WA2J = Minna de Puzzloop WA2P = Actionloop Twist WA4E = WarioWare: D.I.Y. Showcase WA4J = WarioWare: D.I.Y. Showcase WA4P = WarioWare : Do It Yourself – Showcase WA5E = Carmen Sandiego Adventures in Math: The Island of Diamonds WA7E = Toribash WA7P = Toribash - La violence perfectionnée WA8E = Art Style: Rotozoa WA8J = Art Style: Penta Tentacles WA8P = ArtStyle: Penta Tentacles WAAE = Aya and the Cubes of Light WAAP = Aya and the Cubes of Light WABE = Art of Balance WABP = Art of Balance WACE = Arcade Essentials WACP = Arcade Essentials WAEE = Around The World WAEP = Around the world WAFE = Airport Mania: First Flight WAFP = Airport Mania: First Flight WAGE = Pinocchio's Puzzle WAHE = Trenches Generals WAHP = Trenches: Generals WAIE = 101-in-1 Explosive Megamix WAIP = 101-in-1 Explosive Megamix WAJE = MotoHeroz WAJP = MotoHeroz WAKE = Carmen Sandiego Adventures in Math: The Case of the Crumbling Cathedral WALE = Art Style: Light Trax WALJ = Art Style: Lightstream WALP = Art Style : light trax WAME = Carmen Sandiego Adventures in Math: The Great Gateway Grab WANE = Ant Nation WANP = Ant Nation WAOE = The Very Hungry Caterpillar's ABCs WAOJ = Harapeko Aomushi no ABC WAOP = The Very Hungry Caterpillar´s ABC WAQJ = Yakuman Wii: Ide Yousuke no Kenkou Mahjong WARE01 = DU Super Wario Bros. WARJ = Tsuushin Taikyoku Igo Doujou 2700 Mon WASJ = Tsuushin Taikyoku: Hayazashi Syogi Sandan WATE = Astro Bugz Revenge WAUJ = Tsushin Taikyoku: World Chess WAYE = And Yet It Moves WAYP = And Yet It Moves WAZE = The Amazing Brain Train WB2E = Strong Bad Episode 4: Dangeresque 3 WB2P = Strong Bad Episode 4 : Dangeresque 3 WB3E = Strong Bad Episode 5: 8-bit is Enough WB3P = Strong Bad Episode 5 : 8-bit is Enough WB4E = Wild West Guns WB4J = Wild West Guns WB4P = Wild West Guns WB5E = Block Breaker Deluxe WB5J = Block Breaker Deluxe WB5P = Block Breaker Deluxe WB6E = TV Show King WB6J = TV Show King WB6P = TV Show King WB7E = Midnight Pool WB7J = Hamaru Billiards WB7P = Midnight Pool WB8E = Midnight Bowling WB8J = Hamaru Bowling WB8P = Midnight Bowling WBAJ = Bakutan WBBE = Snowboard Riot WBBJ = Board Warriors WBBP = Snowboard Riot WBDE = Brain Drain WBDP = Brain Drain WBEE = Pong Toss: Frat Party Games WBEP = Beer Pong : Frat Party Games WBFE = Bit.Trip Fate WBFP = Bit.Trip Fate WBGP = Bang Attack WBHE = Blood Beach WBHP = Blood Beach WBIE = Boingz WBJE = Harvest Moon: My Little Shop WBJJ = Bokujou Monogatari Series: Makiba no Omise WBKE = Arkanoid Plus! WBKJ = Arkanoid Plus! WBKP = Arkanoid Plus! WBLE = Bubble Bobble Plus! WBLJ = Bubble Bobble Wii WBLP = Bubble Bobble Plus! WBME = My Pokémon Ranch WBMJ = Minna no Pokémon Bokujou WBMP = My Pokémon Ranch WBNE = Bonsai Barber WBNJ = Bonsai Barber WBNP = Bonsai Barber WBOE = Gravitronix WBPE = PLÄTTCHEN twist 'n' paint WBPP = PLÄTTCHEN - twist 'n' paint WBQE = Star Soldier R WBQJ = Star Soldier R WBQP = Star Soldier R WBRP = Pirates : The Key of Dreams WBSE = Pop WBSJ = Pop WBSP = Pop WBTJ = Fantasic Tambourine WBVE = SPOGS Racing WBVP = SPOGS Racing WBWE = Critter Round-Up WBWJ = Saku Saku Animal Panic WBWP = Critter Round-Up WBXE = Strong Bad Episode 1: Homestar Ruiner WBXP = Strong Bad Episode 1: Homestar Ruiner WBYE = Strong Bad Episode 2: Strong Badia - The Free WBYP = Strong Bad Episode 2 : Strong Badia - The Free WBZE = Strong Bad Episode 3: Baddest of the Bands WBZP = Strong Bad Episode 3 : Baddest of the Bands WC2E = Crystal Defenders R2 WC2J = Crystal Defenders R2 WC2P = Crystal Defenders R2 WC6E = Chronos Twins DX WC6P = Chronos Twins DX WC8J = Line Attack Heroes WCHE = Chess Challenge! WCHP = Chess Challenge WCIE = Crystal Defenders R1 WCIJ = Crystal Defenders R1 WCIP = Crystal Defenders R1 WCJE = Cocoto Platform Jumper WCJP = Cocoto : Platform Jumper WCKE = chick chick BOOM WCKJ = chick chick BOOM WCKP = chick chick BOOM WCLE = Doc Clock: The Toasted Sandwich of Time WCNJ = Tokyo City Nights WCOE = Cocoto Fishing Master WCOP = Cocoto Fishing Master WCPE = Copter Crisis WCPP = Copter Crisis WCRE = Carnival King WCSE = CueSports: Pool Revolution WCSJ = Cue Sports: Wi-Fi Taisen Billiards WCSP = CueSports : Snooker vs Billiards WCUE = 3-2-1, Rattle Battle! WCUJ = Atsui 12-Game: FuriFuri Party! WCUP = 3-2-1, Rattle Battle! WCVE = Cave Story WCVP = Cave Story WCZE = ColorZ WCZJ = ColorZ WCZP = ColorZ WD2J = Simple Wii Series Vol. 2: The Number Puzzle Neo WD9E = Castlevania The Adventure ReBirth WD9J = Dracula Densetsu ReBirth WD9P = Castlevania : The Adventure ReBirth WDAJ = Darts Wii WDBE = Derby Dogs WDBJ = Dirby Dog WDDE = Diner Dash WDDJ = Diner Dash WDDP = Diner Dash WDEE = Magic Destiny Astrological Games WDEP = Magic Destiny Astrological Games WDFE = Defend your Castle WDFP = Defend your Castle WDHE = Art Style: ROTOHEX WDHJ = Art Style: Dialhex WDHP = ArtStyle : ROTOHEX WDIJ = Simple Wii Series Vol. 1: The Block Kuzushi Neo WDKE = Dart Rage WDME = Dr. Mario Online RX WDMJ = Dr. Mario & Saikin Bokumetsu WDMP = Dr. Mario & Bactericide WDNJ = Discipline Teikoku no Tanjyou WDOE = Driift Mania WDOP = Driift Mania WDPE = Dr. Mario Online Rx (Friend Battle Demo) WDPJ = Dr. Mario Online Rx (Friend Battle Demo) WDPP = Dr. Mario & Germ Buster (Friend Battle Demo) WDRE = Mr Driller W WDRJ = Mr. Driller World WDRP = Mr. Driller W WDSE = Dragon Master Spell Caster WDSP = Dragon Master Spell Caster WDVE = Voodoo Dice WDVP = Voodoo Dice WDXE = Diatomic WE6E = My Dolphin WE6J = Sea Farm: Iruka to Watashi no Showtime WE9E = Alien Crush Returns WE9J = Alien Crush Returns WE9P = Alien Crush Returns WEDE = Eduardo the Samurai Toaster WEME = Aha! I Got It! Escape Game WEMJ = 1 Nuke! Dasshutsu Game * My Home Hen WEMP = Aha! I Got It! Escape Game WENE = TNT Racers WENP = TNT Racers WEQE = Equilibrio WEQJ = Katamuki Spirits WEQP = Equilibrio WERE = My Aquarium WERJ = Blue Oasis: The Healing Space of Fish WERP = My Aquarium WETE = PictureBook Games: Pop-Up Pursuit WETJ = Asoberu Ehon: Tobida Sugoroku WETP = Jeux de plateau en images : La chasse au trésor WEVE = Viral Survival WEVJ = Peakvox Escape Virus WEVP = Viral Survival WF2E = Final Fantasy Crystal Chronicles: My Life as a Darklord WF2J = Final Fantasy Crystal Chronicles: Hikari to Yami no Himegimi to Sekai Seifuku no Tou WF2P = Final Fantasy Crystal Chronicles : My Life as a Darklord WF3E = Family Games - Pen & Paper Edition WF4E = Final Fantasy IV: The After Years WF4J = Final Fantasy IV: The After Years - Tsuki no Kikan WF4P = Final Fantasy IV : Les Années Suivantes WF5E = Family Card Games WF5J = Okiraku Daifugou Wii WF5P = Family Card Games WF6E = Frobot WFAE = Fast Draw Showdown WFAP = Fast Draw Showdown WFBE = Sandy Beach WFBJ = Beach e Oki o Tsukuccha Wow! WFBP = Sandy Beach WFCE = Final Fantasy Crystal Chronicles: My Life as a King WFCJ = Final Fantasy Crystal Chronicles: Chiisana Ousama to Yakusoku no Kuni WFCP = Final Fantasy Crystal Chronicles : My Life as a King WFDE = Save the Furries WFEE = Fenimore Fillmore "The Westerner" WFFE = Fun! Fun! Minigolf WFFF4I = Fatal Frame 4: Mask of the Lunar Eclipse WFFJ = Fun! Fun! Minigolf WFFP = Fun! Fun! Minigolf WFGE = Frogger Returns WFGJ = Frogger Returns WFGP = Frogger Returns WFHE = Flight Control WFHP = Flight Control WFIE = Reel Fishing Challenge WFIJ = Fish Eyes Challenge WFIP = Reel Fishing Challenge WFKE = Family Go-Kart Racing WFKJ = Okiraku Kart Wii WFLE = Fluidity WFLP = Hydroventure WFME = Family & Friends Party WFMP = Family & Friends Party WFNE = Fish Tank WFNP = Fish Tank WFPJ = Hirameki Card Battle Mekuruca WFQP = Frogger: Hyper Arcade Edition WFSJ = Minna no Theater Wii WFTE = Fish 'em All WFTP = Fish'em All! WFUE = Furry Legends WFUP = Furry Legends WFVE = Soccer Up WFVP = Football Up WFWE = Flower Works WFWP = Flowerworks : Follie's Adventure WFXE = Cosy Fire WFXP = Feu de Bois Chaleureux WFYE = Family Games Pen & Paper Edition WFYP = Family Games Pen & Paper Edition WG2J = Sugar Bunnies Wii: Youkoso * Bunnies Field e WG4E = GhostSlayer WGAE = Ghost Mania WGAP = Ghost Mania WGDE = Gradius Rebirth WGDJ = Gradius Rebirth: Updated WGDP = Gradius Rebirth WGFP = Girlfriends Forever Magic Skate WGGE = Gabrielle's Ghostly Groove: Monster Mix WGGJ = Ushimitsu Monstruo Puchi: Fushigi na Oshiro no Dance Party WGGP = Gabrielle's Ghostly Groove: Monster Mix WGLE = Gene Labs WGMJ = Game SoundStation WGOE = World of Goo WGOJ = World of Goo WGOP = World of Goo WGPE = AquaSpace WGPJ = Aqua Living: TV de Nagameru Uotachi WGPP = Zenquaria L'aquarium Virtuel WGSD = Phoenix Wright: Ace Attorney (Deutsche Version) WGSE = Phoenix Wright: Ace Attorney WGSF = Phoenix Wright: Ace Attorney (French Version) WGSI = Phoenix Wright: Ace Attorney WGSJ = Gyakuten Saiban: Yomigaeru Gyakuten WGSP = Phoenix Wright: Ace Attorney WGTJ = Sekai no Omoshiro Party Game WGUJ = Aero Guitar WGVE = Groovin' Blocks WGYE = Gyrostarr WH3E = Home Sweet Home WH3P = Home Sweet Home WHBE = Hubert the Teddy Bear: Winter Games WHEE = Heracles : Chariot Racing WHEP = Heracles : Chariot Racing WHFE = Heavy Fire: Special Operations WHFP = Heavy Fire: Special Operations WHHJ = Let's Zenryoku Hitchhike!!!!!!!!! WHMP51 = New Super Mario Bros. Wii: The Ultimate Wii-Homebrew.com Edition WHOE = Hockey Allstar Shootout WHPE = Sexy Poker WHPP = Sexy Poker WHRE = Heron Steam Machine WHRP = Heron : Steam Machine WHUE = Ghost Mansion Party WHUJ = Ghost Mansion Party WHUP = Ghost Party WHVE = High Voltage: Hot Rod Show WHWE = HoopWorld WHWP = HoopWorld : BasketBrawl WHXE = Helix WHXP = Helix WHYE = Heavy Fire: Black Arms WHZE = Horizon Riders WIBE = bittos+ WICE = NyxQuest Kindred Spirits WICJ = NyxQuest WICP = NyxQuest : Kindred Spirits WIDE = Dracula: Undead Awakening WIDP = Dracula : Undead Awakening WIEE = Tales of Monkey Island: Chapter 3 - Lair of the Leviathan WIEP = Tales of Monkey Island Chapter 3 : Lair of the Leviathan WIGE = Incoming WIHE = Play with Birds WIKJ = Ivy the Kiwi? Mini WILE = Tales of Monkey Island: Chapter 1 - Launch of the Screaming Narwhal WILP = Tales of Monkey Island Chapter 1: Launch of the Screaming Narwhal WIMC = WiiMC WINE = The Incredible Maze WINJ = Chokkan! Balance * Labyrinth WINP = The Incredible Maze WIRE = Tales of Monkey Island: Chapter 5 - Rise of the Pirate God WIRP = Tales of Monkey Island Chapter 5: Rise Of The Pirate God WISE = Tales of Monkey Island: Chapter 2 - The Seige of Spinner Cay WISP = Tales of Monkey Island Chapter 2 : Siege Of Spinner Cay WITE = Aha! I Found It! Hidden Object Game WITJ = Aa! Mitsuketa! Item Sagashi Game WITP = Aha! I Found It! Hidden Object Game WIUE = Inkub WIVE = Space Invaders Get Even WIVJ = Space Invaders Get Even WIVP = Space Invaders Get Even WIYE = Tales of Monkey Island: Chapter 4 - The Trial and Execution of Guybrush Threepwood WIYP = Tales of Monkey Island Chapter 4 : The Trial and Execution of Guybrush Threepwood WJ2J = Jinsei Game: Happy Step WJAE = Jam City Rollergirls WJAP = Jam City Rollergirls WJCE = JellyCar 2 WJEE = Jett Rocket WJEP = Jett Rocket WJFE = Gnomz WJFP = Gnomz WJGJ = Jinsei Game WJKE = Jewel Keepers Easter Island WJKP = Les Gardiens du Joyau : l'Île de l'Est WJPJ = Janken Party Paradise WJSE = Jungle Speed WJSP = Jungle Speed WJWE = Bejeweled 2 WJWP = Bejeweled 2 WK2J = Kappa-kun to Asobou: Kappa-kun to Ota no Shimikai WK3J = Kappa-kun to Asobou: Kappa-kun to Mori no Nakamatachi WK9J = Minna de Asobou Koinu de Kururin WKBE = You, Me, and the Cubes WKBJ = Kimi to Boku to Rittai WKBP = You, Me and the Cubes WKCE = Kyotokei WKCP = Kyotokei WKDE = Pirates: The Key of Dreams WKEJ = RakuRaku Kinen Apori Wii: Kinenka no Isha ga Osheru Nanoka de yameru Houhou WKFE = Kung Fu Funk: Everybody is Kung Fu Fighting! WKFP = Kung Fu Funk: Everybody Is Kung Fu Fighting WKHE = Big Kahuna Party WKIE = The Mystery of Whiterock Castle WKIP = The Mystery of Whiterock Castle WKKE = Party Fun Pirate WKKJ = Kurohige Kiki Ippatsu WKKP = Pop-Up Pirates! WKNJ = Kanken Minna de Waiwai Kanji Nou WKPJ = Kappa Kun to Mori no Nakama Tachi WKQJ = Kentei! TV Wii Minna de Gotouchi Quiz Battle WKRP = Karate Phants : Gloves of Glory WKTE = Contra Rebirth WKTJ = Contra ReBirth WKTP = Contra ReBirth WKUJ = Downtown Nekketsu Dodgeball WKWE = Adventure on Lost Island: Hidden Object Game WKWJ = Item Sagashi * Yousei to Fushigi no Shima WKWP = Les aventures de l'ile perdue jeu d'objets cachés WL2E = Target Toss Pro: Lawn Darts WL5E = HB Arcade Disc Golf WL9E = Let's Create! Pottery WLCE = Bingo Party Deluxe WLCJ = Wai Wai Bingo Deluxe WLCP = Bingo Party Deluxe WLDJ = Boku mo Sekai o Sukuitai: Battle Tournament WLEE = Apprends avec les PooYoos: Episode 1 WLEJ = Pooyoo to Asobou Episode 1 WLEP = Apprends avec les PooYoos: Episode 1 WLGE = HB Arcade Cards WLIE = Liight WLJJ = Boku mo Sekai o Sukuitai: Battle Tournament WLKJ = Okiraku Tennis SP WLLE = Little Tournament Over Yonder WLLP = Little Tournament Over Yonder WLME = La-Mulana WLMJ = La Mulana WLMP = La-Mulana WLNE = Apprends avec les PooYoos: Episode 2 WLNP = Apprends avec les PooYoos: Episode 2 WLOE = LostWinds: Winter of the Melodias WLOJ = LostWinds: Winter of the Melodias WLOP = LostWinds : Winter of the Melodias WLPE = Lonpos WLPJ = Lonpos WLPP = Lonpos WLTE = LIT WLTJ = School of Darkness WLTP = LIT WLWE = LostWinds WLWJ = LostWinds WLWP = LostWinds WLXJ = Phalanx WLZE = lilt line WLZP = lilt line WM2E = My Little Baby WM2P = My Little Baby WM3E = Manic Monkey Mayhem WM3P = Manic Monkey Mayhem WM4E = Mix Superstar WM4P = Mix Superstar WM5E = MDK2 WM7E = Anima Ark of Sinners WM7P = Anima Ark of Sinners WM8E = Bomberman Blast WM8J = Wi-Fi 8-Nin Battle Bomberman WM8P = Bomberman Blast WM9E = Happy Hammerin WM9J = Tataite Mogupon WM9P = Happy Hammerin' WMAE = Magnetis WMAP = Magnetis WMBE = MaBoShi's Arcade WMBJ = Katachi no Game: Marubou Shikaku WMBP = MaBoShi : l'arcade des trois formes WMCE = Monsteca Corral: Monsters vs. Robots WMCP = Monsteca Corral: Monsters Vs. Robots WMDE = Madstone WMGE = Mart Racer WMHE = Mouse House WMJE = Dive: The Medes Islands Secret WMJP = Dive: The Medes Islands Secret WMKE = Lead the Meerkats WMKP = Lead the Meerkats WMLE = Major League Eating: The Game WMLJ = Major League Eating: The Game WMME = Muscle March WMMJ = Muscle Koushinkyoku WMMP = Muscle March WMOE = Moki Moki WMOJ = Antaga Mawashite Sukuu Puzzle: Mochimochi Q WMOP = Moki Moki WMRE = Monochrome Racing WMRP = Monochrome Racing WMSE = Enjoy your massage! WMSP = Enjoy your massage! WMWP = Le monde de Miffy WMXE = Max & The Magic Marker WMXJ = Max & the Magic Marker WMXP = Max & the Magic Marker WMZP = Mahjong WN9E = Military Madness: Nectaris WN9J = Nectaris WN9P = Military Madness : Nectaris WNAP = Back to Nature WNEE = Penguins & Friends Hey! That's My Fish! WNEP = Penguins & Friends Hey! That’s my Fish! WNGE = Bang Attack WNKE = Niki - Rock 'n' Ball WNKP = Niki - Rock 'n' Ball WNPJ = Sugusuro Duo: New Pulsar R & V WNSE = Newton Vs The Horde WNVE = Neves Plus WNVJ = Neves Plus WNVP = Neves Plus WNWJ = Hamekomi Lucky Puzzle Wii Return WO6E = Family Pirate Party WO6J = Okiraku Sugoroku Wii WO6P = Family Pirate Party WOAE = Family Glide Hockey WOAJ = Okiraku Air Hockey Wii WOAP = Family Glide Hockey WOBE = Art Style: ORBIENT WOBJ = Art Style: Orbital WOBP = Art Style : ORBIENT WODJ = Ouudaa! WOEJ = Oekaki Logic WOFE = Overflow WOGE = Family Mini Golf WOGJ = Okiraku Putter Golf Wii WOGP = Family Mini Golf WOKE = Karaoke Joysound WOKJ = Karaoke Joysound Wii WOLJ = Othello WOMJ = Sekai no Omoshiro Party Game 2 WOPE = Word Searcher Deluxe WOSE = Family Slot Car Racing WOSJ = Okiraku Slot Car Racing Wii WOSP = Family Slot Car Racing WOTE = Overturn WOTJ = Overturn WOTP = Overturn : Mecha Wars WOXJ = Osu! Exercise Dojo WOYE = Bit Boy!! WOYJ = Bit Man WOYP = Bit Boy!! WOZJ = Kodomo Kyouiku Telebi Wii: Aiue-Oumuzu WP2E = Potpourrii WP2P = Potpourrii WP4E = Apprends avec les Pooyoos Episode 3 WP4P = Apprends avec les Pooyoos Episode 3 WP5J = Pokosuka Racing WP6J = Boku wa Plarail Untenshi: Shinkansen Joukikikansha-Hen WP7E = My Planetarium WP7J = Planetarium WP7P = My Starry Night WP9J = Po-Ka-Zu Wii WPAJ = Pokémon Fushigi no Dungeon: Susume! Honoo no Boukendan WPBE = Pub Darts WPBP = Pub Darts WPCE = Doc Louis's Punch-Out!! WPDJ = Chindouchuu!! Pole no Daibouken WPFJ = Pokémon Fushigi no Dungeon: Ikuzo! Arashi no Boukendan WPGE = Snowpack Park WPGJ = Penguin Life WPHJ = Pokémon Fushigi no Dungeon: Mesaze! Hikari no Boukendan WPIE = Pit Crew Panic! WPIJ = Pit Crew Panic WPIP = Pit Crew Panic! WPJE = Pucca's Kisses Game WPJP = Pucca Mission Bisous WPKE = Texas Hold'Em Poker WPKP = Texas Hold'Em Poker WPLE = Planet Pachinko WPNJ = Ponjan WPOJ = Popple to Mahou no Crayon WPPE = Family Table Tennis WPPJ = Okiraku Ping Pong WPPP = Family Table Tennis WPQE = Protöthea WPQP = Protöthea WPRE = Art Style: Cubello WPRJ = Art Style: Cubeleo WPRP = Art Style : CUBELLO WPSE = Pokémon Rumble WPSJ = Ransen Pokémon Scramble WPSP = Pokémon Rumble WPTJ = Fantasic Cube WPUE = Bust-A-Move Plus! WPUJ = Puzzle Bobble Wii WPUP = Puzzle Bobble Plus! WPVE = The Tales of Bearsworth Manor: Chaotic Conflicts WPVJ = Kumanage Battle-Hen: Kiina no Kirai na Aoi Hoseki WPVP = The Tales of Bearsworth Manor - Chaotic Conflicts WPWE = Pong Toss Pro - Frat Party Games WPXJ = Minna de Tobikome Penguin Diving Hooper Looper WPYE = Pallurikio WPYP = Pallurikio WPZE = Bruiser & Scratch WQ4J = Kentoushi FuriFuri Boxing WR2E = Labo Lapins Crétins WR2P = Labo Lapins Crétins WR4P = Rush Rush Rally Racing WR5E = Retro City Rampage WR9E = Mega Man 9 WR9J = RockMan 9: Yabou no Fukkatsu! WR9P = Megaman 9 WRBE = Robocalypse - Beaver Defense WRBP = Robocalypse - Beaver Defense WRDE = Word Searcher WRDP = Mot Cache WREE = Racers' Islands - Crazy Arenas WREP = Racers Islands Crazy Arenas WRFE = Reel Fishing Challenge 2 WRFP = Reel Fishing Challenge 2 WRGE = Rage of the Gladiator WRGP = Rage of the Gladiator WRIE = Rainbow Islands: Towering Adventure! WRIJ = Rainbow Islands: Towering Adventure! WRIP = Rainbow Islands : Towering Adventure! WRJE = Racers' Islands - Crazy Racers WRJP = Racers Islands - Crazy Racers WRLE = FAST Racing League WRLP = FAST Racing League WRNJ = BIT.TRIP RUNNER WRPE = Burn the Rope WRQE = Deer Drive Legends WRQP = Deer Drive Legends WRRE = Robin Hood: The Return of Richard WRRP = Robin Hood : The Return Of Richard WRSE = Step Up WRTE = Robox WRUE = BIT.TRIP RUNNER WRUP = Bit.Trip Runner WRXE = Mega Man 10 WRXJ = RockMan 10 WRXP = Megaman 10 WRYE = Robox WRYP = Robox WS2J = Saikyou Ginsei Igo WS3E = Silver Star: Chess WS3J = Saikyou Ginsei Chess WS4J = Saikyou Ginsei Mahjong WS5J = Saikyou Ginsei Gomoku Narabe WS6E = Silver Star: Reversi WS6J = Saikyou Ginsei Reversi WS7E = Fantasy Slots: Adventure Slots and Games WS8J = Minna de Taisen Puzzle Shanghai WS9E = Sudoku Challenge! WS9P = Sudoku Challenge! WSAE = Onslaught WSAJ = MadSecta WSAP = Onslaught WSBJ = Sorcery Blade WSCJ = Out of Galaxy: Gin no Koshika WSEJ = Princess Ai Monogatari WSGE = Pop 'Em Drop 'Em Samegame WSGJ = Same Game Wii WSGP = Pop Them, Drop Them SAMEGAME WSHE = Stonekeep: Bones of the Ancestors WSIJ = Saikyou Ginsei Shogi WSJE = Spot The Differences! WSJP = Trouvez les Differences! WSLE = The Magic Obelisk WSLJ = Shadow Walker WSME = Eat! Fat! FIGHT! WSMJ = Tsuppari Oozumou Wii Heya WSMP = Eat! Fat! FIGHT! WSNE = Sonic The Hedgehog 4 Episode I WSNJ = Sonic the Hedgehog 4: Episode I WSNP = Sonic The Hedgehog 4 Episode I WSRE = Space Trek WSSP = Solitaire WSTJ = Tenshi no Solitaire WSUE = Shootanto: Evolutionary Mayhem WSUJ = Shootanto: Kakohen WSUP = Shootanto : Evolutionary Mayhem WSWE = Swords & Soldiers WSWP = Swords & Soldiers WSXE = Stunt Cars WSXP = Stunt Cars WSYE = Snail Mail WSZE = Sneezies WSZP = Sneezies WT2E = Target Toss: Pro Bags WT3E = Tomena Sanner WT3J = Tomena Sanner Wii WT3P = Tomena Sanner WT8J = Hajite! Block Rush WTBJ = Fantasic Tambourine WTDJ = Tomica Drive WTEE = Tales of Elastic Boy: Mission 1 WTEP = Tales of Elastic Boy Mission 1 WTFE = Bit.Trip: Flux WTFP = Bit.Trip Flux WTHJ = Kaku! Ugoku! Tsukamaeru! Sensei Wii WTIE = Tiki Towers WTKE = TV Show King 2 WTKP = TV Show King 2 WTME = Adventure Island: The Beginning WTMJ = Takahashi Meijin no Bouken Jima Wii WTMP = Adventure Island The Beginning WTNE = Family Tennis WTNJ = Okiraku Tennis Wii WTPE = Tetris Party WTPJ = Tetris Party WTPP = Tetris Party WTRE = Bit.Trip Beat WTRJ = BIT.TRIP BEAT WTRP = Bit.Trip : Beat WTTE = Toki Tori WTTP = Toki Tori WTUE = Tumblebugs 2 WTWP = Fenimore Fillmore The Westerner WTXE = Texas Hold’em Tournament WTXP = Texas Hold’em Tournament WU2P = Successfully Learning Mathematics Year 3 WU3P = Successfully Learning Mathematics Year 4 WU4P = Successfully Learning Mathematics Year 5 WUBE = Ubongo WUBP = Ubongo WUFE = Drop Zone: Under Fire WUHE = Grill-Off with Ultra Hand! WUIP = Succès au primaire : Power maths WUKJ = Unou Kids Okigaru Unou Training WUNE = Uno WUNJ = Uno WUNP = Uno WURE = Urbanix WURP = Urbanix WVBE = Bit.Trip: Void WVBJ = BIT.TRIP VOID WVBP = Bit.Trip Void WVCE = V.I.P. Casino: Blackjack WVDJ = Kodomo Kyouiku TV Wii: Aiue-O-Chan WVFE = Bobby Carrot Forever WVFP = Bobby Carrot Forever WVIE = Violin Paradise WVKE = Water Warfare WVKJ = Bang Bang Kids WVKP = Water Warfare WVOE = Rock N' Roll Climber WVOJ = Rock n' Roll Climber WVOP = Rock'n Roll Climber WVQE = Vampire Crystals WVQP = Vampire Crystals WVSE = Gods Vs Humans WVSP = Gods Vs Humans WVUP = Mr Bumblebee Racing Champion WW2P = Where's Wally? Fantastic Journey 2 WW3P = Where's Wally? Fantastic Journey 3 WWAE = Warmen Tactics WWIP = Où est Charlie ? Voyage Fantastique 1 WWLP = The Will of Dr. Frankenstein WWRE = Excitebike World Rally WWRJ = Excitebike: World Race WWRP = Excitebike: World Challenge WWTE = BurgerTime World Tour WWTP = BurgerTime World Tour WWXE = Paper Wars: Cannon Fodder WWXP = Paper Wars Cannon Fodder WXBE = Ben 10 Alien Force The Rise of Hex WXBP = Ben 10 Alien Force The Rise of Hex WXME = Xmas Puzzle WXPE = Paint Splash! WXPP = Paint Splash WXRE = Reel Fishing Ocean Challenge WYIE = escapeVektor: Chapter 1 WYIP = escapeVektor: Chapter 1 WYKJ = Yomi Kiku Asobi WYME = Yummy Yummy Cooking Jam WYMP = Yummy Yummy Cooking Jam WYSE = Yard Sale Hidden Treasures: Sunnyville WYSP = Yard Sale Hidden Treasures Sunnyville WZAE = Zombii Attack WZBP = Cricket Challenge WZGE = Zoo Disc Golf WZHE = My Zoo WZHJ = Animal Life: Doubutsu Fureai Seikatsu WZHP = My Zoo WZIE = Rubik's Puzzle Galaxy RUSH WZIP = Rubik's Puzzle Galaxy : RUSH WZJJ = Simple Series Vol. 5: The Judo WZMJ = Simple Wii Series Vol. 3: The Mahjong WZPE = Zombie Panic in Wonderland WZPJ = Zombie in Wonderland WZPP = Zombie Panic in Wonderland WZZE = The Tales of Bearsworth Manor: Puzzling Pages WZZJ = Kumanage Puzzle-Hen: Piina no Suki na Akai Candy WZZP = The Tales of Bearsworth Manor - Puzzling Pages XAAJ = Eggy XABJ = Aleste XADJ = Yie Ar Kung 2 XAEJ = Space Manbow XAFJ = Metal Gear XAGJ = Road Fighter XAHJ = Penguin Adventure: Yume Tairiku Adventure XAIJ = Quarth XAKJ = Parodius - Tako wa Chikyuu wo Sukuu XALJ = Contra XAMJ = Knightmare: Majou Densetsu XANJ = Parodius 2 XAOJ = Gofer no Yabou: Episode II XAPJ = Metal Gear 2: Solid Snake XAQJ = Salamander XBKE52 = Guitar Hero III Custom : Bullet For Kamelot XH2E = Cave Story (Demo) XH2P = Cave Story (Demo) XH3E = Frobot (Demo) XH4E = Max and the Magic Marker (Demo) XH5E = Ayim And Yet It Moves Demo XH6E = Robox (Demo) XH6P = Robox (Demo) XH7E = Lit (Demo) XH7P = Lit (Demo) XH8E = Lead the Meerkats (Demo) XH8P = Lead the Meerkats (Demo) XHAE = Pokemon Rumble (Demo) XHAP = Pokemon Rumble (Demo) XHCE = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHCJ = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHDE = NyxQuest: Kindred Spirits (Demo) XHDP = NyxQuest: Kindred Spirits (Demo) XHEE = BIT.TRIP BEAT (Demo) XHEJ = BIT.TRIP BEAT (Demo) XHEP = BIT.TRIP BEAT (Demo) XHFE = World of Goo (Demo) XHFP = World of Goo (Demo) XHIE = Fluidity (Demo) XHIP = Hydroventure (Demo) XHJE = Thruspace (Demo) XHJP = Thruspace (Demo) XHKE = Dive: The Medes Island Secret (Demo) XHKP = Dive: The Medes Secret Island (Demo) XHLE = Jett Rocket (Demo) XHLP = Jett Rocket (Demo) XHME = Art of Balance (Demo) XHMP = Art of Balance (Demo) XHQE = Zombie Panic (Demo) XHQP = Zombie Panic (Demo) XHRE = Furry Legends (Demo) XHRP = Furry Legends (Demo) XHVE = BIT.TRIP CORE (Demo) XHVP = BIT.TRIP CORE (Demo) XHWE = BIT.TRIP VOID (Demo) XHWP = BIT.TRIP VOID (Demo) XHXE = BIT.TRIP RUNNER (Demo) XHXP = BIT.TRIP RUNNER (Demo) XHZE = Chronos Twins DX (Demo) XHZP = Chronos Twins DX (Demo) XI2E = Kyotokei (Demo) XI2P = Kyotokei (Demo) XI7E = Liight (Demo) XI8E = Jam City (Demo) XI8P = Jam City (Demo) XIAE = Lilt Line (Demo) XIAP = Lilt Line (Demo) XIBE = Fish em All (Demo) XIBP = Fish em All Demo XICE = Gods vs Humans Demo XICP = Gods vs Humans Demo XIDE = Racers Islands Crazy Racers Demo XIDP = Racers Islands Crazy Racers Demo XIEE = chick chick BOOM Demo XIEP = chick chick BOOM Demo XIGE = Urbanix Demo XIGP = Urbanix Demo XIHE = Gladiator Demo XIHP = Gladiator Demo XIJE = Fast Racing League Demo XIJP = Fast Racing League Demo XIKE = Monsteca Corral Demo XIKP = Monsteca Corral Demo XINE = Learning with the Pooyoos Episode 1 Demo XINP = Learning with the Pooyoos Episode 1 Demo XIOE = Learning with the Pooyoos Episode 2 Demo XIOP = Learning with the Pooyoos Episode 2 Demo XIPE = Learning with the Pooyoos Episode 3 Demo XIPP = Learning with the Pooyoos Episode 3 Demo XIQE = Dart Rage Demo XIRE = Pong Toss Pro Demo XISE = BIT.TRIP FLUX Demo XISP = BIT.TRIP FLUX Demo XITE = Fast Draw Demo XITP = Fast Draw Demo XIUE = Soccer Bashi Demo XIUP = Soccer Bashi Demo XIVE = Mix Superstar Demo XIVP = Mix Superstar Demo XIZE = 3D Pixel Racing Demo XIZP = 3D Pixel Racing Demo XJEE = Aya and the Cubes of Light Demo XJEP = Aya and the Cubes of Light Demo XJGE = Gnomz Demo XJGP = Gnomz Demo XJHE = Paint Splash Demo XJIE = 2 Fast 4 Gnomz Demo XJSE = Karaoke Joysound (Demo) XJSP = Karaoke Joysound Wii (Demo) XNWE52 = Guitar Hero III Custom: Nightwish XXXX02 = Mario Kart Teknik ZXFP52 = Guitar Hero 3 Encore wit-2.31a/share/titles-es.txt0000644000175000017500000110006012655737310015754 0ustar michaelmichael010E01 = Wii Backup Disc v1.31 301E01 = GameCube Service Disc AFRE01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 8. AMEE01 = New Super Mario Bros. Wii 11 American Revolution AMNE01 = Another Super Mario Bros. Wii AMOR04 = Guitar Hero III Custom: HARDcore APRP01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 2. APRP02 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 3. APRP03 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 6. APRP04 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 7. APRP06 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 5. APRP08 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 1. ASMB01 = Another Super Mario Bros. Wii BEPS01 = Guitar Hero III Custom: Rock 'n' Metal BOWE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh C3BE52 = Guitar Hero III Custom: Bossenator C3FP52 = Guitar Hero III Custom: Fonx #1 C3KE52 = Guitar Hero III Custom: Kyle Edition #1 C3ME52 = Guitar Hero III Custom: Modern Rock C3PP52 = Guitar Hero III Custom: Modern Pop & Rock C80E52 = Guitar Hero III Custom: Rocks the 80's C80P52 = Guitar Hero III Custom: GH I & 80's C93E = Last Ninja 2 C93P = The Last Ninja 2 C94E = Tower Toppler C94P = Nebulus C95P = Impossible Mission C96E = Summer Games II C96P = Summer Games 2 C97E = California Games C97P = California Games C98P = Paradroid C99P = Uridium C9EP = Winter Games C9GP = Mayhem in Monsterland C9HE = Boulder Dash C9HP = Boulder Dash C9IE = Cybernoid C9IP = Cybernoid C9ME = Pitstop II C9MJ = Pitstop Two C9MP = Pitstop II C9PP = The Last Ninja 3 C9QP = Jumpman C9RP = International Karate + C9SP = Impossible Mission II C9XE = The Last Ninja C9XJ = The Last Ninja C9XP = The Last Ninja C9YE = International Karate C9YJ = International Karate C9YP = International Karate C9ZP = World Games CANE52 = Guitar Hero Custom: NOT Aerosmith but... CCPE01 = Mario Kart Wii custom: The Master Race CEMU69 = PunEmu CFEE52 = Guitar Hero III Custom: Michael Jackson CG1E52 = Guitar Hero III Custom : Guitar Hero CG1P52 = Guitar Hero III Custom: Guitar Hero I CG2E52 = Guitar Hero III Custom: Guitar Hero II CG2EFL = Guitar Hero III Custom: GH II CG2P52 = Guitar Hero III Custom: Guitar Hero II CG3ECS = Guitar Hero III Custom: ClasSick Edition CG3PCS = Guitar Hero III Custom: ClasSick Edition CGBE52 = Guitar Hero III Custom: Rock Band CGBP52 = Guitar Hero III Custom: Rock Band CGH370 = Guitar Hero III Custom: 70 New Song CGH3IM = Guitar Hero III Custom: Iron Maiden CGH3LM = Guitar Hero III Custom: Legend Of Music CGH3ME = Guitar Hero III Custom : Metallica CGH3NE = Guitar Hero III Custom: Nostalgia Edition CGH3WD = Guitar Hero III Custom: WD Custom CGHCE1 = Guitar Hero III Custom: Edition Custom CGHE87 = Guitar Hero III Custom: Guitar Hero I CGHE88 = Guitar Hero III Custom: Guitar Hero II CGHE89 = GH3: Mario CGHE90 = GH3: South Park Edition CGHE91 = GH3: The Red Album CGHE92 = GH3: The Blue Album CGHE93 = GH3: Shake Rattle and Roll CGHE94 = Guitar Hero III Custom: Mars Needs Guitars CGHE95 = Guitar Hero III Custom: Rock Band CGHE96 = Guitar Hero III Custom: Rock'n'Roll Metal CGHE97 = GH3: I Fought The Law CGHE98 = GH3: Sweet Home Alabama CGHE99 = Guitar Hero III Custom: Rock The 80's CGHECB = Guitar Hero III Custom: CBT Edition CGHEDC = Guitar Hero III Custom: Downloadable Content Edition CGHEDM = Guitar Hero III Custom: DAVEMODE CGHEMC = Guitar Hero III Custom: My Chemical Romance CGHENC = Guitar Hero III Custom: NCustom CGHEPH = Guitar Hero III Custom: Puppetz Hero 2 CGHER2 = Guitar Hero III Custom: Rock Band 2 CGHERF = Guitar Hero III Custom: Rockfest 2010 CGHJ52 = Guitar Hero III Custom: Jumapa CGHKY2 = Guitar Hero III Custom: Kyle Edition #2 CGHPF2 = Guitar Hero III Custom: Fonx #2 CGHPF3 = Guitar Hero III Custom: Fonx #3 CGHPF4 = Guitar Hero III Custom: Fonx #4 CGHPF5 = Guitar Hero III Custom: Fonx #5 CGHPNT = Guitar Hero III Custom: Ntorrents Edition CGHRH2 = Guitar Hero III Custom: Rocks Hits Custom v2 CGHSKV = Guitar Hero III Custom: Starchildren & Kneos Version CGIE52 = Guitar Hero III Custom: Iron Maiden CGSP52 = Guitar Hero III Custom: Spanisk Custom by KuXu CGVECD = Guitar Hero Aerosmith Custom: AC/DC Edition CGVEM2 = Guitar Hero Aerosmith Custom: Mini Concerts Edition 2 CGVEMC = Guitar Hero Aerosmith Custom: Mini Concerts Edition CGVEUV = Guitar Hero Aerosmith Custom: Ultimate Video Game Hero CKBE88 = Mario Kart Wii Black CLAPSI = Sing IT: Clásicos CMDE52 = Guitar Hero III Custom: Megadeth CMKE01 = Mario Kart Wii Dragon Road CS0P00 = StarSing: Bollywood v2.0 CS0PZZ = StarSing : Pop Part. I v2.0 CS1P00 = StarSing: Country v2.0 CS1PZZ = StarSing: Pop Part. II v2.0 CS2P00 = StarSing: Placebo v2.0 CS2PZZ = StarSing: '80s Volume 1 v2.0 CS3P00 = StarSing: Volume 1 v2.0 CS3PZZ = StarSing: Anthems v2.0 CS4P00 = StarSing: NRJ Music Tour v2.0 CS4PZZ = StarSing: Legends v2.0 CS5P00 = StarSing : '70s v2.1 CS5PZZ = StarSing: Songs For My Jedi v1.0 CS6P00 = StarSing: Douce France v2.0 CS6PZZ = StarSing: Amped Part. I v2.0 CS7P00 = StarSing : Red Hot Chili Peppers v1.0 CS7PZZ = StarSing: Amped Part. II v2.0 CS8P00 = StarSing: '90s Volume 1 v2.0 CS8PZZ = StarSing: Disco-Funk v1.0 CS9P00 = StarSing : '80s Volume 2 v2.1 CS9PZZ = StarSing: Pop Hits 9 v1.0 CSAP00 = StarSing : '80s Volume 3 v2.1 CSAPZZ = StarSing: Best of Goldman v1.0 CSBP00 = StarSing : '90s Volume 2 v2.1 CSCP00 = StarSing : Michael Jackson v2.2 CSCPZZ = StarSing: Hottest Hits v2.0 CSDP00 = StarSing: Rocks! Volume 2 v2.0 CSDPZZ = StarSing: Boy Bands Vs. Girl Bands v2.0 CSEP00 = StarSing : Pop Hits 5 v1.3 CSFP00 = StarSing : Pop Hits 6 v1.3 CSGP00 = StarSing : Chansons Magiques de Disney v1.4 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = StarSing : Pop Hits 7 v1.3 CSJP00 = StarSing : Après-Ski Party v1.2 CSKP00 = StarSing : ABBA v1.1 CSLP00 = StarSing : Queen v2.0 CSMP00 = StarSing : Electro-Dancefloor Volume 1 v2.0 CSNP00 = StarSing : Electro-Dancefloor Volume 2 v2.0 CSOP00 = StarSing : Electro-Dancefloor Volume 3 v2.0 CSPP00 = StarSing: Linkin Park Live at Webster Hall New York v2.0 CSQP00 = StarSing: Muse v2.0 CSRP00 = StarSing : International Volume 3 v1.0 CSSP00 = StarSing : Après-Ski Party 2 v2.0 CSTP00 = StarSing : Depeche Mode v2.0 CSUP00 = StarSing : Pop Hits 8 v1.3 CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = StarSing : Génériques TV v2.0 CSYP00 = StarSing : Electro-Dancefloor Volume 4 v2.0 CSZP00 = StarSing : Glee Volume 1 v2.1 CT0P00 = StarSing: Pop Part. I v2.1 CT1P00 = StarSing: Pop Part. II v2.1 CT2P00 = StarSing: '80s Volume 1 v2.1 CT3P00 = StarSing: Anthems v2.1 CT4P00 = StarSing: Legends v2.1 CT5P00 = StarSing: Songs For My Jedi v2.0 CT6P00 = StarSing: Amped Part. I v2.1 CT7P00 = StarSing: Amped Part. II v2.1 CT8P00 = StarSing: Disco-Funk v2.0 CT9P00 = StarSing: Pop Hits 9 v1.3 CTAP00 = StarSing : Best of Goldman v2.0 CTBP00 = StarSing : Glee Volume 3 v1.0 CTCP00 = StarSing: Hottest Hits v2.0 CTDP00 = StarSing: Boy Bands Vs. Girl Bands v2.1 CTEP00 = StarSing: R&B v2.0 CTFP00 = StarSing: Rock Ballads v2.0 CTGP00 = StarSing: Take That v2.0 CTHP00 = StarSing : Summer Party v2.0 CTIP00 = StarSing: Rocks! Part. I v2.0 CTJP00 = StarSing: Rocks! Part. II v2.0 CTKP00 = StarSing: Pop Hits v2.0 CTLP00 = StarSing : Britney Spears v2.0 CTMP00 = StarSing : Shakira v1.1 CTNP00 = StarSing : Pop Hits 10 v1.3 CTOP00 = StarSing : The Beatles Volume 2 v2.0 CTPP00 = StarSing : Motown v2.0 CTQP00 = StarSing : Glee Volume 2 v1.0 CTRP00 = StarSing : International Volume 1 v1.0 CTSP00 = StarSing : International Volume 2 v1.0 CTTP00 = StarSing : '80s Volume 4 v1.0 CTUP00 = StarSing : Rihanna v1.0 CTVP00 = StarSing : Lady GaGa v1.0 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CVLE38 = Mario Kart: Victory Lane D01A = Wiimmfi Patcher D02A = Engine02 D03A = BrainSlug Wii D05A = Bash the Castle D06A = Bit Streamer D07A = BlisterBall D08A = Blob Wars: Metal Blob Solid D09A = Blobby Volley 2 Wii D0AA = MPlayer Wii Youtube D0BA = MPlayer Wii D0CA = Ocarina D0DA = MPlayer Dvdlib Edition D0EA = MPlayer Wii By Rodries D0FA = Signcheck D0GA = GCBoot D0HA = Memview D0IA = IOS Check D0JA = Open Sram Lang Modifier D0KA = WiiBServer D0LA = LibWiiGameLoad D0MA = Wiireader D0NA = lsusb D0OA = Move The Pussy Demo D0PA = Wiilax Minitro D0QA = Fission Engine Project D0RA = GRRLIB 4.0 Demo D0SA = OSDM-BAR D0TA = Homebrew Menu Demo D0UA = LibMii Example D0VA = The Scary Demo D0WA = Starfield Demo D0XA = Wire3D Demo D0YA = Something D0ZA = GRRLIB 4.3.0 Promote Intro D10A = cIOSFix D11A = ASCII Pong D12A = BuscaWiinas D13A = C-Dogs SDL D14A = Castles of Dr. Creep D15A = Wii Shop and IOS51 Installer D16A = Centipede D17A = Cobra Arcade D18A = Dump Espresso OTP D1LA = Blind D1PA = 1bit Invaders D1RA = MinimaLauncher D21A = Xroar D22A = cIOS222 installer D24A = 24 Points D26A = Wii2600 D29J01 = Monthly Nintendo Shop Demo May 2002 D2AA = Wii Deadly Cobra D2AJAF = Minna de Bouken! Family Trainer (Demo) D2BA = Jump N Bump D2CA = Wiiflow Advanced D2DA = Box2D Balls D2EA = Wiiflow Start Configurator D2GA = Wadinstallerbatch D2QA = Sqrxz 2 D2SE18 = Deca Sports 2 (Demo) D2ZA = Console Shooter D32J01 = Monthly Nintendo Shop Demo June 2002 D33A = Time Frack 2D D33J01 = Monthly Nintendo Shop Demo July 2002 D34J01 = Monthly Nintendo Shop Demo July 2002 D36A = cIOS36 installer D37A = WiiConnect D38A = cIOS38 installer D38J01 = Monthly Nintendo Shop Demo September 2002 D39A = Ctr Gts DacoTaco Edition D3DA = Time Frack 3D D3DE18 = Deca Sports 3 (Demo) D3JA = NDSLoad D3KA = Button Tester D3LA = BootMii Booter D3MA = Custom NAND Loader D3OA = cIOS USB 2 Installer D3QA = Sqrxz 3 D3WA = Warheads D40A = Luigi and the Island of Mystery D42A = ArianeB D43A = Wii Virtual Jaguar D43E01 = The Legend of Zelda: Ocarina of Time / Master Quest D43J01 = Zelda no Densetsu: Toki no Ocarina GC / Ura Zelda D43P01 = The Legend of Zelda: Ocarina of Time / Master Quest D43U01 = The Legend of Zelda: Ocarina of Time (Bonus Disc) D43W01 = The Legend of Zelda: Ocarina of Time / Master Quest D46A = Newo Escape D4BE08 = Resident Evil 4: Preview Disc D4BP01 = Resident Evil 4: Bonus Disc D4BP08 = Resident Evil Four Preview Disc D4BU01 = Resident Evil 4: Bonus Disc D4KA = Aleph WOne D4LA = Yawnd D4NA = Disc Dumper D4PA = DVD Dumper D4QA = Sqrxz 4 D4SA = USB Loader GUI FX D51A = IOS51 Update D52A = cboot252 D53J01 = Monthly Nintendo Shop Demo May 2003 D54A = cIOS Patchmii Installer D55A = PID Extractor D55J01 = Interactive Disc Catalog Summer 2003 D56A = Shopping Channel Fixer D56E01 = Interactive Multi-Game Demo Disc - Version 35 D56J01 = Pokémon Channel (Bonus Disc) D57A = Hijill GUI D57E01 = Interactive Multi-Game Demo Disc - Version 34 D58A = Priiloader HacksDen Edition D58E01 = Interactive Multi-Game Demo Disc - Version 33 D59A = TheUntitledProject D59E01 = Interactive Multi Game Demo Disc Version 32 D5AA = Alarmii D5BA = WiiFont D5CA = cLoader D5FA = Txted Mod D5HA = Title Lister D5JA = Tidy Up D5LA = Switchtosneek D5RA = Botoning D60A = Ultimate USB Loader D61A = Sand Traps Extra Levels D62A = Newo Puzzle D62E01 = Interactive Multi-Game Demo Disc - Version 31 D63A = 3D Maze D63E01 = Interactive Multi-Game Demo Disc - Version 30 D64A = Wii64 D64E01 = Interactive Multi-Game Demo Disc - Version 29 D65A = Transitory Vectors D65E01 = Interactive Multi Game Demo Disc Version 28 D65P01 = Interactive Multi-Game Demo Disc - December 2002 D66A = Secret Maryo Chronicles D66E01 = Interactive Multi-Game Demo Disc - Version 27 D67E01 = Interactive Multi-Game Demo Disc - Version 26 D67J01 = Monthly Nintendo Shop Demo December 2003 D68A = TheyDoNotDie2 D68E01 = Interactive Multi-Game Demo Disc - Version 25 D68J01 = Monthly Nintendo Shop Demo January 2004 D69A = IOS60 Installer D69E01 = Interactive Multi-Game Demo Disc - Version 24 D6AA = Pussieloader D6BA = Updatersafe D6DA = Savegame Manager Mod D6EA = Sneek FS Dumper D6FA = Anytitle Deleter Mod D6HA = AnyTitle Deleter Mod DB D6IA = DVD Info D6KA = AnyTitle Deleter DB D6MA = Banana Saves D6OA = DOP Shop D6QA = BootMii Checker D6TA = MiiPlayer D70A = Dungeon Crawl Stone Soup D71A = Panic in the Mushroom Kingdom D72A = Bfi D72E01 = Interactive Multi-Game Demo Disc - Version 23 D73E01 = Interactive Multi-Game Demo Disc - Version 22 D74E01 = Interactive Multi Game Demo Disc Version 21 D75E01 = Interactive Multi-Game Demo Disc - Version 20 D76E01 = Interactive Multi-Game Demo Disc - Version 19 D77E01 = Interactive Multi-Game Demo Disc - Version 18 D77P01 = Interactive Multi Game Demo Disc April 2006 D78A = Wii7800 D78E01 = Interactive Multi-Game Demo Disc - Version 17 D78J01 = Interactive Multi-Game Demo Disc - May 2004 D78P01 = Interactive Multi-Game Demo Disc - October 2005 D79A = Newo Defence D79E01 = Interactive Multi-Game Demo Disc - Version 16 D79P01 = Interactive Multi Game Demo Disc May 2005 D7AA = Action Replay Loader D7DA = Depanbrew D7GA = Channel Loader D7KA = RawkSD D7LA = Rumbler D7MA = IS Wad D7OA = Recovery Manager D7QA = Reboot D7SA = Childproof USB Loader D7TA = Power Mii Off D7VA = Power Off D7WA = Abbaye des Morts D7XA = NuGaSa D7YA = Resistor D81A = Newo Asteroids D82A = cIOS Patchmii Installer with Korean Disc Support D82E01 = Interactive Multi-Game Demo Disc - Version 15 D82J01 = Monthly Nintendo Shop Demo July 2004 D82P01 = Interactive Multi Game Demo Disc April 2005 D83A = Wii MFE Port D83E01 = Interactive Multi-Game Demo Disc - Version 14 D83P01 = Interactive Multi Game Demo Disc February 2005 D84A = Gambol D84E01 = Interactive Multi-Game Demo Disc - Version 13 D84P01 = Interactive Multi-Game Demo Disc - November 2004 D85A = Wii EDuke32 D85E01 = Interactive Multi-Game Demo Disc - Version 12 D85P01 = Interactive Multi Game Demo Disc July 2004 D86A = Firewii D86E01 = Interactive Multi-Game Demo Disc - Version 11 D86P01 = Interactive Multi-Game Demo Disc - May 2004 D87A = Tick Tock Boat Race D87E01 = Gamecube Preview Disc D87P01 = Interactive Multi-Game Demo Disc - March 2004 D88A = Quasi88 D88E01 = Interactive Multi-Game Demo Disc - Version 10 D88P01 = Interactive Multi-Game Demo Disc - November 2003 D89A = Wiimote Led Flasher D89E01 = Interactive Multi-Game Demo Disc - Version 9 D89J01 = Club Nintendo Original e-Catalog 2004 D89P01 = Interactive Multi-Game Demo Disc - September 2003 D8AA = Front SD ELF Loader D8BA = GameCube Homebrew Launcher D8CA = WiiSend D8DA = Menu D8EA = Gecko Loader D8FA = Shell D8JA = Calc D8QA = Brick OS D8RA = Lotto D8SA = Brainf**k D8UA = TCPLoader D8VA = Snort48 D8WA = Wiisixty D8XA = All In One Emuloader D8YA = Swissloader D8ZA = Tick Tock Zombie Shooter D91A = Jenny Thinks D92E01 = Interactive Multi-Game Demo Disc - Version 8 D92P01 = Interactive Multi Game Demo Disc June 2003 D93A = Wiiraytracer D93E01 = Interactive Multi-Game Demo Disc - Version 7 D93P01 = Interactive Multi Game Demo Disc April 2003 D94A = Nowhere D94P01 = Interactive Multi-Game Demo Disc - February 2003 D95A = RenderMii D95P01 = Interactive Multi-Game Demo Disc - December 2002 D96A = WiiMotionDemo D96P01 = Interactive Multi-Game Demo Disc - November 2002 D97A = Fire D98A = InstallMii D99A = System Channels Updater D9BA = Info D9CA = cIOS USB2 Installer D9FA = Dump D9GA = Wad Creator D9HA = WakeMiiUp D9IA = SNES9xGX Channel Installer D9KA = Txtread D9LA = Forwarder DA1A = Radianwars DA2A = Moonstone DA3A = Wiitch DA4A = arCard+Wii DA6A = Automatii DA7A = Astronomy DA8A = Beer Belly Bill 3 Grillieren DA9A = Achtung Wii Kurve DAAA = WiiNetPuzzle DAHA = Accio Hacks DALJ01 = Dairantou Smash Brothers DX (Demo) DAMA = MegaCodeDownloader DAPA = Map Maker DARA = Anyregion Changer DASA = Aspirin DASE4Q = Disney Epic Mickey (Demo) DATA = AnyTitle Deleter DATD = AnyTitle Deleter DAUEPZ = Country Dance (Demo) DAVA = Avoidance DAVE01 = Mystery Case Files: The Malgrave Incident (Demo) DAWA = Abuse Wii DAXE01 = The Legend of Zelda: Skyward Sword (Demo) DAXP01 = The Legend of Zelda: Skyward Sword (Demo) DB0A = Spitits DB2A = Mad Bomber DB3A = Squarez DB5A = mapbf DB7A = Blacks Dash DB9A = Robi DBAA = BowFishing Action DBBA = Balance Board Tools DBBE18 = Beyblade: Metal Fusion - Battle Fortress (Demo) DBCA = BootMii Configuration Editor DBDA = Bluedump DBGA = BlastGuy DBIA = Boot It DBKE69 = Boom Blox (Demo) DBKP69 = Boom Blox (Demo) DBLA = BlueMSX-wii DBMA = BootIOS DBPA = Balance Board Pro DBRA = WiiBrowser DBSA = BrawlStats DBTA = Bolt Thrower DBUA = Buttoncast DBWA = Reversmii DBXA = Biniax 2 DBZJ08 = Biohazard Zero: Trial Edition DC6A = Frodo (C64-network.org) DC7A = Calculate DCAA = Wiicasino DCAE18 = Calling (Demo) DCBA = CascadeBeneath DCCA = Christmascountdown DCDA = cIOS Downgrader DCEA = Cheat Manager DCFA = Coverfloader DCGA = Ctr-Gcs DCHA = Wiichatter DCHEAF = We Cheer (Demo) DCHJAF = We Cheer: Ohasta Produce ! Gentei Collabo Game Disc DCIA = cIOS Installer DCLA = Configurable USB Loader DCMA = Wiicm DCNA = Nandclean DCOA = Connectmii DCPA = Splatter Castle DCRA = CosmoRaketti DCSA = Cert.sys Extractor DCTA = Christmas-Type Adventure Time DCUA = cIOS Uninstaller DCVA = WiiColEm DCWA = WiiMC Channel Installer DCXA = ComixChannel DCYA = Cylinder Dodge DD2A = Double Dash Wii DD2P41 = Just Dance 2 (Demo) DD3A = Dario DD5A = Dcvg5k DD9A = Dungeons DDAA = Darkcorp DDBA = DOSBox Wii DDCA = d2x cIOS Installer DDDA = Disk Drive Lighter DDEA = WiiModder DDFA = Defendguin DDHA = Homebrew Disc Launcher DDIA = DiiLC DDLA = Disc Loader DDMA = DragonMedia Player DDOA = DOP-Mii DDRA = Wii Duplicated Channel Remover DDSA = DeSmuME DDVA = Devolution DDWA = DOP Mii Wiibrew Edition DDWE18 = Lost in Shadow - Press Disc (Demo) DDWX18 = Lost In Shadow - Best Buy (Demo) DE2A = Doubledown DE5A = Pictogrid DE7A = Commander Keen DE9A = Wii Bash DEAA = Headtracking Demo DEBA = Pong Breaker DEDA = Txted DEEA = Eeeek Eeeeek Hooooook DEFA = Fuse DEHA = Chess DEME = PunEmu DEPA = Pacman DERA = Elongated Reptile DETA = MPlayer TT DEWA = Wii Exhibit DEZP8P = Billy Hatcher and the Giant Egg (Demo) DF0A = Mini FSToolbox DF2A = Da ShAmAn DF3A = Briickout DF4A = Star Catching DF5A = Strobe Alarm Clock DF6A = Wii Quizz DF7A = Chatnoir DF8A = Trinary DF9A = Chunk Munch DFBA = Fsbrowser DFEA = FlipEm DFFA = Simple fs dumper DFGA = Smashing! DFIA = Fceugx Channel Installer DFLA = Starfall DFMA = FMyLife DFRA = FridgeMagnets DFSA = Fstoolbox DFTA = FTPii DFUA = Fuse DG3A = Giddy 3 DG7A = WiiPeng DG8A = Abusimbel Deluxe DG9A = Garnatron DGBA = Geexbox DGCA = GameCube Backup Launcher DGEA = GeckoOS DGFA = Guitars On Fire DGGA = Wii Rick Dangerous DGIA = Gravitii DGKA = ProjectGMC DGMA = GCMM DGPA = Genesis Plus GX DGSA = Shooting Gallery DGWA = Goodbye World DGXA = GxGeo DH7A = Harmony's Nightmare DH9A = Prophecy DHBA = Homebrew Browser DHCA = Hero City DHDA = Hidtest DHEA = Helium Boy DHFA = Homebrew Filter DHGA = HuGo-GX DHHA = HHexen DHHJ8J = Hirano Aya Premium Movie Disc from Suzumiya Haruhi no Gekidou DHIA = HackMii Installer DHKE18 = Help Wanted: 50 Wacky Jobs (Demo) DHLA = Heli DHMA = CharioMan DHSA = Homebrew Sorter DHTA = Hatari DHWA = We are nowhere DHXA = Hex DI5A = Tanks DI7A = ExistenzE DI8A = Ios58 Installer DI9A = Barrage DIBA = Revolt of the Binary Couriers DICA = Cubic DIEA = EasyIOS DIGA = Categorii DIIA = iiii DIMA = Inspectmii DINA = Mii Installer DIRA = Ironing Maiden DISA = Wii Supersonic DITA = IOS236 Installer DIXA = cIOSx installer DIYP01 = New Super Mario Bros. Wii 0-4 D.I.Y. DJAA = Arcade Jigsaw DJCA = Wii JellyCar DJFA = Joyflow DJJA = Jumping Jack DJQA = Jewel Quest DJWA = Wii System Menu DJZA = JzintvWii DK1A = Karaokii DK3A = Sketch Fight DK4A = Drawingbox DK6A = King of Fighters: Flames of Courage DK6E18 = Marble Saga Kororinpa (Demo) DK6J18 = Kororinpa 2 (Demo) DK7A = Uschtris DKBA = RPG Baker DKCA = Tick Tock Car Race DKCP01 = Darky Kart Riivo DKDA = Darkcube DKHA = Katakana and Hiragana Practice DKKA = Koreankii DKOA = Komopong DKPA = Kidspaint DKSA = Wii Stpp DKTA = Taiko DKWA = Kurushi DKWE01 = Darky Kart Wii Vol. 1 DKWE02 = Darky Kart Wii Vol. 2 DKWE03 = Darky Kart Wii Vol. 3 DKWE04 = Darky Kart Wii Vol. 4 DL3A = Ballion DL4A = LPairs DL5A = Gameload DL7A = LabClone DLBA = My Little Ball DLCA = Dance Clone DLDA = Devilock DLEA = Preloader DLFA = LifeMii DLGA = Gravity Glider DLIA = WiiMod Lite DLLA = Lolicopocalypse DLMA = LoadMii DLNA = Lander DLOA = Lightsout DLPA = Lopan DLSE64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLSP64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLTA = Leveltool DLUA = WiiLauncher DLXA = Linux Installer DLZEPW = Super Smash Bros Phoenix Wings DM0A = Pom DM5A = Missle Command DM7A = Matches DM9A = Checkregion DMAA = SDL Mame DMBA = Multiboot DMCA = Cleanrip mod DMDA = WiiMod DMEA = Mii Extractor DMFA = WiiMednafen DMGA = Mighty Channels DMHA = NanoMechas DMHE08 = Monster Hunter Tri (Demo) DMHJ08 = Monster Hunter Tri (Demo) DMIA = DIOS MIOS Booter DMJA = Mahjongg Wii DMKE01 = Mario Kart Wii 2 DMLA = Mighty Loader DMMA = MyMenuify DMNA = Magic Number DMOA = cMIOS installer DMPA = MPlayer CE DMRA = MIOS Patcher DMSA = ShutMiiReboot DMSP4Q = Sing It: Películas Disney DMTA = Metronome DMUA = Multi Mod Manager DMWA = Wakemiiup DN0A = Thatother DN7A = Alien Breed DN9A = Point and No Click DNAA = Ncard DNCA = NeoCD-Wii DNDA = Nintendont DNEA = Gravity DNGA = NeoGamma DNHA = Headings DNIA = Bugin DNKA = Neko Project II DNMA = Newo Model Viewer DNNA = Save installer DNOA = O.T.T.F. DNPA = NeoPopWii DNRA = Newo Runner DNSA = Newo Shooter DNTA = NeoTanks DNUEDA = Naruto Clash of Ninja 2 (Demo) DNWA = Nowell DO2A = O2EM DO3A = Three Point O DO4A = MTP DO5A = Planet Hively DO6A = Mini MP3 Player DOCA = Code Downloader DOEA = ShowTest DOGA = Wii Maze of Galious DOHA = HighOctane DOIA = Neogamma IOS Switcher DOMA = Mole DONA = Offline Network Enabler DOOA = WiiDoom DOPA = PowerCheck DORA = Rebooter DOTA = OpenTTD DP0A = Starplit DP1A = Italian Parking DP2A = Pong2 DP3A = Inkpoly DP4A = Piirates DP5A = Pix DP6A = IOS36 patcher DP7A = Brawl+ Updatifier DP8A = Timeless DP9A = Alien Puzzle Wii DPAA = WiiPaintBall DPBA = Priibootergui DPCA = Cherophobe DPEA = PieChart DPFA = Pwiictogrid DPGA = Pingus DPIA = Patched IOS 80 Installer for vWii DPIE18 = Oops! Prank Party (Demo) DPJA = Project M Launcher DPKA = Physco DPLA = Priiloader DPMA = Music Painter DPNA = RPG Pineapple Apocalypse DPNP08 = P.N.03 (Promo) DPOA = Postloader DPPA = Project Panic DPRA = PlasmaRaketti DPSA = Playstats DPTA = Two Point Five DPVA = Pattview DPWA = Pimp my Wii DQ1A = Q1rev DQ2A = Q2rev DQ6A = Light DQ7A = Quake DQ8A = LuaFWii DQ9A = Wiihttpd DQAJK2 = Aquarius Baseball DQAJSC = Aquarius Baseball (Simplified Chinese Translation) DQBA = Bible Quiz DQCA = Q2ctfrev DQGP69 = MySims Racing (Demo) DQRA = Qrevpak DQWA = Quakegx DR0A = Rokoban DR1A = Wii Whiteboard DR3A = Death Star Run DR4A = Rock Paper Scissors DR5A = Briicks DR6A = Reader DR7A = RockBlueMet DR8A = Operation DR9A = PixelPlot DRAA = RetroArch-Wii DRBA = Rock Band 2 Wad Installer DRCA = Wiicross DRDA = Drawmii DREA = Wiirecipe DRFA = Radiofeeds DRGA = Reggie Dumper DRIA = Cleanrip DRKA = Robotfindskitten DRMA = Mr. Sitwell DRME18 = Rooms: The Main Building (Demo) DROA = SlimeRoll DRP22Q = SingItStar Deutsch Rock-Pop Vol. 2 DRPA = Marcos Lopez Part II DRRA = Riiper DRSA = RedSquare DRTA = Tetris Custom DRUA = Radiofeeds Updater DRVA = Residualvm DRWA = Winterman DRZA = Zerace DS0A = ShootMii DS1A = Another Rock Paper Scissors DS2A = Swingball2 DS3A = Senet DS4A = Sar DS5A = Snaketwo DS6A = Scogger DS7A = Swing Ball DS8A = Scape DS9A = Minesweeper DSAA = Schism Tracker DSBA = SpaceBubble DSCA = Softchip DSDA = SuperDump 1.3 DSEA = Settings Editor GUI DSFA = Sciifii DSFE7U = Muramasa: The Demon Blade (Demo) DSGA = Savegame Manager DSHA = SysCheck HacksDen Edition DSIA = Simple IOS Patcher DSKA = SockDreams DSLA = Wii Stella DSMA = Sega Master System Plus DSNA = SNES9XGX DSOA = Bermuda Syndrome Wii DSPA = Super Star Shooter DSQA = Sqrxz DSRA = Wiistrobe DSRJ8P = Sonic and the Secret Rings (Demo) DSSA = RSSMii DSTA = Wii Solitaire DSUA = Super Mario War DSVA = ScummVM DSWA = SuperTux Wii DSXA = Super Pixel Jumper DSYA = Syscheck DT0A = Tower Defense DT1A = Turnip DT2A = Matching Cards DT3A = Bichejos DT4A = Soduku DT5A = Poker DT6A = Simon DT7A = TheyDoNotDie DTAA = Wii Tac Toe DTCA = The Catachthonic DTDA = Descent DTEA = Topedit DTFA = Triiforce DTHA = Heretic DTIA = Wiitriis DTJA = Trojan DTKA = Tick Tock Tank Fight DTLA = TailTale DTLX01 = Action Replay DTMA = Tetrominos DTNA = Tunnel DTOA = Tong DTPA = Paintown DTRA = Trucha Bug Restorer DTSA = Desert Bus DTTA = Toddtris DTWA = Wiitweet DTXA = Texttris DU0A = Dumpmiinand DU7A = Uno DU8A = RealWnd DU9A = Harmonium DUAA = UAE Wii DUAP01 = DU Super Mario Bros. : Edición Aniversario DUBA = Multibu DUCE01 = Kustom Mariokart Wii DUDA = Duck Hunt DUDE01 = New Super Mario Bros. Wii Scooby-Doo! Hack DUGA = Guitar Fun DUIA = ChessUI DULA = USB Loader GX DUNA = Uname DUSA = bootOperaModUSB DUTG = DU Tag Channel DUWA = Waninkoko's USB Loader DV0A = Remove Preloader Hacks DV3A = DVD Browser DV9A = SensorMii DVDA = cIOS DVD Dumper DVGA = The Video Game DVHA = Horror Vacui DVIA = Vbagx Channel Installer DVJP08 = Viewtiful Joe (Promotional demo) DVLA = Vigiroth le livreur DVNA = Wiivnc DVOA = Vectoroids DVPA = Progressiveswitch DVSA = GameCube Saver DVXA = VectrexWii DW1A = Intuitwars DW5A = Marel DW6A = Wiicraft DW7A = Ravewild DWAA = WiiApple DWBA = WiirtualBoy DWCA = WiiFlow Channel Installer DWDA = Wiiflow Banner Downloader DWEA = WiiEarth DWEPA4 = Pro Evolution Soccer 2008 (Demo) DWFA = WiiFlow DWHA = WiiHandySDL DWJA = Jewel DWKA = Wiibreaker DWLA = Wii-Linux DWMA = WAD Manager DWNA = Nwancat DWPA = WiiPhysics DWRA = WiiRadio DWSA = WiiSX DWTA = Wiituka DWUA = Wufe DWWA = Winters End DWXA = WiiXplorer DX3A = Midway Space Invaders Emulator DX4A = Brawl DX Launcher DX5A = MP3+G Player DX6A = Build Blocks DX7A = Roxoptr2 DX8A = Hexen DX9A = Sand Traps DXBA = Wii X Ball DXCA = CorsixTH DXDA = DVDX DXEA = SDExplorer DXHA = Texas Holdem Poker DXIA = Piixelator DXLA = WiiXL DXNA = bootnetflix DXPA = Xeempongwii DXQA = Quadrax DXSA = Save extractor DXSE18 = Deca Sports (Demo) DXTA = The Lone Pixel DXXA = Hexxagon DXYA = xyzzy DXZA = Megazeux DY5A = Darkcorp Lite DY6A = Liqwiid Wars DY9A = TetWiis DYAA = Syasokoban DYBA = Yabause DYCA = Tetricycle DYEA = Epilepsii DYGA = Yog DYHA = Hypno Blast DYIA = Chippy DYMA = YAWMM DYOA = Toy Wars DYPA = PongYourWii DYSA = Shiny tank DYTA = Newo Tokyo DYUA = UFO Racer DYWA = Yahtzwii DYYA = System Setting Replace Tool DZ0A = Eject DZ7A = SameGame DZ8A = WiiMPC DZ9A = Teeter Torture DZDE01 = The Legend of Zelda: Twilight Princess (Demo) DZDP01 = The Legend of Zelda: Twilight Princess (Demo) DZIA = Ziip DZPA = Puzsion DZQA = Quizz DZRA = Rezerwar DZSA = Szigoy DZXA = FBZX Wii DZYA = Snake Two DZZA = OpenJazz E52E = 1942 E52J = 1942 E52P = 1942 E53E = Black Tiger E53J = Black Dragon E53P = Black Tiger E54E = Ghosts 'n Goblins E54J = Makaimura E54P = Ghost'n Goblins E55E = Commando E55J = Senji no Ookami E55P = Commando E56E = Exed Exes E56J = Exed Eyes E56P = Exed Exes E57E = SonSon E57J = Son Son E57P = SonSon E58J = Mr. Do! E59J = Karate Dou E5AJ = Ikki E5BJ = Shanghai E5VJ = Renegade E5WE = Wonder Boy in Monster Land E5WJ = Wonder Boy in Monster Land E5XJ = Puyo Puyo Tsu E5YJ = Puyo Puyo E5ZE = Super Hang-On E5ZJ = Super Hang-On E62E = Space Harrier E62J = Space Harrier E62P = Space Harrier E63E = Shinobi E63J = Shinobi Virtual Arcade E63P = Shinobi E64J = Rolling Thunder 2 E65J = Valkyrie no Densetsu E66J = Ordyne E67J = Dig Dug E68J = Galaga E69J = Baraduke E6AJ = Moon Cresta E6BJ = Crazy Climber E6CJ = Rompers E6DJ = Toy Pop E6EJ = Libble Rabble E6FJ = Galaxian E6GJ = Namco Quester E6HJ = Face Off E6IJ = Trink Force E6JJ = Bakutotsu Kijuutei: BaRaDuKe II E6KJ = Chouzetsu Rinjin - Berabow Man E6LJ = Marchen Maze E6ME = Tecmo Bowl E6MJ = Tecmo Bowl E6NE = Solomon's Key E6NJ = Solomon no Kagi E6NP = Solomon's Key E6OJ = Bomb Jack Arcade E6PE = Ninja Gaiden E6PJ = Ninja Ryukenden Arcade E6PP = Ninja Gaiden E6QE = Rygar E6QJ = Argos no Senshi E6QP = Rygar E6SJ = New Rally-X E6VE = Zaxxon E6VJ = Zaxxon E6VP = Zaxxon E6WE = Golden Axe E6WJ = Golden Axe E6WP = Golden Axe E6XE = Altered Beast E6XP = Altered Beast E6YJ = Space Invaders E6ZE = Starforce E6ZJ = Star Force E6ZP = Star Force E72J = Starblade E73E = Mappy E73J = Mappy E73P = Mappy E74J = Cosmo Gang the Puzzle E75J = Genpei Toumaden E76J = Emeraldia E77J = The Return of Ishtar E78J = Solvalou E79E = Gaplus E79J = Gaplus E79P = Gaplus E7AJ = Grobda E7BJ = Dig Dug II E7CJ = Bosconian E7EJ = Dragon Buster E7FJ = Dragon Saber E7GJ = Dragon Spirit E7HJ = Xevious E7IJ = Finest Hour E7JJ = Knuckle Heads E7KJ = Pac-Mania E7LJ = Cosmo Gang the Video E7MJ = Phelios E7NJ = Rolling Thunder E7OJ = Burning Force E7PJ = Marvel Land E7QJ = Galaga '88 E7RJ = Wonder Momo E7SJ = Assault E7TJ = Hopping Mappy E7UJ = Splatterhouse E7VJ = Cyber Sled E7WJ = Numan Athletics E7XJ = Youkai Douchuki E7YJ = Sky Kid E7ZE = The Tower of Druaga E7ZJ = Druaga no Tou E7ZP = The Tower of Druaga EA2E = Metal Slug 2 EA2J = Metal Slug 2 EA2P = Metal Slug 2 EA3J = Galaxy Fight: Universal Warriors EA4E = Samurai Showdown III EA4J = Samurai Spirits Kibeniro Musouken EA4P = Samurai Shodown III EA5E = Fatal Fury 3: Road to the Final Victory EA5J = Garou Densetsu 3: Road to the Final Victory EA5P = Fatal Fury 3 : Road To The Final Victory EA6E = The King of Fighters '96 EA6J = The King of Fighters '96 EA7E = Samurai Shodown IV: Amakusa's Revenge EA7J = Samurai Spirits: Amakusa Kourin EA8E = Ironclad EA8J = Ironclad: Chotetsu Brikinger EA8M = Iron Clad EA9J = Waku Waku 7 EAAE = Fatal Fury EAAJ = Garou Densetsu: Shukumei no Takatai EAAP = Fatal Fury EABE = World Heroes EABJ = World Heroes EABP = World Heroes EACE = Magician Lord EACJ = Magician Lord EACP = Magician Lord EADE = Art of Fighting EADJ = Ryuuko no Ken EADP = Art of Fighting EAEE = Samurai Showdown EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen EAEP = Samurai Showdown EAFE = Blue's Journey EAFJ = Raguy EAFP = Blue's Journey EAGE = The King of Fighters '94 EAGJ = The King of Fighters '94 EAGP = The King of Fighters '94 EAHE = Baseball Stars 2 EAHJ = Baseball Stars 2 EAHP = Baseball Stars 2 EAIE = Top Hunter EAIJ = Top Hunter EAIP = Top Hunter EAJE = Metal Slug EAJJ = Metal Slug EAJP = Metal Slug EAKE = Burning Fight EAKJ = Burning Fight EAKP = Burning Fight EALE = Art of Fighting 2 EALJ = Ryuuko no Ken 2 EALP = Art of Fighting 2 EAME = Ninja Combat EAMJ = Ninja Combat EAMP = Ninja Combat EANE = Fatal Fury 2 EANJ = Garou Densetsu 2: Aratanaru Tatakai EANP = Fatal Fury 2 EAOE = King of the Monsters EAOJ = King of the Monsters EAOP = King of the Monsters EAPE = Ninja Commando EAPJ = Ninja Commando EAPP = Ninja Commando EAQE = WORLD HEROES 2 EAQJ = World Heroes 2 EARE = Neo Turf Masters EARJ = Neo Turf Masters EARP = Neo Turf Masters EASE = Samurai Showdown 2 EASJ = Shin Samurai Spirits Haoumaru Jigokuhen EASP = Samurai Shodown II EATE = WORLD HEROES 2 JET EATJ = World Heroes 2 Jet EAUJ = Twinkle Star Sprites EAVE = The King of Fighters ’95 EAVJ = The King of Fighters '95 EAVP = The King of Fighters '95 EAWE = Fatal Fury Special EAWJ = Garou Densetsu Special EAWP = Fatal Fury Special EAYJ = King of The Monsters 2 EAZE = WORLD HEROES PERFECT EAZJ = World Heroes Perfect EB2E = REAL BOUT FATAL FURY SPECIAL EB2J = Real Bout Garou Densetsu Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB6E = Metal Slug 3 EB6J = Metal Slug 3 EB6P = Metal Slug 3 EB7J = The Super Spy EB8E = SHOCK TROOPERS EB8J = Shock Troopers EB9J = Pulstar EBAE = Magical Drop II EBAJ = Magical Drop 2 EBAP = Magical Drop II EBBE = Fighters History Dynamite EBBJ = Fighter's History Dynamite EBBP = Karnov's Revenge EBCJ = Flying Power Disc EBDE = Magical Drop III EBDJ = Magical Drop III EBDP = Magical Drop 3 EBEE = Street Slam EBEJ = Dunk Dream EBEP = Street Hoop EBFE = Spin Master EBFJ = Miracle Adventure EBFP = Spin master EBGE = The King of Fighters '97 EBGJ = The King of Fighters '97 EBKJ = Last Resort EBLJ = Tsuukai GanGan Koushinkyoku EBMJ = Fire Suplex EBNJ = Fu'un Mokushiroku: Kakutou Sousei EBOJ = Fu'un Super Tag Battle EBPJ = League Bowling EBQE = NINJA MASTER'S EBQJ = Ninja Master's Haou Ninpou-chou EBRJ = Joy Joy Kid EBSE = The Path of the Warrior: Art of Fighting 3 EBSJ = Art of Fighting: Ryuuko no Ken Gaiden EBTJ = Crossed Swords EBUE = 2020 SUPER BASEBALL EBUJ = Super Baseball 2020 EBVJ = Shin-Oh-Ken EBWE = SENGOKU EBWJ = Sengoku Denshou EBXE = SENGOKU 2 EBXJ = Sengoku 2 EBZE = REAL BOUT FATAL FURY EBZJ = Real Bout Garou Densetsu ECAE = Real Bout Fatal Fury 2: The Newcomers ECAJ = Real Bout Garou Densetsu 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECDJ = Stakes Winner: G1 Kanzen Seihahe no Michi ECEE = THE LAST BLADE 2 ECEJ = Bakumatsu Rouman Dai Ni Maku: Gekka no Kenshi ECFJ = Blazing Star ECGE = Shock Troopers: 2nd Squad ECGJ = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECJE = The King of Fighters '99 ECJJ = Metal Slug 4 ECKE = NAM-1975 ECKJ = NAM-1975 ECLJ = Stakes Winner 2 ECMJ = Tokuten Oh: Honoo no Libero ECNE = Sengoku 3 ECNJ = Sengoku Denshou 2001 ENDP01 = New SUPER MARIO BROS. Wii 20 The End For Now EVOP01 = New Super Mario Bros. Wii 0-5 Evolution FA2J = Exerion FA3J = Formation Z FA4J = Devil World FA4P = Devil World FA5J = Fire Emblem: Ankoku Ryu to Hikari no Tsurugi FA6E = Donkey Kong Jr. Math FA6J = Donkey Kong Jr. no Sansuu Asobi FA6P = Donkey Kong Jr. Math FA7E = Yoshi FA7J = Yoshi no Tamago FA7K = Yoshi FA7P = Mario & Yoshi FA8E = Kirby's Adventure FA8F = Kirby's Adventure FA8J = Hoshi no Kirby: Yume no Izumi no Monogatari FA8K = Kirby's Adventure FA8P = Kirby's Adventure FA9E = Zelda II: The Adventure of Link FA9J = The Legend of Zelda 2: Link no Bouken FA9P = Zelda II: The Adventure of Link FAAE = Donkey Kong FAAJ = Donkey Kong FAAK = Donkey Kong FAAP = Donkey Kong FABE = Donkey Kong Jr FABJ = Donkey Kong Jr. FABP = Donkey Kong Jr. FACE = Pinball FACJ = Pinball FACP = Pinball FADJ = Gomoku Narabe Renju FAFE = Mario Bros. FAFJ = Mario Bros. FAFK = Mario Bros. FAFP = Mario Bros. FAGE = Super Mario Bros. FAGJ = Super Mario Bros. FAGK = Super Mario Bros. FAGP = Super Mario Bros. FAHE = Tennis FAHJ = Tennis FAHP = Tennis FAIE = Soccer FAIJ = Soccer FAIP = Soccer FAJE = Ice Hockey FAJJ = Ice Hockey FAJP = Ice Hockey FAKE = The Legend of Zelda FAKJ = Zelda no Densetsu FAKK = The Legend of Zelda FAKP = The Legend of Zelda FALE = Baseball FALJ = Baseball FALP = Baseball FAME = Wario's Woods FAMJ = Wario no Mori FAMP = Wario's Woods FANE = Urban Champion FANJ = Urban Champion FANK = Urban Champion FANP = Urban Champion FAOE = Solomon's Key FAOJ = Solomon no Kagi FAOP = Solomon's Key FAPE = NES Open Tournament Golf FAPJ = Mario Open Golf FAPK = NES Open Tournament Golf FAPP = NES Open Tournament Golf FAQJ = Ninja Jajamaru-kun FAQL = Ninja JaJaMaru-kun FAQN = Ninja JaJaMaru-kun FARE = Gradius FARJ = Gradius FARP = Gradius FASE = Xevious FASJ = Xevious FASK = Xevious FASP = Xevious FATE = The Legend of Kage FATJ = Kage no Densetsu FAVE = Tecmo Bowl FAVJ = Tecmo Bowl FAWE = Elevator Action FAWJ = Elevator Action FAXE = Pac-Man FAXJ = Pac-Man FAXK = Pac-Man FAXP = Pac-Man FAYJ = Ikki FAZJ = Field Combat FAZK = Downtown Nekketsu Koushinkyoku: Soreyuke Daiundoukai FB2J = Super Mario Bros. 2 FB2L = Super Mario Bros.: The Lost Levels FB2N = Super Mario Bros.: The Lost Levels FB3J = Valkyrie no Bouken: Toki no Kagi Densetsu FB4E = Lunar Pool FB4J = Lunar Ball FB4P = Lunar Pool FB5E = Zanac FB5J = Zanac FB6J = Front Line FB7J = Nuts & Milk FB8J = Challenger FB9J = Pooyan FBAJ = Smash Ping Pong FBAL = Smash Table Tennis FBBE = Mach Rider FBBJ = Mach Rider FBBP = Mach Rider FBCE = Excitebike FBCJ = Excitebike FBCP = Excitebike FBDE = Kid Icarus FBDJ = Hikari Shinwa: Palutena no Kagami FBDK = Kid Icarus FBDP = Kid Icarus FBEE = Ice Climber FBEJ = Ice Climber FBEP = Ice Climber FBHE = Castlevania FBHJ = Akumajou Dracula FBHP = Castlevania FBIE = Punch Out!! Featuring Mr. Dream FBIJ = Punch-Out!! FBIP = Punch-Out!! FBJE = Mighty Bomb Jack FBJJ = Mighty Bomb Jack FBJP = Mighty Bomb Jack FBKE = Teenage Mutant Ninja Turtles FBKJ = Gekikame Ninja Den FBKP = Teenage Mutant Ninja Turles FBLE = Lode Runner FBLJ = Lode Runner FBLM = Lode Runner FBNE = Ninja Gaiden FBNJ = Ninja Ryuukenden FBNM = Ninja Gaiden FBOJ = Gradius II FBQJ = Druaga no Tou FBRE = Galaga FBRJ = Galaga FBRK = Galaga FBRP = Galaga FBSE = Milon's Secret Castle FBSJ = Meikyuu Kumikyoku: Milon no Daibouken FBSM = Milon's Secret Castle FBUE = Adventures of Lolo FBUJ = Adventures of Lolo FBUK = Adventures of Lolo FBUP = Adventures of Lolo FBVJ = Tsuppari Oozumou FBWJ = Joy Mech Fight FBWK = Joy Mech Fight FBXJ = Famicom Wars FBYE = Super Mario Bros. 2 FBYJ = Super Mario USA FBYK = Super Mario USA FBYP = Super Mario Bros. 2 FBZE = Metroid FBZJ = Metroid FBZP = Metroid FC2J = Hanjuku Hero FC3E = Bubble Bobble FC3J = Bubble Bobble FC3K = Bubble Bobble FC3P = Bubble Bobble FC4J = Chack'n Pop FC5J = Ganbare Goemon Karakuki Douchuu FC6E = StarTropics FC6J = Startropics FC6P = StarTropics FC7E = NES Play Action Football FC7J = NES Play Action Football FC8E = Castlevania II Simon's Quest FC8J = Dracula II: Noroi no Fuuin FC8P = Castlevania II: Simon's Quest FC9J = Metal Slader Glory FCAE = Star Soldier FCAJ = Star Soldier FCEJ = Esper Dream FCEU = FCE Ultra GX FCFJ = Yie Ar Kung Fu FCGJ = TwinBee FCHJ = Flappy FCIJ = Volguard 2 FCJJ = SD Gundam World: Gachapon Senshi 2 - Capsule Senki FCNJ = Kekkyoku Nankyoku Daibouken FCNK = Antarctic Adventure FCOJ = Battle City FCPE = Balloon Fight FCPJ = Balloon Fight FCPP = Balloon Fight FCQE = Ninja Gaiden II: The Dark Sword of Chaos FCQJ = Ninja Gaiden Two FCRE = Adventure Island FCRJ = Takahashi Meijin no Boukenjima FCRK = Hudson's Adventure Island FCRP = Adventure Island FCSE = Super C FCSJ = Super Contra FCSP = Probotector II: Return of the Evil Forces FCTE = Mega Man FCTJ = RockMan FCTP = Mega Man FCUE = Volleyball FCUJ = Volleyball FCUP = Volleyball FCVE = Wrecking Crew FCVJ = Wrecking Crew FCVP = Wrecking Crew FCWE = Super Mario Bros. 3 FCWJ = Super Mario Bros. 3 FCWK = Super Mario Bros. 3 FCWP = Super Mario Bros. 3 FCYE = Yoshi’s Cookie FCYJ = Yoshi no Cookie FCYK = Yoshi's Cookie FCYP = Yoshi’s Cookie FCZE = King's Knight FCZJ = Kings Knight FD2E = Double Dragon FD2J = Double Dragon FD2P = Double Dragon FD3J = Nekketsu Koukou Dodgeball-bu Soccer-hen FD3K = Nekketsu Koukou Dodgeball-bu Soccer-hen FD6E = Adventures of Lolo 2 FD6P = Adventures of Lolo 2 FD7E = Mega Man 3 FD7J = RockMan 3: Dr. Wily no Saigo?! FD7P = Mega Man 3 FDAE = Spelunker FDAJ = Spelunker FDAM = Spelunker FDBJ = Famicom Mukashi Banashi: Shin Onigashima - Kouhen FDCJ = Star Luster FDEJ = Mappy FDFE = Bases Loaded FDFJ = Moero!! Pro Yakyuu FDGE = Ghosts'n Goblins FDGJ = Makai-Mura FDGP = Ghosts'n Goblins FDIJ = Bokosuka Wars FDLE = Ninja Gaiden III: The Ancient Ship of Doom FDLJ = Ninja Gaiden Three FDNE = Mega Man 2 FDNJ = RockMan 2 FDNP = Mega Man 2 FDOE = Operation Wolf FDOJ = Operation Wolf FDOP = Operation Wolf FDPE = Blades of Steel FDPP = Blades of Steel FDQE = Double Dribble FDQP = Double Dribble FDRP = Skate or Die FDSJ = Famicom Tantei Club: Kieta Koukeisha (Kouhen) FDTE = Renegade FDTJ = Renegade FDUE = Super Dodge Ball FDUJ = Nekketsu Koukou Dodge Ball Bu FDVE = River City Ransom FDVJ = Downtown Nekketsu Monogatari FDVK = Downtown Nekketsu Monogatari FDVP = Street Gangs FDWJ = Downtown Special: Kunio-kun no Jidaigeki Dayo Zenin Shuugou! FDXJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo (Kouhen) FDYJ = Fire Emblem Gaiden FDZJ = Downtown Nekketsu Koushinkyoku FE5J = Toukaidou Gojuusan Tsugi FE6J = Ninja kun Majyou no Bouken FE7J = Ninja kun Ashura no Shou FE8J = Takeshi no Chousenjou FE9J = Ike Ike! Nekketsu Hockey-bu: Subette Koronde Dairantou FECE = Skykid FECJ = Sky Kid FEDJ = Dig Dug FEDL = Dig Dug FEDN = Dig Dug FEEJ = Tantei Jinguji Saburo: Shinjuku Chuo Koen Satsujin Jiken FEFJ = Detective Saburo Jinguji 2: Yokohama-Ko Renzoku Satsujin Jiken FEGJ = Tantei Jinguuji Saburo - Kikenna Futari - Zenkouhen FEHJ = Tantei Jinguuji Saburo: Toki no Sugiyuku Mama ni FEIE = City Connection FEIJ = City Connection FEIP = City Connection FEJJ = Nazo no Murasame Jou FELJ = Transformers: Convoy no Nazo FEMJ = Bio-Miracle Bokutte Upa FEML = Bio Miracle Bokutte UPA FEMN = Bio Miracle Bokutte UPA FENE = Life Force FENJ = Salamander FEOJ = Zoids: Mokushiroku FEPJ = Getsu Fuuma Den FEQE = Castlevania III: Dracula's Curse FEQJ = Akumajo Densetsu FEQP = Castlevania III Dracula's Curse FERE = Zoda’s Revenge: StarTropics II FERJ = Zoda's Revenge FERM = Startropics II: Zoda's Revenge FESE = Clu Clu Land FESJ = Clu Clu Land FESP = Clu Clu Land FEUE = Donkey Kong 3 FEUJ = Donkey Kong 3 FEUP = Donkey Kong 3 FEVJ = Atlantis no Nazo FEWJ = Dragon Buster FEXJ = Wagyan Land FF2J = Sugoro Quest: Dice no Senshi Tachi FF4E = BurgerTime FF4J = BurgerTime FF5E = Double Dragon II: The Revenge FF5J = Double Dragon 2: The Revenge FF6J = Ganbare Goemon 2 FF7J = Ganbare Goemon Gaiden: Kieta Ougon Kiseru FFAE = Final Fantasy FFAJ = Final Fantasy FFAM = Final Fantasy FFBJ = Final Fantasy II FFDE = Crash 'N The Boys Street Challenge FFDJ = Bikkuri Nekketsu Shin Kiroku! Harukanaru Kin Medal FFEE = A Boy and His Blob: Trouble on Blobolonia FFEP = A Boy and His Blob: Trouble on Blobolonia FFFJ = Final Fantasy III FFGJ = SD Gundam World: Gachapon Senshi - Scramble Wars FFJJ = Metal Max FFKJ = Championship Lode Runner FFLE = Princess Tomato in the Salad Kingdom FFLJ = Salad no Kuni no Tomato Hime FFME = Blaster Master FFMJ = Chou-Wakusei Senki MetaFight FFMP = Blaster Master FFNE = Mega Man 4 FFNJ = RockMan 4: Aratanaru Yabou!! FFNP = Mega Man 4 FFOJ = Moero TwinBee: Cinnamon Hakase o Sukue! FFPB = Ufouria: The Saga FFPJ = Furu Furu Park FFQE = Shadow of the Ninja FFQM = Shadow of the Ninja FFRE = Faxanadu FFRJ = Faxanadu FFRP = Faxanadu FFTJ = Binary Land FFUE = Adventure Island 2 FFUJ = Takahashi Meijin no Bouken Jima II FFUP = Adventure Island 2 FFVE = S.C.A.T. FFVP = S.C.A.T.: Special Cybernetic Attack Team FFWP = Donkey Kong: Original Edition FFXJ = 25th Anniversary SUPER MARIO BROS. FFXP = Super Mario Brothers: 25th Anniversary Exclusive FFYE = Mega Man 5 FFYJ = RockMan 5: Blues no Wana!? FFZJ = Seicross FFZY = Contra FJOR = Kung Fu FMCA = The Goonies G01E01 = Super Smash Bros. Melee: SD Remix G01J01 = Super Smash Bros. Melee: SD Remix G01P01 = Super Smash Bros. Melee: SD Remix G02E01 = Super Smash Bros. Melee: 20XX Training Pack G02J01 = Super Smash Bros. Melee: 20XX Training Pack G02P01 = Super Smash Bros. Melee: 20XX Training Pack G2BE5G = Black & Bruised G2BP7D = Black & Bruised G2CD52 = True Crime: New York City G2CE52 = True Crime: New York City G2CP52 = True Crime: New York City G2CX52 = True Crime: New York City G2FD78 = Tak 2: The Staff of Dreams G2FE78 = Tak 2: The Staff of Dreams G2FF78 = Tak 2: The Staff of Dreams G2FP78 = Tak 2: The Staff of Dreams G2GJB2 = Mobile Suit Gundam: Gundam vs. Z Gundam G2KE8P = NHL 2K3 G2KP8P = NHL 2K3 G2ME01 = Metroid Prime 2: Echoes G2MEAB = Metroid Prime 3 (E3 Beta) G2MJ01 = Metroid Prime 2: Dark Echoes G2MP01 = Metroid Prime 2: Echoes G2OE41 = Prince of Persia: Warrior Within G2OP41 = Prince of Persia: Warrior Within G2PE6U = Spirits And Spells G2RE52 = Shrek SuperSlam G2SJGE = Shikigami no Shiro II G2TE52 = Tony Hawk's Underground 2 G2TP52 = Tony Hawk's Underground 2 G2VE08 = Viewtiful Joe 2 G2VJ08 = Viewtiful Joe 2: Blackfilm no Nazo G2VP08 = Viewtiful Joe 2 G2XE8P = Sonic Gems Collection G2XP8P = Sonic Gems Collection G3AD69 = Lord of the Rings: The Third Age G3AE69 = Lord of the Rings: The Third Age G3AF69 = Lord of the Rings: The Third Age G3AP69 = Lord of the Rings: The Third Age G3AS69 = El Señor de los Anillos: La Tercera Edad G3BE9G = Serious Sam: Next Encounter G3BP54 = Serious Sam: Next Encounter G3BP9G = Serious Sam: Next Encounter G3DE6L = Carmen Sandiego: The Secret of the Stolen Drums G3DP6L = Carmen Sandiego: The Secret of the Stolen Drums G3DX6L = Carmen Sandiego: El secreto de los tambores robados G3EE51 = XGIII: Extreme G Racing G3EJ51 = XGIII: Extreme G Racing G3EP51 = XGIII: Extreme G Racing G3FD69 = TimeSplitters: Future Perfect G3FE69 = TimeSplitters: Future Perfect G3FF69 = TimeSplitters: Future Perfect G3FP69 = TimeSplitters: Future Perfect G3FS69 = TimeSplitters: Future Perfect G3JEAF = Curious George G3LE8P = Super Monkey Ball Adventure G3LP8P = Super Monkey Ball Adventure G3ME41 = Tom Clancy's The Sum of All Fears G3MP41 = The Sum of All Fears G3NJDA = NARUTO Gekitô Ninja Taisen! 3 G3QEA4 = Teenage Mutant Ninja Turtles 3: Mutant Nightmare G3RD52 = Shrek 2 G3RE52 = Shrek 2 G3RF52 = Shrek 2 G3RP52 = Shrek 2 G3SE41 = Bust-A-Move 3000 G3TJ8P = Derby Tsuku 3: Derby Uma O Tsukurou! G3VE69 = NBA Street Vol.3 G3VP69 = NBA Street Vol.3 G3XE52 = X-Men: The Official Game G3XP52 = X-Men: The Official Game G3YP52 = Shrek Super Slam G3YX52 = Shrek Super Slam G3YY52 = Shrek Super Slam G4AEE9 = Harvest Moon: Magical Melody G4BE08 = Resident Evil 4 G4BJ08 = Biohazard 4 G4BP08 = Resident Evil 4 G4CE54 = Charlie and the Chocolate Factory G4CP54 = Charlie and the Chocolate Factory G4FD69 = FIFA 07 G4FE69 = FIFA Soccer 07 G4FF69 = FIFA 07 G4FP69 = FIFA 07 G4GEE9 = Harvest Moon: Another Wonderful Life G4IE52 = Shrek Smash n' Crash Racing G4IP52 = Shrek Smash n' Crash Racing G4ME69 = The Sims Bustin' Out G4MP69 = Los Sims: Toman La Calle G4NJDA = NARUTO Gekitô Ninja Taisen! 4 G4OE69 = The Sims 2 : Pets G4OP69 = The Sims 2 : Pets G4QE01 = Super Mario Strikers G4QJ01 = Super Mario Strikers G4QP01 = Mario Smash Football G4SE01 = The Legend of Zelda: Four Swords Adventures G4SJ01 = The Legend of Zelda: Four Swords + G4SP01 = The Legend of Zelda: Four Swords Adventures G4ZE69 = The Sims 2 G4ZP69 = The Sims 2 G5BE4Z = Strike Force Bowling G5DE78 = Scooby-Doo! - Unmasked G5DP78 = Scooby-Doo! - Unmasked G5NEAF = Namco Museum 50th Anniversary G5NP69 = Namco Museum 50th Anniversary G5SE7D = Spyro: A Hero's Tail G5SP7D = Spyro: A Hero's Tail G5TE69 = Tiger Woods PGA Tour 2005 G5TP69 = Tiger Woods PGA Tour 2005 G62E54 = Major League Baseball 2k6 G63E41 = Tom Clancy's Rainbow Six 3 G63P41 = Tom Clancy's Rainbow Six 3 G6FD69 = 2006 FIFA World Cup G6FE69 = 2006 FIFA World Cup G6FF69 = 2006 FIFA World Cup G6FP69 = 2006 FIFA World Cup G6ME69 = Madden NFL 06 G6MP69 = Madden NFL 06 G6NE69 = NBA Live 06 G6NP69 = NBA Live 06 G6QE08 = Mega Man Anniversary Collection G6SE7D = The Legend of Spyro: A New Beginning G6SP7D = The Legend of Spyro: A New Beginning G6TE5G = Teen Titans G6TP5G = Teen Titans G6TP78 = Teen Titans G6WE69 = Tiger Woods PGA Tour 06 G6WP69 = Tiger Woods PGA Tour 06 G7ME69 = Madden NFL 07 G89EAF = Pac-Man World Rally G8FE8P = Virtua Quest G8ME01 = Paper Mario: The Thousand-Year Door G8MJ01 = Paper Mario RPG G8MP01 = Paper Mario: La Puerta Milenaria G8OJ18 = Bobobo-bo Bo-bobo Dassutsu! Hajike Royale G8SJAF = Battle Stadium D.O.N G8WE01 = Battalion Wars G8WP01 = Battalion Wars G94E01 = Interactive Multi-Game Demo Disc - August 2002 G95E01 = Interactive Multi-Game Demo Disc - July 2002 G96E01 = Interactive Multi-Game Demo Disc - June 2002 G97E01 = Interactive Multi-Game Demo Disc - March 2002 G97P01 = Interactive Multi Game Demo Disc - September 2002 G97U01 = Interactive Multi-Game Demo Disc - September 2002 G98E01 = Interactive Multi-Game Demo Disc - January 2002 G98P01 = Interactive Multi Game Demo Disc May 2002 G99E01 = Interactive Multi-Game Demo Disc - October 2001 G99P01 = Interactive Multi Game Demo Disc March 2002 G9BEE9 = Mark Davis Pro Bass Challenge G9RD7D = Crash Tag Team Racing G9RE7D = Crash Tag Team Racing G9RF7D = Crash Tag Team Racing G9RP7D = Crash Tag Team Racing G9SE8P = Sonic Heroes G9SJ8P = Sonic Heroes G9SP8P = Sonic Heroes G9TD52 = Shark Tale G9TE52 = Shark Tale G9TF52 = Shark Tale G9TI52 = Shark Tale G9TJC0 = Shark Tale G9TP52 = El Espantatiburones GA2E51 = All-Star Baseball 2002 GA3E51 = All-Star Baseball 2003 GA4E51 = All-Star Baseball 2004 GA7E70 = Backyard Sports Baseball 2007 GAAJ08 = Disney's Mickey & Minnie Trick & Chase GABEAF = Zatch Bell! Mamodo Fury GACE5H = Army Men: Air Combat The Elite Missions GAEJ01 = Doubutu no Mori e+ GAFE01 = Animal Crossing GAFJ01 = Animal Forest + GAFP01 = Animal Crossing GAFU01 = Animal Crossing GAGP70 = Asterix & Obelix XXL GAHEGG = Alien Hominid GAKE5D = Midway Arcade Treasures GALE01 = Super Smash Bros. Melee GALJ01 = Dairantou Smash Brothers DX GALP01 = Super Smash Bros. Melee GAME5H = Army Men Sarges War GANE7U = Animaniacs: The Great Edgar Hunt GANP7U = Animaniacs: The Great Edgar Hunt GAPE52 = American Chopper 2 - Full Throttle GAQE6S = Aquaman: Battle of Atlantis GARE5H = Army Men: RTS GASE8P = Sonic Adventure DX: Director's Cut (Review Prototype) GASJ8P = Sonic Adventure DX GATE51 = ATV Quad Power Racing 2 GATP51 = ATV Quad Power Racing 2 GAUE08 = Auto Modellista GAUJ08 = Auto Modellista: U.S.-tuned GAVE78 = Avatar The Last Airbender GAVP78 = Avatar: The Legend of Aang GAVY78 = Avatar: The Legend of Aang GAXE5D = The Ant Bully GAYE5D = Midway Arcade Treasures 2 GAZD69 = Harry Potter and the Prisoner of Azkaban GAZE69 = Harry Potter and the Prisoner of Azkaban GAZF69 = Harry Potter and the Prisoner of Azkaban GAZH69 = Harry Potter and the Prisoner of Azkaban GAZI69 = Harry Potter and the Prisoner of Azkaban GAZJ69 = Harry Potter to Azkaban no Shuujin GAZM69 = Harry Potter and the Prisoner of Azkaban GAZP69 = Harry Potter and the Prisoner of Azkaban GAZS69 = Harry Potter y el prisionero de Azkaban GB2J18 = Bomberman Land 2 GB3E51 = BMX XXX GB3P51 = BMX XXX GB4E51 = Burnout 2: Point of Impact GB4P51 = Burnout 2: Point of Impact GBAE8P = NBA 2K2 GBDE5G = BloodRayne GBDP7D = BloodRayne GBDS7D = BloodRayne GBFE70 = Backyard Football GBGE5G = Bomberman Generation GBGP7D = Bomberman Generation GBHDC8 = Mystic Heroes GBHEC8 = Mystic Heroes GBHFC8 = Mystic Heroes GBHJC8 = Battle Houshin GBHPC8 = Mystic Heroes GBIE08 = Resident Evil GBIJ08 = Biohazard GBIP08 = Resident Evil GBKE70 = Backyard Baseball GBLE52 = Bloody Roar: Primal Fury GBLP52 = Bloody Roar: Primal Fury GBME7F = Batman: Dark Tomorrow GBMP7F = Batman: Dark Tomorrow GBNJC0 = Warrior Blade: Rastan vs. Barbarian GBOE51 = Burnout GBOP51 = Burnout GBQE78 = Rocket Power: Beach Bandits GBQP78 = Rocket Power: Beach Bandits GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTP70 = Beyblade VForce - Super Tournament Battle GBVE41 = Batman: Vengeance GBVP41 = Batman Vengeance GBWD64 = Star Wars Bounty Hunter GBWE64 = Star Wars Bounty Hunter GBWF64 = Star Wars Bounty Hunter GBWP64 = Star Wars Bounty Hunter GBWS64 = Star Wars Bounty Hunter GBXE51 = Dave Mirra Freestyle BMX 2 GBXP51 = Dave Mirra Freestyle BMX 2 GBYE0A = Super Bubble Pop GBZE08 = Resident Evil Zero GBZJ08 = Resident Evil Zero GBZP08 = Resident Evil Zero GC2E9G = Conflict: Desert Storm II: Back to Baghdad GC2P75 = Conflict: Desert Storm II: Back to Baghdad GC3D78 = Scooby-Doo!: Mystery Mayhem GC3E78 = Scooby-Doo!: Mystery Mayhem GC3F78 = Scooby-Doo!: Mystery Mayhem GC3P78 = Scooby-Doo!: Mystery Mayhem GC4JBN = Shinseiki GPX Cyber Formula Road To The EVOLUTION GC5PNK = Cocoto: Kart Racer GC6E01 = Pokémon Colosseum GC6J01 = Pokémon Colosseum GC6P01 = Pokémon Colosseum GC7PNK = Cocoto Platform Jumper GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBP7D = Crash Bandicoot: La Venganza de Cortex GCCE01 = Final Fantasy Crystal Chronicles GCCJ01 = Final Fantasy Crystal Chronicles GCCJGC = Final Fantasy Crystal Chronicles GCCP01 = Final Fantasy Crystal Chronicles GCDE08 = Resident Evil Code: Veronica X GCDJ08 = Biohazard: Code Veronica GCDP08 = Resident Evil Code Veronica X GCEE41 = Tom Clancy's Splinter Cell GCEP41 = Tom Clancy's Splinter Cell GCFE9G = Conflict: Desert Storm GCFP75 = Conflict: Desert Storm GCGE41 = Charlie's Angels GCGP41 = Charlie's Angels GCHE78 = WWE Crush Hour GCHP78 = WWE Crush Hour GCIE69 = The Sims GCIP69 = Los Sims GCJE41 = Tom Clancy's Splinter Cell: Chaos Theory GCJP41 = Tom Clancy's Splinter Cell: Chaos Theory GCLE69 = Cel Damage GCLP69 = Cel Damage GCMJA4 = Muscle Champion ~Battle of Muscle Island~ GCNE7D = Crash Nitro Kart GCNP7D = Crash Nitro Kart GCOD52 = Call of Duty: Finest Hour GCOE52 = Call of Duty: Finest Hour GCOF52 = Call of Duty: Finest Hour GCOP52 = Call of Duty: Finest Hour GCPE6S = Casper: Spirit Dimensions GCPP6S = Casper: Spirit Dimensions GCQD7D = Buffy The Vampire Slayer Chaos Bleeds GCQE7D = Buffy the Vampire Slayer: Chaos Bleeds GCQF7D = Buffy The Vampire Slayer Chaos Bleeds GCQP7D = Buffy The Vampire Slayer Chaos Bleeds GCSEAF = Street Racing Syndicate GCSPAF = Street Racing Syndicate GCTE51 = Crazy Taxi GCTP51 = Crazy Taxi GCUE69 = NCAA Football 2005 GCVEEB = Cubivore: Survival of the Fittest GCWP6X = Castleween GCZE69 = Catwoman GCZP69 = Catwoman GD4E6S = Dinotopia - The Sunstone Odyssey GD5JB2 = Dragon Drive: D-Masters Shot GD6EB2 = Digimon Rumble Arena 2 GD6P70 = Digimon Rumble Arena 2 GD7E70 = Dragon Ball Z - Budokai GD7JB2 = Dragon Ball Z - Budokai GD7P70 = Dragon Ball Z - Budokai GD7PB2 = Dragon Ball Z Budokai GD9E69 = Drome Racers GD9P69 = Drome Racers GDAJE5 = Doraemon Minna De Asobou! GDBJ01 = Doubutsu Bancho GDCE51 = Speed Kings GDCP51 = Speed Kings GDDE41 = Disney's Donald Duck: Goin' Quackers GDDP41 = Disney Pato Donald Cu@c Att@k?*! GDED71 = Baldur's Gate Dark Alliance GDEE71 = Baldur's Gate: Dark Alliance GDEF71 = Baldur's Gate: Dark Alliance GDEP71 = Baldur's Gate Dark Alliance GDFE5D = Defender GDFP5D = Defender: For All Mankind GDGE7H = Dragon's Lair 3D: Return to the Lair GDGP78 = Dragon's Lair 3D Special Edition GDIE7D = Die Hard: Vendetta GDIP7D = Die Hard: Vendetta GDIX7D = Die Hard: Vendetta GDIY7D = Die Hard: Vendetta GDJEB2 = Digimon World 4 GDJJB2 = Digimon World X GDKEA4 = Disney Sports Soccer GDKPA4 = Disney Sports: Football GDLEA4 = Disney Sports Basketball GDLPA4 = Disney Sports: Basketball GDME01 = Disney's Magical Mirror Starring Mickey Mouse GDMJ01 = Disney's Mickey Mouse no Fushigi na Kagami GDMP01 = Disney's Magical Mirror Starring Mickey Mouse GDNJE8 = Dokapon DX GDOP41 = Disney's Donald Duck PK GDPJAF = Mr. Driller: Drill Land GDQE7L = Darkened Skye GDQP6S = Darkened Skye GDREAF = Dead to Rights GDRP69 = Dead to Rights GDRPAF = Dead to Rights GDSE78 = Dark Summit GDSP78 = Dark Summit GDTE69 = Def Jam Vendetta GDTP69 = Def Jam Vendetta GDUJA7 = Duel Masters Nettou Battle GDVE6L = Driven GDVP6L = Driven GDWEA4 = Disney Sports Football GDXEA4 = Disney Sports Skateboarding GDXJA4 = Disney Sports Skateboarding GDXPA4 = Disney Sports Skateboarding GE3E5D = Midway Arcade Treasures 3 GE4E7D = 4x4 Evo 2 GE5EA4 = TMNT: Mutant Melee GE6JA4 = Eisei Meijin VI GE9E5D = Ed, Edd n Eddy: The Mis-Edventures GEAE8P = Skies of Arcadia Legends GEAJ8P = Eternal Arcadia Legends GEAP8P = Skies of Arcadia Legends GEBEA4 = Evolution Snowboarding GEBPA4 = Evolution Snowboarding GEDE01 = Eternal Darkness: Sanity's Requiem GEDJ01 = Eternal Darkness: Manekareta 13-nin GEDP01 = Eternal Darkness: Sanity's Requiem GEJJCM = Jikkyou Powerful Pro Yakyuu 11 Chou Ketteiban GEME7F = Egg Mania: Eggstreme Madness GEMP7F = Eggo Mania GEND69 = James Bond 007: Everything Or Nothing GENE69 = James Bond 007: Everything Or Nothing GENF69 = James Bond 007: Everything Or Nothing GENP69 = 007: Everything Or Nothing GENS69 = 007: Todo o Nada GEOE08 = Capcom vs. SNK 2 EO GEOP08 = Capcom Vs. SNK2 EO: Millionaire Fighting 2001 GESEA4 = Evolution Skateboarding GESPA4 = Evolution Skateboarding GEVJ0M = Shinki Sekai Evolutia GEWE41 = Evolution Worlds GEWP41 = Evolution Worlds GEXE52 = Disney's Extreme Skate Adventure GEXP52 = Disney Extreme Skate Adventure GEXX52 = Disney's Extreme Skate Adventure GEXY52 = Disney Extreme Skate Adventure GEYE69 = Fight Night Round 2 GEYJ69 = Fight Night Round 2 GEYP69 = Fight Night Round 2 GEZE8P = Billy Hatcher and the Giant Egg GEZP8P = Billy Hatcher and the Giant Egg GF2E69 = F1 2002 GF2P69 = F1 2002 GF3E8P = NFL 2K3 GF3P8P = NFL 2K3 GF4E52 = Fantastic 4 GF4F52 = Fantastic Four GF4P52 = Fantastic 4 GF5D69 = FIFA Football 2005 GF5E69 = FIFA Soccer 2005 GF5F69 = FIFA Football 2005 GF5H69 = FIFA Football 2005 GF5I69 = FIFA Football 2005 GF5P69 = FIFA Football 2005 GF5S69 = FIFA Football 2005 GF6D69 = FIFA 06 GF6E69 = FIFA Soccer 06 GF6F69 = FIFA 06 GF6H69 = FIFA 06 GF6P69 = FIFA 06 GF6S69 = FIFA 06 GF7E01 = Star Fox: Assault GF7P01 = Star Fox Assault GF8E69 = FIFA Street GF8P69 = FIFA Street GFAD69 = FIFA Soccer 2003 GFAE69 = FIFA Soccer 2003 GFAF69 = FIFA Soccer 2003 GFAI69 = FIFA Football 2003 GFAJ69 = FIFA Soccer 2003 GFAP69 = FIFA Football 2003 GFAS69 = FIFA Football 2003 GFBE5D = FireBlade GFBP5D = Fireblade GFCP69 = F1 Career Challenge GFDD69 = Freedom Fighters GFDE69 = Freedom Fighters GFDF69 = Freedom Fighters GFDP69 = Freedom Fighters GFEE01 = Fire Emblem: Path of Radiance GFEJ01 = Fire Emblem: Souen no Kiseki GFEP01 = Fire Emblem: Path of Radiance GFFE5D = Freaky Flyers GFGEA4 = Frogger Beyond GFGPA4 = Frogger Beyond GFHP6V = Neighbours From Hell GFIE69 = 2002 FIFA World Cup GFKE69 = Freekstyle GFKP69 = Freekstyle GFMJAF = Family Stadium 2003 GFNJG2 = Finding Nemo GFOE78 = The Fairly OddParents - Shadow Showdown GFPEA4 = Frogger: Ancient Shadow GFQEA4 = Frogger's Adventures: The Rescue GFSD69 = 2002 FIFA World Cup GFSE69 = FIFA Soccer 2002 GFSF69 = 2002 FIFA World Cup GFSJ69 = FIFA Soccer 2002 GFSP69 = 2002 FIFA World Cup GFTE01 = Mario Golf: Toadstool Tour GFTJ01 = Mario Golf: Family Tour GFTP01 = Mario Golf: Toadstool Tour GFUE4Z = Future Tactics: The Uprising GFUP6V = Future Tactics: The Uprising GFVE5D = NFL Blitz Pro GFWE78 = The Fairly OddParents: Breakin' Da Rules GFXE5D = Freestyle Metal X GFYE69 = FIFA Street 2 GFYP69 = FIFA Street 2 GFZE01 = F-Zero GX GFZJ01 = F-Zero GX GFZJ8P = F-Zero AX GFZP01 = F-Zero GX GG1J08 = Donkey Kong: Jungle Fever GG2E4Z = Trigger Man GG3J08 = Donkey Kong: Banana Kingdom GG4E08 = Gotcha Force GG4P08 = Gotcha Force GG5E52 = Cabela's Big Game Hunter 2005 GGAJB2 = Mobile Suit Gundam: The Ace Pilot GGCE0A = Goblin Commander: Unleash The Horde GGCP0A = Goblin Commander: Unleash the Horde GGEE41 = Beyond Good & Evil GGEP41 = Beyond Good And Evil GGEX41 = Beyond Good And Evil GGEY41 = Beyond Good And Evil GGFJ01 = GiFTPiA GGNE5D = The Grim Adventures of Billy and Mandy GGPE01 = Mario Kart Arcade GP GGPE02 = Mario Kart Arcade GP 2 GGPJ02 = Mario Kart Arcade GP 2 GGPJAF = SD Gundam Gashapon Wars GGPJB2 = SD Gundam Gashapon Wars GGRD41 = Tom Clancy's Ghost Recon GGRE41 = Tom Clancy's Ghost Recon GGRP41 = Tom Clancy's Ghost Recon GGSEA4 = Metal Gear Solid: The Twin Snakes GGSJA4 = Metal Gear Solid: The Twin Snakes GGSPA4 = Metal Gear Solid: The Twin Snakes GGTE01 = Chibi-Robo! GGTJ01 = Chibi-Robo! GGTP01 = Chibi-Robo! GGVD78 = Spongebob Squarepants : The Movie GGVE78 = SpongeBob SquarePants: The Movie GGVP78 = Spongebob Squarepants: The Movie GGVX78 = Spongebob Squarepants : The Movie GGYE41 = Tom Clancy's Ghost Recon 2 GGYP41 = Tom Clancy's Ghost Recon 2 GGZE52 = Madagascar GGZH52 = Madagascar GGZI52 = Madagascar GGZJB2 = Madagascar GGZP52 = Madagascar GGZS52 = Madagascar GGZX52 = Madagascar GH2E69 = Need for Speed: Hot Pursuit 2 GH2P69 = Need For Speed Hot Pursuit 2 GH3E69 = NHL 2003 GH3P69 = NHL 2003 GH4D69 = Harry Potter and the Goblet of Fire GH4E69 = Harry Potter and the Goblet of Fire GH4F69 = Harry Potter and the Goblet of Fire GH4H69 = Harry Potter and the Goblet of Fire GH4I69 = Harry Potter and the Goblet of Fire GH4J69 = Harry Potter to Honoo no Goblet GH4M69 = Harry Potter and the Goblet of Fire GH4P69 = Harry Potter and the Goblet of Fire GH4S69 = Harry Potter y el Cáliz de Fuego GH5D52 = Over The Hedge GH5E52 = Over The Hedge GH5F52 = Over The Hedge GH5P52 = Over The Hedge GH6EAF = Hello Kitty: Roller Rescue GH6P7N = Hello Kitty: Roller Rescue GH7E5D = Happy Feet GH9P52 = Tony Hawk's American Wasteland GHAE08 = Resident Evil 2 GHAJ08 = Biohazard 2 GHAP08 = Resident Evil 2 GHBE7D = The Hobbit GHBP7D = El Hobbit GHCD4Q = Chicken Little GHCE4Q = Chicken Little GHCF4Q = Chicken Little GHCJG9 = Chicken Little GHCP4Q = Chicken Little GHEJ91 = Homeland GHFE4Z = Pinball Hall Of Fame: The Gottlieb Collection GHGEEB = Go! Go! Hypergrind GHKD7D = Hulk GHKE7D = Hulk GHKF7D = Hulk GHKP7D = Hulk GHKS7D = Hulk GHLE69 = Harry Potter and the Sorcerer's Stone GHLJ69 = Harry Potter to Kenja no Ishi GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Sorcerer's Stone GHLY69 = Harry Potter and the Sorcerer's Stone GHLZ69 = Harry Potter y la Piedra Filosofal GHMD4F = Hitman 2: Silent Assassin GHME4F = Hitman 2: Silent Assassin GHMF4F = Hitman 2: Silent Assassin GHMP4F = Hitman 2: Silent Assassin GHNE71 = Hunter: The Reckoning GHNX71 = Hunter: The Reckoning GHPE52 = Street Hoops GHQE7D = The Simpsons: Hit & Run GHQP7D = The Simpsons: Hit & Run GHRE78 = Hot Wheels: World Race GHRP78 = Hot Wheels: World Race GHSE69 = Harry Potter and the Chamber of Secrets GHSJ69 = Harry Potter to Himitsu no Heya GHSP69 = Harry Potter and the Chamber of Secrets GHSX69 = Harry Potter y la Cámara Secreta GHSY69 = Harry Potter and the Chamber of Secrets GHTJA4 = Hikaru No Go 3 GHUE7D = The Incredible Hulk: Ultimate Destruction GHUF7D = The Incredible Hulk Ultimate Destruction GHUP7D = The Incredible Hulk Ultimate Destruction GHVE08 = Disney's Hide & Sneak GHVP08 = Disney's Hide & Sneak GHWE78 = Hot Wheels: Velocity X GHWP78 = Hot Wheels: Velocity X GHYE6S = The Haunted Mansion GHZE5D = NHL Hitz Pro GI2J18 = Momotarou Dentetsu 12 GIAE7D = Ice Age 2: The Meltdown GIAP7D = Ice Age 2 : The Meltdown GIBE4F = The Italian Job GIBP4F = The Italian Job GICD78 = The Incredibles GICE78 = The Incredibles GICF78 = The Incredibles GICH78 = The Incredibles GICJG9 = Mr. Inkurediburu GICP78 = Los Increíbles GIFJDQ = Generation of Chaos Exceed GIGJ8P = Bleach GC: Tasogare Ni Mamieru Shinigami GIHD78 = Scooby-Doo! Night of 100 Frights GIHE78 = Scooby-Doo! Night of 100 Frights GIHP78 = Scooby-Doo! Night of 100 Frights GIIJ18 = Momotarou Dentetsu 11 GIJEFP = Space Raiders GIJJC0 = Space Raiders GIKE70 = Ikaruga GIKJ70 = Ikaruga GIKP70 = Ikaruga GILE51 = Aggressive Inline GILP51 = Aggressive Inline GINE69 = Batman Begins GINX69 = Batman Begins GIPEAF = Shonen Jump's One Piece: Pirates Carnival GIPJB2 = Shonen Jump's One Piece: Pirates Carnival GIQE78 = The Incredibles: Rise of the Underminer GIQJ8P = The Incredibles: Rise of the Underminer GIQP78 = Los Increíbles: La amenaza del Socavador gamecube GIQX78 = The Incredibles: Rise of the Underminer GIQY78 = The Incredibles: Rise of the Underminer GISE36 = Second Sight GISP36 = Second Sight GITE01 = Geist GITP01 = Geist GIVE4Z = Intellivision Lives GIZE52 = Ty the Tasmanian Tiger 3: Night of the Quinkan GJ2JCM = Jikkyou World Soccer 2002 GJ2PA4 = International Superstar Soccer 2 GJ3PA4 = International Superstar Soccer 3 GJBE18 = Bomberman Jetters GJBE5G = Bomberman Jetters GJBJ18 = Bomberman Jetters GJCE8P = Samurai Jack: The Shadow of Aku GJCP8P = Samurai Jack: The Shadow of Aku GJDE5S = Judge Dredd: Dredd vs. Death GJDX7D = Judge Dredd: Dredd vs. Death GJDY7D = Judge Dredd: Dredd vs. Death GJFE78 = Jimmy Neutron Jet Fusion GJFP78 = Jimmy Neutron Jet Fusion GJKD52 = Star Wars Jedi Knight II: Jedi Outcast GJKE52 = Star Wars Jedi Knight II: Jedi Outcast GJKF52 = Star Wars Jedi Knight II: Jedi Outcast GJKP52 = Star Wars Jedi Knight II: Jedi Outcast GJNE78 = Jimmy Neutron Boy Genius GJNP78 = Jimmy Neutron Boy Genius GJPJCM = Jikkyou Powerful Pro Yakyuu 11 GJSJ18 = Hudson Selection Vol. 2: Star Soldier GJUD78 = Tak and the Power of JuJu GJUE78 = Tak and the Power of Juju GJUF78 = Tak and the Power of JuJu GJUP78 = Tak and the Power of JuJu GJWE78 = Tak: The Great JuJu Challenge GJWP78 = Tak: The Great JuJu Challenge GJXE51 = Vexx GJXP51 = Vexx GJYE78 = Jimmy Neutron: Attack of the Twonkies GJYP78 = Jimmy Neutron Boy Genius: Attack of the Twonkies GJZE52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GJZP52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GK2D52 = Spider-Man 2 GK2E52 = Spider-Man 2 GK2F52 = Spider-Man 2 GK2P52 = Spider-Man 2 GK3E8P = NBA 2K3 GK3P8P = NBA 2K3 GK4E01 = Baten Kaitos Origins GK4J01 = Baten Kaitos II: Hajimari no Tsubasa to Kamigami no Shishi GK5E78 = Monster House GK5P78 = Monster House GK5X78 = Monster House GK6JA4 = Croket Banking No Kikiwosukue GK7E08 = Killer7 GK7J08 = Killer7 GK7P08 = Killer 7 GK9EA4 = Karaoke Revolution Party GKAE8P = Amazing Island GKAJ8P = Kaijuu no Shima: Amazing Island GKBEAF = Baten Kaitos Eternal Wings and the Lost Ocean GKBJAF = Baten Kaitos: Owaranai Tsubasa to Ushinawareta Umi GKBPAF = Baten Kaitos: Las alas eternas y el océano perdido GKDJ01 = Kyojin no Doshin GKDP01 = Doshin the Giant GKEJA4 = PAWAFURU PUROYAKYU 12 KETTEIBAN GKFEGG = Chaos Field GKFJ8P = Chaos Field Expanded GKGE01 = Donkey Konga GKGJ01 = Donkey Konga GKGP01 = Donkey Konga GKHEA4 = King Arthur GKHPA4 = King Arthur GKJD78 = Cars GKJE78 = Cars GKJF78 = Cars GKJH78 = Cars GKJJ78 = Cars GKJP78 = Cars GKJS78 = Cars GKKE69 = Knockout Kings 2003 GKKP69 = Knockout Kings 2003 GKLD69 = Lord of the Rings: The Return of the King GKLE69 = Lord of the Rings: The Return of the King GKLF69 = Lord of the Rings: The Return of the King GKLI69 = Lord of the Rings: The Return of the King GKLJ69 = The Lord of the Rings: The Return of the King GKLP69 = Lord of the Rings: The Return of the King GKLS69 = El Señor de los Anillos: El Retorno del Rey GKME41 = Prince of Persia: The Two Thrones GKMP41 = Prince of Persia: Las Dos Coronas GKNEB2 = Ultimate Muscle: Legends vs. New Generation GKNJB2 = Kinnikuman Nisei: Shinsedai Choujin vs Densetsu Choujin GKOE70 = Kao The Kangaroo Round 2 GKOP6V = Kao The Kangaroo Round 2 GKPJA4 = Jikkyou Powerful Pro Yakyuu 12 GKQJ01 = Kururin Squash! GKREB2 = Ribbit King GKRPB2 = Ribbit King GKSE52 = Kelly Slater's Pro Surfer GKSP52 = Kelly Slater's Pro Surfer GKSX52 = Kelly Slater's Pro Surfer GKTJA4 = Captain Tsubasa: Ougon Sedai no Chousen GKUE9G = Scaler GKWJ18 = DreamMix TV World Fighters GKXJE7 = Kiwame Mahjong DX2 GKYE01 = Kirby Air Ride GKYJ01 = Kirby Airride GKYP01 = Kirby Air Ride GKZD9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZE9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZF9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP54 = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GL2E51 = Legends of Wrestling 2 GL2P51 = Legends of Wrestling II GL3JE8 = Lupin The Third - Umi Ni Kieta Hihou GL5E4F = LEGO Star Wars: The Video Game GL5P4F = LEGO Star Wars: The Video Game GL5X4F = LEGO Star Wars: The Video Game GL7E64 = LEGO Star Wars II: The Original Trilogy GL7P64 = LEGO Star Wars II: The Original Trilogy GL8D4F = Lara Croft Tomb Raider: Legend GL8E4F = Lara Croft Tomb Raider: Legend GL8F4F = Lara Croft Tomb Raider: Legend GL8P4F = Lara Croft Tomb Raider: Legend GLBE8P = Home Run King GLCD52 = Lemony Snickets A Series Of Unfortunate Events GLCE52 = Lemony Snickets A Series Of Unfortunate Events GLCF52 = Lemony Snickets A Series Of Unfortunate Events GLCP52 = Una serie de Catastróficas Desdichas de Lemony Snicket GLCS52 = Una serie de Catastróficas Desdichas de Lemony Snicket GLEE08 = Resident Evil 3: Nemesis GLEJ08 = BioHazard 3: Last Escape GLEP08 = Resident Evil 3: Nemesis GLGP41 = Largo Winch : Empire Under Threat GLHEG9 = Flushed Away GLHPG9 = Ratónpolis GLIJA7 = Special Jinsei Game GLJJMS = Radirgy GLLE78 = Ratatouille GLLF78 = Ratatouille GLME01 = Luigi's Mansion GLMJ01 = Luigi's Mansion GLMP01 = Luigi's Mansion GLNE69 = Looney Tunes: Back in Action GLNP69 = Looney Tunes: De Nuevo En Accion GLOD69 = Lord of the Rings: The Two Towers GLOE69 = Lord of the Rings: The Two Towers GLOF69 = Lord of the Rings: The Two Towers GLOI69 = Lord of the Rings: The Two Towers GLOP69 = Lord of the Rings: The Two Towers GLOS69 = El Señor de los Anillos: Las Dos Torres GLQE41 = Tom Clancy's Rainbow Six: Lockdown GLQP41 = Tom Clancy's Rainbow Six: Lockdown GLRD64 = Star Wars Rogue Squadron III: Rebel Strike GLRE64 = Star Wars Rogue Squadron III: Rebel Strike GLRF64 = Star Wars Rogue Squadron III: Rebel Strike GLRJ13 = Star Wars Rogue Squadron III: Rebel Strike GLRP64 = Star Wars Rogue Squadron III: Rebel Strike GLSD64 = Gladius GLSE64 = Gladius GLSF64 = Gladius GLSP64 = Gladius GLUE7U = Lotus Challenge GLVD4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVE4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVF4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVP4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLWE51 = Legends of Wrestling GLWP51 = Legends of Wrestling GLXJ29 = Legend of Golfer GLYE69 = NBA Live 2005 GLYP69 = NBA Live 2005 GLZD69 = James Bond 007: From Russia With Love GLZE69 = 007: From Russia With Love GLZF69 = James Bond 007: From Russia With Love GLZP69 = James Bond 007: From Russia With Love GM2E8P = Super Monkey Ball 2 GM2J8P = Super Monkey Ball 2 GM2P8P = Super Monkey Ball 2 GM3E69 = Madden NFL 2003 GM3P69 = Madden NFL 2003 GM4E01 = Mario Kart: Double Dash!! GM4J01 = Mario Kart: Double Dash!! GM4P01 = Mario Kart: Double Dash!! GM5D7D = Metal Arms: Glitch in the System GM5E7D = Metal Arms: Glitch in the System GM5F7D = Metal Arms: Glitch in the System GM5P7D = Metal Arms: Glitch in the System GM6EE9 = Medabots Infinity GM6PE9 = Medabots Infinity GM8E01 = Metroid Prime GM8J01 = Metroid Prime GM8P01 = Metroid Prime GM9E6S = Muppets Party Cruise GMAE51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMAP51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMBE8P = Super Monkey Ball GMBJ8P = Super Monkey Ball GMBP8P = Super Monkey Ball GMDE69 = Madden NFL 2002 GMEE70 = Men In Black II: Alien Escape GMEP70 = Men In Black II: Alien Escape GMFD69 = Medal of Honor: Frontline GMFE69 = Medal of Honor: Frontline GMFF69 = Medal of Honor: Frontline GMFI69 = Medal of Honor: Frontline GMFP69 = Medal of Honor: Frontline GMFS69 = Medal of Honor: Frontline GMHE52 = Mat Hoffmans Pro Bmx 2 GMHF52 = Mat Hoffman's Pro BMX 2 GMHP52 = Mat Hoffman's Pro BMX 2 GMIE70 = Mission Impossible: Operation Surma GMIP70 = Mission Impossible: Operation Surma GMJE41 = Monster Jam: Maximum Destruction GMJP41 = Monster Jam: Maximum Destruction GMKD5D = Mortal Kombat: Deadly Alliance GMKE5D = Mortal Kombat: Deadly Alliance GMKP5D = Mortal Kombat: Deadly Alliance GMLEA4 = ESPN MLS Extra Time 2002 GMNE78 = Monsters, Inc. Scream Arena GMNP78 = Monsters, Inc. Scream Arena GMOP70 = Micro Machines GMPE01 = Mario Party 4 GMPJ01 = Mario Party 4 GMPP01 = Mario Party 4 GMQE70 = Monopoly Party GMQP70 = Monopoly Party GMRE70 = Big Air Freestyle GMRP70 = Big Air Freestyle GMSE01 = Super Mario Sunshine GMSJ01 = Super Mario Sunshine GMSP01 = Super Mario Sunshine GMTE69 = Disney's Party GMTP69 = Disney's Party GMUE5D = Dr. Muto GMWD52 = Minority Report: Everybody Runs GMWE52 = Minority Report: Everybody Runs GMWF52 = Minority Report: Everybody Runs GMWP52 = Minority Report: Everybody Runs GMXE70 = Enter The Matrix GMXJB2 = Enter The Matrix GMXP70 = Enter The Matrix GMYJ8P = Gekitou Pro Yakyuu GMZE41 = Monster 4x4: Masters Of Metal GN2E70 = Nascar: Dirt To Daytona GN3E5D = NHL Hitz 2003 GN3P5D = NHL Hitz 2003 GN4E69 = Nascar 2005: Chase For The Cup GN5E69 = NHL 2005 GN5P69 = NHL 2005 GN6E69 = NHL 06 GN6P69 = NHL 06 GN7E69 = NFL Street 2 GN7P69 = NFL Street 2 GN8E69 = NBA Live 2004 GN8P69 = NBA Live 2004 GN9E70 = Nickelodeon Party Blast GNAE8P = NCAA College Football 2K3 GNBE01 = NBA Courtside 2002 GNBP01 = NBA Courtside 2002 GNCE69 = Nascar Thunder 2003 GNDD69 = Need For Speed Underground GNDE69 = Need For Speed Underground GNDF69 = Need For Speed Underground GNDP69 = Need For Speed Underground GNED78 = Finding Nemo GNEE78 = Finding Nemo GNEF78 = Finding Nemo GNEP78 = Finding Nemo GNES78 = Buscando a Nemo GNFE5D = NFL Blitz 2002 GNGE69 = NCAA Football 2003 GNHE5D = NHL Hitz 2002 GNHP5D = NHL Hitz 20-02 GNIEA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNIPA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNJEAF = I-Ninja GNKE8P = NCAA College Basketball 2K3 GNLE69 = NBA Live 2003 GNLP69 = NBA Live 2003 GNMEAF = Namco Museum GNNE69 = NFL Street GNNP69 = NFL Street GNOE78 = Nicktoons Unite! GNOX78 = Spongebob Squarepants & Friends: Unite! GNPP70 = Nickelodeon Party Blast GNQE69 = Madden NFL 2005 GNQP69 = Madden NFL 2005 GNREDA = Naruto Clash of Ninja GNRJDA = NARUTO Gekitô Ninja Taisen! GNSE69 = NBA Street GNSJ69 = NBA Street GNUEDA = Naruto Clash of Ninja 2 GNUJDA = Naruto: Gekitou Ninja Taisen! 2 GNUPDA = Naruto: Clash of Ninja - European Version GNVE69 = NHL 2004 GNVP69 = NHL 2004 GNWE69 = Def Jam: Fight For NY GNWP69 = Def Jam: Fight For NY GNXE69 = NCAA Football 2004 GNZE69 = NBA Street Vol.2 GNZP69 = NBA Street Vol.2 GO2D4F = Blood Omen 2: The Legacy of Kain Series GO2E4F = Blood Omen 2: The Legacy of Kain Series GO2F4F = Blood Omen 2: The Legacy of Kain Series GO2P4F = Blood Omen 2: The Legacy of Kain Series GO3E5D = NFL Blitz 2003 GO7D69 = James Bond 007: NightFire GO7E69 = 007: NightFire GO7F69 = James Bond 007: NightFire GO7P69 = James Bond 007: NightFire GO7S69 = James Bond 007: NightFire GOAE52 = Cabela's Outdoor Adventures GOBE4Z = Bad Boys: Miami Takedown GOBP7N = Bad Boys II GOCE5D = RoadKill GODJGA = Ohenro-San: Hosshin no Dojo GOFE7L = Outlaw Golf GOFP6S = Outlaw Golf GOGJB2 = One Piece: Grand Battle! 3 GOME01 = Mario Power Tennis GOMJ01 = Mario Tennis GC GOMP01 = Mario Power Tennis GOND69 = Medal of Honor: European Assault GONE69 = Medal of Honor: European Assault GONF69 = Medal of Honor: European Assault GONJ13 = Medal of Honor: Europa Kyoushuu GONP69 = Medal of Honor: European Assault GOOE01 = Odama GOOJ01 = Odama GOOP01 = Odama GOPEB2 = Shonen Jump's One Piece: Grand Battle GOPJB2 = One Piece: Grand Battle! Rush GOQE82 = One Piece: Grand Adventure GOQEAF = Shonen Jump's One Piece: Grand Adventure GOSE41 = Open Season GOSP41 = Open Season GOSX41 = Open Season GOUPNK = Cocoto Funfair GOWD69 = Need For Speed Most Wanted GOWE69 = Need For Speed Most Wanted GOWF69 = Need For Speed Most Wanted GOWJ69 = Need For Speed Most Wanted GOWP69 = Need For Speed Most Wanted GOYD69 = GoldenEye: Rogue Agent GOYE69 = GoldenEye: Rogue Agent GOYF69 = GoldenEye: Rogue Agent GOYP69 = GoldenEye: Rogue Agent GOYS69 = GoldenEye : Agente Corrupto GP2EAF = Pac-Man World 2 GP2P69 = Pac-Man World 2 GP3E78 = The Polar Express GP3P78 = The Polar Express GP4J18 = Hudson Selection Vol. 3: Bonk's Adventure GP5E01 = Mario Party 5 GP5J01 = Mario Party 5 GP5P01 = Mario Party 5 GP6E01 = Mario Party 6 GP6J01 = Mario Party 6 GP6P01 = Mario Party 6 GP7E01 = Mario Party 7 GP7J01 = Mario Party 7 GP7P01 = Mario Party 7 GP8EAF = Pac-Man World 3 GP8P69 = Pac-Man World 3 GP8PAF = Pac-Man World 3 GP9E7F = Rogue Ops GP9P7F = Rogue Ops GPAE01 = Pokémon Channel GPAJ01 = Pokémon Channel GPAP01 = Pokémon Channel GPAU01 = Pokémon Channel GPDE51 = Dakar 2: The World's Ultimate Rally GPDP51 = Dakar 2: The World's Ultimate Rally GPEJ2Q = Pool Edge GPHD52 = Pitfall: The Lost Expedition GPHE52 = Pitfall: The Lost Expedition GPHF52 = Pitfall: The Lost Expedition GPHP52 = Pitfall: The Lost Expedition GPIE01 = Pikmin GPIJ01 = Pikmin GPIP01 = Pikmin GPJJCM = Jikkyou Powerful Pro Yakyuu 10 GPKE41 = Disney's PK Out of the Shadows GPLD9G = Piglet's Big Game GPLE9G = Piglet's Big Game GPLF9G = Piglet's Big Game GPLP9G = Piglet's Big Game GPMEAF = Pac Man Fever GPNE08 = P.N.03 GPNJ08 = P.N.03 GPNP08 = P.N.03 GPOE8P = Phantasy Star Online Episode I & II GPOJ8P = Phantasy Star Online Episode I & II GPOP8P = Phantasy Star Online Episode I&II GPPJCM = Jikkyou Powerful Pro Yakyuu 9 GPQE6L = The Powerpuff Girls: Relish Rampage GPQP6L = The Powerpuff Girls: Relish Rampage GPRE7U = Pool Paradise GPRP7U = Pool Paradise GPSE8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPSJ8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPSP8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPTE41 = Prince of Persia: The Sands of Time GPTP41 = Prince of Persia: The Sands of Time GPUE8P = Puyo Pop Fever GPUP6W = Puyo Pop Fever GPUP8P = Puyo Pop Fever GPVE01 = Pikmin 2 GPVJ01 = Pikmin 2 GPVP01 = Pikmin 2 GPWEAF = Spawn: Armageddon GPWP69 = Spawn: Armageddon GPWPAF = Spawn: Armageddon GPXE01 = Pokémon Box: Ruby & Sapphire GPXJ01 = Pokémon Box: Ruby & Sapphire GPXP01 = Pokémon Box: Rubí y Zafiro GPYJ8P = Puyo Pop Fever GPZJ01 = Nintendo Puzzle Collection GQ4E78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ4F78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ4P78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ8E69 = Madden NFL 08 GQBE51 = NFL Quarterback Club 2002 GQCD52 = Call of Duty 2: Big Red One GQCE52 = Call of Duty 2: Big Red One GQCF52 = Call of Duty 2: Big Red One GQCP52 = Call of Duty 2: Big Red One GQCS52 = Call of Duty 2: Big Red One GQFFFK = Franklin: A Birthday Surprise GQLE9G = Dora The Explorer: Journey To The Purple Planet GQLP54 = Dora The Explorer: Journey to the Purple Planet GQNE5D = Mortal Kombat: Deception GQPE78 = SpongeBob SquarePants: Battle for Bikini Bottom GQPP78 = SpongeBob Squarepants: Battle For Bikini Bottom GQQD78 = SpongeBob SquarePants: Lights, Camera, PANTS! GQQE78 = SpongeBob SquarePants: Lights, Camera, Pants! GQQF78 = SpongeBob SquarePants: Lights, Camera, PANTS! GQQH78 = SpongeBob SquarePants: Lights, Camera, Pants! GQQP78 = SpongeBob SquarePants: Lights, Camera, Pants! GQRJ18 = Hudson Selection Vol. 1: Cubic Lode Runner GQSDAF = Tales of Symphonia GQSEAF = Tales of Symphonia GQSFAF = Tales of Symphonia GQSIAF = Tales of Symphonia GQSPAF = Tales of Symphonia GQSSAF = Tales of Symphonia GQTE4Q = Meet the Robinsons GQWE69 = Harry Potter: Quidditch World Cup GQWJ69 = Harry Potter World Cup GQWP69 = Harry Potter: Quidditch World Cup GQWX69 = Harry Potter: Quidditch Copa del Mundo GQXE69 = Madden NFL 2004 GQXP69 = Madden NFL 2004 GQZJ01 = Densetsu no Quiz Ou Ketteisen GR2E52 = Lost Kingdoms 2 GR2JCQ = Rune II: Koruten no Kagi no Himitsu GR2P52 = Lost Kingdoms 2 GR3E5D = Red Card 2003 GR4EMZ = MC Groovz Dance Craze GR4PMZ = MC Groovz Dance Craze GR5J1K = Robocop: Aratanaru Kiki GR6D78 = Bratz: Rock Angelz GR6E78 = Bratz: Rock Angelz GR6F78 = Bratz: Rock Angelz GR6P78 = Bratz: Rock Angelz GR8D69 = Medal of Honor: Rising Sun GR8E69 = Medal of Honor: Rising Sun GR8F69 = Medal of Honor: Rising Sun GR8J69 = Medal of Honor: Rising Sun GR8P69 = Medal of Honor: Rising Sun GR9E6L = Reign of Fire GR9P6L = El Imperio del Fuego GRAE5Z = Rally Championship GRAP75 = Rally Championship GRBE6S = Robotech: Battlecry GRBP6S = Robotech : Battlecry GRDP5D = RedCard GREE08 = Mega Man Network Transmission GREJ08 = RockMan EXE Transmission GREP08 = Mega Man Network Transmission GRFD78 = Red Faction II GRFE78 = Red Faction II GRFF78 = Red Faction II GRFP78 = Red Faction II GRHE41 = Rayman 3: Hoodlum Havoc GRHP41 = Rayman 3: Hoodlum Havoc GRJEAF = R: Racing Evolution GRJJAF = R:Racing Evolution: Life in the Fast Lane GRJP69 = R: Racing GRKE41 = Rocky GRKP7G = Rocky GRLE41 = Pro Rally GRLP41 = Pro Rally GRMJDA = Monopoly: Mezase!! Daifugou Jinsei!! GRNE52 = Lost Kingdoms GRNJCQ = Rune GRNP52 = Lost Kingdoms GROE5Z = Road Trip: The Arcade Edition GROP7J = Gadget Racers GRQE41 = City Racer GRRE78 = Rugrats: Royal Ransom GRRP78 = Rugrats: Royal Ransom GRSEAF = SoulCalibur II GRSJAF = SoulCalibur II GRSPAF = SoulCalibur II GRUE78 = Power Rangers Dino Thunder GRUF78 = Power Rangers Dino Thunder GRUP78 = Power Rangers Dino Thunder GRVEA4 = Rave Master GRWJD9 = Super Robot Taisen GC GRYE41 = Rayman Arena GS2D78 = Summoner: A Goddess Reborn GS2E78 = Summoner: A Goddess Reborn GS2F78 = Summoner: A Goddess Reborn GS2P78 = Summoner: A Goddess Reborn GS3E51 = SX Superstar GS3P51 = SX Superstar GS7E5D = MLB SlugFest 2004 GS8E7D = Spyro: Enter the Dragonfly GS8P7D = Spyro: Enter the Dragonfly GS9E6S = Shrek Extra Large GS9P6S = Shrek Extra Large GSAE01 = Star Fox Adventures GSAJ01 = StarFox Adventures GSAP01 = Star Fox Adventures GSBJ8P = Sonic Adventure 2: Battle GSCE51 = Jeremy McGrath SuperCross World GSCP51 = Jeremy McGrath SuperCross World GSDEAF = Smashing Drive GSEJB2 = Shaman King: Soul Fight GSGE5D = MLB SlugFest 2003 GSHE5D = SpyHunter GSHP5D = SpyHunter GSKE7D = The Scorpion King: Rise of the Akkadian GSKP7D = The Scorpion King : Rise of the Akkadian GSMD52 = Spider-Man GSME52 = Spider-Man: The Movie GSMF52 = Spider-Man GSMP52 = Spider-Man GSNE8P = Sonic Adventure 2: Battle GSNP8P = Sonic Adventure 2: Battle GSOE8P = Sonic Mega Collection GSOJ8P = Sonic Mega Collection GSOP8P = Sonic Mega Collection GSPE69 = The Simpsons: Road Rage GSPP69 = The Simpsons: Road Rage GSQE78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSQP78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSRE7S = Smuggler's Run: Warzones GSRP7S = Smuggler's Run: Warzones GSSE8P = Sega Soccer Slam GSSJ8P = Sega Soccer Slam GSSP70 = Sega Soccer Slam GSSP8P = Sega Soccer Slam GSTE69 = SSX Tricky GSTJ69 = SSX Tricky GSTP69 = SSX Tricky GSUE70 = Superman: Shadow of Apokolips GSUP70 = Superman: Shadow of Apokolips GSVE78 = MX Superfly Featuring Ricky Carmichael GSVP78 = MX Superfly featuring Ricky Carmichael GSWD64 = Star Wars Rogue Leader: Rogue Squadron II GSWE64 = Star Wars Rogue Squadron II: Rogue Leader GSWF64 = Star Wars Rogue Leader: Rogue Squadron II GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = Star Wars Rogue Leader: Rogue Squadron II GSWP64 = Star Wars Rogue Leader: Rogue Squadron II GSWS64 = Star Wars Rogue Leader: Rogue Squadron II GSXD64 = Star Wars: The Clone Wars GSXE64 = Star Wars: The Clone Wars GSXF64 = Star Wars: The Clone Wars GSXJ13 = Star Wars: Clone Sensou GSXP64 = Star Wars: The Clone Wars GSXS64 = Star Wars: Las Guerras Clon GSYE6S = Shrek: Super Party GSYP6S = Shrek: Super Party GSZP41 = Speed Challenge: Jacques Villeneuve Racing Vision GT2J18 = Tengai Makyou 2: Manji Maru GT3D52 = Tony Hawk's Pro Skater 3 GT3E52 = Tony Hawk's Pro Skater 3 GT3F52 = Tony Hawk's Pro Skater 3 GT3J52 = Tony Hawk's Pro Skater 3 GT3P52 = Tony Hawk's Pro Skater 3 GT4D52 = Tony Hawk's Pro Skater 4 GT4E52 = Tony Hawk's Pro Skater 4 GT4F52 = Tony Hawk's Pro Skater 4 GT4P52 = Tony Hawk's Pro Skater 4 GT5E7N = Starsky & Hutch GT5P7N = Starsky & Hutch GT6E70 = Terminator 3: The Redemption GT6J70 = Terminator 3: The Redemption GT6P70 = Terminator 3: The Redemption GT7E41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7P41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7X41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT8E78 = Big Mutha Truckers GT8P78 = Big Mutha Truckers GT8P7N = Big Mutha Truckers GTAE5S = Top Angler : Real Bass Fishing GTAP5S = Top Angler: Real Bass Fishing GTCJBL = GT Cube GTDE52 = Tony Hawk's Underground GTDP52 = Tony Hawk's Underground GTEE01 = 1080° Avalanche GTEJ01 = 1080° Silver Storm GTEP01 = 1080° Avalanche GTFEA4 = Teenage Mutant Ninja Turtles GTFPA4 = Teenage Mutant Ninja Turtles GTGE60 = Top Gun: Combat Zones GTGP60 = Top Gun: Combat Zones GTHJD9 = Charinko Hero GTIE69 = Tiger Woods PGA Tour 2003 GTIP69 = Tiger Woods PGA Tour 2003 GTJE5L = Tom & Jerry in War of the Whiskers GTKD51 = Turok Evolution GTKE51 = Turok Evolution GTKP51 = Turok Evolution GTLE52 = True Crime: Streets of LA GTLP52 = True Crime: Streets of LA GTLX52 = True Crime: Streets of LA GTMJDA = Mutsu To Nohohon GTNJ18 = Hudson Selection Vol. 4: Adventure Island GTOJAF = Tales of Symphonia GTPP6S = Knights Of The Temple : Infernal Crusade GTQE6S = Tonka: Rescue Patrol GTRE78 = Tetris Worlds GTRP78 = Tetris Worlds GTSE4F = TimeSplitters 2 GTSP4F = TimeSplitters 2 GTUE8G = Tube Slider - The Championship of Future Formula GTVE70 = Transworld Surf: Next Wave GTWE70 = Taz Wanted GTWP70 = Taz Wanted GTYE69 = Ty the Tasmanian Tiger GTYP69 = Ty, el tigre de Tasmani GTZE41 = Tarzan Untamed GTZP41 = Tarzan Freeride GU2D78 = 2 Games in 1: The Incredibles / Finding Nemo GU2F78 = 2 Games in 1: The Incredibles / Finding Nemo GU3D78 = 2 Games in 1: The SpongeBob SquarePants Movie / Tak 2: The Staff of Dreams GU4Y78 = 2 Games in 1: The SpongeBob SquarePants Movie / Battle for Bikini Bottom GU6E78 = Nicktoons - Battle for Volcano Island GUBE69 = The Urbz: Sims in the City GUBJ13 = The Urbz: Sims In The City GUBP69 = The Urbz: Sims In The City GUCD69 = UEFA Champions League 2004-2005 GUCF69 = UEFA Champions League 2004-2005 GUCP69 = UEFA Champions League 2004-2005 GUFE4Z = Ultimate Fighting Championship Throwdown GUFP4Z = UFC: Throwdown GUGD69 = Need For Speed Underground 2 GUGE69 = Need For Speed Underground 2 GUGF69 = Need For Speed Underground 2 GUGP69 = Need For Speed Underground 2 GUMD52 = Gun GUME52 = Gun GUMP52 = Gun GUNE5D = Gauntlet: Dark Legacy GUNP5D = Gauntlet: Dark Legacy GUPE8P = Shadow the Hedgehog GUPJ8P = Shadow the Hedgehog GUPP8P = Shadow the Hedgehog GUSE7F = Universal Studios Theme Park Adventure GUSP7F = Universal Studios Theme Park Adventure GUTD52 = Ultimate Spider-Man GUTE52 = Ultimate Spider-Man GUTF52 = Ultimate Spider-Man GUTI52 = Ultimate Spider-Man GUTJC0 = Ultimate Spider-Man GUTP52 = Ultimate Spider-Man GUTS52 = Ultimate Spider-Man GUVE51 = Freestyle Street Soccer GUVP51 = Urban Freestyle Soccer GUZE41 = Batman: Rise of Sin Tzu GUZP41 = Batman Rise of Sin Tzu GV3J70 = V-Rally 3 GV3P70 = V-Rally 3 GV4E69 = MVP Baseball 2005 GVCE08 = Viewtiful Joe: Red Hot Rumble GVCJ08 = Viewtiful Joe: Battle Carnival GVCP08 = Viewtiful Joe: Red Hot Rumble GVDE78 = Bratz Forever Diamondz GVDP78 = Bratz Forever Diamondz GVHE4F = Bionicle Heroes GVJE08 = Viewtiful Joe GVJJ08 = Viewtiful Joe GVJP08 = Viewtiful Joe GVKE52 = Cabela's Dangerous Hunts 2 GVLD69 = Marvel Nemesis: Rise of the Imperfects GVLE69 = Marvel Nemesis: Rise of the Imperfects GVLF69 = Marvel Nemesis: Rise of the Imperfects GVLP69 = Marvel Némesis: La Rebelión de los Imperfectos GVMP41 = Super Bust-A-Move All Stars GVOE69 = Bionicle GVOP69 = Bionicle GVPE69 = MVP Baseball 2004 GVRE7H = Grooverider Slot Car Thunder GVS46E = Virtua Striker 4 Ver.2006 GVS46J = Virtua Striker 4 Ver.2006 GVSE8P = Virtua Striker 2002 GVSJ8P = VIRTUA STRIKER 3 ver.2002 GVSJ9P = Virtua Striker 4 Ver.2006 GVSP8P = Virtua Striker 3 Ver. 2002 GVWJDQ = Gakuen Toshi Vara Noir Roses GW2E78 = WWE Day of Reckoning 2 GW2P78 = WWE Day of Reckoning 2 GW3E78 = WWE WrestleMania X8 GW3JG2 = WWE WrestleMania X8 GW3P78 = WWE Wrestlemania X8 GW4E69 = Tiger Woods PGA Tour 2004 GW4P69 = Tiger Woods PGA Tour 2004 GW5D69 = Need For Speed Carbon GW5E69 = Need For Speed Carbon GW5F69 = Need For Speed Carbon GW5P69 = Need For Speed Carbon GW6JEM = Winning Eleven 6 Final Evolution GW7D69 = James Bond 007 in Agent Under Fire GW7E69 = 007: Agent Under Fire GW7F69 = James Bond 007 in Agent Under Fire GW7P69 = James Bond 007 in Agent Under Fire GW8E52 = World Series of Poker GW9E78 = WWE WrestleMania XIX GW9JG2 = WWE WrestleMania XIX GW9P78 = WWE WrestleMania XIX GWAD8P = Spartan Total Warrior GWAE8P = Spartan Total Warrior GWAF8P = Spartan Total Warrior GWAP8P = Spartan Total Warrior GWBE41 = Worms Blast GWBP41 = Worms Blast GWDP6S = World Racing GWEE51 = 18 Wheeler: American Pro Trucker GWEP8P = 18 Wheeler American Pro Trucker GWGE4F = Swingerz Golf GWGJ4F = Wai Wai Golf GWGP4F = Ace Golf GWHE41 = Winnie The Pooh Rumbly Tumbly Adventures GWHP41 = Winnie the Pooh: La Fiesta de Cumpleaños GWJE52 = Tony Hawk's American Wasteland GWKE41 = Peter Jackson's King Kong: The Official Game of the Movie GWKP41 = Peter Jackson's King Kong: The Official Game of the Movie GWLE6L = Wallace & Gromit in Project Zoo GWLP6L = Wallace & Gromit : Project Zoo GWLX6L = Wallace & Gromit in Project Zoo GWME51 = Worms 3D GWMP8P = Worms 3D GWOE5G = Blowout GWPE78 = WWE Day of Reckoning GWPJG2 = WWE Day of Reckoning GWPP78 = WWE Day of Reckoning GWQE52 = Wreckless: The Yakuza Missions GWQP52 = Wreckless: The Yakuza Missions GWRE01 = Wave Race: Blue Storm GWRJ01 = Wave Race: Blue Storm GWRP01 = Wave Race: Blue Storm GWSEA4 = ESPN International Winter Sports 2002 GWSJA4 = Hyper Sports 2002 Winter GWSPA4 = ESPN International Winter Sports GWTEA4 = WTA Tour Tennis GWTJA4 = WTA Tour Tennis GWTPA4 = Pro Tennis WTA Tour GWUE7D = Whirl Tour GWUP7D = Whirl Tour GWVE52 = X2: Wolverine's Revenge GWVP52 = X-Men 2: Wolverine's Revenge GWVX52 = X-Men 2 : Wolverine's Revenge GWWE01 = Wario World GWWJ01 = Wario World GWWP01 = Wario World GWYE41 = Tom Clancy's Splinter Cell: Double Agent GWYX41 = Tom Clancy's Splinter Cell: Double Agent GWZE01 = Dance Dance Revolution: Mario Mix GWZJ01 = Dance Dance Revolution: Mario Mix GWZP01 = Dancing Stage Mario Mix GX2D52 = X-Men Legends II: Rise of Apocalypse GX2E52 = X-Men Legends II: Rise of Apocalypse GX2P52 = X-Men Legends II: Rise of Apocalypse GX2S52 = X-Men Legends II: El Ascenso de Apocalipsis GX3E41 = XIII GX3P41 = XIII GX3X41 = XIII GXAE51 = XGRA Extreme G Racing Association GXAP51 = XGRA Extreme G Racing Association GXBE69 = SSX 3 GXBP69 = SSX 3 GXCE01 = Custom Robo GXEE8P = Sonic Riders GXEJ8P = Sonic Riders GXEP8P = Sonic Riders GXFD69 = FIFA Football 2004 GXFE69 = FIFA Soccer 2004 GXFF69 = FIFA Football 2004 GXFI69 = FIFA Football 2004 GXFP69 = FIFA Football 2004 GXFS69 = FIFA Football 2004 GXGE08 = Mega Man X Collection GXLE52 = X-Men Legends GXLP52 = X-Men Legends GXLX52 = X-Men Legends GXME52 = X-Men: Next Dimension GXMF52 = X-Men: Next Dimension GXMP52 = X-Men: Next Dimension GXNE5D = Rampage Total Destruction GXOE69 = SSX on Tour GXOJ69 = SSX On Tour with Mario GXOP69 = SSX On Tour GXOX69 = SSX On Tour GXPE78 = Sphinx and the Cursed Mummy GXPP78 = Sphinx y la maldita momia GXQF41 = Taxi 3 GXRE08 = Mega Man X: Command Mission GXRJ08 = Rockman X: Command Mission GXRP08 = Mega Man X: Command Mission GXSE8P = Sonic Adventure DX: Director's Cut GXSP6W = Sonic Adventure DX : Director's Cut GXSP8P = Sonic Adventure DX: Director's Cut GXUE41 = Surf's Up GXXE01 = Pokémon XD: Gale of Darkness GXXJ01 = Pokemon XD: Yami no Kaze Dark Lugia GXXP01 = Pokémon XD: Tempestad Oscura GY2E01 = Donkey Konga 2 GY2J01 = Donkey Konga 2 GY2P01 = Donkey Konga 2 GY3J01 = Donkey Konga 3 GYAD78 = Barnyard GYAE78 = Barnyard GYAP78 = Barnyard GYAX78 = Barnyard GYBE01 = Donkey Kong Jungle Beat GYBJ01 = Donkey Kong Jungle Beat GYBP01 = Donkey Kong Jungle Beat GYFEA4 = Yu-Gi-Oh! The Falsebound Kingdom GYFJA4 = Yu-Gi-Oh! The Falsebound Kingdom GYFPA4 = Yu-Gi-Oh! The Falsebound Kingdom GYKEB2 = Zatch Bell! Mamodo Battles GYMJA4 = Jikkyou Powerful Major League GYQE01 = Mario Superstar Baseball GYQJ01 = Super Mario Stadium Miracle Baseball GYQP01 = Mario Superstar Baseball GYRE41 = TMNT GYRP41 = TMNT GYTE69 = Ty The Tasmanian Tiger 2: Bush Rescue GYTP69 = Ty The Tasmanian Tiger 2: Bush Rescue GYWDE9 = Harvest Moon: A Wonderful Life GYWEE9 = Harvest Moon: A Wonderful Life GYWJ99 = Bokujou Monogatari: Wonderful Life GYWP41 = Harvest Moon: A Wonderful Life GYWPE9 = Harvest Moon: A Wonderful Life GZ2E01 = The Legend of Zelda: Twilight Princess GZ2J01 = Zelda no Densetsu: Twilight Princess GZ2P01 = The Legend of Zelda: Twilight Princess GZ3E70 = Dragon Ball Z: Budokai 2 GZ3P70 = Dragon Ball Z: Budokai 2 GZ3PB2 = Dragon Ball Z Budokai 2 GZCE51 = ZooCube GZCJB0 = ZooCube GZCP51 = Zoocube GZDE70 = Godzilla: Destroy all Monsters Melee GZDJ70 = Godzilla: Kaijuu Dairantou GZDP70 = Godzilla: Destroy all Monsters Melee GZEE70 = Dragon Ball Z: Sagas GZFJBP = Gekituisenki - Zero Fighter GZHJDA = Zoids Full Metal Crash GZLE01 = The Legend of Zelda: The Wind Waker GZLJ01 = Zelda no Densetsu: Kaze no Takuto GZLP01 = The Legend of Zelda: The Wind Waker GZMP7D = Butt-Ugly Martians Zoom or Doom GZOJDA = Zoids vs. GZPE70 = Zapper - One Wicked Cricket! GZPP70 = Zapper GZQE7D = Robots GZQJ7D = Robots GZQP7D = Robots GZSE70 = Zoids Battle Legends GZSJDA = Zoids VS. II GZVJDA = Zoids vs. III GZWE01 = Wario Ware Inc.: Mega Party Game$! GZWJ01 = Atumare!! made in wario GZWP01 = Wario Ware Inc.: Mega Party Game$! HAAA = Canal Fotos HABA = Canal Tienda HABK = Wii Shop Channel HACA = Canal Mii HACK = Mii Channel HADE = Canal internet HADJ = Canal internet HADP = Canal Internet HAFE = Canal Tiempo HAFJ = Canal Tiempo HAFP = Canal Tiempo HAGE = Canal Noticias HAGJ = Canal Noticias HAGP = Canal Noticias HAJE = Canal Opiniones HAJJ = Everybody Votes Channel HAJP = Canal Opiniones HAPE = Miirame HAPJ = Mii Contest Channel HAPP = Canal Concursos Mii HATE = Canal Nintendo HATJ = Nintendo Channel HATP = Nintendo Channel HAVJ = Today and Tomorrow Fortune Teller HAVK = Today And Tomorrow Channel HAVP = Today and Tomorrow Channel HAWE = Metroid Prime 3 Preview HAWJ = Metroid Prime 3 Preview HAWP = Metroid Prime 3 Preview HAYA = Canal Fotos HAYK = Photo Channel HBNJ = TV Friend Channel HBWE01 = Nuevo Super Mario Bros. Wii: Edición Hellboy HC3J = USB Flash Optimization HCAJ = Band Bros. DX Speaker Channel HCAP = Jam with the Band Live HCBJ = Photo Channel 1.0 Restore Program HCDJ = Digicam Print Channel HCFE = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Wii Speak Channel HCGE = Wii + Internet HCGJ = Wii Plus Internet HCGP = Wii Plus Internet HCHJ = Food Service HCIJ = Wii no ma HCJP = Canal BBC iPlayer HCLE = Netflix HCLP = Netflix HCMP = Kirby TV HCQE = Hulu Plus HCQJ = Hulu HCRE = The Legend of Zelda: Skyward Sword Save Data Update Channel HCRJ = The Legend of Zelda Skyward Sword Update HCRP = The Legend of Zelda Skyward Sword Update HCSE = Wii U Transfer Tool HCSJ = Wii U Transfer Tool HCSP = Wii U Transfer Tool HCTE = Wii System Transfer HCTJ = Wii System Transfer HCTP = Wii System Transfer HCUE = Wii Menu Electronic Manual HCUJ = Wii Menu Electronic Manual HCUP = Wii Menu Electronic Manual HCVA = Wii U Menu HCWE = Amazon Instant Video HCWP = Amazon Instant Video HCXE = YouTube HCXJ = YouTube HCXP = YouTube HCZE = Wii System Transfer HWFL = HackWiiFlow JA2J = Shin Megami Tensei JA3J = Kamaitachi no Yoru JA4E = Super Ghouls 'n Ghosts JA4J = Chou-Makai-Mura JA4P = Super Ghouls'n Ghosts JA5J = Heracles no Eikou III: Kamigami no Chinmoku JA6E = Zombies Ate My Neighbors JA6J = Zombies Ate My Neighbors JA6P = Zombies JA7D = ActRaiser JA7E = ActRaiser JA7F = ActRaiser JA7J = Actraiser JA7P = ActRaiser JA8E = Final Fight JA8J = Final Fight JA8P = Final Fight JAAE = Super Mario World JAAJ = Super Mario World JAAK = Super Mario World JAAP = Super Mario World JABJ = Mario no Super Picross JABL = Mario’s Super Picross JACE = F-Zero JACJ = F-Zero JACK = F-Zero JACP = F-Zero JADD = The Legend of Zelda: A Link to the Past JADE = The Legend of Zelda: A Link to the Past JADF = The Legend of Zelda: A Link to the Past JADJ = Zelda no Densetsu: Kamigami no Triforce JADK = The Legend of Zelda: A Link to the Past JADP = The Legend of Zelda: A Link to the Past JAEE = Donkey Kong Country JAEJ = Super Donkey Kong JAEK = Donkey Kong Country JAEP = Donkey Kong Country JAFD = SimCity JAFE = Sim City JAFF = SimCity JAFJ = SimCity JAFP = SimCity JAGJ = Fire Emblem: Monshou no Nazo JAHE = R-Type III: The 3rd Lightning JAHJ = R-Type III: The Third Lightning JAHK = R-Type III: The Third Lightning JAHP = R-TYPE III : The Third Lightning JAIE = Super Castlevania IV JAIJ = Akumajou Dracula JAIP = Super Castlevania IV JAJE = Street Fighter II: The World Warrior JAJJ = Street Fighter II JAJP = Street Fighter II: The World Warrior JALE = Contra III: The Alien Wars JALJ = Contra Spirits JALK = Contra III: The Alien Wars JALP = Super Probotector: Alien Rebels JAME = Gradius III JAMJ = Gradius III JAMK = Gradius III JAMM = Gradius III JAPJ = Fire Emblem: Seisen no Keifu JAUJ = Famicom Bunko: Hajimari no Mori JAVE = Super Metroid JAVJ = Super Metroid JAVK = Super Metroid JAVP = Super Metroid JAWE = Romance of the Three Kingdoms IV: Wall of Fire JAWJ = San Goku Shi IV JAZD = The Legend of the Mystical Ninja JAZE = The Legend of The Mystical Ninja JAZJ = Ganbare Goemon: Yukihime Kyuushutsu Emaki JAZP = The Legend of the Mystical Ninja JB3D = Harvest Moon JB3E = Harvest Moon JB3J = Harvest Moon JB3P = Harvest Moon JB5J = Super Gussun Oyoyo JB6J = Treasure Hunter G JB7J = Front Mission: Gun Hazard JB9J = Gakkou de atta Kowai Hanashi JBAE = Metal Marines JBAJ = Militia JBBE = Super Street Fighter II: The New Challengers JBBJ = Super Street Fighter II: The New Challengers JBBP = Super Street Fighter II: The New Challengers JBCE = Kirby's Dream Course JBCJ = Kirby Bowl JBCK = Kirby's Dream Course JBCP = Kirby's Dream Course JBDD = Donkey Kong Country 2: Diddy's Kong-Quest JBDE = Donkey Kong Country 2: Diddy's Kong Quest JBDJ = Super Donkey Kong 2: Dixie & Diddy JBDK = Donkey Kong Country 2: Diddy Kong's Quest JBDP = Donkey Kong Country 2: Diddy's Kong-Quest JBEJ = Magical Drop JBFJ = Otogirisou JBGJ = Mystery Dungeon: Shiren the Wanderer JBHJ = Heracles no Eikou IV: Kamigami-kara no Okurimono JBIE = Street Fighter II Turbo: Hyper Fighting JBIJ = Street Fighter II Turbo: Hyper Fighting JBIP = Street Fighter II Turbo: Hyper Fighting JBKE = Breath of Fire II JBKJ = Breath of Fire II: Shimei no Ko JBKP = Breath of Fire II JBLE = Pac-Attack JBLJ = Cosmo Gang the Puzzle JBLP = Pac-Attack JBNE = Darius Twin JBNJ = Darius Twin JBOJ = Panel de Pon JBOK = Panel de Pon JBPE = Donkey Kong Country 3: Dixie Kong's Double Trouble JBPJ = Super Donkey Kong 3: Nazo no Krems Shima JBPP = Donkey Kong Country 3: Dixie Kong’s Double Trouble JBQE = Kirby's Avalanche JBQJ = Kirby's Avalanche JBQP = Kirby's Ghost Trap JBRE = Vegas Stakes JBRJ = Vegas Stakes JBRP = Vegas Stakes JBSE = Axelay JBSJ = Axelay JBSP = Axelay JBTE = Super Turrican JBTJ = Super Turrican JBTP = Super Turrican JBUE = Super Turrican 2 JBUJ = Super Turrican Two JBVJ = Der Langrisser JBWE = Cybernator JBWJ = Assault Suits Valken JBWK = Cybernator JBWP = Cybernator JBYE = Super R-Type JBYJ = Super R-Type JBYK = Super R-Type JBYP = Super R-Type JC2J = Taikou Risshiden JC3J = Bahamut Lagoon JC4E = Indiana Jones' Greatest Adventures JC4J = Indiana Jones Great Adventure JC4P = Indiana Jones' Greatest Adventures JC5J = Romancing SaGa JC6J = Romancing SaGa 2 JC7E = The Combatribes JC7J = The Combatribes JC8E = Final Fantasy II JC8J = Final Fantasy IV JC8M = Final Fantasy II JC8P = Final Fantasy 2 JC9J = Final Fantasy V JCAJ = DoReMi Fantasy: Milon no DokiDoki Daibouken JCAL = DoReMi Fantasy - Milon’s DokiDoki Adventure JCAN = DoReMi Fantasy: Milon's DokiDoki Adventure JCBE = Super Mario RPG: Legend of the Seven Stars JCBJ = Super Mario RPG JCBM = Super Mario RPG: Legend of the Seven Stars JCCE = Kirby Super Star JCCJ = Hoshi no Kirby Super Deluxe JCCP = Kirby’s Fun Pak JCDE = Kirby's Dream Land 3 JCDJ = Hoshi no Kirby 3 JCDM = Kirby’s Dream Land 3 JCEJ = Fire Emblem: Thracia 776 JCGJ = Ganbare Goemon 2: Kiteretsu Shougun Magginesu JCHJ = Ganbare Goemon 3 JCIJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo JCJE = Super Punch-Out!! JCJJ = Super Punch-Out!! JCJP = Super Punch Out!! JCKE = Space Invaders: The Original Game JCKJ = Space Invaders: The Original Game JCKP = Space Invaders -The Original Game JCLD = Secret of Mana JCLE = Secret of Mana JCLF = Secret of Mana JCLJ = Seiken Densetsu 2 JCLP = Secret of Mana JCMJ = Super Wagyan Land JCNE = Prince of Persia JCNJ = Prince of Persia JCTE = Ogre Battle: The March of the Black Queen JCTJ = Densetsu no Ogre Battle: The March of the Black Queen JCTM = Ogre Battle: The March of the Black Queen JCUE = PilotWings JCUJ = Tactics Ogre: Let Us Cling Together JCVE = Pilotwings JCVJ = Pilotwings JCVP = Pilotwings JCWE = Super Mario Kart JCWJ = Super Mario Kart JCWP = Super Mario Kart JCXE = Nobunaga's Ambition JCXJ = Super Nobunaga no Yabou: Zengokuban JCYE = Uncharted Waters: New Horizons JCYJ = Daikoukai Jidai II JCZE = Genghis Khan II: Clan of the Gray Wolf JCZJ = Super Aoki Ookami to Shiroki Meshika: Genchou Hishi JD2J = Bishoujo Janshi Suchie-Pai JD3E = Super E.D.F. Earth Defense Force JD3J = Super E.D.F. Earth Defense Force JD3P = Super EDF Earth Defense Force JD4E = Rival Turf! JD4J = Rushing Beat JD4P = Rival Turf! JD5E = Brawl Brothers JD5J = Rushing Beat Ran: Fukusei Toshi JD5P = Brawl Brothers JD6E = The Ignition Factor JD6J = Fire Fighting JD6M = The Ignition Factor JD7E = Super Adventure Island JD7J = Takahashi Meijin no Daibouken Jima JD7P = Super Adventure Island JD8E = Super Adventure Island II JD8J = Takahashi Meijin no Daibouken Jima II JD8P = Super Adventure Island II JD9E = Super Bonk JD9J = Chou-Genjin JD9M = Super Bonk JDAE = Final Fantasy III JDAJ = Final Fantasy VI JDAP = Final Fantasy III JDBE = Super Bomberman 3 JDCE = Street Fighter Alpha 2 JDCJ = Street Fighter Two Alpha JDCP = Street Fighter Alpha 2 JDDE = Final Fight 2 JDDJ = Final Fight Two JDDP = Final Fight 2 JDEE = Final Fight 3 JDEJ = Final Fight Tough JDEP = Final Fight 3 JDFJ = Sutte Hakkun JDHJ = Super Famicom Wars JDIE = Super Star Wars JDIJ = Super Star Wars JDIP = Super Star Wars JDJE = Super Star Wars: The Empire Strikes Back JDJJ = Super Star Wars The Empire Strikes Back JDJP = Super Star Wars: The Empire Strikes Back JDKJ = Metal Max 2 JDLE = Super Return of the Jedi JDLJ = Super Star Wars Return Of The Jedi JDLP = Super Star Wars: Return of the Jedi JDMJ = Kirby no Kirakira Kizzu JDNE = Ghoul Patrol JDNJ = Ghoul Patrol JDOJ = Heisei Shin Onigashima: Zenpen JDPJ = Heisei Shin Onigashima: Kouhen JDQJ = Romancing Sa-Ga 3 JDRJ = Clock Tower JDSJ = Shin Megami Tensei II JDTJ = Shin Megami Tensei if... JDUJ = Albert Odyssey JDVE = Wild Guns JDVJ = Wild Guns JDVP = Wild Guns JDWE = Aero the Acrobat JDWJ = Aero The Acrobat JDWP = Aero The Acrobat JDXE = Aero the Acrobat 2 JDXJ = Aero The Acrobat Two JDXP = Aero the Acrobat 2 JDYJ = Rudra no Hihou JDZE = Final Fantasy Mystic Quest JDZJ = Final Fantasy USA: Mystic Quest JEAE = Natsume Championship Wrestling JEAJ = Natsume Championship Wrestling JEAP = Natsume Championship Wrestling JEBE = Mega Man X JEBJ = RockMan X JECE = Chrono Trigger JECJ = Chrono Trigger JECM = Chrono Trigger JECP = Chrono Trigger JEDJ = Kunio-Kun no Dodge Ball Dayo Zenin Shuugo! JEEJ = Majin Tensei JEFJ = Majin Tensei II: Spiral Nemesis JEGJ = Gouketuji Ichizoku JEHE = Mega Man X2 JEHJ = RockMan X2 JEIJ = Metal Max Returns JEJJ = Tsukikomori JEKJ = Kyuyaku Megami Tensei: Megami Tensei I・II JODI = Canal Homebrew JOUE01 = New Super Mario Bros. Wii 10 The Journey KMCP06 = Wiimms MKW Fun 2010-12.pal+ KMKE01 = Kustom Mario Kart Wii KMNE03 = Newer Super Mario Bros. Wii KMNE10 = Koopa Country KMNJ03 = Newer Super Mario Bros. Wii KMNP03 = Newer Super Mario Bros. Wii KMNP10 = Koopa Country L40P4Q = SingIt: Pop hits, los 40 principales LAAJ = Hokuto no Ken LABE = Fantasy Zone LABJ = Fantasy Zone LABP = Fantasy Zone LACE = Wonder Boy LACJ = Super Wonder Boy LACP = Wonder Boy LADE = Phantasy Star LADJ = Phantasy Star LADP = Phantasy Star LAEE = Alex Kidd in Miracle World LAEJ = Alex Kidd in Miracle World LAEP = Alex Kidd in Miracle World LAFJ = Ashura LAFN = Secret Commando LAFP = Secret Command LAGE = Sonic The Hedgehog LAGJ = Sonic the Hedgehog LAGP = Sonic The Hedgehog LAHE = Space Harrier LAHJ = Space Harrier LAHP = Space Harrier LAIE = Enduro Racer LAIJ = Enduro Racer LAIP = Enduro Racer LAJE = Sonic The Hedgehog 2 LAJJ = Sonic the Hedgehog 2 LAJP = Sonic The Hedgehog 2 LAKE = Wonder Boy in Monster Land LAKJ = Super Wonder Boy: Monster World LAKP = Wonder Boy in Monster Land LALE = Fantasy Zone II LALJ = Fantasy Zone II: The Tears of Opa-Opa LALP = Fantasy Zone II LAME = Sonic Chaos LAMJ = Sonic Chaos LAMP = Sonic Chaos LANE = Alex Kidd: The Lost Stars LANJ = Alex Kidd: The Lost Stars LANP = Alex Kidd: The Lost Stars LAOE = R-Type LAOJ = R-Type LAOP = R-Type LAPE = Wonder Boy III: The Dragon's Trap LAPP = Wonder Boy III: The Dragon's Trap LAQE = Alex Kidd in Shinobi World LAQP = Alex Kidd in Shinobi World LULZ = Canal Homebrew MA2J = Dyna Brothers MA3E = Puyo Puyo 2 MA3J = Puyo Puyo Tsuu MA3L = Puyo Puyo 2 MA4J = Bahamut Senki MA5J = Rent A Hero MA6E = Streets of Rage 2 MA6J = Bare Knuckle II: Shitou no Chinkon Uta MA6P = Streets of Rage 2 MA7E = Shining in the Darkness MA7J = Shining and the Darkness MA7P = Shining in the Darkness MA8E = Ecco: The Tides of Time MA8J = Ecco the Dolphin 2 MA8P = Ecco: The Tides of Time MA9J = The Hybrid Front MAAE = Altered Beast MAAJ = Juuouki MAAP = Altered Beast MABE = Columns MABJ = Columns MABP = Columns MACE = Dr. Robotnik's Mean Bean Machine MACJ = Puyo Puyo MACP = Dr. Robotnik's Mean Bean Machine MADE = Ecco the Dolphin MADJ = Ecco the Dolphin MADP = Ecco the Dolphin MAEE = Golden Axe MAEJ = Golden Axe MAEP = Golden Axe MAFE = Gunstar Heroes MAFJ = Gunstar Heroes MAFP = Gunstar Heroes MAGE = Ristar MAGJ = Ristar MAGP = Ristar MAHE = Sonic the Hedgehog MAHJ = Sonic the Hedgehog MAHP = Sonic the Hedgehog MAIE = Space Harrier II MAIJ = Space Harrier II MAIP = Space Harrier II MAJE = Toe Jam & Earl MAJJ = ToeJam & Earl MAJP = ToeJam & Earl MAKE = Shadow Dancer: The Secret of Shinobi MAKJ = Shadow Dancer: The Secret of Shinobi MAKP = Shadow Dancer: The Secret of Shinobi MALE = Bonanza Bros. MALJ = Bonanza Bros. MALP = Bonanza Bros. MAME = Sword of Vermillion MAMJ = Vermilion MAMP = Sword of Vermilion MANE = Gain Ground MANJ = Gain Ground MANP = Gain Ground MAOE = Bio-Hazard Battle MAOJ = Crying: Aseimei Sensou MAOP = Bio-Hazard Battle MAPE = Comix Zone MAPJ = Comix Zone MAPP = Comix Zone MAQE = Streets of Rage MAQJ = Bare Knuckle: Ikari no Tekken MAQP = Streets of Rage MARE = Beyond Oasis MARJ = The Story of Thor: Hikari o Tsugu Mono MARP = The Story of Thor MASE = Vectorman MASJ = Vectorman MASP = Vectorman MATE = Sonic Spinball MATJ = Sonic Spinball MATP = Sonic Spinball MAUJ = Puzzle & Action: Tant-R MAVE = Wonder Boy in Monster World MAVJ = Wonder Boy V: Monster World III MAVP = Wonder Boy In Monster World MAWE = Virtua Fighter 2 MAWJ = Virtua Fighter 2 MAWP = Virtua Fighter 2 MAXE = Alex Kidd In The Enchanted Castle MAXJ = Alex Kidd: Tenkuu Mashiro MAXP = Alex Kidd In The Enchanted Castle MAYE = Alien Storm MAYJ = Alien Storm MAYP = Alien Storm MAZE = ToeJam & Earl in Panic on Funkotron MAZP = ToeJam & Earl in Panic on Funkotron MB2J = Langrisser MB3E = Monster World IV MB3J = Monster World IV MB4J = Party Quiz Mega Q MB5J = Rangurissah II MB6E = Shining Force II MB6J = Shining Force II: Inishie no Fuuin MB6P = Shining Force II MB7E = Mega Turrican MB7P = Mega Turrican MB8E = Phantasy Star II MB8J = Phantasy Star II: Kaerazaru Toki no Owari ni MB8P = Phantasy Star II MB9J = Pepenga Pengo MBAJ = Pulseman MBAL = Pulseman MBAN = Pulseman MBBE = Sonic the Hedgehog 2 MBBJ = Sonic the Hedgehog 2 MBBP = Sonic the Hedgehog 2 MBCE = Kid Chameleon MBCJ = Chameleon Kid MBCP = Kid Chameleon MBDE = Golden Axe II MBDJ = Golden Axe II MBDP = Golden Axe II MBEE = Shining Force MBEJ = Shining Force: Kamigami no Isan MBEP = Shining Force MBFE = Shinobi III: Return of the Ninja Master MBFJ = The Super Soldier II MBFP = Shinobi III: Return of the Ninja master MBGE = Dynamite Headdy MBGJ = Dynamite Headdy MBGP = Dynamite Headdy MBHJ = Puzzle & Action: Ichidant-R MBIE = Landstalker: The Treasures of King Nole MBIJ = LandStalker: Koutei no Zaihou MBIP = Landstalker: The Treasures of King Nole MBJE = Ghouls'n Ghosts MBJJ = Dai Makai-Mura MBJP = Ghouls'n Ghosts MBKJ = Crack Down MBKP = Crack Down MBLJ = ESWAT: Cyber Police MBLP = ESWAT City Under Siege MBME = Sonic the Hedgehog 3 MBMJ = Sonic the Hedgehog 3 MBMP = Sonic the Hedgehog 3 MBNJ = Chelnov MBOE = Golden Axe III MBOJ = Golden Axe III MBOP = Golden Axe III MBPE = Super Thunder Blade MBPJ = Super Thunder Blade MBPP = Super Thunder Blade MBQE = Streets of Rage 3 MBQJ = Bare Knuckle III MBQP = Streets of Rage 3 MBRE = Rolling Thunder 2 MBRJ = Rolling Thunder 2 MBRP = Rolling Thunder 2 MBSJ = Dyna Brothers 2 Special MBTE = Alien Soldier MBTJ = Alien Soldier MBTP = Alien Soldier MBUE = Sonic 3D: Blast MBUJ = Sonic 3D Blast MBUP = Sonic 3D: Flickies' Island MBVJ = Jusu Kihei Leynos MBWE = Columns III: Revenge of Columns MBWJ = Columns III: Taiketsu! Columns World MBWM = Columns III: Revenge of Columns MBXE = Ecco Jr. MBXJ = Ecco Jr. MBXM = Ecco Jr. MBYE = Light Crusader MBYJ = Light Crusader MBYP = Light Crusader MBZE = Eternal Champions MBZJ = Eternal Champions MBZP = Eternal Champions MC2E = Earthworm Jim 2 MC2J = Earthworm Jim 2 MC2P = Earthworm Jim 2 MC3E = Super Street Fighter II: The New Challengers MC3J = Super Street Fighter 2: The New Challengers MC3P = Super Street Fighter II: The New Challengers MC4E = Strider MC4J = Strider Hiryu MCAJ = Gley Lancer MCAL = Gley Lancer MCAN = Gley Lancer MCBE = Powerball MCBJ = Wrestleball MCCE = Phantasy Star III MCCJ = Toki no Keishousha: Phantasy Star III MCCP = Phantasy Star III: Generations of Doom MCDE = Sonic & Knuckles MCDJ = Sonic & Knuckles MCDP = Sonic & Knuckles MCEJ = Super Fantasy Zone MCEN = Super Fantasy Zone MCEP = Super Fantasy Zone MCGE = Forgotten Worlds MCGJ = Forgotten Worlds MCGP = Forgotten Worlds MCHE = M.U.S.H.A. MCHJ = Musha Aleste MCHM = MUSHA : Metallic Uniframe Super Hybrid Armor MCIJ = Gynoug MCJE = Splatterhouse 2 MCJJ = Splatterhouse Part 2 MCJP = Splatterhouse 2 MCKE = Phantasy Star IV MCKJ = Phantasy Star: Sennenki no Owari ni MCKP = Phantasy Star IV MCLE = Street Fighter II': Special Champion Edition MCLJ = Street Fighter II' Plus: Champion Edition MCLP = Street Fighter II’: Special Champion Edition MCMJ = Lord Monarch: Tokoton Sentou Densetsu MCNJ = Hokuto no Ken: Shin Seikimatu Kyuseisyu Densetsu MCOJ = Sorcerian MCPE = Earthworm Jim MCPJ = Earthworm Jim MCPP = Earthworm Jim MCQE = Boogerman: A Pick and Flick Adventure MCQP = Boogerman - A Pick and Flick Adventure MCRE = Wolf of the Battlefield: MERCS MCRJ = Senjou no Ookami II MCRP = MERCS: Wolf of the Battlefield MCSJ = Wonder Boy III: Monster Lair MCSN = Wonder Boy III: Monster Lair MCSP = Wonder Boy III: Monster Lair MCTE = Clay Fighter MCTP = Clay Fighter MCUJ = Dragon Slayer: The Legend of Heroes MCVE = Pitfall: The Mayan Adventure MCVJ = Pitfall: The Mayan Adventure MCVP = Pitfall: The Mayan Adventure MCWE = Galaxy Force II MCWJ = Galaxy Force II MCWP = Galaxy Force II MCXJ = Dragon Slayer: The Legend of Heroes MCYE = The Revenge of Shinobi MCYJ = The Super Shinobi MCYP = The Revenge of Shinobi MCZE = Shanghai II: Dragon's Eye MCZP = Shanghai II Dragon's Eye MDUE01 = Mario Kart: Track Grand Priix MECPSI = SingItStar Mecano METE01 = New Super Metroid Bros. Wii MIJPSI = SingItStar Michael Jackson MILPSI = Sing IT Star: Miliki MKDE02 = Darky Kart Wii MKTE01 = Mario Kart Wii Teknik MKWP01 = Mario Kart Snes MMRE01 = D.U. Super Mario Bros 2.1 Madness Returns MRRE01 = New Super Mario Bros. Wii Retro Remix MRRP01 = New Super Mario Bros. Wii Retro Remix NA3E = Bomberman Hero NA3J = Bomberman Hero NA3P = Bomberman Hero NAAE = Super Mario 64 NAAJ = Super Mario 64 NAAP = Super Mario 64 NABE = Mario Kart 64 NABJ = Mario Kart 64 NABK = Mario Kart 64 NABP = Mario Kart 64 NACE = The Legend of Zelda: Ocarina of Time NACJ = Zelda no Densetsu: Toki no Ocarina NACP = The Legend of Zelda: Ocarina of Time NADE = Star Fox 64 NADJ = Star Fox 64 NADK = Star Fox 64 NADP = Lylat Wars NAEE = Paper Mario NAEJ = Mario Story NAEP = Paper Mario NAFE = F-Zero X NAFJ = F-Zero X NAFP = F-Zero X NAGJ = Aerogauge NAHE = Yoshi's Story NAHJ = Yoshi's Story NAHP = Yoshi's Story NAIE = Wave Race 64 NAIJ = Wave Race 64: Kawasaki Jet Ski NAIP = Wave Race 64 NAJ8 = The Legend of Zelda: Ocarina of Time (traducido al español) NAJ9 = Super Smash Bros. NAJJ = Tsumi to Batsu NAJL = Sin & Punishment NAJN = Sin and Punishment NAKD = Pokémon Snap NAKE = Pokémon Snap NAKF = Pokémon Snap NAKI = Pokémon Snap NAKJ = Pokémon Snap NAKP = Pokémon Snap NAKS = Pokémon Snap NALE = Super Smash Bros. NALJ = Nintendo All-Star Dairantou Smash Brothers NALP = Super Smash Bros. NAME = Kirby 64: The Crystal Shards NAMJ = Hoshi no Kirby 64 NAMK = Kirby 64: The Crystal Shards NAMP = Kirby 64: The Crystal Shards NAND = Pokémon Puzzle League NANE = Pokémon Puzzle League NANF = Pokémon Puzzle League NANJ = Pokemon Puzzle League NANP = Pokémon Puzzle League NAOE = 1080° Snowboarding NAOJ = 1080° Snowboarding NAOK = 1080° Snowboarding NAOP = 1080 : TenEighty Snowboarding NAPJ = Custom Robo V2 NARE = The Legend of Zelda: Majora's Mask NARJ = Zelda no Densetsu: Majora no Kamen NARP = The Legend of Zelda : Majora's Mask NASE = Cruis'n USA NASJ = Cruisn USA NASP = Cruis'n USA NATE = Mario Tennis NATJ = Mario Tennis 64 NATP = Mario Tennis NAUE = Mario Golf NAUJ = Mario Golf 64 NAUP = Mario Golf NAYE = Ogre Battle 64: Person of Lordly Caliber NAYJ = Ogre Battle 64: Person of Lordly Caliber NAYM = Ogre Battle 64: Person of Lordly Caliber NAZE = Mario Party 2 NAZJ = Mario Party 2 NAZP = Mario Party 2 NEEA = The Legend of Zelda: Ocarina of Time Master Quest NEWE01 = New Super Mario Bros Wii 15 A New World NK2O = Neek2o NMNP01 = Newer Super Mario Bros. Wii NRJ1FR = StarSing : NRJ Music Tour v1.1 NSMB02 = New Super Mario Bros. Wii 2 NSSP01 = Newer Summer Sun NWRP01 = Newer Super Mario Bros. Wii NZXM = Super Mario 64 Multiplayer ONKELZ = SingItStar Böhse Onkelz PAL OTFPSI = Sing IT: Operación triunfo P2ME01 = Metroid Prime 2: Echoes (Bonus Disc) PA2J = Nekketsu Koukou Dodgeball Bu: CD Soccer Hen PA3J = Salamander PA4J = Parasol Stars PA6E = Bloody Wolf PA6J = Narazumono Sentou Butai: Bloody Wolf PA6P = Bloody Wolf PA7E = Alien Crush PA7J = Alien Crush PA7P = Alien Crush PA8E = Ordyne PA8J = Ordyne PA9E = Splatterhouse PA9J = Splatterhouse PA9P = Splatterhouse PAAE = Bomberman '93 PAAP = Bomberman '93 PABE = Bonk's Adventure PABJ = PC Genjin PABP = Bonk's Adventure PACE = Dungeon Explorer PACJ = Dungeon Explorer PACP = Dungeon Explorer PADE = R-Type PADJ = R-Type I PADP = R-Type PAEE = Super Star Soldier PAEJ = Super Star Soldier PAEP = Super Star Soldier PAFE = Victory Run PAFJ = Victory Run: Eikou no 13,000KM PAFP = Victory Run PAGJ = Bomberman '94 PAGL = Bomberman'94 PAGN = Bomberman '94 PAHE = Battle Lode Runner PAHJ = Battle Lode Runner PAHP = Battle Lode Runner PAIE = New Adventure Island PAIJ = Takahashi Meijin no Shin Bouken Jima PAIP = New Adventure Island PAJJ = Joshoken Necromancer PAKE = Dragon's Curse PAKJ = Adventure Island PAKP = Dragon's Curse PALE = Soldier Blade PALJ = Soldier Blade PALP = Soldier Blade PAME = Neutopia PAMJ = Neutopia: Frey no Shou PAMP = Neutopia PANE = Military Madness PANJ = Nectaris PANP = Military Madness PAOJ = Final Soldier PAOL = Final Soldier PAON = Final Soldier PAPJ = R-Type II PAQJ = Gradius PARJ = Detana TwinBee PARL = Detana Twin Bee PARN = Detana Twin Bee PASJ = Cadash PATJ = Kiki Kaikai PAUJ = Kaizou Chounin Shubibinman PAVE = Vigilante PAVJ = Vigilante PAVP = Vigilante PAWE = Galaga '90 PAWJ = Galaga '88 PAWP = Galaga'90 PAYJ = Valkyrie no Densetsu PAZJ = Genpei Toumaden PB2E = Neutopia II PB2J = Neutopia II PB2P = Neutopia II PB3E = Devil's Crush PB3J = Devil Crash PB3P = Devil's Crush PB5J = Ninja Ryukenden PB6E = Cratermaze PB6P = Cratermaze PB7J = Sengoku Mahjong PB8E = Blazing Lazers PB8J = Blazing Lazers PB8P = Blazing Lazers PB9E = World Sports Competition PB9J = Power Sports PB9P = World Sports Competition PBAE = Dragon Spirit PBAJ = Dragon Spirit PBAP = Dragon Spirit PBCJ = Wonder-Momo PBDE = Double Dungeons PBDJ = Double Dungeons PBDP = Double Dungeons PBEE = Moto Roader PBEJ = Moto Roader PBEP = Motoroader PBFJ = Fire ProWrestling: Combination Tag PBHE = Bonk's Revenge PBHJ = PC Genjin 2 PBHP = Bonk's Revenge PBIE = Bonk 3: Bonk's Big Adventure PBIJ = PC Genjin 3 PBIP = Bonk III: Bonk's Big Adventure PBJE = Samurai Ghost PBJJ = Genpei Toumaden: Kannoni PBJP = Samurai Ghost PBME = Legend of Hero Tonma PBMJ = Legend of Hero Tonma PBMP = Legend of Hero Tonma PBNE = Ninja Spirit PBNJ = Saigou no Nindou: Ninja Spirit PBNP = Ninja Spirit PBSE = Chew Man Fu PBSJ = Be Ball PBSP = Chew Man Fu PBTE = China Warrior PBTJ = The Kung Fu PBTP = China Warrior PBUE = Bravoman PBUJ = Chouzetsu Rinjin Bravoman PBVJ = Benkei Gaiden PBWE = Air “Zonk” PBWJ = PC Denjin: Punkic Cyborgs PBWP = Air 'Zonk' PBXE = Shockman PBXJ = Kaizou Chounin Shubibinman 2: Atanaru Teki PBXP = Shockman PBYJ = Out Live PBZE = J.J. & Jeff PBZP = J.J. & Jeff PC2E = Chase H.Q. PC2J = Chase H.Q. PC2P = Chase H.Q. PC3J = Darius Plus PC4J = Space Invaders: Fukkatsu no Hi PC5J = Dragon Saber PC6E01 = Pokémon Colosseum Bonus Disc PC6J = Final Blaster PC7J = Mizubaku Daibouken PC8J = The Ninjawarriors PC9J = The NewZealand Story PCAE = Silent Debuggers PCAJ = Silent Debuggers PCAP = Silent Debuggers PCBE = Dead Moon PCBJ = Dead Moon: Tsuki Sekai no Akumu PCBP = Dead Moon PCCJ = Makai Hakkenden Shada PCDJ = Appare! Gateball PCEE = Power Golf PCEJ = Power Golf PCEP = Power Golf PCHE = Drop Off PCHJ = Drop Rock Hora Hora PCHP = Drop Off PCJJ = Override PCKJ = Gai Flame PCMJ = Mr. Heli no Daibouken PCNJ = Winning Shot PCOE = Psychosis PCOJ = Paranoia PCOP = Psychosis PCPJ = Power Eleven PCQJ = Psycho Chaser PCRJ = Break In PCRL = Break In PCRN = Break In PCSJ = Digital Champ: Battle Boxing PCSJ = Digital Champ: Battle Boxing PCSJ01 = Pokemon Colosseum Bonus Disc PCSL = Digital Champ : Battle Boxing PCSN = Digital Champ Battle Boxing PCTJ = Power Tennis PCUJ = Fire ProWrestling 2nd Bout PCVE = World Class Baseball PCVP = World Class Baseball PCWJ = Image Fight PCXJ = Power League IV PCYJ = Wallaby!! Usagi no Kuni no Kangaroo Race PDCJ = Dai Makaimura PDDJ = Volfied PDEJ = S.C.I.: Special Criminal Investigation PDFJ = Jigoku Meguri PDGJ = Fire ProWrestling 3: Legend Bout PDHJ = Rastan Saga II PDIE = Champion Wrestler PDJJ = Street Fighter II': Champion Edition PDJL = Street Fighter II' : Champion Edition PDJN = Street Fighter II: Champion Edition PDUE01 = Another Super Mario Bros. Wii PKBJ01 = The Tower of Druaga PLUS = WiiMC+ PM4E01 = Mario Kart: Double Dash!! Bonus Disc PMNEO1 = New Old Super Mario Bros. Wii POPPSI = SingItStar Pop PPNE01 = New Super Mario Bros. Wii 2: Los Próximos Niveles PPNP01 = New Super Mario Bros. Wii 2: The Next Levels PRJE01 = Pac-Man vs. PRJJ01 = Pac-Man vs. PRJP01 = Pac-Man vs. PROE01 = New Super Mario Bros. Wii 14 Project Mario PT1PSI = SingIt Star Portugal Hits PT2PSI = SingIt Portugal Hits Fiesta de Verano PT3PSI = Sing IT Portugal Hits - Morangos com Açucar PUTA01 = Guitar Hero III Custom: Rock Hits PWNP69 = Pwned Super Mario Bros. Wii PXWE = Project X: Love Potion Disaster PZLE01 = The Legend of Zelda: Collector's Edition PZLJ01 = The Legend of Zelda: Collector's Edition PZLP01 = The Legend of Zelda: Collector's Edition QA2J = Nekketsu Koukou Dodge Ball-Bu: CD Soccer-hen QA3E = SimEarth: The Living Planet QA3J = SimEarth QA3P = SimEarth: The Living Planet QA4J = Super Darius II QA5J = Space Invaders: The Original Game QA6J = Super Darius QA7J = Legend of Xanadu: Kaze no Densetsu Xanadu QA8J = Spriggan Mark 2 QA9J = Kaze no Densetsu: Xanadu II QAAE = Super Air Zonk QAAJ = CD Denjin: Rockabilly Tengoku QAAP = Super Air Zonk QABE = Ys Book I & II QABJ = Ys I + II QABP = Ys Book I & II QACJ = Cho Aniki QACL = Cho Aniki QACN = Cho Aniki QADJ = Gradius II: Gofer no Yabou QADL = Gradius II: Gofer no Yabou QADN = Gradius II Gofer No Yabou QAEJ = A.III: A-Ressha de Ikou III QAFE = The Dynastic Hero QAFJ = Chou Eiyuu Densetsu: Dynastic Hero QAFP = The Dynastic Hero QAGE = Gate of Thunder QAGJ = Gate of Thunder QAGP = Gate of Thunder QAHJ = Kawa no Nushi Tsuni Shizenha QAJJ = Image Fight II QAKJ = Ai Chou Aniki QALJ = The Atlas: Renaissance Voyager QANJ = Neo Nectaris QAOJ = Dungeon Explorer II QAPJ = Akumajou Dracula X: Chi no Rondo QAPL = Castlevania : Rondo of Blood QAPN = Castlevania Rondo of Blood QAPP = Castlevania: Rondo of Blood QAQJ = Dragon Slayer: Eiyuu Densetsu QARJ = Blood Gear QASE = Lords of Thunder QASJ = Winds of Thunder QASP = Lords of Thunder QATE = Riot Zone QATJ = Crest of Wolf QATP = Riot Zone QAUE = Monster Lair QAUJ = Wonder Boy III: Monster Lair QAUP = Monster Lair QAVJ = Bomberman: Panic Bomber QAWJ = Star Parodier QAWL = Star Parodier QAWN = Star Parodier QAXJ = Martial Champion QAYJ = Seirei Senshi Spriggan QAZJ = Eikan wa Kimi ni: Koko Yakyu Zenkoku Taikai QBAJ = L Dis QBBE = Fighting Street QBBJ = Fighting Street QBBP = Fighting Street R01PET = SingItStar Queen R02PEA = SingItStar Rock Ballads R15POH = SingIt Star Radio 105 R22E01 = FlingSmash R22J01 = FlingSmash R22P01 = FlingSmash R23E52 = Barbie y las Tres Mosqueteras R23P52 = Barbie y las Tres Mosqueteras R24J01 = Chibi-Robo! R25EWR = LEGO Harry Potter: Años 1-4 R25PWR = LEGO Harry Potter: Años 1-4 R26E5G = Data East Arcade Classics R27E54 = Dora Salva el Reino de Cristal R27X54 = Dora Salva el Reino de Cristal R28E54 = Top Spin 4 R28P54 = Top Spin 4 R29E52 = NPPL Championship Paintball 2009 R29P52 = Millennium Championship Paintball 2009 R2AE7D = La era del hielo 2 R2AP7D = Ice Age 2: El Deshielo R2AX7D = Ice Age 2: El Deshielo R2DEEB = Dokapon Kingdom R2DJEP = Dokapon Kingdom For Wii R2DPAP = Dokapon Kingdom R2DPJW = Dokapon Kingdom R2EJ99 = Fish Eyes Wii R2FE5G = Freddi Fish: Kelp Seed Mystery R2FP70 = Freddi Fish: Kelp Seed Mystery R2GEXJ = Fragile Dreams: Farewell Ruins of the Moon R2GJAF = Fragile: Sayonara Tsuki no Haikyo R2GP99 = Fragile Dreams: Farewell Ruins of the Moon R2HE41 = Petz Horse Club R2IE69 = Madden NFL 10 R2IP69 = Madden NFL 10 R2JJAF = Taiko no Tatsujin Wii R2KE54 = Don King Boxing R2KP54 = Don King Boxing R2LJMS = Hula Wii: Hura de Hajimeru Bi to Kenkou!! R2ME20 = M&M's Adventure R2NE69 = NASCAR Kart Racing R2OE68 = Medieval Games R2OP68 = Medieval Games R2PE9B = Super Swing Golf Season 2 R2PJ9B = Super Swing Golf Season 2 R2PKZ4 = Super Swing Golf Season 2 R2PP99 = Super Swing Golf R2PP9B = Super Swing Golf R2QJC0 = Cooking Mama 2 Taihen Mama Wa Ooisogashi R2RE4F = Pony Friends 2 R2RP4F = Pony Friends 2 R2SE18 = Deca Sports 2 R2SJ18 = Deca Sporta 2 R2SP18 = Sports Island 2 R2TE41 = Teenage Mutant Ninja Turtles: Smash-Up R2TP41 = Teenage Mutant Ninja Turtles: Smash-Up R2UE8P = Let's Tap R2UJ8P = Let's Tap R2UP8P = Let's Tap R2VE01 = Sin & Punishment: Star Successor R2VJ01 = Sin and Punishment: Successor to the Sky R2VP01 = Sin and Punishment: Successor of the Skies R2WEA4 = Pro Evolution Soccer 2009 R2WJA4 = Winning Eleven PLAY MAKER 2009 R2WPA4 = Pro Evolution Soccer 2009 R2WXA4 = Pro Evolution Soccer 2009 R2YE54 = Birthday Party Bash R2YP54 = ¡Mi Gran Fiesta de Cumpleaños! R32J01 = Metroid Prime 2 R33E69 = AC/DC Live: Rock Band Track Pack R33P69 = AC/DC Live: Rock Band Song Pack R34E69 = Rock Band: Country Track Pack R35JC8 = Sangokushi 11 with Power-Up Kit R36E69 = Green Day: Rock Band R36P69 = Green Day: Rock Band R37E69 = Rock Band: Metal Track Pack R38E78 = Marvel Super Hero Squad R38P78 = Marvel Super Hero Squad R38X78 = Marvel Super Hero Squad: Edición Walmart R38Y78 = Marvel Super Hero Squad R39EFP = Shimano Xtreme Fishing R39PNK = Shimano Extreme Fishing R3AE20 = Story Hour: Adventures R3AP20 = Story Hour: Adventures R3AP7J = Story Hour: Adventures R3BE8P = Samba de Amigo R3BJ8P = Samba de Amigo R3BP8P = Samba de Amigo R3CE20 = Chrysler Classic Racing R3CP20 = Chrysler Classic Racing R3CP7J = Chrysler Classic Racing R3DES5 = Dream Pinball 3D R3DPS5 = Dream Pinball 3D R3EEWR = Game Party 3 R3EPWR = Game Party 3 R3FJA4 = Jikkyou Powerful Major League 3 R3GXUG = Kidz Sports: Crazy Mini Golf R3HP6Z = Agent Hugo: Hula Holiday R3HX6Z = Agent Hugo: Hula Holiday R3IJ01 = Metroid Prime R3JE5G = Go Play Circus Star R3KP6N = Skyscraper R3LEWR = Green Lantern: Rise of the Manhunters R3LPWR = Green Lantern: Rise of the Manhunters R3ME01 = Metroid Prime: Trilogy R3MP01 = Metroid Prime: Trilogy R3NEXS = Guilty Gear XX Accent Core Plus R3NPH3 = Guilty Gear XX Accent Core Plus R3OE01 = Metroid: Other M R3OJ01 = Metroid: Other M R3OP01 = Metroid: Other M R3PEWR = Speed Racer: The Videogame R3PJ52 = Speed Racer R3PPWR = Speed Racer R3RE8P = Sonic & SEGA All-Stars Racing R3RP8P = Sonic & SEGA All-Stars Racing R3SE52 = Spider-Man: Web of Shadows R3SP52 = Spider-Man: El Reino de las Sombras R3TE54 = Top Spin 3 R3TJG9 = Top Spin 3 R3TP54 = Top Spin 3 R3UJGD = Oyako de Asobo: Miffy no Omocha Bako R3VEFP = Deer Drive R3VPNK = Deer Drive R3XE6U = Sam & Max: Season One R3XP6V = Sam & Max: Temporada Uno R3YE70 = Sam & Max: Season Two - Beyond Time and Space R3YP70 = Sam & Max: Temporada Dos - Más Allá del Tiempo y del Espacio R3ZE69 = Rock Band Track Pack: Classic Rock R42E69 = The Sims 2: Castaway R42P69 = Los Sims 2: Náufragos R43E69 = EA Sports Active R43J13 = EA Sports Active Personal Trainer Wii 30-Hi Seikatsu Kaizen Program R43P69 = EA Sports Active R44J8P = Suzumiya Haruhi no Heiretsu R46ENS = Phantom Brave: We Meet Again R46JKB = Phantom Brave Wii R47E20 = ATV Quad Kings R48E7D = The Spiderwick Chronicles R48P7D = Las Crónicas de Spiderwick R49E01 = Donkey Kong Jungle Beat R49J01 = Donkey Kong: Jungle Beat R49P01 = Donkey Kong: Jungle Beat R4AE69 = SimAnimals R4AJ13 = SimAnimals R4AP69 = SimAnimals R4BEJZ = Championship Foosball R4BPGT = Futbolín R4CE69 = SimCity Creator R4CJ13 = Simcity Creator R4CK69 = SimCity Creator R4CP69 = SimCity Creator R4DDUS = Die drei Fragezeichen - Das verfluchte Schloss R4EE01 = Endless Ocean: Blue World R4EJ01 = Forever Blue: Umi no Yobigoe R4EP01 = Endless Ocean 2: Aventuras Bajo el Mar R4FE20 = Story Hour: Fairy Tales R4FP20 = Story Hour: Fairy Tales R4FP7J = Story Hour: Fairy Tales R4IPNK = Mad Tracks R4LPUG = Athletic Piggy Party R4LXUG = Athletic Piggy Party R4MJ0Q = Shikakui Atama wo Marukusuru Wii R4NE5G = Major Minor's Majestic March R4NP5G = Major Minor's Majestic March R4NX5G = Major Minor's Majestic March R4PE69 = The Sims 2: Pets R4PP69 = Los Sims 2: Mascotas R4QE01 = Mario Strikers Charged R4QJ01 = Mario Strikers Charged R4QK01 = Mario Power Soccer R4QP01 = Mario Strikers Charged Football R4RE69 = FIFA Soccer 10 R4RJ13 = FIFA 10 WORLD CLASS SOCCER R4RK69 = FIFA 10 R4RP69 = FIFA 10 R4RX69 = FIFA 10 R4RY69 = FIFA 10 R4RZ69 = FIFA Soccer 10 R4SE54 = MLB Superstars R4VEA4 = Storybook Workshop R4VJA4 = Teleshibai Wii R4VJAF = Tere Shibai Wii R4WJA4 = Jikkyou Powerful Major League 2009 R4YJ2M = Sukeban Shachou Rena Wii R4ZE01 = Fatal Frame 4: Mask of the Lunar Eclipse R4ZJ01 = Fatal Frame 4: Mask of the Lunar Eclipse R4ZP01 = Fatal Frame IV: Mask of the Lunar Eclipse R52E08 = Neopets Puzzle Adventure R52P08 = Neopets Puzzle Adventure R53PFH = In The Mix Featuring Armin van Buuren R54FMR = Countdown: The Game R55F41 = ¿Quién Quiere Ser Millonario? R55P41 = ¿Quién Quiere Ser Millonario? R56EG9 = Astro Boy: The Video Game R56PG9 = Astro Boy: The Video Game R57FMR = Questions pour un champion R58DMR = U-Sing R58FMR = U-Sing R58PMR = U-Sing R58SMR = U-Sing R59D4Q = Disney Club Penguin: ¡Día de Juegos! R59E4Q = Disney Club Penguin: ¡Día de Juegos! R59P4Q = Disney Club Penguin: ¡Día de Juegos! R5AE8P = The Golden Compass R5AP8P = La Brújula Dorada R5AX8P = La Brújula Dorada R5DE5G = Flip's Twisted World R5EPMR = Countdown: The Game R5FE41 = Academy of Champions: Soccer R5FP41 = Escuela de Campeones: Fútbol R5GE78 = Are You Smarter Than A 5th Grader?: Make the Grade R5IE4Q = Toy Story Mania! R5IP4Q = Toy Story Mania! R5IR4Q = Toy Story Mania! R5IX4Q = Toy Story Mania! R5JES5 = Pirates vs. Ninjas Dodgeball R5JPS5 = Pirates vs. Ninjas Dodgeball R5MJAF = Kotoba No Puzzle Mojipittan Wii Deluxe R5NJN9 = Doala De Wii R5OENR = Party Pigs: Farmyard Games R5OXUG = Farmyard Party: Featuring the Olympigs R5PE69 = Harry Potter and the Order of the Phoenix R5PJ13 = Harry Potter and the Order of the Phoenix R5PP69 = Harry Potter y la Orden del Fénix R5PX69 = Harry Potter y la Orden del Fénix R5QPGT = Circus R5SERW = Mortimer Beckett and the Secrets of Spooky Manor R5TE69 = Grand Slam Tennis R5TJ13 = Grand Slam Tennis R5TP69 = Grand Slam Tennis R5UE41 = CSI: Deadly Intent R5UP41 = CSI: Determinación Mortal R5VE41 = James Cameron's Avatar: The Game R5VP41 = James Cameron's Avatar: El Videojuego R5VX41 = James Cameron's Avatar: El Videojuego R5WEA4 = Silent Hill: Shattered Memories R5WJA4 = Silent Hill: Shattered Memories R5XJ13 = MySims Agents R5XP69 = MySims Agents R5YD78 = All Star Cheerleader 2 R5YE78 = All Star Cheer Squad 2 R5YP78 = All Star Cheerleader 2 R62E4Q = Disney Sing It: Pop Hits R62P4Q = Disney Sing It: Pop Hits R63EG9 = Family Party: 30 Great Games Outdoor Fun R63PG9 = Family Party: 30 Great Games Outdoor Fun R64E01 = Wii Music R64J01 = Wii Music R64K01 = Wii Music R64P01 = Wii Music R65ENR = Buck Fever R66E41 = Press Your Luck 2010 Edition R67E6K = Smart Series Presents: JaJa's Adventure R68E5G = Go Play City Sports R69E36 = DiRT 2 R69P36 = Colin McRae: DiRT 2 R6APPU = Mi Nenuco juega R6BE78 = de Blob R6BJ78 = Blob Colorful Na Kibou R6BK78 = de Blob R6BP78 = de Blob R6BX78 = de Blob R6CEAF = We Cheer 2 R6CJAF = WE CHEER Dancing Spirits! R6DFJW = Code de la Route R6EE41 = Family Feud 2010 Edition R6FE41 = Six Flags Fun Park R6FERS = Six Flags Fun Park R6FP41 = Fun Park Party R6GPMR = Golden Balls R6HE54 = Ni Hao, Kai-lan: Super Game Day R6HP54 = Ni Hao, Kai-lan: Super Game Day R6IE54 = Baseball Blast! R6JJGD = Fullmetal Alchemist: Prince of the Dawn R6KP36 = Ashes Cricket 2009 R6KU36 = Ashes Cricket 2009 R6LEWR = LEGO Rock Band R6LPWR = LEGO Rock Band R6ME5Z = America's Next Top Model R6MPML = America's Next Top Model R6MXMR = Top Model R6NE41 = Shaun White Snowboarding: World Stage R6NP41 = Shaun White Snowboarding: World Stage R6NY41 = Shaun White Snowboarding: World Stage R6OE78 = Cars Race-O-Rama R6OP78 = Cars Race-O-Rama R6OX78 = Cars Race-O-Rama R6QE69 = MySims Agents R6REJH = TrackMania: Build to Race R6RPHH = TrackMania R6TEA4 = Tornado Outbreak R6TPA4 = Tornado Outbreak R6VE4Z = King of Clubs R6VPGN = King of Clubs R6WE68 = AMF Bowling World Lanes R6WP68 = AMF Bowling World Lanes R6XE69 = Hasbro: Family Game Night 2 R6XP69 = Hasbro: Juegos en Familia 2 R6YEXS = Squeeballs Party R6YPH3 = Squeeballs Party R72E5G = Cake Mania: In The Mix! R72P5G = Cake Mania: In The Mix! R74E20 = Arcade Shooting Gallery R75E20 = Dream Salon R76E54 = NBA 2K10 R76P54 = NBA 2K10 R77JAF = SD Gundam: G Generation Wars R79JAF = Mobile Suit Gundam: MS Sensen 0079 R7AE69 = SimAnimals Africa R7AJ13 = SimAnimals Africa R7AP69 = SimAnimals África R7BE20 = Jelly Belly Ballistic Beans R7BP7J = Jelly Belly Ballistic Beans R7CJ01 = Capitán Arcoiris R7EE8P = NiGHTS: Journey of Dreams R7EJ8P = NiGHTS: Journey of Dreams R7EP8P = NiGHTS: Journey of Dreams R7FEGD = Final Fantasy Fables: Chocobo's Dungeon R7FJGD = Final Fantasy Fables: Chocobo's Dungeon R7FPGD = Final Fantasy Fables: Chocobo's Dungeon R7GEAF = Dragon Ball: Revenge of King Piccolo R7GJAF = Dragon Ball: Tenkaichi Daibouken R7GPAF = Dragon Ball: Revenge of King Piccolo R7HE6K = Army Rescue R7IE69 = Charm Girls Club: Pajama Party R7IP69 = Charm Girls Club: Pajama Party R7KE6K = Rock Blast R7LP7J = Margot's Bepuzzled! R7MXFR = Musiic Party: Rock the House R7NE20 = Cold Stone Creamery: Scoop It Up R7OE54 = NHL 2K10 R7OP54 = NHL 2K10 R7PE01 = Punch-Out!! R7PJ01 = Punch-Out!! R7PP01 = Punch-Out!! R7QE52 = Chaotic: Shadow Warriors R7RE52 = Little League World Series Baseball 2009 R7SE5G = Escape The Museum R7SP5G = Escape The Museum R7TFJW = Pétanque Pro R7VEWR = Vacation Isle: Beach Party R7VPWR = Vacation Isle: Beach Party R7WE52 = Mountain Sports R7WP52 = Mountain Sports R7XE69 = Need for Speed: Nitro R7XJ13 = Need for Speed: Nitro R7XP69 = Need for Speed: Nitro R7YFMR = Pékin Express R7ZE41 = Team Elimination Games R7ZP41 = Concurso Loco TV Party R82E52 = Animal Planet: Vet Life R82JG0 = Darts Wii DX R82P52 = Animal Planet: Escuela Veterinaria R83EA4 = Pop'n Music R83JA4 = Pop'n Music R83PA4 = Pop'n Rhythm R84EE9 = Harvest Moon: Tree of Tranquility R84J99 = Bokujo for Wii R84P99 = Harvest Moon: El Árbol de la Tranquilidad R85EG9 = The Secret Saturdays: Beasts of the 5th Sun R85PG9 = Los Sábados Secretos: Bestias del Quinto Sol R86E20 = Dream Dance & Cheer R87EVN = Ski-Doo: Snowmobile Challenge R88J2L = Anpanman Niko Niko Party R89JEL = Tokyo Friend Park 2 Wii R8AE01 = PokéPark Wii: Pikachu's Adventure R8AJ01 = PokéPark Wii: Pikachu no Daibouken R8AP01 = PokéPark Wii: La Gran Aventura de Pikachu R8BE41 = Imagine Party Babyz R8BP41 = Baby-sitter Party R8DEA4 = Yu-Gi-Oh! 5D's: Duel Transer R8DJA4 = Yu-Gi-Oh! 5D's: Duel Transer R8DPA4 = Yu-Gi-Oh! 5D's: Master of the Cards R8EJQC = Earth Seeker R8FES5 = Fast Food Panic R8FJHA = Takumi Restaurant ha Daihanjou! R8FJSC = Takumi Restaurant wa Daihanjou! (Simplified Chinese Translation) R8FPNP = Fast Food Panic R8GJC8 = G1 Jockey Wii 2008 R8GPC8 = G1 Jockey 2008 R8HE4Q = Hannah Montana: The Movie R8HP4Q = Hannah Montana: La Película R8HX4Q = Hannah Montana: La Película R8HY4Q = Hannah Montana: La Película R8IE78 = SpongeBob's Truth or Square R8IP78 = Bob Esponja Atrapados en el Congelador R8IS78 = Bob Esponja: Atrapados en el Congelador R8JEWR = The Lord of the Rings: Aragorn's Quest R8JPWR = El Señor de los Anillos: Las Aventuras de Aragorn R8KPKM = Street Football 2 R8LE20 = Chicken Blaster R8LP7J = Chicken Blaster R8NEA4 = The Cages: Pro Style Batting Practice R8NJG0 = Batting Revolution R8OE54 = Ringling Bros. and Barnum & Bailey Circus R8OX54 = Vamos al Circo R8PC01 = Super Paper Mario(CN) R8PE01 = Super Paper Mario R8PJ01 = Super Paper Mario R8PK01 = Super Paper Mario R8PP01 = Super Paper Mario R8QPRT = Crazy Quiz: Are You Crazy Enough? R8RP41 = Arthur y la Venganza de Maltazard R8SE41 = Vacation Sports R8SP41 = Gymkana Party R8SX41 = Gymkana Party R8TENR = Tournament Pool R8UXMR = Adibou R8VE41 = Petz Rescue: Wildlife Vet R8VP41 = My Eco Planet: Veterinarios al Rescate - Aventuras por el Mundo R8XE52 = Jurassic: The Hunted R8XZ52 = Top Shot Dinosaur Hunter R8YE52 = Cabela's Big Game Hunter 2010 R8ZE8P = Daisy Fuentes Pilates R8ZPGT = Daisy Fuentes Pilates R92E01 = Pikmin 2 R92J01 = Pikmin 2 R92P01 = Pikmin 2 R94PMR = The Ultimate Red Ball Challenge R94XMR = The Ultimate Red Ball Challenge R96EAF = Klonoa R96JAF = Kaze no Klonoa: Door to Phantomile R96KAF = Klonoa: Door to Phantomile R96PAF = Klonoa R97E9B = Family Fun Football R9AE52 = Demo Action Pack (Demo) R9BPMT = Bob y Sus Amigos: Festival de la Diversión R9CPMR = I'm a Celebrity... Get Me Out of Here! R9DE78 = Drawn to Life: The Next Chapter R9DP78 = Drawn to Life: Reinventa tu Mundo R9EPNP = Brico Party: ¡Cuidado! Mancha R9FE36 = F1 2009 R9FJ36 = F1 2009 R9FP36 = F1 2009 R9GEWR = Legend of the Guardians: The Owls of Ga'Hoole R9GPWR = Ga'Hoole: La Leyenda de los Guardianes R9HE78 = Are You Smarter Than A 5th Grader?: Game Time R9IE01 = Pikmin R9IJ01 = Pikmin R9IK01 = Pikmin R9IP01 = Pikmin R9JE69 = The Beatles: Rock Band R9JP69 = The Beatles: Rock Band R9KE20 = Groovin' Blocks R9LE41 = Sleepover Party R9LP41 = Girls Life: Pijama Party R9ME5Z = World Championship Athletics R9MPFR = Summer Athletics 2009 R9NPMR = Family Fortunes R9OE69 = Tiger Woods PGA Tour 10 R9OK69 = Tiger Woods PGA Tour 10 R9OP69 = Tiger Woods PGA Tour 10 R9QPNG = Dance Party Club Hits R9RPNG = Dance Party Pop Hits R9SPPL = Sudoku Ball: Detective R9TE69 = Tiger Woods PGA Tour 09 All-Play R9TJ13 = Tiger Woods PGA Tour 09 All-Play R9TK69 = Tiger Woods PGA Tour 09 R9TP69 = Tiger Woods PGA Tour 09 All-Play R9UE52 = Build-A-Bear Workshop: Friendship Valley R9UPGY = Build-A-Bear Workshop: Friendship Valley R9VE52 = Cabela's Outdoor Adventures 2010 R9WPSP = WSC Real 09: World Snooker Championship R9XE52 = Arcade Zone R9XP52 = Arcade Zone R9YES5 = Sled Shred R9ZE54 = Major League Baseball 2K9 RABAZZ = System Menu Changer RADP01 = New Super Mario Bros. Wii 0-6 Radiance RB2E6K = Balloon Pop RB2J2K = Rainbow Pop RB2P6K = Pop! RB2PGT = Pop! RB4E08 = Resident Evil 4: Wii Edition RB4J08 = Biohazard 4 Wii Edition RB4P08 = Resident Evil 4: Wii Edition RB4X08 = Resident Evil 4: Wii Edition RB5E41 = Brothers In Arms: Earned In Blood RB5P41 = Brothers in Arms: Earned in Blood RB6J18 = Bomberman RB7E54 = Bully: Scholarship Edition RB7P54 = Bully: Scholarship Edition RB8E70 = Backyard Baseball '09 RB9D78 = Bratz: La Película RB9E78 = Bratz: The Movie RB9P78 = Bratz: La Película RB9X78 = Bratz: La Película RB9Y78 = Bratz: La Película RBAE41 = Blazing Angels: Squadrons of WWII RBAP41 = Blazing Angels: Squadrons of WWII RBBE18 = Bomberman Land RBBJ18 = Bomberman Land Wii RBBP99 = Bomberman Land Wii RBCP41 = Telly Addicts RBEE52 = Bee Movie Game RBEP52 = Bee Movie: El Videojuego RBEX52 = Bee Movie: El Videojuego RBFE20 = Balls of Fury RBFP20 = Balls of Fury RBFP7J = Balls of Fury RBGE54 = The Bigs RBGP54 = The Bigs RBHE08 = Resident Evil Archives: Resident Evil Zero RBHJ08 = Biohazard 0 RBHP08 = Resident Evil Archives: Resident Evil Zero RBIEE9 = Harvest Moon: Animal Parade RBIJ99 = Bokujou Monogatari Waku Waku Animal March RBIP99 = Harvest Moon: Animal Parade RBKE69 = Boom Blox RBKJ13 = Boom Blox RBKK69 = Boom Blox RBKP69 = Boom Blox RBLE8P = Bleach: Shattered Blade RBLJ8P = Bleach: Shattered Blade RBLP8P = Bleach: Shattered Blade RBME5G = Bust-a-Move Bash! RBMPGT = Bust-A-Move RBNEG9 = Ben 10: Protector of Earth RBNPG9 = Ben 10: Protector of Earth RBNXG9 = Ben 10: Protector of Earth RBOE69 = Boogie RBOP69 = Boogie RBPE4Z = Brunswick Pro Bowling RBPP4Z = Brunswick Pro Bowling RBPPGT = Brunswick Pro Bowling RBQENR = Classic British Motor Racing RBQPUG = Classic British Motor Racing RBRE5G = Blast Works: Build, Trade, Destroy RBRP5G = Blast Works: Build, Trade, Destroy RBRX5G = Blast Works: Build, Trade, Destroy RBSJ08 = Sengoku Basara 2 Heroes (Double Pack) RBSJ09 = Sengoku Basara 2 Heroes RBTE8P = SEGA Bass Fishing RBTJ8P = Sega Bass Fishing RBTP8P = Sega Bass Fishing RBUE08 = Resident Evil: The Umbrella Chronicles RBUJ08 = Biohazard The Umbrella Chronicles RBUK08 = Biohazard: The Umbrella Chronicles RBUP08 = Resident Evil: The Umbrella Chronicles RBVE52 = Barbie as The Island Princess RBVP52 = Barbie en La Princesa de los Animales RBWE01 = Battalion Wars 2 RBWJ01 = Totsugeki Famicom Wars vs. RBWP01 = Battalion Wars 2 RBXJ8P = Bleach: Versus Crusade RBYE78 = Barnyard RBYJ78 = Barnyard RBYP78 = El Corral: Una Fiesta Muy Bestia RBZE5Z = Billy the Wizard: Rocket Broomstick Racing RBZP5Z = Billy the Wizard: Rocket Broomstick Racing RBZPUG = Billy the Wizard: Rocket Broomstick Racing RBZXUG = Billy the Wizard: Rocket Broomstick Racing RC2E78 = Cars: Mater-National RC2P78 = Cars: La Copa Internacional de Mate RC2X78 = Cars: La Copa Internacional de Mate RC2Y78 = Cars: La Copa Internacional de Mate RC3E41 = Petz Catz 2 RC3J41 = Nyanko To Mahou No Boushi RC3P41 = Catz: Diviértete con Nuevos Felinos RC3X41 = Catz: Diviértete con Nuevos Felinos RC4JD9 = Crayon Shin-Chan: Saikyou Kazoku Kasukabe King Wii RC4SGT = Shin Chan: ¡Las Nuevas Aventuras para Wii! RC5JDQ = Osouji Sentai Clean Keeper RC7E20 = Sea Monsters: A Prehistoric Adventure RC7P7J = Sea Monsters: A Prehistoric Adventure RC8E7D = Crash: Mind Over Mutant RC8P7D = Crash: Guerra al Coco-Maníaco RC8X7D = Crash: Mind Over Mutant RC9PGN = CID: The Dummy RCAE78 = Cars RCAJ78 = Cars RCAP78 = Cars RCAX78 = Cars RCAY78 = Cars RCBE52 = Cabela's Big Game Hunter RCBP52 = Cabela's Big Game Hunter RCCE5G = Cooking Mama: Cook Off RCCJC0 = Cooking Mama RCCPGT = Cooking Mama RCCR78 = Guitar Hero III Custom: Coheed and Cambria RCDD52 = Call of Duty 3 RCDE52 = Call of Duty 3 RCDP52 = Call of Duty 3 RCDX52 = Call of Duty 3 RCEE5Z = Mini Desktop Racing RCEPUG = Mini Desktop Racing RCEXUG = Mini Desktop Racing RCFE41 = Cosmic Family RCFP41 = La Familia Cosmic RCGE54 = Carnival Games RCGP54 = Carnival: Juegos de Feria RCHC52 = Guitar Hero III Custom : Guitar Hero II RCHEAF = We Cheer RCHJAF = We Cheer RCHPAF = We Cheer RCHPGT = We Cheer RCIE41 = CSI: Hard Evidence RCIP41 = CSI: Pruebas Ocultas RCJE8P = The Conduit RCJP8P = The Conduit RCKPGN = Sports Challenge: Desafío Deportivo RCLE4Q = Disney's Chicken Little: Ace in Action RCLP4Q = Chicken Little: As en Acción RCOC99 = Meitantei Conan: Tsuioku no Mirage RCOJ99 = Meitantei Conan: Tsuioku no Mirage RCOK99 = Detective Conan: Case Closed: The Mirapolis Investigation RCOKZF = Case Closed: The Mirapolis Investigation RCOPNP = Detective Conan: La Investigación de Mirápolis RCPE18 = Kororinpa: Marble Mania RCPJ18 = Kororinpa RCPP18 = Kororinpa RCQEDA = Penny Racers Party: Turbo-Q Speedway RCQJDA = Choro Q RCRE5D = Cruis'n RCRP5D = Cruis'n RCSE20 = Chicken Shoot RCSP20 = Chicken Shoot RCSP7J = Chicken Shoot RCTE5Z = Counter Force RCTP5Z = Counter Force RCTPGT = Counter Force RCUE52 = Cabela's Legendary Adventures RCUP52 = Cabela's Legendary Adventures RCVE41 = Far Cry: Vengeance RCVP41 = Far Cry: Vengeance RCXE78 = All Star Cheer Squad RCXP78 = All Star Cheerleader RCXX78 = All Star Cheerleader RCYPGN = Cheggers Party Quiz RD2E41 = Red Steel 2 RD2J41 = Red Steel 2 RD2K41 = Red Steel 2 RD2P41 = Red Steel 2 RD2X41 = Red Steel 2 RD4EA4 = Dance Dance Revolution: Hottest Party 2 RD4JA4 = Dance Dance Revolution: Furu Furu Party RD4PA4 = Dance Dance Revolution: Hottest Party 2 RD6EE9 = Animal Kingdom: Wildlife Expedition RD6J8N = Doubutu Kisoutengai RD6PNP = Safar'Wii RD8E52 = Dancing with the Stars RD9J18 = Sudoku RDAE52 = Dancing with the Stars: We Dance! RDBE70 = Dragon Ball Z: Budokai Tenkaichi 2 RDBJAF = Dragon Ball Z: Sparking! NEO RDBP70 = Dragon Ball Z: Budokai Tenkaichi 2 RDBPAF = Dragon Ball Z : Budokai Tenkaichi 2 RDCE78 = Deadly Creatures RDCP78 = Deadly Creatures RDDEA4 = Dance Dance Revolution: Hottest Party RDDJA4 = Dance Dance Revolution: Hottest Party RDDPA4 = Dance Dance Revolution: Hottest Party RDEJ0A = Zenkoku Dekotora Matsuri RDFE41 = Shaun White Snowboarding: Road Trip RDFP41 = Shaun White Snowboarding: Road Trip RDGEA4 = Castlevania Judgment RDGJA4 = Akumajou Dracula Judgment RDGPA4 = Castlevania Judgement RDHE78 = Destroy All Humans! Big Willy Unleashed RDHP78 = Destroy All Humans! Big Willy Desatado! RDIE41 = The Dog Island RDIJG2 = The Dog Island RDIP41 = The Dog Island RDJE4F = Death Jr.: Root of Evil RDJP4F = Death Jr.: Root of Evil RDKE01 = Donkey Kong: Barrel Blast RDKJ01 = Donkey Kong Taru Jet Race RDKP01 = Donkey Kong Jet Race RDLE5G = Spy Fox in Dry Cereal RDLP70 = Spy Fox in Dry Cereal RDME6K = Domino Rally RDMJ8N = Go! Go! Minon RDMPHZ = Minon: Héroe Total RDNEA4 = Dance Dance Revolution: Disney Grooves RDOE41 = Petz Dogz 2 RDOJ41 = Dog To Mahou No Boushi RDOP41 = Dogz: ¡Diviértete con Más Perros! RDOX41 = Dogz: ¡Diviértete con Más Perros! RDPE54 = Dora Saves the Snow Princess RDPP54 = Dora al Rescate de la Princesa de la Nieve RDPX54 = Dora al Rescate de la Princesa de la Nieve RDQEGD = Dragon Quest Swords: The Masked Queen and The Tower of Mirrors RDQJGD = Dragon Quest Swords: Kamen no Joou to Kagami no Tou RDQPGD = Dragon Quest Swords: La Reina Enmascarada y la Torre de los Espejos RDREA4 = Dewy's Adventure RDRJA4 = Dewy's Adventure RDRPA4 = Dewy's Adventure RDSE70 = Dragon Ball Z: Budokai Tenkaichi 3 RDSJAF = Dragon Ball Z: Sparking! METEOR RDSPAF = Dragon Ball Z: Budokai Tenkaichi 3 RDSZ70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino RDTEAF = Tamagotchi: Party On! RDTJAF = Tamagotchi Pikadai RDTPAF = Tamagotchi: Party On! RDUE01 = DU Super Mario Bros.: Find That Princess RDUJDQ = Sugorochronicle Migite Ni Ken Wo Hidarite Ni Saikoro Wo RDVE41 = Driver: Parallel Lines RDVP41 = Driver: Parallel Lines RDWEG9 = Dragon Blade: Wrath of Fire RDWJG9 = Dragon Blade: Wrath of Fire RDWPG9 = Dragon Blade: Wrath of Fire RDXE18 = Deca Sports RDXJ18 = Deca Sporta RDXKA4 = Deca Sporta RDXP18 = Sports Island RDYEGN = CID: The Dummy RDZJ01 = Disaster: Day of Crisis RDZP01 = Disaster: Day of Crisis RE3ENR = WWII Aces RE4E08 = Resident Evil Archives: Resident Evil RE4J08 = Biohazard RE4P08 = Resident Evil Archives: Resident Evil RE5PAF = The Munchables RE6PRT = Summer Challenge: Athletics Tournament RE7PNK = Hunting Challenge RE8J99 = Katekyoo Hitman Reborn Kindan No Yami No Delta REAE69 = Celebrity Sports Showdown REAF69 = Celebrity Sports Showdown REAP69 = Celebrity Sports Showdown REBE4Z = Mr. Bean's Wacky World of Wii REBPMT = Mr. Bean en el Estrambótico Mundo de Wii RECE6K = Spy Games: Elevator Mission RECP6K = Spy Games: Elevator Mission REDE41 = Red Steel REDJ41 = Red Steel REDP41 = Red Steel REFP41 = My French Coach: Improve Your French REGE36 = Emergency Mayhem REGP36 = Emergency Mayhem REHE41 = Emergency Heroes REHP41 = Emergency Heroes REJEAF = Active Life: Extreme Challenge REJJAF = Family Trainer 2 REJPAF = Family Trainer: Extreme Challenge REKE41 = Gold's Gym: Cardio Workout REKJ2N = Shape Boxing Wii De Enjoy Diet REKP41 = Mi Experto en Fitness: Cardio Training REKU41 = Mi Experto en Fitness: Cardio Training RELEA4 = Elebits RELJA4 = Elebits RELKA4 = Elebits RELPA4 = Eledees RELSAB = Sonic Adventure DX: Director's Cut (Preview Prototype) REMJ8P = Doraemon Wii Himitsu Douguou Ketteisen RENE8P = Sonic y el Caballero Negro RENJ8P = Sonic and the Black Knight RENP8P = Sonic y el Caballero Negro REQE54 = Go Diego Go! Safari Rescue REQP54 = Go, Diego, Go!: Safari Rescue REQX54 = Go, Diego, Go!: Safari Rescue REQY54 = Go, Diego, Go!: Safari Rescue RESP41 = My Spanish Coach: Improve Your Spanish RETJAF = Ennichi No Tatsujin REUPNK = My Body Coach REVJ8P = Imabi Kisô: Kaimei Hen REVJBP = Imabikisou: Kaimei Hen REWFMR = My Horse Club: On the Trail of the Mysterious Appaloosa REWXMR = My Horse Club: On the Trail of the Mysterious Appaloosa REWYMR = My Horse Club: On the Trail of the Mysterious Appaloosa REXE01 = Excite Truck REXJ01 = Excite Truck REXP01 = Excite Truck REYE4Q = Disney Sing It: High School Musical 3 Senior Year REYP4Q = Disney Sing It: High School Musical 3 - Fin de Curso REYX4Q = Disney Sing It: High School Musical 3 - Fin de Curso REZEJJ = Fritz Chess REZPKM = Fritz Chess RF2E54 = Fantastic Four: Rise of the Silver Surfer RF2P54 = Los 4 Fantásticos y Silver Surfer RF3E52 = Ferrari Challenge: Trofeo Pirelli RF3P6M = Ferrari Challenge: Trofeo Pirelli RF4E36 = Super Fruit Fall RF4P6M = Super Fruit Fall RF7J08 = Tatsunoko vs. Capcom: Cross Generation of Heroes RF8E69 = FIFA Soccer 08 RF8J13 = FIFA 08 RF8K69 = FIFA 08 RF8P69 = FIFA 08 RF8X69 = FIFA 08 RF8Y69 = FIFA 08 RF9E69 = FIFA Soccer 09 All-Play RF9J13 = FIFA 09 All-Play RF9K69 = FIFA 09 All-Play RF9P69 = FIFA 09 All-Play RF9X69 = FIFA 09 All-Play RF9Y69 = FIFA 09 All-Play RFAEAF = Active Life: Outdoor Challenge RFAJAF = Family Trainer: Athletic World RFAPAF = Family Trainer RFBE01 = Endless Ocean RFBJ01 = Forever Blue RFBP01 = Endless Ocean RFCEGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFCJGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFCPGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFEE01 = Fire Emblem: Radiant Dawn RFEJ01 = Fire Emblem Akatsuki No Megami RFEP01 = Fire Emblem: Radiant Dawn RFFEGD = Final Fantasy Crystal Chronicles: Echoes of Time RFFJGD = Final Fantasy Crystal Chronicles: Echoes of Time RFFPGD = Final Fantasy Crystal Chronicles: Echoes of Time RFJJAF = Family Jockey RFKE41 = My Fitness Coach RFKJ41 = My Fitness Coach RFKP41 = Mi Experto En Fitness: Mantente en Forma RFKX41 = Mi experto en Fitness: Mantente en Forma RFLE69 = Madden NFL 09 All-Play RFLP69 = Madden NFL 09 All-Play RFLPWK = Wii Freeloader RFMJAF = Pro Yakyuu Family Stadium RFNE01 = Wii Fit RFNJ01 = Wii Fit RFNK01 = Wii Fit RFNP01 = Wii Fit RFNW01 = Wii Fit RFOE52 = Spider-Man: Friend or Foe RFOP52 = Spider-Man: Amigo o Enemigo RFOX52 = Spider-Man: Amigo o Enemigo RFPE01 = Wii Fit Plus RFPJ01 = Wii Fit Plus RFPK01 = Wii Fit Plus RFPP01 = Wii Fit Plus RFPR01 = Wii Fit Plus RFPW01 = Wii Fit Plus RFQE69 = FaceBreaker K.O. Party RFQJ13 = FaceBreaker K.O. Party RFQJ69 = FaceBreaker K.O. Party RFQK69 = FaceBreaker: K.O. Party RFQP69 = FaceBreaker: K.O. Party RFRE5G = Furu Furu Park RFRJC0 = Furu Furu Park RFSEEB = Shiren the Wanderer RFSJ8P = Fushigi No Dungeon: Furai No Shiren 3 RFTE70 = Backyard Football RFTP70 = Backyard Football '08 RFUJA4 = Mahjong Kakutou Club Wii: Wi-fi Taiou RFVE52 = Monkey Mischief! Party Time RFVP52 = ¡Los Monos Locos! RFWE5Z = Safari Adventures Africa RFWPNK = Safari Adventures Africa RFYFMR = Fort Boyard RFZE41 = Imagine Fashion Party RFZP41 = Imagina Ser Presenta: El Gran Concurso de la Moda RG0E52 = Guitar Hero III Custom: Green Day Plus RG1552 = Guitar Hero III Custom: Weird Al Yankovic RG1E52 = Guitar Hero III Custom: Revenge RG2E52 = Guitar Hero III Custom: The Beatles Plus RG2EXS = Guilty Gear XX Accent Core RG2JJF = Guilty Gear XX Accent Core RG2PGT = Guilty Gear XX Accent Core RG2PXS = Guilty Gear XX Accent Core RG3E52 = Guitar Hero III Custom: Muse and Rush RG4152 = Guitar Hero III Custom: Sum 41 RG4E52 = Guitar Hero Mayan Apocalypse RG4JC0 = Let's Go By Train Shinkansen EX RG5EWR = Guinness World Records: The Videogame RG5PWR = Guinness World Records: El Videojuego RG6E69 = Boogie SuperStar RG6P69 = Boogie Superstar RG7EQH = City Builder RG8E41 = Petz Sports RG8P41 = Animalz Sports: Dogz RG9E52 = Guitar Hero III Custom: Anarchy RG9E54 = Carnival Games: Mini Golf RG9P54 = Carnival Games: Mini Golf RGAE8P = Planet 51: The Game RGAP8P = Planet 51: El Videojuego RGBE08 = Harvey Birdman: Attorney at Law RGBP08 = Harvey Birdman: Attorney at Law RGCEXS = MiniCopter: Adventure Flight RGCJJF = Petitcopter Wii Adventure Flight RGCM52 = Guitar Hero III Custom: Metallica RGCPGT = Radio Helicopter RGCS52 = Guitar Hero III Custom: ClasSick Edition RGDEA4 = Target: Terror RGDPA4 = Target: Terror RGEJJ9 = The World Of Golden Eggs Norinori Rhythm RGEK52 = Guitar Hero III Custom: Slipknot RGFE69 = The Godfather: Blackhand Edition RGFF69 = El Padrino: El Chantaje RGFI69 = El Padrino: El Chantaje RGFP69 = El Padrino: El Chantaje RGFS69 = El Padrino: El Chantaje RGGE52 = Guitar Hero III Custom: Rock The Games RGGJAF = Gegege No Kitarou Youkai Daiundoukai RGHC20 = Guitar Hero III Custom: Fail Edition RGHE51 = Guitar Hero III Custom: Aspero RGHE52 = Guitar Hero III: Legends of Rock RGHE60 = Guitar Hero III Custom: WTF Custom RGHE61 = I Fought The Law - GH3 RGHE62 = Sweet Home Alabama - GH3 RGHE69 = Guitar Hero III Custom: Legends of METAL RGHEMR = Guitar Hero III Custom: Modern Rock RGHI52 = Guitar Hero III Custom: Chimba RGHJ52 = Guitar Hero III Legends of Rock RGHK52 = Guitar Hero III: Legends of Rock RGHP52 = Guitar Hero III: Legends of Rock RGHPOH = SingItStar Italian Greatest Hits RGHPS2 = Guitar Hero III Custom: J-Music RGHX52 = Guitar Hero III Custom: Anime's Alex Chan RGIJC8 = G1 Jockey Wii RGIPC8 = G1 Jockey Wii RGJE4Z = George of the Jungle: Search for the Secret RGJP7U = George de la Jungla RGKE52 = Guitar Hero III Custom: KoRn RGKENR = Kidz Sports: Crazy Golf RGKPNR = Crazy Mini Golf RGLE7D = Geometry Wars: Galaxies RGLP7D = Geometry Wars: Galaxies RGME5D = The Grim Adventures of Billy & Mandy RGMP5D = The Grim Adventures of Billy & Mandy RGNJAF = Gintama Yorozuya Tuve RGOJJ9 = The World of Golden Eggs Nissan Note Version RGPJAF = Anime Slot Revolution Pachi-Slot Kidou Senshi Gundam II Ai Senshi Hen RGQE70 = Ghostbusters: The Video Game RGQP70 = Los Cazafantasmas: El Videojuego RGRM52 = Guitar Hero III Custom: Rock & Metal RGSE8P = Ghost Squad RGSJ8P = Ghost Squad RGSP8P = Ghost Squad RGTE41 = GT Pro Series RGTJBL = GT Pro Series RGTP41 = GT Pro Series RGVE52 = Guitar Hero: Aerosmith RGVE99 = Guitar Hero Aerosmith Custom: NOT Aerosmith but... RGVJ52 = Guitar Hero: Aerosmith RGVP52 = Guitar Hero: Aerosmith RGWE41 = Rabbids Mi Caaasa!!! RGWJ41 = Rabbids Go Home RGWP41 = Rabbids Mi Caaasa!!! RGWX41 = Rabbids Mi Caaasa!!! RGXE5D = Game Party RGXEFN = Guitar Hero III Custom: Meteo Last Custom RGXM52 = Guitar Hero III Custom: xMxExTxAxLx's Edition RGXP5D = Game Party RGYE5Z = Action Girlz Racing RGYPUG = Action Girlz Racing RGZC52 = Guitar Hero III Custom: Led Zeppelin RGZE52 = Guitar Hero III Custom: Shred Edition RGZE70 = Godzilla Unleashed RGZP70 = Godzilla Unleashed RH2E41 = Hell's Kitchen: The Video Game RH2P41 = Hell's Kitchen RH3E4Q = High School Musical 3: Senior Year Dance! RH3J4Q = High School Musical 3: Senior Year Dance! RH3P4Q = High School Musical 3: Fin de Curso Dance! RH4XUG = Hamster Heroes RH5EVN = Horse Life Adventures RH5PKM = Horse Life 2: Amigos para Siempre RH6E69 = Harry Potter and the Half-Blood Prince RH6K69 = Harry Potter and the Half-Blood Prince RH6P69 = Harry Potter y el Misterio del Príncipe RH7J8P = Jissen Pachislot Hisshouhou! Sammy's Collection Hokuto no Ken Wii RH8E4F = Tomb Raider: Underworld RH8JEL = Tomb Raider: Underworld RH8P4F = Tomb Raider: Underworld RH8X4F = Tomb Raider: Underworld RH9JC8 = Harukanaru Toki no Naka de 4 RHAE01 = Wii Play RHAJ01 = Hajimete no Wii RHAK01 = Wii Play RHAP01 = Wii Play RHAW01 = Wii Play RHCE52 = The History Channel: Battle for the Pacific RHCP52 = The History Channel: Battle for the Pacific RHD222 = The House of The Dead 2 RHD333 = The House of the Dead 3 RHDE8P = The House of the Dead 2 & 3 Return RHDJ8P = The House of the Dead 2 & 3 Return RHDP8P = The House of the Dead 2 & 3 Return RHEEJJ = Professor Heinz Wolff's Gravity RHEPKM = Professor Heinz Wolff's Gravity RHFE5D = Happy Feet RHFP5D = Happy Feet RHGH52 = Guitar Hero III Custom : RandomHero's RHGP6Z = Agent Hugo: Lemoon Twist RHGX6Z = Agent Hugo: Lemoon Twist RHHJ8J = Suzumiya Haruhi no Gekidou RHIEXJ = Victorious Boxers: Revolution RHIJ41 = Hajime No Ippo Revolution RHIJJ9 = Hajime No Ippo Revolution RHIP41 = Victorious Boxers Challenge RHJJ13 = Ginsei Table Games Wii RHKE18 = Help Wanted: 50 Wacky Jobs RHKJ18 = Hataraku Hit RHKP18 = Job Island RHLE4Z = World Championship Poker Featuring Howard Lederer: All-In RHLPGT = World Championship Poker Featuring Howard Lederer: All-In RHMEE9 = Harvest Moon: Magical Melody RHMP99 = Harvest Moon: Magical Melody RHNE70 = My Horse & Me RHNP70 = My Horse & Me RHOE8P = The House of the Dead: Overkill RHOJ8P = The House of The Dead: Overkill RHOP8P = The House of the Dead: Overkill RHPJ8N = Akko De Pon! Ikasama Hourouki RHQE4Q = Hannah Montana: Spotlight World Tour RHQP4Q = Hannah Montana: Únete a Su Gira Mundial RHQX4Q = Hannah Montana: Únete a Su Gira Mundial RHQY4Q = Hannah Montana: Únete a Su Gira Mundial RHRJ99 = Kateikyou Hitman Reborn! Dream Hyper Battle! Wii RHSE36 = Heatseeker RHSP36 = Heatseeker: Tormenta de Fuego RHSX36 = Heatseeker: Tormenta de Fuego RHSY36 = Heatseeker: Tormenta de Fuego RHTE54 = Manhunt 2 RHTP54 = Manhunt 2 RHUE20 = Skate City Heroes RHUP20 = Skate City Heroes RHUP7J = Skate City Heroes RHVE5Z = Crazy Chicken Tales RHVPFR = Crazy Chicken Tales RHWE52 = Hot Wheels: Beat That! RHWP52 = Hot Wheels: Beat That! RHXE78 = Battle of the Bands RHXP78 = Battle of the Bands RHYJAF = Haneru no Tobira Wii RHZE41 = Petz Horsez 2 RHZP41 = Horsez: El Valle del Rancho RI1POH = SingItStar Italian Party RI2E4Q = High School Musical: Sing It! RI2P4Q = High School Musical: ¡Canta con ellos! RI2POH = SingItStar Italian Party vol. 2 RI3E5D = The Ant Bully RI3P5D = The Ant Bully RI3POH = SingItStar Italian Top.it RI6ENR = Summer Sports 2: Island Sports Party RI6P41 = Summer Sports Party RI7E4Z = Monster Mayhem: Build and Battle RI8E41 = Brothers in Arms: Road to Hill 30 RI8P41 = Brothers in Arms: Road to Hill 30 RI9EGT = Diva Girls: Divas on Ice RI9PGT = Divagirls: Princesas Sobre Hielo RIAE52 = Ice Age: Dawn of the Dinosaurs RIAI52 = Ice Age 3: El Origen de los Dinosaurios RIAP52 = Ice Age 3: El Origen de los Dinosaurios RIBES5 = Igor the Game RIBPKM = Igor: El Videojuego RICENR = Iron Chef America: Supreme Cuisine RIDE20 = Smiley World: Island Challenge RIDP7J = Smiley World: Island Challenge RIEEA4 = Karaoke Revolution Presents: American Idol Encore RIFEA4 = Karaoke Revolution Presents: American Idol Encore 2 RIGE54 = Go, Diego, Go! Great Dinosaur Rescue RIGP54 = Go, Diego, Go!: Great Dinosaur Rescue RIHE8P = The Incredible Hulk RIHP8P = El Increíble Hulk RIIEQH = Kart Racer RIIPNG = Kart Racer RIIV = Riivolution RIJE69 = G.I. JOE: The Rise of Cobra RIJP69 = G.I. JOE RIKEQH = Truck Racer RIKPNG = Truck Racer RILJ18 = Puzzle Series Vol. 2: Illust Logic + Colorful Logic RIME36 = Impossible Mission RIMP6M = Impossible Mission RINE08 = Dead Rising: Chop Till You Drop RINJ08 = Dead Rising Zombie No Ikenie RINP08 = Dead Rising: Terror en el Hipermercado RIOPSU = Esa Horrible Historia: Depravados Romanos RIPEAF = One Piece: Unlimited Adventure RIPJAF = One Piece: Unlimited Adventure RIPPAF = One Piece Unlimited Cruise 1: El Tesoro Bajo las Olas RIQPUJ = Dancing on Ice RIRE8P = Iron Man RIRP8P = Iron Man RITFMR = Intervilles: Le Jeu Officiel RIUJAF = One Piece Unlimited Cruise 2: Awakening of a Hero RIUPAF = One Piece - Unlimited Cruise 2: El Despertar de un Héroe RIVEXJ = Ivy the Kiwi? RIVJAF = Ivy the Kiwi? RIVP99 = Ivy the Kiwi? RIWENR = Burger Island RIXE20 = Dodge Racing: Charger vs. Challenger RIXP7J = Dodge Racing: Charger vs. Challenger RIYE52 = Space Camp RIYP52 = Space Camp RIZENR = Indianapolis 500 Legends RJ2E52 = 007: Quantum of Solace RJ2JGD = 007: Quantum of Solace RJ2P52 = 007: Quantum of Solace RJ3E20 = Jeep Thrills RJ3P7J = Jeep Thrills RJ4ENR = Jewel Master: Cradle of Rome RJ4PRM = Jewel Master: Cradle of Rome RJ6E69 = MySims Sky Heroes RJ6P69 = MySims Sky Heroes RJ7FWP = Télé 7 Jeux: Mots Fléchés RJ8E64 = Indiana Jones and the Staff of Kings RJ8P64 = Indiana Jones y el Cetro de los Reyes RJ9E5Z = thinkSMART Family RJ9FMR = Think: Sigue Entrenando tu Cerebro RJ9PFR = Think: Sigue Entrenando tu Cerebro RJ9XML = Think: Sigue Entrenando tu Cerebro RJAD52 = Call of Duty: Modern Warfare: Reflex RJAE52 = Call of Duty: Modern Warfare: Reflex RJAP52 = Call of Duty: Modern Warfare: Reflex RJAX52 = Call of Duty: Modern Warfare: Reflex RJBJAF = Daikaijuu Battle Ultra Coliseum RJCE52 = Score International Baja 1000: World Championship Offroad Racing RJCP52 = Score International Baja 1000: World Championship Offroad Racing RJDPKM = Mi Hospital de Animales RJEE70 = Jenga World Tour RJEP70 = Jenga World Tour RJFE5G = Fitness Ultimatum 2009 de Jillian Michaels RJFP5G = Fitness Ultimatum 2009 de Jillian Michaels RJFPKM = Fitness Ultimatum 2009 con Jillian Michaels RJGJDA = Jinsei Game Wii RJHE52 = Madagascar Kartz RJHP52 = Madagascar Kartz RJIP6M = Ferrari: The Race Experience RJJE8P = Jambo! Safari Animal Rescue RJJG52 = Guitar Hero III Custom: JJ-KwiK's Edition RJJP8P = Jambo! Safari RJMERS = Jumper: Griffin's Story RJMPRS = Jumper RJNE20 = Build 'n Race RJOEXJ = Ju-on: The Grudge RJOJJ9 = Kyoufu Taikan Juon RJOP99 = Ju-On: The Grudge RJPJA4 = Jikkyou Powerful Pro Yakyuu Wii RJQE5G = Pajama Sam: Don't Fear the Dark RJQP70 = Pajama Sam: Don't Fear the Dark RJREA4 = Dance Dance Revolution: Hottest Party 3 RJRJA4 = Dance Dance Revolution: MUSIC FIT RJRPA4 = Dance Dance Revolution: Hottest Party 3 RJSENR = Kawasaki Jet Ski RJSPNR = Kawasaki Jet Ski RJSPUG = Kawasaki Jet Ski RJSXUG = Kawasaki Jet Ski RJTJ01 = Minna no Joushiki Ryoku TV RJVEGN = Hysteria Hospital: Emergency Ward RJVPGN = Hysteria Hospital: Emergency Ward RJWJEL = Jawa mammoth And A Secret Stone RJXE5G = Go Play Lumberjacks RJXXFR = Go Play Lumberjacks RJYE5Z = Doctor Fizzwizzle's Animal Rescue RJZP7U = SNK Arcade Classics: Volumen 1 RK2EEB = Trauma Center: New Blood RK2JEB = Trauma Center: New Blood RK2P01 = Trauma Center: New Blood RK3J01 = And-Kensaku RK4JAF = Kekkaishi RK5E01 = Kirby's Epic Yarn RK5J01 = Keito no Kirby RK5K01 = Kirby's Epic Yarn RK5P01 = Kirby's Epic Yarn RK6E18 = Marble Saga: Kororinpa RK6J18 = Kororinpa 2 RK6P18 = Marbles! Balance Challenge RK7J0A = Ougon no Kizuna RK8E54 = Major League Baseball 2K8 RK9EA4 = Karaoke Revolution RK9PA4 = Karaoke Revolution RKAE6K = Ultimate Shooting Collection RKAJMS = Milestone Shooting Collection RKAK8M = Milestone Shooting Collection Karous Wii RKAP6K = Ultimate Shooting Collection RKBE41 = Cranium Kabookii RKBP41 = Cranium Kabookii RKDEEB = Trauma Center: Second Opinion RKDJEB = Trauma Center: Second Opinion RKDJG9 = Kamen Rider: Climax Heroes W RKDP01 = Trauma Center: Second Opinion RKDPEB = Trauma Center: Second Opinion RKEENR = Cate West: The Vanishing Files RKEPGN = Cate West: The Vanishing Files RKEPNR = Cate West: The Vanishing Files RKFEH4 = The King of Fighters Collection: The Orochi Saga RKFKZA = King of Fighters Collection: The Orochi Saga RKFP7U = The King of Fighters Collection: The Orochi Saga RKGEGY = Bratz Kidz: Slumber Party RKGPGY = Bratz: Kidz Party RKHE52 = Kung Fu Panda: Legendary Warriors RKHP52 = Kung Fu Panda: Guerreros Legendarios RKIENR = Kidz Sports: Ice Hockey RKIPUG = Kidz Sports: Ice Hockey RKJJ0Q = 250 Mannin no Kanken Wii de Tokoton Kanji Nou RKKE6K = Heavenly Guardian RKLEG9 = Coraline RKLPG9 = Coraline RKME5D = Mortal Kombat: Armageddon RKMP5D = Mortal Kombat: Armagedón RKNJ2N = Kanken Wii: Kanji Ou Kettei Sen RKOJBL = Relaxuma: Minna de Goyururi Seikatsu RKPE52 = Kung Fu Panda RKPJ52 = Kung Fu Panda RKPK52 = Kung Fu Panda RKPP52 = Kung Fu Panda: El Videojuego RKPV52 = Kung Fu Panda: El Videojuego RKPY52 = Kung Fu Panda: El Videojuego RKQENR = Candace Kane's Candy Factory RKSENR = Kidz Sports: Basketball RKSPUG = Kidz Sports: Basketball RKTENR = Kidz Sports: International Soccer RKTXUG = Kidz Sports: International Football RKVE54 = The BIGS 2 RKVP54 = The Bigs 2: Baseball RKWJ18 = Jigsaw Puzzle Kyo-no Wan Ko RKXE69 = Rock Band RKXP69 = Rock Band RKYE20 = Army Men: Soldiers of Misfortune RKYP20 = Army Men: Soldiers of Misfortune RKYP7J = Army Men: Soldiers of Misfortune RKZEA4 = Lost in Blue: Shipwrecked RKZJA4 = Survival Kids Wii RKZPA4 = Lost in Blue: Shipwrecked RL2E78 = Gallop & Ride! RL2HMN = Horse & Pony: My Riding Stables RL2HMR = Mi Granja de Caballos RL2PFR = Mi Granja de Caballos RL3EMJ = Luxor 3 RL4E64 = LEGO Indiana Jones 2: The Adventure Continues RL4P64 = LEGO Indiana Jones 2: La Aventura Continúa RL5E52 = iCarly RL5P52 = iCarly RL6E69 = NERF N-Strike Elite RL7E69 = Littlest Pet Shop: Friends RL7P69 = Littlest Pet Shop: Nuevos Amigos RL8E54 = MLB Power Pros 2008 RL9ESD = Guitar Hero Linkin Park RL9PHZ = King of Pool RLADMR = Deal or No Deal: The Banker Is Back RLAE20 = Deal or No Deal RLAPMR = Deal or No Deal: The Banker Is Back RLBEWR = LEGO Batman: The Videogame RLBPWR = LEGO Batman: El Videojuego RLCP7J = Love is... in Bloom RLDEGY = Legend of the Dragon RLDPFK = Legend of the Dragon RLEEFS = Ten Pin Alley 2 RLEPFS = Ten Pin Alley 2 RLFE64 = Star Wars: The Clone Wars - Lightsaber Duels RLFP64 = Star Wars: The Clone Wars - Duelo de Sables de Luz RLGE64 = LEGO Star Wars: The Complete Saga RLGJ52 = LEGO Star Wars: The Complete Saga RLGP64 = LEGO Star Wars: The Complete Saga RLHE52 = Little League World Series Baseball 2008 RLHP52 = Little League World Series Baseball 2008 RLIE64 = LEGO Indiana Jones: La Trilogía Original RLIL78 = Guitar Hero 2nd Custom RLIP64 = LEGO Indiana Jones: La Trilogía Original RLJEHJ = Line Rider 2: Unbound RLJPKM = Line Rider Freestyle RLKEGY = Code Lyoko: Quest for Infinity RLKPFK = Code Lyoko: Quest for Infinity RLLP70 = Go West!: Una Aventura de Lucky Luke RLMJH4 = Metal Slug Complete RLNEVN = Survivor RLNFMR = Supervivientes RLNHMR = Supervivientes RLNIMR = Supervivientes RLNPMR = Supervivientes RLPE69 = Littlest Pet Shop RLPP69 = Littlest Pet Shop RLQE52 = Big League Sports RLQP52 = World Championship Sports RLRE4F = Tomb Raider: Anniversary RLRJEL = Tomb Raider: Anniversary RLRP4F = Tomb Raider: Anniversary RLSE8P = Alien Syndrome RLSP8P = Alien Syndrome RLTENR = London Taxi: Rush Hour RLTPNR = London Taxi: Rush Hour RLTXUG = London Taxi: Rush Hour RLUE4Q = Disney's Bolt RLUP4Q = Bolt RLUX4Q = Bolt RLUY4Q = Bolt RLVE78 = Avatar: The Last Airbender RLVP78 = Avatar: La Leyenda de Aang RLWE78 = Ratatouille RLWJ78 = Ratatouille RLWP78 = Ratatouille RLWW78 = Ratatouille RLWX78 = Ratatouille RLWY78 = Ratatouille RLWZ78 = Ratatouille RLXEMJ = Luxor: Pharaoh's Challenge RLXP36 = Luxor: Pharaoh's Challenge RLYEWR = Looney Tunes: Acme Arsenal RLYPWR = Looney Tunes: Acme Arsenal RLZE4Z = Defendin' De Penguin RLZP4Z = Defendin' De Penguin RLZPXT = Defendin' De Penguin RM2E69 = Medal of Honor: Heroes 2 RM2J13 = Medal of Honor: Heroes 2 RM2P69 = Medal of Honor: Heroes 2 RM2U69 = Medal of Honor: Heroes 2 RM2X69 = Medal of Honor: Heroes 2 RM3E01 = Metroid Prime 3: Corruption RM3J01 = Metroid Prime 3: Corruption RM3P01 = Metroid Prime 3: Corruption RM4E41 = Monster 4x4: World Circuit RM4J41 = Monster 4x4: World Circuit RM4P41 = Monster 4x4: World Circuit RM5E7D = The Mummy: Tomb of the Dragon Emperor RM5P7D = La Momia: La Tumba del Emperador Dragón RM6EEB = Baroque RM6P99 = Baroque RM7E4F = Monster Lab RM7P4F = Monster Lab RM8E01 = Mario Party 8 RM8J01 = Mario Party 8 RM8K01 = Mario Party 8 RM8P01 = Mario Party 8 RM9EGM = Mushroom Men: The Spore Wars RM9PGM = Mushroom Men: Las Guerras Espora RMAE01 = Mario Power Tennis RMAJ01 = Mario Power Tennis RMAP01 = Mario Power Tennis RMBE01 = Mario Super Sluggers RMBJ01 = Super Mario Stadium: Family Baseball RMCC01 = Mario Kart Wii (Personalizado) RMCE01 = Mario Kart Wii RMCE02 = Wiimms MKW Fun 2010-02.p RMCE03 = Wiimms MKW Fun 2010-10.p RMCE04 = Wiimms MKW Fun 2010-12.p RMCE05 = Wiimms MKW Fun 2010-12.p RMCE06 = Wiimms MKW Fun 2010-12.ntsc RMCE07 = Wiimms MKW Retro 2011-02.ntsc RMCE08 = Wiimms MKW Fun 2011-03.ntsc RMCE09 = Wiimms MKW Fun 2011-06.ntsc RMCE10 = Wiimms MKW Fun 2011-07.ntsc RMCE11 = Wiimms MKW Fun 2011-08.ntsc RMCE12 = Wiimms MKW Fun 2011-11.ntsc RMCE13 = Wiimms MKW Fun 2012-01.ntsc RMCE14 = Wiimms MKW Revival 2012-02.ntsc RMCE15 = Wiimms MKW Boost 2012-03.ntsc RMCE16 = Wiimms MKW Fun 2012-05.ntsc RMCE17 = Wiimms MKW Fun 2012-09.ntsc RMCE18 = Wiimms MKW N64 2012-10.ntsc RMCE19 = Wiimms MKW Fun 2012-12.ntsc RMCE20 = Wiimms MKW Fun 2013-04.ntsc RMCE21 = Wiimms MKW Fun 2013-09.ntsc RMCE22 = Wiimms MKW Fun 2013-10.ntsc RMCE23 = Wiimms MKW Fun 2014-01.ntsc RMCE24 = Wiimms MKW Retro 2014-02.ntsc RMCE25 = Wiimms MKW Fun 2014-04.ntsc RMCE26 = Wiimms MKW Fun 2014-11.ntsc RMCE65 = Mario Kart Wii: Double Dash 64 RMCE66 = Mizy's Texture Pack RMCE67 = Rookie's Texture & Music Pack RMCE68 = Character Kart Wii RMCE69 = Venom Kart Wii RMCE70 = Stickboy Kart Wii RMCE71 = Funky's Riivolution RMCE72 = CtocKart Wii RMCE73 = Mario Kart Adventures RMCE74 = Mario Kart Adventures RMCE75 = Cam, Tom and Troy's CTGP Pack RMCE76 = Pro CT Pack RMCE77 = SpyKid's CT Pack RMCE78 = Mario Kart: Double Dash!! Wii RMCE79 = Super Mario Kart Wii RMCE80 = Mario Kart 64 Wii RMCE81 = Spade's Custom Track Pack RMCE82 = HD's Retro Pack RMCE83 = Glitch Kart Wii RMCE84 = Legend's Awesome CT Pack RMCE85 = Project Double Dash!! RMCE86 = Newer Mario Kart Wii Revolution!: Backward Circuits RMCE87 = Newer Mario Kart Wii Revolution!: Sunset Sun & Dark Moon RMCE88 = Kaizo Kart Wii RMCE89 = Mario Kart Extra RMCE90 = Mario Kart QZW RMCE91 = Medal Kart 64 RMCE92 = MKWLH100's Custom Track Pack RMCE93 = MKW Hack Pack RMCE94 = Custom Track Kart Wii RMCE95 = Soarin's CT Pack X RMCE96 = Mario Kart 6 RMCE97 = Mario Kart Wii Awesomeness 2 RMCE98 = Mario Kart Wii Awesomeness RMCE99 = ReedyCustomPack Ultimate RMCEA1 = Mario Kart Adventures v0.8 RMCECT = Mario Kart Wii CTGP Revolution RMCEDK = Darky Kart Wii RMCEG2 = Mario Kart Wii CTGP Revolution RMCEGP = Mario Kart Wii CTGP Revolution RMCEWS = Wine's CT Pack RMCJ01 = Mario Kart Wii RMCJ12 = Wiimms MKW Fun 2011-11 RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCK01 = Mario Kart Wii RMCP01 = Mario Kart Wii RMCP02 = Wiimms MKW Fun 2010-02.p RMCP03 = Wiimms MKW Fun 2010-10.p RMCP04 = Wiimms MKW Fun 2010-12.p RMCP05 = Custom Mario Kart Wii RMCP06 = Wiimms MKW Fun 2010-12.pal RMCP07 = Wiimms MKW Retro 2011-02.pal RMCP08 = Wiimms MKW Fun 2011-03.pal RMCP09 = Wiimms MKW Fun 2011-06.pal RMCP10 = Wiimms MKW Fun 2011-07.pal RMCP11 = Wiimms MKW Fun 2011-08.pal RMCP12 = Wiimms MKW Fun 2011-11.pal RMCP13 = Wiimms MKW Fun 2012-01.pal RMCP14 = Wiimms MKW Revival 2012-02.pal RMCP15 = Wiimms MKW Boost 2012-03.pal RMCP16 = Wiimms MKW Fun 2012-05.pal RMCP17 = Wiimms MKW Fun 2012-09.pal RMCP18 = Wiimms MKW N64 2012-10.pal RMCP19 = Wiimms MKW Fun 2012-12.pal RMCP20 = Wiimms MKW Fun 2013-04.pal RMCP21 = Wiimms MKW Fun 2013-09.pal RMCP22 = Wiimms MKW Fun 2013-10.pal RMCP23 = Wiimms MKW Fun 2014-01.pal RMCP24 = Wiimms MKW Retro 2014-02.pal RMCP25 = Wiimms MKW Fun 2014-04.pal RMCP26 = Wiimms MKW Fun 2014-11.pal RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCX = Mario Kart Wii CTGP Revolution Channel RMDE69 = Madden NFL 07 RMDP69 = Madden NFL 07 RMEJDA = Major Dream RMFE68 = AMF Bowling Pinbusters! RMFP68 = AMF Bowling Pinbusters! RMGC01 = Super Mario Galaxy RMGE01 = Super Mario Galaxy RMGE52 = Guitar Hero III Custom: Megadeth RMGJ01 = Super Mario Galaxy RMGK01 = Super Mario Galaxy RMGP01 = Super Mario Galaxy RMGR01 = Super Mario Galaxy RMHC08 = Monster Hunter Tri (Personalizado) RMHE08 = Monster Hunter Tri RMHJ08 = Monster Hunter Tri RMHP08 = Monster Hunter Tri RMIE20 = Margot's Word Brain RMIP7J = Margot's Word Brain RMJJC8 = Mah-jong Rally Wii RMKE01 = Mario Sports Mix RMKE02 = Custom Kart 1 RMKJ01 = Mario Sports Mix RMKP01 = Mario Sports Mix RMLEH4 = Metal Slug Anthology RMLJH4 = Metal Slug Complete RMLK52 = Metal Slug Complete RMLP7U = Metal Slug Anthology RMLPH4 = Metal Slug Anthology RMME7U = Mercury Meltdown Revolution RMMJ7U = Tama-run RMMP52 = Guitar Hero III Custom: Metal Mayhem RMMP7U = Mercury Meltdown Revolution RMNDFR = Mi Hotel para Mascotas RMNHMN = Mi Hotel para Mascotas RMNHMR = Mi Hotel para Mascotas RMNPFR = Mi Hotel para Mascotas RMOE52 = Monster Jam RMOP52 = Monster Jam RMPE54 = MLB Power Pros RMPP54 = MLB Power Pros RMQENR = Myth Makers: Orbs of Doom RMQPUG = Myth Makers: Orbs of Doom RMQXUG = Myth Makers: Orbs of Doom RMRE5Z = Cocoto Magic Circus RMRPNK = Cocoto Magic Circus RMRXNK = Cocoto Magic Circus RMSE52 = Marvel Ultimate Alliance 2 RMSP52 = Marvel Ultimate Alliance 2 RMTJ18 = Momotarô Dentetsu 16 RMUE52 = Marvel Ultimate Alliance RMUJ2K = Marvel Ultimate Alliance RMUP52 = Marvel Ultimate Alliance RMVE69 = Medal of Honor: Vanguard RMVP69 = Medal of Honor: Vanguard RMVX69 = Medal of Honor: Vanguard RMWE20 = M&M's Kart Racing RMWP20 = M&M's Kart Racing RMXE78 = MX vs. ATV: Untamed RMXF78 = MX vs. ATV: Untamed RMXP78 = MX vs. ATV: Untamed RMYE5Z = Myth Makers: Super Kart GP RMYPUG = Myth Makers: Super Kart GP RMYXUG = Myth Makers: Super Kart GP RMZE5Z = Myth Makers: Trixie in Toyland RMZPUG = Myth Makers: Trixie in Toyland RN2EAF = Namco Museum Remix RN2K70 = Namco Museum Remix RN2P70 = Namco Museum Remix RN3E78 = Nicktoons: Attack of the Toybots RN3J78 = Nicktoons: Attack of the Toybots RN3P78 = Bob Esponja: El Ataque de los Juguetes Roboticos RN3X78 = Bob Esponja : El Ataque de los Jugetes Roboticos RN4E41 = Dawn of Discovery RN4P41 = ANNO: La Creación de un Nuevo Mundo RN5E78 = The Naked Brothers Band: The Video Game RN5P78 = The Naked Brothers Band: El Videojuego RN6ENR = North American Hunting Extravaganza RN6P7J = North American Hunting Extravaganza RN7E78 = Neighborhood Games RN7P78 = Big Family Games RN8JC8 = Nobunaga no Yabou Kakushin with Power-Up Kit RN9E4F = Escape from Bug Island RN9JEL = Necro-Nesia RN9P4F = Escape From Bug Island RNAE69 = NCAA Football 09 RNBE69 = NBA Live 08 RNBP69 = NBA Live 08 RNBX69 = NBA Live 08 RNCEH4 = SNK Arcade Classics Volume 1 RNCPH4 = SNK Arcade Classics: Volumen 1 RNDJAF = Nodame Cantabile Dream Orchestra RNEEDA = Naruto Shippuden: Clash of Ninja Revolution 3 RNEJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX 3 RNEPDA = Naruto Shippuden: Clash of Ninja Revolution 3 RNFE69 = Madden NFL 08 RNFP69 = Madden NFL 08 RNGJ99 = Negima!? Neo-Pactio Fight!! RNHE41 = No More Heroes RNHJ99 = No More Heroes RNHK8M = No More Heroes RNHP41 = No More Heroes RNHP99 = No More Heroes RNIPGT = Cuerpo, Mente y Vida: Cuida lo que Comes RNJE4F = Mini Ninjas RNJP4F = Mini Ninjas RNKE69 = NERF N-Strike RNKP69 = NERF N-Strike RNLE54 = NHL 2K9 RNLP54 = NHL 2K9 RNME5Z = Ninjabread Man RNMPUG = Ninjabread Man RNMXUG = Ninjabread Man RNNE4Q = The Chronicles of Narnia: Prince Caspian RNNJ4Q = The Chronicles of Narnia: Prince Caspian RNNP4Q = Las Crónicas de Narnia: El Príncipe Caspian RNNX4Q = Las Crónicas de Narnia: El Príncipe Caspian RNNY4Q = Las Crónicas de Narnia: El Príncipe Caspian RNNZ4Q = Las Crónicas de Narnia: El Príncipe Caspian RNOJ01 = Another Code R Kioku no Tobira RNOP01 = Another Code: R - Más Allá de la Memoria RNPE69 = Need for Speed: ProStreet RNPJ13 = Need for Speed: ProStreet RNPK69 = Need for Speed: ProStreet RNPP69 = Need for Speed: ProStreet RNPX69 = Need for Speed: ProStreet RNPY69 = Need for Speed: ProStreet RNRE41 = Nitro Bike RNRJ41 = Nitro Bike RNRP41 = Nitro Bike RNSD69 = Need for Speed: Carbono RNSE69 = Need for Speed: Carbon RNSF69 = Need for Speed: Carbono RNSJ13 = Need for Speed: Carbon RNSP69 = Need for Speed: Carbono RNSX69 = Need for Speed: Carbono RNUE8P = Nancy Drew: The White Wolf of Icicle Creek RNVE5Z = Anubis II RNVP5Z = Anubis II RNVPUG = Anubis II RNVXUG = Anubis II RNWJAF = Namco Carnival RNWKAF = Namco Museum Remix RNXEDA = Naruto: Clash of Ninja Revolution RNXJDA = Naruto Shippuuden Gekitou Ninja Taisen EX RNXPDA = Naruto: Clash of Ninja Revolution RNYEDA = Naruto: Clash of Ninja Revolution 2 RNYJDA = Naruto Shippuuden Gekitou Ninja Taisen EX 2 RNYPDA = Naruto: Clash of Ninja Revolution 2 RNZE69 = Ninja Reflex RNZJ13 = Ninja Reflex RNZK69 = Ninja Reflex RNZP69 = Ninja Reflex RO2E7N = Ford Racing: Off Road RO2P7N = Ford Racing: Off Road RO3EXJ = Little King's Story RO3J99 = Little King's Story RO3P99 = Little King's Story RO4JDA = Toshinden RO5E52 = Hot Wheels: Battle Force 5 RO5P52 = Hot Wheels: Battle Force 5 RO7E7D = Legend of Spyro: The Eternal Night RO7P7D = La Leyenda de Spyro: La Noche Eterna RO8E7D = The Legend of Spyro: Dawn of the Dragon RO8P7D = La Leyenda de Spyro: La Fuerza del Dragón RO8X7D = La Leyenda de Spyro: La Fuerza del Dragón RO9EFS = Aqua Panic! RO9PNK = Aqua Panic! ROAE36 = Overlord: La Leyenda Siniestra ROAP36 = Overlord: La Leyenda Siniestra ROBE7U = Obscure: The Aftermath ROBPPL = Obscure II ROCE5Z = Cocoto Kart Racer ROCPNK = Cocoto Kart Racer RODE01 = WarioWare: Smooth Moves RODJ01 = WarioWare: Smooth Moves RODK01 = WarioWare: Smooth Moves RODP01 = WarioWare: Smooth Moves ROEEJZ = Hotel for Dogs ROEPGT = Hotel para Perros ROFE5Z = Offroad Extreme Special Edition ROFPUG = Offroad Extreme! ROFXUG = Offroad Extreme! ROGE78 = Tak and the Guardians of Gross ROGP78 = Tak and the Guardians of Gross ROHJAF = Happy Dance Collection ROJE52 = Rapala: We Fish ROJP52 = Rapala: We Fish ROKJ18 = Karaoke Joysound Wii ROLE8P = Mario & Sonic en los Juegos Olímpicos de Invierno ROLJ01 = Mario & Sonic at the Olympic Winter Games ROLK01 = Mario & Sonic at the Olympic Winter Games ROLP8P = Mario & Sonic en los Juegos Olímpicos de Invierno ROMESD = Monster Hunter G (parcheado al inglés) ROMJ08 = Monster Hunter G RONEG9 = Onechanbara: Bikini Zombie Slayers RONJG9 = Onechanbara Revolution RONPG9 = Onechanbara: Bikini Zombie Slayers ROPE41 = Open Season ROPP41 = Colegas en el Bosque ROQJEP = Baroque For Wii ROSJ01 = Takt of Magic ROTE20 = Twin Strike: Operation Thunder ROTP20 = Twin Strike: Operation Thunder ROTP7J = Twin Strike: Operation Thunder ROUJAF = One Piece Unlimited Cruise 1: The Treasure Beneath the Waves ROUPAF = One Piece - Unlimited Cruise 1: El Tesoro Bajo las Olas ROVE6U = Playmobil: Circus ROVPHM = Playmobil: Circus ROWE08 = Okami ROWJ08 = Okami ROWP08 = Okami ROXE20 = Order Up! ROXP7J = Order Up! ROXX7J = Order Up! ROYE41 = Lluvia de Albóndigas ROYP41 = Lluvia de Albóndigas ROYX41 = Lluvia de Albóndigas RP2E69 = Smarty Pants RP2P69 = Triiviial RP3JAF = Pro Golfer Saru RP4E69 = MySims Party RP4J13 = Boku To Sim No Machi Party RP4P69 = MySims Party RP5JA4 = Jikkyou Powerful Pro Baseball 15 RP6E41 = Petz Crazy Monkeyz RP6P41 = Animalz: Monkeyz Area RP7E52 = Pirates: Hunt for Blackbeard's Booty RP7P52 = Piratas: El Tesoro de Barbanegra RP9ERS = Space Chimps RP9PRS = Space Chimps RP9XRS = Space Chimps RPAF70 = Kid Paddle: Lost in the Game RPBE01 = Pokémon Battle Revolution RPBJ01 = Pokémon Battle Revolution RPBP01 = Pokémon Battle Revolution RPCE20 = Puzzler Collection RPCP41 = Puzzler Collection RPCX7J = Puzzler Collection RPDEGN = PDC World Championship Darts 2008 RPDPGN = PDC World Championship Darts 2008 RPFE52 = Pitfall: The Big Adventure RPFP52 = Pitfall: La Gran Aventura RPFU52 = Pitfall: La Gran Aventura RPGE5D = Rampage: Total Destruction RPGP5D = Rampage: Total Destruction RPHPPN = Peppa Pig: The Game RPIE52 = Pimp My Ride RPIP52 = Pimp My Ride RPJE7U = Arc Rise Fantasia RPJJ99 = Arc Rise Fantasia RPKE52 = World Series of Poker: Tournament of Champions 2007 Edition RPKP52 = World Series of Poker: Tournament of Champions RPLE52 = Rapala Tournament Fishing RPLP52 = Rapala Tournament Fishing RPMJA4 = Jikkyou Powerful Pro Major League 2 RPNE78 = Paws & Claws: Pet Resort RPOEC8 = Opoona RPOJC8 = Opoona RPOPC8 = Opoona RPPE41 = Prince of Persia: Rival Swords RPPP41 = Prince of Persia: Rival Swords RPQES5 = Pool Party RPQPS5 = Pool Party RPSE4Q = Disney Princess: Enchanted Journey RPSJ4Q = Disney Princess Wii RPSP4Q = Disney Princesas: Un Viaje Encantado RPTD52 = Puppy Luv: Cuida tu Cachorro RPTE52 = Puppy Luv: Your New Best Friend RPTP52 = Puppy Luv: Cuida tu Cachorro RPUJ8P = Puyo Puyo! 15th Anniversary RPVE4Z = Purr Pals RPVPKM = Purr Pals RPWX41 = Prince of Persia: Las Arenas Olvidadas RPWZ41 = Prince of Persia: The Forgotten Sands RPXE69 = EA Playground RPXJ13 = EA Playground RPXP69 = EA Playground RPYE9B = Super Swing Golf RPYJ9B = Super Swing Golf RPYP9B = Pangya! Golf con Estilo RPZJA4 = Jikkyou Powerful Pro Baseball Wii Ketteiban RQ2JK6 = Crazy Climber Wii RQ3PGN = PDC World Championship Darts 2009 RQ4E78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ4J78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ4P78 = Bob Esponja: La Criatura del Krustáceo Krujiente RQ5E5G = Mad Dog McCree Gunslinger Pack RQ5P5G = Mad Dog McCree: Gunslinger Pack RQ5X5G = Mad Dog McCree: Gunslinger Pack RQ6EJJ = Cursed Mountain RQ6PKM = Cursed Mountain RQ6XKM = Cursed Mountain RQ7E20 = Martian Panic RQ7PXT = Martian Panic RQ8E08 = MotoGP 08 RQ8P08 = MotoGP RQ9E69 = NBA Live 09 All-Play RQ9F69 = NBA Live 09 All-Play RQ9P69 = NBA Live 09 All-Play RQ9S69 = NBA Live 09 All-Play RQBENR = Kawasaki Quad Bikes RQBPNR = Kawasaki Quad Bikes RQBPUG = Kawasaki Quad Bikes RQBXUG = Kawasaki Quad Bikes RQCEAF = The Munchables RQCJAF = Tabemon RQEE6U = Agatha Christie: Evil Under the Sun RQEP6V = Agatha Christie: Maldad Bajo el Sol RQFE6U = Safecracker: The Ultimate Puzzle Adventure RQFP6V = Safecracker: El Desafío Definitivo RQGE69 = MySims Racing RQGJ13 = MySims Racing RQGJ69 = Boku To Sim No Machi Racing RQGP69 = MySims Racing RQIJ01 = Minna ga Shuyaku no NHK Kouhaku Quiz Kassen RQJE7D = Crash of the Titans RQJP7D = Crash: Lucha de Titanes RQJX7D = Crash: Lucha de Titanes RQKE41 = Circus Games RQKP41 = Feria Party RQLE64 = Star Wars The Clone Wars: Republic Heroes RQLP64 = Star Wars The Clone Wars: Héroes de la República RQMEVN = Ocean Commander RQMPVN = Ocean Commander RQNEWR = Scooby-Doo! First Frights RQNPWR = Scooby-Doo! Bienvenidos al Misterio RQOE69 = Spore Hero RQOJ13 = Spore Hero RQOP69 = Spore Héroes RQPE52 = Cabela's Trophy Bucks RQPP52 = Cabela's Trophy Bucks RQPZ52 = Cabela's Monster Buck Hunter RQQE52 = Guitar Hero III Custom: Queen RQQE70 = Backyard Football '09 RQREXJ = The Sky Crawlers: Innocent Aces RQRJAF = The Sky Crawlers: Innocent Aces RQRPAF = The Sky Crawlers: Innocent Aces RQSE4Z = Pinball Hall of Fame: The Gottlieb Collection RQSP6M = Gottlieb Pinball Classics RQTE6U = Agatha Christie: And Then There Were None RQTP6V = Agatha Christie: Y No Quedó Ninguno RQUEFS = Super PickUps RQVE20 = Pacific Liberator RQVP20 = Pacific Liberator RQWEG9 = Puzzle Quest: Challenge of the Warlords RQWPG9 = Puzzle Quest: Challenge of the Warlords RQXP70 = Astérix en los Juegos Olímpicos RQYENR = Fantasy Aquarium World RQZE41 = Monster 4x4: Stunt Racer RQZP41 = Monster 4x4: Stunt Racer RR2ENR = Rig Racer 2 RR2PNR = Rig Racer 2 RR2PUG = Rig Racer 2 RR3EA4 = Ultimate Party Challenge RR3JA4 = Family Challenge Wii RR3PA4 = Let's Party! RR4EGY = Build-A-Bear Workshop: A Friend Fur All Seasons RR4PFK = Build-A-Bear Workshop: A Friend Fur All Seasons RR5E70 = Ready 2 Rumble Revolution RR5P70 = Ready 2 Rumble: Revolution RR7PVP = Real Madrid: The Game RR8PUJ = International Athletics RR9E78 = WWE SmackDown vs. Raw 2009 RRAE5Z = Rock 'N' Roll Adventures RRAPUG = Rock 'N' Roll Adventures RRAXUG = Rock 'N' Roll Adventures RRBE41 = Rayman Raving Rabbids RRBJ41 = Rayman Raving Rabbids RRBP41 = Rayman Raving Rabbids RRCE52 = Barbie Horse Adventures: Riding Camp RRCP52 = Barbie Horses: Escuela de Equitación RRDE69 = Rock Band Track Pack: Vol. 2 RRDP69 = Rock Band Song Pack 2 RREE69 = Rock Band Track Pack: Vol. 1 RREP69 = Rock Band Song Pack 1 RRFEE9 = Reel Fishing: Angler's Dream RRFPE9 = Reel Fishing: Angler's Dream RRGE52 = Madagascar: Escape 2 Africa RRGP52 = Madagascar 2: El Videojuego RRHPUJ = Mary King's Riding School 2 RRHXUJ = Mary King's Riding School 2 RRIPTV = Paint Works RRJFMR = Ready, Steady, Cook: The Game RRJIMR = Ready, Steady, Cook: The Game RRJPMR = Ready, Steady, Cook: The Game RRKE70 = Alone in the Dark RRKP70 = Alone in the Dark RRLE78 = Bratz: Girlz Really Rock RRLP78 = Bratz: Girlz Really Rock RRLX78 = Bratz: Girlz Really Rock RRLY78 = Bratz: Girlz Really Rock RRLZ78 = Bratz: Girlz Really Rock RRME69 = Hasbro: Family Game Night RRMP69 = Hasbro: Juegos en Familia RRMX69 = Hasbro: Juegos en Familia RRPE41 = The Price Is Right RRQE52 = Shrek's Carnival Craze Party Games RRQP52 = Shrek Carnival Craze: Multijuegos RRQX52 = Shrek Carnival Craze: Multijuegos RRRE5Z = Real Heroes: Firefighter RRRPRM = Real Heroes: Firefighter RRSE4Q = Meet The Robinsons RRSJ4Q = Meet The Robinsons RRSP4Q = Descubriendo a los Robinsons RRSX4Q = Descubriendo a los Robinsons RRTE52 = Block Party 20 Games RRTP52 = Block Party! 20 Juegos RRUEJF = Winter Sports 2: The Next Challenge RRUFRT = Winter Sports 2009: The Next Challenge RRUJJF = Winter Sports 2009 The Next Challenge RRUPRT = Winter Sports 2009: The Next Challenge RRVENR = Battle Rage: Mech Conflict RRVPNR = Battle Rage: The Robot Wars RRWJAF = Super Robot Taisen NEO RRXE5Z = Monster Trux Arenas: Special Edition RRXPUG = Monster Trux Arenas RRXXUG = Monster Trux Arenas RRYEHG = Rogue Trooper: Quartz Zone Massacre RRYPHY = Rogue Trooper: Quartz Zone Massacre RRZEGY = Rubik's World RRZPGY = Rubik's Puzzle World RS2E20 = Ultimate Duck Hunting RS2EGJ = Ultimate Duck Hunting RS2PGJ = Ultimate Duck Hunting RS3E52 = Spider-Man 3 RS3J52 = Spider-Man 3 RS3P52 = Spider-Man 3 RS3X52 = Spider-Man 3 RS4EXS = Castle of Shikigami III RS4JJF = Shikigami No Shiro III RS4PXS = Castle of Shikigami III RS5EC8 = Samurai Warriors: Katana RS5JC8 = Sengoku Musô KATANA RS5PC8 = Samurai Warriors: Katana RS7J01 = Eyeshield 21 Field Saikyo no Senshi Tachi RS8J8N = Shanghai RS9E8P = Sonic Riders: Zero Gravity RS9J8P = Sonic Riders: Shooting Star Story RS9P8P = Sonic Riders: Zero Gravity RSAE78 = SpongeBob's Atlantis SquarePantis RSAP78 = Bob Esponja: Aventura en la Atlántida RSBE01 = Super Smash Bros. Brawl RSBE02 = Super Smash Bros. Project M Red Version RSBE03 = Super Smash Bros. Brawl DX RSBE04 = Super Smash Bros. Project M+ RSBE05 = Super Smash Bros. Project M Patt Edition RSBE06 = Darkon360's Brawl Hack Pack RSBE07 = Super Smash Bros. Project M: Theytah's Custom Build RSBE08 = Smash Bros. Infinite RSBE09 = Springboy64's Brawl Hack Pack RSBE10 = Brawl Ying Yang Edition RSBE11 = Professor MGW's Tournament Hack Pack #1 RSBE12 = Professor MGW's Tournament Hack Pack #2 RSBE13 = Professor MGW's Hack Pack #3 RSBE14 = Super Smash Bros. Brawl- Zeus RSBE15 = Super Smash Bros. Brawl Minus Mugen RSBE16 = Super Smash Bros. Brawl Shock RSBE17 = Super Smash Bros. Brawl - Battlefield Build RSBE18 = Super Smash Bros. Project M: Tournament Hack Pack RSBE19 = Super Smash Bros. Project M: Fully Dressed Edition RSBE20 = Pikezer's BrawlEx Pack RSBE21 = Calabrel's Custom Project M Build RSBE22 = Project M: Rage83's Competitive Custom Build RSBE23 = Super Smash Bros. Project M: Justice Build RSBE24 = Super Smash Bros. 3 RSBE25 = Super Smash Bros. Red Version RSBE26 = Super Smash Bros. Silver RSBE27 = Springboy64's Super Smash Bros. Brawl Hack Pack RSBE28 = SuperYoshiStar's Super Smash Bros. Brawl Hack Pack RSBE29 = Super Smash Bros. Project M: YoeiX Custom Build RSBE30 = Super Smash Bros. Project M: Arko's Loaded Custom Build RSBE31 = Super Smash Bros. Project M: Arko's Tournament Custom Build RSBE32 = Super Smash Bros. Project M: Sempai's Build RSBE33 = Super Smash Bros. Brawl Yin Yang Edition 2: The Balance of Kyu RSBE34 = Super Smash Bros. Project U: Blue Version RSBE35 = Super Smash Bros. Brawl Legacy: Project M RSBE36 = Super Smash Bros. Project Best RSBE37 = Super Smash Bros. Project M: Psycho Ghost's Build RSBE38 = Super Smash Sisters Generations RSBE39 = Super Smash Bros. Ultra Project M RSBE40 = Super Smash Bros. Project M: Ragnarok Edition RSBE41 = Super Smash Bros. Project M: Calabrel's Custom Build RSBE42 = Super Smash Bros. Project M: RedX Anime/Game Custom Build RSBEBB = Super Smash Bros. Balanced Brawl RSBEBM = Super Smash Bros. Brawl Minus RSBEBP = Super Smash Bros. Brawl Plus RSBEC3 = Super Smash Bros. Project M 3.5 Netplay Build RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBEWM = Super Smash Bros. Project M Wi-Fi RSBJ01 = Dairantou Smash Brothers X RSBK01 = Dairantou Smash Brothers X RSBP01 = Super Smash Bros. Brawl RSCD7D = Scarface: The World Is Yours RSCE7D = Scarface: The World Is Yours RSCP7D = Scarface: The World Is Yours RSCU7D = Scarface: The World Is Yours RSDJAF = SD Gundam: Scad Hammers RSEJGD = Soul Eater Monotone Princess RSFC99 = Muramasa: The Demon Blade (Personalizado) RSFE7U = Muramasa: The Demon Blade RSFJ99 = Oboro Muramasa RSFP99 = Muramasa: The Demon Blade RSHE69 = MySims Kingdom RSHJ13 = Boku to Sim no Machi Kingdom RSHK69 = MySims Kingdom RSHP69 = MySims Kingdom RSIE69 = MySims RSIJ13 = Boku To Sim No Machi RSIP69 = MySims RSJE41 = Broken Sword: Shadow of the Templars (Director's Cut) RSJESD = Guitar Hero III Custom: System of a Down RSJP41 = Broken Sword: Shadow of the Templars - The Director's Cut RSKE52 = Shrek The Third RSKP52 = Shrek Tercero RSKX52 = Shrek Tercero RSLEAF = Soulcalibur: Legends RSLJAF = Soulcalibur: Legends RSLKAF = Soulcalibur Legends RSLPAF = Soulcalibur Legends RSME8P = Super Monkey Ball: Banana Blitz RSMJ8P = Super Monkey Ball: Banana Blitz RSMP8P = Super Monkey Ball: Banana Blitz RSND69 = Los Simpson: El Videojuego RSNE69 = The Simpsons Game RSNF69 = Los Simpson: El Videojuego RSNP69 = Los Simpson: El Videojuego RSNX69 = Los Simpson: El Videojuego RSOE4Z = Solitaire & Mahjong RSOP4Z = Solitaire & Mahjong RSPE01 = Wii Sports RSPJ01 = Wii Sports RSPK01 = Wii Sports RSPP01 = Wii Sports RSPW01 = Wii Sports RSQEAF = We Ski RSQJAF = Family Ski RSQPAF = Family Ski RSRE8P = Sonic y los Anillos Secretos RSRJ8P = Sonic and the Secret Rings RSRP8P = Sonic y los Anillos Secretos RSSEH4 = Samurai Shodown Anthology RSSJH4 = Samurai Spirits: Rokuban Shoubu RSSK52 = Samurai Shodown Anthology RSSP7U = Samurai Shodown Anthology RSTE64 = Star Wars: The Force Unleashed RSTJ52 = Star Wars: The Force Unleashed RSTP64 = Star Wars: El Poder de la Fuerza RSUENR = Summer Sports: Paradise Island RSUP41 = Sports Party RSVE8P = Sonic Unleashed RSVJ8P = Sonic World Adventure RSVP8P = Sonic Unleashed RSWE08 = Spyborgs RSWP08 = Spyborgs RSXE69 = SSX Blur RSXJ13 = SSX Blur RSXK69 = SSX Blur RSXP69 = SSX Blur RSXX78 = Guitar Hero RadioHead RSYE20 = Showtime Championship Boxing RSYP06 = Super Smash Bros. Brawl: YF06's Mod RSYP7J = Showtime Championship Boxing RSZJES = Yukinko Daisenpuu RSZPGT = Legend of Sayuki RT2E20 = Arctic Tale RT2P20 = Arctic Tale RT2P7J = Arctic Tale RT3E54 = Rockstar Games Presents: Table Tennis RT3JEL = Rockstar Games Presents: Table Tennis RT3P54 = Rockstar Games Presenta Table Tennis RT4EAF = Tales of Symphonia: Dawn of the New World RT4JAF = Tales Of Symphonia: Ratatosk no Kishi RT4PAF = Tales of Symphonia: Dawn of the New World RT5E8P = SEGA Superstars Tennis RT5P8P = SEGA Superstars Tennis RT6FKM = El Tiovivo Mágico RT6PKM = El Tiovivo Mágico RT7E69 = Tiger Woods PGA Tour 07 RT7F69 = Tiger Woods PGA Tour 07 RT7P69 = Tiger Woods PGA Tour 07 RT8E69 = Tiger Woods PGA Tour 08 RT8J13 = Tiger Woods PGA Tour 08 RT8K69 = Tiger Woods PGA Tour 08 RT8P69 = Tiger Woods PGA Tour 08 RT9E52 = Tony Hawk's Proving Ground RT9P52 = Tony Hawk's Proving Ground RTAE41 = Tom Clancy's H.A.W.X. 2 RTAP41 = Tom Clancy's H.A.W.X. 2 RTBE52 = Rapala Fishing Frenzy RTBP52 = Rapala Fishing Frenzy RTCE41 = Tom Clancy's Splinter Cell: Double Agent RTCP41 = Tom Clancy's Splinter Cell: Double Agent RTDE6K = The Monkey King: The Legend Begins RTDJES = Shin Chuuka Taisen RTDK8M = Shin Chuuka Taisen RTEE78 = Paws & Claws: Pet Vet RTEHMR = Veterinarios en Acción RTEPFR = Mi Clínica Veterinaria RTFE52 = Transformers: The Game RTFJ52 = Transformers: The Game RTFK52 = Transformers: The Game RTFP52 = Transformers: El Videojuego RTFX52 = Transformers RTFY52 = Transformers RTGJ18 = Wi-Fi Taiô Gensen Table Games Wii RTHE52 = Tony Hawk's Downhill Jam RTHP52 = Tony Hawk's Downhill Jam RTIE8P = Wacky World of Sports RTIJ8P = Wacky World of Sports RTIP8P = Locura Deportiva RTJE68 = Star Trek: Conquest RTJP68 = Star Trek: Conquest RTKE5Z = Octomania RTKJDQ = Sharuui Takoron RTKK8M = Sharuui Takoron RTLE18 = Fishing Master: World Tour RTLJ18 = Mezase Tsuri Master Sekai Ni Challenge Hen RTLP18 = Fishing Master: World Tour RTME41 = TMNT RTMP41 = Tortugas Ninja Jóvenes Mutantes RTNE41 = Tenchu: Shadow Assassins RTNJCQ = Tenchu 4 RTNP41 = Tenchu: Shadow Assassins RTOJ8P = 428: Fuusa Sareta Shibuya de RTPP41 = Top Trumps Adventures RTQENR = Monster Trux Offroad RTQPUG = Monster Trux Offroad RTQXUG = Monster Trux Offroad RTRE18 = Fishing Master RTRJ18 = Mezase Tsuri Master RTRP18 = Fishing Master RTSEVN = Totally Spies! Totally Party RTSP41 = Totally Spies! Fiesta Total RTTJAF = Tamagotchi no Furifuri Kagekidan RTUEJJ = Secret Files Tunguska RTUFKM = Secret Files: Tunguska RTUPKM = Secret Files: Tunguska RTVE64 = Thrillville: Off the Rails RTVP64 = Thrillville: Off the Rails RTWE5D = TNA iMPACT! RTWP5D = TNA iMPACT! RTYP01 = Wii Ajedrez RTZE08 = Zack & Wiki: Quest for Barbaros' Treasure RTZJ08 = Zack & Wiki: En Busca del Tesoro de Barbaros RTZK08 = Zack & Wiki: Quest For Barbaros' Treasure RTZP08 = Zack & Wiki: En Busca del Tesoro de Barbaros RU1P4Q = Disney Sing It:: Sing It Star Singstar 1 RU2E5Z = Winter Sports 2: The Next Challenge RU2P4Q = Disney Sing It: Sing It Star Singstar 2 RU2P5Z = Winter Sports 2: The Next Challenge RU3E5Z = Summer Athletics: The Ultimate Challenge RU4E41 = My Fitness Coach 2: Exercise & Nutrition RU4X41 = NewU Fitness First Personal Trainer RU5E4Q = The Princess and the Frog RU5P4Q = Tiana y el Sapo RU5V4Q = Tiana y el Sapo RU5X4Q = Tiana y el Sapo RU5Y4Q = Tiana y el Sapo RU6EHG = Free Running RU6PHY = Free Running RU7E5G = Night at the Museum: Battle of the Smithsonian - The Video Game RU7X5G = Una Noche en el Museo 2: El Videojuego RU8EFS = Bass Pro Shops: The Hunt RU9EGT = My Ballet Studio RU9PGT = Diva Ballerina RUAE52 = Monster Jam: Urban Assault RUAP52 = Monster Jam: Asalto Urbano RUBEVN = Ultimate Board Game Collection RUBP7N = Ultimate Board Game Collection RUCE5Z = Winter Sports: The Ultimate Challenge RUCPRT = Winter Sports 2008: The Ultimate Challenge RUCXRT = Winter Sports 2008: The Ultimate Challenge RUEE4Q = G-Force RUEP4Q = G-Force RUEX4Q = G-Force RUEY4Q = G-Force RUFEMV = Rune Factory: Frontier RUFJ99 = Rune Factory: Frontier RUFP99 = Rune Factory: Frontier RUGE7T = Goosebumps: HorrorLand RUGP5G = Goosebumps: HorrorLand RUHE52 = Bakugan Battle Brawlers RUHP52 = Bakugan Battle Brawlers RUHX52 = Bakugan Battle Brawlers (Edición Toys R Us) RUHZ52 = Bakugan Battle Brawlers RUIE4Q = Disney: Sing It RUIGGD = SingItStar Ned. 80's RUIP4Q = Disney Sing It RUIX4Q = Disney Sing It RUKEGT = Rolling Stone: Drum King RUKPGT = We Rock: Drum King RULE4Q = Ultimate Band RULP4Q = Ultimate Band RUME5Z = Ski And Shoot RUMPFR = Summer Athletics RUNJ0Q = New Unou Kids Wii EX RUOEPL = Aliens in the Attic RUOPPL = Pequeños Invasores RUPJC8 = Winning Post 7 Maximum 2008 RUQD78 = Up RUQE78 = Up RUQI78 = Up: El videojuego RUQJJE = Carl jii san no sora tobu Ie RUQP78 = Up: El videojuego RUQS78 = Up: El Videojuego RUQX78 = Up: El videojuego RUREPL = Pool Hall Pro RURPPL = Pool Hall Pro RUSE78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUSK78 = SpongeBob SquarePants Featuring Nicktoons: Globs of Doom RUSP78 = Bob Esponja y Amigos: Globs of Doom RUSX78 = Bob Esponja y Amigos: Globs of Doom RUSY78 = Bob Esponja y Amigos: Globs of Doom RUUE01 = Animal Crossing: City Folk RUUJ01 = Machi He Ikouyo Doubutsu no Mori RUUK01 = Animal Crossing: City Folk RUUP01 = Animal Crossing: Let's Go to the City RUWJC8 = Winning Post World RUXPUG = Urban Extreme: Street Rage RUXXUG = Urban Extreme: Street Rage RUYE41 = No More Heroes 2: Desperate Struggle RUYJ99 = No More Heroes 2: Desperate Struggle RUYP99 = No More Heroes 2: Desperate Struggle RUZE7T = Ultimate I SPY RUZP5G = Ultimate I SPY RV2E5D = Game Party 2 RV2P5D = More Game Party RV3P6N = Clever Kids: Creepy Crawlies RV7SMR = Supervivientes RV8E20 = Beach Fun: Summer Challenge RV8PRT = Beach Fun: Summer Challenge RV9E78 = Avatar: The Last Airbender - Into the Inferno RV9P78 = Avatar: La Leyenda de Aang - Dentro del Infierno RVAE78 = Avatar: The Last Airbender - The Burning Earth RVAP78 = Avatar: La Leyenda de Aang - La Tierra Ardiente RVBERS = Alvin and the Chipmunks RVBPRS = Alvin y las Ardillas RVDPLG = Diabolik: The Original Sin RVEFMR = Bienvenue Chez Les Ch'tis RVFE20 = Bigfoot: Collision Course RVFP7J = Bigfoot: Collision Course RVGE78 = Merv Griffin's Crosswords RVGP78 = Margot's Word Brain RVHP41 = Scrabble Interactivo: Edición 2009 RVIE4F = Bionicle Heroes RVIP4F = Bionicle Heroes RVJPFR = So Blonde: Perdidos en el Caribe RVKEXJ = Valhalla Knights: Eldar Saga RVKJ99 = Valhalla Knights Elder Saga RVKKZA = Valhalla Knights: Eldar Saga RVKP99 = Eldar Saga RVLPA4 = Rock Revolution RVNE20 = Calvin Tucker's Redneck Jamboree RVNP20 = Calvin Tucker's Redneck Jamboree RVNP7J = Calvin Tucker's Redneck Jamboree RVOEPL = Vertigo RVOPPL = Vertigo RVPEFS = PopStar Guitar RVPPFS = PopStar Guitar RVQE41 = Movie Games RVQP41 = Desafío Cine Party RVREFS = Rebel Raiders: Operation Nighthawk RVRPFS = Rebel Raiders: Operation Nighthawk RVRPKG = Rebel Raiders: Operation Nighthawk RVSE69 = Skate It RVSJ13 = Skate It RVSP69 = Skate It RVTFMR = Veterinarios en Acción RVTPMR = Veterinarios en Acción RVTXMR = Veterinarios en Acción RVUE8P = Virtua Tennis 2009 RVUP8P = Virtua Tennis 2009 RVVE78 = Big Beach Sports RVVP78 = Big Beach Sports RVXFRT = RTL Biathlon 2009 RVXPRT = RTL Biathlon 2009 RVYD52 = Call of Duty: World at War RVYE52 = Call of Duty: World at War RVYK52 = Call of Duty: World at War RVYP52 = Call of Duty: World at War RVYX52 = Call of Duty: World at War RVYY52 = Call of Duty: World at War RVZE52 = Monsters vs. Aliens RVZP52 = Monstruos contra Alienígenas RW3E4Q = Pirates of the Caribbean: At World's End RW3J4Q = Pirates of the Caribbean: At World's End RW3P4Q = Los Piratas del Caribe: En el Fin del Mundo RW4D41 = Mi Experto en Vocabulario RW5F41 = ¿Quién Quiere Ser Millonario? 2da Edición RW5P41 = ¿Quién Quiere Ser Millonario? 2da Edición RW6PA4 = Dance Dance Revolution: Winx Club RW7E41 = Shaun White Snowboarding: Road Trip - Target Limited Edition RW8P41 = Imagina Ser: Amazona en Competición RW9P78 = WWE SmackDown vs. Raw 2009 RW9X78 = WWE SmackDown vs. Raw 2009 RWAD78 = WALL•E RWAE78 = WALL•E RWAJ78 = WALL•E RWAK78 = WALL•E RWAP78 = WALL•E RWAR78 = WALL•E RWAU78 = WALL•E RWAX78 = WALL•E RWAY78 = WALL•E RWAZ78 = WALL•E RWBENR = Kawasaki Snowmobiles RWBXUG = Kawasaki Snow Mobiles RWCE4Z = Pinball Hall of Fame: The Williams Collection RWCP4Z = Pinball Hall of Fame RWCP6M = Williams Pinball Classics RWDC52 = Guitar Hero III Custom: WD Custom RWDE5G = Wild Earth: African Safari RWDP5G = Wild Earth: African Safari RWEEA4 = Pro Evolution Soccer 2008 RWEJA4 = Winning Eleven PLAY MAKER 2008 RWEPA4 = Pro Evolution Soccer 2008 RWFH41 = Mi Experto en Vocabulario RWGE08 = We Love Golf! RWGJ08 = We Love Golf! RWGP08 = We Love Golf! RWHP4F = Top Trumps: Doctor Who RWIE18 = Wing Island RWIJ18 = Wing Island RWIP18 = Wing Island RWJENR = WordJong Party RWKE5G = Cooking Mama: World Kitchen RWKPGT = Cooking Mama 2: World Kitchen RWLE01 = Wario Land: Shake It! RWLJ01 = Warioland Shake RWLK01 = Wario Land Shaking RWLP01 = Wario Land: The Shake Dimension RWME78 = Worms: A Space Oddity RWMP78 = Worms: Una Gusanodisea Espacial RWNF70 = Warning: Code De La Route RWOE69 = Monopoly RWOJ13 = Monopoly RWOP69 = Monopoly RWQPSP = WSC Real 08: World Snooker Championship RWRE4F = Wacky Races: Crash & Dash RWRP4F = Los Autos Locos RWSE8P = Mario & Sonic en los Juegos Olímpicos RWSJ01 = Mario & Sonic at the Olympic Games RWSK01 = Mario & Sonic at the Olympic Games RWSP8P = Mario & Sonic en los Juegos Olímpicos RWTEG9 = Ben 10: Alien Force RWTPG9 = Ben 10: Alien Force RWUE52 = X-Men Origins: Wolverine RWUP52 = X-Men Orígenes: Lobezno RWUX52 = X-Men Orígenes: Lobezno RWWE52 = Guitar Hero III Custom : WWE The Hits RWWE78 = WWE SmackDown vs. Raw 2008 RWWJ78 = WWE SmackDown vs. Raw 2008 RWWP78 = WWE SmackDown vs. Raw 2008 RWWX78 = WWE SmackDown vs. Raw 2008 RWXES5 = Brave: A Warrior's Tale RWXPS5 = Brave: A Warrior's Tale RWYPHH = Runaway: The Dream of the Turtle RWZE5G = Wonder World Amusement Park RWZP5G = Wonder World Amusement Park RWZX5G = Wonder World Amusement Park RX2E70 = My Horse & Me: Riding for Gold RX2P70 = My Horse & Me 2 RX3E01 = ExciteBots: Trick Racing RX3J01 = ExciteBots: Trick Racing RX4E4Z = Casper's Scare School: Spooky Sports Day RX4PMT = La Escuela de Miedos de Casper: Olimpiada Terrorífica RX5E52 = Tony Hawk: Ride RX5P52 = Tony Hawk: Ride RX6E78 = The Biggest Loser RX6P78 = The Biggest Loser RX7JGD = Meja-maji March RX8JA4 = Jikkyou Powerful Pro Yakyuu Next RX9E69 = Need for Speed: Undercover RX9J13 = Need for Speed: Undercover RX9K69 = Need for Speed: Undercover RX9P69 = Need for Speed: Undercover RX9X69 = Need for Speed: Undercover RX9Y69 = Need for Speed: Undercover RXAE78 = WWE SmackDown vs. Raw 2010 RXAP78 = WWE SmackDown vs. Raw 2010 RXBE70 = Backyard Baseball '10 RXBP70 = Backyard Baseball '10 RXCE4Z = Dave Mirra BMX Challenge RXCP4Z = Dave Mirra BMX Challenge RXCPGT = Dave Mirra BMX Challenge RXDD4Q = Disney Th!nk Fast: Piensa y Acierta RXDE4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDJ4Q = Disney Th!nk Haya Oshi Quiz RXDP4Q = Disney Th!nk Fast: Piensa y Acierta RXDR4Q = Disney Th!nk Fast: Piensa y Acierta RXDX4Q = Disney Th!nk Fast: Piensa y Acierta RXDY4Q = Disney Th!nk Fast: Piensa y Acierta RXEJDA = Major Wii Perfect Closer RXFEVN = Offshore Tycoon RXGE6K = Geon Cube RXGP6K = Geon Cube RXHF5D = Chaos à La Maison RXIE52 = Transformers: Revenge of the Fallen RXIP52 = Transformers: La Venganza de los Caídos RXJJDA = Jinsei Game Wii EX RXKEGL = TV Show King Party RXKFGL = TV Show King Party RXKPGL = TV Show King Party RXLE41 = Grey's Anatomy: The Video Game RXLP41 = Anatomía de Grey: El Videojuego RXMJ8P = Miburi & Teburi RXNEXS = Hooked Again: Real Motion Fishing RXNJJF = Bass Fishing Wii World Tournament RXNPGT = Big Catch Bass Fishing 2 RXPEXS = Hooked!: Real Motion Fishing RXPJJF = Bass Fishing Wii RXPPGT = Big Catch Bass Fishing RXQEWR = Where the Wild Things Are RXQPWR = Donde Viven los Monstruos RXRERS = The Tale of Despereaux RXRPRS = El Valiente Desperaux RXRXRS = El Valiente Desperaux RXSPA4 = Dancing Stage: Hottest Party RXUE41 = Surf's Up RXUP41 = Locos por el Surf RXUX41 = Locos por el Surf RXVXWP = Télé 7 Jeux: Mots Croisés RXWE20 = M&M's Beach Party RXXE4Q = Spectrobes: Origins RXXJ4Q = Spectrobes: Origins RXXP4Q = Spectrobes: Orígenes RXYE4Z = Puzzle Challenge: Crosswords and More! RXYP4Z = Puzzle Challenge Crosswords RXZE52 = Cabela's Dangerous Hunts 2009 RXZP52 = Cabela's Dangerous Adventures RY2E41 = Rayman Raving Rabbids 2 RY2J41 = Rayman Raving Rabbids 2 RY2K41 = Rayman Raving Rabbids 2 RY2P41 = Rayman Raving Rabbids 2 RY2R41 = Rayman Raving Rabbids 2 RY3E41 = Rayman Raving Rabbids: TV Party RY3J41 = Rayman Raving Rabbids TV Party RY3K41 = Rayman Raving Rabbids TV Party RY3P41 = Rayman Raving Rabbids: TV Party RY4J8P = Puyo Puyo 7 RY5E52 = Big League Sports: Summer RY5P52 = World Championship Sports: Summer RY6EA4 = Walk It Out! RY6PA4 = Step to the Beat RY7PHZ = Ninja Captains RY8EFS = Bass Pro Shops: The Strike RYAJDA = Yattaman Wii Bikkuridokkiri Machine De Mou Race Da Koron RYAJSC = Yatterman Wii (Simplified Chinese Translation) RYBE69 = Boom Blox Bash Party RYBP69 = Boom Blox Smash Party RYDELT = Pet Pals: Animal Doctor RYDP6V = Pet Pals: Animal Doctor RYEEEB = 101-in-1 Party Megamix RYEPHZ = 101-in-1 Party Megamix RYGE9B = Rygar: The Battle of Argus RYGJ9B = Argus No Senshi Muscle Impact RYGP99 = Rygar: The Battle of Argus RYHES5 = Roogoo: Twisted Towers RYHPS5 = Roogoo: Twisted Towers RYIE9B = Spray RYIP9B = Spray RYJPTV = Princess Lillifee's Magic Fairy RYKEAF = We Ski & Snowboard RYKJAF = Family Ski: World Ski & Snowboard RYKPAF = Family Ski & Snowboard RYLDSV = Germany's Next Top Model RYNE6U = The Hardy Boys: The Hidden Theft RYNP6V = The Hardy Boys: The Hidden Theft RYOEA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYOJA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYOPA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYQE69 = Trivial Pursuit RYQP69 = Trivial Pursuit RYQX69 = Trivial Pursuit RYRE41 = Your Shape RYRP41 = Your Shape RYTE4Z = PBR: Out of the Chute RYVEMS = Arcade Shooter: Ilvelo RYVJMS = Illvelo Wii RYWE01 = Big Brain Academy: Wii Degree RYWJ01 = Wii de Yawaraka Atama Juku RYWK01 = Big Brain Academy: Wii Degree RYWP01 = Big Brain Academy para Wii RYXE20 = Yamaha Supercross RYXP7J = Yamaha Supercross RYZE6U = World Party Games RYZPTV = Play the World RZ2JG9 = Simple Wii Series Vol. 1: The Minna de Kart Race RZ3JG9 = Simple Wii Series Vol. 2: The Minna de Bass Tsuri Taikai RZ4JG9 = Simple Wii Series Vol. 3: The Casino Party RZ5JG9 = Simple Wii Series Vol. 4: The Shooting Action RZ6JG9 = Simple Wii Series Vol. 5: The Block Kuzushi RZ7JG9 = Simple Wii Series Vol. 6: The Waiwai Konbatto RZ8JG9 = Simple 2000 Series Wii Vol. 1: The Table Game RZ9EG9 = Family Party: 30 Great Games RZ9JG9 = Simple 2000 Series Wii Vol. 2: The Party Game RZ9PG9 = Family Party: 30 Great Games RZAPTV = Power Math RZCE6K = Saint RZDC01 = The Legend of Zelda: Twilight Princess (Personalizado) RZDE01 = The Legend of Zelda: Twilight Princess RZDJ01 = The Legend of Zelda: Twilight Princess RZDK01 = The Legend of Zelda: Twilight Princess RZDP01 = The Legend of Zelda: Twilight Princess RZEE52 = Science Papa RZEP52 = Science Papa RZFPKM = Secret Files 2: Puritas Cordis RZHE5G = Zoo Hospital RZHP5G = Zoo Hospital RZHX5G = Zoo Hospital RZIE20 = Winter Sports 3: The Great Tournament RZIPRT = Winter Sports 2010: The Great Tournament RZJD69 = Dead Space: Extraction RZJE69 = Dead Space: Extraction RZJJ13 = Dead Space: Extraction RZJP69 = Dead Space: Extraction RZKE20 = Puzzle Kingdoms RZKP7J = Puzzle Kingdoms RZLE41 = Cook Wars RZLP41 = Cooking Party RZNJ01 = Zangeki no Reginleiv RZOE78 = World of Zoo RZOP78 = World of Zoo RZPE01 = Link's Crossbow Training RZPJ01 = Link's Crossbow Training RZPK01 = Link's Crossbow Training RZPP01 = Link's Crossbow Training RZREGT = The Destiny of Zorro RZRPGT = El Destino de El Zorro RZSEGJ = Speed Zone RZSP68 = Wheelspin RZTE01 = Wii Sports Resort RZTJ01 = Wii Sports Resort RZTK01 = Wii Sports Resort RZTP01 = Wii Sports Resort RZTW01 = Wii Sports Resort RZUE4Z = Crayola Colorful Journey RZYE41 = My Word Coach RZYF41 = Mi Experto en Vocabulario RZYP41 = Mi Experto en Vocabulario RZYS41 = Mi Experto en Vocabulario RZZE8P = MadWorld RZZJEL = MadWorld RZZP8P = MadWorld S02PES = Sing It Star 90's S22JAF = Family Fishing S22K01 = Family Fishing S25JGD = Dragon Quest 25 Collection: Famicom & Super Famicom Dragon Quest I-II-III S26PML = 2-in-1: Pony Friends 2 + My Riding Stables: Life with Horses S2AEAF = Active Life: Explorer S2AJAF = Minna de Bouken! Family Trainer S2APAF = Family Trainer: Treasure Adventure S2BEPZ = Country Dance 2 S2BPXT = Country Dance 2 S2CE54 = New Carnival Games S2CP54 = New Carnival Funfair Games S2DPML = Dance! It's Your Stage S2EE41 = ABBA: You Can Dance S2EP41 = ABBA: You Can Dance S2HE70 = Haunted House S2HP70 = Haunted House S2IE8P = Iron Man 2 S2IP8P = Iron Man 2 S2LE01 = PokéPark 2: Wonders Beyond S2LJ01 = PokéPark 2: Beyond the World S2LP01 = PokéPark 2: Wonders Beyond S2ME69 = Madden NFL 13 S2OEFS = Bass Pro Shops: The Strike - Tournament Edition S2PEA4 = Pro Evolution Soccer 2012 S2PJA4 = Winning Eleven PLAY MAKER 2012 S2PPA4 = Pro Evolution Soccer 2012 S2PXA4 = Pro Evolution Soccer 2012 S2PYA4 = Pro Evolution Soccer 2012 S2QE54 = NBA 2K12 S2QP54 = NBA 2K12 S2RPNK = Reload S2TJAF = Taiko no Tatsujin Wii: Dodoon to 2 Daime! S2VEG9 = Victorious: Taking the Lead S2VPAF = Victorious: Taking the Lead S2WE78 = WWE All Stars S2WP78 = WWE All Stars S2XE41 = Los Pitufos 2 S2XP41 = Los Pitufos 2 S2YE52 = Wipeout: Create & Crash S2ZE52 = Zhu Zhu Pets: Featuring The Wild Bunch S2ZP52 = Zhu Zhu Pets: Los Amigos del Bosque S3AE5G = Attack of the Movies 3D S3BEWR = Batman: El Intrépido Batman S3BPWR = Batman: El Intrépido Batman S3CENR = Triple Crown Championship Snowboarding S3DE18 = Deca Sports 3 S3DJ18 = Deca Sporta 3 S3DP18 = Sports Island 3 S3EE78 = Barbie Jet, Set & Style! S3EP78 = Barbie: Planeta Fashionista S3FE69 = FIFA Soccer 13 S3FP69 = FIFA 13 S3FX69 = FIFA 13 S3GE20 = Glacier 3: The Meltdown S3GPXT = Glacier 3 S3HJ08 = Sengoku Basara 3 Utage S3IEA4 = Pro Evolution Soccer 2013 S3IPA4 = Pro Evolution Soccer 2013 S3IXA4 = Pro Evolution Soccer 2013 S3IYA4 = Pro Evolution Soccer 2013 S3LPY1 = Andrew Lloyd Webber Musicals: Sing and Dance S3ME69 = The Sims 3 S3MP69 = Los Sims 3 S3PE4Q = Disney Princess: My Fairytale Adventure S3PP4Q = Disney Princesas: Reinos Mágicos S3PX4Q = Disney Princess: My Fairytale Adventure S3RJMS = Twinkle Queen S3SJ18 = Karaoke Joysound Wii Super DX: Hitori de Minna de Utai Houdai! S3TJAF = Taiko no Tatsujin Wii: Minna de Party ☆ 3 Daime! S3WEG9 = Family Party: 30 Great Games Winter Fun S3WPG9 = Family Party: 30 Great Games Winter Fun S3XE78 = WWE '13 S3XP78 = WWE '13 S3ZE52 = Men In Black: Alien Crisis S3ZP52 = Men In Black: Alien Crisis S4MJGD = Dragon Quest X Online: Mesamashi Itsutsu no Shuzoku S4SJGD = Dragon Quest X: Nemureru Yuusha to Michibiki no Meiyuu Online S4TJAF = Taiko no Tatsujin Wii: Ketteiban S59E01 = Samurai Warriors 3 S59JC8 = Sengoku Musou 3 S59P01 = Samurai Warriors 3 S5BETL = Back to the Future: The Game S5BPKM = Regreso al Futuro: El juego S5KJAF = Taiko no Tatsujin Wii Chou Goukaban S5QJC8 = Sengoku Musou 3 Moushouden S5RESZ = Ram Racing S5RPNJ = Ram Racing S5SJHF = Inazuma Eleven Go Strikers 2013 S5TEG9 = Ben 10: Omniverse S5TPAF = Ben 10: Omniverse S5WE20 = Around The World in 50 Games S6BE4Q = Brave: The Video Game S6BP4Q = Brave: El Videojuego S6BY4Q = Brave: The Video Game S6IE78 = Disney Princess: Enchanting Storybooks S6IP78 = Princesas Disney: Cuentos Encantados S6RE52 = Wreck-It Ralph S6RP52 = Rompe Ralph S6TJGD = Dragon Quest X (All in One Package) S72E01 = Kirby's Dream Collection: Special Edition S72J01 = Hoshi No Kirby: 20th Anniversary Edition S75E69 = Monopoly Streets S75P69 = Monopoly Streets S7AEWR = LEGO Batman 2: DC Super Heroes S7AKWR = LEGO Batman 2: DC Super Heroes S7AKZA = Lego Superheroes 1 S7APWR = LEGO Batman 2: DC Super Heroes S7BE69 = Trivial Pursuit: Bet You Know It S7BP69 = Trivial Pursuit: Casual S7CJAF = Kamen Rider Climax Heroes Fourze S7DE52 = Angry Birds: Star Wars S7DP52 = Angry Birds: Star Wars S7EP52 = Transformers: Ultimate Battle Edition S7FE5G = Zumba Kids S7FPGT = Zumba Kids: ¡Ven a la fiesta del baile! S7JPKM = Let's Sing 6 - Versión española S7KPKM = Let's Sing 2014 S7SP41 = Los Pitufos Party Pack S80U3Q = SingItStar Ultimate 80s SA3E5G = Alvin and the Chipmunks: Chipwrecked SA3P5G = Alvin y las Ardillas 3 SA5E78 = Are You Smarter Than A 5th Grader?: Back to School SA6EG9 = Ben 10: Galactic Racing SA6PAF = Ben 10: Galactic Racing SA7ESZ = Gummy Bears: Magical Medallion SA8P52 = The Amazing Spider-Man SA9D7K = Bibi und Tina Das grosse Reiterfest SAAJA4 = Winning Eleven PLAY MAKER 2013 SABENR = Alien Monster Bowling League SABPJG = Alien Monster Bowling League SACPVS = ACB Total 2010-2011 SACSVS = ACB Total 2010/2011 SADE70 = Backyard Sports: Sandlot Sluggers SAFUHS = AFL: Australian Football League SAGE41 = The Amazing Race SAHE69 = Hasbro: Family Game Night Fun Pack SAJE52 = Cabela's Survival: Shadows of Katmai SAJP52 = Cabela's Survival: Shadows of Katmai SAKENS = Sakura Wars: So Long, My Love SAKPNS = Sakura Wars: So Long, My Love SALE4Q = Alice in Wonderland SALP4Q = Alicia en el País de las Maravillas SAME01 = New Super Mario Bros. Wii 11 American Revolution SANE01 = New Super Mario Bros. Wii Five Spica Edition SANEFS = Bass Pro Shops: The Hunt - Trophy Showdown SANT3Q = SingItStar Anthems SAOE78 = Monster High: Ghoul Spirit SAOP78 = Monster High: Instituto Monstruoso SAQE5G = Harley Pasternak's Hollywood Workout SARE4Z = Aladdin Magic Racer SARP01 = New Super Mario Bros. Wii 4 Arcadia Another Ride SARPNK = Aladin: Magic Racer SASEWW = Atrévete a Soñar SATE6K = Chuck E. Cheese's Super Collection SAUJ8P = Puyo Puyo!! 20th Anniversary SAVE5G = Alvin and the Chipmunks: The Squeakquel SAVX5G = Alvin and the Chipmunks: The Squeakquel SAWE52 = Angry Birds Trilogy SAWP52 = Angry Birds Trilogy SAXPFH = Max & the Magic Marker SAYE20 = Boot Camp Academy SAYP41 = Boot Camp Academy SAZE52 = The Amazing Spider-Man SAZP52 = The Amazing Spider-Man SB2ES5 = My Baby First Steps SB2PNP = My Baby 2: ¡Mi Bebé Ha Crecido! SB3E08 = Sengoku Basara: Samurai Heroes SB3J08 = Sengoku BASARA 3 SB3P08 = Sengoku Basara: Samurai Heroes SB4C01 = Super Mario Galaxy 2 (Personalizado) SB4E01 = Super Mario Galaxy 2 SB4E02 = Neo Mario Galaxy SB4E03 = Super Mario Galaxy: Plumber's Way SB4E04 = Super Mario Sunshine Galaxy SB4E05 = Season Cycle Galaxy SB4E25 = Super Mario Galaxy 2.5 SB4J01 = Super Mario Galaxy 2 SB4J02 = Neo Mario Galaxy SB4J05 = Season Cycle Galaxy SB4K01 = Super Mario Galaxy 2 SB4P01 = Super Mario Galaxy 2 SB4P02 = Neo Mario Galaxy SB4P05 = Season Cycle Galaxy SB4W01 = Super Mario Galaxy 2 SB5E54 = NBA 2K11 SB5P54 = NBA 2K11 SB6E52 = Bakugan: Defenders of the Core SB6P52 = Bakugan: Defensores de la Tierra SB7IVU = Planet Basket 2009/2010 SB8EQH = Burger Bot SB9E78 = Barbie: Groom and Glam Pups SB9P78 = Barbie y el Salón de Belleza para Mascotas SBAJGD = Dragon Quest Monsters: Battle Road Victory SBBE18 = Beyblade: Metal Fusion - Battle Fortress SBBJ18 = Metal Fight Beyblade Gachinko Stadium SBBP18 = Beyblade: Metal Fusion - Counter Leone SBCJ2N = Billy's Boot Camp: Wii de Enjoy Diet! SBDE08 = Resident Evil: The Darkside Chronicles SBDJ08 = Biohazard: The Darkside Chronicles SBDK08 = Biohazard: The Darkside Chronicles SBDP08 = Resident Evil: The Darkside Chronicles SBEPSV = Bermuda Triangle SBFE70 = Backyard Football '10 SBHEFP = Remington Great American Bird Hunt SBHPNK = Remington Great American Bird Hunt SBIEVZ = Busy Scissors SBIPVZ = Busy Scissors SBJEG9 = Ben 10 Ultimate Alien: Cosmic Destruction SBJPAF = Ben 10: Ultimate Alien: Cosmic Destruction SBKEPZ = Brunswick Zone Cosmic Bowling SBLE5G = A Boy and His Blob SBLP5G = A Boy and His Blob SBNEG9 = Ben 10 Alien Force: Vilgax Attacks SBNPG9 = Ben 10: Alien Force: Vilgax Attacks SBOD3Q = SingItStar: Best of Disney SBQE4Z = Big Buck Hunter Pro SBREJJ = Let's Play Ballerina SBRPKM = Repetto presenta Ballerina SBSE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh SBSEFP = Remington Super Slam Hunting: North America SBSURN = Remington Super Slam Hunting: North America SBVE78 = SpongeBob's Boating Bash SBVG3Q = SingItStar Boybands vs Girlbands SBVP78 = Bob Esponja: Botes de Choque SBVS78 = Bob Esponja: Botes de Choque SBWC11 = New Super Mario Bros. 3: The Wrath of Shadow Bowser SBWE5G = Babysitting Mama SBWJRA = Babysitter Mama SBWPGT = Cooking Mama World: Babysitting Mama SBXEWR = The Bachelor: The Video Game SBYE41 = Dance on Broadway SBYP41 = Dance on Broadway SBZESZ = Triángulo de las Bermudas: Salvemos el Coral SC2E8P = Conduit 2 SC2P8P = Conduit 2 SC4E64 = LEGO Star Wars III: The Clone Wars SC4P64 = LEGO Star Wars III: The Clone Wars SC5PGN = Challenge Me: Word Puzzles SC6PGN = Challenge Me: Brain Puzzles 2 SC7D52 = Call of Duty: Black Ops SC7E52 = Call of Duty: Black Ops SC7F52 = Call of Duty: Black Ops SC7I52 = Call of Duty: Black Ops SC7P52 = Call of Duty: Black Ops SC7S52 = Call of Duty: Black Ops SC8E01 = Wii Play: Motion SC8J01 = Wii Play: Motion SC8K01 = Wii Play: Motion SC8P01 = Wii Play: Motion SC9P52 = Cabela's Big Game Hunter 2010 SCAE18 = Calling SCAJ18 = CALLING Kuroki Chakushin SCAP18 = Calling SCBPNK = Cyberbike Cycling Sports SCDE52 = Cabela's Dangerous Hunts 2011 SCDP52 = Cabela's Dangerous Hunts 2011 SCEE6K = Chuck E. Cheese's Party Games SCFPNK = Cocoto Festival SCGE20 = Calvin Tucker's Redneck: Farm Animal Racing Tournament SCGPXT = Calvin Tucker's: Farm Animals Racing Tournament SCHEQH = Canada Hunt SCIE41 = CSI: Fatal Conspiracy SCIP41 = CSI: La Conspiración SCJE4Q = LEGO Piratas del Caribe: El Videojuego SCJP4Q = LEGO Piratas del Caribe: El Videojuego SCKE6K = Chuck E. Cheese's Sports Games SCMJAF = Kamen Rider Climax Heroes OOO SCNEA4 = Scene It? Twilight SCNPA4 = Scene It? Crepúsculo SCPE70 = Centipede: Infestation SCQDRV = Schlag den Raab - Das 2. Spiel SCREJH = Chicken Riot SCRPJH = Chicken Riot SCSE52 = Cruise Ship Vacation Games SCSPGR = Cruise Ship Resort SCTE01 = The Curse of Black Toad SCTPNK = Cocoto Surprise SCUPFR = Crazy Chicken: Carnival SCWE41 = Gold's Gym: Dance Workout SCWP41 = Mi Experto en Fitness: Dance Workout SCXESZ = Chevrolet Camaro: Wild Ride SCXPNJ = Chevrolet Camaro: Wild Ride SCYE4Q = Cars 2: El Videojuego SCYP4Q = Cars 2: El Videojuego SCYX4Q = Cars 2: El Videojuego SCYY4Q = Cars 2: El Videojuego SCYZ4Q = Cars 2: El Videojuego SCZEMH = Crazy Machines SCZPFR = Crazy Machines SD2E41 = Just Dance 2 SD2J01 = Just Dance Wii SD2K41 = Just Dance 2 SD2P41 = Just Dance 2 SD2Y41 = Just Dance 2 (Edición Best Buy) SD3DSV = Der Gesundheitscoach SD5PTV = Lernerfolg Grundschule Deutsch SD6PTV = Éxito en Primaria: Inglés - Curso 1-4 SD7PTV = Éxito en Primaria: Matemáticas - Curso 1-4 SD8DSV = Mein neues Leben Abenteuer auf Tropicana SD9JAF = SD Gundam Gashapon Wars SDAE01 = Scooby-Doo! The Bros Adventure SDAE5G = The Daring Game for Girls SDBE78 = de Blob 2 SDBP78 = de Blob 2 SDDPML = The Ultimate Battle of the Sexes SDEE5G = Dance Sensation! SDFE4Q = Disney Sing It: Family Hits SDFP4Q = Disney Sing It: Family Hits SDGE4Q = Disney Channel: All Star Party SDGP4Q = Disney Channel: All Star Party SDHER3 = Super Smash Bros. Brawl Dark Hole/D.A.R.S. SDIE4Q = Disney Sing It: Party Hits SDIP4Q = Disney Sing It: Party Hits SDJJAF = SD Gundam: G Generation World SDLE78 = Dood's Big Adventure SDLP78 = La Gran Aventura de Dood SDMEG9 = Gru, Mi Villano Favorito SDMPAF = Gru, Mi Villano Favorito SDNE41 = Just Dance SDNP41 = Just Dance SDOPLR = Doctor Who: Return To Earth SDPE54 = Dora's Big Birthday Adventure SDPP54 = Dora la Exploradora: La Gran Aventura de Cumpleaños SDQJGD = Dragon Quest X Inishie no Ryu no Denshou Online SDREYG = Maximum Racing: Drag & Stock Racer SDRP3Q = SingItStar Deutsch Rock-Pop Vol. 1 SDRPNG = Drag & Stock Racer SDSPNG = We Dance SDTH3Q = SingItStar Die Toten Hosen SDTPGN = PDC World Championship Darts: Pro Tour SDUE41 = Los Pitufos: Dance Party SDUP41 = Los Pitufos: Dance Party SDUPO1 = DU Super Mario Bros.: DU Edition SDVE41 = Driver: San Francisco SDVP41 = Driver: San Francisco SDWE18 = Lost in Shadow SDWJ18 = Lost in Shadow SDWP18 = La Torre de las Sombras SDXE4Q = Disney Universe SDXP4Q = Disney Universe SDYEA4 = Dance Dance Revolution SDYPA4 = Dance Dance Revolution: Hottest Party 4 SDZE41 = Just Dance Kids SDZP41 = Dance Juniors SE2E69 = EA Sports Active 2 SE2P69 = EA Sports Active 2 SE3E41 = Just Dance 2015 SE3P41 = Just Dance 2015 SEAE69 = EA Sports Active: More Workouts SEAJ13 = EA Sports Active More Workout SEAP69 = EA Sports Active: Nuevos Retos SECE69 = Create SECP69 = Create SEGA = Genplus GX SEGE6U = Yoga SEGP6V = Yoga SEKJ99 = Ikenie no Yoru SELE69 = FIFA Soccer 11 SELP69 = FIFA 11 SELX69 = FIFA 11 SEME4Q = Disney Epic Mickey SEMJ01 = Disney Epic Mickey: Mickey Mouse and the Magic Brush SEMP4Q = Disney Epic Mickey SEMX4Q = Disney Epic Mickey SEMY4Q = Disney Epic Mickey SEMZ4Q = Disney Epic Mickey SENPZX = Enclave: Shadows of Twilight SEOP01 = New Super Mario Bros. Wii 8 Omega SEOP4Q = Sing It: Edad de Oro del Pop Español SEPE41 = The Black Eyed Peas Experience SEPP41 = The Black Eyed Peas Experience SEPX41 = The Black Eyed Peas Experience D1 Edition SEPZ41 = The Black Eyed Peas Experience: Limited Edition SERE4Q = Disney Epic Mickey 2: The Power of Two SERF4Q = Disney Epic Mickey 2: El retorno de dos héroes SERK4Q = Disney Epic Mickey 2: The Power of Two SERP4Q = Disney Epic Mickey 2: El retorno de dos héroes SERV4Q = Disney Epic Mickey 2: The Power of Two SESEWR = Sesame Street: Ready, Set, Grover! SESPWR = Barrio Sésamo ¿Preparados? ¿Listos? ¡Coco! SESUWR = Barrio Sésamo ¿Preparados? ¿Listos? ¡Coco! SEZJHF = Inazuma Eleven Strikers 2012 Xtreme SF2P64 = Star Wars: El Poder de la Fuerza II SF4E20 = Flatout SF4PXT = Flatout SF5E41 = Fit in Six SF5J41 = Fit in Six SF5P41 = Mi Experto en Fitness: Club SF7E41 = Family Feud 2012 Edition SF8E01 = Donkey Kong Country Returns SF8J01 = Donkey Kong Returns SF8P01 = Donkey Kong Country Returns SFAE41 = Family Feud Decades SFAJGD = Fullmetal Alchemist: Daughter of the Dusk SFBE70 = Backyard Sports Football: Rookie Rush SFDE01 = New Super Mario Bros. Wii 9 Virtue: This Fall Darkness SFDEAF = Active Life: Magical Carnival SFDJAF = Issyoni Asobou! Dream Theme Park SFDPAF = Family Trainer: Magical Carnival SFGE69 = Hasbro: Family Game Night 4 - The Game Show SFGP69 = Hasbro: Family Game Night 4 - The Game Show SFHEFP = Outdoor Action Double Pack SFIE01 = Mystery Case Files: The Malgrave Incident SFIP01 = Mystery Case Files: El Incidente Malgrave SFKEG9 = Family Party: Fitness Fun SFKPAF = Family Party: Fitness Fun SFLDSV = Der Fluch der Osterinsel SFOEAF = Food Network: Cook or Be Cooked SFPPFR = Fantastic Fútbol Fan Party SFQE8P = Captain America: Super Soldier SFQP8P = Capitán América: Supersoldado SFRDRV = Fit & Fun SFRPXT = Fit & Fun SFSPGT = All Round Hunter SFTE78 = Wheel of Fortune SFTP78 = Wheel of Fortune SFUE64 = Star Wars: El Poder de la Fuerza II SFVEXJ = Fishing Resort SFWE69 = Copa Mundial de la FIFA Sudáfrica 2010 SFWJ13 = 2010 FIFA World Cup South Africa SFWK13 = 2010 FIFA World Cup: South Africa SFWK69 = 2010 FIFA World Cup South Africa SFWP69 = Copa Mundial de la FIFA Sudáfrica 2010 SFWX69 = Copa Mundial de la FIFA Sudáfrica 2010 SFWY69 = Copa Mundial de la FIFA Sudáfrica 2010 SFWZ69 = 2010 FIFA World Cup South Africa SFXPKM = X Factor SFXXKM = X Factor SFYEG9 = Family Party: 90 Great Games Party Pack SFYPAF = Family Party: 90 Great Games Party Pack SFZEPZ = Pheasants Forever: Wingshooter SFZPXT = Pheasants Forever SG2EFS = Crazy Mini Golf 2 SG2XUG = Crazy Mini Golf 2 SG2YFS = Crazy Mini Golf 2 SG3DSV = Germany's Next Top Model 2010 SG5PSV = Galileo Family Quiz SG6DSV = Galileo Family Quiz SG7E20 = The Garfield Show: Threat of the Space Lasagna SG7PVL = Garfield: La Amenaza de la Lasaña del Espacio SG8EG9 = Yogi Bear SG8PAF = El Oso Yogui: El Videojuego SG9EYC = Gremlins: Gizmo SGAE8P = Tournament of Legends SGAP8P = Tournament of Legends SGBE5G = Greg Hastings Paintball 2 SGCE20 = Glacier 2 SGDEJJ = Let's Play Garden SGDPKM = Cuida tu Jardín SGEEG9 = Nat Geo Challenge! Wild Life SGEPLG = Nat Geo Quiz! Wild Life SGHE41 = Tom Clancy's Ghost Recon SGHP41 = Tom Clancy's Ghost Recon SGI1CL = SingIt Clásicos SGI1DB = Sing IT: Dibujos Animados SGI1MC = SingItStar Mecano SGI1ML = Sing It Star: Miliki SGI1PT = Sing IT: Party SGI1RC = Sing IT: Rocks 2 SGIEA4 = GTI Club Supermini Festa! SGIJA4 = GTI Club World City Race SGIPA4 = GTI Club Supermini Festa! SGJDSV = Galileo Mystery: The Crown of Midas SGJPSV = The Crown of Midas SGKEC8 = Champion Jockey: G1 Jockey & Gallop Racer SGKJC8 = Champion Jockey: Gallop Racer & GI Jockey SGKPC8 = Champion Jockey: G1 Jockey & Gallop Racer SGLEA4 = Gormiti: Los Señores de la Naturaleza SGLPA4 = Gormiti: Los Señores de la Naturaleza SGNE69 = Hasbro: Family Game Night Value Pack SGODKP = Mini Golf Resort SGOETV = Mini Golf Resort SGPEYG = Maximum Racing: GP Classic Racing SGPPNG = GP Classic Racing SGPTI1 = Sing It Party SGQDSV = Germany's Next Top Model 2011 SGREGT = Grease SGRPGT = Grease SGSESZ = Family Gameshow SGSP7J = Family GameShow SGTEFS = My Personal Golf Trainer with IMG Academies and David Leadbetter SGTPUG = My Personal Golf Trainer with IMG Academies and David Leadbetter SGUE4Q = Disney Guilty Party SGVEAF = Go Vacation SGVJAF = Go Vacation SGVPAF = Go Vacation SGWD7K = Bibi Blocksberg SGXE41 = Battle of Giants: Dinosaurs Strike SGXP41 = Combate de Gigantes: Lucha de Dinosourios SGYESZ = Gummy Bears Mini Golf SGYPNJ = Gummy Bears Mini Golf SH2JMS = Hula Wii: Tanoshiku Hula o Odorou!! SH3E54 = NHL 2K11 SH3P54 = NHL 2K11 SH4EFP = Heavy Fire: Afghanistan SH4PNK = Heavy Fire: Afghanistan SH5E69 = Harry Potter and the Deathly Hallows, Part 2 SH5P69 = Harry Potter y las Reliquias de la Muerte - Parte 2 SH6E52 = Cabela's Big Game Hunter 2012 SH6P52 = Cabela's Big Game Hunter 2012 SH7ESZ = Honda ATV Fever SH7PNJ = ATV Fever SH8E52 = Cabela's Adventure Camp SH8P52 = Cabela's Adventure Camp SH9ESZ = Heathcliff: The Fast and the Furriest SHBE69 = Hasbro: Family Game Night 3 SHBP69 = Hasbro: Juegos en Familia 3 SHDE52 = How To Train Your Dragon SHDP52 = Cómo Entrenar a Tu Dragón SHEDRM = Der Bauernhof SHFE20 = Basketball Hall of Fame: Ultimate Hoops Challenge SHGDRM = Holiday Games SHHE69 = Harry Potter and the Deathly Hallows, Part 1 SHHP69 = Harry Potter y las Reliquias de la Muerte - Parte 1 SHIJ2N = Shape Boxing 2 Wii Enjoy Diet! SHKE20 = Hello Kitty Seasons SHKPNQ = Hello Kitty Seasons SHLPA4 = Silent Hill: Shattered Memories SHMPLR = Pablo Diablo SHNE41 = Shaun White Skateboarding SHNP41 = Shaun White Skateboarding SHOXKR = Hugo: Magic in the Troll Woods SHOYKR = Hugo: Magic in the Troll Woods SHPE5G = Our House Party SHSE20 = Hyper Fighters SHSPXT = Hyper Fighters SHTE20 = Mathews Bow Hunting SHUE52 = Cabela's Dangerous Hunts 2011: Special Edition SHVE78 = Hot Wheels: Track Attack SHVP78 = Hot Wheels: Track Attack SHWE41 = Hollywood Squares SHXEWR = Happy Feet Two SHXPWR = Happy Feet 2 SHYE69 = NHL Slapshot SHYP69 = NHL Slapshot SHZENR = Harley Davidson: Road Trip SI3E69 = FIFA Soccer 12 SI3P69 = FIFA 12 SI3X69 = FIFA 12 SIABOH = SingItStar Placebo SIAE52 = Ice Age: Continental Drift - Arctic Games SIAP52 = Ice Age 4: La formación de los continentes - Juegos en el Artico SIBBHJ = SingItStar Country SIDE54 = Sid Meier's Pirates! SIDP54 = Sid Meier's Pirates! SIESP1 = Sing It: Canciones en Español SIFESZ = The Island of Dr. Frankenstein SIFPNJ = The Island of Dr. Frankenstein SIFPOH = SingItStar Fussballhits SIHE4Z = Sing 4: The Hits Edition SIIE8P = Mario & Sonic en los Juegos Olímpicos - London 2012 SIIJ01 = Mario & Sonic en los Juegos Olímpicos - London 2012 SIIP8P = Mario & Sonic en los Juegos Olímpicos - London 2012 SIJE52 = iCarly 2: iJoin the Click! SIJP52 = iCarly 2: ¡Todo en un Click! SILE78 = Worms: Battle Islands SILP4Q = Sing It: Latino SILP78 = Worms Battle Islands SIME69 = MySims Collection SINPNG = We Sing: Robbie Williams SIPE7T = I SPY Game Pack SIS1OH = SingItStar Custom: Volume 1 SIS2OH = SingItStar ABBA SIS3OH = SingItStar Summer Party SIS4OH = SingItStar Amped SIS5OH = SingItStar Pop Hits SIS7OH = SingItStar Take That SIS80Q = SingItStar Ultimate 80's SIS80S = StarSing : '80s Volume 1 v1.2 SIS90H = SingItStar 90´s SIS9OH = SingItStar 90's SISACD = StarSing AC/DC SISAOH = SingItStar Après Ski Party SISBOH = SingItStar R'n'B SISCOH = SingItStar Chartbreaker SISCS1 = SingItStar Chartsurfer Vol. 1 SISDAE = SingItStar Die Ärzte SISDEM = SingItStar Depeche Mode SISDOH = SingItStar The Dome SISENR = Princess Isabella: A Witch's Curse SISHOH = SingItStar Hottest Hits SISJ0Q = Pelvic Fitness by Wii (Isometric & Karate Exercise) SISLIP = StarSing : Linkin Park v1.2 SISLOH = SingItStar Legends SISMEL = StarSing: Happy Birthday Mélanie v1.1 SISMJ1 = StarSing: Michael Jackson v2.1 SISMOH = SingItStar Mallorca Party SISP10 = SingItStar Studio100 SISP12 = StarSing : Pop Hits 1 & 2 v2.0 SISP34 = StarSing : Pop Hits 3 & 4 v2.0 SISPBC = SingItStar Britney vs Christina SISPOH = SingItStar Party SISPOP = StarSing: Pop v1.1 SISPUH = Princess Isabella: A Witch's Curse SISQ3Q = SingItStar Queen SISR3Q = SingItStar Rocks! SISREU = StarSing: Rocks! v1.1 SISRP4 = SingItStar Rocks! SISSOH = SingItStar Schlager SISTDK = SingItStar - Turkish Party SITPNG = We Sing: German Hits SIUUNG = We Sing Down Under SIXE01 = New Super Mario Bros Wii 16 Revelations SIXE41 = Drawsome! Tablet SJ2EWR = Scooby-Doo! y el Pantano Tenebroso SJ2PWR = Scooby-Doo! y el Pantano Tenebroso SJ3JDA = Jinsei Game: Happy Family SJ3PNL = Jakers! Kart Racing SJ5JDA = Jinsei Game Happy Family Gotouchi Neta Zouryou Shiage SJ6E41 = Just Dance Disney Party SJ6P41 = Just Dance Disney Party SJ7E41 = Just Dance Kids 2014 SJ7P41 = Just Dance Kids 2014 SJ9E41 = Just Dance Summer Party SJ9P41 = Just Dance 2: Extra Songs SJAE5G = JAWS: Ultimate Predator SJBE52 = GoldenEye 007 SJBJ01 = GoldenEye 007 SJBP52 = GoldenEye 007 SJCEZW = Jerry Rice & Nitus' Dog Football SJDE41 = Just Dance 3 SJDJ01 = Just Dance Wii 2 SJDK41 = Just Dance 3 SJDP41 = Just Dance 3 SJDX41 = Just Dance 3 Special Edition SJDY41 = Just Dance 3 (Edición Best Buy) SJDZ41 = Just Dance 3 (Edición Target) SJEEPK = JumpStart Escape from Adventure Island SJFE4Z = Kid Fit Island Resort SJFPGR = Junior Fitness Trainer SJFXGR = Junior Fitness Trainer SJGEPK = JumpStart Get Moving Family Fitness SJHE41 = Just Dance Greatest Hits SJIEG9 = Fitness Ultimatum 2011 de Jillian Michaels SJJEA4 = Jimmie Johnson's Anything With An Engine SJKEPK = JumpStart Crazy Karts SJLEFS = Junior League Sports SJLPXT = Junior League Sports SJME5G = Fitness Ultimatum 2010 de Jillian Michaels SJMPGT = Fitness Ultimatum 2010 de Jillian Michaels SJOE41 = Just Dance 2014 SJOP41 = Just Dance 2014 SJPE78 = Jeopardy! SJQEPZ = Jewel Quest Trilogy SJQPGR = Jewel Quest Trilogy SJREA4 = Def Jam Rapstar SJRXA4 = Def Jam Rapstar SJSEPK = JumpStart Pet Rescue SJTP41 = Just Dance: Best Of SJUE20 = Dino Strike SJUPXT = Dino Strike SJVE20 = Shawn Johnson Gymnastics SJWJA4 = Winning Eleven PLAY MAKER 2010 Japan Challenge SJXD41 = Just Dance 4 SJXE41 = Just Dance 4 SJXP41 = Just Dance 4 SJZE41 = Just Dance Kids 2 SJZP41 = Just Dance Kids SK3EEB = Trauma Team SK4E52 = Shrek: Felices Para Siempre SK4P52 = Shrek: Felices Para Siempre SK5PY1 = Kylie Sing & Dance SK6KJD = K-POP Dance Festival SK7PVZ = Disney Violetta: Ritmo & Música SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8P52 = Skylanders: Trap Team SK8V52 = Skylanders: Trap Team SKAEA4 = Karaoke Revolution Glee SKAPA4 = Karaoke Revolution Glee SKBEG9 = Kidz Bop Dance Party SKCE20 = Bigfoot: King of Crush SKDJ18 = Karaoke Joysound Wii Duet Song SKEJ18 = Karaoke Joysound Wii: Enka Kayoukyoku Hen SKGEA4 = Karaoke Revolution Glee Volume 2 SKGPA4 = Karaoke Revolution Glee Volume 2 SKHJAF = Kamen Rider Super Climax Heroes SKJE78 = You Don't Know Jack SKKPHY = Captain Morgane and the Golden Turtle SKKXHY = Captain Morgane and the Golden Turtle SKLDSV = K11 - Kommissare im Einsatz SKMJAF = Kamen Rider Climax Heroes W SKOEA4 = Karaoke Revolution Glee Volume 3 SKOPA4 = Karaoke Revolution Glee Volume 3 SKREG9 = Kamen Rider Dragon Knight SKSE54 = NBA 2K13 SKSP54 = NBA 2K13 SKTE78 = All Star Karate SKTP78 = All Star Karate SKUE78 = Kung Fu Panda 2 SKUP78 = Kung Fu Panda 2 SKVE20 = Kevin Van Dam's Big Bass Challenge SKWPNK = Cocoto Kart Racer 2 SKXE20 = Pirate Blast SKXPFH = Pirate Blast SKYE52 = Skylanders: Giants SKYP52 = Skylanders: Giants SKYX52 = Skylanders: Giants SKYZ52 = Skylanders: Giants SKZE52 = DreamWorks Super Star Kartz SKZP52 = DreamWorks Super Star Kartz SL2J01 = Zero: Shinku no Chou SL2P01 = Project Zero 2: Wii Edition SL3ENR = Dragon's Lair Trilogy SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = Airbender: El Último Guerrero SLAP78 = Airbender: El Último Guerrero SLAZ78 = Airbender: El Último Guerrero (Edición Especial Toys'Rus) SLCEGN = Get Up And Dance SLCPGN = Get Up And Dance SLDEYG = Let's Dance SLDPLG = Let's Dance with Mel B SLEE78 = Deepak Chopra's Leela SLEP78 = Deepak Chopra's Leela SLFE01 = New Super Mario Bros. 3 The Final Levels SLFP01 = New Super Mario Bros. 3: The Final Levels SLFPKM = Let's Sing SLFXKM = Let's Sing 5 - Versión española SLHEWR = LEGO Harry Potter: Años 5-7 SLHPWR = LEGO Harry Potter: Años 5-7 SLIE52 = Little League World Series Baseball: Double Play SLLEWW = Lucha Libre AAA: Héroes del Ring SLPP5D = The Spirit of the Wolf SLREWR = LEGO The Lord of the Rings SLRPWR = LEGO El Señor de los Anillos SLSEXJ = The Last Story SLSJ01 = The Last Story SLSP01 = The Last Story SLTEJJ = NewU Fitness First Mind Body: Yoga & Pilates Workout SLTPLG = NewU Fitness First Mind Body: Yoga & Pilates Workout SLVP41 = Party Night ¿Te Atreves? SLWE41 = Where's Waldo? The Fantastic Journey SLYESZ = Beastly SLYPNJ = Beastly SM2E52 = 10 Minute Solution SM2P52 = 10 Minute Solution SM3E01 = Super Mario Bros. 3+ SM4E20 = Monster Trucks Mayhem SM4PXT = Monster Trucks: Ultra Mega Xtreme!!! SM5EAF = Power Rangers Samurai SM5PAF = Power Rangers Samurai SM6PNK = My Body Coach 2: Fitness & Dance SM7E69 = Madden NFL 12 SM8D52 = Call of Duty: Modern Warfare 3 SM8E52 = Call of Duty: Modern Warfare 3 SM8F52 = Call of Duty: Modern Warfare 3 SM8I52 = Call of Duty: Modern Warfare 3 SM8P52 = Call of Duty: Modern Warfare 3 SM8S52 = Call of Duty: Modern Warfare 3 SM8X52 = Call of Duty: Modern Warfare 3 SM9E54 = Major League Baseball 2K12 SMAENR = Marines: Modern Urban Combat SMAPGN = Marines: Modern Urban Combat SMBE8P = Super Monkey Ball: Step & Roll SMBJ8P = Super Monkey Ball: Step & Roll SMBP8P = Super Monkey Ball: Step & Roll SMCENR = We Wish You A Merry Christmas SMCPXT = We Wish You A Merry Christmas SMD3OH = SingItStar e La Magia Disney SMEE69 = Madden NFL 11 SMFE4Q = Phineas y Ferb: A Través de la 2a Dimensión SMFP4Q = Phineas y Ferb: A Través de la 2a Dimensión SMGE78 = Megamind: El Mega Escuadrón SMGP78 = Megamind: El Mega Escuadrón SMGX = SaveGame Manager GX SMHPNK = Marvel Super Heroes 3D: Grandmaster's Challenge SMIE41 = ¿Quién Quiere Ser Millonario? SMIG3Q = SingItStar Made in Germany SMJE52 = Monster Jam: Path of Destruction SMJP52 = Monster Jam: Path of Destruction SMKE4Z = Gem Smashers SMLE54 = Major League Baseball 2K10 SMME02 = Super Mario: Mushroom Adventure PLUS - Winter Moon SMMJ0Q = Momu chan Diet Wii Figurobics by Chon Dayon SMMP01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 4. SMMP02 = Super Mario: Mushroom Adventure PLUS: Winter Moon SMNC01 = New Super Mario Bros. Wii (Chino Simplificado) SMNE01 = New Super Mario Bros. Wii SMNE02 = New Super Mario Remake SMNE03 = Newer Super Mario Bros. Wii SMNE04 = Cannon Super Mario Bros. Wii SMNE05 = Another Super Mario Bros. Wii SMNE06 = Newer Summer Sun SMNE07 = Newer Holiday Special SMNE08 = Epic Super Bowser World SMNE09 = Old Super Mario Bros. Wii SMNE10 = Koopa Country SMNE11 = New Super Mario Bros. Wii 4 SMNE12 = Awesomer Super Luigi Mini SMNE13 = New Super Mario Bros. Wii 9 Summer Special SMNE14 = Super Mario World Wii SMNE15 = Newer Super Mario Bros. 7 SMNE16 = Newer Super Mario Sunshine SMNE17 = Flowery Super Mario Land Wii SMNE18 = Super Switchy Mario World Wii SMNE19 = New Super Mr. M Bros. Wii SMNE20 = New Super Mario Bros. H SMNE21 = Newer Super Mario Land Wii SMNE22 = Neo Mario Brothers Wii SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE24 = Super Mario Ghost Special SMNE25 = Happy Super Marionose Wii SMNE26 = New Super Mario Bros. DS Wii Version SMNE27 = Newer Super Mario All Star SMNE28 = New Super Mario World SMNE29 = Not So Super Toaster Bros.: The Newer Collab! SMNE2D = Super Mario 2D Land 7 SMNE30 = New Super Mario Bros. Koopa Kall SMNE31 = New Super Mario Bros. Wii - Other World SMNE32 = Super Mario Legends SMNE33 = New Super Mario Bros. Wii Rollercoaster Party SMNE34 = New Super Mario Bros. Wii: Yoshi Mode SMNE35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNE36 = New Super Mario Bros. Wii Hack Pack SMNE37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNE38 = New Super Mario Bros. Wii Underground Maze SMNE39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNE40 = Newer Super Mario Bros. Wii U SMNE41 = Devil Mario Winter Special SMNE42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNE99 = Children's Super Mario Bros. Wii SMNED2 = New Super Mario Bros. + Animal Edition SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNENW = Newer Mario Escapade SMNEPM = Super Mario: Mushroom Adventure PLUS SMNEPS = New Super Mario Bros. Plus SMNERE = Retro Mario Bros. SMNERV = RVLution Wii SMNESL = Newer Super Mario Land Wii SMNESM = New Super Ghost Mario Wii SMNESN = New Super Mario Bros. Wii H SMNESS = New Super Mario Bros. 7 SMNEXD = Deluxe Super Mario Bros. Wii SMNEXR = Super Mario Remix SMNEYE = 8Forrest's Super Mario Bros. Wii SMNEYL = Luigi's Super Yoshi Bros. SMNEYM = You Super Mario Bros. Me Summer Special SMNEYS = Yoshi Super Mario Bros. Wii SMNEYU = You Super Mario Bros. Me SMNEYW = Newer Super Mario World Yoshi Way SMNEYY = You Super Mario Bros. Me Autumn Adventure SMNEZ2 = New JeDa Mario Bros. Wii SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZG = GF Super Mario Bros. Wii SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZQ = Basic Super Mario Bros. Wii SMNEZR = Newer Super Wario World Wii SMNEZS = Another Newer Super Mario Bros. Wii SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZX = Donkey Kong Remastered SMNEZY = Super Mario Skyland SMNEZZ = New Super Mario Bros. 2 Wii Version SMNJ01 = New Super Mario Bros. Wii SMNJ02 = Awesomer Super Luigi Mini SMNJ03 = Newer Super Mario Bros. Wii SMNJ04 = Cannon Super Mario Bros. Wii SMNJ06 = Newer Summer Sun SMNJ07 = Newer Holiday Special SMNJ08 = Epic Super Bowser World SMNJ10 = Koopa Country SMNJ11 = New Super Mario Bros. Wii 4 SMNJ13 = New Super Mario Bros. Wii 9 Summer Special SMNJ14 = Super Mario World Wii SMNJ15 = Newer Super Mario Bros. 7 SMNJ16 = Newer Super Mario Sunshine SMNJ17 = Flowery Super Mario Land Wii SMNJ18 = Super Switchy Mario World Wii SMNJ19 = New Super Mr. M Bros. Wii SMNJ20 = New Super Mario Bros. H SMNJ21 = Newer Super Mario Land Wii SMNJ22 = Neo Mario Brothers Wii SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ24 = Super Mario Ghost Special SMNJ25 = Happy Super Marionose Wii SMNJ26 = New Super Mario Bros. DS Wii Version SMNJ27 = Newer Super Mario All Star SMNJ28 = New Super Mario World SMNJ29 = Not So Super Toaster Bros.: The Newer Collab! SMNJ2D = Super Mario 2D Land Wii SMNJ30 = New Super Mario Bros. Koopa Kall SMNJ31 = New Super Mario Bros. Wii - Other World SMNJ32 = Super Mario Legends SMNJ33 = New Super Mario Bros. Wii Rollercoaster Party SMNJ34 = New Super Mario Bros. Wii: Yoshi Mode SMNJ35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNJ36 = New Super Mario Bros. Wii Hack Pack SMNJ37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNJ38 = New Super Mario Bros. Wii Underground Maze SMNJ39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNJ40 = Newer Super Mario Bros. Wii U SMNJ41 = Devil Mario Winter Special SMNJ42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNJ99 = Children's Super Mario Bros. Wii SMNJD2 = New Super Mario Bros. + Animal Edition SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJNW = Newer Mario Escapade SMNJPM = Super Mario: Mushroom Adventure PLUS SMNJPS = New Super Mario Bros. Plus SMNJRE = Retro Mario Bros. SMNJRV = RVLution Wii SMNJSL = Newer Super Mario Land Wii SMNJSM = New Super Ghost Mario Wii SMNJXD = Deluxe Super Mario Bros. Wii SMNJXR = Super Mario Remix SMNJYE = 8Forrest's Super Mario Bros. Wii SMNJYL = Luigi's Super Yoshi Bros. SMNJYM = You Super Mario Bros. Me Summer Special SMNJYS = Yoshi Super Mario Bros. Wii SMNJYY = You Super Mario Bros. Me Autumn Adventure SMNJZ2 = New JeDa Mario Bros. Wii SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZG = GF Super Mario Bros. Wii SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZQ = Basic Super Mario Bros. Wii SMNJZR = Newer Super Wario World Wii SMNJZS = Another Newer Super Mario Bros. Wii SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZX = Donkey Kong Remastered SMNJZY = Super Mario Skyland SMNJZZ = New Super Mario Bros. 2 Wii Version SMNK01 = New Super Mario Bros. Wii SMNP01 = New Super Mario Bros. Wii SMNP02 = Awesomer Super Luigi Mini SMNP03 = Newer Super Mario Bros. Wii SMNP04 = Cannon Super Mario Bros. Wii SMNP05 = Another Super Mario Bros. Wii SMNP06 = Newer Summer Sun SMNP07 = Newer Holiday Special SMNP08 = Epic Super Bowser World SMNP10 = Koopa Country SMNP11 = New Super Mario Bros. Wii 4 SMNP12 = Awesomer Super Luigi Mini SMNP13 = New Super Mario Bros. Wii 9 Summer Special SMNP14 = Super Mario World Wii SMNP15 = Newer Super Mario Bros. 7 SMNP16 = Newer Super Mario Sunshine SMNP17 = Flowery Super Mario Land Wii SMNP18 = Super Switchy Mario World Wii SMNP19 = New Super Mr. M Bros. Wii SMNP20 = New Super Mario Bros. H SMNP21 = Newer Super Mario Land Wii SMNP22 = Neo Mario Brothers Wii SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP24 = Super Mario Ghost Special SMNP25 = Happy Super Marionose Wii SMNP26 = New Super Mario Bros. DS Wii Version SMNP27 = Newer Super Mario All Star SMNP28 = New Super Mario World SMNP29 = Not So Super Toaster Bros.: The Newer Collab! SMNP2D = Super Mario 2D Land Wii SMNP30 = New Super Mario Bros. Koopa Kall SMNP31 = New Super Mario Bros. Wii - Other World SMNP32 = Super Mario Legends SMNP33 = New Super Mario Bros. Wii Rollercoaster Party SMNP34 = New Super Mario Bros. Wii: Yoshi Mode SMNP35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNP36 = New Super Mario Bros. Wii Hack Pack SMNP37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNP38 = New Super Mario Bros. Wii Underground Maze SMNP39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNP40 = Newer Super Mario Bros. Wii U SMNP41 = Devil Mario Winter Special SMNP42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNP77 = New Super Mario Bros. Wii Arcadia SMNP99 = Children's Super Mario Bros. Wii SMNPD2 = New Super Mario Bros. + Animal Edition SMNPDU = DU Super Mario Bros. : Edición Aniversario SMNPLL = Newer Super Luigi Wii SMNPLM = Newer Super Luigi Wii Dark Moon SMNPMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNPNW = Newer Mario Escapade SMNPO1 = New Super Mario Custom Edition SMNPPM = Super Mario: Mushroom Adventure PLUS SMNPPS = New Super Mario Bros. Plus SMNPRE = Retro Mario Bros. SMNPRV = RVLution Wii SMNPSL = Newer Super Mario Land Wii SMNPSM = New Super Ghost Mario Wii SMNPXD = Deluxe Super Mario Bros. Wii SMNPXR = Super Mario Remix SMNPYE = 8Forrest's Super Mario Bros. Wii SMNPYL = Luigi's Super Yoshi Bros. SMNPYM = You Super Mario Bros. Me Summer Special SMNPYS = Yoshi Super Mario Bros. Wii SMNPYY = You Super Mario Bros. Me Autumn Adventure SMNPZ2 = New JeDa Mario Bros. Wii SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZG = GF Super Mario Bros. Wii SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZQ = Basic Super Mario Bros. Wii SMNPZR = Newer Super Wario World Wii SMNPZS = Another Newer Super Mario Bros. Wii SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZX = Donkey Kong Remastered SMNPZY = Super Mario Skyland SMNPZZ = New Super Mario Bros. 2 Wii Version SMNW01 = New Super Mario Bros. Wii (Chino Tradicional) SMOE41 = Michael Jackson: The Experience SMOJ41 = Michael Jackson: The Experience SMOP41 = Michael Jackson The Experience SMOT3Q = SingItStar Motown SMOX41 = Michael Jackson: The Experience - Walmart Edition SMOY41 = Michael Jackson: The Experience - Special Edition SMPE69 = Monopoly Collection SMPP01 = New Super Mario Bros. Wii 2: The Other P SMPP69 = Monopoly Collection SMRE01 = New Super Mario Bros. Wii: Super Mario Bros. 1 Custom SMRE78 = WWE SmackDown vs. Raw 2011 SMRP78 = WWE SmackDown vs. Raw 2011 SMSE01 = New Super Mario Bros Wii 12 Sunshine Paradise SMSE78 = Marvel Super Hero Squad: The Infinity Gauntlet SMSP78 = Marvel Super Hero Squad: The Infinity Gauntlet SMTJ18 = Momotarô Dentetsu 2010 SMUJAF = Daikaijuu Battle: Ultra Coliseum DX - Ultra Senshi Daishuuketsu SMVE01 = Super Mario Vacation SMVE54 = Major League Baseball 2K11 SMVJ01 = Super Mario Vacation SMVP01 = Super Mario Vacation SMWE01 = Newer Super Mario World U SMWE4Z = Man vs. Wild SMWJ01 = Newer Super Mario World U SMWP01 = Newer Super Mario World U SMYE20 = Minute to Win It SMZE78 = Marvel Super Hero Squad: Comic Combat SMZP78 = Marvel Super Hero Squad: Comic Combat SN2E69 = NERF N-Strike Double Blast Bundle SN3EYG = Maximum Racing: Rally Racer SN3PNG = Rally Racer SN4EDA = Naruto Shippuden: Dragon Blade Chronicles SN4JDA = Naruto Shippuuden Ryujinki SN4XGT = Naruto Shippuden: Dragon Blade Chronicles SN5EYG = Maximum Racing: Crash Car Racer SN5PNG = Crash Car Racer SN6EYG = Maximum Racing: Super Karts SN6PNG = Super Karts SN7EYG = Maximum Racing: Super Truck Racer SN7PNG = Super Truck Racer SN8EYG = Maximum Racing: Sprint Cars SN8PNG = Sprint Cars SN9E54 = Nickelodeon Fit SNAE52 = Cabela's North American Adventures 2011 SNBE41 = NCIS: The Game SNBP41 = NCIS Navy Investigación Criminal SNCE8P = Sonic Colors SNCJ8P = Sonic Colors SNCP8P = Sonic Colours SNDE20 = Deal or No Deal: Special Edition SNEENR = North American Hunting Extravaganza 2 SNEPXT = North American Hunting 2: Extravaganza SNFE69 = EA Sports Active NFL Training Camp SNGEJJ = Get Fit with Mel B SNGPLG = Get Fit with Mel B SNHE69 = Need for Speed: Hot Pursuit SNHJ13 = Need for Speed: Hot Pursuit SNHP69 = Need for Speed: Hot Pursuit SNIE54 = Nicktoons MLB SNJE69 = NBA Jam SNJP69 = NBA Jam SNKX54 = Nickelodeon Fit SNLE01 = New Super Mario Bros. Wii 0-2 Next Generation Levels SNLE54 = Nickelodeon Dance SNLP54 = Nickelodeon Dance SNLX54 = Nickelodeon Dance SNMEAF = Namco Museum Megamix SNOPY1 = Now! That's What I Call Music: Dance & Sing SNPE52 = NASCAR The Game: Inside Line SNQE7U = National Geographic Challenge! SNQPLG = National Geographic Challenge! SNRE52 = NASCAR Unleashed SNSE52 = NASCAR 2011: The Game SNTEXN = Netflix Instant Streaming Disc SNUPJW = Happy Neuron Academy SNVE69 = Need for Speed: The Run SNVJ13 = Need for Speed: The Run SNVP69 = Need for Speed: The Run SNXJDA = Naruto Shippuuden: Gekitou Ninja Taisen Special SNYEVZ = Monster High: 13 Deseos SNYPVZ = Monster High: 13 Deseos SNZEVZ = Barbie: Dreamhouse Party SNZPVZ = Barbie: Dreamhouse Party SO3EE9 = Rune Factory: Tides of Destiny SO3J99 = Rune Factory: Oceans SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg 2 SOCE4Z = Deadliest Catch: Sea of Chaos SOIEEB = 101-in-1 Sports Party Megamix SOIPHZ = 101-in-1 Sports Party Megamix SOJE41 = Rayman Origins SOJP41 = Rayman Origins SOKEA4 = Karaoke Joysound SOKJ18 = Karaoke Joysound Wii DX SOME01 = Rhythm Heaven Fever SOMJ01 = Minna no Rhythm Tengoku SOMK01 = Rhythm Heaven Fever SOMP01 = Beat the Beat: Rhythm Paradise SONDMR = My First Songs SONFMR = My First Songs SONPMR = My First Songs SORE4Z = The Oregon Trail SOSEG9 = Turbo: Super Stunt Squad SOSPAF = Turbo: Super Stunt Squad SOTE52 = Wipeout SOUE01 = The Legend of Zelda: Skyward Sword SOUJ01 = The Legend of Zelda: Skyward Sword SOUK01 = The Legend of Zelda: Skyward Sword SOUP01 = The Legend of Zelda: Skyward Sword SP2E01 = Wii Sports + Wii Sports Resort SP2P01 = Wii Sports + Wii Sports Resort SP3E41 = The $1,000,000 Pyramid SP4PJW = Pétanque Master SP4V = Castlevania: Rondo of Blood SP5E70 = The Kore Gang: Outvasion From Inner Earth SP5PVV = The Kore Gang: La Exvasión de los Intraterrestres SP6DSV = Popstars SP7EAF = Pac-Man Party SP7JAF = Pac-Man Party SP7PAF = Pac-Man Party SP8E78 = Los Pingüinos de Madagascar: El Regreso del Dr. Espiráculo! SP8P78 = Los Pingüinos de Madagascar: El Regreso Del Dr. Espiráculo SP9P4Q = SingIt Star POP 2009 SP9PJW = Pucca's Race for Kisses SPAE5G = Pirates Plund-Arrr SPBPGT = ¿Quién tiene la última palabra? SPCPZS = Pocoyo Racing SPDE52 = Spider-Man: Dimensions SPDP52 = Spider-Man: Dimensions SPEE20 = Speed SPEPXT = Speed SPGPPN = Peppa Pig: Fun And Games SPHPJW = Spaghetti Western Shooter SPIE18 = Oops! Prank Party SPIJ18 = Party Game Box 100 SPIP18 = Games Island SPKXPV = Springdale: Riding Adventures SPMDRM = Mahjongg Party SPMPWP = Mahjong Party Pack SPOPFR = Winter Sports 2011: Go for Gold SPPEFS = Power Punch SPQE7T = I SPY Spooky Mansion SPRE01 = New Super Mario Bros. Wii 14 Project Mario SPRE41 = The Price Is Right: 2010 Edition SPTJEB = Hospital. 6 nin no Ishi SPUE20 = Let's Paint SPVEA4 = Pro Evolution Soccer 2011 SPVPA4 = Pro Evolution Soccer 2011 SPVXA4 = Pro Evolution Soccer 2011 SPVYA4 = Pro Evolution Soccer 2011 SPWHZH = The Studio 100: Play Island SPXP41 = Prince of Persia: Las Arenas Olvidadas SPYDSV = Yetisports: Penguin Party Island SPZE5G = Pizza Delivery Boy SQ2EPZ = Country Dance SQ2PXT = Country Dance SQAE52 = Cabela's African Adventures SQBPXT = The Cube SQDE8P = Gunblade NY & LA Machineguns: Arcade Hits Pack SQDP8P = Gunblade NY & LA Machineguns: Arcade Hits Pack SQEENG = We Sing Pop! SQEPNG = We Sing Pop! SQFE5G = Phineas and Ferb: Quest for Cool Stuff SQFPGT = Phineas and Ferb: Quest for Cool Stuff SQIE4Q = Disney Infinity SQIP4Q = Disney Infinity SQIY4Q = Disney Infinity SQKE5G = Cooking Mama 2-Pack SQKK01 = Cooking Mama 2 Pack SQLE4Z = Cartoon Network Punch Time Explosion XL SQLPGN = Cartoon Network: Punch Time Explosion XL SQME52 = Spider-Man: Edge of Time SQMP52 = Spider-Man: Edge of Time SQPPX4 = Speed 2 SQQEVZ = Disney Planes: Fire & Rescue SQQPVZ = Aviones: Equipo De Rescate SQRPNG = We Sing Rock! SQTPML = The Ultimate Battle Of The Sexes: Quizz & Play! SQUDX3 = Quiz Party SQUFX3 = Quiz Party SQVE69 = FIFA 15 SQVP69 = FIFA 15 - Legacy Edition SQVX69 = FIFA 15 - Legacy Edition SR4E41 = Raving Rabbids: Travel in Time SR4J41 = Raving Rabbids: Travel in Time SR4P41 = Raving Rabbids: Regreso al Pasado SR5E41 = Raving Rabbids Party Collection SR5P41 = Raving Rabbids Party Collection SR6EHG = Reader Rabbit 1st Grade SR7EHG = Reader Rabbit 2nd Grade SR8EHG = Reader Rabbit Kindergarten SR9EHG = El Conejo Lector Preescolar SRAJMS = Rajirugi Noa Wii SRBP4Q = SingItStar: R&B SRBPHS = Rugby League 3 SRCE69 = Rock Band: Country Track Pack 2 SREXNL = Reader Rabbit Kindergarten SRFE52 = Rapala Pro Bass Fishing SRFP52 = Rapala Pro Bass Fishing SRGE69 = Rango SRGP01 = New Super Mario Bros Wii 2 Reggie SRGP69 = Rango SRHP01 = New Super Mario Bros. Wii 7 Retro Heaven SRIE78 = Rio SRIP78 = Rio SRJJAF = Super Sentai Battle: Ranger Cross SRKEFP = Remington Super Slam Hunting: Alaska SRKPNK = Remington Dangerous Animals SRLXNL = Reader Rabbit Preschool SRME18 = Rooms: The Main Building SRMJ18 = Rooms: Fushigi na Ugoku Heya SRNE70 = Project Runway SRNP01 = New Super Mario Bros. Wii Revolution SRNP70 = Project Runway SRPE4Q = Enredados SRPP4Q = Enredados SRQE41 = Racquet Sports SRQP41 = Racket Sports Party SRRENR = Rec Room Games SRRPGN = Great Party Games SRSE20 = Super Sonic Racer SRSPXT = Supersonic Racer SRTXNL = Reader Rabbit 1st Grade SRUE4Z = Rudolph the Red-Nosed Reindeer SRVE41 = The Price Is Right Decades SRVP01 = New Super Mario Bros Revolution SRWXNL = Reader Rabbit 2nd Grade SRXE52 = Generator Rex: Agent of Providence SRXP52 = Generator Rex: Agent of Providence SRYEAF = ExerBeat: Gym Class Workout SRYJAF = Fitness Party SRYPAF = ExerBeat: Gym Class Workout SS2PFR = Winter Sports 2012: Feel the Spirit SS3EWR = Sesame Street: Elmo's A-to-Zoo Adventure SS3PWR = Sesame Street: Elmo's A-to-Zoo Adventure SS3UWR = Sesame Street: Elmo's A-to-Zoo Adventure SS4EWR = Sesame Street: Cookie's Counting Carnival SS4UWR = Sesame Street: Cookie's Counting Carnival SS5ENR = Satisfashion SS6UHS = AFL Live: Game of the Year Edition SS7EFP = Remington Super Slam Hunting: Africa SS7URN = Remington Super Slam Hunting: Africa SS8E78 = Bob Esponja: El Garabato SS8P78 = Bob Esponja: El Garabato SS9JMS = Milestone Shooting Collection 2 SSBE78 = Puss in Boots SSBP78 = El Gato con Botas SSCDWR = Scene It? Estrellas en Pantalla Gigante SSCEPM = Scene It? Estrellas en Pantalla Gigante SSCFPM = Scene It? Estrellas en Pantalla Gigante SSCFWR = Scene It? Estrellas en Pantalla Gigante SSCIWR = Scene It? Estrellas en Pantalla Gigante SSCPWR = Scene It? Estrellas en Pantalla Gigante SSCSWR = Scene It? Estrellas en Pantalla Gigante SSDDRV = Schlag den Raab SSEDNG = We Sing: Encore SSEPNG = We Sing: Encore SSEVNG = We Sing: Encore SSFPKM = Sing 4 SSGPNG = We Sing SSHPHH = Sherlock Holmes: The Case of the Silver Earring SSIENR = Winter Blast: 9 Snow & Ice Games SSJEJJ = Summer Stars 2012 SSJPKM = Summer Stars 2012 SSLENR = I Love Horses: Rider's Paradise SSLPKM = The Saddle Club SSLPOH = SingItStar Legends SSMEYG = American Mensa Academy SSMPGD = Mensa Academy SSNEYG = Sniper Elite SSNPHY = Sniper Elite SSPE52 = Skylanders: Spyro's Adventure SSPJ52 = Skylanders: Spyro's Adventure SSPP52 = Skylanders: Spyro's Adventure SSPX52 = Skylanders: Spyro's Adventure SSQE01 = Mario Party 9 SSQJ01 = Mario Party 9 SSQK01 = Mario Party 9 SSQP01 = Mario Party 9 SSQW01 = Mario Party 9 SSRE20 = Wild West Shootout SSRPXT = Wild West Shootout SSSE01 = New Super Mario Bros. Wii: Summer Sun SSSEWR = Sesame Street: Elmo's Musical Monsterpiece SSTEG9 = Kid Adventures: Sky Captain SSTPY5 = Stunt Flyer: Hero of the Skies SSUES5 = Sushi Go Round SSVE52 = Wipeout 3 SSWDRM = Water Sports SSWEPZ = Water Sports SSWPGR = Water Sports SSZE5G = Swords ST3J01 = Kiki Trick ST4PNX = Thomas & Friends: Hero of the Rails ST4XNX = Thomas & Friends: Hero of the Rails ST5E52 = Transformers: La Guerra por Cybertron ST5P52 = Transformers: La Guerra por Cybertron ST6E78 = The Biggest Loser Challenge ST6P78 = The Biggest Loser Challenge ST7E01 = Fortune Street ST7JGD = Itadaki Street Wii ST7P01 = Boom Street ST8P75 = SingItStar 80's ST9E52 = Top Shot Arcade STAE78 = Pictionary STAP75 = SingItStar Apres Ski Hits STAP78 = Pictionary STAU78 = Pictionary STCP75 = SingItStar Singstar STDEFP = Reload STDP75 = SingItStar Deutsch Rock-Pop STEETR = Tetris Party Deluxe STEJ18 = Tetris Party Premium STEPTR = Tetris Party Deluxe STFE52 = Transformers: Prime STFP52 = Transformers Prime: The Game STGJAF = Tales of Graces STHE8P = Thor: God of Thunder STHP75 = SingItStar Hottest Hits STHP8P = THOR: Dios del Trueno STIFKM = Titeuf le Film STJJAF = Taiko no Tatsujin Wii: Ketteiban STKE08 = Tatsunoko vs. Capcom: Ultimate All-Stars STKJ08 = Tatsunoko vs. Capcom: Ultimate All-Stars STKP08 = Tatsunoko vs. Capcom: Ultimate All-Stars STLE78 = Truth or Lies STLP78 = Truth or Lies STMEGN = Titanic Mystery STMPKP = Titanic Mystery STNE41 = Las Aventuras de Tintín: El Secreto del Unicornio STNP41 = Las Aventuras de Tintín: El Secreto del Unicornio STOE4Q = Cars Toon: Mater's Tall Tales STOP4Q = Cars Toon: Los Cuentos de Mate STOX4Q = Cars Toon: Los Cuentos de Mate STPP75 = SingItStar Pop Hits STPPML = Pet Vet: Marine Patrol STQJHF = Inazuma Eleven Strikers STQP01 = Inazuma Eleven Strikers STQP75 = SingItStar Queen STQX01 = Inazuma Eleven Strikers STRE4Q = Tron: Evolution - Battle Grids STRP4Q = Tron: Evolution - Battle Grids STRP75 = SingItStar Rock Ballads STRX4Q = Tron: Evolution - Battle Grids Championship Edition STSE4Q = Toy Story 3: El Videojuego STSP4Q = Toy Story 3: El Videojuego STSP75 = SingItStar Schlager STSX4Q = Toy Story 3: El Videojuego STSY4Q = Toy Story 3: El Videojuego STSZ4Q = Toy Story 3: Toy Box Special Edition STTDRM = Hidden Mysteries: Titanic STTE52 = Hidden Mysteries: Titanic STTPGR = Hidden Mysteries: Titanic STTXGR = Hidden Mysteries: Titanic STUPRN = Turbo Trainz STVDSV = TV Total Events STWE69 = Tiger Woods PGA Tour 11 STWP69 = Tiger Woods PGA Tour 11 STXE69 = Tiger Woods PGA TOUR 12: The Masters STXP69 = Tiger Woods PGA Tour 12: The Masters STYE52 = Tony Hawk: Shred STYP52 = Tony Hawk: Shred STZE52 = Transformers: Dark of the Moon - Stealth Force Edition STZP52 = Transformers: El Lado Oscuro de la Luna - Stealth Force Edition SU2E54 = Nickelodeon Dance 2 SU2P54 = Nickelodeon Dance 2 SU2X54 = Nickelodeon Dance 2 SU3DMR = U-Sing 2 SU3FMR = U-Sing 2 SU3HMR = U-Sing 2: Popstars Edition SU3PMR = U-Sing 2 SU3SMR = U-Sing 2 SU3UMR = U-Sing 2: Edición Australiana SU4E78 = UFC Personal Trainer: The Ultimate Fitness System SU4P78 = UFC Personal Trainer: The Ultimate Fitness System SU5EVZ = Monster High: El Patinaje Extre-Mortífero SU5PVZ = Monster High: El Patinaje Laberíntico SU6E5G = Zumba Fitness Core SU6P5G = Zumba Fitness Core SU6XGT = Zumba Fitness Core SU7EG9 = Rise of the Guardians SU7PAF = El Origen de los Guardianes SU8PNG = We Sing: Deutsche Hits 2 SU9E4Q = Disney Planes SU9P4Q = Disney Aviones SU9X4Q = Disney Planes SUKE01 = Kirby's Return to Dream Land SUKJ01 = Hoshi no Kirby Wii SUKK01 = Kirby's Return to Dream Land SUKP01 = Kirby's Adventure Wii SUMJC8 = Winning Post World 2010 SUNEYG = Deer Drive Legends SUOE41 = The Hip Hop Dance Experience SUOP41 = The Hip Hop Dance Experience SUPE01 = Wii Party SUPJ01 = Wii Party SUPK01 = Wii Party SUPP01 = Wii Party SUQENG = We Sing UK Hits SUQPNG = We Sing: UK Hits SURE01 = New Super Mario Bros. Wii 19 Resurrection U SUREA4 = Dance Dance Revolution II SURPA4 = Dance Dance Revolution: Hottest Party 5 SUSFMR = U-Sing: Johnny Hallyday SUSPMR = U-Sing Girls Night SUTESZ = Once Upon A Time SUUE78 = uDraw Studio: Instant Artist SUUP78 = uDraw Studio: Artista al Instante SUVE52 = Cabela's Dangerous Hunts 2013 SUVP52 = Cabela's Dangerous Hunts 2013 SUWE78 = uDraw Studio SUWP78 = uDraw Studio SUXEA4 = Pro Evolution Soccer 2010 SUXJA4 = Winning Eleven PLAY MAKER 2010 SUXPA4 = Pro Evolution Soccer 2010 SUXXA4 = Pro Evolution Soccer 2010 SUXYA4 = Pro Evolution Soccer 2010 SUYDRV = Schlag den Raab - Das 3. Spiel SUZD7K = Benjamin Blümchen - Törööö im Zoo SV2E78 = Big Beach Sports 2 SV2P78 = Big Beach Sports 2 SV3EG9 = Madagascar 3: El videojuego SV3PAF = Madagascar 3: de Marcha por Europa SV4E8P = Virtua Tennis 4 SV4P8P = Virtua Tennis 4 SV5PRV = The Voice of Germany Vol. 2 SV6SRV = La Voz SV7EVZ = Penguins of Madagascar SV7PVZ = Los Pingüinos de Madagascar SVBE52 = Battleship SVBP52 = Battleship SVCEPZ = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = Bob Esponja: La Venganza de Plankton SVHP69 = FIFA 14 - Legacy Edition SVHX69 = FIFA 14 - Legacy Edition SVME01 = Super Mario All-Stars SVMJ01 = Super Mario Collection: 25th Anniversary Edition SVMK01 = Super Mario All-Stars SVMP01 = Super Mario All-Stars: Edición 25 Aniversario SVOEWW = El Chavo SVPESZ = Vegas Party SVPPNJ = Vegas Party SVSPZX = Battle vs Chess SVTEXS = Bit.Trip Complete SVTP99 = BIT.TRIP COMPLETE SVUPRV = The Voice of Germany SVVEG9 = The Croods: Prehistoric Party! SVVPAF = Los Croods: ¡Fiesta Prehistórica! SVWEQH = Veggy World SVXE52 = Skylanders: Swap Force SVXF52 = Skylanders: Swap Force SVXI52 = Skylanders: Swap Force SVXP52 = Skylanders: Swap Force SVXY52 = Skylanders: Swap Force SVYEG9 = Ben 10: Omniverse 2 SVYPAF = Ben 10: Omniverse 2 SVZEVZ = How to Train Your Dragon 2 SVZPVZ = How to Train Your Dragon 2 SW2E52 = Wipeout 2 SW3EJJ = Winter Stars SW3PKM = Winter Stars SW4JA4 = Winning Eleven PLAY MAKER 2011 SW6E78 = WWE '12 SW6P78 = WWE '12 SW7EVN = Gunslingers SW7PNK = Western Heroes SW8ENG = We Sing 80s SW8PNG = We Sing 80s SW9EVN = Wicked Monsters Blast! SW9PYT = Wicked Monsters Blast! SWAE52 = DJ Hero SWAP52 = DJ Hero SWBE52 = DJ Hero 2 SWBP01 = New Super Mario Bros. Wii 0 Where It All Began SWBP52 = DJ Hero 2 SX2PNG = Jungle Kartz SX3EXJ = Pandora's Tower SX3J01 = Pandora’s Tower: Until I Return to Your Side SX3P01 = Pandora's Tower SX4E01 = Xenoblade Chronicles SX4J01 = Xenoblade SX4P01 = Xenoblade Chronicles SX5E4Z = Santa Claus is Comin' to Town! SX6JAF = Pretty Cure All Stars Everyone Gather ☆ Let's Dance SX7E52 = Teenage Mutant Ninja Turtles SX7P52 = Teenage Mutant Ninja Turtles SX8E52 = X-Men Destiny SX8P52 = X-Men Destiny SXAE52 = Guitar Hero: World Tour SXAP52 = Guitar Hero: World Tour SXBE52 = Guitar Hero: Metallica SXBP52 = Guitar Hero: Metallica SXCE52 = Guitar Hero: Smash Hits SXCP52 = Guitar Hero: Greatest Hits SXDE52 = Guitar Hero: Van Halen SXDP52 = Guitar Hero: Van Halen SXEE52 = Guitar Hero 5 SXEF52 = Guitar Hero III Custom: Megadeth SXEP52 = Guitar Hero 5 SXFE52 = Band Hero SXFF52 = Guitar Hero III Custom: My Chemical Romance SXFP52 = Band Hero SXIE52 = Guitar Hero: Warriors of Rock SXIP52 = Guitar Hero: Warriors of Rock SY8PKM = Let's Sing 2015 SZ2E5G = Zumba Fitness 2 SZ2P5G = Zumba Fitness 2 SZ2XGT = Zumba Fitness 2 SZ3E5G = Zumba Fitness World Party SZ3PGT = Zumba Fitness World Party SZ5E5G = Zumba Fitness SZ5PGT = Zumba Fitness SZAE69 = Rock Band 2 SZAP69 = Rock Band 2 SZBE69 = Rock Band 3 SZBP69 = Rock Band 3 SZEE01 = New Super Mario Bros Wii 13 Shadow Zero Escape TITLES = http://www.gametdb.com (type: Wii language: ES version: 20150208104412) UGPE01 = Game Boy Player UGPJ01 = Game Boy Player UGPP01 = Game Boy Player ULFW = uLoader UUUE01 = New Super Mario Bros. Wii 19 Resurrection U VBGX = Visual Boy Advance GX VIPE01 = New Super Mario Bros Wii 18 Vip Mix W22E = Planet Fish W24E = 2 Fast 4 Gnomz W2AE = Big Bass Arcade W2CE = Brain Challenge W2CJ = Brain Challenge W2CP = Reto Mental W2FP = Entrenamiento de Equilibrio Physiofun W2GD = Phoenix Wright Ace Attorney: Justice for All (Deutsche Version) W2GE = Phoenix Wright: Ace Attorney Justice for All W2GI = Phoenix Wright: Ace Attorney - Justice for All W2GJ = Gyakuten Saiban 2 W2GP = Phoenix Wright Ace Attorney: Justice for All W2IE = Fishie Fishie W2IP = Fishie Fishie W2JE = Just Jam W2KE = Let's Catch W2KJ = Let's Catch W2KP = Let's Catch W2LE = Bloons W2LP = Bloons W2ME = Blaster Master: Overdrive W2MP = Blaster Master Overdrive W2OE = My Aquarium 2 W2OJ = Blue Oasis: Michinaru Shinkai W2OP = My Aquarium 2 W2PP = Ejercicios de Kegel Physiofun W2TE = Drill Sergeant Mindstrong W2TJ = Onitore Kyoukan ha Onigunsou W2TP = Brain Cadets W2YE = Fireplacing W2YP = My Fireplace W34J = Simple Series Vol. 4: The Misshitsu kara no Dasshutsu W3AE = Carmen Sandiego Adventures in Math: The Big Ben Burglary W3BE = Soccer Bashi W3BP = Soccer Bashi W3DJ = 3° C W3FE = 3D Pixel Racing W3FP = 3D Pixel Racing W3GD = Phoenix Wright: Ace Attorney - Trials and Tribulations W3GE = Phoenix Wright Ace Attorney: Trials and Tribulations W3GI = Phoenix Wright: Ace Attorney - Trials and Tribulations W3GJ = Gyakuten Saiban 3 W3GP = Phoenix Wright: Ace Attorney - Trials and Tribulations W3JE = Triple Jumping Sports W3KE = Thruspace W3KJ = Surinuke Anatousu W3KP = ThruSpace W3LE = Carmen Sandiego Adventures in Math: The Lady Liberty Larceny W3ME = The Three Musketeers: One for all W3MP = Los Tres Mosqueteros ¡Uno para todos! W3PE = Triple Throwing Sports W3RE = Triple Running Sports W3SE = Triple Shot Sports W3TE = Pearl Harbor Trilogy - 1941: Red Sun Rising W3TP = Pearl Harbor Trilogy 1941: Red Sun Rising W42J = Fortune: Hoshi no Furisosogu Oka W44E = Stop Stress: A Day of Fury W44P = Stop Stress: A Day of Fury W48E = ShadowPlay W4AE = Arcade Sports W4AP = Arcade Sports: Air Hockey, Bowling, Pool, Snooker W4KE = Deer Captor W4KJ = Shikagari W4OJ = Shikakui Atama wo Marukusuru Challenge W4TE = Spaceball Revolution W4TP = Spaceball Revolution W54E = 5 Spots Party W54P = 5 Spots Party W5AE = 5 Arcade Gems W5AP = 5 Arcade Gems W5IE = 5 in 1 Solitaire W6BE = Eco Shooter: Plant 530 W6BJ = 530 Eco Shooter W6BP = Eco-Shooter: Plant 530 W72P = Successfully Learning German Year 3 W73P = Successfully Learning German Year 4 W74P = Successfully Learning German Year 5 W7IP = Successfully Learning German Year 2 W82J = Jintori Action Taikokenchi Karakuri Shiro no Nazo W8BP = Babel Rising W8CE = Bit.Trip Core W8CJ = BIT.TRIP CORE: Rhythm Seijin no Gyakushuu W8CP = Bit.Trip Core W8DJ = Mebius Drive W8IJ = Hachi-One Diver Wii W8LE = Balloon Pop Festival W8PJ = Ouchi de Mugen Puchi Puchi Wii W8WE = Happy Holidays: Halloween W8WP = Happy Holidays Halloween W8XE = Battle Poker W9BE = Big Town Shoot Out W9BP = Big Town Shoot W9IE = Evasive Space W9IJ = Kiken Kuuiki W9LE = Christmas Clix W9RE = Happy Holidays: Christmas W9RP = Happy Holidays Christmas W9UE = Cruise Party W9UP = Cruise Party WA2E = Magnetica Twist WA2J = Actionloop Twist WA2P = Actionloop Twist WA4E = WarioWare: D.I.Y. Showcase WA4J = WarioWare: D.I.Y. Showcase WA4P = WarioWare: Do It Yourself - Showcase WA5E = Carmen Sandiego Adventures in Math: The Island of Diamonds WA7E = Toribash WA7P = Toribash - La Violencia Perfeccionada WA8E = Art Style: Rotozoa WA8J = Art Style: Penta Tentacles WA8P = Art Style: Penta Tentacles WAAE = Aya and the Cubes of Light WAAP = Aya and the Cubes of Light WABE = Art of Balance WABP = Art of Balance WACE = Arcade Essentials WACP = Arcade Essentials WAEE = Around The World WAEP = Around the World WAFE = Airport Mania: First Flight WAFP = Airport Mania: First Flight WAGE = Pinocchio's Puzzle WAHE = Trenches Generals WAHP = Trenches: Generals WAIE = 101-in-1 Explosive Megamix WAIP = 101-in-1 Explosive Megamix WAJE = MotoHeroz WAJP = MotoHeroz WAKE = Carmen Sandiego Adventures in Math: The Case of the Crumbling Cathedral WALE = Art Style: Light Trax WALJ = Art Style: Lightstream WALP = Art Style: Light Trax WAME = Carmen Sandiego Adventures in Math: The Great Gateway Grab WANE = Ant Nation WANP = Ant Nation WAOE = The Very Hungry Caterpillar's ABCs WAOJ = Harapeko Aomushi no ABC WAOP = The Very Hungry Caterpillar´s ABC WAQJ = Yakuman Wii: Ide Yousuke no Kenkou Mahjong WARE01 = DU Super Wario Bros. WARJ = Tsuushin Taikyoku Igo Doujou 2700 Mon WASJ = Tsuushin Taikyoku: Hayazashi Syogi Sandan WATE = Astro Bugz Revenge WAUJ = Tsushin Taikyoku: World Chess WAYE = And Yet It Moves WAYP = And Yet It Moves WAZE = The Amazing Brain Train WB2E = Strong Bad Episode 4: Dangeresque 3 WB2P = Strong Bad Episode 4: Dangeresque 3 WB3E = Strong Bad Episode 5: 8-bit is Enough WB3P = Strong Bad Episode 5: 8-bit Is Enough WB4E = Wild West Guns WB4J = Wild West Guns WB4P = Wild West Guns WB5E = Block Breaker Deluxe WB5J = Block Breaker Deluxe WB5P = Block Breaker Deluxe WB6E = TV Show King WB6J = TV Show King WB6P = TV Show King WB7E = Midnight Pool WB7J = Hamaru Billiards WB7P = Midnight Pool WB8E = Midnight Bowling WB8J = Hamaru Bowling WB8P = Midnight Bowling WBAJ = Bakutan WBBE = Snowboard Riot WBBJ = Board Warriors WBBP = Snowboard Riot WBDE = Brain Drain WBDP = Brain Drain WBEE = Pong Toss: Frat Party Games WBEP = Beer Pong: Frat Party Games WBFE = Bit.Trip Fate WBFP = Bit.Trip Fate WBGP = Bang Attack WBHE = Blood Beach WBHP = Blood Beach WBIE = Boingz WBJE = Harvest Moon: My Little Shop WBJJ = Bokujou Monogatari Series: Makiba no Omise WBKE = Arkanoid Plus! WBKJ = Arkanoid Plus! WBKP = Arkanoid Plus! WBLE = Bubble Bobble Plus WBLJ = Bubble Bobble Wii WBLP = Bubble Bobble Plus! WBME = My Pokémon Ranch WBMJ = Minna no Pokémon Bokujou WBMP = My Pokémon Ranch WBNE = Bonsai Barber WBNJ = Bonsai Barber WBNP = Bonsai Barber WBOE = Gravitronix WBPE = PLÄTTCHEN twist 'n' paint WBPP = PLÄTTCHEN - twist 'n' paint WBQE = Star Soldier R WBQJ = Star Soldier R WBQP = Star Soldier R WBRP = Pirates: The Key of Dreams WBSE = Pop WBSJ = Pop WBSP = Pop WBTJ = Fantasic Tambourine WBVE = SPOGS Racing WBVP = Spogs Racing WBWE = Critter Round-Up WBWJ = Saku Saku Animal Panic WBWP = Critter Round-Up WBXE = Strong Bad Episode 1: Homestar Ruiner WBXP = Strong Bad Episode 1: Homestar Ruiner WBYE = Strong Bad Episode 2: Strong Badia - The Free WBYP = Strong Bad Episode 2: Strong Badia the Free WBZE = Strong Bad Episode 3: Baddest of the Bands WBZP = Strong Bad Episode 3: Baddest of the Bands WC2E = Crystal Defenders R2 WC2J = Crystal Defenders R2 WC2P = Crystal Defenders R2 WC6E = Chronos Twins DX WC6P = Chronos Twins DX WC8J = Line Attack Heroes WCHE = Chess Challenge! WCHP = Chess Challenge! WCIE = Crystal Defenders R1 WCIJ = Crystal Defenders R1 WCIP = Crystal Defenders R1 WCJE = Cocoto Platform Jumper WCJP = Cocoto: Platform Jumper WCKE = chick chick BOOM WCKJ = chick chick BOOM WCKP = Chick Chick Boom WCLE = Doc Clock: The Toasted Sandwich of Time WCNJ = Tokyo City Nights WCOE = Cocoto Fishing Master WCOP = Cocoto Fishing Master WCPE = Copter Crisis WCPP = Copter Crisis WCRE = Carnival King WCSE = CueSports: Pool Revolution WCSJ = Cue Sports: Wi-Fi Taisen Billiards WCSP = CueSports: Snooker vs Billiards WCUE = 3-2-1, Rattle Battle! WCUJ = Atsui 12-Game: FuriFuri Party! WCUP = 3-2-1, Rattle Battle! WCVE = Cave Story WCVP = Cave Story WCZE = ColorZ WCZJ = ColorZ WCZP = ColorZ WD2J = Simple Wii Series Vol. 2: The Number Puzzle Neo WD9E = Castlevania The Adventure ReBirth WD9J = Castlevania: The Adventure ReBirth WD9P = Castlevania: The Adventure ReBirth WDAJ = Darts Wii WDBE = Derby Dogs WDBJ = Dirby Dog WDDE = Diner Dash WDDJ = Diner Dash WDDP = Diner Dash WDEE = Magic Destiny Astrological Games WDEP = Magic Destiny Astrological Games WDFE = Defend your Castle WDFP = Defend your Castle WDHE = Art Style: ROTOHEX WDHJ = Art Style: Dialhex WDHP = Art Style: Rotohex WDIJ = Simple Wii Series Vol. 1: The Block Kuzushi Neo WDKE = Dart Rage WDME = Dr. Mario Online RX WDMJ = Dr. Mario & Bactericida WDMP = Dr. Mario & Bactericida WDNJ = Discipline Teikoku no Tanjyou WDOE = Driift Mania WDOP = Driift Mania WDPE = Dr. Mario Online Rx (Friend Battle Demo) WDPJ = Dr. Mario Online Rx (Friend Battle Demo) WDPP = Dr. Mario & Germ Buster (Friend Battle Demo) WDRE = Mr Driller W WDRJ = Mr. Driller World WDRP = Mr. Driller W WDSE = Dragon Master Spell Caster WDSP = Dragon Master Spell Caster WDVE = Voodoo Dice WDVP = Voodoo Dice WDXE = Diatomic WE6E = My Dolphin WE6J = Sea Farm: Iruka to Watashi no Showtime WE9E = Alien Crush Returns WE9J = Alien Crush Returns WE9P = Alien Crush Returns WEDE = Eduardo the Samurai Toaster WEME = Aha! I Got It! Escape Game WEMJ = 1 Nuke! Dasshutsu Game * My Home Hen WEMP = Aha! I Got It! Escape Game WENE = TNT Racers WENP = TNT Racers WEQE = Equilibrio WEQJ = Katamuki Spirits WEQP = Equilibrio WERE = Aquarium WERJ = Blue Oasis: The Healing Space of Fish WERP = My Aquarium WETE = PictureBook Games: Pop-Up Pursuit WETJ = Asoberu Ehon: Tobida Sugoroku WETP = Juegos de libros ilustrados: Una aventura desplegable WEVE = Viral Survival WEVJ = Peakvox Escape Virus WEVP = Viral Survival WF2E = Final Fantasy Crystal Chronicles: My Life as a Darklord WF2J = Final Fantasy Crystal Chronicles: Hikari to Yami no Himegimi to Sekai Seifuku no Tou WF2P = Final Fantasy Crystal Chronicles: My Life as a Darklord WF3E = Family Games - Pen & Paper Edition WF4E = Final Fantasy IV: The After Years WF4J = Final Fantasy IV: The After Years - Tsuki no Kikan WF4P = Final Fantasy IV: The After Years WF5E = Family Card Games WF5J = Okiraku Daifugou Wii WF5P = Family Card Games WF6E = Frobot WFAE = Fast Draw Showdown WFAP = Fast Draw Showdown WFBE = Sandy Beach WFBJ = Beach e Oki o Tsukuccha Wow! WFBP = Sandy Beach WFCE = Final Fantasy Crystal Chronicles: My Life as a King WFCJ = Final Fantasy Crystal Chronicles: Chiisana Ousama to Yakusoku no Kuni WFCP = Final Fantasy Crystal Chronicles: My Life as a King WFDE = Save the Furries WFEE = Fenimore Fillmore "The Westerner" WFFE = Fun! Fun! Minigolf WFFF4I = Fatal Frame 4: Mask of the Lunar Eclipse WFFJ = Fun! Fun! Minigolf WFFP = Fun! Fun! Minigolf WFGE = Frogger Returns WFGJ = Frogger Returns WFGP = Frogger Returns WFHE = Flight Control WFHP = Flight Control WFIE = Reel Fishing Challenge WFIJ = Fish Eyes Challenge WFIP = Reel Fishing Challenge WFKE = Family Go-Kart Racing WFKJ = Okiraku Kart Wii WFLE = Fluidity WFLP = Hydroventure WFME = Family & Friends Party WFMP = Family & Friends Party WFNE = Fish Tank WFNP = Fish Tank WFPJ = Hirameki Card Battle Mekuruca WFQP = Frogger: Hyper Arcade Edition WFSJ = Minna no Theater Wii WFTE = Fish 'em All WFTP = Fish'em All! WFUE = Furry Legends WFUP = Furry Legends WFVE = Soccer Up WFVP = Football Up WFWE = Flower Works WFWP = Flowerworks: Follie's Adventure WFXE = Cosy Fire WFXP = Mi Chimenea WFYE = Family Games Pen & Paper Edition WFYP = Family Games WG2J = Sugar Bunnies Wii: Youkoso * Bunnies Field e WG4E = GhostSlayer WGAE = Ghost Mania WGAP = Ghost Mania WGDE = Gradius Rebirth WGDJ = Gradius Rebirth: Updated WGDP = Gradius Rebirth WGFP = Girlfriends Forever Magic Skate WGGE = Gabrielle's Ghostly Groove: Monster Mix WGGJ = Ushimitsu Monstruo Puchi: Fushigi na Oshiro no Dance Party WGGP = Gabrielle's Ghostly Groove: Monster Mix WGLE = Gene Labs WGMJ = Game SoundStation WGOE = World of Goo WGOJ = World of Goo WGOP = World of Goo WGPE = AquaSpace WGPJ = Aqua Living: TV de Nagameru Uotachi WGPP = Zenquaria: El Acuario Virtual WGSD = Phoenix Wright: Ace Attorney (Versión Alemana) WGSE = Phoenix Wright: Ace Attorney WGSF = Phoenix Wright: Ace Attorney (French Version) WGSI = Phoenix Wright: Ace Attorney WGSJ = Gyakuten Saiban: Yomigaeru Gyakuten WGSP = Phoenix Wright: Ace Attorney WGTJ = Sekai no Omoshiro Party Game WGUJ = Aero Guitar WGVE = Groovin' Blocks WGYE = Gyrostarr WH3E = Home Sweet Home WH3P = Home Sweet Home WHBE = Hubert the Teddy Bear: Winter Games WHEE = Heracles: Chariot Racing WHEP = Heracles: Chariot Racing WHFE = Heavy Fire: Special Operations WHFP = Heavy Fire: Special Operations WHHJ = Let's Zenryoku Hitchhike!!!!!!!!! WHMP51 = New Super Mario Bros. Wii: The Ultimate Wii-Homebrew.com Edition WHOE = Hockey Allstar Shootout WHPE = Sexy Poker WHPP = Sexy Poker WHRE = Heron Steam Machine WHRP = Heron: Steam Machine WHUE = Aventuras en la Casa Fantasma WHUJ = Ghost Mansion Party WHUP = Aventuras en la Casa Fantasma WHVE = High Voltage: Hot Rod Show WHWE = HoopWorld WHWP = HoopWorld: BasketBrawl WHXE = Helix WHXP = Helix WHYE = Heavy Fire: Black Arms WHZE = Horizon Riders WIBE = bittos+ WICE = NyxQuest Kindred Spirits WICJ = NyxQuest WICP = NyxQuest: Kindred Spirits WIDE = Dracula: Undead Awakening WIDP = Dracula: Undead Awakening WIEE = Tales of Monkey Island: Chapter 3 - Lair of the Leviathan WIEP = Tales of Monkey Island: Episodio 3 - Lair of the Leviathan WIGE = Incoming WIHE = Play with Birds WIKJ = Ivy the Kiwi? Mini WILE = Tales of Monkey Island: Chapter 1 - Launch of the Screaming Narwhal WILP = Tales of Monkey Island: Episodio 1 - Launch of the Screaming Narwhal WIMC = WiiMC WINE = The Incredible Maze WINJ = Chokkan! Balance * Labyrinth WINP = The Incredible Maze WIRE = Tales of Monkey Island: Chapter 5 - Rise of the Pirate God WIRP = Tales of Monkey Island: Episodio 5 - Rise of the Pirate God WISE = Tales of Monkey Island: Chapter 2 - The Seige of Spinner Cay WISP = Tales of Monkey Island: Episodio 2 - The Siege of Spinner Cay WITE = Aha! I Found It! Hidden Object Game WITJ = Aa! Mitsuketa! Item Sagashi Game WITP = Aha! I Found It! Hidden Object Game WIUE = Inkub WIVE = Space Invaders Get Even WIVJ = Space Invaders Get Even WIVP = Space Invaders Get Even WIYE = Tales of Monkey Island: Chapter 4 - The Trial and Execution of Guybrush Threepwood WIYP = Tales of Monkey Island: Episodio 4 - The Trial and Execution of Guybrush Threepwood WJ2J = Jinsei Game: Happy Step WJAE = Jam City Rollergirls WJAP = Jam City Rollergirls WJCE = JellyCar 2 WJEE = Jett Rocket WJEP = Jett Rocket WJFE = Gnomz WJFP = Gnomz WJGJ = Jinsei Game WJKE = Jewel Keepers Easter Island WJKP = Guardianes de Joyas: La Isla de Pascua WJPJ = Janken Party Paradise WJSE = Jungle Speed WJSP = Jungle Speed WJWE = Bejeweled 2 WJWP = Bejeweled 2 WK2J = Kappa-kun to Asobou: Kappa-kun to Ota no Shimikai WK3J = Kappa-kun to Asobou: Kappa-kun to Mori no Nakamatachi WK9J = Minna de Asobou Koinu de Kururin WKBE = You, Me, and the Cubes WKBJ = Kimi to Boku to Rittai WKBP = You, Me and the Cubes WKCE = Kyotokei WKCP = Kyotokei WKDE = Pirates: The Key of Dreams WKEJ = RakuRaku Kinen Apori Wii: Kinenka no Isha ga Osheru Nanoka de yameru Houhou WKFE = Kung Fu Funk: Everybody is Kung Fu Fighting! WKFP = Kung Fu Funk: Everybody is Kung Fu Fighting WKHE = Big Kahuna Party WKIE = The Mystery of Whiterock Castle WKIP = The Mystery of Whiterock Castle WKKE = Party Fun Pirate WKKJ = Kurohige Kiki Ippatsu WKKP = Pop-Up Pirates! WKNJ = Kanken Minna de Waiwai Kanji Nou WKPJ = Kappa Kun to Mori no Nakama Tachi WKQJ = Kentei! TV Wii Minna de Gotouchi Quiz Battle WKRP = Karate Phants: Gloves of Glory WKTE = Contra Rebirth WKTJ = Contra ReBirth WKTP = Contra ReBirth WKUJ = Downtown Nekketsu Dodgeball WKWE = Adventure on Lost Island: Hidden Object Game WKWJ = Item Sagashi * Yousei to Fushigi no Shima WKWP = Aventura en la Isla Perdida: Juego de Objetos Escondidos WL2E = Target Toss Pro: Lawn Darts WL5E = HB Arcade Disc Golf WL9E = Let's Create! Pottery WLCE = Bingo Party Deluxe WLCJ = Wai Wai Bingo Deluxe WLCP = Bingo Party Deluxe WLDJ = Boku mo Sekai o Sukuitai: Battle Tournament WLEE = Aprender con los PooYoos: Episodio 1 WLEJ = Pooyoo to Asobou Episode 1 WLEP = Aprender con los PooYoos: Episodio 1 WLGE = HB Arcade Cards WLIE = Liight WLJJ = Boku mo Sekai o Sukuitai: Battle Tournament WLKJ = Okiraku Tennis SP WLLE = Little Tournament Over Yonder WLLP = Little Tournament Over Yonder WLME = La-Mulana WLMJ = La Mulana WLMP = La-Mulana WLNE = Aprender con los PooYoos Episodio 2 WLNP = Aprender con los PooYoos Episodio 2 WLOE = LostWinds: Winter of the Melodias WLOJ = LostWinds: Winter of the Melodias WLOP = LostWinds: Winter of the Melodias WLPE = Lonpos WLPJ = Lonpos WLPP = Lonpos WLTE = Lit WLTJ = School of Darkness WLTP = LIT WLWE = LostWinds WLWJ = LostWinds WLWP = LostWinds WLXJ = Phalanx WLZE = lilt line WLZP = lilt line WM2E = My Little Baby WM2P = My Little Baby WM3E = Manic Monkey Mayhem WM3P = Manic Monkey Mayhem WM4E = Mix Superstar WM4P = Mix Superstar WM5E = MDK2 WM7E = Anima Ark of Sinners WM7P = Anima Ark of Sinners WM8E = Bomberman Blast WM8J = Wi-Fi 8-Nin Battle Bomberman WM8P = Bomberman Blast WM9E = Happy Hammerin WM9J = Tataite Mogupon WM9P = Happy Hammerin' WMAE = Magnetis WMAP = Magnetis WMBE = MaBoShi's Arcade WMBJ = Katachi no Game: Marubou Shikaku WMBP = MaBoShi: El arcade de las tres formas WMCE = Monsteca Corral: Monsters vs. Robots WMCP = Monsteca Corral: Monsters vs Robots WMDE = Madstone WMGE = Mart Racer WMHE = Mouse House WMJE = Dive: The Medes Islands Secret WMJP = Dive: The Medes Islands Secret WMKE = Lead the Meerkats WMKP = Lead the Meerkats WMLE = Major League Eating: The Game WMLJ = Major League Eating: The Game WMME = Muscle March WMMJ = Muscle Koushinkyoku WMMP = Muscle March WMOE = Moki Moki WMOJ = Antaga Mawashite Sukuu Puzzle: Mochimochi Q WMOP = Moki Moki WMRE = Monochrome Racing WMRP = Monochrome Racing WMSE = Enjoy your massage! WMSP = Enjoy your massage! WMWP = Miffy's World WMXE = Max & The Magic Marker WMXJ = Max & the Magic Marker WMXP = Max & the Magic Marker WMZP = Mahjong WN9E = Military Madness: Nectaris WN9J = Military Madness: Nectaris WN9P = Military Madness: Nectaris WNAP = Back to Nature WNEE = Penguins & Friends Hey! That's My Fish! WNEP = Penguins & Friends Hey! That’s my Fish! WNGE = Bang Attack WNKE = Niki - Rock 'n' Ball WNKP = Niki - Rock 'n' Ball WNPJ = Sugusuro Duo: New Pulsar R & V WNSE = Newton Vs The Horde WNVE = Neves Plus WNVJ = Neves Plus: Pantheon of Tangrams WNVP = Neves Plus: Pantheon of Tangrams WNWJ = Hamekomi Lucky Puzzle Wii Return WO6E = Family Pirate Party WO6J = Okiraku Sugoroku Wii WO6P = Family Pirate Party WOAE = Family Glide Hockey WOAJ = Okiraku Air Hockey Wii WOAP = Family Glide Hockey WOBE = Art Style: ORBIENT WOBJ = Art Style: Orbital WOBP = Art Style: Orbient WODJ = Ouudaa! WOEJ = Oekaki Logic WOFE = Overflow WOGE = Family Mini Golf WOGJ = Okiraku Putter Golf Wii WOGP = Family Mini Golf WOKE = Karaoke Joysound WOKJ = Karaoke Joysound Wii WOLJ = Othello WOMJ = Sekai no Omoshiro Party Game 2 WOPE = Word Searcher Deluxe WOSE = Family Slot Car Racing WOSJ = Okiraku Slot Car Racing Wii WOSP = Family Slot Car Racing WOTE = Overturn WOTJ = Overturn WOTP = Overturn: Mecha Wars WOXJ = Osu! Exercise Dojo WOYE = Bit Boy!! WOYJ = Bit Man WOYP = Bit Boy!! WOZJ = Kodomo Kyouiku Telebi Wii: Aiue-Oumuzu WP2E = Potpourrii WP2P = Potpourrii WP4E = Aprender con los PooYoos Episodio 3 WP4P = Aprender con los PooYoos Episodio 3 WP5J = Pokosuka Racing WP6J = Boku wa Plarail Untenshi: Shinkansen Joukikikansha-Hen WP7E = My Planetarium WP7J = Planetarium WP7P = My Starry Night WP9J = Po-Ka-Zu Wii WPAJ = Pokémon Fushigi no Dungeon: Susume! Honoo no Boukendan WPBE = Pub Darts WPBP = Pub Darts WPCE = Doc Louis's Punch-Out!! WPDJ = Chindouchuu!! Pole no Daibouken WPFJ = Pokémon Fushigi no Dungeon: Ikuzo! Arashi no Boukendan WPGE = Snowpack Park WPGJ = Penguin Life WPHJ = Pokémon Fushigi no Dungeon: Mesaze! Hikari no Boukendan WPIE = Pit Crew Panic! WPIJ = Pit Crew Panic WPIP = Pit Crew Panic! WPJE = Pucca's Kisses Game WPJP = Pucca Misión Besos WPKE = Texas Hold'Em Poker WPKP = Texas Hold'Em Poker WPLE = Planet Pachinko WPNJ = Ponjan WPOJ = Popple to Mahou no Crayon WPPE = Family Table Tennis WPPJ = Okiraku Ping Pong WPPP = Family Table Tennis WPQE = Protöthea WPQP = Protöthea WPRE = Art Style: Cubello WPRJ = Art Style: Cubeleo WPRP = Art Style: CUBELLO WPSE = Pokémon Rumble WPSJ = Ransen Pokémon Scramble WPSP = Pokémon Rumble WPTJ = Fantasic Cube WPUE = Bust-A-Move Plus! WPUJ = Puzzle Bobble Wii WPUP = Puzzle Bobble Plus! WPVE = The Tales of Bearsworth Manor: Chaotic Conflicts WPVJ = Kumanage Battle-Hen: Kiina no Kirai na Aoi Hoseki WPVP = The Tales of Bearsworth Manor - Chaotic Conflicts WPWE = Pong Toss Pro - Frat Party Games WPXJ = Minna de Tobikome Penguin Diving Hooper Looper WPYE = Pallurikio WPYP = Pallurikio WPZE = Bruiser & Scratch WQ4J = Kentoushi FuriFuri Boxing WR2E = Rabbids Lab WR2P = Rabbids Lab WR4P = Rush Rush Rally Racing WR5E = Retro City Rampage WR9E = Mega Man 9 WR9J = Mega Man 9 WR9P = Mega Man 9 WRBE = Robocalypse - Beaver Defense WRBP = Robocalypse - Beaver Defense WRDE = Word Searcher WRDP = Word Searcher WREE = Racers' Islands - Crazy Arenas WREP = Racers' Islands Crazy Arenas WRFE = Reel Fishing Challenge II WRFP = Reel Fishing Challenge II WRGE = Rage of the Gladiator WRGP = Rage of the Gladiator WRIE = Rainbow Islands: Towering Adventure! WRIJ = Rainbow Islands: Towering Adventure! WRIP = Rainbow Islands: Towering Adventure! WRJE = Racers' Islands - Crazy Racers WRJP = Racers' Islands - Crazy Racers WRLE = FAST - Racing League WRLP = FAST - Racing League WRNJ = BIT.TRIP RUNNER WRPE = Burn the Rope WRQE = Deer Drive Legends WRQP = Deer Drive Legends WRRE = Robin Hood: The Return of Richard WRRP = Robin Hood: The Return of Richard WRSE = Step Up WRTE = Robox WRUE = BIT.TRIP RUNNER WRUP = Bit.Trip Runner WRXE = Mega Man 10 WRXJ = Mega Man 10 WRXP = Mega Man 10 WRYE = Robox WRYP = Robox WS2J = Saikyou Ginsei Igo WS3E = Silver Star: Chess WS3J = Saikyou Ginsei Chess WS4J = Saikyou Ginsei Mahjong WS5J = Saikyou Ginsei Gomoku Narabe WS6E = Silver Star: Reversi WS6J = Saikyou Ginsei Reversi WS7E = Fantasy Slots: Adventure Slots and Games WS8J = Minna de Taisen Puzzle Shanghai WS9E = Sudoku Challenge! WS9P = Sudoku Challenge! WSAE = Onslaught WSAJ = MadSecta WSAP = Onslaught WSBJ = Sorcery Blade WSCJ = Out of Galaxy: Gin no Koshika WSEJ = Princess Ai Monogatari WSGE = Pop 'Em Drop 'Em Samegame WSGJ = Pop Them, Drop Them SAMEGAME WSGP = Pop Them, Drop Them SAMEGAME WSHE = Stonekeep: Bones of the Ancestors WSIJ = Saikyou Ginsei Shogi WSJE = Spot The Differences! WSJP = ¡Descubra las Diferencias! WSLE = The Magic Obelisk WSLJ = Shadow Walker WSME = Eat! Fat! FIGHT! WSMJ = Tsuppari Oozumou Wii Heya WSMP = Eat! Fat! Fight! WSNE = Sonic The Hedgehog 4 Episode I WSNJ = Sonic the Hedgehog 4: Episode I WSNP = Sonic The Hedgehog 4 Episode I WSRE = Space Trek WSSP = Solitaire WSTJ = Tenshi no Solitaire WSUE = Shootanto: Evolutionary Mayhem WSUJ = Shootanto: Kakohen WSUP = Shootanto: Evolutionary Mayhem WSWE = Swords & Soldiers WSWP = Swords & Soldiers WSXE = Stunt Cars WSXP = Stunt Cars WSYE = Snail Mail WSZE = Sneezies WSZP = Sneezies WT2E = Target Toss: Pro Bags WT3E = Tomena Sanner WT3J = Tomena Sanner Wii WT3P = Tomena Sanner WT8J = Hajite! Block Rush WTBJ = Fantasic Tambourine WTDJ = Tomica Drive WTEE = Tales of Elastic Boy: Mission 1 WTEP = Tales of Elastic Boy Mission 1 WTFE = Bit.Trip: Flux WTFP = Bit.Trip Flux WTHJ = Kaku! Ugoku! Tsukamaeru! Sensei Wii WTIE = Tiki Towers WTKE = TV Show King 2 WTKP = TV Show King 2 WTME = Adventure Island: The Beginning WTMJ = Takahashi Meijin no Bouken Jima Wii WTMP = Adventure Island The Beginning WTNE = Family Tennis WTNJ = Okiraku Tennis Wii WTPE = Tetris Party WTPJ = Tetris Party WTPP = Tetris Party WTRE = Bit.Trip Beat WTRJ = BIT.TRIP BEAT WTRP = Bit.Trip Beat WTTE = Toki Tori WTTP = Toki Tori WTUE = Tumblebugs 2 WTWP = Fenimore Fillmore The Westerner WTXE = Texas Hold’em Tournament WTXP = Texas Hold’em Tournament WU2P = Éxito en primaria Matemáticas curso 2º WU3P = Éxito en primaria Matemáticas curso 3º WU4P = Éxito en primaria Matemáticas curso 4º WUBE = Ubongo WUBP = Ubongo WUFE = Drop Zone: Under Fire WUHE = Grill-Off with Ultra Hand! WUIP = Éxito en primaria Matemáticas curso 1º WUKJ = Unou Kids Okigaru Unou Training WUNE = Uno WUNJ = Uno WUNP = Uno WURE = Urbanix WURP = Urbanix WVBE = Bit.Trip: Void WVBJ = BIT.TRIP VOID WVBP = Bit.Trip Void WVCE = V.I.P. Casino: Blackjack WVDJ = Kodomo Kyouiku TV Wii: Aiue-O-Chan WVFE = Bobby Carrot Forever WVFP = Bobby Carrot Forever WVIE = Violin Paradise WVKE = Water Warfare WVKJ = Bang Bang Kids WVKP = Water Warfare WVOE = Rock N' Roll Climber WVOJ = Rock n' Roll Climber WVOP = Rock'n Roll Climber WVQE = Vampire Crystals WVQP = Vampire Crystals WVSE = Gods vs Humans WVSP = Gods vs Humans WVUP = Mister Bumblebee Racing Champion WW2P = ¿Dónde está Wally? Viaje Fantástico 2 WW3P = ¿Dónde está Wally? Viaje Fantástico 3 WWAE = Warmen Tactics WWIP = ¿Dónde está Wally? Viaje Fantástico 1 WWLP = The Will of Dr. Frankenstein WWRE = Excitebike World Rally WWRJ = Excitebike: World Race WWRP = Excitebike: World Challenge WWTE = BurgerTime World Tour WWTP = BurgerTime World Tour WWXE = Paper Wars: Cannon Fodder WWXP = Paper Wars Cannon Fodder WXBE = Ben 10 Alien Force The Rise of Hex WXBP = Ben 10: Alien Force - The Rise of Hex WXME = Xmas Puzzle WXPE = Paint Splash! WXPP = Paint Splash WXRE = Reel Fishing Ocean Challenge WYIE = escapeVektor: Chapter 1 WYIP = escapeVektor: Chapter 1 WYKJ = Yomi Kiku Asobi WYME = Yummy Yummy Cooking Jam WYMP = Yummy Yummy Cooking Jam WYSE = Yard Sale Hidden Treasures: Sunnyville WYSP = Yard Sale Hidden Treasures: Sunnyville WZAE = Zombii Attack WZBP = Cricket Challenge WZGE = Zoo Disc Golf WZHE = My Zoo WZHJ = Animal Life: Doubutsu Fureai Seikatsu WZHP = My Zoo WZIE = Rubik's Puzzle Galaxy RUSH WZIP = Rubik's Puzzle Galaxy: RUSH WZJJ = Simple Series Vol. 5: The Judo WZMJ = Simple Wii Series Vol. 3: The Mahjong WZPE = Zombie Panic in Wonderland WZPJ = Zombie Panic in Wonderland WZPP = Zombie Panic in Wonderland WZZE = The Tales of Bearsworth Manor: Puzzling Pages WZZJ = Kumanage Puzzle-Hen: Piina no Suki na Akai Candy WZZP = The Tales of Bearsworth Manor - Puzzling Pages XAAJ = Eggy XABJ = Aleste XADJ = Yie Ar Kung 2 XAEJ = Space Manbow XAFJ = Metal Gear XAGJ = Road Fighter XAHJ = Penguin Adventure: Yume Tairiku Adventure XAIJ = Quarth XAKJ = Parodius - Tako wa Chikyuu wo Sukuu XALJ = Contra XAMJ = Knightmare: Majou Densetsu XANJ = Parodius 2 XAOJ = Gofer no Yabou: Episode II XAPJ = Metal Gear 2: Solid Snake XAQJ = Salamander XBKE52 = Guitar Hero III Custom: Bullet For My Kamelot XH2E = Cave Story (Demo) XH2P = Cave Story (Demo) XH3E = Frobot (Demo) XH4E = Max and the Magic Marker (Demo) XH5E = Ayim And Yet It Moves Demo XH6E = Robox (Demo) XH6P = Robox (Demo) XH7E = Lit (Demo) XH7P = Lit (Demo) XH8E = Lead the Meerkats (Demo) XH8P = Lead the Meerkats (Demo) XHAE = Pokemon Rumble (Demo) XHAP = Pokemon Rumble (Demo) XHCE = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHCJ = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHDE = NyxQuest: Kindred Spirits (Demo) XHDP = NyxQuest: Kindred Spirits (Demo) XHEE = BIT.TRIP BEAT (Demo) XHEJ = BIT.TRIP BEAT (Demo) XHEP = BIT.TRIP BEAT (Demo) XHFE = World of Goo (Demo) XHFP = World of Goo (Demo) XHIE = Fluidity (Demo) XHIP = Hydroventure (Demo) XHJE = Thruspace (Demo) XHJP = Thruspace (Demo) XHKE = Dive: The Medes Island Secret (Demo) XHKP = Dive: The Medes Secret Island (Demo) XHLE = Jett Rocket (Demo) XHLP = Jett Rocket (Demo) XHME = Art of Balance (Demo) XHMP = Art of Balance (Demo) XHQE = Zombie Panic (Demo) XHQP = Zombie Panic (Demo) XHRE = Furry Legends (Demo) XHRP = Furry Legends (Demo) XHVE = BIT.TRIP CORE (Demo) XHVP = BIT.TRIP CORE (Demo) XHWE = BIT.TRIP VOID (Demo) XHWP = BIT.TRIP VOID (Demo) XHXE = BIT.TRIP RUNNER (Demo) XHXP = BIT.TRIP RUNNER (Demo) XHZE = Chronos Twins DX (Demo) XHZP = Chronos Twins DX (Demo) XI2E = Kyotokei (Demo) XI2P = Kyotokei (Demo) XI7E = Liight (Demo) XI8E = Jam City (Demo) XI8P = Jam City (Demo) XIAE = Lilt Line (Demo) XIAP = Lilt Line (Demo) XIBE = Fish em All (Demo) XIBP = Fish em All Demo XICE = Gods vs Humans Demo XICP = Gods vs Humans Demo XIDE = Racers Islands Crazy Racers Demo XIDP = Racers Islands Crazy Racers Demo XIEE = chick chick BOOM Demo XIEP = chick chick BOOM Demo XIGE = Urbanix Demo XIGP = Urbanix Demo XIHE = Gladiator Demo XIHP = Gladiator Demo XIJE = Fast Racing League Demo XIJP = Fast Racing League Demo XIKE = Monsteca Corral Demo XIKP = Monsteca Corral Demo XINE = Learning with the Pooyoos Episode 1 Demo XINP = Learning with the Pooyoos Episode 1 Demo XIOE = Learning with the Pooyoos Episode 2 Demo XIOP = Learning with the Pooyoos Episode 2 Demo XIPE = Learning with the Pooyoos Episode 3 Demo XIPP = Learning with the Pooyoos Episode 3 Demo XIQE = Dart Rage Demo XIRE = Pong Toss Pro Demo XISE = BIT.TRIP FLUX Demo XISP = BIT.TRIP FLUX Demo XITE = Fast Draw Demo XITP = Fast Draw Demo XIUE = Soccer Bashi Demo XIUP = Soccer Bashi Demo XIVE = Mix Superstar Demo XIVP = Mix Superstar Demo XIZE = 3D Pixel Racing Demo XIZP = 3D Pixel Racing Demo XJEE = Aya and the Cubes of Light Demo XJEP = Aya and the Cubes of Light Demo XJGE = Gnomz Demo XJGP = Gnomz Demo XJHE = Paint Splash Demo XJIE = 2 Fast 4 Gnomz Demo XJSE = Karaoke Joysound (Demo) XJSP = Karaoke Joysound Wii (Demo) XNWE52 = Guitar Hero III Custom: Nightwish XXXX02 = Mario Kart Teknik ZXFP52 = Guitar Hero: Rocks the 80s wit-2.31a/share/titles-ru.txt0000644000175000017500000107556312655737310016016 0ustar michaelmichael010E01 = Wii Backup Disc v1.31 301E01 = GameCube Service Disc AFRE01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 8. AMEE01 = New Super Mario Bros. Wii 11 American Revolution AMNE01 = Another Super Mario Bros. Wii AMOR04 = Guitar Hero III Custom : HARDcore APRP01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 2. APRP02 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 3. APRP03 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 6. APRP04 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 7. APRP06 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 5. APRP08 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 1. ASMB01 = Another Super Mario Bros. Wii BEPS01 = Guitar Hero III Custom : Rock n' Metal BOWE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh C3BE52 = Guitar Hero III Custom : Bossenator C3FP52 = Guitar Hero III Custom : Fonx #1 C3KE52 = Guitar Hero III Custom : Kyle Edition #1 C3ME52 = Guitar Hero III Custom : Modern Rock C3PP52 = Guitar Hero III Custom : Modern Pop & Rock C80E52 = Guitar Hero III Custom : Rocks the 80's C80P52 = Guitar Hero III Custom: GH I & 80's C93E = Last Ninja 2 C93P = The Last Ninja 2 C94E = Tower Toppler C94P = Nebulus C95P = Impossible Mission C96E = Summer Games II C96P = Summer Games 2 C97E = California Games C97P = California Games C98P = Paradroid C99P = Uridium C9EP = Winter Games C9GP = Mayhem in Monsterland C9HE = Boulder Dash C9HP = Boulder Dash C9IE = Cybernoid C9IP = Cybernoid C9ME = Pitstop II C9MJ = Pitstop Two C9MP = Pitstop II C9PP = The Last Ninja 3 C9QP = Jumpman C9RP = International Karate + C9SP = Impossible Mission II C9XE = The Last Ninja C9XJ = The Last Ninja C9XP = The Last Ninja C9YE = International Karate C9YJ = International Karate C9YP = International Karate C9ZP = World Games CANE52 = Guitar Hero Custom: NOT Aerosmith but... CCPE01 = Mario Kart Wii Custom: The Master Race CEMU69 = PunEmu CFEE52 = Guitar Hero III Custom : Michael Jackson CG1E52 = Guitar Hero III Custom : Guitar Hero CG1P52 = Guitar Hero III Custom: Guitar Hero I CG2E52 = Guitar Hero III Custom: Guitar Hero II CG2EFL = Guitar Hero III Custom : GH II CG2P52 = Guitar Hero III Custom : Guitar Hero II CG3ECS = Guitar Hero III Custom : ClasSick Edition CG3PCS = Guitar Hero III Custom : ClasSick Edition CGBE52 = Guitar Hero III Custom: Rock Band CGBP52 = Guitar Hero III Custom : Rock Band CGH370 = Guitar Hero III Custom : 70 New Song CGH3IM = Guitar Hero III Custom : Iron Maiden CGH3LM = Guitar Hero III Custom : Legend of Music CGH3ME = Guitar Hero III Custom : Metallica CGH3NE = Guitar Hero III Custom : Nostalgia Edition CGH3WD = Guitar Hero III Custom: WD Custom CGHCE1 = Guitar Hero III Custom : Edition Custom CGHE87 = Guitar Hero III Custom : Guitar Hero I CGHE88 = Guitar Hero III Custom : Guitar Hero II CGHE89 = GH3: Mario CGHE90 = GH3: South Park Edition CGHE91 = GH3: The Red Album CGHE92 = GH3: The Blue Album CGHE93 = GH3: Shake Rattle and Roll CGHE94 = Guitar Hero III Custom : Mars Needs Guitars CGHE95 = Guitar Hero III Custom : Rock Band CGHE96 = Guitar Hero III Custom: Rock'n'Roll Metal CGHE97 = GH3: I Fought The Law CGHE98 = GH3: Sweet Home Alabama CGHE99 = Guitar Hero III Custom : Rock The 80's CGHECB = Guitar Hero III Custom : CBT Edition CGHEDC = Guitar Hero III Custom : Downloadable Content Edition CGHEDM = Guitar Hero III Custom : DAVEMODE CGHEMC = Guitar Hero III Custom : My Chemical Romance CGHENC = Guitar Hero III Custom : NCustom CGHEPH = Guitar Hero III Custom : Puppetz Hero 2 CGHER2 = Guitar Hero III Custom : Rock Band 2 CGHERF = Guitar Hero III Custom : Rockfest 2010 CGHJ52 = Guitar Hero III Custom : Jumapa CGHKY2 = Guitar Hero III Custom : Kyle Edition #2 CGHPF2 = Guitar Hero III Custom : Fonx #2 CGHPF3 = Guitar Hero III Custom : Fonx #3 CGHPF4 = Guitar Hero III Custom : Fonx #4 CGHPF5 = Guitar Hero III Custom : Fonx #5 CGHPNT = Guitar Hero III Custom : Ntorrents Edition CGHRH2 = Guitar Hero III Custom : Rocks Hits Custom v2 CGHSKV = Guitar Hero III Custom : Starchildren & Kneos Version CGIE52 = Guitar Hero III Custom : Iron Maiden CGSP52 = Guitar Hero III Custom : Spanisk Custom by KuXu CGVECD = Guitar Hero Aerosmith Custom : AC/DC Edition CGVEM2 = Guitar Hero Aerosmith Custom : Mini Concerts Edition 2 CGVEMC = Guitar Hero Aerosmith Custom : Mini Concerts Edition CGVEUV = Guitar Hero Aerosmith Custom : Ultimate Video Game Hero CKBE88 = Mario Kart Wii Black CLAPSI = Sing IT: Clásicos CMDE52 = Guitar Hero III Custom: Megadeth CMKE01 = Mario Kart Wii Dragon Road CS0P00 = StarSing : Bollywood v2.0 CS0PZZ = StarSing : Pop Part. I v2.0 CS1P00 = StarSing : Country v2.0 CS1PZZ = StarSing : Pop Part. II v2.0 CS2P00 = StarSing : Placebo v2.0 CS2PZZ = StarSing : '80s Volume 1 v2.0 CS3P00 = StarSing : Volume 1 v2.0 CS3PZZ = StarSing : Anthems v2.0 CS4P00 = StarSing : NRJ Music Tour v2.0 CS4PZZ = StarSing : Legends v2.0 CS5P00 = StarSing : '70s v2.1 CS5PZZ = StarSing : Songs For My Jedi v1.0 CS6P00 = StarSing : Douce France v2.0 CS6PZZ = StarSing : Amped Part. I v2.0 CS7P00 = StarSing : Red Hot Chili Peppers v1.0 CS7PZZ = StarSing : Amped Part. II v2.0 CS8P00 = StarSing : '90s Volume 1 v2.0 CS8PZZ = StarSing : Disco-Funk v1.0 CS9P00 = StarSing : '80s Volume 2 v2.1 CS9PZZ = StarSing : Pop Hits 9 v1.0 CSAP00 = StarSing : '80s Volume 3 v2.1 CSAPZZ = StarSing : Best of Goldman v1.0 CSBP00 = StarSing : '90s Volume 2 v2.1 CSCP00 = StarSing : Michael Jackson v2.2 CSCPZZ = StarSing : Hottest Hits v2.0 CSDP00 = StarSing : Rocks! Volume 2 v2.0 CSDPZZ = StarSing : Boy Bands Vs. Girl Bands v2.0 CSEP00 = StarSing : Pop Hits 5 v1.3 CSFP00 = StarSing : Pop Hits 6 v1.3 CSGP00 = StarSing : Chansons Magiques de Disney v1.4 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = StarSing : Pop Hits 7 v1.3 CSJP00 = StarSing : Après-Ski Party v1.2 CSKP00 = StarSing : ABBA v1.1 CSLP00 = StarSing : Queen v2.0 CSMP00 = StarSing : Electro-Dancefloor Volume 1 v2.0 CSNP00 = StarSing : Electro-Dancefloor Volume 2 v2.0 CSOP00 = StarSing : Electro-Dancefloor Volume 3 v2.0 CSPP00 = StarSing : Linkin Park Live at Webster Hall New York v2.0 CSQP00 = StarSing : Muse v2.0 CSRP00 = StarSing : International Volume 3 v1.0 CSSP00 = StarSing : Après-Ski Party 2 v2.0 CSTP00 = StarSing : Depeche Mode v2.0 CSUP00 = StarSing : Pop Hits 8 v1.3 CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = StarSing : Génériques TV v2.0 CSYP00 = StarSing : Electro-Dancefloor Volume 4 v2.0 CSZP00 = StarSing : Glee Volume 1 v2.1 CT0P00 = StarSing : Pop Part. I v2.1 CT1P00 = StarSing : Pop Part. II v2.1 CT2P00 = StarSing : '80s Volume 1 v2.1 CT3P00 = StarSing : Anthems v2.1 CT4P00 = StarSing : Legends v2.1 CT5P00 = StarSing : Songs For My Jedi v2.0 CT6P00 = StarSing : Amped Part. I v2.1 CT7P00 = StarSing : Amped Part. II v2.1 CT8P00 = StarSing : Disco-Funk v2.0 CT9P00 = StarSing : Pop Hits 9 v1.3 CTAP00 = StarSing : Best of Goldman v2.0 CTBP00 = StarSing : Glee Volume 3 v1.0 CTCP00 = StarSing : Hottest Hits v2.0 CTDP00 = StarSing : Boy Bands Vs. Girl Bands v2.1 CTEP00 = StarSing : R&B v2.0 CTFP00 = StarSing : Rock Ballads v2.0 CTGP00 = StarSing : Take That v2.0 CTHP00 = StarSing : Summer Party v2.0 CTIP00 = StarSing : Rocks! Part. I v2.0 CTJP00 = StarSing : Rocks! Part. II v2.0 CTKP00 = StarSing : Pop Hits v2.0 CTLP00 = StarSing : Britney Spears v2.0 CTMP00 = StarSing : Shakira v1.1 CTNP00 = StarSing : Pop Hits 10 v1.3 CTOP00 = StarSing : The Beatles Volume 2 v2.0 CTPP00 = StarSing : Motown v2.0 CTQP00 = StarSing : Glee Volume 2 v1.0 CTRP00 = StarSing : International Volume 1 v1.0 CTSP00 = StarSing : International Volume 2 v1.0 CTTP00 = StarSing : '80s Volume 4 v1.0 CTUP00 = StarSing : Rihanna v1.0 CTVP00 = StarSing : Lady GaGa v1.0 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CVLE38 = Mario Kart: Victory Lane D01A = Wiimmfi Patcher D02A = Engine02 D03A = BrainSlug Wii D05A = Bash the Castle D06A = Bit Streamer D07A = BlisterBall D08A = Blob Wars: Metal Blob Solid D09A = Blobby Volley 2 Wii D0AA = MPlayer Wii Youtube D0BA = MPlayer Wii D0CA = Ocarina D0DA = MPlayer Dvdlib Edition D0EA = MPlayer Wii By Rodries D0FA = Signcheck D0GA = GCBoot D0HA = Memview D0IA = IOS Check D0JA = Open Sram Lang Modifier D0KA = WiiBServer D0LA = LibWiiGameLoad D0MA = Wiireader D0NA = lsusb D0OA = Move The Pussy Demo D0PA = Wiilax Minitro D0QA = Fission Engine Project D0RA = GRRLIB 4.0 Demo D0SA = OSDM-BAR D0TA = Homebrew Menu Demo D0UA = LibMii Example D0VA = The Scary Demo D0WA = Starfield Demo D0XA = Wire3D Demo D0YA = Something D0ZA = GRRLIB 4.3.0 Promote Intro D10A = cIOSFix D11A = ASCII Pong D12A = BuscaWiinas D13A = C-Dogs SDL D14A = Castles of Dr. Creep D15A = Wii Shop and IOS51 Installer D16A = Centipede D17A = Cobra Arcade D18A = Dump Espresso OTP D1LA = Blind D1PA = 1bit Invaders D1RA = MinimaLauncher D21A = Xroar D22A = cIOS222 installer D24A = 24 Points D26A = Wii2600 D29J01 = Monthly Nintendo Shop Demo May 2002 D2AA = Wii Deadly Cobra D2AJAF = Minna de Bouken! Family Trainer (Demo) D2BA = Jump N Bump D2CA = Wiiflow Advanced D2DA = Box2D Balls D2EA = Wiiflow Start Configurator D2GA = Wadinstallerbatch D2QA = Sqrxz 2 D2SE18 = Deca Sports 2 (Demo) D2ZA = Console Shooter D32J01 = Monthly Nintendo Shop Demo June 2002 D33A = Time Frack 2D D33J01 = Monthly Nintendo Shop Demo July 2002 D34J01 = Monthly Nintendo Shop Demo July 2002 D36A = cIOS36 installer D37A = WiiConnect D38A = cIOS38 installer D38J01 = Monthly Nintendo Shop Demo September 2002 D39A = Ctr Gts DacoTaco Edition D3DA = Time Frack 3D D3DE18 = Deca Sports 3 (Demo) D3JA = NDSLoad D3KA = Button Tester D3LA = BootMii Booter D3MA = Custom NAND Loader D3OA = cIOS USB 2 Installer D3QA = Sqrxz 3 D3WA = Warheads D40A = Luigi and the Island of Mystery D42A = ArianeB D43A = Wii Virtual Jaguar D43E01 = The Legend of Zelda: Ocarina of Time / Master Quest D43J01 = Zelda no Densetsu: Toki no Ocarina GC / Ura Zelda D43P01 = The Legend of Zelda: Ocarina of Time / Master Quest D43U01 = The Legend of Zelda: Ocarina of Time (Bonus Disc) D43W01 = The Legend of Zelda: Ocarina of Time / Master Quest D46A = Newo Escape D4BE08 = Resident Evil 4: Preview Disc D4BP01 = Resident Evil 4: Bonus Disc D4BP08 = Resident Evil Four Preview Disc D4BU01 = Resident Evil 4: Bonus Disc D4KA = Aleph WOne D4LA = Yawnd D4NA = Disc Dumper D4PA = DVD Dumper D4QA = Sqrxz 4 D4SA = USB Loader GUI FX D51A = IOS51 Update D52A = cboot252 D53J01 = Monthly Nintendo Shop Demo May 2003 D54A = cIOS Patchmii Installer D55A = PID Extractor D55J01 = Interactive Disc Catalog Summer 2003 D56A = Shopping Channel Fixer D56E01 = Interactive Multi-Game Demo Disc - Version 35 D56J01 = Pokémon Channel (Bonus Disc) D57A = Hijill GUI D57E01 = Interactive Multi-Game Demo Disc - Version 34 D58A = Priiloader HacksDen Edition D58E01 = Interactive Multi-Game Demo Disc - Version 33 D59A = TheUntitledProject D59E01 = Interactive Multi Game Demo Disc Version 32 D5AA = Alarmii D5BA = WiiFont D5CA = cLoader D5FA = Txted Mod D5HA = Title Lister D5JA = Tidy Up D5LA = Switchtosneek D5RA = Botoning D60A = Ultimate USB Loader D61A = Sand Traps Extra Levels D62A = Newo Puzzle D62E01 = Interactive Multi-Game Demo Disc - Version 31 D63A = 3D Maze D63E01 = Interactive Multi-Game Demo Disc - Version 30 D64A = Wii64 Emulator D64E01 = Interactive Multi-Game Demo Disc - Version 29 D65A = Transitory Vectors D65E01 = Interactive Multi Game Demo Disc Version 28 D65P01 = Interactive Multi-Game Demo Disc - December 2002 D66A = Secret Maryo Chronicles D66E01 = Interactive Multi-Game Demo Disc - Version 27 D67E01 = Interactive Multi-Game Demo Disc - Version 26 D67J01 = Monthly Nintendo Shop Demo December 2003 D68A = TheyDoNotDie2 D68E01 = Interactive Multi-Game Demo Disc - Version 25 D68J01 = Monthly Nintendo Shop Demo January 2004 D69A = IOS60 Installer D69E01 = Interactive Multi-Game Demo Disc - Version 24 D6AA = Pussieloader D6BA = Updatersafe D6DA = Savegame Manager Mod D6EA = Sneek FS Dumper D6FA = Anytitle Deleter Mod D6HA = AnyTitle Deleter Mod DB D6IA = DVD Info D6KA = AnyTitle Deleter DB D6MA = Banana Saves D6OA = DOP Shop D6QA = BootMii Checker D6TA = MiiPlayer D70A = Dungeon Crawl Stone Soup D71A = Panic in the Mushroom Kingdom D72A = Bfi D72E01 = Interactive Multi-Game Demo Disc - Version 23 D73E01 = Interactive Multi-Game Demo Disc - Version 22 D74E01 = Interactive Multi Game Demo Disc Version 21 D75E01 = Interactive Multi-Game Demo Disc - Version 20 D76E01 = Interactive Multi-Game Demo Disc - Version 19 D77E01 = Interactive Multi-Game Demo Disc - Version 18 D77P01 = Interactive Multi Game Demo Disc April 2006 D78A = Wii7800 D78E01 = Interactive Multi-Game Demo Disc - Version 17 D78J01 = Interactive Multi-Game Demo Disc - May 2004 D78P01 = Interactive Multi-Game Demo Disc - October 2005 D79A = Newo Defence D79E01 = Interactive Multi-Game Demo Disc - Version 16 D79P01 = Interactive Multi Game Demo Disc May 2005 D7AA = Action Replay Loader D7DA = Depanbrew D7GA = Channel Loader D7KA = RawkSD D7LA = Rumbler D7MA = IS Wad D7OA = Recovery Manager D7QA = Reboot D7SA = Childproof USB Loader D7TA = Power Mii Off D7VA = Power Off D7WA = Abbaye des Morts D7XA = NuGaSa D7YA = Resistor D81A = Newo Asteroids D82A = cIOS Patchmii Installer with Korean Disc Support D82E01 = Interactive Multi-Game Demo Disc - Version 15 D82J01 = Monthly Nintendo Shop Demo July 2004 D82P01 = Interactive Multi Game Demo Disc April 2005 D83A = Wii MFE Port D83E01 = Interactive Multi-Game Demo Disc - Version 14 D83P01 = Interactive Multi Game Demo Disc February 2005 D84A = Gambol D84E01 = Interactive Multi-Game Demo Disc - Version 13 D84P01 = Interactive Multi-Game Demo Disc - November 2004 D85A = Wii EDuke32 D85E01 = Interactive Multi-Game Demo Disc - Version 12 D85P01 = Interactive Multi Game Demo Disc July 2004 D86A = Firewii D86E01 = Interactive Multi-Game Demo Disc - Version 11 D86P01 = Interactive Multi-Game Demo Disc - May 2004 D87A = Tick Tock Boat Race D87E01 = Gamecube Preview Disc D87P01 = Interactive Multi-Game Demo Disc - March 2004 D88A = Quasi88 D88E01 = Interactive Multi-Game Demo Disc - Version 10 D88P01 = Interactive Multi-Game Demo Disc - November 2003 D89A = Wiimote Led Flasher D89E01 = Interactive Multi-Game Demo Disc - Version 9 D89J01 = Club Nintendo Original e-Catalog 2004 D89P01 = Interactive Multi-Game Demo Disc - September 2003 D8AA = Front SD ELF Loader D8BA = GameCube Homebrew Launcher D8CA = WiiSend D8DA = Menu D8EA = Gecko Loader D8FA = Shell D8JA = Calc D8QA = Brick OS D8RA = Lotto D8SA = Brainf**k D8UA = TCPLoader D8VA = Snort48 D8WA = Wiisixty D8XA = All In One Emuloader D8YA = Swissloader D8ZA = Tick Tock Zombie Shooter D91A = Jenny Thinks D92E01 = Interactive Multi-Game Demo Disc - Version 8 D92P01 = Interactive Multi Game Demo Disc June 2003 D93A = Wiiraytracer D93E01 = Interactive Multi-Game Demo Disc - Version 7 D93P01 = Interactive Multi Game Demo Disc April 2003 D94A = Nowhere D94P01 = Interactive Multi-Game Demo Disc - February 2003 D95A = RenderMii D95P01 = Interactive Multi-Game Demo Disc - December 2002 D96A = WiiMotionDemo D96P01 = Interactive Multi-Game Demo Disc - November 2002 D97A = Fire D98A = InstallMii D99A = System Channels Updater D9BA = Info D9CA = cIOS USB2 Installer D9FA = Dump D9GA = Wad Creator D9HA = WakeMiiUp D9IA = SNES9xGX Channel Installer D9KA = Txtread D9LA = Forwarder DA1A = Radianwars DA2A = Moonstone DA3A = Wiitch DA4A = arCard+Wii DA6A = Automatii DA7A = Astronomy DA8A = Beer Belly Bill 3 Grillieren DA9A = Achtung Wii Kurve DAAA = WiiNetPuzzle DAHA = Accio Hacks DALJ01 = Dairantou Smash Brothers DX (Demo) DAMA = MegaCodeDownloader DAPA = Map Maker DARA = Anyregion Changer DASA = Aspirin DASE4Q = Disney Epic Mickey (Demo) DATA = AnyTitle Deleter DATD = AnyTitle Deleter DAUEPZ = Country Dance (Demo) DAVA = Avoidance DAVE01 = Mystery Case Files: The Malgrave Incident (Demo) DAWA = Abuse Wii DAXE01 = The Legend of Zelda: Skyward Sword (Demo) DAXP01 = The Legend of Zelda: Skyward Sword (Demo) DB0A = Spitits DB2A = Mad Bomber DB3A = Squarez DB5A = mapbf DB7A = Blacks Dash DB9A = Robi DBAA = BowFishing Action DBBA = Balance Board Tools DBBE18 = Beyblade: Metal Fusion - Battle Fortress (Demo) DBCA = BootMii Configuration Editor DBDA = Bluedump DBGA = BlastGuy DBIA = Boot It DBKE69 = Boom Blox (Demo) DBKP69 = Boom Blox (Demo) DBLA = BlueMSX-wii DBMA = BootIOS DBPA = Balance Board Pro DBRA = WiiBrowser DBSA = BrawlStats DBTA = Bolt Thrower DBUA = Buttoncast DBWA = Reversmii DBXA = Biniax 2 DBZJ08 = Biohazard Zero: Trial Edition DC6A = Frodo (C64-network.org) DC7A = Calculate DCAA = Wiicasino DCAE18 = Calling (Demo) DCBA = CascadeBeneath DCCA = Christmascountdown DCDA = cIOS Downgrader DCEA = Cheat Manager DCFA = Coverfloader DCGA = Ctr-Gcs DCHA = Wiichatter DCHEAF = We Cheer (Demo) DCHJAF = We Cheer: Ohasta Produce ! Gentei Collabo Game Disc DCIA = cIOS Installer DCLA = Configurable USB Loader DCMA = Wiicm DCNA = Nandclean DCOA = Connectmii DCPA = Splatter Castle DCRA = CosmoRaketti DCSA = Cert.sys Extractor DCTA = Christmas-Type Adventure Time DCUA = cIOS Uninstaller DCVA = WiiColEm DCWA = WiiMC Channel Installer DCXA = ComixChannel DCYA = Cylinder Dodge DD2A = Double Dash Wii DD2P41 = Just Dance 2 (Demo) DD3A = Dario DD5A = Dcvg5k DD9A = Dungeons DDAA = Darkcorp DDBA = DOSBox Wii DDCA = d2x cIOS Installer DDDA = Disk Drive Lighter DDEA = WiiModder DDFA = Defendguin DDHA = Homebrew Disc Launcher DDIA = DiiLC DDLA = Disc Loader DDMA = DragonMedia Player DDOA = DOP-Mii DDRA = Wii Duplicated Channel Remover DDSA = DeSmuME DDVA = Devolution DDWA = DOP Mii Wiibrew Edition DDWE18 = Lost in Shadow - Press Disc (Demo) DDWX18 = Lost In Shadow - Best Buy (Demo) DE2A = Doubledown DE5A = Pictogrid DE7A = Commander Keen DE9A = Wii Bash DEAA = Headtracking Demo DEBA = Pong Breaker DEDA = Txted DEEA = Eeeek Eeeeek Hooooook DEFA = Fuse DEHA = Chess DEME = PunEmu DEPA = Pacman DERA = Elongated Reptile DETA = MPlayer TT DEWA = Wii Exhibit DEZP8P = Billy Hatcher and the Giant Egg (Demo) DF0A = Mini FSToolbox DF2A = Da ShAmAn DF3A = Briickout DF4A = Star Catching DF5A = Strobe Alarm Clock DF6A = Wii Quizz DF7A = Chatnoir DF8A = Trinary DF9A = Chunk Munch DFBA = Fsbrowser DFEA = FlipEm DFFA = Simple fs dumper DFGA = Smashing! DFIA = Fceugx Channel Installer DFLA = Starfall DFMA = FMyLife DFRA = FridgeMagnets DFSA = Fstoolbox DFTA = FTPii DFUA = Fuse DG3A = Giddy 3 DG7A = WiiPeng DG8A = Abusimbel Deluxe DG9A = Garnatron DGBA = Geexbox DGCA = GameCube Backup Launcher DGEA = GeckoOS DGFA = Guitars On Fire DGGA = Wii Rick Dangerous DGIA = Gravitii DGKA = ProjectGMC DGMA = GCMM DGPA = Genesis Plus DGSA = Shooting Gallery DGWA = Goodbye World DGXA = GxGeo DH7A = Harmony's Nightmare DH9A = Prophecy DHBA = Homebrew Browser DHCA = Hero City DHDA = Hidtest DHEA = Helium Boy DHFA = Homebrew Filter DHGA = HuGo-GX DHHA = HHexen DHHJ8J = Hirano Aya Premium Movie Disc from Suzumiya Haruhi no Gekidou DHIA = HackMii Installer DHKE18 = Help Wanted: 50 Wacky Jobs (Demo) DHLA = Heli DHMA = CharioMan DHSA = Homebrew Sorter DHTA = Hatari DHWA = We are nowhere DHXA = Hex DI5A = Tanks DI7A = ExistenzE DI8A = Ios58 Installer DI9A = Barrage DIBA = Revolt of the Binary Couriers DICA = Cubic DIEA = EasyIOS DIGA = Categorii DIIA = iiii DIMA = Inspectmii DINA = Mii Installer DIRA = Ironing Maiden DISA = Wii Supersonic DITA = IOS236 Installer DIXA = cIOSx installer DIYP01 = New Super Mario Bros. Wii 0-4 D.I.Y. DJAA = Arcade Jigsaw DJCA = Wii JellyCar DJFA = Joyflow DJJA = Jumping Jack DJQA = Jewel Quest DJWA = Wii System Menu DJZA = JzintvWii DK1A = Karaokii DK3A = Sketch Fight DK4A = Drawingbox DK6A = King of Fighters: Flames of Courage DK6E18 = Marble Saga Kororinpa (Demo) DK6J18 = Kororinpa 2 (Demo) DK7A = Uschtris DKBA = RPG Baker DKCA = Tick Tock Car Race DKCP01 = Darky Kart Riivo DKDA = Darkcube DKHA = Katakana and Hiragana Practice DKKA = Koreankii DKOA = Komopong DKPA = Kidspaint DKSA = Wii Stpp DKTA = Taiko DKWA = Kurushi DKWE01 = Darky Kart Wii Vol. 1 DKWE02 = Darky Kart Wii Vol. 2 DKWE03 = Darky Kart Wii Vol. 3 DKWE04 = Darky Kart Wii Vol. 4 DL3A = Ballion DL4A = LPairs DL5A = Gameload DL7A = LabClone DLBA = My Little Ball DLCA = Dance Clone DLDA = Devilock DLEA = Preloader DLFA = LifeMii DLGA = Gravity Glider DLIA = WiiMod Lite DLLA = Lolicopocalypse DLMA = LoadMii DLNA = Lander DLOA = Lightsout DLPA = Lopan DLSE64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLSP64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLTA = Leveltool DLUA = WiiLauncher DLXA = Linux Installer DLZEPW = Super Smash Bros Phoenix Wings DM0A = Pom DM5A = Missle Command DM7A = Matches DM9A = Checkregion DMAA = Mame Wii DMBA = Multiboot DMCA = Cleanrip mod DMDA = WiiMod DMEA = Mii Extractor DMFA = WiiMednafen DMGA = Mighty Channels DMHA = NanoMechas DMHE08 = Monster Hunter Tri (Demo) DMHJ08 = Monster Hunter Tri (Demo) DMIA = DIOS MIOS Booter DMJA = Mahjongg Wii DMKE01 = Mario Kart Wii 2 DMLA = Mighty Loader DMMA = MyMenuify DMNA = Magic Number DMOA = cMIOS installer DMPA = MPlayer CE DMRA = MIOS Patcher DMSA = ShutMiiReboot DMSP4Q = SingItStar: Best of Disney DMTA = Metronome DMUA = Multi Mod Manager DMWA = Wakemiiup DN0A = Thatother DN7A = Alien Breed DN9A = Point and No Click DNAA = Ncard DNCA = NeoCD-Wii DNDA = Nintendont DNEA = Gravity DNGA = NeoGamma Launcher DNHA = Headings DNIA = Bugin DNKA = Neko Project II DNMA = Newo Model Viewer DNNA = Save installer DNOA = O.T.T.F. DNPA = NeoPopWii DNRA = Newo Runner DNSA = Newo Shooter DNTA = NeoTanks DNUEDA = Naruto Clash of Ninja 2 (Demo) DNWA = Nowell DO2A = O2EM DO3A = Three Point O DO4A = MTP DO5A = Planet Hively DO6A = Mini MP3 Player DOCA = Code Downloader DOEA = ShowTest DOGA = Wii Maze of Galious DOHA = HighOctane DOIA = Neogamma IOS Switcher DOMA = Mole DONA = Offline Network Enabler DOOA = Doom DOPA = PowerCheck DORA = Rebooter DOTA = OpenTTD DP0A = Starplit DP1A = Italian Parking DP2A = Pong2 DP3A = Inkpoly DP4A = Piirates DP5A = Pix DP6A = IOS36 patcher DP7A = Brawl+ Updatifier DP8A = Timeless DP9A = Alien Puzzle Wii DPAA = WiiPaintBall DPBA = Priibootergui DPCA = Cherophobe DPEA = PieChart DPFA = Pwiictogrid DPGA = Pingus DPIA = Patched IOS 80 Installer for vWii DPIE18 = Oops! Prank Party (Demo) DPJA = Project M Launcher DPKA = Physco DPLA = Priiloader DPMA = Music Painter DPNA = RPG Pineapple Apocalypse DPNP08 = P.N.03 (Promo) DPOA = Postloader DPPA = Project Panic DPRA = PlasmaRaketti DPSA = Playstats DPTA = Two Point Five DPVA = Pattview DPWA = Pimp my Wii DQ1A = Q1rev DQ2A = Q2rev DQ6A = Light DQ7A = Quake DQ8A = LuaFWii DQ9A = Wiihttpd DQAJK2 = Aquarius Baseball DQAJSC = Aquarius Baseball (Simplified Chinese Translation) DQBA = Bible Quiz DQCA = Q2ctfrev DQGP69 = MySims Racing (Demo) DQRA = Qrevpak DQWA = Quakegx DR0A = Rokoban DR1A = Wii Whiteboard DR3A = Death Star Run DR4A = Rock Paper Scissors DR5A = Briicks DR6A = Reader DR7A = RockBlueMet DR8A = Operation DR9A = PixelPlot DRAA = RetroArch-Wii DRBA = Rock Band 2 Wad Installer DRCA = Wiicross DRDA = Drawmii DREA = Wiirecipe DRFA = Radiofeeds DRGA = Reggie Dumper DRIA = Cleanrip DRKA = Robotfindskitten DRMA = Mr. Sitwell DRME18 = Rooms: The Main Building (Demo) DROA = SlimeRoll DRP22Q = SingItStar Deutsch Rock-Pop Vol. 2 DRPA = Marcos Lopez Part II DRRA = Riiper DRSA = RedSquare DRTA = Tetris Custom DRUA = Radiofeeds Updater DRVA = Residualvm DRWA = Winterman DRZA = Zerace DS0A = ShootMii DS1A = Another Rock Paper Scissors DS2A = Swingball2 DS3A = Senet DS4A = Sar DS5A = Snaketwo DS6A = Scogger DS7A = Swing Ball DS8A = Scape DS9A = Minesweeper DSAA = Schism Tracker DSBA = SpaceBubble DSCA = Softchip DSDA = Superdump DSEA = Settings Editor GUI DSFA = Sciifii DSFE7U = Muramasa: The Demon Blade (Demo) DSGA = Savegame Manager DSHA = SysCheck HacksDen Edition DSIA = Simple IOS Patcher DSKA = SockDreams DSLA = Wii Stella DSMA = Sega Master System Plus DSNA = SNES9xGX DSOA = Bermuda Syndrome Wii DSPA = Super Star Shooter DSQA = Sqrxz DSRA = Wiistrobe DSRJ8P = Sonic and the Secret Rings (Demo) DSSA = RSSMii DSTA = Wii Solitaire DSUA = Super Mario War DSVA = scummVM DSWA = SuperTux Wii DSXA = Super Pixel Jumper DSYA = Syscheck DT0A = Tower Defense DT1A = Turnip DT2A = Matching Cards DT3A = Bichejos DT4A = Soduku DT5A = Poker DT6A = Simon DT7A = TheyDoNotDie DTAA = Wii Tac Toe DTCA = The Catachthonic DTDA = Descent DTEA = Topedit DTFA = Triiforce DTHA = Heretic DTIA = Wiitriis DTJA = Trojan DTKA = Tick Tock Tank Fight DTLA = TailTale DTLX01 = Action Replay DTMA = Tetrominos DTNA = Tunnel DTOA = Tong DTPA = Paintown DTRA = Trucha Bug Restorer DTSA = Desert Bus DTTA = Toddtris DTWA = Wiitweet DTXA = Texttris DU0A = Dumpmiinand DU7A = Uno DU8A = RealWnd DU9A = Harmonium DUAA = UAE Wii DUAP01 = DU Super Mario Bros. : Anniversary Edition DUBA = Multibu DUCE01 = Kustom Mariokart Wii DUDA = Duck Hunt DUDE01 = New Super Mario Bros. Wii Scooby-Doo! Hack DUGA = Guitar Fun DUIA = ChessUI DULA = USB Loader GX DUNA = Uname DUSA = bootOperaModUSB DUTG = DU Tag Channel DUWA = Waninkoko's USB Loader DV0A = Remove Preloader Hacks DV3A = DVD Browser DV9A = SensorMii DVDA = cIOS DVD Dumper DVGA = The Video Game DVHA = Horror Vacui DVIA = Vbagx Channel Installer DVJP08 = Viewtiful Joe (Promotional demo) DVLA = Vigiroth le livreur DVNA = Wiivnc DVOA = Vectoroids DVPA = Progressiveswitch DVSA = GameCube Saver DVXA = VectrexWii DW1A = Intuitwars DW5A = Marel DW6A = Wiicraft DW7A = Ravewild DWAA = WiiApple DWBA = WiirtualBoy DWCA = WiiFlow Channel Installer DWDA = Wiiflow Banner Downloader DWEA = WiiEarth DWEPA4 = Pro Evolution Soccer 2008 (Demo) DWFA = WiiFlow DWHA = WiiHandySDL DWJA = Jewel DWKA = Wiibreaker DWLA = Wii-Linux DWMA = WAD Manager DWNA = Nwancat DWPA = WiiPhysics DWRA = WiiRadio DWSA = WiiSX DWTA = Wiituka DWUA = Wufe DWWA = Winters End DWXA = WiiXplorer DX3A = Midway Space Invaders Emulator DX4A = Brawl DX Launcher DX5A = MP3+G Player DX6A = Build Blocks DX7A = Roxoptr2 DX8A = Hexen DX9A = Sand Traps DXBA = Wii X Ball DXCA = CorsixTH DXDA = DVDX DXEA = SDExplorer DXHA = Texas Holdem Poker DXIA = Piixelator DXLA = WiiXL DXNA = bootnetflix DXPA = Xeempongwii DXQA = Quadrax DXSA = Save extractor DXSE18 = Deca Sports (Demo) DXTA = The Lone Pixel DXXA = Hexxagon DXYA = xyzzy DXZA = Megazeux DY5A = Darkcorp Lite DY6A = Liqwiid Wars DY9A = TetWiis DYAA = Syasokoban DYBA = Yabause DYCA = Tetricycle DYEA = Epilepsii DYGA = Yog DYHA = Hypno Blast DYIA = Chippy DYMA = YAWMM DYOA = Toy Wars DYPA = PongYourWii DYSA = Shiny tank DYTA = Newo Tokyo DYUA = UFO Racer DYWA = Yahtzwii DYYA = System Setting Replace Tool DZ0A = Eject DZ7A = SameGame DZ8A = WiiMPC DZ9A = Teeter Torture DZDE01 = The Legend of Zelda: Twilight Princess (Demo) DZDP01 = The Legend of Zelda: Twilight Princess (Demo) DZIA = Ziip DZPA = Puzsion DZQA = Quizz DZRA = Rezerwar DZSA = Szigoy DZXA = FBZX Wii DZYA = Snake Two DZZA = OpenJazz E52E = 1942 E52J = 1942 E52P = 1942 E53E = Black Tiger E53J = Black Dragon E53P = Black Tiger E54E = Ghosts 'n Goblins E54J = Makaimura E54P = Ghost'n Goblins E55E = Commando E55J = Senji no Ookami E55P = Commando E56E = Exed Exes E56J = Exed Eyes E56P = Exed Exes E57E = SonSon E57J = Son Son E57P = SonSon E58J = Mr. Do! E59J = Karate Dou E5AJ = Ikki E5BJ = Shanghai E5VJ = Renegade E5WE = Wonder Boy in Monster Land E5WJ = Wonder Boy in Monster Land E5XJ = Puyo Puyo Tsu E5YJ = Puyo Puyo E5ZE = Super Hang-On E5ZJ = Super Hang-On E62E = Space Harrier E62J = Space Harrier E62P = Space Harrier E63E = Shinobi E63J = Shinobi Virtual Arcade E63P = Shinobi E64J = Rolling Thunder 2 E65J = Valkyrie no Densetsu E66J = Ordyne E67J = Dig Dug E68J = Galaga E69J = Baraduke E6AJ = Moon Cresta E6BJ = Crazy Climber E6CJ = Rompers E6DJ = Toy Pop E6EJ = Libble Rabble E6FJ = Galaxian E6GJ = Namco Quester E6HJ = Face Off E6IJ = Trink Force E6JJ = Bakutotsu Kijuutei: BaRaDuKe II E6KJ = Chouzetsu Rinjin - Berabow Man E6LJ = Marchen Maze E6ME = Tecmo Bowl E6MJ = Tecmo Bowl E6NE = Solomon's Key E6NJ = Solomon no Kagi E6NP = Solomon's Key E6OJ = Bomb Jack Arcade E6PE = Ninja Gaiden E6PJ = Ninja Ryukenden Arcade E6PP = Ninja Gaiden E6QE = Rygar E6QJ = Argos no Senshi E6QP = Rygar E6SJ = New Rally-X E6VE = Zaxxon 3-D E6VJ = Zaxxon E6VP = Zaxxon E6WE = Golden Axe E6WJ = Golden Axe E6WP = Golden Axe E6XE = Altered Beast E6XP = Altered Beast E6YJ = Space Invaders E6ZE = Starforce E6ZJ = Star Force E6ZP = Star Force E72J = Starblade E73E = Mappy E73J = Mappy E73P = Mappy E74J = Cosmo Gang the Puzzle E75J = Genpei Toumaden E76J = Emeraldia E77J = The Return of Ishtar E78J = Solvalou E79E = Gaplus E79J = Gaplus E79P = Gaplus E7AJ = Grobda E7BJ = Dig Dug II E7CJ = Bosconian E7EJ = Dragon Buster E7FJ = Dragon Saber E7GJ = Dragon Spirit E7HJ = Xevious E7IJ = Finest Hour E7JJ = Knuckle Heads E7KJ = Pac-Mania E7LJ = Cosmo Gang the Video E7MJ = Phelios E7NJ = Rolling Thunder E7OJ = Burning Force E7PJ = Marvel Land E7QJ = Galaga '88 E7RJ = Wonder Momo E7SJ = Assault E7TJ = Hopping Mappy E7UJ = Splatterhouse E7VJ = Cyber Sled E7WJ = Numan Athletics E7XJ = Youkai Douchuki E7YJ = Sky Kid E7ZE = The Tower of Druaga E7ZJ = Druaga no Tou E7ZP = The Tower of Druaga EA2E = Metal Slug 2 EA2J = Metal Slug 2 EA2P = Metal Slug 2 EA3J = Galaxy Fight: Universal Warriors EA4E = Samurai Showdown III EA4J = Samurai Spirits Kibeniro Musouken EA4P = Samurai Shodown III EA5E = Fatal Fury 3: Road to the Final Victory EA5J = Garou Densetsu 3: Road to the Final Victory EA5P = Fatal Fury 3: Road To The Final Victory EA6E = The King of Fighters '96 EA6J = The King of Fighters '96 EA7E = Samurai Shodown IV: Amakusa's Revenge EA7J = Samurai Spirits: Amakusa Kourin EA8E = Ironclad EA8J = Ironclad: Chotetsu Brikinger EA8M = Iron Clad EA9J = Waku Waku 7 EAAE = Fatal Fury EAAJ = Garou Densetsu: Shukumei no Takatai EAAP = Fatal Fury EABE = World Heroes EABJ = World Heroes EABP = World Heroes EACE = Magician Lord EACJ = Magician Lord EACP = Magician Lord EADE = Art of Fighting EADJ = Ryuuko no Ken EADP = Art of Fighting EAEE = Samurai Showdown EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen EAEP = Samurai Showdown EAFE = Blue's Journey EAFJ = Raguy EAFP = Blue's Journey EAGE = The King of Fighters '94 EAGJ = The King of Fighters '94 EAGP = The King of Fighters '94 EAHE = Baseball Stars 2 EAHJ = Baseball Stars 2 EAHP = Baseball Stars 2 EAIE = Top Hunter EAIJ = Top Hunter EAIP = Top Hunter EAJE = Metal Slug EAJJ = Metal Slug EAJP = Metal Slug EAKE = Burning Fight EAKJ = Burning Fight EAKP = Burning Fight EALE = Art of Fighting 2 EALJ = Ryuuko no Ken 2 EALP = Art of Fighting 2 EAME = Ninja Combat EAMJ = Ninja Combat EAMP = Ninja Combat EANE = Fatal Fury 2 EANJ = Garou Densetsu 2: Aratanaru Tatakai EANP = Fatal Fury 2 EAOE = King of the Monsters EAOJ = King of the Monsters EAOP = King of the Monsters EAPE = Ninja Commando EAPJ = Ninja Commando EAPP = Ninja Commando EAQE = WORLD HEROES 2 EAQJ = World Heroes 2 EARE = Neo Turf Masters EARJ = Neo Turf Masters EARP = Neo Turf Masters EASE = Samurai Showdown 2 EASJ = Shin Samurai Spirits Haoumaru Jigokuhen EASP = Samurai Shodown II EATE = WORLD HEROES 2 JET EATJ = World Heroes 2 Jet EAUJ = Twinkle Star Sprites EAVE = The King of Fighters ’95 EAVJ = The King of Fighters '95 EAVP = The King of Fighters '95 EAWE = Fatal Fury Special EAWJ = Garou Densetsu Special EAWP = Fatal Fury Special EAYJ = King of The Monsters 2 EAZE = WORLD HEROES PERFECT EAZJ = World Heroes Perfect EB2E = REAL BOUT FATAL FURY SPECIAL EB2J = Real Bout Garou Densetsu Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB6E = Metal Slug 3 EB6J = Metal Slug 3 EB6P = Metal Slug 3 EB7J = The Super Spy EB8E = SHOCK TROOPERS EB8J = Shock Troopers EB9J = Pulstar EBAE = Magical Drop II EBAJ = Magical Drop 2 EBAP = Magical Drop II EBBE = Fighters History Dynamite EBBJ = Fighter's History Dynamite EBBP = Karnov's Revenge EBCJ = Flying Power Disc EBDE = Magical Drop III EBDJ = Magical Drop III EBDP = Magical Drop 3 EBEE = Street Slam EBEJ = Dunk Dream EBEP = Street Hoop EBFE = Spin Master EBFJ = Miracle Adventure EBFP = Spin master EBGE = The King of Fighters '97 EBGJ = The King of Fighters '97 EBKJ = Last Resort EBLJ = Tsuukai GanGan Koushinkyoku EBMJ = Fire Suplex EBNJ = Fu'un Mokushiroku: Kakutou Sousei EBOJ = Fu'un Super Tag Battle EBPJ = League Bowling EBQE = NINJA MASTER'S EBQJ = Ninja Master's Haou Ninpou-chou EBRJ = Joy Joy Kid EBSE = The Path of the Warrior: Art of Fighting 3 EBSJ = Art of Fighting: Ryuuko no Ken Gaiden EBTJ = Crossed Swords EBUE = 2020 SUPER BASEBALL EBUJ = Super Baseball 2020 EBVJ = Shin-Oh-Ken EBWE = SENGOKU EBWJ = Sengoku Denshou EBXE = SENGOKU 2 EBXJ = Sengoku 2 EBZE = REAL BOUT FATAL FURY EBZJ = Real Bout Garou Densetsu ECAE = Real Bout Fatal Fury 2: The Newcomers ECAJ = Real Bout Garou Densetsu 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECDJ = Stakes Winner: G1 Kanzen Seihahe no Michi ECEE = THE LAST BLADE 2 ECEJ = Bakumatsu Rouman Dai Ni Maku: Gekka no Kenshi ECFJ = Blazing Star ECGE = Shock Troopers: 2nd Squad ECGJ = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECJE = The King of Fighters '99 ECJJ = Metal Slug 4 ECKE = NAM-1975 ECKJ = NAM-1975 ECLJ = Stakes Winner 2 ECMJ = Tokuten Oh: Honoo no Libero ECNE = Sengoku 3 ECNJ = Sengoku Denshou 2001 ENDP01 = New SUPER MARIO BROS. Wii 20 The End For Now EVOP01 = New Super Mario Bros. Wii 0-5 Evolution FA2J = Exerion FA3J = Formation Z FA4J = Devil World FA4P = Devil World FA5J = Fire Emblem: Ankoku Ryu to Hikari no Tsurugi FA6E = Donkey Kong Jr. Math FA6J = Donkey Kong Jr. no Sansuu Asobi FA6P = Donkey Kong Jr. Math FA7E = Yoshi FA7J = Yoshi no Tamago FA7K = Yoshi FA7P = Mario & Yoshi FA8E = Kirby's Adventure FA8F = Kirby's Adventure FA8J = Hoshi no Kirby: Yume no Izumi no Monogatari FA8K = Kirby's Adventure FA8P = Kirby's Adventure FA9E = Zelda II: The Adventure of Link FA9J = The Legend of Zelda 2: Link no Bouken FA9P = Zelda II: The Adventure of Link FAAE = Donkey Kong FAAJ = Donkey Kong FAAK = Donkey Kong FAAP = Donkey Kong FABE = Donkey Kong Jr. FABJ = Donkey Kong Jr. FABP = Donkey Kong Jr. FACE = Pinball FACJ = Pinball FACP = Pinball FADJ = Gomoku Narabe Renju FAFE = Mario Bros. FAFJ = Mario Bros. FAFK = Mario Bros. FAFP = Mario Bros. FAGE = Super Mario Bros. FAGJ = Super Mario Bros. FAGK = Super Mario Bros. FAGP = Super Mario Bros. FAHE = Tennis FAHJ = Tennis FAHP = Tennis FAIE = Soccer FAIJ = Soccer FAIP = Soccer FAJE = Ice Hockey FAJJ = Ice Hockey FAJP = Ice Hockey FAKE = The Legend of Zelda FAKJ = Zelda no Densetsu FAKK = The Legend of Zelda FAKP = The Legend of Zelda FALE = Baseball FALJ = Baseball FALP = Baseball FAME = Wario's Woods FAMJ = Wario no Mori FAMP = Wario's Woods FANE = Urban Champion FANJ = Urban Champion FANK = Urban Champion FANP = Urban Champion FAOE = Solomon's Key FAOJ = Solomon no Kagi FAOP = Solomon's Key FAPE = NES Open Tournament Golf FAPJ = Mario Open Golf FAPK = NES Open Tournament Golf FAPP = NES Open Tournament Golf FAQJ = Ninja Jajamaru-kun FAQL = Ninja JaJaMaru-kun FAQN = Ninja JaJaMaru-kun FARE = Gradius FARJ = Gradius FARP = Gradius FASE = Xevious FASJ = Xevious FASK = Xevious FASP = Xevious FATE = The Legend of Kage FATJ = Kage no Densetsu FAVE = Tecmo Bowl FAVJ = Tecmo Bowl FAWE = Elevator Action FAWJ = Elevator Action FAXE = Pac-Man FAXJ = Pac-Man FAXK = Pac-Man FAXP = Pac-Man FAYJ = Ikki FAZJ = Field Combat FAZK = Downtown Nekketsu Koushinkyoku: Soreyuke Daiundoukai FB2J = Super Mario Bros. 2 FB2L = Super Mario Bros.: The Lost Levels FB2N = Super Mario Bros.: The Lost Levels FB3J = Valkyrie no Bouken: Toki no Kagi Densetsu FB4E = Lunar Pool FB4J = Lunar Ball FB4P = Lunar Pool FB5E = Zanac FB5J = Zanac FB6J = Front Line FB7J = Nuts & Milk FB8J = Challenger FB9J = Pooyan FBAJ = Smash Ping Pong FBAL = Smash Table Tennis FBBE = Mach Rider FBBJ = Mach Rider FBBP = Mach Rider FBCE = Excitebike FBCJ = Excitebike FBCP = Excitebike FBDE = Kid Icarus FBDJ = Hikari Shinwa: Palutena no Kagami FBDK = Kid Icarus FBDP = Kid Icarus FBEE = Ice Climber FBEJ = Ice Climber FBEP = Ice Climber FBHE = Castlevania FBHJ = Akumajou Dracula FBHP = Castlevania FBIE = Punch Out!! Featuring Mr. Dream FBIJ = Punch-Out!! FBIP = Punch-Out!! FBJE = Mighty Bomb Jack FBJJ = Mighty Bomb Jack FBJP = Mighty Bomb Jack FBKE = Teenage Mutant Ninja Turtles FBKJ = Gekikame Ninja Den FBKP = Teenage Mutant Ninja Turles FBLE = Lode Runner FBLJ = Lode Runner FBLM = Lode Runner FBNE = Ninja Gaiden FBNJ = Ninja Ryuukenden FBNM = Ninja Gaiden FBOJ = Gradius II FBQJ = Druaga no Tou FBRE = Galaga FBRJ = Galaga FBRK = Galaga FBRP = Galaga FBSE = Milon's Secret Castle FBSJ = Meikyuu Kumikyoku: Milon no Daibouken FBSM = Milon's Secret Castle FBUE = Adventures of Lolo FBUJ = Adventures of Lolo FBUK = Adventures of Lolo FBUP = Adventures of Lolo FBVJ = Tsuppari Oozumou FBWJ = Joy Mech Fight FBWK = Joy Mech Fight FBXJ = Famicom Wars FBYE = Super Mario Bros. 2 FBYJ = Super Mario USA FBYK = Super Mario USA FBYP = Super Mario Bros. 2 FBZE = Metroid FBZJ = Metroid FBZP = Metroid FC2J = Hanjuku Hero FC3E = Bubble Bobble FC3J = Bubble Bobble FC3K = Bubble Bobble FC3P = Bubble Bobble FC4J = Chack'n Pop FC5J = Ganbare Goemon Karakuki Douchuu FC6E = StarTropics FC6J = Startropics FC6P = StarTropics FC7E = NES Play Action Football FC7J = NES Play Action Football FC8E = Castlevania II Simon's Quest FC8J = Dracula II: Noroi no Fuuin FC8P = Castlevania II: Simon's Quest FC9J = Metal Slader Glory FCAE = Star Soldier FCAJ = Star Soldier FCEJ = Esper Dream FCEU = FCE Ultra GX FCFJ = Yie Ar Kung Fu FCGJ = TwinBee FCHJ = Flappy FCIJ = Volguard 2 FCJJ = SD Gundam World: Gachapon Senshi 2 - Capsule Senki FCNJ = Kekkyoku Nankyoku Daibouken FCNK = Antarctic Adventure FCOJ = Battle City FCPE = Balloon Fight FCPJ = Balloon Fight FCPP = Balloon Fight FCQE = Ninja Gaiden II: The Dark Sword of Chaos FCQJ = Ninja Gaiden Two FCRE = Adventure Island FCRJ = Takahashi Meijin no Boukenjima FCRK = Hudson's Adventure Island FCRP = Adventure Island FCSE = Super C FCSJ = Super Contra FCSP = Probotector II: Return of the Evil Forces FCTE = Mega Man FCTJ = RockMan FCTP = Mega Man FCUE = Volleyball FCUJ = Volleyball FCUP = Volleyball FCVE = Wrecking Crew FCVJ = Wrecking Crew FCVP = Wrecking Crew FCWE = Super Mario Bros. 3 FCWJ = Super Mario Bros. 3 FCWK = Super Mario Bros. 3 FCWP = Super Mario Bros. 3 FCYE = Yoshi’s Cookie FCYJ = Yoshi no Cookie FCYK = Yoshi's Cookie FCYP = Yoshi’s Cookie FCZE = King's Knight FCZJ = Kings Knight FD2E = Double Dragon FD2J = Double Dragon FD2P = Double Dragon FD3J = Nekketsu Koukou Dodgeball-bu Soccer-hen FD3K = Nekketsu Koukou Dodgeball-bu Soccer-hen FD6E = Adventures of Lolo 2 FD6P = Adventures of Lolo 2 FD7E = Mega Man 3 FD7J = RockMan 3: Dr. Wily no Saigo?! FD7P = Mega Man 3 FDAE = Spelunker FDAJ = Spelunker FDAM = Spelunker FDBJ = Famicom Mukashi Banashi: Shin Onigashima - Kouhen FDCJ = Star Luster FDEJ = Mappy FDFE = Bases Loaded FDFJ = Moero!! Pro Yakyuu FDGE = Ghosts'n Goblins FDGJ = Makai-Mura FDGP = Ghosts'n Goblins FDIJ = Bokosuka Wars FDLE = Ninja Gaiden III: The Ancient Ship of Doom FDLJ = Ninja Gaiden Three FDNE = Mega Man 2 FDNJ = RockMan 2 FDNP = Mega Man 2 FDOE = Operation Wolf FDOJ = Operation Wolf FDOP = Operation Wolf FDPE = Blades of Steel FDPP = Blades of Steel FDQE = Double Dribble FDQP = Double Dribble FDRP = Skate or Die FDSJ = Famicom Tantei Club: Kieta Koukeisha (Kouhen) FDTE = Renegade FDTJ = Renegade FDUE = Super Dodge Ball FDUJ = Nekketsu Koukou Dodge Ball Bu FDVE = River City Ransom FDVJ = Downtown Nekketsu Monogatari FDVK = Downtown Nekketsu Monogatari FDVP = Street Gangs FDWJ = Downtown Special: Kunio-kun no Jidaigeki Dayo Zenin Shuugou! FDXJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo (Kouhen) FDYJ = Fire Emblem Gaiden FDZJ = Downtown Nekketsu Koushinkyoku FE5J = Toukaidou Gojuusan Tsugi FE6J = Ninja kun Majyou no Bouken FE7J = Ninja kun Ashura no Shou FE8J = Takeshi no Chousenjou FE9J = Ike Ike! Nekketsu Hockey-bu: Subette Koronde Dairantou FECE = Skykid FECJ = Sky Kid FEDJ = Dig Dug FEDL = Dig Dug FEDN = Dig Dug FEEJ = Tantei Jinguji Saburo: Shinjuku Chuo Koen Satsujin Jiken FEFJ = Detective Saburo Jinguji 2: Yokohama-Ko Renzoku Satsujin Jiken FEGJ = Tantei Jinguuji Saburo - Kikenna Futari - Zenkouhen FEHJ = Tantei Jinguuji Saburo: Toki no Sugiyuku Mama ni FEIE = City Connection FEIJ = City Connection FEIP = City Connection FEJJ = Nazo no Murasame Jou FELJ = Transformers: Convoy no Nazo FEMJ = Bio-Miracle Bokutte Upa FEML = Bio Miracle Bokutte UPA FEMN = Bio Miracle Bokutte UPA FENE = Life Force FENJ = Salamander FEOJ = Zoids: Mokushiroku FEPJ = Getsu Fuuma Den FEQE = Castlevania III: Dracula's Curse FEQJ = Akumajo Densetsu FEQP = Castlevania III Dracula's Curse FERE = Zoda’s Revenge: StarTropics II FERJ = Zoda's Revenge FERM = Startropics II: Zoda's Revenge FESE = Clu Clu Land FESJ = Clu Clu Land FESP = Clu Clu Land FEUE = Donkey Kong 3 FEUJ = Donkey Kong 3 FEUP = Donkey Kong 3 FEVJ = Atlantis no Nazo FEWJ = Dragon Buster FEXJ = Wagyan Land FF2J = Sugoro Quest: Dice no Senshi Tachi FF4E = BurgerTime FF4J = BurgerTime FF5E = Double Dragon II: The Revenge FF5J = Double Dragon 2: The Revenge FF6J = Ganbare Goemon 2 FF7J = Ganbare Goemon Gaiden: Kieta Ougon Kiseru FFAE = Final Fantasy FFAJ = Final Fantasy FFAM = Final Fantasy FFBJ = Final Fantasy II FFDE = Crash 'N The Boys Street Challenge FFDJ = Bikkuri Nekketsu Shin Kiroku! Harukanaru Kin Medal FFEE = A Boy and His Blob: Trouble on Blobolonia FFEP = A Boy and His Blob: Trouble on Blobolonia FFFJ = Final Fantasy III FFGJ = SD Gundam World: Gachapon Senshi - Scramble Wars FFJJ = Metal Max FFKJ = Championship Lode Runner FFLE = Princess Tomato in the Salad Kingdom FFLJ = Salad no Kuni no Tomato Hime FFME = Blaster Master FFMJ = Chou-Wakusei Senki MetaFight FFMP = Blaster Master FFNE = Mega Man 4 FFNJ = RockMan 4: Aratanaru Yabou!! FFNP = Mega Man 4 FFOJ = Moero TwinBee: Cinnamon Hakase o Sukue! FFPB = Ufouria: The Saga FFPJ = Furu Furu Park FFQE = Shadow of the Ninja FFQM = Shadow of the Ninja FFRE = Faxanadu FFRJ = Faxanadu FFRP = Faxanadu FFTJ = Binary Land FFUE = Adventure Island 2 FFUJ = Takahashi Meijin no Bouken Jima II FFUP = Adventure Island 2 FFVE = S.C.A.T. FFVP = S.C.A.T.: Special Cybernetic Attack Team FFWP = Donkey Kong: Original Edition FFXJ = 25th Anniversary SUPER MARIO BROS. FFXP = Super Mario Brothers: 25th Anniversary Exclusive FFYE = Mega Man 5 FFYJ = RockMan 5: Blues no Wana!? FFZJ = Seicross FFZY = Contra FJOR = Kung Fu FMCA = The Goonies G01E01 = Super Smash Bros. Melee: SD Remix G01J01 = Super Smash Bros. Melee: SD Remix G01P01 = Super Smash Bros. Melee: SD Remix G02E01 = Super Smash Bros. Melee: 20XX Training Pack G02J01 = Super Smash Bros. Melee: 20XX Training Pack G02P01 = Super Smash Bros. Melee: 20XX Training Pack G2BE5G = Black & Bruised G2BP7D = Black & Bruised G2CD52 = True Crime: New York City G2CE52 = True Crime: New York City G2CP52 = True Crime: New York City G2CX52 = True Crime: New York City G2FD78 = Tak 2: The Staff of Dreams G2FE78 = Tak 2: The Staff of Dreams G2FF78 = Tak 2: The Staff of Dreams G2FP78 = Tak 2: The Staff of Dreams G2GJB2 = Mobile Suit Gundam: Gundam vs. Z Gundam G2KE8P = NHL 2K3 G2KP8P = NHL 2K3 G2ME01 = Metroid Prime 2: Echoes G2MEAB = Metroid Prime 3 (E3 Beta) G2MJ01 = Metroid Prime 2: Dark Echoes G2MP01 = Metroid Prime 2: Echoes G2OE41 = Prince of Persia: Warrior Within G2OP41 = Prince of Persia: Warrior Within G2PE6U = Spirits And Spells G2RE52 = Shrek SuperSlam G2SJGE = Shikigami no Shiro II G2TE52 = Tony Hawk's Underground 2 G2TP52 = Tony Hawk's Underground 2 G2VE08 = Viewtiful Joe 2 G2VJ08 = Viewtiful Joe 2: Blackfilm no Nazo G2VP08 = Viewtiful Joe 2 G2XE8P = Sonic Gems Collection G2XP8P = Sonic Gems Collection G3AD69 = Lord of the Rings: The Third Age G3AE69 = Lord of the Rings: The Third Age G3AF69 = Lord of the Rings: The Third Age G3AP69 = Lord of the Rings: The Third Age G3AS69 = Lord of the Rings: The Third Age G3BE9G = Serious Sam: Next Encounter G3BP54 = Serious Sam: Next Encounter G3BP9G = Serious Sam: Next Encounter G3DE6L = Carmen Sandiego: The Secret of the Stolen Drums G3DP6L = Carmen Sandiego: The Secret of the Stolen Drums G3DX6L = Carmen Sandiego: The Secret of the Stolen Drums G3EE51 = XGIII: Extreme G Racing G3EJ51 = XGIII: Extreme G Racing G3EP51 = XGIII: Extreme G Racing G3FD69 = TimeSplitters: Future Perfect G3FE69 = TimeSplitters: Future Perfect G3FF69 = TimeSplitters: Future Perfect G3FP69 = TimeSplitters: Future Perfect G3FS69 = TimeSplitters: Future Perfect G3JEAF = Curious George G3LE8P = Super Monkey Ball Adventure G3LP8P = Super Monkey Ball Adventure G3ME41 = Tom Clancy's The Sum of All Fears G3MP41 = The Sum of All Fears G3NJDA = NARUTO Gekitô Ninja Taisen! 3 G3QEA4 = Teenage Mutant Ninja Turtles 3: Mutant Nightmare G3RD52 = Shrek 2 G3RE52 = Shrek 2 G3RF52 = Shrek 2 G3RP52 = Shrek 2 G3SE41 = Bust-A-Move 3000 G3TJ8P = Derby Tsuku 3: Derby Uma O Tsukurou! G3VE69 = NBA Street Vol.3 G3VP69 = NBA Street Vol.3 G3XE52 = X-Men: The Official Game G3XP52 = X-Men: The Official Game G3YP52 = Shrek Super Slam G3YX52 = Shrek Super Slam G3YY52 = Shrek Super Slam G4AEE9 = Harvest Moon: Magical Melody G4BE08 = Resident Evil 4 G4BJ08 = Biohazard 4 G4BP08 = Resident Evil 4 G4CE54 = Charlie and the Chocolate Factory G4CP54 = Charlie and the Chocolate Factory G4FD69 = FIFA 07 G4FE69 = FIFA Soccer 07 G4FF69 = FIFA 07 G4FP69 = FIFA 07 G4GEE9 = Harvest Moon: Another Wonderful Life G4IE52 = Shrek Smash n' Crash Racing G4IP52 = Shrek Smash n' Crash Racing G4ME69 = The Sims Bustin' Out G4MP69 = The Sims: Bustin' Out G4NJDA = NARUTO Gekitô Ninja Taisen! 4 G4OE69 = The Sims 2 : Pets G4OP69 = The Sims 2 : Pets G4QE01 = Super Mario Strikers G4QJ01 = Super Mario Strikers G4QP01 = Mario Smash Football G4SE01 = The Legend of Zelda: Four Swords Adventures G4SJ01 = The Legend of Zelda: Four Swords + G4SP01 = The Legend of Zelda: Four Swords Adventures G4ZE69 = The Sims 2 G4ZP69 = The Sims 2 G5BE4Z = Strike Force Bowling G5DE78 = Scooby-Doo! - Unmasked G5DP78 = Scooby-Doo! - Unmasked G5NEAF = Namco Museum 50th Anniversary G5NP69 = Namco Museum 50th Anniversary G5SE7D = Spyro: A Hero's Tail G5SP7D = Spyro: A Hero's Tail G5TE69 = Tiger Woods PGA Tour 2005 G5TP69 = Tiger Woods PGA Tour 2005 G62E54 = Major League Baseball 2k6 G63E41 = Tom Clancy's Rainbow Six 3 G63P41 = Tom Clancy's Rainbow Six 3 G6FD69 = 2006 FIFA World Cup G6FE69 = 2006 FIFA World Cup G6FF69 = 2006 FIFA World Cup G6FP69 = 2006 FIFA World Cup G6ME69 = Madden NFL 06 G6MP69 = Madden NFL 06 G6NE69 = NBA Live 06 G6NP69 = NBA Live 06 G6QE08 = Mega Man Anniversary Collection G6SE7D = The Legend of Spyro: A New Beginning G6SP7D = The Legend of Spyro: A New Beginning G6TE5G = Teen Titans G6TP5G = Teen Titans G6TP78 = Teen Titans G6WE69 = Tiger Woods PGA Tour 06 G6WP69 = Tiger Woods PGA Tour 06 G7ME69 = Madden NFL 07 G89EAF = Pac-Man World Rally G8FE8P = Virtua Quest G8ME01 = Paper Mario: The Thousand-Year Door G8MJ01 = Paper Mario RPG G8MP01 = Paper Mario: The Thousand-year Door G8OJ18 = Bobobo-bo Bo-bobo Dassutsu! Hajike Royale G8SJAF = Battle Stadium D.O.N G8WE01 = Battalion Wars G8WP01 = Battalion Wars G94E01 = Interactive Multi-Game Demo Disc - August 2002 G95E01 = Interactive Multi-Game Demo Disc - July 2002 G96E01 = Interactive Multi-Game Demo Disc - June 2002 G97E01 = Interactive Multi-Game Demo Disc - March 2002 G97P01 = Interactive Multi Game Demo Disc - September 2002 G97U01 = Interactive Multi-Game Demo Disc - September 2002 G98E01 = Interactive Multi-Game Demo Disc - January 2002 G98P01 = Interactive Multi Game Demo Disc May 2002 G99E01 = Interactive Multi-Game Demo Disc - October 2001 G99P01 = Interactive Multi Game Demo Disc March 2002 G9BEE9 = Mark Davis Pro Bass Challenge G9RD7D = Crash Tag Team Racing G9RE7D = Crash Tag Team Racing G9RF7D = Crash Tag Team Racing G9RP7D = Crash Tag Team Racing G9SE8P = Sonic Heroes G9SJ8P = Sonic Heroes G9SP8P = Sonic Heroes G9TD52 = Shark Tale G9TE52 = Shark Tale G9TF52 = Shark Tale G9TI52 = Shark Tale G9TJC0 = Shark Tale G9TP52 = Shark Tale GA2E51 = All-Star Baseball 2002 GA3E51 = All-Star Baseball 2003 GA4E51 = All-Star Baseball 2004 GA7E70 = Backyard Sports Baseball 2007 GAAJ08 = Disney's Mickey & Minnie Trick & Chase GABEAF = Zatch Bell! Mamodo Fury GACE5H = Army Men: Air Combat The Elite Missions GAEJ01 = Doubutu no Mori e+ GAFE01 = Animal Crossing GAFJ01 = Animal Forest + GAFP01 = Animal Crossing GAFU01 = Animal Crossing GAGP70 = Asterix & Obelix XXL GAHEGG = Alien Hominid GAKE5D = Midway Arcade Treasures GALE01 = Super Smash Bros. Melee GALJ01 = Dairantou Smash Brothers DX GALP01 = Super Smash Bros. Melee GAME5H = Army Men Sarges War GANE7U = Animaniacs: The Great Edgar Hunt GANP7U = Animaniacs: The Great Edgar Hunt GAPE52 = American Chopper 2 - Full Throttle GAQE6S = Aquaman: Battle of Atlantis GARE5H = Army Men: RTS GASE8P = Sonic Adventure DX: Director's Cut (Review Prototype) GASJ8P = Sonic Adventure DX GATE51 = ATV Quad Power Racing 2 GATP51 = ATV Quad Power Racing 2 GAUE08 = Auto Modellista GAUJ08 = Auto Modellista: U.S.-tuned GAVE78 = Avatar The Last Airbender GAVP78 = Avatar: The Legend of Aang GAVY78 = Avatar: The Legend of Aang GAXE5D = The Ant Bully GAYE5D = Midway Arcade Treasures 2 GAZD69 = Harry Potter and the Prisoner of Azkaban GAZE69 = Harry Potter and the Prisoner of Azkaban GAZF69 = Harry Potter and the Prisoner of Azkaban GAZH69 = Harry Potter and the Prisoner of Azkaban GAZI69 = Harry Potter and the Prisoner of Azkaban GAZJ69 = Harry Potter to Azkaban no Shuujin GAZM69 = Harry Potter and the Prisoner of Azkaban GAZP69 = Harry Potter and the Prisoner of Azkaban GAZS69 = Harry Potter and the Prisoner of Azkaban GB2J18 = Bomberman Land 2 GB3E51 = BMX XXX GB3P51 = BMX XXX GB4E51 = Burnout 2: Point of Impact GB4P51 = Burnout 2: Point of Impact GBAE8P = NBA 2K2 GBDE5G = BloodRayne GBDP7D = BloodRayne GBDS7D = BloodRayne GBFE70 = Backyard Football GBGE5G = Bomberman Generation GBGP7D = Bomberman Generation GBHDC8 = Mystic Heroes GBHEC8 = Mystic Heroes GBHFC8 = Mystic Heroes GBHJC8 = Battle Houshin GBHPC8 = Mystic Heroes GBIE08 = Resident Evil GBIJ08 = Biohazard GBIP08 = Resident Evil GBKE70 = Backyard Baseball GBLE52 = Bloody Roar: Primal Fury GBLP52 = Bloody Roar: Primal Fury GBME7F = Batman: Dark Tomorrow GBMP7F = Batman: Dark Tomorrow GBNJC0 = Warrior Blade: Rastan vs. Barbarian GBOE51 = Burnout GBOP51 = Burnout GBQE78 = Rocket Power: Beach Bandits GBQP78 = Rocket Power: Beach Bandits GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTP70 = Beyblade VForce - Super Tournament Battle GBVE41 = Batman: Vengeance GBVP41 = Batman Vengeance GBWD64 = Star Wars Bounty Hunter GBWE64 = Star Wars Bounty Hunter GBWF64 = Star Wars Bounty Hunter GBWP64 = Star Wars Bounty Hunter GBWS64 = Star Wars Bounty Hunter GBXE51 = Dave Mirra Freestyle BMX 2 GBXP51 = Dave Mirra Freestyle BMX 2 GBYE0A = Super Bubble Pop GBZE08 = Resident Evil Zero GBZJ08 = Resident Evil Zero GBZP08 = Resident Evil Zero GC2E9G = Conflict: Desert Storm II: Back to Baghdad GC2P75 = Conflict: Desert Storm II: Back to Baghdad GC3D78 = Scooby-Doo!: Mystery Mayhem GC3E78 = Scooby-Doo!: Mystery Mayhem GC3F78 = Scooby-Doo!: Mystery Mayhem GC3P78 = Scooby-Doo!: Mystery Mayhem GC4JBN = Shinseiki GPX Cyber Formula Road To The EVOLUTION GC5PNK = Cocoto: Kart Racer GC6E01 = Pokémon Colosseum GC6J01 = Pokémon Colosseum GC6P01 = Pokémon Colosseum GC7PNK = Cocoto Platform Jumper GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBP7D = Crash Bandicoot: The Wrath of Cortex GCCE01 = Final Fantasy Crystal Chronicles GCCJ01 = Final Fantasy Crystal Chronicles GCCJGC = Final Fantasy Crystal Chronicles GCCP01 = Final Fantasy Crystal Chronicles GCDE08 = Resident Evil Code: Veronica X GCDJ08 = Biohazard: Code Veronica GCDP08 = Resident Evil Code Veronica X GCEE41 = Tom Clancy's Splinter Cell GCEP41 = Tom Clancy's Splinter Cell GCFE9G = Conflict: Desert Storm GCFP75 = Conflict: Desert Storm GCGE41 = Charlie's Angels GCGP41 = Charlie's Angels GCHE78 = WWE Crush Hour GCHP78 = WWE Crush Hour GCIE69 = The Sims GCIP69 = The Sims GCJE41 = Tom Clancy's Splinter Cell: Chaos Theory GCJP41 = Tom Clancy's Splinter Cell: Chaos Theory GCLE69 = Cel Damage GCLP69 = Cel Damage GCMJA4 = Muscle Champion ~Battle of Muscle Island~ GCNE7D = Crash Nitro Kart GCNP7D = Crash Nitro Kart GCOD52 = Call of Duty: Finest Hour GCOE52 = Call of Duty: Finest Hour GCOF52 = Call of Duty: Finest Hour GCOP52 = Call of Duty: Finest Hour GCPE6S = Casper: Spirit Dimensions GCPP6S = Casper: Spirit Dimensions GCQD7D = Buffy The Vampire Slayer Chaos Bleeds GCQE7D = Buffy the Vampire Slayer: Chaos Bleeds GCQF7D = Buffy The Vampire Slayer Chaos Bleeds GCQP7D = Buffy The Vampire Slayer Chaos Bleeds GCSEAF = Street Racing Syndicate GCSPAF = Street Racing Syndicate GCTE51 = Crazy Taxi GCTP51 = Crazy Taxi GCUE69 = NCAA Football 2005 GCVEEB = Cubivore: Survival of the Fittest GCWP6X = Castleween GCZE69 = Catwoman GCZP69 = Catwoman GD4E6S = Dinotopia - The Sunstone Odyssey GD5JB2 = Dragon Drive: D-Masters Shot GD6EB2 = Digimon Rumble Arena 2 GD6P70 = Digimon Rumble Arena 2 GD7E70 = Dragon Ball Z - Budokai GD7JB2 = Dragon Ball Z - Budokai GD7P70 = Dragon Ball Z - Budokai GD7PB2 = Dragon Ball Z Budokai GD9E69 = Drome Racers GD9P69 = Drome Racers GDAJE5 = Doraemon Minna De Asobou! GDBJ01 = Doubutsu Bancho GDCE51 = Speed Kings GDCP51 = Speed Kings GDDE41 = Disney's Donald Duck: Goin' Quackers GDDP41 = Disney's Donald Duck: Qu@ck Att@ck GDED71 = Baldur's Gate Dark Alliance GDEE71 = Baldur's Gate: Dark Alliance GDEF71 = Baldur's Gate: Dark Alliance GDEP71 = Baldur's Gate Dark Alliance GDFE5D = Defender GDFP5D = Defender: For All Mankind GDGE7H = Dragon's Lair 3D: Return to the Lair GDGP78 = Dragon's Lair 3D Special Edition GDIE7D = Die Hard: Vendetta GDIP7D = Die Hard: Vendetta GDIX7D = Die Hard: Vendetta GDIY7D = Die Hard: Vendetta GDJEB2 = Digimon World 4 GDJJB2 = Digimon World X GDKEA4 = Disney Sports Soccer GDKPA4 = Disney Sports: Football GDLEA4 = Disney Sports Basketball GDLPA4 = Disney Sports: Basketball GDME01 = Disney's Magical Mirror Starring Mickey Mouse GDMJ01 = Disney's Mickey Mouse no Fushigi na Kagami GDMP01 = Disney's Magical Mirror Starring Mickey Mouse GDNJE8 = Dokapon DX GDOP41 = Disney's Donald Duck PK GDPJAF = Mr. Driller: Drill Land GDQE7L = Darkened Skye GDQP6S = Darkened Skye GDREAF = Dead to Rights GDRP69 = Dead to Rights GDRPAF = Dead to Rights GDSE78 = Dark Summit GDSP78 = Dark Summit GDTE69 = Def Jam Vendetta GDTP69 = Def Jam Vendetta GDUJA7 = Duel Masters Nettou Battle GDVE6L = Driven GDVP6L = Driven GDWEA4 = Disney Sports Football GDXEA4 = Disney Sports Skateboarding GDXJA4 = Disney Sports Skateboarding GDXPA4 = Disney Sports Skateboarding GE3E5D = Midway Arcade Treasures 3 GE4E7D = 4x4 Evo 2 GE5EA4 = TMNT: Mutant Melee GE6JA4 = Eisei Meijin VI GE9E5D = Ed, Edd n Eddy: The Mis-Edventures GEAE8P = Skies of Arcadia Legends GEAJ8P = Eternal Arcadia Legends GEAP8P = Skies of Arcadia Legends GEBEA4 = Evolution Snowboarding GEBPA4 = Evolution Snowboarding GEDE01 = Eternal Darkness: Sanity's Requiem GEDJ01 = Eternal Darkness: Manekareta 13-nin GEDP01 = Eternal Darkness: Sanity's Requiem GEJJCM = Jikkyou Powerful Pro Yakyuu 11 Chou Ketteiban GEME7F = Egg Mania: Eggstreme Madness GEMP7F = Eggo Mania GEND69 = James Bond 007: Everything Or Nothing GENE69 = James Bond 007: Everything Or Nothing GENF69 = James Bond 007: Everything Or Nothing GENP69 = 007: Everything Or Nothing GENS69 = James Bond 007: Everything Or Nothing GEOE08 = Capcom vs. SNK 2 EO GEOP08 = Capcom Vs. SNK2 EO: Millionaire Fighting 2001 GESEA4 = Evolution Skateboarding GESPA4 = Evolution Skateboarding GEVJ0M = Shinki Sekai Evolutia GEWE41 = Evolution Worlds GEWP41 = Evolution Worlds GEXE52 = Disney's Extreme Skate Adventure GEXP52 = Disney Extreme Skate Adventure GEXX52 = Disney's Extreme Skate Adventure GEXY52 = Disney Extreme Skate Adventure GEYE69 = Fight Night Round 2 GEYJ69 = Fight Night Round 2 GEYP69 = Fight Night Round 2 GEZE8P = Billy Hatcher and the Giant Egg GEZP8P = Billy Hatcher and the Giant Egg GF2E69 = F1 2002 GF2P69 = F1 2002 GF3E8P = NFL 2K3 GF3P8P = NFL 2K3 GF4E52 = Fantastic 4 GF4F52 = Fantastic Four GF4P52 = Fantastic 4 GF5D69 = FIFA Football 2005 GF5E69 = FIFA Soccer 2005 GF5F69 = FIFA Football 2005 GF5H69 = FIFA Football 2005 GF5I69 = FIFA Football 2005 GF5P69 = FIFA Football 2005 GF5S69 = FIFA Football 2005 GF6D69 = FIFA 06 GF6E69 = FIFA Soccer 06 GF6F69 = FIFA 06 GF6H69 = FIFA 06 GF6P69 = FIFA 06 GF6S69 = FIFA 06 GF7E01 = Star Fox: Assault GF7P01 = Star Fox Assault GF8E69 = FIFA Street GF8P69 = FIFA Street GFAD69 = FIFA Soccer 2003 GFAE69 = FIFA Soccer 2003 GFAF69 = FIFA Soccer 2003 GFAI69 = FIFA Football 2003 GFAJ69 = FIFA Soccer 2003 GFAP69 = FIFA Football 2003 GFAS69 = FIFA Football 2003 GFBE5D = FireBlade GFBP5D = Fireblade GFCP69 = F1 Career Challenge GFDD69 = Freedom Fighters GFDE69 = Freedom Fighters GFDF69 = Freedom Fighters GFDP69 = Freedom Fighters GFEE01 = Fire Emblem: Path of Radiance GFEJ01 = Fire Emblem: Souen no Kiseki GFEP01 = Fire Emblem: Path of Radiance GFFE5D = Freaky Flyers GFGEA4 = Frogger Beyond GFGPA4 = Frogger Beyond GFHP6V = Neighbours From Hell GFIE69 = 2002 FIFA World Cup GFKE69 = Freekstyle GFKP69 = Freekstyle GFMJAF = Family Stadium 2003 GFNJG2 = Finding Nemo GFOE78 = The Fairly OddParents - Shadow Showdown GFPEA4 = Frogger: Ancient Shadow GFQEA4 = Frogger's Adventures: The Rescue GFSD69 = 2002 FIFA World Cup GFSE69 = FIFA Soccer 2002 GFSF69 = 2002 FIFA World Cup GFSJ69 = FIFA Soccer 2002 GFSP69 = 2002 FIFA World Cup GFTE01 = Mario Golf: Toadstool Tour GFTJ01 = Mario Golf: Family Tour GFTP01 = Mario Golf: Toadstool Tour GFUE4Z = Future Tactics: The Uprising GFUP6V = Future Tactics: The Uprising GFVE5D = NFL Blitz Pro GFWE78 = The Fairly OddParents: Breakin' Da Rules GFXE5D = Freestyle Metal X GFYE69 = FIFA Street 2 GFYP69 = FIFA Street 2 GFZE01 = F-Zero GX GFZJ01 = F-Zero GX GFZJ8P = F-Zero AX GFZP01 = F-Zero GX GG1J08 = Donkey Kong: Jungle Fever GG2E4Z = Trigger Man GG3J08 = Donkey Kong: Banana Kingdom GG4E08 = Gotcha Force GG4P08 = Gotcha Force GG5E52 = Cabela's Big Game Hunter 2005 GGAJB2 = Mobile Suit Gundam: The Ace Pilot GGCE0A = Goblin Commander: Unleash The Horde GGCP0A = Goblin Commander: Unleash the Horde GGEE41 = Beyond Good & Evil GGEP41 = Beyond Good And Evil GGEX41 = Beyond Good And Evil GGEY41 = Beyond Good And Evil GGFJ01 = GiFTPiA GGNE5D = The Grim Adventures of Billy and Mandy GGPE01 = Mario Kart Arcade GP GGPE02 = Mario Kart Arcade GP 2 GGPJ02 = Mario Kart Arcade GP 2 GGPJAF = SD Gundam Gashapon Wars GGPJB2 = SD Gundam Gashapon Wars GGRD41 = Tom Clancy's Ghost Recon GGRE41 = Tom Clancy's Ghost Recon GGRP41 = Tom Clancy's Ghost Recon GGSEA4 = Metal Gear Solid: The Twin Snakes GGSJA4 = Metal Gear Solid: The Twin Snakes GGSPA4 = Metal Gear Solid: The Twin Snakes GGTE01 = Chibi-Robo! GGTJ01 = Chibi-Robo! GGTP01 = Chibi-Robo! GGVD78 = Spongebob Squarepants : The Movie GGVE78 = SpongeBob SquarePants: The Movie GGVP78 = Spongebob Squarepants: The Movie GGVX78 = Spongebob Squarepants : The Movie GGYE41 = Tom Clancy's Ghost Recon 2 GGYP41 = Tom Clancy's Ghost Recon 2 GGZE52 = Madagascar GGZH52 = Madagascar GGZI52 = Madagascar GGZJB2 = Madagascar GGZP52 = Madagascar GGZS52 = Madagascar GGZX52 = Madagascar GH2E69 = Need for Speed: Hot Pursuit 2 GH2P69 = Need For Speed Hot Pursuit 2 GH3E69 = NHL 2003 GH3P69 = NHL 2003 GH4D69 = Harry Potter and the Goblet of Fire GH4E69 = Harry Potter and the Goblet of Fire GH4F69 = Harry Potter and the Goblet of Fire GH4H69 = Harry Potter and the Goblet of Fire GH4I69 = Harry Potter and the Goblet of Fire GH4J69 = Harry Potter to Honoo no Goblet GH4M69 = Harry Potter and the Goblet of Fire GH4P69 = Harry Potter and the Goblet of Fire GH4S69 = Harry Potter and the Goblet of Fire GH5D52 = Over The Hedge GH5E52 = Over The Hedge GH5F52 = Over The Hedge GH5P52 = Over The Hedge GH6EAF = Hello Kitty: Roller Rescue GH6P7N = Hello Kitty: Roller Rescue GH7E5D = Happy Feet GH9P52 = Tony Hawk's American Wasteland GHAE08 = Resident Evil 2 GHAJ08 = Biohazard 2 GHAP08 = Resident Evil 2 GHBE7D = The Hobbit GHBP7D = The Hobbit GHCD4Q = Chicken Little GHCE4Q = Chicken Little GHCF4Q = Chicken Little GHCJG9 = Chicken Little GHCP4Q = Chicken Little GHEJ91 = Homeland GHFE4Z = Pinball Hall Of Fame: The Gottlieb Collection GHGEEB = Go! Go! Hypergrind GHKD7D = Hulk GHKE7D = Hulk GHKF7D = Hulk GHKP7D = Hulk GHKS7D = Hulk GHLE69 = Harry Potter and the Sorcerer's Stone GHLJ69 = Harry Potter to Kenja no Ishi GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Sorcerer's Stone GHLY69 = Harry Potter and the Sorcerer's Stone GHLZ69 = Harry Potter and the Sorcerer's Stone GHMD4F = Hitman 2: Silent Assassin GHME4F = Hitman 2: Silent Assassin GHMF4F = Hitman 2: Silent Assassin GHMP4F = Hitman 2: Silent Assassin GHNE71 = Hunter: The Reckoning GHNX71 = Hunter: The Reckoning GHPE52 = Street Hoops GHQE7D = The Simpsons: Hit & Run GHQP7D = The Simpsons: Hit & Run GHRE78 = Hot Wheels: World Race GHRP78 = Hot Wheels: World Race GHSE69 = Harry Potter and the Chamber of Secrets GHSJ69 = Harry Potter to Himitsu no Heya GHSP69 = Harry Potter and the Chamber of Secrets GHSX69 = Harry Potter and the Chamber of Secrets GHSY69 = Harry Potter and the Chamber of Secrets GHTJA4 = Hikaru No Go 3 GHUE7D = The Incredible Hulk: Ultimate Destruction GHUF7D = The Incredible Hulk Ultimate Destruction GHUP7D = The Incredible Hulk Ultimate Destruction GHVE08 = Disney's Hide & Sneak GHVP08 = Disney's Hide & Sneak GHWE78 = Hot Wheels: Velocity X GHWP78 = Hot Wheels: Velocity X GHYE6S = The Haunted Mansion GHZE5D = NHL Hitz Pro GI2J18 = Momotarou Dentetsu 12 GIAE7D = Ice Age 2: The Meltdown GIAP7D = Ice Age 2 : The Meltdown GIBE4F = The Italian Job GIBP4F = The Italian Job GICD78 = The Incredibles GICE78 = The Incredibles GICF78 = The Incredibles GICH78 = The Incredibles GICJG9 = Mr. Inkurediburu GICP78 = The Incredibles GIFJDQ = Generation of Chaos Exceed GIGJ8P = Bleach GC: Tasogare Ni Mamieru Shinigami GIHD78 = Scooby-Doo! Night of 100 Frights GIHE78 = Scooby-Doo! Night of 100 Frights GIHP78 = Scooby-Doo! Night of 100 Frights GIIJ18 = Momotarou Dentetsu 11 GIJEFP = Space Raiders GIJJC0 = Space Raiders GIKE70 = Ikaruga GIKJ70 = Ikaruga GIKP70 = Ikaruga GILE51 = Aggressive Inline GILP51 = Aggressive Inline GINE69 = Batman Begins GINX69 = Batman Begins GIPEAF = Shonen Jump's One Piece: Pirates Carnival GIPJB2 = Shonen Jump's One Piece: Pirates Carnival GIQE78 = The Incredibles: Rise of the Underminer GIQJ8P = The Incredibles: Rise of the Underminer GIQP78 = The Incredibles: Rise of the Underminer GIQX78 = The Incredibles: Rise of the Underminer GIQY78 = The Incredibles: Rise of the Underminer GISE36 = Second Sight GISP36 = Second Sight GITE01 = Geist GITP01 = Geist GIVE4Z = Intellivision Lives GIZE52 = Ty the Tasmanian Tiger 3: Night of the Quinkan GJ2JCM = Jikkyou World Soccer 2002 GJ2PA4 = International Superstar Soccer 2 GJ3PA4 = International Superstar Soccer 3 GJBE18 = Bomberman Jetters GJBE5G = Bomberman Jetters GJBJ18 = Bomberman Jetters GJCE8P = Samurai Jack: The Shadow of Aku GJCP8P = Samurai Jack: The Shadow of Aku GJDE5S = Judge Dredd: Dredd vs. Death GJDX7D = Judge Dredd: Dredd vs. Death GJDY7D = Judge Dredd: Dredd vs. Death GJFE78 = Jimmy Neutron Jet Fusion GJFP78 = Jimmy Neutron Jet Fusion GJKD52 = Star Wars Jedi Knight II: Jedi Outcast GJKE52 = Star Wars Jedi Knight II: Jedi Outcast GJKF52 = Star Wars Jedi Knight II: Jedi Outcast GJKP52 = Star Wars Jedi Knight II: Jedi Outcast GJNE78 = Jimmy Neutron Boy Genius GJNP78 = Jimmy Neutron Boy Genius GJPJCM = Jikkyou Powerful Pro Yakyuu 11 GJSJ18 = Hudson Selection Vol. 2: Star Soldier GJUD78 = Tak and the Power of JuJu GJUE78 = Tak and the Power of Juju GJUF78 = Tak and the Power of JuJu GJUP78 = Tak and the Power of JuJu GJWE78 = Tak: The Great JuJu Challenge GJWP78 = Tak: The Great JuJu Challenge GJXE51 = Vexx GJXP51 = Vexx GJYE78 = Jimmy Neutron: Attack of the Twonkies GJYP78 = Jimmy Neutron Boy Genius: Attack of the Twonkies GJZE52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GJZP52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GK2D52 = Spider-Man 2 GK2E52 = Spider-Man 2 GK2F52 = Spider-Man 2 GK2P52 = Spider-Man 2 GK3E8P = NBA 2K3 GK3P8P = NBA 2K3 GK4E01 = Baten Kaitos Origins GK4J01 = Baten Kaitos II: Hajimari no Tsubasa to Kamigami no Shishi GK5E78 = Monster House GK5P78 = Monster House GK5X78 = Monster House GK6JA4 = Croket Banking No Kikiwosukue GK7E08 = Killer7 GK7J08 = Killer7 GK7P08 = Killer 7 GK9EA4 = Karaoke Revolution Party GKAE8P = Amazing Island GKAJ8P = Kaijuu no Shima: Amazing Island GKBEAF = Baten Kaitos Eternal Wings and the Lost Ocean GKBJAF = Baten Kaitos: Owaranai Tsubasa to Ushinawareta Umi GKBPAF = Baten Kaitos: Eternal Wings and the Lost Ocean GKDJ01 = Kyojin no Doshin GKDP01 = Doshin the Giant GKEJA4 = PAWAFURU PUROYAKYU 12 KETTEIBAN GKFEGG = Chaos Field GKFJ8P = Chaos Field Expanded GKGE01 = Donkey Konga GKGJ01 = Donkey Konga GKGP01 = Donkey Konga GKHEA4 = King Arthur GKHPA4 = King Arthur GKJD78 = Cars GKJE78 = Cars GKJF78 = Cars GKJH78 = Cars GKJJ78 = Cars GKJP78 = Cars GKJS78 = Cars GKKE69 = Knockout Kings 2003 GKKP69 = Knockout Kings 2003 GKLD69 = Lord of the Rings: The Return of the King GKLE69 = Lord of the Rings: The Return of the King GKLF69 = Lord of the Rings: The Return of the King GKLI69 = Lord of the Rings: The Return of the King GKLJ69 = The Lord of the Rings: The Return of the King GKLP69 = Lord of the Rings: The Return of the King GKLS69 = Lord of the Rings: The Return of the King GKME41 = Prince of Persia: The Two Thrones GKMP41 = Prince of Persia: The Two Thrones GKNEB2 = Ultimate Muscle: Legends vs. New Generation GKNJB2 = Kinnikuman Nisei: Shinsedai Choujin vs Densetsu Choujin GKOE70 = Kao The Kangaroo Round 2 GKOP6V = Kao The Kangaroo Round 2 GKPJA4 = Jikkyou Powerful Pro Yakyuu 12 GKQJ01 = Kururin Squash! GKREB2 = Ribbit King GKRPB2 = Ribbit King GKSE52 = Kelly Slater's Pro Surfer GKSP52 = Kelly Slater's Pro Surfer GKSX52 = Kelly Slater's Pro Surfer GKTJA4 = Captain Tsubasa: Ougon Sedai no Chousen GKUE9G = Scaler GKWJ18 = DreamMix TV World Fighters GKXJE7 = Kiwame Mahjong DX2 GKYE01 = Kirby Air Ride GKYJ01 = Kirby Airride GKYP01 = Kirby Air Ride GKZD9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZE9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZF9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP54 = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GL2E51 = Legends of Wrestling 2 GL2P51 = Legends of Wrestling II GL3JE8 = Lupin The Third - Umi Ni Kieta Hihou GL5E4F = LEGO Star Wars: The Video Game GL5P4F = LEGO Star Wars: The Video Game GL5X4F = LEGO Star Wars: The Video Game GL7E64 = LEGO Star Wars II: The Original Trilogy GL7P64 = LEGO Star Wars II: The Original Trilogy GL8D4F = Lara Croft Tomb Raider: Legend GL8E4F = Lara Croft Tomb Raider: Legend GL8F4F = Lara Croft Tomb Raider: Legend GL8P4F = Lara Croft Tomb Raider: Legend GLBE8P = Home Run King GLCD52 = Lemony Snickets A Series Of Unfortunate Events GLCE52 = Lemony Snickets A Series Of Unfortunate Events GLCF52 = Lemony Snickets A Series Of Unfortunate Events GLCP52 = Lemony Snickets A Series Of Unfortunate Events GLCS52 = Lemony Snickets A Series Of Unfortunate Events GLEE08 = Resident Evil 3: Nemesis GLEJ08 = BioHazard 3: Last Escape GLEP08 = Resident Evil 3: Nemesis GLGP41 = Largo Winch : Empire Under Threat GLHEG9 = Flushed Away GLHPG9 = Flushed Away GLIJA7 = Special Jinsei Game GLJJMS = Radirgy GLLE78 = Ratatouille GLLF78 = Ratatouille GLME01 = Luigi's Mansion GLMJ01 = Luigi's Mansion GLMP01 = Luigi's Mansion GLNE69 = Looney Tunes: Back in Action GLNP69 = Looney Tunes: Back in Action GLOD69 = Lord of the Rings: The Two Towers GLOE69 = Lord of the Rings: The Two Towers GLOF69 = Lord of the Rings: The Two Towers GLOI69 = Lord of the Rings: The Two Towers GLOP69 = Lord of the Rings: The Two Towers GLOS69 = Lord of the Rings: The Two Towers GLQE41 = Tom Clancy's Rainbow Six: Lockdown GLQP41 = Tom Clancy's Rainbow Six: Lockdown GLRD64 = Star Wars Rogue Squadron III: Rebel Strike GLRE64 = Star Wars Rogue Squadron III: Rebel Strike GLRF64 = Star Wars Rogue Squadron III: Rebel Strike GLRJ13 = Star Wars Rogue Squadron III: Rebel Strike GLRP64 = Star Wars Rogue Squadron III: Rebel Strike GLSD64 = Gladius GLSE64 = Gladius GLSF64 = Gladius GLSP64 = Gladius GLUE7U = Lotus Challenge GLVD4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVE4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVF4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVP4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLWE51 = Legends of Wrestling GLWP51 = Legends of Wrestling GLXJ29 = Legend of Golfer GLYE69 = NBA Live 2005 GLYP69 = NBA Live 2005 GLZD69 = James Bond 007: From Russia With Love GLZE69 = 007: From Russia With Love GLZF69 = James Bond 007: From Russia With Love GLZP69 = James Bond 007: From Russia With Love GM2E8P = Super Monkey Ball 2 GM2J8P = Super Monkey Ball 2 GM2P8P = Super Monkey Ball 2 GM3E69 = Madden NFL 2003 GM3P69 = Madden NFL 2003 GM4E01 = Mario Kart: Double Dash!! GM4J01 = Mario Kart: Double Dash!! GM4P01 = Mario Kart: Double Dash!! GM5D7D = Metal Arms: Glitch in the System GM5E7D = Metal Arms: Glitch in the System GM5F7D = Metal Arms: Glitch in the System GM5P7D = Metal Arms: Glitch in the System GM6EE9 = Medabots Infinity GM6PE9 = Medabots Infinity GM8E01 = Metroid Prime GM8J01 = Metroid Prime GM8P01 = Metroid Prime GM9E6S = Muppets Party Cruise GMAE51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMAP51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMBE8P = Super Monkey Ball GMBJ8P = Super Monkey Ball GMBP8P = Super Monkey Ball GMDE69 = Madden NFL 2002 GMEE70 = Men In Black II: Alien Escape GMEP70 = Men In Black II: Alien Escape GMFD69 = Medal of Honor: Frontline GMFE69 = Medal of Honor: Frontline GMFF69 = Medal of Honor: Frontline GMFI69 = Medal of Honor: Frontline GMFP69 = Medal of Honor: Frontline GMFS69 = Medal of Honor: Frontline GMHE52 = Mat Hoffmans Pro Bmx 2 GMHF52 = Mat Hoffman's Pro BMX 2 GMHP52 = Mat Hoffman's Pro BMX 2 GMIE70 = Mission Impossible: Operation Surma GMIP70 = Mission Impossible: Operation Surma GMJE41 = Monster Jam: Maximum Destruction GMJP41 = Monster Jam: Maximum Destruction GMKD5D = Mortal Kombat: Deadly Alliance GMKE5D = Mortal Kombat: Deadly Alliance GMKP5D = Mortal Kombat: Deadly Alliance GMLEA4 = ESPN MLS Extra Time 2002 GMNE78 = Monsters, Inc. Scream Arena GMNP78 = Monsters, Inc. Scream Arena GMOP70 = Micro Machines GMPE01 = Mario Party 4 GMPJ01 = Mario Party 4 GMPP01 = Mario Party 4 GMQE70 = Monopoly Party GMQP70 = Monopoly Party GMRE70 = Big Air Freestyle GMRP70 = Big Air Freestyle GMSE01 = Super Mario Sunshine GMSJ01 = Super Mario Sunshine GMSP01 = Super Mario Sunshine GMTE69 = Disney's Party GMTP69 = Disney's Party GMUE5D = Dr. Muto GMWD52 = Minority Report: Everybody Runs GMWE52 = Minority Report: Everybody Runs GMWF52 = Minority Report: Everybody Runs GMWP52 = Minority Report: Everybody Runs GMXE70 = Enter The Matrix GMXJB2 = Enter The Matrix GMXP70 = Enter The Matrix GMYJ8P = Gekitou Pro Yakyuu GMZE41 = Monster 4x4: Masters Of Metal GN2E70 = Nascar: Dirt To Daytona GN3E5D = NHL Hitz 2003 GN3P5D = NHL Hitz 2003 GN4E69 = Nascar 2005: Chase For The Cup GN5E69 = NHL 2005 GN5P69 = NHL 2005 GN6E69 = NHL 06 GN6P69 = NHL 06 GN7E69 = NFL Street 2 GN7P69 = NFL Street 2 GN8E69 = NBA Live 2004 GN8P69 = NBA Live 2004 GN9E70 = Nickelodeon Party Blast GNAE8P = NCAA College Football 2K3 GNBE01 = NBA Courtside 2002 GNBP01 = NBA Courtside 2002 GNCE69 = Nascar Thunder 2003 GNDD69 = Need For Speed Underground GNDE69 = Need For Speed Underground GNDF69 = Need For Speed Underground GNDP69 = Need For Speed Underground GNED78 = Finding Nemo GNEE78 = Finding Nemo GNEF78 = Finding Nemo GNEP78 = Finding Nemo GNES78 = Finding Nemo GNFE5D = NFL Blitz 2002 GNGE69 = NCAA Football 2003 GNHE5D = NHL Hitz 2002 GNHP5D = NHL Hitz 20-02 GNIEA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNIPA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNJEAF = I-Ninja GNKE8P = NCAA College Basketball 2K3 GNLE69 = NBA Live 2003 GNLP69 = NBA Live 2003 GNMEAF = Namco Museum GNNE69 = NFL Street GNNP69 = NFL Street GNOE78 = Nicktoons Unite! GNOX78 = Spongebob Squarepants & Friends: Unite! GNPP70 = Nickelodeon Party Blast GNQE69 = Madden NFL 2005 GNQP69 = Madden NFL 2005 GNREDA = Naruto Clash of Ninja GNRJDA = NARUTO Gekitô Ninja Taisen! GNSE69 = NBA Street GNSJ69 = NBA Street GNUEDA = Naruto Clash of Ninja 2 GNUJDA = Naruto: Gekitou Ninja Taisen! 2 GNUPDA = Naruto: Clash of Ninja - European Version GNVE69 = NHL 2004 GNVP69 = NHL 2004 GNWE69 = Def Jam: Fight For NY GNWP69 = Def Jam: Fight For NY GNXE69 = NCAA Football 2004 GNZE69 = NBA Street Vol.2 GNZP69 = NBA Street Vol.2 GO2D4F = Blood Omen 2: The Legacy of Kain Series GO2E4F = Blood Omen 2: The Legacy of Kain Series GO2F4F = Blood Omen 2: The Legacy of Kain Series GO2P4F = Blood Omen 2: The Legacy of Kain Series GO3E5D = NFL Blitz 2003 GO7D69 = James Bond 007: NightFire GO7E69 = 007: NightFire GO7F69 = James Bond 007: NightFire GO7P69 = James Bond 007: NightFire GO7S69 = James Bond 007: NightFire GOAE52 = Cabela's Outdoor Adventures GOBE4Z = Bad Boys: Miami Takedown GOBP7N = Bad Boys II GOCE5D = RoadKill GODJGA = Ohenro-San: Hosshin no Dojo GOFE7L = Outlaw Golf GOFP6S = Outlaw Golf GOGJB2 = One Piece: Grand Battle! 3 GOME01 = Mario Power Tennis GOMJ01 = Mario Tennis GC GOMP01 = Mario Power Tennis GOND69 = Medal of Honor: European Assault GONE69 = Medal of Honor: European Assault GONF69 = Medal of Honor: European Assault GONJ13 = Medal of Honor: Europa Kyoushuu GONP69 = Medal of Honor: European Assault GOOE01 = Odama GOOJ01 = Odama GOOP01 = Odama GOPEB2 = Shonen Jump's One Piece: Grand Battle GOPJB2 = One Piece: Grand Battle! Rush GOQE82 = One Piece: Grand Adventure GOQEAF = Shonen Jump's One Piece: Grand Adventure GOSE41 = Open Season GOSP41 = Open Season GOSX41 = Open Season GOUPNK = Cocoto Funfair GOWD69 = Need For Speed Most Wanted GOWE69 = Need For Speed Most Wanted GOWF69 = Need For Speed Most Wanted GOWJ69 = Need For Speed Most Wanted GOWP69 = Need For Speed Most Wanted GOYD69 = GoldenEye: Rogue Agent GOYE69 = GoldenEye: Rogue Agent GOYF69 = GoldenEye: Rogue Agent GOYP69 = GoldenEye: Rogue Agent GOYS69 = GoldenEye: Rogue Agent GP2EAF = Pac-Man World 2 GP2P69 = Pac-Man World 2 GP3E78 = The Polar Express GP3P78 = The Polar Express GP4J18 = Hudson Selection Vol. 3: Bonk's Adventure GP5E01 = Mario Party 5 GP5J01 = Mario Party 5 GP5P01 = Mario Party 5 GP6E01 = Mario Party 6 GP6J01 = Mario Party 6 GP6P01 = Mario Party 6 GP7E01 = Mario Party 7 GP7J01 = Mario Party 7 GP7P01 = Mario Party 7 GP8EAF = Pac-Man World 3 GP8P69 = Pac-Man World 3 GP8PAF = Pac-Man World 3 GP9E7F = Rogue Ops GP9P7F = Rogue Ops GPAE01 = Pokémon Channel GPAJ01 = Pokémon Channel GPAP01 = Pokémon Channel GPAU01 = Pokémon Channel GPDE51 = Dakar 2: The World's Ultimate Rally GPDP51 = Dakar 2: The World's Ultimate Rally GPEJ2Q = Pool Edge GPHD52 = Pitfall: The Lost Expedition GPHE52 = Pitfall: The Lost Expedition GPHF52 = Pitfall: The Lost Expedition GPHP52 = Pitfall: The Lost Expedition GPIE01 = Pikmin GPIJ01 = Pikmin GPIP01 = Pikmin GPJJCM = Jikkyou Powerful Pro Yakyuu 10 GPKE41 = Disney's PK Out of the Shadows GPLD9G = Piglet's Big Game GPLE9G = Piglet's Big Game GPLF9G = Piglet's Big Game GPLP9G = Piglet's Big Game GPMEAF = Pac Man Fever GPNE08 = P.N.03 GPNJ08 = P.N.03 GPNP08 = P.N.03 GPOE8P = Phantasy Star Online Episode I & II GPOJ8P = Phantasy Star Online Episode I & II GPOP8P = Phantasy Star Online Episode I&II GPPJCM = Jikkyou Powerful Pro Yakyuu 9 GPQE6L = The Powerpuff Girls: Relish Rampage GPQP6L = The Powerpuff Girls: Relish Rampage GPRE7U = Pool Paradise GPRP7U = Pool Paradise GPSE8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPSJ8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPSP8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPTE41 = Prince of Persia: The Sands of Time GPTP41 = Prince of Persia: The Sands of Time GPUE8P = Puyo Pop Fever GPUP6W = Puyo Pop Fever GPUP8P = Puyo Pop Fever GPVE01 = Pikmin 2 GPVJ01 = Pikmin 2 GPVP01 = Pikmin 2 GPWEAF = Spawn: Armageddon GPWP69 = Spawn: Armageddon GPWPAF = Spawn: Armageddon GPXE01 = Pokémon Box: Ruby & Sapphire GPXJ01 = Pokémon Box: Ruby & Sapphire GPXP01 = Pokémon Box: Ruby & Sapphire GPYJ8P = Puyo Pop Fever GPZJ01 = Nintendo Puzzle Collection GQ4E78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ4F78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ4P78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ8E69 = Madden NFL 08 GQBE51 = NFL Quarterback Club 2002 GQCD52 = Call of Duty 2: Big Red One GQCE52 = Call of Duty 2: Big Red One GQCF52 = Call of Duty 2: Big Red One GQCP52 = Call of Duty 2: Big Red One GQCS52 = Call of Duty 2: Big Red One GQFFFK = Franklin: A Birthday Surprise GQLE9G = Dora The Explorer: Journey To The Purple Planet GQLP54 = Dora The Explorer: Journey to the Purple Planet GQNE5D = Mortal Kombat: Deception GQPE78 = SpongeBob SquarePants: Battle for Bikini Bottom GQPP78 = SpongeBob Squarepants: Battle For Bikini Bottom GQQD78 = SpongeBob SquarePants: Lights, Camera, PANTS! GQQE78 = SpongeBob SquarePants: Lights, Camera, Pants! GQQF78 = SpongeBob SquarePants: Lights, Camera, PANTS! GQQH78 = SpongeBob SquarePants: Lights, Camera, Pants! GQQP78 = SpongeBob SquarePants: Lights, Camera, Pants! GQRJ18 = Hudson Selection Vol. 1: Cubic Lode Runner GQSDAF = Tales of Symphonia GQSEAF = Tales of Symphonia GQSFAF = Tales of Symphonia GQSIAF = Tales of Symphonia GQSPAF = Tales of Symphonia GQSSAF = Tales of Symphonia GQTE4Q = Meet the Robinsons GQWE69 = Harry Potter: Quidditch World Cup GQWJ69 = Harry Potter World Cup GQWP69 = Harry Potter: Quidditch World Cup GQWX69 = Harry Potter: Quidditch World Cup GQXE69 = Madden NFL 2004 GQXP69 = Madden NFL 2004 GQZJ01 = Densetsu no Quiz Ou Ketteisen GR2E52 = Lost Kingdoms 2 GR2JCQ = Rune II: Koruten no Kagi no Himitsu GR2P52 = Lost Kingdoms 2 GR3E5D = Red Card 2003 GR4EMZ = MC Groovz Dance Craze GR4PMZ = MC Groovz Dance Craze GR5J1K = Robocop: Aratanaru Kiki GR6D78 = Bratz: Rock Angelz GR6E78 = Bratz: Rock Angelz GR6F78 = Bratz: Rock Angelz GR6P78 = Bratz: Rock Angelz GR8D69 = Medal of Honor: Rising Sun GR8E69 = Medal of Honor: Rising Sun GR8F69 = Medal of Honor: Rising Sun GR8J69 = Medal of Honor: Rising Sun GR8P69 = Medal of Honor: Rising Sun GR9E6L = Reign of Fire GR9P6L = Reign of Fire GRAE5Z = Rally Championship GRAP75 = Rally Championship GRBE6S = Robotech: Battlecry GRBP6S = Robotech : Battlecry GRDP5D = RedCard GREE08 = Mega Man Network Transmission GREJ08 = RockMan EXE Transmission GREP08 = Mega Man Network Transmission GRFD78 = Red Faction II GRFE78 = Red Faction II GRFF78 = Red Faction II GRFP78 = Red Faction II GRHE41 = Rayman 3: Hoodlum Havoc GRHP41 = Rayman 3: Hoodlum Havoc GRJEAF = R: Racing Evolution GRJJAF = R:Racing Evolution: Life in the Fast Lane GRJP69 = R: Racing GRKE41 = Rocky GRKP7G = Rocky GRLE41 = Pro Rally GRLP41 = Pro Rally GRMJDA = Monopoly: Mezase!! Daifugou Jinsei!! GRNE52 = Lost Kingdoms GRNJCQ = Rune GRNP52 = Lost Kingdoms GROE5Z = Road Trip: The Arcade Edition GROP7J = Gadget Racers GRQE41 = City Racer GRRE78 = Rugrats: Royal Ransom GRRP78 = Rugrats: Royal Ransom GRSEAF = SoulCalibur II GRSJAF = SoulCalibur II GRSPAF = SoulCalibur II GRUE78 = Power Rangers Dino Thunder GRUF78 = Power Rangers Dino Thunder GRUP78 = Power Rangers Dino Thunder GRVEA4 = Rave Master GRWJD9 = Super Robot Taisen GC GRYE41 = Rayman Arena GS2D78 = Summoner: A Goddess Reborn GS2E78 = Summoner: A Goddess Reborn GS2F78 = Summoner: A Goddess Reborn GS2P78 = Summoner: A Goddess Reborn GS3E51 = SX Superstar GS3P51 = SX Superstar GS7E5D = MLB SlugFest 2004 GS8E7D = Spyro: Enter the Dragonfly GS8P7D = Spyro: Enter the Dragonfly GS9E6S = Shrek Extra Large GS9P6S = Shrek Extra Large GSAE01 = Star Fox Adventures GSAJ01 = StarFox Adventures GSAP01 = Star Fox Adventures GSBJ8P = Sonic Adventure 2: Battle GSCE51 = Jeremy McGrath SuperCross World GSCP51 = Jeremy McGrath SuperCross World GSDEAF = Smashing Drive GSEJB2 = Shaman King: Soul Fight GSGE5D = MLB SlugFest 2003 GSHE5D = SpyHunter GSHP5D = SpyHunter GSKE7D = The Scorpion King: Rise of the Akkadian GSKP7D = The Scorpion King : Rise of the Akkadian GSMD52 = Spider-Man GSME52 = Spider-Man: The Movie GSMF52 = Spider-Man GSMP52 = Spider-Man GSNE8P = Sonic Adventure 2: Battle GSNP8P = Sonic Adventure 2: Battle GSOE8P = Sonic Mega Collection GSOJ8P = Sonic Mega Collection GSOP8P = Sonic Mega Collection GSPE69 = The Simpsons: Road Rage GSPP69 = The Simpsons: Road Rage GSQE78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSQP78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSRE7S = Smuggler's Run: Warzones GSRP7S = Smuggler's Run: Warzones GSSE8P = Sega Soccer Slam GSSJ8P = Sega Soccer Slam GSSP70 = Sega Soccer Slam GSSP8P = Sega Soccer Slam GSTE69 = SSX Tricky GSTJ69 = SSX Tricky GSTP69 = SSX Tricky GSUE70 = Superman: Shadow of Apokolips GSUP70 = Superman: Shadow of Apokolips GSVE78 = MX Superfly Featuring Ricky Carmichael GSVP78 = MX Superfly featuring Ricky Carmichael GSWD64 = Star Wars Rogue Leader: Rogue Squadron II GSWE64 = Star Wars Rogue Squadron II: Rogue Leader GSWF64 = Star Wars Rogue Leader: Rogue Squadron II GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = Star Wars Rogue Leader: Rogue Squadron II GSWP64 = Star Wars Rogue Leader: Rogue Squadron II GSWS64 = Star Wars Rogue Leader: Rogue Squadron II GSXD64 = Star Wars: The Clone Wars GSXE64 = Star Wars: The Clone Wars GSXF64 = Star Wars: The Clone Wars GSXJ13 = Star Wars: Clone Sensou GSXP64 = Star Wars: The Clone Wars GSXS64 = Star Wars: The Clone Wars GSYE6S = Shrek: Super Party GSYP6S = Shrek: Super Party GSZP41 = Speed Challenge: Jacques Villeneuve Racing Vision GT2J18 = Tengai Makyou 2: Manji Maru GT3D52 = Tony Hawk's Pro Skater 3 GT3E52 = Tony Hawk's Pro Skater 3 GT3F52 = Tony Hawk's Pro Skater 3 GT3J52 = Tony Hawk's Pro Skater 3 GT3P52 = Tony Hawk's Pro Skater 3 GT4D52 = Tony Hawk's Pro Skater 4 GT4E52 = Tony Hawk's Pro Skater 4 GT4F52 = Tony Hawk's Pro Skater 4 GT4P52 = Tony Hawk's Pro Skater 4 GT5E7N = Starsky & Hutch GT5P7N = Starsky & Hutch GT6E70 = Terminator 3: The Redemption GT6J70 = Terminator 3: The Redemption GT6P70 = Terminator 3: The Redemption GT7E41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7P41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7X41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT8E78 = Big Mutha Truckers GT8P78 = Big Mutha Truckers GT8P7N = Big Mutha Truckers GTAE5S = Top Angler : Real Bass Fishing GTAP5S = Top Angler: Real Bass Fishing GTCJBL = GT Cube GTDE52 = Tony Hawk's Underground GTDP52 = Tony Hawk's Underground GTEE01 = 1080° Avalanche GTEJ01 = 1080° Silver Storm GTEP01 = 1080° Avalanche GTFEA4 = Teenage Mutant Ninja Turtles GTFPA4 = Teenage Mutant Ninja Turtles GTGE60 = Top Gun: Combat Zones GTGP60 = Top Gun: Combat Zones GTHJD9 = Charinko Hero GTIE69 = Tiger Woods PGA Tour 2003 GTIP69 = Tiger Woods PGA Tour 2003 GTJE5L = Tom & Jerry in War of the Whiskers GTKD51 = Turok Evolution GTKE51 = Turok Evolution GTKP51 = Turok Evolution GTLE52 = True Crime: Streets of LA GTLP52 = True Crime: Streets of LA GTLX52 = True Crime: Streets of LA GTMJDA = Mutsu To Nohohon GTNJ18 = Hudson Selection Vol. 4: Adventure Island GTOJAF = Tales of Symphonia GTPP6S = Knights Of The Temple : Infernal Crusade GTQE6S = Tonka: Rescue Patrol GTRE78 = Tetris Worlds GTRP78 = Tetris Worlds GTSE4F = TimeSplitters 2 GTSP4F = TimeSplitters 2 GTUE8G = Tube Slider - The Championship of Future Formula GTVE70 = Transworld Surf: Next Wave GTWE70 = Taz Wanted GTWP70 = Taz Wanted GTYE69 = Ty the Tasmanian Tiger GTYP69 = Ty: The Tasmanian Tiger GTZE41 = Tarzan Untamed GTZP41 = Tarzan Freeride GU2D78 = 2 Games in 1: The Incredibles / Finding Nemo GU2F78 = 2 Games in 1: The Incredibles / Finding Nemo GU3D78 = 2 Games in 1: The SpongeBob SquarePants Movie / Tak 2: The Staff of Dreams GU4Y78 = 2 Games in 1: The SpongeBob SquarePants Movie / Battle for Bikini Bottom GU6E78 = Nicktoons - Battle for Volcano Island GUBE69 = The Urbz: Sims in the City GUBJ13 = The Urbz: Sims In The City GUBP69 = The Urbz: Sims In The City GUCD69 = UEFA Champions League 2004-2005 GUCF69 = UEFA Champions League 2004-2005 GUCP69 = UEFA Champions League 2004-2005 GUFE4Z = Ultimate Fighting Championship Throwdown GUFP4Z = UFC: Throwdown GUGD69 = Need For Speed Underground 2 GUGE69 = Need For Speed Underground 2 GUGF69 = Need For Speed Underground 2 GUGP69 = Need For Speed Underground 2 GUMD52 = Gun GUME52 = Gun GUMP52 = Gun GUNE5D = Gauntlet: Dark Legacy GUNP5D = Gauntlet: Dark Legacy GUPE8P = Shadow the Hedgehog GUPJ8P = Shadow the Hedgehog GUPP8P = Shadow the Hedgehog GUSE7F = Universal Studios Theme Park Adventure GUSP7F = Universal Studios Theme Park Adventure GUTD52 = Ultimate Spider-Man GUTE52 = Ultimate Spider-Man GUTF52 = Ultimate Spider-Man GUTI52 = Ultimate Spider-Man GUTJC0 = Ultimate Spider-Man GUTP52 = Ultimate Spider-Man GUTS52 = Ultimate Spider-Man GUVE51 = Freestyle Street Soccer GUVP51 = Urban Freestyle Soccer GUZE41 = Batman: Rise of Sin Tzu GUZP41 = Batman Rise of Sin Tzu GV3J70 = V-Rally 3 GV3P70 = V-Rally 3 GV4E69 = MVP Baseball 2005 GVCE08 = Viewtiful Joe: Red Hot Rumble GVCJ08 = Viewtiful Joe: Battle Carnival GVCP08 = Viewtiful Joe: Red Hot Rumble GVDE78 = Bratz Forever Diamondz GVDP78 = Bratz Forever Diamondz GVHE4F = Bionicle Heroes GVJE08 = Viewtiful Joe GVJJ08 = Viewtiful Joe GVJP08 = Viewtiful Joe GVKE52 = Cabela's Dangerous Hunts 2 GVLD69 = Marvel Nemesis: Rise of the Imperfects GVLE69 = Marvel Nemesis: Rise of the Imperfects GVLF69 = Marvel Nemesis: Rise of the Imperfects GVLP69 = Marvel Nemesis: Rise of the Imperfects GVMP41 = Super Bust-A-Move All Stars GVOE69 = Bionicle GVOP69 = Bionicle GVPE69 = MVP Baseball 2004 GVRE7H = Grooverider Slot Car Thunder GVS46E = Virtua Striker 4 Ver.2006 GVS46J = Virtua Striker 4 Ver.2006 GVSE8P = Virtua Striker 2002 GVSJ8P = VIRTUA STRIKER 3 ver.2002 GVSJ9P = Virtua Striker 4 Ver.2006 GVSP8P = Virtua Striker 3 Ver. 2002 GVWJDQ = Gakuen Toshi Vara Noir Roses GW2E78 = WWE Day of Reckoning 2 GW2P78 = WWE Day of Reckoning 2 GW3E78 = WWE WrestleMania X8 GW3JG2 = WWE WrestleMania X8 GW3P78 = WWE Wrestlemania X8 GW4E69 = Tiger Woods PGA Tour 2004 GW4P69 = Tiger Woods PGA Tour 2004 GW5D69 = Need For Speed Carbon GW5E69 = Need For Speed Carbon GW5F69 = Need For Speed Carbon GW5P69 = Need For Speed Carbon GW6JEM = Winning Eleven 6 Final Evolution GW7D69 = James Bond 007 in Agent Under Fire GW7E69 = 007: Agent Under Fire GW7F69 = James Bond 007 in Agent Under Fire GW7P69 = James Bond 007 in Agent Under Fire GW8E52 = World Series of Poker GW9E78 = WWE WrestleMania XIX GW9JG2 = WWE WrestleMania XIX GW9P78 = WWE WrestleMania XIX GWAD8P = Spartan Total Warrior GWAE8P = Spartan Total Warrior GWAF8P = Spartan Total Warrior GWAP8P = Spartan Total Warrior GWBE41 = Worms Blast GWBP41 = Worms Blast GWDP6S = World Racing GWEE51 = 18 Wheeler: American Pro Trucker GWEP8P = 18 Wheeler American Pro Trucker GWGE4F = Swingerz Golf GWGJ4F = Wai Wai Golf GWGP4F = Ace Golf GWHE41 = Winnie The Pooh Rumbly Tumbly Adventures GWHP41 = Winnie the Pooh's Rumbly Tumbly Adventure GWJE52 = Tony Hawk's American Wasteland GWKE41 = Peter Jackson's King Kong: The Official Game of the Movie GWKP41 = Peter Jackson's King Kong: The Official Game of the Movie GWLE6L = Wallace & Gromit in Project Zoo GWLP6L = Wallace & Gromit : Project Zoo GWLX6L = Wallace & Gromit in Project Zoo GWME51 = Worms 3D GWMP8P = Worms 3D GWOE5G = Blowout GWPE78 = WWE Day of Reckoning GWPJG2 = WWE Day of Reckoning GWPP78 = WWE Day of Reckoning GWQE52 = Wreckless: The Yakuza Missions GWQP52 = Wreckless: The Yakuza Missions GWRE01 = Wave Race: Blue Storm GWRJ01 = Wave Race: Blue Storm GWRP01 = Wave Race: Blue Storm GWSEA4 = ESPN International Winter Sports 2002 GWSJA4 = Hyper Sports 2002 Winter GWSPA4 = ESPN International Winter Sports GWTEA4 = WTA Tour Tennis GWTJA4 = WTA Tour Tennis GWTPA4 = Pro Tennis WTA Tour GWUE7D = Whirl Tour GWUP7D = Whirl Tour GWVE52 = X2: Wolverine's Revenge GWVP52 = X-Men 2: Wolverine's Revenge GWVX52 = X-Men 2 : Wolverine's Revenge GWWE01 = Wario World GWWJ01 = Wario World GWWP01 = Wario World GWYE41 = Tom Clancy's Splinter Cell: Double Agent GWYX41 = Tom Clancy's Splinter Cell: Double Agent GWZE01 = Dance Dance Revolution: Mario Mix GWZJ01 = Dance Dance Revolution: Mario Mix GWZP01 = Dancing Stage Mario Mix GX2D52 = X-Men Legends II: Rise of Apocalypse GX2E52 = X-Men Legends II: Rise of Apocalypse GX2P52 = X-Men Legends II: Rise of Apocalypse GX2S52 = X-Men Legends II: Rise of Apocalypse GX3E41 = XIII GX3P41 = XIII GX3X41 = XIII GXAE51 = XGRA Extreme G Racing Association GXAP51 = XGRA Extreme G Racing Association GXBE69 = SSX 3 GXBP69 = SSX 3 GXCE01 = Custom Robo GXEE8P = Sonic Riders GXEJ8P = Sonic Riders GXEP8P = Sonic Riders GXFD69 = FIFA Football 2004 GXFE69 = FIFA Soccer 2004 GXFF69 = FIFA Football 2004 GXFI69 = FIFA Football 2004 GXFP69 = FIFA Football 2004 GXFS69 = FIFA Football 2004 GXGE08 = Mega Man X Collection GXLE52 = X-Men Legends GXLP52 = X-Men Legends GXLX52 = X-Men Legends GXME52 = X-Men: Next Dimension GXMF52 = X-Men: Next Dimension GXMP52 = X-Men: Next Dimension GXNE5D = Rampage Total Destruction GXOE69 = SSX on Tour GXOJ69 = SSX On Tour with Mario GXOP69 = SSX On Tour GXOX69 = SSX On Tour GXPE78 = Sphinx and the Cursed Mummy GXPP78 = Sphinx and the Cursed Mummy GXQF41 = Taxi 3 GXRE08 = Mega Man X: Command Mission GXRJ08 = Rockman X: Command Mission GXRP08 = Mega Man X: Command Mission GXSE8P = Sonic Adventure DX: Director's Cut GXSP6W = Sonic Adventure DX : Director's Cut GXSP8P = Sonic Adventure DX: Director's Cut GXUE41 = Surf's Up GXXE01 = Pokémon XD: Gale of Darkness GXXJ01 = Pokemon XD: Yami no Kaze Dark Lugia GXXP01 = Pokémon XD: Gale of Darkness GY2E01 = Donkey Konga 2 GY2J01 = Donkey Konga 2 GY2P01 = Donkey Konga 2 GY3J01 = Donkey Konga 3 GYAD78 = Barnyard GYAE78 = Barnyard GYAP78 = Barnyard GYAX78 = Barnyard GYBE01 = Donkey Kong Jungle Beat GYBJ01 = Donkey Kong Jungle Beat GYBP01 = Donkey Kong Jungle Beat GYFEA4 = Yu-Gi-Oh! The Falsebound Kingdom GYFJA4 = Yu-Gi-Oh! The Falsebound Kingdom GYFPA4 = Yu-Gi-Oh! The Falsebound Kingdom GYKEB2 = Zatch Bell! Mamodo Battles GYMJA4 = Jikkyou Powerful Major League GYQE01 = Mario Superstar Baseball GYQJ01 = Super Mario Stadium Miracle Baseball GYQP01 = Mario Superstar Baseball GYRE41 = TMNT GYRP41 = TMNT GYTE69 = Ty The Tasmanian Tiger 2: Bush Rescue GYTP69 = Ty The Tasmanian Tiger 2: Bush Rescue GYWDE9 = Harvest Moon: A Wonderful Life GYWEE9 = Harvest Moon: A Wonderful Life GYWJ99 = Bokujou Monogatari: Wonderful Life GYWP41 = Harvest Moon: A Wonderful Life GYWPE9 = Harvest Moon: A Wonderful Life GZ2E01 = The Legend of Zelda: Twilight Princess GZ2J01 = Zelda no Densetsu: Twilight Princess GZ2P01 = The Legend of Zelda: Twilight Princess GZ3E70 = Dragon Ball Z: Budokai 2 GZ3P70 = Dragon Ball Z: Budokai 2 GZ3PB2 = Dragon Ball Z Budokai 2 GZCE51 = ZooCube GZCJB0 = ZooCube GZCP51 = Zoocube GZDE70 = Godzilla: Destroy all Monsters Melee GZDJ70 = Godzilla: Kaijuu Dairantou GZDP70 = Godzilla: Destroy all Monsters Melee GZEE70 = Dragon Ball Z: Sagas GZFJBP = Gekituisenki - Zero Fighter GZHJDA = Zoids Full Metal Crash GZLE01 = The Legend of Zelda: The Wind Waker GZLJ01 = Zelda no Densetsu: Kaze no Takuto GZLP01 = The Legend of Zelda: The Wind Waker GZMP7D = Butt-Ugly Martians Zoom or Doom GZOJDA = Zoids vs. GZPE70 = Zapper - One Wicked Cricket! GZPP70 = Zapper: One Wicked Cricket! GZQE7D = Robots GZQJ7D = Robots GZQP7D = Robots GZSE70 = Zoids Battle Legends GZSJDA = Zoids VS. II GZVJDA = Zoids vs. III GZWE01 = Wario Ware Inc.: Mega Party Game$! GZWJ01 = Atumare!! made in wario GZWP01 = Wario Ware Inc.: Mega Party Game$! HAAA = Photo Channel HABA = Wii Shop Channel HABK = Wii Shop Channel HACA = Mii Channel HACK = Mii Channel HADE = Internet Channel HADJ = Internet Channel HADP = Internet Channel HAFE = Forecast Channel HAFJ = Weather Channel HAFP = Weather Channel HAGE = News Channel HAGJ = News Channel HAGP = News Channel HAJE = Everybody Votes Channel HAJJ = Everybody Votes Channel HAJP = Everybody Votes Channel HAPE = Check Mii Out Channel HAPJ = Mii Contest Channel HAPP = Check Mii Out Channel HATE = Nintendo Channel HATJ = Nintendo Channel HATP = Nintendo Channel HAVJ = Today and Tomorrow Fortune Teller HAVK = Today And Tomorrow Channel HAVP = Today and Tomorrow Channel HAWE = Metroid Prime 3 Preview HAWJ = Metroid Prime 3 Preview HAWP = Metroid Prime 3 Preview HAYA = Photo Channel HAYK = Photo Channel HBNJ = TV Friend Channel HBWE01 = New Super Mario Bros. Wii: Hellboy Edition HC3J = USB Flash Optimization HCAJ = Band Bros. DX Speaker Channel HCAP = Jam with the Band Live HCBJ = Photo Channel 1.0 Restore Program HCDJ = Digicam Print Channel HCFE = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Wii Speak Channel HCGE = Wii + Internet HCGJ = Wii Plus Internet HCGP = Wii Plus Internet HCHJ = Food Service HCIJ = Wii no ma HCJP = BBC iPlayer Channel HCLE = Netflix HCLP = Netflix HCMP = Kirby TV HCQE = Hulu Plus HCQJ = Hulu HCRE = The Legend of Zelda: Skyward Sword Save Data Update Channel HCRJ = The Legend of Zelda Skyward Sword Update HCRP = The Legend of Zelda Skyward Sword Update HCSE = Wii U Transfer Tool HCSJ = Wii U Transfer Tool HCSP = Wii U Transfer Tool HCTE = Wii System Transfer HCTJ = Wii System Transfer HCTP = Wii System Transfer HCUE = Wii Menu Electronic Manual HCUJ = Wii Menu Electronic Manual HCUP = Wii Menu Electronic Manual HCVA = Wii U Menu HCWE = Amazon Instant Video HCWP = Amazon Instant Video HCXE = YouTube HCXJ = YouTube HCXP = YouTube HCZE = Wii System Transfer HWFL = HackWiiFlow JA2J = Shin Megami Tensei JA3J = Kamaitachi no Yoru JA4E = Super Ghouls 'n Ghosts JA4J = Chou-Makai-Mura JA4P = Super Ghouls'n Ghosts JA5J = Heracles no Eikou III: Kamigami no Chinmoku JA6E = Zombies Ate My Neighbors JA6J = Zombies Ate My Neighbors JA6P = Zombies JA7D = ActRaiser JA7E = ActRaiser JA7F = ActRaiser JA7J = Actraiser JA7P = ActRaiser JA8E = Final Fight JA8J = Final Fight JA8P = Final Fight JAAE = Super Mario World JAAJ = Super Mario World JAAK = Super Mario World JAAP = Super Mario World JABJ = Mario no Super Picross JABL = Mario’s Super Picross JACE = F-Zero JACJ = F-Zero JACK = F-Zero JACP = F-Zero JADD = The Legend of Zelda: A Link to the Past JADE = The Legend of Zelda: A Link to the Past JADF = The Legend of Zelda: A Link to the Past JADJ = Zelda no Densetsu: Kamigami no Triforce JADK = The Legend of Zelda: A Link to the Past JADP = The Legend of Zelda: A Link to the Past JAEE = Donkey Kong Country JAEJ = Super Donkey Kong JAEK = Donkey Kong Country JAEP = Donkey Kong Country JAFD = SimCity JAFE = Sim City JAFF = SimCity JAFJ = SimCity JAFP = SimCity JAGJ = Fire Emblem: Monshou no Nazo JAHE = R-Type III: The 3rd Lightning JAHJ = R-Type III: The Third Lightning JAHK = R-Type III: The Third Lightning JAHP = R-TYPE III : The Third Lightning JAIE = Super Castlevania IV JAIJ = Akumajou Dracula JAIP = Super Castlevania IV JAJE = Street Fighter II: The World Warrior JAJJ = Street Fighter II JAJP = Street Fighter II: The World Warrior JALE = Contra III: The Alien Wars JALJ = Contra Spirits JALK = Contra III: The Alien Wars JALP = Super Probotector: Alien Rebels JAME = Gradius III JAMJ = Gradius III JAMK = Gradius III JAMM = Gradius III JAPJ = Fire Emblem: Seisen no Keifu JAUJ = Famicom Bunko: Hajimari no Mori JAVE = Super Metroid JAVJ = Super Metroid JAVK = Super Metroid JAVP = Super Metroid JAWE = Romance of the Three Kingdoms IV: Wall of Fire JAWJ = San Goku Shi IV JAZD = The Legend of the Mystical Ninja JAZE = The Legend of The Mystical Ninja JAZJ = Ganbare Goemon: Yukihime Kyuushutsu Emaki JAZP = The Legend of the Mystical Ninja JB3D = Harvest Moon JB3E = Harvest Moon JB3J = Harvest Moon JB3P = Harvest Moon JB5J = Super Gussun Oyoyo JB6J = Treasure Hunter G JB7J = Front Mission: Gun Hazard JB9J = Gakkou de atta Kowai Hanashi JBAE = Metal Marines JBAJ = Militia JBBE = Super Street Fighter II: The New Challengers JBBJ = Super Street Fighter II: The New Challengers JBBP = Super Street Fighter II: The New Challengers JBCE = Kirby's Dream Course JBCJ = Kirby Bowl JBCK = Kirby's Dream Course JBCP = Kirby's Dream Course JBDD = Donkey Kong Country 2: Diddy's Kong-Quest JBDE = Donkey Kong Country 2: Diddy's Kong Quest JBDJ = Super Donkey Kong 2: Dixie & Diddy JBDK = Donkey Kong Country 2: Diddy Kong's Quest JBDP = Donkey Kong Country 2: Diddy's Kong-Quest JBEJ = Magical Drop JBFJ = Otogirisou JBGJ = Mystery Dungeon: Shiren the Wanderer JBHJ = Heracles no Eikou IV: Kamigami-kara no Okurimono JBIE = Street Fighter II Turbo: Hyper Fighting JBIJ = Street Fighter II Turbo: Hyper Fighting JBIP = Street Fighter II Turbo: Hyper Fighting JBKE = Breath of Fire II JBKJ = Breath of Fire II: Shimei no Ko JBKP = Breath of Fire II JBLE = Pac-Attack JBLJ = Cosmo Gang the Puzzle JBLP = Pac-Attack JBNE = Darius Twin JBNJ = Darius Twin JBOJ = Panel de Pon JBOK = Panel de Pon JBPE = Donkey Kong Country 3: Dixie Kong's Double Trouble JBPJ = Super Donkey Kong 3: Nazo no Krems Shima JBPP = Donkey Kong Country 3: Dixie Kong’s Double Trouble JBQE = Kirby's Avalanche JBQJ = Kirby's Avalanche JBQP = Kirby's Ghost Trap JBRE = Vegas Stakes JBRJ = Vegas Stakes JBRP = Vegas Stakes JBSE = Axelay JBSJ = Axelay JBSP = Axelay JBTE = Super Turrican JBTJ = Super Turrican JBTP = Super Turrican JBUE = Super Turrican 2 JBUJ = Super Turrican Two JBVJ = Der Langrisser JBWE = Cybernator JBWJ = Assault Suits Valken JBWK = Cybernator JBWP = Cybernator JBYE = Super R-Type JBYJ = Super R-Type JBYK = Super R-Type JBYP = Super R-Type JC2J = Taikou Risshiden JC3J = Bahamut Lagoon JC4E = Indiana Jones' Greatest Adventures JC4J = Indiana Jones Great Adventure JC4P = Indiana Jones' Greatest Adventures JC5J = Romancing SaGa JC6J = Romancing SaGa 2 JC7E = The Combatribes JC7J = The Combatribes JC8E = Final Fantasy II JC8J = Final Fantasy IV JC8M = Final Fantasy II JC8P = Final Fantasy 2 JC9J = Final Fantasy V JCAJ = DoReMi Fantasy: Milon no DokiDoki Daibouken JCAL = DoReMi Fantasy - Milon’s DokiDoki Adventure JCAN = DoReMi Fantasy: Milon's DokiDoki Adventure JCBE = Super Mario RPG: Legend of the Seven Stars JCBJ = Super Mario RPG JCBM = Super Mario RPG: Legend of the Seven Stars JCCE = Kirby Super Star JCCJ = Hoshi no Kirby Super Deluxe JCCP = Kirby’s Fun Pak JCDE = Kirby's Dream Land 3 JCDJ = Hoshi no Kirby 3 JCDM = Kirby’s Dream Land 3 JCEJ = Fire Emblem: Thracia 776 JCGJ = Ganbare Goemon 2: Kiteretsu Shougun Magginesu JCHJ = Ganbare Goemon 3 JCIJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo JCJE = Super Punch-Out!! JCJJ = Super Punch-Out!! JCJP = Super Punch Out!! JCKE = Space Invaders: The Original Game JCKJ = Space Invaders: The Original Game JCKP = Space Invaders -The Original Game JCLD = Secret of Mana JCLE = Secret of Mana JCLF = Secret of Mana JCLJ = Seiken Densetsu 2 JCLP = Secret of Mana JCMJ = Super Wagyan Land JCNE = Prince of Persia JCNJ = Prince of Persia JCTE = Ogre Battle: The March of the Black Queen JCTJ = Densetsu no Ogre Battle: The March of the Black Queen JCTM = Ogre Battle: The March of the Black Queen JCUE = PilotWings JCUJ = Tactics Ogre: Let Us Cling Together JCVE = Pilotwings JCVJ = Pilotwings JCVP = Pilotwings JCWE = Super Mario Kart JCWJ = Super Mario Kart JCWP = Super Mario Kart JCXE = Nobunaga's Ambition JCXJ = Super Nobunaga no Yabou: Zengokuban JCYE = Uncharted Waters: New Horizons JCYJ = Daikoukai Jidai II JCZE = Genghis Khan II: Clan of the Gray Wolf JCZJ = Super Aoki Ookami to Shiroki Meshika: Genchou Hishi JD2J = Bishoujo Janshi Suchie-Pai JD3E = Super E.D.F. Earth Defense Force JD3J = Super E.D.F. Earth Defense Force JD3P = Super EDF Earth Defense Force JD4E = Rival Turf! JD4J = Rushing Beat JD4P = Rival Turf! JD5E = Brawl Brothers JD5J = Rushing Beat Ran: Fukusei Toshi JD5P = Brawl Brothers JD6E = The Ignition Factor JD6J = Fire Fighting JD6M = The Ignition Factor JD7E = Super Adventure Island JD7J = Takahashi Meijin no Daibouken Jima JD7P = Super Adventure Island JD8E = Super Adventure Island II JD8J = Takahashi Meijin no Daibouken Jima II JD8P = Super Adventure Island II JD9E = Super Bonk JD9J = Chou-Genjin JD9M = Super Bonk JDAE = Final Fantasy III JDAJ = Final Fantasy VI JDAP = Final Fantasy III JDBE = Super Bomberman 3 JDCE = Street Fighter Alpha 2 JDCJ = Street Fighter Two Alpha JDCP = Street Fighter Alpha 2 JDDE = Final Fight 2 JDDJ = Final Fight Two JDDP = Final Fight 2 JDEE = Final Fight 3 JDEJ = Final Fight Tough JDEP = Final Fight 3 JDFJ = Sutte Hakkun JDHJ = Super Famicom Wars JDIE = Super Star Wars JDIJ = Super Star Wars JDIP = Super Star Wars JDJE = Super Star Wars: The Empire Strikes Back JDJJ = Super Star Wars The Empire Strikes Back JDJP = Super Star Wars: The Empire Strikes Back JDKJ = Metal Max 2 JDLE = Super Star Wars: Return of the Jedi JDLJ = Super Star Wars Return Of The Jedi JDLP = Super Star Wars: Return of the Jedi JDMJ = Kirby no Kirakira Kizzu JDNE = Ghoul Patrol JDNJ = Ghoul Patrol JDOJ = Heisei Shin Onigashima: Zenpen JDPJ = Heisei Shin Onigashima: Kouhen JDQJ = Romancing Sa-Ga 3 JDRJ = Clock Tower JDSJ = Shin Megami Tensei II JDTJ = Shin Megami Tensei if... JDUJ = Albert Odyssey JDVE = Wild Guns JDVJ = Wild Guns JDVP = Wild Guns JDWE = Aero the Acrobat JDWJ = Aero The Acrobat JDWP = Aero The Acrobat JDXE = Aero the Acrobat 2 JDXJ = Aero The Acrobat Two JDXP = Aero the Acrobat 2 JDYJ = Rudra no Hihou JDZE = Final Fantasy Mystic Quest JDZJ = Final Fantasy USA: Mystic Quest JEAE = Natsume Championship Wrestling JEAJ = Natsume Championship Wrestling JEAP = Natsume Championship Wrestling JEBE = Mega Man X JEBJ = RockMan X JECE = Chrono Trigger JECJ = Chrono Trigger JECM = Chrono Trigger JECP = Chrono Trigger JEDJ = Kunio-Kun no Dodge Ball Dayo Zenin Shuugo! JEEJ = Majin Tensei JEFJ = Majin Tensei II: Spiral Nemesis JEGJ = Gouketuji Ichizoku JEHE = Mega Man X2 JEHJ = RockMan X2 JEIJ = Metal Max Returns JEJJ = Tsukikomori JEKJ = Kyuyaku Megami Tensei: Megami Tensei I・II JODI = Homebrew Channel JOUE01 = New Super Mario Bros. Wii 10 The Journey KMCP06 = Wiimms MKW Fun 2010-12.pal+ KMKE01 = Kustom Mario Kart Wii KMNE03 = Newer Super Mario Bros. Wii KMNE10 = Koopa Country KMNJ03 = Newer Super Mario Bros. Wii KMNP03 = Newer Super Mario Bros. Wii KMNP10 = Koopa Country L40P4Q = Sing IT: Pop hits, los 40 principales LAAJ = Hokuto no Ken LABE = Fantasy Zone LABJ = Fantasy Zone LABP = Fantasy Zone LACE = Wonder Boy LACJ = Super Wonder Boy LACP = Wonder Boy LADE = Phantasy Star LADJ = Phantasy Star LADP = Phantasy Star LAEE = Alex Kidd in Miracle World LAEJ = Alex Kidd in Miracle World LAEP = Alex Kidd in Miracle World LAFJ = Ashura LAFN = Secret Commando LAFP = Secret Command LAGE = Sonic The Hedgehog LAGJ = Sonic the Hedgehog LAGP = Sonic The Hedgehog LAHE = Space Harrier LAHJ = Space Harrier LAHP = Space Harrier LAIE = Enduro Racer LAIJ = Enduro Racer LAIP = Enduro Racer LAJE = Sonic The Hedgehog 2 LAJJ = Sonic the Hedgehog 2 LAJP = Sonic The Hedgehog 2 LAKE = Wonder Boy in Monster Land LAKJ = Super Wonder Boy: Monster World LAKP = Wonder Boy in Monster Land LALE = Fantasy Zone II: The Tears of OPA-OPA LALJ = Fantasy Zone II: The Tears of Opa-Opa LALP = Fantasy Zone II LAME = Sonic Chaos LAMJ = Sonic Chaos LAMP = Sonic Chaos LANE = Alex Kidd: The Lost Stars LANJ = Alex Kidd: The Lost Stars LANP = Alex Kidd: The Lost Stars LAOE = R-Type LAOJ = R-Type LAOP = R-Type LAPE = Wonder Boy III: The Dragon's Trap LAPP = Wonder Boy III: The Dragon's Trap LAQE = Alex Kidd in Shinobi World LAQP = Alex Kidd in Shinobi World LULZ = Homebrew Channel MA2J = Dyna Brothers MA3E = Puyo Puyo 2 MA3J = Puyo Puyo Tsuu MA3L = Puyo Puyo 2 MA4J = Bahamut Senki MA5J = Rent A Hero MA6E = Streets of Rage 2 MA6J = Bare Knuckle II: Shitou no Chinkon Uta MA6P = Streets of Rage 2 MA7E = Shining in the Darkness MA7J = Shining and the Darkness MA7P = Shining in the Darkness MA8E = Ecco: The Tides of Time MA8J = Ecco the Dolphin 2 MA8P = Ecco: The Tides of Time MA9J = The Hybrid Front MAAE = Altered Beast MAAJ = Juuouki MAAP = Altered Beast MABE = Columns MABJ = Columns MABP = Columns MACE = Dr. Robotnik's Mean Bean Machine MACJ = Puyo Puyo MACP = Dr. Robotnik's Mean Bean Machine MADE = Ecco the Dolphin MADJ = Ecco the Dolphin MADP = Ecco the Dolphin MAEE = Golden Axe MAEJ = Golden Axe MAEP = Golden Axe MAFE = Gunstar Heroes MAFJ = Gunstar Heroes MAFP = Gunstar Heroes MAGE = Ristar MAGJ = Ristar MAGP = Ristar MAHE = Sonic the Hedgehog MAHJ = Sonic the Hedgehog MAHP = Sonic the Hedgehog MAIE = Space Harrier II MAIJ = Space Harrier II MAIP = Space Harrier II MAJE = Toe Jam & Earl MAJJ = ToeJam & Earl MAJP = ToeJam & Earl MAKE = Shadow Dancer: The Secret of Shinobi MAKJ = Shadow Dancer: The Secret of Shinobi MAKP = Shadow Dancer: The Secret of Shinobi MALE = Bonanza Bros. MALJ = Bonanza Bros. MALP = Bonanza Bros. MAME = Sword of Vermillion MAMJ = Vermilion MAMP = Sword of Vermilion MANE = Gain Ground MANJ = Gain Ground MANP = Gain Ground MAOE = Bio-Hazard Battle MAOJ = Crying: Aseimei Sensou MAOP = Bio-Hazard Battle MAPE = Comix Zone MAPJ = Comix Zone MAPP = Comix Zone MAQE = Streets of Rage MAQJ = Bare Knuckle: Ikari no Tekken MAQP = Streets of Rage MARE = Beyond Oasis MARJ = The Story of Thor: Hikari o Tsugu Mono MARP = The Story of Thor MASE = Vectorman MASJ = Vectorman MASP = Vectorman MATE = Sonic Spinball MATJ = Sonic Spinball MATP = Sonic Spinball MAUJ = Puzzle & Action: Tant-R MAVE = Wonder Boy in Monster World MAVJ = Wonder Boy V: Monster World III MAVP = Wonder Boy In Monster World MAWE = Virtua Fighter 2 MAWJ = Virtua Fighter 2 MAWP = Virtua Fighter 2 MAXE = Alex Kidd In The Enchanted Castle MAXJ = Alex Kidd: Tenkuu Mashiro MAXP = Alex Kidd In The Enchanted Castle MAYE = Alien Storm MAYJ = Alien Storm MAYP = Alien Storm MAZE = ToeJam & Earl in Panic on Funkotron MAZP = ToeJam & Earl in Panic on Funkotron MB2J = Langrisser MB3E = Monster World IV MB3J = Monster World IV MB4J = Party Quiz Mega Q MB5J = Rangurissah II MB6E = Shining Force II MB6J = Shining Force II: Inishie no Fuuin MB6P = Shining Force II MB7E = Mega Turrican MB7P = Mega Turrican MB8E = Phantasy Star II MB8J = Phantasy Star II: Kaerazaru Toki no Owari ni MB8P = Phantasy Star II MB9J = Pepenga Pengo MBAJ = Pulseman MBAL = Pulseman MBAN = Pulseman MBBE = Sonic the Hedgehog 2 MBBJ = Sonic the Hedgehog 2 MBBP = Sonic the Hedgehog 2 MBCE = Kid Chameleon MBCJ = Chameleon Kid MBCP = Kid Chameleon MBDE = Golden Axe II MBDJ = Golden Axe II MBDP = Golden Axe II MBEE = Shining Force MBEJ = Shining Force: Kamigami no Isan MBEP = Shining Force MBFE = Shinobi III: Return of the Ninja Master MBFJ = The Super Soldier II MBFP = Shinobi III: Return of the Ninja master MBGE = Dynamite Headdy MBGJ = Dynamite Headdy MBGP = Dynamite Headdy MBHJ = Puzzle & Action: Ichidant-R MBIE = Landstalker: The Treasures of King Nole MBIJ = LandStalker: Koutei no Zaihou MBIP = Landstalker: The Treasures of King Nole MBJE = Ghouls'n Ghosts MBJJ = Dai Makai-Mura MBJP = Ghouls'n Ghosts MBKJ = Crack Down MBKP = Crack Down MBLJ = ESWAT: Cyber Police MBLP = ESWAT City Under Siege MBME = Sonic the Hedgehog 3 MBMJ = Sonic the Hedgehog 3 MBMP = Sonic the Hedgehog 3 MBNJ = Chelnov MBOE = Golden Axe III MBOJ = Golden Axe III MBOP = Golden Axe III MBPE = Super Thunder Blade MBPJ = Super Thunder Blade MBPP = Super Thunder Blade MBQE = Streets of Rage 3 MBQJ = Bare Knuckle III MBQP = Streets of Rage 3 MBRE = Rolling Thunder 2 MBRJ = Rolling Thunder 2 MBRP = Rolling Thunder 2 MBSJ = Dyna Brothers 2 Special MBTE = Alien Soldier MBTJ = Alien Soldier MBTP = Alien Soldier MBUE = Sonic 3D: Blast MBUJ = Sonic 3D Blast MBUP = Sonic 3D: Flickies' Island MBVJ = Jusu Kihei Leynos MBWE = Columns III: Revenge of Columns MBWJ = Columns III: Taiketsu! Columns World MBWM = Columns III: Revenge of Columns MBXE = Ecco Jr. MBXJ = Ecco Jr. MBXM = Ecco Jr. MBYE = Light Crusader MBYJ = Light Crusader MBYP = Light Crusader MBZE = Eternal Champions MBZJ = Eternal Champions MBZP = Eternal Champions MC2E = Earthworm Jim 2 MC2J = Earthworm Jim 2 MC2P = Earthworm Jim 2 MC3E = Super Street Fighter II: The New Challengers MC3J = Super Street Fighter 2: The New Challengers MC3P = Super Street Fighter II: The New Challengers MC4E = Strider MC4J = Strider Hiryu MCAJ = Gley Lancer MCAL = Gley Lancer MCAN = Gley Lancer MCBE = Powerball MCBJ = Wrestleball MCCE = Phantasy Star III MCCJ = Toki no Keishousha: Phantasy Star III MCCP = Phantasy Star III: Generations of Doom MCDE = Sonic & Knuckles MCDJ = Sonic & Knuckles MCDP = Sonic & Knuckles MCEJ = Super Fantasy Zone MCEN = Super Fantasy Zone MCEP = Super Fantasy Zone MCGE = Forgotten Worlds MCGJ = Forgotten Worlds MCGP = Forgotten Worlds MCHE = M.U.S.H.A. MCHJ = Musha Aleste MCHM = MUSHA : Metallic Uniframe Super Hybrid Armor MCIJ = Gynoug MCJE = Splatterhouse 2 MCJJ = Splatterhouse Part 2 MCJP = Splatterhouse 2 MCKE = Phantasy Star IV MCKJ = Phantasy Star: Sennenki no Owari ni MCKP = Phantasy Star IV MCLE = Street Fighter II': Special Champion Edition MCLJ = Street Fighter II' Plus: Champion Edition MCLP = Street Fighter II’: Special Champion Edition MCMJ = Lord Monarch: Tokoton Sentou Densetsu MCNJ = Hokuto no Ken: Shin Seikimatu Kyuseisyu Densetsu MCOJ = Sorcerian MCPE = Earthworm Jim MCPJ = Earthworm Jim MCPP = Earthworm Jim MCQE = Boogerman: A Pick and Flick Adventure MCQP = Boogerman - A Pick and Flick Adventure MCRE = Wolf of the Battlefield: MERCS MCRJ = Senjou no Ookami II MCRP = MERCS: Wolf of the Battlefield MCSJ = Wonder Boy III: Monster Lair MCSN = Wonder Boy III: Monster Lair MCSP = Wonder Boy III: Monster Lair MCTE = Clay Fighter MCTP = Clay Fighter MCUJ = Dragon Slayer: The Legend of Heroes MCVE = Pitfall: The Mayan Adventure MCVJ = Pitfall: The Mayan Adventure MCVP = Pitfall: The Mayan Adventure MCWE = Galaxy Force II MCWJ = Galaxy Force II MCWP = Galaxy Force II MCXJ = Dragon Slayer: The Legend of Heroes MCYE = The Revenge of Shinobi MCYJ = The Super Shinobi MCYP = The Revenge of Shinobi MCZE = Shanghai II: Dragon's Eye MCZP = Shanghai II Dragon's Eye MDUE01 = Mario Kart: Track Grand Priix MECPSI = SingItStar Mecano METE01 = New Super Metroid Bros. Wii MIJPSI = SingItStar Michael Jackson MILPSI = Sing IT Star: Miliki MKDE02 = Darky Kart Wii MKTE01 = Mario Kart Wii Teknik MKWP01 = Super Mario Kart for Wii MMRE01 = D.U. Super Mario Bros 2.1 Madness Returns MRRE01 = New Super Mario Bros. Wii Retro Remix MRRP01 = New Super Mario Bros. Wii Retro Remix NA3E = Bomberman Hero NA3J = Bomberman Hero NA3P = Bomberman Hero NAAE = Super Mario 64 NAAJ = Super Mario 64 NAAP = Super Mario 64 NABE = Mario Kart 64 NABJ = Mario Kart 64 NABK = Mario Kart 64 NABP = Mario Kart 64 NACE = The Legend of Zelda: Ocarina of Time NACJ = Zelda no Densetsu: Toki no Ocarina NACP = The Legend of Zelda: Ocarina of Time NADE = Star Fox 64 NADJ = Star Fox 64 NADK = Star Fox 64 NADP = Lylat Wars NAEE = Paper Mario NAEJ = Mario Story NAEP = Paper Mario NAFE = F-Zero X NAFJ = F-Zero X NAFP = F-Zero X NAGJ = Aerogauge NAHE = Yoshi's Story NAHJ = Yoshi's Story NAHP = Yoshi's Story NAIE = Wave Race 64 NAIJ = Wave Race 64: Kawasaki Jet Ski NAIP = Wave Race 64 NAJ8 = The Legend of Zelda: Ocarina of Time (spanish translation) NAJ9 = Super Smash Bros. NAJJ = Tsumi to Batsu NAJL = Sin & Punishment NAJN = Sin and Punishment NAKD = Pokémon Snap NAKE = Pokémon Snap NAKF = Pokémon Snap NAKI = Pokémon Snap NAKJ = Pokémon Snap NAKP = Pokémon Snap NAKS = Pokémon Snap NALE = Super Smash Bros. NALJ = Nintendo All-Star Dairantou Smash Brothers NALP = Super Smash Bros. NAME = Kirby 64: The Crystal Shards NAMJ = Hoshi no Kirby 64 NAMK = Kirby 64: The Crystal Shards NAMP = Kirby 64: The Crystal Shards NAND = Pokémon Puzzle League NANE = Pokémon Puzzle League NANF = Pokémon Puzzle League NANJ = Pokemon Puzzle League NANP = Pokémon Puzzle League NAOE = 1080° Snowboarding NAOJ = 1080° Snowboarding NAOK = 1080° Snowboarding NAOP = 1080 : TenEighty Snowboarding NAPJ = Custom Robo V2 NARE = The Legend of Zelda: Majora's Mask NARJ = Zelda no Densetsu: Majora no Kamen NARP = The Legend of Zelda: Majora's Mask NASE = Cruis'n USA NASJ = Cruisn USA NASP = Cruis'n USA NATE = Mario Tennis NATJ = Mario Tennis 64 NATP = Mario Tennis NAUE = Mario Golf NAUJ = Mario Golf 64 NAUP = Mario Golf NAYE = Ogre Battle 64: Person of Lordly Caliber NAYJ = Ogre Battle 64: Person of Lordly Caliber NAYM = Ogre Battle 64 : Person of Lordly Caliber NAZE = Mario Party 2 NAZJ = Mario Party 2 NAZP = Mario Party 2 NEEA = The Legend of Zelda: Ocarina of Time Master Quest NEWE01 = New Super Mario Bros Wii 15 A New World NK2O = Neek2o NMNP01 = Newer Super Mario Bros. Wii NRJ1FR = StarSing : NRJ Music Tour v1.1 NSMB02 = New Super Mario Bros. Wii 2 NSSP01 = Newer Summer Sun NWRP01 = Newer Super Mario Bros. Wii NZXM = Super Mario 64 Multiplayer ONKELZ = SingItStar Böhse Onkelz PAL OTFPSI = Sing IT: Operación triunfo P2ME01 = Metroid Prime 2: Echoes (Bonus Disc) PA2J = Nekketsu Koukou Dodgeball Bu: CD Soccer Hen PA3J = Salamander PA4J = Parasol Stars PA6E = Bloody Wolf PA6J = Narazumono Sentou Butai: Bloody Wolf PA6P = Bloody Wolf PA7E = Alien Crush PA7J = Alien Crush PA7P = Alien Crush PA8E = Ordyne PA8J = Ordyne PA9E = Splatterhouse PA9J = Splatterhouse PA9P = Splatterhouse PAAE = Bomberman '93 PAAP = Bomberman '93 PABE = Bonk's Adventure PABJ = PC Genjin PABP = Bonk's Adventure PACE = Dungeon Explorer PACJ = Dungeon Explorer PACP = Dungeon Explorer PADE = R-Type PADJ = R-Type I PADP = R-Type PAEE = Super Star Soldier PAEJ = Super Star Soldier PAEP = Super Star Soldier PAFE = Victory Run PAFJ = Victory Run: Eikou no 13,000KM PAFP = Victory Run PAGJ = Bomberman '94 PAGL = Bomberman'94 PAGN = Bomberman '94 PAHE = Battle Lode Runner PAHJ = Battle Lode Runner PAHP = Battle Lode Runner PAIE = New Adventure Island PAIJ = Takahashi Meijin no Shin Bouken Jima PAIP = New Adventure Island PAJJ = Joshoken Necromancer PAKE = Dragon's Curse PAKJ = Adventure Island PAKP = Dragon's Curse PALE = Soldier Blade PALJ = Soldier Blade PALP = Soldier Blade PAME = Neutopia PAMJ = Neutopia: Frey no Shou PAMP = Neutopia PANE = Military Madness PANJ = Nectaris PANP = Military Madness PAOJ = Final Soldier PAOL = Final Soldier PAON = Final Soldier PAPJ = R-Type II PAQJ = Gradius PARJ = Detana TwinBee PARL = Detana Twin Bee PARN = Detana Twin Bee PASJ = Cadash PATJ = Kiki Kaikai PAUJ = Kaizou Chounin Shubibinman PAVE = Vigilante PAVJ = Vigilante PAVP = Vigilante PAWE = Galaga '90 PAWJ = Galaga '88 PAWP = Galaga'90 PAYJ = Valkyrie no Densetsu PAZJ = Genpei Toumaden PB2E = Neutopia II PB2J = Neutopia II PB2P = Neutopia II PB3E = Devil's Crush PB3J = Devil Crash PB3P = Devil's Crush PB5J = Ninja Ryukenden PB6E = Cratermaze PB6P = Cratermaze PB7J = Sengoku Mahjong PB8E = Blazing Lazers PB8J = Blazing Lazers PB8P = Blazing Lazers PB9E = World Sports Competition PB9J = Power Sports PB9P = World Sports Competition PBAE = Dragon Spirit PBAJ = Dragon Spirit PBAP = Dragon Spirit PBCJ = Wonder-Momo PBDE = Double Dungeons PBDJ = Double Dungeons PBDP = Double Dungeons PBEE = Moto Roader PBEJ = Moto Roader PBEP = Motoroader PBFJ = Fire ProWrestling: Combination Tag PBHE = Bonk's Revenge PBHJ = PC Genjin 2 PBHP = Bonk's Revenge PBIE = Bonk 3: Bonk's Big Adventure PBIJ = PC Genjin 3 PBIP = Bonk III: Bonk's Big Adventure PBJE = Samurai Ghost PBJJ = Genpei Toumaden: Kannoni PBJP = Samurai Ghost PBME = Legend of Hero Tonma PBMJ = Legend of Hero Tonma PBMP = Legend of Hero Tonma PBNE = Ninja Spirit PBNJ = Saigou no Nindou: Ninja Spirit PBNP = Ninja Spirit PBSE = Chew Man Fu PBSJ = Be Ball PBSP = Chew Man Fu PBTE = China Warrior PBTJ = The Kung Fu PBTP = China Warrior PBUE = Bravoman PBUJ = Chouzetsu Rinjin Bravoman PBVJ = Benkei Gaiden PBWE = Air “Zonk” PBWJ = PC Denjin: Punkic Cyborgs PBWP = Air 'Zonk' PBXE = Shockman PBXJ = Kaizou Chounin Shubibinman 2: Atanaru Teki PBXP = Shockman PBYJ = Out Live PBZE = J.J. & Jeff PBZP = J.J. & Jeff PC2E = Chase H.Q. PC2J = Chase H.Q. PC2P = Chase H.Q. PC3J = Darius Plus PC4J = Space Invaders: Fukkatsu no Hi PC5J = Dragon Saber PC6E01 = Pokémon Colosseum Bonus Disc PC6J = Final Blaster PC7J = Mizubaku Daibouken PC8J = The Ninjawarriors PC9J = The NewZealand Story PCAE = Silent Debuggers PCAJ = Silent Debuggers PCAP = Silent Debuggers PCBE = Dead Moon PCBJ = Dead Moon: Tsuki Sekai no Akumu PCBP = Dead Moon PCCJ = Makai Hakkenden Shada PCDJ = Appare! Gateball PCEE = Power Golf PCEJ = Power Golf PCEP = Power Golf PCHE = Drop Off PCHJ = Drop Rock Hora Hora PCHP = Drop Off PCJJ = Override PCKJ = Gai Flame PCMJ = Mr. Heli no Daibouken PCNJ = Winning Shot PCOE = Psychosis PCOJ = Paranoia PCOP = Psychosis PCPJ = Power Eleven PCQJ = Psycho Chaser PCRJ = Break In PCRL = Break In PCRN = Break In PCSJ = Digital Champ: Battle Boxing PCSJ = Digital Champ: Battle Boxing PCSJ01 = Pokemon Colosseum Bonus Disc PCSL = Digital Champ : Battle Boxing PCSN = Digital Champ Battle Boxing PCTJ = Power Tennis PCUJ = Fire ProWrestling 2nd Bout PCVE = World Class Baseball PCVP = World Class Baseball PCWJ = Image Fight PCXJ = Power League IV PCYJ = Wallaby!! Usagi no Kuni no Kangaroo Race PDCJ = Dai Makaimura PDDJ = Volfied PDEJ = S.C.I.: Special Criminal Investigation PDFJ = Jigoku Meguri PDGJ = Fire ProWrestling 3: Legend Bout PDHJ = Rastan Saga II PDIE = Champion Wrestler PDJJ = Street Fighter II': Champion Edition PDJL = Street Fighter II' : Champion Edition PDJN = Street Fighter II: Champion Edition PDUE01 = Another Super Mario Bros. Wii PKBJ01 = The Tower of Druaga PLUS = WiiMC+ PM4E01 = Mario Kart: Double Dash!! Bonus Disc PMNEO1 = New Old Super Mario Bros. Wii POPPSI = SingItStar Pop PPNE01 = New Super Mario Bros. Wii 2: The Next Levels PPNP01 = New Super Mario Bros. Wii 2: The Next Levels PRJE01 = Pac-Man vs. PRJJ01 = Pac-Man vs. PRJP01 = Pac-Man vs. PROE01 = New Super Mario Bros. Wii 14 Project Mario PT1PSI = SingIt Star Portugal Hits PT2PSI = SingIt Portugal Hits Summer Party PT3PSI = Sing IT Portugal Hits - Morangos com Açucar PUTA01 = Guitar Hero III Custom : Rock Hits PWNP69 = Pwned Super Mario Bros. Wii PXWE = Project X: Love Potion Disaster PZLE01 = The Legend of Zelda: Collector's Edition PZLJ01 = The Legend of Zelda: Collector's Edition PZLP01 = The Legend of Zelda: Collector's Edition QA2J = Nekketsu Koukou Dodge Ball-Bu: CD Soccer-hen QA3E = SimEarth: The Living Planet QA3J = SimEarth QA3P = SimEarth: The Living Planet QA4J = Super Darius II QA5J = Space Invaders: The Original Game QA6J = Super Darius QA7J = Legend of Xanadu: Kaze no Densetsu Xanadu QA8J = Spriggan Mark 2 QA9J = Kaze no Densetsu: Xanadu II QAAE = Super Air Zonk QAAJ = CD Denjin: Rockabilly Tengoku QAAP = Super Air Zonk QABE = Ys Book I & II QABJ = Ys I + II QABP = Ys Book I & II QACJ = Cho Aniki QACL = Cho Aniki QACN = Cho Aniki QADJ = Gradius II: Gofer no Yabou QADL = Gradius II: Gofer no Yabou QADN = Gradius II Gofer No Yabou QAEJ = A.III: A-Ressha de Ikou III QAFE = The Dynastic Hero QAFJ = Chou Eiyuu Densetsu: Dynastic Hero QAFP = The Dynastic Hero QAGE = Gate of Thunder QAGJ = Gate of Thunder QAGP = Gate of Thunder QAHJ = Kawa no Nushi Tsuni Shizenha QAJJ = Image Fight II QAKJ = Ai Chou Aniki QALJ = The Atlas: Renaissance Voyager QANJ = Neo Nectaris QAOJ = Dungeon Explorer II QAPJ = Akumajou Dracula X: Chi no Rondo QAPL = Castlevania : Rondo of Blood QAPN = Castlevania Rondo of Blood QAPP = Castlevania: Rondo of Blood QAQJ = Dragon Slayer: Eiyuu Densetsu QARJ = Blood Gear QASE = Lords of Thunder QASJ = Winds of Thunder QASP = Lords of Thunder QATE = Riot Zone QATJ = Crest of Wolf QATP = Riot Zone QAUE = Monster Lair QAUJ = Wonder Boy III: Monster Lair QAUP = Monster Lair QAVJ = Bomberman: Panic Bomber QAWJ = Star Parodier QAWL = Star Parodier QAWN = Star Parodier QAXJ = Martial Champion QAYJ = Seirei Senshi Spriggan QAZJ = Eikan wa Kimi ni: Koko Yakyu Zenkoku Taikai QBAJ = L Dis QBBE = Fighting Street QBBJ = Fighting Street QBBP = Fighting Street R01PET = SingItStar Queen R02PEA = SingItStar Rock Ballads R15POH = SingIt Star Radio 105 R22E01 = FlingSmash R22J01 = Tataite Hazumu: Super Smash Ball Plus R22P01 = FlingSmash R23E52 = Barbie and the Three Musketeers R23P52 = Barbie and the Three Musketeers R24J01 = Chibi-Robo! R25EWR = LEGO Harry Potter: Years 1-4 R25PWR = LEGO Harry Potter: Years 1-4 R26E5G = Data East Arcade Classics R27E54 = Dora Saves the Crystal Kingdom R27X54 = Dora Saves the Crystal Kingdom R28E54 = Top Spin 4 R28P54 = Top Spin 4 R29E52 = NPPL Championship Paintball 2009 R29P52 = Millennium Series Championship Paintball 2009 R2AE7D = Ice Age 2: The Meltdown R2AP7D = Ice Age 2: The Meltdown R2AX7D = Ice Age 2: The Meltdown R2DEEB = Dokapon Kingdom R2DJEP = Dokapon Kingdom For Wii R2DPAP = Dokapon Kingdom R2DPJW = Dokapon Kingdom R2EJ99 = Fish Eyes Wii R2FE5G = Freddi Fish: Kelp Seed Mystery R2FP70 = Freddi Fish: Kelp Seed Mystery R2GEXJ = Fragile Dreams: Farewell Ruins of the Moon R2GJAF = Fragile: Sayonara Tsuki no Haikyo R2GP99 = Fragile Dreams: Farewell Ruins of the Moon R2HE41 = Petz Horse Club R2IE69 = Madden NFL 10 R2IP69 = Madden NFL 10 R2JJAF = Taiko no Tatsujin Wii R2KE54 = Don King Boxing R2KP54 = Don King Boxing R2LJMS = Hula Wii: Hura de Hajimeru Bi to Kenkou!! R2ME20 = M&M's Adventure R2NE69 = NASCAR Kart Racing R2OE68 = Medieval Games R2OP68 = Medieval Games R2PE9B = Super Swing Golf Season 2 R2PJ9B = Super Swing Golf Season 2 R2PKZ4 = Super Swing Golf Season 2 R2PP99 = Super Swing Golf R2PP9B = Super Swing Golf R2QJC0 = Cooking Mama 2 Taihen Mama Wa Ooisogashi R2RE4F = Pony Friends 2 R2RP4F = Pony Friends 2 R2SE18 = Deca Sports 2 R2SJ18 = Deca Sporta 2 R2SP18 = Sports Island 2 R2TE41 = Teenage Mutant Ninja Turtles: Smash-Up R2TP41 = Teenage Mutant Ninja Turtles: Smash-Up R2UE8P = Let's Tap R2UJ8P = Let's Tap R2UP8P = Let's Tap R2VE01 = Sin & Punishment: Star Successor R2VJ01 = Sin and Punishment: Successor to the Sky R2VP01 = Sin and Punishment: Successor of the Skies R2WEA4 = Pro Evolution Soccer 2009 R2WJA4 = Winning Eleven PLAY MAKER 2009 R2WPA4 = Pro Evolution Soccer 2009 R2WXA4 = Pro Evolution Soccer 2009 R2YE54 = Birthday Party Bash R2YP54 = It's my Birthday! R32J01 = Metroid Prime 2 R33E69 = AC/DC Live: Rock Band Track Pack R33P69 = AC/DC Live: Rock Band Song Pack R34E69 = Rock Band: Country Track Pack R35JC8 = Sangokushi 11 with Power-Up Kit R36E69 = Green Day: Rock Band R36P69 = Green Day: Rock Band R37E69 = Rock Band: Metal Track Pack R38E78 = Marvel Super Hero Squad R38P78 = Marvel Super Hero Squad R38X78 = Marvel Super Hero Squad: Walmart Edition R38Y78 = Marvel Super Hero Squad R39EFP = Shimano Xtreme Fishing R39PNK = Shimano Extreme Fishing R3AE20 = Story Hour: Adventures R3AP20 = Story Hour: Adventures R3AP7J = Story Hour: Adventures R3BE8P = Samba de Amigo R3BJ8P = Samba de Amigo R3BP8P = Samba de Amigo R3CE20 = Chrysler Classic Racing R3CP20 = Chrysler Classic Racing R3CP7J = Chrysler Classic Racing R3DES5 = Dream Pinball 3D R3DPS5 = Dream Pinball 3D R3EEWR = Game Party 3 R3EPWR = Game Party 3 R3FJA4 = Jikkyou Powerful Major League 3 R3GXUG = Kidz Sports: Crazy Mini Golf R3HP6Z = Agent Hugo: Hula Holiday R3HX6Z = Agent Hugo: Hula Holiday R3IJ01 = Metroid Prime R3JE5G = Go Play Circus Star R3KP6N = Skyscraper R3LEWR = Green Lantern: Rise of the Manhunters R3LPWR = Green Lantern: Rise of the Manhunters R3ME01 = Metroid Prime: Trilogy R3MP01 = Metroid Prime: Trilogy R3NEXS = Guilty Gear XX Accent Core Plus R3NPH3 = Guilty Gear XX Accent Core Plus R3OE01 = Metroid: Other M R3OJ01 = Metroid: Other M R3OP01 = Metroid: Other M R3PEWR = Speed Racer: The Videogame R3PJ52 = Speed Racer R3PPWR = Speed Racer: The Videogame R3RE8P = Sonic & SEGA All-Stars Racing R3RP8P = Sonic & SEGA All-Stars Racing R3SE52 = Spider-Man: Web of Shadows R3SP52 = Spider-Man: Web of Shadows R3TE54 = Top Spin 3 R3TJG9 = Top Spin 3 R3TP54 = Top Spin 3 R3UJGD = Oyako de Asobo: Miffy no Omocha Bako R3VEFP = Deer Drive R3VPNK = Deer Drive R3XE6U = Sam & Max: Season One R3XP6V = Sam & Max: Season One R3YE70 = Sam & Max: Season Two: Beyond Time and Space R3YP70 = Sam & Max: Season Two: Beyond Time and Space R3ZE69 = Rock Band Track Pack: Classic Rock R42E69 = The Sims 2: Castaway R42P69 = The Sims 2: Castaway R43E69 = EA Sports Active: Personal Trainer R43J13 = EA Sports Active Personal Trainer Wii 30-Hi Seikatsu Kaizen Program R43P69 = EA Sports Active: Personal Trainer R44J8P = Suzumiya Haruhi no Heiretsu R46ENS = Phantom Brave: We Meet Again R46JKB = Phantom Brave Wii R47E20 = ATV Quad Kings R48E7D = The Spiderwick Chronicles R48P7D = The Spiderwick Chronicles R49E01 = Donkey Kong Jungle Beat R49J01 = Donkey Kong: Jungle Beat R49P01 = Donkey Kong: Jungle Beat R4AE69 = SimAnimals R4AJ13 = SimAnimals R4AP69 = SimAnimals R4BEJZ = Championship Foosball R4BPGT = Table Football R4CE69 = SimCity Creator R4CJ13 = Simcity Creator R4CK69 = SimCity Creator R4CP69 = Simcity Creator R4DDUS = Die drei Fragezeichen - Das verfluchte Schloss R4EE01 = Endless Ocean: Blue World R4EJ01 = Forever Blue: Umi no Yobigoe (Endless Ocean 2) R4EP01 = Endless Ocean 2: Adventures of the Deep R4FE20 = Story Hour: Fairy Tales R4FP20 = Story Hour: Fairy Tales R4FP7J = Story Hour: Fairy Tales R4IPNK = Mad Tracks R4LPUG = Athletic Piggy Party R4LXUG = Athletic Piggy Party R4MJ0Q = Shikakui Atama wo Marukusuru Wii R4NE5G = Major Minor's Majestic March R4NP5G = Major Minor's Majestic March R4NX5G = Major Minor's Majestic March R4PE69 = The Sims 2: Pets R4PP69 = The Sims 2: Pets R4QE01 = Mario Strikers Charged R4QJ01 = Mario Strikers Charged R4QK01 = Mario Power Soccer R4QP01 = Mario Strikers Charged Football R4RE69 = FIFA Soccer 10 R4RJ13 = FIFA 10 WORLD CLASS SOCCER R4RK69 = FIFA 10 R4RP69 = FIFA 10 R4RX69 = FIFA 10 R4RY69 = FIFA 10 R4RZ69 = FIFA Soccer 10 R4SE54 = MLB Superstars R4VEA4 = Storybook Workshop R4VJA4 = Teleshibai Wii R4VJAF = Tere Shibai Wii R4WJA4 = Jikkyou Powerful Major League 2009 R4YJ2M = Sukeban Shachou Rena Wii R4ZE01 = Fatal Frame 4: Mask of the Lunar Eclipse R4ZJ01 = Fatal Frame IV: Mask of the Lunar Eclipse R4ZP01 = Fatal Frame IV: Mask of the Lunar Eclipse R52E08 = Neopets Puzzle Adventure R52P08 = Neopets Puzzle Adventure R53PFH = In The Mix Featuring Armin van Buuren R54FMR = Countdown: The Game R55F41 = Qui Veut Gagner Des Millions: 1ère Edition R55P41 = Who Wants To Be A Millionaire: 1st Edition R56EG9 = Astro Boy: The Video Game R56PG9 = Astro Boy: The Video Game R57FMR = Questions pour un champion R58DMR = U-Sing R58FMR = U-Sing R58PMR = U-Sing R58SMR = U-Sing R59D4Q = Club Penguin: Game Day! R59E4Q = Club Penguin: Game Day! R59P4Q = Club Penguin: Game Day! R5AE8P = The Golden Compass R5AP8P = The Golden Compass R5AX8P = The Golden Compass R5DE5G = Flip's Twisted World R5EPMR = Countdown: The Game R5FE41 = Academy of Champions: Soccer R5FP41 = Academy of Champions: Football R5GE78 = Are You Smarter Than A 5th Grader?: Make the Grade R5IE4Q = Toy Story Mania! R5IP4Q = Toy Story Mania! R5IR4Q = История игрушек: Парк развлечении R5IX4Q = Toy Story Mania! R5JES5 = Pirates vs Ninjas Dodgeball R5JPS5 = Pirates vs Ninjas Dodgeball R5MJAF = Kotoba No Puzzle Mojipittan Wii Deluxe R5NJN9 = Doala De Wii R5OENR = Party Pigs: Farmyard Games R5OXUG = Farmyard Party: Featuring the Olympigs R5PE69 = Harry Potter and the Order of the Phoenix R5PJ13 = Harry Potter and the Order of the Phoenix R5PP69 = Harry Potter and the Order of the Phoenix R5PX69 = Harry Potter and the Order of the Phoenix R5QPGT = Circus R5SERW = Mortimer Beckett and the Secrets of Spooky Manor R5TE69 = Grand Slam Tennis R5TJ13 = Grand Slam Tennis R5TP69 = Grand Slam Tennis R5UE41 = CSI: Deadly Intent R5UP41 = CSI: Deadly Intent R5VE41 = James Cameron's Avatar: The Game R5VP41 = James Cameron's Avatar: The Game R5VX41 = James Cameron's Avatar: The Game R5WEA4 = Silent Hill: Shattered Memories R5WJA4 = Silent Hill: Shattered Memories R5XJ13 = MySims Agents R5XP69 = MySims Agents R5YD78 = All Star Cheerleader 2 R5YE78 = All Star Cheer Squad 2 R5YP78 = All Star Cheerleader 2 R62E4Q = Disney Sing It: Pop Hits R62P4Q = Disney Sing It: Pop Hits R63EG9 = Family Party: 30 Great Games Outdoor Fun R63PG9 = Family Party: 30 Great Games Outdoor Fun R64E01 = Wii Music R64J01 = Wii Music R64K01 = Wii Music R64P01 = Wii Music R65ENR = Buck Fever R66E41 = Press Your Luck 2010 Edition R67E6K = Smart Series Presents: JaJa's Adventure R68E5G = Go Play City Sports R69E36 = DiRT 2 R69P36 = Colin McRae: DiRT 2 R6APPU = Baby and Me R6BE78 = de Blob R6BJ78 = Blob Colorful Na Kibou R6BK78 = de Blob R6BP78 = de Blob R6BX78 = de Blob R6CEAF = We Cheer 2 R6CJAF = WE CHEER Dancing Spirits! R6DFJW = Code de la Route R6EE41 = Family Feud 2010 Edition R6FE41 = Six Flags Fun Park R6FERS = Six Flags Fun Park R6FP41 = Fun Park Party R6GPMR = Golden Balls R6HE54 = Ni Hao, Kai-lan: Super Game Day R6HP54 = Ni Hao, Kai-lan: Super Game Day R6IE54 = Baseball Blast! R6JJGD = Fullmetal Alchemist: Prince of the Dawn R6KP36 = Ashes Cricket 2009 R6KU36 = Ashes Cricket 2009 R6LEWR = LEGO Rock Band R6LPWR = LEGO Rock Band R6ME5Z = America's Next Top Model R6MPML = America's Next Top Model R6MXMR = Top Model R6NE41 = Shaun White Snowboarding: World Stage R6NP41 = Shaun White Snowboarding: World Stage R6NY41 = Shaun White Snowboarding: World Stage R6OE78 = Cars Race-O-Rama R6OP78 = Cars Race-O-Rama R6OX78 = Cars Race-O-Rama R6QE69 = MySims Agents R6REJH = TrackMania: Build to Race R6RPHH = TrackMania R6TEA4 = Tornado Outbreak R6TPA4 = Tornado Outbreak R6VE4Z = King of Clubs R6VPGN = King of Clubs R6WE68 = AMF Bowling World Lanes R6WP68 = AMF Bowling World Lanes R6XE69 = Hasbro: Family Game Night 2 R6XP69 = Hasbro: Family Game Night 2 R6YEXS = Squeeballs Party R6YPH3 = Squeeballs Party R72E5G = Cake Mania: In The Mix! R72P5G = Cake Mania: In The Mix! R74E20 = Arcade Shooting Gallery R75E20 = Dream Salon R76E54 = NBA 2K10 R76P54 = NBA 2K10 R77JAF = SD Gundam: G Generation Wars R79JAF = Mobile Suit Gundam: MS Sensen 0079 R7AE69 = SimAnimals Africa R7AJ13 = SimAnimals Africa R7AP69 = SimAnimals Africa R7BE20 = Jelly Belly Ballistic Beans R7BP7J = Jelly Belly Ballistic Beans R7CJ01 = Captain Rainbow R7EE8P = NiGHTS: Journey of Dreams R7EJ8P = Nights Journey Of Dreams R7EP8P = NiGHTS: Journey of Dreams R7FEGD = Final Fantasy Fables: Chocobo's Dungeon R7FJGD = Final Fantasy Fables: Chocobo's Dungeon R7FPGD = Final Fantasy Fables: Chocobo's Dungeon R7GEAF = Dragon Ball: Revenge of King Piccolo R7GJAF = Dragon Ball: Tenkaichi Daibouken R7GPAF = Dragon Ball: Revenge of King Piccolo R7HE6K = Army Rescue R7IE69 = Charm Girls Club: Pajama Party R7IP69 = Charm Girls Club: Pyjama Party R7KE6K = Rock Blast R7LP7J = Margot's Bepuzzled! R7MXFR = Musiic Party: Rock the House R7NE20 = Cold Stone Creamery: Scoop It Up R7OE54 = NHL 2K10 R7OP54 = NHL 2K10 R7PE01 = Punch-Out!! R7PJ01 = Punch-Out!! R7PP01 = Punch-Out!! R7QE52 = Chaotic: Shadow Warriors R7RE52 = Little League World Series Baseball 2009 R7SE5G = Escape The Museum R7SP5G = Escape The Museum R7TFJW = Pétanque Pro R7VEWR = Vacation Isle: Beach Party R7VPWR = Vacation Isle: Beach Party R7WE52 = Mountain Sports R7WP52 = Mountain Sports R7XE69 = Need for Speed: Nitro R7XJ13 = Need for Speed: Nitro R7XP69 = Need for Speed: Nitro R7YFMR = Pékin Express R7ZE41 = Team Elimination Games R7ZP41 = Knockout Party R82E52 = Animal Planet: Vet Life R82JG0 = Darts Wii DX R82P52 = Animal Planet: Vet Life R83EA4 = Pop'n Music R83JA4 = Pop'n Music R83PA4 = Pop'n Rhythm R84EE9 = Harvest Moon: Tree Of Tranquility R84J99 = Bokujo for Wii R84P99 = Harvest Moon: Tree of Tranquility R85EG9 = The Secret Saturdays: Beasts of the 5th Sun R85PG9 = The Secret Saturdays: Beasts of the 5th Sun R86E20 = Dream Dance & Cheer R87EVN = Ski-Doo: Snowmobile Challenge R88J2L = Anpanman Niko Niko Party R89JEL = Tokyo Friend Park 2 Wii R8AE01 = PokéPark Wii: Pikachu's Adventure R8AJ01 = PokéPark Wii: Pikachu no Daibouken R8AP01 = PokéPark Wii: Pikachu's Adventure R8BE41 = Imagine Party Babyz R8BP41 = Babysitting Party R8DEA4 = Yu-Gi-Oh! 5D's: Duel Transer R8DJA4 = Yu-Gi-Oh! 5D's: Duel Transer R8DPA4 = Yu-Gi-Oh! 5D's: Master of the Cards R8EJQC = Earth Seeker R8FES5 = Fast Food Panic R8FJHA = Takumi Restaurant ha Daihanjou! R8FJSC = Takumi Restaurant wa Daihanjou! (Simplified Chinese Translation) R8FPNP = Fast Food Panic R8GJC8 = G1 Jockey Wii 2008 R8GPC8 = G1 Jockey Wii 2008 R8HE4Q = Hannah Montana: The Movie R8HP4Q = Hannah Montana: The Movie R8HX4Q = Hannah Montana: The Movie R8HY4Q = Hannah Montana: The Movie R8IE78 = SpongeBob's Truth or Square R8IP78 = SpongeBob's Truth or Square R8IS78 = SpongeBob's Truth or Square R8JEWR = The Lord of the Rings: Aragorn's Quest R8JPWR = The Lord of the Rings: Aragorn's Quest R8KPKM = Street Football 2 R8LE20 = Chicken Blaster R8LP7J = Chicken Blaster R8NEA4 = The Cages: Pro Style Batting Practice R8NJG0 = Batting Revolution R8OE54 = Ringling Bros. and Barnum & Bailey Circus R8OX54 = It's My Circus R8PC01 = Super Paper Mario(CN) R8PE01 = Super Paper Mario R8PJ01 = Super Paper Mario R8PK01 = Super Paper Mario R8PP01 = Super Paper Mario R8QPRT = Crazy Quiz: Are You Crazy Enough? R8RP41 = Arthur and the Revenge of Maltazard R8SE41 = Vacation Sports R8SP41 = World Sports Party R8SX41 = World Sports Party R8TENR = Tournament Pool R8UXMR = Adibou R8VE41 = Petz Rescue: Wildlife Vet R8VP41 = Planet Rescue: Wildlife Vet R8XE52 = Jurassic: The Hunted R8XZ52 = Top Shot Dinosaur Hunter R8YE52 = Cabela's Big Game Hunter 2010 R8ZE8P = Daisy Fuentes Pilates R8ZPGT = Daisy Fuentes Pilates R92E01 = Pikmin 2 R92J01 = Pikmin 2 R92P01 = Pikmin 2 R94PMR = The Ultimate Red Ball Challenge R94XMR = The Ultimate Red Ball Challenge R96EAF = Klonoa R96JAF = Kaze no Klonoa Door to Phantomile R96KAF = Klonoa - Door to Phantomile R96PAF = Klonoa R97E9B = Family Fun Football R9AE52 = Activision Demo Action Pack (Demo) R9BPMT = Bob the Builder: Festival of Fun R9CPMR = I'm a Celebrity...Get Me Out of Here! R9DE78 = Drawn to Life: The Next Chapter R9DP78 = Drawn to Life: The Next Chapter R9EPNP = Fix It: Home Improvement Challenge R9FE36 = F1 2009 R9FJ36 = F1 2009 R9FP36 = F1 2009 R9GEWR = Legend of the Guardians: The Owls of Ga'Hoole R9GPWR = Legend of the Guardians: The Owls of Ga'Hoole R9HE78 = Are You Smarter Than A 5th Grader?: Game Time R9IE01 = Pikmin R9IJ01 = Pikmin R9IK01 = Pikmin R9IP01 = Pikmin R9JE69 = The Beatles: Rock Band R9JP69 = The Beatles: Rock Band R9KE20 = Groovin' Blocks R9LE41 = Sleepover Party R9LP41 = Girls Life: Sleepover Party R9ME5Z = World Championship Athletics R9MPFR = Summer Athletics 2009 R9NPMR = Family Fortunes R9OE69 = Tiger Woods PGA Tour 10 R9OK69 = Tiger Woods PGA Tour 10 R9OP69 = Tiger Woods PGA Tour 10 R9QPNG = Dance Party Club Hits R9RPNG = Dance Party Pop Hits R9SPPL = Sudoku Ball: Detective R9TE69 = Tiger Woods PGA Tour 09 All-Play R9TJ13 = Tiger Woods PGA Tour 09 All-Play R9TK69 = Tiger Woods PGA Tour 09 All-Play R9TP69 = Tiger Woods PGA Tour 09 All-Play R9UE52 = Build-A-Bear Workshop: Friendship Valley R9UPGY = Build-A-Bear Workshop: Friendship Valley R9VE52 = Cabela's Outdoor Adventures 2010 R9WPSP = WSC Real 09: World Snooker Championship R9XE52 = Arcade Zone R9XP52 = Arcade Zone R9YES5 = Sled Shred R9ZE54 = Major League Baseball 2K9 RABAZZ = System Menu Changer RADP01 = New Super Mario Bros. Wii 0-6 Radiance RB2E6K = Balloon Pop RB2J2K = Rainbow Pop RB2P6K = Pop! RB2PGT = Pop! RB4E08 = Resident Evil 4: Wii Edition RB4J08 = Biohazard 4 Wii Edition RB4P08 = Resident Evil 4: Wii Edition RB4X08 = Resident Evil 4: Wii Edition RB5E41 = Brothers In Arms: Earned In Blood RB5P41 = Brothers In Arms: Earned In Blood RB6J18 = Bomberman RB7E54 = Bully: Scholarship Edition RB7P54 = Bully: Scholarship Edition RB8E70 = Backyard Baseball '09 RB9D78 = Bratz: The Movie RB9E78 = Bratz: The Movie RB9P78 = Bratz: The Movie RB9X78 = Bratz: The Movie RB9Y78 = Bratz: The Movie RBAE41 = Blazing Angels: Squadrons of WWII RBAP41 = Blazing Angels: Squadrons of WWII RBBE18 = Bomberman Land RBBJ18 = Bomberman Land Wii RBBP99 = Bomberman Land Wii RBCP41 = Telly Addicts RBEE52 = Bee Movie Game RBEP52 = Bee Movie Game RBEX52 = Bee Movie Game RBFE20 = Balls of Fury RBFP20 = Balls of Fury RBFP7J = Balls of Fury RBGE54 = The BIGS RBGP54 = The Bigs RBHE08 = Resident Evil Archives: Resident Evil Zero RBHJ08 = Biohazard 0 RBHP08 = Resident Evil Archives: Resident Evil Zero RBIEE9 = Harvest Moon: Animal Parade RBIJ99 = Bokujou Monogatari Waku Waku Animal March RBIP99 = Harvest Moon: Animal Parade RBKE69 = Boom Blox RBKJ13 = Boom Blox RBKK69 = Boom Blox RBKP69 = Boom Blox RBLE8P = Bleach: Shattered Blade RBLJ8P = Bleach: Shattered Blade RBLP8P = Bleach: Shattered Blade RBME5G = Bust-a-Move Bash! RBMPGT = Bust-A-Move RBNEG9 = Ben 10: Protector of Earth RBNPG9 = Ben 10: Protector of Earth RBNXG9 = Ben 10: Protector of Earth RBOE69 = Boogie RBOP69 = Boogie RBPE4Z = Brunswick Pro Bowling RBPP4Z = Brunswick Pro Bowling RBPPGT = Brunswick Pro Bowling RBQENR = Classic British Motor Racing RBQPUG = Classic British Motor Racing RBRE5G = Blast Works: Build, Trade, Destroy RBRP5G = Blast Works: Build, Trade, Destroy RBRX5G = Blast Works: Build, Trade, Destroy RBSJ08 = Sengoku Basara 2 Heroes (Double Pack) RBSJ09 = Sengoku Basara 2 Heroes RBTE8P = SEGA Bass Fishing RBTJ8P = Sega Bass Fishing RBTP8P = Sega Bass Fishing RBUE08 = Resident Evil: The Umbrella Chronicles RBUJ08 = Biohazard The Umbrella Chronicles RBUK08 = Biohazard The Umbrella Chronicles RBUP08 = Resident Evil: The Umbrella Chronicles RBVE52 = Barbie as The Island Princess RBVP52 = Barbie as The Island Princess RBWE01 = Battalion Wars 2 RBWJ01 = Totsugeki Famicom Wars vs. RBWP01 = Battalion Wars 2 RBXJ8P = Bleach: Versus Crusade RBYE78 = Barnyard RBYJ78 = Barnyard RBYP78 = Barnyard RBZE5Z = Billy the Wizard: Rocket Broomstick Racing RBZP5Z = Billy the Wizard: Rocket Broomstick Racing RBZPUG = Billy the Wizard: Rocket Broomstick Racing RBZXUG = Billy the Wizard: Rocket Broomstick Racing RC2E78 = Cars: Mater-National RC2P78 = Cars: Mater-National RC2X78 = Cars: Mater-National RC2Y78 = Cars: Mater-National RC3E41 = Petz Catz 2 RC3J41 = Nyanko To Mahou No Boushi RC3P41 = Catz RC3X41 = Catz RC4JD9 = Crayon Shin-Chan: Saikyou Kazoku Kasukabe King Wii RC4SGT = Shin Chan The New Adventures For Wii RC5JDQ = Osouji Sentai Clean Keeper RC7E20 = Sea Monsters: A Prehistoric Adventure RC7P7J = Sea Monsters: A Prehistoric Adventure RC8E7D = Crash: Mind Over Mutant RC8P7D = Crash: Mind Over Mutant RC8X7D = Crash: Mind Over Mutant RC9PGN = CID: The Dummy RCAE78 = Cars RCAJ78 = Cars RCAP78 = Cars RCAX78 = Cars RCAY78 = Cars RCBE52 = Cabela's Big Game Hunter RCBP52 = Cabela's Big Game Hunter RCCE5G = Cooking Mama: Cook Off RCCJC0 = Cooking Mama RCCPGT = Cooking Mama RCCR78 = Guitar Hero III Custom: Coheed and Cambria RCDD52 = Call of Duty 3 RCDE52 = Call of Duty 3 RCDP52 = Call of Duty 3 RCDX52 = Call of Duty 3 RCEE5Z = Mini Desktop Racing RCEPUG = Mini Desktop Racing RCEXUG = Mini Desktop Racing RCFE41 = Cosmic Family RCFP41 = Cosmic Family RCGE54 = Carnival Games RCGP54 = Carnival Games RCHC52 = Guitar Hero III Custom : Guitar Hero II RCHEAF = We Cheer RCHJAF = We Cheer RCHPAF = We Cheer RCHPGT = We Cheer RCIE41 = CSI: Hard Evidence RCIP41 = CSI: Hard Evidence RCJE8P = The Conduit RCJP8P = The Conduit RCKPGN = Alan Hansen's Sports Challenge RCLE4Q = Disney's Chicken Little: Ace in Action RCLP4Q = Chicken Little: Ace In Action RCOC99 = Meitantei Conan: Tsuioku no Mirage RCOJ99 = Meitantei Conan: Tsuioku no Mirage RCOK99 = Detective Conan: Case Closed: The Mirapolis Investigation RCOKZF = Case Closed: The Mirapolis Investigation RCOPNP = Case Closed: The Mirapolis Investigation RCPE18 = Kororinpa: Marble Mania RCPJ18 = Kororinpa RCPP18 = Kororinpa RCQEDA = Penny Racers Party: Turbo-Q Speedway RCQJDA = Choro Q RCRE5D = Cruis'n RCRP5D = Cruis'n RCSE20 = Chicken Shoot RCSP20 = Chicken Shoot RCSP7J = Chicken Shoot RCTE5Z = Counter Force RCTP5Z = Counter Force RCTPGT = Counter Force RCUE52 = Cabela's Legendary Adventures RCUP52 = Cabela's Legendary Adventures RCVE41 = Far Cry: Vengeance RCVP41 = Far Cry: Vengeance RCXE78 = All Star Cheer Squad RCXP78 = All Star Cheerleader RCXX78 = All Star Cheerleader RCYPGN = Cheggers Party Quiz RD2E41 = Red Steel 2 RD2J41 = Red Steel 2 RD2K41 = Red Steel 2 RD2P41 = Red Steel 2 RD2X41 = Red Steel 2 RD4EA4 = Dance Dance Revolution: Hottest Party 2 RD4JA4 = Dance Dance Revolution: Furu Furu Party RD4PA4 = Dance Dance Revolution: Hottest Party 2 RD6EE9 = Animal Kingdom: Wildlife Expedition RD6J8N = Doubutu Kisoutengai RD6PNP = SAFAR'Wii RD8E52 = Dancing with the Stars RD9J18 = Sudoku RDAE52 = Dancing with the Stars: We Dance! RDBE70 = Dragon Ball Z: Budokai Tenkaichi 2 RDBJAF = Dragon Ball Z: Sparking! NEO RDBP70 = Dragon Ball Z: Budokai Tenkaichi 2 RDBPAF = Dragon Ball Z: Budokai Tenkaichi 2 RDCE78 = Deadly Creatures RDCP78 = Deadly Creatures RDDEA4 = Dance Dance Revolution: Hottest Party RDDJA4 = Dance Dance Revolution: Hottest Party RDDPA4 = Dance Dance Revolution Hottest Party RDEJ0A = Zenkoku Dekotora Matsuri RDFE41 = Shaun White Snowboarding: Road Trip RDFP41 = Shaun White Snowboarding: Road Trip RDGEA4 = Castlevania Judgment RDGJA4 = Akumajou Dracula Judgment RDGPA4 = Castlevania Judgment RDHE78 = Destroy All Humans! Big Willy Unleashed RDHP78 = Destroy All Humans! Big Willy Unleashed RDIE41 = The Dog Island RDIJG2 = The Dog Island RDIP41 = The Dog Island RDJE4F = Death Jr.: Root of Evil RDJP4F = Death Jr.: Root of Evil RDKE01 = Donkey Kong: Barrel Blast RDKJ01 = Donkey Kong Taru Jet Race RDKP01 = Donkey Kong: Jet Race RDLE5G = Spy Fox in Dry Cereal RDLP70 = Spy Fox In Dry Cereal RDME6K = Domino Rally RDMJ8N = Go! Go! Minon RDMPHZ = Minon: Everyday Hero RDNEA4 = Dance Dance Revolution: Disney Grooves RDOE41 = Petz Dogz 2 RDOJ41 = Dog To Mahou No Boushi RDOP41 = Dogz RDOX41 = Dogz RDPE54 = Dora Saves the Snow Princess RDPP54 = Dora Saves the Snow Princess RDPX54 = Dora Saves the Snow Princess RDQEGD = Dragon Quest Swords: The Masked Queen and The Tower of Mirrors RDQJGD = Dragon Quest Swords: Kamen no Joou to Kagami no Tou RDQPGD = Dragon Quest Swords: The Masked Queen and the Tower of Mirrors RDREA4 = Dewy's Adventure RDRJA4 = Dewy's Adventure RDRPA4 = Dewy's Adventure RDSE70 = Dragon Ball Z: Budokai Tenkaichi 3 RDSJAF = Dragon Ball Z: Sparking! METEOR RDSPAF = Dragon Ball Z: Budokai Tenkaichi 3 RDSZ70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino RDTEAF = Tamagotchi: Party On! RDTJAF = Tamagotchi Pikadai RDTPAF = Tamagotchi: Party On! RDUE01 = DU Super Mario Bros. : Find That Princess RDUJDQ = Sugorochronicle Migite Ni Ken Wo Hidarite Ni Saikoro Wo RDVE41 = Driver: Parallel Lines RDVP41 = Driver: Parallel Lines RDWEG9 = Dragon Blade: Wrath of Fire RDWJG9 = Dragon Blade: Wrath Of Fire RDWPG9 = Dragon Blade: Wrath Of Fire RDXE18 = Deca Sports RDXJ18 = Deca Sporta RDXKA4 = Deca Sporta RDXP18 = Sports Island RDYEGN = CID: The Dummy RDZJ01 = Disaster: Day of Crisis RDZP01 = Disaster: Day of Crisis RE3ENR = WWII Aces RE4E08 = Resident Evil Archives: Resident Evil RE4J08 = Biohazard RE4P08 = Resident Evil Archives: Resident Evil RE5PAF = The Munchables RE6PRT = Summer Challenge: Athletics Tournament RE7PNK = Hunting Challenge RE8J99 = Katekyoo Hitman Reborn Kindan No Yami No Delta REAE69 = Celebrity Sports Showdown REAF69 = Celebrity Sports Showdown REAP69 = Celebrity Sports Showdown REBE4Z = Mr Bean's Wacky World of Wii REBPMT = Mr Bean's Wacky World of Wii RECE6K = Spy Games: Elevator Mission RECP6K = Spy Games: Elevator Mission REDE41 = Red Steel REDJ41 = Red Steel REDP41 = Red Steel REFP41 = My French Coach: Improve Your French REGE36 = Emergency Mayhem REGP36 = Emergency Mayhem REHE41 = Emergency Heroes REHP41 = Emergency Heroes REJEAF = Active Life: Extreme Challenge REJJAF = Family Trainer 2 REJPAF = Family Trainer: Extreme Challenge REKE41 = Gold's Gym: Cardio Workout REKJ2N = Shape Boxing Wii De Enjoy Diet REKP41 = My Fitness Coach: Cardio Workout REKU41 = Gold's Gym: Cardio Workout RELEA4 = Elebits RELJA4 = Elebits RELKA4 = Elebits RELPA4 = Eledees RELSAB = Sonic Adventure DX: Director's Cut (Preview Prototype) REMJ8P = Doraemon Wii Himitsu Douguou Ketteisen RENE8P = Sonic and the Black Knight RENJ8P = Sonic and the Black Knight RENP8P = Sonic and the Black Knight REQE54 = Go Diego Go! Safari Rescue REQP54 = Go Diego Go! Safari Rescue REQX54 = Go Diego Go! Safari Rescue REQY54 = Go Diego Go! Safari Rescue RESP41 = My Spanish Coach: Improve Your Spanish RETJAF = Ennichi No Tatsujin REUPNK = My Body Coach REVJ8P = Imabi Kisô: Kaimei Hen REVJBP = Imabikisou: Kaimei Hen REWFMR = My Horse Club: On the Trail of the Mysterious Appaloosa REWXMR = My Horse Club: On the Trail of the Mysterious Appaloosa REWYMR = My Horse Club: On the Trail of the Mysterious Appaloosa REXE01 = Excite Truck REXJ01 = Excite Truck REXP01 = Excite Truck REYE4Q = Disney Sing It: High School Musical 3 Senior Year REYP4Q = Disney Sing It: High School Musical 3 REYX4Q = Disney Sing It: High School Musical 3 REZEJJ = Fritz Chess REZPKM = Fritz Chess RF2E54 = Fantastic Four: Rise of the Silver Surfer RF2P54 = Fantastic Four: Rise of the Silver Surfer RF3E52 = Ferrari Challenge: Trofeo Pirelli RF3P6M = Ferrari Challenge RF4E36 = Super Fruit Fall RF4P6M = Super Fruit Fall RF7J08 = Tatsunoko vs. Capcom: Cross Generation of Heroes RF8E69 = FIFA Soccer 08 RF8J13 = FIFA 08 RF8K69 = FIFA 08 RF8P69 = FIFA 08 RF8X69 = FIFA 08 RF8Y69 = FIFA 08 RF9E69 = FIFA Soccer 09 All-Play RF9J13 = FIFA 09 All-Play RF9K69 = FIFA 09 All-Play RF9P69 = FIFA 09 All-Play RF9X69 = FIFA 09 All-Play RF9Y69 = FIFA 09 All-Play RFAEAF = Active Life: Outdoor Challenge RFAJAF = Family Trainer: Athletic World RFAPAF = Family Trainer RFBE01 = Endless Ocean RFBJ01 = Forever Blue RFBP01 = Endless Ocean RFCEGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFCJGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFCPGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFEE01 = Fire Emblem: Radiant Dawn RFEJ01 = Fire Emblem Akatsuki No Megami RFEP01 = Fire Emblem: Radiant Dawn RFFEGD = Final Fantasy Crystal Chronicles: Echoes of Time RFFJGD = Final Fantasy Crystal Chronicles: Echoes of Time RFFPGD = Final Fantasy Crystal Chronicles: Echoes of Time RFJJAF = Family Jockey RFKE41 = My Fitness Coach RFKJ41 = My Fitness Coach RFKP41 = My Fitness Coach: Get In Shape RFKX41 = My Fitness Coach: Get In Shape RFLE69 = Madden NFL 09 All-Play RFLP69 = Madden NFL 09 All-Play RFLPWK = Wii Freeloader RFMJAF = Pro Yakyuu Family Stadium RFNE01 = Wii Fit RFNJ01 = Wii Fit RFNK01 = Wii Fit RFNP01 = Wii Fit RFNW01 = Wii Fit RFOE52 = Spider-Man: Friend or Foe RFOP52 = Spider-Man: Friend or Foe RFOX52 = Spider-Man: Friend or Foe RFPE01 = Wii Fit Plus RFPJ01 = Wii Fit Plus RFPK01 = Wii Fit Plus RFPP01 = Wii Fit Plus RFPR01 = Wii Fit Plus RFPW01 = Wii Fit Plus RFQE69 = FaceBreaker K.O. Party RFQJ13 = FaceBreaker K.O. Party RFQJ69 = FaceBreaker K.O. Party RFQK69 = FaceBreaker: K.O. Party RFQP69 = FaceBreaker: K.O. Party RFRE5G = Furu Furu Park RFRJC0 = Furu Furu Park RFSEEB = Shiren the Wanderer RFSJ8P = Fushigi No Dungeon: Furai No Shiren 3 RFTE70 = Backyard Football RFTP70 = Backyard Football '08 RFUJA4 = Mahjong Kakutou Club Wii: Wi-fi Taiou RFVE52 = Monkey Mischief! Party Time RFVP52 = Monkey Mischief! 20 Games RFWE5Z = Safari Adventures Africa RFWPNK = Safari Adventures Africa RFYFMR = Fort Boyard RFZE41 = Imagine Fashion Party RFZP41 = Imagine Fashion Idol RG0E52 = Guitar Hero III Custom : Green Day Plus RG1552 = Guitar Hero III Custom : Weird Al Yankovic RG1E52 = Guitar Hero III Custom : Revenge RG2E52 = Guitar Hero III Custom : The Beatles Plus RG2EXS = Guilty Gear XX Accent Core RG2JJF = Guilty Gear XX Accent Core RG2PGT = Guilty Gear XX Accent Core RG2PXS = Guilty Gear XX Accent Core RG3E52 = Guitar Hero III Custom : Muse and Rush RG4152 = Guitar Hero III Custom : Sum 41 RG4E52 = Guitar Hero Mayan Apocalypse RG4JC0 = Let's Go By Train Shinkansen EX RG5EWR = Guinness World Records: The Videogame RG5PWR = Guinness World Records: The Videogame RG6E69 = Boogie SuperStar RG6P69 = Boogie SuperStar RG7EQH = City Builder RG8E41 = Petz Sports RG8P41 = Petz Sports: Dog Playground RG9E52 = Guitar Hero III Custom : Anarchy RG9E54 = Carnival Games: Mini Golf RG9P54 = Carnival Games: Mini Golf RGAE8P = Planet 51: The Game RGAP8P = Planet 51: The Game RGBE08 = Harvey Birdman: Attorney at Law RGBP08 = Harvey Birdman: Attorney at Law RGCEXS = MiniCopter: Adventure Flight RGCJJF = Petitcopter Wii Adventure Flight RGCM52 = Guitar Hero III Custom : Metallica RGCPGT = Radio Helicopter RGCS52 = Guitar Hero III Custom : ClasSick Edition RGDEA4 = Target: Terror RGDPA4 = Target: Terror RGEJJ9 = The World Of Golden Eggs Norinori Rhythm RGEK52 = Guitar Hero III Custom: Slipknot RGFE69 = The Godfather: Blackhand Edition RGFF69 = The Godfather: Blackhand Edition RGFI69 = The Godfather: Blackhand Edition RGFP69 = The Godfather: Blackhand Edition RGFS69 = The Godfather: Blackhand Edition RGGE52 = Guitar Hero III Custom : Rock The Games RGGJAF = Gegege No Kitarou Youkai Daiundoukai RGHC20 = Guitar Hero III Custom : Fail Edition RGHE51 = Guitar Hero III Custom : Aspero RGHE52 = Guitar Hero III: Legends of Rock RGHE60 = Guitar Hero III Custom: WTF Custom RGHE61 = I Fought The Law - GH3 RGHE62 = Sweet Home Alabama - GH3 RGHE69 = Guitar Hero III Custom : Legends of METAL RGHEMR = Guitar Hero III Custom : Modern Rock RGHI52 = Guitar Hero III Custom: Chimba RGHJ52 = Guitar Hero III Legends of Rock RGHK52 = Guitar Hero III Legends of Rock RGHP52 = Guitar Hero III: Legends of Rock RGHPOH = SingItStar Italian Greatest Hits RGHPS2 = Guitar Hero III Custom : J-Music RGHX52 = Guitar Hero III Custom: Anime's Alex Chan RGIJC8 = G1 Jockey Wii RGIPC8 = G1 Jockey Wii RGJE4Z = George of the Jungle: Search for the Secret RGJP7U = George of the Jungle: Search for the Secret RGKE52 = Guitar Hero III Custom : KoRn RGKENR = Kidz Sports: Crazy Golf RGKPNR = Crazy Mini Golf RGLE7D = Geometry Wars: Galaxies RGLP7D = Geometry Wars: Galaxies RGME5D = The Grim Adventures of Billy & Mandy RGMP5D = The Grim Adventures of Billy & Mandy RGNJAF = Gintama Yorozuya Tuve RGOJJ9 = The World of Golden Eggs Nissan Note Version RGPJAF = Anime Slot Revolution Pachi-Slot Kidou Senshi Gundam II Ai Senshi Hen RGQE70 = Ghostbusters: The Video Game RGQP70 = Ghostbusters: The Video Game RGRM52 = Guitar Hero III Custom: Rock & Metal RGSE8P = Ghost Squad RGSJ8P = Ghost Squad RGSP8P = Ghost Squad RGTE41 = GT Pro Series RGTJBL = GT Pro Series RGTP41 = GT Pro Series RGVE52 = Guitar Hero: Aerosmith RGVE99 = Guitar Hero Aerosmith Custom: NOT Aerosmith but... RGVJ52 = Guitar Hero: Aerosmith RGVP52 = Guitar Hero: Aerosmith RGWE41 = Rabbids Go Home RGWJ41 = Rabbids Go Home RGWP41 = Rabbids Go Home RGWX41 = Rabbids Go Home RGXE5D = Game Party RGXEFN = Guitar Hero III Custom: Meteo Last Custom RGXM52 = Guitar Hero III Custom : xMxExTxAxLx's Edition RGXP5D = Game Party RGYE5Z = Action Girlz Racing RGYPUG = Action Girlz Racing RGZC52 = Guitar Hero III Custom : Led Zeppelin RGZE52 = Guitar Hero III Custom : Shred Edition RGZE70 = Godzilla Unleashed RGZP70 = Godzilla Unleashed RH2E41 = Hell's Kitchen: The Video Game RH2P41 = Hell's Kitchen RH3E4Q = High School Musical 3: Senior Year Dance! RH3J4Q = High School Musical 3: Senior Year Dance! RH3P4Q = High School Musical 3: Senior Year Dance! RH4XUG = Hamster Heroes RH5EVN = Horse Life Adventures RH5PKM = Horse Life 2 RH6E69 = Harry Potter and the Half-Blood Prince RH6K69 = Harry Potter and the Half Blood Prince RH6P69 = Harry Potter and the Half-Blood Prince RH7J8P = Jissen Pachislot Hisshouhou! Sammy's Collection Hokuto no Ken Wii RH8E4F = Tomb Raider: Underworld RH8JEL = Tomb Raider: Underworld RH8P4F = Tomb Raider: Underworld RH8X4F = Tomb Raider: Underworld RH9JC8 = Harukanaru Toki no Naka de 4 RHAE01 = Wii Play RHAJ01 = Hajimete no Wii RHAK01 = Wii Play RHAP01 = Wii Play RHAW01 = Wii Play RHCE52 = The History Channel: Battle for the Pacific RHCP52 = The History Channel: Battle for the Pacific RHD222 = The House of The Dead 2 RHD333 = The House of the Dead 3 RHDE8P = The House of the Dead 2 & 3 Return RHDJ8P = The House of The Dead 2 & 3 Return RHDP8P = The House of the Dead 2 & 3 Return RHEEJJ = Professor Heinz Wolff's Gravity RHEPKM = Professor Heinz Wolff's Gravity RHFE5D = Happy Feet RHFP5D = Happy Feet RHGH52 = Guitar Hero III Custom : RandomHero's RHGP6Z = Agent Hugo: Lemoon Twist RHGX6Z = Agent Hugo: Lemoon Twist RHHJ8J = Suzumiya Haruhi no Gekidou RHIEXJ = Victorious Boxers: Revolution RHIJ41 = Hajime No Ippo Revolution RHIJJ9 = Hajime No Ippo Revolution RHIP41 = Victorious Boxers Challenge RHJJ13 = Ginsei Table Games Wii RHKE18 = Help Wanted: 50 Wacky Jobs RHKJ18 = Hataraku Hit RHKP18 = Job Island: Hard Working People RHLE4Z = World Championship Poker Featuring Howard Lederer: All-In RHLPGT = World Championship Poker Featuring Howard Lederer: All-In RHMEE9 = Harvest Moon: Magical Melody RHMP99 = Harvest Moon: Magical Melody RHNE70 = My Horse & Me RHNP70 = My Horse & Me RHOE8P = The House of the Dead: Overkill RHOJ8P = The House of The Dead: Overkill RHOP8P = The House of the Dead: Overkill RHPJ8N = Akko De Pon! Ikasama Hourouki RHQE4Q = Hannah Montana: Spotlight World Tour RHQP4Q = Hannah Montana: Spotlight World Tour RHQX4Q = Hannah Montana: Spotlight World Tour RHQY4Q = Hannah Montana: Spotlight World Tour RHRJ99 = Kateikyou Hitman Reborn! Dream Hyper Battle! Wii RHSE36 = Heatseeker RHSP36 = Heatseeker RHSX36 = Heatseeker RHSY36 = Heatseeker RHTE54 = Manhunt 2 RHTP54 = Manhunt 2 RHUE20 = Skate City Heroes RHUP20 = Skate City Heroes RHUP7J = Skate City Heroes RHVE5Z = Crazy Chicken Tales RHVPFR = Crazy Chicken Tales RHWE52 = Hot Wheels: Beat That! RHWP52 = Hot Wheels: Beat That! RHXE78 = Battle of the Bands RHXP78 = Battle of the Bands RHYJAF = Haneru no Tobira Wii RHZE41 = Petz Horsez 2 RHZP41 = Pippa Funnell: Ranch Rescue RI1POH = SingItStar Italian Party RI2E4Q = High School Musical: Sing It! RI2P4Q = Disney Sing It: High School Musical RI2POH = SingItStar Italian Party vol. 2 RI3E5D = The Ant Bully RI3P5D = The Ant Bully RI3POH = SingItStar Italian Top.it RI6ENR = Summer Sports 2: Island Sports Party RI6P41 = Summer Sports Party RI7E4Z = Monster Mayhem: Build and Battle RI8E41 = Brothers In Arms: Road to Hill 30 RI8P41 = Brothers In Arms: Road To Hill 30 RI9EGT = Diva Girls: Divas on Ice RI9PGT = Diva Girls: Princess On Ice RIAE52 = Ice Age: Dawn of the Dinosaurs RIAI52 = Ice Age 3: Dawn of the Dinosaurs RIAP52 = Ice Age 3: Dawn of the Dinosaurs RIBES5 = Igor the Game RIBPKM = Igor: The Game RICENR = Iron Chef America: Supreme Cuisine RIDE20 = Smiley World: Island Challenge RIDP7J = Smiley World: Island Challenge RIEEA4 = Karaoke Revolution Presents: American Idol Encore RIFEA4 = Karaoke Revolution Presents: American Idol Encore 2 RIGE54 = Go Diego Go! Great Dinosaur Rescue RIGP54 = Go, Diego, Go! Great Dinosaur Rescue RIHE8P = The Incredible Hulk RIHP8P = The Incredible Hulk RIIEQH = Kart Racer RIIPNG = Kart Racer RIIV = Riivolution RIJE69 = G.I. JOE: The Rise of Cobra RIJP69 = G.I. JOE: The Rise of Cobra RIKEQH = Truck Racer RIKPNG = Truck Racer RILJ18 = Puzzle Series Vol. 2: Illust Logic + Colorful Logic RIME36 = Impossible Mission RIMP6M = Impossible Mission RINE08 = Dead Rising: Chop Till You Drop RINJ08 = Dead Rising Zombie No Ikenie RINP08 = Dead Rising: Chop Till You Drop RIOPSU = Horrible Histories: Ruthless Romans RIPEAF = One Piece: Unlimited Adventure RIPJAF = One Piece: Unlimited Adventure RIPPAF = One Piece Unlimited Cruise 1: The Treasure Beneath the Waves RIQPUJ = Dancing on Ice RIRE8P = Iron Man RIRP8P = Iron Man RITFMR = Intervilles, le jeu officiel RIUJAF = One Piece Unlimited Cruise 2: Awakening of a Hero RIUPAF = One Piece Unlimited Cruise 2: Awakening of a Hero RIVEXJ = Ivy The Kiwi? RIVJAF = Ivy the Kiwi? RIVP99 = Ivy The Kiwi? RIWENR = Burger Island RIXE20 = Dodge Racing: Charger vs. Challenger RIXP7J = Dodge Racing: Charger vs Challenger RIYE52 = Space Camp RIYP52 = Space Camp RIZENR = Indianapolis 500 Legends RJ2E52 = 007: Quantum of Solace RJ2JGD = 007: Quantum of Solace RJ2P52 = 007: Quantum of Solace RJ3E20 = Jeep Thrills RJ3P7J = Jeep Thrills RJ4ENR = Jewel Master: Cradle of Rome RJ4PRM = Jewel Master: Cradle of Rome RJ6E69 = MySims Sky Heroes RJ6P69 = MySims Sky Heroes RJ7FWP = Télé 7 Jeux: Mots Fléchés RJ8E64 = Indiana Jones and the Staff of Kings RJ8P64 = Indiana Jones and the Staff of Kings RJ9E5Z = thinkSMART Family RJ9FMR = Think Logic Trainer RJ9PFR = Think Logic Trainer RJ9XML = Think Logic Trainer RJAD52 = Call of Duty: Modern Warfare - Reflex Edition RJAE52 = Call of Duty: Modern Warfare - Reflex Edition RJAP52 = Call of Duty: Modern Warfare - Reflex Edition RJAX52 = Call of Duty: Modern Warfare - Reflex Edition RJBJAF = Daikaijuu Battle Ultra Coliseum RJCE52 = Score International Baja 1000: World Championship Offroad Racing RJCP52 = Score International Baja 1000: World Championship Offroad Racing RJDPKM = My Animal Centre RJEE70 = Jenga World Tour RJEP70 = Jenga World Tour RJFE5G = Jillian Michaels' Fitness Ultimatum 2009 RJFP5G = Jillian Michaels' Fitness Ultimatum 2009 RJFPKM = Jillian Michaels' Fitness Ultimatum 2009 RJGJDA = Jinsei Game Wii RJHE52 = Madagascar Kartz RJHP52 = Madagascar Kartz RJIP6M = Ferrari: The Race Experience RJJE8P = Jambo! Safari Animal Rescue RJJG52 = Guitar Hero III Custom : JJ-KwiK's Edition RJJP8P = Jambo! Safari RJMERS = Jumper: Griffin's Story RJMPRS = Jumper: Griffin's Story RJNE20 = Build 'N Race RJOEXJ = Ju-on: The Grudge RJOJJ9 = Kyoufu Taikan Juon RJOP99 = Ju-On The Grudge RJPJA4 = Jikkyou Powerful Pro Yakyuu Wii RJQE5G = Pajama Sam: Don't Fear the Dark RJQP70 = Pajama Sam: No Need to Hide when it's Dark Outside RJREA4 = Dance Dance Revolution: Hottest Party 3 RJRJA4 = Dance Dance Revolution: MUSIC FIT RJRPA4 = Dance Dance Revolution: Hottest Party 3 RJSENR = Kawasaki Jet Ski RJSPNR = Kawasaki Jet Ski RJSPUG = Kawasaki Jet Ski RJSXUG = Kawasaki Jet Ski RJTJ01 = Minna no Joushiki Ryoku TV RJVEGN = Hysteria Hospital: Emergency Ward RJVPGN = Hysteria Hospital: Emergency Ward RJWJEL = Jawa mammoth And A Secret Stone RJXE5G = Go Play Lumberjacks RJXXFR = Go Play Lumberjacks RJYE5Z = Doctor Fizzwizzle's Animal Rescue RJZP7U = SNK Arcade Classics Volume 1 RK2EEB = Trauma Center: New Blood RK2JEB = Trauma Center: New Blood RK2P01 = Trauma Center: New Blood RK3J01 = And-Kensaku RK4JAF = Kekkaishi RK5E01 = Kirby's Epic Yarn RK5J01 = Keito no Kirby RK5K01 = Kirby's Epic Yarn RK5P01 = Kirby's Epic Yarn RK6E18 = Marble Saga: Kororinpa RK6J18 = Kororinpa 2 RK6P18 = Marbles! Balance Challenge RK7J0A = Ougon no Kizuna RK8E54 = Major League Baseball 2K8 RK9EA4 = Karaoke Revolution RK9PA4 = Karaoke Revolution RKAE6K = Ultimate Shooting Collection RKAJMS = Milestone Shooting Collection RKAK8M = Milestone Shooting Collection Karous Wii RKAP6K = Ultimate Shooting Collection RKBE41 = Cranium Kabookii RKBP41 = Cranium Kabookii RKDEEB = Trauma Center: Second Opinion RKDJEB = Trauma Center: Second Opinion RKDJG9 = Kamen Rider: Climax Heroes W RKDP01 = Trauma Center: Second Opinion RKDPEB = Trauma Center: Second Opinion RKEENR = Cate West: The Vanishing Files RKEPGN = Cate West: The Vanishing Files RKEPNR = Cate West: The Vanishing Files RKFEH4 = The King of Fighters Collection: The Orochi Saga RKFKZA = King of Fighters Collection: The Orochi Saga RKFP7U = King of Fighters Collection: The Orochi Saga RKGEGY = Bratz Kidz: Slumber Party RKGPGY = Bratz: Kidz Party RKHE52 = Kung Fu Panda: Legendary Warriors RKHP52 = Kung Fu Panda: Legendary Warriors RKIENR = Kidz Sports: Ice Hockey RKIPUG = Kidz Sports: Ice Hockey RKJJ0Q = 250 Mannin no Kanken Wii de Tokoton Kanji Nou RKKE6K = Heavenly Guardian RKLEG9 = Coraline RKLPG9 = Coraline RKME5D = Mortal Kombat: Armageddon RKMP5D = Mortal Kombat: Armageddon RKNJ2N = Kanken Wii: Kanji Ou Kettei Sen RKOJBL = Relaxuma: Minna de Goyururi Seikatsu RKPE52 = Kung Fu Panda RKPJ52 = Kung Fu Panda RKPK52 = Kung Fu Panda RKPP52 = Kung Fu Panda RKPV52 = Kung Fu Panda RKPY52 = Kung Fu Panda RKQENR = Candace Kane's Candy Factory RKSENR = Kidz Sports: Basketball RKSPUG = Kidz Sports: Basketball RKTENR = Kidz Sports: International Soccer RKTXUG = Kidz Sports: International Football RKVE54 = The BIGS 2 RKVP54 = The Bigs 2: Baseball RKWJ18 = Jigsaw Puzzle Kyo-no Wan Ko RKXE69 = Rock Band RKXP69 = Rock Band RKYE20 = Army Men: Soldiers of Misfortune RKYP20 = Army Men: Soldiers of Misfortune RKYP7J = Army Men: Soldiers of Misfortune RKZEA4 = Lost in Blue: Shipwrecked RKZJA4 = Survival Kids Wii RKZPA4 = Lost in Blue: Shipwrecked RL2E78 = Gallop & Ride! RL2HMN = Horse & Pony: My Riding Stables RL2HMR = Horse & Pony: My Riding Stables RL2PFR = Horse & Pony: My Riding Stables RL3EMJ = Luxor 3 RL4E64 = LEGO Indiana Jones 2: The Adventure Continues RL4P64 = LEGO Indiana Jones 2: The Adventure Continues RL5E52 = iCarly RL5P52 = iCarly RL6E69 = NERF N-Strike Elite RL7E69 = Littlest Pet Shop: Friends RL7P69 = Littlest Pet Shop: Friends RL8E54 = MLB Power Pros 2008 RL9ESD = Guitar Hero Linkin Park RL9PHZ = King of Pool RLADMR = Deal or No Deal: The Banker Is Back RLAE20 = Deal or No Deal RLAPMR = Deal or No Deal: The Banker Is Back RLBEWR = LEGO Batman: The Videogame RLBPWR = LEGO Batman: The Videogame RLCP7J = Love is... in bloom RLDEGY = Legend of the Dragon RLDPFK = Legend Of The Dragon RLEEFS = Ten Pin Alley 2 RLEPFS = Ten Pin Alley 2 RLFE64 = Star Wars The Clone Wars: Lightsaber Duels RLFP64 = Star Wars The Clone Wars: Lightsaber Duels RLGE64 = LEGO Star Wars: The Complete Saga RLGJ52 = LEGO Star Wars: The Complete Saga RLGP64 = LEGO Star Wars: The Complete Saga RLHE52 = Little League World Series Baseball 2008 RLHP52 = Little League World Series Baseball 2008 RLIE64 = LEGO Indiana Jones: The Original Adventures RLIL78 = Guitar Hero 2nd Custom RLIP64 = LEGO Indiana Jones: The Original Adventures RLJEHJ = Line Rider 2: Unbound RLJPKM = Line Rider Freestyle RLKEGY = Code Lyoko: Quest for Infinity RLKPFK = Code Lyoko: Quest for Infinity RLLP70 = Go West: A Lucky Luke Adventure RLMJH4 = Metal Slug Complete RLNEVN = Survivor RLNFMR = Survivor RLNHMR = Survivor RLNIMR = Survivor RLNPMR = Survivor RLPE69 = Littlest Pet Shop RLPP69 = Littlest Pet Shop RLQE52 = Big League Sports RLQP52 = World Championship Sports RLRE4F = Tomb Raider: Anniversary RLRJEL = Tomb Raider: Anniversary RLRP4F = Tomb Raider: Anniversary RLSE8P = Alien Syndrome RLSP8P = Alien Syndrome RLTENR = London Taxi: Rush Hour RLTPNR = London Taxi: Rush Hour RLTXUG = London Taxi: Rush Hour RLUE4Q = Disney's Bolt RLUP4Q = Bolt RLUX4Q = Bolt RLUY4Q = Bolt RLVE78 = Avatar: The Last Airbender RLVP78 = Avatar: The Legend of Aang RLWE78 = Ratatouille RLWJ78 = Ratatouille RLWP78 = Ratatouille RLWW78 = Ratatouille RLWX78 = Ratatouille RLWY78 = Ratatouille RLWZ78 = Ratatouille RLXEMJ = Luxor: Pharaoh's Challenge RLXP36 = Luxor: Pharaoh's Challenge RLYEWR = Looney Tunes: Acme Arsenal RLYPWR = Looney Tunes: Acme Arsenal RLZE4Z = Defendin' De Penguin RLZP4Z = Defendin' De Penguin RLZPXT = Defendin' De Penguin RM2E69 = Medal of Honor: Heroes 2 RM2J13 = Medal of Honor: Heroes 2 RM2P69 = Medal of Honor: Heroes 2 RM2U69 = Medal of Honor: Heroes 2 RM2X69 = Medal of Honor: Heroes 2 RM3E01 = Metroid Prime 3: Corruption RM3J01 = Metroid Prime 3: Corruption RM3P01 = Metroid Prime 3: Corruption RM4E41 = Monster 4x4: World Circuit RM4J41 = Monster 4x4: World Circuit RM4P41 = Monster 4x4: World Circuit RM5E7D = The Mummy: Tomb of the Dragon Emperor RM5P7D = The Mummy: Tomb Of The Dragon Emperor RM6EEB = Baroque RM6P99 = Baroque RM7E4F = Monster Lab RM7P4F = Monster Lab RM8E01 = Mario Party 8 RM8J01 = Mario Party 8 RM8K01 = Mario Party 8 RM8P01 = Mario Party 8 RM9EGM = Mushroom Men: The Spore Wars RM9PGM = Mushroom Men: The Spore Wars RMAE01 = Mario Power Tennis RMAJ01 = Mario Power Tennis RMAP01 = Mario Power Tennis RMBE01 = Mario Super Sluggers RMBJ01 = Super Mario Stadium: Family Baseball RMCC01 = Mario Kart Wii (Custom) RMCE01 = Mario Kart Wii RMCE02 = Wiimms MKW Fun 2010-02.p RMCE03 = Wiimms MKW Fun 2010-10.p RMCE04 = Wiimms MKW Fun 2010-12.p RMCE05 = Wiimms MKW Fun 2010-12.p RMCE06 = Wiimms MKW Fun 2010-12.ntsc RMCE07 = Wiimms MKW Retro 2011-02.ntsc RMCE08 = Wiimms MKW Fun 2011-03.ntsc RMCE09 = Wiimms MKW Fun 2011-06.ntsc RMCE10 = Wiimms MKW Fun 2011-07.ntsc RMCE11 = Wiimms MKW Fun 2011-08.ntsc RMCE12 = Wiimms MKW Fun 2011-11.ntsc RMCE13 = Wiimms MKW Fun 2012-01.ntsc RMCE14 = Wiimms MKW Revival 2012-02.ntsc RMCE15 = Wiimms MKW Boost 2012-03.ntsc RMCE16 = Wiimms MKW Fun 2012-05.ntsc RMCE17 = Wiimms MKW Fun 2012-09.ntsc RMCE18 = Wiimms MKW N64 2012-10.ntsc RMCE19 = Wiimms MKW Fun 2012-12.ntsc RMCE20 = Wiimms MKW Fun 2013-04.ntsc RMCE21 = Wiimms MKW Fun 2013-09.ntsc RMCE22 = Wiimms MKW Fun 2013-10.ntsc RMCE23 = Wiimms MKW Fun 2014-01.ntsc RMCE24 = Wiimms MKW Retro 2014-02.ntsc RMCE25 = Wiimms MKW Fun 2014-04.ntsc RMCE26 = Wiimms MKW Fun 2014-11.ntsc RMCE65 = Mario Kart Wii: Double Dash 64 RMCE66 = Mizy's Texture Pack RMCE67 = Rookie's Texture & Music Pack RMCE68 = Character Kart Wii RMCE69 = Venom Kart Wii RMCE70 = Stickboy Kart Wii RMCE71 = Funky's Riivolution RMCE72 = CtocKart Wii RMCE73 = Mario Kart Adventures RMCE74 = Mario Kart Adventures RMCE75 = Cam, Tom and Troy's CTGP Pack RMCE76 = Pro CT Pack RMCE77 = SpyKid's CT Pack RMCE78 = Mario Kart: Double Dash!! Wii RMCE79 = Super Mario Kart Wii RMCE80 = Mario Kart 64 Wii RMCE81 = Spade's Custom Track Pack RMCE82 = HD's Retro Pack RMCE83 = Glitch Kart Wii RMCE84 = Legend's Awesome CT Pack RMCE85 = Project Double Dash!! RMCE86 = Newer Mario Kart Wii Revolution!: Backward Circuits RMCE87 = Newer Mario Kart Wii Revolution!: Sunset Sun & Dark Moon RMCE88 = Kaizo Kart Wii RMCE89 = Mario Kart Extra RMCE90 = Mario Kart QZW RMCE91 = Medal Kart 64 RMCE92 = MKWLH100's Custom Track Pack RMCE93 = MKW Hack Pack RMCE94 = Custom Track Kart Wii RMCE95 = Soarin's CT Pack X RMCE96 = Mario Kart 6 RMCE97 = Mario Kart Wii Awesomeness 2 RMCE98 = Mario Kart Wii Awesomeness RMCE99 = ReedyCustomPack Ultimate RMCEA1 = Mario Kart Adventures v0.8 RMCECT = Mario Kart Wii CTGP Revolution RMCEDK = Darky Kart Wii RMCEG2 = Mario Kart Wii CTGP Revolution RMCEGP = Mario Kart Wii CTGP Revolution RMCEWS = Wine's CT Pack RMCJ01 = Mario Kart Wii RMCJ12 = Wiimms MKW Fun 2011-11 RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCK01 = Mario Kart Wii RMCP01 = Mario Kart Wii RMCP02 = Wiimms MKW Fun 2010-02.p RMCP03 = Wiimms MKW Fun 2010-10.p RMCP04 = Wiimms MKW Fun 2010-12.p RMCP05 = Custom Mario Kart Wii RMCP06 = Wiimms MKW Fun 2010-12.pal RMCP07 = Wiimms MKW Retro 2011-02.pal RMCP08 = Wiimms MKW Fun 2011-03.pal RMCP09 = Wiimms MKW Fun 2011-06.pal RMCP10 = Wiimms MKW Fun 2011-07.pal RMCP11 = Wiimms MKW Fun 2011-08.pal RMCP12 = Wiimms MKW Fun 2011-11.pal RMCP13 = Wiimms MKW Fun 2012-01.pal RMCP14 = Wiimms MKW Revival 2012-02.pal RMCP15 = Wiimms MKW Boost 2012-03.pal RMCP16 = Wiimms MKW Fun 2012-05.pal RMCP17 = Wiimms MKW Fun 2012-09.pal RMCP18 = Wiimms MKW N64 2012-10.pal RMCP19 = Wiimms MKW Fun 2012-12.pal RMCP20 = Wiimms MKW Fun 2013-04.pal RMCP21 = Wiimms MKW Fun 2013-09.pal RMCP22 = Wiimms MKW Fun 2013-10.pal RMCP23 = Wiimms MKW Fun 2014-01.pal RMCP24 = Wiimms MKW Retro 2014-02.pal RMCP25 = Wiimms MKW Fun 2014-04.pal RMCP26 = Wiimms MKW Fun 2014-11.pal RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCX = Mario Kart Wii CTGP Revolution Channel RMDE69 = Madden NFL 07 RMDP69 = Madden NFL 07 RMEJDA = Major Dream RMFE68 = AMF Bowling Pinbusters! RMFP68 = AMF Bowling Pinbusters! RMGC01 = Super Mario Galaxy RMGE01 = Super Mario Galaxy RMGE52 = Guitar Hero III Custom : Megadeth RMGJ01 = Super Mario Galaxy RMGK01 = Super Mario Galaxy RMGP01 = Super Mario Galaxy RMGR01 = Super Mario Galaxy RMHC08 = Monster Hunter Tri (Custom) RMHE08 = Monster Hunter Tri RMHJ08 = Monster Hunter Tri RMHP08 = Monster Hunter Tri RMIE20 = Margot's Word Brain RMIP7J = Margot's Word Brain RMJJC8 = Mah-jong Rally Wii RMKE01 = Mario Sports Mix RMKE02 = Custom Kart 1 RMKJ01 = Mario Sports Mix RMKP01 = Mario Sports Mix RMLEH4 = Metal Slug Anthology RMLJH4 = Metal Slug Complete RMLK52 = Metal Slug Complete RMLP7U = Metal Slug Anthology RMLPH4 = Metal Slug Anthology RMME7U = Mercury Meltdown Revolution RMMJ7U = Tama-run RMMP52 = Guitar Hero III Custom : Metal Mayhem RMMP7U = Mercury Meltdown Revolution RMNDFR = My Pet Hotel RMNHMN = My Pet Hotel RMNHMR = My Pet Hotel RMNPFR = My Pet Hotel RMOE52 = Monster Jam RMOP52 = Monster Jam RMPE54 = MLB Power Pros RMPP54 = MLB Power Pros RMQENR = Myth Makers: Orbs of Doom RMQPUG = Myth Makers: Orbs of Doom RMQXUG = Myth Makers: Orbs of Doom RMRE5Z = Cocoto Magic Circus RMRPNK = Cocoto Magic Circus RMRXNK = Cocoto Magic Circus RMSE52 = Marvel: Ultimate Alliance 2 RMSP52 = Marvel: Ultimate Alliance 2 RMTJ18 = Momotarô Dentetsu 16 RMUE52 = Marvel: Ultimate Alliance RMUJ2K = Marvel: Ultimate Alliance RMUP52 = Marvel: Ultimate Alliance RMVE69 = Medal of Honor: Vanguard RMVP69 = Medal of Honor: Vanguard RMVX69 = Medal of Honor: Vanguard RMWE20 = M&M's Kart Racing RMWP20 = M&M's Kart Racing RMXE78 = MX vs. ATV: Untamed RMXF78 = MX vs. ATV: Untamed RMXP78 = MX vs. ATV: Untamed RMYE5Z = Myth Makers: Super Kart GP RMYPUG = Myth Makers: Super Kart GP RMYXUG = Myth Makers: Super Kart GP RMZE5Z = Myth Makers: Trixie in Toyland RMZPUG = Myth Makers: Trixie in Toyland RN2EAF = Namco Museum Remix RN2K70 = Namco Museum Remix RN2P70 = Namco Museum Remix RN3E78 = Nicktoons: Attack of the Toybots RN3J78 = Nicktoons: Attack of the Toybots RN3P78 = Nicktoons: Attack of the Toybots RN3X78 = Nicktoons: Attack Of The Toybots RN4E41 = Dawn of Discovery RN4P41 = Anno: Create A New World RN5E78 = The Naked Brothers Band: The Video Game RN5P78 = The Naked Brothers Band: The Video Game RN6ENR = North American Hunting Extravaganza RN6P7J = North American Hunting Extravaganza RN7E78 = Neighborhood Games RN7P78 = Big Family Games RN8JC8 = Nobunaga no Yabou Kakushin with Power-Up Kit RN9E4F = Escape from Bug Island RN9JEL = Necro-Nesia RN9P4F = Escape From Bug Island RNAE69 = NCAA Football 09 RNBE69 = NBA Live 08 RNBP69 = NBA Live 08 RNBX69 = NBA Live 08 RNCEH4 = SNK Arcade Classics Volume 1 RNCPH4 = SNK Arcade Classics Volume 1 RNDJAF = Nodame Cantabile Dream Orchestra RNEEDA = Naruto Shippuden: Clash of Ninja Revolution 3 RNEJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX 3 RNEPDA = Naruto Shippuden: Clash of Ninja Revolution 3 RNFE69 = Madden NFL 08 RNFP69 = Madden NFL 08 RNGJ99 = Negima!? Neo-Pactio Fight!! RNHE41 = No More Heroes RNHJ99 = No More Heroes RNHK8M = No More Heroes RNHP41 = No More Heroes RNHP99 = No More Heroes RNIPGT = Mind, Body & Soul: Nutrition Matters RNJE4F = Mini Ninjas RNJP4F = Mini Ninjas RNKE69 = NERF N-Strike RNKP69 = NERF N-Strike RNLE54 = NHL 2K9 RNLP54 = NHL 2K9 RNME5Z = Ninjabread Man RNMPUG = Ninjabread Man RNMXUG = Ninjabread Man RNNE4Q = The Chronicles of Narnia: Prince Caspian RNNJ4Q = The Chronicles of Narnia: Prince Caspian RNNP4Q = The Chronicles of Narnia: Prince Caspian RNNX4Q = The Chronicles of Narnia: Prince Caspian RNNY4Q = The Chronicles of Narnia: Prince Caspian RNNZ4Q = The Chronicles of Narnia: Prince Caspian RNOJ01 = Another Code R Kioku no Tobira RNOP01 = Another Code: R - A Journey into Lost Memories RNPE69 = Need for Speed: ProStreet RNPJ13 = Need for Speed: ProStreet RNPK69 = Need for Speed: ProStreet RNPP69 = Need for Speed: ProStreet RNPX69 = Need for Speed: ProStreet RNPY69 = Need for Speed: ProStreet RNRE41 = Nitro Bike RNRJ41 = Nitro Bike RNRP41 = Nitro Bike RNSD69 = Need for Speed: Carbon RNSE69 = Need for Speed Carbon RNSF69 = Need for Speed: Carbon RNSJ13 = Need for Speed: Carbon RNSP69 = Need for Speed Carbon RNSX69 = Need for Speed: Carbon RNUE8P = Nancy Drew: The White Wolf of Icicle Creek RNVE5Z = Anubis II RNVP5Z = Anubis II RNVPUG = Anubis II RNVXUG = Anubis II RNWJAF = Namco Carnival RNWKAF = Namco Museum Remix RNXEDA = Naruto: Clash of Ninja Revolution RNXJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX RNXPDA = Naruto: Clash of Ninja Revolution RNYEDA = Naruto: Clash of Ninja Revolution 2 RNYJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX 2 RNYPDA = Naruto: Clash of Ninja Revolution 2 RNZE69 = Ninja Reflex RNZJ13 = Ninja Reflex RNZK69 = Ninja Reflex RNZP69 = Ninja Reflex RO2E7N = Ford Racing Off Road RO2P7N = Off Road RO3EXJ = Little King's Story RO3J99 = Little King's Story RO3P99 = Little King's Story RO4JDA = Toshinden RO5E52 = Hot Wheels: Battle Force 5 RO5P52 = Hot Wheels: Battle Force 5 RO7E7D = Legend of Spyro: The Eternal Night RO7P7D = The Legend of Spyro: The Eternal Night RO8E7D = Legend of Spyro: Dawn of the Dragon RO8P7D = The Legend of Spyro: Dawn of the Dragon RO8X7D = The Legend of Spyro: Dawn of the Dragon RO9EFS = Aqua Panic! RO9PNK = Aqua Panic! ROAE36 = Overlord: Dark Legend ROAP36 = Overlord: Dark Legend ROBE7U = Obscure: The Aftermath ROBPPL = Obscure 2 ROCE5Z = Cocoto Kart Racer ROCPNK = Cocoto Kart Racer RODE01 = WarioWare: Smooth Moves RODJ01 = WarioWare: Smooth Moves RODK01 = WarioWare: Smooth Moves RODP01 = WarioWare: Smooth Moves ROEEJZ = Hotel for Dogs ROEPGT = Hotel For Dogs ROFE5Z = Offroad Extreme Special Edition ROFPUG = Offroad Extreme! ROFXUG = Offroad Extreme! ROGE78 = Tak and the Guardians of Gross ROGP78 = Tak and the Guardians of Gross ROHJAF = Happy Dance Collection ROJE52 = Rapala: We Fish ROJP52 = Rapala: We Fish ROKJ18 = Karaoke Joysound Wii ROLE8P = Mario & Sonic at the Olympic Winter Games ROLJ01 = Mario & Sonic at the Olympic Winter Games ROLK01 = Mario & Sonic at the Olympic Winter Games ROLP8P = Mario & Sonic at the Olympic Winter Games ROMESD = Monster Hunter G (English Patched) ROMJ08 = Monster Hunter G RONEG9 = Onechanbara: Bikini Zombie Slayers RONJG9 = Onechanbara Revolution RONPG9 = Onechanbara: Bikini Zombie Slayers ROPE41 = Open Season ROPP41 = Open Season ROQJEP = Baroque For Wii ROSJ01 = Takt of Magic ROTE20 = Twin Strike: Operation Thunder ROTP20 = Twin Strike: Operation Thunder ROTP7J = Twin Strike: Operation Thunder ROUJAF = One Piece Unlimited Cruise 1: The Treasure Beneath the Waves ROUPAF = One Piece Unlimited Cruise 1: The Treasure Beneath the Waves ROVE6U = Playmobil: Circus ROVPHM = Playmobil: Circus ROWE08 = Okami ROWJ08 = Okami ROWP08 = Okami ROXE20 = Order Up! ROXP7J = Order Up! ROXX7J = Order Up! ROYE41 = Cloudy with a Chance of Meatballs ROYP41 = Cloudy with a Chance of Meatballs ROYX41 = Cloudy with a Chance of Meatballs RP2E69 = Smarty Pants RP2P69 = Smarty Pants RP3JAF = Pro Golfer Saru RP4E69 = MySims Party RP4J13 = Boku To Sim No Machi Party RP4P69 = MySims Party RP5JA4 = Jikkyou Powerful Pro Baseball 15 RP6E41 = Petz Crazy Monkeyz RP6P41 = Petz Monkey Madness RP7E52 = Pirates: Hunt for Blackbeard's Booty RP7P52 = Pirates: Hunt for Blackbeard's Booty RP9ERS = Space Chimps RP9PRS = Space Chimps RP9XRS = Space Chimps RPAF70 = Kid Paddle: Lost in the Game RPBE01 = Pokémon Battle Revolution RPBJ01 = Pokémon Battle Revolution RPBP01 = Pokémon Battle Revolution RPCE20 = Puzzler Collection RPCP41 = Puzzler Collection RPCX7J = Puzzler Collection RPDEGN = PDC World Championship Darts 2008 RPDPGN = PDC World Championship Darts 2008 RPFE52 = Pitfall: The Big Adventure RPFP52 = Pitfall: The Big Adventure RPFU52 = Pitfall: The Big Adventure RPGE5D = Rampage: Total Destruction RPGP5D = Rampage: Total Destruction RPHPPN = Peppa Pig: The Game RPIE52 = Pimp My Ride RPIP52 = Pimp My Ride RPJE7U = Arc Rise Fantasia RPJJ99 = Arc Rise Fantasia RPKE52 = World Series of Poker: Tournament of Champions 2007 Edition RPKP52 = World Series of Poker: Tournament of Champions 2007 Edition RPLE52 = Rapala Tournament Fishing RPLP52 = Rapala Tournament Fishing RPMJA4 = Jikkyou Powerful Pro Major League 2 RPNE78 = Paws & Claws: Pet Resort RPOEC8 = Opoona RPOJC8 = Opoona RPOPC8 = Opoona RPPE41 = Prince of Persia: Rival Swords RPPP41 = Prince of Persia: Rival Swords RPQES5 = Pool Party RPQPS5 = Pool Party RPSE4Q = Disney Princess: Enchanted Journey RPSJ4Q = Disney Princess Wii RPSP4Q = Disney Princess: Enchanted Journey RPTD52 = Puppy Luv RPTE52 = Puppy Luv: Your New Best Friend RPTP52 = Puppy Luv: Your New Best Friend RPUJ8P = Puyo Puyo! 15th Anniversary RPVE4Z = Purr Pals RPVPKM = Purr Pals RPWX41 = Prince of Persia: The Forgotten Sands RPWZ41 = Prince of Persia: The Forgotten Sands RPXE69 = EA Playground RPXJ13 = EA Playground RPXP69 = EA Playground RPYE9B = Super Swing Golf RPYJ9B = Super Swing Golf RPYP9B = Pangya! Golf With Style RPZJA4 = Jikkyou Powerful Pro Baseball Wii Ketteiban RQ2JK6 = Crazy Climber Wii RQ3PGN = PDC World Championship Darts 2009 RQ4E78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ4J78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ4P78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ5E5G = Mad Dog McCree Gunslinger Pack RQ5P5G = Mad Dog McCree Gunslinger Pack RQ5X5G = Mad Dog McCree Gunslinger Pack RQ6EJJ = Cursed Mountain RQ6PKM = Cursed Mountain RQ6XKM = Cursed Mountain RQ7E20 = Martian Panic RQ7PXT = Martian Panic RQ8E08 = MotoGP 08 RQ8P08 = MotoGP RQ9E69 = NBA Live 09 All-Play RQ9F69 = NBA Live 09 All-Play RQ9P69 = NBA Live 09 All-Play RQ9S69 = NBA Live 09 All-Play RQBENR = Kawasaki Quad Bikes RQBPNR = Kawasaki Quad Bikes RQBPUG = Kawasaki Quad Bikes RQBXUG = Kawasaki Quad Bikes RQCEAF = The Munchables RQCJAF = Tabemon RQEE6U = Agatha Christie: Evil Under the Sun RQEP6V = Agatha Christie: Evil Under the Sun RQFE6U = Safecracker: The Ultimate Puzzle Adventure RQFP6V = Safecracker RQGE69 = MySims Racing RQGJ13 = MySims Racing RQGJ69 = Boku To Sim No Machi Racing RQGP69 = MySims Racing RQIJ01 = Minna ga Shuyaku no NHK Kouhaku Quiz Kassen RQJE7D = Crash of the Titans RQJP7D = Crash of the Titans RQJX7D = Crash of the Titans RQKE41 = Circus Games RQKP41 = Fun Fair Party RQLE64 = Star Wars The Clone Wars: Republic Heroes RQLP64 = Star Wars The Clone Wars: Republic Heroes RQMEVN = Ocean Commander RQMPVN = Ocean Commander RQNEWR = Scooby-Doo! First Frights RQNPWR = Scooby-Doo! First Frights RQOE69 = Spore Hero RQOJ13 = Spore Hero RQOP69 = Spore Hero RQPE52 = Cabela's Trophy Bucks RQPP52 = Cabela's Trophy Bucks RQPZ52 = Cabela's Monster Buck Hunter RQQE52 = Guitar Hero III Custom : Queen RQQE70 = Backyard Football '09 RQREXJ = The Sky Crawlers: Innocent Aces RQRJAF = The Sky Crawlers: Innocent Aces RQRPAF = The Sky Crawlers: Innocent Aces RQSE4Z = Pinball Hall of Fame: The Gottlieb Collection RQSP6M = Gottlieb Pinball Classics RQTE6U = Agatha Christie: And Then There Were None RQTP6V = Agatha Christie: And Then There Were None RQUEFS = Super PickUps RQVE20 = Pacific Liberator RQVP20 = Pacific Liberator RQWEG9 = Puzzle Quest: Challenge of the Warlords RQWPG9 = Puzzle Quest: Challenge of the Warlords RQXP70 = Asterix at the Olympic Games RQYENR = Fantasy Aquarium World RQZE41 = Monster 4x4: Stunt Racer RQZP41 = Monster 4x4: Stunt Racer RR2ENR = Rig Racer 2 RR2PNR = Rig Racer 2 RR2PUG = Rig Racer 2 RR3EA4 = Ultimate Party Challenge RR3JA4 = Family Challenge Wii RR3PA4 = Let's Party! RR4EGY = Build-A-Bear Workshop: A Friend Fur All Seasons RR4PFK = Build-A-Bear Workshop: A Friend Fur All Seasons RR5E70 = Ready 2 Rumble Revolution RR5P70 = Ready 2 Rumble Revolution RR7PVP = Real Madrid The Game RR8PUJ = International Athletics RR9E78 = WWE SmackDown vs. Raw 2009 RRAE5Z = Rock 'N' Roll Adventures RRAPUG = Rock 'N' Roll Adventures RRAXUG = Rock 'N' Roll Adventures RRBE41 = Rayman Raving Rabbids RRBJ41 = Rayman Raving Rabbids RRBP41 = Rayman Raving Rabbids RRCE52 = Barbie Horse Adventures: Riding Camp RRCP52 = Barbie Horse Adventures: Riding Camp RRDE69 = Rock Band Track Pack: Vol. 2 RRDP69 = Rock Band Song Pack 2 RREE69 = Rock Band Track Pack: Vol. 1 RREP69 = Rock Band Song Pack 1 RRFEE9 = Reel Fishing: Angler's Dream RRFPE9 = Reel Fishing: Angler's Dream RRGE52 = Madagascar: Escape 2 Africa RRGP52 = Madagascar 2: Escape 2 Africa RRHPUJ = Mary King's Riding School 2 RRHXUJ = Mary King's Riding School 2 RRIPTV = Paint Party RRJFMR = Ready Steady Cook: The Game RRJIMR = Ready Steady Cook: The Game RRJPMR = Ready Steady Cook: The Game RRKE70 = Alone in the Dark RRKP70 = Alone in the Dark RRLE78 = Bratz: Girlz Really Rock RRLP78 = Bratz: Girlz Really Rock RRLX78 = Bratz: Girlz Really Rock RRLY78 = Bratz: Girlz Really Rock RRLZ78 = Bratz: Girlz Really Rock RRME69 = Hasbro: Family Game Night RRMP69 = Hasbro: Family Game Night RRMX69 = Hasbro: Family Game Night RRPE41 = The Price Is Right RRQE52 = Shrek's Carnival Craze Party Games RRQP52 = Shrek's Carnival Craze Party Games RRQX52 = Shrek's Carnival Craze Party Games RRRE5Z = Real Heroes: Firefighter RRRPRM = Real Heroes: Firefighter RRSE4Q = Meet The Robinsons RRSJ4Q = Meet The Robinsons RRSP4Q = Meet The Robinsons RRSX4Q = Meet The Robinsons RRTE52 = Block Party 20 Games RRTP52 = Block Party! 20 Games RRUEJF = Winter Sports 2: The Next Challenge RRUFRT = Winter Sports 2009: The Next Challenge RRUJJF = Winter Sports 2009 The Next Challenge RRUPRT = Winter Sports 2009: The Next Challenge RRVENR = Battle Rage: Mech Conflict RRVPNR = Battle Rage: The Robot Wars RRWJAF = Super Robot Taisen NEO RRXE5Z = Monster Trux Arenas: Special Edition RRXPUG = Monster Trux Arenas RRXXUG = Monster Trux Arenas RRYEHG = Rogue Trooper: Quartz Zone Massacre RRYPHY = Rogue Trooper: Quartz Zone Massacre RRZEGY = Rubik's World RRZPGY = Rubik's Puzzle World RS2E20 = Ultimate Duck Hunting RS2EGJ = Ultimate Duck Hunting RS2PGJ = Ultimate Duck Hunting RS3E52 = Spider-Man 3 RS3J52 = Spider-Man 3 RS3P52 = Spider-Man 3 RS3X52 = Spider-Man 3 RS4EXS = Castle of Shikigami III RS4JJF = Shikigami No Shiro III RS4PXS = Castle Of Shikigami III RS5EC8 = Samurai Warriors: Katana RS5JC8 = Sengoku Musou KATANA RS5PC8 = Samurai Warriors: Katana RS7J01 = Eyeshield 21 Field Saikyo no Senshi Tachi RS8J8N = Shanghai RS9E8P = Sonic Riders: Zero Gravity RS9J8P = Sonic Riders: Shooting Star Story RS9P8P = Sonic Riders: Zero Gravity RSAE78 = SpongeBob's Atlantis SquarePantis RSAP78 = SpongeBob's Atlantis SquarePantis RSBE01 = Super Smash Bros. Brawl RSBE02 = Super Smash Bros. Project M Red Version RSBE03 = Super Smash Bros. Brawl DX RSBE04 = Super Smash Bros. Project M+ RSBE05 = Super Smash Bros. Project M Patt Edition RSBE06 = Darkon360's Brawl Hack Pack RSBE07 = Super Smash Bros. Project M: Theytah's Custom Build RSBE08 = Smash Bros. Infinite RSBE09 = Springboy64's Brawl Hack Pack RSBE10 = Brawl Ying Yang Edition RSBE11 = Professor MGW's Tournament Hack Pack #1 RSBE12 = Professor MGW's Tournament Hack Pack #2 RSBE13 = Professor MGW's Hack Pack #3 RSBE14 = Super Smash Bros. Brawl- Zeus RSBE15 = Super Smash Bros. Brawl Minus Mugen RSBE16 = Super Smash Bros. Brawl Shock RSBE17 = Super Smash Bros. Brawl - Battlefield Build RSBE18 = Super Smash Bros. Project M: Tournament Hack Pack RSBE19 = Super Smash Bros. Project M: Fully Dressed Edition RSBE20 = Pikezer's BrawlEx Pack RSBE21 = Calabrel's Custom Project M Build RSBE22 = Project M: Rage83's Competitive Custom Build RSBE23 = Super Smash Bros. Project M: Justice Build RSBE24 = Super Smash Bros. 3 RSBE25 = Super Smash Bros. Red Version RSBE26 = Super Smash Bros. Silver RSBE27 = Springboy64's Super Smash Bros. Brawl Hack Pack RSBE28 = SuperYoshiStar's Super Smash Bros. Brawl Hack Pack RSBE29 = Super Smash Bros. Project M: YoeiX Custom Build RSBE30 = Super Smash Bros. Project M: Arko's Loaded Custom Build RSBE31 = Super Smash Bros. Project M: Arko's Tournament Custom Build RSBE32 = Super Smash Bros. Project M: Sempai's Build RSBE33 = Super Smash Bros. Brawl Yin Yang Edition 2: The Balance of Kyu RSBE34 = Super Smash Bros. Project U: Blue Version RSBE35 = Super Smash Bros. Brawl Legacy: Project M RSBE36 = Super Smash Bros. Project Best RSBE37 = Super Smash Bros. Project M: Psycho Ghost's Build RSBE38 = Super Smash Sisters Generations RSBE39 = Super Smash Bros. Ultra Project M RSBE40 = Super Smash Bros. Project M: Ragnarok Edition RSBE41 = Super Smash Bros. Project M: Calabrel's Custom Build RSBE42 = Super Smash Bros. Project M: RedX Anime/Game Custom Build RSBEBB = Super Smash Bros. Balanced Brawl RSBEBM = Super Smash Bros. Brawl Minus RSBEBP = Super Smash Bros. Brawl Plus RSBEC3 = Super Smash Bros. Project M 3.5 Netplay Build RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBEWM = Super Smash Bros. Project M Wi-Fi RSBJ01 = Dairantou Smash Brothers X RSBK01 = Dairantou Smash Brothers X RSBP01 = Super Smash Bros. Brawl RSCD7D = Scarface: The World Is Yours RSCE7D = Scarface: The World Is Yours RSCP7D = Scarface: The World Is Yours RSCU7D = Scarface: The World Is Yours RSDJAF = SD Gundam: Scad Hammers RSEJGD = Soul Eater Monotone Princess RSFC99 = Muramasa: The Demon Blade (Custom) RSFE7U = Muramasa: The Demon Blade RSFJ99 = Oboro Muramasa RSFP99 = Muramasa: The Demon Blade RSHE69 = MySims Kingdom RSHJ13 = Boku to Sim no Machi Kingdom RSHK69 = MySims Kingdom RSHP69 = MySims Kingdom RSIE69 = MySims RSIJ13 = Boku To Sim No Machi RSIP69 = MySims RSJE41 = Broken Sword: Shadow of the Templars (Director's Cut) RSJESD = Guitar Hero III Custom : System of a Down RSJP41 = Broken Sword: Shadow of the Templars - The Director's Cut RSKE52 = Shrek The Third RSKP52 = Shrek The Third RSKX52 = Shrek The Third RSLEAF = Soulcalibur: Legends RSLJAF = Soulcalibur: Legends RSLKAF = Soulcalibur: Legends RSLPAF = Soulcalibur: Legends RSME8P = Super Monkey Ball: Banana Blitz RSMJ8P = Super Monkey Ball: Banana Blitz RSMP8P = Super Monkey Ball: Banana Blitz RSND69 = The Simpsons Game RSNE69 = The Simpsons Game RSNF69 = The Simpsons Game RSNP69 = The Simpsons Game RSNX69 = The Simpsons Game RSOE4Z = Solitaire & Mahjong RSOP4Z = Solitaire & Mahjong RSPE01 = Wii Sports RSPJ01 = Wii Sports RSPK01 = Wii Sports RSPP01 = Wii Sports RSPW01 = Wii Sports RSQEAF = We Ski RSQJAF = Family Ski RSQPAF = Family Ski RSRE8P = Sonic and the Secret Rings RSRJ8P = Sonic and the Secret Rings RSRP8P = Sonic and the Secret Rings RSSEH4 = Samurai Shodown Anthology RSSJH4 = Samurai Spirits: Rokuban Shoubu RSSK52 = Samurai Shodown Anthology RSSP7U = Samurai Shodown Anthology RSTE64 = Star Wars: The Force Unleashed RSTJ52 = Star Wars: The Force Unleashed RSTP64 = Star Wars: The Force Unleashed RSUENR = Summer Sports: Paradise Island RSUP41 = Sports Party RSVE8P = Sonic Unleashed RSVJ8P = Sonic World Adventure RSVP8P = Sonic Unleashed RSWE08 = Spyborgs RSWP08 = Spyborgs RSXE69 = SSX Blur RSXJ13 = SSX Blur RSXK69 = SSX Blur RSXP69 = SSX Blur RSXX78 = Guitar Hero RadioHead RSYE20 = Showtime Championship Boxing RSYP06 = Super Smash Bros. Brawl : YF06's Mod RSYP7J = Showtime Championship Boxing RSZJES = Yukinko Daisenpuu RSZPGT = Legend of Sayuki RT2E20 = Arctic Tale RT2P20 = Arctic Tale RT2P7J = Arctic Tale RT3E54 = Rockstar Games Presents: Table Tennis RT3JEL = Rockstar Games Presents: Table Tennis RT3P54 = Rockstar Games Presents: Table Tennis RT4EAF = Tales of Symphonia: Dawn of the New World RT4JAF = Tales Of Symphonia: Ratatosk no Kishi RT4PAF = Tales of Symphonia: Dawn of the New World RT5E8P = SEGA Superstars Tennis RT5P8P = SEGA Superstars Tennis RT6FKM = Magic Roundabout RT6PKM = The Magic Roundabout RT7E69 = Tiger Woods PGA Tour 07 RT7F69 = Tiger Woods PGA Tour 07 RT7P69 = Tiger Woods PGA Tour 07 RT8E69 = Tiger Woods PGA Tour 08 RT8J13 = Tiger Woods PGA Tour Golf 08 RT8K69 = Tiger Woods PGA Tour Golf 08 RT8P69 = Tiger Woods PGA Tour 08 RT9E52 = Tony Hawk's Proving Ground RT9P52 = Tony Hawk's Proving Ground RTAE41 = Tom Clancy's H.A.W.X. 2 RTAP41 = Tom Clancy's H.A.W.X. 2 RTBE52 = Rapala Fishing Frenzy RTBP52 = Rapala Fishing Frenzy RTCE41 = Tom Clancy's Splinter Cell: Double Agent RTCP41 = Tom Clancy's Splinter Cell: Double Agent RTDE6K = The Monkey King: The Legend Begins RTDJES = Shin Chuuka Taisen RTDK8M = Shin Chuuka Taisen RTEE78 = Paws & Claws: Pet Vet RTEHMR = Real Stories: Veterinaire RTEPFR = My Vet Practice RTFE52 = Transformers: The Game RTFJ52 = Transformers: The Game RTFK52 = Transformers: The Game RTFP52 = Transformers: The Game RTFX52 = Transformers: The Game RTFY52 = Transformers: The Game RTGJ18 = Wi-Fi Taiô Gensen Table Games Wii RTHE52 = Tony Hawk's Downhill Jam RTHP52 = Tony Hawk's Downhill Jam RTIE8P = Wacky World of Sports RTIJ8P = Wacky World of Sports RTIP8P = Wacky World of Sports RTJE68 = Star Trek: Conquest RTJP68 = Star Trek: Conquest RTKE5Z = Octomania RTKJDQ = Sharuui Takoron RTKK8M = Sharuui Takoron RTLE18 = Fishing Master: World Tour RTLJ18 = Mezase Tsuri Master Sekai Ni Challenge Hen RTLP18 = Fishing Master: World Tour RTME41 = TMNT RTMP41 = TMNT: Teenage Mutant Ninja Turtles RTNE41 = Tenchu: Shadow Assassins RTNJCQ = Tenchu 4 RTNP41 = Tenchu: Shadow Assassins RTOJ8P = 428: Fuusa Sareta Shibuya de RTPP41 = Top Trumps Adventures RTQENR = Monster Trux Offroad RTQPUG = Monster Trux Offroad RTQXUG = Monster Trux Offroad RTRE18 = Fishing Master RTRJ18 = Mezase Tsuri Master RTRP18 = Fishing Master RTSEVN = Totally Spies! Totally Party RTSP41 = Totally Spies! Totally Party RTTJAF = Tamagotchi no Furifuri Kagekidan RTUEJJ = Secret Files Tunguska RTUFKM = Secret Files: Tunguska RTUPKM = Secret Files: Tunguska RTVE64 = Thrillville: Off the Rails RTVP64 = Thrillville: Off The Rails RTWE5D = TNA iMPACT! RTWP5D = TNA iMPACT! RTYP01 = Wii Chess RTZE08 = Zack & Wiki: Quest for Barbaros' Treasure RTZJ08 = Takarajima Z Barbaros' Treasure RTZK08 = Zack & Wiki: Quest For Barbaros' Treasure RTZP08 = Zack & Wiki: Quest For Barbaros' Treasure RU1P4Q = Disney Sing It:: Sing It Star Singstar 1 RU2E5Z = Winter Sports 2: The Next Challenge RU2P4Q = Disney Sing It: Sing It Star Singstar 2 RU2P5Z = Winter Sports 2 The Next Challenge RU3E5Z = Summer Athletics: The Ultimate Challenge RU4E41 = My Fitness Coach 2: Exercise & Nutrition RU4X41 = NewU Fitness First Personal Trainer RU5E4Q = The Princess and the Frog RU5P4Q = Disney The Princess and the Frog RU5V4Q = Disney: The Princess and the Frog RU5X4Q = Disney: The Princess and the Frog RU5Y4Q = The Princess and the Frog (Riverboat Jazz Edition) RU6EHG = Free Running RU6PHY = Free Running RU7E5G = Night at the Museum: Battle of the Smithsonian - The Video Game RU7X5G = Night at the Museum: Battle of the Smithsonian - The Video Game RU8EFS = Bass Pro Shops: The Hunt RU9EGT = My Ballet Studio RU9PGT = Diva Girls: Diva Ballerina RUAE52 = Monster Jam: Urban Assault RUAP52 = Monster Jam: Urban Assault RUBEVN = Ultimate Board Game Collection RUBP7N = Ultimate Board Game Collection RUCE5Z = Winter Sports: The Ultimate Challenge RUCPRT = Winter Sports 2008: The Ultimate Challenge RUCXRT = Winter Sports 2008: The Ultimate Challenge RUEE4Q = G-Force RUEP4Q = G-Force RUEX4Q = G-Force RUEY4Q = G-Force RUFEMV = Rune Factory: Frontier RUFJ99 = Rune Factory: Frontier RUFP99 = Rune Factory: Frontier RUGE7T = Goosebumps: HorrorLand RUGP5G = Goosebumps: HorrorLand RUHE52 = Bakugan Battle Brawlers RUHP52 = Bakugan Battle Brawlers RUHX52 = Bakugan Battle Brawlers (Toys R Us Edition) RUHZ52 = Bakugan Battle Brawlers RUIE4Q = Disney: Sing It RUIGGD = SingItStar Ned. 80's RUIP4Q = Disney: Sing It RUIX4Q = Disney: Sing It RUKEGT = Rolling Stone: Drum King RUKPGT = We Rock: Drum King RULE4Q = Ultimate Band RULP4Q = Ultimate Band RUME5Z = Ski and Shoot RUMPFR = Summer Athletics RUNJ0Q = New Unou Kids Wii EX RUOEPL = Aliens in the Attic RUOPPL = Aliens in the Attic RUPJC8 = Winning Post 7 Maximum 2008 RUQD78 = Up RUQE78 = Up RUQI78 = Up RUQJJE = Carl jii san no sora tobu Ie RUQP78 = Up RUQS78 = Up RUQX78 = Up RUREPL = Pool Hall Pro RURPPL = Pool Hall Pro RUSE78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUSK78 = SpongeBob SquarePants Featuring Nicktoons: Globs of Doom RUSP78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUSX78 = SpongeBob SquarePants Featuring Nicktoons: Globs of Doom RUSY78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUUE01 = Animal Crossing: City Folk RUUJ01 = Machi He Ikouyo: Doubutsu no Mori RUUK01 = Animal Crossing: City Folk RUUP01 = Animal Crossing: Let's Go to the City RUWJC8 = Winning Post World RUXPUG = Urban Extreme: Street Rage RUXXUG = Urban Extreme: Street Rage RUYE41 = No More Heroes 2: Desperate Struggle RUYJ99 = No More Heroes 2: Desperate Struggle RUYP99 = No More Heroes 2: Desperate Struggle RUZE7T = Ultimate I SPY RUZP5G = Ultimate I SPY RV2E5D = Game Party 2 RV2P5D = More Game Party RV3P6N = Clever Kids: Creepy Crawlies RV7SMR = Survivor RV8E20 = Beach Fun: Summer Challenge RV8PRT = Beach Fun: Summer Challenge RV9E78 = Avatar: The Last Airbender - Into the Inferno RV9P78 = Avatar: The Legend of Aang - Into the Inferno RVAE78 = Avatar: The Last Airbender - The Burning Earth RVAP78 = Avatar: The Legend of Aang - The Burning Earth RVBERS = Alvin and the Chipmunks RVBPRS = Alvin and the Chipmunks RVDPLG = Diabolik: The Original Sin RVEFMR = Bienvenue Chez Les Ch'tis RVFE20 = Bigfoot: Collision Course RVFP7J = Bigfoot: Collision Course RVGE78 = Merv Griffin's Crosswords RVGP78 = Margot's Word Brain RVHP41 = Scrabble Interactive: 2009 Edition RVIE4F = Bionicle Heroes RVIP4F = Bionicle Heroes RVJPFR = So Blonde: Back to the Island RVKEXJ = Valhalla Knights: Eldar Saga RVKJ99 = Valhalla Knights Elder Saga RVKKZA = Valhalla Knights: Eldar Saga RVKP99 = Eldar Saga RVLPA4 = Rock Revolution RVNE20 = Calvin Tucker's Redneck Jamboree RVNP20 = Calvin Tucker's Redneck Jamboree RVNP7J = Calvin Tucker's Redneck Jamboree RVOEPL = Vertigo RVOPPL = Vertigo RVPEFS = PopStar Guitar RVPPFS = PopStar Guitar RVQE41 = Movie Games RVQP41 = Movie Studios Party RVREFS = Rebel Raiders: Operation Nighthawk RVRPFS = Rebel Raiders: Operation Nighthawk RVRPKG = Rebel Raiders: Operation Nighthawk RVSE69 = Skate It RVSJ13 = Skate It RVSP69 = Skate It RVTFMR = Real Stories: Veterinaire RVTPMR = My Pet Club RVTXMR = Real Stories: Veterinaire RVUE8P = Virtua Tennis 2009 RVUP8P = Virtua Tennis 2009 RVVE78 = Big Beach Sports RVVP78 = Big Beach Sports RVXFRT = RTL Biathlon 2009 RVXPRT = RTL Biathlon 2009 RVYD52 = Call of Duty: World at War RVYE52 = Call of Duty: World at War RVYK52 = Call of Duty: World at War RVYP52 = Call of Duty: World at War RVYX52 = Call of Duty: World at War RVYY52 = Call of Duty: World at War RVZE52 = Monsters vs. Aliens RVZP52 = Monsters vs. Aliens RW3E4Q = Pirates of the Caribbean: At World's End RW3J4Q = Pirates Of The Caribbean: At World's End RW3P4Q = Pirates Of The Caribbean: At World's End RW4D41 = My Word Coach: Develop your vocabulary RW5F41 = Who Wants To Be A Millionaire: 2nd Edition RW5P41 = Who Wants To Be A Millionaire: 2nd Edition RW6PA4 = Dance Dance Revolution: Winx Club RW7E41 = Shaun White Snowboarding: Road Trip - Target Limited Edition RW8P41 = Imagine Champion Rider RW9P78 = WWE SmackDown vs. Raw 2009 RW9X78 = WWE SmackDown vs. Raw 2009 RWAD78 = WALL•E RWAE78 = WALL•E RWAJ78 = WALL•E RWAK78 = WALL•E RWAP78 = WALL•E RWAR78 = Валл-И RWAU78 = WALL•E RWAX78 = WALL•E RWAY78 = WALL•E RWAZ78 = WALL•E RWBENR = Kawasaki Snowmobiles RWBXUG = Kawasaki Snow Mobiles RWCE4Z = Pinball Hall of Fame: The Williams Collection RWCP4Z = Pinball: Hall Of Fame RWCP6M = Williams Pinball Classics RWDC52 = Guitar Hero III Custom: WD Custom RWDE5G = Wild Earth: African Safari RWDP5G = Wild Earth: African Safari RWEEA4 = Pro Evolution Soccer 2008 RWEJA4 = Winning Eleven PLAY MAKER 2008 RWEPA4 = Pro Evolution Soccer 2008 RWFH41 = My Word Coach: Develop your vocabulary RWGE08 = We Love Golf! RWGJ08 = We Love Golf! RWGP08 = We Love Golf! RWHP4F = Top Trumps: Doctor Who RWIE18 = Wing Island RWIJ18 = Wing Island RWIP18 = Wing Island RWJENR = WordJong Party RWKE5G = Cooking Mama: World Kitchen RWKPGT = Cooking Mama 2: World Kitchen RWLE01 = Wario Land: Shake It! RWLJ01 = Warioland Shake RWLK01 = Wario Land Shaking RWLP01 = Wario Land: The Shake Dimension RWME78 = Worms: A Space Oddity RWMP78 = Worms: A Space Oddity RWNF70 = Warning: Code De La Route RWOE69 = Monopoly RWOJ13 = Monopoly RWOP69 = Monopoly RWQPSP = WSC Real 08: World Snooker Championship RWRE4F = Wacky Races: Crash & Dash RWRP4F = Wacky Races: Crash & Dash RWSE8P = Mario & Sonic at the Olympic Games RWSJ01 = Mario & Sonic at the Olympic Games RWSK01 = Mario & Sonic at the Olympic Games RWSP8P = Mario & Sonic at the Olympic Games RWTEG9 = Ben 10: Alien Force RWTPG9 = Ben 10: Alien Force RWUE52 = X-Men Origins: Wolverine RWUP52 = X-Men Origins: Wolverine RWUX52 = X-Men Origins: Wolverine RWWE52 = Guitar Hero III Custom : WWE The Hits RWWE78 = WWE SmackDown vs. Raw 2008 RWWJ78 = WWE SmackDown vs. Raw 2008 RWWP78 = WWE SmackDown vs. Raw 2008 RWWX78 = WWE SmackDown vs. Raw 2008 RWXES5 = Brave: A Warrior's Tale RWXPS5 = Brave: A Warrior's Tale RWYPHH = Runaway: The Dream of the Turtle RWZE5G = Wonder World Amusement Park RWZP5G = Wonder World Amusement Park RWZX5G = Wonder World Amusement Park RX2E70 = My Horse & Me: Riding for Gold RX2P70 = My Horse & Me 2 RX3E01 = ExciteBots: Trick Racing RX3J01 = ExciteBots: Trick Racing RX4E4Z = Casper's Scare School: Spooky Sports Day RX4PMT = Casper's Scare School: Spooky Sports Day RX5E52 = Tony Hawk: Ride RX5P52 = Tony Hawk: Ride RX6E78 = The Biggest Loser RX6P78 = The Biggest Loser RX7JGD = Meja-maji March RX8JA4 = Jikkyou Powerful Pro Yakyuu Next RX9E69 = Need for Speed: Undercover RX9J13 = Need for Speed: Undercover RX9K69 = Need for Speed: Undercover RX9P69 = Need for Speed: Undercover RX9X69 = Need for Speed: Undercover RX9Y69 = Need for Speed: Undercover RXAE78 = WWE SmackDown vs. Raw 2010 RXAP78 = WWE SmackDown vs. Raw 2010 RXBE70 = Backyard Baseball '10 RXBP70 = Backyard Baseball '10 RXCE4Z = Dave Mirra BMX Challenge RXCP4Z = Dave Mirra BMX Challenge RXCPGT = Dave Mirra BMX Challenge RXDD4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDE4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDJ4Q = Disney Th!nk Haya Oshi Quiz RXDP4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDR4Q = Disney Отвечаи Не Зеваи RXDX4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDY4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXEJDA = Major Wii Perfect Closer RXFEVN = Offshore Tycoon RXGE6K = Geon Cube RXGP6K = Geon Cube RXHF5D = Chaos à La Maison RXIE52 = Transformers: Revenge of the Fallen RXIP52 = Transformers: Revenge of the Fallen RXJJDA = Jinsei Game Wii EX RXKEGL = TV Show King Party RXKFGL = TV Show King Party RXKPGL = TV Show King Party RXLE41 = Grey's Anatomy: The Video Game RXLP41 = Grey's Anatomy: The Video Game RXMJ8P = Miburi & Teburi RXNEXS = Hooked Again: Real Motion Fishing RXNJJF = Bass Fishing Wii World Tournament RXNPGT = Big Catch Bass Fishing 2 RXPEXS = Hooked!: Real Motion Fishing RXPJJF = Bass Fishing Wii RXPPGT = Big Catch Bass Fishing RXQEWR = Where the Wild Things Are RXQPWR = Where the Wild Things Are RXRERS = The Tale of Despereaux RXRPRS = The Tale of Despereaux RXRXRS = The Tale Of Despereaux RXSPA4 = Dancing Stage: Hottest Party RXUE41 = Surf's Up RXUP41 = Surf's Up RXUX41 = Surf's Up RXVXWP = Télé 7 Jeux: Mots Croisés RXWE20 = M&M's Beach Party RXXE4Q = Spectrobes: Origins RXXJ4Q = Spectrobes: Origins RXXP4Q = Spectrobes: Origins RXYE4Z = Puzzle Challenge: Crosswords and More! RXYP4Z = Puzzle Challenge Crosswords RXZE52 = Cabela's Dangerous Hunts 2009 RXZP52 = Cabela's Dangerous Adventures RY2E41 = Rayman Raving Rabbids 2 RY2J41 = Rayman Raving Rabbids 2 RY2K41 = Rayman Raving Rabbids 2 RY2P41 = Rayman Raving Rabbids 2 RY2R41 = Возвращение бешеных кролегов RY3E41 = Rayman Raving Rabbids TV Party RY3J41 = Rayman Raving Rabbids TV Party RY3K41 = Rayman Raving Rabbids: TV Party RY3P41 = Rayman Raving Rabbids: TV Party RY4J8P = Puyo Puyo 7 RY5E52 = Big League Sports: Summer RY5P52 = World Championship Sports: Summer RY6EA4 = Walk It Out! RY6PA4 = Step to the Beat RY7PHZ = Ninja Captains RY8EFS = Bass Pro Shops: The Strike RYAJDA = Yattaman Wii Bikkuridokkiri Machine De Mou Race Da Koron RYAJSC = Yatterman Wii (Simplified Chinese Translation) RYBE69 = Boom Blox: Bash Party RYBP69 = BOOM BLOX Bash Party RYDELT = Pet Pals: Animal Doctor RYDP6V = Pet Pals: Animal Doctor RYEEEB = 101-in-1 Party Megamix RYEPHZ = 101-in-1 Party Megamix RYGE9B = Rygar: The Battle of Argus RYGJ9B = Argus No Senshi Muscle Impact RYGP99 = Rygar: The Battle of Argus RYHES5 = Roogoo: Twisted Towers RYHPS5 = Roogoo: Twisted Towers RYIE9B = SPRay RYIP9B = SPRay RYJPTV = Princess Lillifee's Magic Fairy RYKEAF = We Ski & Snowboard RYKJAF = Family Ski: World Ski & Snowboard RYKPAF = Family Ski & Snowboard RYLDSV = Germany's Next Top Model RYNE6U = The Hardy Boys: The Hidden Theft RYNP6V = The Hardy Boys: The Hidden Theft RYOEA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYOJA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYOPA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYQE69 = Trivial Pursuit RYQP69 = Trivial Pursuit RYQX69 = Trivial Pursuit Nordic RYRE41 = Your Shape RYRP41 = Your Shape RYTE4Z = PBR: Out of the Chute RYVEMS = Arcade Shooter: Ilvelo RYVJMS = Illvelo Wii RYWE01 = Big Brain Academy: Wii Degree RYWJ01 = Wii de Yawaraka Atama Juku RYWK01 = Big Brain Academy: Wii Degree RYWP01 = Big Brain Academy for Wii RYXE20 = Yamaha Supercross RYXP7J = Yamaha Supercross RYZE6U = World Party Games RYZPTV = Play the World RZ2JG9 = Simple Wii Series Vol. 1: The Minna de Kart Race RZ3JG9 = Simple Wii Series Vol. 2: The Minna de Bass Tsuri Taikai RZ4JG9 = Simple Wii Series Vol. 3: The Casino Party RZ5JG9 = Simple Wii Series Vol. 4: The Shooting Action RZ6JG9 = Simple Wii Series Vol. 5: The Block Kuzushi RZ7JG9 = Simple Wii Series Vol. 6: The Waiwai Konbatto RZ8JG9 = Simple 2000 Series Wii Vol. 1: The Table Game RZ9EG9 = Family Party: 30 Great Games RZ9JG9 = Simple 2000 Series Wii Vol. 2: The Party Game RZ9PG9 = Family Party: 30 Great Games RZAPTV = Lernerfolg Grundschule Power Math RZCE6K = Saint RZDC01 = The Legend of Zelda: Twilight Princess (Custom) RZDE01 = The Legend of Zelda: Twilight Princess RZDJ01 = The Legend of Zelda: Twilight Princess RZDK01 = The Legend of Zelda: Twilight Princess RZDP01 = The Legend of Zelda: Twilight Princess RZEE52 = Science Papa RZEP52 = Science Papa RZFPKM = Secret Files 2: Puritas Cordis RZHE5G = Zoo Hospital RZHP5G = Zoo Hospital RZHX5G = Zoo Hospital RZIE20 = Winter Sports 3: The Great Tournament RZIPRT = Winter Sports 2010: The Great Tournament RZJD69 = Dead Space: Extraction RZJE69 = Dead Space: Extraction RZJJ13 = Dead Space: Extraction RZJP69 = Dead Space: Extraction RZKE20 = Puzzle Kingdoms RZKP7J = Puzzle Kingdoms RZLE41 = Cook Wars RZLP41 = Cook-off Party RZNJ01 = Zangeki no Reginleiv RZOE78 = World of Zoo RZOP78 = World of Zoo RZPE01 = Link's Crossbow Training RZPJ01 = Link's Crossbow Training RZPK01 = Link's Crossbow Training RZPP01 = Link's Crossbow Training RZREGT = The Destiny of Zorro RZRPGT = The Destiny of Zorro RZSEGJ = Speed Zone RZSP68 = Wheelspin RZTE01 = Wii Sports Resort RZTJ01 = Wii Sports Resort RZTK01 = Wii Sports Resort RZTP01 = Wii Sports Resort RZTW01 = Wii Sports Resort RZUE4Z = Crayola Colorful Journey RZYE41 = My Word Coach RZYF41 = My Word Coach: Develop your vocabulary RZYP41 = My Word Coach: Develop your vocabulary RZYS41 = My Word Coach: Develop your vocabulary RZZE8P = MadWorld RZZJEL = MadWorld RZZP8P = MadWorld S02PES = Sing It Star 90's S22JAF = Family Fishing S22K01 = Family Fishing S25JGD = Dragon Quest 25 Collection: Famicom & Super Famicom Dragon Quest I-II-III S26PML = 2-in-1: Pony Friends 2 + My Riding Stables: Life with Horses S2AEAF = Active Life: Explorer S2AJAF = Minna de Bouken! Family Trainer S2APAF = Family Trainer: Treasure Adventure S2BEPZ = Country Dance 2 S2BPXT = Country Dance 2 S2CE54 = New Carnival Games S2CP54 = New Carnival Funfair Games S2DPML = Dance! It's Your Stage S2EE41 = ABBA: You Can Dance S2EP41 = ABBA: You Can Dance S2HE70 = Haunted House S2HP70 = Haunted House S2IE8P = Iron Man 2 S2IP8P = Iron Man 2 S2LE01 = PokéPark 2: Wonders Beyond S2LJ01 = PokéPark 2: Beyond the World S2LP01 = PokéPark 2: Wonders Beyond S2ME69 = Madden NFL 13 S2OEFS = Bass Pro Shops: The Strike - Tournament Edition S2PEA4 = Pro Evolution Soccer 2012 S2PJA4 = Winning Eleven PLAY MAKER 2012 S2PPA4 = Pro Evolution Soccer 2012 S2PXA4 = Pro Evolution Soccer 2012 S2PYA4 = Pro Evolution Soccer 2012 S2QE54 = NBA 2K12 S2QP54 = NBA 2K12 S2RPNK = Reload S2TJAF = Taiko no Tatsujin Wii: Dodoon to 2 Daime! S2VEG9 = Victorious: Taking the Lead S2VPAF = Victorious: Taking the Lead S2WE78 = WWE All Stars S2WP78 = WWE All Stars S2XE41 = The Smurfs 2 S2XP41 = The Smurfs 2 S2YE52 = Wipeout: Create & Crash S2ZE52 = Zhu Zhu Pets: Featuring The Wild Bunch S2ZP52 = Zhu Zhu Pets: Featuring the Wild Bunch S3AE5G = Attack of the Movies 3D S3BEWR = Batman: The Brave and the Bold S3BPWR = Batman: The Brave and the Bold S3CENR = Triple Crown Championship Snowboarding S3DE18 = Deca Sports 3 S3DJ18 = Deca Sporta 3 S3DP18 = Sports Island 3 S3EE78 = Barbie Jet, Set & Style! S3EP78 = Barbie Jet, Set & Style! S3FE69 = FIFA Soccer 13 S3FP69 = FIFA 13 S3FX69 = FIFA 13 S3GE20 = Glacier 3: The Meltdown S3GPXT = Glacier 3 S3HJ08 = Sengoku Basara 3 Utage S3IEA4 = Pro Evolution Soccer 2013 S3IPA4 = Pro Evolution Soccer 2013 S3IXA4 = Pro Evolution Soccer 2013 S3IYA4 = Pro Evolution Soccer 2013 S3LPY1 = Andrew Lloyd Webber Musicals: Sing and Dance S3ME69 = The Sims 3 S3MP69 = The Sims 3 S3PE4Q = Disney Princess: My Fairytale Adventure S3PP4Q = Disney Princess: My Fairytale Adventure S3PX4Q = Disney Princess: My Fairytale Adventure S3RJMS = Twinkle Queen S3SJ18 = Karaoke Joysound Wii Super DX: Hitori de Minna de Utai Houdai! S3TJAF = Taiko no Tatsujin Wii: Minna de Party ☆ 3 Daime! S3WEG9 = Family Party: 30 Great Games Winter Fun S3WPG9 = Family Party: 30 Great Games Winter Fun S3XE78 = WWE '13 S3XP78 = WWE '13 S3ZE52 = Men In Black: Alien Crisis S3ZP52 = Men In Black: Alien Crisis S4MJGD = Dragon Quest X Online: Mesamashi Itsutsu no Shuzoku S4SJGD = Dragon Quest X: Nemureru Yuusha to Michibiki no Meiyuu Online S4TJAF = Taiko no Tatsujin Wii: Ketteiban S59E01 = Samurai Warriors 3 S59JC8 = Sengoku Musou 3 S59P01 = Samurai Warriors 3 S5BETL = Back to the Future: The Game S5BPKM = Back to the Future: The Game S5KJAF = Taiko no Tatsujin Wii Chou Goukaban S5QJC8 = SengokuMusou 3 Moushouden S5RESZ = Ram Racing S5RPNJ = Ram Racing S5SJHF = Inazuma Eleven Go Strikers 2013 S5TEG9 = Ben 10: Omniverse S5TPAF = Ben 10: Omniverse S5WE20 = Around The World in 50 Games S6BE4Q = Brave: The Video Game S6BP4Q = Brave: The Video Game S6BY4Q = Brave: The Video Game S6IE78 = Disney Princess: Enchanting Storybooks S6IP78 = Disney Princess: Enchanting Storybooks S6RE52 = Wreck-It Ralph S6RP52 = Wreck-It Ralph S6TJGD = Dragon Quest X (All in One Package) S72E01 = Kirby's Dream Collection: Special Edition S72J01 = Hoshi No Kirby: 20th Anniversary Edition S75E69 = Monopoly Streets S75P69 = Monopoly Streets S7AEWR = LEGO Batman 2: DC Super Heroes S7AKWR = LEGO Batman 2: DC Super Heroes S7AKZA = Lego Superheroes 1 S7APWR = LEGO Batman 2: DC Super Heroes S7BE69 = Trivial Pursuit: Bet You Know It S7BP69 = Trivial Pursuit: Casual S7CJAF = Kamen Rider Climax Heroes Fourze S7DE52 = Angry Birds: Star Wars S7DP52 = Angry Birds: Star Wars S7EP52 = Transformers: Ultimate Battle Edition S7FE5G = Zumba Kids S7FPGT = Zumba Kids: The Ultimate Zumba Dance Party S7JPKM = Let's Sing 6 - Spanish version S7KPKM = Let's Sing 2014 S7SP41 = The Smurfs Party Pack S80U3Q = SingItStar Ultimate 80s SA3E5G = Alvin and the Chipmunks: Chipwrecked SA3P5G = Alvin and the Chipmunks: Chipwrecked SA5E78 = Are You Smarter Than A 5th Grader?: Back to School SA6EG9 = Ben 10: Galactic Racing SA6PAF = Ben 10: Galactic Racing SA7ESZ = Gummy Bears: Magical Medallion SA8P52 = The Amazing Spider-Man SA9D7K = Bibi und Tina Das grosse Reiterfest SAAJA4 = Winning Eleven PLAY MAKER 2013 SABENR = Alien Monster Bowling League SABPJG = Alien Monster Bowling League SACPVS = ACB Total 2010/2011 SACSVS = ACB Total 2010/2011 SADE70 = Backyard Sports: Sandlot Sluggers SAFUHS = AFL: Australian Football League SAGE41 = The Amazing Race SAHE69 = Hasbro: Family Game Night Fun Pack SAJE52 = Cabela's Survival: Shadows of Katmai SAJP52 = Cabela's Survival: Shadows of Katmai SAKENS = Sakura Wars: So Long, My Love SAKPNS = Sakura Wars: So Long, My Love SALE4Q = Alice in Wonderland SALP4Q = Alice in Wonderland SAME01 = New Super Mario Bros. Wii 11 American Revolution SANE01 = New Super Mario Bros. Wii Five Spica Edition SANEFS = Bass Pro Shops: The Hunt - Trophy Showdown SANT3Q = SingItStar Anthems SAOE78 = Monster High: Ghoul Spirit SAOP78 = Monster High: Ghoul Spirit SAQE5G = Harley Pasternak's Hollywood Workout SARE4Z = Aladdin Magic Racer SARP01 = New Super Mario Bros. Wii 4 Arcadia Another Ride SARPNK = Aladin: Magic Racer SASEWW = Atrévete a Soñar SATE6K = Chuck E. Cheese's Super Collection SAUJ8P = Puyo Puyo!! 20th Anniversary SAVE5G = Alvin and the Chipmunks: The Squeakquel SAVX5G = Alvin and the Chipmunks: The Squeakquel SAWE52 = Angry Birds Trilogy SAWP52 = Angry Birds Trilogy SAXPFH = Max & the Magic Marker SAYE20 = Boot Camp Academy SAYP41 = Boot Camp Academy SAZE52 = The Amazing Spider-Man SAZP52 = The Amazing Spider-Man SB2ES5 = My Baby First Steps SB2PNP = My Baby 2: My Baby Grew Up SB3E08 = Sengoku Basara: Samurai Heroes SB3J08 = Sengoku BASARA 3 SB3P08 = Sengoku Basara: Samurai Heroes SB4C01 = Super Mario Galaxy 2 (Custom) SB4E01 = Super Mario Galaxy 2 SB4E02 = Neo Mario Galaxy SB4E03 = Super Mario Galaxy: Plumber's Way SB4E04 = Super Mario Sunshine Galaxy SB4E05 = Season Cycle Galaxy SB4E25 = Super Mario Galaxy 2.5 SB4J01 = Super Mario Galaxy 2 SB4J02 = Neo Mario Galaxy SB4J05 = Season Cycle Galaxy SB4K01 = Super Mario Galaxy 2 SB4P01 = Super Mario Galaxy 2 SB4P02 = Neo Mario Galaxy SB4P05 = Season Cycle Galaxy SB4W01 = Super Mario Galaxy 2 SB5E54 = NBA 2K11 SB5P54 = NBA 2K11 SB6E52 = Bakugan: Defenders of the Core SB6P52 = Bakugan: Defenders of the Core SB7IVU = Planet Basket 2009/2010 SB8EQH = Burger Bot SB9E78 = Barbie: Groom and Glam Pups SB9P78 = Barbie: Groom and Glam Pups SBAJGD = Dragon Quest Monsters: Battle Road Victory SBBE18 = Beyblade: Metal Fusion - Battle Fortress SBBJ18 = Metal Fight Beyblade Gachinko Stadium SBBP18 = Beyblade: Metal Fusion - Counter Leone SBCJ2N = Billy's Boot Camp: Wii de Enjoy Diet! SBDE08 = Resident Evil: The Darkside Chronicles SBDJ08 = Biohazard: The Darkside Chronicles SBDK08 = Biohazard: The Darkside Chronicles SBDP08 = Resident Evil: The Darkside Chronicles SBEPSV = Bermuda Triangle SBFE70 = Backyard Football '10 SBHEFP = Remington Great American Bird Hunt SBHPNK = Remington Great American Bird Hunt SBIEVZ = Busy Scissors SBIPVZ = Busy Scissors SBJEG9 = Ben 10: Ultimate Alien Cosmic Destruction SBJPAF = Ben 10: Ultimate Alien Cosmic Destruction SBKEPZ = Brunswick Zone Cosmic Bowling SBLE5G = A Boy and His Blob SBLP5G = A Boy and His Blob SBNEG9 = Ben 10: Alien Force Vilgax Attacks SBNPG9 = Ben 10: Alien Force Vilgax Attacks SBOD3Q = SingItStar Best of Disney SBQE4Z = Big Buck Hunter Pro SBREJJ = Let's Play Ballerina SBRPKM = Ballerina SBSE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh SBSEFP = Remington Super Slam Hunting: North America SBSURN = Remington Super Slam Hunting: North America SBVE78 = SpongeBob's Boating Bash SBVG3Q = SingItStar Boybands vs Girlbands SBVP78 = SpongeBob's Boating Bash SBVS78 = SpongeBob's Boating Bash SBWC11 = New Super Mario Bros. 3: The Wrath of Shadow Bowser SBWE5G = Babysitting Mama SBWJRA = Babysitter Mama SBWPGT = Cooking Mama World: Babysitting Mama SBXEWR = The Bachelor: The Video Game SBYE41 = Dance on Broadway SBYP41 = Dance on Broadway SBZESZ = Bermuda Triangle: Saving the Coral SC2E8P = Conduit 2 SC2P8P = Conduit 2 SC4E64 = LEGO Star Wars III: The Clone Wars SC4P64 = LEGO Star Wars III: The Clone Wars SC5PGN = Challenge Me: Word Puzzles SC6PGN = Challenge Me: Brain Puzzles 2 SC7D52 = Call of Duty: Black Ops SC7E52 = Call of Duty: Black Ops SC7F52 = Call of Duty: Black Ops SC7I52 = Call of Duty: Black Ops SC7P52 = Call of Duty: Black Ops SC7S52 = Call of Duty: Black Ops SC8E01 = Wii Play: Motion SC8J01 = Wii Play: Motion SC8K01 = Wii Play: Motion SC8P01 = Wii Play: Motion SC9P52 = Cabela's Big Game Hunter 2010 SCAE18 = Calling SCAJ18 = CALLING Kuroki Chakushin SCAP18 = Calling SCBPNK = Cyberbike Cycling Sports SCDE52 = Cabela's Dangerous Hunts 2011 SCDP52 = Cabela's Dangerous Hunts 2011 SCEE6K = Chuck E. Cheese's Party Games SCFPNK = Cocoto Festival SCGE20 = Calvin Tucker's Redneck: Farm Animal Racing Tournament SCGPXT = Calvin Tucker's: Farm Animals Racing Tournament SCHEQH = Canada Hunt SCIE41 = CSI: Fatal Conspiracy SCIP41 = CSI: Fatal Conspiracy SCJE4Q = LEGO Pirates of the Caribbean: The Video Game SCJP4Q = LEGO Pirates of the Caribbean: The Video Game SCKE6K = Chuck E. Cheese's Sports Games SCMJAF = Kamen Rider Climax Heroes OOO SCNEA4 = Scene It? Twilight SCNPA4 = Scene It? Twilight SCPE70 = Centipede: Infestation SCQDRV = Schlag den Raab - Das 2. Spiel SCREJH = Chicken Riot SCRPJH = Chicken Riot SCSE52 = Cruise Ship Vacation Games SCSPGR = Cruise Ship Resort SCTE01 = The Curse of Black Toad SCTPNK = Cocoto Surprise SCUPFR = Crazy Chicken: Carnival SCWE41 = Gold's Gym: Dance Workout SCWP41 = My Fitness Coach: Dance Workout SCXESZ = Chevrolet Camaro: Wild Ride SCXPNJ = Chevrolet Camaro: Wild Ride SCYE4Q = Cars 2 SCYP4Q = Cars 2 SCYX4Q = Cars 2 SCYY4Q = Cars 2 SCYZ4Q = Cars 2 SCZEMH = Crazy Machines SCZPFR = Crazy Machines SD2E41 = Just Dance 2 SD2J01 = Just Dance Wii SD2K41 = Just Dance 2 SD2P41 = Just Dance 2 SD2Y41 = Just Dance 2: Best Buy Edition SD3DSV = Der Gesundheitscoach SD5PTV = Lernerfolg Grundschule Deutsch SD6PTV = Lernerfolg Grundschule Englisch SD7PTV = Lernerfolg Grundschule Mathematik SD8DSV = Mein neues Leben Abenteuer auf Tropicana SD9JAF = SD Gundam Gashapon Wars SDAE01 = Scooby-Doo! The Bros Adventure SDAE5G = The Daring Game for Girls SDBE78 = de Blob 2 SDBP78 = de Blob 2 SDDPML = The Ultimate Battle Of The Sexes SDEE5G = Dance Sensation! SDFE4Q = Disney Sing It: Family Hits SDFP4Q = Disney Sing It: Family Hits SDGE4Q = Disney Channel: All Star Party SDGP4Q = Disney Channel: All Star Party SDHER3 = Super Smash Bros. Brawl Dark Hole/D.A.R.S. SDIE4Q = Disney Sing It: Party Hits SDIP4Q = Disney Sing It: Party Hits SDJJAF = SD Gundam: G Generation World SDLE78 = Dood's Big Adventure SDLP78 = Dood's Big Adventure SDMEG9 = Despicable Me: The Game SDMPAF = Despicable Me: The Game SDNE41 = Just Dance SDNP41 = Just Dance SDOPLR = Doctor Who: Return To Earth SDPE54 = Dora's Big Birthday Adventure SDPP54 = Dora's Big Birthday SDQJGD = Dragon Quest X Inishie no Ryu no Denshou Online SDREYG = Maximum Racing: Drag & Stock Racer SDRP3Q = SingItStar Deutsch Rock-Pop Vol. 1 SDRPNG = Drag & Stock Racer SDSPNG = We Dance SDTH3Q = SingItStar Die Toten Hosen SDTPGN = PDC World Championship Darts: Pro Tour SDUE41 = The Smurfs Dance Party SDUP41 = The Smurfs: Dance Party SDUPO1 = DU Super Mario Bros. : DU Edition SDVE41 = Driver: San Francisco SDVP41 = Driver: San Francisco SDWE18 = Lost in Shadow SDWJ18 = Lost in Shadow SDWP18 = A Shadow's Tale SDXE4Q = Disney Universe SDXP4Q = Disney Universe SDYEA4 = Dance Dance Revolution SDYPA4 = Dance Dance Revolution: Hottest Party 4 SDZE41 = Just Dance Kids SDZP41 = Dance Juniors SE2E69 = EA Sports Active 2 SE2P69 = EA Sports Active 2 SE3E41 = Just Dance 2015 SE3P41 = Just Dance 2015 SEAE69 = EA Sports Active: More Workouts SEAJ13 = EA Sports Active More Workout SEAP69 = EA Sports Active: More Workouts SECE69 = Create SECP69 = Create SEGA = Genplus GX SEGE6U = Yoga SEGP6V = Yoga SEKJ99 = Ikenie no Yoru SELE69 = FIFA Soccer 11 SELP69 = FIFA 11 SELX69 = FIFA 11 SEME4Q = Disney Epic Mickey SEMJ01 = Disney Epic Mickey: Mickey Mouse and the Magic Brush SEMP4Q = Disney Epic Mickey SEMX4Q = Disney Epic Mickey SEMY4Q = Disney Epic Mickey SEMZ4Q = Disney Epic Mickey SENPZX = Enclave: Shadows of Twilight SEOP01 = New Super Mario Bros. Wii 8 Omega SEOP4Q = Sing It: Edad de Oro del Pop Español SEPE41 = The Black Eyed Peas Experience SEPP41 = The Black Eyed Peas Experience SEPX41 = The Black Eyed Peas Experience D1 Edition SEPZ41 = The Black Eyed Peas Experience: Limited Edition SERE4Q = Disney Epic Mickey 2: The Power of Two SERF4Q = Disney Epic Mickey 2: The Power of Two SERK4Q = Disney Epic Mickey 2: The Power of Two SERP4Q = Disney Epic Mickey 2: The Power of Two SERV4Q = Disney Epic Mickey 2: The Power of Two SESEWR = Sesame Street: Ready, Set, Grover! SESPWR = Sesame Street: Ready, Set, Grover! SESUWR = Sesame Street: Ready, Set, Grover! SEZJHF = Inazuma Eleven Strikers 2012 Xtreme SF2P64 = Star Wars: The Force Unleashed II SF4E20 = Flatout SF4PXT = Flatout SF5E41 = Fit in Six SF5J41 = Fit in Six SF5P41 = My Fitness Coach: Club SF7E41 = Family Feud 2012 Edition SF8E01 = Donkey Kong Country Returns SF8J01 = Donkey Kong Returns SF8P01 = Donkey Kong Country Returns SFAE41 = Family Feud Decades SFAJGD = Fullmetal Alchemist: Daughter of the Dusk SFBE70 = Backyard Sports Football: Rookie Rush SFDE01 = New Super Mario Bros. Wii 9 Virtue: This Fall Darkness SFDEAF = Active Life: Magical Carnival SFDJAF = Issyoni Asobou! Dream Theme Park SFDPAF = 家庭训练机 梦幻主题乐园(欧) SFGE69 = Hasbro: Family Game Night 4 - The Game Show SFGP69 = Hasbro: Family Game Night 4 - The Game Show SFHEFP = Outdoor Action Double Pack SFIE01 = Mystery Case Files: The Malgrave Incident SFIP01 = Mystery Case Files: The Malgrave Incident SFKEG9 = Family Party: Fitness Fun SFKPAF = Family Party: Fitness Fun SFLDSV = Der Fluch der Osterinsel SFOEAF = Food Network: Cook or Be Cooked SFPPFR = Fantastic Football Fan Party SFQE8P = Captain America: Super Soldier SFQP8P = Captain America: Super Soldier SFRDRV = Fit & Fun SFRPXT = Fit & Fun SFSPGT = All Round Hunter SFTE78 = Wheel of Fortune SFTP78 = Wheel of Fortune SFUE64 = Star Wars: The Force Unleashed II SFVEXJ = Fishing Resort SFWE69 = 2010 FIFA World Cup South Africa SFWJ13 = 2010 FIFA World Cup South Africa SFWK13 = 2010 FIFA World Cup: South Africa SFWK69 = 2010 FIFA World Cup South Africa SFWP69 = 2010 FIFA World Cup South Africa SFWX69 = 2010 FIFA World Cup South Africa SFWY69 = 2010 FIFA World Cup South Africa SFWZ69 = 2010 FIFA World Cup South Africa SFXPKM = The X Factor SFXXKM = X Factor SFYEG9 = Family Party: 90 Great Games Party Pack SFYPAF = Family Party: 90 Great Games Party Pack SFZEPZ = Pheasants Forever: Wingshooter SFZPXT = Pheasants Forever SG2EFS = Crazy Mini Golf 2 SG2XUG = Crazy Mini Golf 2 SG2YFS = Crazy Mini Golf 2 SG3DSV = Germany's Next Top Model 2010 SG5PSV = Family Quiz SG6DSV = Galileo Family Quiz SG7E20 = The Garfield Show: Threat of the Space Lasagna SG7PVL = The Garfield Show: Threat of the Space Lasagna SG8EG9 = Yogi Bear SG8PAF = Yogi Bear: The Video Game SG9EYC = Gremlins: Gizmo SGAE8P = Tournament of Legends SGAP8P = Tournament of Legends SGBE5G = Greg Hastings Paintball 2 SGCE20 = Glacier 2 SGDEJJ = Let's Play Garden SGDPKM = Play Gardens SGEEG9 = Nat Geo Challenge! Wild Life SGEPLG = Nat Geo Quiz! Wild Life SGHE41 = Tom Clancy's Ghost Recon SGHP41 = Tom Clancy's Ghost Recon SGI1CL = SingIt Clasicos SGI1DB = Sing IT: Dibujos Animados SGI1MC = SingItStar Mecano SGI1ML = Sing It Star: Miliki SGI1PT = Sing IT: Party SGI1RC = Sing IT: Rocks 2 SGIEA4 = GTI Club Supermini Festa! SGIJA4 = GTI Club World City Race SGIPA4 = GTI Club Supermini Festa! SGJDSV = Galileo Mystery: The Crown of Midas SGJPSV = The Crown of Midas SGKEC8 = Champion Jockey: G1 Jockey & Gallop Racer SGKJC8 = Champion Jockey: Gallop Racer & GI Jockey SGKPC8 = Champion Jockey: G1 Jockey & Gallop Racer SGLEA4 = Gormiti: The Lords of Nature! SGLPA4 = Gormiti: The Lords of Nature! SGNE69 = Hasbro: Family Game Night Value Pack SGODKP = Mini Golf Resort SGOETV = Mini Golf Resort SGPEYG = Maximum Racing: GP Classic Racing SGPPNG = GP Classic Racing SGPTI1 = Sing It Party SGQDSV = Germany's Next Top Model 2011 SGREGT = Grease SGRPGT = Grease SGSESZ = Family Gameshow SGSP7J = Family GameShow SGTEFS = My Personal Golf Trainer with IMG Academies and David Leadbetter SGTPUG = My Personal Golf Trainer with IMG Academies and David Leadbetter SGUE4Q = Disney Guilty Party SGVEAF = Go Vacation SGVJAF = Go Vacation SGVPAF = Go Vacation SGWD7K = Bibi Blocksberg SGXE41 = Battle of Giants: Dinosaurs Strike SGXP41 = Combat of Giants: Dinosaurs Strike SGYESZ = Gummy Bears Mini Golf SGYPNJ = Gummy Bears Mini Golf SH2JMS = Hula Wii: Tanoshiku Hula o Odorou!! SH3E54 = NHL 2K11 SH3P54 = NHL 2K11 SH4EFP = Heavy Fire: Afghanistan SH4PNK = Heavy Fire: Afghanistan SH5E69 = Harry Potter and the Deathly Hallows, Part 2 SH5P69 = Harry Potter and the Deathly Hallows - Part 2 SH6E52 = Cabela's Big Game Hunter 2012 SH6P52 = Cabela's Big Game Hunter 2012 SH7ESZ = Honda ATV Fever SH7PNJ = ATV Fever SH8E52 = Cabela's Adventure Camp SH8P52 = Cabela's Adventure Camp SH9ESZ = Heathcliff: The Fast and the Furriest SHBE69 = Hasbro: Family Game Night 3 SHBP69 = Hasbro: Family Game Night 3 SHDE52 = How to Train Your Dragon SHDP52 = How to Train Your Dragon SHEDRM = Der Bauernhof SHFE20 = Basketball Hall of Fame: Ultimate Hoops Challenge SHGDRM = Holiday Games SHHE69 = Harry Potter and the Deathly Hallows, Part 1 SHHP69 = Harry Potter and the Deathly Hallows - Part 1 SHIJ2N = Shape Boxing 2 Wii Enjoy Diet! SHKE20 = Hello Kitty Seasons SHKPNQ = Hello Kitty Seasons SHLPA4 = Silent Hill: Shattered Memories SHMPLR = Horrid Henry: Missions of Mischief SHNE41 = Shaun White Skateboarding SHNP41 = Shaun White Skateboarding SHOXKR = Hugo: Magic in the Troll Woods SHOYKR = Hugo: Magic in the Troll Woods SHPE5G = Our House Party SHSE20 = Hyper Fighters SHSPXT = Hyper Fighters SHTE20 = Mathews Bow Hunting SHUE52 = Cabela's Dangerous Hunts 2011: Special Edition SHVE78 = Hot Wheels: Track Attack SHVP78 = Hot Wheels: Track Attack SHWE41 = Hollywood Squares SHXEWR = Happy Feet Two SHXPWR = Happy Feet 2 SHYE69 = NHL SlapShot SHYP69 = EA Sports: NHL Slapshot SHZENR = Harley Davidson: Road Trip SI3E69 = FIFA Soccer 12 SI3P69 = FIFA 12 SI3X69 = FIFA 12 SIABOH = SingItStar Placebo SIAE52 = Ice Age: Continental Drift - Arctic Games SIAP52 = Ice Age 4: Continental Drift - Artic Games SIBBHJ = SingItStar Country SIDE54 = Sid Meier's Pirates! SIDP54 = Sid Meier's Pirates! SIESP1 = Sing It: Canciones en Español SIFESZ = The Island of Dr. Frankenstein SIFPNJ = The Island of Dr. Frankenstein SIFPOH = SingItStar Fussballhits SIHE4Z = Sing 4: The Hits Edition SIIE8P = Mario & Sonic at the London 2012 Olympic Games SIIJ01 = Mario & Sonic at the London 2012 Olympic Games SIIP8P = Mario & Sonic at the London 2012 Olympic Games SIJE52 = iCarly 2: iJoin the Click! SIJP52 = iCarly 2: iJoin the Click! SILE78 = Worms: Battle Islands SILP4Q = Latino Sing It SILP78 = Worms Battle Islands SIME69 = MySims Collection SINPNG = We Sing: Robbie Williams SIPE7T = I SPY Game Pack SIS1OH = SingItStar Volume 1 SIS2OH = SingItStar ABBA SIS3OH = SingItStar Summer Party SIS4OH = SingItStar Amped SIS5OH = SingItStar Pop Hits SIS7OH = SingItStar Take That SIS80Q = SingItStar Ultimate 80's SIS80S = StarSing : '80s Volume 1 v1.2 SIS90H = SingItStar 90´s SIS9OH = SingItStar 90's SISACD = StarSing AC/DC SISAOH = SingItStar Après Ski Party SISBOH = SingItStar R'n'B SISCOH = SingItStar Chartbreaker SISCS1 = SingItStar Chartsurfer Vol. 1 SISDAE = SingItStar Die Ärzte SISDEM = SingItStar Depeche Mode SISDOH = SingItStar The Dome SISENR = Princess Isabella: A Witch's Curse SISHOH = SingItStar Hottest Hits SISJ0Q = Pelvic Fitness by Wii (Isometric & Karate Exercise) SISLIP = StarSing : Linkin Park v1.2 SISLOH = SingItStar Legends SISMEL = StarSing : Happy Birthday Mélanie v1.1 SISMJ1 = StarSing : Michael Jackson v2.1 SISMOH = SingItStar Mallorca Party SISP10 = SingItStar Studio100 SISP12 = StarSing : Pop Hits 1 & 2 v2.0 SISP34 = StarSing : Pop Hits 3 & 4 v2.0 SISPBC = SingItStar Britney vs Christina SISPOH = SingItStar Party SISPOP = StarSing : Pop v1.1 SISPUH = Princess Isabella: A Witch's Curse SISQ3Q = SingItStar Queen SISR3Q = SingItStar Rocks! SISREU = StarSing : Rocks! v1.1 SISRP4 = SingItStar Rocks! SISSOH = SingItStar Schlager SISTDK = SingItStar - Turkish Party SITPNG = We Sing: Deutsche Hits SIUUNG = We Sing Down Under SIXE01 = New Super Mario Bros Wii 16 Revelations SIXE41 = Drawsome! Tablet SJ2EWR = Scooby-Doo! and the Spooky Swamp SJ2PWR = Scooby-Doo! and the Spooky Swamp SJ3JDA = Jinsei Game: Happy Family SJ3PNL = Jakers! Kart Racing SJ5JDA = Jinsei Game Happy Family Gotouchi Neta Zouryou Shiage SJ6E41 = Just Dance Disney Party SJ6P41 = Just Dance Disney Party SJ7E41 = Just Dance Kids 2014 SJ7P41 = Just Dance Kids 2014 SJ9E41 = Just Dance Summer Party SJ9P41 = Just Dance 2: Extra Songs SJAE5G = JAWS: Ultimate Predator SJBE52 = GoldenEye 007 SJBJ01 = GoldenEye 007 SJBP52 = GoldenEye 007 SJCEZW = Jerry Rice & Nitus' Dog Football SJDE41 = Just Dance 3 SJDJ01 = Just Dance Wii 2 SJDK41 = Just Dance 3 SJDP41 = Just Dance 3 SJDX41 = Just Dance 3 Special Edition SJDY41 = Just Dance 3: Best Buy Exclusive Edition SJDZ41 = Just Dance 3: Target Exclusive Edition SJEEPK = JumpStart Escape from Adventure Island SJFE4Z = Kid Fit Island Resort SJFPGR = Junior Fitness Trainer SJFXGR = Junior Fitness Trainer SJGEPK = JumpStart Get Moving Family Fitness SJHE41 = Just Dance Greatest Hits SJIEG9 = Jillian Michaels Fitness Ultimatum 2011 SJJEA4 = Jimmie Johnson's Anything With An Engine SJKEPK = JumpStart Crazy Karts SJLEFS = Junior League Sports SJLPXT = Junior League Sports SJME5G = Jillian Michaels Fitness Ultimatum 2010 SJMPGT = Jillian Michaels Fitness Ultimatum 2010 SJOE41 = Just Dance 2014 SJOP41 = Just Dance 2014 SJPE78 = Jeopardy! SJQEPZ = Jewel Quest Trilogy SJQPGR = Jewel Quest Trilogy SJREA4 = Def Jam Rapstar SJRXA4 = Def Jam Rapstar SJSEPK = JumpStart Pet Rescue SJTP41 = Just Dance: Best Of SJUE20 = Dino Strike SJUPXT = Dino Strike SJVE20 = Shawn Johnson Gymnastics SJWJA4 = Winning Eleven PLAY MAKER 2010 Japan Challenge SJXD41 = Just Dance 4 SJXE41 = Just Dance 4 SJXP41 = Just Dance 4 SJZE41 = Just Dance Kids 2 SJZP41 = Just Dance Kids SK3EEB = Trauma Team SK4E52 = Shrek Forever After SK4P52 = Shrek Forever After SK5PY1 = Kylie Sing & Dance SK6KJD = K-POP Dance Festival SK7PVZ = Disney Violetta: Rhythm & Music SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8P52 = Skylanders: Trap Team SK8V52 = Skylanders: Trap Team SKAEA4 = Karaoke Revolution Glee SKAPA4 = Karaoke Revolution Glee SKBEG9 = Kidz Bop Dance Party SKCE20 = Bigfoot: King of Crush SKDJ18 = Karaoke Joysound Wii Duet Song SKEJ18 = Karaoke Joysound Wii: Enka Kayoukyoku Hen SKGEA4 = Karaoke Revolution Glee Volume 2 SKGPA4 = Karaoke Revolution Glee Volume 2 SKHJAF = Kamen Rider Super Climax Heroes SKJE78 = You Don't Know Jack SKKPHY = Captain Morgane and the Golden Turtle SKKXHY = Captain Morgane and the Golden Turtle SKLDSV = K11 - Kommissare im Einsatz SKMJAF = Kamen Rider Climax Heroes W SKOEA4 = Karaoke Revolution Glee Volume 3 SKOPA4 = Karaoke Revolution Glee Volume 3 SKREG9 = Kamen Rider Dragon Knight SKSE54 = NBA 2K13 SKSP54 = NBA 2K13 SKTE78 = All Star Karate SKTP78 = All Star Karate SKUE78 = Kung Fu Panda 2 SKUP78 = Kung Fu Panda 2 SKVE20 = Kevin Van Dam's Big Bass Challenge SKWPNK = Cocoto Kart Racer 2 SKXE20 = Pirate Blast SKXPFH = Pirate Blast SKYE52 = Skylanders: Giants SKYP52 = Skylanders: Giants SKYX52 = Skylanders: Giants SKYZ52 = Skylanders: Giants SKZE52 = DreamWorks Super Star Kartz SKZP52 = DreamWorks Super Star Kartz SL2J01 = Zero: Shinku no Chou SL2P01 = Project Zero 2: Wii Edition SL3ENR = Dragon's Lair Trilogy SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = The Last Airbender SLAP78 = The Last Airbender SLAZ78 = The Last Airbender: ToysRUs Special Edition SLCEGN = Get Up And Dance SLCPGN = Get Up And Dance SLDEYG = Let's Dance SLDPLG = Let's Dance with Mel B SLEE78 = Deepak Chopra's Leela SLEP78 = Deepak Chopra's Leela SLFE01 = New Super Mario Bros. 3 The Final Levels SLFP01 = New Super Mario Bros. 3: The Final Levels SLFPKM = Let's Sing SLFXKM = Let's Sing 5 - Spanish version SLHEWR = LEGO Harry Potter: Years 5-7 SLHPWR = LEGO Harry Potter: Years 5-7 SLIE52 = Little League World Series Baseball: Double Play SLLEWW = Lucha Libre AAA: Héroes del Ring SLPP5D = The Spirit of the Wolf SLREWR = LEGO The Lord of the Rings SLRPWR = LEGO The Lord of the Rings SLSEXJ = The Last Story SLSJ01 = The Last Story SLSP01 = The Last Story SLTEJJ = NewU Fitness First Mind Body: Yoga & Pilates Workout SLTPLG = NewU Fitness First Mind Body: Yoga & Pilates Workout SLVP41 = We Dare SLWE41 = Where's Waldo? The Fantastic Journey SLYESZ = Beastly SLYPNJ = Beastly SM2E52 = 10 Minute Solution SM2P52 = 10 Minute Solution SM3E01 = Super Mario Bros. 3+ SM4E20 = Monster Trucks Mayhem SM4PXT = Monster Trucks: Ultra Mega Xtreme!!! SM5EAF = Power Rangers Samurai SM5PAF = Power Rangers Samurai SM6PNK = My Body Coach 2: Fitness & Dance SM7E69 = Madden NFL 12 SM8D52 = Call of Duty: Modern Warfare 3 SM8E52 = Call of Duty: Modern Warfare 3 SM8F52 = Call of Duty: Modern Warfare 3 SM8I52 = Call of Duty: Modern Warfare 3 SM8P52 = Call of Duty: Modern Warfare 3 SM8S52 = Call of Duty: Modern Warfare 3 SM8X52 = Call of Duty: Modern Warfare 3 SM9E54 = Major League Baseball 2K12 SMAENR = Marines: Modern Urban Combat SMAPGN = Marines: Modern Urban Combat SMBE8P = Super Monkey Ball: Step & Roll SMBJ8P = Super Monkey Ball: Step & Roll SMBP8P = Super Monkey Ball: Step & Roll SMCENR = We Wish You A Merry Christmas SMCPXT = We Wish You A Merry Christmas SMD3OH = SingItStar e La Magia Disney SMEE69 = Madden NFL 11 SMFE4Q = Phineas and Ferb: Across the 2nd Dimension SMFP4Q = Phineas and Ferb: Across the 2nd Dimension SMGE78 = Megamind: Mega Team Unite SMGP78 = Megamind: Mega Team Unite SMGX = SaveGame Manager GX SMHPNK = Marvel Super Heroes 3D: Grandmaster's Challenge SMIE41 = Who Wants To Be A Millionaire SMIG3Q = SingItStar Made in Germany SMJE52 = Monster Jam: Path of Destruction SMJP52 = Monster Jam: Path of Destruction SMKE4Z = Gem Smashers SMLE54 = Major League Baseball 2K10 SMME02 = Super Mario: Mushroom Adventure PLUS - Winter Moon SMMJ0Q = Momu chan Diet Wii Figurobics by Chon Dayon SMMP01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 4. SMMP02 = Super Mario: Mushroom Adventure PLUS: Winter Moon SMNC01 = New Super Mario Bros. Wii SMNE01 = New Super Mario Bros. Wii SMNE02 = New Super Mario Remake SMNE03 = Newer Super Mario Bros. Wii SMNE04 = Cannon Super Mario Bros. Wii SMNE05 = Another Super Mario Bros. Wii SMNE06 = Newer Summer Sun SMNE07 = Newer Holiday Special SMNE08 = Epic Super Bowser World SMNE09 = Old Super Mario Bros. Wii SMNE10 = Koopa Country SMNE11 = New Super Mario Bros. Wii 4 SMNE12 = Awesomer Super Luigi Mini SMNE13 = New Super Mario Bros. Wii 9 Summer Special SMNE14 = Super Mario World Wii SMNE15 = Newer Super Mario Bros. 7 SMNE16 = Newer Super Mario Sunshine SMNE17 = Flowery Super Mario Land Wii SMNE18 = Super Switchy Mario World Wii SMNE19 = New Super Mr. M Bros. Wii SMNE20 = New Super Mario Bros. H SMNE21 = Newer Super Mario Land Wii SMNE22 = Neo Mario Brothers Wii SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE24 = Super Mario Ghost Special SMNE25 = Happy Super Marionose Wii SMNE26 = New Super Mario Bros. DS Wii Version SMNE27 = Newer Super Mario All Star SMNE28 = New Super Mario World SMNE29 = Not So Super Toaster Bros.: The Newer Collab! SMNE2D = Super Mario 2D Land 7 SMNE30 = New Super Mario Bros. Koopa Kall SMNE31 = New Super Mario Bros. Wii - Other World SMNE32 = Super Mario Legends SMNE33 = New Super Mario Bros. Wii Rollercoaster Party SMNE34 = New Super Mario Bros. Wii: Yoshi Mode SMNE35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNE36 = New Super Mario Bros. Wii Hack Pack SMNE37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNE38 = New Super Mario Bros. Wii Underground Maze SMNE39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNE40 = Newer Super Mario Bros. Wii U SMNE41 = Devil Mario Winter Special SMNE42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNE99 = Children's Super Mario Bros. Wii SMNED2 = New Super Mario Bros. + Animal Edition SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNENW = Newer Mario Escapade SMNEPM = Super Mario: Mushroom Adventure PLUS SMNEPS = New Super Mario Bros. Plus SMNERE = Retro Mario Bros. SMNERV = RVLution Wii SMNESL = Newer Super Mario Land Wii SMNESM = New Super Ghost Mario Wii SMNESN = New Super Mario Bros. Wii H SMNESS = New Super Mario Bros. 7 SMNEXD = Deluxe Super Mario Bros. Wii SMNEXR = Super Mario Remix SMNEYE = 8Forrest's Super Mario Bros. Wii SMNEYL = Luigi's Super Yoshi Bros. SMNEYM = You Super Mario Bros. Me Summer Special SMNEYS = Yoshi Super Mario Bros. Wii SMNEYU = You Super Mario Bros. Me SMNEYW = Newer Super Mario World Yoshi Way SMNEYY = You Super Mario Bros. Me Autumn Adventure SMNEZ2 = New JeDa Mario Bros. Wii SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZG = GF Super Mario Bros. Wii SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZQ = Basic Super Mario Bros. Wii SMNEZR = Newer Super Wario World Wii SMNEZS = Another Newer Super Mario Bros. Wii SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZX = Donkey Kong Remastered SMNEZY = Super Mario Skyland SMNEZZ = New Super Mario Bros. 2 Wii Version SMNJ01 = New Super Mario Bros. Wii SMNJ02 = Awesomer Super Luigi Mini SMNJ03 = Newer Super Mario Bros. Wii SMNJ04 = Cannon Super Mario Bros. Wii SMNJ06 = Newer Summer Sun SMNJ07 = Newer Holiday Special SMNJ08 = Epic Super Bowser World SMNJ10 = Koopa Country SMNJ11 = New Super Mario Bros. Wii 4 SMNJ13 = New Super Mario Bros. Wii 9 Summer Special SMNJ14 = Super Mario World Wii SMNJ15 = Newer Super Mario Bros. 7 SMNJ16 = Newer Super Mario Sunshine SMNJ17 = Flowery Super Mario Land Wii SMNJ18 = Super Switchy Mario World Wii SMNJ19 = New Super Mr. M Bros. Wii SMNJ20 = New Super Mario Bros. H SMNJ21 = Newer Super Mario Land Wii SMNJ22 = Neo Mario Brothers Wii SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ24 = Super Mario Ghost Special SMNJ25 = Happy Super Marionose Wii SMNJ26 = New Super Mario Bros. DS Wii Version SMNJ27 = Newer Super Mario All Star SMNJ28 = New Super Mario World SMNJ29 = Not So Super Toaster Bros.: The Newer Collab! SMNJ2D = Super Mario 2D Land Wii SMNJ30 = New Super Mario Bros. Koopa Kall SMNJ31 = New Super Mario Bros. Wii - Other World SMNJ32 = Super Mario Legends SMNJ33 = New Super Mario Bros. Wii Rollercoaster Party SMNJ34 = New Super Mario Bros. Wii: Yoshi Mode SMNJ35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNJ36 = New Super Mario Bros. Wii Hack Pack SMNJ37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNJ38 = New Super Mario Bros. Wii Underground Maze SMNJ39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNJ40 = Newer Super Mario Bros. Wii U SMNJ41 = Devil Mario Winter Special SMNJ42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNJ99 = Children's Super Mario Bros. Wii SMNJD2 = New Super Mario Bros. + Animal Edition SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJNW = Newer Mario Escapade SMNJPM = Super Mario: Mushroom Adventure PLUS SMNJPS = New Super Mario Bros. Plus SMNJRE = Retro Mario Bros. SMNJRV = RVLution Wii SMNJSL = Newer Super Mario Land Wii SMNJSM = New Super Ghost Mario Wii SMNJXD = Deluxe Super Mario Bros. Wii SMNJXR = Super Mario Remix SMNJYE = 8Forrest's Super Mario Bros. Wii SMNJYL = Luigi's Super Yoshi Bros. SMNJYM = You Super Mario Bros. Me Summer Special SMNJYS = Yoshi Super Mario Bros. Wii SMNJYY = You Super Mario Bros. Me Autumn Adventure SMNJZ2 = New JeDa Mario Bros. Wii SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZG = GF Super Mario Bros. Wii SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZQ = Basic Super Mario Bros. Wii SMNJZR = Newer Super Wario World Wii SMNJZS = Another Newer Super Mario Bros. Wii SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZX = Donkey Kong Remastered SMNJZY = Super Mario Skyland SMNJZZ = New Super Mario Bros. 2 Wii Version SMNK01 = New Super Mario Bros. Wii SMNP01 = New Super Mario Bros. Wii SMNP02 = Awesomer Super Luigi Mini SMNP03 = Newer Super Mario Bros. Wii SMNP04 = Cannon Super Mario Bros. Wii SMNP05 = Another Super Mario Bros. Wii SMNP06 = Newer Summer Sun SMNP07 = Newer Holiday Special SMNP08 = Epic Super Bowser World SMNP10 = Koopa Country SMNP11 = New Super Mario Bros. Wii 4 SMNP12 = Awesomer Super Luigi Mini SMNP13 = New Super Mario Bros. Wii 9 Summer Special SMNP14 = Super Mario World Wii SMNP15 = Newer Super Mario Bros. 7 SMNP16 = Newer Super Mario Sunshine SMNP17 = Flowery Super Mario Land Wii SMNP18 = Super Switchy Mario World Wii SMNP19 = New Super Mr. M Bros. Wii SMNP20 = New Super Mario Bros. H SMNP21 = Newer Super Mario Land Wii SMNP22 = Neo Mario Brothers Wii SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP24 = Super Mario Ghost Special SMNP25 = Happy Super Marionose Wii SMNP26 = New Super Mario Bros. DS Wii Version SMNP27 = Newer Super Mario All Star SMNP28 = New Super Mario World SMNP29 = Not So Super Toaster Bros.: The Newer Collab! SMNP2D = Super Mario 2D Land Wii SMNP30 = New Super Mario Bros. Koopa Kall SMNP31 = New Super Mario Bros. Wii - Other World SMNP32 = Super Mario Legends SMNP33 = New Super Mario Bros. Wii Rollercoaster Party SMNP34 = New Super Mario Bros. Wii: Yoshi Mode SMNP35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNP36 = New Super Mario Bros. Wii Hack Pack SMNP37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNP38 = New Super Mario Bros. Wii Underground Maze SMNP39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNP40 = Newer Super Mario Bros. Wii U SMNP41 = Devil Mario Winter Special SMNP42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNP77 = New Super Mario Bros. Wii Arcadia SMNP99 = Children's Super Mario Bros. Wii SMNPD2 = New Super Mario Bros. + Animal Edition SMNPDU = DU Super Mario Bros. : Anniversary Edition SMNPLL = Newer Super Luigi Wii SMNPLM = Newer Super Luigi Wii Dark Moon SMNPMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNPNW = Newer Mario Escapade SMNPO1 = New Super Mario Custom Edition SMNPPM = Super Mario: Mushroom Adventure PLUS SMNPPS = New Super Mario Bros. Plus SMNPRE = Retro Mario Bros. SMNPRV = RVLution Wii SMNPSL = Newer Super Mario Land Wii SMNPSM = New Super Ghost Mario Wii SMNPXD = Deluxe Super Mario Bros. Wii SMNPXR = Super Mario Remix SMNPYE = 8Forrest's Super Mario Bros. Wii SMNPYL = Luigi's Super Yoshi Bros. SMNPYM = You Super Mario Bros. Me Summer Special SMNPYS = Yoshi Super Mario Bros. Wii SMNPYY = You Super Mario Bros. Me Autumn Adventure SMNPZ2 = New JeDa Mario Bros. Wii SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZG = GF Super Mario Bros. Wii SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZQ = Basic Super Mario Bros. Wii SMNPZR = Newer Super Wario World Wii SMNPZS = Another Newer Super Mario Bros. Wii SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZX = Donkey Kong Remastered SMNPZY = Super Mario Skyland SMNPZZ = New Super Mario Bros. 2 Wii Version SMNW01 = New Super Mario Bros. Wii SMOE41 = Michael Jackson: The Experience SMOJ41 = Michael Jackson: The Experience SMOP41 = Michael Jackson The Experience SMOT3Q = SingItStar Motown SMOX41 = Michael Jackson: The Experience - Walmart Edition SMOY41 = Michael Jackson: The Experience - Special Edition SMPE69 = Monopoly Collection SMPP01 = New Super Mario Bros. Wii 2: The Other P SMPP69 = Monopoly Collection SMRE01 = New Super Mario Bros. Wii: Super Mario Bros. 1 Custom SMRE78 = WWE SmackDown vs. Raw 2011 SMRP78 = WWE SmackDown vs. Raw 2011 SMSE01 = New Super Mario Bros Wii 12 Sunshine Paradise SMSE78 = Marvel Super Hero Squad: The Infinity Gauntlet SMSP78 = Marvel Super Hero Squad: The Infinity Gauntlet SMTJ18 = Momotarô Dentetsu 2010 SMUJAF = Daikaijuu Battle: Ultra Coliseum DX - Ultra Senshi Daishuuketsu SMVE01 = Super Mario Vacation SMVE54 = Major League Baseball 2K11 SMVJ01 = Super Mario Vacation SMVP01 = Super Mario Vacation SMWE01 = Newer Super Mario World U SMWE4Z = Man vs. Wild SMWJ01 = Newer Super Mario World U SMWP01 = Newer Super Mario World U SMYE20 = Minute to Win It SMZE78 = Marvel Super Hero Squad: Comic Combat SMZP78 = Marvel Super Hero Squad: Comic Combat SN2E69 = NERF N-Strike Double Blast Bundle SN3EYG = Maximum Racing: Rally Racer SN3PNG = Rally Racer SN4EDA = Naruto Shippuden: Dragon Blade Chronicles SN4JDA = Naruto Shippuuden: Ryujinki SN4XGT = Naruto Shippuden: Dragon Blade Chronicles SN5EYG = Maximum Racing: Crash Car Racer SN5PNG = Crash Car Racer SN6EYG = Maximum Racing: Super Karts SN6PNG = Super Karts SN7EYG = Maximum Racing: Super Truck Racer SN7PNG = Super Truck Racer SN8EYG = Maximum Racing: Sprint Cars SN8PNG = Sprint Cars SN9E54 = Nickelodeon Fit SNAE52 = Cabela's North American Adventures 2011 SNBE41 = NCIS: The Game SNBP41 = NCIS: The Game SNCE8P = Sonic Colors SNCJ8P = Sonic Colors SNCP8P = Sonic Colours SNDE20 = Deal or No Deal: Special Edition SNEENR = North American Hunting Extravaganza 2 SNEPXT = North American Hunting 2: Extravaganza SNFE69 = EA Sports Active NFL Training Camp SNGEJJ = Get Fit with Mel B SNGPLG = Get Fit with Mel B SNHE69 = Need for Speed: Hot Pursuit SNHJ13 = Need for Speed: Hot Pursuit SNHP69 = Need for Speed: Hot Pursuit SNIE54 = Nicktoons MLB SNJE69 = NBA Jam SNJP69 = NBA Jam SNKX54 = Nickelodeon Fit SNLE01 = New Super Mario Bros. Wii 0-2 Next Generation Levels SNLE54 = Nickelodeon Dance SNLP54 = Nickelodeon Dance SNLX54 = Nickelodeon Dance SNMEAF = Namco Museum Megamix SNOPY1 = Now! That's What I Call Music: Dance & Sing SNPE52 = NASCAR The Game: Inside Line SNQE7U = National Geographic Challenge! SNQPLG = National Geographic Challenge! SNRE52 = NASCAR Unleashed SNSE52 = NASCAR 2011: The Game SNTEXN = Netflix Instant Streaming Disc SNUPJW = Happy Neuron Academy SNVE69 = Need for Speed: The Run SNVJ13 = Need for Speed: The Run SNVP69 = Need for Speed: The Run SNXJDA = Naruto Shippuuden: Gekitou Ninja Taisen Special SNYEVZ = Monster High: 13 Wishes SNYPVZ = Monster High: 13 Wishes SNZEVZ = Barbie: Dreamhouse Party SNZPVZ = Barbie: Dreamhouse Party SO3EE9 = Rune Factory: Tides of Destiny SO3J99 = Rune Factory: Oceans SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg 2 SOCE4Z = Deadliest Catch: Sea of Chaos SOIEEB = 101-in-1 Sports Party Megamix SOIPHZ = 101-in-1 Sports Party Megamix SOJE41 = Rayman Origins SOJP41 = Rayman Origins SOKEA4 = Karaoke Joysound SOKJ18 = Karaoke Joysound Wii DX SOME01 = Rhythm Heaven Fever SOMJ01 = Minna no Rhythm Tengoku SOMK01 = Rhythm Heaven Fever SOMP01 = Beat the Beat: Rhythm Paradise SONDMR = My First Songs SONFMR = My First Songs SONPMR = My First Songs SORE4Z = The Oregon Trail SOSEG9 = Turbo: Super Stunt Squad SOSPAF = Turbo: Super Stunt Squad SOTE52 = Wipeout: The Game SOUE01 = The Legend of Zelda: Skyward Sword SOUJ01 = The Legend of Zelda: Skyward Sword SOUK01 = The Legend of Zelda: Skyward Sword SOUP01 = The Legend of Zelda: Skyward Sword SP2E01 = Wii Sports + Wii Sports Resort SP2P01 = Wii Sports + Wii Sports Resort SP3E41 = The $1,000,000 Pyramid SP4PJW = Pétanque Master SP4V = Castlevania: Rondo of Blood SP5E70 = 恶徒 来自地底的侵略者(美) SP5PVV = The Kore Gang: Outvasion From Inner Earth SP6DSV = Popstars SP7EAF = Pac-Man Party SP7JAF = Pac-Man Party SP7PAF = Pac-Man Party SP8E78 = The Penguins of Madagascar: Dr. Blowhole Returns Again! SP8P78 = The Penguins of Madagascar: Dr. Blowhole Returns Again! SP9P4Q = SingIt Star POP 2009 SP9PJW = Pucca's Race for Kisses SPAE5G = Pirates Plund-Arrr SPBPGT = Spellbound Party SPCPZS = Pocoyo Racing SPDE52 = Spider-Man: Shattered Dimensions SPDP52 = Spider-Man: Shattered Dimensions SPEE20 = Speed SPEPXT = Speed SPGPPN = Peppa Pig: Fun And Games SPHPJW = Spaghetti Western Shooter SPIE18 = Oops! Prank Party SPIJ18 = Party Game Box 100 SPIP18 = Games Island SPKXPV = Springdale: Riding Adventures SPMDRM = Mahjongg Party SPMPWP = Mahjong Party Pack SPOPFR = Winter Sports 2011: Go for Gold SPPEFS = Power Punch SPQE7T = I SPY Spooky Mansion SPRE01 = New Super Mario Bros. Wii 14 Project Mario SPRE41 = The Price Is Right: 2010 Edition SPTJEB = Hospital. 6 nin no Ishi SPUE20 = Let's Paint SPVEA4 = Pro Evolution Soccer 2011 SPVPA4 = Pro Evolution Soccer 2011 SPVXA4 = Pro Evolution Soccer 2011 SPVYA4 = Pro Evolution Soccer 2011 SPWHZH = The Studio 100: Play Island SPXP41 = Prince of Persia: The Forgotten Sands SPYDSV = Yetisports: Penguin Party Island SPZE5G = Pizza Delivery Boy SQ2EPZ = Country Dance SQ2PXT = Country Dance SQAE52 = Cabela's African Adventures SQBPXT = The Cube SQDE8P = Gunblade NY & LA Machineguns : Arcade Hits Pack SQDP8P = Gunblade NY & LA Machineguns: Arcade Hits Pack SQEENG = We Sing Pop! SQEPNG = We Sing Pop! SQFE5G = Phineas and Ferb: Quest for Cool Stuff SQFPGT = Phineas and Ferb: Quest for Cool Stuff SQIE4Q = Disney Infinity SQIP4Q = Disney Infinity SQIY4Q = Disney Infinity SQKE5G = Cooking Mama 2-Pack SQKK01 = Cooking Mama 2 Pack SQLE4Z = Cartoon Network Punch Time Explosion XL SQLPGN = Cartoon Network: Punch Time Explosion XL SQME52 = Spider-Man: Edge of Time SQMP52 = Spider-Man: Edge of Time SQPPX4 = Speed 2 SQQEVZ = Disney Planes: Fire & Rescue SQQPVZ = Disney Planes: Fire & Rescue SQRPNG = We Sing Rock! SQTPML = The Ultimate Battle Of The Sexes: Quizz & Play! SQUDX3 = Quiz Party SQUFX3 = Quiz Party SQVE69 = FIFA 15 SQVP69 = FIFA 15 - Legacy Edition SQVX69 = FIFA 15 - Legacy Edition SR4E41 = Raving Rabbids: Travel in Time SR4J41 = Raving Rabbids: Travel in Time SR4P41 = Raving Rabbids: Travel in Time SR5E41 = Raving Rabbids Party Collection SR5P41 = Raving Rabbids Party Collection SR6EHG = Reader Rabbit 1st Grade SR7EHG = Reader Rabbit 2nd Grade SR8EHG = Reader Rabbit Kindergarten SR9EHG = Reader Rabbit Preschool SRAJMS = Rajirugi Noa Wii SRBP4Q = SingItStar: R&B SRBPHS = Rugby League 3 SRCE69 = Rock Band: Country Track Pack 2 SREXNL = Reader Rabbit Kindergarten SRFE52 = Rapala Pro Bass Fishing SRFP52 = Rapala Pro Bass Fishing SRGE69 = Rango SRGP01 = New Super Mario Bros Wii 2 Reggie SRGP69 = Rango SRHP01 = New Super Mario Bros. Wii 7 Retro Heaven SRIE78 = Rio SRIP78 = Rio SRJJAF = Super Sentai Battle: Ranger Cross SRKEFP = Remington Super Slam Hunting: Alaska SRKPNK = Remington Dangerous Animals SRLXNL = Reader Rabbit Preschool SRME18 = Rooms: The Main Building SRMJ18 = Rooms: Fushigi na Ugoku Heya SRNE70 = Project Runway SRNP01 = New Super Mario Bros. Wii Revolution SRNP70 = Project Runway SRPE4Q = Disney Tangled SRPP4Q = Disney Tangled SRQE41 = Racquet Sports SRQP41 = Racket Sports Party SRRENR = Rec Room Games SRRPGN = Great Party Games SRSE20 = Super Sonic Racer SRSPXT = Supersonic Racer SRTXNL = Reader Rabbit 1st Grade SRUE4Z = Rudolph the Red-Nosed Reindeer SRVE41 = The Price Is Right Decades SRVP01 = New Super Mario Bros Revolution SRWXNL = Reader Rabbit 2nd Grade SRXE52 = Generator Rex: Agent of Providence SRXP52 = Generator Rex: Agent of Providence SRYEAF = ExerBeat: Gym Class Workout SRYJAF = Fitness Party SRYPAF = ExerBeat: Gym Class Workout SS2PFR = Winter Sports 2012: Feel the Spirit SS3EWR = Sesame Street: Elmo's A-to-Zoo Adventure SS3PWR = Sesame Street: Elmo's A-to-Zoo Adventure SS3UWR = Sesame Street: Elmo's A-to-Zoo Adventure SS4EWR = Sesame Street: Cookie's Counting Carnival SS4UWR = Sesame Street: Cookie's Counting Carnival SS5ENR = Satisfashion SS6UHS = AFL Live: Game of the Year Edition SS7EFP = Remington Super Slam Hunting: Africa SS7URN = Remington Super Slam Hunting: Africa SS8E78 = SpongeBob SquigglePants SS8P78 = SpongeBob SquigglePants SS9JMS = Milestone Shooting Collection 2 SSBE78 = Puss in Boots SSBP78 = Puss in Boots SSCDWR = Scene It? Bright Lights! Big Screen! SSCEPM = Scene It? Bright Lights! Big Screen! SSCFPM = Scene It? Bright Lights! Big Screen! SSCFWR = Scene It? Bright Lights! Big Screen! SSCIWR = Scene It? Bright Lights! Big Screen! SSCPWR = Scene It? Bright Lights! Big Screen! SSCSWR = Scene It? Bright Lights! Big Screen! SSDDRV = Schlag den Raab SSEDNG = We Sing: Encore SSEPNG = We Sing: Encore SSEVNG = We Sing: Encore SSFPKM = Sing 4: The Hits Edition SSGPNG = We Sing SSHPHH = Sherlock Holmes: The Silver Earring SSIENR = Winter Blast: 9 Snow & Ice Games SSJEJJ = Summer Stars 2012 SSJPKM = Summer Stars 2012 SSLENR = I Love Horses: Rider's Paradise SSLPKM = The Saddle Club SSLPOH = SingItStar Legends SSMEYG = American Mensa Academy SSMPGD = Mensa Academy SSNEYG = Sniper Elite SSNPHY = Sniper Elite SSPE52 = Skylanders: Spyro's Adventure SSPJ52 = Skylanders: Spyro's Adventure SSPP52 = Skylanders: Spyro's Adventure SSPX52 = Skylanders: Spyro's Adventure SSQE01 = Mario Party 9 SSQJ01 = Mario Party 9 SSQK01 = Mario Party 9 SSQP01 = Mario Party 9 SSQW01 = Mario Party 9 SSRE20 = Wild West Shootout SSRPXT = Wild West Shootout SSSE01 = New Super Mario Bros. Wii: Summer Sun SSSEWR = Sesame Street: Elmo's Musical Monsterpiece SSTEG9 = Kid Adventures: Sky Captain SSTPY5 = Stunt Flyer: Hero of the Skies SSUES5 = Sushi Go Round SSVE52 = Wipeout 3 SSWDRM = Water Sports SSWEPZ = Water Sports SSWPGR = Water Sports SSZE5G = Swords ST3J01 = Kiki Trick ST4PNX = Thomas & Friends: Hero of the Rails ST4XNX = Thomas & Friends: Hero of the Rails ST5E52 = Transformers: Cybertron Adventures ST5P52 = Transformers: Cybertron Adventures ST6E78 = The Biggest Loser Challenge ST6P78 = The Biggest Loser Challenge ST7E01 = Fortune Street ST7JGD = Itadaki Street Wii ST7P01 = Boom Street ST8P75 = SingItStar 80's ST9E52 = Top Shot Arcade STAE78 = Pictionary STAP75 = SingItStar Apres Ski Hits STAP78 = Pictionary STAU78 = Pictionary STCP75 = SingItStar Singstar STDEFP = Reload STDP75 = SingItStar Deutsch Rock-Pop STEETR = Tetris Party Deluxe STEJ18 = Tetris Party Premium STEPTR = Tetris Party Deluxe STFE52 = Transformers: Prime STFP52 = Transformers Prime: The Game STGJAF = Tales of Graces STHE8P = THOR: God of Thunder STHP75 = SingItStar Hottest Hits STHP8P = THOR: God of Thunder STIFKM = Titeuf le Film STJJAF = Taiko no Tatsujin Wii: Ketteiban STKE08 = Tatsunoko vs. Capcom: Ultimate All-Stars STKJ08 = Tatsunoko vs. Capcom: Ultimate All-Stars STKP08 = Tatsunoko vs. Capcom: Ultimate All-Stars STLE78 = Truth or Lies STLP78 = Truth or Lies STMEGN = Titanic Mystery STMPKP = Titanic Mystery STNE41 = The Adventures of Tintin: The Game STNP41 = The Adventures of Tintin: The Secret of the Unicorn STOE4Q = Cars Toon: Mater's Tall Tales STOP4Q = Cars Toon: Mater's Tall Tales STOX4Q = Cars Toon: Mater's Tall Tales STPP75 = SingItStar Pop Hits STPPML = Pet Vet: Marine Patrol STQJHF = Inazuma Eleven Strikers STQP01 = Inazuma Eleven Strikers STQP75 = SingItStar Queen STQX01 = Inazuma Eleven Strikers STRE4Q = Tron: Evolution - Battle Grids STRP4Q = Tron: Evolution - Battle Grids STRP75 = SingItStar Rock Ballads STRX4Q = Tron: Evolution - Battle Grids Championship Edition STSE4Q = Toy Story 3 STSP4Q = Toy Story 3 STSP75 = SingItStar Schlager STSX4Q = Toy Story 3 STSY4Q = Toy Story 3 STSZ4Q = Toy Story 3: Toy Box Special Edition STTDRM = Hidden Mysteries: Titanic STTE52 = Hidden Mysteries: Titanic STTPGR = Hidden Mysteries Titanic: Secrets of the Fateful Voyage STTXGR = Hidden Mysteries: Titanic STUPRN = Turbo Trainz STVDSV = TV Total Events STWE69 = Tiger Woods PGA Tour 11 STWP69 = Tiger Woods PGA Tour 11 STXE69 = Tiger Woods PGA Tour 12: The Masters STXP69 = Tiger Woods PGA Tour 12: The Masters STYE52 = Tony Hawk: Shred STYP52 = Tony Hawk: Shred STZE52 = Transformers: Dark of the Moon - Stealth Force Edition STZP52 = Transformers: Dark of the Moon - Stealth Force Edition SU2E54 = Nickelodeon Dance 2 SU2P54 = Nickelodeon Dance 2 SU2X54 = Nickelodeon Dance 2 SU3DMR = U-Sing 2 SU3FMR = U-Sing 2 SU3HMR = U-Sing 2: Popstars Edition SU3PMR = U-Sing 2 SU3SMR = U-Sing 2 SU3UMR = U-Sing 2: Australian Edition SU4E78 = UFC Personal Trainer: The Ultimate Fitness System SU4P78 = UFC Personal Trainer: The Ultimate Fitness System SU5EVZ = Monster High: Skultimate Roller Maze SU5PVZ = Monster High: Skultimate Roller Maze SU6E5G = Zumba Fitness Core SU6P5G = Zumba Fitness Core SU6XGT = Zumba Fitness Core SU7EG9 = Rise of the Guardians SU7PAF = Rise of the Guardians SU8PNG = We Sing: Deutsche Hits 2 SU9E4Q = Disney Planes SU9P4Q = Disney Planes SU9X4Q = Disney Planes SUKE01 = Kirby's Return to Dream Land SUKJ01 = Hoshi no Kirby Wii SUKK01 = Kirby's Return to Dream Land SUKP01 = Kirby's Adventure Wii SUMJC8 = Winning Post World 2010 SUNEYG = Deer Drive Legends SUOE41 = The Hip Hop Dance Experience SUOP41 = The Hip Hop Dance Experience SUPE01 = Wii Party SUPJ01 = Wii Party SUPK01 = Wii Party SUPP01 = Wii Party SUQENG = We Sing UK Hits SUQPNG = We Sing: UK Hits SURE01 = New Super Mario Bros. Wii 19 Resurrection U SUREA4 = Dance Dance Revolution II SURPA4 = Dance Dance Revolution: Hottest Party 5 SUSFMR = U-Sing Johnny Hallyday SUSPMR = U-Sing Girls Night SUTESZ = Once Upon A Time SUUE78 = uDraw Studio: Instant Artist SUUP78 = uDraw Studio: Instant Artist SUVE52 = Cabela's Dangerous Hunts 2013 SUVP52 = Cabela's Dangerous Hunts 2013 SUWE78 = uDraw Studio SUWP78 = uDraw Studio SUXEA4 = Pro Evolution Soccer 2010 SUXJA4 = Winning Eleven PLAY MAKER 2010 SUXPA4 = Pro Evolution Soccer 2010 SUXXA4 = Pro Evolution Soccer 2010 SUXYA4 = Pro Evolution Soccer 2010 SUYDRV = Schlag den Raab - Das 3. Spiel SUZD7K = Benjamin Blümchen - Törööö im Zoo SV2E78 = Big Beach Sports 2 SV2P78 = Big Beach Sports 2 SV3EG9 = Madagascar 3: The Video Game SV3PAF = Madagascar 3: Europe's Most Wanted SV4E8P = Virtua Tennis 4 SV4P8P = Virtua Tennis 4 SV5PRV = The Voice of Germany Vol. 2 SV6SRV = The Voice SV7EVZ = Penguins of Madagascar SV7PVZ = Penguins of Madagascar SVBE52 = Battleship SVBP52 = Battleship SVCEPZ = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVHP69 = FIFA 14 - Legacy Edition SVHX69 = FIFA 14 - Legacy Edition SVME01 = Super Mario All-Stars SVMJ01 = Super Mario Collection: 25th Anniversary Edition SVMK01 = Super Mario All-Stars SVMP01 = Super Mario All-Stars: 25th Anniversary Edition SVOEWW = El Chavo SVPESZ = Vegas Party SVPPNJ = Vegas Party SVSPZX = Battle vs Chess SVTEXS = Bit.Trip Complete SVTP99 = BIT.TRIP COMPLETE SVUPRV = The Voice of Germany SVVEG9 = The Croods: Prehistoric Party! SVVPAF = The Croods: Prehistoric Party! SVWEQH = Veggy World SVXE52 = Skylanders: Swap Force SVXF52 = Skylanders: Swap Force SVXI52 = Skylanders: Swap Force SVXP52 = Skylanders: Swap Force SVXY52 = Skylanders: Swap Force SVYEG9 = Ben 10: Omniverse 2 SVYPAF = Ben 10: Omniverse 2 SVZEVZ = How to Train Your Dragon 2 SVZPVZ = How to Train Your Dragon 2 SW2E52 = Wipeout 2 SW3EJJ = Winter Stars SW3PKM = Winter Stars SW4JA4 = Winning Eleven PLAY MAKER 2011 SW6E78 = WWE '12 SW6P78 = WWE '12 SW7EVN = Gunslingers SW7PNK = Western Heroes SW8ENG = We Sing 80s SW8PNG = We Sing 80s SW9EVN = Wicked Monsters Blast! SW9PYT = Wicked Monsters Blast! SWAE52 = DJ Hero SWAP52 = DJ Hero SWBE52 = DJ Hero 2 SWBP01 = New Super Mario Bros. Wii 0 Where It All Began SWBP52 = DJ Hero 2 SX2PNG = Jungle Kartz SX3EXJ = Pandora's Tower SX3J01 = Pandora’s Tower: Until I Return to Your Side SX3P01 = Pandora's Tower SX4E01 = Xenoblade Chronicles SX4J01 = Xenoblade SX4P01 = Xenoblade Chronicles SX5E4Z = Santa Claus is Comin' to Town! SX6JAF = Pretty Cure All Stars Everyone Gather ☆ Let's Dance SX7E52 = Teenage Mutant Ninja Turtles SX7P52 = Teenage Mutant Ninja Turtles SX8E52 = X-Men Destiny SX8P52 = X-Men Destiny SXAE52 = Guitar Hero: World Tour SXAP52 = Guitar Hero: World Tour SXBE52 = Guitar Hero: Metallica SXBP52 = Guitar Hero: Metallica SXCE52 = Guitar Hero: Smash Hits SXCP52 = Guitar Hero: Greatest Hits SXDE52 = Guitar Hero: Van Halen SXDP52 = Guitar Hero: Van Halen SXEE52 = Guitar Hero 5 SXEF52 = Guitar Hero III Custom : Megadeth SXEP52 = Guitar Hero 5 SXFE52 = Band Hero SXFF52 = Guitar Hero III Custom : My Chemical Romance SXFP52 = Band Hero SXIE52 = Guitar Hero: Warriors of Rock SXIP52 = Guitar Hero: Warriors of Rock SY8PKM = Let's Sing 2015 SZ2E5G = Zumba Fitness 2 SZ2P5G = Zumba Fitness 2 SZ2XGT = Zumba Fitness 2 SZ3E5G = Zumba Fitness World Party SZ3PGT = Zumba Fitness World Party SZ5E5G = Zumba Fitness SZ5PGT = Zumba Fitness SZAE69 = Rock Band 2 SZAP69 = Rock Band 2 SZBE69 = Rock Band 3 SZBP69 = Rock Band 3 SZEE01 = New Super Mario Bros Wii 13 Shadow Zero Escape TITLES = http://www.gametdb.com (type: Wii language: RU version: 20150208111201) UGPE01 = Game Boy Player UGPJ01 = Game Boy Player UGPP01 = Game Boy Player ULFW = uLoader UUUE01 = New Super Mario Bros. Wii 19 Resurrection U VBGX = Visual Boy Advance GX VIPE01 = New Super Mario Bros Wii 18 Vip Mix W22E = Planet Fish W24E = 2 Fast 4 Gnomz W2AE = Big Bass Arcade W2CE = Brain Challenge W2CJ = Brain Challenge W2CP = Brain Challenge W2FP = Physiofun - Balance Training W2GD = Phoenix Wright Ace Attorney: Justice for All (Deutsche Version) W2GE = Phoenix Wright: Ace Attorney Justice for All W2GI = Phoenix Wright: Ace Attorney - Justice for All W2GJ = Gyakuten Saiban 2 W2GP = Phoenix Wright Ace Attorney: Justice for All W2IE = Fishie Fishie W2IP = Fishie Fishie W2JE = Just Jam W2KE = Let's Catch W2KJ = Let's Catch W2KP = Let's Catch W2LE = Bloons W2LP = Bloons W2ME = Blaster Master: Overdrive W2MP = Blaster Master: Overdrive W2OE = My Aquarium 2 W2OJ = Blue Oasis: Michinaru Shinkai W2OP = My Aquarium 2 W2PP = Physiofun: Pelvic Floor Training W2TE = Drill Sergeant Mindstrong W2TJ = Onitore Kyoukan ha Onigunsou W2TP = Brain Cadets W2YE = Fireplacing W2YP = My Fireplace W34J = Simple Series Vol. 4: The Misshitsu kara no Dasshutsu W3AE = Carmen Sandiego Adventures in Math: The Big Ben Burglary W3BE = Soccer Bashi W3BP = Soccer Bashi W3DJ = 3° C W3FE = 3D Pixel Racing W3FP = 3D Pixel Racing W3GD = Phoenix Wright Ace Attorney 3: Trials And Tribulations W3GE = Phoenix Wright Ace Attorney: Trials and Tribulations W3GI = Phoenix Wright: Ace Attorney - Trials and Tribulations W3GJ = Gyakuten Saiban 3 W3GP = Phoenix Wright Ace Attorney: Trials and Tribulations W3JE = Triple Jumping Sports W3KE = ThruSpace W3KJ = Surinuke Anatousu W3KP = ThruSpace: High Velocity 3D Puzzle W3LE = Carmen Sandiego Adventures in Math: The Lady Liberty Larceny W3ME = The Three Musketeers: One for all W3MP = The Three Musketeers: One for all W3PE = Triple Throwing Sports W3RE = Triple Running Sports W3SE = Triple Shot Sports W3TE = Pearl Harbor Trilogy - 1941: Red Sun Rising W3TP = Pearl Harbor Trilogy 1941: Red Sun Rising W42J = Fortune: Hoshi no Furisosogu Oka W44E = Stop Stress: A Day of Fury W44P = Stop Stress: A Day of Fury W48E = ShadowPlay W4AE = Arcade Sports W4AP = Arcade Sports: Air Hockey, Bowling, Pool, Snooker W4KE = Deer Captor W4KJ = Shikagari W4OJ = Shikakui Atama wo Marukusuru Challenge W4TE = Spaceball Revolution W4TP = Spaceball Revolution W54E = 5 Spots Party W54P = 5 Spots Party W5AE = 5 Arcade Gems W5AP = 5 Arcade Gems W5IE = 5 in 1 Solitaire W6BE = Eco Shooter: Plant 530 W6BJ = 530 Eco Shooter W6BP = Eco-Shooter: Plant 530 W72P = Successfully Learning German Year 3 W73P = Successfully Learning German Year 4 W74P = Successfully Learning German Year 5 W7IP = Successfully Learning German Year 2 W82J = Jintori Action Taikokenchi Karakuri Shiro no Nazo W8BP = Babel Rising W8CE = Bit.Trip Core W8CJ = BIT.TRIP CORE: Rhythm Seijin no Gyakushuu W8CP = Bit.Trip Core W8DJ = Mebius Drive W8IJ = Hachi-One Diver Wii W8LE = Balloon Pop Festival W8PJ = Ouchi de Mugen Puchi Puchi Wii W8WE = Happy Holidays: Halloween W8WP = Happy Holidays: Halloween W8XE = Battle Poker W9BE = Big Town Shoot Out W9BP = Big Town Shoot W9IE = Evasive Space W9IJ = Kiken Kuuiki W9LE = Christmas Clix W9RE = Happy Holidays: Christmas W9RP = Happy Holidays: Christmas W9UE = Cruise Party W9UP = Cruise Party WA2E = Magnetica Twist WA2J = Minna de Puzzloop WA2P = Actionloop Twist WA4E = WarioWare: D.I.Y. Showcase WA4J = WarioWare: D.I.Y. Showcase WA4P = WarioWare: Do It Yourself – Showcase WA5E = Carmen Sandiego Adventures in Math: The Island of Diamonds WA7E = Toribash WA7P = Toribash Violence Perfected WA8E = Art Style: Rotozoa WA8J = Art Style: Penta Tentacles WA8P = Art Style: Penta Tentacles WAAE = Aya and the Cubes of Light WAAP = Aya and the Cubes of Light WABE = Art of Balance WABP = Art of Balance WACE = Arcade Essentials WACP = Arcade Essentials WAEE = Around The World WAEP = Around the world WAFE = Airport Mania: First Flight WAFP = Airport Mania: First Flight WAGE = Pinocchio's Puzzle WAHE = Trenches Generals WAHP = Trenches: Generals WAIE = 101-in-1 Explosive Megamix WAIP = 101-in-1 Explosive Megamix WAJE = MotoHeroz WAJP = MotoHeroz WAKE = Carmen Sandiego Adventures in Math: The Case of the Crumbling Cathedral WALE = Art Style: Light Trax WALJ = Art Style: Lightstream WALP = Art Style: light trax WAME = Carmen Sandiego Adventures in Math: The Great Gateway Grab WANE = Ant Nation WANP = Ant Nation WAOE = The Very Hungry Caterpillar's ABCs WAOJ = Harapeko Aomushi no ABC WAOP = The Very Hungry Caterpillar´s ABC WAQJ = Yakuman Wii: Ide Yousuke no Kenkou Mahjong WARE01 = DU Super Wario Bros. WARJ = Tsuushin Taikyoku Igo Doujou 2700 Mon WASJ = Tsuushin Taikyoku: Hayazashi Syogi Sandan WATE = Astro Bugz Revenge WAUJ = Tsushin Taikyoku: World Chess WAYE = And Yet It Moves WAYP = And Yet It Moves WAZE = The Amazing Brain Train WB2E = Strong Bad Episode 4: Dangeresque 3 WB2P = Strong Bad Episode 4: Dangeresque 3 WB3E = Strong Bad Episode 5: 8-bit is Enough WB3P = Strong Bad Episode 5: 8-bit is Enough WB4E = Wild West Guns WB4J = Wild West Guns WB4P = Wild West Guns WB5E = Block Breaker Deluxe WB5J = Block Breaker Deluxe WB5P = Block Breaker Deluxe WB6E = TV Show King WB6J = TV Show King WB6P = TV Show King WB7E = Midnight Pool WB7J = Hamaru Billiards WB7P = Midnight Pool WB8E = Midnight Bowling WB8J = Hamaru Bowling WB8P = Midnight Bowling WBAJ = Bakutan WBBE = Snowboard Riot WBBJ = Board Warriors WBBP = Snowboard Riot WBDE = Brain Drain WBDP = Brain Drain WBEE = Pong Toss: Frat Party Games WBEP = Beer Pong: Frat Party Games WBFE = Bit.Trip Fate WBFP = Bit.Trip Fate WBGP = Bang Attack WBHE = Blood Beach WBHP = Blood Beach WBIE = Boingz WBJE = Harvest Moon: My Little Shop WBJJ = Bokujou Monogatari Series: Makiba no Omise WBKE = Arkanoid Plus! WBKJ = Arkanoid Plus! WBKP = Arkanoid Plus! WBLE = Bubble Bobble Plus! WBLJ = Bubble Bobble Wii WBLP = Bubble Bobble Plus! WBME = My Pokémon Ranch WBMJ = Minna no Pokémon Bokujou WBMP = My Pokémon Ranch WBNE = Bonsai Barber WBNJ = Bonsai Barber WBNP = Bonsai Barber WBOE = Gravitronix WBPE = PLÄTTCHEN twist 'n' paint WBPP = PLÄTTCHEN - twist 'n' paint WBQE = Star Soldier R WBQJ = Star Soldier R WBQP = Star Soldier R WBRP = Pirates: The Key of Dreams WBSE = Pop WBSJ = Pop WBSP = Pop WBTJ = Fantasic Tambourine WBVE = SPOGS Racing WBVP = SPOGS Racing WBWE = Critter Round-Up WBWJ = Saku Saku Animal Panic WBWP = Critter Round-Up WBXE = Strong Bad Episode 1: Homestar Ruiner WBXP = Strong Bad Episode 1: Homestar Ruiner WBYE = Strong Bad Episode 2: Strong Badia - The Free WBYP = Strong Bad Episode 2: Strong Badia - The Free WBZE = Strong Bad Episode 3: Baddest of the Bands WBZP = Strong Bad Episode 3: Baddest of the Bands WC2E = Crystal Defenders R2 WC2J = Crystal Defenders R2 WC2P = Crystal Defenders R2 WC6E = Chronos Twins DX WC6P = Chronos Twins DX WC8J = Line Attack Heroes WCHE = Chess Challenge! WCHP = Chess Challenge WCIE = Crystal Defenders R1 WCIJ = Crystal Defenders R1 WCIP = Crystal Defenders R1 WCJE = Cocoto Platform Jumper WCJP = Cocoto: Platform Jumper WCKE = chick chick BOOM WCKJ = chick chick BOOM WCKP = chick chick BOOM WCLE = Doc Clock: The Toasted Sandwich of Time WCNJ = Tokyo City Nights WCOE = Cocoto Fishing Master WCOP = Cocoto Fishing Master WCPE = Copter Crisis WCPP = Copter Crisis WCRE = Carnival King WCSE = CueSports: Pool Revolution WCSJ = Cue Sports: Wi-Fi Taisen Billiards WCSP = CueSports: Snooker vs Billiards WCUE = 3-2-1, Rattle Battle! WCUJ = Atsui 12-Game: FuriFuri Party! WCUP = 3-2-1, Rattle Battle! WCVE = Cave Story WCVP = Cave Story WCZE = ColorZ WCZJ = ColorZ WCZP = ColorZ WD2J = Simple Wii Series Vol. 2: The Number Puzzle Neo WD9E = Castlevania The Adventure ReBirth WD9J = Dracula Densetsu ReBirth WD9P = Castlevania: The Adventure ReBirth WDAJ = Darts Wii WDBE = Derby Dogs WDBJ = Dirby Dog WDDE = Diner Dash WDDJ = Diner Dash WDDP = Diner Dash WDEE = Magic Destiny Astrological Games WDEP = Magic Destiny Astrological Games WDFE = Defend your Castle WDFP = Defend your Castle WDHE = Art Style: ROTOHEX WDHJ = Art Style: Dialhex WDHP = Art Style: ROTOHEX WDIJ = Simple Wii Series Vol. 1: The Block Kuzushi Neo WDKE = Dart Rage WDME = Dr. Mario Online RX WDMJ = Dr. Mario & Saikin Bokumetsu WDMP = Dr. Mario & Germ Buster WDNJ = Discipline Teikoku no Tanjyou WDOE = Driift Mania WDOP = Driift Mania WDPE = Dr. Mario Online Rx (Friend Battle Demo) WDPJ = Dr. Mario Online Rx (Friend Battle Demo) WDPP = Dr. Mario & Germ Buster (Friend Battle Demo) WDRE = Mr Driller W WDRJ = Mr. Driller World WDRP = Mr. Driller W WDSE = Dragon Master Spell Caster WDSP = Dragon Master Spell Caster WDVE = Voodoo Dice WDVP = Voodoo Dice WDXE = Diatomic WE6E = My Dolphin WE6J = Sea Farm: Iruka to Watashi no Showtime WE9E = Alien Crush Returns WE9J = Alien Crush Returns WE9P = Alien Crush Returns WEDE = Eduardo the Samurai Toaster WEME = Aha! I Got It! Escape Game WEMJ = 1 Nuke! Dasshutsu Game * My Home Hen WEMP = Aha! I Got It! Escape Game WENE = TNT Racers WENP = TNT Racers WEQE = Equilibrio WEQJ = Katamuki Spirits WEQP = Equilibrio WERE = My Aquarium WERJ = Blue Oasis: The Healing Space of Fish WERP = My Aquarium WETE = PictureBook Games: Pop-Up Pursuit WETJ = Asoberu Ehon: Tobida Sugoroku WETP = PictureBook Games: A Pop-Up Adventure WEVE = Viral Survival WEVJ = Peakvox Escape Virus WEVP = Viral Survival WF2E = Final Fantasy Crystal Chronicles: My Life as a Darklord WF2J = Final Fantasy Crystal Chronicles: Hikari to Yami no Himegimi to Sekai Seifuku no Tou WF2P = Final Fantasy Crystal Chronicles: My Life as a Darklord WF3E = Family Games - Pen & Paper Edition WF4E = Final Fantasy IV: The After Years WF4J = Final Fantasy IV: The After Years - Tsuki no Kikan WF4P = Final Fantasy IV: The After Years WF5E = Family Card Games WF5J = Okiraku Daifugou Wii WF5P = Family Card Games WF6E = Frobot WFAE = Fast Draw Showdown WFAP = Fast Draw Showdown WFBE = Sandy Beach WFBJ = Beach e Oki o Tsukuccha Wow! WFBP = Sandy Beach WFCE = Final Fantasy Crystal Chronicles: My Life as a King WFCJ = Final Fantasy Crystal Chronicles: Chiisana Ousama to Yakusoku no Kuni WFCP = Final Fantasy Crystal Chronicles: My Life as a King WFDE = Save the Furries WFEE = Fenimore Fillmore "The Westerner" WFFE = Fun! Fun! Minigolf WFFF4I = Fatal Frame 4: Mask of the Lunar Eclipse WFFJ = Fun! Fun! Minigolf WFFP = Fun! Fun! Minigolf WFGE = Frogger Returns WFGJ = Frogger Returns WFGP = Frogger Returns WFHE = Flight Control WFHP = Flight Control WFIE = Reel Fishing Challenge WFIJ = Fish Eyes Challenge WFIP = Reel Fishing Challenge WFKE = Family Go-Kart Racing WFKJ = Okiraku Kart Wii WFLE = Fluidity WFLP = Hydroventure WFME = Family & Friends Party WFMP = Family & Friends Party WFNE = Fish Tank WFNP = Fish Tank WFPJ = Hirameki Card Battle Mekuruca WFQP = Frogger: Hyper Arcade Edition WFSJ = Minna no Theater Wii WFTE = Fish 'em All WFTP = Fish'em All! WFUE = Furry Legends WFUP = Furry Legends WFVE = Soccer Up WFVP = Football Up WFWE = Flower Works WFWP = Flowerworks: Follie's Adventure WFXE = Cosy Fire WFXP = Cosy Fire WFYE = Family Games Pen & Paper Edition WFYP = Family Games Pen & Paper Edition WG2J = Sugar Bunnies Wii: Youkoso * Bunnies Field e WG4E = GhostSlayer WGAE = Ghost Mania WGAP = Ghost Mania WGDE = Gradius Rebirth WGDJ = Gradius Rebirth: Updated WGDP = Gradius Rebirth WGFP = Girlfriends Forever: Magic Skate WGGE = Gabrielle's Ghostly Groove: Monster Mix WGGJ = Ushimitsu Monstruo Puchi: Fushigi na Oshiro no Dance Party WGGP = Gabrielle's Ghostly Groove: Monster Mix WGLE = Gene Labs WGMJ = Game SoundStation WGOE = World of Goo WGOJ = World of Goo WGOP = World of Goo WGPE = AquaSpace WGPJ = Aqua Living: TV de Nagameru Uotachi WGPP = Zenquaria: Virtual Aquarium WGSD = Phoenix Wright: Ace Attorney (Deutsche Version) WGSE = Phoenix Wright: Ace Attorney WGSF = Phoenix Wright: Ace Attorney (French Version) WGSI = Phoenix Wright: Ace Attorney WGSJ = Gyakuten Saiban: Yomigaeru Gyakuten WGSP = Phoenix Wright: Ace Attorney WGTJ = Sekai no Omoshiro Party Game WGUJ = Aero Guitar WGVE = Groovin' Blocks WGYE = Gyrostarr WH3E = Home Sweet Home WH3P = Home Sweet Home WHBE = Hubert the Teddy Bear: Winter Games WHEE = Heracles: Chariot Racing WHEP = Heracles: Chariot Racing WHFE = Heavy Fire: Special Operations WHFP = Heavy Fire: Special Operations WHHJ = Let's Zenryoku Hitchhike!!!!!!!!! WHMP51 = New Super Mario Bros. Wii: The Ultimate Wii-Homebrew.com Edition WHOE = Hockey Allstar Shootout WHPE = Sexy Poker WHPP = Sexy Poker WHRE = Heron Steam Machine WHRP = Heron: Steam Machine WHUE = Ghost Mansion Party WHUJ = Ghost Mansion Party WHUP = Ghost Mansion Party WHVE = High Voltage: Hot Rod Show WHWE = HoopWorld WHWP = HoopWorld: BasketBrawl WHXE = Helix WHXP = Helix WHYE = Heavy Fire: Black Arms WHZE = Horizon Riders WIBE = bittos+ WICE = NyxQuest Kindred Spirits WICJ = NyxQuest WICP = NyxQuest: Kindred Spirits WIDE = Dracula: Undead Awakening WIDP = Dracula: Undead Awakening WIEE = Tales of Monkey Island: Chapter 3 - Lair of the Leviathan WIEP = Tales of Monkey Island Chapter 3: Lair of the Leviathan WIGE = Incoming WIHE = Play with Birds WIKJ = Ivy the Kiwi? Mini WILE = Tales of Monkey Island: Chapter 1 - Launch of the Screaming Narwhal WILP = Tales of Monkey Island Chapter 1: Launch of the Screaming Narwhal WIMC = WiiMC WINE = The Incredible Maze WINJ = Chokkan! Balance * Labyrinth WINP = The Incredible Maze WIRE = Tales of Monkey Island: Chapter 5 - Rise of the Pirate God WIRP = Tales of Monkey Island Chapter 5: Rise Of The Pirate God WISE = Tales of Monkey Island: Chapter 2 - The Seige of Spinner Cay WISP = Tales of Monkey Island Chapter 2: Siege Of Spinner Cay WITE = Aha! I Found It! Hidden Object Game WITJ = Aa! Mitsuketa! Item Sagashi Game WITP = Aha! I Found It! Hidden Object Game WIUE = Inkub WIVE = Space Invaders Get Even WIVJ = Space Invaders Get Even WIVP = Space Invaders Get Even WIYE = Tales of Monkey Island: Chapter 4 - The Trial and Execution of Guybrush Threepwood WIYP = Tales of Monkey Island Chapter 4: The Trial and Execution of Guybrush Threepwood WJ2J = Jinsei Game: Happy Step WJAE = Jam City Rollergirls WJAP = Jam City Rollergirls WJCE = JellyCar 2 WJEE = Jett Rocket WJEP = Jett Rocket WJFE = Gnomz WJFP = Gnomz WJGJ = Jinsei Game WJKE = Jewel Keepers Easter Island WJKP = Jewel Keepers: Easter Island WJPJ = Janken Party Paradise WJSE = Jungle Speed WJSP = Jungle Speed WJWE = Bejeweled 2 WJWP = Bejeweled 2 WK2J = Kappa-kun to Asobou: Kappa-kun to Ota no Shimikai WK3J = Kappa-kun to Asobou: Kappa-kun to Mori no Nakamatachi WK9J = Minna de Asobou Koinu de Kururin WKBE = You, Me, and the Cubes WKBJ = Kimi to Boku to Rittai WKBP = You, Me and the Cubes WKCE = Kyotokei WKCP = Kyotokei WKDE = Pirates: The Key of Dreams WKEJ = RakuRaku Kinen Apori Wii: Kinenka no Isha ga Osheru Nanoka de yameru Houhou WKFE = Kung Fu Funk: Everybody is Kung Fu Fighting! WKFP = Kung Fu Funk: Everybody Is Kung Fu Fighting WKHE = Big Kahuna Party WKIE = The Mystery of Whiterock Castle WKIP = The Mystery of Whiterock Castle WKKE = Party Fun Pirate WKKJ = Kurohige Kiki Ippatsu WKKP = Pop-Up Pirates! WKNJ = Kanken Minna de Waiwai Kanji Nou WKPJ = Kappa Kun to Mori no Nakama Tachi WKQJ = Kentei! TV Wii Minna de Gotouchi Quiz Battle WKRP = Karate Phants: Gloves of Glory WKTE = Contra Rebirth WKTJ = Contra ReBirth WKTP = Contra ReBirth WKUJ = Downtown Nekketsu Dodgeball WKWE = Adventure on Lost Island: Hidden Object Game WKWJ = Item Sagashi * Yousei to Fushigi no Shima WKWP = Adventure on LOST ISLAND: Hidden Object Game WL2E = Target Toss Pro: Lawn Darts WL5E = HB Arcade Disc Golf WL9E = Let's Create! Pottery WLCE = Bingo Party Deluxe WLCJ = Wai Wai Bingo Deluxe WLCP = Bingo Party Deluxe WLDJ = Boku mo Sekai o Sukuitai: Battle Tournament WLEE = Learning with the PooYoos: Episode 1 WLEJ = Pooyoo to Asobou Episode 1 WLEP = Learning with the PooYoos: Episode 1 WLGE = HB Arcade Cards WLIE = Liight WLJJ = Boku mo Sekai o Sukuitai: Battle Tournament WLKJ = Okiraku Tennis SP WLLE = Little Tournament Over Yonder WLLP = Little Tournament Over Yonder WLME = La-Mulana WLMJ = La Mulana WLMP = La-Mulana WLNE = Learning with the PooYoos: Episode 2 WLNP = Learning with the PooYoos: Episode 2 WLOE = LostWinds: Winter of the Melodias WLOJ = LostWinds: Winter of the Melodias WLOP = LostWinds: Winter of the Melodias WLPE = Lonpos WLPJ = Lonpos WLPP = Lonpos WLTE = LIT WLTJ = School of Darkness WLTP = LIT WLWE = LostWinds WLWJ = LostWinds WLWP = LostWinds WLXJ = Phalanx WLZE = lilt line WLZP = lilt line WM2E = My Little Baby WM2P = My Little Baby WM3E = Manic Monkey Mayhem WM3P = Manic Monkey Mayhem WM4E = Mix Superstar WM4P = Mix Superstar WM5E = MDK2 WM7E = Anima Ark of Sinners WM7P = Anima Ark of Sinners WM8E = Bomberman Blast WM8J = Wi-Fi 8-Nin Battle Bomberman WM8P = Bomberman Blast WM9E = Happy Hammerin WM9J = Tataite Mogupon WM9P = Happy Hammerin' WMAE = Magnetis WMAP = Magnetis WMBE = MaBoShi's Arcade WMBJ = Katachi no Game: Marubou Shikaku WMBP = MaBoShi: The Three Shape Arcade WMCE = Monsteca Corral: Monsters vs. Robots WMCP = Monsteca Corral: Monsters Vs. Robots WMDE = Madstone WMGE = Mart Racer WMHE = Mouse House WMJE = Dive: The Medes Islands Secret WMJP = Dive: The Medes Islands Secret WMKE = Lead the Meerkats WMKP = Lead the Meerkats WMLE = Major League Eating: The Game WMLJ = Major League Eating: The Game WMME = Muscle March WMMJ = Muscle Koushinkyoku WMMP = Muscle March WMOE = Moki Moki WMOJ = Antaga Mawashite Sukuu Puzzle: Mochimochi Q WMOP = Moki Moki WMRE = Monochrome Racing WMRP = Monochrome Racing WMSE = Enjoy your massage! WMSP = Enjoy your massage! WMWP = Miffy's World WMXE = Max & The Magic Marker WMXJ = Max & the Magic Marker WMXP = Max & the Magic Marker WMZP = Mahjong WN9E = Military Madness: Nectaris WN9J = Nectaris WN9P = Military Madness: Nectaris WNAP = Back to Nature WNEE = Penguins & Friends Hey! That's My Fish! WNEP = Penguins & Friends Hey! That’s my Fish! WNGE = Bang Attack WNKE = Niki - Rock 'n' Ball WNKP = Niki - Rock 'n' Ball WNPJ = Sugusuro Duo: New Pulsar R & V WNSE = Newton Vs The Horde WNVE = Neves Plus WNVJ = Neves Plus WNVP = Neves Plus: Phantheon of Tangrams WNWJ = Hamekomi Lucky Puzzle Wii Return WO6E = Family Pirate Party WO6J = Okiraku Sugoroku Wii WO6P = Family Pirate Party WOAE = Family Glide Hockey WOAJ = Okiraku Air Hockey Wii WOAP = Family Glide Hockey WOBE = Art Style: ORBIENT WOBJ = Art Style: Orbital WOBP = Art Style: ORBIENT WODJ = Ouudaa! WOEJ = Oekaki Logic WOFE = Overflow WOGE = Family Mini Golf WOGJ = Okiraku Putter Golf Wii WOGP = Family Mini Golf WOKE = Karaoke Joysound WOKJ = Karaoke Joysound Wii WOLJ = Othello WOMJ = Sekai no Omoshiro Party Game 2 WOPE = Word Searcher Deluxe WOSE = Family Slot Car Racing WOSJ = Okiraku Slot Car Racing Wii WOSP = Family Slot Car Racing WOTE = Overturn WOTJ = Overturn WOTP = Overturn: Mecha Wars WOXJ = Osu! Exercise Dojo WOYE = Bit Boy!! WOYJ = Bit Man WOYP = Bit Boy!! WOZJ = Kodomo Kyouiku Telebi Wii: Aiue-Oumuzu WP2E = Potpourrii WP2P = Potpourrii WP4E = Learning with the PooYoos: Episode 3 WP4P = Learning with the PooYoos: Episode 3 WP5J = Pokosuka Racing WP6J = Boku wa Plarail Untenshi: Shinkansen Joukikikansha-Hen WP7E = My Planetarium WP7J = Planetarium WP7P = My Starry Night WP9J = Po-Ka-Zu Wii WPAJ = Pokémon Fushigi no Dungeon: Susume! Honoo no Boukendan WPBE = Pub Darts WPBP = Pub Darts WPCE = Doc Louis's Punch-Out!! WPDJ = Chindouchuu!! Pole no Daibouken WPFJ = Pokémon Fushigi no Dungeon: Ikuzo! Arashi no Boukendan WPGE = Snowpack Park WPGJ = Penguin Life WPHJ = Pokémon Fushigi no Dungeon: Mesaze! Hikari no Boukendan WPIE = Pit Crew Panic! WPIJ = Pit Crew Panic WPIP = Pit Crew Panic! WPJE = Pucca's Kisses Game WPJP = Pucca's Kisses Game WPKE = Texas Hold'Em Poker WPKP = Texas Hold'Em Poker WPLE = Planet Pachinko WPNJ = Ponjan WPOJ = Popple to Mahou no Crayon WPPE = Family Table Tennis WPPJ = Okiraku Ping Pong WPPP = Family Table Tennis WPQE = Protöthea WPQP = Protöthea WPRE = Art Style: Cubello WPRJ = Art Style: Cubeleo WPRP = Art Style: CUBELLO WPSE = Pokémon Rumble WPSJ = Ransen Pokémon Scramble WPSP = Pokémon Rumble WPTJ = Fantasic Cube WPUE = Bust-A-Move Plus! WPUJ = Puzzle Bobble Wii WPUP = Puzzle Bobble Plus! WPVE = The Tales of Bearsworth Manor: Chaotic Conflicts WPVJ = Kumanage Battle-Hen: Kiina no Kirai na Aoi Hoseki WPVP = The Tales of Bearsworth Manor: Chaotic Conflicts WPWE = Pong Toss Pro - Frat Party Games WPXJ = Minna de Tobikome Penguin Diving Hooper Looper WPYE = Pallurikio WPYP = Pallurikio WPZE = Bruiser & Scratch WQ4J = Kentoushi FuriFuri Boxing WR2E = Rabbids Lab WR2P = Rabbids Lab WR4P = Rush Rush Rally Racing WR5E = Retro City Rampage WR9E = Mega Man 9 WR9J = RockMan 9: Yabou no Fukkatsu! WR9P = Mega Man 9 WRBE = Robocalypse - Beaver Defense WRBP = Robocalypse - Beaver Defense WRDE = Word Searcher WRDP = Word Searcher WREE = Racers' Islands - Crazy Arenas WREP = Racers Islands Crazy Arenas WRFE = Reel Fishing Challenge II WRFP = Reel Fishing Challenge II WRGE = Rage of the Gladiator WRGP = Rage of the Gladiator WRIE = Rainbow Islands: Towering Adventure! WRIJ = Rainbow Islands: Towering Adventure! WRIP = Rainbow Islands: Towering Adventure! WRJE = Racers' Islands - Crazy Racers WRJP = Racers Islands - Crazy Racers WRLE = FAST Racing League WRLP = FAST Racing League WRNJ = BIT.TRIP RUNNER WRPE = Burn the Rope WRQE = Deer Drive Legends WRQP = Deer Drive Legends WRRE = Robin Hood: The Return of Richard WRRP = Robin Hood: The Return Of Richard WRSE = Step Up WRTE = Robox WRUE = BIT.TRIP RUNNER WRUP = Bit.Trip Runner WRXE = Mega Man 10 WRXJ = RockMan 10 WRXP = Mega Man 10 WRYE = Robox WRYP = Robox WS2J = Saikyou Ginsei Igo WS3E = Silver Star: Chess WS3J = Saikyou Ginsei Chess WS4J = Saikyou Ginsei Mahjong WS5J = Saikyou Ginsei Gomoku Narabe WS6E = Silver Star: Reversi WS6J = Saikyou Ginsei Reversi WS7E = Fantasy Slots: Adventure Slots and Games WS8J = Minna de Taisen Puzzle Shanghai WS9E = Sudoku Challenge! WS9P = Sudoku Challenge! WSAE = Onslaught WSAJ = MadSecta WSAP = Onslaught WSBJ = Sorcery Blade WSCJ = Out of Galaxy: Gin no Koshika WSEJ = Princess Ai Monogatari WSGE = Pop 'Em Drop 'Em Samegame WSGJ = Same Game Wii WSGP = Pop Them, Drop Them SAMEGAME WSHE = Stonekeep: Bones of the Ancestors WSIJ = Saikyou Ginsei Shogi WSJE = Spot The Differences! WSJP = Spot the Differences! WSLE = The Magic Obelisk WSLJ = Shadow Walker WSME = Eat! Fat! FIGHT! WSMJ = Tsuppari Oozumou Wii Heya WSMP = Eat! Fat! FIGHT! WSNE = Sonic The Hedgehog 4 Episode I WSNJ = Sonic the Hedgehog 4: Episode I WSNP = Sonic The Hedgehog 4 Episode I WSRE = Space Trek WSSP = Solitaire WSTJ = Tenshi no Solitaire WSUE = Shootanto: Evolutionary Mayhem WSUJ = Shootanto: Kakohen WSUP = Shootanto: Evolutionary Mayhem WSWE = Swords & Soldiers WSWP = Swords & Soldiers WSXE = Stunt Cars WSXP = Stunt Cars WSYE = Snail Mail WSZE = Sneezies WSZP = Sneezies WT2E = Target Toss: Pro Bags WT3E = Tomena Sanner WT3J = Tomena Sanner Wii WT3P = Tomena Sanner WT8J = Hajite! Block Rush WTBJ = Fantasic Tambourine WTDJ = Tomica Drive WTEE = Tales of Elastic Boy: Mission 1 WTEP = Tales of Elastic Boy Mission 1 WTFE = Bit.Trip: Flux WTFP = Bit.Trip Flux WTHJ = Kaku! Ugoku! Tsukamaeru! Sensei Wii WTIE = Tiki Towers WTKE = TV Show King 2 WTKP = TV Show King 2 WTME = Adventure Island: The Beginning WTMJ = Takahashi Meijin no Bouken Jima Wii WTMP = Adventure Island: The Beginning WTNE = Family Tennis WTNJ = Okiraku Tennis Wii WTPE = Tetris Party WTPJ = Tetris Party WTPP = Tetris Party WTRE = Bit.Trip Beat WTRJ = BIT.TRIP BEAT WTRP = Bit.Trip Beat WTTE = Toki Tori WTTP = Toki Tori WTUE = Tumblebugs 2 WTWP = Fenimore Fillmore: The Westerner WTXE = Texas Hold’em Tournament WTXP = Texas Hold’em Tournament WU2P = Successfully Learning Mathematics Year 3 WU3P = Successfully Learning Mathematics Year 4 WU4P = Successfully Learning Mathematics Year 5 WUBE = Ubongo WUBP = Ubongo WUFE = Drop Zone: Under Fire WUHE = Grill-Off with Ultra Hand! WUIP = Successfully Learning Mathematics Year 2 WUKJ = Unou Kids Okigaru Unou Training WUNE = Uno WUNJ = Uno WUNP = Uno WURE = Urbanix WURP = Urbanix WVBE = Bit.Trip: Void WVBJ = BIT.TRIP VOID WVBP = Bit.Trip Void WVCE = V.I.P. Casino: Blackjack WVDJ = Kodomo Kyouiku TV Wii: Aiue-O-Chan WVFE = Bobby Carrot Forever WVFP = Bobby Carrot Forever WVIE = Violin Paradise WVKE = Water Warfare WVKJ = Bang Bang Kids WVKP = Water Warfare WVOE = Rock N' Roll Climber WVOJ = Rock n' Roll Climber WVOP = Rock'n Roll Climber WVQE = Vampire Crystals WVQP = Vampire Crystals WVSE = Gods Vs Humans WVSP = Gods Vs Humans WVUP = Mr Bumblebee Racing Champion WW2P = Where's Wally? Fantastic Journey 2 WW3P = Where's Wally? Fantastic Journey 3 WWAE = Warmen Tactics WWIP = Where's Wally? Fantastic Journey 1 WWLP = The Will of Dr. Frankenstein WWRE = Excitebike World Rally WWRJ = Excitebike: World Race WWRP = Excitebike: World Challenge WWTE = BurgerTime World Tour WWTP = BurgerTime World Tour WWXE = Paper Wars: Cannon Fodder WWXP = Paper Wars Cannon Fodder WXBE = Ben 10: Alien Force - The Rise of Hex WXBP = Ben 10: Alien Force - The Rise of Hex WXME = Xmas Puzzle WXPE = Paint Splash! WXPP = Paint Splash WXRE = Reel Fishing Ocean Challenge WYIE = escapeVektor: Chapter 1 WYIP = escapeVektor: Chapter 1 WYKJ = Yomi Kiku Asobi WYME = Yummy Yummy Cooking Jam WYMP = Yummy Yummy Cooking Jam WYSE = Yard Sale Hidden Treasures: Sunnyville WYSP = Yard Sale Hidden Treasures Sunnyville WZAE = Zombii Attack WZBP = Cricket Challenge WZGE = Zoo Disc Golf WZHE = My Zoo WZHJ = Animal Life: Doubutsu Fureai Seikatsu WZHP = My Zoo WZIE = Rubik's Puzzle Galaxy RUSH WZIP = Rubik's Puzzle Galaxy: RUSH WZJJ = Simple Series Vol. 5: The Judo WZMJ = Simple Wii Series Vol. 3: The Mahjong WZPE = Zombie Panic in Wonderland WZPJ = Zombie in Wonderland WZPP = Zombie Panic in Wonderland WZZE = The Tales of Bearsworth Manor: Puzzling Pages WZZJ = Kumanage Puzzle-Hen: Piina no Suki na Akai Candy WZZP = The Tales of Bearsworth Manor: Puzzling Pages XAAJ = Eggy XABJ = Aleste XADJ = Yie Ar Kung 2 XAEJ = Space Manbow XAFJ = Metal Gear XAGJ = Road Fighter XAHJ = Penguin Adventure: Yume Tairiku Adventure XAIJ = Quarth XAKJ = Parodius - Tako wa Chikyuu wo Sukuu XALJ = Contra XAMJ = Knightmare: Majou Densetsu XANJ = Parodius 2 XAOJ = Gofer no Yabou: Episode II XAPJ = Metal Gear 2: Solid Snake XAQJ = Salamander XBKE52 = Guitar Hero III Custom : Bullet For Kamelot XH2E = Cave Story (Demo) XH2P = Cave Story (Demo) XH3E = Frobot (Demo) XH4E = Max and the Magic Marker (Demo) XH5E = Ayim And Yet It Moves Demo XH6E = Robox (Demo) XH6P = Robox (Demo) XH7E = Lit (Demo) XH7P = Lit (Demo) XH8E = Lead the Meerkats (Demo) XH8P = Lead the Meerkats (Demo) XHAE = Pokemon Rumble (Demo) XHAP = Pokemon Rumble (Demo) XHCE = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHCJ = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHDE = NyxQuest: Kindred Spirits (Demo) XHDP = NyxQuest: Kindred Spirits (Demo) XHEE = BIT.TRIP BEAT (Demo) XHEJ = BIT.TRIP BEAT (Demo) XHEP = BIT.TRIP BEAT (Demo) XHFE = World of Goo (Demo) XHFP = World of Goo (Demo) XHIE = Fluidity (Demo) XHIP = Hydroventure (Demo) XHJE = Thruspace (Demo) XHJP = Thruspace (Demo) XHKE = Dive: The Medes Island Secret (Demo) XHKP = Dive: The Medes Secret Island (Demo) XHLE = Jett Rocket (Demo) XHLP = Jett Rocket (Demo) XHME = Art of Balance (Demo) XHMP = Art of Balance (Demo) XHQE = Zombie Panic (Demo) XHQP = Zombie Panic (Demo) XHRE = Furry Legends (Demo) XHRP = Furry Legends (Demo) XHVE = BIT.TRIP CORE (Demo) XHVP = BIT.TRIP CORE (Demo) XHWE = BIT.TRIP VOID (Demo) XHWP = BIT.TRIP VOID (Demo) XHXE = BIT.TRIP RUNNER (Demo) XHXP = BIT.TRIP RUNNER (Demo) XHZE = Chronos Twins DX (Demo) XHZP = Chronos Twins DX (Demo) XI2E = Kyotokei (Demo) XI2P = Kyotokei (Demo) XI7E = Liight (Demo) XI8E = Jam City (Demo) XI8P = Jam City (Demo) XIAE = Lilt Line (Demo) XIAP = Lilt Line (Demo) XIBE = Fish em All (Demo) XIBP = Fish em All Demo XICE = Gods vs Humans Demo XICP = Gods vs Humans Demo XIDE = Racers Islands Crazy Racers Demo XIDP = Racers Islands Crazy Racers Demo XIEE = chick chick BOOM Demo XIEP = chick chick BOOM Demo XIGE = Urbanix Demo XIGP = Urbanix Demo XIHE = Gladiator Demo XIHP = Gladiator Demo XIJE = Fast Racing League Demo XIJP = Fast Racing League Demo XIKE = Monsteca Corral Demo XIKP = Monsteca Corral Demo XINE = Learning with the Pooyoos Episode 1 Demo XINP = Learning with the Pooyoos Episode 1 Demo XIOE = Learning with the Pooyoos Episode 2 Demo XIOP = Learning with the Pooyoos Episode 2 Demo XIPE = Learning with the Pooyoos Episode 3 Demo XIPP = Learning with the Pooyoos Episode 3 Demo XIQE = Dart Rage Demo XIRE = Pong Toss Pro Demo XISE = BIT.TRIP FLUX Demo XISP = BIT.TRIP FLUX Demo XITE = Fast Draw Demo XITP = Fast Draw Demo XIUE = Soccer Bashi Demo XIUP = Soccer Bashi Demo XIVE = Mix Superstar Demo XIVP = Mix Superstar Demo XIZE = 3D Pixel Racing Demo XIZP = 3D Pixel Racing Demo XJEE = Aya and the Cubes of Light Demo XJEP = Aya and the Cubes of Light Demo XJGE = Gnomz Demo XJGP = Gnomz Demo XJHE = Paint Splash Demo XJIE = 2 Fast 4 Gnomz Demo XJSE = Karaoke Joysound (Demo) XJSP = Karaoke Joysound Wii (Demo) XNWE52 = Guitar Hero III Custom: Nightwish XXXX02 = Mario Kart Teknik ZXFP52 = Guitar Hero 3 Encore wit-2.31a/share/system-menu.txt0000644000175000017500000000461012655737310016334 0ustar michaelmichael ##################################################################### ## __ __ _ ___________ ## ## \ \ / /| |____ ____| ## ## \ \ / / | | | | ## ## \ \ /\ / / | | | | ## ## \ \/ \/ / | | | | ## ## \ /\ / | | | | ## ## \/ \/ |_| |_| ## ## ## ## Wiimms ISO Tools ## ## http://wit.wiimm.de/ ## ## ## ##################################################################### ## ## ## This file is part of the WIT project. ## ## Visit http://wit.wiimm.de/ for project details and sources. ## ## ## ## Copyright (c) 2009-2011 by Dirk Clemens ## ## ## ##################################################################### ## ## ## This file is used to translate the version number of the ## ## wad file name into the public system menu version. ## ## ## ## Syntax: wad_version_number = system menu version ## ## ## ##################################################################### 33 = 1.0 97 = 2.0U 128 = 2.0J 130 = 2.0E 162 = 2.1E 192 = 2.2J 193 = 2.2U 194 = 2.2E 224 = 3.0J 225 = 3.0U 226 = 3.0E 256 = 3.1J 257 = 3.1U 258 = 3.1E 288 = 3.2J 289 = 3.2U 290 = 3.2E 352 = 3.3J 353 = 3.3U 354 = 3.3E 384 = 3.4J 385 = 3.4U 386 = 3.4E 416 = 4.0J 417 = 4.0U 418 = 4.0E 448 = 4.1J 449 = 4.1U 450 = 4.1E 454 = 4.1K 480 = 4.2J 481 = 4.2U 482 = 4.2E 486 = 4.2K 512 = 4.3J 513 = 4.3U 514 = 4.3E 518 = 4.3K wit-2.31a/share/titles-pt.txt0000644000175000017500000107547212655737310016012 0ustar michaelmichael010E01 = Wii Backup Disc v1.31 301E01 = GameCube Service Disc AFRE01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 8. AMEE01 = New Super Mario Bros. Wii 11 American Revolution AMNE01 = Another Super Mario Bros. Wii AMOR04 = Guitar Hero III Custom : HARDcore APRP01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 2. APRP02 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 3. APRP03 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 6. APRP04 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 7. APRP06 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 5. APRP08 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 1. ASMB01 = Another Super Mario Bros. Wii BEPS01 = Guitar Hero III Custom : Rock n' Metal BOWE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh C3BE52 = Guitar Hero III Custom : Bossenator C3FP52 = Guitar Hero III Custom : Fonx #1 C3KE52 = Guitar Hero III Custom : Kyle Edition #1 C3ME52 = Guitar Hero III Custom : Modern Rock C3PP52 = Guitar Hero III Custom : Modern Pop & Rock C80E52 = Guitar Hero III Custom : Rocks the 80's C80P52 = Guitar Hero III Custom: GH I & 80's C93E = Last Ninja 2 C93P = The Last Ninja 2 C94E = Tower Toppler C94P = Nebulus C95P = Impossible Mission C96E = Summer Games II C96P = Summer Games 2 C97E = California Games C97P = California Games C98P = Paradroid C99P = Uridium C9EP = Winter Games C9GP = Mayhem in Monsterland C9HE = Boulder Dash C9HP = Boulder Dash C9IE = Cybernoid C9IP = Cybernoid C9ME = Pitstop II C9MJ = Pitstop Two C9MP = Pitstop II C9PP = The Last Ninja 3 C9QP = Jumpman C9RP = International Karate + C9SP = Impossible Mission II C9XE = The Last Ninja C9XJ = The Last Ninja C9XP = The Last Ninja C9YE = International Karate C9YJ = International Karate C9YP = International Karate C9ZP = World Games CANE52 = Guitar Hero Custom: NOT Aerosmith but... CCPE01 = Mario Kart Wii Custom: The Master Race CEMU69 = PunEmu CFEE52 = Guitar Hero III Custom : Michael Jackson CG1E52 = Guitar Hero III Custom : Guitar Hero CG1P52 = Guitar Hero III Custom: Guitar Hero I CG2E52 = Guitar Hero III Custom: Guitar Hero II CG2EFL = Guitar Hero III Custom : GH II CG2P52 = Guitar Hero III Custom : Guitar Hero II CG3ECS = Guitar Hero III Custom : ClasSick Edition CG3PCS = Guitar Hero III Custom : ClasSick Edition CGBE52 = Guitar Hero III Custom: Rock Band CGBP52 = Guitar Hero III Custom : Rock Band CGH370 = Guitar Hero III Custom : 70 New Song CGH3IM = Guitar Hero III Custom : Iron Maiden CGH3LM = Guitar Hero III Custom : Legend of Music CGH3ME = Guitar Hero III Custom : Metallica CGH3NE = Guitar Hero III Custom : Nostalgia Edition CGH3WD = Guitar Hero III Custom: WD Custom CGHCE1 = Guitar Hero III Custom : Edition Custom CGHE87 = Guitar Hero III Custom : Guitar Hero I CGHE88 = Guitar Hero III Custom : Guitar Hero II CGHE89 = GH3: Mario CGHE90 = GH3: South Park Edition CGHE91 = GH3: The Red Album CGHE92 = GH3: The Blue Album CGHE93 = GH3: Shake Rattle and Roll CGHE94 = Guitar Hero III Custom : Mars Needs Guitars CGHE95 = Guitar Hero III Custom : Rock Band CGHE96 = Guitar Hero III Custom: Rock'n'Roll Metal CGHE97 = GH3: I Fought The Law CGHE98 = GH3: Sweet Home Alabama CGHE99 = Guitar Hero III Custom : Rock The 80's CGHECB = Guitar Hero III Custom : CBT Edition CGHEDC = Guitar Hero III Custom : Downloadable Content Edition CGHEDM = Guitar Hero III Custom : DAVEMODE CGHEMC = Guitar Hero III Custom : My Chemical Romance CGHENC = Guitar Hero III Custom : NCustom CGHEPH = Guitar Hero III Custom : Puppetz Hero 2 CGHER2 = Guitar Hero III Custom : Rock Band 2 CGHERF = Guitar Hero III Custom : Rockfest 2010 CGHJ52 = Guitar Hero III Custom : Jumapa CGHKY2 = Guitar Hero III Custom : Kyle Edition #2 CGHPF2 = Guitar Hero III Custom : Fonx #2 CGHPF3 = Guitar Hero III Custom : Fonx #3 CGHPF4 = Guitar Hero III Custom : Fonx #4 CGHPF5 = Guitar Hero III Custom : Fonx #5 CGHPNT = Guitar Hero III Custom : Ntorrents Edition CGHRH2 = Guitar Hero III Custom : Rocks Hits Custom v2 CGHSKV = Guitar Hero III Custom : Starchildren & Kneos Version CGIE52 = Guitar Hero III Custom : Iron Maiden CGSP52 = Guitar Hero III Custom : Spanisk Custom by KuXu CGVECD = Guitar Hero Aerosmith Custom : AC/DC Edition CGVEM2 = Guitar Hero Aerosmith Custom : Mini Concerts Edition 2 CGVEMC = Guitar Hero Aerosmith Custom : Mini Concerts Edition CGVEUV = Guitar Hero Aerosmith Custom : Ultimate Video Game Hero CKBE88 = Mario Kart Wii Black CLAPSI = Sing IT: Clásicos CMDE52 = Guitar Hero III Custom: Megadeth CMKE01 = Mario Kart Wii Dragon Road CS0P00 = StarSing : Bollywood v2.0 CS0PZZ = StarSing : Pop Part. I v2.0 CS1P00 = StarSing : Country v2.0 CS1PZZ = StarSing : Pop Part. II v2.0 CS2P00 = StarSing : Placebo v2.0 CS2PZZ = StarSing : '80s Volume 1 v2.0 CS3P00 = StarSing : Volume 1 v2.0 CS3PZZ = StarSing : Anthems v2.0 CS4P00 = StarSing : NRJ Music Tour v2.0 CS4PZZ = StarSing : Legends v2.0 CS5P00 = StarSing : '70s v2.1 CS5PZZ = StarSing : Songs For My Jedi v1.0 CS6P00 = StarSing : Douce France v2.0 CS6PZZ = StarSing : Amped Part. I v2.0 CS7P00 = StarSing : Red Hot Chili Peppers v1.0 CS7PZZ = StarSing : Amped Part. II v2.0 CS8P00 = StarSing : '90s Volume 1 v2.0 CS8PZZ = StarSing : Disco-Funk v1.0 CS9P00 = StarSing : '80s Volume 2 v2.1 CS9PZZ = StarSing : Pop Hits 9 v1.0 CSAP00 = StarSing : '80s Volume 3 v2.1 CSAPZZ = StarSing : Best of Goldman v1.0 CSBP00 = StarSing : '90s Volume 2 v2.1 CSCP00 = StarSing : Michael Jackson v2.2 CSCPZZ = StarSing : Hottest Hits v2.0 CSDP00 = StarSing : Rocks! Volume 2 v2.0 CSDPZZ = StarSing : Boy Bands Vs. Girl Bands v2.0 CSEP00 = StarSing : Pop Hits 5 v1.3 CSFP00 = StarSing : Pop Hits 6 v1.3 CSGP00 = StarSing : Chansons Magiques de Disney v1.4 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = StarSing : Pop Hits 7 v1.3 CSJP00 = StarSing : Après-Ski Party v1.2 CSKP00 = StarSing : ABBA v1.1 CSLP00 = StarSing : Queen v2.0 CSMP00 = StarSing : Electro-Dancefloor Volume 1 v2.0 CSNP00 = StarSing : Electro-Dancefloor Volume 2 v2.0 CSOP00 = StarSing : Electro-Dancefloor Volume 3 v2.0 CSPP00 = StarSing : Linkin Park Live at Webster Hall New York v2.0 CSQP00 = StarSing : Muse v2.0 CSRP00 = StarSing : International Volume 3 v1.0 CSSP00 = StarSing : Après-Ski Party 2 v2.0 CSTP00 = StarSing : Depeche Mode v2.0 CSUP00 = StarSing : Pop Hits 8 v1.3 CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = StarSing : Génériques TV v2.0 CSYP00 = StarSing : Electro-Dancefloor Volume 4 v2.0 CSZP00 = StarSing : Glee Volume 1 v2.1 CT0P00 = StarSing : Pop Part. I v2.1 CT1P00 = StarSing : Pop Part. II v2.1 CT2P00 = StarSing : '80s Volume 1 v2.1 CT3P00 = StarSing : Anthems v2.1 CT4P00 = StarSing : Legends v2.1 CT5P00 = StarSing : Songs For My Jedi v2.0 CT6P00 = StarSing : Amped Part. I v2.1 CT7P00 = StarSing : Amped Part. II v2.1 CT8P00 = StarSing : Disco-Funk v2.0 CT9P00 = StarSing : Pop Hits 9 v1.3 CTAP00 = StarSing : Best of Goldman v2.0 CTBP00 = StarSing : Glee Volume 3 v1.0 CTCP00 = StarSing : Hottest Hits v2.0 CTDP00 = StarSing : Boy Bands Vs. Girl Bands v2.1 CTEP00 = StarSing : R&B v2.0 CTFP00 = StarSing : Rock Ballads v2.0 CTGP00 = StarSing : Take That v2.0 CTHP00 = StarSing : Summer Party v2.0 CTIP00 = StarSing : Rocks! Part. I v2.0 CTJP00 = StarSing : Rocks! Part. II v2.0 CTKP00 = StarSing : Pop Hits v2.0 CTLP00 = StarSing : Britney Spears v2.0 CTMP00 = StarSing : Shakira v1.1 CTNP00 = StarSing : Pop Hits 10 v1.3 CTOP00 = StarSing : The Beatles Volume 2 v2.0 CTPP00 = StarSing : Motown v2.0 CTQP00 = StarSing : Glee Volume 2 v1.0 CTRP00 = StarSing : International Volume 1 v1.0 CTSP00 = StarSing : International Volume 2 v1.0 CTTP00 = StarSing : '80s Volume 4 v1.0 CTUP00 = StarSing : Rihanna v1.0 CTVP00 = StarSing : Lady GaGa v1.0 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CVLE38 = Mario Kart: Victory Lane D01A = Wiimmfi Patcher D02A = Engine02 D03A = BrainSlug Wii D05A = Bash the Castle D06A = Bit Streamer D07A = BlisterBall D08A = Blob Wars: Metal Blob Solid D09A = Blobby Volley 2 Wii D0AA = MPlayer Wii Youtube D0BA = MPlayer Wii D0CA = Ocarina D0DA = MPlayer Dvdlib Edition D0EA = MPlayer Wii By Rodries D0FA = Signcheck D0GA = GCBoot D0HA = Memview D0IA = IOS Check D0JA = Open Sram Lang Modifier D0KA = WiiBServer D0LA = LibWiiGameLoad D0MA = Wiireader D0NA = lsusb D0OA = Move The Pussy Demo D0PA = Wiilax Minitro D0QA = Fission Engine Project D0RA = GRRLIB 4.0 Demo D0SA = OSDM-BAR D0TA = Homebrew Menu Demo D0UA = LibMii Example D0VA = The Scary Demo D0WA = Starfield Demo D0XA = Wire3D Demo D0YA = Something D0ZA = GRRLIB 4.3.0 Promote Intro D10A = cIOSFix D11A = ASCII Pong D12A = BuscaWiinas D13A = C-Dogs SDL D14A = Castles of Dr. Creep D15A = Wii Shop and IOS51 Installer D16A = Centipede D17A = Cobra Arcade D18A = Dump Espresso OTP D1LA = Blind D1PA = 1bit Invaders D1RA = MinimaLauncher D21A = Xroar D22A = cIOS222 installer D24A = 24 Points D26A = Wii2600 D29J01 = Monthly Nintendo Shop Demo May 2002 D2AA = Wii Deadly Cobra D2AJAF = Minna de Bouken! Family Trainer (Demo) D2BA = Jump N Bump D2CA = Wiiflow Advanced D2DA = Box2D Balls D2EA = Wiiflow Start Configurator D2GA = Wadinstallerbatch D2QA = Sqrxz 2 D2SE18 = Deca Sports 2 (Demo) D2ZA = Console Shooter D32J01 = Monthly Nintendo Shop Demo June 2002 D33A = Time Frack 2D D33J01 = Monthly Nintendo Shop Demo July 2002 D34J01 = Monthly Nintendo Shop Demo July 2002 D36A = cIOS36 installer D37A = WiiConnect D38A = cIOS38 installer D38J01 = Monthly Nintendo Shop Demo September 2002 D39A = Ctr Gts DacoTaco Edition D3DA = Time Frack 3D D3DE18 = Deca Sports 3 (Demo) D3JA = NDSLoad D3KA = Button Tester D3LA = BootMii Booter D3MA = Custom NAND Loader D3OA = cIOS USB 2 Installer D3QA = Sqrxz 3 D3WA = Warheads D40A = Luigi and the Island of Mystery D42A = ArianeB D43A = Wii Virtual Jaguar D43E01 = The Legend of Zelda: Ocarina of Time / Master Quest D43J01 = Zelda no Densetsu: Toki no Ocarina GC / Ura Zelda D43P01 = The Legend of Zelda: Ocarina of Time / Master Quest D43U01 = The Legend of Zelda: Ocarina of Time (Bonus Disc) D43W01 = The Legend of Zelda: Ocarina of Time / Master Quest D46A = Newo Escape D4BE08 = Resident Evil 4: Preview Disc D4BP01 = Resident Evil 4: Bonus Disc D4BP08 = Resident Evil Four Preview Disc D4BU01 = Resident Evil 4: Bonus Disc D4KA = Aleph WOne D4LA = Yawnd D4NA = Disc Dumper D4PA = DVD Dumper D4QA = Sqrxz 4 D4SA = USB Loader GUI FX D51A = IOS51 Update D52A = cboot252 D53J01 = Monthly Nintendo Shop Demo May 2003 D54A = cIOS Patchmii Installer D55A = PID Extractor D55J01 = Interactive Disc Catalog Summer 2003 D56A = Shopping Channel Fixer D56E01 = Interactive Multi-Game Demo Disc - Version 35 D56J01 = Pokémon Channel (Bonus Disc) D57A = Hijill GUI D57E01 = Interactive Multi-Game Demo Disc - Version 34 D58A = Priiloader HacksDen Edition D58E01 = Interactive Multi-Game Demo Disc - Version 33 D59A = TheUntitledProject D59E01 = Interactive Multi Game Demo Disc Version 32 D5AA = Alarmii D5BA = WiiFont D5CA = cLoader D5FA = Txted Mod D5HA = Title Lister D5JA = Tidy Up D5LA = Switchtosneek D5RA = Botoning D60A = Ultimate USB Loader D61A = Sand Traps Extra Levels D62A = Newo Puzzle D62E01 = Interactive Multi-Game Demo Disc - Version 31 D63A = 3D Maze D63E01 = Interactive Multi-Game Demo Disc - Version 30 D64A = Wii64 Emulator D64E01 = Interactive Multi-Game Demo Disc - Version 29 D65A = Transitory Vectors D65E01 = Interactive Multi Game Demo Disc Version 28 D65P01 = Interactive Multi-Game Demo Disc - December 2002 D66A = Secret Maryo Chronicles D66E01 = Interactive Multi-Game Demo Disc - Version 27 D67E01 = Interactive Multi-Game Demo Disc - Version 26 D67J01 = Monthly Nintendo Shop Demo December 2003 D68A = TheyDoNotDie2 D68E01 = Interactive Multi-Game Demo Disc - Version 25 D68J01 = Monthly Nintendo Shop Demo January 2004 D69A = IOS60 Installer D69E01 = Interactive Multi-Game Demo Disc - Version 24 D6AA = Pussieloader D6BA = Updatersafe D6DA = Savegame Manager Mod D6EA = Sneek FS Dumper D6FA = Anytitle Deleter Mod D6HA = AnyTitle Deleter Mod DB D6IA = DVD Info D6KA = AnyTitle Deleter DB D6MA = Banana Saves D6OA = DOP Shop D6QA = BootMii Checker D6TA = MiiPlayer D70A = Dungeon Crawl Stone Soup D71A = Panic in the Mushroom Kingdom D72A = Bfi D72E01 = Interactive Multi-Game Demo Disc - Version 23 D73E01 = Interactive Multi-Game Demo Disc - Version 22 D74E01 = Interactive Multi Game Demo Disc Version 21 D75E01 = Interactive Multi-Game Demo Disc - Version 20 D76E01 = Interactive Multi-Game Demo Disc - Version 19 D77E01 = Interactive Multi-Game Demo Disc - Version 18 D77P01 = Interactive Multi Game Demo Disc April 2006 D78A = Wii7800 D78E01 = Interactive Multi-Game Demo Disc - Version 17 D78J01 = Interactive Multi-Game Demo Disc - May 2004 D78P01 = Interactive Multi-Game Demo Disc - October 2005 D79A = Newo Defence D79E01 = Interactive Multi-Game Demo Disc - Version 16 D79P01 = Interactive Multi Game Demo Disc May 2005 D7AA = Action Replay Loader D7DA = Depanbrew D7GA = Channel Loader D7KA = RawkSD D7LA = Rumbler D7MA = IS Wad D7OA = Recovery Manager D7QA = Reboot D7SA = Childproof USB Loader D7TA = Power Mii Off D7VA = Power Off D7WA = Abbaye des Morts D7XA = NuGaSa D7YA = Resistor D81A = Newo Asteroids D82A = cIOS Patchmii Installer with Korean Disc Support D82E01 = Interactive Multi-Game Demo Disc - Version 15 D82J01 = Monthly Nintendo Shop Demo July 2004 D82P01 = Interactive Multi Game Demo Disc April 2005 D83A = Wii MFE Port D83E01 = Interactive Multi-Game Demo Disc - Version 14 D83P01 = Interactive Multi Game Demo Disc February 2005 D84A = Gambol D84E01 = Interactive Multi-Game Demo Disc - Version 13 D84P01 = Interactive Multi-Game Demo Disc - November 2004 D85A = Wii EDuke32 D85E01 = Interactive Multi-Game Demo Disc - Version 12 D85P01 = Interactive Multi Game Demo Disc July 2004 D86A = Firewii D86E01 = Interactive Multi-Game Demo Disc - Version 11 D86P01 = Interactive Multi-Game Demo Disc - May 2004 D87A = Tick Tock Boat Race D87E01 = Gamecube Preview Disc D87P01 = Interactive Multi-Game Demo Disc - March 2004 D88A = Quasi88 D88E01 = Interactive Multi-Game Demo Disc - Version 10 D88P01 = Interactive Multi-Game Demo Disc - November 2003 D89A = Wiimote Led Flasher D89E01 = Interactive Multi-Game Demo Disc - Version 9 D89J01 = Club Nintendo Original e-Catalog 2004 D89P01 = Interactive Multi-Game Demo Disc - September 2003 D8AA = Front SD ELF Loader D8BA = GameCube Homebrew Launcher D8CA = WiiSend D8DA = Menu D8EA = Gecko Loader D8FA = Shell D8JA = Calc D8QA = Brick OS D8RA = Lotto D8SA = Brainf**k D8UA = TCPLoader D8VA = Snort48 D8WA = Wiisixty D8XA = All In One Emuloader D8YA = Swissloader D8ZA = Tick Tock Zombie Shooter D91A = Jenny Thinks D92E01 = Interactive Multi-Game Demo Disc - Version 8 D92P01 = Interactive Multi Game Demo Disc June 2003 D93A = Wiiraytracer D93E01 = Interactive Multi-Game Demo Disc - Version 7 D93P01 = Interactive Multi Game Demo Disc April 2003 D94A = Nowhere D94P01 = Interactive Multi-Game Demo Disc - February 2003 D95A = RenderMii D95P01 = Interactive Multi-Game Demo Disc - December 2002 D96A = WiiMotionDemo D96P01 = Interactive Multi-Game Demo Disc - November 2002 D97A = Fire D98A = InstallMii D99A = System Channels Updater D9BA = Info D9CA = cIOS USB2 Installer D9FA = Dump D9GA = Wad Creator D9HA = WakeMiiUp D9IA = SNES9xGX Channel Installer D9KA = Txtread D9LA = Forwarder DA1A = Radianwars DA2A = Moonstone DA3A = Wiitch DA4A = arCard+Wii DA6A = Automatii DA7A = Astronomy DA8A = Beer Belly Bill 3 Grillieren DA9A = Achtung Wii Kurve DAAA = WiiNetPuzzle DAHA = Accio Hacks DALJ01 = Dairantou Smash Brothers DX (Demo) DAMA = MegaCodeDownloader DAPA = Map Maker DARA = Anyregion Changer DASA = Aspirin DASE4Q = Disney Epic Mickey (Demo) DATA = AnyTitle Deleter DATD = AnyTitle Deleter DAUEPZ = Country Dance (Demo) DAVA = Avoidance DAVE01 = Mystery Case Files: The Malgrave Incident (Demo) DAWA = Abuse Wii DAXE01 = The Legend of Zelda: Skyward Sword (Demo) DAXP01 = The Legend of Zelda: Skyward Sword (Demo) DB0A = Spitits DB2A = Mad Bomber DB3A = Squarez DB5A = mapbf DB7A = Blacks Dash DB9A = Robi DBAA = BowFishing Action DBBA = Balance Board Tools DBBE18 = Beyblade: Metal Fusion - Battle Fortress (Demo) DBCA = BootMii Configuration Editor DBDA = Bluedump DBGA = BlastGuy DBIA = Boot It DBKE69 = Boom Blox (Demo) DBKP69 = Boom Blox (Demo) DBLA = BlueMSX-wii DBMA = BootIOS DBPA = Balance Board Pro DBRA = WiiBrowser DBSA = BrawlStats DBTA = Bolt Thrower DBUA = Buttoncast DBWA = Reversmii DBXA = Biniax 2 DBZJ08 = Biohazard Zero: Trial Edition DC6A = Frodo (C64-network.org) DC7A = Calculate DCAA = Wiicasino DCAE18 = Calling (Demo) DCBA = CascadeBeneath DCCA = Christmascountdown DCDA = cIOS Downgrader DCEA = Cheat Manager DCFA = Coverfloader DCGA = Ctr-Gcs DCHA = Wiichatter DCHEAF = We Cheer (Demo) DCHJAF = We Cheer: Ohasta Produce ! Gentei Collabo Game Disc DCIA = cIOS Installer DCLA = Configurable USB Loader DCMA = Wiicm DCNA = Nandclean DCOA = Connectmii DCPA = Splatter Castle DCRA = CosmoRaketti DCSA = Cert.sys Extractor DCTA = Christmas-Type Adventure Time DCUA = cIOS Uninstaller DCVA = WiiColEm DCWA = WiiMC Channel Installer DCXA = ComixChannel DCYA = Cylinder Dodge DD2A = Double Dash Wii DD2P41 = Just Dance 2 (Demo) DD3A = Dario DD5A = Dcvg5k DD9A = Dungeons DDAA = Darkcorp DDBA = DOSBox Wii DDCA = d2x cIOS Installer DDDA = Disk Drive Lighter DDEA = WiiModder DDFA = Defendguin DDHA = Homebrew Disc Launcher DDIA = DiiLC DDLA = Disc Loader DDMA = DragonMedia Player DDOA = DOP-Mii DDRA = Wii Duplicated Channel Remover DDSA = DeSmuME DDVA = Devolution DDWA = DOP Mii Wiibrew Edition DDWE18 = Lost in Shadow - Press Disc (Demo) DDWX18 = Lost In Shadow - Best Buy (Demo) DE2A = Doubledown DE5A = Pictogrid DE7A = Commander Keen DE9A = Wii Bash DEAA = Headtracking Demo DEBA = Pong Breaker DEDA = Txted DEEA = Eeeek Eeeeek Hooooook DEFA = Fuse DEHA = Chess DEME = PunEmu DEPA = Pacman DERA = Elongated Reptile DETA = MPlayer TT DEWA = Wii Exhibit DEZP8P = Billy Hatcher and the Giant Egg (Demo) DF0A = Mini FSToolbox DF2A = Da ShAmAn DF3A = Briickout DF4A = Star Catching DF5A = Strobe Alarm Clock DF6A = Wii Quizz DF7A = Chatnoir DF8A = Trinary DF9A = Chunk Munch DFBA = Fsbrowser DFEA = FlipEm DFFA = Simple fs dumper DFGA = Smashing! DFIA = Fceugx Channel Installer DFLA = Starfall DFMA = FMyLife DFRA = FridgeMagnets DFSA = Fstoolbox DFTA = FTPii DFUA = Fuse DG3A = Giddy 3 DG7A = WiiPeng DG8A = Abusimbel Deluxe DG9A = Garnatron DGBA = Geexbox DGCA = GameCube Backup Launcher DGEA = GeckoOS DGFA = Guitars On Fire DGGA = Wii Rick Dangerous DGIA = Gravitii DGKA = ProjectGMC DGMA = GCMM DGPA = Genesis Plus DGSA = Shooting Gallery DGWA = Goodbye World DGXA = GxGeo DH7A = Harmony's Nightmare DH9A = Prophecy DHBA = Homebrew Browser DHCA = Hero City DHDA = Hidtest DHEA = Helium Boy DHFA = Homebrew Filter DHGA = HuGo-GX DHHA = HHexen DHHJ8J = Hirano Aya Premium Movie Disc from Suzumiya Haruhi no Gekidou DHIA = HackMii Installer DHKE18 = Help Wanted: 50 Wacky Jobs (Demo) DHLA = Heli DHMA = CharioMan DHSA = Homebrew Sorter DHTA = Hatari DHWA = We are nowhere DHXA = Hex DI5A = Tanks DI7A = ExistenzE DI8A = Ios58 Installer DI9A = Barrage DIBA = Revolt of the Binary Couriers DICA = Cubic DIEA = EasyIOS DIGA = Categorii DIIA = iiii DIMA = Inspectmii DINA = Mii Installer DIRA = Ironing Maiden DISA = Wii Supersonic DITA = IOS236 Installer DIXA = cIOSx installer DIYP01 = New Super Mario Bros. Wii 0-4 D.I.Y. DJAA = Arcade Jigsaw DJCA = Wii JellyCar DJFA = Joyflow DJJA = Jumping Jack DJQA = Jewel Quest DJWA = Wii System Menu DJZA = JzintvWii DK1A = Karaokii DK3A = Sketch Fight DK4A = Drawingbox DK6A = King of Fighters: Flames of Courage DK6E18 = Marble Saga Kororinpa (Demo) DK6J18 = Kororinpa 2 (Demo) DK7A = Uschtris DKBA = RPG Baker DKCA = Tick Tock Car Race DKCP01 = Darky Kart Riivo DKDA = Darkcube DKHA = Katakana and Hiragana Practice DKKA = Koreankii DKOA = Komopong DKPA = Kidspaint DKSA = Wii Stpp DKTA = Taiko DKWA = Kurushi DKWE01 = Darky Kart Wii Vol. 1 DKWE02 = Darky Kart Wii Vol. 2 DKWE03 = Darky Kart Wii Vol. 3 DKWE04 = Darky Kart Wii Vol. 4 DL3A = Ballion DL4A = LPairs DL5A = Gameload DL7A = LabClone DLBA = My Little Ball DLCA = Dance Clone DLDA = Devilock DLEA = Preloader DLFA = LifeMii DLGA = Gravity Glider DLIA = WiiMod Lite DLLA = Lolicopocalypse DLMA = LoadMii DLNA = Lander DLOA = Lightsout DLPA = Lopan DLSE64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLSP64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLTA = Leveltool DLUA = WiiLauncher DLXA = Linux Installer DLZEPW = Super Smash Bros Phoenix Wings DM0A = Pom DM5A = Missle Command DM7A = Matches DM9A = Checkregion DMAA = Mame Wii DMBA = Multiboot DMCA = Cleanrip mod DMDA = WiiMod DMEA = Mii Extractor DMFA = WiiMednafen DMGA = Mighty Channels DMHA = NanoMechas DMHE08 = Monster Hunter Tri (Demo) DMHJ08 = Monster Hunter Tri (Demo) DMIA = DIOS MIOS Booter DMJA = Mahjongg Wii DMKE01 = Mario Kart Wii 2 DMLA = Mighty Loader DMMA = MyMenuify DMNA = Magic Number DMOA = cMIOS installer DMPA = MPlayer CE DMRA = MIOS Patcher DMSA = ShutMiiReboot DMSP4Q = SingItStar: Best of Disney DMTA = Metronome DMUA = Multi Mod Manager DMWA = Wakemiiup DN0A = Thatother DN7A = Alien Breed DN9A = Point and No Click DNAA = Ncard DNCA = NeoCD-Wii DNDA = Nintendont DNEA = Gravity DNGA = NeoGamma Launcher DNHA = Headings DNIA = Bugin DNKA = Neko Project II DNMA = Newo Model Viewer DNNA = Save installer DNOA = O.T.T.F. DNPA = NeoPopWii DNRA = Newo Runner DNSA = Newo Shooter DNTA = NeoTanks DNUEDA = Naruto Clash of Ninja 2 (Demo) DNWA = Nowell DO2A = O2EM DO3A = Three Point O DO4A = MTP DO5A = Planet Hively DO6A = Mini MP3 Player DOCA = Code Downloader DOEA = ShowTest DOGA = Wii Maze of Galious DOHA = HighOctane DOIA = Neogamma IOS Switcher DOMA = Mole DONA = Offline Network Enabler DOOA = Doom DOPA = PowerCheck DORA = Rebooter DOTA = OpenTTD DP0A = Starplit DP1A = Italian Parking DP2A = Pong2 DP3A = Inkpoly DP4A = Piirates DP5A = Pix DP6A = IOS36 patcher DP7A = Brawl+ Updatifier DP8A = Timeless DP9A = Alien Puzzle Wii DPAA = WiiPaintBall DPBA = Priibootergui DPCA = Cherophobe DPEA = PieChart DPFA = Pwiictogrid DPGA = Pingus DPIA = Patched IOS 80 Installer for vWii DPIE18 = Oops! Prank Party (Demo) DPJA = Project M Launcher DPKA = Physco DPLA = Priiloader DPMA = Music Painter DPNA = RPG Pineapple Apocalypse DPNP08 = P.N.03 (Promo) DPOA = Postloader DPPA = Project Panic DPRA = PlasmaRaketti DPSA = Playstats DPTA = Two Point Five DPVA = Pattview DPWA = Pimp my Wii DQ1A = Q1rev DQ2A = Q2rev DQ6A = Light DQ7A = Quake DQ8A = LuaFWii DQ9A = Wiihttpd DQAJK2 = Aquarius Baseball DQAJSC = Aquarius Baseball (Simplified Chinese Translation) DQBA = Bible Quiz DQCA = Q2ctfrev DQGP69 = MySims Racing (Demo) DQRA = Qrevpak DQWA = Quakegx DR0A = Rokoban DR1A = Wii Whiteboard DR3A = Death Star Run DR4A = Rock Paper Scissors DR5A = Briicks DR6A = Reader DR7A = RockBlueMet DR8A = Operation DR9A = PixelPlot DRAA = RetroArch-Wii DRBA = Rock Band 2 Wad Installer DRCA = Wiicross DRDA = Drawmii DREA = Wiirecipe DRFA = Radiofeeds DRGA = Reggie Dumper DRIA = Cleanrip DRKA = Robotfindskitten DRMA = Mr. Sitwell DRME18 = Rooms: The Main Building (Demo) DROA = SlimeRoll DRP22Q = SingItStar Deutsch Rock-Pop Vol. 2 DRPA = Marcos Lopez Part II DRRA = Riiper DRSA = RedSquare DRTA = Tetris Custom DRUA = Radiofeeds Updater DRVA = Residualvm DRWA = Winterman DRZA = Zerace DS0A = ShootMii DS1A = Another Rock Paper Scissors DS2A = Swingball2 DS3A = Senet DS4A = Sar DS5A = Snaketwo DS6A = Scogger DS7A = Swing Ball DS8A = Scape DS9A = Minesweeper DSAA = Schism Tracker DSBA = SpaceBubble DSCA = Softchip DSDA = Superdump DSEA = Settings Editor GUI DSFA = Sciifii DSFE7U = Muramasa: The Demon Blade (Demo) DSGA = Savegame Manager DSHA = SysCheck HacksDen Edition DSIA = Simple IOS Patcher DSKA = SockDreams DSLA = Wii Stella DSMA = Sega Master System Plus DSNA = SNES9xGX DSOA = Bermuda Syndrome Wii DSPA = Super Star Shooter DSQA = Sqrxz DSRA = Wiistrobe DSRJ8P = Sonic and the Secret Rings (Demo) DSSA = RSSMii DSTA = Wii Solitaire DSUA = Super Mario War DSVA = scummVM DSWA = SuperTux Wii DSXA = Super Pixel Jumper DSYA = Syscheck DT0A = Tower Defense DT1A = Turnip DT2A = Matching Cards DT3A = Bichejos DT4A = Soduku DT5A = Poker DT6A = Simon DT7A = TheyDoNotDie DTAA = Wii Tac Toe DTCA = The Catachthonic DTDA = Descent DTEA = Topedit DTFA = Triiforce DTHA = Heretic DTIA = Wiitriis DTJA = Trojan DTKA = Tick Tock Tank Fight DTLA = TailTale DTLX01 = Action Replay DTMA = Tetrominos DTNA = Tunnel DTOA = Tong DTPA = Paintown DTRA = Trucha Bug Restorer DTSA = Desert Bus DTTA = Toddtris DTWA = Wiitweet DTXA = Texttris DU0A = Dumpmiinand DU7A = Uno DU8A = RealWnd DU9A = Harmonium DUAA = UAE Wii DUAP01 = DU Super Mario Bros. : Anniversary Edition DUBA = Multibu DUCE01 = Kustom Mariokart Wii DUDA = Duck Hunt DUDE01 = New Super Mario Bros. Wii Scooby-Doo! Hack DUGA = Guitar Fun DUIA = ChessUI DULA = USB Loader GX DUNA = Uname DUSA = bootOperaModUSB DUTG = DU Tag Channel DUWA = Waninkoko's USB Loader DV0A = Remove Preloader Hacks DV3A = DVD Browser DV9A = SensorMii DVDA = cIOS DVD Dumper DVGA = The Video Game DVHA = Horror Vacui DVIA = Vbagx Channel Installer DVJP08 = Viewtiful Joe (Promotional demo) DVLA = Vigiroth le livreur DVNA = Wiivnc DVOA = Vectoroids DVPA = Progressiveswitch DVSA = GameCube Saver DVXA = VectrexWii DW1A = Intuitwars DW5A = Marel DW6A = Wiicraft DW7A = Ravewild DWAA = WiiApple DWBA = WiirtualBoy DWCA = WiiFlow Channel Installer DWDA = Wiiflow Banner Downloader DWEA = WiiEarth DWEPA4 = Pro Evolution Soccer 2008 (Demo) DWFA = WiiFlow DWHA = WiiHandySDL DWJA = Jewel DWKA = Wiibreaker DWLA = Wii-Linux DWMA = WAD Manager DWNA = Nwancat DWPA = WiiPhysics DWRA = WiiRadio DWSA = WiiSX DWTA = Wiituka DWUA = Wufe DWWA = Winters End DWXA = WiiXplorer DX3A = Midway Space Invaders Emulator DX4A = Brawl DX Launcher DX5A = MP3+G Player DX6A = Build Blocks DX7A = Roxoptr2 DX8A = Hexen DX9A = Sand Traps DXBA = Wii X Ball DXCA = CorsixTH DXDA = DVDX DXEA = SDExplorer DXHA = Texas Holdem Poker DXIA = Piixelator DXLA = WiiXL DXNA = bootnetflix DXPA = Xeempongwii DXQA = Quadrax DXSA = Save extractor DXSE18 = Deca Sports (Demo) DXTA = The Lone Pixel DXXA = Hexxagon DXYA = xyzzy DXZA = Megazeux DY5A = Darkcorp Lite DY6A = Liqwiid Wars DY9A = TetWiis DYAA = Syasokoban DYBA = Yabause DYCA = Tetricycle DYEA = Epilepsii DYGA = Yog DYHA = Hypno Blast DYIA = Chippy DYMA = YAWMM DYOA = Toy Wars DYPA = PongYourWii DYSA = Shiny tank DYTA = Newo Tokyo DYUA = UFO Racer DYWA = Yahtzwii DYYA = System Setting Replace Tool DZ0A = Eject DZ7A = SameGame DZ8A = WiiMPC DZ9A = Teeter Torture DZDE01 = The Legend of Zelda: Twilight Princess (Demo) DZDP01 = The Legend of Zelda: Twilight Princess (Demo) DZIA = Ziip DZPA = Puzsion DZQA = Quizz DZRA = Rezerwar DZSA = Szigoy DZXA = FBZX Wii DZYA = Snake Two DZZA = OpenJazz E52E = 1942 E52J = 1942 E52P = 1942 E53E = Black Tiger E53J = Black Dragon E53P = Black Tiger E54E = Ghosts 'n Goblins E54J = Makaimura E54P = Ghost'n Goblins E55E = Commando E55J = Senji no Ookami E55P = Commando E56E = Exed Exes E56J = Exed Eyes E56P = Exed Exes E57E = SonSon E57J = Son Son E57P = SonSon E58J = Mr. Do! E59J = Karate Dou E5AJ = Ikki E5BJ = Shanghai E5VJ = Renegade E5WE = Wonder Boy in Monster Land E5WJ = Wonder Boy in Monster Land E5XJ = Puyo Puyo Tsu E5YJ = Puyo Puyo E5ZE = Super Hang-On E5ZJ = Super Hang-On E62E = Space Harrier E62J = Space Harrier E62P = Space Harrier E63E = Shinobi E63J = Shinobi Virtual Arcade E63P = Shinobi E64J = Rolling Thunder 2 E65J = Valkyrie no Densetsu E66J = Ordyne E67J = Dig Dug E68J = Galaga E69J = Baraduke E6AJ = Moon Cresta E6BJ = Crazy Climber E6CJ = Rompers E6DJ = Toy Pop E6EJ = Libble Rabble E6FJ = Galaxian E6GJ = Namco Quester E6HJ = Face Off E6IJ = Trink Force E6JJ = Bakutotsu Kijuutei: BaRaDuKe II E6KJ = Chouzetsu Rinjin - Berabow Man E6LJ = Marchen Maze E6ME = Tecmo Bowl E6MJ = Tecmo Bowl E6NE = Solomon's Key E6NJ = Solomon no Kagi E6NP = Solomon's Key E6OJ = Bomb Jack Arcade E6PE = Ninja Gaiden E6PJ = Ninja Ryukenden Arcade E6PP = Ninja Gaiden E6QE = Rygar E6QJ = Argos no Senshi E6QP = Rygar E6SJ = New Rally-X E6VE = Zaxxon 3-D E6VJ = Zaxxon E6VP = Zaxxon E6WE = Golden Axe E6WJ = Golden Axe E6WP = Golden Axe E6XE = Altered Beast E6XP = Altered Beast E6YJ = Space Invaders E6ZE = Starforce E6ZJ = Star Force E6ZP = Star Force E72J = Starblade E73E = Mappy E73J = Mappy E73P = Mappy E74J = Cosmo Gang the Puzzle E75J = Genpei Toumaden E76J = Emeraldia E77J = The Return of Ishtar E78J = Solvalou E79E = Gaplus E79J = Gaplus E79P = Gaplus E7AJ = Grobda E7BJ = Dig Dug II E7CJ = Bosconian E7EJ = Dragon Buster E7FJ = Dragon Saber E7GJ = Dragon Spirit E7HJ = Xevious E7IJ = Finest Hour E7JJ = Knuckle Heads E7KJ = Pac-Mania E7LJ = Cosmo Gang the Video E7MJ = Phelios E7NJ = Rolling Thunder E7OJ = Burning Force E7PJ = Marvel Land E7QJ = Galaga '88 E7RJ = Wonder Momo E7SJ = Assault E7TJ = Hopping Mappy E7UJ = Splatterhouse E7VJ = Cyber Sled E7WJ = Numan Athletics E7XJ = Youkai Douchuki E7YJ = Sky Kid E7ZE = The Tower of Druaga E7ZJ = Druaga no Tou E7ZP = The Tower of Druaga EA2E = Metal Slug 2 EA2J = Metal Slug 2 EA2P = Metal Slug 2 EA3J = Galaxy Fight: Universal Warriors EA4E = Samurai Showdown III EA4J = Samurai Spirits Kibeniro Musouken EA4P = Samurai Shodown III EA5E = Fatal Fury 3: Road to the Final Victory EA5J = Garou Densetsu 3: Road to the Final Victory EA5P = Fatal Fury 3: Road To The Final Victory EA6E = The King of Fighters '96 EA6J = The King of Fighters '96 EA7E = Samurai Shodown IV: Amakusa's Revenge EA7J = Samurai Spirits: Amakusa Kourin EA8E = Ironclad EA8J = Ironclad: Chotetsu Brikinger EA8M = Iron Clad EA9J = Waku Waku 7 EAAE = Fatal Fury EAAJ = Garou Densetsu: Shukumei no Takatai EAAP = Fatal Fury EABE = World Heroes EABJ = World Heroes EABP = World Heroes EACE = Magician Lord EACJ = Magician Lord EACP = Magician Lord EADE = Art of Fighting EADJ = Ryuuko no Ken EADP = Art of Fighting EAEE = Samurai Showdown EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen EAEP = Samurai Showdown EAFE = Blue's Journey EAFJ = Raguy EAFP = Blue's Journey EAGE = The King of Fighters '94 EAGJ = The King of Fighters '94 EAGP = The King of Fighters '94 EAHE = Baseball Stars 2 EAHJ = Baseball Stars 2 EAHP = Baseball Stars 2 EAIE = Top Hunter EAIJ = Top Hunter EAIP = Top Hunter EAJE = Metal Slug EAJJ = Metal Slug EAJP = Metal Slug EAKE = Burning Fight EAKJ = Burning Fight EAKP = Burning Fight EALE = Art of Fighting 2 EALJ = Ryuuko no Ken 2 EALP = Art of Fighting 2 EAME = Ninja Combat EAMJ = Ninja Combat EAMP = Ninja Combat EANE = Fatal Fury 2 EANJ = Garou Densetsu 2: Aratanaru Tatakai EANP = Fatal Fury 2 EAOE = King of the Monsters EAOJ = King of the Monsters EAOP = King of the Monsters EAPE = Ninja Commando EAPJ = Ninja Commando EAPP = Ninja Commando EAQE = WORLD HEROES 2 EAQJ = World Heroes 2 EARE = Neo Turf Masters EARJ = Neo Turf Masters EARP = Neo Turf Masters EASE = Samurai Showdown 2 EASJ = Shin Samurai Spirits Haoumaru Jigokuhen EASP = Samurai Shodown II EATE = WORLD HEROES 2 JET EATJ = World Heroes 2 Jet EAUJ = Twinkle Star Sprites EAVE = The King of Fighters ’95 EAVJ = The King of Fighters '95 EAVP = The King of Fighters '95 EAWE = Fatal Fury Special EAWJ = Garou Densetsu Special EAWP = Fatal Fury Special EAYJ = King of The Monsters 2 EAZE = WORLD HEROES PERFECT EAZJ = World Heroes Perfect EB2E = REAL BOUT FATAL FURY SPECIAL EB2J = Real Bout Garou Densetsu Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB6E = Metal Slug 3 EB6J = Metal Slug 3 EB6P = Metal Slug 3 EB7J = The Super Spy EB8E = SHOCK TROOPERS EB8J = Shock Troopers EB9J = Pulstar EBAE = Magical Drop II EBAJ = Magical Drop 2 EBAP = Magical Drop II EBBE = Fighters History Dynamite EBBJ = Fighter's History Dynamite EBBP = Karnov's Revenge EBCJ = Flying Power Disc EBDE = Magical Drop III EBDJ = Magical Drop III EBDP = Magical Drop 3 EBEE = Street Slam EBEJ = Dunk Dream EBEP = Street Hoop EBFE = Spin Master EBFJ = Miracle Adventure EBFP = Spin master EBGE = The King of Fighters '97 EBGJ = The King of Fighters '97 EBKJ = Last Resort EBLJ = Tsuukai GanGan Koushinkyoku EBMJ = Fire Suplex EBNJ = Fu'un Mokushiroku: Kakutou Sousei EBOJ = Fu'un Super Tag Battle EBPJ = League Bowling EBQE = NINJA MASTER'S EBQJ = Ninja Master's Haou Ninpou-chou EBRJ = Joy Joy Kid EBSE = The Path of the Warrior: Art of Fighting 3 EBSJ = Art of Fighting: Ryuuko no Ken Gaiden EBTJ = Crossed Swords EBUE = 2020 SUPER BASEBALL EBUJ = Super Baseball 2020 EBVJ = Shin-Oh-Ken EBWE = SENGOKU EBWJ = Sengoku Denshou EBXE = SENGOKU 2 EBXJ = Sengoku 2 EBZE = REAL BOUT FATAL FURY EBZJ = Real Bout Garou Densetsu ECAE = Real Bout Fatal Fury 2: The Newcomers ECAJ = Real Bout Garou Densetsu 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECDJ = Stakes Winner: G1 Kanzen Seihahe no Michi ECEE = THE LAST BLADE 2 ECEJ = Bakumatsu Rouman Dai Ni Maku: Gekka no Kenshi ECFJ = Blazing Star ECGE = Shock Troopers: 2nd Squad ECGJ = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECJE = The King of Fighters '99 ECJJ = Metal Slug 4 ECKE = NAM-1975 ECKJ = NAM-1975 ECLJ = Stakes Winner 2 ECMJ = Tokuten Oh: Honoo no Libero ECNE = Sengoku 3 ECNJ = Sengoku Denshou 2001 ENDP01 = New SUPER MARIO BROS. Wii 20 The End For Now EVOP01 = New Super Mario Bros. Wii 0-5 Evolution FA2J = Exerion FA3J = Formation Z FA4J = Devil World FA4P = Devil World FA5J = Fire Emblem: Ankoku Ryu to Hikari no Tsurugi FA6E = Donkey Kong Jr. Math FA6J = Donkey Kong Jr. no Sansuu Asobi FA6P = Donkey Kong Jr. Math FA7E = Yoshi FA7J = Yoshi no Tamago FA7K = Yoshi FA7P = Mario & Yoshi FA8E = Kirby's Adventure FA8F = Kirby's Adventure FA8J = Hoshi no Kirby: Yume no Izumi no Monogatari FA8K = Kirby's Adventure FA8P = Kirby's Adventure FA9E = Zelda II: The Adventure of Link FA9J = The Legend of Zelda 2: Link no Bouken FA9P = Zelda II: The Adventure of Link FAAE = Donkey Kong FAAJ = Donkey Kong FAAK = Donkey Kong FAAP = Donkey Kong FABE = Donkey Kong Jr. FABJ = Donkey Kong Jr. FABP = Donkey Kong Jr. FACE = Pinball FACJ = Pinball FACP = Pinball FADJ = Gomoku Narabe Renju FAFE = Mario Bros. FAFJ = Mario Bros. FAFK = Mario Bros. FAFP = Mario Bros. FAGE = Super Mario Bros. FAGJ = Super Mario Bros. FAGK = Super Mario Bros. FAGP = Super Mario Bros. FAHE = Tennis FAHJ = Tennis FAHP = Tennis FAIE = Soccer FAIJ = Soccer FAIP = Soccer FAJE = Ice Hockey FAJJ = Ice Hockey FAJP = Ice Hockey FAKE = The Legend of Zelda FAKJ = Zelda no Densetsu FAKK = The Legend of Zelda FAKP = The Legend of Zelda FALE = Baseball FALJ = Baseball FALP = Baseball FAME = Wario's Woods FAMJ = Wario no Mori FAMP = Wario's Woods FANE = Urban Champion FANJ = Urban Champion FANK = Urban Champion FANP = Urban Champion FAOE = Solomon's Key FAOJ = Solomon no Kagi FAOP = Solomon's Key FAPE = NES Open Tournament Golf FAPJ = Mario Open Golf FAPK = NES Open Tournament Golf FAPP = NES Open Tournament Golf FAQJ = Ninja Jajamaru-kun FAQL = Ninja JaJaMaru-kun FAQN = Ninja JaJaMaru-kun FARE = Gradius FARJ = Gradius FARP = Gradius FASE = Xevious FASJ = Xevious FASK = Xevious FASP = Xevious FATE = The Legend of Kage FATJ = Kage no Densetsu FAVE = Tecmo Bowl FAVJ = Tecmo Bowl FAWE = Elevator Action FAWJ = Elevator Action FAXE = Pac-Man FAXJ = Pac-Man FAXK = Pac-Man FAXP = Pac-Man FAYJ = Ikki FAZJ = Field Combat FAZK = Downtown Nekketsu Koushinkyoku: Soreyuke Daiundoukai FB2J = Super Mario Bros. 2 FB2L = Super Mario Bros.: The Lost Levels FB2N = Super Mario Bros.: The Lost Levels FB3J = Valkyrie no Bouken: Toki no Kagi Densetsu FB4E = Lunar Pool FB4J = Lunar Ball FB4P = Lunar Pool FB5E = Zanac FB5J = Zanac FB6J = Front Line FB7J = Nuts & Milk FB8J = Challenger FB9J = Pooyan FBAJ = Smash Ping Pong FBAL = Smash Table Tennis FBBE = Mach Rider FBBJ = Mach Rider FBBP = Mach Rider FBCE = Excitebike FBCJ = Excitebike FBCP = Excitebike FBDE = Kid Icarus FBDJ = Hikari Shinwa: Palutena no Kagami FBDK = Kid Icarus FBDP = Kid Icarus FBEE = Ice Climber FBEJ = Ice Climber FBEP = Ice Climber FBHE = Castlevania FBHJ = Akumajou Dracula FBHP = Castlevania FBIE = Punch Out!! Featuring Mr. Dream FBIJ = Punch-Out!! FBIP = Punch-Out!! FBJE = Mighty Bomb Jack FBJJ = Mighty Bomb Jack FBJP = Mighty Bomb Jack FBKE = Teenage Mutant Ninja Turtles FBKJ = Gekikame Ninja Den FBKP = Teenage Mutant Ninja Turles FBLE = Lode Runner FBLJ = Lode Runner FBLM = Lode Runner FBNE = Ninja Gaiden FBNJ = Ninja Ryuukenden FBNM = Ninja Gaiden FBOJ = Gradius II FBQJ = Druaga no Tou FBRE = Galaga FBRJ = Galaga FBRK = Galaga FBRP = Galaga FBSE = Milon's Secret Castle FBSJ = Meikyuu Kumikyoku: Milon no Daibouken FBSM = Milon's Secret Castle FBUE = Adventures of Lolo FBUJ = Adventures of Lolo FBUK = Adventures of Lolo FBUP = Adventures of Lolo FBVJ = Tsuppari Oozumou FBWJ = Joy Mech Fight FBWK = Joy Mech Fight FBXJ = Famicom Wars FBYE = Super Mario Bros. 2 FBYJ = Super Mario USA FBYK = Super Mario USA FBYP = Super Mario Bros. 2 FBZE = Metroid FBZJ = Metroid FBZP = Metroid FC2J = Hanjuku Hero FC3E = Bubble Bobble FC3J = Bubble Bobble FC3K = Bubble Bobble FC3P = Bubble Bobble FC4J = Chack'n Pop FC5J = Ganbare Goemon Karakuki Douchuu FC6E = StarTropics FC6J = Startropics FC6P = StarTropics FC7E = NES Play Action Football FC7J = NES Play Action Football FC8E = Castlevania II Simon's Quest FC8J = Dracula II: Noroi no Fuuin FC8P = Castlevania II: Simon's Quest FC9J = Metal Slader Glory FCAE = Star Soldier FCAJ = Star Soldier FCEJ = Esper Dream FCEU = FCE Ultra GX FCFJ = Yie Ar Kung Fu FCGJ = TwinBee FCHJ = Flappy FCIJ = Volguard 2 FCJJ = SD Gundam World: Gachapon Senshi 2 - Capsule Senki FCNJ = Kekkyoku Nankyoku Daibouken FCNK = Antarctic Adventure FCOJ = Battle City FCPE = Balloon Fight FCPJ = Balloon Fight FCPP = Balloon Fight FCQE = Ninja Gaiden II: The Dark Sword of Chaos FCQJ = Ninja Gaiden Two FCRE = Adventure Island FCRJ = Takahashi Meijin no Boukenjima FCRK = Hudson's Adventure Island FCRP = Adventure Island FCSE = Super C FCSJ = Super Contra FCSP = Probotector II: Return of the Evil Forces FCTE = Mega Man FCTJ = RockMan FCTP = Mega Man FCUE = Volleyball FCUJ = Volleyball FCUP = Volleyball FCVE = Wrecking Crew FCVJ = Wrecking Crew FCVP = Wrecking Crew FCWE = Super Mario Bros. 3 FCWJ = Super Mario Bros. 3 FCWK = Super Mario Bros. 3 FCWP = Super Mario Bros. 3 FCYE = Yoshi’s Cookie FCYJ = Yoshi no Cookie FCYK = Yoshi's Cookie FCYP = Yoshi’s Cookie FCZE = King's Knight FCZJ = Kings Knight FD2E = Double Dragon FD2J = Double Dragon FD2P = Double Dragon FD3J = Nekketsu Koukou Dodgeball-bu Soccer-hen FD3K = Nekketsu Koukou Dodgeball-bu Soccer-hen FD6E = Adventures of Lolo 2 FD6P = Adventures of Lolo 2 FD7E = Mega Man 3 FD7J = RockMan 3: Dr. Wily no Saigo?! FD7P = Mega Man 3 FDAE = Spelunker FDAJ = Spelunker FDAM = Spelunker FDBJ = Famicom Mukashi Banashi: Shin Onigashima - Kouhen FDCJ = Star Luster FDEJ = Mappy FDFE = Bases Loaded FDFJ = Moero!! Pro Yakyuu FDGE = Ghosts'n Goblins FDGJ = Makai-Mura FDGP = Ghosts'n Goblins FDIJ = Bokosuka Wars FDLE = Ninja Gaiden III: The Ancient Ship of Doom FDLJ = Ninja Gaiden Three FDNE = Mega Man 2 FDNJ = RockMan 2 FDNP = Mega Man 2 FDOE = Operation Wolf FDOJ = Operation Wolf FDOP = Operation Wolf FDPE = Blades of Steel FDPP = Blades of Steel FDQE = Double Dribble FDQP = Double Dribble FDRP = Skate or Die FDSJ = Famicom Tantei Club: Kieta Koukeisha (Kouhen) FDTE = Renegade FDTJ = Renegade FDUE = Super Dodge Ball FDUJ = Nekketsu Koukou Dodge Ball Bu FDVE = River City Ransom FDVJ = Downtown Nekketsu Monogatari FDVK = Downtown Nekketsu Monogatari FDVP = Street Gangs FDWJ = Downtown Special: Kunio-kun no Jidaigeki Dayo Zenin Shuugou! FDXJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo (Kouhen) FDYJ = Fire Emblem Gaiden FDZJ = Downtown Nekketsu Koushinkyoku FE5J = Toukaidou Gojuusan Tsugi FE6J = Ninja kun Majyou no Bouken FE7J = Ninja kun Ashura no Shou FE8J = Takeshi no Chousenjou FE9J = Ike Ike! Nekketsu Hockey-bu: Subette Koronde Dairantou FECE = Skykid FECJ = Sky Kid FEDJ = Dig Dug FEDL = Dig Dug FEDN = Dig Dug FEEJ = Tantei Jinguji Saburo: Shinjuku Chuo Koen Satsujin Jiken FEFJ = Detective Saburo Jinguji 2: Yokohama-Ko Renzoku Satsujin Jiken FEGJ = Tantei Jinguuji Saburo - Kikenna Futari - Zenkouhen FEHJ = Tantei Jinguuji Saburo: Toki no Sugiyuku Mama ni FEIE = City Connection FEIJ = City Connection FEIP = City Connection FEJJ = Nazo no Murasame Jou FELJ = Transformers: Convoy no Nazo FEMJ = Bio-Miracle Bokutte Upa FEML = Bio Miracle Bokutte UPA FEMN = Bio Miracle Bokutte UPA FENE = Life Force FENJ = Salamander FEOJ = Zoids: Mokushiroku FEPJ = Getsu Fuuma Den FEQE = Castlevania III: Dracula's Curse FEQJ = Akumajo Densetsu FEQP = Castlevania III Dracula's Curse FERE = Zoda’s Revenge: StarTropics II FERJ = Zoda's Revenge FERM = Startropics II: Zoda's Revenge FESE = Clu Clu Land FESJ = Clu Clu Land FESP = Clu Clu Land FEUE = Donkey Kong 3 FEUJ = Donkey Kong 3 FEUP = Donkey Kong 3 FEVJ = Atlantis no Nazo FEWJ = Dragon Buster FEXJ = Wagyan Land FF2J = Sugoro Quest: Dice no Senshi Tachi FF4E = BurgerTime FF4J = BurgerTime FF5E = Double Dragon II: The Revenge FF5J = Double Dragon 2: The Revenge FF6J = Ganbare Goemon 2 FF7J = Ganbare Goemon Gaiden: Kieta Ougon Kiseru FFAE = Final Fantasy FFAJ = Final Fantasy FFAM = Final Fantasy FFBJ = Final Fantasy II FFDE = Crash 'N The Boys Street Challenge FFDJ = Bikkuri Nekketsu Shin Kiroku! Harukanaru Kin Medal FFEE = A Boy and His Blob: Trouble on Blobolonia FFEP = A Boy and His Blob: Trouble on Blobolonia FFFJ = Final Fantasy III FFGJ = SD Gundam World: Gachapon Senshi - Scramble Wars FFJJ = Metal Max FFKJ = Championship Lode Runner FFLE = Princess Tomato in the Salad Kingdom FFLJ = Salad no Kuni no Tomato Hime FFME = Blaster Master FFMJ = Chou-Wakusei Senki MetaFight FFMP = Blaster Master FFNE = Mega Man 4 FFNJ = RockMan 4: Aratanaru Yabou!! FFNP = Mega Man 4 FFOJ = Moero TwinBee: Cinnamon Hakase o Sukue! FFPB = Ufouria: The Saga FFPJ = Furu Furu Park FFQE = Shadow of the Ninja FFQM = Shadow of the Ninja FFRE = Faxanadu FFRJ = Faxanadu FFRP = Faxanadu FFTJ = Binary Land FFUE = Adventure Island 2 FFUJ = Takahashi Meijin no Bouken Jima II FFUP = Adventure Island 2 FFVE = S.C.A.T. FFVP = S.C.A.T.: Special Cybernetic Attack Team FFWP = Donkey Kong: Original Edition FFXJ = 25th Anniversary SUPER MARIO BROS. FFXP = Super Mario Brothers: 25th Anniversary Exclusive FFYE = Mega Man 5 FFYJ = RockMan 5: Blues no Wana!? FFZJ = Seicross FFZY = Contra FJOR = Kung Fu FMCA = The Goonies G01E01 = Super Smash Bros. Melee: SD Remix G01J01 = Super Smash Bros. Melee: SD Remix G01P01 = Super Smash Bros. Melee: SD Remix G02E01 = Super Smash Bros. Melee: 20XX Training Pack G02J01 = Super Smash Bros. Melee: 20XX Training Pack G02P01 = Super Smash Bros. Melee: 20XX Training Pack G2BE5G = Black & Bruised G2BP7D = Black & Bruised G2CD52 = True Crime: New York City G2CE52 = True Crime: New York City G2CP52 = True Crime: New York City G2CX52 = True Crime: New York City G2FD78 = Tak 2: The Staff of Dreams G2FE78 = Tak 2: The Staff of Dreams G2FF78 = Tak 2: The Staff of Dreams G2FP78 = Tak 2: The Staff of Dreams G2GJB2 = Mobile Suit Gundam: Gundam vs. Z Gundam G2KE8P = NHL 2K3 G2KP8P = NHL 2K3 G2ME01 = Metroid Prime 2: Echoes G2MEAB = Metroid Prime 3 (E3 Beta) G2MJ01 = Metroid Prime 2: Dark Echoes G2MP01 = Metroid Prime 2: Echoes G2OE41 = Prince of Persia: Warrior Within G2OP41 = Prince of Persia: Warrior Within G2PE6U = Spirits And Spells G2RE52 = Shrek SuperSlam G2SJGE = Shikigami no Shiro II G2TE52 = Tony Hawk's Underground 2 G2TP52 = Tony Hawk's Underground 2 G2VE08 = Viewtiful Joe 2 G2VJ08 = Viewtiful Joe 2: Blackfilm no Nazo G2VP08 = Viewtiful Joe 2 G2XE8P = Sonic Gems Collection G2XP8P = Sonic Gems Collection G3AD69 = Lord of the Rings: The Third Age G3AE69 = Lord of the Rings: The Third Age G3AF69 = Lord of the Rings: The Third Age G3AP69 = Lord of the Rings: The Third Age G3AS69 = Lord of the Rings: The Third Age G3BE9G = Serious Sam: Next Encounter G3BP54 = Serious Sam: Next Encounter G3BP9G = Serious Sam: Next Encounter G3DE6L = Carmen Sandiego: The Secret of the Stolen Drums G3DP6L = Carmen Sandiego: The Secret of the Stolen Drums G3DX6L = Carmen Sandiego: The Secret of the Stolen Drums G3EE51 = XGIII: Extreme G Racing G3EJ51 = XGIII: Extreme G Racing G3EP51 = XGIII: Extreme G Racing G3FD69 = TimeSplitters: Future Perfect G3FE69 = TimeSplitters: Future Perfect G3FF69 = TimeSplitters: Future Perfect G3FP69 = TimeSplitters: Future Perfect G3FS69 = TimeSplitters: Future Perfect G3JEAF = Curious George G3LE8P = Super Monkey Ball Adventure G3LP8P = Super Monkey Ball Adventure G3ME41 = Tom Clancy's The Sum of All Fears G3MP41 = The Sum of All Fears G3NJDA = NARUTO Gekitô Ninja Taisen! 3 G3QEA4 = Teenage Mutant Ninja Turtles 3: Mutant Nightmare G3RD52 = Shrek 2 G3RE52 = Shrek 2 G3RF52 = Shrek 2 G3RP52 = Shrek 2 G3SE41 = Bust-A-Move 3000 G3TJ8P = Derby Tsuku 3: Derby Uma O Tsukurou! G3VE69 = NBA Street Vol.3 G3VP69 = NBA Street Vol.3 G3XE52 = X-Men: The Official Game G3XP52 = X-Men: The Official Game G3YP52 = Shrek Super Slam G3YX52 = Shrek Super Slam G3YY52 = Shrek Super Slam G4AEE9 = Harvest Moon: Magical Melody G4BE08 = Resident Evil 4 G4BJ08 = Biohazard 4 G4BP08 = Resident Evil 4 G4CE54 = Charlie and the Chocolate Factory G4CP54 = Charlie and the Chocolate Factory G4FD69 = FIFA 07 G4FE69 = FIFA Soccer 07 G4FF69 = FIFA 07 G4FP69 = FIFA 07 G4GEE9 = Harvest Moon: Another Wonderful Life G4IE52 = Shrek Smash n' Crash Racing G4IP52 = Shrek Smash n' Crash Racing G4ME69 = The Sims Bustin' Out G4MP69 = The Sims: Bustin' Out G4NJDA = NARUTO Gekitô Ninja Taisen! 4 G4OE69 = The Sims 2 : Pets G4OP69 = The Sims 2 : Pets G4QE01 = Super Mario Strikers G4QJ01 = Super Mario Strikers G4QP01 = Mario Smash Football G4SE01 = The Legend of Zelda: Four Swords Adventures G4SJ01 = The Legend of Zelda: Four Swords + G4SP01 = The Legend of Zelda: Four Swords Adventures G4ZE69 = The Sims 2 G4ZP69 = The Sims 2 G5BE4Z = Strike Force Bowling G5DE78 = Scooby-Doo! - Unmasked G5DP78 = Scooby-Doo! - Unmasked G5NEAF = Namco Museum 50th Anniversary G5NP69 = Namco Museum 50th Anniversary G5SE7D = Spyro: A Hero's Tail G5SP7D = Spyro: A Hero's Tail G5TE69 = Tiger Woods PGA Tour 2005 G5TP69 = Tiger Woods PGA Tour 2005 G62E54 = Major League Baseball 2k6 G63E41 = Tom Clancy's Rainbow Six 3 G63P41 = Tom Clancy's Rainbow Six 3 G6FD69 = 2006 FIFA World Cup G6FE69 = 2006 FIFA World Cup G6FF69 = 2006 FIFA World Cup G6FP69 = 2006 FIFA World Cup G6ME69 = Madden NFL 06 G6MP69 = Madden NFL 06 G6NE69 = NBA Live 06 G6NP69 = NBA Live 06 G6QE08 = Mega Man Anniversary Collection G6SE7D = The Legend of Spyro: A New Beginning G6SP7D = The Legend of Spyro: A New Beginning G6TE5G = Teen Titans G6TP5G = Teen Titans G6TP78 = Teen Titans G6WE69 = Tiger Woods PGA Tour 06 G6WP69 = Tiger Woods PGA Tour 06 G7ME69 = Madden NFL 07 G89EAF = Pac-Man World Rally G8FE8P = Virtua Quest G8ME01 = Paper Mario: The Thousand-Year Door G8MJ01 = Paper Mario RPG G8MP01 = Paper Mario: The Thousand-year Door G8OJ18 = Bobobo-bo Bo-bobo Dassutsu! Hajike Royale G8SJAF = Battle Stadium D.O.N G8WE01 = Battalion Wars G8WP01 = Battalion Wars G94E01 = Interactive Multi-Game Demo Disc - August 2002 G95E01 = Interactive Multi-Game Demo Disc - July 2002 G96E01 = Interactive Multi-Game Demo Disc - June 2002 G97E01 = Interactive Multi-Game Demo Disc - March 2002 G97P01 = Interactive Multi Game Demo Disc - September 2002 G97U01 = Interactive Multi-Game Demo Disc - September 2002 G98E01 = Interactive Multi-Game Demo Disc - January 2002 G98P01 = Interactive Multi Game Demo Disc May 2002 G99E01 = Interactive Multi-Game Demo Disc - October 2001 G99P01 = Interactive Multi Game Demo Disc March 2002 G9BEE9 = Mark Davis Pro Bass Challenge G9RD7D = Crash Tag Team Racing G9RE7D = Crash Tag Team Racing G9RF7D = Crash Tag Team Racing G9RP7D = Crash Tag Team Racing G9SE8P = Sonic Heroes G9SJ8P = Sonic Heroes G9SP8P = Sonic Heroes G9TD52 = Shark Tale G9TE52 = Shark Tale G9TF52 = Shark Tale G9TI52 = Shark Tale G9TJC0 = Shark Tale G9TP52 = Shark Tale GA2E51 = All-Star Baseball 2002 GA3E51 = All-Star Baseball 2003 GA4E51 = All-Star Baseball 2004 GA7E70 = Backyard Sports Baseball 2007 GAAJ08 = Disney's Mickey & Minnie Trick & Chase GABEAF = Zatch Bell! Mamodo Fury GACE5H = Army Men: Air Combat The Elite Missions GAEJ01 = Doubutu no Mori e+ GAFE01 = Animal Crossing GAFJ01 = Animal Forest + GAFP01 = Animal Crossing GAFU01 = Animal Crossing GAGP70 = Asterix & Obelix XXL GAHEGG = Alien Hominid GAKE5D = Midway Arcade Treasures GALE01 = Super Smash Bros. Melee GALJ01 = Dairantou Smash Brothers DX GALP01 = Super Smash Bros. Melee GAME5H = Army Men Sarges War GANE7U = Animaniacs: The Great Edgar Hunt GANP7U = Animaniacs: The Great Edgar Hunt GAPE52 = American Chopper 2 - Full Throttle GAQE6S = Aquaman: Battle of Atlantis GARE5H = Army Men: RTS GASE8P = Sonic Adventure DX: Director's Cut (Review Prototype) GASJ8P = Sonic Adventure DX GATE51 = ATV Quad Power Racing 2 GATP51 = ATV Quad Power Racing 2 GAUE08 = Auto Modellista GAUJ08 = Auto Modellista: U.S.-tuned GAVE78 = Avatar The Last Airbender GAVP78 = Avatar: The Legend of Aang GAVY78 = Avatar: The Legend of Aang GAXE5D = The Ant Bully GAYE5D = Midway Arcade Treasures 2 GAZD69 = Harry Potter and the Prisoner of Azkaban GAZE69 = Harry Potter and the Prisoner of Azkaban GAZF69 = Harry Potter and the Prisoner of Azkaban GAZH69 = Harry Potter and the Prisoner of Azkaban GAZI69 = Harry Potter and the Prisoner of Azkaban GAZJ69 = Harry Potter to Azkaban no Shuujin GAZM69 = Harry Potter and the Prisoner of Azkaban GAZP69 = Harry Potter and the Prisoner of Azkaban GAZS69 = Harry Potter and the Prisoner of Azkaban GB2J18 = Bomberman Land 2 GB3E51 = BMX XXX GB3P51 = BMX XXX GB4E51 = Burnout 2: Point of Impact GB4P51 = Burnout 2: Point of Impact GBAE8P = NBA 2K2 GBDE5G = BloodRayne GBDP7D = BloodRayne GBDS7D = BloodRayne GBFE70 = Backyard Football GBGE5G = Bomberman Generation GBGP7D = Bomberman Generation GBHDC8 = Mystic Heroes GBHEC8 = Mystic Heroes GBHFC8 = Mystic Heroes GBHJC8 = Battle Houshin GBHPC8 = Mystic Heroes GBIE08 = Resident Evil GBIJ08 = Biohazard GBIP08 = Resident Evil GBKE70 = Backyard Baseball GBLE52 = Bloody Roar: Primal Fury GBLP52 = Bloody Roar: Primal Fury GBME7F = Batman: Dark Tomorrow GBMP7F = Batman: Dark Tomorrow GBNJC0 = Warrior Blade: Rastan vs. Barbarian GBOE51 = Burnout GBOP51 = Burnout GBQE78 = Rocket Power: Beach Bandits GBQP78 = Rocket Power: Beach Bandits GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTP70 = Beyblade VForce - Super Tournament Battle GBVE41 = Batman: Vengeance GBVP41 = Batman Vengeance GBWD64 = Star Wars Bounty Hunter GBWE64 = Star Wars Bounty Hunter GBWF64 = Star Wars Bounty Hunter GBWP64 = Star Wars Bounty Hunter GBWS64 = Star Wars Bounty Hunter GBXE51 = Dave Mirra Freestyle BMX 2 GBXP51 = Dave Mirra Freestyle BMX 2 GBYE0A = Super Bubble Pop GBZE08 = Resident Evil Zero GBZJ08 = Resident Evil Zero GBZP08 = Resident Evil Zero GC2E9G = Conflict: Desert Storm II: Back to Baghdad GC2P75 = Conflict: Desert Storm II: Back to Baghdad GC3D78 = Scooby-Doo!: Mystery Mayhem GC3E78 = Scooby-Doo!: Mystery Mayhem GC3F78 = Scooby-Doo!: Mystery Mayhem GC3P78 = Scooby-Doo!: Mystery Mayhem GC4JBN = Shinseiki GPX Cyber Formula Road To The EVOLUTION GC5PNK = Cocoto: Kart Racer GC6E01 = Pokémon Colosseum GC6J01 = Pokémon Colosseum GC6P01 = Pokémon Colosseum GC7PNK = Cocoto Platform Jumper GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBP7D = Crash Bandicoot: The Wrath of Cortex GCCE01 = Final Fantasy Crystal Chronicles GCCJ01 = Final Fantasy Crystal Chronicles GCCJGC = Final Fantasy Crystal Chronicles GCCP01 = Final Fantasy Crystal Chronicles GCDE08 = Resident Evil Code: Veronica X GCDJ08 = Biohazard: Code Veronica GCDP08 = Resident Evil Code Veronica X GCEE41 = Tom Clancy's Splinter Cell GCEP41 = Tom Clancy's Splinter Cell GCFE9G = Conflict: Desert Storm GCFP75 = Conflict: Desert Storm GCGE41 = Charlie's Angels GCGP41 = Charlie's Angels GCHE78 = WWE Crush Hour GCHP78 = WWE Crush Hour GCIE69 = The Sims GCIP69 = The Sims GCJE41 = Tom Clancy's Splinter Cell: Chaos Theory GCJP41 = Tom Clancy's Splinter Cell: Chaos Theory GCLE69 = Cel Damage GCLP69 = Cel Damage GCMJA4 = Muscle Champion ~Battle of Muscle Island~ GCNE7D = Crash Nitro Kart GCNP7D = Crash Nitro Kart GCOD52 = Call of Duty: Finest Hour GCOE52 = Call of Duty: Finest Hour GCOF52 = Call of Duty: Finest Hour GCOP52 = Call of Duty: Finest Hour GCPE6S = Casper: Spirit Dimensions GCPP6S = Casper: Spirit Dimensions GCQD7D = Buffy The Vampire Slayer Chaos Bleeds GCQE7D = Buffy the Vampire Slayer: Chaos Bleeds GCQF7D = Buffy The Vampire Slayer Chaos Bleeds GCQP7D = Buffy The Vampire Slayer Chaos Bleeds GCSEAF = Street Racing Syndicate GCSPAF = Street Racing Syndicate GCTE51 = Crazy Taxi GCTP51 = Crazy Taxi GCUE69 = NCAA Football 2005 GCVEEB = Cubivore: Survival of the Fittest GCWP6X = Castleween GCZE69 = Catwoman GCZP69 = Catwoman GD4E6S = Dinotopia - The Sunstone Odyssey GD5JB2 = Dragon Drive: D-Masters Shot GD6EB2 = Digimon Rumble Arena 2 GD6P70 = Digimon Rumble Arena 2 GD7E70 = Dragon Ball Z - Budokai GD7JB2 = Dragon Ball Z - Budokai GD7P70 = Dragon Ball Z - Budokai GD7PB2 = Dragon Ball Z Budokai GD9E69 = Drome Racers GD9P69 = Drome Racers GDAJE5 = Doraemon Minna De Asobou! GDBJ01 = Doubutsu Bancho GDCE51 = Speed Kings GDCP51 = Speed Kings GDDE41 = Disney's Donald Duck: Goin' Quackers GDDP41 = Disney's Donald Duck: Qu@ck Att@ck GDED71 = Baldur's Gate Dark Alliance GDEE71 = Baldur's Gate: Dark Alliance GDEF71 = Baldur's Gate: Dark Alliance GDEP71 = Baldur's Gate Dark Alliance GDFE5D = Defender GDFP5D = Defender: For All Mankind GDGE7H = Dragon's Lair 3D: Return to the Lair GDGP78 = Dragon's Lair 3D Special Edition GDIE7D = Die Hard: Vendetta GDIP7D = Die Hard: Vendetta GDIX7D = Die Hard: Vendetta GDIY7D = Die Hard: Vendetta GDJEB2 = Digimon World 4 GDJJB2 = Digimon World X GDKEA4 = Disney Sports Soccer GDKPA4 = Disney Sports: Football GDLEA4 = Disney Sports Basketball GDLPA4 = Disney Sports: Basketball GDME01 = Disney's Magical Mirror Starring Mickey Mouse GDMJ01 = Disney's Mickey Mouse no Fushigi na Kagami GDMP01 = Disney's Magical Mirror Starring Mickey Mouse GDNJE8 = Dokapon DX GDOP41 = Disney's Donald Duck PK GDPJAF = Mr. Driller: Drill Land GDQE7L = Darkened Skye GDQP6S = Darkened Skye GDREAF = Dead to Rights GDRP69 = Dead to Rights GDRPAF = Dead to Rights GDSE78 = Dark Summit GDSP78 = Dark Summit GDTE69 = Def Jam Vendetta GDTP69 = Def Jam Vendetta GDUJA7 = Duel Masters Nettou Battle GDVE6L = Driven GDVP6L = Driven GDWEA4 = Disney Sports Football GDXEA4 = Disney Sports Skateboarding GDXJA4 = Disney Sports Skateboarding GDXPA4 = Disney Sports Skateboarding GE3E5D = Midway Arcade Treasures 3 GE4E7D = 4x4 Evo 2 GE5EA4 = TMNT: Mutant Melee GE6JA4 = Eisei Meijin VI GE9E5D = Ed, Edd n Eddy: The Mis-Edventures GEAE8P = Skies of Arcadia Legends GEAJ8P = Eternal Arcadia Legends GEAP8P = Skies of Arcadia Legends GEBEA4 = Evolution Snowboarding GEBPA4 = Evolution Snowboarding GEDE01 = Eternal Darkness: Sanity's Requiem GEDJ01 = Eternal Darkness: Manekareta 13-nin GEDP01 = Eternal Darkness: Sanity's Requiem GEJJCM = Jikkyou Powerful Pro Yakyuu 11 Chou Ketteiban GEME7F = Egg Mania: Eggstreme Madness GEMP7F = Eggo Mania GEND69 = James Bond 007: Everything Or Nothing GENE69 = James Bond 007: Everything Or Nothing GENF69 = James Bond 007: Everything Or Nothing GENP69 = 007: Everything Or Nothing GENS69 = James Bond 007: Everything Or Nothing GEOE08 = Capcom vs. SNK 2 EO GEOP08 = Capcom Vs. SNK2 EO: Millionaire Fighting 2001 GESEA4 = Evolution Skateboarding GESPA4 = Evolution Skateboarding GEVJ0M = Shinki Sekai Evolutia GEWE41 = Evolution Worlds GEWP41 = Evolution Worlds GEXE52 = Disney's Extreme Skate Adventure GEXP52 = Disney Extreme Skate Adventure GEXX52 = Disney's Extreme Skate Adventure GEXY52 = Disney Extreme Skate Adventure GEYE69 = Fight Night Round 2 GEYJ69 = Fight Night Round 2 GEYP69 = Fight Night Round 2 GEZE8P = Billy Hatcher and the Giant Egg GEZP8P = Billy Hatcher and the Giant Egg GF2E69 = F1 2002 GF2P69 = F1 2002 GF3E8P = NFL 2K3 GF3P8P = NFL 2K3 GF4E52 = Fantastic 4 GF4F52 = Fantastic Four GF4P52 = Fantastic 4 GF5D69 = FIFA Football 2005 GF5E69 = FIFA Soccer 2005 GF5F69 = FIFA Football 2005 GF5H69 = FIFA Football 2005 GF5I69 = FIFA Football 2005 GF5P69 = FIFA Football 2005 GF5S69 = FIFA Football 2005 GF6D69 = FIFA 06 GF6E69 = FIFA Soccer 06 GF6F69 = FIFA 06 GF6H69 = FIFA 06 GF6P69 = FIFA 06 GF6S69 = FIFA 06 GF7E01 = Star Fox: Assault GF7P01 = Star Fox Assault GF8E69 = FIFA Street GF8P69 = FIFA Street GFAD69 = FIFA Soccer 2003 GFAE69 = FIFA Soccer 2003 GFAF69 = FIFA Soccer 2003 GFAI69 = FIFA Football 2003 GFAJ69 = FIFA Soccer 2003 GFAP69 = FIFA Football 2003 GFAS69 = FIFA Football 2003 GFBE5D = FireBlade GFBP5D = Fireblade GFCP69 = F1 Career Challenge GFDD69 = Freedom Fighters GFDE69 = Freedom Fighters GFDF69 = Freedom Fighters GFDP69 = Freedom Fighters GFEE01 = Fire Emblem: Path of Radiance GFEJ01 = Fire Emblem: Souen no Kiseki GFEP01 = Fire Emblem: Path of Radiance GFFE5D = Freaky Flyers GFGEA4 = Frogger Beyond GFGPA4 = Frogger Beyond GFHP6V = Neighbours From Hell GFIE69 = 2002 FIFA World Cup GFKE69 = Freekstyle GFKP69 = Freekstyle GFMJAF = Family Stadium 2003 GFNJG2 = Finding Nemo GFOE78 = The Fairly OddParents - Shadow Showdown GFPEA4 = Frogger: Ancient Shadow GFQEA4 = Frogger's Adventures: The Rescue GFSD69 = 2002 FIFA World Cup GFSE69 = FIFA Soccer 2002 GFSF69 = 2002 FIFA World Cup GFSJ69 = FIFA Soccer 2002 GFSP69 = 2002 FIFA World Cup GFTE01 = Mario Golf: Toadstool Tour GFTJ01 = Mario Golf: Family Tour GFTP01 = Mario Golf: Toadstool Tour GFUE4Z = Future Tactics: The Uprising GFUP6V = Future Tactics: The Uprising GFVE5D = NFL Blitz Pro GFWE78 = The Fairly OddParents: Breakin' Da Rules GFXE5D = Freestyle Metal X GFYE69 = FIFA Street 2 GFYP69 = FIFA Street 2 GFZE01 = F-Zero GX GFZJ01 = F-Zero GX GFZJ8P = F-Zero AX GFZP01 = F-Zero GX GG1J08 = Donkey Kong: Jungle Fever GG2E4Z = Trigger Man GG3J08 = Donkey Kong: Banana Kingdom GG4E08 = Gotcha Force GG4P08 = Gotcha Force GG5E52 = Cabela's Big Game Hunter 2005 GGAJB2 = Mobile Suit Gundam: The Ace Pilot GGCE0A = Goblin Commander: Unleash The Horde GGCP0A = Goblin Commander: Unleash the Horde GGEE41 = Beyond Good & Evil GGEP41 = Beyond Good And Evil GGEX41 = Beyond Good And Evil GGEY41 = Beyond Good And Evil GGFJ01 = GiFTPiA GGNE5D = The Grim Adventures of Billy and Mandy GGPE01 = Mario Kart Arcade GP GGPE02 = Mario Kart Arcade GP 2 GGPJ02 = Mario Kart Arcade GP 2 GGPJAF = SD Gundam Gashapon Wars GGPJB2 = SD Gundam Gashapon Wars GGRD41 = Tom Clancy's Ghost Recon GGRE41 = Tom Clancy's Ghost Recon GGRP41 = Tom Clancy's Ghost Recon GGSEA4 = Metal Gear Solid: The Twin Snakes GGSJA4 = Metal Gear Solid: The Twin Snakes GGSPA4 = Metal Gear Solid: The Twin Snakes GGTE01 = Chibi-Robo! GGTJ01 = Chibi-Robo! GGTP01 = Chibi-Robo! GGVD78 = Spongebob Squarepants : The Movie GGVE78 = SpongeBob SquarePants: The Movie GGVP78 = Spongebob Squarepants: The Movie GGVX78 = Spongebob Squarepants : The Movie GGYE41 = Tom Clancy's Ghost Recon 2 GGYP41 = Tom Clancy's Ghost Recon 2 GGZE52 = Madagascar GGZH52 = Madagascar GGZI52 = Madagascar GGZJB2 = Madagascar GGZP52 = Madagascar GGZS52 = Madagascar GGZX52 = Madagascar GH2E69 = Need for Speed: Hot Pursuit 2 GH2P69 = Need For Speed Hot Pursuit 2 GH3E69 = NHL 2003 GH3P69 = NHL 2003 GH4D69 = Harry Potter and the Goblet of Fire GH4E69 = Harry Potter and the Goblet of Fire GH4F69 = Harry Potter and the Goblet of Fire GH4H69 = Harry Potter and the Goblet of Fire GH4I69 = Harry Potter and the Goblet of Fire GH4J69 = Harry Potter to Honoo no Goblet GH4M69 = Harry Potter and the Goblet of Fire GH4P69 = Harry Potter and the Goblet of Fire GH4S69 = Harry Potter and the Goblet of Fire GH5D52 = Over The Hedge GH5E52 = Over The Hedge GH5F52 = Over The Hedge GH5P52 = Over The Hedge GH6EAF = Hello Kitty: Roller Rescue GH6P7N = Hello Kitty: Roller Rescue GH7E5D = Happy Feet GH9P52 = Tony Hawk's American Wasteland GHAE08 = Resident Evil 2 GHAJ08 = Biohazard 2 GHAP08 = Resident Evil 2 GHBE7D = The Hobbit GHBP7D = The Hobbit GHCD4Q = Chicken Little GHCE4Q = Chicken Little GHCF4Q = Chicken Little GHCJG9 = Chicken Little GHCP4Q = Chicken Little GHEJ91 = Homeland GHFE4Z = Pinball Hall Of Fame: The Gottlieb Collection GHGEEB = Go! Go! Hypergrind GHKD7D = Hulk GHKE7D = Hulk GHKF7D = Hulk GHKP7D = Hulk GHKS7D = Hulk GHLE69 = Harry Potter and the Sorcerer's Stone GHLJ69 = Harry Potter to Kenja no Ishi GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Sorcerer's Stone GHLY69 = Harry Potter and the Sorcerer's Stone GHLZ69 = Harry Potter and the Sorcerer's Stone GHMD4F = Hitman 2: Silent Assassin GHME4F = Hitman 2: Silent Assassin GHMF4F = Hitman 2: Silent Assassin GHMP4F = Hitman 2: Silent Assassin GHNE71 = Hunter: The Reckoning GHNX71 = Hunter: The Reckoning GHPE52 = Street Hoops GHQE7D = The Simpsons: Hit & Run GHQP7D = The Simpsons: Hit & Run GHRE78 = Hot Wheels: World Race GHRP78 = Hot Wheels: World Race GHSE69 = Harry Potter and the Chamber of Secrets GHSJ69 = Harry Potter to Himitsu no Heya GHSP69 = Harry Potter and the Chamber of Secrets GHSX69 = Harry Potter e a Câmara dos Segredos GHSY69 = Harry Potter and the Chamber of Secrets GHTJA4 = Hikaru No Go 3 GHUE7D = The Incredible Hulk: Ultimate Destruction GHUF7D = The Incredible Hulk Ultimate Destruction GHUP7D = The Incredible Hulk Ultimate Destruction GHVE08 = Disney's Hide & Sneak GHVP08 = Disney's Hide & Sneak GHWE78 = Hot Wheels: Velocity X GHWP78 = Hot Wheels: Velocity X GHYE6S = The Haunted Mansion GHZE5D = NHL Hitz Pro GI2J18 = Momotarou Dentetsu 12 GIAE7D = Ice Age 2: The Meltdown GIAP7D = Ice Age 2 : The Meltdown GIBE4F = The Italian Job GIBP4F = The Italian Job GICD78 = The Incredibles GICE78 = The Incredibles GICF78 = The Incredibles GICH78 = The Incredibles GICJG9 = Mr. Inkurediburu GICP78 = The Incredibles GIFJDQ = Generation of Chaos Exceed GIGJ8P = Bleach GC: Tasogare Ni Mamieru Shinigami GIHD78 = Scooby-Doo! Night of 100 Frights GIHE78 = Scooby-Doo! Night of 100 Frights GIHP78 = Scooby-Doo! Night of 100 Frights GIIJ18 = Momotarou Dentetsu 11 GIJEFP = Space Raiders GIJJC0 = Space Raiders GIKE70 = Ikaruga GIKJ70 = Ikaruga GIKP70 = Ikaruga GILE51 = Aggressive Inline GILP51 = Aggressive Inline GINE69 = Batman Begins GINX69 = Batman Begins GIPEAF = Shonen Jump's One Piece: Pirates Carnival GIPJB2 = Shonen Jump's One Piece: Pirates Carnival GIQE78 = The Incredibles: Rise of the Underminer GIQJ8P = The Incredibles: Rise of the Underminer GIQP78 = The Incredibles: Rise of the Underminer GIQX78 = The Incredibles: Rise of the Underminer GIQY78 = The Incredibles: Rise of the Underminer GISE36 = Second Sight GISP36 = Second Sight GITE01 = Geist GITP01 = Geist GIVE4Z = Intellivision Lives GIZE52 = Ty the Tasmanian Tiger 3: Night of the Quinkan GJ2JCM = Jikkyou World Soccer 2002 GJ2PA4 = International Superstar Soccer 2 GJ3PA4 = International Superstar Soccer 3 GJBE18 = Bomberman Jetters GJBE5G = Bomberman Jetters GJBJ18 = Bomberman Jetters GJCE8P = Samurai Jack: The Shadow of Aku GJCP8P = Samurai Jack: The Shadow of Aku GJDE5S = Judge Dredd: Dredd vs. Death GJDX7D = Judge Dredd: Dredd vs. Death GJDY7D = Judge Dredd: Dredd vs. Death GJFE78 = Jimmy Neutron Jet Fusion GJFP78 = Jimmy Neutron Jet Fusion GJKD52 = Star Wars Jedi Knight II: Jedi Outcast GJKE52 = Star Wars Jedi Knight II: Jedi Outcast GJKF52 = Star Wars Jedi Knight II: Jedi Outcast GJKP52 = Star Wars Jedi Knight II: Jedi Outcast GJNE78 = Jimmy Neutron Boy Genius GJNP78 = Jimmy Neutron Boy Genius GJPJCM = Jikkyou Powerful Pro Yakyuu 11 GJSJ18 = Hudson Selection Vol. 2: Star Soldier GJUD78 = Tak and the Power of JuJu GJUE78 = Tak and the Power of Juju GJUF78 = Tak and the Power of JuJu GJUP78 = Tak and the Power of JuJu GJWE78 = Tak: The Great JuJu Challenge GJWP78 = Tak: The Great JuJu Challenge GJXE51 = Vexx GJXP51 = Vexx GJYE78 = Jimmy Neutron: Attack of the Twonkies GJYP78 = Jimmy Neutron Boy Genius: Attack of the Twonkies GJZE52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GJZP52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GK2D52 = Spider-Man 2 GK2E52 = Spider-Man 2 GK2F52 = Spider-Man 2 GK2P52 = Spider-Man 2 GK3E8P = NBA 2K3 GK3P8P = NBA 2K3 GK4E01 = Baten Kaitos Origins GK4J01 = Baten Kaitos II: Hajimari no Tsubasa to Kamigami no Shishi GK5E78 = Monster House GK5P78 = Monster House GK5X78 = Monster House GK6JA4 = Croket Banking No Kikiwosukue GK7E08 = Killer7 GK7J08 = Killer7 GK7P08 = Killer 7 GK9EA4 = Karaoke Revolution Party GKAE8P = Amazing Island GKAJ8P = Kaijuu no Shima: Amazing Island GKBEAF = Baten Kaitos Eternal Wings and the Lost Ocean GKBJAF = Baten Kaitos: Owaranai Tsubasa to Ushinawareta Umi GKBPAF = Baten Kaitos: Eternal Wings and the Lost Ocean GKDJ01 = Kyojin no Doshin GKDP01 = Doshin the Giant GKEJA4 = PAWAFURU PUROYAKYU 12 KETTEIBAN GKFEGG = Chaos Field GKFJ8P = Chaos Field Expanded GKGE01 = Donkey Konga GKGJ01 = Donkey Konga GKGP01 = Donkey Konga GKHEA4 = King Arthur GKHPA4 = King Arthur GKJD78 = Cars GKJE78 = Cars GKJF78 = Cars GKJH78 = Cars GKJJ78 = Cars GKJP78 = Cars GKJS78 = Cars GKKE69 = Knockout Kings 2003 GKKP69 = Knockout Kings 2003 GKLD69 = Lord of the Rings: The Return of the King GKLE69 = Lord of the Rings: The Return of the King GKLF69 = Lord of the Rings: The Return of the King GKLI69 = Lord of the Rings: The Return of the King GKLJ69 = The Lord of the Rings: The Return of the King GKLP69 = Lord of the Rings: The Return of the King GKLS69 = Lord of the Rings: The Return of the King GKME41 = Prince of Persia: The Two Thrones GKMP41 = Prince of Persia: The Two Thrones GKNEB2 = Ultimate Muscle: Legends vs. New Generation GKNJB2 = Kinnikuman Nisei: Shinsedai Choujin vs Densetsu Choujin GKOE70 = Kao The Kangaroo Round 2 GKOP6V = Kao The Kangaroo Round 2 GKPJA4 = Jikkyou Powerful Pro Yakyuu 12 GKQJ01 = Kururin Squash! GKREB2 = Ribbit King GKRPB2 = Ribbit King GKSE52 = Kelly Slater's Pro Surfer GKSP52 = Kelly Slater's Pro Surfer GKSX52 = Kelly Slater's Pro Surfer GKTJA4 = Captain Tsubasa: Ougon Sedai no Chousen GKUE9G = Scaler GKWJ18 = DreamMix TV World Fighters GKXJE7 = Kiwame Mahjong DX2 GKYE01 = Kirby Air Ride GKYJ01 = Kirby Airride GKYP01 = Kirby Air Ride GKZD9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZE9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZF9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP54 = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GL2E51 = Legends of Wrestling 2 GL2P51 = Legends of Wrestling II GL3JE8 = Lupin The Third - Umi Ni Kieta Hihou GL5E4F = LEGO Star Wars: The Video Game GL5P4F = LEGO Star Wars: The Video Game GL5X4F = LEGO Star Wars: The Video Game GL7E64 = LEGO Star Wars II: The Original Trilogy GL7P64 = LEGO Star Wars II: The Original Trilogy GL8D4F = Lara Croft Tomb Raider: Legend GL8E4F = Lara Croft Tomb Raider: Legend GL8F4F = Lara Croft Tomb Raider: Legend GL8P4F = Lara Croft Tomb Raider: Legend GLBE8P = Home Run King GLCD52 = Lemony Snickets A Series Of Unfortunate Events GLCE52 = Lemony Snickets A Series Of Unfortunate Events GLCF52 = Lemony Snickets A Series Of Unfortunate Events GLCP52 = Lemony Snickets A Series Of Unfortunate Events GLCS52 = Lemony Snickets A Series Of Unfortunate Events GLEE08 = Resident Evil 3: Nemesis GLEJ08 = BioHazard 3: Last Escape GLEP08 = Resident Evil 3: Nemesis GLGP41 = Largo Winch : Empire Under Threat GLHEG9 = Flushed Away GLHPG9 = Flushed Away GLIJA7 = Special Jinsei Game GLJJMS = Radirgy GLLE78 = Ratatouille GLLF78 = Ratatouille GLME01 = Luigi's Mansion GLMJ01 = Luigi's Mansion GLMP01 = Luigi's Mansion GLNE69 = Looney Tunes: Back in Action GLNP69 = Looney Tunes: Back in Action GLOD69 = Lord of the Rings: The Two Towers GLOE69 = Lord of the Rings: The Two Towers GLOF69 = Lord of the Rings: The Two Towers GLOI69 = Lord of the Rings: The Two Towers GLOP69 = Lord of the Rings: The Two Towers GLOS69 = Lord of the Rings: The Two Towers GLQE41 = Tom Clancy's Rainbow Six: Lockdown GLQP41 = Tom Clancy's Rainbow Six: Lockdown GLRD64 = Star Wars Rogue Squadron III: Rebel Strike GLRE64 = Star Wars Rogue Squadron III: Rebel Strike GLRF64 = Star Wars Rogue Squadron III: Rebel Strike GLRJ13 = Star Wars Rogue Squadron III: Rebel Strike GLRP64 = Star Wars Rogue Squadron III: Rebel Strike GLSD64 = Gladius GLSE64 = Gladius GLSF64 = Gladius GLSP64 = Gladius GLUE7U = Lotus Challenge GLVD4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVE4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVF4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVP4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLWE51 = Legends of Wrestling GLWP51 = Legends of Wrestling GLXJ29 = Legend of Golfer GLYE69 = NBA Live 2005 GLYP69 = NBA Live 2005 GLZD69 = James Bond 007: From Russia With Love GLZE69 = 007: From Russia With Love GLZF69 = James Bond 007: From Russia With Love GLZP69 = James Bond 007: From Russia With Love GM2E8P = Super Monkey Ball 2 GM2J8P = Super Monkey Ball 2 GM2P8P = Super Monkey Ball 2 GM3E69 = Madden NFL 2003 GM3P69 = Madden NFL 2003 GM4E01 = Mario Kart: Double Dash!! GM4J01 = Mario Kart: Double Dash!! GM4P01 = Mario Kart: Double Dash!! GM5D7D = Metal Arms: Glitch in the System GM5E7D = Metal Arms: Glitch in the System GM5F7D = Metal Arms: Glitch in the System GM5P7D = Metal Arms: Glitch in the System GM6EE9 = Medabots Infinity GM6PE9 = Medabots Infinity GM8E01 = Metroid Prime GM8J01 = Metroid Prime GM8P01 = Metroid Prime GM9E6S = Muppets Party Cruise GMAE51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMAP51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMBE8P = Super Monkey Ball GMBJ8P = Super Monkey Ball GMBP8P = Super Monkey Ball GMDE69 = Madden NFL 2002 GMEE70 = Men In Black II: Alien Escape GMEP70 = Men In Black II: Alien Escape GMFD69 = Medal of Honor: Frontline GMFE69 = Medal of Honor: Frontline GMFF69 = Medal of Honor: Frontline GMFI69 = Medal of Honor: Frontline GMFP69 = Medal of Honor: Frontline GMFS69 = Medal of Honor: Frontline GMHE52 = Mat Hoffmans Pro Bmx 2 GMHF52 = Mat Hoffman's Pro BMX 2 GMHP52 = Mat Hoffman's Pro BMX 2 GMIE70 = Mission Impossible: Operation Surma GMIP70 = Mission Impossible: Operation Surma GMJE41 = Monster Jam: Maximum Destruction GMJP41 = Monster Jam: Maximum Destruction GMKD5D = Mortal Kombat: Deadly Alliance GMKE5D = Mortal Kombat: Deadly Alliance GMKP5D = Mortal Kombat: Deadly Alliance GMLEA4 = ESPN MLS Extra Time 2002 GMNE78 = Monsters, Inc. Scream Arena GMNP78 = Monsters, Inc. Scream Arena GMOP70 = Micro Machines GMPE01 = Mario Party 4 GMPJ01 = Mario Party 4 GMPP01 = Mario Party 4 GMQE70 = Monopoly Party GMQP70 = Monopoly Party GMRE70 = Big Air Freestyle GMRP70 = Big Air Freestyle GMSE01 = Super Mario Sunshine GMSJ01 = Super Mario Sunshine GMSP01 = Super Mario Sunshine GMTE69 = Disney's Party GMTP69 = Disney's Party GMUE5D = Dr. Muto GMWD52 = Minority Report: Everybody Runs GMWE52 = Minority Report: Everybody Runs GMWF52 = Minority Report: Everybody Runs GMWP52 = Minority Report: Everybody Runs GMXE70 = Enter The Matrix GMXJB2 = Enter The Matrix GMXP70 = Enter The Matrix GMYJ8P = Gekitou Pro Yakyuu GMZE41 = Monster 4x4: Masters Of Metal GN2E70 = Nascar: Dirt To Daytona GN3E5D = NHL Hitz 2003 GN3P5D = NHL Hitz 2003 GN4E69 = Nascar 2005: Chase For The Cup GN5E69 = NHL 2005 GN5P69 = NHL 2005 GN6E69 = NHL 06 GN6P69 = NHL 06 GN7E69 = NFL Street 2 GN7P69 = NFL Street 2 GN8E69 = NBA Live 2004 GN8P69 = NBA Live 2004 GN9E70 = Nickelodeon Party Blast GNAE8P = NCAA College Football 2K3 GNBE01 = NBA Courtside 2002 GNBP01 = NBA Courtside 2002 GNCE69 = Nascar Thunder 2003 GNDD69 = Need For Speed Underground GNDE69 = Need For Speed Underground GNDF69 = Need For Speed Underground GNDP69 = Need For Speed Underground GNED78 = Finding Nemo GNEE78 = Finding Nemo GNEF78 = Finding Nemo GNEP78 = Finding Nemo GNES78 = Finding Nemo GNFE5D = NFL Blitz 2002 GNGE69 = NCAA Football 2003 GNHE5D = NHL Hitz 2002 GNHP5D = NHL Hitz 20-02 GNIEA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNIPA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNJEAF = I-Ninja GNKE8P = NCAA College Basketball 2K3 GNLE69 = NBA Live 2003 GNLP69 = NBA Live 2003 GNMEAF = Namco Museum GNNE69 = NFL Street GNNP69 = NFL Street GNOE78 = Nicktoons Unite! GNOX78 = Spongebob Squarepants & Friends: Unite! GNPP70 = Nickelodeon Party Blast GNQE69 = Madden NFL 2005 GNQP69 = Madden NFL 2005 GNREDA = Naruto Clash of Ninja GNRJDA = NARUTO Gekitô Ninja Taisen! GNSE69 = NBA Street GNSJ69 = NBA Street GNUEDA = Naruto Clash of Ninja 2 GNUJDA = Naruto: Gekitou Ninja Taisen! 2 GNUPDA = Naruto: Clash of Ninja - European Version GNVE69 = NHL 2004 GNVP69 = NHL 2004 GNWE69 = Def Jam: Fight For NY GNWP69 = Def Jam: Fight For NY GNXE69 = NCAA Football 2004 GNZE69 = NBA Street Vol.2 GNZP69 = NBA Street Vol.2 GO2D4F = Blood Omen 2: The Legacy of Kain Series GO2E4F = Blood Omen 2: The Legacy of Kain Series GO2F4F = Blood Omen 2: The Legacy of Kain Series GO2P4F = Blood Omen 2: The Legacy of Kain Series GO3E5D = NFL Blitz 2003 GO7D69 = James Bond 007: NightFire GO7E69 = 007: NightFire GO7F69 = James Bond 007: NightFire GO7P69 = James Bond 007: NightFire GO7S69 = James Bond 007: NightFire GOAE52 = Cabela's Outdoor Adventures GOBE4Z = Bad Boys: Miami Takedown GOBP7N = Bad Boys II GOCE5D = RoadKill GODJGA = Ohenro-San: Hosshin no Dojo GOFE7L = Outlaw Golf GOFP6S = Outlaw Golf GOGJB2 = One Piece: Grand Battle! 3 GOME01 = Mario Power Tennis GOMJ01 = Mario Tennis GC GOMP01 = Mario Power Tennis GOND69 = Medal of Honor: European Assault GONE69 = Medal of Honor: European Assault GONF69 = Medal of Honor: European Assault GONJ13 = Medal of Honor: Europa Kyoushuu GONP69 = Medal of Honor: European Assault GOOE01 = Odama GOOJ01 = Odama GOOP01 = Odama GOPEB2 = Shonen Jump's One Piece: Grand Battle GOPJB2 = One Piece: Grand Battle! Rush GOQE82 = One Piece: Grand Adventure GOQEAF = Shonen Jump's One Piece: Grand Adventure GOSE41 = Open Season GOSP41 = Open Season GOSX41 = Open Season GOUPNK = Cocoto Funfair GOWD69 = Need For Speed Most Wanted GOWE69 = Need For Speed Most Wanted GOWF69 = Need For Speed Most Wanted GOWJ69 = Need For Speed Most Wanted GOWP69 = Need For Speed Most Wanted GOYD69 = GoldenEye: Rogue Agent GOYE69 = GoldenEye: Rogue Agent GOYF69 = GoldenEye: Rogue Agent GOYP69 = GoldenEye: Rogue Agent GOYS69 = GoldenEye: Rogue Agent GP2EAF = Pac-Man World 2 GP2P69 = Pac-Man World 2 GP3E78 = The Polar Express GP3P78 = The Polar Express GP4J18 = Hudson Selection Vol. 3: Bonk's Adventure GP5E01 = Mario Party 5 GP5J01 = Mario Party 5 GP5P01 = Mario Party 5 GP6E01 = Mario Party 6 GP6J01 = Mario Party 6 GP6P01 = Mario Party 6 GP7E01 = Mario Party 7 GP7J01 = Mario Party 7 GP7P01 = Mario Party 7 GP8EAF = Pac-Man World 3 GP8P69 = Pac-Man World 3 GP8PAF = Pac-Man World 3 GP9E7F = Rogue Ops GP9P7F = Rogue Ops GPAE01 = Pokémon Channel GPAJ01 = Pokémon Channel GPAP01 = Pokémon Channel GPAU01 = Pokémon Channel GPDE51 = Dakar 2: The World's Ultimate Rally GPDP51 = Dakar 2: The World's Ultimate Rally GPEJ2Q = Pool Edge GPHD52 = Pitfall: The Lost Expedition GPHE52 = Pitfall: The Lost Expedition GPHF52 = Pitfall: The Lost Expedition GPHP52 = Pitfall: The Lost Expedition GPIE01 = Pikmin GPIJ01 = Pikmin GPIP01 = Pikmin GPJJCM = Jikkyou Powerful Pro Yakyuu 10 GPKE41 = Disney's PK Out of the Shadows GPLD9G = Piglet's Big Game GPLE9G = Piglet's Big Game GPLF9G = Piglet's Big Game GPLP9G = Piglet's Big Game GPMEAF = Pac Man Fever GPNE08 = P.N.03 GPNJ08 = P.N.03 GPNP08 = P.N.03 GPOE8P = Phantasy Star Online Episode I & II GPOJ8P = Phantasy Star Online Episode I & II GPOP8P = Phantasy Star Online Episode I&II GPPJCM = Jikkyou Powerful Pro Yakyuu 9 GPQE6L = The Powerpuff Girls: Relish Rampage GPQP6L = The Powerpuff Girls: Relish Rampage GPRE7U = Pool Paradise GPRP7U = Pool Paradise GPSE8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPSJ8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPSP8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPTE41 = Prince of Persia: The Sands of Time GPTP41 = Prince of Persia: The Sands of Time GPUE8P = Puyo Pop Fever GPUP6W = Puyo Pop Fever GPUP8P = Puyo Pop Fever GPVE01 = Pikmin 2 GPVJ01 = Pikmin 2 GPVP01 = Pikmin 2 GPWEAF = Spawn: Armageddon GPWP69 = Spawn: Armageddon GPWPAF = Spawn: Armageddon GPXE01 = Pokémon Box: Ruby & Sapphire GPXJ01 = Pokémon Box: Ruby & Sapphire GPXP01 = Pokémon Box: Ruby & Sapphire GPYJ8P = Puyo Pop Fever GPZJ01 = Nintendo Puzzle Collection GQ4E78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ4F78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ4P78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ8E69 = Madden NFL 08 GQBE51 = NFL Quarterback Club 2002 GQCD52 = Call of Duty 2: Big Red One GQCE52 = Call of Duty 2: Big Red One GQCF52 = Call of Duty 2: Big Red One GQCP52 = Call of Duty 2: Big Red One GQCS52 = Call of Duty 2: Big Red One GQFFFK = Franklin: A Birthday Surprise GQLE9G = Dora The Explorer: Journey To The Purple Planet GQLP54 = Dora The Explorer: Journey to the Purple Planet GQNE5D = Mortal Kombat: Deception GQPE78 = SpongeBob SquarePants: Battle for Bikini Bottom GQPP78 = SpongeBob Squarepants: Battle For Bikini Bottom GQQD78 = SpongeBob SquarePants: Lights, Camera, PANTS! GQQE78 = SpongeBob SquarePants: Lights, Camera, Pants! GQQF78 = SpongeBob SquarePants: Lights, Camera, PANTS! GQQH78 = SpongeBob SquarePants: Lights, Camera, Pants! GQQP78 = SpongeBob SquarePants: Lights, Camera, Pants! GQRJ18 = Hudson Selection Vol. 1: Cubic Lode Runner GQSDAF = Tales of Symphonia GQSEAF = Tales of Symphonia GQSFAF = Tales of Symphonia GQSIAF = Tales of Symphonia GQSPAF = Tales of Symphonia GQSSAF = Tales of Symphonia GQTE4Q = Meet the Robinsons GQWE69 = Harry Potter: Quidditch World Cup GQWJ69 = Harry Potter World Cup GQWP69 = Harry Potter: Quidditch World Cup GQWX69 = Harry Potter: Quidditch World Cup GQXE69 = Madden NFL 2004 GQXP69 = Madden NFL 2004 GQZJ01 = Densetsu no Quiz Ou Ketteisen GR2E52 = Lost Kingdoms 2 GR2JCQ = Rune II: Koruten no Kagi no Himitsu GR2P52 = Lost Kingdoms 2 GR3E5D = Red Card 2003 GR4EMZ = MC Groovz Dance Craze GR4PMZ = MC Groovz Dance Craze GR5J1K = Robocop: Aratanaru Kiki GR6D78 = Bratz: Rock Angelz GR6E78 = Bratz: Rock Angelz GR6F78 = Bratz: Rock Angelz GR6P78 = Bratz: Rock Angelz GR8D69 = Medal of Honor: Rising Sun GR8E69 = Medal of Honor: Rising Sun GR8F69 = Medal of Honor: Rising Sun GR8J69 = Medal of Honor: Rising Sun GR8P69 = Medal of Honor: Rising Sun GR9E6L = Reign of Fire GR9P6L = Reign of Fire GRAE5Z = Rally Championship GRAP75 = Rally Championship GRBE6S = Robotech: Battlecry GRBP6S = Robotech : Battlecry GRDP5D = RedCard GREE08 = Mega Man Network Transmission GREJ08 = RockMan EXE Transmission GREP08 = Mega Man Network Transmission GRFD78 = Red Faction II GRFE78 = Red Faction II GRFF78 = Red Faction II GRFP78 = Red Faction II GRHE41 = Rayman 3: Hoodlum Havoc GRHP41 = Rayman 3: Hoodlum Havoc GRJEAF = R: Racing Evolution GRJJAF = R:Racing Evolution: Life in the Fast Lane GRJP69 = R: Racing GRKE41 = Rocky GRKP7G = Rocky GRLE41 = Pro Rally GRLP41 = Pro Rally GRMJDA = Monopoly: Mezase!! Daifugou Jinsei!! GRNE52 = Lost Kingdoms GRNJCQ = Rune GRNP52 = Lost Kingdoms GROE5Z = Road Trip: The Arcade Edition GROP7J = Gadget Racers GRQE41 = City Racer GRRE78 = Rugrats: Royal Ransom GRRP78 = Rugrats: Royal Ransom GRSEAF = SoulCalibur II GRSJAF = SoulCalibur II GRSPAF = SoulCalibur II GRUE78 = Power Rangers Dino Thunder GRUF78 = Power Rangers Dino Thunder GRUP78 = Power Rangers Dino Thunder GRVEA4 = Rave Master GRWJD9 = Super Robot Taisen GC GRYE41 = Rayman Arena GS2D78 = Summoner: A Goddess Reborn GS2E78 = Summoner: A Goddess Reborn GS2F78 = Summoner: A Goddess Reborn GS2P78 = Summoner: A Goddess Reborn GS3E51 = SX Superstar GS3P51 = SX Superstar GS7E5D = MLB SlugFest 2004 GS8E7D = Spyro: Enter the Dragonfly GS8P7D = Spyro: Enter the Dragonfly GS9E6S = Shrek Extra Large GS9P6S = Shrek Extra Large GSAE01 = Star Fox Adventures GSAJ01 = StarFox Adventures GSAP01 = Star Fox Adventures GSBJ8P = Sonic Adventure 2: Battle GSCE51 = Jeremy McGrath SuperCross World GSCP51 = Jeremy McGrath SuperCross World GSDEAF = Smashing Drive GSEJB2 = Shaman King: Soul Fight GSGE5D = MLB SlugFest 2003 GSHE5D = SpyHunter GSHP5D = SpyHunter GSKE7D = The Scorpion King: Rise of the Akkadian GSKP7D = The Scorpion King : Rise of the Akkadian GSMD52 = Spider-Man GSME52 = Spider-Man: The Movie GSMF52 = Spider-Man GSMP52 = Spider-Man GSNE8P = Sonic Adventure 2: Battle GSNP8P = Sonic Adventure 2: Battle GSOE8P = Sonic Mega Collection GSOJ8P = Sonic Mega Collection GSOP8P = Sonic Mega Collection GSPE69 = The Simpsons: Road Rage GSPP69 = The Simpsons: Road Rage GSQE78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSQP78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSRE7S = Smuggler's Run: Warzones GSRP7S = Smuggler's Run: Warzones GSSE8P = Sega Soccer Slam GSSJ8P = Sega Soccer Slam GSSP70 = Sega Soccer Slam GSSP8P = Sega Soccer Slam GSTE69 = SSX Tricky GSTJ69 = SSX Tricky GSTP69 = SSX Tricky GSUE70 = Superman: Shadow of Apokolips GSUP70 = Superman: Shadow of Apokolips GSVE78 = MX Superfly Featuring Ricky Carmichael GSVP78 = MX Superfly featuring Ricky Carmichael GSWD64 = Star Wars Rogue Leader: Rogue Squadron II GSWE64 = Star Wars Rogue Squadron II: Rogue Leader GSWF64 = Star Wars Rogue Leader: Rogue Squadron II GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = Star Wars Rogue Leader: Rogue Squadron II GSWP64 = Star Wars Rogue Leader: Rogue Squadron II GSWS64 = Star Wars Rogue Leader: Rogue Squadron II GSXD64 = Star Wars: The Clone Wars GSXE64 = Star Wars: The Clone Wars GSXF64 = Star Wars: The Clone Wars GSXJ13 = Star Wars: Clone Sensou GSXP64 = Star Wars: The Clone Wars GSXS64 = Star Wars: The Clone Wars GSYE6S = Shrek: Super Party GSYP6S = Shrek: Super Party GSZP41 = Speed Challenge: Jacques Villeneuve Racing Vision GT2J18 = Tengai Makyou 2: Manji Maru GT3D52 = Tony Hawk's Pro Skater 3 GT3E52 = Tony Hawk's Pro Skater 3 GT3F52 = Tony Hawk's Pro Skater 3 GT3J52 = Tony Hawk's Pro Skater 3 GT3P52 = Tony Hawk's Pro Skater 3 GT4D52 = Tony Hawk's Pro Skater 4 GT4E52 = Tony Hawk's Pro Skater 4 GT4F52 = Tony Hawk's Pro Skater 4 GT4P52 = Tony Hawk's Pro Skater 4 GT5E7N = Starsky & Hutch GT5P7N = Starsky & Hutch GT6E70 = Terminator 3: The Redemption GT6J70 = Terminator 3: The Redemption GT6P70 = Terminator 3: The Redemption GT7E41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7P41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7X41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT8E78 = Big Mutha Truckers GT8P78 = Big Mutha Truckers GT8P7N = Big Mutha Truckers GTAE5S = Top Angler : Real Bass Fishing GTAP5S = Top Angler: Real Bass Fishing GTCJBL = GT Cube GTDE52 = Tony Hawk's Underground GTDP52 = Tony Hawk's Underground GTEE01 = 1080° Avalanche GTEJ01 = 1080° Silver Storm GTEP01 = 1080° Avalanche GTFEA4 = Teenage Mutant Ninja Turtles GTFPA4 = Teenage Mutant Ninja Turtles GTGE60 = Top Gun: Combat Zones GTGP60 = Top Gun: Combat Zones GTHJD9 = Charinko Hero GTIE69 = Tiger Woods PGA Tour 2003 GTIP69 = Tiger Woods PGA Tour 2003 GTJE5L = Tom & Jerry in War of the Whiskers GTKD51 = Turok Evolution GTKE51 = Turok Evolution GTKP51 = Turok Evolution GTLE52 = True Crime: Streets of LA GTLP52 = True Crime: Streets of LA GTLX52 = True Crime: Streets of LA GTMJDA = Mutsu To Nohohon GTNJ18 = Hudson Selection Vol. 4: Adventure Island GTOJAF = Tales of Symphonia GTPP6S = Knights Of The Temple : Infernal Crusade GTQE6S = Tonka: Rescue Patrol GTRE78 = Tetris Worlds GTRP78 = Tetris Worlds GTSE4F = TimeSplitters 2 GTSP4F = TimeSplitters 2 GTUE8G = Tube Slider - The Championship of Future Formula GTVE70 = Transworld Surf: Next Wave GTWE70 = Taz Wanted GTWP70 = Taz Wanted GTYE69 = Ty the Tasmanian Tiger GTYP69 = Ty: The Tasmanian Tiger GTZE41 = Tarzan Untamed GTZP41 = Tarzan Freeride GU2D78 = 2 Games in 1: The Incredibles / Finding Nemo GU2F78 = 2 Games in 1: The Incredibles / Finding Nemo GU3D78 = 2 Games in 1: The SpongeBob SquarePants Movie / Tak 2: The Staff of Dreams GU4Y78 = 2 Games in 1: The SpongeBob SquarePants Movie / Battle for Bikini Bottom GU6E78 = Nicktoons - Battle for Volcano Island GUBE69 = The Urbz: Sims in the City GUBJ13 = The Urbz: Sims In The City GUBP69 = The Urbz: Sims In The City GUCD69 = UEFA Champions League 2004-2005 GUCF69 = UEFA Champions League 2004-2005 GUCP69 = UEFA Champions League 2004-2005 GUFE4Z = Ultimate Fighting Championship Throwdown GUFP4Z = UFC: Throwdown GUGD69 = Need For Speed Underground 2 GUGE69 = Need For Speed Underground 2 GUGF69 = Need For Speed Underground 2 GUGP69 = Need For Speed Underground 2 GUMD52 = Gun GUME52 = Gun GUMP52 = Gun GUNE5D = Gauntlet: Dark Legacy GUNP5D = Gauntlet: Dark Legacy GUPE8P = Shadow the Hedgehog GUPJ8P = Shadow the Hedgehog GUPP8P = Shadow the Hedgehog GUSE7F = Universal Studios Theme Park Adventure GUSP7F = Universal Studios Theme Park Adventure GUTD52 = Ultimate Spider-Man GUTE52 = Ultimate Spider-Man GUTF52 = Ultimate Spider-Man GUTI52 = Ultimate Spider-Man GUTJC0 = Ultimate Spider-Man GUTP52 = Ultimate Spider-Man GUTS52 = Ultimate Spider-Man GUVE51 = Freestyle Street Soccer GUVP51 = Urban Freestyle Soccer GUZE41 = Batman: Rise of Sin Tzu GUZP41 = Batman Rise of Sin Tzu GV3J70 = V-Rally 3 GV3P70 = V-Rally 3 GV4E69 = MVP Baseball 2005 GVCE08 = Viewtiful Joe: Red Hot Rumble GVCJ08 = Viewtiful Joe: Battle Carnival GVCP08 = Viewtiful Joe: Red Hot Rumble GVDE78 = Bratz Forever Diamondz GVDP78 = Bratz Forever Diamondz GVHE4F = Bionicle Heroes GVJE08 = Viewtiful Joe GVJJ08 = Viewtiful Joe GVJP08 = Viewtiful Joe GVKE52 = Cabela's Dangerous Hunts 2 GVLD69 = Marvel Nemesis: Rise of the Imperfects GVLE69 = Marvel Nemesis: Rise of the Imperfects GVLF69 = Marvel Nemesis: Rise of the Imperfects GVLP69 = Marvel Nemesis: Rise of the Imperfects GVMP41 = Super Bust-A-Move All Stars GVOE69 = Bionicle GVOP69 = Bionicle GVPE69 = MVP Baseball 2004 GVRE7H = Grooverider Slot Car Thunder GVS46E = Virtua Striker 4 Ver.2006 GVS46J = Virtua Striker 4 Ver.2006 GVSE8P = Virtua Striker 2002 GVSJ8P = VIRTUA STRIKER 3 ver.2002 GVSJ9P = Virtua Striker 4 Ver.2006 GVSP8P = Virtua Striker 3 Ver. 2002 GVWJDQ = Gakuen Toshi Vara Noir Roses GW2E78 = WWE Day of Reckoning 2 GW2P78 = WWE Day of Reckoning 2 GW3E78 = WWE WrestleMania X8 GW3JG2 = WWE WrestleMania X8 GW3P78 = WWE Wrestlemania X8 GW4E69 = Tiger Woods PGA Tour 2004 GW4P69 = Tiger Woods PGA Tour 2004 GW5D69 = Need For Speed Carbon GW5E69 = Need For Speed Carbon GW5F69 = Need For Speed Carbon GW5P69 = Need For Speed Carbon GW6JEM = Winning Eleven 6 Final Evolution GW7D69 = James Bond 007 in Agent Under Fire GW7E69 = 007: Agent Under Fire GW7F69 = James Bond 007 in Agent Under Fire GW7P69 = James Bond 007 in Agent Under Fire GW8E52 = World Series of Poker GW9E78 = WWE WrestleMania XIX GW9JG2 = WWE WrestleMania XIX GW9P78 = WWE WrestleMania XIX GWAD8P = Spartan Total Warrior GWAE8P = Spartan Total Warrior GWAF8P = Spartan Total Warrior GWAP8P = Spartan Total Warrior GWBE41 = Worms Blast GWBP41 = Worms Blast GWDP6S = World Racing GWEE51 = 18 Wheeler: American Pro Trucker GWEP8P = 18 Wheeler American Pro Trucker GWGE4F = Swingerz Golf GWGJ4F = Wai Wai Golf GWGP4F = Ace Golf GWHE41 = Winnie The Pooh Rumbly Tumbly Adventures GWHP41 = Winnie the Pooh's Rumbly Tumbly Adventure GWJE52 = Tony Hawk's American Wasteland GWKE41 = Peter Jackson's King Kong: The Official Game of the Movie GWKP41 = Peter Jackson's King Kong: The Official Game of the Movie GWLE6L = Wallace & Gromit in Project Zoo GWLP6L = Wallace & Gromit : Project Zoo GWLX6L = Wallace & Gromit in Project Zoo GWME51 = Worms 3D GWMP8P = Worms 3D GWOE5G = Blowout GWPE78 = WWE Day of Reckoning GWPJG2 = WWE Day of Reckoning GWPP78 = WWE Day of Reckoning GWQE52 = Wreckless: The Yakuza Missions GWQP52 = Wreckless: The Yakuza Missions GWRE01 = Wave Race: Blue Storm GWRJ01 = Wave Race: Blue Storm GWRP01 = Wave Race: Blue Storm GWSEA4 = ESPN International Winter Sports 2002 GWSJA4 = Hyper Sports 2002 Winter GWSPA4 = ESPN International Winter Sports GWTEA4 = WTA Tour Tennis GWTJA4 = WTA Tour Tennis GWTPA4 = Pro Tennis WTA Tour GWUE7D = Whirl Tour GWUP7D = Whirl Tour GWVE52 = X2: Wolverine's Revenge GWVP52 = X-Men 2: Wolverine's Revenge GWVX52 = X-Men 2 : Wolverine's Revenge GWWE01 = Wario World GWWJ01 = Wario World GWWP01 = Wario World GWYE41 = Tom Clancy's Splinter Cell: Double Agent GWYX41 = Tom Clancy's Splinter Cell: Double Agent GWZE01 = Dance Dance Revolution: Mario Mix GWZJ01 = Dance Dance Revolution: Mario Mix GWZP01 = Dancing Stage Mario Mix GX2D52 = X-Men Legends II: Rise of Apocalypse GX2E52 = X-Men Legends II: Rise of Apocalypse GX2P52 = X-Men Legends II: Rise of Apocalypse GX2S52 = X-Men Legends II: Rise of Apocalypse GX3E41 = XIII GX3P41 = XIII GX3X41 = XIII GXAE51 = XGRA Extreme G Racing Association GXAP51 = XGRA Extreme G Racing Association GXBE69 = SSX 3 GXBP69 = SSX 3 GXCE01 = Custom Robo GXEE8P = Sonic Riders GXEJ8P = Sonic Riders GXEP8P = Sonic Riders GXFD69 = FIFA Football 2004 GXFE69 = FIFA Soccer 2004 GXFF69 = FIFA Football 2004 GXFI69 = FIFA Football 2004 GXFP69 = FIFA Football 2004 GXFS69 = FIFA Football 2004 GXGE08 = Mega Man X Collection GXLE52 = X-Men Legends GXLP52 = X-Men Legends GXLX52 = X-Men Legends GXME52 = X-Men: Next Dimension GXMF52 = X-Men: Next Dimension GXMP52 = X-Men: Next Dimension GXNE5D = Rampage Total Destruction GXOE69 = SSX on Tour GXOJ69 = SSX On Tour with Mario GXOP69 = SSX On Tour GXOX69 = SSX On Tour GXPE78 = Sphinx and the Cursed Mummy GXPP78 = Sphinx and the Cursed Mummy GXQF41 = Taxi 3 GXRE08 = Mega Man X: Command Mission GXRJ08 = Rockman X: Command Mission GXRP08 = Mega Man X: Command Mission GXSE8P = Sonic Adventure DX: Director's Cut GXSP6W = Sonic Adventure DX : Director's Cut GXSP8P = Sonic Adventure DX: Director's Cut GXUE41 = Surf's Up GXXE01 = Pokémon XD: Gale of Darkness GXXJ01 = Pokemon XD: Yami no Kaze Dark Lugia GXXP01 = Pokémon XD: Gale of Darkness GY2E01 = Donkey Konga 2 GY2J01 = Donkey Konga 2 GY2P01 = Donkey Konga 2 GY3J01 = Donkey Konga 3 GYAD78 = Barnyard GYAE78 = Barnyard GYAP78 = Barnyard GYAX78 = Barnyard GYBE01 = Donkey Kong Jungle Beat GYBJ01 = Donkey Kong Jungle Beat GYBP01 = Donkey Kong Jungle Beat GYFEA4 = Yu-Gi-Oh! The Falsebound Kingdom GYFJA4 = Yu-Gi-Oh! The Falsebound Kingdom GYFPA4 = Yu-Gi-Oh! The Falsebound Kingdom GYKEB2 = Zatch Bell! Mamodo Battles GYMJA4 = Jikkyou Powerful Major League GYQE01 = Mario Superstar Baseball GYQJ01 = Super Mario Stadium Miracle Baseball GYQP01 = Mario Superstar Baseball GYRE41 = TMNT GYRP41 = TMNT GYTE69 = Ty The Tasmanian Tiger 2: Bush Rescue GYTP69 = Ty The Tasmanian Tiger 2: Bush Rescue GYWDE9 = Harvest Moon: A Wonderful Life GYWEE9 = Harvest Moon: A Wonderful Life GYWJ99 = Bokujou Monogatari: Wonderful Life GYWP41 = Harvest Moon: A Wonderful Life GYWPE9 = Harvest Moon: A Wonderful Life GZ2E01 = The Legend of Zelda: Twilight Princess GZ2J01 = Zelda no Densetsu: Twilight Princess GZ2P01 = The Legend of Zelda: Twilight Princess GZ3E70 = Dragon Ball Z: Budokai 2 GZ3P70 = Dragon Ball Z: Budokai 2 GZ3PB2 = Dragon Ball Z Budokai 2 GZCE51 = ZooCube GZCJB0 = ZooCube GZCP51 = Zoocube GZDE70 = Godzilla: Destroy all Monsters Melee GZDJ70 = Godzilla: Kaijuu Dairantou GZDP70 = Godzilla: Destroy all Monsters Melee GZEE70 = Dragon Ball Z: Sagas GZFJBP = Gekituisenki - Zero Fighter GZHJDA = Zoids Full Metal Crash GZLE01 = The Legend of Zelda: The Wind Waker GZLJ01 = Zelda no Densetsu: Kaze no Takuto GZLP01 = The Legend of Zelda: The Wind Waker GZMP7D = Butt-Ugly Martians Zoom or Doom GZOJDA = Zoids vs. GZPE70 = Zapper - One Wicked Cricket! GZPP70 = Zapper: One Wicked Cricket! GZQE7D = Robots GZQJ7D = Robots GZQP7D = Robots GZSE70 = Zoids Battle Legends GZSJDA = Zoids VS. II GZVJDA = Zoids vs. III GZWE01 = Wario Ware Inc.: Mega Party Game$! GZWJ01 = Atumare!! made in wario GZWP01 = Wario Ware Inc.: Mega Party Game$! HAAA = Canal Photo HABA = Wii Shop Channel HABK = Wii Shop Channel HACA = Mii Channel HACK = Mii Channel HADE = Internet Channel HADJ = Internet Channel HADP = Internet Channel HAFE = Forecast Channel HAFJ = Weather Channel HAFP = Weather Channel HAGE = News Channel HAGJ = News Channel HAGP = News Channel HAJE = Everybody Votes Channel HAJJ = Everybody Votes Channel HAJP = Everybody Votes Channel HAPE = Check Mii Out Channel HAPJ = Mii Contest Channel HAPP = Check Mii Out Channel HATE = Nintendo Channel HATJ = Nintendo Channel HATP = Nintendo Channel HAVJ = Today and Tomorrow Fortune Teller HAVK = Today And Tomorrow Channel HAVP = Today and Tomorrow Channel HAWE = Metroid Prime 3 Preview HAWJ = Metroid Prime 3 Preview HAWP = Metroid Prime 3 Preview HAYA = Canal Photo HAYK = Photo Channel HBNJ = TV Friend Channel HBWE01 = New Super Mario Bros. Wii: Hellboy Edition HC3J = USB Flash Optimization HCAJ = Band Bros. DX Speaker Channel HCAP = Jam with the Band Live HCBJ = Photo Channel 1.0 Restore Program HCDJ = Digicam Print Channel HCFE = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Wii Speak Channel HCGE = Wii + Internet HCGJ = Wii Plus Internet HCGP = Wii Plus Internet HCHJ = Food Service HCIJ = Wii no ma HCJP = BBC iPlayer Channel HCLE = Netflix HCLP = Netflix HCMP = Kirby TV HCQE = Hulu Plus HCQJ = Hulu HCRE = The Legend of Zelda: Skyward Sword Save Data Update Channel HCRJ = The Legend of Zelda Skyward Sword Update HCRP = The Legend of Zelda Skyward Sword Update HCSE = Wii U Transfer Tool HCSJ = Wii U Transfer Tool HCSP = Wii U Transfer Tool HCTE = Wii System Transfer HCTJ = Wii System Transfer HCTP = Wii System Transfer HCUE = Wii Menu Electronic Manual HCUJ = Wii Menu Electronic Manual HCUP = Wii Menu Electronic Manual HCVA = Wii U Menu HCWE = Amazon Instant Video HCWP = Amazon Instant Video HCXE = YouTube HCXJ = YouTube HCXP = YouTube HCZE = Wii System Transfer HWFL = HackWiiFlow JA2J = Shin Megami Tensei JA3J = Kamaitachi no Yoru JA4E = Super Ghouls 'n Ghosts JA4J = Chou-Makai-Mura JA4P = Super Ghouls'n Ghosts JA5J = Heracles no Eikou III: Kamigami no Chinmoku JA6E = Zombies Ate My Neighbors JA6J = Zombies Ate My Neighbors JA6P = Zombies JA7D = ActRaiser JA7E = ActRaiser JA7F = ActRaiser JA7J = Actraiser JA7P = ActRaiser JA8E = Final Fight JA8J = Final Fight JA8P = Final Fight JAAE = Super Mario World JAAJ = Super Mario World JAAK = Super Mario World JAAP = Super Mario World JABJ = Mario no Super Picross JABL = Mario’s Super Picross JACE = F-Zero JACJ = F-Zero JACK = F-Zero JACP = F-Zero JADD = The Legend of Zelda: A Link to the Past JADE = The Legend of Zelda: A Link to the Past JADF = The Legend of Zelda: A Link to the Past JADJ = Zelda no Densetsu: Kamigami no Triforce JADK = The Legend of Zelda: A Link to the Past JADP = The Legend of Zelda: A Link to the Past JAEE = Donkey Kong Country JAEJ = Super Donkey Kong JAEK = Donkey Kong Country JAEP = Donkey Kong Country JAFD = SimCity JAFE = Sim City JAFF = SimCity JAFJ = SimCity JAFP = SimCity JAGJ = Fire Emblem: Monshou no Nazo JAHE = R-Type III: The 3rd Lightning JAHJ = R-Type III: The Third Lightning JAHK = R-Type III: The Third Lightning JAHP = R-TYPE III : The Third Lightning JAIE = Super Castlevania IV JAIJ = Akumajou Dracula JAIP = Super Castlevania IV JAJE = Street Fighter II: The World Warrior JAJJ = Street Fighter II JAJP = Street Fighter II: The World Warrior JALE = Contra III: The Alien Wars JALJ = Contra Spirits JALK = Contra III: The Alien Wars JALP = Super Probotector: Alien Rebels JAME = Gradius III JAMJ = Gradius III JAMK = Gradius III JAMM = Gradius III JAPJ = Fire Emblem: Seisen no Keifu JAUJ = Famicom Bunko: Hajimari no Mori JAVE = Super Metroid JAVJ = Super Metroid JAVK = Super Metroid JAVP = Super Metroid JAWE = Romance of the Three Kingdoms IV: Wall of Fire JAWJ = San Goku Shi IV JAZD = The Legend of the Mystical Ninja JAZE = The Legend of The Mystical Ninja JAZJ = Ganbare Goemon: Yukihime Kyuushutsu Emaki JAZP = The Legend of the Mystical Ninja JB3D = Harvest Moon JB3E = Harvest Moon JB3J = Harvest Moon JB3P = Harvest Moon JB5J = Super Gussun Oyoyo JB6J = Treasure Hunter G JB7J = Front Mission: Gun Hazard JB9J = Gakkou de atta Kowai Hanashi JBAE = Metal Marines JBAJ = Militia JBBE = Super Street Fighter II: The New Challengers JBBJ = Super Street Fighter II: The New Challengers JBBP = Super Street Fighter II: The New Challengers JBCE = Kirby's Dream Course JBCJ = Kirby Bowl JBCK = Kirby's Dream Course JBCP = Kirby's Dream Course JBDD = Donkey Kong Country 2: Diddy's Kong-Quest JBDE = Donkey Kong Country 2: Diddy's Kong Quest JBDJ = Super Donkey Kong 2: Dixie & Diddy JBDK = Donkey Kong Country 2: Diddy Kong's Quest JBDP = Donkey Kong Country 2: Diddy's Kong-Quest JBEJ = Magical Drop JBFJ = Otogirisou JBGJ = Mystery Dungeon: Shiren the Wanderer JBHJ = Heracles no Eikou IV: Kamigami-kara no Okurimono JBIE = Street Fighter II Turbo: Hyper Fighting JBIJ = Street Fighter II Turbo: Hyper Fighting JBIP = Street Fighter II Turbo: Hyper Fighting JBKE = Breath of Fire II JBKJ = Breath of Fire II: Shimei no Ko JBKP = Breath of Fire II JBLE = Pac-Attack JBLJ = Cosmo Gang the Puzzle JBLP = Pac-Attack JBNE = Darius Twin JBNJ = Darius Twin JBOJ = Panel de Pon JBOK = Panel de Pon JBPE = Donkey Kong Country 3: Dixie Kong's Double Trouble JBPJ = Super Donkey Kong 3: Nazo no Krems Shima JBPP = Donkey Kong Country 3: Dixie Kong’s Double Trouble JBQE = Kirby's Avalanche JBQJ = Kirby's Avalanche JBQP = Kirby's Ghost Trap JBRE = Vegas Stakes JBRJ = Vegas Stakes JBRP = Vegas Stakes JBSE = Axelay JBSJ = Axelay JBSP = Axelay JBTE = Super Turrican JBTJ = Super Turrican JBTP = Super Turrican JBUE = Super Turrican 2 JBUJ = Super Turrican Two JBVJ = Der Langrisser JBWE = Cybernator JBWJ = Assault Suits Valken JBWK = Cybernator JBWP = Cybernator JBYE = Super R-Type JBYJ = Super R-Type JBYK = Super R-Type JBYP = Super R-Type JC2J = Taikou Risshiden JC3J = Bahamut Lagoon JC4E = Indiana Jones' Greatest Adventures JC4J = Indiana Jones Great Adventure JC4P = Indiana Jones' Greatest Adventures JC5J = Romancing SaGa JC6J = Romancing SaGa 2 JC7E = The Combatribes JC7J = The Combatribes JC8E = Final Fantasy II JC8J = Final Fantasy IV JC8M = Final Fantasy II JC8P = Final Fantasy 2 JC9J = Final Fantasy V JCAJ = DoReMi Fantasy: Milon no DokiDoki Daibouken JCAL = DoReMi Fantasy - Milon’s DokiDoki Adventure JCAN = DoReMi Fantasy: Milon's DokiDoki Adventure JCBE = Super Mario RPG: Legend of the Seven Stars JCBJ = Super Mario RPG JCBM = Super Mario RPG: Legend of the Seven Stars JCCE = Kirby Super Star JCCJ = Hoshi no Kirby Super Deluxe JCCP = Kirby’s Fun Pak JCDE = Kirby's Dream Land 3 JCDJ = Hoshi no Kirby 3 JCDM = Kirby’s Dream Land 3 JCEJ = Fire Emblem: Thracia 776 JCGJ = Ganbare Goemon 2: Kiteretsu Shougun Magginesu JCHJ = Ganbare Goemon 3 JCIJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo JCJE = Super Punch-Out!! JCJJ = Super Punch-Out!! JCJP = Super Punch Out!! JCKE = Space Invaders: The Original Game JCKJ = Space Invaders: The Original Game JCKP = Space Invaders -The Original Game JCLD = Secret of Mana JCLE = Secret of Mana JCLF = Secret of Mana JCLJ = Seiken Densetsu 2 JCLP = Secret of Mana JCMJ = Super Wagyan Land JCNE = Prince of Persia JCNJ = Prince of Persia JCTE = Ogre Battle: The March of the Black Queen JCTJ = Densetsu no Ogre Battle: The March of the Black Queen JCTM = Ogre Battle: The March of the Black Queen JCUE = PilotWings JCUJ = Tactics Ogre: Let Us Cling Together JCVE = Pilotwings JCVJ = Pilotwings JCVP = Pilotwings JCWE = Super Mario Kart JCWJ = Super Mario Kart JCWP = Super Mario Kart JCXE = Nobunaga's Ambition JCXJ = Super Nobunaga no Yabou: Zengokuban JCYE = Uncharted Waters: New Horizons JCYJ = Daikoukai Jidai II JCZE = Genghis Khan II: Clan of the Gray Wolf JCZJ = Super Aoki Ookami to Shiroki Meshika: Genchou Hishi JD2J = Bishoujo Janshi Suchie-Pai JD3E = Super E.D.F. Earth Defense Force JD3J = Super E.D.F. Earth Defense Force JD3P = Super EDF Earth Defense Force JD4E = Rival Turf! JD4J = Rushing Beat JD4P = Rival Turf! JD5E = Brawl Brothers JD5J = Rushing Beat Ran: Fukusei Toshi JD5P = Brawl Brothers JD6E = The Ignition Factor JD6J = Fire Fighting JD6M = The Ignition Factor JD7E = Super Adventure Island JD7J = Takahashi Meijin no Daibouken Jima JD7P = Super Adventure Island JD8E = Super Adventure Island II JD8J = Takahashi Meijin no Daibouken Jima II JD8P = Super Adventure Island II JD9E = Super Bonk JD9J = Chou-Genjin JD9M = Super Bonk JDAE = Final Fantasy III JDAJ = Final Fantasy VI JDAP = Final Fantasy III JDBE = Super Bomberman 3 JDCE = Street Fighter Alpha 2 JDCJ = Street Fighter Two Alpha JDCP = Street Fighter Alpha 2 JDDE = Final Fight 2 JDDJ = Final Fight Two JDDP = Final Fight 2 JDEE = Final Fight 3 JDEJ = Final Fight Tough JDEP = Final Fight 3 JDFJ = Sutte Hakkun JDHJ = Super Famicom Wars JDIE = Super Star Wars JDIJ = Super Star Wars JDIP = Super Star Wars JDJE = Super Star Wars: The Empire Strikes Back JDJJ = Super Star Wars The Empire Strikes Back JDJP = Super Star Wars: The Empire Strikes Back JDKJ = Metal Max 2 JDLE = Super Star Wars: Return of the Jedi JDLJ = Super Star Wars Return Of The Jedi JDLP = Super Star Wars: Return of the Jedi JDMJ = Kirby no Kirakira Kizzu JDNE = Ghoul Patrol JDNJ = Ghoul Patrol JDOJ = Heisei Shin Onigashima: Zenpen JDPJ = Heisei Shin Onigashima: Kouhen JDQJ = Romancing Sa-Ga 3 JDRJ = Clock Tower JDSJ = Shin Megami Tensei II JDTJ = Shin Megami Tensei if... JDUJ = Albert Odyssey JDVE = Wild Guns JDVJ = Wild Guns JDVP = Wild Guns JDWE = Aero the Acrobat JDWJ = Aero The Acrobat JDWP = Aero The Acrobat JDXE = Aero the Acrobat 2 JDXJ = Aero The Acrobat Two JDXP = Aero the Acrobat 2 JDYJ = Rudra no Hihou JDZE = Final Fantasy Mystic Quest JDZJ = Final Fantasy USA: Mystic Quest JEAE = Natsume Championship Wrestling JEAJ = Natsume Championship Wrestling JEAP = Natsume Championship Wrestling JEBE = Mega Man X JEBJ = RockMan X JECE = Chrono Trigger JECJ = Chrono Trigger JECM = Chrono Trigger JECP = Chrono Trigger JEDJ = Kunio-Kun no Dodge Ball Dayo Zenin Shuugo! JEEJ = Majin Tensei JEFJ = Majin Tensei II: Spiral Nemesis JEGJ = Gouketuji Ichizoku JEHE = Mega Man X2 JEHJ = RockMan X2 JEIJ = Metal Max Returns JEJJ = Tsukikomori JEKJ = Kyuyaku Megami Tensei: Megami Tensei I・II JODI = Homebrew Channel JOUE01 = New Super Mario Bros. Wii 10 The Journey KMCP06 = Wiimms MKW Fun 2010-12.pal+ KMKE01 = Kustom Mario Kart Wii KMNE03 = Newer Super Mario Bros. Wii KMNE10 = Koopa Country KMNJ03 = Newer Super Mario Bros. Wii KMNP03 = Newer Super Mario Bros. Wii KMNP10 = Koopa Country L40P4Q = Sing IT: Pop hits, los 40 principales LAAJ = Hokuto no Ken LABE = Fantasy Zone LABJ = Fantasy Zone LABP = Fantasy Zone LACE = Wonder Boy LACJ = Super Wonder Boy LACP = Wonder Boy LADE = Phantasy Star LADJ = Phantasy Star LADP = Phantasy Star LAEE = Alex Kidd in Miracle World LAEJ = Alex Kidd in Miracle World LAEP = Alex Kidd in Miracle World LAFJ = Ashura LAFN = Secret Commando LAFP = Secret Command LAGE = Sonic The Hedgehog LAGJ = Sonic the Hedgehog LAGP = Sonic The Hedgehog LAHE = Space Harrier LAHJ = Space Harrier LAHP = Space Harrier LAIE = Enduro Racer LAIJ = Enduro Racer LAIP = Enduro Racer LAJE = Sonic The Hedgehog 2 LAJJ = Sonic the Hedgehog 2 LAJP = Sonic The Hedgehog 2 LAKE = Wonder Boy in Monster Land LAKJ = Super Wonder Boy: Monster World LAKP = Wonder Boy in Monster Land LALE = Fantasy Zone II: The Tears of OPA-OPA LALJ = Fantasy Zone II: The Tears of Opa-Opa LALP = Fantasy Zone II LAME = Sonic Chaos LAMJ = Sonic Chaos LAMP = Sonic Chaos LANE = Alex Kidd: The Lost Stars LANJ = Alex Kidd: The Lost Stars LANP = Alex Kidd: The Lost Stars LAOE = R-Type LAOJ = R-Type LAOP = R-Type LAPE = Wonder Boy III: The Dragon's Trap LAPP = Wonder Boy III: The Dragon's Trap LAQE = Alex Kidd in Shinobi World LAQP = Alex Kidd in Shinobi World LULZ = Homebrew Channel MA2J = Dyna Brothers MA3E = Puyo Puyo 2 MA3J = Puyo Puyo Tsuu MA3L = Puyo Puyo 2 MA4J = Bahamut Senki MA5J = Rent A Hero MA6E = Streets of Rage 2 MA6J = Bare Knuckle II: Shitou no Chinkon Uta MA6P = Streets of Rage 2 MA7E = Shining in the Darkness MA7J = Shining and the Darkness MA7P = Shining in the Darkness MA8E = Ecco: The Tides of Time MA8J = Ecco the Dolphin 2 MA8P = Ecco: The Tides of Time MA9J = The Hybrid Front MAAE = Altered Beast MAAJ = Juuouki MAAP = Altered Beast MABE = Columns MABJ = Columns MABP = Columns MACE = Dr. Robotnik's Mean Bean Machine MACJ = Puyo Puyo MACP = Dr. Robotnik's Mean Bean Machine MADE = Ecco the Dolphin MADJ = Ecco the Dolphin MADP = Ecco the Dolphin MAEE = Golden Axe MAEJ = Golden Axe MAEP = Golden Axe MAFE = Gunstar Heroes MAFJ = Gunstar Heroes MAFP = Gunstar Heroes MAGE = Ristar MAGJ = Ristar MAGP = Ristar MAHE = Sonic the Hedgehog MAHJ = Sonic the Hedgehog MAHP = Sonic the Hedgehog MAIE = Space Harrier II MAIJ = Space Harrier II MAIP = Space Harrier II MAJE = Toe Jam & Earl MAJJ = ToeJam & Earl MAJP = ToeJam & Earl MAKE = Shadow Dancer: The Secret of Shinobi MAKJ = Shadow Dancer: The Secret of Shinobi MAKP = Shadow Dancer: The Secret of Shinobi MALE = Bonanza Bros. MALJ = Bonanza Bros. MALP = Bonanza Bros. MAME = Sword of Vermillion MAMJ = Vermilion MAMP = Sword of Vermilion MANE = Gain Ground MANJ = Gain Ground MANP = Gain Ground MAOE = Bio-Hazard Battle MAOJ = Crying: Aseimei Sensou MAOP = Bio-Hazard Battle MAPE = Comix Zone MAPJ = Comix Zone MAPP = Comix Zone MAQE = Streets of Rage MAQJ = Bare Knuckle: Ikari no Tekken MAQP = Streets of Rage MARE = Beyond Oasis MARJ = The Story of Thor: Hikari o Tsugu Mono MARP = The Story of Thor MASE = Vectorman MASJ = Vectorman MASP = Vectorman MATE = Sonic Spinball MATJ = Sonic Spinball MATP = Sonic Spinball MAUJ = Puzzle & Action: Tant-R MAVE = Wonder Boy in Monster World MAVJ = Wonder Boy V: Monster World III MAVP = Wonder Boy In Monster World MAWE = Virtua Fighter 2 MAWJ = Virtua Fighter 2 MAWP = Virtua Fighter 2 MAXE = Alex Kidd In The Enchanted Castle MAXJ = Alex Kidd: Tenkuu Mashiro MAXP = Alex Kidd In The Enchanted Castle MAYE = Alien Storm MAYJ = Alien Storm MAYP = Alien Storm MAZE = ToeJam & Earl in Panic on Funkotron MAZP = ToeJam & Earl in Panic on Funkotron MB2J = Langrisser MB3E = Monster World IV MB3J = Monster World IV MB4J = Party Quiz Mega Q MB5J = Rangurissah II MB6E = Shining Force II MB6J = Shining Force II: Inishie no Fuuin MB6P = Shining Force II MB7E = Mega Turrican MB7P = Mega Turrican MB8E = Phantasy Star II MB8J = Phantasy Star II: Kaerazaru Toki no Owari ni MB8P = Phantasy Star II MB9J = Pepenga Pengo MBAJ = Pulseman MBAL = Pulseman MBAN = Pulseman MBBE = Sonic the Hedgehog 2 MBBJ = Sonic the Hedgehog 2 MBBP = Sonic the Hedgehog 2 MBCE = Kid Chameleon MBCJ = Chameleon Kid MBCP = Kid Chameleon MBDE = Golden Axe II MBDJ = Golden Axe II MBDP = Golden Axe II MBEE = Shining Force MBEJ = Shining Force: Kamigami no Isan MBEP = Shining Force MBFE = Shinobi III: Return of the Ninja Master MBFJ = The Super Soldier II MBFP = Shinobi III: Return of the Ninja master MBGE = Dynamite Headdy MBGJ = Dynamite Headdy MBGP = Dynamite Headdy MBHJ = Puzzle & Action: Ichidant-R MBIE = Landstalker: The Treasures of King Nole MBIJ = LandStalker: Koutei no Zaihou MBIP = Landstalker: The Treasures of King Nole MBJE = Ghouls'n Ghosts MBJJ = Dai Makai-Mura MBJP = Ghouls'n Ghosts MBKJ = Crack Down MBKP = Crack Down MBLJ = ESWAT: Cyber Police MBLP = ESWAT City Under Siege MBME = Sonic the Hedgehog 3 MBMJ = Sonic the Hedgehog 3 MBMP = Sonic the Hedgehog 3 MBNJ = Chelnov MBOE = Golden Axe III MBOJ = Golden Axe III MBOP = Golden Axe III MBPE = Super Thunder Blade MBPJ = Super Thunder Blade MBPP = Super Thunder Blade MBQE = Streets of Rage 3 MBQJ = Bare Knuckle III MBQP = Streets of Rage 3 MBRE = Rolling Thunder 2 MBRJ = Rolling Thunder 2 MBRP = Rolling Thunder 2 MBSJ = Dyna Brothers 2 Special MBTE = Alien Soldier MBTJ = Alien Soldier MBTP = Alien Soldier MBUE = Sonic 3D: Blast MBUJ = Sonic 3D Blast MBUP = Sonic 3D: Flickies' Island MBVJ = Jusu Kihei Leynos MBWE = Columns III: Revenge of Columns MBWJ = Columns III: Taiketsu! Columns World MBWM = Columns III: Revenge of Columns MBXE = Ecco Jr. MBXJ = Ecco Jr. MBXM = Ecco Jr. MBYE = Light Crusader MBYJ = Light Crusader MBYP = Light Crusader MBZE = Eternal Champions MBZJ = Eternal Champions MBZP = Eternal Champions MC2E = Earthworm Jim 2 MC2J = Earthworm Jim 2 MC2P = Earthworm Jim 2 MC3E = Super Street Fighter II: The New Challengers MC3J = Super Street Fighter 2: The New Challengers MC3P = Super Street Fighter II: The New Challengers MC4E = Strider MC4J = Strider Hiryu MCAJ = Gley Lancer MCAL = Gley Lancer MCAN = Gley Lancer MCBE = Powerball MCBJ = Wrestleball MCCE = Phantasy Star III MCCJ = Toki no Keishousha: Phantasy Star III MCCP = Phantasy Star III: Generations of Doom MCDE = Sonic & Knuckles MCDJ = Sonic & Knuckles MCDP = Sonic & Knuckles MCEJ = Super Fantasy Zone MCEN = Super Fantasy Zone MCEP = Super Fantasy Zone MCGE = Forgotten Worlds MCGJ = Forgotten Worlds MCGP = Forgotten Worlds MCHE = M.U.S.H.A. MCHJ = Musha Aleste MCHM = MUSHA : Metallic Uniframe Super Hybrid Armor MCIJ = Gynoug MCJE = Splatterhouse 2 MCJJ = Splatterhouse Part 2 MCJP = Splatterhouse 2 MCKE = Phantasy Star IV MCKJ = Phantasy Star: Sennenki no Owari ni MCKP = Phantasy Star IV MCLE = Street Fighter II': Special Champion Edition MCLJ = Street Fighter II' Plus: Champion Edition MCLP = Street Fighter II’: Special Champion Edition MCMJ = Lord Monarch: Tokoton Sentou Densetsu MCNJ = Hokuto no Ken: Shin Seikimatu Kyuseisyu Densetsu MCOJ = Sorcerian MCPE = Earthworm Jim MCPJ = Earthworm Jim MCPP = Earthworm Jim MCQE = Boogerman: A Pick and Flick Adventure MCQP = Boogerman - A Pick and Flick Adventure MCRE = Wolf of the Battlefield: MERCS MCRJ = Senjou no Ookami II MCRP = MERCS: Wolf of the Battlefield MCSJ = Wonder Boy III: Monster Lair MCSN = Wonder Boy III: Monster Lair MCSP = Wonder Boy III: Monster Lair MCTE = Clay Fighter MCTP = Clay Fighter MCUJ = Dragon Slayer: The Legend of Heroes MCVE = Pitfall: The Mayan Adventure MCVJ = Pitfall: The Mayan Adventure MCVP = Pitfall: The Mayan Adventure MCWE = Galaxy Force II MCWJ = Galaxy Force II MCWP = Galaxy Force II MCXJ = Dragon Slayer: The Legend of Heroes MCYE = The Revenge of Shinobi MCYJ = The Super Shinobi MCYP = The Revenge of Shinobi MCZE = Shanghai II: Dragon's Eye MCZP = Shanghai II Dragon's Eye MDUE01 = Mario Kart: Track Grand Priix MECPSI = SingItStar Mecano METE01 = New Super Metroid Bros. Wii MIJPSI = SingItStar Michael Jackson MILPSI = Sing IT Star: Miliki MKDE02 = Darky Kart Wii MKTE01 = Mario Kart Wii Teknik MKWP01 = Super Mario Kart for Wii MMRE01 = D.U. Super Mario Bros 2.1 Madness Returns MRRE01 = New Super Mario Bros. Wii Retro Remix MRRP01 = New Super Mario Bros. Wii Retro Remix NA3E = Bomberman Hero NA3J = Bomberman Hero NA3P = Bomberman Hero NAAE = Super Mario 64 NAAJ = Super Mario 64 NAAP = Super Mario 64 NABE = Mario Kart 64 NABJ = Mario Kart 64 NABK = Mario Kart 64 NABP = Mario Kart 64 NACE = The Legend of Zelda: Ocarina of Time NACJ = Zelda no Densetsu: Toki no Ocarina NACP = The Legend of Zelda: Ocarina of Time NADE = Star Fox 64 NADJ = Star Fox 64 NADK = Star Fox 64 NADP = Lylat Wars NAEE = Paper Mario NAEJ = Mario Story NAEP = Paper Mario NAFE = F-Zero X NAFJ = F-Zero X NAFP = F-Zero X NAGJ = Aerogauge NAHE = Yoshi's Story NAHJ = Yoshi's Story NAHP = Yoshi's Story NAIE = Wave Race 64 NAIJ = Wave Race 64: Kawasaki Jet Ski NAIP = Wave Race 64 NAJ8 = The Legend of Zelda: Ocarina of Time (spanish translation) NAJ9 = Super Smash Bros. NAJJ = Tsumi to Batsu NAJL = Sin & Punishment NAJN = Sin and Punishment NAKD = Pokémon Snap NAKE = Pokémon Snap NAKF = Pokémon Snap NAKI = Pokémon Snap NAKJ = Pokémon Snap NAKP = Pokémon Snap NAKS = Pokémon Snap NALE = Super Smash Bros. NALJ = Nintendo All-Star Dairantou Smash Brothers NALP = Super Smash Bros. NAME = Kirby 64: The Crystal Shards NAMJ = Hoshi no Kirby 64 NAMK = Kirby 64: The Crystal Shards NAMP = Kirby 64: The Crystal Shards NAND = Pokémon Puzzle League NANE = Pokémon Puzzle League NANF = Pokémon Puzzle League NANJ = Pokemon Puzzle League NANP = Pokémon Puzzle League NAOE = 1080° Snowboarding NAOJ = 1080° Snowboarding NAOK = 1080° Snowboarding NAOP = 1080 : TenEighty Snowboarding NAPJ = Custom Robo V2 NARE = The Legend of Zelda: Majora's Mask NARJ = Zelda no Densetsu: Majora no Kamen NARP = The Legend of Zelda: Majora's Mask NASE = Cruis'n USA NASJ = Cruisn USA NASP = Cruis'n USA NATE = Mario Tennis NATJ = Mario Tennis 64 NATP = Mario Tennis NAUE = Mario Golf NAUJ = Mario Golf 64 NAUP = Mario Golf NAYE = Ogre Battle 64: Person of Lordly Caliber NAYJ = Ogre Battle 64: Person of Lordly Caliber NAYM = Ogre Battle 64 : Person of Lordly Caliber NAZE = Mario Party 2 NAZJ = Mario Party 2 NAZP = Mario Party 2 NEEA = The Legend of Zelda: Ocarina of Time Master Quest NEWE01 = New Super Mario Bros Wii 15 A New World NK2O = Neek2o NMNP01 = Newer Super Mario Bros. Wii NRJ1FR = StarSing : NRJ Music Tour v1.1 NSMB02 = New Super Mario Bros. Wii 2 NSSP01 = Newer Summer Sun NWRP01 = Newer Super Mario Bros. Wii NZXM = Super Mario 64 Multiplayer ONKELZ = SingItStar Böhse Onkelz PAL OTFPSI = Sing IT: Operación triunfo P2ME01 = Metroid Prime 2: Echoes (Bonus Disc) PA2J = Nekketsu Koukou Dodgeball Bu: CD Soccer Hen PA3J = Salamander PA4J = Parasol Stars PA6E = Bloody Wolf PA6J = Narazumono Sentou Butai: Bloody Wolf PA6P = Bloody Wolf PA7E = Alien Crush PA7J = Alien Crush PA7P = Alien Crush PA8E = Ordyne PA8J = Ordyne PA9E = Splatterhouse PA9J = Splatterhouse PA9P = Splatterhouse PAAE = Bomberman '93 PAAP = Bomberman '93 PABE = Bonk's Adventure PABJ = PC Genjin PABP = Bonk's Adventure PACE = Dungeon Explorer PACJ = Dungeon Explorer PACP = Dungeon Explorer PADE = R-Type PADJ = R-Type I PADP = R-Type PAEE = Super Star Soldier PAEJ = Super Star Soldier PAEP = Super Star Soldier PAFE = Victory Run PAFJ = Victory Run: Eikou no 13,000KM PAFP = Victory Run PAGJ = Bomberman '94 PAGL = Bomberman'94 PAGN = Bomberman '94 PAHE = Battle Lode Runner PAHJ = Battle Lode Runner PAHP = Battle Lode Runner PAIE = New Adventure Island PAIJ = Takahashi Meijin no Shin Bouken Jima PAIP = New Adventure Island PAJJ = Joshoken Necromancer PAKE = Dragon's Curse PAKJ = Adventure Island PAKP = Dragon's Curse PALE = Soldier Blade PALJ = Soldier Blade PALP = Soldier Blade PAME = Neutopia PAMJ = Neutopia: Frey no Shou PAMP = Neutopia PANE = Military Madness PANJ = Nectaris PANP = Military Madness PAOJ = Final Soldier PAOL = Final Soldier PAON = Final Soldier PAPJ = R-Type II PAQJ = Gradius PARJ = Detana TwinBee PARL = Detana Twin Bee PARN = Detana Twin Bee PASJ = Cadash PATJ = Kiki Kaikai PAUJ = Kaizou Chounin Shubibinman PAVE = Vigilante PAVJ = Vigilante PAVP = Vigilante PAWE = Galaga '90 PAWJ = Galaga '88 PAWP = Galaga'90 PAYJ = Valkyrie no Densetsu PAZJ = Genpei Toumaden PB2E = Neutopia II PB2J = Neutopia II PB2P = Neutopia II PB3E = Devil's Crush PB3J = Devil Crash PB3P = Devil's Crush PB5J = Ninja Ryukenden PB6E = Cratermaze PB6P = Cratermaze PB7J = Sengoku Mahjong PB8E = Blazing Lazers PB8J = Blazing Lazers PB8P = Blazing Lazers PB9E = World Sports Competition PB9J = Power Sports PB9P = World Sports Competition PBAE = Dragon Spirit PBAJ = Dragon Spirit PBAP = Dragon Spirit PBCJ = Wonder-Momo PBDE = Double Dungeons PBDJ = Double Dungeons PBDP = Double Dungeons PBEE = Moto Roader PBEJ = Moto Roader PBEP = Motoroader PBFJ = Fire ProWrestling: Combination Tag PBHE = Bonk's Revenge PBHJ = PC Genjin 2 PBHP = Bonk's Revenge PBIE = Bonk 3: Bonk's Big Adventure PBIJ = PC Genjin 3 PBIP = Bonk III: Bonk's Big Adventure PBJE = Samurai Ghost PBJJ = Genpei Toumaden: Kannoni PBJP = Samurai Ghost PBME = Legend of Hero Tonma PBMJ = Legend of Hero Tonma PBMP = Legend of Hero Tonma PBNE = Ninja Spirit PBNJ = Saigou no Nindou: Ninja Spirit PBNP = Ninja Spirit PBSE = Chew Man Fu PBSJ = Be Ball PBSP = Chew Man Fu PBTE = China Warrior PBTJ = The Kung Fu PBTP = China Warrior PBUE = Bravoman PBUJ = Chouzetsu Rinjin Bravoman PBVJ = Benkei Gaiden PBWE = Air “Zonk” PBWJ = PC Denjin: Punkic Cyborgs PBWP = Air 'Zonk' PBXE = Shockman PBXJ = Kaizou Chounin Shubibinman 2: Atanaru Teki PBXP = Shockman PBYJ = Out Live PBZE = J.J. & Jeff PBZP = J.J. & Jeff PC2E = Chase H.Q. PC2J = Chase H.Q. PC2P = Chase H.Q. PC3J = Darius Plus PC4J = Space Invaders: Fukkatsu no Hi PC5J = Dragon Saber PC6E01 = Pokémon Colosseum Bonus Disc PC6J = Final Blaster PC7J = Mizubaku Daibouken PC8J = The Ninjawarriors PC9J = The NewZealand Story PCAE = Silent Debuggers PCAJ = Silent Debuggers PCAP = Silent Debuggers PCBE = Dead Moon PCBJ = Dead Moon: Tsuki Sekai no Akumu PCBP = Dead Moon PCCJ = Makai Hakkenden Shada PCDJ = Appare! Gateball PCEE = Power Golf PCEJ = Power Golf PCEP = Power Golf PCHE = Drop Off PCHJ = Drop Rock Hora Hora PCHP = Drop Off PCJJ = Override PCKJ = Gai Flame PCMJ = Mr. Heli no Daibouken PCNJ = Winning Shot PCOE = Psychosis PCOJ = Paranoia PCOP = Psychosis PCPJ = Power Eleven PCQJ = Psycho Chaser PCRJ = Break In PCRL = Break In PCRN = Break In PCSJ = Digital Champ: Battle Boxing PCSJ = Digital Champ: Battle Boxing PCSJ01 = Pokemon Colosseum Bonus Disc PCSL = Digital Champ : Battle Boxing PCSN = Digital Champ Battle Boxing PCTJ = Power Tennis PCUJ = Fire ProWrestling 2nd Bout PCVE = World Class Baseball PCVP = World Class Baseball PCWJ = Image Fight PCXJ = Power League IV PCYJ = Wallaby!! Usagi no Kuni no Kangaroo Race PDCJ = Dai Makaimura PDDJ = Volfied PDEJ = S.C.I.: Special Criminal Investigation PDFJ = Jigoku Meguri PDGJ = Fire ProWrestling 3: Legend Bout PDHJ = Rastan Saga II PDIE = Champion Wrestler PDJJ = Street Fighter II': Champion Edition PDJL = Street Fighter II' : Champion Edition PDJN = Street Fighter II: Champion Edition PDUE01 = Another Super Mario Bros. Wii PKBJ01 = The Tower of Druaga PLUS = WiiMC+ PM4E01 = Mario Kart: Double Dash!! Bonus Disc PMNEO1 = New Old Super Mario Bros. Wii POPPSI = SingItStar Pop PPNE01 = New Super Mario Bros. Wii 2: The Next Levels PPNP01 = New Super Mario Bros. Wii 2: The Next Levels PRJE01 = Pac-Man vs. PRJJ01 = Pac-Man vs. PRJP01 = Pac-Man vs. PROE01 = New Super Mario Bros. Wii 14 Project Mario PT1PSI = SingIt Star Portugal Hits PT2PSI = SingIt Portugal Hits Festa de Verão PT3PSI = Sing IT Portugal Hits - Morangos com Açucar PUTA01 = Guitar Hero III Custom : Rock Hits PWNP69 = Pwned Super Mario Bros. Wii PXWE = Project X: Love Potion Disaster PZLE01 = The Legend of Zelda: Collector's Edition PZLJ01 = The Legend of Zelda: Collector's Edition PZLP01 = The Legend of Zelda: Collector's Edition QA2J = Nekketsu Koukou Dodge Ball-Bu: CD Soccer-hen QA3E = SimEarth: The Living Planet QA3J = SimEarth QA3P = SimEarth: The Living Planet QA4J = Super Darius II QA5J = Space Invaders: The Original Game QA6J = Super Darius QA7J = Legend of Xanadu: Kaze no Densetsu Xanadu QA8J = Spriggan Mark 2 QA9J = Kaze no Densetsu: Xanadu II QAAE = Super Air Zonk QAAJ = CD Denjin: Rockabilly Tengoku QAAP = Super Air Zonk QABE = Ys Book I & II QABJ = Ys I + II QABP = Ys Book I & II QACJ = Cho Aniki QACL = Cho Aniki QACN = Cho Aniki QADJ = Gradius II: Gofer no Yabou QADL = Gradius II: Gofer no Yabou QADN = Gradius II Gofer No Yabou QAEJ = A.III: A-Ressha de Ikou III QAFE = The Dynastic Hero QAFJ = Chou Eiyuu Densetsu: Dynastic Hero QAFP = The Dynastic Hero QAGE = Gate of Thunder QAGJ = Gate of Thunder QAGP = Gate of Thunder QAHJ = Kawa no Nushi Tsuni Shizenha QAJJ = Image Fight II QAKJ = Ai Chou Aniki QALJ = The Atlas: Renaissance Voyager QANJ = Neo Nectaris QAOJ = Dungeon Explorer II QAPJ = Akumajou Dracula X: Chi no Rondo QAPL = Castlevania : Rondo of Blood QAPN = Castlevania Rondo of Blood QAPP = Castlevania: Rondo of Blood QAQJ = Dragon Slayer: Eiyuu Densetsu QARJ = Blood Gear QASE = Lords of Thunder QASJ = Winds of Thunder QASP = Lords of Thunder QATE = Riot Zone QATJ = Crest of Wolf QATP = Riot Zone QAUE = Monster Lair QAUJ = Wonder Boy III: Monster Lair QAUP = Monster Lair QAVJ = Bomberman: Panic Bomber QAWJ = Star Parodier QAWL = Star Parodier QAWN = Star Parodier QAXJ = Martial Champion QAYJ = Seirei Senshi Spriggan QAZJ = Eikan wa Kimi ni: Koko Yakyu Zenkoku Taikai QBAJ = L Dis QBBE = Fighting Street QBBJ = Fighting Street QBBP = Fighting Street R01PET = SingItStar Queen R02PEA = SingItStar Rock Ballads R15POH = SingIt Star Radio 105 R22E01 = FlingSmash R22J01 = Tataite Hazumu: Super Smash Ball Plus R22P01 = FlingSmash R23E52 = Barbie and the Three Musketeers R23P52 = Barbie and the Three Musketeers R24J01 = Chibi-Robo! R25EWR = LEGO Harry Potter: Years 1-4 R25PWR = LEGO Harry Potter: Years 1-4 R26E5G = Data East Arcade Classics R27E54 = Dora Saves the Crystal Kingdom R27X54 = Dora Saves the Crystal Kingdom R28E54 = Top Spin 4 R28P54 = Top Spin 4 R29E52 = NPPL Championship Paintball 2009 R29P52 = Millennium Series Championship Paintball 2009 R2AE7D = Ice Age 2: The Meltdown R2AP7D = Ice Age 2: The Meltdown R2AX7D = Ice Age 2: The Meltdown R2DEEB = Dokapon Kingdom R2DJEP = Dokapon Kingdom For Wii R2DPAP = Dokapon Kingdom R2DPJW = Dokapon Kingdom R2EJ99 = Fish Eyes Wii R2FE5G = Freddi Fish: Kelp Seed Mystery R2FP70 = Freddi Fish: Kelp Seed Mystery R2GEXJ = Fragile Dreams: Farewell Ruins of the Moon R2GJAF = Fragile: Sayonara Tsuki no Haikyo R2GP99 = Fragile Dreams: Farewell Ruins of the Moon R2HE41 = Petz Horse Club R2IE69 = Madden NFL 10 R2IP69 = Madden NFL 10 R2JJAF = Taiko no Tatsujin Wii R2KE54 = Don King Boxing R2KP54 = Don King Boxing R2LJMS = Hula Wii: Hura de Hajimeru Bi to Kenkou!! R2ME20 = M&M's Adventure R2NE69 = NASCAR Kart Racing R2OE68 = Medieval Games R2OP68 = Medieval Games R2PE9B = Super Swing Golf Season 2 R2PJ9B = Super Swing Golf Season 2 R2PKZ4 = Super Swing Golf Season 2 R2PP99 = Super Swing Golf R2PP9B = Super Swing Golf R2QJC0 = Cooking Mama 2 Taihen Mama Wa Ooisogashi R2RE4F = Pony Friends 2 R2RP4F = Pony Friends 2 R2SE18 = Deca Sports 2 R2SJ18 = Deca Sporta 2 R2SP18 = Sports Island 2 R2TE41 = Teenage Mutant Ninja Turtles: Smash-Up R2TP41 = Teenage Mutant Ninja Turtles: Smash-Up R2UE8P = Let's Tap R2UJ8P = Let's Tap R2UP8P = Let's Tap R2VE01 = Sin & Punishment: Star Successor R2VJ01 = Sin and Punishment: Successor to the Sky R2VP01 = Sin and Punishment: Successor of the Skies R2WEA4 = Pro Evolution Soccer 2009 R2WJA4 = Winning Eleven PLAY MAKER 2009 R2WPA4 = Pro Evolution Soccer 2009 R2WXA4 = Pro Evolution Soccer 2009 R2YE54 = Birthday Party Bash R2YP54 = It's my Birthday! R32J01 = Metroid Prime 2 R33E69 = AC/DC Live: Rock Band Track Pack R33P69 = AC/DC Live: Rock Band Song Pack R34E69 = Rock Band: Country Track Pack R35JC8 = Sangokushi 11 with Power-Up Kit R36E69 = Green Day: Rock Band R36P69 = Green Day: Rock Band R37E69 = Rock Band: Metal Track Pack R38E78 = Marvel Super Hero Squad R38P78 = Marvel Super Hero Squad R38X78 = Marvel Super Hero Squad: Walmart Edition R38Y78 = Marvel Super Hero Squad R39EFP = Shimano Xtreme Fishing R39PNK = Shimano Extreme Fishing R3AE20 = Story Hour: Adventures R3AP20 = Story Hour: Adventures R3AP7J = Story Hour: Adventures R3BE8P = Samba de Amigo R3BJ8P = Samba de Amigo R3BP8P = Samba de Amigo R3CE20 = Chrysler Classic Racing R3CP20 = Chrysler Classic Racing R3CP7J = Chrysler Classic Racing R3DES5 = Dream Pinball 3D R3DPS5 = Dream Pinball 3D R3EEWR = Game Party 3 R3EPWR = Game Party 3 R3FJA4 = Jikkyou Powerful Major League 3 R3GXUG = Kidz Sports: Crazy Mini Golf R3HP6Z = Agent Hugo: Hula Holiday R3HX6Z = Agent Hugo: Hula Holiday R3IJ01 = Metroid Prime R3JE5G = Go Play Circus Star R3KP6N = Skyscraper R3LEWR = Green Lantern: Rise of the Manhunters R3LPWR = Green Lantern: Rise of the Manhunters R3ME01 = Metroid Prime: Trilogy R3MP01 = Metroid Prime: Trilogy R3NEXS = Guilty Gear XX Accent Core Plus R3NPH3 = Guilty Gear XX Accent Core Plus R3OE01 = Metroid: Other M R3OJ01 = Metroid: Other M R3OP01 = Metroid: Other M R3PEWR = Speed Racer: The Videogame R3PJ52 = Speed Racer R3PPWR = Speed Racer: The Videogame R3RE8P = Sonic & SEGA All-Stars Racing R3RP8P = Sonic & SEGA All-Stars Racing R3SE52 = Spider-Man: Web of Shadows R3SP52 = Spider-Man: Web of Shadows R3TE54 = Top Spin 3 R3TJG9 = Top Spin 3 R3TP54 = Top Spin 3 R3UJGD = Oyako de Asobo: Miffy no Omocha Bako R3VEFP = Deer Drive R3VPNK = Deer Drive R3XE6U = Sam & Max: Season One R3XP6V = Sam & Max: Season One R3YE70 = Sam & Max: Season Two: Beyond Time and Space R3YP70 = Sam & Max: Season Two: Beyond Time and Space R3ZE69 = Rock Band Track Pack: Classic Rock R42E69 = The Sims 2: Castaway R42P69 = Os SIMS 2: Naufragos R43E69 = EA Sports Active: Personal Trainer R43J13 = EA Sports Active Personal Trainer Wii 30-Hi Seikatsu Kaizen Program R43P69 = EA Sports Active R44J8P = Suzumiya Haruhi no Heiretsu R46ENS = Phantom Brave: We Meet Again R46JKB = Phantom Brave Wii R47E20 = ATV Quad Kings R48E7D = The Spiderwick Chronicles R48P7D = The Spiderwick Chronicles R49E01 = Donkey Kong Jungle Beat R49J01 = Donkey Kong: Jungle Beat R49P01 = Donkey Kong: Jungle Beat R4AE69 = SimAnimals R4AJ13 = SimAnimals R4AP69 = SimAnimals R4BEJZ = Championship Foosball R4BPGT = Table Football R4CE69 = SimCity Creator R4CJ13 = Simcity Creator R4CK69 = SimCity Creator R4CP69 = Simcity Creator R4DDUS = Die drei Fragezeichen - Das verfluchte Schloss R4EE01 = Endless Ocean: Blue World R4EJ01 = Forever Blue: Umi no Yobigoe (Endless Ocean 2) R4EP01 = Endless Ocean 2: Adventures of the Deep R4FE20 = Story Hour: Fairy Tales R4FP20 = Story Hour: Fairy Tales R4FP7J = Story Hour: Fairy Tales R4IPNK = Mad Tracks R4LPUG = Athletic Piggy Party R4LXUG = Athletic Piggy Party R4MJ0Q = Shikakui Atama wo Marukusuru Wii R4NE5G = Major Minor's Majestic March R4NP5G = Major Minor's Majestic March R4NX5G = Major Minor's Majestic March R4PE69 = The Sims 2: Pets R4PP69 = Os SIMS 2: Animais de Estimação R4QE01 = Mario Strikers Charged R4QJ01 = Mario Strikers Charged R4QK01 = Mario Power Soccer R4QP01 = Mario Strikers Charged Football R4RE69 = FIFA Soccer 10 R4RJ13 = FIFA 10 WORLD CLASS SOCCER R4RK69 = FIFA 10 R4RP69 = FIFA 10 R4RX69 = FIFA 10 R4RY69 = FIFA 10 R4RZ69 = FIFA Soccer 10 R4SE54 = MLB Superstars R4VEA4 = Storybook Workshop R4VJA4 = Teleshibai Wii R4VJAF = Tere Shibai Wii R4WJA4 = Jikkyou Powerful Major League 2009 R4YJ2M = Sukeban Shachou Rena Wii R4ZE01 = Fatal Frame 4: Mask of the Lunar Eclipse R4ZJ01 = Fatal Frame IV: Mask of the Lunar Eclipse R4ZP01 = Fatal Frame IV: Mask of the Lunar Eclipse R52E08 = Neopets Puzzle Adventure R52P08 = Neopets Puzzle Adventure R53PFH = In The Mix Featuring Armin van Buuren R54FMR = Countdown: The Game R55F41 = Qui Veut Gagner Des Millions: 1ère Edition R55P41 = Who Wants To Be A Millionaire: 1st Edition R56EG9 = Astro Boy: The Video Game R56PG9 = Astro Boy: The Video Game R57FMR = Questions pour un champion R58DMR = U-Sing R58FMR = U-Sing R58PMR = U-Sing R58SMR = U-Sing R59D4Q = Club Penguin: Game Day! R59E4Q = Club Penguin: Game Day! R59P4Q = Club Penguin: Game Day! R5AE8P = The Golden Compass R5AP8P = A Bússola Dourada R5AX8P = A Bússola Dourada R5DE5G = Flip's Twisted World R5EPMR = Countdown: The Game R5FE41 = Academy of Champions: Soccer R5FP41 = Academy of Champions: Football R5GE78 = Are You Smarter Than A 5th Grader?: Make the Grade R5IE4Q = Toy Story Mania! R5IP4Q = Toy Story Mania! R5IR4Q = Toy Story Mania! R5IX4Q = Toy Story Mania! R5JES5 = Pirates vs Ninjas Dodgeball R5JPS5 = Pirates vs Ninjas Dodgeball R5MJAF = Kotoba No Puzzle Mojipittan Wii Deluxe R5NJN9 = Doala De Wii R5OENR = Party Pigs: Farmyard Games R5OXUG = Farmyard Party: Featuring the Olympigs R5PE69 = Harry Potter and the Order of the Phoenix R5PJ13 = Harry Potter and the Order of the Phoenix R5PP69 = Harry Potter e a Ordem da Fénix R5PX69 = Harry Potter e a Ordem da Fénix R5QPGT = Circus R5SERW = Mortimer Beckett and the Secrets of Spooky Manor R5TE69 = Grand Slam Tennis R5TJ13 = Grand Slam Tennis R5TP69 = Grand Slam Tennis R5UE41 = CSI: Deadly Intent R5UP41 = CSI: Deadly Intent R5VE41 = James Cameron's Avatar: The Game R5VP41 = James Cameron's Avatar: The Game R5VX41 = James Cameron's Avatar: The Game R5WEA4 = Silent Hill: Shattered Memories R5WJA4 = Silent Hill: Shattered Memories R5XJ13 = MySims Agents R5XP69 = MySims Agents R5YD78 = All Star Cheerleader 2 R5YE78 = All Star Cheer Squad 2 R5YP78 = All Star Cheerleader 2 R62E4Q = Disney Sing It: Pop Hits R62P4Q = Disney Sing It: Pop Hits R63EG9 = Family Party: 30 Great Games Outdoor Fun R63PG9 = Family Party: 30 Great Games Outdoor Fun R64E01 = Wii Music R64J01 = Wii Music R64K01 = Wii Music R64P01 = Wii Music R65ENR = Buck Fever R66E41 = Press Your Luck 2010 Edition R67E6K = Smart Series Presents: JaJa's Adventure R68E5G = Go Play City Sports R69E36 = DiRT 2 R69P36 = Colin McRae: DiRT 2 R6APPU = Baby and Me R6BE78 = de Blob R6BJ78 = Blob Colorful Na Kibou R6BK78 = de Blob R6BP78 = de Blob R6BX78 = de Blob R6CEAF = We Cheer 2 R6CJAF = WE CHEER Dancing Spirits! R6DFJW = Code de la Route R6EE41 = Family Feud 2010 Edition R6FE41 = Six Flags Fun Park R6FERS = Six Flags Fun Park R6FP41 = Fun Park Party R6GPMR = Golden Balls R6HE54 = Ni Hao, Kai-lan: Super Game Day R6HP54 = Ni Hao, Kai-lan: Super Game Day R6IE54 = Baseball Blast! R6JJGD = Fullmetal Alchemist: Prince of the Dawn R6KP36 = Ashes Cricket 2009 R6KU36 = Ashes Cricket 2009 R6LEWR = LEGO Rock Band R6LPWR = LEGO Rock Band R6ME5Z = America's Next Top Model R6MPML = America's Next Top Model R6MXMR = Top Model R6NE41 = Shaun White Snowboarding: World Stage R6NP41 = Shaun White Snowboarding: World Stage R6NY41 = Shaun White Snowboarding: World Stage R6OE78 = Cars Race-O-Rama R6OP78 = Cars Race-O-Rama R6OX78 = Cars Race-O-Rama R6QE69 = MySims Agents R6REJH = TrackMania: Build to Race R6RPHH = TrackMania R6TEA4 = Tornado Outbreak R6TPA4 = Tornado Outbreak R6VE4Z = King of Clubs R6VPGN = King of Clubs R6WE68 = AMF Bowling World Lanes R6WP68 = AMF Bowling World Lanes R6XE69 = Hasbro: Family Game Night 2 R6XP69 = Hasbro Family Game Night 2 R6YEXS = Squeeballs Party R6YPH3 = Squeeballs Party R72E5G = Cake Mania: In The Mix! R72P5G = Cake Mania: In The Mix! R74E20 = Arcade Shooting Gallery R75E20 = Dream Salon R76E54 = NBA 2K10 R76P54 = NBA 2K10 R77JAF = SD Gundam: G Generation Wars R79JAF = Mobile Suit Gundam: MS Sensen 0079 R7AE69 = SimAnimals Africa R7AJ13 = SimAnimals Africa R7AP69 = SimAnimals Africa R7BE20 = Jelly Belly Ballistic Beans R7BP7J = Jelly Belly Ballistic Beans R7CJ01 = Captain Rainbow R7EE8P = NiGHTS: Journey of Dreams R7EJ8P = Nights Journey Of Dreams R7EP8P = NiGHTS: Journey of Dreams R7FEGD = Final Fantasy Fables: Chocobo's Dungeon R7FJGD = Final Fantasy Fables: Chocobo's Dungeon R7FPGD = Final Fantasy Fables: Chocobo's Dungeon R7GEAF = Dragon Ball: Revenge of King Piccolo R7GJAF = Dragon Ball: Tenkaichi Daibouken R7GPAF = Dragon Ball: Revenge of King Piccolo R7HE6K = Army Rescue R7IE69 = Charm Girls Club: Pajama Party R7IP69 = Charm Girls Club: Pyjama Party R7KE6K = Rock Blast R7LP7J = Margot's Bepuzzled! R7MXFR = Musiic Party: Rock the House R7NE20 = Cold Stone Creamery: Scoop It Up R7OE54 = NHL 2K10 R7OP54 = NHL 2K10 R7PE01 = Punch-Out!! R7PJ01 = Punch-Out!! R7PP01 = Punch-Out!! R7QE52 = Chaotic: Shadow Warriors R7RE52 = Little League World Series Baseball 2009 R7SE5G = Escape The Museum R7SP5G = Escape The Museum R7TFJW = Pétanque Pro R7VEWR = Vacation Isle: Beach Party R7VPWR = Vacation Isle: Beach Party R7WE52 = Mountain Sports R7WP52 = Mountain Sports R7XE69 = Need for Speed: Nitro R7XJ13 = Need for Speed: Nitro R7XP69 = Need for Speed: Nitro R7YFMR = Pékin Express R7ZE41 = Team Elimination Games R7ZP41 = Knockout Party R82E52 = Animal Planet: Vet Life R82JG0 = Darts Wii DX R82P52 = Animal Planet: Vet Life R83EA4 = Pop'n Music R83JA4 = Pop'n Music R83PA4 = Pop'n Rhythm R84EE9 = Harvest Moon: Tree Of Tranquility R84J99 = Bokujo for Wii R84P99 = Harvest Moon: Tree of Tranquility R85EG9 = The Secret Saturdays: Beasts of the 5th Sun R85PG9 = The Secret Saturdays: Beasts of the 5th Sun R86E20 = Dream Dance & Cheer R87EVN = Ski-Doo: Snowmobile Challenge R88J2L = Anpanman Niko Niko Party R89JEL = Tokyo Friend Park 2 Wii R8AE01 = PokéPark Wii: Pikachu's Adventure R8AJ01 = PokéPark Wii: Pikachu no Daibouken R8AP01 = PokéPark Wii: Pikachu's Adventure R8BE41 = Imagine Party Babyz R8BP41 = Babysitting Party R8DEA4 = Yu-Gi-Oh! 5D's: Duel Transer R8DJA4 = Yu-Gi-Oh! 5D's: Duel Transer R8DPA4 = Yu-Gi-Oh! 5D's: Master of the Cards R8EJQC = Earth Seeker R8FES5 = Fast Food Panic R8FJHA = Takumi Restaurant ha Daihanjou! R8FJSC = Takumi Restaurant wa Daihanjou! (Simplified Chinese Translation) R8FPNP = Fast Food Panic R8GJC8 = G1 Jockey Wii 2008 R8GPC8 = G1 Jockey Wii 2008 R8HE4Q = Hannah Montana: The Movie R8HP4Q = Hannah Montana: The Movie R8HX4Q = Hannah Montana: The Movie R8HY4Q = Hannah Montana: The Movie R8IE78 = SpongeBob's Truth or Square R8IP78 = SpongeBob's Truth or Square R8IS78 = SpongeBob's Truth or Square R8JEWR = The Lord of the Rings: Aragorn's Quest R8JPWR = The Lord of the Rings: Aragorn's Quest R8KPKM = Street Football 2 R8LE20 = Chicken Blaster R8LP7J = Chicken Blaster R8NEA4 = The Cages: Pro Style Batting Practice R8NJG0 = Batting Revolution R8OE54 = Ringling Bros. and Barnum & Bailey Circus R8OX54 = It's My Circus R8PC01 = Super Paper Mario(CN) R8PE01 = Super Paper Mario R8PJ01 = Super Paper Mario R8PK01 = Super Paper Mario R8PP01 = Super Paper Mario R8QPRT = Crazy Quiz: Are You Crazy Enough? R8RP41 = Arthur and the Revenge of Maltazard R8SE41 = Vacation Sports R8SP41 = World Sports Party R8SX41 = World Sports Party R8TENR = Tournament Pool R8UXMR = Adibou R8VE41 = Petz Rescue: Wildlife Vet R8VP41 = Planet Rescue: Wildlife Vet R8XE52 = Jurassic: The Hunted R8XZ52 = Top Shot Dinosaur Hunter R8YE52 = Cabela's Big Game Hunter 2010 R8ZE8P = Daisy Fuentes Pilates R8ZPGT = Daisy Fuentes Pilates R92E01 = Pikmin 2 R92J01 = Pikmin 2 R92P01 = Pikmin 2 R94PMR = The Ultimate Red Ball Challenge R94XMR = The Ultimate Red Ball Challenge R96EAF = Klonoa R96JAF = Kaze no Klonoa Door to Phantomile R96KAF = Klonoa - Door to Phantomile R96PAF = Klonoa R97E9B = Family Fun Football R9AE52 = Activision Demo Action Pack (Demo) R9BPMT = Bob the Builder: Festival of Fun R9CPMR = I'm a Celebrity...Get Me Out of Here! R9DE78 = Drawn to Life: The Next Chapter R9DP78 = Drawn to Life: The Next Chapter R9EPNP = Fix It: Home Improvement Challenge R9FE36 = F1 2009 R9FJ36 = F1 2009 R9FP36 = F1 2009 R9GEWR = Legend of the Guardians: The Owls of Ga'Hoole R9GPWR = Legend of the Guardians: The Owls of Ga'Hoole R9HE78 = Are You Smarter Than A 5th Grader?: Game Time R9IE01 = Pikmin R9IJ01 = Pikmin R9IK01 = Pikmin R9IP01 = Pikmin R9JE69 = The Beatles: Rock Band R9JP69 = The Beatles: Rock Band R9KE20 = Groovin' Blocks R9LE41 = Sleepover Party R9LP41 = Girls Life: Sleepover Party R9ME5Z = World Championship Athletics R9MPFR = Summer Athletics 2009 R9NPMR = Family Fortunes R9OE69 = Tiger Woods PGA Tour 10 R9OK69 = Tiger Woods PGA Tour 10 R9OP69 = Tiger Woods PGA Tour 10 R9QPNG = Dance Party Club Hits R9RPNG = Dance Party Pop Hits R9SPPL = Sudoku Ball: Detective R9TE69 = Tiger Woods PGA Tour 09 All-Play R9TJ13 = Tiger Woods PGA Tour 09 All-Play R9TK69 = Tiger Woods PGA Tour 09 All-Play R9TP69 = Tiger Woods PGA Tour 09 All-Play R9UE52 = Build-A-Bear Workshop: Friendship Valley R9UPGY = Build-A-Bear Workshop: Friendship Valley R9VE52 = Cabela's Outdoor Adventures 2010 R9WPSP = WSC Real 09: World Snooker Championship R9XE52 = Arcade Zone R9XP52 = Arcade Zone R9YES5 = Sled Shred R9ZE54 = Major League Baseball 2K9 RABAZZ = System Menu Changer RADP01 = New Super Mario Bros. Wii 0-6 Radiance RB2E6K = Balloon Pop RB2J2K = Rainbow Pop RB2P6K = Pop! RB2PGT = Pop! RB4E08 = Resident Evil 4: Wii Edition RB4J08 = Biohazard 4 Wii Edition RB4P08 = Resident Evil 4: Wii Edition RB4X08 = Resident Evil 4: Wii Edition RB5E41 = Brothers In Arms: Earned In Blood RB5P41 = Brothers In Arms: Earned In Blood RB6J18 = Bomberman RB7E54 = Bully: Scholarship Edition RB7P54 = Bully: Scholarship Edition RB8E70 = Backyard Baseball '09 RB9D78 = Bratz: The Movie RB9E78 = Bratz: The Movie RB9P78 = Bratz: The Movie RB9X78 = Bratz: The Movie RB9Y78 = Bratz: The Movie RBAE41 = Blazing Angels: Squadrons of WWII RBAP41 = Blazing Angels: Squadrons of WWII RBBE18 = Bomberman Land RBBJ18 = Bomberman Land Wii RBBP99 = Bomberman Land Wii RBCP41 = Telly Addicts RBEE52 = Bee Movie Game RBEP52 = Bee Movie Game RBEX52 = Bee Movie Game RBFE20 = Balls of Fury RBFP20 = Balls of Fury RBFP7J = Balls of Fury RBGE54 = The BIGS RBGP54 = The Bigs RBHE08 = Resident Evil Archives: Resident Evil Zero RBHJ08 = Biohazard 0 RBHP08 = Resident Evil Archives: Resident Evil Zero RBIEE9 = Harvest Moon: Animal Parade RBIJ99 = Bokujou Monogatari Waku Waku Animal March RBIP99 = Harvest Moon: Animal Parade RBKE69 = Boom Blox RBKJ13 = Boom Blox RBKK69 = Boom Blox RBKP69 = Boom Blox RBLE8P = Bleach: Shattered Blade RBLJ8P = Bleach: Shattered Blade RBLP8P = Bleach: Shattered Blade RBME5G = Bust-a-Move Bash! RBMPGT = Bust-A-Move RBNEG9 = Ben 10: Protector of Earth RBNPG9 = Ben 10: Protector of Earth RBNXG9 = Ben 10: Protector of Earth RBOE69 = Boogie RBOP69 = Boogie RBPE4Z = Brunswick Pro Bowling RBPP4Z = Brunswick Pro Bowling RBPPGT = Brunswick Pro Bowling RBQENR = Classic British Motor Racing RBQPUG = Classic British Motor Racing RBRE5G = Blast Works: Build, Trade, Destroy RBRP5G = Blast Works: Build, Trade, Destroy RBRX5G = Blast Works: Build, Trade, Destroy RBSJ08 = Sengoku Basara 2 Heroes (Double Pack) RBSJ09 = Sengoku Basara 2 Heroes RBTE8P = SEGA Bass Fishing RBTJ8P = Sega Bass Fishing RBTP8P = Sega Bass Fishing RBUE08 = Resident Evil: The Umbrella Chronicles RBUJ08 = Biohazard The Umbrella Chronicles RBUK08 = Biohazard The Umbrella Chronicles RBUP08 = Resident Evil: The Umbrella Chronicles RBVE52 = Barbie as The Island Princess RBVP52 = Barbie as The Island Princess RBWE01 = Battalion Wars 2 RBWJ01 = Totsugeki Famicom Wars vs. RBWP01 = Battalion Wars 2 RBXJ8P = Bleach: Versus Crusade RBYE78 = Barnyard RBYJ78 = Barnyard RBYP78 = Balbúrdia Na Quinta RBZE5Z = Billy the Wizard: Rocket Broomstick Racing RBZP5Z = Billy the Wizard: Rocket Broomstick Racing RBZPUG = Billy the Wizard: Rocket Broomstick Racing RBZXUG = Billy the Wizard: Rocket Broomstick Racing RC2E78 = Cars: Mater-National RC2P78 = Cars: Mater-National RC2X78 = Cars: Mater-National RC2Y78 = Cars: Mater-National RC3E41 = Petz Catz 2 RC3J41 = Nyanko To Mahou No Boushi RC3P41 = Catz RC3X41 = Catz RC4JD9 = Crayon Shin-Chan: Saikyou Kazoku Kasukabe King Wii RC4SGT = Shin Chan The New Adventures For Wii RC5JDQ = Osouji Sentai Clean Keeper RC7E20 = Sea Monsters: A Prehistoric Adventure RC7P7J = Sea Monsters: A Prehistoric Adventure RC8E7D = Crash: Mind Over Mutant RC8P7D = Crash: Mind Over Mutant RC8X7D = Crash: Mind Over Mutant RC9PGN = CID: The Dummy RCAE78 = Cars RCAJ78 = Cars RCAP78 = Carros RCAX78 = Carros RCAY78 = Carros RCBE52 = Cabela's Big Game Hunter RCBP52 = Cabela's Big Game Hunter RCCE5G = Cooking Mama: Cook Off RCCJC0 = Cooking Mama RCCPGT = Cooking Mama RCCR78 = Guitar Hero III Custom: Coheed and Cambria RCDD52 = Call of Duty 3 RCDE52 = Call of Duty 3 RCDP52 = Call of Duty 3 RCDX52 = Call of Duty 3 RCEE5Z = Mini Desktop Racing RCEPUG = Mini Desktop Racing RCEXUG = Mini Desktop Racing RCFE41 = Cosmic Family RCFP41 = Cosmic Family RCGE54 = Carnival Games RCGP54 = Carnival Games RCHC52 = Guitar Hero III Custom : Guitar Hero II RCHEAF = We Cheer RCHJAF = We Cheer RCHPAF = We Cheer RCHPGT = We Cheer RCIE41 = CSI: Hard Evidence RCIP41 = CSI: Hard Evidence RCJE8P = The Conduit RCJP8P = The Conduit RCKPGN = Alan Hansen's Sports Challenge RCLE4Q = Disney's Chicken Little: Ace in Action RCLP4Q = Chicken Little: Ace In Action RCOC99 = Meitantei Conan: Tsuioku no Mirage RCOJ99 = Meitantei Conan: Tsuioku no Mirage RCOK99 = Detective Conan: Case Closed: The Mirapolis Investigation RCOKZF = Case Closed: The Mirapolis Investigation RCOPNP = Case Closed: The Mirapolis Investigation RCPE18 = Kororinpa: Marble Mania RCPJ18 = Kororinpa RCPP18 = Kororinpa RCQEDA = Penny Racers Party: Turbo-Q Speedway RCQJDA = Choro Q RCRE5D = Cruis'n RCRP5D = Cruis'n RCSE20 = Chicken Shoot RCSP20 = Chicken Shoot RCSP7J = Chicken Shoot RCTE5Z = Counter Force RCTP5Z = Counter Force RCTPGT = Counter Force RCUE52 = Cabela's Legendary Adventures RCUP52 = Cabela's Legendary Adventures RCVE41 = Far Cry: Vengeance RCVP41 = Far Cry: Vengeance RCXE78 = All Star Cheer Squad RCXP78 = All Star Cheerleader RCXX78 = All Star Cheerleader RCYPGN = Cheggers Party Quiz RD2E41 = Red Steel 2 RD2J41 = Red Steel 2 RD2K41 = Red Steel 2 RD2P41 = Red Steel 2 RD2X41 = Red Steel 2 RD4EA4 = Dance Dance Revolution: Hottest Party 2 RD4JA4 = Dance Dance Revolution: Furu Furu Party RD4PA4 = Dance Dance Revolution: Hottest Party 2 RD6EE9 = Animal Kingdom: Wildlife Expedition RD6J8N = Doubutu Kisoutengai RD6PNP = SAFAR'Wii RD8E52 = Dancing with the Stars RD9J18 = Sudoku RDAE52 = Dancing with the Stars: We Dance! RDBE70 = Dragon Ball Z: Budokai Tenkaichi 2 RDBJAF = Dragon Ball Z: Sparking! NEO RDBP70 = Dragon Ball Z: Budokai Tenkaichi 2 RDBPAF = Dragon Ball Z: Budokai Tenkaichi 2 RDCE78 = Deadly Creatures RDCP78 = Deadly Creatures RDDEA4 = Dance Dance Revolution: Hottest Party RDDJA4 = Dance Dance Revolution: Hottest Party RDDPA4 = Dance Dance Revolution Hottest Party RDEJ0A = Zenkoku Dekotora Matsuri RDFE41 = Shaun White Snowboarding: Road Trip RDFP41 = Shaun White Snowboarding: Road Trip RDGEA4 = Castlevania Judgment RDGJA4 = Akumajou Dracula Judgment RDGPA4 = Castlevania Judgment RDHE78 = Destroy All Humans! Big Willy Unleashed RDHP78 = Destroy All Humans! Big Willy Unleashed RDIE41 = The Dog Island RDIJG2 = The Dog Island RDIP41 = The Dog Island RDJE4F = Death Jr.: Root of Evil RDJP4F = Death Jr.: Root of Evil RDKE01 = Donkey Kong: Barrel Blast RDKJ01 = Donkey Kong Taru Jet Race RDKP01 = Donkey Kong: Jet Race RDLE5G = Spy Fox in Dry Cereal RDLP70 = Spy Fox In Dry Cereal RDME6K = Domino Rally RDMJ8N = Go! Go! Minon RDMPHZ = Minon: Everyday Hero RDNEA4 = Dance Dance Revolution: Disney Grooves RDOE41 = Petz Dogz 2 RDOJ41 = Dog To Mahou No Boushi RDOP41 = Dogz RDOX41 = Dogz RDPE54 = Dora Saves the Snow Princess RDPP54 = Dora Saves the Snow Princess RDPX54 = Dora Saves the Snow Princess RDQEGD = Dragon Quest Swords: The Masked Queen and The Tower of Mirrors RDQJGD = Dragon Quest Swords: Kamen no Joou to Kagami no Tou RDQPGD = Dragon Quest Swords: The Masked Queen and the Tower of Mirrors RDREA4 = Dewy's Adventure RDRJA4 = Dewy's Adventure RDRPA4 = Dewy's Adventure RDSE70 = Dragon Ball Z: Budokai Tenkaichi 3 RDSJAF = Dragon Ball Z: Sparking! METEOR RDSPAF = Dragon Ball Z: Budokai Tenkaichi 3 RDSZ70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino RDTEAF = Tamagotchi: Party On! RDTJAF = Tamagotchi Pikadai RDTPAF = Tamagotchi: Party On! RDUE01 = DU Super Mario Bros. : Find That Princess RDUJDQ = Sugorochronicle Migite Ni Ken Wo Hidarite Ni Saikoro Wo RDVE41 = Driver: Parallel Lines RDVP41 = Driver: Parallel Lines RDWEG9 = Dragon Blade: Wrath of Fire RDWJG9 = Dragon Blade: Wrath Of Fire RDWPG9 = Dragon Blade: Wrath Of Fire RDXE18 = Deca Sports RDXJ18 = Deca Sporta RDXKA4 = Deca Sporta RDXP18 = Sports Island RDYEGN = CID: The Dummy RDZJ01 = Disaster: Day of Crisis RDZP01 = Disaster: Day of Crisis RE3ENR = WWII Aces RE4E08 = Resident Evil Archives: Resident Evil RE4J08 = Biohazard RE4P08 = Resident Evil Archives: Resident Evil RE5PAF = The Munchables RE6PRT = Summer Challenge: Athletics Tournament RE7PNK = Hunting Challenge RE8J99 = Katekyoo Hitman Reborn Kindan No Yami No Delta REAE69 = Celebrity Sports Showdown REAF69 = Celebrity Sports Showdown REAP69 = Celebrity Sports Showdown REBE4Z = Mr Bean's Wacky World of Wii REBPMT = Mr Bean's Wacky World of Wii RECE6K = Spy Games: Elevator Mission RECP6K = Spy Games: Elevator Mission REDE41 = Red Steel REDJ41 = Red Steel REDP41 = Red Steel REFP41 = My French Coach: Improve Your French REGE36 = Emergency Mayhem REGP36 = Emergency Mayhem REHE41 = Emergency Heroes REHP41 = Emergency Heroes REJEAF = Active Life: Extreme Challenge REJJAF = Family Trainer 2 REJPAF = Family Trainer: Extreme Challenge REKE41 = Gold's Gym: Cardio Workout REKJ2N = Shape Boxing Wii De Enjoy Diet REKP41 = My Fitness Coach: Cardio Workout REKU41 = Gold's Gym: Cardio Workout RELEA4 = Elebits RELJA4 = Elebits RELKA4 = Elebits RELPA4 = Eledees RELSAB = Sonic Adventure DX: Director's Cut (Preview Prototype) REMJ8P = Doraemon Wii Himitsu Douguou Ketteisen RENE8P = Sonic and the Black Knight RENJ8P = Sonic and the Black Knight RENP8P = Sonic and the Black Knight REQE54 = Go Diego Go! Safari Rescue REQP54 = Go Diego Go! Safari Rescue REQX54 = Go Diego Go! Safari Rescue REQY54 = Go Diego Go! Safari Rescue RESP41 = My Spanish Coach: Improve Your Spanish RETJAF = Ennichi No Tatsujin REUPNK = My Body Coach REVJ8P = Imabi Kisô: Kaimei Hen REVJBP = Imabikisou: Kaimei Hen REWFMR = My Horse Club: On the Trail of the Mysterious Appaloosa REWXMR = My Horse Club: On the Trail of the Mysterious Appaloosa REWYMR = My Horse Club: On the Trail of the Mysterious Appaloosa REXE01 = Excite Truck REXJ01 = Excite Truck REXP01 = Excite Truck REYE4Q = Disney Sing It: High School Musical 3 Senior Year REYP4Q = Disney Sing It: High School Musical 3 REYX4Q = Disney Sing It: High School Musical 3 REZEJJ = Fritz Chess REZPKM = Fritz Chess RF2E54 = Fantastic Four: Rise of the Silver Surfer RF2P54 = Fantastic Four: Rise of the Silver Surfer RF3E52 = Ferrari Challenge: Trofeo Pirelli RF3P6M = Ferrari Challenge RF4E36 = Super Fruit Fall RF4P6M = Super Fruit Fall RF7J08 = Tatsunoko vs. Capcom: Cross Generation of Heroes RF8E69 = FIFA Soccer 08 RF8J13 = FIFA 08 RF8K69 = FIFA 08 RF8P69 = FIFA 08 RF8X69 = FIFA 08 RF8Y69 = FIFA 08 RF9E69 = FIFA Soccer 09 All-Play RF9J13 = FIFA 09 All-Play RF9K69 = FIFA 09 All-Play RF9P69 = FIFA 09 All-Play RF9X69 = FIFA 09 All-Play RF9Y69 = FIFA 09 All-Play RFAEAF = Active Life: Outdoor Challenge RFAJAF = Family Trainer: Athletic World RFAPAF = Family Trainer RFBE01 = Endless Ocean RFBJ01 = Forever Blue RFBP01 = Endless Ocean RFCEGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFCJGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFCPGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFEE01 = Fire Emblem: Radiant Dawn RFEJ01 = Fire Emblem Akatsuki No Megami RFEP01 = Fire Emblem: Radiant Dawn RFFEGD = Final Fantasy Crystal Chronicles: Echoes of Time RFFJGD = Final Fantasy Crystal Chronicles: Echoes of Time RFFPGD = Final Fantasy Crystal Chronicles: Echoes of Time RFJJAF = Family Jockey RFKE41 = My Fitness Coach RFKJ41 = My Fitness Coach RFKP41 = My Fitness Coach: Get In Shape RFKX41 = My Fitness Coach: Get In Shape RFLE69 = Madden NFL 09 All-Play RFLP69 = Madden NFL 09 All-Play RFLPWK = Wii Freeloader RFMJAF = Pro Yakyuu Family Stadium RFNE01 = Wii Fit RFNJ01 = Wii Fit RFNK01 = Wii Fit RFNP01 = Wii Fit RFNW01 = Wii Fit RFOE52 = Spider-Man: Friend or Foe RFOP52 = Spider-Man: Friend or Foe RFOX52 = Spider-Man: Friend or Foe RFPE01 = Wii Fit Plus RFPJ01 = Wii Fit Plus RFPK01 = Wii Fit Plus RFPP01 = Wii Fit Plus RFPR01 = Wii Fit Plus RFPW01 = Wii Fit Plus RFQE69 = FaceBreaker K.O. Party RFQJ13 = FaceBreaker K.O. Party RFQJ69 = FaceBreaker K.O. Party RFQK69 = FaceBreaker: K.O. Party RFQP69 = FaceBreaker: K.O. Party RFRE5G = Furu Furu Park RFRJC0 = Furu Furu Park RFSEEB = Shiren the Wanderer RFSJ8P = Fushigi No Dungeon: Furai No Shiren 3 RFTE70 = Backyard Football RFTP70 = Backyard Football '08 RFUJA4 = Mahjong Kakutou Club Wii: Wi-fi Taiou RFVE52 = Monkey Mischief! Party Time RFVP52 = Monkey Mischief! 20 Games RFWE5Z = Safari Adventures Africa RFWPNK = Safari Adventures Africa RFYFMR = Fort Boyard RFZE41 = Imagine Fashion Party RFZP41 = Imagine Fashion Idol RG0E52 = Guitar Hero III Custom : Green Day Plus RG1552 = Guitar Hero III Custom : Weird Al Yankovic RG1E52 = Guitar Hero III Custom : Revenge RG2E52 = Guitar Hero III Custom : The Beatles Plus RG2EXS = Guilty Gear XX Accent Core RG2JJF = Guilty Gear XX Accent Core RG2PGT = Guilty Gear XX Accent Core RG2PXS = Guilty Gear XX Accent Core RG3E52 = Guitar Hero III Custom : Muse and Rush RG4152 = Guitar Hero III Custom : Sum 41 RG4E52 = Guitar Hero Mayan Apocalypse RG4JC0 = Let's Go By Train Shinkansen EX RG5EWR = Guinness World Records: The Videogame RG5PWR = Guinness World Records: The Videogame RG6E69 = Boogie SuperStar RG6P69 = Boogie Superstar RG7EQH = City Builder RG8E41 = Petz Sports RG8P41 = Petz Sports: Dog Playground RG9E52 = Guitar Hero III Custom : Anarchy RG9E54 = Carnival Games: Mini Golf RG9P54 = Carnival Games: Mini Golf RGAE8P = Planet 51: The Game RGAP8P = Planet 51: The Game RGBE08 = Harvey Birdman: Attorney at Law RGBP08 = Harvey Birdman: Attorney at Law RGCEXS = MiniCopter: Adventure Flight RGCJJF = Petitcopter Wii Adventure Flight RGCM52 = Guitar Hero III Custom : Metallica RGCPGT = Radio Helicopter RGCS52 = Guitar Hero III Custom : ClasSick Edition RGDEA4 = Target: Terror RGDPA4 = Target: Terror RGEJJ9 = The World Of Golden Eggs Norinori Rhythm RGEK52 = Guitar Hero III Custom: Slipknot RGFE69 = The Godfather: Blackhand Edition RGFF69 = The Godfather: Blackhand Edition RGFI69 = The Godfather: Blackhand Edition RGFP69 = The Godfather: Blackhand Edition RGFS69 = The Godfather: Blackhand Edition RGGE52 = Guitar Hero III Custom : Rock The Games RGGJAF = Gegege No Kitarou Youkai Daiundoukai RGHC20 = Guitar Hero III Custom : Fail Edition RGHE51 = Guitar Hero III Custom : Aspero RGHE52 = Guitar Hero III: Legends of Rock RGHE60 = Guitar Hero III Custom: WTF Custom RGHE61 = I Fought The Law - GH3 RGHE62 = Sweet Home Alabama - GH3 RGHE69 = Guitar Hero III Custom : Legends of METAL RGHEMR = Guitar Hero III Custom : Modern Rock RGHI52 = Guitar Hero III Custom: Chimba RGHJ52 = Guitar Hero III Legends of Rock RGHK52 = Guitar Hero III Legends of Rock RGHP52 = Guitar Hero III: Legends of Rock RGHPOH = SingItStar Italian Greatest Hits RGHPS2 = Guitar Hero III Custom : J-Music RGHX52 = Guitar Hero III Custom: Anime's Alex Chan RGIJC8 = G1 Jockey Wii RGIPC8 = G1 Jockey Wii RGJE4Z = George of the Jungle: Search for the Secret RGJP7U = George of the Jungle: Search for the Secret RGKE52 = Guitar Hero III Custom : KoRn RGKENR = Kidz Sports: Crazy Golf RGKPNR = Crazy Mini Golf RGLE7D = Geometry Wars: Galaxies RGLP7D = Geometry Wars: Galaxies RGME5D = The Grim Adventures of Billy & Mandy RGMP5D = The Grim Adventures of Billy & Mandy RGNJAF = Gintama Yorozuya Tuve RGOJJ9 = The World of Golden Eggs Nissan Note Version RGPJAF = Anime Slot Revolution Pachi-Slot Kidou Senshi Gundam II Ai Senshi Hen RGQE70 = Ghostbusters: The Video Game RGQP70 = Os Caça-Fantasmas: O Vídeo Jogo RGRM52 = Guitar Hero III Custom: Rock & Metal RGSE8P = Ghost Squad RGSJ8P = Ghost Squad RGSP8P = Ghost Squad RGTE41 = GT Pro Series RGTJBL = GT Pro Series RGTP41 = GT Pro Series RGVE52 = Guitar Hero: Aerosmith RGVE99 = Guitar Hero Aerosmith Custom: NOT Aerosmith but... RGVJ52 = Guitar Hero: Aerosmith RGVP52 = Guitar Hero: Aerosmith RGWE41 = Rabbids Go Home RGWJ41 = Rabbids Go Home RGWP41 = Rabbids Go Home RGWX41 = Rabbids Go Home RGXE5D = Game Party RGXEFN = Guitar Hero III Custom: Meteo Last Custom RGXM52 = Guitar Hero III Custom : xMxExTxAxLx's Edition RGXP5D = Game Party RGYE5Z = Action Girlz Racing RGYPUG = Action Girlz Racing RGZC52 = Guitar Hero III Custom : Led Zeppelin RGZE52 = Guitar Hero III Custom : Shred Edition RGZE70 = Godzilla Unleashed RGZP70 = Godzilla Unleashed RH2E41 = Hell's Kitchen: The Video Game RH2P41 = Hell's Kitchen RH3E4Q = High School Musical 3: Senior Year Dance! RH3J4Q = High School Musical 3: Senior Year Dance! RH3P4Q = High School Musical 3: Senior Year Dance! RH4XUG = Hamster Heroes RH5EVN = Horse Life Adventures RH5PKM = Horse Life 2 RH6E69 = Harry Potter and the Half-Blood Prince RH6K69 = Harry Potter and the Half Blood Prince RH6P69 = Harry Potter e o Príncipe Misterioso RH7J8P = Jissen Pachislot Hisshouhou! Sammy's Collection Hokuto no Ken Wii RH8E4F = Tomb Raider: Underworld RH8JEL = Tomb Raider: Underworld RH8P4F = Tomb Raider: Underworld RH8X4F = Tomb Raider: Underworld RH9JC8 = Harukanaru Toki no Naka de 4 RHAE01 = Wii Play RHAJ01 = Hajimete no Wii RHAK01 = Wii Play RHAP01 = Wii Play RHAW01 = Wii Play RHCE52 = The History Channel: Battle for the Pacific RHCP52 = The History Channel: Battle for the Pacific RHD222 = The House of The Dead 2 RHD333 = The House of the Dead 3 RHDE8P = The House of the Dead 2 & 3 Return RHDJ8P = The House of The Dead 2 & 3 Return RHDP8P = The House of the Dead 2 & 3 Return RHEEJJ = Professor Heinz Wolff's Gravity RHEPKM = Professor Heinz Wolff's Gravity RHFE5D = Happy Feet RHFP5D = Happy Feet RHGH52 = Guitar Hero III Custom : RandomHero's RHGP6Z = Agent Hugo: Lemoon Twist RHGX6Z = Agent Hugo: Lemoon Twist RHHJ8J = Suzumiya Haruhi no Gekidou RHIEXJ = Victorious Boxers: Revolution RHIJ41 = Hajime No Ippo Revolution RHIJJ9 = Hajime No Ippo Revolution RHIP41 = Victorious Boxers Challenge RHJJ13 = Ginsei Table Games Wii RHKE18 = Help Wanted: 50 Wacky Jobs RHKJ18 = Hataraku Hit RHKP18 = Job Island: Hard Working People RHLE4Z = World Championship Poker Featuring Howard Lederer: All-In RHLPGT = World Championship Poker Featuring Howard Lederer: All-In RHMEE9 = Harvest Moon: Magical Melody RHMP99 = Harvest Moon: Magical Melody RHNE70 = My Horse & Me RHNP70 = O meu Cavalo e eu RHOE8P = The House of the Dead: Overkill RHOJ8P = The House of The Dead: Overkill RHOP8P = The House of the Dead: Overkill RHPJ8N = Akko De Pon! Ikasama Hourouki RHQE4Q = Hannah Montana: Spotlight World Tour RHQP4Q = Hannah Montana: Spotlight World Tour RHQX4Q = Hannah Montana: Spotlight World Tour RHQY4Q = Hannah Montana: Spotlight World Tour RHRJ99 = Kateikyou Hitman Reborn! Dream Hyper Battle! Wii RHSE36 = Heatseeker RHSP36 = Heatseeker RHSX36 = Heatseeker RHSY36 = Heatseeker RHTE54 = Manhunt 2 RHTP54 = Manhunt 2 RHUE20 = Skate City Heroes RHUP20 = Skate City Heroes RHUP7J = Skate City Heroes RHVE5Z = Crazy Chicken Tales RHVPFR = Crazy Chicken Tales RHWE52 = Hot Wheels: Beat That! RHWP52 = Hot Wheels: Beat That! RHXE78 = Battle of the Bands RHXP78 = Battle of the Bands RHYJAF = Haneru no Tobira Wii RHZE41 = Petz Horsez 2 RHZP41 = Pippa Funnell: Ranch Rescue RI1POH = SingItStar Italian Party RI2E4Q = High School Musical: Sing It! RI2P4Q = Disney Sing It: High School Musical RI2POH = SingItStar Italian Party vol. 2 RI3E5D = The Ant Bully RI3P5D = The Ant Bully RI3POH = SingItStar Italian Top.it RI6ENR = Summer Sports 2: Island Sports Party RI6P41 = Summer Sports Party RI7E4Z = Monster Mayhem: Build and Battle RI8E41 = Brothers In Arms: Road to Hill 30 RI8P41 = Brothers In Arms: Road To Hill 30 RI9EGT = Diva Girls: Divas on Ice RI9PGT = Diva Girls: Princess On Ice RIAE52 = Ice Age: Dawn of the Dinosaurs RIAI52 = Ice Age 3: Dawn of the Dinosaurs RIAP52 = Ice Age 3: Dawn of the Dinosaurs RIBES5 = Igor the Game RIBPKM = Igor: The Game RICENR = Iron Chef America: Supreme Cuisine RIDE20 = Smiley World: Island Challenge RIDP7J = Smiley World: Island Challenge RIEEA4 = Karaoke Revolution Presents: American Idol Encore RIFEA4 = Karaoke Revolution Presents: American Idol Encore 2 RIGE54 = Go Diego Go! Great Dinosaur Rescue RIGP54 = Go, Diego, Go! Great Dinosaur Rescue RIHE8P = The Incredible Hulk RIHP8P = The Incredible Hulk RIIEQH = Kart Racer RIIPNG = Kart Racer RIIV = Riivolution RIJE69 = G.I. JOE: The Rise of Cobra RIJP69 = G.I. JOE: The Rise of Cobra RIKEQH = Truck Racer RIKPNG = Truck Racer RILJ18 = Puzzle Series Vol. 2: Illust Logic + Colorful Logic RIME36 = Impossible Mission RIMP6M = Impossible Mission RINE08 = Dead Rising: Chop Till You Drop RINJ08 = Dead Rising Zombie No Ikenie RINP08 = Dead Rising: Chop Till You Drop RIOPSU = Horrible Histories: Ruthless Romans RIPEAF = One Piece: Unlimited Adventure RIPJAF = One Piece: Unlimited Adventure RIPPAF = One Piece Unlimited Cruise 1: The Treasure Beneath the Waves RIQPUJ = Dancing on Ice RIRE8P = Iron Man RIRP8P = Iron Man RITFMR = Intervilles, le jeu officiel RIUJAF = One Piece Unlimited Cruise 2: Awakening of a Hero RIUPAF = One Piece Unlimited Cruise 2: Awakening of a Hero RIVEXJ = Ivy The Kiwi? RIVJAF = Ivy the Kiwi? RIVP99 = Ivy The Kiwi? RIWENR = Burger Island RIXE20 = Dodge Racing: Charger vs. Challenger RIXP7J = Dodge Racing: Charger vs Challenger RIYE52 = Space Camp RIYP52 = Space Camp RIZENR = Indianapolis 500 Legends RJ2E52 = 007: Quantum of Solace RJ2JGD = 007: Quantum of Solace RJ2P52 = 007: Quantum of Solace RJ3E20 = Jeep Thrills RJ3P7J = Jeep Thrills RJ4ENR = Jewel Master: Cradle of Rome RJ4PRM = Jewel Master: Cradle of Rome RJ6E69 = MySims Sky Heroes RJ6P69 = MySims Sky Heroes RJ7FWP = Télé 7 Jeux: Mots Fléchés RJ8E64 = Indiana Jones and the Staff of Kings RJ8P64 = Indiana Jones and the Staff of Kings RJ9E5Z = thinkSMART Family RJ9FMR = Think Logic Trainer RJ9PFR = Think Logic Trainer RJ9XML = Think Logic Trainer RJAD52 = Call of Duty: Modern Warfare - Reflex Edition RJAE52 = Call of Duty: Modern Warfare - Reflex Edition RJAP52 = Call of Duty: Modern Warfare - Reflex Edition RJAX52 = Call of Duty: Modern Warfare - Reflex Edition RJBJAF = Daikaijuu Battle Ultra Coliseum RJCE52 = Score International Baja 1000: World Championship Offroad Racing RJCP52 = Score International Baja 1000: World Championship Offroad Racing RJDPKM = My Animal Centre RJEE70 = Jenga World Tour RJEP70 = Jenga World Tour RJFE5G = Jillian Michaels' Fitness Ultimatum 2009 RJFP5G = Jillian Michaels' Fitness Ultimatum 2009 RJFPKM = Jillian Michaels' Fitness Ultimatum 2009 RJGJDA = Jinsei Game Wii RJHE52 = Madagascar Kartz RJHP52 = Madagascar Kartz RJIP6M = Ferrari: The Race Experience RJJE8P = Jambo! Safari Animal Rescue RJJG52 = Guitar Hero III Custom : JJ-KwiK's Edition RJJP8P = Jambo! Safari RJMERS = Jumper: Griffin's Story RJMPRS = Jumper: Griffin's Story RJNE20 = Build 'N Race RJOEXJ = Ju-on: The Grudge RJOJJ9 = Kyoufu Taikan Juon RJOP99 = Ju-On The Grudge RJPJA4 = Jikkyou Powerful Pro Yakyuu Wii RJQE5G = Pajama Sam: Don't Fear the Dark RJQP70 = Pajama Sam: No Need to Hide when it's Dark Outside RJREA4 = Dance Dance Revolution: Hottest Party 3 RJRJA4 = Dance Dance Revolution: MUSIC FIT RJRPA4 = Dance Dance Revolution: Hottest Party 3 RJSENR = Kawasaki Jet Ski RJSPNR = Kawasaki Jet Ski RJSPUG = Kawasaki Jet Ski RJSXUG = Kawasaki Jet Ski RJTJ01 = Minna no Joushiki Ryoku TV RJVEGN = Hysteria Hospital: Emergency Ward RJVPGN = Hysteria Hospital: Emergency Ward RJWJEL = Jawa mammoth And A Secret Stone RJXE5G = Go Play Lumberjacks RJXXFR = Go Play Lumberjacks RJYE5Z = Doctor Fizzwizzle's Animal Rescue RJZP7U = SNK Arcade Classics Volume 1 RK2EEB = Trauma Center: New Blood RK2JEB = Trauma Center: New Blood RK2P01 = Trauma Center: New Blood RK3J01 = And-Kensaku RK4JAF = Kekkaishi RK5E01 = Kirby's Epic Yarn RK5J01 = Keito no Kirby RK5K01 = Kirby's Epic Yarn RK5P01 = Kirby's Epic Yarn RK6E18 = Marble Saga: Kororinpa RK6J18 = Kororinpa 2 RK6P18 = Marbles! Balance Challenge RK7J0A = Ougon no Kizuna RK8E54 = Major League Baseball 2K8 RK9EA4 = Karaoke Revolution RK9PA4 = Karaoke Revolution RKAE6K = Ultimate Shooting Collection RKAJMS = Milestone Shooting Collection RKAK8M = Milestone Shooting Collection Karous Wii RKAP6K = Ultimate Shooting Collection RKBE41 = Cranium Kabookii RKBP41 = Cranium Kabookii RKDEEB = Trauma Center: Second Opinion RKDJEB = Trauma Center: Second Opinion RKDJG9 = Kamen Rider: Climax Heroes W RKDP01 = Trauma Center: Second Opinion RKDPEB = Trauma Center: Second Opinion RKEENR = Cate West: The Vanishing Files RKEPGN = Cate West: The Vanishing Files RKEPNR = Cate West: The Vanishing Files RKFEH4 = The King of Fighters Collection: The Orochi Saga RKFKZA = King of Fighters Collection: The Orochi Saga RKFP7U = King of Fighters Collection: The Orochi Saga RKGEGY = Bratz Kidz: Slumber Party RKGPGY = Bratz: Kidz Party RKHE52 = Kung Fu Panda: Legendary Warriors RKHP52 = Kung Fu Panda: Legendary Warriors RKIENR = Kidz Sports: Ice Hockey RKIPUG = Kidz Sports: Ice Hockey RKJJ0Q = 250 Mannin no Kanken Wii de Tokoton Kanji Nou RKKE6K = Heavenly Guardian RKLEG9 = Coraline RKLPG9 = Coraline RKME5D = Mortal Kombat: Armageddon RKMP5D = Mortal Kombat: Armageddon RKNJ2N = Kanken Wii: Kanji Ou Kettei Sen RKOJBL = Relaxuma: Minna de Goyururi Seikatsu RKPE52 = Kung Fu Panda RKPJ52 = Kung Fu Panda RKPK52 = Kung Fu Panda RKPP52 = Kung Fu Panda RKPV52 = Kung Fu Panda RKPY52 = Kung Fu Panda RKQENR = Candace Kane's Candy Factory RKSENR = Kidz Sports: Basketball RKSPUG = Kidz Sports: Basketball RKTENR = Kidz Sports: International Soccer RKTXUG = Kidz Sports: International Football RKVE54 = The BIGS 2 RKVP54 = The Bigs 2: Baseball RKWJ18 = Jigsaw Puzzle Kyo-no Wan Ko RKXE69 = Rock Band RKXP69 = Rock Band RKYE20 = Army Men: Soldiers of Misfortune RKYP20 = Army Men: Soldiers of Misfortune RKYP7J = Army Men: Soldiers of Misfortune RKZEA4 = Lost in Blue: Shipwrecked RKZJA4 = Survival Kids Wii RKZPA4 = Lost in Blue: Shipwrecked RL2E78 = Gallop & Ride! RL2HMN = Horse & Pony: My Riding Stables RL2HMR = Horse & Pony: My Riding Stables RL2PFR = Horse & Pony: My Riding Stables RL3EMJ = Luxor 3 RL4E64 = LEGO Indiana Jones 2: The Adventure Continues RL4P64 = LEGO Indiana Jones 2: The Adventure Continues RL5E52 = iCarly RL5P52 = iCarly RL6E69 = NERF N-Strike Elite RL7E69 = Littlest Pet Shop: Friends RL7P69 = Littlest Pet Shop: Novos Amigos RL8E54 = MLB Power Pros 2008 RL9ESD = Guitar Hero Linkin Park RL9PHZ = King of Pool RLADMR = Deal or No Deal: The Banker Is Back RLAE20 = Deal or No Deal RLAPMR = Deal or No Deal: The Banker Is Back RLBEWR = LEGO Batman: The Videogame RLBPWR = LEGO Batman: The Videogame RLCP7J = Love is... in bloom RLDEGY = Legend of the Dragon RLDPFK = Legend Of The Dragon RLEEFS = Ten Pin Alley 2 RLEPFS = Ten Pin Alley 2 RLFE64 = Star Wars The Clone Wars: Lightsaber Duels RLFP64 = Star Wars The Clone Wars: Lightsaber Duels RLGE64 = LEGO Star Wars: The Complete Saga RLGJ52 = LEGO Star Wars: The Complete Saga RLGP64 = LEGO Star Wars: The Complete Saga RLHE52 = Little League World Series Baseball 2008 RLHP52 = Little League World Series Baseball 2008 RLIE64 = LEGO Indiana Jones: The Original Adventures RLIL78 = Guitar Hero 2nd Custom RLIP64 = LEGO Indiana Jones: The Original Adventures RLJEHJ = Line Rider 2: Unbound RLJPKM = Line Rider Freestyle RLKEGY = Code Lyoko: Quest for Infinity RLKPFK = Code Lyoko: Quest for Infinity RLLP70 = Go West: A Lucky Luke Adventure RLMJH4 = Metal Slug Complete RLNEVN = Survivor RLNFMR = Survivor RLNHMR = Survivor RLNIMR = Survivor RLNPMR = Survivor RLPE69 = Littlest Pet Shop RLPP69 = Littlest Pet Shop RLQE52 = Big League Sports RLQP52 = World Championship Sports RLRE4F = Tomb Raider: Anniversary RLRJEL = Tomb Raider: Anniversary RLRP4F = Tomb Raider: Anniversary RLSE8P = Alien Syndrome RLSP8P = Alien Syndrome RLTENR = London Taxi: Rush Hour RLTPNR = London Taxi: Rush Hour RLTXUG = London Taxi: Rush Hour RLUE4Q = Disney's Bolt RLUP4Q = Bolt RLUX4Q = Bolt RLUY4Q = Bolt RLVE78 = Avatar: The Last Airbender RLVP78 = Avatar: The Legend of Aang RLWE78 = Ratatouille RLWJ78 = Ratatouille RLWP78 = Ratatui RLWW78 = Ratatouille RLWX78 = Ratatui RLWY78 = Ratatouille RLWZ78 = Ratatouille RLXEMJ = Luxor: Pharaoh's Challenge RLXP36 = Luxor: Pharaoh's Challenge RLYEWR = Looney Tunes: Acme Arsenal RLYPWR = Looney Tunes: Acme Arsenal RLZE4Z = Defendin' De Penguin RLZP4Z = Defendin' De Penguin RLZPXT = Defendin' De Penguin RM2E69 = Medal of Honor: Heroes 2 RM2J13 = Medal of Honor: Heroes 2 RM2P69 = Medal of Honor: Heroes 2 RM2U69 = Medal of Honor: Heroes 2 RM2X69 = Medal of Honor: Heroes 2 RM3E01 = Metroid Prime 3: Corruption RM3J01 = Metroid Prime 3: Corruption RM3P01 = Metroid Prime 3: Corruption RM4E41 = Monster 4x4: World Circuit RM4J41 = Monster 4x4: World Circuit RM4P41 = Monster 4x4: World Circuit RM5E7D = The Mummy: Tomb of the Dragon Emperor RM5P7D = The Mummy: Tomb Of The Dragon Emperor RM6EEB = Baroque RM6P99 = Baroque RM7E4F = Monster Lab RM7P4F = Monster Lab RM8E01 = Mario Party 8 RM8J01 = Mario Party 8 RM8K01 = Mario Party 8 RM8P01 = Mario Party 8 RM9EGM = Mushroom Men: The Spore Wars RM9PGM = Mushroom Men: The Spore Wars RMAE01 = Mario Power Tennis RMAJ01 = Mario Power Tennis RMAP01 = Mario Power Tennis RMBE01 = Mario Super Sluggers RMBJ01 = Super Mario Stadium: Family Baseball RMCC01 = Mario Kart Wii (Custom) RMCE01 = Mario Kart Wii RMCE02 = Wiimms MKW Fun 2010-02.p RMCE03 = Wiimms MKW Fun 2010-10.p RMCE04 = Wiimms MKW Fun 2010-12.p RMCE05 = Wiimms MKW Fun 2010-12.p RMCE06 = Wiimms MKW Fun 2010-12.ntsc RMCE07 = Wiimms MKW Retro 2011-02.ntsc RMCE08 = Wiimms MKW Fun 2011-03.ntsc RMCE09 = Wiimms MKW Fun 2011-06.ntsc RMCE10 = Wiimms MKW Fun 2011-07.ntsc RMCE11 = Wiimms MKW Fun 2011-08.ntsc RMCE12 = Wiimms MKW Fun 2011-11.ntsc RMCE13 = Wiimms MKW Fun 2012-01.ntsc RMCE14 = Wiimms MKW Revival 2012-02.ntsc RMCE15 = Wiimms MKW Boost 2012-03.ntsc RMCE16 = Wiimms MKW Fun 2012-05.ntsc RMCE17 = Wiimms MKW Fun 2012-09.ntsc RMCE18 = Wiimms MKW N64 2012-10.ntsc RMCE19 = Wiimms MKW Fun 2012-12.ntsc RMCE20 = Wiimms MKW Fun 2013-04.ntsc RMCE21 = Wiimms MKW Fun 2013-09.ntsc RMCE22 = Wiimms MKW Fun 2013-10.ntsc RMCE23 = Wiimms MKW Fun 2014-01.ntsc RMCE24 = Wiimms MKW Retro 2014-02.ntsc RMCE25 = Wiimms MKW Fun 2014-04.ntsc RMCE26 = Wiimms MKW Fun 2014-11.ntsc RMCE65 = Mario Kart Wii: Double Dash 64 RMCE66 = Mizy's Texture Pack RMCE67 = Rookie's Texture & Music Pack RMCE68 = Character Kart Wii RMCE69 = Venom Kart Wii RMCE70 = Stickboy Kart Wii RMCE71 = Funky's Riivolution RMCE72 = CtocKart Wii RMCE73 = Mario Kart Adventures RMCE74 = Mario Kart Adventures RMCE75 = Cam, Tom and Troy's CTGP Pack RMCE76 = Pro CT Pack RMCE77 = SpyKid's CT Pack RMCE78 = Mario Kart: Double Dash!! Wii RMCE79 = Super Mario Kart Wii RMCE80 = Mario Kart 64 Wii RMCE81 = Spade's Custom Track Pack RMCE82 = HD's Retro Pack RMCE83 = Glitch Kart Wii RMCE84 = Legend's Awesome CT Pack RMCE85 = Project Double Dash!! RMCE86 = Newer Mario Kart Wii Revolution!: Backward Circuits RMCE87 = Newer Mario Kart Wii Revolution!: Sunset Sun & Dark Moon RMCE88 = Kaizo Kart Wii RMCE89 = Mario Kart Extra RMCE90 = Mario Kart QZW RMCE91 = Medal Kart 64 RMCE92 = MKWLH100's Custom Track Pack RMCE93 = MKW Hack Pack RMCE94 = Custom Track Kart Wii RMCE95 = Soarin's CT Pack X RMCE96 = Mario Kart 6 RMCE97 = Mario Kart Wii Awesomeness 2 RMCE98 = Mario Kart Wii Awesomeness RMCE99 = ReedyCustomPack Ultimate RMCEA1 = Mario Kart Adventures v0.8 RMCECT = Mario Kart Wii CTGP Revolution RMCEDK = Darky Kart Wii RMCEG2 = Mario Kart Wii CTGP Revolution RMCEGP = Mario Kart Wii CTGP Revolution RMCEWS = Wine's CT Pack RMCJ01 = Mario Kart Wii RMCJ12 = Wiimms MKW Fun 2011-11 RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCK01 = Mario Kart Wii RMCP01 = Mario Kart Wii RMCP02 = Wiimms MKW Fun 2010-02.p RMCP03 = Wiimms MKW Fun 2010-10.p RMCP04 = Wiimms MKW Fun 2010-12.p RMCP05 = Custom Mario Kart Wii RMCP06 = Wiimms MKW Fun 2010-12.pal RMCP07 = Wiimms MKW Retro 2011-02.pal RMCP08 = Wiimms MKW Fun 2011-03.pal RMCP09 = Wiimms MKW Fun 2011-06.pal RMCP10 = Wiimms MKW Fun 2011-07.pal RMCP11 = Wiimms MKW Fun 2011-08.pal RMCP12 = Wiimms MKW Fun 2011-11.pal RMCP13 = Wiimms MKW Fun 2012-01.pal RMCP14 = Wiimms MKW Revival 2012-02.pal RMCP15 = Wiimms MKW Boost 2012-03.pal RMCP16 = Wiimms MKW Fun 2012-05.pal RMCP17 = Wiimms MKW Fun 2012-09.pal RMCP18 = Wiimms MKW N64 2012-10.pal RMCP19 = Wiimms MKW Fun 2012-12.pal RMCP20 = Wiimms MKW Fun 2013-04.pal RMCP21 = Wiimms MKW Fun 2013-09.pal RMCP22 = Wiimms MKW Fun 2013-10.pal RMCP23 = Wiimms MKW Fun 2014-01.pal RMCP24 = Wiimms MKW Retro 2014-02.pal RMCP25 = Wiimms MKW Fun 2014-04.pal RMCP26 = Wiimms MKW Fun 2014-11.pal RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCX = Mario Kart Wii CTGP Revolution Channel RMDE69 = Madden NFL 07 RMDP69 = Madden NFL 07 RMEJDA = Major Dream RMFE68 = AMF Bowling Pinbusters! RMFP68 = AMF Bowling Pinbusters! RMGC01 = Super Mario Galaxy RMGE01 = Super Mario Galaxy RMGE52 = Guitar Hero III Custom : Megadeth RMGJ01 = Super Mario Galaxy RMGK01 = Super Mario Galaxy RMGP01 = Super Mario Galaxy RMGR01 = Super Mario Galaxy RMHC08 = Monster Hunter Tri (Custom) RMHE08 = Monster Hunter Tri RMHJ08 = Monster Hunter Tri RMHP08 = Monster Hunter Tri RMIE20 = Margot's Word Brain RMIP7J = Margot's Word Brain RMJJC8 = Mah-jong Rally Wii RMKE01 = Mario Sports Mix RMKE02 = Custom Kart 1 RMKJ01 = Mario Sports Mix RMKP01 = Mario Sports Mix RMLEH4 = Metal Slug Anthology RMLJH4 = Metal Slug Complete RMLK52 = Metal Slug Complete RMLP7U = Metal Slug Anthology RMLPH4 = Metal Slug Anthology RMME7U = Mercury Meltdown Revolution RMMJ7U = Tama-run RMMP52 = Guitar Hero III Custom : Metal Mayhem RMMP7U = Mercury Meltdown Revolution RMNDFR = My Pet Hotel RMNHMN = My Pet Hotel RMNHMR = My Pet Hotel RMNPFR = My Pet Hotel RMOE52 = Monster Jam RMOP52 = Monster Jam RMPE54 = MLB Power Pros RMPP54 = MLB Power Pros RMQENR = Myth Makers: Orbs of Doom RMQPUG = Myth Makers: Orbs of Doom RMQXUG = Myth Makers: Orbs of Doom RMRE5Z = Cocoto Magic Circus RMRPNK = Cocoto Magic Circus RMRXNK = Cocoto Magic Circus RMSE52 = Marvel: Ultimate Alliance 2 RMSP52 = Marvel: Ultimate Alliance 2 RMTJ18 = Momotarô Dentetsu 16 RMUE52 = Marvel: Ultimate Alliance RMUJ2K = Marvel: Ultimate Alliance RMUP52 = Marvel: Ultimate Alliance RMVE69 = Medal of Honor: Vanguard RMVP69 = Medal of Honor: Vanguard RMVX69 = Medal of Honor: Vanguard RMWE20 = M&M's Kart Racing RMWP20 = M&M's Kart Racing RMXE78 = MX vs. ATV: Untamed RMXF78 = MX vs. ATV: Untamed RMXP78 = MX vs. ATV: Untamed RMYE5Z = Myth Makers: Super Kart GP RMYPUG = Myth Makers: Super Kart GP RMYXUG = Myth Makers: Super Kart GP RMZE5Z = Myth Makers: Trixie in Toyland RMZPUG = Myth Makers: Trixie in Toyland RN2EAF = Namco Museum Remix RN2K70 = Namco Museum Remix RN2P70 = Namco Museum Remix RN3E78 = Nicktoons: Attack of the Toybots RN3J78 = Nicktoons: Attack of the Toybots RN3P78 = Nicktoons: Attack of the Toybots RN3X78 = Nicktoons: Attack Of The Toybots RN4E41 = Dawn of Discovery RN4P41 = ANNO: Create a New World RN5E78 = The Naked Brothers Band: The Video Game RN5P78 = The Naked Brothers Band: The Video Game RN6ENR = North American Hunting Extravaganza RN6P7J = North American Hunting Extravaganza RN7E78 = Neighborhood Games RN7P78 = Big Family Games RN8JC8 = Nobunaga no Yabou Kakushin with Power-Up Kit RN9E4F = Escape from Bug Island RN9JEL = Necro-Nesia RN9P4F = Escape From Bug Island RNAE69 = NCAA Football 09 RNBE69 = NBA Live 08 RNBP69 = NBA Live 08 RNBX69 = NBA Live 08 RNCEH4 = SNK Arcade Classics Volume 1 RNCPH4 = SNK Arcade Classics Volume 1 RNDJAF = Nodame Cantabile Dream Orchestra RNEEDA = Naruto Shippuden: Clash of Ninja Revolution 3 RNEJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX 3 RNEPDA = Naruto Shippuden: Clash of Ninja Revolution 3 RNFE69 = Madden NFL 08 RNFP69 = Madden NFL 08 RNGJ99 = Negima!? Neo-Pactio Fight!! RNHE41 = No More Heroes RNHJ99 = No More Heroes RNHK8M = No More Heroes RNHP41 = No More Heroes RNHP99 = No More Heroes RNIPGT = Mind, Body & Soul: Nutrition Matters RNJE4F = Mini Ninjas RNJP4F = Mini Ninjas RNKE69 = NERF N-Strike RNKP69 = NERF N-Strike RNLE54 = NHL 2K9 RNLP54 = NHL 2K9 RNME5Z = Ninjabread Man RNMPUG = Ninjabread Man RNMXUG = Ninjabread Man RNNE4Q = The Chronicles of Narnia: Prince Caspian RNNJ4Q = The Chronicles of Narnia: Prince Caspian RNNP4Q = As Crónicas de Narnia: o Príncipe Caspian RNNX4Q = As Crónicas de Narnia: o Príncipe Caspian RNNY4Q = As Crónicas de Narnia: o Príncipe Caspian RNNZ4Q = As Crónicas de Narnia: o Príncipe Caspian RNOJ01 = Another Code R Kioku no Tobira RNOP01 = Another Code: R - A Journey into Lost Memories RNPE69 = Need for Speed: ProStreet RNPJ13 = Need for Speed: ProStreet RNPK69 = Need for Speed: ProStreet RNPP69 = Need for Speed: ProStreet RNPX69 = Need for Speed: ProStreet RNPY69 = Need for Speed: ProStreet RNRE41 = Nitro Bike RNRJ41 = Nitro Bike RNRP41 = Nitro Bike RNSD69 = Need for Speed: Carbon RNSE69 = Need for Speed Carbon RNSF69 = Need for Speed: Carbon RNSJ13 = Need for Speed: Carbon RNSP69 = Need for Speed Carbon RNSX69 = Need for Speed: Carbon RNUE8P = Nancy Drew: The White Wolf of Icicle Creek RNVE5Z = Anubis II RNVP5Z = Anubis II RNVPUG = Anubis II RNVXUG = Anubis II RNWJAF = Namco Carnival RNWKAF = Namco Museum Remix RNXEDA = Naruto: Clash of Ninja Revolution RNXJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX RNXPDA = Naruto: Clash of Ninja Revolution RNYEDA = Naruto: Clash of Ninja Revolution 2 RNYJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX 2 RNYPDA = Naruto: Clash of Ninja Revolution 2 RNZE69 = Ninja Reflex RNZJ13 = Ninja Reflex RNZK69 = Ninja Reflex RNZP69 = Ninja Reflex RO2E7N = Ford Racing Off Road RO2P7N = Off Road RO3EXJ = Little King's Story RO3J99 = Little King's Story RO3P99 = Little King's Story RO4JDA = Toshinden RO5E52 = Hot Wheels: Battle Force 5 RO5P52 = Hot Wheels: Battle Force 5 RO7E7D = Legend of Spyro: The Eternal Night RO7P7D = The Legend of Spyro: The Eternal Night RO8E7D = Legend of Spyro: Dawn of the Dragon RO8P7D = The Legend of Spyro: Dawn of the Dragon RO8X7D = The Legend of Spyro: Dawn of the Dragon RO9EFS = Aqua Panic! RO9PNK = Aqua Panic! ROAE36 = Overlord: Dark Legend ROAP36 = Overlord: Dark Legend ROBE7U = Obscure: The Aftermath ROBPPL = Obscure 2 ROCE5Z = Cocoto Kart Racer ROCPNK = Cocoto Kart Racer RODE01 = WarioWare: Smooth Moves RODJ01 = WarioWare: Smooth Moves RODK01 = WarioWare: Smooth Moves RODP01 = WarioWare: Smooth Moves ROEEJZ = Hotel for Dogs ROEPGT = Hotel For Dogs ROFE5Z = Offroad Extreme Special Edition ROFPUG = Offroad Extreme! ROFXUG = Offroad Extreme! ROGE78 = Tak and the Guardians of Gross ROGP78 = Tak and the Guardians of Gross ROHJAF = Happy Dance Collection ROJE52 = Rapala: We Fish ROJP52 = Rapala: We Fish ROKJ18 = Karaoke Joysound Wii ROLE8P = Mario & Sonic at the Olympic Winter Games ROLJ01 = Mario & Sonic at the Olympic Winter Games ROLK01 = Mario & Sonic at the Olympic Winter Games ROLP8P = Mario & Sonic Nos Jogos Olímpicos de Inverno ROMESD = Monster Hunter G (English Patched) ROMJ08 = Monster Hunter G RONEG9 = Onechanbara: Bikini Zombie Slayers RONJG9 = Onechanbara Revolution RONPG9 = Onechanbara: Bikini Zombie Slayers ROPE41 = Open Season ROPP41 = Open Season ROQJEP = Baroque For Wii ROSJ01 = Takt of Magic ROTE20 = Twin Strike: Operation Thunder ROTP20 = Twin Strike: Operation Thunder ROTP7J = Twin Strike: Operation Thunder ROUJAF = One Piece Unlimited Cruise 1: The Treasure Beneath the Waves ROUPAF = One Piece Unlimited Cruise 1: The Treasure Beneath the Waves ROVE6U = Playmobil: Circus ROVPHM = Playmobil: Circus ROWE08 = Okami ROWJ08 = Okami ROWP08 = Okami ROXE20 = Order Up! ROXP7J = Order Up! ROXX7J = Order Up! ROYE41 = Cloudy with a Chance of Meatballs ROYP41 = Cloudy with a Chance of Meatballs ROYX41 = Cloudy with a Chance of Meatballs RP2E69 = Smarty Pants RP2P69 = Smarty Pants RP3JAF = Pro Golfer Saru RP4E69 = MySims Party RP4J13 = Boku To Sim No Machi Party RP4P69 = MySims Party RP5JA4 = Jikkyou Powerful Pro Baseball 15 RP6E41 = Petz Crazy Monkeyz RP6P41 = Petz Monkey Madness RP7E52 = Pirates: Hunt for Blackbeard's Booty RP7P52 = Pirates: Hunt for Blackbeard's Booty RP9ERS = Space Chimps RP9PRS = Space Chimps RP9XRS = Space Chimps RPAF70 = Kid Paddle: Lost in the Game RPBE01 = Pokémon Battle Revolution RPBJ01 = Pokémon Battle Revolution RPBP01 = Pokémon Battle Revolution RPCE20 = Puzzler Collection RPCP41 = Puzzler Collection RPCX7J = Puzzler Collection RPDEGN = PDC World Championship Darts 2008 RPDPGN = PDC World Championship Darts 2008 RPFE52 = Pitfall: The Big Adventure RPFP52 = Pitfall: The Big Adventure RPFU52 = Pitfall: The Big Adventure RPGE5D = Rampage: Total Destruction RPGP5D = Rampage: Total Destruction RPHPPN = Peppa Pig: The Game RPIE52 = Pimp My Ride RPIP52 = Pimp My Ride RPJE7U = Arc Rise Fantasia RPJJ99 = Arc Rise Fantasia RPKE52 = World Series of Poker: Tournament of Champions 2007 Edition RPKP52 = World Series of Poker: Tournament of Champions 2007 Edition RPLE52 = Rapala Tournament Fishing RPLP52 = Rapala Tournament Fishing RPMJA4 = Jikkyou Powerful Pro Major League 2 RPNE78 = Paws & Claws: Pet Resort RPOEC8 = Opoona RPOJC8 = Opoona RPOPC8 = Opoona RPPE41 = Prince of Persia: Rival Swords RPPP41 = Prince of Persia: Rival Swords RPQES5 = Pool Party RPQPS5 = Pool Party RPSE4Q = Disney Princess: Enchanted Journey RPSJ4Q = Disney Princess Wii RPSP4Q = Disney Princess: Enchanted Journey RPTD52 = Puppy Luv RPTE52 = Puppy Luv: Your New Best Friend RPTP52 = Puppy Luv: Your New Best Friend RPUJ8P = Puyo Puyo! 15th Anniversary RPVE4Z = Purr Pals RPVPKM = Purr Pals RPWX41 = Prince of Persia: The Forgotten Sands RPWZ41 = Prince of Persia: The Forgotten Sands RPXE69 = EA Playground RPXJ13 = EA Playground RPXP69 = EA Playground RPYE9B = Super Swing Golf RPYJ9B = Super Swing Golf RPYP9B = Pangya! Golf With Style RPZJA4 = Jikkyou Powerful Pro Baseball Wii Ketteiban RQ2JK6 = Crazy Climber Wii RQ3PGN = PDC World Championship Darts 2009 RQ4E78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ4J78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ4P78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ5E5G = Mad Dog McCree Gunslinger Pack RQ5P5G = Mad Dog McCree Gunslinger Pack RQ5X5G = Mad Dog McCree Gunslinger Pack RQ6EJJ = Cursed Mountain RQ6PKM = Cursed Mountain RQ6XKM = Cursed Mountain RQ7E20 = Martian Panic RQ7PXT = Martian Panic RQ8E08 = MotoGP 08 RQ8P08 = MotoGP RQ9E69 = NBA Live 09 All-Play RQ9F69 = NBA Live 09 All-Play RQ9P69 = NBA Live 09 All-Play RQ9S69 = NBA Live 09 All-Play RQBENR = Kawasaki Quad Bikes RQBPNR = Kawasaki Quad Bikes RQBPUG = Kawasaki Quad Bikes RQBXUG = Kawasaki Quad Bikes RQCEAF = The Munchables RQCJAF = Tabemon RQEE6U = Agatha Christie: Evil Under the Sun RQEP6V = Agatha Christie: Evil Under the Sun RQFE6U = Safecracker: The Ultimate Puzzle Adventure RQFP6V = Safecracker RQGE69 = MySims Racing RQGJ13 = MySims Racing RQGJ69 = Boku To Sim No Machi Racing RQGP69 = MySims Racing RQIJ01 = Minna ga Shuyaku no NHK Kouhaku Quiz Kassen RQJE7D = Crash of the Titans RQJP7D = Crash of the Titans RQJX7D = Crash of the Titans RQKE41 = Circus Games RQKP41 = Fun Fair Party RQLE64 = Star Wars The Clone Wars: Republic Heroes RQLP64 = Star Wars The Clone Wars: Republic Heroes RQMEVN = Ocean Commander RQMPVN = Ocean Commander RQNEWR = Scooby-Doo! First Frights RQNPWR = Scooby-Doo! First Frights RQOE69 = Spore Hero RQOJ13 = Spore Hero RQOP69 = Spore Hero RQPE52 = Cabela's Trophy Bucks RQPP52 = Cabela's Trophy Bucks RQPZ52 = Cabela's Monster Buck Hunter RQQE52 = Guitar Hero III Custom : Queen RQQE70 = Backyard Football '09 RQREXJ = The Sky Crawlers: Innocent Aces RQRJAF = The Sky Crawlers: Innocent Aces RQRPAF = The Sky Crawlers: Innocent Aces RQSE4Z = Pinball Hall of Fame: The Gottlieb Collection RQSP6M = Gottlieb Pinball Classics RQTE6U = Agatha Christie: And Then There Were None RQTP6V = Agatha Christie: And Then There Were None RQUEFS = Super PickUps RQVE20 = Pacific Liberator RQVP20 = Pacific Liberator RQWEG9 = Puzzle Quest: Challenge of the Warlords RQWPG9 = Puzzle Quest: Challenge of the Warlords RQXP70 = Asterix Jogos Olímpicos RQYENR = Fantasy Aquarium World RQZE41 = Monster 4x4: Stunt Racer RQZP41 = Monster 4x4: Stunt Racer RR2ENR = Rig Racer 2 RR2PNR = Rig Racer 2 RR2PUG = Rig Racer 2 RR3EA4 = Ultimate Party Challenge RR3JA4 = Family Challenge Wii RR3PA4 = Let's Party! RR4EGY = Build-A-Bear Workshop: A Friend Fur All Seasons RR4PFK = Build-A-Bear Workshop: A Friend Fur All Seasons RR5E70 = Ready 2 Rumble Revolution RR5P70 = Ready 2 Rumble Revolution RR7PVP = Real Madrid The Game RR8PUJ = International Athletics RR9E78 = WWE SmackDown vs. Raw 2009 RRAE5Z = Rock 'N' Roll Adventures RRAPUG = Rock 'N' Roll Adventures RRAXUG = Rock 'N' Roll Adventures RRBE41 = Rayman Raving Rabbids RRBJ41 = Rayman Raving Rabbids RRBP41 = Rayman Raving Rabbids RRCE52 = Barbie Horse Adventures: Riding Camp RRCP52 = Barbie Horse Adventures: Riding Camp RRDE69 = Rock Band Track Pack: Vol. 2 RRDP69 = Rock Band Song Pack 2 RREE69 = Rock Band Track Pack: Vol. 1 RREP69 = Rock Band Song Pack 1 RRFEE9 = Reel Fishing: Angler's Dream RRFPE9 = Reel Fishing: Angler's Dream RRGE52 = Madagascar: Escape 2 Africa RRGP52 = Madagascar 2: Escape 2 Africa RRHPUJ = Mary King's Riding School 2 RRHXUJ = Mary King's Riding School 2 RRIPTV = Paint Party RRJFMR = Ready Steady Cook: The Game RRJIMR = Ready Steady Cook: The Game RRJPMR = Ready Steady Cook: The Game RRKE70 = Alone in the Dark RRKP70 = Alone in the Dark RRLE78 = Bratz: Girlz Really Rock RRLP78 = Bratz: Girlz Really Rock RRLX78 = Bratz: Girlz Really Rock RRLY78 = Bratz: Girlz Really Rock RRLZ78 = Bratz: Girlz Really Rock RRME69 = Hasbro: Family Game Night RRMP69 = Hasbro: Family Game Night RRMX69 = Hasbro: Family Game Night RRPE41 = The Price Is Right RRQE52 = Shrek's Carnival Craze Party Games RRQP52 = Shrek's Carnival Craze Party Games RRQX52 = Shrek's Carnival Craze Party Games RRRE5Z = Real Heroes: Firefighter RRRPRM = Real Heroes: Firefighter RRSE4Q = Meet The Robinsons RRSJ4Q = Meet The Robinsons RRSP4Q = Meet The Robinsons RRSX4Q = Meet The Robinsons RRTE52 = Block Party 20 Games RRTP52 = Block Party! 20 Games RRUEJF = Winter Sports 2: The Next Challenge RRUFRT = Winter Sports 2009: The Next Challenge RRUJJF = Winter Sports 2009 The Next Challenge RRUPRT = Winter Sports 2009: The Next Challenge RRVENR = Battle Rage: Mech Conflict RRVPNR = Battle Rage: The Robot Wars RRWJAF = Super Robot Taisen NEO RRXE5Z = Monster Trux Arenas: Special Edition RRXPUG = Monster Trux Arenas RRXXUG = Monster Trux Arenas RRYEHG = Rogue Trooper: Quartz Zone Massacre RRYPHY = Rogue Trooper: Quartz Zone Massacre RRZEGY = Rubik's World RRZPGY = Rubik's Puzzle World RS2E20 = Ultimate Duck Hunting RS2EGJ = Ultimate Duck Hunting RS2PGJ = Ultimate Duck Hunting RS3E52 = Spider-Man 3 RS3J52 = Spider-Man 3 RS3P52 = Spider-Man 3 RS3X52 = Spider-Man 3 RS4EXS = Castle of Shikigami III RS4JJF = Shikigami No Shiro III RS4PXS = Castle Of Shikigami III RS5EC8 = Samurai Warriors: Katana RS5JC8 = Sengoku Musou KATANA RS5PC8 = Samurai Warriors: Katana RS7J01 = Eyeshield 21 Field Saikyo no Senshi Tachi RS8J8N = Shanghai RS9E8P = Sonic Riders: Zero Gravity RS9J8P = Sonic Riders: Shooting Star Story RS9P8P = Sonic Riders: Zero Gravity RSAE78 = SpongeBob's Atlantis SquarePantis RSAP78 = SpongeBob's Atlantis SquarePantis RSBE01 = Super Smash Bros. Brawl RSBE02 = Super Smash Bros. Project M Red Version RSBE03 = Super Smash Bros. Brawl DX RSBE04 = Super Smash Bros. Project M+ RSBE05 = Super Smash Bros. Project M Patt Edition RSBE06 = Darkon360's Brawl Hack Pack RSBE07 = Super Smash Bros. Project M: Theytah's Custom Build RSBE08 = Smash Bros. Infinite RSBE09 = Springboy64's Brawl Hack Pack RSBE10 = Brawl Ying Yang Edition RSBE11 = Professor MGW's Tournament Hack Pack #1 RSBE12 = Professor MGW's Tournament Hack Pack #2 RSBE13 = Professor MGW's Hack Pack #3 RSBE14 = Super Smash Bros. Brawl- Zeus RSBE15 = Super Smash Bros. Brawl Minus Mugen RSBE16 = Super Smash Bros. Brawl Shock RSBE17 = Super Smash Bros. Brawl - Battlefield Build RSBE18 = Super Smash Bros. Project M: Tournament Hack Pack RSBE19 = Super Smash Bros. Project M: Fully Dressed Edition RSBE20 = Pikezer's BrawlEx Pack RSBE21 = Calabrel's Custom Project M Build RSBE22 = Project M: Rage83's Competitive Custom Build RSBE23 = Super Smash Bros. Project M: Justice Build RSBE24 = Super Smash Bros. 3 RSBE25 = Super Smash Bros. Red Version RSBE26 = Super Smash Bros. Silver RSBE27 = Springboy64's Super Smash Bros. Brawl Hack Pack RSBE28 = SuperYoshiStar's Super Smash Bros. Brawl Hack Pack RSBE29 = Super Smash Bros. Project M: YoeiX Custom Build RSBE30 = Super Smash Bros. Project M: Arko's Loaded Custom Build RSBE31 = Super Smash Bros. Project M: Arko's Tournament Custom Build RSBE32 = Super Smash Bros. Project M: Sempai's Build RSBE33 = Super Smash Bros. Brawl Yin Yang Edition 2: The Balance of Kyu RSBE34 = Super Smash Bros. Project U: Blue Version RSBE35 = Super Smash Bros. Brawl Legacy: Project M RSBE36 = Super Smash Bros. Project Best RSBE37 = Super Smash Bros. Project M: Psycho Ghost's Build RSBE38 = Super Smash Sisters Generations RSBE39 = Super Smash Bros. Ultra Project M RSBE40 = Super Smash Bros. Project M: Ragnarok Edition RSBE41 = Super Smash Bros. Project M: Calabrel's Custom Build RSBE42 = Super Smash Bros. Project M: RedX Anime/Game Custom Build RSBEBB = Super Smash Bros. Balanced Brawl RSBEBM = Super Smash Bros. Brawl Minus RSBEBP = Super Smash Bros. Brawl Plus RSBEC3 = Super Smash Bros. Project M 3.5 Netplay Build RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBEWM = Super Smash Bros. Project M Wi-Fi RSBJ01 = Dairantou Smash Brothers X RSBK01 = Dairantou Smash Brothers X RSBP01 = Super Smash Bros. Brawl RSCD7D = Scarface: The World Is Yours RSCE7D = Scarface: The World Is Yours RSCP7D = Scarface: The World Is Yours RSCU7D = Scarface: The World Is Yours RSDJAF = SD Gundam: Scad Hammers RSEJGD = Soul Eater Monotone Princess RSFC99 = Muramasa: The Demon Blade (Custom) RSFE7U = Muramasa: The Demon Blade RSFJ99 = Oboro Muramasa RSFP99 = Muramasa: The Demon Blade RSHE69 = MySims Kingdom RSHJ13 = Boku to Sim no Machi Kingdom RSHK69 = MySims Kingdom RSHP69 = MySims Kingdom RSIE69 = MySims RSIJ13 = Boku To Sim No Machi RSIP69 = MySims RSJE41 = Broken Sword: Shadow of the Templars (Director's Cut) RSJESD = Guitar Hero III Custom : System of a Down RSJP41 = Broken Sword: Shadow of the Templars - The Director's Cut RSKE52 = Shrek The Third RSKP52 = Shrek The Third RSKX52 = Shrek The Third RSLEAF = Soulcalibur: Legends RSLJAF = Soulcalibur: Legends RSLKAF = Soulcalibur: Legends RSLPAF = Soulcalibur: Legends RSME8P = Super Monkey Ball: Banana Blitz RSMJ8P = Super Monkey Ball: Banana Blitz RSMP8P = Super Monkey Ball: Banana Blitz RSND69 = The Simpsons Game RSNE69 = The Simpsons Game RSNF69 = The Simpsons Game RSNP69 = The Simpsons Game RSNX69 = The Simpsons Game RSOE4Z = Solitaire & Mahjong RSOP4Z = Solitaire & Mahjong RSPE01 = Wii Sports RSPJ01 = Wii Sports RSPK01 = Wii Sports RSPP01 = Wii Sports RSPW01 = Wii Sports RSQEAF = We Ski RSQJAF = Family Ski RSQPAF = Family Ski RSRE8P = Sonic and the Secret Rings RSRJ8P = Sonic and the Secret Rings RSRP8P = Sonic and the Secret Rings RSSEH4 = Samurai Shodown Anthology RSSJH4 = Samurai Spirits: Rokuban Shoubu RSSK52 = Samurai Shodown Anthology RSSP7U = Samurai Shodown Anthology RSTE64 = Star Wars: The Force Unleashed RSTJ52 = Star Wars: The Force Unleashed RSTP64 = Star Wars: The Force Unleashed RSUENR = Summer Sports: Paradise Island RSUP41 = Sports Party RSVE8P = Sonic Unleashed RSVJ8P = Sonic World Adventure RSVP8P = Sonic Unleashed RSWE08 = Spyborgs RSWP08 = Spyborgs RSXE69 = SSX Blur RSXJ13 = SSX Blur RSXK69 = SSX Blur RSXP69 = SSX Blur RSXX78 = Guitar Hero RadioHead RSYE20 = Showtime Championship Boxing RSYP06 = Super Smash Bros. Brawl : YF06's Mod RSYP7J = Showtime Championship Boxing RSZJES = Yukinko Daisenpuu RSZPGT = Legend of Sayuki RT2E20 = Arctic Tale RT2P20 = Arctic Tale RT2P7J = Arctic Tale RT3E54 = Rockstar Games Presents: Table Tennis RT3JEL = Rockstar Games Presents: Table Tennis RT3P54 = Rockstar Games Presents: Table Tennis RT4EAF = Tales of Symphonia: Dawn of the New World RT4JAF = Tales Of Symphonia: Ratatosk no Kishi RT4PAF = Tales of Symphonia: Dawn of the New World RT5E8P = SEGA Superstars Tennis RT5P8P = SEGA Superstars Tennis RT6FKM = Magic Roundabout RT6PKM = The Magic Roundabout RT7E69 = Tiger Woods PGA Tour 07 RT7F69 = Tiger Woods PGA Tour 07 RT7P69 = Tiger Woods PGA Tour 07 RT8E69 = Tiger Woods PGA Tour 08 RT8J13 = Tiger Woods PGA Tour Golf 08 RT8K69 = Tiger Woods PGA Tour Golf 08 RT8P69 = Tiger Woods PGA Tour 08 RT9E52 = Tony Hawk's Proving Ground RT9P52 = Tony Hawk's Proving Ground RTAE41 = Tom Clancy's H.A.W.X. 2 RTAP41 = Tom Clancy's H.A.W.X. 2 RTBE52 = Rapala Fishing Frenzy RTBP52 = Rapala Fishing Frenzy RTCE41 = Tom Clancy's Splinter Cell: Double Agent RTCP41 = Tom Clancy's Splinter Cell: Double Agent RTDE6K = The Monkey King: The Legend Begins RTDJES = Shin Chuuka Taisen RTDK8M = Shin Chuuka Taisen RTEE78 = Paws & Claws: Pet Vet RTEHMR = Real Stories: Veterinaire RTEPFR = My Vet Practice RTFE52 = Transformers: The Game RTFJ52 = Transformers: The Game RTFK52 = Transformers: The Game RTFP52 = Transformers: The Game RTFX52 = Transformers: The Game RTFY52 = Transformers: The Game RTGJ18 = Wi-Fi Taiô Gensen Table Games Wii RTHE52 = Tony Hawk's Downhill Jam RTHP52 = Tony Hawk's Downhill Jam RTIE8P = Wacky World of Sports RTIJ8P = Wacky World of Sports RTIP8P = Wacky World of Sports RTJE68 = Star Trek: Conquest RTJP68 = Star Trek: Conquest RTKE5Z = Octomania RTKJDQ = Sharuui Takoron RTKK8M = Sharuui Takoron RTLE18 = Fishing Master: World Tour RTLJ18 = Mezase Tsuri Master Sekai Ni Challenge Hen RTLP18 = Fishing Master: World Tour RTME41 = TMNT RTMP41 = TMNT: Teenage Mutant Ninja Turtles RTNE41 = Tenchu: Shadow Assassins RTNJCQ = Tenchu 4 RTNP41 = Tenchu: Shadow Assassins RTOJ8P = 428: Fuusa Sareta Shibuya de RTPP41 = Top Trumps Adventures RTQENR = Monster Trux Offroad RTQPUG = Monster Trux Offroad RTQXUG = Monster Trux Offroad RTRE18 = Fishing Master RTRJ18 = Mezase Tsuri Master RTRP18 = Fishing Master RTSEVN = Totally Spies! Totally Party RTSP41 = Totally Spies! Totally Party RTTJAF = Tamagotchi no Furifuri Kagekidan RTUEJJ = Secret Files Tunguska RTUFKM = Secret Files: Tunguska RTUPKM = Secret Files: Tunguska RTVE64 = Thrillville: Off the Rails RTVP64 = Thrillville: Off The Rails RTWE5D = TNA iMPACT! RTWP5D = TNA iMPACT! RTYP01 = Wii Chess RTZE08 = Zack & Wiki: Quest for Barbaros' Treasure RTZJ08 = Takarajima Z Barbaros' Treasure RTZK08 = Zack & Wiki: Quest For Barbaros' Treasure RTZP08 = Zack & Wiki: Quest For Barbaros' Treasure RU1P4Q = Disney Sing It:: Sing It Star Singstar 1 RU2E5Z = Winter Sports 2: The Next Challenge RU2P4Q = Disney Sing It: Sing It Star Singstar 2 RU2P5Z = Winter Sports 2 The Next Challenge RU3E5Z = Summer Athletics: The Ultimate Challenge RU4E41 = My Fitness Coach 2: Exercise & Nutrition RU4X41 = NewU Fitness First Personal Trainer RU5E4Q = The Princess and the Frog RU5P4Q = A Princesa e o Sapo RU5V4Q = Disney: The Princess and the Frog RU5X4Q = Disney: The Princess and the Frog RU5Y4Q = The Princess and the Frog (Riverboat Jazz Edition) RU6EHG = Free Running RU6PHY = Free Running RU7E5G = Night at the Museum: Battle of the Smithsonian - The Video Game RU7X5G = Night at the Museum: Battle of the Smithsonian - The Video Game RU8EFS = Bass Pro Shops: The Hunt RU9EGT = My Ballet Studio RU9PGT = Diva Girls: Diva Ballerina RUAE52 = Monster Jam: Urban Assault RUAP52 = Monster Jam: Urban Assault RUBEVN = Ultimate Board Game Collection RUBP7N = Ultimate Board Game Collection RUCE5Z = Winter Sports: The Ultimate Challenge RUCPRT = Winter Sports 2008: The Ultimate Challenge RUCXRT = Winter Sports 2008: The Ultimate Challenge RUEE4Q = G-Force RUEP4Q = G-Force RUEX4Q = G-Force RUEY4Q = G-Force RUFEMV = Rune Factory: Frontier RUFJ99 = Rune Factory: Frontier RUFP99 = Rune Factory: Frontier RUGE7T = Goosebumps: HorrorLand RUGP5G = Goosebumps: HorrorLand RUHE52 = Bakugan Battle Brawlers RUHP52 = Bakugan Battle Brawlers RUHX52 = Bakugan Battle Brawlers (Toys R Us Edition) RUHZ52 = Bakugan Battle Brawlers RUIE4Q = Disney: Sing It RUIGGD = SingItStar Ned. 80's RUIP4Q = Disney: Sing It RUIX4Q = Disney: Sing It RUKEGT = Rolling Stone: Drum King RUKPGT = We Rock: Drum King RULE4Q = Ultimate Band RULP4Q = Ultimate Band RUME5Z = Ski and Shoot RUMPFR = Summer Athletics RUNJ0Q = New Unou Kids Wii EX RUOEPL = Aliens in the Attic RUOPPL = Aliens in the Attic RUPJC8 = Winning Post 7 Maximum 2008 RUQD78 = Up RUQE78 = Up RUQI78 = Up RUQJJE = Carl jii san no sora tobu Ie RUQP78 = Up RUQS78 = Up RUQX78 = Up RUREPL = Pool Hall Pro RURPPL = Pool Hall Pro RUSE78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUSK78 = SpongeBob SquarePants Featuring Nicktoons: Globs of Doom RUSP78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUSX78 = SpongeBob SquarePants Featuring Nicktoons: Globs of Doom RUSY78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUUE01 = Animal Crossing: City Folk RUUJ01 = Machi He Ikouyo: Doubutsu no Mori RUUK01 = Animal Crossing: City Folk RUUP01 = Animal Crossing: Let's Go to the City RUWJC8 = Winning Post World RUXPUG = Urban Extreme: Street Rage RUXXUG = Urban Extreme: Street Rage RUYE41 = No More Heroes 2: Desperate Struggle RUYJ99 = No More Heroes 2: Desperate Struggle RUYP99 = No More Heroes 2: Desperate Struggle RUZE7T = Ultimate I SPY RUZP5G = Ultimate I SPY RV2E5D = Game Party 2 RV2P5D = More Game Party RV3P6N = Clever Kids: Creepy Crawlies RV7SMR = Survivor RV8E20 = Beach Fun: Summer Challenge RV8PRT = Beach Fun: Summer Challenge RV9E78 = Avatar: The Last Airbender - Into the Inferno RV9P78 = Avatar: The Legend of Aang - Into the Inferno RVAE78 = Avatar: The Last Airbender - The Burning Earth RVAP78 = Avatar: The Legend of Aang - The Burning Earth RVBERS = Alvin and the Chipmunks RVBPRS = Alvin and the Chipmunks RVDPLG = Diabolik: The Original Sin RVEFMR = Bienvenue Chez Les Ch'tis RVFE20 = Bigfoot: Collision Course RVFP7J = Bigfoot: Collision Course RVGE78 = Merv Griffin's Crosswords RVGP78 = Margot's Word Brain RVHP41 = Scrabble Interactive: 2009 Edition RVIE4F = Bionicle Heroes RVIP4F = Bionicle Heroes RVJPFR = So Blonde: Back to the Island RVKEXJ = Valhalla Knights: Eldar Saga RVKJ99 = Valhalla Knights Elder Saga RVKKZA = Valhalla Knights: Eldar Saga RVKP99 = Eldar Saga RVLPA4 = Rock Revolution RVNE20 = Calvin Tucker's Redneck Jamboree RVNP20 = Calvin Tucker's Redneck Jamboree RVNP7J = Calvin Tucker's Redneck Jamboree RVOEPL = Vertigo RVOPPL = Vertigo RVPEFS = PopStar Guitar RVPPFS = PopStar Guitar RVQE41 = Movie Games RVQP41 = Movie Studios Party RVREFS = Rebel Raiders: Operation Nighthawk RVRPFS = Rebel Raiders: Operation Nighthawk RVRPKG = Rebel Raiders: Operation Nighthawk RVSE69 = Skate It RVSJ13 = Skate It RVSP69 = Skate It RVTFMR = Real Stories: Veterinaire RVTPMR = My Pet Club RVTXMR = Real Stories: Veterinaire RVUE8P = Virtua Tennis 2009 RVUP8P = Virtua Tennis 2009 RVVE78 = Big Beach Sports RVVP78 = Big Beach Sports RVXFRT = RTL Biathlon 2009 RVXPRT = RTL Biathlon 2009 RVYD52 = Call of Duty: World at War RVYE52 = Call of Duty: World at War RVYK52 = Call of Duty: World at War RVYP52 = Call of Duty: World at War RVYX52 = Call of Duty: World at War RVYY52 = Call of Duty: World at War RVZE52 = Monsters vs. Aliens RVZP52 = Monsters vs. Aliens RW3E4Q = Pirates of the Caribbean: At World's End RW3J4Q = Pirates Of The Caribbean: At World's End RW3P4Q = Piratas das Caraibas: Nos confins do Mundo RW4D41 = My Word Coach: Develop your vocabulary RW5F41 = Who Wants To Be A Millionaire: 2nd Edition RW5P41 = Who Wants To Be A Millionaire: 2nd Edition RW6PA4 = Dance Dance Revolution: Winx Club RW7E41 = Shaun White Snowboarding: Road Trip - Target Limited Edition RW8P41 = Imagine Champion Rider RW9P78 = WWE SmackDown vs. Raw 2009 RW9X78 = WWE SmackDown vs. Raw 2009 RWAD78 = WALL•E RWAE78 = WALL•E RWAJ78 = WALL•E RWAK78 = WALL•E RWAP78 = WALL•E RWAR78 = WALL•E RWAU78 = WALL•E RWAX78 = WALL•E RWAY78 = WALL•E RWAZ78 = WALL•E RWBENR = Kawasaki Snowmobiles RWBXUG = Kawasaki Snow Mobiles RWCE4Z = Pinball Hall of Fame: The Williams Collection RWCP4Z = Pinball: Hall Of Fame RWCP6M = Williams Pinball Classics RWDC52 = Guitar Hero III Custom: WD Custom RWDE5G = Wild Earth: African Safari RWDP5G = Wild Earth: African Safari RWEEA4 = Pro Evolution Soccer 2008 RWEJA4 = Winning Eleven PLAY MAKER 2008 RWEPA4 = Pro Evolution Soccer 2008 RWFH41 = My Word Coach: Develop your vocabulary RWGE08 = We Love Golf! RWGJ08 = We Love Golf! RWGP08 = We Love Golf! RWHP4F = Top Trumps: Doctor Who RWIE18 = Wing Island RWIJ18 = Wing Island RWIP18 = Wing Island RWJENR = WordJong Party RWKE5G = Cooking Mama: World Kitchen RWKPGT = Cooking Mama 2: World Kitchen RWLE01 = Wario Land: Shake It! RWLJ01 = Warioland Shake RWLK01 = Wario Land Shaking RWLP01 = Wario Land: The Shake Dimension RWME78 = Worms: A Space Oddity RWMP78 = Worms: A Space Oddity RWNF70 = Warning: Code De La Route RWOE69 = Monopoly RWOJ13 = Monopoly RWOP69 = Monopoly RWQPSP = WSC Real 08: World Snooker Championship RWRE4F = Wacky Races: Crash & Dash RWRP4F = Wacky Races: Crash & Dash RWSE8P = Mario & Sonic at the Olympic Games RWSJ01 = Mario & Sonic at the Olympic Games RWSK01 = Mario & Sonic at the Olympic Games RWSP8P = Mario & Sonic nos Jogos Olímpicos RWTEG9 = Ben 10: Alien Force RWTPG9 = Ben 10: Alien Force RWUE52 = X-Men Origins: Wolverine RWUP52 = X-Men Origins: Wolverine RWUX52 = X-Men Origins: Wolverine RWWE52 = Guitar Hero III Custom : WWE The Hits RWWE78 = WWE SmackDown vs. Raw 2008 RWWJ78 = WWE SmackDown vs. Raw 2008 RWWP78 = WWE SmackDown vs. Raw 2008 RWWX78 = WWE SmackDown vs. Raw 2008 RWXES5 = Brave: A Warrior's Tale RWXPS5 = Brave: A Warrior's Tale RWYPHH = Runaway: The Dream of the Turtle RWZE5G = Wonder World Amusement Park RWZP5G = Wonder World Amusement Park RWZX5G = Wonder World Amusement Park RX2E70 = My Horse & Me: Riding for Gold RX2P70 = My Horse & Me 2 RX3E01 = ExciteBots: Trick Racing RX3J01 = ExciteBots: Trick Racing RX4E4Z = Casper's Scare School: Spooky Sports Day RX4PMT = Casper's Scare School: Spooky Sports Day RX5E52 = Tony Hawk: Ride RX5P52 = Tony Hawk: Ride RX6E78 = The Biggest Loser RX6P78 = The Biggest Loser RX7JGD = Meja-maji March RX8JA4 = Jikkyou Powerful Pro Yakyuu Next RX9E69 = Need for Speed: Undercover RX9J13 = Need for Speed: Undercover RX9K69 = Need for Speed: Undercover RX9P69 = Need for Speed: Undercover RX9X69 = Need for Speed: Undercover RX9Y69 = Need for Speed: Undercover RXAE78 = WWE SmackDown vs. Raw 2010 RXAP78 = WWE SmackDown vs. Raw 2010 RXBE70 = Backyard Baseball '10 RXBP70 = Backyard Baseball '10 RXCE4Z = Dave Mirra BMX Challenge RXCP4Z = Dave Mirra BMX Challenge RXCPGT = Dave Mirra BMX Challenge RXDD4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDE4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDJ4Q = Disney Th!nk Haya Oshi Quiz RXDP4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDR4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDX4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDY4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXEJDA = Major Wii Perfect Closer RXFEVN = Offshore Tycoon RXGE6K = Geon Cube RXGP6K = Geon Cube RXHF5D = Chaos à La Maison RXIE52 = Transformers: Revenge of the Fallen RXIP52 = Transformers: Revenge of the Fallen RXJJDA = Jinsei Game Wii EX RXKEGL = TV Show King Party RXKFGL = TV Show King Party RXKPGL = TV Show King Party RXLE41 = Grey's Anatomy: The Video Game RXLP41 = Grey's Anatomy: The Video Game RXMJ8P = Miburi & Teburi RXNEXS = Hooked Again: Real Motion Fishing RXNJJF = Bass Fishing Wii World Tournament RXNPGT = Big Catch Bass Fishing 2 RXPEXS = Hooked!: Real Motion Fishing RXPJJF = Bass Fishing Wii RXPPGT = Big Catch Bass Fishing RXQEWR = Where the Wild Things Are RXQPWR = Where the Wild Things Are RXRERS = The Tale of Despereaux RXRPRS = The Tale of Despereaux RXRXRS = The Tale Of Despereaux RXSPA4 = Dancing Stage: Hottest Party RXUE41 = Surf's Up RXUP41 = Surf's Up RXUX41 = Surf's Up RXVXWP = Télé 7 Jeux: Mots Croisés RXWE20 = M&M's Beach Party RXXE4Q = Spectrobes: Origins RXXJ4Q = Spectrobes: Origins RXXP4Q = Spectrobes: Origins RXYE4Z = Puzzle Challenge: Crosswords and More! RXYP4Z = Puzzle Challenge Crosswords RXZE52 = Cabela's Dangerous Hunts 2009 RXZP52 = Cabela's Dangerous Adventures RY2E41 = Rayman Raving Rabbids 2 RY2J41 = Rayman Raving Rabbids 2 RY2K41 = Rayman Raving Rabbids 2 RY2P41 = Rayman Raving Rabbids 2 RY2R41 = Rayman Raving Rabbids 2 RY3E41 = Rayman Raving Rabbids TV Party RY3J41 = Rayman Raving Rabbids TV Party RY3K41 = Rayman Raving Rabbids: TV Party RY3P41 = Rayman Raving Rabbids: TV Party RY4J8P = Puyo Puyo 7 RY5E52 = Big League Sports: Summer RY5P52 = World Championship Sports: Summer RY6EA4 = Walk It Out! RY6PA4 = Step to the Beat RY7PHZ = Ninja Captains RY8EFS = Bass Pro Shops: The Strike RYAJDA = Yattaman Wii Bikkuridokkiri Machine De Mou Race Da Koron RYAJSC = Yatterman Wii (Simplified Chinese Translation) RYBE69 = Boom Blox: Bash Party RYBP69 = Boom Blox: Smash Party RYDELT = Pet Pals: Animal Doctor RYDP6V = Pet Pals: Animal Doctor RYEEEB = 101-in-1 Party Megamix RYEPHZ = 101-in-1 Party Megamix RYGE9B = Rygar: The Battle of Argus RYGJ9B = Argus No Senshi Muscle Impact RYGP99 = Rygar: The Battle of Argus RYHES5 = Roogoo: Twisted Towers RYHPS5 = Roogoo: Twisted Towers RYIE9B = SPRay RYIP9B = SPRay RYJPTV = Princess Lillifee's Magic Fairy RYKEAF = We Ski & Snowboard RYKJAF = Family Ski: World Ski & Snowboard RYKPAF = Family Ski & Snowboard RYLDSV = Germany's Next Top Model RYNE6U = The Hardy Boys: The Hidden Theft RYNP6V = The Hardy Boys: The Hidden Theft RYOEA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYOJA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYOPA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYQE69 = Trivial Pursuit RYQP69 = Trivial Pursuit RYQX69 = Trivial Pursuit Nordic RYRE41 = Your Shape RYRP41 = Your Shape RYTE4Z = PBR: Out of the Chute RYVEMS = Arcade Shooter: Ilvelo RYVJMS = Illvelo Wii RYWE01 = Big Brain Academy: Wii Degree RYWJ01 = Wii de Yawaraka Atama Juku RYWK01 = Big Brain Academy: Wii Degree RYWP01 = Big Brain Academy for Wii RYXE20 = Yamaha Supercross RYXP7J = Yamaha Supercross RYZE6U = World Party Games RYZPTV = Play the World RZ2JG9 = Simple Wii Series Vol. 1: The Minna de Kart Race RZ3JG9 = Simple Wii Series Vol. 2: The Minna de Bass Tsuri Taikai RZ4JG9 = Simple Wii Series Vol. 3: The Casino Party RZ5JG9 = Simple Wii Series Vol. 4: The Shooting Action RZ6JG9 = Simple Wii Series Vol. 5: The Block Kuzushi RZ7JG9 = Simple Wii Series Vol. 6: The Waiwai Konbatto RZ8JG9 = Simple 2000 Series Wii Vol. 1: The Table Game RZ9EG9 = Family Party: 30 Great Games RZ9JG9 = Simple 2000 Series Wii Vol. 2: The Party Game RZ9PG9 = Family Party: 30 Great Games RZAPTV = Lernerfolg Grundschule Power Math RZCE6K = Saint RZDC01 = The Legend of Zelda: Twilight Princess (Custom) RZDE01 = The Legend of Zelda: Twilight Princess RZDJ01 = The Legend of Zelda: Twilight Princess RZDK01 = The Legend of Zelda: Twilight Princess RZDP01 = The Legend of Zelda: Twilight Princess RZEE52 = Science Papa RZEP52 = Science Papa RZFPKM = Secret Files 2: Puritas Cordis RZHE5G = Zoo Hospital RZHP5G = Zoo Hospital RZHX5G = Zoo Hospital RZIE20 = Winter Sports 3: The Great Tournament RZIPRT = Winter Sports 2010: The Great Tournament RZJD69 = Dead Space: Extraction RZJE69 = Dead Space: Extraction RZJJ13 = Dead Space: Extraction RZJP69 = Dead Space: Extraction RZKE20 = Puzzle Kingdoms RZKP7J = Puzzle Kingdoms RZLE41 = Cook Wars RZLP41 = Cook-off Party RZNJ01 = Zangeki no Reginleiv RZOE78 = World of Zoo RZOP78 = World of Zoo RZPE01 = Link's Crossbow Training RZPJ01 = Link's Crossbow Training RZPK01 = Link's Crossbow Training RZPP01 = Link's Crossbow Training RZREGT = The Destiny of Zorro RZRPGT = Destiny Of Zorro RZSEGJ = Speed Zone RZSP68 = Wheelspin RZTE01 = Wii Sports Resort RZTJ01 = Wii Sports Resort RZTK01 = Wii Sports Resort RZTP01 = Wii Sports Resort RZTW01 = Wii Sports Resort RZUE4Z = Crayola Colorful Journey RZYE41 = My Word Coach RZYF41 = My Word Coach: Develop your vocabulary RZYP41 = My Word Coach: Develop your vocabulary RZYS41 = My Word Coach: Develop your vocabulary RZZE8P = MadWorld RZZJEL = MadWorld RZZP8P = MadWorld S02PES = Sing It Star 90's S22JAF = Family Fishing S22K01 = Family Fishing S25JGD = Dragon Quest 25 Collection: Famicom & Super Famicom Dragon Quest I-II-III S26PML = 2-in-1: Pony Friends 2 + My Riding Stables: Life with Horses S2AEAF = Active Life: Explorer S2AJAF = Minna de Bouken! Family Trainer S2APAF = Family Trainer: Treasure Adventure S2BEPZ = Country Dance 2 S2BPXT = Country Dance 2 S2CE54 = New Carnival Games S2CP54 = New Carnival Funfair Games S2DPML = Dance! It's Your Stage S2EE41 = ABBA: You Can Dance S2EP41 = ABBA: You Can Dance S2HE70 = Haunted House S2HP70 = Haunted House S2IE8P = Iron Man 2 S2IP8P = Iron Man 2 S2LE01 = PokéPark 2: Wonders Beyond S2LJ01 = PokéPark 2: Beyond the World S2LP01 = PokéPark 2: Wonders Beyond S2ME69 = Madden NFL 13 S2OEFS = Bass Pro Shops: The Strike - Tournament Edition S2PEA4 = Pro Evolution Soccer 2012 S2PJA4 = Winning Eleven PLAY MAKER 2012 S2PPA4 = Pro Evolution Soccer 2012 S2PXA4 = Pro Evolution Soccer 2012 S2PYA4 = Pro Evolution Soccer 2012 S2QE54 = NBA 2K12 S2QP54 = NBA 2K12 S2RPNK = Reload S2TJAF = Taiko no Tatsujin Wii: Dodoon to 2 Daime! S2VEG9 = Victorious: Taking the Lead S2VPAF = Victorious: Taking the Lead S2WE78 = WWE All Stars S2WP78 = WWE All Stars S2XE41 = The Smurfs 2 S2XP41 = The Smurfs 2 S2YE52 = Wipeout: Create & Crash S2ZE52 = Zhu Zhu Pets: Featuring The Wild Bunch S2ZP52 = Zhu Zhu Pets: Featuring the Wild Bunch S3AE5G = Attack of the Movies 3D S3BEWR = Batman: The Brave and the Bold S3BPWR = Batman: The Brave and the Bold S3CENR = Triple Crown Championship Snowboarding S3DE18 = Deca Sports 3 S3DJ18 = Deca Sporta 3 S3DP18 = Sports Island 3 S3EE78 = Barbie Jet, Set & Style! S3EP78 = Barbie Jet, Set & Style! S3FE69 = FIFA Soccer 13 S3FP69 = FIFA 13 S3FX69 = FIFA 13 S3GE20 = Glacier 3: The Meltdown S3GPXT = Glacier 3 S3HJ08 = Sengoku Basara 3 Utage S3IEA4 = Pro Evolution Soccer 2013 S3IPA4 = Pro Evolution Soccer 2013 S3IXA4 = Pro Evolution Soccer 2013 S3IYA4 = Pro Evolution Soccer 2013 S3LPY1 = Andrew Lloyd Webber Musicals: Sing and Dance S3ME69 = The Sims 3 S3MP69 = The Sims 3 S3PE4Q = Disney Princess: My Fairytale Adventure S3PP4Q = Disney Princess: My Fairytale Adventure S3PX4Q = Disney Princess: My Fairytale Adventure S3RJMS = Twinkle Queen S3SJ18 = Karaoke Joysound Wii Super DX: Hitori de Minna de Utai Houdai! S3TJAF = Taiko no Tatsujin Wii: Minna de Party ☆ 3 Daime! S3WEG9 = Family Party: 30 Great Games Winter Fun S3WPG9 = Family Party: 30 Great Games Winter Fun S3XE78 = WWE '13 S3XP78 = WWE '13 S3ZE52 = Men In Black: Alien Crisis S3ZP52 = Men In Black: Alien Crisis S4MJGD = Dragon Quest X Online: Mesamashi Itsutsu no Shuzoku S4SJGD = Dragon Quest X: Nemureru Yuusha to Michibiki no Meiyuu Online S4TJAF = Taiko no Tatsujin Wii: Ketteiban S59E01 = Samurai Warriors 3 S59JC8 = Sengoku Musou 3 S59P01 = Samurai Warriors 3 S5BETL = Back to the Future: The Game S5BPKM = Back to the Future: The Game S5KJAF = Taiko no Tatsujin Wii Chou Goukaban S5QJC8 = SengokuMusou 3 Moushouden S5RESZ = Ram Racing S5RPNJ = Ram Racing S5SJHF = Inazuma Eleven Go Strikers 2013 S5TEG9 = Ben 10: Omniverse S5TPAF = Ben 10: Omniverse S5WE20 = Around The World in 50 Games S6BE4Q = Brave: The Video Game S6BP4Q = Brave: The Video Game S6BY4Q = Brave: The Video Game S6IE78 = Disney Princess: Enchanting Storybooks S6IP78 = Disney Princess: Enchanting Storybooks S6RE52 = Wreck-It Ralph S6RP52 = Wreck-It Ralph S6TJGD = Dragon Quest X (All in One Package) S72E01 = Kirby's Dream Collection: Special Edition S72J01 = Hoshi No Kirby: 20th Anniversary Edition S75E69 = Monopoly Streets S75P69 = Monopoly Streets S7AEWR = LEGO Batman 2: DC Super Heroes S7AKWR = LEGO Batman 2: DC Super Heroes S7AKZA = Lego Superheroes 1 S7APWR = LEGO Batman 2: DC Super Heroes S7BE69 = Trivial Pursuit: Bet You Know It S7BP69 = Trivial Pursuit: Casual S7CJAF = Kamen Rider Climax Heroes Fourze S7DE52 = Angry Birds: Star Wars S7DP52 = Angry Birds: Star Wars S7EP52 = Transformers: Ultimate Battle Edition S7FE5G = Zumba Kids S7FPGT = Zumba Kids: The Ultimate Zumba Dance Party S7JPKM = Let's Sing 6 - Spanish version S7KPKM = Let's Sing 2014 S7SP41 = The Smurfs Party Pack S80U3Q = SingItStar Ultimate 80s SA3E5G = Alvin and the Chipmunks: Chipwrecked SA3P5G = Alvin and the Chipmunks: Chipwrecked SA5E78 = Are You Smarter Than A 5th Grader?: Back to School SA6EG9 = Ben 10: Galactic Racing SA6PAF = Ben 10: Galactic Racing SA7ESZ = Gummy Bears: Magical Medallion SA8P52 = The Amazing Spider-Man SA9D7K = Bibi und Tina Das grosse Reiterfest SAAJA4 = Winning Eleven PLAY MAKER 2013 SABENR = Alien Monster Bowling League SABPJG = Alien Monster Bowling League SACPVS = ACB Total 2010/2011 SACSVS = ACB Total 2010/2011 SADE70 = Backyard Sports: Sandlot Sluggers SAFUHS = AFL: Australian Football League SAGE41 = The Amazing Race SAHE69 = Hasbro: Family Game Night Fun Pack SAJE52 = Cabela's Survival: Shadows of Katmai SAJP52 = Cabela's Survival: Shadows of Katmai SAKENS = Sakura Wars: So Long, My Love SAKPNS = Sakura Wars: So Long, My Love SALE4Q = Alice in Wonderland SALP4Q = Alice in Wonderland SAME01 = New Super Mario Bros. Wii 11 American Revolution SANE01 = New Super Mario Bros. Wii Five Spica Edition SANEFS = Bass Pro Shops: The Hunt - Trophy Showdown SANT3Q = SingItStar Anthems SAOE78 = Monster High: Ghoul Spirit SAOP78 = Monster High: Ghoul Spirit SAQE5G = Harley Pasternak's Hollywood Workout SARE4Z = Aladdin Magic Racer SARP01 = New Super Mario Bros. Wii 4 Arcadia Another Ride SARPNK = Aladin: Magic Racer SASEWW = Atrévete a Soñar SATE6K = Chuck E. Cheese's Super Collection SAUJ8P = Puyo Puyo!! 20th Anniversary SAVE5G = Alvin and the Chipmunks: The Squeakquel SAVX5G = Alvin and the Chipmunks: The Squeakquel SAWE52 = Angry Birds Trilogy SAWP52 = Angry Birds Trilogy SAXPFH = Max & the Magic Marker SAYE20 = Boot Camp Academy SAYP41 = Boot Camp Academy SAZE52 = The Amazing Spider-Man SAZP52 = The Amazing Spider-Man SB2ES5 = My Baby First Steps SB2PNP = My Baby 2: My Baby Grew Up SB3E08 = Sengoku Basara: Samurai Heroes SB3J08 = Sengoku BASARA 3 SB3P08 = Sengoku Basara: Samurai Heroes SB4C01 = Super Mario Galaxy 2 (Custom) SB4E01 = Super Mario Galaxy 2 SB4E02 = Neo Mario Galaxy SB4E03 = Super Mario Galaxy: Plumber's Way SB4E04 = Super Mario Sunshine Galaxy SB4E05 = Season Cycle Galaxy SB4E25 = Super Mario Galaxy 2.5 SB4J01 = Super Mario Galaxy 2 SB4J02 = Neo Mario Galaxy SB4J05 = Season Cycle Galaxy SB4K01 = Super Mario Galaxy 2 SB4P01 = Super Mario Galaxy 2 SB4P02 = Neo Mario Galaxy SB4P05 = Season Cycle Galaxy SB4W01 = Super Mario Galaxy 2 SB5E54 = NBA 2K11 SB5P54 = NBA 2K11 SB6E52 = Bakugan: Defenders of the Core SB6P52 = Bakugan: Defenders of the Core SB7IVU = Planet Basket 2009/2010 SB8EQH = Burger Bot SB9E78 = Barbie: Groom and Glam Pups SB9P78 = Barbie: Groom and Glam Pups SBAJGD = Dragon Quest Monsters: Battle Road Victory SBBE18 = Beyblade: Metal Fusion - Battle Fortress SBBJ18 = Metal Fight Beyblade Gachinko Stadium SBBP18 = Beyblade: Metal Fusion - Counter Leone SBCJ2N = Billy's Boot Camp: Wii de Enjoy Diet! SBDE08 = Resident Evil: The Darkside Chronicles SBDJ08 = Biohazard: The Darkside Chronicles SBDK08 = Biohazard: The Darkside Chronicles SBDP08 = Resident Evil: The Darkside Chronicles SBEPSV = Bermuda Triangle SBFE70 = Backyard Football '10 SBHEFP = Remington Great American Bird Hunt SBHPNK = Remington Great American Bird Hunt SBIEVZ = Busy Scissors SBIPVZ = Busy Scissors SBJEG9 = Ben 10: Ultimate Alien Cosmic Destruction SBJPAF = Ben 10: Ultimate Alien Cosmic Destruction SBKEPZ = Brunswick Zone Cosmic Bowling SBLE5G = A Boy and His Blob SBLP5G = A Boy and His Blob SBNEG9 = Ben 10: Alien Force Vilgax Attacks SBNPG9 = Ben 10: Alien Force Vilgax Attacks SBOD3Q = SingItStar Best of Disney SBQE4Z = Big Buck Hunter Pro SBREJJ = Let's Play Ballerina SBRPKM = Ballerina SBSE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh SBSEFP = Remington Super Slam Hunting: North America SBSURN = Remington Super Slam Hunting: North America SBVE78 = SpongeBob's Boating Bash SBVG3Q = SingItStar Boybands vs Girlbands SBVP78 = SpongeBob's Boating Bash SBVS78 = SpongeBob's Boating Bash SBWC11 = New Super Mario Bros. 3: The Wrath of Shadow Bowser SBWE5G = Babysitting Mama SBWJRA = Babysitter Mama SBWPGT = Cooking Mama World: Babysitting Mama SBXEWR = The Bachelor: The Video Game SBYE41 = Dance on Broadway SBYP41 = Dance on Broadway SBZESZ = Bermuda Triangle: Saving the Coral SC2E8P = Conduit 2 SC2P8P = Conduit 2 SC4E64 = LEGO Star Wars III: The Clone Wars SC4P64 = LEGO Star Wars III: The Clone Wars SC5PGN = Challenge Me: Word Puzzles SC6PGN = Challenge Me: Brain Puzzles 2 SC7D52 = Call of Duty: Black Ops SC7E52 = Call of Duty: Black Ops SC7F52 = Call of Duty: Black Ops SC7I52 = Call of Duty: Black Ops SC7P52 = Call of Duty: Black Ops SC7S52 = Call of Duty: Black Ops SC8E01 = Wii Play: Motion SC8J01 = Wii Play: Motion SC8K01 = Wii Play: Motion SC8P01 = Wii Play: Motion SC9P52 = Cabela's Big Game Hunter 2010 SCAE18 = Calling SCAJ18 = CALLING Kuroki Chakushin SCAP18 = Calling SCBPNK = Cyberbike Cycling Sports SCDE52 = Cabela's Dangerous Hunts 2011 SCDP52 = Cabela's Dangerous Hunts 2011 SCEE6K = Chuck E. Cheese's Party Games SCFPNK = Cocoto Festival SCGE20 = Calvin Tucker's Redneck: Farm Animal Racing Tournament SCGPXT = Calvin Tucker's: Farm Animals Racing Tournament SCHEQH = Canada Hunt SCIE41 = CSI: Fatal Conspiracy SCIP41 = CSI: Fatal Conspiracy SCJE4Q = LEGO Pirates of the Caribbean: The Video Game SCJP4Q = LEGO Pirates of the Caribbean: The Video Game SCKE6K = Chuck E. Cheese's Sports Games SCMJAF = Kamen Rider Climax Heroes OOO SCNEA4 = Scene It? Twilight SCNPA4 = Scene It? Twilight SCPE70 = Centipede: Infestation SCQDRV = Schlag den Raab - Das 2. Spiel SCREJH = Chicken Riot SCRPJH = Chicken Riot SCSE52 = Cruise Ship Vacation Games SCSPGR = Cruise Ship Resort SCTE01 = The Curse of Black Toad SCTPNK = Cocoto Surprise SCUPFR = Crazy Chicken: Carnival SCWE41 = Gold's Gym: Dance Workout SCWP41 = My Fitness Coach: Dance Workout SCXESZ = Chevrolet Camaro: Wild Ride SCXPNJ = Chevrolet Camaro: Wild Ride SCYE4Q = Cars 2 SCYP4Q = Cars 2 SCYX4Q = Cars 2 SCYY4Q = Cars 2 SCYZ4Q = Cars 2 SCZEMH = Crazy Machines SCZPFR = Crazy Machines SD2E41 = Just Dance 2 SD2J01 = Just Dance Wii SD2K41 = Just Dance 2 SD2P41 = Just Dance 2 SD2Y41 = Just Dance 2: Best Buy Edition SD3DSV = Der Gesundheitscoach SD5PTV = Lernerfolg Grundschule Deutsch SD6PTV = Lernerfolg Grundschule Englisch SD7PTV = Lernerfolg Grundschule Mathematik SD8DSV = Mein neues Leben Abenteuer auf Tropicana SD9JAF = SD Gundam Gashapon Wars SDAE01 = Scooby-Doo! The Bros Adventure SDAE5G = The Daring Game for Girls SDBE78 = de Blob 2 SDBP78 = de Blob 2 SDDPML = The Ultimate Battle Of The Sexes SDEE5G = Dance Sensation! SDFE4Q = Disney Sing It: Family Hits SDFP4Q = Disney Sing It: Family Hits SDGE4Q = Disney Channel: All Star Party SDGP4Q = Disney Channel: All Star Party SDHER3 = Super Smash Bros. Brawl Dark Hole/D.A.R.S. SDIE4Q = Disney Sing It: Party Hits SDIP4Q = Disney Sing It: Party Hits SDJJAF = SD Gundam: G Generation World SDLE78 = Dood's Big Adventure SDLP78 = Dood's Big Adventure SDMEG9 = Despicable Me: The Game SDMPAF = Despicable Me: The Game SDNE41 = Just Dance SDNP41 = Just Dance SDOPLR = Doctor Who: Return To Earth SDPE54 = Dora's Big Birthday Adventure SDPP54 = Dora's Big Birthday SDQJGD = Dragon Quest X Inishie no Ryu no Denshou Online SDREYG = Maximum Racing: Drag & Stock Racer SDRP3Q = SingItStar Deutsch Rock-Pop Vol. 1 SDRPNG = Drag & Stock Racer SDSPNG = We Dance SDTH3Q = SingItStar Die Toten Hosen SDTPGN = PDC World Championship Darts: Pro Tour SDUE41 = The Smurfs Dance Party SDUP41 = The Smurfs: Dance Party SDUPO1 = DU Super Mario Bros. : DU Edition SDVE41 = Driver: San Francisco SDVP41 = Driver: San Francisco SDWE18 = Lost in Shadow SDWJ18 = Lost in Shadow SDWP18 = A Shadow's Tale SDXE4Q = Disney Universe SDXP4Q = Disney Universe SDYEA4 = Dance Dance Revolution SDYPA4 = Dance Dance Revolution: Hottest Party 4 SDZE41 = Just Dance Kids SDZP41 = Dance Juniors SE2E69 = EA Sports Active 2 SE2P69 = EA Sports Active 2 SE3E41 = Just Dance 2015 SE3P41 = Just Dance 2015 SEAE69 = EA Sports Active: More Workouts SEAJ13 = EA Sports Active More Workout SEAP69 = EA Sports Active: More Workouts SECE69 = Create SECP69 = Create SEGA = Genplus GX SEGE6U = Yoga SEGP6V = Yoga SEKJ99 = Ikenie no Yoru SELE69 = FIFA Soccer 11 SELP69 = FIFA 11 SELX69 = FIFA 11 SEME4Q = Disney Epic Mickey SEMJ01 = Disney Epic Mickey: Mickey Mouse and the Magic Brush SEMP4Q = Disney Epic Mickey SEMX4Q = Disney Epic Mickey SEMY4Q = Disney Epic Mickey SEMZ4Q = Disney Epic Mickey SENPZX = Enclave: Shadows of Twilight SEOP01 = New Super Mario Bros. Wii 8 Omega SEOP4Q = Sing It: Edad de Oro del Pop Español SEPE41 = The Black Eyed Peas Experience SEPP41 = The Black Eyed Peas Experience SEPX41 = The Black Eyed Peas Experience D1 Edition SEPZ41 = The Black Eyed Peas Experience: Limited Edition SERE4Q = Disney Epic Mickey 2: The Power of Two SERF4Q = Disney Epic Mickey 2: O Regresso dos Heróis SERK4Q = Disney Epic Mickey 2: The Power of Two SERP4Q = Disney Epic Mickey 2: O Regresso dos Heróis SERV4Q = Disney Epic Mickey 2: The Power of Two SESEWR = Sesame Street: Ready, Set, Grover! SESPWR = Sesame Street: Ready, Set, Grover! SESUWR = Sesame Street: Ready, Set, Grover! SEZJHF = Inazuma Eleven Strikers 2012 Xtreme SF2P64 = Star Wars: The Force Unleashed II SF4E20 = Flatout SF4PXT = Flatout SF5E41 = Fit in Six SF5J41 = Fit in Six SF5P41 = My Fitness Coach: Club SF7E41 = Family Feud 2012 Edition SF8E01 = Donkey Kong Country Returns SF8J01 = Donkey Kong Returns SF8P01 = Donkey Kong Country Returns SFAE41 = Family Feud Decades SFAJGD = Fullmetal Alchemist: Daughter of the Dusk SFBE70 = Backyard Sports Football: Rookie Rush SFDE01 = New Super Mario Bros. Wii 9 Virtue: This Fall Darkness SFDEAF = Active Life: Magical Carnival SFDJAF = Issyoni Asobou! Dream Theme Park SFDPAF = Family Trainer: Magical Carnival SFGE69 = Hasbro: Family Game Night 4 - The Game Show SFGP69 = Hasbro: Family Game Night 4 - The Game Show SFHEFP = Outdoor Action Double Pack SFIE01 = Mystery Case Files: The Malgrave Incident SFIP01 = Mystery Case Files: The Malgrave Incident SFKEG9 = Family Party: Fitness Fun SFKPAF = Family Party: Fitness Fun SFLDSV = Der Fluch der Osterinsel SFOEAF = Food Network: Cook or Be Cooked SFPPFR = Fantastic Football Fan Party SFQE8P = Captain America: Super Soldier SFQP8P = Captain America: Super Soldier SFRDRV = Fit & Fun SFRPXT = Fit & Fun SFSPGT = All Round Hunter SFTE78 = Wheel of Fortune SFTP78 = Wheel of Fortune SFUE64 = Star Wars: The Force Unleashed II SFVEXJ = Fishing Resort SFWE69 = 2010 FIFA World Cup South Africa SFWJ13 = 2010 FIFA World Cup South Africa SFWK13 = 2010 FIFA World Cup: South Africa SFWK69 = 2010 FIFA World Cup South Africa SFWP69 = 2010 FIFA World Cup South Africa SFWX69 = 2010 FIFA World Cup South Africa SFWY69 = 2010 FIFA World Cup South Africa SFWZ69 = 2010 FIFA World Cup South Africa SFXPKM = The X Factor SFXXKM = X Factor SFYEG9 = Family Party: 90 Great Games Party Pack SFYPAF = Family Party: 90 Great Games Party Pack SFZEPZ = Pheasants Forever: Wingshooter SFZPXT = Pheasants Forever SG2EFS = Crazy Mini Golf 2 SG2XUG = Crazy Mini Golf 2 SG2YFS = Crazy Mini Golf 2 SG3DSV = Germany's Next Top Model 2010 SG5PSV = Family Quiz SG6DSV = Galileo Family Quiz SG7E20 = The Garfield Show: Threat of the Space Lasagna SG7PVL = The Garfield Show: Threat of the Space Lasagna SG8EG9 = Yogi Bear SG8PAF = Yogi Bear: The Video Game SG9EYC = Gremlins: Gizmo SGAE8P = Tournament of Legends SGAP8P = Tournament of Legends SGBE5G = Greg Hastings Paintball 2 SGCE20 = Glacier 2 SGDEJJ = Let's Play Garden SGDPKM = Play Gardens SGEEG9 = Nat Geo Challenge! Wild Life SGEPLG = Nat Geo Quiz! Wild Life SGHE41 = Tom Clancy's Ghost Recon SGHP41 = Tom Clancy's Ghost Recon SGI1CL = SingIt Clasicos SGI1DB = Sing IT: Dibujos Animados SGI1MC = SingItStar Mecano SGI1ML = Sing It Star: Miliki SGI1PT = Sing IT: Party SGI1RC = Sing IT: Rocks 2 SGIEA4 = GTI Club Supermini Festa! SGIJA4 = GTI Club World City Race SGIPA4 = GTI Club Supermini Festa! SGJDSV = Galileo Mystery: The Crown of Midas SGJPSV = The Crown of Midas SGKEC8 = Champion Jockey: G1 Jockey & Gallop Racer SGKJC8 = Champion Jockey: Gallop Racer & GI Jockey SGKPC8 = Champion Jockey: G1 Jockey & Gallop Racer SGLEA4 = Gormiti: The Lords of Nature! SGLPA4 = Gormiti: The Lords of Nature! SGNE69 = Hasbro: Family Game Night Value Pack SGODKP = Mini Golf Resort SGOETV = Mini Golf Resort SGPEYG = Maximum Racing: GP Classic Racing SGPPNG = GP Classic Racing SGPTI1 = Sing It Party SGQDSV = Germany's Next Top Model 2011 SGREGT = Grease SGRPGT = Grease SGSESZ = Family Gameshow SGSP7J = Family GameShow SGTEFS = My Personal Golf Trainer with IMG Academies and David Leadbetter SGTPUG = My Personal Golf Trainer with IMG Academies and David Leadbetter SGUE4Q = Disney Guilty Party SGVEAF = Go Vacation SGVJAF = Go Vacation SGVPAF = Go Vacation SGWD7K = Bibi Blocksberg SGXE41 = Battle of Giants: Dinosaurs Strike SGXP41 = Combat of Giants: Dinosaurs Strike SGYESZ = Gummy Bears Mini Golf SGYPNJ = Gummy Bears Mini Golf SH2JMS = Hula Wii: Tanoshiku Hula o Odorou!! SH3E54 = NHL 2K11 SH3P54 = NHL 2K11 SH4EFP = Heavy Fire: Afghanistan SH4PNK = Heavy Fire: Afghanistan SH5E69 = Harry Potter and the Deathly Hallows, Part 2 SH5P69 = Harry Potter and the Deathly Hallows - Part 2 SH6E52 = Cabela's Big Game Hunter 2012 SH6P52 = Cabela's Big Game Hunter 2012 SH7ESZ = Honda ATV Fever SH7PNJ = ATV Fever SH8E52 = Cabela's Adventure Camp SH8P52 = Cabela's Adventure Camp SH9ESZ = Heathcliff: The Fast and the Furriest SHBE69 = Hasbro: Family Game Night 3 SHBP69 = Hasbro: Family Game Night 3 SHDE52 = How to Train Your Dragon SHDP52 = Como Treinares o teu Dragão SHEDRM = Der Bauernhof SHFE20 = Basketball Hall of Fame: Ultimate Hoops Challenge SHGDRM = Holiday Games SHHE69 = Harry Potter and the Deathly Hallows, Part 1 SHHP69 = Harry Potter and the Deathly Hallows - Part 1 SHIJ2N = Shape Boxing 2 Wii Enjoy Diet! SHKE20 = Hello Kitty Seasons SHKPNQ = Hello Kitty Seasons SHLPA4 = Silent Hill: Shattered Memories SHMPLR = Horrid Henry: Missions of Mischief SHNE41 = Shaun White Skateboarding SHNP41 = Shaun White Skateboarding SHOXKR = Hugo: Magic in the Troll Woods SHOYKR = Hugo: Magic in the Troll Woods SHPE5G = Our House Party SHSE20 = Hyper Fighters SHSPXT = Hyper Fighters SHTE20 = Mathews Bow Hunting SHUE52 = Cabela's Dangerous Hunts 2011: Special Edition SHVE78 = Hot Wheels: Track Attack SHVP78 = Hot Wheels: Track Attack SHWE41 = Hollywood Squares SHXEWR = Happy Feet Two SHXPWR = Happy Feet 2 SHYE69 = NHL SlapShot SHYP69 = EA Sports: NHL Slapshot SHZENR = Harley Davidson: Road Trip SI3E69 = FIFA Soccer 12 SI3P69 = FIFA 12 SI3X69 = FIFA 12 SIABOH = SingItStar Placebo SIAE52 = Ice Age: Continental Drift - Arctic Games SIAP52 = Ice Age 4: Continental Drift - Artic Games SIBBHJ = SingItStar Country SIDE54 = Sid Meier's Pirates! SIDP54 = Sid Meier's Pirates! SIESP1 = Sing It: Canciones en Español SIFESZ = The Island of Dr. Frankenstein SIFPNJ = The Island of Dr. Frankenstein SIFPOH = SingItStar Fussballhits SIHE4Z = Sing 4: The Hits Edition SIIE8P = Mario & Sonic at the London 2012 Olympic Games SIIJ01 = Mario & Sonic at the London 2012 Olympic Games SIIP8P = Mario & Sonic at the London 2012 Olympic Games SIJE52 = iCarly 2: iJoin the Click! SIJP52 = iCarly 2: iJoin the Click! SILE78 = Worms: Battle Islands SILP4Q = Latino Sing It SILP78 = Worms Battle Islands SIME69 = MySims Collection SINPNG = We Sing: Robbie Williams SIPE7T = I SPY Game Pack SIS1OH = SingItStar Volume 1 SIS2OH = SingItStar ABBA SIS3OH = SingItStar Summer Party SIS4OH = SingItStar Amped SIS5OH = SingItStar Pop Hits SIS7OH = SingItStar Take That SIS80Q = SingItStar Ultimate 80's SIS80S = StarSing : '80s Volume 1 v1.2 SIS90H = SingItStar 90´s SIS9OH = SingItStar 90's SISACD = StarSing AC/DC SISAOH = SingItStar Après Ski Party SISBOH = SingItStar R'n'B SISCOH = SingItStar Chartbreaker SISCS1 = SingItStar Chartsurfer Vol. 1 SISDAE = SingItStar Die Ärzte SISDEM = SingItStar Depeche Mode SISDOH = SingItStar The Dome SISENR = Princess Isabella: A Witch's Curse SISHOH = SingItStar Hottest Hits SISJ0Q = Pelvic Fitness by Wii (Isometric & Karate Exercise) SISLIP = StarSing : Linkin Park v1.2 SISLOH = SingItStar Legends SISMEL = StarSing : Happy Birthday Mélanie v1.1 SISMJ1 = StarSing : Michael Jackson v2.1 SISMOH = SingItStar Mallorca Party SISP10 = SingItStar Studio100 SISP12 = StarSing : Pop Hits 1 & 2 v2.0 SISP34 = StarSing : Pop Hits 3 & 4 v2.0 SISPBC = SingItStar Britney vs Christina SISPOH = SingItStar Party SISPOP = StarSing : Pop v1.1 SISPUH = Princess Isabella: A Witch's Curse SISQ3Q = SingItStar Queen SISR3Q = SingItStar Rocks! SISREU = StarSing : Rocks! v1.1 SISRP4 = SingItStar Rocks! SISSOH = SingItStar Schlager SISTDK = SingItStar - Turkish Party SITPNG = We Sing: Deutsche Hits SIUUNG = We Sing Down Under SIXE01 = New Super Mario Bros Wii 16 Revelations SIXE41 = Drawsome! Tablet SJ2EWR = Scooby-Doo! and the Spooky Swamp SJ2PWR = Scooby-Doo! and the Spooky Swamp SJ3JDA = Jinsei Game: Happy Family SJ3PNL = Jakers! Kart Racing SJ5JDA = Jinsei Game Happy Family Gotouchi Neta Zouryou Shiage SJ6E41 = Just Dance Disney Party SJ6P41 = Just Dance Disney Party SJ7E41 = Just Dance Kids 2014 SJ7P41 = Just Dance Kids 2014 SJ9E41 = Just Dance Summer Party SJ9P41 = Just Dance 2: Extra Songs SJAE5G = JAWS: Ultimate Predator SJBE52 = GoldenEye 007 SJBJ01 = GoldenEye 007 SJBP52 = GoldenEye 007 SJCEZW = Jerry Rice & Nitus' Dog Football SJDE41 = Just Dance 3 SJDJ01 = Just Dance Wii 2 SJDK41 = Just Dance 3 SJDP41 = Just Dance 3 SJDX41 = Just Dance 3 Special Edition SJDY41 = Just Dance 3: Best Buy Exclusive Edition SJDZ41 = Just Dance 3: Target Exclusive Edition SJEEPK = JumpStart Escape from Adventure Island SJFE4Z = Kid Fit Island Resort SJFPGR = Junior Fitness Trainer SJFXGR = Junior Fitness Trainer SJGEPK = JumpStart Get Moving Family Fitness SJHE41 = Just Dance Greatest Hits SJIEG9 = Jillian Michaels Fitness Ultimatum 2011 SJJEA4 = Jimmie Johnson's Anything With An Engine SJKEPK = JumpStart Crazy Karts SJLEFS = Junior League Sports SJLPXT = Junior League Sports SJME5G = Jillian Michaels Fitness Ultimatum 2010 SJMPGT = Jillian Michaels Fitness Ultimatum 2010 SJOE41 = Just Dance 2014 SJOP41 = Just Dance 2014 SJPE78 = Jeopardy! SJQEPZ = Jewel Quest Trilogy SJQPGR = Jewel Quest Trilogy SJREA4 = Def Jam Rapstar SJRXA4 = Def Jam Rapstar SJSEPK = JumpStart Pet Rescue SJTP41 = Just Dance: Best Of SJUE20 = Dino Strike SJUPXT = Dino Strike SJVE20 = Shawn Johnson Gymnastics SJWJA4 = Winning Eleven PLAY MAKER 2010 Japan Challenge SJXD41 = Just Dance 4 SJXE41 = Just Dance 4 SJXP41 = Just Dance 4 SJZE41 = Just Dance Kids 2 SJZP41 = Just Dance Kids SK3EEB = Trauma Team SK4E52 = Shrek Forever After SK4P52 = Shrek Forever After SK5PY1 = Kylie Sing & Dance SK6KJD = K-POP Dance Festival SK7PVZ = Disney Violetta: Rhythm & Music SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8P52 = Skylanders: Trap Team SK8V52 = Skylanders: Trap Team SKAEA4 = Karaoke Revolution Glee SKAPA4 = Karaoke Revolution Glee SKBEG9 = Kidz Bop Dance Party SKCE20 = Bigfoot: King of Crush SKDJ18 = Karaoke Joysound Wii Duet Song SKEJ18 = Karaoke Joysound Wii: Enka Kayoukyoku Hen SKGEA4 = Karaoke Revolution Glee Volume 2 SKGPA4 = Karaoke Revolution Glee Volume 2 SKHJAF = Kamen Rider Super Climax Heroes SKJE78 = You Don't Know Jack SKKPHY = Captain Morgane and the Golden Turtle SKKXHY = Captain Morgane and the Golden Turtle SKLDSV = K11 - Kommissare im Einsatz SKMJAF = Kamen Rider Climax Heroes W SKOEA4 = Karaoke Revolution Glee Volume 3 SKOPA4 = Karaoke Revolution Glee Volume 3 SKREG9 = Kamen Rider Dragon Knight SKSE54 = NBA 2K13 SKSP54 = NBA 2K13 SKTE78 = All Star Karate SKTP78 = All Star Karate SKUE78 = Kung Fu Panda 2 SKUP78 = Kung Fu Panda 2 SKVE20 = Kevin Van Dam's Big Bass Challenge SKWPNK = Cocoto Kart Racer 2 SKXE20 = Pirate Blast SKXPFH = Pirate Blast SKYE52 = Skylanders: Giants SKYP52 = Skylanders: Giants SKYX52 = Skylanders: Giants SKYZ52 = Skylanders: Giants SKZE52 = DreamWorks Super Star Kartz SKZP52 = DreamWorks Super Star Kartz SL2J01 = Zero: Shinku no Chou SL2P01 = Project Zero 2: Wii Edition SL3ENR = Dragon's Lair Trilogy SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = The Last Airbender SLAP78 = The Last Airbender SLAZ78 = The Last Airbender: ToysRUs Special Edition SLCEGN = Get Up And Dance SLCPGN = Get Up And Dance SLDEYG = Let's Dance SLDPLG = Let's Dance with Mel B SLEE78 = Deepak Chopra's Leela SLEP78 = Deepak Chopra's Leela SLFE01 = New Super Mario Bros. 3 The Final Levels SLFP01 = New Super Mario Bros. 3: The Final Levels SLFPKM = Let's Sing SLFXKM = Let's Sing 5 - Spanish version SLHEWR = LEGO Harry Potter: Years 5-7 SLHPWR = LEGO Harry Potter: Years 5-7 SLIE52 = Little League World Series Baseball: Double Play SLLEWW = Lucha Libre AAA: Héroes del Ring SLPP5D = The Spirit of the Wolf SLREWR = LEGO The Lord of the Rings SLRPWR = LEGO The Lord of the Rings SLSEXJ = The Last Story SLSJ01 = The Last Story SLSP01 = The Last Story SLTEJJ = NewU Fitness First Mind Body: Yoga & Pilates Workout SLTPLG = NewU Fitness First Mind Body: Yoga & Pilates Workout SLVP41 = We Dare SLWE41 = Where's Waldo? The Fantastic Journey SLYESZ = Beastly SLYPNJ = Beastly SM2E52 = 10 Minute Solution SM2P52 = 10 Minute Solution SM3E01 = Super Mario Bros. 3+ SM4E20 = Monster Trucks Mayhem SM4PXT = Monster Trucks: Ultra Mega Xtreme!!! SM5EAF = Power Rangers Samurai SM5PAF = Power Rangers Samurai SM6PNK = My Body Coach 2: Fitness & Dance SM7E69 = Madden NFL 12 SM8D52 = Call of Duty: Modern Warfare 3 SM8E52 = Call of Duty: Modern Warfare 3 SM8F52 = Call of Duty: Modern Warfare 3 SM8I52 = Call of Duty: Modern Warfare 3 SM8P52 = Call of Duty: Modern Warfare 3 SM8S52 = Call of Duty: Modern Warfare 3 SM8X52 = Call of Duty: Modern Warfare 3 SM9E54 = Major League Baseball 2K12 SMAENR = Marines: Modern Urban Combat SMAPGN = Marines: Modern Urban Combat SMBE8P = Super Monkey Ball: Step & Roll SMBJ8P = Super Monkey Ball: Step & Roll SMBP8P = Super Monkey Ball: Step & Roll SMCENR = We Wish You A Merry Christmas SMCPXT = We Wish You A Merry Christmas SMD3OH = SingItStar e La Magia Disney SMEE69 = Madden NFL 11 SMFE4Q = Phineas and Ferb: Across the 2nd Dimension SMFP4Q = Phineas and Ferb: Across the 2nd Dimension SMGE78 = Megamind: Mega Team Unite SMGP78 = Megamind: Mega Team Unite SMGX = SaveGame Manager GX SMHPNK = Marvel Super Heroes 3D: Grandmaster's Challenge SMIE41 = Who Wants To Be A Millionaire SMIG3Q = SingItStar Made in Germany SMJE52 = Monster Jam: Path of Destruction SMJP52 = Monster Jam: Path of Destruction SMKE4Z = Gem Smashers SMLE54 = Major League Baseball 2K10 SMME02 = Super Mario: Mushroom Adventure PLUS - Winter Moon SMMJ0Q = Momu chan Diet Wii Figurobics by Chon Dayon SMMP01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 4. SMMP02 = Super Mario: Mushroom Adventure PLUS: Winter Moon SMNC01 = New Super Mario Bros. Wii SMNE01 = New Super Mario Bros. Wii SMNE02 = New Super Mario Remake SMNE03 = Newer Super Mario Bros. Wii SMNE04 = Cannon Super Mario Bros. Wii SMNE05 = Another Super Mario Bros. Wii SMNE06 = Newer Summer Sun SMNE07 = Newer Holiday Special SMNE08 = Epic Super Bowser World SMNE09 = Old Super Mario Bros. Wii SMNE10 = Koopa Country SMNE11 = New Super Mario Bros. Wii 4 SMNE12 = Awesomer Super Luigi Mini SMNE13 = New Super Mario Bros. Wii 9 Summer Special SMNE14 = Super Mario World Wii SMNE15 = Newer Super Mario Bros. 7 SMNE16 = Newer Super Mario Sunshine SMNE17 = Flowery Super Mario Land Wii SMNE18 = Super Switchy Mario World Wii SMNE19 = New Super Mr. M Bros. Wii SMNE20 = New Super Mario Bros. H SMNE21 = Newer Super Mario Land Wii SMNE22 = Neo Mario Brothers Wii SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE24 = Super Mario Ghost Special SMNE25 = Happy Super Marionose Wii SMNE26 = New Super Mario Bros. DS Wii Version SMNE27 = Newer Super Mario All Star SMNE28 = New Super Mario World SMNE29 = Not So Super Toaster Bros.: The Newer Collab! SMNE2D = Super Mario 2D Land 7 SMNE30 = New Super Mario Bros. Koopa Kall SMNE31 = New Super Mario Bros. Wii - Other World SMNE32 = Super Mario Legends SMNE33 = New Super Mario Bros. Wii Rollercoaster Party SMNE34 = New Super Mario Bros. Wii: Yoshi Mode SMNE35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNE36 = New Super Mario Bros. Wii Hack Pack SMNE37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNE38 = New Super Mario Bros. Wii Underground Maze SMNE39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNE40 = Newer Super Mario Bros. Wii U SMNE41 = Devil Mario Winter Special SMNE42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNE99 = Children's Super Mario Bros. Wii SMNED2 = New Super Mario Bros. + Animal Edition SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNENW = Newer Mario Escapade SMNEPM = Super Mario: Mushroom Adventure PLUS SMNEPS = New Super Mario Bros. Plus SMNERE = Retro Mario Bros. SMNERV = RVLution Wii SMNESL = Newer Super Mario Land Wii SMNESM = New Super Ghost Mario Wii SMNESN = New Super Mario Bros. Wii H SMNESS = New Super Mario Bros. 7 SMNEXD = Deluxe Super Mario Bros. Wii SMNEXR = Super Mario Remix SMNEYE = 8Forrest's Super Mario Bros. Wii SMNEYL = Luigi's Super Yoshi Bros. SMNEYM = You Super Mario Bros. Me Summer Special SMNEYS = Yoshi Super Mario Bros. Wii SMNEYU = You Super Mario Bros. Me SMNEYW = Newer Super Mario World Yoshi Way SMNEYY = You Super Mario Bros. Me Autumn Adventure SMNEZ2 = New JeDa Mario Bros. Wii SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZG = GF Super Mario Bros. Wii SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZQ = Basic Super Mario Bros. Wii SMNEZR = Newer Super Wario World Wii SMNEZS = Another Newer Super Mario Bros. Wii SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZX = Donkey Kong Remastered SMNEZY = Super Mario Skyland SMNEZZ = New Super Mario Bros. 2 Wii Version SMNJ01 = New Super Mario Bros. Wii SMNJ02 = Awesomer Super Luigi Mini SMNJ03 = Newer Super Mario Bros. Wii SMNJ04 = Cannon Super Mario Bros. Wii SMNJ06 = Newer Summer Sun SMNJ07 = Newer Holiday Special SMNJ08 = Epic Super Bowser World SMNJ10 = Koopa Country SMNJ11 = New Super Mario Bros. Wii 4 SMNJ13 = New Super Mario Bros. Wii 9 Summer Special SMNJ14 = Super Mario World Wii SMNJ15 = Newer Super Mario Bros. 7 SMNJ16 = Newer Super Mario Sunshine SMNJ17 = Flowery Super Mario Land Wii SMNJ18 = Super Switchy Mario World Wii SMNJ19 = New Super Mr. M Bros. Wii SMNJ20 = New Super Mario Bros. H SMNJ21 = Newer Super Mario Land Wii SMNJ22 = Neo Mario Brothers Wii SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ24 = Super Mario Ghost Special SMNJ25 = Happy Super Marionose Wii SMNJ26 = New Super Mario Bros. DS Wii Version SMNJ27 = Newer Super Mario All Star SMNJ28 = New Super Mario World SMNJ29 = Not So Super Toaster Bros.: The Newer Collab! SMNJ2D = Super Mario 2D Land Wii SMNJ30 = New Super Mario Bros. Koopa Kall SMNJ31 = New Super Mario Bros. Wii - Other World SMNJ32 = Super Mario Legends SMNJ33 = New Super Mario Bros. Wii Rollercoaster Party SMNJ34 = New Super Mario Bros. Wii: Yoshi Mode SMNJ35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNJ36 = New Super Mario Bros. Wii Hack Pack SMNJ37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNJ38 = New Super Mario Bros. Wii Underground Maze SMNJ39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNJ40 = Newer Super Mario Bros. Wii U SMNJ41 = Devil Mario Winter Special SMNJ42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNJ99 = Children's Super Mario Bros. Wii SMNJD2 = New Super Mario Bros. + Animal Edition SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJNW = Newer Mario Escapade SMNJPM = Super Mario: Mushroom Adventure PLUS SMNJPS = New Super Mario Bros. Plus SMNJRE = Retro Mario Bros. SMNJRV = RVLution Wii SMNJSL = Newer Super Mario Land Wii SMNJSM = New Super Ghost Mario Wii SMNJXD = Deluxe Super Mario Bros. Wii SMNJXR = Super Mario Remix SMNJYE = 8Forrest's Super Mario Bros. Wii SMNJYL = Luigi's Super Yoshi Bros. SMNJYM = You Super Mario Bros. Me Summer Special SMNJYS = Yoshi Super Mario Bros. Wii SMNJYY = You Super Mario Bros. Me Autumn Adventure SMNJZ2 = New JeDa Mario Bros. Wii SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZG = GF Super Mario Bros. Wii SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZQ = Basic Super Mario Bros. Wii SMNJZR = Newer Super Wario World Wii SMNJZS = Another Newer Super Mario Bros. Wii SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZX = Donkey Kong Remastered SMNJZY = Super Mario Skyland SMNJZZ = New Super Mario Bros. 2 Wii Version SMNK01 = New Super Mario Bros. Wii SMNP01 = New Super Mario Bros. Wii SMNP02 = Awesomer Super Luigi Mini SMNP03 = Newer Super Mario Bros. Wii SMNP04 = Cannon Super Mario Bros. Wii SMNP05 = Another Super Mario Bros. Wii SMNP06 = Newer Summer Sun SMNP07 = Newer Holiday Special SMNP08 = Epic Super Bowser World SMNP10 = Koopa Country SMNP11 = New Super Mario Bros. Wii 4 SMNP12 = Awesomer Super Luigi Mini SMNP13 = New Super Mario Bros. Wii 9 Summer Special SMNP14 = Super Mario World Wii SMNP15 = Newer Super Mario Bros. 7 SMNP16 = Newer Super Mario Sunshine SMNP17 = Flowery Super Mario Land Wii SMNP18 = Super Switchy Mario World Wii SMNP19 = New Super Mr. M Bros. Wii SMNP20 = New Super Mario Bros. H SMNP21 = Newer Super Mario Land Wii SMNP22 = Neo Mario Brothers Wii SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP24 = Super Mario Ghost Special SMNP25 = Happy Super Marionose Wii SMNP26 = New Super Mario Bros. DS Wii Version SMNP27 = Newer Super Mario All Star SMNP28 = New Super Mario World SMNP29 = Not So Super Toaster Bros.: The Newer Collab! SMNP2D = Super Mario 2D Land Wii SMNP30 = New Super Mario Bros. Koopa Kall SMNP31 = New Super Mario Bros. Wii - Other World SMNP32 = Super Mario Legends SMNP33 = New Super Mario Bros. Wii Rollercoaster Party SMNP34 = New Super Mario Bros. Wii: Yoshi Mode SMNP35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNP36 = New Super Mario Bros. Wii Hack Pack SMNP37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNP38 = New Super Mario Bros. Wii Underground Maze SMNP39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNP40 = Newer Super Mario Bros. Wii U SMNP41 = Devil Mario Winter Special SMNP42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNP77 = New Super Mario Bros. Wii Arcadia SMNP99 = Children's Super Mario Bros. Wii SMNPD2 = New Super Mario Bros. + Animal Edition SMNPDU = DU Super Mario Bros. : Anniversary Edition SMNPLL = Newer Super Luigi Wii SMNPLM = Newer Super Luigi Wii Dark Moon SMNPMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNPNW = Newer Mario Escapade SMNPO1 = New Super Mario Custom Edition SMNPPM = Super Mario: Mushroom Adventure PLUS SMNPPS = New Super Mario Bros. Plus SMNPRE = Retro Mario Bros. SMNPRV = RVLution Wii SMNPSL = Newer Super Mario Land Wii SMNPSM = New Super Ghost Mario Wii SMNPXD = Deluxe Super Mario Bros. Wii SMNPXR = Super Mario Remix SMNPYE = 8Forrest's Super Mario Bros. Wii SMNPYL = Luigi's Super Yoshi Bros. SMNPYM = You Super Mario Bros. Me Summer Special SMNPYS = Yoshi Super Mario Bros. Wii SMNPYY = You Super Mario Bros. Me Autumn Adventure SMNPZ2 = New JeDa Mario Bros. Wii SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZG = GF Super Mario Bros. Wii SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZQ = Basic Super Mario Bros. Wii SMNPZR = Newer Super Wario World Wii SMNPZS = Another Newer Super Mario Bros. Wii SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZX = Donkey Kong Remastered SMNPZY = Super Mario Skyland SMNPZZ = New Super Mario Bros. 2 Wii Version SMNW01 = New Super Mario Bros. Wii SMOE41 = Michael Jackson: The Experience SMOJ41 = Michael Jackson: The Experience SMOP41 = Michael Jackson The Experience SMOT3Q = SingItStar Motown SMOX41 = Michael Jackson: The Experience - Walmart Edition SMOY41 = Michael Jackson: The Experience - Special Edition SMPE69 = Monopoly Collection SMPP01 = New Super Mario Bros. Wii 2: The Other P SMPP69 = Monopoly Collection SMRE01 = New Super Mario Bros. Wii: Super Mario Bros. 1 Custom SMRE78 = WWE SmackDown vs. Raw 2011 SMRP78 = WWE SmackDown vs. Raw 2011 SMSE01 = New Super Mario Bros Wii 12 Sunshine Paradise SMSE78 = Marvel Super Hero Squad: The Infinity Gauntlet SMSP78 = Marvel Super Hero Squad: The Infinity Gauntlet SMTJ18 = Momotarô Dentetsu 2010 SMUJAF = Daikaijuu Battle: Ultra Coliseum DX - Ultra Senshi Daishuuketsu SMVE01 = Super Mario Vacation SMVE54 = Major League Baseball 2K11 SMVJ01 = Super Mario Vacation SMVP01 = Super Mario Vacation SMWE01 = Newer Super Mario World U SMWE4Z = Man vs. Wild SMWJ01 = Newer Super Mario World U SMWP01 = Newer Super Mario World U SMYE20 = Minute to Win It SMZE78 = Marvel Super Hero Squad: Comic Combat SMZP78 = Marvel Super Hero Squad: Comic Combat SN2E69 = NERF N-Strike Double Blast Bundle SN3EYG = Maximum Racing: Rally Racer SN3PNG = Rally Racer SN4EDA = Naruto Shippuden: Dragon Blade Chronicles SN4JDA = Naruto Shippuuden: Ryujinki SN4XGT = Naruto Shippuden: Dragon Blade Chronicles SN5EYG = Maximum Racing: Crash Car Racer SN5PNG = Crash Car Racer SN6EYG = Maximum Racing: Super Karts SN6PNG = Super Karts SN7EYG = Maximum Racing: Super Truck Racer SN7PNG = Super Truck Racer SN8EYG = Maximum Racing: Sprint Cars SN8PNG = Sprint Cars SN9E54 = Nickelodeon Fit SNAE52 = Cabela's North American Adventures 2011 SNBE41 = NCIS: The Game SNBP41 = NCIS: The Game SNCE8P = Sonic Colors SNCJ8P = Sonic Colors SNCP8P = Sonic Colours SNDE20 = Deal or No Deal: Special Edition SNEENR = North American Hunting Extravaganza 2 SNEPXT = North American Hunting 2: Extravaganza SNFE69 = EA Sports Active NFL Training Camp SNGEJJ = Get Fit with Mel B SNGPLG = Get Fit with Mel B SNHE69 = Need for Speed: Hot Pursuit SNHJ13 = Need for Speed: Hot Pursuit SNHP69 = Need for Speed: Hot Pursuit SNIE54 = Nicktoons MLB SNJE69 = NBA Jam SNJP69 = NBA Jam SNKX54 = Nickelodeon Fit SNLE01 = New Super Mario Bros. Wii 0-2 Next Generation Levels SNLE54 = Nickelodeon Dance SNLP54 = Nickelodeon Dance SNLX54 = Nickelodeon Dance SNMEAF = Namco Museum Megamix SNOPY1 = Now! That's What I Call Music: Dance & Sing SNPE52 = NASCAR The Game: Inside Line SNQE7U = National Geographic Challenge! SNQPLG = National Geographic Challenge! SNRE52 = NASCAR Unleashed SNSE52 = NASCAR 2011: The Game SNTEXN = Netflix Instant Streaming Disc SNUPJW = Happy Neuron Academy SNVE69 = Need for Speed: The Run SNVJ13 = Need for Speed: The Run SNVP69 = Need for Speed: The Run SNXJDA = Naruto Shippuuden: Gekitou Ninja Taisen Special SNYEVZ = Monster High: 13 Wishes SNYPVZ = Monster High: 13 Wishes SNZEVZ = Barbie: Dreamhouse Party SNZPVZ = Barbie: Dreamhouse Party SO3EE9 = Rune Factory: Tides of Destiny SO3J99 = Rune Factory: Oceans SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg 2 SOCE4Z = Deadliest Catch: Sea of Chaos SOIEEB = 101-in-1 Sports Party Megamix SOIPHZ = 101-in-1 Sports Party Megamix SOJE41 = Rayman Origins SOJP41 = Rayman Origins SOKEA4 = Karaoke Joysound SOKJ18 = Karaoke Joysound Wii DX SOME01 = Rhythm Heaven Fever SOMJ01 = Minna no Rhythm Tengoku SOMK01 = Rhythm Heaven Fever SOMP01 = Beat the Beat: Rhythm Paradise SONDMR = My First Songs SONFMR = My First Songs SONPMR = My First Songs SORE4Z = The Oregon Trail SOSEG9 = Turbo: Super Stunt Squad SOSPAF = Turbo: Super Stunt Squad SOTE52 = Wipeout: The Game SOUE01 = The Legend of Zelda: Skyward Sword SOUJ01 = The Legend of Zelda: Skyward Sword SOUK01 = The Legend of Zelda: Skyward Sword SOUP01 = The Legend of Zelda: Skyward Sword SP2E01 = Wii Sports + Wii Sports Resort SP2P01 = Wii Sports + Wii Sports Resort SP3E41 = The $1,000,000 Pyramid SP4PJW = Pétanque Master SP4V = Castlevania: Rondo of Blood SP5E70 = The Kore Gang: Outvasion From Inner Earth SP5PVV = The Kore Gang: Outvasion From Inner Earth SP6DSV = Popstars SP7EAF = Pac-Man Party SP7JAF = Pac-Man Party SP7PAF = Pac-Man Party SP8E78 = The Penguins of Madagascar: Dr. Blowhole Returns Again! SP8P78 = The Penguins of Madagascar: Dr. Blowhole Returns Again! SP9P4Q = SingIt Star POP 2009 SP9PJW = Pucca's Race for Kisses SPAE5G = Pirates Plund-Arrr SPBPGT = Spellbound Party SPCPZS = Pocoyo Racing SPDE52 = Spider-Man: Shattered Dimensions SPDP52 = Spider-Man: Shattered Dimensions SPEE20 = Speed SPEPXT = Speed SPGPPN = Peppa Pig: Fun And Games SPHPJW = Spaghetti Western Shooter SPIE18 = Oops! Prank Party SPIJ18 = Party Game Box 100 SPIP18 = Games Island SPKXPV = Springdale: Riding Adventures SPMDRM = Mahjongg Party SPMPWP = Mahjong Party Pack SPOPFR = Winter Sports 2011: Go for Gold SPPEFS = Power Punch SPQE7T = I SPY Spooky Mansion SPRE01 = New Super Mario Bros. Wii 14 Project Mario SPRE41 = The Price Is Right: 2010 Edition SPTJEB = Hospital. 6 nin no Ishi SPUE20 = Let's Paint SPVEA4 = Pro Evolution Soccer 2011 SPVPA4 = Pro Evolution Soccer 2011 SPVXA4 = Pro Evolution Soccer 2011 SPVYA4 = Pro Evolution Soccer 2011 SPWHZH = The Studio 100: Play Island SPXP41 = Prince of Persia: The Forgotten Sands SPYDSV = Yetisports: Penguin Party Island SPZE5G = Pizza Delivery Boy SQ2EPZ = Country Dance SQ2PXT = Country Dance SQAE52 = Cabela's African Adventures SQBPXT = The Cube SQDE8P = Gunblade NY & LA Machineguns : Arcade Hits Pack SQDP8P = Gunblade NY & LA Machineguns: Arcade Hits Pack SQEENG = We Sing Pop! SQEPNG = We Sing Pop! SQFE5G = Phineas and Ferb: Quest for Cool Stuff SQFPGT = Phineas and Ferb: Quest for Cool Stuff SQIE4Q = Disney Infinity SQIP4Q = Disney Infinity SQIY4Q = Disney Infinity SQKE5G = Cooking Mama 2-Pack SQKK01 = Cooking Mama 2 Pack SQLE4Z = Cartoon Network Punch Time Explosion XL SQLPGN = Cartoon Network: Punch Time Explosion XL SQME52 = Spider-Man: Edge of Time SQMP52 = Spider-Man: Edge of Time SQPPX4 = Speed 2 SQQEVZ = Disney Planes: Fire & Rescue SQQPVZ = Disney Planes: Fire & Rescue SQRPNG = We Sing Rock! SQTPML = The Ultimate Battle Of The Sexes: Quizz & Play! SQUDX3 = Quiz Party SQUFX3 = Quiz Party SQVE69 = FIFA 15 SQVP69 = FIFA 15 - Legacy Edition SQVX69 = FIFA 15 - Legacy Edition SR4E41 = Raving Rabbids: Travel in Time SR4J41 = Raving Rabbids: Travel in Time SR4P41 = Raving Rabbids: Travel in Time SR5E41 = Raving Rabbids Party Collection SR5P41 = Raving Rabbids Party Collection SR6EHG = Reader Rabbit 1st Grade SR7EHG = Reader Rabbit 2nd Grade SR8EHG = Reader Rabbit Kindergarten SR9EHG = Reader Rabbit Preschool SRAJMS = Rajirugi Noa Wii SRBP4Q = SingItStar: R&B SRBPHS = Rugby League 3 SRCE69 = Rock Band: Country Track Pack 2 SREXNL = Reader Rabbit Kindergarten SRFE52 = Rapala Pro Bass Fishing SRFP52 = Rapala Pro Bass Fishing SRGE69 = Rango SRGP01 = New Super Mario Bros Wii 2 Reggie SRGP69 = Rango SRHP01 = New Super Mario Bros. Wii 7 Retro Heaven SRIE78 = Rio SRIP78 = Rio SRJJAF = Super Sentai Battle: Ranger Cross SRKEFP = Remington Super Slam Hunting: Alaska SRKPNK = Remington Dangerous Animals SRLXNL = Reader Rabbit Preschool SRME18 = Rooms: The Main Building SRMJ18 = Rooms: Fushigi na Ugoku Heya SRNE70 = Project Runway SRNP01 = New Super Mario Bros. Wii Revolution SRNP70 = Project Runway SRPE4Q = Disney Tangled SRPP4Q = Disney Tangled SRQE41 = Racquet Sports SRQP41 = Racket Sports Party SRRENR = Rec Room Games SRRPGN = Great Party Games SRSE20 = Super Sonic Racer SRSPXT = Supersonic Racer SRTXNL = Reader Rabbit 1st Grade SRUE4Z = Rudolph the Red-Nosed Reindeer SRVE41 = The Price Is Right Decades SRVP01 = New Super Mario Bros Revolution SRWXNL = Reader Rabbit 2nd Grade SRXE52 = Generator Rex: Agent of Providence SRXP52 = Generator Rex: Agent of Providence SRYEAF = ExerBeat: Gym Class Workout SRYJAF = Fitness Party SRYPAF = ExerBeat: Gym Class Workout SS2PFR = Winter Sports 2012: Feel the Spirit SS3EWR = Sesame Street: Elmo's A-to-Zoo Adventure SS3PWR = Sesame Street: Elmo's A-to-Zoo Adventure SS3UWR = Sesame Street: Elmo's A-to-Zoo Adventure SS4EWR = Sesame Street: Cookie's Counting Carnival SS4UWR = Sesame Street: Cookie's Counting Carnival SS5ENR = Satisfashion SS6UHS = AFL Live: Game of the Year Edition SS7EFP = Remington Super Slam Hunting: Africa SS7URN = Remington Super Slam Hunting: Africa SS8E78 = SpongeBob SquigglePants SS8P78 = SpongeBob SquigglePants SS9JMS = Milestone Shooting Collection 2 SSBE78 = Puss in Boots SSBP78 = Puss in Boots SSCDWR = Scene It? Bright Lights! Big Screen! SSCEPM = Scene It? Bright Lights! Big Screen! SSCFPM = Scene It? Bright Lights! Big Screen! SSCFWR = Scene It? Bright Lights! Big Screen! SSCIWR = Scene It? Bright Lights! Big Screen! SSCPWR = Scene It? Bright Lights! Big Screen! SSCSWR = Scene It? Bright Lights! Big Screen! SSDDRV = Schlag den Raab SSEDNG = We Sing: Encore SSEPNG = We Sing: Encore SSEVNG = We Sing: Encore SSFPKM = Sing 4: The Hits Edition SSGPNG = We Sing SSHPHH = Sherlock Holmes: The Silver Earring SSIENR = Winter Blast: 9 Snow & Ice Games SSJEJJ = Summer Stars 2012 SSJPKM = Summer Stars 2012 SSLENR = I Love Horses: Rider's Paradise SSLPKM = The Saddle Club SSLPOH = SingItStar Legends SSMEYG = American Mensa Academy SSMPGD = Mensa Academy SSNEYG = Sniper Elite SSNPHY = Sniper Elite SSPE52 = Skylanders: Spyro's Adventure SSPJ52 = Skylanders: Spyro's Adventure SSPP52 = Skylanders: Spyro's Adventure SSPX52 = Skylanders: Spyro's Adventure SSQE01 = Mario Party 9 SSQJ01 = Mario Party 9 SSQK01 = Mario Party 9 SSQP01 = Mario Party 9 SSQW01 = Mario Party 9 SSRE20 = Wild West Shootout SSRPXT = Wild West Shootout SSSE01 = New Super Mario Bros. Wii: Summer Sun SSSEWR = Sesame Street: Elmo's Musical Monsterpiece SSTEG9 = Kid Adventures: Sky Captain SSTPY5 = Stunt Flyer: Hero of the Skies SSUES5 = Sushi Go Round SSVE52 = Wipeout 3 SSWDRM = Water Sports SSWEPZ = Water Sports SSWPGR = Water Sports SSZE5G = Swords ST3J01 = Kiki Trick ST4PNX = Thomas & Friends: Hero of the Rails ST4XNX = Thomas & Friends: Hero of the Rails ST5E52 = Transformers: Cybertron Adventures ST5P52 = Transformers: Cybertron Adventures ST6E78 = The Biggest Loser Challenge ST6P78 = The Biggest Loser Challenge ST7E01 = Fortune Street ST7JGD = Itadaki Street Wii ST7P01 = Boom Street ST8P75 = SingItStar 80's ST9E52 = Top Shot Arcade STAE78 = Pictionary STAP75 = SingItStar Apres Ski Hits STAP78 = Pictionary STAU78 = Pictionary STCP75 = SingItStar Singstar STDEFP = Reload STDP75 = SingItStar Deutsch Rock-Pop STEETR = Tetris Party Deluxe STEJ18 = Tetris Party Premium STEPTR = Tetris Party Deluxe STFE52 = Transformers: Prime STFP52 = Transformers Prime: The Game STGJAF = Tales of Graces STHE8P = THOR: God of Thunder STHP75 = SingItStar Hottest Hits STHP8P = THOR: God of Thunder STIFKM = Titeuf le Film STJJAF = Taiko no Tatsujin Wii: Ketteiban STKE08 = Tatsunoko vs. Capcom: Ultimate All-Stars STKJ08 = Tatsunoko vs. Capcom: Ultimate All-Stars STKP08 = Tatsunoko vs. Capcom: Ultimate All-Stars STLE78 = Truth or Lies STLP78 = Truth or Lies STMEGN = Titanic Mystery STMPKP = Titanic Mystery STNE41 = The Adventures of Tintin: The Game STNP41 = The Adventures of Tintin: The Secret of the Unicorn STOE4Q = Cars Toon: Mater's Tall Tales STOP4Q = Cars Toon: Mater's Tall Tales STOX4Q = Cars Toon: Mater's Tall Tales STPP75 = SingItStar Pop Hits STPPML = Pet Vet: Marine Patrol STQJHF = Inazuma Eleven Strikers STQP01 = Inazuma Eleven Strikers STQP75 = SingItStar Queen STQX01 = Inazuma Eleven Strikers STRE4Q = Tron: Evolution - Battle Grids STRP4Q = Tron: Evolution - Battle Grids STRP75 = SingItStar Rock Ballads STRX4Q = Tron: Evolution - Battle Grids Championship Edition STSE4Q = Toy Story 3 STSP4Q = Toy Story 3 STSP75 = SingItStar Schlager STSX4Q = Toy Story 3 STSY4Q = Toy Story 3 STSZ4Q = Toy Story 3: Toy Box Special Edition STTDRM = Hidden Mysteries: Titanic STTE52 = Hidden Mysteries: Titanic STTPGR = Hidden Mysteries Titanic: Secrets of the Fateful Voyage STTXGR = Hidden Mysteries: Titanic STUPRN = Turbo Trainz STVDSV = TV Total Events STWE69 = Tiger Woods PGA Tour 11 STWP69 = Tiger Woods PGA Tour 11 STXE69 = Tiger Woods PGA Tour 12: The Masters STXP69 = Tiger Woods PGA Tour 12: The Masters STYE52 = Tony Hawk: Shred STYP52 = Tony Hawk: Shred STZE52 = Transformers: Dark of the Moon - Stealth Force Edition STZP52 = Transformers: Dark of the Moon - Stealth Force Edition SU2E54 = Nickelodeon Dance 2 SU2P54 = Nickelodeon Dance 2 SU2X54 = Nickelodeon Dance 2 SU3DMR = U-Sing 2 SU3FMR = U-Sing 2 SU3HMR = U-Sing 2: Popstars Edition SU3PMR = U-Sing 2 SU3SMR = U-Sing 2 SU3UMR = U-Sing 2: Australian Edition SU4E78 = UFC Personal Trainer: The Ultimate Fitness System SU4P78 = UFC Personal Trainer: The Ultimate Fitness System SU5EVZ = Monster High: Skultimate Roller Maze SU5PVZ = Monster High: Skultimate Roller Maze SU6E5G = Zumba Fitness Core SU6P5G = Zumba Fitness Core SU6XGT = Zumba Fitness Core SU7EG9 = Rise of the Guardians SU7PAF = Rise of the Guardians SU8PNG = We Sing: Deutsche Hits 2 SU9E4Q = Disney Planes SU9P4Q = Disney Planes SU9X4Q = Disney Planes SUKE01 = Kirby's Return to Dream Land SUKJ01 = Hoshi no Kirby Wii SUKK01 = Kirby's Return to Dream Land SUKP01 = Kirby's Adventure Wii SUMJC8 = Winning Post World 2010 SUNEYG = Deer Drive Legends SUOE41 = The Hip Hop Dance Experience SUOP41 = The Hip Hop Dance Experience SUPE01 = Wii Party SUPJ01 = Wii Party SUPK01 = Wii Party SUPP01 = Wii Party SUQENG = We Sing UK Hits SUQPNG = We Sing: UK Hits SURE01 = New Super Mario Bros. Wii 19 Resurrection U SUREA4 = Dance Dance Revolution II SURPA4 = Dance Dance Revolution: Hottest Party 5 SUSFMR = U-Sing Johnny Hallyday SUSPMR = U-Sing Girls Night SUTESZ = Once Upon A Time SUUE78 = uDraw Studio: Instant Artist SUUP78 = uDraw Studio: Instant Artist SUVE52 = Cabela's Dangerous Hunts 2013 SUVP52 = Cabela's Dangerous Hunts 2013 SUWE78 = uDraw Studio SUWP78 = uDraw Studio SUXEA4 = Pro Evolution Soccer 2010 SUXJA4 = Winning Eleven PLAY MAKER 2010 SUXPA4 = Pro Evolution Soccer 2010 SUXXA4 = Pro Evolution Soccer 2010 SUXYA4 = Pro Evolution Soccer 2010 SUYDRV = Schlag den Raab - Das 3. Spiel SUZD7K = Benjamin Blümchen - Törööö im Zoo SV2E78 = Big Beach Sports 2 SV2P78 = Big Beach Sports 2 SV3EG9 = Madagascar 3: The Video Game SV3PAF = Madagascar 3: Europe's Most Wanted SV4E8P = Virtua Tennis 4 SV4P8P = Virtua Tennis 4 SV5PRV = The Voice of Germany Vol. 2 SV6SRV = The Voice SV7EVZ = Penguins of Madagascar SV7PVZ = Penguins of Madagascar SVBE52 = Battleship SVBP52 = Battleship SVCEPZ = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVHP69 = FIFA 14 - Legacy Edition SVHX69 = FIFA 14 - Legacy Edition SVME01 = Super Mario All-Stars SVMJ01 = Super Mario Collection: 25th Anniversary Edition SVMK01 = Super Mario All-Stars SVMP01 = Super Mario All-Stars: 25th Anniversary Edition SVOEWW = El Chavo SVPESZ = Vegas Party SVPPNJ = Vegas Party SVSPZX = Battle vs Chess SVTEXS = Bit.Trip Complete SVTP99 = BIT.TRIP COMPLETE SVUPRV = The Voice of Germany SVVEG9 = The Croods: Prehistoric Party! SVVPAF = The Croods: Prehistoric Party! SVWEQH = Veggy World SVXE52 = Skylanders: Swap Force SVXF52 = Skylanders: Swap Force SVXI52 = Skylanders: Swap Force SVXP52 = Skylanders: Swap Force SVXY52 = Skylanders: Swap Force SVYEG9 = Ben 10: Omniverse 2 SVYPAF = Ben 10: Omniverse 2 SVZEVZ = How to Train Your Dragon 2 SVZPVZ = How to Train Your Dragon 2 SW2E52 = Wipeout 2 SW3EJJ = Winter Stars SW3PKM = Winter Stars SW4JA4 = Winning Eleven PLAY MAKER 2011 SW6E78 = WWE '12 SW6P78 = WWE '12 SW7EVN = Gunslingers SW7PNK = Western Heroes SW8ENG = We Sing 80s SW8PNG = We Sing 80s SW9EVN = Wicked Monsters Blast! SW9PYT = Wicked Monsters Blast! SWAE52 = DJ Hero SWAP52 = DJ Hero SWBE52 = DJ Hero 2 SWBP01 = New Super Mario Bros. Wii 0 Where It All Began SWBP52 = DJ Hero 2 SX2PNG = Jungle Kartz SX3EXJ = Pandora's Tower SX3J01 = Pandora’s Tower: Until I Return to Your Side SX3P01 = Pandora's Tower SX4E01 = Xenoblade Chronicles SX4J01 = Xenoblade SX4P01 = Xenoblade Chronicles SX5E4Z = Santa Claus is Comin' to Town! SX6JAF = Pretty Cure All Stars Everyone Gather ☆ Let's Dance SX7E52 = Teenage Mutant Ninja Turtles SX7P52 = Teenage Mutant Ninja Turtles SX8E52 = X-Men Destiny SX8P52 = X-Men Destiny SXAE52 = Guitar Hero: World Tour SXAP52 = Guitar Hero: World Tour SXBE52 = Guitar Hero: Metallica SXBP52 = Guitar Hero: Metallica SXCE52 = Guitar Hero: Smash Hits SXCP52 = Guitar Hero: Greatest Hits SXDE52 = Guitar Hero: Van Halen SXDP52 = Guitar Hero: Van Halen SXEE52 = Guitar Hero 5 SXEF52 = Guitar Hero III Custom : Megadeth SXEP52 = Guitar Hero 5 SXFE52 = Band Hero SXFF52 = Guitar Hero III Custom : My Chemical Romance SXFP52 = Band Hero SXIE52 = Guitar Hero: Warriors of Rock SXIP52 = Guitar Hero: Warriors of Rock SY8PKM = Let's Sing 2015 SZ2E5G = Zumba Fitness 2 SZ2P5G = Zumba Fitness 2 SZ2XGT = Zumba Fitness 2 SZ3E5G = Zumba Fitness World Party SZ3PGT = Zumba Fitness World Party SZ5E5G = Zumba Fitness SZ5PGT = Zumba Fitness SZAE69 = Rock Band 2 SZAP69 = Rock Band 2 SZBE69 = Rock Band 3 SZBP69 = Rock Band 3 SZEE01 = New Super Mario Bros Wii 13 Shadow Zero Escape TITLES = http://www.gametdb.com (type: Wii language: PT version: 20150208111154) UGPE01 = Game Boy Player UGPJ01 = Game Boy Player UGPP01 = Game Boy Player ULFW = uLoader UUUE01 = New Super Mario Bros. Wii 19 Resurrection U VBGX = Visual Boy Advance GX VIPE01 = New Super Mario Bros Wii 18 Vip Mix W22E = Planet Fish W24E = 2 Fast 4 Gnomz W2AE = Big Bass Arcade W2CE = Brain Challenge W2CJ = Brain Challenge W2CP = Brain Challenge W2FP = Physiofun - Balance Training W2GD = Phoenix Wright Ace Attorney: Justice for All (Deutsche Version) W2GE = Phoenix Wright: Ace Attorney Justice for All W2GI = Phoenix Wright: Ace Attorney - Justice for All W2GJ = Gyakuten Saiban 2 W2GP = Phoenix Wright Ace Attorney: Justice for All W2IE = Fishie Fishie W2IP = Fishie Fishie W2JE = Just Jam W2KE = Let's Catch W2KJ = Let's Catch W2KP = Let's Catch W2LE = Bloons W2LP = Bloons W2ME = Blaster Master: Overdrive W2MP = Blaster Master: Overdrive W2OE = My Aquarium 2 W2OJ = Blue Oasis: Michinaru Shinkai W2OP = My Aquarium 2 W2PP = Physiofun: Pelvic Floor Training W2TE = Drill Sergeant Mindstrong W2TJ = Onitore Kyoukan ha Onigunsou W2TP = Brain Cadets W2YE = Fireplacing W2YP = My Fireplace W34J = Simple Series Vol. 4: The Misshitsu kara no Dasshutsu W3AE = Carmen Sandiego Adventures in Math: The Big Ben Burglary W3BE = Soccer Bashi W3BP = Soccer Bashi W3DJ = 3° C W3FE = 3D Pixel Racing W3FP = 3D Pixel Racing W3GD = Phoenix Wright Ace Attorney 3: Trials And Tribulations W3GE = Phoenix Wright Ace Attorney: Trials and Tribulations W3GI = Phoenix Wright: Ace Attorney - Trials and Tribulations W3GJ = Gyakuten Saiban 3 W3GP = Phoenix Wright Ace Attorney: Trials and Tribulations W3JE = Triple Jumping Sports W3KE = ThruSpace W3KJ = Surinuke Anatousu W3KP = ThruSpace: High Velocity 3D Puzzle W3LE = Carmen Sandiego Adventures in Math: The Lady Liberty Larceny W3ME = The Three Musketeers: One for all W3MP = The Three Musketeers: One for all W3PE = Triple Throwing Sports W3RE = Triple Running Sports W3SE = Triple Shot Sports W3TE = Pearl Harbor Trilogy - 1941: Red Sun Rising W3TP = Pearl Harbor Trilogy 1941: Red Sun Rising W42J = Fortune: Hoshi no Furisosogu Oka W44E = Stop Stress: A Day of Fury W44P = Stop Stress: A Day of Fury W48E = ShadowPlay W4AE = Arcade Sports W4AP = Arcade Sports: Air Hockey, Bowling, Pool, Snooker W4KE = Deer Captor W4KJ = Shikagari W4OJ = Shikakui Atama wo Marukusuru Challenge W4TE = Spaceball Revolution W4TP = Spaceball Revolution W54E = 5 Spots Party W54P = 5 Spots Party W5AE = 5 Arcade Gems W5AP = 5 Arcade Gems W5IE = 5 in 1 Solitaire W6BE = Eco Shooter: Plant 530 W6BJ = 530 Eco Shooter W6BP = Eco-Shooter: Plant 530 W72P = Successfully Learning German Year 3 W73P = Successfully Learning German Year 4 W74P = Successfully Learning German Year 5 W7IP = Successfully Learning German Year 2 W82J = Jintori Action Taikokenchi Karakuri Shiro no Nazo W8BP = Babel Rising W8CE = Bit.Trip Core W8CJ = BIT.TRIP CORE: Rhythm Seijin no Gyakushuu W8CP = Bit.Trip Core W8DJ = Mebius Drive W8IJ = Hachi-One Diver Wii W8LE = Balloon Pop Festival W8PJ = Ouchi de Mugen Puchi Puchi Wii W8WE = Happy Holidays: Halloween W8WP = Happy Holidays: Halloween W8XE = Battle Poker W9BE = Big Town Shoot Out W9BP = Big Town Shoot W9IE = Evasive Space W9IJ = Kiken Kuuiki W9LE = Christmas Clix W9RE = Happy Holidays: Christmas W9RP = Happy Holidays: Christmas W9UE = Cruise Party W9UP = Cruise Party WA2E = Magnetica Twist WA2J = Minna de Puzzloop WA2P = Actionloop Twist WA4E = WarioWare: D.I.Y. Showcase WA4J = WarioWare: D.I.Y. Showcase WA4P = WarioWare: Do It Yourself – Showcase WA5E = Carmen Sandiego Adventures in Math: The Island of Diamonds WA7E = Toribash WA7P = Toribash Violence Perfected WA8E = Art Style: Rotozoa WA8J = Art Style: Penta Tentacles WA8P = Art Style: Penta Tentacles WAAE = Aya and the Cubes of Light WAAP = Aya and the Cubes of Light WABE = Art of Balance WABP = Art of Balance WACE = Arcade Essentials WACP = Arcade Essentials WAEE = Around The World WAEP = Around the world WAFE = Airport Mania: First Flight WAFP = Airport Mania: First Flight WAGE = Pinocchio's Puzzle WAHE = Trenches Generals WAHP = Trenches: Generals WAIE = 101-in-1 Explosive Megamix WAIP = 101-in-1 Explosive Megamix WAJE = MotoHeroz WAJP = MotoHeroz WAKE = Carmen Sandiego Adventures in Math: The Case of the Crumbling Cathedral WALE = Art Style: Light Trax WALJ = Art Style: Lightstream WALP = Art Style: light trax WAME = Carmen Sandiego Adventures in Math: The Great Gateway Grab WANE = Ant Nation WANP = Ant Nation WAOE = The Very Hungry Caterpillar's ABCs WAOJ = Harapeko Aomushi no ABC WAOP = The Very Hungry Caterpillar´s ABC WAQJ = Yakuman Wii: Ide Yousuke no Kenkou Mahjong WARE01 = DU Super Wario Bros. WARJ = Tsuushin Taikyoku Igo Doujou 2700 Mon WASJ = Tsuushin Taikyoku: Hayazashi Syogi Sandan WATE = Astro Bugz Revenge WAUJ = Tsushin Taikyoku: World Chess WAYE = And Yet It Moves WAYP = And Yet It Moves WAZE = The Amazing Brain Train WB2E = Strong Bad Episode 4: Dangeresque 3 WB2P = Strong Bad Episode 4: Dangeresque 3 WB3E = Strong Bad Episode 5: 8-bit is Enough WB3P = Strong Bad Episode 5: 8-bit is Enough WB4E = Wild West Guns WB4J = Wild West Guns WB4P = Wild West Guns WB5E = Block Breaker Deluxe WB5J = Block Breaker Deluxe WB5P = Block Breaker Deluxe WB6E = TV Show King WB6J = TV Show King WB6P = TV Show King WB7E = Midnight Pool WB7J = Hamaru Billiards WB7P = Midnight Pool WB8E = Midnight Bowling WB8J = Hamaru Bowling WB8P = Midnight Bowling WBAJ = Bakutan WBBE = Snowboard Riot WBBJ = Board Warriors WBBP = Snowboard Riot WBDE = Brain Drain WBDP = Brain Drain WBEE = Pong Toss: Frat Party Games WBEP = Beer Pong: Frat Party Games WBFE = Bit.Trip Fate WBFP = Bit.Trip Fate WBGP = Bang Attack WBHE = Blood Beach WBHP = Blood Beach WBIE = Boingz WBJE = Harvest Moon: My Little Shop WBJJ = Bokujou Monogatari Series: Makiba no Omise WBKE = Arkanoid Plus! WBKJ = Arkanoid Plus! WBKP = Arkanoid Plus! WBLE = Bubble Bobble Plus! WBLJ = Bubble Bobble Wii WBLP = Bubble Bobble Plus! WBME = My Pokémon Ranch WBMJ = Minna no Pokémon Bokujou WBMP = My Pokémon Ranch WBNE = Bonsai Barber WBNJ = Bonsai Barber WBNP = Bonsai Barber WBOE = Gravitronix WBPE = PLÄTTCHEN twist 'n' paint WBPP = PLÄTTCHEN - twist 'n' paint WBQE = Star Soldier R WBQJ = Star Soldier R WBQP = Star Soldier R WBRP = Pirates: The Key of Dreams WBSE = Pop WBSJ = Pop WBSP = Pop WBTJ = Fantasic Tambourine WBVE = SPOGS Racing WBVP = SPOGS Racing WBWE = Critter Round-Up WBWJ = Saku Saku Animal Panic WBWP = Critter Round-Up WBXE = Strong Bad Episode 1: Homestar Ruiner WBXP = Strong Bad Episode 1: Homestar Ruiner WBYE = Strong Bad Episode 2: Strong Badia - The Free WBYP = Strong Bad Episode 2: Strong Badia - The Free WBZE = Strong Bad Episode 3: Baddest of the Bands WBZP = Strong Bad Episode 3: Baddest of the Bands WC2E = Crystal Defenders R2 WC2J = Crystal Defenders R2 WC2P = Crystal Defenders R2 WC6E = Chronos Twins DX WC6P = Chronos Twins DX WC8J = Line Attack Heroes WCHE = Chess Challenge! WCHP = Chess Challenge WCIE = Crystal Defenders R1 WCIJ = Crystal Defenders R1 WCIP = Crystal Defenders R1 WCJE = Cocoto Platform Jumper WCJP = Cocoto: Platform Jumper WCKE = chick chick BOOM WCKJ = chick chick BOOM WCKP = chick chick BOOM WCLE = Doc Clock: The Toasted Sandwich of Time WCNJ = Tokyo City Nights WCOE = Cocoto Fishing Master WCOP = Cocoto Fishing Master WCPE = Copter Crisis WCPP = Copter Crisis WCRE = Carnival King WCSE = CueSports: Pool Revolution WCSJ = Cue Sports: Wi-Fi Taisen Billiards WCSP = CueSports: Snooker vs Billiards WCUE = 3-2-1, Rattle Battle! WCUJ = Atsui 12-Game: FuriFuri Party! WCUP = 3-2-1, Rattle Battle! WCVE = Cave Story WCVP = Cave Story WCZE = ColorZ WCZJ = ColorZ WCZP = ColorZ WD2J = Simple Wii Series Vol. 2: The Number Puzzle Neo WD9E = Castlevania The Adventure ReBirth WD9J = Dracula Densetsu ReBirth WD9P = Castlevania: The Adventure ReBirth WDAJ = Darts Wii WDBE = Derby Dogs WDBJ = Dirby Dog WDDE = Diner Dash WDDJ = Diner Dash WDDP = Diner Dash WDEE = Magic Destiny Astrological Games WDEP = Magic Destiny Astrological Games WDFE = Defend your Castle WDFP = Defend your Castle WDHE = Art Style: ROTOHEX WDHJ = Art Style: Dialhex WDHP = Art Style: ROTOHEX WDIJ = Simple Wii Series Vol. 1: The Block Kuzushi Neo WDKE = Dart Rage WDME = Dr. Mario Online RX WDMJ = Dr. Mario & Saikin Bokumetsu WDMP = Dr. Mario & Germ Buster WDNJ = Discipline Teikoku no Tanjyou WDOE = Driift Mania WDOP = Driift Mania WDPE = Dr. Mario Online Rx (Friend Battle Demo) WDPJ = Dr. Mario Online Rx (Friend Battle Demo) WDPP = Dr. Mario & Germ Buster (Friend Battle Demo) WDRE = Mr Driller W WDRJ = Mr. Driller World WDRP = Mr. Driller W WDSE = Dragon Master Spell Caster WDSP = Dragon Master Spell Caster WDVE = Voodoo Dice WDVP = Voodoo Dice WDXE = Diatomic WE6E = My Dolphin WE6J = Sea Farm: Iruka to Watashi no Showtime WE9E = Alien Crush Returns WE9J = Alien Crush Returns WE9P = Alien Crush Returns WEDE = Eduardo the Samurai Toaster WEME = Aha! I Got It! Escape Game WEMJ = 1 Nuke! Dasshutsu Game * My Home Hen WEMP = Aha! I Got It! Escape Game WENE = TNT Racers WENP = TNT Racers WEQE = Equilibrio WEQJ = Katamuki Spirits WEQP = Equilibrio WERE = My Aquarium WERJ = Blue Oasis: The Healing Space of Fish WERP = My Aquarium WETE = PictureBook Games: Pop-Up Pursuit WETJ = Asoberu Ehon: Tobida Sugoroku WETP = PictureBook Games: A Pop-Up Adventure WEVE = Viral Survival WEVJ = Peakvox Escape Virus WEVP = Viral Survival WF2E = Final Fantasy Crystal Chronicles: My Life as a Darklord WF2J = Final Fantasy Crystal Chronicles: Hikari to Yami no Himegimi to Sekai Seifuku no Tou WF2P = Final Fantasy Crystal Chronicles: My Life as a Darklord WF3E = Family Games - Pen & Paper Edition WF4E = Final Fantasy IV: The After Years WF4J = Final Fantasy IV: The After Years - Tsuki no Kikan WF4P = Final Fantasy IV: The After Years WF5E = Family Card Games WF5J = Okiraku Daifugou Wii WF5P = Family Card Games WF6E = Frobot WFAE = Fast Draw Showdown WFAP = Fast Draw Showdown WFBE = Sandy Beach WFBJ = Beach e Oki o Tsukuccha Wow! WFBP = Sandy Beach WFCE = Final Fantasy Crystal Chronicles: My Life as a King WFCJ = Final Fantasy Crystal Chronicles: Chiisana Ousama to Yakusoku no Kuni WFCP = Final Fantasy Crystal Chronicles: My Life as a King WFDE = Save the Furries WFEE = Fenimore Fillmore "The Westerner" WFFE = Fun! Fun! Minigolf WFFF4I = Fatal Frame 4: Mask of the Lunar Eclipse WFFJ = Fun! Fun! Minigolf WFFP = Fun! Fun! Minigolf WFGE = Frogger Returns WFGJ = Frogger Returns WFGP = Frogger Returns WFHE = Flight Control WFHP = Flight Control WFIE = Reel Fishing Challenge WFIJ = Fish Eyes Challenge WFIP = Reel Fishing Challenge WFKE = Family Go-Kart Racing WFKJ = Okiraku Kart Wii WFLE = Fluidity WFLP = Hydroventure WFME = Family & Friends Party WFMP = Family & Friends Party WFNE = Fish Tank WFNP = Fish Tank WFPJ = Hirameki Card Battle Mekuruca WFQP = Frogger: Hyper Arcade Edition WFSJ = Minna no Theater Wii WFTE = Fish 'em All WFTP = Fish'em All! WFUE = Furry Legends WFUP = Furry Legends WFVE = Soccer Up WFVP = Football Up WFWE = Flower Works WFWP = Flowerworks: Follie's Adventure WFXE = Cosy Fire WFXP = Cosy Fire WFYE = Family Games Pen & Paper Edition WFYP = Family Games Pen & Paper Edition WG2J = Sugar Bunnies Wii: Youkoso * Bunnies Field e WG4E = GhostSlayer WGAE = Ghost Mania WGAP = Ghost Mania WGDE = Gradius Rebirth WGDJ = Gradius Rebirth: Updated WGDP = Gradius Rebirth WGFP = Girlfriends Forever: Magic Skate WGGE = Gabrielle's Ghostly Groove: Monster Mix WGGJ = Ushimitsu Monstruo Puchi: Fushigi na Oshiro no Dance Party WGGP = Gabrielle's Ghostly Groove: Monster Mix WGLE = Gene Labs WGMJ = Game SoundStation WGOE = World of Goo WGOJ = World of Goo WGOP = World of Goo WGPE = AquaSpace WGPJ = Aqua Living: TV de Nagameru Uotachi WGPP = Zenquaria: Virtual Aquarium WGSD = Phoenix Wright: Ace Attorney (Deutsche Version) WGSE = Phoenix Wright: Ace Attorney WGSF = Phoenix Wright: Ace Attorney (French Version) WGSI = Phoenix Wright: Ace Attorney WGSJ = Gyakuten Saiban: Yomigaeru Gyakuten WGSP = Phoenix Wright: Ace Attorney WGTJ = Sekai no Omoshiro Party Game WGUJ = Aero Guitar WGVE = Groovin' Blocks WGYE = Gyrostarr WH3E = Home Sweet Home WH3P = Home Sweet Home WHBE = Hubert the Teddy Bear: Winter Games WHEE = Heracles: Chariot Racing WHEP = Heracles: Chariot Racing WHFE = Heavy Fire: Special Operations WHFP = Heavy Fire: Special Operations WHHJ = Let's Zenryoku Hitchhike!!!!!!!!! WHMP51 = New Super Mario Bros. Wii: The Ultimate Wii-Homebrew.com Edition WHOE = Hockey Allstar Shootout WHPE = Sexy Poker WHPP = Sexy Poker WHRE = Heron Steam Machine WHRP = Heron: Steam Machine WHUE = Ghost Mansion Party WHUJ = Ghost Mansion Party WHUP = Ghost Mansion Party WHVE = High Voltage: Hot Rod Show WHWE = HoopWorld WHWP = HoopWorld: BasketBrawl WHXE = Helix WHXP = Helix WHYE = Heavy Fire: Black Arms WHZE = Horizon Riders WIBE = bittos+ WICE = NyxQuest Kindred Spirits WICJ = NyxQuest WICP = NyxQuest: Kindred Spirits WIDE = Dracula: Undead Awakening WIDP = Dracula: Undead Awakening WIEE = Tales of Monkey Island: Chapter 3 - Lair of the Leviathan WIEP = Tales of Monkey Island Chapter 3: Lair of the Leviathan WIGE = Incoming WIHE = Play with Birds WIKJ = Ivy the Kiwi? Mini WILE = Tales of Monkey Island: Chapter 1 - Launch of the Screaming Narwhal WILP = Tales of Monkey Island Chapter 1: Launch of the Screaming Narwhal WIMC = WiiMC WINE = The Incredible Maze WINJ = Chokkan! Balance * Labyrinth WINP = The Incredible Maze WIRE = Tales of Monkey Island: Chapter 5 - Rise of the Pirate God WIRP = Tales of Monkey Island Chapter 5: Rise Of The Pirate God WISE = Tales of Monkey Island: Chapter 2 - The Seige of Spinner Cay WISP = Tales of Monkey Island Chapter 2: Siege Of Spinner Cay WITE = Aha! I Found It! Hidden Object Game WITJ = Aa! Mitsuketa! Item Sagashi Game WITP = Aha! I Found It! Hidden Object Game WIUE = Inkub WIVE = Space Invaders Get Even WIVJ = Space Invaders Get Even WIVP = Space Invaders Get Even WIYE = Tales of Monkey Island: Chapter 4 - The Trial and Execution of Guybrush Threepwood WIYP = Tales of Monkey Island Chapter 4: The Trial and Execution of Guybrush Threepwood WJ2J = Jinsei Game: Happy Step WJAE = Jam City Rollergirls WJAP = Jam City Rollergirls WJCE = JellyCar 2 WJEE = Jett Rocket WJEP = Jett Rocket WJFE = Gnomz WJFP = Gnomz WJGJ = Jinsei Game WJKE = Jewel Keepers Easter Island WJKP = Jewel Keepers: Easter Island WJPJ = Janken Party Paradise WJSE = Jungle Speed WJSP = Jungle Speed WJWE = Bejeweled 2 WJWP = Bejeweled 2 WK2J = Kappa-kun to Asobou: Kappa-kun to Ota no Shimikai WK3J = Kappa-kun to Asobou: Kappa-kun to Mori no Nakamatachi WK9J = Minna de Asobou Koinu de Kururin WKBE = You, Me, and the Cubes WKBJ = Kimi to Boku to Rittai WKBP = You, Me and the Cubes WKCE = Kyotokei WKCP = Kyotokei WKDE = Pirates: The Key of Dreams WKEJ = RakuRaku Kinen Apori Wii: Kinenka no Isha ga Osheru Nanoka de yameru Houhou WKFE = Kung Fu Funk: Everybody is Kung Fu Fighting! WKFP = Kung Fu Funk: Everybody Is Kung Fu Fighting WKHE = Big Kahuna Party WKIE = The Mystery of Whiterock Castle WKIP = The Mystery of Whiterock Castle WKKE = Party Fun Pirate WKKJ = Kurohige Kiki Ippatsu WKKP = Pop-Up Pirates! WKNJ = Kanken Minna de Waiwai Kanji Nou WKPJ = Kappa Kun to Mori no Nakama Tachi WKQJ = Kentei! TV Wii Minna de Gotouchi Quiz Battle WKRP = Karate Phants: Gloves of Glory WKTE = Contra Rebirth WKTJ = Contra ReBirth WKTP = Contra ReBirth WKUJ = Downtown Nekketsu Dodgeball WKWE = Adventure on Lost Island: Hidden Object Game WKWJ = Item Sagashi * Yousei to Fushigi no Shima WKWP = Adventure on LOST ISLAND: Hidden Object Game WL2E = Target Toss Pro: Lawn Darts WL5E = HB Arcade Disc Golf WL9E = Let's Create! Pottery WLCE = Bingo Party Deluxe WLCJ = Wai Wai Bingo Deluxe WLCP = Bingo Party Deluxe WLDJ = Boku mo Sekai o Sukuitai: Battle Tournament WLEE = Learning with the PooYoos: Episode 1 WLEJ = Pooyoo to Asobou Episode 1 WLEP = Learning with the PooYoos: Episode 1 WLGE = HB Arcade Cards WLIE = Liight WLJJ = Boku mo Sekai o Sukuitai: Battle Tournament WLKJ = Okiraku Tennis SP WLLE = Little Tournament Over Yonder WLLP = Little Tournament Over Yonder WLME = La-Mulana WLMJ = La Mulana WLMP = La-Mulana WLNE = Learning with the PooYoos: Episode 2 WLNP = Learning with the PooYoos: Episode 2 WLOE = LostWinds: Winter of the Melodias WLOJ = LostWinds: Winter of the Melodias WLOP = LostWinds: Winter of the Melodias WLPE = Lonpos WLPJ = Lonpos WLPP = Lonpos WLTE = LIT WLTJ = School of Darkness WLTP = LIT WLWE = LostWinds WLWJ = LostWinds WLWP = LostWinds WLXJ = Phalanx WLZE = lilt line WLZP = lilt line WM2E = My Little Baby WM2P = My Little Baby WM3E = Manic Monkey Mayhem WM3P = Manic Monkey Mayhem WM4E = Mix Superstar WM4P = Mix Superstar WM5E = MDK2 WM7E = Anima Ark of Sinners WM7P = Anima Ark of Sinners WM8E = Bomberman Blast WM8J = Wi-Fi 8-Nin Battle Bomberman WM8P = Bomberman Blast WM9E = Happy Hammerin WM9J = Tataite Mogupon WM9P = Happy Hammerin' WMAE = Magnetis WMAP = Magnetis WMBE = MaBoShi's Arcade WMBJ = Katachi no Game: Marubou Shikaku WMBP = MaBoShi: The Three Shape Arcade WMCE = Monsteca Corral: Monsters vs. Robots WMCP = Monsteca Corral: Monsters Vs. Robots WMDE = Madstone WMGE = Mart Racer WMHE = Mouse House WMJE = Dive: The Medes Islands Secret WMJP = Dive: The Medes Islands Secret WMKE = Lead the Meerkats WMKP = Lead the Meerkats WMLE = Major League Eating: The Game WMLJ = Major League Eating: The Game WMME = Muscle March WMMJ = Muscle Koushinkyoku WMMP = Muscle March WMOE = Moki Moki WMOJ = Antaga Mawashite Sukuu Puzzle: Mochimochi Q WMOP = Moki Moki WMRE = Monochrome Racing WMRP = Monochrome Racing WMSE = Enjoy your massage! WMSP = Enjoy your massage! WMWP = Miffy's World WMXE = Max & The Magic Marker WMXJ = Max & the Magic Marker WMXP = Max & the Magic Marker WMZP = Mahjong WN9E = Military Madness: Nectaris WN9J = Nectaris WN9P = Military Madness: Nectaris WNAP = Back to Nature WNEE = Penguins & Friends Hey! That's My Fish! WNEP = Penguins & Friends Hey! That’s my Fish! WNGE = Bang Attack WNKE = Niki - Rock 'n' Ball WNKP = Niki - Rock 'n' Ball WNPJ = Sugusuro Duo: New Pulsar R & V WNSE = Newton Vs The Horde WNVE = Neves Plus WNVJ = Neves Plus WNVP = Neves Plus: Phantheon of Tangrams WNWJ = Hamekomi Lucky Puzzle Wii Return WO6E = Family Pirate Party WO6J = Okiraku Sugoroku Wii WO6P = Family Pirate Party WOAE = Family Glide Hockey WOAJ = Okiraku Air Hockey Wii WOAP = Family Glide Hockey WOBE = Art Style: ORBIENT WOBJ = Art Style: Orbital WOBP = Art Style: ORBIENT WODJ = Ouudaa! WOEJ = Oekaki Logic WOFE = Overflow WOGE = Family Mini Golf WOGJ = Okiraku Putter Golf Wii WOGP = Family Mini Golf WOKE = Karaoke Joysound WOKJ = Karaoke Joysound Wii WOLJ = Othello WOMJ = Sekai no Omoshiro Party Game 2 WOPE = Word Searcher Deluxe WOSE = Family Slot Car Racing WOSJ = Okiraku Slot Car Racing Wii WOSP = Family Slot Car Racing WOTE = Overturn WOTJ = Overturn WOTP = Overturn: Mecha Wars WOXJ = Osu! Exercise Dojo WOYE = Bit Boy!! WOYJ = Bit Man WOYP = Bit Boy!! WOZJ = Kodomo Kyouiku Telebi Wii: Aiue-Oumuzu WP2E = Potpourrii WP2P = Potpourrii WP4E = Learning with the PooYoos: Episode 3 WP4P = Learning with the PooYoos: Episode 3 WP5J = Pokosuka Racing WP6J = Boku wa Plarail Untenshi: Shinkansen Joukikikansha-Hen WP7E = My Planetarium WP7J = Planetarium WP7P = My Starry Night WP9J = Po-Ka-Zu Wii WPAJ = Pokémon Fushigi no Dungeon: Susume! Honoo no Boukendan WPBE = Pub Darts WPBP = Pub Darts WPCE = Doc Louis's Punch-Out!! WPDJ = Chindouchuu!! Pole no Daibouken WPFJ = Pokémon Fushigi no Dungeon: Ikuzo! Arashi no Boukendan WPGE = Snowpack Park WPGJ = Penguin Life WPHJ = Pokémon Fushigi no Dungeon: Mesaze! Hikari no Boukendan WPIE = Pit Crew Panic! WPIJ = Pit Crew Panic WPIP = Pit Crew Panic! WPJE = Pucca's Kisses Game WPJP = Pucca's Kisses Game WPKE = Texas Hold'Em Poker WPKP = Texas Hold'Em Poker WPLE = Planet Pachinko WPNJ = Ponjan WPOJ = Popple to Mahou no Crayon WPPE = Family Table Tennis WPPJ = Okiraku Ping Pong WPPP = Family Table Tennis WPQE = Protöthea WPQP = Protöthea WPRE = Art Style: Cubello WPRJ = Art Style: Cubeleo WPRP = Art Style: CUBELLO WPSE = Pokémon Rumble WPSJ = Ransen Pokémon Scramble WPSP = Pokémon Rumble WPTJ = Fantasic Cube WPUE = Bust-A-Move Plus! WPUJ = Puzzle Bobble Wii WPUP = Puzzle Bobble Plus! WPVE = The Tales of Bearsworth Manor: Chaotic Conflicts WPVJ = Kumanage Battle-Hen: Kiina no Kirai na Aoi Hoseki WPVP = The Tales of Bearsworth Manor: Chaotic Conflicts WPWE = Pong Toss Pro - Frat Party Games WPXJ = Minna de Tobikome Penguin Diving Hooper Looper WPYE = Pallurikio WPYP = Pallurikio WPZE = Bruiser & Scratch WQ4J = Kentoushi FuriFuri Boxing WR2E = Rabbids Lab WR2P = Rabbids Lab WR4P = Rush Rush Rally Racing WR5E = Retro City Rampage WR9E = Mega Man 9 WR9J = RockMan 9: Yabou no Fukkatsu! WR9P = Mega Man 9 WRBE = Robocalypse - Beaver Defense WRBP = Robocalypse - Beaver Defense WRDE = Word Searcher WRDP = Word Searcher WREE = Racers' Islands - Crazy Arenas WREP = Racers Islands Crazy Arenas WRFE = Reel Fishing Challenge II WRFP = Reel Fishing Challenge II WRGE = Rage of the Gladiator WRGP = Rage of the Gladiator WRIE = Rainbow Islands: Towering Adventure! WRIJ = Rainbow Islands: Towering Adventure! WRIP = Rainbow Islands: Towering Adventure! WRJE = Racers' Islands - Crazy Racers WRJP = Racers Islands - Crazy Racers WRLE = FAST Racing League WRLP = FAST Racing League WRNJ = BIT.TRIP RUNNER WRPE = Burn the Rope WRQE = Deer Drive Legends WRQP = Deer Drive Legends WRRE = Robin Hood: The Return of Richard WRRP = Robin Hood: The Return Of Richard WRSE = Step Up WRTE = Robox WRUE = BIT.TRIP RUNNER WRUP = Bit.Trip Runner WRXE = Mega Man 10 WRXJ = RockMan 10 WRXP = Mega Man 10 WRYE = Robox WRYP = Robox WS2J = Saikyou Ginsei Igo WS3E = Silver Star: Chess WS3J = Saikyou Ginsei Chess WS4J = Saikyou Ginsei Mahjong WS5J = Saikyou Ginsei Gomoku Narabe WS6E = Silver Star: Reversi WS6J = Saikyou Ginsei Reversi WS7E = Fantasy Slots: Adventure Slots and Games WS8J = Minna de Taisen Puzzle Shanghai WS9E = Sudoku Challenge! WS9P = Sudoku Challenge! WSAE = Onslaught WSAJ = MadSecta WSAP = Onslaught WSBJ = Sorcery Blade WSCJ = Out of Galaxy: Gin no Koshika WSEJ = Princess Ai Monogatari WSGE = Pop 'Em Drop 'Em Samegame WSGJ = Same Game Wii WSGP = Pop Them, Drop Them SAMEGAME WSHE = Stonekeep: Bones of the Ancestors WSIJ = Saikyou Ginsei Shogi WSJE = Spot The Differences! WSJP = Spot the Differences! WSLE = The Magic Obelisk WSLJ = Shadow Walker WSME = Eat! Fat! FIGHT! WSMJ = Tsuppari Oozumou Wii Heya WSMP = Eat! Fat! FIGHT! WSNE = Sonic The Hedgehog 4 Episode I WSNJ = Sonic the Hedgehog 4: Episode I WSNP = Sonic The Hedgehog 4 Episode I WSRE = Space Trek WSSP = Solitaire WSTJ = Tenshi no Solitaire WSUE = Shootanto: Evolutionary Mayhem WSUJ = Shootanto: Kakohen WSUP = Shootanto: Evolutionary Mayhem WSWE = Swords & Soldiers WSWP = Swords & Soldiers WSXE = Stunt Cars WSXP = Stunt Cars WSYE = Snail Mail WSZE = Sneezies WSZP = Sneezies WT2E = Target Toss: Pro Bags WT3E = Tomena Sanner WT3J = Tomena Sanner Wii WT3P = Tomena Sanner WT8J = Hajite! Block Rush WTBJ = Fantasic Tambourine WTDJ = Tomica Drive WTEE = Tales of Elastic Boy: Mission 1 WTEP = Tales of Elastic Boy Mission 1 WTFE = Bit.Trip: Flux WTFP = Bit.Trip Flux WTHJ = Kaku! Ugoku! Tsukamaeru! Sensei Wii WTIE = Tiki Towers WTKE = TV Show King 2 WTKP = TV Show King 2 WTME = Adventure Island: The Beginning WTMJ = Takahashi Meijin no Bouken Jima Wii WTMP = Adventure Island: The Beginning WTNE = Family Tennis WTNJ = Okiraku Tennis Wii WTPE = Tetris Party WTPJ = Tetris Party WTPP = Tetris Party WTRE = Bit.Trip Beat WTRJ = BIT.TRIP BEAT WTRP = Bit.Trip Beat WTTE = Toki Tori WTTP = Toki Tori WTUE = Tumblebugs 2 WTWP = Fenimore Fillmore: The Westerner WTXE = Texas Hold’em Tournament WTXP = Texas Hold’em Tournament WU2P = Successfully Learning Mathematics Year 3 WU3P = Successfully Learning Mathematics Year 4 WU4P = Successfully Learning Mathematics Year 5 WUBE = Ubongo WUBP = Ubongo WUFE = Drop Zone: Under Fire WUHE = Grill-Off with Ultra Hand! WUIP = Successfully Learning Mathematics Year 2 WUKJ = Unou Kids Okigaru Unou Training WUNE = Uno WUNJ = Uno WUNP = Uno WURE = Urbanix WURP = Urbanix WVBE = Bit.Trip: Void WVBJ = BIT.TRIP VOID WVBP = Bit.Trip Void WVCE = V.I.P. Casino: Blackjack WVDJ = Kodomo Kyouiku TV Wii: Aiue-O-Chan WVFE = Bobby Carrot Forever WVFP = Bobby Carrot Forever WVIE = Violin Paradise WVKE = Water Warfare WVKJ = Bang Bang Kids WVKP = Water Warfare WVOE = Rock N' Roll Climber WVOJ = Rock n' Roll Climber WVOP = Rock'n Roll Climber WVQE = Vampire Crystals WVQP = Vampire Crystals WVSE = Gods Vs Humans WVSP = Gods Vs Humans WVUP = Mr Bumblebee Racing Champion WW2P = Where's Wally? Fantastic Journey 2 WW3P = Where's Wally? Fantastic Journey 3 WWAE = Warmen Tactics WWIP = Where's Wally? Fantastic Journey 1 WWLP = The Will of Dr. Frankenstein WWRE = Excitebike World Rally WWRJ = Excitebike: World Race WWRP = Excitebike: World Challenge WWTE = BurgerTime World Tour WWTP = BurgerTime World Tour WWXE = Paper Wars: Cannon Fodder WWXP = Paper Wars Cannon Fodder WXBE = Ben 10: Alien Force - The Rise of Hex WXBP = Ben 10: Alien Force - The Rise of Hex WXME = Xmas Puzzle WXPE = Paint Splash! WXPP = Paint Splash WXRE = Reel Fishing Ocean Challenge WYIE = escapeVektor: Chapter 1 WYIP = escapeVektor: Chapter 1 WYKJ = Yomi Kiku Asobi WYME = Yummy Yummy Cooking Jam WYMP = Yummy Yummy Cooking Jam WYSE = Yard Sale Hidden Treasures: Sunnyville WYSP = Yard Sale Hidden Treasures Sunnyville WZAE = Zombii Attack WZBP = Cricket Challenge WZGE = Zoo Disc Golf WZHE = My Zoo WZHJ = Animal Life: Doubutsu Fureai Seikatsu WZHP = My Zoo WZIE = Rubik's Puzzle Galaxy RUSH WZIP = Rubik's Puzzle Galaxy: RUSH WZJJ = Simple Series Vol. 5: The Judo WZMJ = Simple Wii Series Vol. 3: The Mahjong WZPE = Zombie Panic in Wonderland WZPJ = Zombie in Wonderland WZPP = Zombie Panic in Wonderland WZZE = The Tales of Bearsworth Manor: Puzzling Pages WZZJ = Kumanage Puzzle-Hen: Piina no Suki na Akai Candy WZZP = The Tales of Bearsworth Manor: Puzzling Pages XAAJ = Eggy XABJ = Aleste XADJ = Yie Ar Kung 2 XAEJ = Space Manbow XAFJ = Metal Gear XAGJ = Road Fighter XAHJ = Penguin Adventure: Yume Tairiku Adventure XAIJ = Quarth XAKJ = Parodius - Tako wa Chikyuu wo Sukuu XALJ = Contra XAMJ = Knightmare: Majou Densetsu XANJ = Parodius 2 XAOJ = Gofer no Yabou: Episode II XAPJ = Metal Gear 2: Solid Snake XAQJ = Salamander XBKE52 = Guitar Hero III Custom : Bullet For Kamelot XH2E = Cave Story (Demo) XH2P = Cave Story (Demo) XH3E = Frobot (Demo) XH4E = Max and the Magic Marker (Demo) XH5E = Ayim And Yet It Moves Demo XH6E = Robox (Demo) XH6P = Robox (Demo) XH7E = Lit (Demo) XH7P = Lit (Demo) XH8E = Lead the Meerkats (Demo) XH8P = Lead the Meerkats (Demo) XHAE = Pokemon Rumble (Demo) XHAP = Pokemon Rumble (Demo) XHCE = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHCJ = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHDE = NyxQuest: Kindred Spirits (Demo) XHDP = NyxQuest: Kindred Spirits (Demo) XHEE = BIT.TRIP BEAT (Demo) XHEJ = BIT.TRIP BEAT (Demo) XHEP = BIT.TRIP BEAT (Demo) XHFE = World of Goo (Demo) XHFP = World of Goo (Demo) XHIE = Fluidity (Demo) XHIP = Hydroventure (Demo) XHJE = Thruspace (Demo) XHJP = Thruspace (Demo) XHKE = Dive: The Medes Island Secret (Demo) XHKP = Dive: The Medes Secret Island (Demo) XHLE = Jett Rocket (Demo) XHLP = Jett Rocket (Demo) XHME = Art of Balance (Demo) XHMP = Art of Balance (Demo) XHQE = Zombie Panic (Demo) XHQP = Zombie Panic (Demo) XHRE = Furry Legends (Demo) XHRP = Furry Legends (Demo) XHVE = BIT.TRIP CORE (Demo) XHVP = BIT.TRIP CORE (Demo) XHWE = BIT.TRIP VOID (Demo) XHWP = BIT.TRIP VOID (Demo) XHXE = BIT.TRIP RUNNER (Demo) XHXP = BIT.TRIP RUNNER (Demo) XHZE = Chronos Twins DX (Demo) XHZP = Chronos Twins DX (Demo) XI2E = Kyotokei (Demo) XI2P = Kyotokei (Demo) XI7E = Liight (Demo) XI8E = Jam City (Demo) XI8P = Jam City (Demo) XIAE = Lilt Line (Demo) XIAP = Lilt Line (Demo) XIBE = Fish em All (Demo) XIBP = Fish em All Demo XICE = Gods vs Humans Demo XICP = Gods vs Humans Demo XIDE = Racers Islands Crazy Racers Demo XIDP = Racers Islands Crazy Racers Demo XIEE = chick chick BOOM Demo XIEP = chick chick BOOM Demo XIGE = Urbanix Demo XIGP = Urbanix Demo XIHE = Gladiator Demo XIHP = Gladiator Demo XIJE = Fast Racing League Demo XIJP = Fast Racing League Demo XIKE = Monsteca Corral Demo XIKP = Monsteca Corral Demo XINE = Learning with the Pooyoos Episode 1 Demo XINP = Learning with the Pooyoos Episode 1 Demo XIOE = Learning with the Pooyoos Episode 2 Demo XIOP = Learning with the Pooyoos Episode 2 Demo XIPE = Learning with the Pooyoos Episode 3 Demo XIPP = Learning with the Pooyoos Episode 3 Demo XIQE = Dart Rage Demo XIRE = Pong Toss Pro Demo XISE = BIT.TRIP FLUX Demo XISP = BIT.TRIP FLUX Demo XITE = Fast Draw Demo XITP = Fast Draw Demo XIUE = Soccer Bashi Demo XIUP = Soccer Bashi Demo XIVE = Mix Superstar Demo XIVP = Mix Superstar Demo XIZE = 3D Pixel Racing Demo XIZP = 3D Pixel Racing Demo XJEE = Aya and the Cubes of Light Demo XJEP = Aya and the Cubes of Light Demo XJGE = Gnomz Demo XJGP = Gnomz Demo XJHE = Paint Splash Demo XJIE = 2 Fast 4 Gnomz Demo XJSE = Karaoke Joysound (Demo) XJSP = Karaoke Joysound Wii (Demo) XNWE52 = Guitar Hero III Custom: Nightwish XXXX02 = Mario Kart Teknik ZXFP52 = Guitar Hero 3 Encore wit-2.31a/share/titles.txt0000644000175000017500000107540612655737310015366 0ustar michaelmichael010E01 = Wii Backup Disc v1.31 301E01 = GameCube Service Disc AFRE01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 8. AMEE01 = New Super Mario Bros. Wii 11 American Revolution AMNE01 = Another Super Mario Bros. Wii AMOR04 = Guitar Hero III Custom : HARDcore APRP01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 2. APRP02 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 3. APRP03 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 6. APRP04 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 7. APRP06 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 5. APRP08 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 1. ASMB01 = Another Super Mario Bros. Wii BEPS01 = Guitar Hero III Custom : Rock n' Metal BOWE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh C3BE52 = Guitar Hero III Custom : Bossenator C3FP52 = Guitar Hero III Custom : Fonx #1 C3KE52 = Guitar Hero III Custom : Kyle Edition #1 C3ME52 = Guitar Hero III Custom : Modern Rock C3PP52 = Guitar Hero III Custom : Modern Pop & Rock C80E52 = Guitar Hero III Custom : Rocks the 80's C80P52 = Guitar Hero III Custom: GH I & 80's C93E = Last Ninja 2 C93P = The Last Ninja 2 C94E = Tower Toppler C94P = Nebulus C95P = Impossible Mission C96E = Summer Games II C96P = Summer Games 2 C97E = California Games C97P = California Games C98P = Paradroid C99P = Uridium C9EP = Winter Games C9GP = Mayhem in Monsterland C9HE = Boulder Dash C9HP = Boulder Dash C9IE = Cybernoid C9IP = Cybernoid C9ME = Pitstop II C9MJ = Pitstop Two C9MP = Pitstop II C9PP = The Last Ninja 3 C9QP = Jumpman C9RP = International Karate + C9SP = Impossible Mission II C9XE = The Last Ninja C9XJ = The Last Ninja C9XP = The Last Ninja C9YE = International Karate C9YJ = International Karate C9YP = International Karate C9ZP = World Games CANE52 = Guitar Hero Custom: NOT Aerosmith but... CCPE01 = Mario Kart Wii Custom: The Master Race CEMU69 = PunEmu CFEE52 = Guitar Hero III Custom : Michael Jackson CG1E52 = Guitar Hero III Custom : Guitar Hero CG1P52 = Guitar Hero III Custom: Guitar Hero I CG2E52 = Guitar Hero III Custom: Guitar Hero II CG2EFL = Guitar Hero III Custom : GH II CG2P52 = Guitar Hero III Custom : Guitar Hero II CG3ECS = Guitar Hero III Custom : ClasSick Edition CG3PCS = Guitar Hero III Custom : ClasSick Edition CGBE52 = Guitar Hero III Custom: Rock Band CGBP52 = Guitar Hero III Custom : Rock Band CGH370 = Guitar Hero III Custom : 70 New Song CGH3IM = Guitar Hero III Custom : Iron Maiden CGH3LM = Guitar Hero III Custom : Legend of Music CGH3ME = Guitar Hero III Custom : Metallica CGH3NE = Guitar Hero III Custom : Nostalgia Edition CGH3WD = Guitar Hero III Custom: WD Custom CGHCE1 = Guitar Hero III Custom : Edition Custom CGHE87 = Guitar Hero III Custom : Guitar Hero I CGHE88 = Guitar Hero III Custom : Guitar Hero II CGHE89 = GH3: Mario CGHE90 = GH3: South Park Edition CGHE91 = GH3: The Red Album CGHE92 = GH3: The Blue Album CGHE93 = GH3: Shake Rattle and Roll CGHE94 = Guitar Hero III Custom : Mars Needs Guitars CGHE95 = Guitar Hero III Custom : Rock Band CGHE96 = Guitar Hero III Custom: Rock'n'Roll Metal CGHE97 = GH3: I Fought The Law CGHE98 = GH3: Sweet Home Alabama CGHE99 = Guitar Hero III Custom : Rock The 80's CGHECB = Guitar Hero III Custom : CBT Edition CGHEDC = Guitar Hero III Custom : Downloadable Content Edition CGHEDM = Guitar Hero III Custom : DAVEMODE CGHEMC = Guitar Hero III Custom : My Chemical Romance CGHENC = Guitar Hero III Custom : NCustom CGHEPH = Guitar Hero III Custom : Puppetz Hero 2 CGHER2 = Guitar Hero III Custom : Rock Band 2 CGHERF = Guitar Hero III Custom : Rockfest 2010 CGHJ52 = Guitar Hero III Custom : Jumapa CGHKY2 = Guitar Hero III Custom : Kyle Edition #2 CGHPF2 = Guitar Hero III Custom : Fonx #2 CGHPF3 = Guitar Hero III Custom : Fonx #3 CGHPF4 = Guitar Hero III Custom : Fonx #4 CGHPF5 = Guitar Hero III Custom : Fonx #5 CGHPNT = Guitar Hero III Custom : Ntorrents Edition CGHRH2 = Guitar Hero III Custom : Rocks Hits Custom v2 CGHSKV = Guitar Hero III Custom : Starchildren & Kneos Version CGIE52 = Guitar Hero III Custom : Iron Maiden CGSP52 = Guitar Hero III Custom : Spanisk Custom by KuXu CGVECD = Guitar Hero Aerosmith Custom : AC/DC Edition CGVEM2 = Guitar Hero Aerosmith Custom : Mini Concerts Edition 2 CGVEMC = Guitar Hero Aerosmith Custom : Mini Concerts Edition CGVEUV = Guitar Hero Aerosmith Custom : Ultimate Video Game Hero CKBE88 = Mario Kart Wii Black CLAPSI = Sing IT: Clásicos CMDE52 = Guitar Hero III Custom: Megadeth CMKE01 = Mario Kart Wii Dragon Road CS0P00 = StarSing : Bollywood v2.0 CS0PZZ = StarSing : Pop Part. I v2.0 CS1P00 = StarSing : Country v2.0 CS1PZZ = StarSing : Pop Part. II v2.0 CS2P00 = StarSing : Placebo v2.0 CS2PZZ = StarSing : '80s Volume 1 v2.0 CS3P00 = StarSing : Volume 1 v2.0 CS3PZZ = StarSing : Anthems v2.0 CS4P00 = StarSing : NRJ Music Tour v2.0 CS4PZZ = StarSing : Legends v2.0 CS5P00 = StarSing : '70s v2.1 CS5PZZ = StarSing : Songs For My Jedi v1.0 CS6P00 = StarSing : Douce France v2.0 CS6PZZ = StarSing : Amped Part. I v2.0 CS7P00 = StarSing : Red Hot Chili Peppers v1.0 CS7PZZ = StarSing : Amped Part. II v2.0 CS8P00 = StarSing : '90s Volume 1 v2.0 CS8PZZ = StarSing : Disco-Funk v1.0 CS9P00 = StarSing : '80s Volume 2 v2.1 CS9PZZ = StarSing : Pop Hits 9 v1.0 CSAP00 = StarSing : '80s Volume 3 v2.1 CSAPZZ = StarSing : Best of Goldman v1.0 CSBP00 = StarSing : '90s Volume 2 v2.1 CSCP00 = StarSing : Michael Jackson v2.2 CSCPZZ = StarSing : Hottest Hits v2.0 CSDP00 = StarSing : Rocks! Volume 2 v2.0 CSDPZZ = StarSing : Boy Bands Vs. Girl Bands v2.0 CSEP00 = StarSing : Pop Hits 5 v1.3 CSFP00 = StarSing : Pop Hits 6 v1.3 CSGP00 = StarSing : Chansons Magiques de Disney v1.4 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = StarSing : Pop Hits 7 v1.3 CSJP00 = StarSing : Après-Ski Party v1.2 CSKP00 = StarSing : ABBA v1.1 CSLP00 = StarSing : Queen v2.0 CSMP00 = StarSing : Electro-Dancefloor Volume 1 v2.0 CSNP00 = StarSing : Electro-Dancefloor Volume 2 v2.0 CSOP00 = StarSing : Electro-Dancefloor Volume 3 v2.0 CSPP00 = StarSing : Linkin Park Live at Webster Hall New York v2.0 CSQP00 = StarSing : Muse v2.0 CSRP00 = StarSing : International Volume 3 v1.0 CSSP00 = StarSing : Après-Ski Party 2 v2.0 CSTP00 = StarSing : Depeche Mode v2.0 CSUP00 = StarSing : Pop Hits 8 v1.3 CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = StarSing : Génériques TV v2.0 CSYP00 = StarSing : Electro-Dancefloor Volume 4 v2.0 CSZP00 = StarSing : Glee Volume 1 v2.1 CT0P00 = StarSing : Pop Part. I v2.1 CT1P00 = StarSing : Pop Part. II v2.1 CT2P00 = StarSing : '80s Volume 1 v2.1 CT3P00 = StarSing : Anthems v2.1 CT4P00 = StarSing : Legends v2.1 CT5P00 = StarSing : Songs For My Jedi v2.0 CT6P00 = StarSing : Amped Part. I v2.1 CT7P00 = StarSing : Amped Part. II v2.1 CT8P00 = StarSing : Disco-Funk v2.0 CT9P00 = StarSing : Pop Hits 9 v1.3 CTAP00 = StarSing : Best of Goldman v2.0 CTBP00 = StarSing : Glee Volume 3 v1.0 CTCP00 = StarSing : Hottest Hits v2.0 CTDP00 = StarSing : Boy Bands Vs. Girl Bands v2.1 CTEP00 = StarSing : R&B v2.0 CTFP00 = StarSing : Rock Ballads v2.0 CTGP00 = StarSing : Take That v2.0 CTHP00 = StarSing : Summer Party v2.0 CTIP00 = StarSing : Rocks! Part. I v2.0 CTJP00 = StarSing : Rocks! Part. II v2.0 CTKP00 = StarSing : Pop Hits v2.0 CTLP00 = StarSing : Britney Spears v2.0 CTMP00 = StarSing : Shakira v1.1 CTNP00 = StarSing : Pop Hits 10 v1.3 CTOP00 = StarSing : The Beatles Volume 2 v2.0 CTPP00 = StarSing : Motown v2.0 CTQP00 = StarSing : Glee Volume 2 v1.0 CTRP00 = StarSing : International Volume 1 v1.0 CTSP00 = StarSing : International Volume 2 v1.0 CTTP00 = StarSing : '80s Volume 4 v1.0 CTUP00 = StarSing : Rihanna v1.0 CTVP00 = StarSing : Lady GaGa v1.0 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CVLE38 = Mario Kart: Victory Lane D01A = Wiimmfi Patcher D02A = Engine02 D03A = BrainSlug Wii D05A = Bash the Castle D06A = Bit Streamer D07A = BlisterBall D08A = Blob Wars: Metal Blob Solid D09A = Blobby Volley 2 Wii D0AA = MPlayer Wii Youtube D0BA = MPlayer Wii D0CA = Ocarina D0DA = MPlayer Dvdlib Edition D0EA = MPlayer Wii By Rodries D0FA = Signcheck D0GA = GCBoot D0HA = Memview D0IA = IOS Check D0JA = Open Sram Lang Modifier D0KA = WiiBServer D0LA = LibWiiGameLoad D0MA = Wiireader D0NA = lsusb D0OA = Move The Pussy Demo D0PA = Wiilax Minitro D0QA = Fission Engine Project D0RA = GRRLIB 4.0 Demo D0SA = OSDM-BAR D0TA = Homebrew Menu Demo D0UA = LibMii Example D0VA = The Scary Demo D0WA = Starfield Demo D0XA = Wire3D Demo D0YA = Something D0ZA = GRRLIB 4.3.0 Promote Intro D10A = cIOSFix D11A = ASCII Pong D12A = BuscaWiinas D13A = C-Dogs SDL D14A = Castles of Dr. Creep D15A = Wii Shop and IOS51 Installer D16A = Centipede D17A = Cobra Arcade D18A = Dump Espresso OTP D1LA = Blind D1PA = 1bit Invaders D1RA = MinimaLauncher D21A = Xroar D22A = cIOS222 installer D24A = 24 Points D26A = Wii2600 D29J01 = Monthly Nintendo Shop Demo May 2002 D2AA = Wii Deadly Cobra D2AJAF = Minna de Bouken! Family Trainer (Demo) D2BA = Jump N Bump D2CA = Wiiflow Advanced D2DA = Box2D Balls D2EA = Wiiflow Start Configurator D2GA = Wadinstallerbatch D2QA = Sqrxz 2 D2SE18 = Deca Sports 2 (Demo) D2ZA = Console Shooter D32J01 = Monthly Nintendo Shop Demo June 2002 D33A = Time Frack 2D D33J01 = Monthly Nintendo Shop Demo July 2002 D34J01 = Monthly Nintendo Shop Demo July 2002 D36A = cIOS36 installer D37A = WiiConnect D38A = cIOS38 installer D38J01 = Monthly Nintendo Shop Demo September 2002 D39A = Ctr Gts DacoTaco Edition D3DA = Time Frack 3D D3DE18 = Deca Sports 3 (Demo) D3JA = NDSLoad D3KA = Button Tester D3LA = BootMii Booter D3MA = Custom NAND Loader D3OA = cIOS USB 2 Installer D3QA = Sqrxz 3 D3WA = Warheads D40A = Luigi and the Island of Mystery D42A = ArianeB D43A = Wii Virtual Jaguar D43E01 = The Legend of Zelda: Ocarina of Time / Master Quest D43J01 = Zelda no Densetsu: Toki no Ocarina GC / Ura Zelda D43P01 = The Legend of Zelda: Ocarina of Time / Master Quest D43U01 = The Legend of Zelda: Ocarina of Time (Bonus Disc) D43W01 = The Legend of Zelda: Ocarina of Time / Master Quest D46A = Newo Escape D4BE08 = Resident Evil 4: Preview Disc D4BP01 = Resident Evil 4: Bonus Disc D4BP08 = Resident Evil Four Preview Disc D4BU01 = Resident Evil 4: Bonus Disc D4KA = Aleph WOne D4LA = Yawnd D4NA = Disc Dumper D4PA = DVD Dumper D4QA = Sqrxz 4 D4SA = USB Loader GUI FX D51A = IOS51 Update D52A = cboot252 D53J01 = Monthly Nintendo Shop Demo May 2003 D54A = cIOS Patchmii Installer D55A = PID Extractor D55J01 = Interactive Disc Catalog Summer 2003 D56A = Shopping Channel Fixer D56E01 = Interactive Multi-Game Demo Disc - Version 35 D56J01 = Pokémon Channel (Bonus Disc) D57A = Hijill GUI D57E01 = Interactive Multi-Game Demo Disc - Version 34 D58A = Priiloader HacksDen Edition D58E01 = Interactive Multi-Game Demo Disc - Version 33 D59A = TheUntitledProject D59E01 = Interactive Multi Game Demo Disc Version 32 D5AA = Alarmii D5BA = WiiFont D5CA = cLoader D5FA = Txted Mod D5HA = Title Lister D5JA = Tidy Up D5LA = Switchtosneek D5RA = Botoning D60A = Ultimate USB Loader D61A = Sand Traps Extra Levels D62A = Newo Puzzle D62E01 = Interactive Multi-Game Demo Disc - Version 31 D63A = 3D Maze D63E01 = Interactive Multi-Game Demo Disc - Version 30 D64A = Wii64 Emulator D64E01 = Interactive Multi-Game Demo Disc - Version 29 D65A = Transitory Vectors D65E01 = Interactive Multi Game Demo Disc Version 28 D65P01 = Interactive Multi-Game Demo Disc - December 2002 D66A = Secret Maryo Chronicles D66E01 = Interactive Multi-Game Demo Disc - Version 27 D67E01 = Interactive Multi-Game Demo Disc - Version 26 D67J01 = Monthly Nintendo Shop Demo December 2003 D68A = TheyDoNotDie2 D68E01 = Interactive Multi-Game Demo Disc - Version 25 D68J01 = Monthly Nintendo Shop Demo January 2004 D69A = IOS60 Installer D69E01 = Interactive Multi-Game Demo Disc - Version 24 D6AA = Pussieloader D6BA = Updatersafe D6DA = Savegame Manager Mod D6EA = Sneek FS Dumper D6FA = Anytitle Deleter Mod D6HA = AnyTitle Deleter Mod DB D6IA = DVD Info D6KA = AnyTitle Deleter DB D6MA = Banana Saves D6OA = DOP Shop D6QA = BootMii Checker D6TA = MiiPlayer D70A = Dungeon Crawl Stone Soup D71A = Panic in the Mushroom Kingdom D72A = Bfi D72E01 = Interactive Multi-Game Demo Disc - Version 23 D73E01 = Interactive Multi-Game Demo Disc - Version 22 D74E01 = Interactive Multi Game Demo Disc Version 21 D75E01 = Interactive Multi-Game Demo Disc - Version 20 D76E01 = Interactive Multi-Game Demo Disc - Version 19 D77E01 = Interactive Multi-Game Demo Disc - Version 18 D77P01 = Interactive Multi Game Demo Disc April 2006 D78A = Wii7800 D78E01 = Interactive Multi-Game Demo Disc - Version 17 D78J01 = Interactive Multi-Game Demo Disc - May 2004 D78P01 = Interactive Multi-Game Demo Disc - October 2005 D79A = Newo Defence D79E01 = Interactive Multi-Game Demo Disc - Version 16 D79P01 = Interactive Multi Game Demo Disc May 2005 D7AA = Action Replay Loader D7DA = Depanbrew D7GA = Channel Loader D7KA = RawkSD D7LA = Rumbler D7MA = IS Wad D7OA = Recovery Manager D7QA = Reboot D7SA = Childproof USB Loader D7TA = Power Mii Off D7VA = Power Off D7WA = Abbaye des Morts D7XA = NuGaSa D7YA = Resistor D81A = Newo Asteroids D82A = cIOS Patchmii Installer with Korean Disc Support D82E01 = Interactive Multi-Game Demo Disc - Version 15 D82J01 = Monthly Nintendo Shop Demo July 2004 D82P01 = Interactive Multi Game Demo Disc April 2005 D83A = Wii MFE Port D83E01 = Interactive Multi-Game Demo Disc - Version 14 D83P01 = Interactive Multi Game Demo Disc February 2005 D84A = Gambol D84E01 = Interactive Multi-Game Demo Disc - Version 13 D84P01 = Interactive Multi-Game Demo Disc - November 2004 D85A = Wii EDuke32 D85E01 = Interactive Multi-Game Demo Disc - Version 12 D85P01 = Interactive Multi Game Demo Disc July 2004 D86A = Firewii D86E01 = Interactive Multi-Game Demo Disc - Version 11 D86P01 = Interactive Multi-Game Demo Disc - May 2004 D87A = Tick Tock Boat Race D87E01 = Gamecube Preview Disc D87P01 = Interactive Multi-Game Demo Disc - March 2004 D88A = Quasi88 D88E01 = Interactive Multi-Game Demo Disc - Version 10 D88P01 = Interactive Multi-Game Demo Disc - November 2003 D89A = Wiimote Led Flasher D89E01 = Interactive Multi-Game Demo Disc - Version 9 D89J01 = Club Nintendo Original e-Catalog 2004 D89P01 = Interactive Multi-Game Demo Disc - September 2003 D8AA = Front SD ELF Loader D8BA = GameCube Homebrew Launcher D8CA = WiiSend D8DA = Menu D8EA = Gecko Loader D8FA = Shell D8JA = Calc D8QA = Brick OS D8RA = Lotto D8SA = Brainf**k D8UA = TCPLoader D8VA = Snort48 D8WA = Wiisixty D8XA = All In One Emuloader D8YA = Swissloader D8ZA = Tick Tock Zombie Shooter D91A = Jenny Thinks D92E01 = Interactive Multi-Game Demo Disc - Version 8 D92P01 = Interactive Multi Game Demo Disc June 2003 D93A = Wiiraytracer D93E01 = Interactive Multi-Game Demo Disc - Version 7 D93P01 = Interactive Multi Game Demo Disc April 2003 D94A = Nowhere D94P01 = Interactive Multi-Game Demo Disc - February 2003 D95A = RenderMii D95P01 = Interactive Multi-Game Demo Disc - December 2002 D96A = WiiMotionDemo D96P01 = Interactive Multi-Game Demo Disc - November 2002 D97A = Fire D98A = InstallMii D99A = System Channels Updater D9BA = Info D9CA = cIOS USB2 Installer D9FA = Dump D9GA = Wad Creator D9HA = WakeMiiUp D9IA = SNES9xGX Channel Installer D9KA = Txtread D9LA = Forwarder DA1A = Radianwars DA2A = Moonstone DA3A = Wiitch DA4A = arCard+Wii DA6A = Automatii DA7A = Astronomy DA8A = Beer Belly Bill 3 Grillieren DA9A = Achtung Wii Kurve DAAA = WiiNetPuzzle DAHA = Accio Hacks DALJ01 = Dairantou Smash Brothers DX (Demo) DAMA = MegaCodeDownloader DAPA = Map Maker DARA = Anyregion Changer DASA = Aspirin DASE4Q = Disney Epic Mickey (Demo) DATA = AnyTitle Deleter DATD = AnyTitle Deleter DAUEPZ = Country Dance (Demo) DAVA = Avoidance DAVE01 = Mystery Case Files: The Malgrave Incident (Demo) DAWA = Abuse Wii DAXE01 = The Legend of Zelda: Skyward Sword (Demo) DAXP01 = The Legend of Zelda: Skyward Sword (Demo) DB0A = Spitits DB2A = Mad Bomber DB3A = Squarez DB5A = mapbf DB7A = Blacks Dash DB9A = Robi DBAA = BowFishing Action DBBA = Balance Board Tools DBBE18 = Beyblade: Metal Fusion - Battle Fortress (Demo) DBCA = BootMii Configuration Editor DBDA = Bluedump DBGA = BlastGuy DBIA = Boot It DBKE69 = Boom Blox (Demo) DBKP69 = Boom Blox (Demo) DBLA = BlueMSX-wii DBMA = BootIOS DBPA = Balance Board Pro DBRA = WiiBrowser DBSA = BrawlStats DBTA = Bolt Thrower DBUA = Buttoncast DBWA = Reversmii DBXA = Biniax 2 DBZJ08 = Biohazard Zero: Trial Edition DC6A = Frodo (C64-network.org) DC7A = Calculate DCAA = Wiicasino DCAE18 = Calling (Demo) DCBA = CascadeBeneath DCCA = Christmascountdown DCDA = cIOS Downgrader DCEA = Cheat Manager DCFA = Coverfloader DCGA = Ctr-Gcs DCHA = Wiichatter DCHEAF = We Cheer (Demo) DCHJAF = We Cheer: Ohasta Produce ! Gentei Collabo Game Disc DCIA = cIOS Installer DCLA = Configurable USB Loader DCMA = Wiicm DCNA = Nandclean DCOA = Connectmii DCPA = Splatter Castle DCRA = CosmoRaketti DCSA = Cert.sys Extractor DCTA = Christmas-Type Adventure Time DCUA = cIOS Uninstaller DCVA = WiiColEm DCWA = WiiMC Channel Installer DCXA = ComixChannel DCYA = Cylinder Dodge DD2A = Double Dash Wii DD2P41 = Just Dance 2 (Demo) DD3A = Dario DD5A = Dcvg5k DD9A = Dungeons DDAA = Darkcorp DDBA = DOSBox Wii DDCA = d2x cIOS Installer DDDA = Disk Drive Lighter DDEA = WiiModder DDFA = Defendguin DDHA = Homebrew Disc Launcher DDIA = DiiLC DDLA = Disc Loader DDMA = DragonMedia Player DDOA = DOP-Mii DDRA = Wii Duplicated Channel Remover DDSA = DeSmuME DDVA = Devolution DDWA = DOP Mii Wiibrew Edition DDWE18 = Lost in Shadow - Press Disc (Demo) DDWX18 = Lost In Shadow - Best Buy (Demo) DE2A = Doubledown DE5A = Pictogrid DE7A = Commander Keen DE9A = Wii Bash DEAA = Headtracking Demo DEBA = Pong Breaker DEDA = Txted DEEA = Eeeek Eeeeek Hooooook DEFA = Fuse DEHA = Chess DEME = PunEmu DEPA = Pacman DERA = Elongated Reptile DETA = MPlayer TT DEWA = Wii Exhibit DEZP8P = Billy Hatcher and the Giant Egg (Demo) DF0A = Mini FSToolbox DF2A = Da ShAmAn DF3A = Briickout DF4A = Star Catching DF5A = Strobe Alarm Clock DF6A = Wii Quizz DF7A = Chatnoir DF8A = Trinary DF9A = Chunk Munch DFBA = Fsbrowser DFEA = FlipEm DFFA = Simple fs dumper DFGA = Smashing! DFIA = Fceugx Channel Installer DFLA = Starfall DFMA = FMyLife DFRA = FridgeMagnets DFSA = Fstoolbox DFTA = FTPii DFUA = Fuse DG3A = Giddy 3 DG7A = WiiPeng DG8A = Abusimbel Deluxe DG9A = Garnatron DGBA = Geexbox DGCA = GameCube Backup Launcher DGEA = GeckoOS DGFA = Guitars On Fire DGGA = Wii Rick Dangerous DGIA = Gravitii DGKA = ProjectGMC DGMA = GCMM DGPA = Genesis Plus DGSA = Shooting Gallery DGWA = Goodbye World DGXA = GxGeo DH7A = Harmony's Nightmare DH9A = Prophecy DHBA = Homebrew Browser DHCA = Hero City DHDA = Hidtest DHEA = Helium Boy DHFA = Homebrew Filter DHGA = HuGo-GX DHHA = HHexen DHHJ8J = Hirano Aya Premium Movie Disc from Suzumiya Haruhi no Gekidou DHIA = HackMii Installer DHKE18 = Help Wanted: 50 Wacky Jobs (Demo) DHLA = Heli DHMA = CharioMan DHSA = Homebrew Sorter DHTA = Hatari DHWA = We are nowhere DHXA = Hex DI5A = Tanks DI7A = ExistenzE DI8A = Ios58 Installer DI9A = Barrage DIBA = Revolt of the Binary Couriers DICA = Cubic DIEA = EasyIOS DIGA = Categorii DIIA = iiii DIMA = Inspectmii DINA = Mii Installer DIRA = Ironing Maiden DISA = Wii Supersonic DITA = IOS236 Installer DIXA = cIOSx installer DIYP01 = New Super Mario Bros. Wii 0-4 D.I.Y. DJAA = Arcade Jigsaw DJCA = Wii JellyCar DJFA = Joyflow DJJA = Jumping Jack DJQA = Jewel Quest DJWA = Wii System Menu DJZA = JzintvWii DK1A = Karaokii DK3A = Sketch Fight DK4A = Drawingbox DK6A = King of Fighters: Flames of Courage DK6E18 = Marble Saga Kororinpa (Demo) DK6J18 = Kororinpa 2 (Demo) DK7A = Uschtris DKBA = RPG Baker DKCA = Tick Tock Car Race DKCP01 = Darky Kart Riivo DKDA = Darkcube DKHA = Katakana and Hiragana Practice DKKA = Koreankii DKOA = Komopong DKPA = Kidspaint DKSA = Wii Stpp DKTA = Taiko DKWA = Kurushi DKWE01 = Darky Kart Wii Vol. 1 DKWE02 = Darky Kart Wii Vol. 2 DKWE03 = Darky Kart Wii Vol. 3 DKWE04 = Darky Kart Wii Vol. 4 DL3A = Ballion DL4A = LPairs DL5A = Gameload DL7A = LabClone DLBA = My Little Ball DLCA = Dance Clone DLDA = Devilock DLEA = Preloader DLFA = LifeMii DLGA = Gravity Glider DLIA = WiiMod Lite DLLA = Lolicopocalypse DLMA = LoadMii DLNA = Lander DLOA = Lightsout DLPA = Lopan DLSE64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLSP64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLTA = Leveltool DLUA = WiiLauncher DLXA = Linux Installer DLZEPW = Super Smash Bros Phoenix Wings DM0A = Pom DM5A = Missle Command DM7A = Matches DM9A = Checkregion DMAA = Mame Wii DMBA = Multiboot DMCA = Cleanrip mod DMDA = WiiMod DMEA = Mii Extractor DMFA = WiiMednafen DMGA = Mighty Channels DMHA = NanoMechas DMHE08 = Monster Hunter Tri (Demo) DMHJ08 = Monster Hunter Tri (Demo) DMIA = DIOS MIOS Booter DMJA = Mahjongg Wii DMKE01 = Mario Kart Wii 2 DMLA = Mighty Loader DMMA = MyMenuify DMNA = Magic Number DMOA = cMIOS installer DMPA = MPlayer CE DMRA = MIOS Patcher DMSA = ShutMiiReboot DMSP4Q = SingItStar: Best of Disney DMTA = Metronome DMUA = Multi Mod Manager DMWA = Wakemiiup DN0A = Thatother DN7A = Alien Breed DN9A = Point and No Click DNAA = Ncard DNCA = NeoCD-Wii DNDA = Nintendont DNEA = Gravity DNGA = NeoGamma Launcher DNHA = Headings DNIA = Bugin DNKA = Neko Project II DNMA = Newo Model Viewer DNNA = Save installer DNOA = O.T.T.F. DNPA = NeoPopWii DNRA = Newo Runner DNSA = Newo Shooter DNTA = NeoTanks DNUEDA = Naruto Clash of Ninja 2 (Demo) DNWA = Nowell DO2A = O2EM DO3A = Three Point O DO4A = MTP DO5A = Planet Hively DO6A = Mini MP3 Player DOCA = Code Downloader DOEA = ShowTest DOGA = Wii Maze of Galious DOHA = HighOctane DOIA = Neogamma IOS Switcher DOMA = Mole DONA = Offline Network Enabler DOOA = Doom DOPA = PowerCheck DORA = Rebooter DOTA = OpenTTD DP0A = Starplit DP1A = Italian Parking DP2A = Pong2 DP3A = Inkpoly DP4A = Piirates DP5A = Pix DP6A = IOS36 patcher DP7A = Brawl+ Updatifier DP8A = Timeless DP9A = Alien Puzzle Wii DPAA = WiiPaintBall DPBA = Priibootergui DPCA = Cherophobe DPEA = PieChart DPFA = Pwiictogrid DPGA = Pingus DPIA = Patched IOS 80 Installer for vWii DPIE18 = Oops! Prank Party (Demo) DPJA = Project M Launcher DPKA = Physco DPLA = Priiloader DPMA = Music Painter DPNA = RPG Pineapple Apocalypse DPNP08 = P.N.03 (Promo) DPOA = Postloader DPPA = Project Panic DPRA = PlasmaRaketti DPSA = Playstats DPTA = Two Point Five DPVA = Pattview DPWA = Pimp my Wii DQ1A = Q1rev DQ2A = Q2rev DQ6A = Light DQ7A = Quake DQ8A = LuaFWii DQ9A = Wiihttpd DQAJK2 = Aquarius Baseball DQAJSC = Aquarius Baseball (Simplified Chinese Translation) DQBA = Bible Quiz DQCA = Q2ctfrev DQGP69 = MySims Racing (Demo) DQRA = Qrevpak DQWA = Quakegx DR0A = Rokoban DR1A = Wii Whiteboard DR3A = Death Star Run DR4A = Rock Paper Scissors DR5A = Briicks DR6A = Reader DR7A = RockBlueMet DR8A = Operation DR9A = PixelPlot DRAA = RetroArch-Wii DRBA = Rock Band 2 Wad Installer DRCA = Wiicross DRDA = Drawmii DREA = Wiirecipe DRFA = Radiofeeds DRGA = Reggie Dumper DRIA = Cleanrip DRKA = Robotfindskitten DRMA = Mr. Sitwell DRME18 = Rooms: The Main Building (Demo) DROA = SlimeRoll DRP22Q = SingItStar Deutsch Rock-Pop Vol. 2 DRPA = Marcos Lopez Part II DRRA = Riiper DRSA = RedSquare DRTA = Tetris Custom DRUA = Radiofeeds Updater DRVA = Residualvm DRWA = Winterman DRZA = Zerace DS0A = ShootMii DS1A = Another Rock Paper Scissors DS2A = Swingball2 DS3A = Senet DS4A = Sar DS5A = Snaketwo DS6A = Scogger DS7A = Swing Ball DS8A = Scape DS9A = Minesweeper DSAA = Schism Tracker DSBA = SpaceBubble DSCA = Softchip DSDA = Superdump DSEA = Settings Editor GUI DSFA = Sciifii DSFE7U = Muramasa: The Demon Blade (Demo) DSGA = Savegame Manager DSHA = SysCheck HacksDen Edition DSIA = Simple IOS Patcher DSKA = SockDreams DSLA = Wii Stella DSMA = Sega Master System Plus DSNA = SNES9xGX DSOA = Bermuda Syndrome Wii DSPA = Super Star Shooter DSQA = Sqrxz DSRA = Wiistrobe DSRJ8P = Sonic and the Secret Rings (Demo) DSSA = RSSMii DSTA = Wii Solitaire DSUA = Super Mario War DSVA = scummVM DSWA = SuperTux Wii DSXA = Super Pixel Jumper DSYA = Syscheck DT0A = Tower Defense DT1A = Turnip DT2A = Matching Cards DT3A = Bichejos DT4A = Soduku DT5A = Poker DT6A = Simon DT7A = TheyDoNotDie DTAA = Wii Tac Toe DTCA = The Catachthonic DTDA = Descent DTEA = Topedit DTFA = Triiforce DTHA = Heretic DTIA = Wiitriis DTJA = Trojan DTKA = Tick Tock Tank Fight DTLA = TailTale DTLX01 = Action Replay DTMA = Tetrominos DTNA = Tunnel DTOA = Tong DTPA = Paintown DTRA = Trucha Bug Restorer DTSA = Desert Bus DTTA = Toddtris DTWA = Wiitweet DTXA = Texttris DU0A = Dumpmiinand DU7A = Uno DU8A = RealWnd DU9A = Harmonium DUAA = UAE Wii DUAP01 = DU Super Mario Bros. : Anniversary Edition DUBA = Multibu DUCE01 = Kustom Mariokart Wii DUDA = Duck Hunt DUDE01 = New Super Mario Bros. Wii Scooby-Doo! Hack DUGA = Guitar Fun DUIA = ChessUI DULA = USB Loader GX DUNA = Uname DUSA = bootOperaModUSB DUTG = DU Tag Channel DUWA = Waninkoko's USB Loader DV0A = Remove Preloader Hacks DV3A = DVD Browser DV9A = SensorMii DVDA = cIOS DVD Dumper DVGA = The Video Game DVHA = Horror Vacui DVIA = Vbagx Channel Installer DVJP08 = Viewtiful Joe (Promotional demo) DVLA = Vigiroth le livreur DVNA = Wiivnc DVOA = Vectoroids DVPA = Progressiveswitch DVSA = GameCube Saver DVXA = VectrexWii DW1A = Intuitwars DW5A = Marel DW6A = Wiicraft DW7A = Ravewild DWAA = WiiApple DWBA = WiirtualBoy DWCA = WiiFlow Channel Installer DWDA = Wiiflow Banner Downloader DWEA = WiiEarth DWEPA4 = Pro Evolution Soccer 2008 (Demo) DWFA = WiiFlow DWHA = WiiHandySDL DWJA = Jewel DWKA = Wiibreaker DWLA = Wii-Linux DWMA = WAD Manager DWNA = Nwancat DWPA = WiiPhysics DWRA = WiiRadio DWSA = WiiSX DWTA = Wiituka DWUA = Wufe DWWA = Winters End DWXA = WiiXplorer DX3A = Midway Space Invaders Emulator DX4A = Brawl DX Launcher DX5A = MP3+G Player DX6A = Build Blocks DX7A = Roxoptr2 DX8A = Hexen DX9A = Sand Traps DXBA = Wii X Ball DXCA = CorsixTH DXDA = DVDX DXEA = SDExplorer DXHA = Texas Holdem Poker DXIA = Piixelator DXLA = WiiXL DXNA = bootnetflix DXPA = Xeempongwii DXQA = Quadrax DXSA = Save extractor DXSE18 = Deca Sports (Demo) DXTA = The Lone Pixel DXXA = Hexxagon DXYA = xyzzy DXZA = Megazeux DY5A = Darkcorp Lite DY6A = Liqwiid Wars DY9A = TetWiis DYAA = Syasokoban DYBA = Yabause DYCA = Tetricycle DYEA = Epilepsii DYGA = Yog DYHA = Hypno Blast DYIA = Chippy DYMA = YAWMM DYOA = Toy Wars DYPA = PongYourWii DYSA = Shiny tank DYTA = Newo Tokyo DYUA = UFO Racer DYWA = Yahtzwii DYYA = System Setting Replace Tool DZ0A = Eject DZ7A = SameGame DZ8A = WiiMPC DZ9A = Teeter Torture DZDE01 = The Legend of Zelda: Twilight Princess (Demo) DZDP01 = The Legend of Zelda: Twilight Princess (Demo) DZIA = Ziip DZPA = Puzsion DZQA = Quizz DZRA = Rezerwar DZSA = Szigoy DZXA = FBZX Wii DZYA = Snake Two DZZA = OpenJazz E52E = 1942 E52J = 1942 E52P = 1942 E53E = Black Tiger E53J = Black Dragon E53P = Black Tiger E54E = Ghosts 'n Goblins E54J = Makaimura E54P = Ghost'n Goblins E55E = Commando E55J = Senji no Ookami E55P = Commando E56E = Exed Exes E56J = Exed Eyes E56P = Exed Exes E57E = SonSon E57J = Son Son E57P = SonSon E58J = Mr. Do! E59J = Karate Dou E5AJ = Ikki E5BJ = Shanghai E5VJ = Renegade E5WE = Wonder Boy in Monster Land E5WJ = Wonder Boy in Monster Land E5XJ = Puyo Puyo Tsu E5YJ = Puyo Puyo E5ZE = Super Hang-On E5ZJ = Super Hang-On E62E = Space Harrier E62J = Space Harrier E62P = Space Harrier E63E = Shinobi E63J = Shinobi Virtual Arcade E63P = Shinobi E64J = Rolling Thunder 2 E65J = Valkyrie no Densetsu E66J = Ordyne E67J = Dig Dug E68J = Galaga E69J = Baraduke E6AJ = Moon Cresta E6BJ = Crazy Climber E6CJ = Rompers E6DJ = Toy Pop E6EJ = Libble Rabble E6FJ = Galaxian E6GJ = Namco Quester E6HJ = Face Off E6IJ = Trink Force E6JJ = Bakutotsu Kijuutei: BaRaDuKe II E6KJ = Chouzetsu Rinjin - Berabow Man E6LJ = Marchen Maze E6ME = Tecmo Bowl E6MJ = Tecmo Bowl E6NE = Solomon's Key E6NJ = Solomon no Kagi E6NP = Solomon's Key E6OJ = Bomb Jack Arcade E6PE = Ninja Gaiden E6PJ = Ninja Ryukenden Arcade E6PP = Ninja Gaiden E6QE = Rygar E6QJ = Argos no Senshi E6QP = Rygar E6SJ = New Rally-X E6VE = Zaxxon 3-D E6VJ = Zaxxon E6VP = Zaxxon E6WE = Golden Axe E6WJ = Golden Axe E6WP = Golden Axe E6XE = Altered Beast E6XP = Altered Beast E6YJ = Space Invaders E6ZE = Starforce E6ZJ = Star Force E6ZP = Star Force E72J = Starblade E73E = Mappy E73J = Mappy E73P = Mappy E74J = Cosmo Gang the Puzzle E75J = Genpei Toumaden E76J = Emeraldia E77J = The Return of Ishtar E78J = Solvalou E79E = Gaplus E79J = Gaplus E79P = Gaplus E7AJ = Grobda E7BJ = Dig Dug II E7CJ = Bosconian E7EJ = Dragon Buster E7FJ = Dragon Saber E7GJ = Dragon Spirit E7HJ = Xevious E7IJ = Finest Hour E7JJ = Knuckle Heads E7KJ = Pac-Mania E7LJ = Cosmo Gang the Video E7MJ = Phelios E7NJ = Rolling Thunder E7OJ = Burning Force E7PJ = Marvel Land E7QJ = Galaga '88 E7RJ = Wonder Momo E7SJ = Assault E7TJ = Hopping Mappy E7UJ = Splatterhouse E7VJ = Cyber Sled E7WJ = Numan Athletics E7XJ = Youkai Douchuki E7YJ = Sky Kid E7ZE = The Tower of Druaga E7ZJ = Druaga no Tou E7ZP = The Tower of Druaga EA2E = Metal Slug 2 EA2J = Metal Slug 2 EA2P = Metal Slug 2 EA3J = Galaxy Fight: Universal Warriors EA4E = Samurai Showdown III EA4J = Samurai Spirits Kibeniro Musouken EA4P = Samurai Shodown III EA5E = Fatal Fury 3: Road to the Final Victory EA5J = Garou Densetsu 3: Road to the Final Victory EA5P = Fatal Fury 3: Road To The Final Victory EA6E = The King of Fighters '96 EA6J = The King of Fighters '96 EA7E = Samurai Shodown IV: Amakusa's Revenge EA7J = Samurai Spirits: Amakusa Kourin EA8E = Ironclad EA8J = Ironclad: Chotetsu Brikinger EA8M = Iron Clad EA9J = Waku Waku 7 EAAE = Fatal Fury EAAJ = Garou Densetsu: Shukumei no Takatai EAAP = Fatal Fury EABE = World Heroes EABJ = World Heroes EABP = World Heroes EACE = Magician Lord EACJ = Magician Lord EACP = Magician Lord EADE = Art of Fighting EADJ = Ryuuko no Ken EADP = Art of Fighting EAEE = Samurai Showdown EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen EAEP = Samurai Showdown EAFE = Blue's Journey EAFJ = Raguy EAFP = Blue's Journey EAGE = The King of Fighters '94 EAGJ = The King of Fighters '94 EAGP = The King of Fighters '94 EAHE = Baseball Stars 2 EAHJ = Baseball Stars 2 EAHP = Baseball Stars 2 EAIE = Top Hunter EAIJ = Top Hunter EAIP = Top Hunter EAJE = Metal Slug EAJJ = Metal Slug EAJP = Metal Slug EAKE = Burning Fight EAKJ = Burning Fight EAKP = Burning Fight EALE = Art of Fighting 2 EALJ = Ryuuko no Ken 2 EALP = Art of Fighting 2 EAME = Ninja Combat EAMJ = Ninja Combat EAMP = Ninja Combat EANE = Fatal Fury 2 EANJ = Garou Densetsu 2: Aratanaru Tatakai EANP = Fatal Fury 2 EAOE = King of the Monsters EAOJ = King of the Monsters EAOP = King of the Monsters EAPE = Ninja Commando EAPJ = Ninja Commando EAPP = Ninja Commando EAQE = WORLD HEROES 2 EAQJ = World Heroes 2 EARE = Neo Turf Masters EARJ = Neo Turf Masters EARP = Neo Turf Masters EASE = Samurai Showdown 2 EASJ = Shin Samurai Spirits Haoumaru Jigokuhen EASP = Samurai Shodown II EATE = WORLD HEROES 2 JET EATJ = World Heroes 2 Jet EAUJ = Twinkle Star Sprites EAVE = The King of Fighters ’95 EAVJ = The King of Fighters '95 EAVP = The King of Fighters '95 EAWE = Fatal Fury Special EAWJ = Garou Densetsu Special EAWP = Fatal Fury Special EAYJ = King of The Monsters 2 EAZE = WORLD HEROES PERFECT EAZJ = World Heroes Perfect EB2E = REAL BOUT FATAL FURY SPECIAL EB2J = Real Bout Garou Densetsu Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB6E = Metal Slug 3 EB6J = Metal Slug 3 EB6P = Metal Slug 3 EB7J = The Super Spy EB8E = SHOCK TROOPERS EB8J = Shock Troopers EB9J = Pulstar EBAE = Magical Drop II EBAJ = Magical Drop 2 EBAP = Magical Drop II EBBE = Fighters History Dynamite EBBJ = Fighter's History Dynamite EBBP = Karnov's Revenge EBCJ = Flying Power Disc EBDE = Magical Drop III EBDJ = Magical Drop III EBDP = Magical Drop 3 EBEE = Street Slam EBEJ = Dunk Dream EBEP = Street Hoop EBFE = Spin Master EBFJ = Miracle Adventure EBFP = Spin master EBGE = The King of Fighters '97 EBGJ = The King of Fighters '97 EBKJ = Last Resort EBLJ = Tsuukai GanGan Koushinkyoku EBMJ = Fire Suplex EBNJ = Fu'un Mokushiroku: Kakutou Sousei EBOJ = Fu'un Super Tag Battle EBPJ = League Bowling EBQE = NINJA MASTER'S EBQJ = Ninja Master's Haou Ninpou-chou EBRJ = Joy Joy Kid EBSE = The Path of the Warrior: Art of Fighting 3 EBSJ = Art of Fighting: Ryuuko no Ken Gaiden EBTJ = Crossed Swords EBUE = 2020 SUPER BASEBALL EBUJ = Super Baseball 2020 EBVJ = Shin-Oh-Ken EBWE = SENGOKU EBWJ = Sengoku Denshou EBXE = SENGOKU 2 EBXJ = Sengoku 2 EBZE = REAL BOUT FATAL FURY EBZJ = Real Bout Garou Densetsu ECAE = Real Bout Fatal Fury 2: The Newcomers ECAJ = Real Bout Garou Densetsu 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECDJ = Stakes Winner: G1 Kanzen Seihahe no Michi ECEE = THE LAST BLADE 2 ECEJ = Bakumatsu Rouman Dai Ni Maku: Gekka no Kenshi ECFJ = Blazing Star ECGE = Shock Troopers: 2nd Squad ECGJ = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECJE = The King of Fighters '99 ECJJ = Metal Slug 4 ECKE = NAM-1975 ECKJ = NAM-1975 ECLJ = Stakes Winner 2 ECMJ = Tokuten Oh: Honoo no Libero ECNE = Sengoku 3 ECNJ = Sengoku Denshou 2001 ENDP01 = New SUPER MARIO BROS. Wii 20 The End For Now EVOP01 = New Super Mario Bros. Wii 0-5 Evolution FA2J = Exerion FA3J = Formation Z FA4J = Devil World FA4P = Devil World FA5J = Fire Emblem: Ankoku Ryu to Hikari no Tsurugi FA6E = Donkey Kong Jr. Math FA6J = Donkey Kong Jr. no Sansuu Asobi FA6P = Donkey Kong Jr. Math FA7E = Yoshi FA7J = Yoshi no Tamago FA7K = Yoshi FA7P = Mario & Yoshi FA8E = Kirby's Adventure FA8F = Kirby's Adventure FA8J = Hoshi no Kirby: Yume no Izumi no Monogatari FA8K = Kirby's Adventure FA8P = Kirby's Adventure FA9E = Zelda II: The Adventure of Link FA9J = The Legend of Zelda 2: Link no Bouken FA9P = Zelda II: The Adventure of Link FAAE = Donkey Kong FAAJ = Donkey Kong FAAK = Donkey Kong FAAP = Donkey Kong FABE = Donkey Kong Jr. FABJ = Donkey Kong Jr. FABP = Donkey Kong Jr. FACE = Pinball FACJ = Pinball FACP = Pinball FADJ = Gomoku Narabe Renju FAFE = Mario Bros. FAFJ = Mario Bros. FAFK = Mario Bros. FAFP = Mario Bros. FAGE = Super Mario Bros. FAGJ = Super Mario Bros. FAGK = Super Mario Bros. FAGP = Super Mario Bros. FAHE = Tennis FAHJ = Tennis FAHP = Tennis FAIE = Soccer FAIJ = Soccer FAIP = Soccer FAJE = Ice Hockey FAJJ = Ice Hockey FAJP = Ice Hockey FAKE = The Legend of Zelda FAKJ = Zelda no Densetsu FAKK = The Legend of Zelda FAKP = The Legend of Zelda FALE = Baseball FALJ = Baseball FALP = Baseball FAME = Wario's Woods FAMJ = Wario no Mori FAMP = Wario's Woods FANE = Urban Champion FANJ = Urban Champion FANK = Urban Champion FANP = Urban Champion FAOE = Solomon's Key FAOJ = Solomon no Kagi FAOP = Solomon's Key FAPE = NES Open Tournament Golf FAPJ = Mario Open Golf FAPK = NES Open Tournament Golf FAPP = NES Open Tournament Golf FAQJ = Ninja Jajamaru-kun FAQL = Ninja JaJaMaru-kun FAQN = Ninja JaJaMaru-kun FARE = Gradius FARJ = Gradius FARP = Gradius FASE = Xevious FASJ = Xevious FASK = Xevious FASP = Xevious FATE = The Legend of Kage FATJ = Kage no Densetsu FAVE = Tecmo Bowl FAVJ = Tecmo Bowl FAWE = Elevator Action FAWJ = Elevator Action FAXE = Pac-Man FAXJ = Pac-Man FAXK = Pac-Man FAXP = Pac-Man FAYJ = Ikki FAZJ = Field Combat FAZK = Downtown Nekketsu Koushinkyoku: Soreyuke Daiundoukai FB2J = Super Mario Bros. 2 FB2L = Super Mario Bros.: The Lost Levels FB2N = Super Mario Bros.: The Lost Levels FB3J = Valkyrie no Bouken: Toki no Kagi Densetsu FB4E = Lunar Pool FB4J = Lunar Ball FB4P = Lunar Pool FB5E = Zanac FB5J = Zanac FB6J = Front Line FB7J = Nuts & Milk FB8J = Challenger FB9J = Pooyan FBAJ = Smash Ping Pong FBAL = Smash Table Tennis FBBE = Mach Rider FBBJ = Mach Rider FBBP = Mach Rider FBCE = Excitebike FBCJ = Excitebike FBCP = Excitebike FBDE = Kid Icarus FBDJ = Hikari Shinwa: Palutena no Kagami FBDK = Kid Icarus FBDP = Kid Icarus FBEE = Ice Climber FBEJ = Ice Climber FBEP = Ice Climber FBHE = Castlevania FBHJ = Akumajou Dracula FBHP = Castlevania FBIE = Punch Out!! Featuring Mr. Dream FBIJ = Punch-Out!! FBIP = Punch-Out!! FBJE = Mighty Bomb Jack FBJJ = Mighty Bomb Jack FBJP = Mighty Bomb Jack FBKE = Teenage Mutant Ninja Turtles FBKJ = Gekikame Ninja Den FBKP = Teenage Mutant Ninja Turles FBLE = Lode Runner FBLJ = Lode Runner FBLM = Lode Runner FBNE = Ninja Gaiden FBNJ = Ninja Ryuukenden FBNM = Ninja Gaiden FBOJ = Gradius II FBQJ = Druaga no Tou FBRE = Galaga FBRJ = Galaga FBRK = Galaga FBRP = Galaga FBSE = Milon's Secret Castle FBSJ = Meikyuu Kumikyoku: Milon no Daibouken FBSM = Milon's Secret Castle FBUE = Adventures of Lolo FBUJ = Adventures of Lolo FBUK = Adventures of Lolo FBUP = Adventures of Lolo FBVJ = Tsuppari Oozumou FBWJ = Joy Mech Fight FBWK = Joy Mech Fight FBXJ = Famicom Wars FBYE = Super Mario Bros. 2 FBYJ = Super Mario USA FBYK = Super Mario USA FBYP = Super Mario Bros. 2 FBZE = Metroid FBZJ = Metroid FBZP = Metroid FC2J = Hanjuku Hero FC3E = Bubble Bobble FC3J = Bubble Bobble FC3K = Bubble Bobble FC3P = Bubble Bobble FC4J = Chack'n Pop FC5J = Ganbare Goemon Karakuki Douchuu FC6E = StarTropics FC6J = Startropics FC6P = StarTropics FC7E = NES Play Action Football FC7J = NES Play Action Football FC8E = Castlevania II Simon's Quest FC8J = Dracula II: Noroi no Fuuin FC8P = Castlevania II: Simon's Quest FC9J = Metal Slader Glory FCAE = Star Soldier FCAJ = Star Soldier FCEJ = Esper Dream FCEU = FCE Ultra GX FCFJ = Yie Ar Kung Fu FCGJ = TwinBee FCHJ = Flappy FCIJ = Volguard 2 FCJJ = SD Gundam World: Gachapon Senshi 2 - Capsule Senki FCNJ = Kekkyoku Nankyoku Daibouken FCNK = Antarctic Adventure FCOJ = Battle City FCPE = Balloon Fight FCPJ = Balloon Fight FCPP = Balloon Fight FCQE = Ninja Gaiden II: The Dark Sword of Chaos FCQJ = Ninja Gaiden Two FCRE = Adventure Island FCRJ = Takahashi Meijin no Boukenjima FCRK = Hudson's Adventure Island FCRP = Adventure Island FCSE = Super C FCSJ = Super Contra FCSP = Probotector II: Return of the Evil Forces FCTE = Mega Man FCTJ = RockMan FCTP = Mega Man FCUE = Volleyball FCUJ = Volleyball FCUP = Volleyball FCVE = Wrecking Crew FCVJ = Wrecking Crew FCVP = Wrecking Crew FCWE = Super Mario Bros. 3 FCWJ = Super Mario Bros. 3 FCWK = Super Mario Bros. 3 FCWP = Super Mario Bros. 3 FCYE = Yoshi’s Cookie FCYJ = Yoshi no Cookie FCYK = Yoshi's Cookie FCYP = Yoshi’s Cookie FCZE = King's Knight FCZJ = Kings Knight FD2E = Double Dragon FD2J = Double Dragon FD2P = Double Dragon FD3J = Nekketsu Koukou Dodgeball-bu Soccer-hen FD3K = Nekketsu Koukou Dodgeball-bu Soccer-hen FD6E = Adventures of Lolo 2 FD6P = Adventures of Lolo 2 FD7E = Mega Man 3 FD7J = RockMan 3: Dr. Wily no Saigo?! FD7P = Mega Man 3 FDAE = Spelunker FDAJ = Spelunker FDAM = Spelunker FDBJ = Famicom Mukashi Banashi: Shin Onigashima - Kouhen FDCJ = Star Luster FDEJ = Mappy FDFE = Bases Loaded FDFJ = Moero!! Pro Yakyuu FDGE = Ghosts'n Goblins FDGJ = Makai-Mura FDGP = Ghosts'n Goblins FDIJ = Bokosuka Wars FDLE = Ninja Gaiden III: The Ancient Ship of Doom FDLJ = Ninja Gaiden Three FDNE = Mega Man 2 FDNJ = RockMan 2 FDNP = Mega Man 2 FDOE = Operation Wolf FDOJ = Operation Wolf FDOP = Operation Wolf FDPE = Blades of Steel FDPP = Blades of Steel FDQE = Double Dribble FDQP = Double Dribble FDRP = Skate or Die FDSJ = Famicom Tantei Club: Kieta Koukeisha (Kouhen) FDTE = Renegade FDTJ = Renegade FDUE = Super Dodge Ball FDUJ = Nekketsu Koukou Dodge Ball Bu FDVE = River City Ransom FDVJ = Downtown Nekketsu Monogatari FDVK = Downtown Nekketsu Monogatari FDVP = Street Gangs FDWJ = Downtown Special: Kunio-kun no Jidaigeki Dayo Zenin Shuugou! FDXJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo (Kouhen) FDYJ = Fire Emblem Gaiden FDZJ = Downtown Nekketsu Koushinkyoku FE5J = Toukaidou Gojuusan Tsugi FE6J = Ninja kun Majyou no Bouken FE7J = Ninja kun Ashura no Shou FE8J = Takeshi no Chousenjou FE9J = Ike Ike! Nekketsu Hockey-bu: Subette Koronde Dairantou FECE = Skykid FECJ = Sky Kid FEDJ = Dig Dug FEDL = Dig Dug FEDN = Dig Dug FEEJ = Tantei Jinguji Saburo: Shinjuku Chuo Koen Satsujin Jiken FEFJ = Detective Saburo Jinguji 2: Yokohama-Ko Renzoku Satsujin Jiken FEGJ = Tantei Jinguuji Saburo - Kikenna Futari - Zenkouhen FEHJ = Tantei Jinguuji Saburo: Toki no Sugiyuku Mama ni FEIE = City Connection FEIJ = City Connection FEIP = City Connection FEJJ = Nazo no Murasame Jou FELJ = Transformers: Convoy no Nazo FEMJ = Bio-Miracle Bokutte Upa FEML = Bio Miracle Bokutte UPA FEMN = Bio Miracle Bokutte UPA FENE = Life Force FENJ = Salamander FEOJ = Zoids: Mokushiroku FEPJ = Getsu Fuuma Den FEQE = Castlevania III: Dracula's Curse FEQJ = Akumajo Densetsu FEQP = Castlevania III Dracula's Curse FERE = Zoda’s Revenge: StarTropics II FERJ = Zoda's Revenge FERM = Startropics II: Zoda's Revenge FESE = Clu Clu Land FESJ = Clu Clu Land FESP = Clu Clu Land FEUE = Donkey Kong 3 FEUJ = Donkey Kong 3 FEUP = Donkey Kong 3 FEVJ = Atlantis no Nazo FEWJ = Dragon Buster FEXJ = Wagyan Land FF2J = Sugoro Quest: Dice no Senshi Tachi FF4E = BurgerTime FF4J = BurgerTime FF5E = Double Dragon II: The Revenge FF5J = Double Dragon 2: The Revenge FF6J = Ganbare Goemon 2 FF7J = Ganbare Goemon Gaiden: Kieta Ougon Kiseru FFAE = Final Fantasy FFAJ = Final Fantasy FFAM = Final Fantasy FFBJ = Final Fantasy II FFDE = Crash 'N The Boys Street Challenge FFDJ = Bikkuri Nekketsu Shin Kiroku! Harukanaru Kin Medal FFEE = A Boy and His Blob: Trouble on Blobolonia FFEP = A Boy and His Blob: Trouble on Blobolonia FFFJ = Final Fantasy III FFGJ = SD Gundam World: Gachapon Senshi - Scramble Wars FFJJ = Metal Max FFKJ = Championship Lode Runner FFLE = Princess Tomato in the Salad Kingdom FFLJ = Salad no Kuni no Tomato Hime FFME = Blaster Master FFMJ = Chou-Wakusei Senki MetaFight FFMP = Blaster Master FFNE = Mega Man 4 FFNJ = RockMan 4: Aratanaru Yabou!! FFNP = Mega Man 4 FFOJ = Moero TwinBee: Cinnamon Hakase o Sukue! FFPB = Ufouria: The Saga FFPJ = Furu Furu Park FFQE = Shadow of the Ninja FFQM = Shadow of the Ninja FFRE = Faxanadu FFRJ = Faxanadu FFRP = Faxanadu FFTJ = Binary Land FFUE = Adventure Island 2 FFUJ = Takahashi Meijin no Bouken Jima II FFUP = Adventure Island 2 FFVE = S.C.A.T. FFVP = S.C.A.T.: Special Cybernetic Attack Team FFWP = Donkey Kong: Original Edition FFXJ = 25th Anniversary SUPER MARIO BROS. FFXP = Super Mario Brothers: 25th Anniversary Exclusive FFYE = Mega Man 5 FFYJ = RockMan 5: Blues no Wana!? FFZJ = Seicross FFZY = Contra FJOR = Kung Fu FMCA = The Goonies G01E01 = Super Smash Bros. Melee: SD Remix G01J01 = Super Smash Bros. Melee: SD Remix G01P01 = Super Smash Bros. Melee: SD Remix G02E01 = Super Smash Bros. Melee: 20XX Training Pack G02J01 = Super Smash Bros. Melee: 20XX Training Pack G02P01 = Super Smash Bros. Melee: 20XX Training Pack G2BE5G = Black & Bruised G2BP7D = Black & Bruised G2CD52 = True Crime: New York City G2CE52 = True Crime: New York City G2CP52 = True Crime: New York City G2CX52 = True Crime: New York City G2FD78 = Tak 2: The Staff of Dreams G2FE78 = Tak 2: The Staff of Dreams G2FF78 = Tak 2: The Staff of Dreams G2FP78 = Tak 2: The Staff of Dreams G2GJB2 = Mobile Suit Gundam: Gundam vs. Z Gundam G2KE8P = NHL 2K3 G2KP8P = NHL 2K3 G2ME01 = Metroid Prime 2: Echoes G2MEAB = Metroid Prime 3 (E3 Beta) G2MJ01 = Metroid Prime 2: Dark Echoes G2MP01 = Metroid Prime 2: Echoes G2OE41 = Prince of Persia: Warrior Within G2OP41 = Prince of Persia: Warrior Within G2PE6U = Spirits And Spells G2RE52 = Shrek SuperSlam G2SJGE = Shikigami no Shiro II G2TE52 = Tony Hawk's Underground 2 G2TP52 = Tony Hawk's Underground 2 G2VE08 = Viewtiful Joe 2 G2VJ08 = Viewtiful Joe 2: Blackfilm no Nazo G2VP08 = Viewtiful Joe 2 G2XE8P = Sonic Gems Collection G2XP8P = Sonic Gems Collection G3AD69 = Lord of the Rings: The Third Age G3AE69 = Lord of the Rings: The Third Age G3AF69 = Lord of the Rings: The Third Age G3AP69 = Lord of the Rings: The Third Age G3AS69 = Lord of the Rings: The Third Age G3BE9G = Serious Sam: Next Encounter G3BP54 = Serious Sam: Next Encounter G3BP9G = Serious Sam: Next Encounter G3DE6L = Carmen Sandiego: The Secret of the Stolen Drums G3DP6L = Carmen Sandiego: The Secret of the Stolen Drums G3DX6L = Carmen Sandiego: The Secret of the Stolen Drums G3EE51 = XGIII: Extreme G Racing G3EJ51 = XGIII: Extreme G Racing G3EP51 = XGIII: Extreme G Racing G3FD69 = TimeSplitters: Future Perfect G3FE69 = TimeSplitters: Future Perfect G3FF69 = TimeSplitters: Future Perfect G3FP69 = TimeSplitters: Future Perfect G3FS69 = TimeSplitters: Future Perfect G3JEAF = Curious George G3LE8P = Super Monkey Ball Adventure G3LP8P = Super Monkey Ball Adventure G3ME41 = Tom Clancy's The Sum of All Fears G3MP41 = The Sum of All Fears G3NJDA = NARUTO Gekitô Ninja Taisen! 3 G3QEA4 = Teenage Mutant Ninja Turtles 3: Mutant Nightmare G3RD52 = Shrek 2 G3RE52 = Shrek 2 G3RF52 = Shrek 2 G3RP52 = Shrek 2 G3SE41 = Bust-A-Move 3000 G3TJ8P = Derby Tsuku 3: Derby Uma O Tsukurou! G3VE69 = NBA Street Vol.3 G3VP69 = NBA Street Vol.3 G3XE52 = X-Men: The Official Game G3XP52 = X-Men: The Official Game G3YP52 = Shrek Super Slam G3YX52 = Shrek Super Slam G3YY52 = Shrek Super Slam G4AEE9 = Harvest Moon: Magical Melody G4BE08 = Resident Evil 4 G4BJ08 = Biohazard 4 G4BP08 = Resident Evil 4 G4CE54 = Charlie and the Chocolate Factory G4CP54 = Charlie and the Chocolate Factory G4FD69 = FIFA 07 G4FE69 = FIFA Soccer 07 G4FF69 = FIFA 07 G4FP69 = FIFA 07 G4GEE9 = Harvest Moon: Another Wonderful Life G4IE52 = Shrek Smash n' Crash Racing G4IP52 = Shrek Smash n' Crash Racing G4ME69 = The Sims Bustin' Out G4MP69 = The Sims: Bustin' Out G4NJDA = NARUTO Gekitô Ninja Taisen! 4 G4OE69 = The Sims 2 : Pets G4OP69 = The Sims 2 : Pets G4QE01 = Super Mario Strikers G4QJ01 = Super Mario Strikers G4QP01 = Mario Smash Football G4SE01 = The Legend of Zelda: Four Swords Adventures G4SJ01 = The Legend of Zelda: Four Swords + G4SP01 = The Legend of Zelda: Four Swords Adventures G4ZE69 = The Sims 2 G4ZP69 = The Sims 2 G5BE4Z = Strike Force Bowling G5DE78 = Scooby-Doo! - Unmasked G5DP78 = Scooby-Doo! - Unmasked G5NEAF = Namco Museum 50th Anniversary G5NP69 = Namco Museum 50th Anniversary G5SE7D = Spyro: A Hero's Tail G5SP7D = Spyro: A Hero's Tail G5TE69 = Tiger Woods PGA Tour 2005 G5TP69 = Tiger Woods PGA Tour 2005 G62E54 = Major League Baseball 2k6 G63E41 = Tom Clancy's Rainbow Six 3 G63P41 = Tom Clancy's Rainbow Six 3 G6FD69 = 2006 FIFA World Cup G6FE69 = 2006 FIFA World Cup G6FF69 = 2006 FIFA World Cup G6FP69 = 2006 FIFA World Cup G6ME69 = Madden NFL 06 G6MP69 = Madden NFL 06 G6NE69 = NBA Live 06 G6NP69 = NBA Live 06 G6QE08 = Mega Man Anniversary Collection G6SE7D = The Legend of Spyro: A New Beginning G6SP7D = The Legend of Spyro: A New Beginning G6TE5G = Teen Titans G6TP5G = Teen Titans G6TP78 = Teen Titans G6WE69 = Tiger Woods PGA Tour 06 G6WP69 = Tiger Woods PGA Tour 06 G7ME69 = Madden NFL 07 G89EAF = Pac-Man World Rally G8FE8P = Virtua Quest G8ME01 = Paper Mario: The Thousand-Year Door G8MJ01 = Paper Mario RPG G8MP01 = Paper Mario: The Thousand-year Door G8OJ18 = Bobobo-bo Bo-bobo Dassutsu! Hajike Royale G8SJAF = Battle Stadium D.O.N G8WE01 = Battalion Wars G8WP01 = Battalion Wars G94E01 = Interactive Multi-Game Demo Disc - August 2002 G95E01 = Interactive Multi-Game Demo Disc - July 2002 G96E01 = Interactive Multi-Game Demo Disc - June 2002 G97E01 = Interactive Multi-Game Demo Disc - March 2002 G97P01 = Interactive Multi Game Demo Disc - September 2002 G97U01 = Interactive Multi-Game Demo Disc - September 2002 G98E01 = Interactive Multi-Game Demo Disc - January 2002 G98P01 = Interactive Multi Game Demo Disc May 2002 G99E01 = Interactive Multi-Game Demo Disc - October 2001 G99P01 = Interactive Multi Game Demo Disc March 2002 G9BEE9 = Mark Davis Pro Bass Challenge G9RD7D = Crash Tag Team Racing G9RE7D = Crash Tag Team Racing G9RF7D = Crash Tag Team Racing G9RP7D = Crash Tag Team Racing G9SE8P = Sonic Heroes G9SJ8P = Sonic Heroes G9SP8P = Sonic Heroes G9TD52 = Shark Tale G9TE52 = Shark Tale G9TF52 = Shark Tale G9TI52 = Shark Tale G9TJC0 = Shark Tale G9TP52 = Shark Tale GA2E51 = All-Star Baseball 2002 GA3E51 = All-Star Baseball 2003 GA4E51 = All-Star Baseball 2004 GA7E70 = Backyard Sports Baseball 2007 GAAJ08 = Disney's Mickey & Minnie Trick & Chase GABEAF = Zatch Bell! Mamodo Fury GACE5H = Army Men: Air Combat The Elite Missions GAEJ01 = Doubutu no Mori e+ GAFE01 = Animal Crossing GAFJ01 = Animal Forest + GAFP01 = Animal Crossing GAFU01 = Animal Crossing GAGP70 = Asterix & Obelix XXL GAHEGG = Alien Hominid GAKE5D = Midway Arcade Treasures GALE01 = Super Smash Bros. Melee GALJ01 = Dairantou Smash Brothers DX GALP01 = Super Smash Bros. Melee GAME5H = Army Men Sarges War GANE7U = Animaniacs: The Great Edgar Hunt GANP7U = Animaniacs: The Great Edgar Hunt GAPE52 = American Chopper 2 - Full Throttle GAQE6S = Aquaman: Battle of Atlantis GARE5H = Army Men: RTS GASE8P = Sonic Adventure DX: Director's Cut (Review Prototype) GASJ8P = Sonic Adventure DX GATE51 = ATV Quad Power Racing 2 GATP51 = ATV Quad Power Racing 2 GAUE08 = Auto Modellista GAUJ08 = Auto Modellista: U.S.-tuned GAVE78 = Avatar The Last Airbender GAVP78 = Avatar: The Legend of Aang GAVY78 = Avatar: The Legend of Aang GAXE5D = The Ant Bully GAYE5D = Midway Arcade Treasures 2 GAZD69 = Harry Potter and the Prisoner of Azkaban GAZE69 = Harry Potter and the Prisoner of Azkaban GAZF69 = Harry Potter and the Prisoner of Azkaban GAZH69 = Harry Potter and the Prisoner of Azkaban GAZI69 = Harry Potter and the Prisoner of Azkaban GAZJ69 = Harry Potter to Azkaban no Shuujin GAZM69 = Harry Potter and the Prisoner of Azkaban GAZP69 = Harry Potter and the Prisoner of Azkaban GAZS69 = Harry Potter and the Prisoner of Azkaban GB2J18 = Bomberman Land 2 GB3E51 = BMX XXX GB3P51 = BMX XXX GB4E51 = Burnout 2: Point of Impact GB4P51 = Burnout 2: Point of Impact GBAE8P = NBA 2K2 GBDE5G = BloodRayne GBDP7D = BloodRayne GBDS7D = BloodRayne GBFE70 = Backyard Football GBGE5G = Bomberman Generation GBGP7D = Bomberman Generation GBHDC8 = Mystic Heroes GBHEC8 = Mystic Heroes GBHFC8 = Mystic Heroes GBHJC8 = Battle Houshin GBHPC8 = Mystic Heroes GBIE08 = Resident Evil GBIJ08 = Biohazard GBIP08 = Resident Evil GBKE70 = Backyard Baseball GBLE52 = Bloody Roar: Primal Fury GBLP52 = Bloody Roar: Primal Fury GBME7F = Batman: Dark Tomorrow GBMP7F = Batman: Dark Tomorrow GBNJC0 = Warrior Blade: Rastan vs. Barbarian GBOE51 = Burnout GBOP51 = Burnout GBQE78 = Rocket Power: Beach Bandits GBQP78 = Rocket Power: Beach Bandits GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTP70 = Beyblade VForce - Super Tournament Battle GBVE41 = Batman: Vengeance GBVP41 = Batman Vengeance GBWD64 = Star Wars Bounty Hunter GBWE64 = Star Wars Bounty Hunter GBWF64 = Star Wars Bounty Hunter GBWP64 = Star Wars Bounty Hunter GBWS64 = Star Wars Bounty Hunter GBXE51 = Dave Mirra Freestyle BMX 2 GBXP51 = Dave Mirra Freestyle BMX 2 GBYE0A = Super Bubble Pop GBZE08 = Resident Evil Zero GBZJ08 = Resident Evil Zero GBZP08 = Resident Evil Zero GC2E9G = Conflict: Desert Storm II: Back to Baghdad GC2P75 = Conflict: Desert Storm II: Back to Baghdad GC3D78 = Scooby-Doo!: Mystery Mayhem GC3E78 = Scooby-Doo!: Mystery Mayhem GC3F78 = Scooby-Doo!: Mystery Mayhem GC3P78 = Scooby-Doo!: Mystery Mayhem GC4JBN = Shinseiki GPX Cyber Formula Road To The EVOLUTION GC5PNK = Cocoto: Kart Racer GC6E01 = Pokémon Colosseum GC6J01 = Pokémon Colosseum GC6P01 = Pokémon Colosseum GC7PNK = Cocoto Platform Jumper GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBP7D = Crash Bandicoot: The Wrath of Cortex GCCE01 = Final Fantasy Crystal Chronicles GCCJ01 = Final Fantasy Crystal Chronicles GCCJGC = Final Fantasy Crystal Chronicles GCCP01 = Final Fantasy Crystal Chronicles GCDE08 = Resident Evil Code: Veronica X GCDJ08 = Biohazard: Code Veronica GCDP08 = Resident Evil Code Veronica X GCEE41 = Tom Clancy's Splinter Cell GCEP41 = Tom Clancy's Splinter Cell GCFE9G = Conflict: Desert Storm GCFP75 = Conflict: Desert Storm GCGE41 = Charlie's Angels GCGP41 = Charlie's Angels GCHE78 = WWE Crush Hour GCHP78 = WWE Crush Hour GCIE69 = The Sims GCIP69 = The Sims GCJE41 = Tom Clancy's Splinter Cell: Chaos Theory GCJP41 = Tom Clancy's Splinter Cell: Chaos Theory GCLE69 = Cel Damage GCLP69 = Cel Damage GCMJA4 = Muscle Champion ~Battle of Muscle Island~ GCNE7D = Crash Nitro Kart GCNP7D = Crash Nitro Kart GCOD52 = Call of Duty: Finest Hour GCOE52 = Call of Duty: Finest Hour GCOF52 = Call of Duty: Finest Hour GCOP52 = Call of Duty: Finest Hour GCPE6S = Casper: Spirit Dimensions GCPP6S = Casper: Spirit Dimensions GCQD7D = Buffy The Vampire Slayer Chaos Bleeds GCQE7D = Buffy the Vampire Slayer: Chaos Bleeds GCQF7D = Buffy The Vampire Slayer Chaos Bleeds GCQP7D = Buffy The Vampire Slayer Chaos Bleeds GCSEAF = Street Racing Syndicate GCSPAF = Street Racing Syndicate GCTE51 = Crazy Taxi GCTP51 = Crazy Taxi GCUE69 = NCAA Football 2005 GCVEEB = Cubivore: Survival of the Fittest GCWP6X = Castleween GCZE69 = Catwoman GCZP69 = Catwoman GD4E6S = Dinotopia - The Sunstone Odyssey GD5JB2 = Dragon Drive: D-Masters Shot GD6EB2 = Digimon Rumble Arena 2 GD6P70 = Digimon Rumble Arena 2 GD7E70 = Dragon Ball Z - Budokai GD7JB2 = Dragon Ball Z - Budokai GD7P70 = Dragon Ball Z - Budokai GD7PB2 = Dragon Ball Z Budokai GD9E69 = Drome Racers GD9P69 = Drome Racers GDAJE5 = Doraemon Minna De Asobou! GDBJ01 = Doubutsu Bancho GDCE51 = Speed Kings GDCP51 = Speed Kings GDDE41 = Disney's Donald Duck: Goin' Quackers GDDP41 = Disney's Donald Duck: Qu@ck Att@ck GDED71 = Baldur's Gate Dark Alliance GDEE71 = Baldur's Gate: Dark Alliance GDEF71 = Baldur's Gate: Dark Alliance GDEP71 = Baldur's Gate Dark Alliance GDFE5D = Defender GDFP5D = Defender: For All Mankind GDGE7H = Dragon's Lair 3D: Return to the Lair GDGP78 = Dragon's Lair 3D Special Edition GDIE7D = Die Hard: Vendetta GDIP7D = Die Hard: Vendetta GDIX7D = Die Hard: Vendetta GDIY7D = Die Hard: Vendetta GDJEB2 = Digimon World 4 GDJJB2 = Digimon World X GDKEA4 = Disney Sports Soccer GDKPA4 = Disney Sports: Football GDLEA4 = Disney Sports Basketball GDLPA4 = Disney Sports: Basketball GDME01 = Disney's Magical Mirror Starring Mickey Mouse GDMJ01 = Disney's Mickey Mouse no Fushigi na Kagami GDMP01 = Disney's Magical Mirror Starring Mickey Mouse GDNJE8 = Dokapon DX GDOP41 = Disney's Donald Duck PK GDPJAF = Mr. Driller: Drill Land GDQE7L = Darkened Skye GDQP6S = Darkened Skye GDREAF = Dead to Rights GDRP69 = Dead to Rights GDRPAF = Dead to Rights GDSE78 = Dark Summit GDSP78 = Dark Summit GDTE69 = Def Jam Vendetta GDTP69 = Def Jam Vendetta GDUJA7 = Duel Masters Nettou Battle GDVE6L = Driven GDVP6L = Driven GDWEA4 = Disney Sports Football GDXEA4 = Disney Sports Skateboarding GDXJA4 = Disney Sports Skateboarding GDXPA4 = Disney Sports Skateboarding GE3E5D = Midway Arcade Treasures 3 GE4E7D = 4x4 Evo 2 GE5EA4 = TMNT: Mutant Melee GE6JA4 = Eisei Meijin VI GE9E5D = Ed, Edd n Eddy: The Mis-Edventures GEAE8P = Skies of Arcadia Legends GEAJ8P = Eternal Arcadia Legends GEAP8P = Skies of Arcadia Legends GEBEA4 = Evolution Snowboarding GEBPA4 = Evolution Snowboarding GEDE01 = Eternal Darkness: Sanity's Requiem GEDJ01 = Eternal Darkness: Manekareta 13-nin GEDP01 = Eternal Darkness: Sanity's Requiem GEJJCM = Jikkyou Powerful Pro Yakyuu 11 Chou Ketteiban GEME7F = Egg Mania: Eggstreme Madness GEMP7F = Eggo Mania GEND69 = James Bond 007: Everything Or Nothing GENE69 = James Bond 007: Everything Or Nothing GENF69 = James Bond 007: Everything Or Nothing GENP69 = 007: Everything Or Nothing GENS69 = James Bond 007: Everything Or Nothing GEOE08 = Capcom vs. SNK 2 EO GEOP08 = Capcom Vs. SNK2 EO: Millionaire Fighting 2001 GESEA4 = Evolution Skateboarding GESPA4 = Evolution Skateboarding GEVJ0M = Shinki Sekai Evolutia GEWE41 = Evolution Worlds GEWP41 = Evolution Worlds GEXE52 = Disney's Extreme Skate Adventure GEXP52 = Disney Extreme Skate Adventure GEXX52 = Disney's Extreme Skate Adventure GEXY52 = Disney Extreme Skate Adventure GEYE69 = Fight Night Round 2 GEYJ69 = Fight Night Round 2 GEYP69 = Fight Night Round 2 GEZE8P = Billy Hatcher and the Giant Egg GEZP8P = Billy Hatcher and the Giant Egg GF2E69 = F1 2002 GF2P69 = F1 2002 GF3E8P = NFL 2K3 GF3P8P = NFL 2K3 GF4E52 = Fantastic 4 GF4F52 = Fantastic Four GF4P52 = Fantastic 4 GF5D69 = FIFA Football 2005 GF5E69 = FIFA Soccer 2005 GF5F69 = FIFA Football 2005 GF5H69 = FIFA Football 2005 GF5I69 = FIFA Football 2005 GF5P69 = FIFA Football 2005 GF5S69 = FIFA Football 2005 GF6D69 = FIFA 06 GF6E69 = FIFA Soccer 06 GF6F69 = FIFA 06 GF6H69 = FIFA 06 GF6P69 = FIFA 06 GF6S69 = FIFA 06 GF7E01 = Star Fox: Assault GF7P01 = Star Fox Assault GF8E69 = FIFA Street GF8P69 = FIFA Street GFAD69 = FIFA Soccer 2003 GFAE69 = FIFA Soccer 2003 GFAF69 = FIFA Soccer 2003 GFAI69 = FIFA Football 2003 GFAJ69 = FIFA Soccer 2003 GFAP69 = FIFA Football 2003 GFAS69 = FIFA Football 2003 GFBE5D = FireBlade GFBP5D = Fireblade GFCP69 = F1 Career Challenge GFDD69 = Freedom Fighters GFDE69 = Freedom Fighters GFDF69 = Freedom Fighters GFDP69 = Freedom Fighters GFEE01 = Fire Emblem: Path of Radiance GFEJ01 = Fire Emblem: Souen no Kiseki GFEP01 = Fire Emblem: Path of Radiance GFFE5D = Freaky Flyers GFGEA4 = Frogger Beyond GFGPA4 = Frogger Beyond GFHP6V = Neighbours From Hell GFIE69 = 2002 FIFA World Cup GFKE69 = Freekstyle GFKP69 = Freekstyle GFMJAF = Family Stadium 2003 GFNJG2 = Finding Nemo GFOE78 = The Fairly OddParents - Shadow Showdown GFPEA4 = Frogger: Ancient Shadow GFQEA4 = Frogger's Adventures: The Rescue GFSD69 = 2002 FIFA World Cup GFSE69 = FIFA Soccer 2002 GFSF69 = 2002 FIFA World Cup GFSJ69 = FIFA Soccer 2002 GFSP69 = 2002 FIFA World Cup GFTE01 = Mario Golf: Toadstool Tour GFTJ01 = Mario Golf: Family Tour GFTP01 = Mario Golf: Toadstool Tour GFUE4Z = Future Tactics: The Uprising GFUP6V = Future Tactics: The Uprising GFVE5D = NFL Blitz Pro GFWE78 = The Fairly OddParents: Breakin' Da Rules GFXE5D = Freestyle Metal X GFYE69 = FIFA Street 2 GFYP69 = FIFA Street 2 GFZE01 = F-Zero GX GFZJ01 = F-Zero GX GFZJ8P = F-Zero AX GFZP01 = F-Zero GX GG1J08 = Donkey Kong: Jungle Fever GG2E4Z = Trigger Man GG3J08 = Donkey Kong: Banana Kingdom GG4E08 = Gotcha Force GG4P08 = Gotcha Force GG5E52 = Cabela's Big Game Hunter 2005 GGAJB2 = Mobile Suit Gundam: The Ace Pilot GGCE0A = Goblin Commander: Unleash The Horde GGCP0A = Goblin Commander: Unleash the Horde GGEE41 = Beyond Good & Evil GGEP41 = Beyond Good And Evil GGEX41 = Beyond Good And Evil GGEY41 = Beyond Good And Evil GGFJ01 = GiFTPiA GGNE5D = The Grim Adventures of Billy and Mandy GGPE01 = Mario Kart Arcade GP GGPE02 = Mario Kart Arcade GP 2 GGPJ02 = Mario Kart Arcade GP 2 GGPJAF = SD Gundam Gashapon Wars GGPJB2 = SD Gundam Gashapon Wars GGRD41 = Tom Clancy's Ghost Recon GGRE41 = Tom Clancy's Ghost Recon GGRP41 = Tom Clancy's Ghost Recon GGSEA4 = Metal Gear Solid: The Twin Snakes GGSJA4 = Metal Gear Solid: The Twin Snakes GGSPA4 = Metal Gear Solid: The Twin Snakes GGTE01 = Chibi-Robo! GGTJ01 = Chibi-Robo! GGTP01 = Chibi-Robo! GGVD78 = Spongebob Squarepants : The Movie GGVE78 = SpongeBob SquarePants: The Movie GGVP78 = Spongebob Squarepants: The Movie GGVX78 = Spongebob Squarepants : The Movie GGYE41 = Tom Clancy's Ghost Recon 2 GGYP41 = Tom Clancy's Ghost Recon 2 GGZE52 = Madagascar GGZH52 = Madagascar GGZI52 = Madagascar GGZJB2 = Madagascar GGZP52 = Madagascar GGZS52 = Madagascar GGZX52 = Madagascar GH2E69 = Need for Speed: Hot Pursuit 2 GH2P69 = Need For Speed Hot Pursuit 2 GH3E69 = NHL 2003 GH3P69 = NHL 2003 GH4D69 = Harry Potter and the Goblet of Fire GH4E69 = Harry Potter and the Goblet of Fire GH4F69 = Harry Potter and the Goblet of Fire GH4H69 = Harry Potter and the Goblet of Fire GH4I69 = Harry Potter and the Goblet of Fire GH4J69 = Harry Potter to Honoo no Goblet GH4M69 = Harry Potter and the Goblet of Fire GH4P69 = Harry Potter and the Goblet of Fire GH4S69 = Harry Potter and the Goblet of Fire GH5D52 = Over The Hedge GH5E52 = Over The Hedge GH5F52 = Over The Hedge GH5P52 = Over The Hedge GH6EAF = Hello Kitty: Roller Rescue GH6P7N = Hello Kitty: Roller Rescue GH7E5D = Happy Feet GH9P52 = Tony Hawk's American Wasteland GHAE08 = Resident Evil 2 GHAJ08 = Biohazard 2 GHAP08 = Resident Evil 2 GHBE7D = The Hobbit GHBP7D = The Hobbit GHCD4Q = Chicken Little GHCE4Q = Chicken Little GHCF4Q = Chicken Little GHCJG9 = Chicken Little GHCP4Q = Chicken Little GHEJ91 = Homeland GHFE4Z = Pinball Hall Of Fame: The Gottlieb Collection GHGEEB = Go! Go! Hypergrind GHKD7D = Hulk GHKE7D = Hulk GHKF7D = Hulk GHKP7D = Hulk GHKS7D = Hulk GHLE69 = Harry Potter and the Sorcerer's Stone GHLJ69 = Harry Potter to Kenja no Ishi GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Sorcerer's Stone GHLY69 = Harry Potter and the Sorcerer's Stone GHLZ69 = Harry Potter and the Sorcerer's Stone GHMD4F = Hitman 2: Silent Assassin GHME4F = Hitman 2: Silent Assassin GHMF4F = Hitman 2: Silent Assassin GHMP4F = Hitman 2: Silent Assassin GHNE71 = Hunter: The Reckoning GHNX71 = Hunter: The Reckoning GHPE52 = Street Hoops GHQE7D = The Simpsons: Hit & Run GHQP7D = The Simpsons: Hit & Run GHRE78 = Hot Wheels: World Race GHRP78 = Hot Wheels: World Race GHSE69 = Harry Potter and the Chamber of Secrets GHSJ69 = Harry Potter to Himitsu no Heya GHSP69 = Harry Potter and the Chamber of Secrets GHSX69 = Harry Potter and the Chamber of Secrets GHSY69 = Harry Potter and the Chamber of Secrets GHTJA4 = Hikaru No Go 3 GHUE7D = The Incredible Hulk: Ultimate Destruction GHUF7D = The Incredible Hulk Ultimate Destruction GHUP7D = The Incredible Hulk Ultimate Destruction GHVE08 = Disney's Hide & Sneak GHVP08 = Disney's Hide & Sneak GHWE78 = Hot Wheels: Velocity X GHWP78 = Hot Wheels: Velocity X GHYE6S = The Haunted Mansion GHZE5D = NHL Hitz Pro GI2J18 = Momotarou Dentetsu 12 GIAE7D = Ice Age 2: The Meltdown GIAP7D = Ice Age 2 : The Meltdown GIBE4F = The Italian Job GIBP4F = The Italian Job GICD78 = The Incredibles GICE78 = The Incredibles GICF78 = The Incredibles GICH78 = The Incredibles GICJG9 = Mr. Inkurediburu GICP78 = The Incredibles GIFJDQ = Generation of Chaos Exceed GIGJ8P = Bleach GC: Tasogare Ni Mamieru Shinigami GIHD78 = Scooby-Doo! Night of 100 Frights GIHE78 = Scooby-Doo! Night of 100 Frights GIHP78 = Scooby-Doo! Night of 100 Frights GIIJ18 = Momotarou Dentetsu 11 GIJEFP = Space Raiders GIJJC0 = Space Raiders GIKE70 = Ikaruga GIKJ70 = Ikaruga GIKP70 = Ikaruga GILE51 = Aggressive Inline GILP51 = Aggressive Inline GINE69 = Batman Begins GINX69 = Batman Begins GIPEAF = Shonen Jump's One Piece: Pirates Carnival GIPJB2 = Shonen Jump's One Piece: Pirates Carnival GIQE78 = The Incredibles: Rise of the Underminer GIQJ8P = The Incredibles: Rise of the Underminer GIQP78 = The Incredibles: Rise of the Underminer GIQX78 = The Incredibles: Rise of the Underminer GIQY78 = The Incredibles: Rise of the Underminer GISE36 = Second Sight GISP36 = Second Sight GITE01 = Geist GITP01 = Geist GIVE4Z = Intellivision Lives GIZE52 = Ty the Tasmanian Tiger 3: Night of the Quinkan GJ2JCM = Jikkyou World Soccer 2002 GJ2PA4 = International Superstar Soccer 2 GJ3PA4 = International Superstar Soccer 3 GJBE18 = Bomberman Jetters GJBE5G = Bomberman Jetters GJBJ18 = Bomberman Jetters GJCE8P = Samurai Jack: The Shadow of Aku GJCP8P = Samurai Jack: The Shadow of Aku GJDE5S = Judge Dredd: Dredd vs. Death GJDX7D = Judge Dredd: Dredd vs. Death GJDY7D = Judge Dredd: Dredd vs. Death GJFE78 = Jimmy Neutron Jet Fusion GJFP78 = Jimmy Neutron Jet Fusion GJKD52 = Star Wars Jedi Knight II: Jedi Outcast GJKE52 = Star Wars Jedi Knight II: Jedi Outcast GJKF52 = Star Wars Jedi Knight II: Jedi Outcast GJKP52 = Star Wars Jedi Knight II: Jedi Outcast GJNE78 = Jimmy Neutron Boy Genius GJNP78 = Jimmy Neutron Boy Genius GJPJCM = Jikkyou Powerful Pro Yakyuu 11 GJSJ18 = Hudson Selection Vol. 2: Star Soldier GJUD78 = Tak and the Power of JuJu GJUE78 = Tak and the Power of Juju GJUF78 = Tak and the Power of JuJu GJUP78 = Tak and the Power of JuJu GJWE78 = Tak: The Great JuJu Challenge GJWP78 = Tak: The Great JuJu Challenge GJXE51 = Vexx GJXP51 = Vexx GJYE78 = Jimmy Neutron: Attack of the Twonkies GJYP78 = Jimmy Neutron Boy Genius: Attack of the Twonkies GJZE52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GJZP52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GK2D52 = Spider-Man 2 GK2E52 = Spider-Man 2 GK2F52 = Spider-Man 2 GK2P52 = Spider-Man 2 GK3E8P = NBA 2K3 GK3P8P = NBA 2K3 GK4E01 = Baten Kaitos Origins GK4J01 = Baten Kaitos II: Hajimari no Tsubasa to Kamigami no Shishi GK5E78 = Monster House GK5P78 = Monster House GK5X78 = Monster House GK6JA4 = Croket Banking No Kikiwosukue GK7E08 = Killer7 GK7J08 = Killer7 GK7P08 = Killer 7 GK9EA4 = Karaoke Revolution Party GKAE8P = Amazing Island GKAJ8P = Kaijuu no Shima: Amazing Island GKBEAF = Baten Kaitos Eternal Wings and the Lost Ocean GKBJAF = Baten Kaitos: Owaranai Tsubasa to Ushinawareta Umi GKBPAF = Baten Kaitos: Eternal Wings and the Lost Ocean GKDJ01 = Kyojin no Doshin GKDP01 = Doshin the Giant GKEJA4 = PAWAFURU PUROYAKYU 12 KETTEIBAN GKFEGG = Chaos Field GKFJ8P = Chaos Field Expanded GKGE01 = Donkey Konga GKGJ01 = Donkey Konga GKGP01 = Donkey Konga GKHEA4 = King Arthur GKHPA4 = King Arthur GKJD78 = Cars GKJE78 = Cars GKJF78 = Cars GKJH78 = Cars GKJJ78 = Cars GKJP78 = Cars GKJS78 = Cars GKKE69 = Knockout Kings 2003 GKKP69 = Knockout Kings 2003 GKLD69 = Lord of the Rings: The Return of the King GKLE69 = Lord of the Rings: The Return of the King GKLF69 = Lord of the Rings: The Return of the King GKLI69 = Lord of the Rings: The Return of the King GKLJ69 = The Lord of the Rings: The Return of the King GKLP69 = Lord of the Rings: The Return of the King GKLS69 = Lord of the Rings: The Return of the King GKME41 = Prince of Persia: The Two Thrones GKMP41 = Prince of Persia: The Two Thrones GKNEB2 = Ultimate Muscle: Legends vs. New Generation GKNJB2 = Kinnikuman Nisei: Shinsedai Choujin vs Densetsu Choujin GKOE70 = Kao The Kangaroo Round 2 GKOP6V = Kao The Kangaroo Round 2 GKPJA4 = Jikkyou Powerful Pro Yakyuu 12 GKQJ01 = Kururin Squash! GKREB2 = Ribbit King GKRPB2 = Ribbit King GKSE52 = Kelly Slater's Pro Surfer GKSP52 = Kelly Slater's Pro Surfer GKSX52 = Kelly Slater's Pro Surfer GKTJA4 = Captain Tsubasa: Ougon Sedai no Chousen GKUE9G = Scaler GKWJ18 = DreamMix TV World Fighters GKXJE7 = Kiwame Mahjong DX2 GKYE01 = Kirby Air Ride GKYJ01 = Kirby Airride GKYP01 = Kirby Air Ride GKZD9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZE9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZF9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP54 = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GL2E51 = Legends of Wrestling 2 GL2P51 = Legends of Wrestling II GL3JE8 = Lupin The Third - Umi Ni Kieta Hihou GL5E4F = LEGO Star Wars: The Video Game GL5P4F = LEGO Star Wars: The Video Game GL5X4F = LEGO Star Wars: The Video Game GL7E64 = LEGO Star Wars II: The Original Trilogy GL7P64 = LEGO Star Wars II: The Original Trilogy GL8D4F = Lara Croft Tomb Raider: Legend GL8E4F = Lara Croft Tomb Raider: Legend GL8F4F = Lara Croft Tomb Raider: Legend GL8P4F = Lara Croft Tomb Raider: Legend GLBE8P = Home Run King GLCD52 = Lemony Snickets A Series Of Unfortunate Events GLCE52 = Lemony Snickets A Series Of Unfortunate Events GLCF52 = Lemony Snickets A Series Of Unfortunate Events GLCP52 = Lemony Snickets A Series Of Unfortunate Events GLCS52 = Lemony Snickets A Series Of Unfortunate Events GLEE08 = Resident Evil 3: Nemesis GLEJ08 = BioHazard 3: Last Escape GLEP08 = Resident Evil 3: Nemesis GLGP41 = Largo Winch : Empire Under Threat GLHEG9 = Flushed Away GLHPG9 = Flushed Away GLIJA7 = Special Jinsei Game GLJJMS = Radirgy GLLE78 = Ratatouille GLLF78 = Ratatouille GLME01 = Luigi's Mansion GLMJ01 = Luigi's Mansion GLMP01 = Luigi's Mansion GLNE69 = Looney Tunes: Back in Action GLNP69 = Looney Tunes: Back in Action GLOD69 = Lord of the Rings: The Two Towers GLOE69 = Lord of the Rings: The Two Towers GLOF69 = Lord of the Rings: The Two Towers GLOI69 = Lord of the Rings: The Two Towers GLOP69 = Lord of the Rings: The Two Towers GLOS69 = Lord of the Rings: The Two Towers GLQE41 = Tom Clancy's Rainbow Six: Lockdown GLQP41 = Tom Clancy's Rainbow Six: Lockdown GLRD64 = Star Wars Rogue Squadron III: Rebel Strike GLRE64 = Star Wars Rogue Squadron III: Rebel Strike GLRF64 = Star Wars Rogue Squadron III: Rebel Strike GLRJ13 = Star Wars Rogue Squadron III: Rebel Strike GLRP64 = Star Wars Rogue Squadron III: Rebel Strike GLSD64 = Gladius GLSE64 = Gladius GLSF64 = Gladius GLSP64 = Gladius GLUE7U = Lotus Challenge GLVD4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVE4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVF4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVP4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLWE51 = Legends of Wrestling GLWP51 = Legends of Wrestling GLXJ29 = Legend of Golfer GLYE69 = NBA Live 2005 GLYP69 = NBA Live 2005 GLZD69 = James Bond 007: From Russia With Love GLZE69 = 007: From Russia With Love GLZF69 = James Bond 007: From Russia With Love GLZP69 = James Bond 007: From Russia With Love GM2E8P = Super Monkey Ball 2 GM2J8P = Super Monkey Ball 2 GM2P8P = Super Monkey Ball 2 GM3E69 = Madden NFL 2003 GM3P69 = Madden NFL 2003 GM4E01 = Mario Kart: Double Dash!! GM4J01 = Mario Kart: Double Dash!! GM4P01 = Mario Kart: Double Dash!! GM5D7D = Metal Arms: Glitch in the System GM5E7D = Metal Arms: Glitch in the System GM5F7D = Metal Arms: Glitch in the System GM5P7D = Metal Arms: Glitch in the System GM6EE9 = Medabots Infinity GM6PE9 = Medabots Infinity GM8E01 = Metroid Prime GM8J01 = Metroid Prime GM8P01 = Metroid Prime GM9E6S = Muppets Party Cruise GMAE51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMAP51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMBE8P = Super Monkey Ball GMBJ8P = Super Monkey Ball GMBP8P = Super Monkey Ball GMDE69 = Madden NFL 2002 GMEE70 = Men In Black II: Alien Escape GMEP70 = Men In Black II: Alien Escape GMFD69 = Medal of Honor: Frontline GMFE69 = Medal of Honor: Frontline GMFF69 = Medal of Honor: Frontline GMFI69 = Medal of Honor: Frontline GMFP69 = Medal of Honor: Frontline GMFS69 = Medal of Honor: Frontline GMHE52 = Mat Hoffmans Pro Bmx 2 GMHF52 = Mat Hoffman's Pro BMX 2 GMHP52 = Mat Hoffman's Pro BMX 2 GMIE70 = Mission Impossible: Operation Surma GMIP70 = Mission Impossible: Operation Surma GMJE41 = Monster Jam: Maximum Destruction GMJP41 = Monster Jam: Maximum Destruction GMKD5D = Mortal Kombat: Deadly Alliance GMKE5D = Mortal Kombat: Deadly Alliance GMKP5D = Mortal Kombat: Deadly Alliance GMLEA4 = ESPN MLS Extra Time 2002 GMNE78 = Monsters, Inc. Scream Arena GMNP78 = Monsters, Inc. Scream Arena GMOP70 = Micro Machines GMPE01 = Mario Party 4 GMPJ01 = Mario Party 4 GMPP01 = Mario Party 4 GMQE70 = Monopoly Party GMQP70 = Monopoly Party GMRE70 = Big Air Freestyle GMRP70 = Big Air Freestyle GMSE01 = Super Mario Sunshine GMSJ01 = Super Mario Sunshine GMSP01 = Super Mario Sunshine GMTE69 = Disney's Party GMTP69 = Disney's Party GMUE5D = Dr. Muto GMWD52 = Minority Report: Everybody Runs GMWE52 = Minority Report: Everybody Runs GMWF52 = Minority Report: Everybody Runs GMWP52 = Minority Report: Everybody Runs GMXE70 = Enter The Matrix GMXJB2 = Enter The Matrix GMXP70 = Enter The Matrix GMYJ8P = Gekitou Pro Yakyuu GMZE41 = Monster 4x4: Masters Of Metal GN2E70 = Nascar: Dirt To Daytona GN3E5D = NHL Hitz 2003 GN3P5D = NHL Hitz 2003 GN4E69 = Nascar 2005: Chase For The Cup GN5E69 = NHL 2005 GN5P69 = NHL 2005 GN6E69 = NHL 06 GN6P69 = NHL 06 GN7E69 = NFL Street 2 GN7P69 = NFL Street 2 GN8E69 = NBA Live 2004 GN8P69 = NBA Live 2004 GN9E70 = Nickelodeon Party Blast GNAE8P = NCAA College Football 2K3 GNBE01 = NBA Courtside 2002 GNBP01 = NBA Courtside 2002 GNCE69 = Nascar Thunder 2003 GNDD69 = Need For Speed Underground GNDE69 = Need For Speed Underground GNDF69 = Need For Speed Underground GNDP69 = Need For Speed Underground GNED78 = Finding Nemo GNEE78 = Finding Nemo GNEF78 = Finding Nemo GNEP78 = Finding Nemo GNES78 = Finding Nemo GNFE5D = NFL Blitz 2002 GNGE69 = NCAA Football 2003 GNHE5D = NHL Hitz 2002 GNHP5D = NHL Hitz 20-02 GNIEA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNIPA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNJEAF = I-Ninja GNKE8P = NCAA College Basketball 2K3 GNLE69 = NBA Live 2003 GNLP69 = NBA Live 2003 GNMEAF = Namco Museum GNNE69 = NFL Street GNNP69 = NFL Street GNOE78 = Nicktoons Unite! GNOX78 = Spongebob Squarepants & Friends: Unite! GNPP70 = Nickelodeon Party Blast GNQE69 = Madden NFL 2005 GNQP69 = Madden NFL 2005 GNREDA = Naruto Clash of Ninja GNRJDA = NARUTO Gekitô Ninja Taisen! GNSE69 = NBA Street GNSJ69 = NBA Street GNUEDA = Naruto Clash of Ninja 2 GNUJDA = Naruto: Gekitou Ninja Taisen! 2 GNUPDA = Naruto: Clash of Ninja - European Version GNVE69 = NHL 2004 GNVP69 = NHL 2004 GNWE69 = Def Jam: Fight For NY GNWP69 = Def Jam: Fight For NY GNXE69 = NCAA Football 2004 GNZE69 = NBA Street Vol.2 GNZP69 = NBA Street Vol.2 GO2D4F = Blood Omen 2: The Legacy of Kain Series GO2E4F = Blood Omen 2: The Legacy of Kain Series GO2F4F = Blood Omen 2: The Legacy of Kain Series GO2P4F = Blood Omen 2: The Legacy of Kain Series GO3E5D = NFL Blitz 2003 GO7D69 = James Bond 007: NightFire GO7E69 = 007: NightFire GO7F69 = James Bond 007: NightFire GO7P69 = James Bond 007: NightFire GO7S69 = James Bond 007: NightFire GOAE52 = Cabela's Outdoor Adventures GOBE4Z = Bad Boys: Miami Takedown GOBP7N = Bad Boys II GOCE5D = RoadKill GODJGA = Ohenro-San: Hosshin no Dojo GOFE7L = Outlaw Golf GOFP6S = Outlaw Golf GOGJB2 = One Piece: Grand Battle! 3 GOME01 = Mario Power Tennis GOMJ01 = Mario Tennis GC GOMP01 = Mario Power Tennis GOND69 = Medal of Honor: European Assault GONE69 = Medal of Honor: European Assault GONF69 = Medal of Honor: European Assault GONJ13 = Medal of Honor: Europa Kyoushuu GONP69 = Medal of Honor: European Assault GOOE01 = Odama GOOJ01 = Odama GOOP01 = Odama GOPEB2 = Shonen Jump's One Piece: Grand Battle GOPJB2 = One Piece: Grand Battle! Rush GOQE82 = One Piece: Grand Adventure GOQEAF = Shonen Jump's One Piece: Grand Adventure GOSE41 = Open Season GOSP41 = Open Season GOSX41 = Open Season GOUPNK = Cocoto Funfair GOWD69 = Need For Speed Most Wanted GOWE69 = Need For Speed Most Wanted GOWF69 = Need For Speed Most Wanted GOWJ69 = Need For Speed Most Wanted GOWP69 = Need For Speed Most Wanted GOYD69 = GoldenEye: Rogue Agent GOYE69 = GoldenEye: Rogue Agent GOYF69 = GoldenEye: Rogue Agent GOYP69 = GoldenEye: Rogue Agent GOYS69 = GoldenEye: Rogue Agent GP2EAF = Pac-Man World 2 GP2P69 = Pac-Man World 2 GP3E78 = The Polar Express GP3P78 = The Polar Express GP4J18 = Hudson Selection Vol. 3: Bonk's Adventure GP5E01 = Mario Party 5 GP5J01 = Mario Party 5 GP5P01 = Mario Party 5 GP6E01 = Mario Party 6 GP6J01 = Mario Party 6 GP6P01 = Mario Party 6 GP7E01 = Mario Party 7 GP7J01 = Mario Party 7 GP7P01 = Mario Party 7 GP8EAF = Pac-Man World 3 GP8P69 = Pac-Man World 3 GP8PAF = Pac-Man World 3 GP9E7F = Rogue Ops GP9P7F = Rogue Ops GPAE01 = Pokémon Channel GPAJ01 = Pokémon Channel GPAP01 = Pokémon Channel GPAU01 = Pokémon Channel GPDE51 = Dakar 2: The World's Ultimate Rally GPDP51 = Dakar 2: The World's Ultimate Rally GPEJ2Q = Pool Edge GPHD52 = Pitfall: The Lost Expedition GPHE52 = Pitfall: The Lost Expedition GPHF52 = Pitfall: The Lost Expedition GPHP52 = Pitfall: The Lost Expedition GPIE01 = Pikmin GPIJ01 = Pikmin GPIP01 = Pikmin GPJJCM = Jikkyou Powerful Pro Yakyuu 10 GPKE41 = Disney's PK Out of the Shadows GPLD9G = Piglet's Big Game GPLE9G = Piglet's Big Game GPLF9G = Piglet's Big Game GPLP9G = Piglet's Big Game GPMEAF = Pac Man Fever GPNE08 = P.N.03 GPNJ08 = P.N.03 GPNP08 = P.N.03 GPOE8P = Phantasy Star Online Episode I & II GPOJ8P = Phantasy Star Online Episode I & II GPOP8P = Phantasy Star Online Episode I&II GPPJCM = Jikkyou Powerful Pro Yakyuu 9 GPQE6L = The Powerpuff Girls: Relish Rampage GPQP6L = The Powerpuff Girls: Relish Rampage GPRE7U = Pool Paradise GPRP7U = Pool Paradise GPSE8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPSJ8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPSP8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPTE41 = Prince of Persia: The Sands of Time GPTP41 = Prince of Persia: The Sands of Time GPUE8P = Puyo Pop Fever GPUP6W = Puyo Pop Fever GPUP8P = Puyo Pop Fever GPVE01 = Pikmin 2 GPVJ01 = Pikmin 2 GPVP01 = Pikmin 2 GPWEAF = Spawn: Armageddon GPWP69 = Spawn: Armageddon GPWPAF = Spawn: Armageddon GPXE01 = Pokémon Box: Ruby & Sapphire GPXJ01 = Pokémon Box: Ruby & Sapphire GPXP01 = Pokémon Box: Ruby & Sapphire GPYJ8P = Puyo Pop Fever GPZJ01 = Nintendo Puzzle Collection GQ4E78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ4F78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ4P78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ8E69 = Madden NFL 08 GQBE51 = NFL Quarterback Club 2002 GQCD52 = Call of Duty 2: Big Red One GQCE52 = Call of Duty 2: Big Red One GQCF52 = Call of Duty 2: Big Red One GQCP52 = Call of Duty 2: Big Red One GQCS52 = Call of Duty 2: Big Red One GQFFFK = Franklin: A Birthday Surprise GQLE9G = Dora The Explorer: Journey To The Purple Planet GQLP54 = Dora The Explorer: Journey to the Purple Planet GQNE5D = Mortal Kombat: Deception GQPE78 = SpongeBob SquarePants: Battle for Bikini Bottom GQPP78 = SpongeBob Squarepants: Battle For Bikini Bottom GQQD78 = SpongeBob SquarePants: Lights, Camera, PANTS! GQQE78 = SpongeBob SquarePants: Lights, Camera, Pants! GQQF78 = SpongeBob SquarePants: Lights, Camera, PANTS! GQQH78 = SpongeBob SquarePants: Lights, Camera, Pants! GQQP78 = SpongeBob SquarePants: Lights, Camera, Pants! GQRJ18 = Hudson Selection Vol. 1: Cubic Lode Runner GQSDAF = Tales of Symphonia GQSEAF = Tales of Symphonia GQSFAF = Tales of Symphonia GQSIAF = Tales of Symphonia GQSPAF = Tales of Symphonia GQSSAF = Tales of Symphonia GQTE4Q = Meet the Robinsons GQWE69 = Harry Potter: Quidditch World Cup GQWJ69 = Harry Potter World Cup GQWP69 = Harry Potter: Quidditch World Cup GQWX69 = Harry Potter: Quidditch World Cup GQXE69 = Madden NFL 2004 GQXP69 = Madden NFL 2004 GQZJ01 = Densetsu no Quiz Ou Ketteisen GR2E52 = Lost Kingdoms 2 GR2JCQ = Rune II: Koruten no Kagi no Himitsu GR2P52 = Lost Kingdoms 2 GR3E5D = Red Card 2003 GR4EMZ = MC Groovz Dance Craze GR4PMZ = MC Groovz Dance Craze GR5J1K = Robocop: Aratanaru Kiki GR6D78 = Bratz: Rock Angelz GR6E78 = Bratz: Rock Angelz GR6F78 = Bratz: Rock Angelz GR6P78 = Bratz: Rock Angelz GR8D69 = Medal of Honor: Rising Sun GR8E69 = Medal of Honor: Rising Sun GR8F69 = Medal of Honor: Rising Sun GR8J69 = Medal of Honor: Rising Sun GR8P69 = Medal of Honor: Rising Sun GR9E6L = Reign of Fire GR9P6L = Reign of Fire GRAE5Z = Rally Championship GRAP75 = Rally Championship GRBE6S = Robotech: Battlecry GRBP6S = Robotech : Battlecry GRDP5D = RedCard GREE08 = Mega Man Network Transmission GREJ08 = RockMan EXE Transmission GREP08 = Mega Man Network Transmission GRFD78 = Red Faction II GRFE78 = Red Faction II GRFF78 = Red Faction II GRFP78 = Red Faction II GRHE41 = Rayman 3: Hoodlum Havoc GRHP41 = Rayman 3: Hoodlum Havoc GRJEAF = R: Racing Evolution GRJJAF = R:Racing Evolution: Life in the Fast Lane GRJP69 = R: Racing GRKE41 = Rocky GRKP7G = Rocky GRLE41 = Pro Rally GRLP41 = Pro Rally GRMJDA = Monopoly: Mezase!! Daifugou Jinsei!! GRNE52 = Lost Kingdoms GRNJCQ = Rune GRNP52 = Lost Kingdoms GROE5Z = Road Trip: The Arcade Edition GROP7J = Gadget Racers GRQE41 = City Racer GRRE78 = Rugrats: Royal Ransom GRRP78 = Rugrats: Royal Ransom GRSEAF = SoulCalibur II GRSJAF = SoulCalibur II GRSPAF = SoulCalibur II GRUE78 = Power Rangers Dino Thunder GRUF78 = Power Rangers Dino Thunder GRUP78 = Power Rangers Dino Thunder GRVEA4 = Rave Master GRWJD9 = Super Robot Taisen GC GRYE41 = Rayman Arena GS2D78 = Summoner: A Goddess Reborn GS2E78 = Summoner: A Goddess Reborn GS2F78 = Summoner: A Goddess Reborn GS2P78 = Summoner: A Goddess Reborn GS3E51 = SX Superstar GS3P51 = SX Superstar GS7E5D = MLB SlugFest 2004 GS8E7D = Spyro: Enter the Dragonfly GS8P7D = Spyro: Enter the Dragonfly GS9E6S = Shrek Extra Large GS9P6S = Shrek Extra Large GSAE01 = Star Fox Adventures GSAJ01 = StarFox Adventures GSAP01 = Star Fox Adventures GSBJ8P = Sonic Adventure 2: Battle GSCE51 = Jeremy McGrath SuperCross World GSCP51 = Jeremy McGrath SuperCross World GSDEAF = Smashing Drive GSEJB2 = Shaman King: Soul Fight GSGE5D = MLB SlugFest 2003 GSHE5D = SpyHunter GSHP5D = SpyHunter GSKE7D = The Scorpion King: Rise of the Akkadian GSKP7D = The Scorpion King : Rise of the Akkadian GSMD52 = Spider-Man GSME52 = Spider-Man: The Movie GSMF52 = Spider-Man GSMP52 = Spider-Man GSNE8P = Sonic Adventure 2: Battle GSNP8P = Sonic Adventure 2: Battle GSOE8P = Sonic Mega Collection GSOJ8P = Sonic Mega Collection GSOP8P = Sonic Mega Collection GSPE69 = The Simpsons: Road Rage GSPP69 = The Simpsons: Road Rage GSQE78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSQP78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSRE7S = Smuggler's Run: Warzones GSRP7S = Smuggler's Run: Warzones GSSE8P = Sega Soccer Slam GSSJ8P = Sega Soccer Slam GSSP70 = Sega Soccer Slam GSSP8P = Sega Soccer Slam GSTE69 = SSX Tricky GSTJ69 = SSX Tricky GSTP69 = SSX Tricky GSUE70 = Superman: Shadow of Apokolips GSUP70 = Superman: Shadow of Apokolips GSVE78 = MX Superfly Featuring Ricky Carmichael GSVP78 = MX Superfly featuring Ricky Carmichael GSWD64 = Star Wars Rogue Leader: Rogue Squadron II GSWE64 = Star Wars Rogue Squadron II: Rogue Leader GSWF64 = Star Wars Rogue Leader: Rogue Squadron II GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = Star Wars Rogue Leader: Rogue Squadron II GSWP64 = Star Wars Rogue Leader: Rogue Squadron II GSWS64 = Star Wars Rogue Leader: Rogue Squadron II GSXD64 = Star Wars: The Clone Wars GSXE64 = Star Wars: The Clone Wars GSXF64 = Star Wars: The Clone Wars GSXJ13 = Star Wars: Clone Sensou GSXP64 = Star Wars: The Clone Wars GSXS64 = Star Wars: The Clone Wars GSYE6S = Shrek: Super Party GSYP6S = Shrek: Super Party GSZP41 = Speed Challenge: Jacques Villeneuve Racing Vision GT2J18 = Tengai Makyou 2: Manji Maru GT3D52 = Tony Hawk's Pro Skater 3 GT3E52 = Tony Hawk's Pro Skater 3 GT3F52 = Tony Hawk's Pro Skater 3 GT3J52 = Tony Hawk's Pro Skater 3 GT3P52 = Tony Hawk's Pro Skater 3 GT4D52 = Tony Hawk's Pro Skater 4 GT4E52 = Tony Hawk's Pro Skater 4 GT4F52 = Tony Hawk's Pro Skater 4 GT4P52 = Tony Hawk's Pro Skater 4 GT5E7N = Starsky & Hutch GT5P7N = Starsky & Hutch GT6E70 = Terminator 3: The Redemption GT6J70 = Terminator 3: The Redemption GT6P70 = Terminator 3: The Redemption GT7E41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7P41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7X41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT8E78 = Big Mutha Truckers GT8P78 = Big Mutha Truckers GT8P7N = Big Mutha Truckers GTAE5S = Top Angler : Real Bass Fishing GTAP5S = Top Angler: Real Bass Fishing GTCJBL = GT Cube GTDE52 = Tony Hawk's Underground GTDP52 = Tony Hawk's Underground GTEE01 = 1080° Avalanche GTEJ01 = 1080° Silver Storm GTEP01 = 1080° Avalanche GTFEA4 = Teenage Mutant Ninja Turtles GTFPA4 = Teenage Mutant Ninja Turtles GTGE60 = Top Gun: Combat Zones GTGP60 = Top Gun: Combat Zones GTHJD9 = Charinko Hero GTIE69 = Tiger Woods PGA Tour 2003 GTIP69 = Tiger Woods PGA Tour 2003 GTJE5L = Tom & Jerry in War of the Whiskers GTKD51 = Turok Evolution GTKE51 = Turok Evolution GTKP51 = Turok Evolution GTLE52 = True Crime: Streets of LA GTLP52 = True Crime: Streets of LA GTLX52 = True Crime: Streets of LA GTMJDA = Mutsu To Nohohon GTNJ18 = Hudson Selection Vol. 4: Adventure Island GTOJAF = Tales of Symphonia GTPP6S = Knights Of The Temple : Infernal Crusade GTQE6S = Tonka: Rescue Patrol GTRE78 = Tetris Worlds GTRP78 = Tetris Worlds GTSE4F = TimeSplitters 2 GTSP4F = TimeSplitters 2 GTUE8G = Tube Slider - The Championship of Future Formula GTVE70 = Transworld Surf: Next Wave GTWE70 = Taz Wanted GTWP70 = Taz Wanted GTYE69 = Ty the Tasmanian Tiger GTYP69 = Ty: The Tasmanian Tiger GTZE41 = Tarzan Untamed GTZP41 = Tarzan Freeride GU2D78 = 2 Games in 1: The Incredibles / Finding Nemo GU2F78 = 2 Games in 1: The Incredibles / Finding Nemo GU3D78 = 2 Games in 1: The SpongeBob SquarePants Movie / Tak 2: The Staff of Dreams GU4Y78 = 2 Games in 1: The SpongeBob SquarePants Movie / Battle for Bikini Bottom GU6E78 = Nicktoons - Battle for Volcano Island GUBE69 = The Urbz: Sims in the City GUBJ13 = The Urbz: Sims In The City GUBP69 = The Urbz: Sims In The City GUCD69 = UEFA Champions League 2004-2005 GUCF69 = UEFA Champions League 2004-2005 GUCP69 = UEFA Champions League 2004-2005 GUFE4Z = Ultimate Fighting Championship Throwdown GUFP4Z = UFC: Throwdown GUGD69 = Need For Speed Underground 2 GUGE69 = Need For Speed Underground 2 GUGF69 = Need For Speed Underground 2 GUGP69 = Need For Speed Underground 2 GUMD52 = Gun GUME52 = Gun GUMP52 = Gun GUNE5D = Gauntlet: Dark Legacy GUNP5D = Gauntlet: Dark Legacy GUPE8P = Shadow the Hedgehog GUPJ8P = Shadow the Hedgehog GUPP8P = Shadow the Hedgehog GUSE7F = Universal Studios Theme Park Adventure GUSP7F = Universal Studios Theme Park Adventure GUTD52 = Ultimate Spider-Man GUTE52 = Ultimate Spider-Man GUTF52 = Ultimate Spider-Man GUTI52 = Ultimate Spider-Man GUTJC0 = Ultimate Spider-Man GUTP52 = Ultimate Spider-Man GUTS52 = Ultimate Spider-Man GUVE51 = Freestyle Street Soccer GUVP51 = Urban Freestyle Soccer GUZE41 = Batman: Rise of Sin Tzu GUZP41 = Batman Rise of Sin Tzu GV3J70 = V-Rally 3 GV3P70 = V-Rally 3 GV4E69 = MVP Baseball 2005 GVCE08 = Viewtiful Joe: Red Hot Rumble GVCJ08 = Viewtiful Joe: Battle Carnival GVCP08 = Viewtiful Joe: Red Hot Rumble GVDE78 = Bratz Forever Diamondz GVDP78 = Bratz Forever Diamondz GVHE4F = Bionicle Heroes GVJE08 = Viewtiful Joe GVJJ08 = Viewtiful Joe GVJP08 = Viewtiful Joe GVKE52 = Cabela's Dangerous Hunts 2 GVLD69 = Marvel Nemesis: Rise of the Imperfects GVLE69 = Marvel Nemesis: Rise of the Imperfects GVLF69 = Marvel Nemesis: Rise of the Imperfects GVLP69 = Marvel Nemesis: Rise of the Imperfects GVMP41 = Super Bust-A-Move All Stars GVOE69 = Bionicle GVOP69 = Bionicle GVPE69 = MVP Baseball 2004 GVRE7H = Grooverider Slot Car Thunder GVS46E = Virtua Striker 4 Ver.2006 GVS46J = Virtua Striker 4 Ver.2006 GVSE8P = Virtua Striker 2002 GVSJ8P = VIRTUA STRIKER 3 ver.2002 GVSJ9P = Virtua Striker 4 Ver.2006 GVSP8P = Virtua Striker 3 Ver. 2002 GVWJDQ = Gakuen Toshi Vara Noir Roses GW2E78 = WWE Day of Reckoning 2 GW2P78 = WWE Day of Reckoning 2 GW3E78 = WWE WrestleMania X8 GW3JG2 = WWE WrestleMania X8 GW3P78 = WWE Wrestlemania X8 GW4E69 = Tiger Woods PGA Tour 2004 GW4P69 = Tiger Woods PGA Tour 2004 GW5D69 = Need For Speed Carbon GW5E69 = Need For Speed Carbon GW5F69 = Need For Speed Carbon GW5P69 = Need For Speed Carbon GW6JEM = Winning Eleven 6 Final Evolution GW7D69 = James Bond 007 in Agent Under Fire GW7E69 = 007: Agent Under Fire GW7F69 = James Bond 007 in Agent Under Fire GW7P69 = James Bond 007 in Agent Under Fire GW8E52 = World Series of Poker GW9E78 = WWE WrestleMania XIX GW9JG2 = WWE WrestleMania XIX GW9P78 = WWE WrestleMania XIX GWAD8P = Spartan Total Warrior GWAE8P = Spartan Total Warrior GWAF8P = Spartan Total Warrior GWAP8P = Spartan Total Warrior GWBE41 = Worms Blast GWBP41 = Worms Blast GWDP6S = World Racing GWEE51 = 18 Wheeler: American Pro Trucker GWEP8P = 18 Wheeler American Pro Trucker GWGE4F = Swingerz Golf GWGJ4F = Wai Wai Golf GWGP4F = Ace Golf GWHE41 = Winnie The Pooh Rumbly Tumbly Adventures GWHP41 = Winnie the Pooh's Rumbly Tumbly Adventure GWJE52 = Tony Hawk's American Wasteland GWKE41 = Peter Jackson's King Kong: The Official Game of the Movie GWKP41 = Peter Jackson's King Kong: The Official Game of the Movie GWLE6L = Wallace & Gromit in Project Zoo GWLP6L = Wallace & Gromit : Project Zoo GWLX6L = Wallace & Gromit in Project Zoo GWME51 = Worms 3D GWMP8P = Worms 3D GWOE5G = Blowout GWPE78 = WWE Day of Reckoning GWPJG2 = WWE Day of Reckoning GWPP78 = WWE Day of Reckoning GWQE52 = Wreckless: The Yakuza Missions GWQP52 = Wreckless: The Yakuza Missions GWRE01 = Wave Race: Blue Storm GWRJ01 = Wave Race: Blue Storm GWRP01 = Wave Race: Blue Storm GWSEA4 = ESPN International Winter Sports 2002 GWSJA4 = Hyper Sports 2002 Winter GWSPA4 = ESPN International Winter Sports GWTEA4 = WTA Tour Tennis GWTJA4 = WTA Tour Tennis GWTPA4 = Pro Tennis WTA Tour GWUE7D = Whirl Tour GWUP7D = Whirl Tour GWVE52 = X2: Wolverine's Revenge GWVP52 = X-Men 2: Wolverine's Revenge GWVX52 = X-Men 2 : Wolverine's Revenge GWWE01 = Wario World GWWJ01 = Wario World GWWP01 = Wario World GWYE41 = Tom Clancy's Splinter Cell: Double Agent GWYX41 = Tom Clancy's Splinter Cell: Double Agent GWZE01 = Dance Dance Revolution: Mario Mix GWZJ01 = Dance Dance Revolution: Mario Mix GWZP01 = Dancing Stage Mario Mix GX2D52 = X-Men Legends II: Rise of Apocalypse GX2E52 = X-Men Legends II: Rise of Apocalypse GX2P52 = X-Men Legends II: Rise of Apocalypse GX2S52 = X-Men Legends II: Rise of Apocalypse GX3E41 = XIII GX3P41 = XIII GX3X41 = XIII GXAE51 = XGRA Extreme G Racing Association GXAP51 = XGRA Extreme G Racing Association GXBE69 = SSX 3 GXBP69 = SSX 3 GXCE01 = Custom Robo GXEE8P = Sonic Riders GXEJ8P = Sonic Riders GXEP8P = Sonic Riders GXFD69 = FIFA Football 2004 GXFE69 = FIFA Soccer 2004 GXFF69 = FIFA Football 2004 GXFI69 = FIFA Football 2004 GXFP69 = FIFA Football 2004 GXFS69 = FIFA Football 2004 GXGE08 = Mega Man X Collection GXLE52 = X-Men Legends GXLP52 = X-Men Legends GXLX52 = X-Men Legends GXME52 = X-Men: Next Dimension GXMF52 = X-Men: Next Dimension GXMP52 = X-Men: Next Dimension GXNE5D = Rampage Total Destruction GXOE69 = SSX on Tour GXOJ69 = SSX On Tour with Mario GXOP69 = SSX On Tour GXOX69 = SSX On Tour GXPE78 = Sphinx and the Cursed Mummy GXPP78 = Sphinx and the Cursed Mummy GXQF41 = Taxi 3 GXRE08 = Mega Man X: Command Mission GXRJ08 = Rockman X: Command Mission GXRP08 = Mega Man X: Command Mission GXSE8P = Sonic Adventure DX: Director's Cut GXSP6W = Sonic Adventure DX : Director's Cut GXSP8P = Sonic Adventure DX: Director's Cut GXUE41 = Surf's Up GXXE01 = Pokémon XD: Gale of Darkness GXXJ01 = Pokemon XD: Yami no Kaze Dark Lugia GXXP01 = Pokémon XD: Gale of Darkness GY2E01 = Donkey Konga 2 GY2J01 = Donkey Konga 2 GY2P01 = Donkey Konga 2 GY3J01 = Donkey Konga 3 GYAD78 = Barnyard GYAE78 = Barnyard GYAP78 = Barnyard GYAX78 = Barnyard GYBE01 = Donkey Kong Jungle Beat GYBJ01 = Donkey Kong Jungle Beat GYBP01 = Donkey Kong Jungle Beat GYFEA4 = Yu-Gi-Oh! The Falsebound Kingdom GYFJA4 = Yu-Gi-Oh! The Falsebound Kingdom GYFPA4 = Yu-Gi-Oh! The Falsebound Kingdom GYKEB2 = Zatch Bell! Mamodo Battles GYMJA4 = Jikkyou Powerful Major League GYQE01 = Mario Superstar Baseball GYQJ01 = Super Mario Stadium Miracle Baseball GYQP01 = Mario Superstar Baseball GYRE41 = TMNT GYRP41 = TMNT GYTE69 = Ty The Tasmanian Tiger 2: Bush Rescue GYTP69 = Ty The Tasmanian Tiger 2: Bush Rescue GYWDE9 = Harvest Moon: A Wonderful Life GYWEE9 = Harvest Moon: A Wonderful Life GYWJ99 = Bokujou Monogatari: Wonderful Life GYWP41 = Harvest Moon: A Wonderful Life GYWPE9 = Harvest Moon: A Wonderful Life GZ2E01 = The Legend of Zelda: Twilight Princess GZ2J01 = Zelda no Densetsu: Twilight Princess GZ2P01 = The Legend of Zelda: Twilight Princess GZ3E70 = Dragon Ball Z: Budokai 2 GZ3P70 = Dragon Ball Z: Budokai 2 GZ3PB2 = Dragon Ball Z Budokai 2 GZCE51 = ZooCube GZCJB0 = ZooCube GZCP51 = Zoocube GZDE70 = Godzilla: Destroy all Monsters Melee GZDJ70 = Godzilla: Kaijuu Dairantou GZDP70 = Godzilla: Destroy all Monsters Melee GZEE70 = Dragon Ball Z: Sagas GZFJBP = Gekituisenki - Zero Fighter GZHJDA = Zoids Full Metal Crash GZLE01 = The Legend of Zelda: The Wind Waker GZLJ01 = Zelda no Densetsu: Kaze no Takuto GZLP01 = The Legend of Zelda: The Wind Waker GZMP7D = Butt-Ugly Martians Zoom or Doom GZOJDA = Zoids vs. GZPE70 = Zapper - One Wicked Cricket! GZPP70 = Zapper: One Wicked Cricket! GZQE7D = Robots GZQJ7D = Robots GZQP7D = Robots GZSE70 = Zoids Battle Legends GZSJDA = Zoids VS. II GZVJDA = Zoids vs. III GZWE01 = Wario Ware Inc.: Mega Party Game$! GZWJ01 = Atumare!! made in wario GZWP01 = Wario Ware Inc.: Mega Party Game$! HAAA = Photo Channel HABA = Wii Shop Channel HABK = Wii Shop Channel HACA = Mii Channel HACK = Mii Channel HADE = Internet Channel HADJ = Internet Channel HADP = Internet Channel HAFE = Forecast Channel HAFJ = Weather Channel HAFP = Weather Channel HAGE = News Channel HAGJ = News Channel HAGP = News Channel HAJE = Everybody Votes Channel HAJJ = Everybody Votes Channel HAJP = Everybody Votes Channel HAPE = Check Mii Out Channel HAPJ = Mii Contest Channel HAPP = Check Mii Out Channel HATE = Nintendo Channel HATJ = Nintendo Channel HATP = Nintendo Channel HAVJ = Today and Tomorrow Fortune Teller HAVK = Today And Tomorrow Channel HAVP = Today and Tomorrow Channel HAWE = Metroid Prime 3 Preview HAWJ = Metroid Prime 3 Preview HAWP = Metroid Prime 3 Preview HAYA = Photo Channel HAYK = Photo Channel HBNJ = TV Friend Channel HBWE01 = New Super Mario Bros. Wii: Hellboy Edition HC3J = USB Flash Optimization HCAJ = Band Bros. DX Speaker Channel HCAP = Jam with the Band Live HCBJ = Photo Channel 1.0 Restore Program HCDJ = Digicam Print Channel HCFE = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Wii Speak Channel HCGE = Wii + Internet HCGJ = Wii Plus Internet HCGP = Wii Plus Internet HCHJ = Food Service HCIJ = Wii no ma HCJP = BBC iPlayer Channel HCLE = Netflix HCLP = Netflix HCMP = Kirby TV HCQE = Hulu Plus HCQJ = Hulu HCRE = The Legend of Zelda: Skyward Sword Save Data Update Channel HCRJ = The Legend of Zelda Skyward Sword Update HCRP = The Legend of Zelda Skyward Sword Update HCSE = Wii U Transfer Tool HCSJ = Wii U Transfer Tool HCSP = Wii U Transfer Tool HCTE = Wii System Transfer HCTJ = Wii System Transfer HCTP = Wii System Transfer HCUE = Wii Menu Electronic Manual HCUJ = Wii Menu Electronic Manual HCUP = Wii Menu Electronic Manual HCVA = Wii U Menu HCWE = Amazon Instant Video HCWP = Amazon Instant Video HCXE = YouTube HCXJ = YouTube HCXP = YouTube HCZE = Wii System Transfer HWFL = HackWiiFlow JA2J = Shin Megami Tensei JA3J = Kamaitachi no Yoru JA4E = Super Ghouls 'n Ghosts JA4J = Chou-Makai-Mura JA4P = Super Ghouls'n Ghosts JA5J = Heracles no Eikou III: Kamigami no Chinmoku JA6E = Zombies Ate My Neighbors JA6J = Zombies Ate My Neighbors JA6P = Zombies JA7D = ActRaiser JA7E = ActRaiser JA7F = ActRaiser JA7J = Actraiser JA7P = ActRaiser JA8E = Final Fight JA8J = Final Fight JA8P = Final Fight JAAE = Super Mario World JAAJ = Super Mario World JAAK = Super Mario World JAAP = Super Mario World JABJ = Mario no Super Picross JABL = Mario’s Super Picross JACE = F-Zero JACJ = F-Zero JACK = F-Zero JACP = F-Zero JADD = The Legend of Zelda: A Link to the Past JADE = The Legend of Zelda: A Link to the Past JADF = The Legend of Zelda: A Link to the Past JADJ = Zelda no Densetsu: Kamigami no Triforce JADK = The Legend of Zelda: A Link to the Past JADP = The Legend of Zelda: A Link to the Past JAEE = Donkey Kong Country JAEJ = Super Donkey Kong JAEK = Donkey Kong Country JAEP = Donkey Kong Country JAFD = SimCity JAFE = Sim City JAFF = SimCity JAFJ = SimCity JAFP = SimCity JAGJ = Fire Emblem: Monshou no Nazo JAHE = R-Type III: The 3rd Lightning JAHJ = R-Type III: The Third Lightning JAHK = R-Type III: The Third Lightning JAHP = R-TYPE III : The Third Lightning JAIE = Super Castlevania IV JAIJ = Akumajou Dracula JAIP = Super Castlevania IV JAJE = Street Fighter II: The World Warrior JAJJ = Street Fighter II JAJP = Street Fighter II: The World Warrior JALE = Contra III: The Alien Wars JALJ = Contra Spirits JALK = Contra III: The Alien Wars JALP = Super Probotector: Alien Rebels JAME = Gradius III JAMJ = Gradius III JAMK = Gradius III JAMM = Gradius III JAPJ = Fire Emblem: Seisen no Keifu JAUJ = Famicom Bunko: Hajimari no Mori JAVE = Super Metroid JAVJ = Super Metroid JAVK = Super Metroid JAVP = Super Metroid JAWE = Romance of the Three Kingdoms IV: Wall of Fire JAWJ = San Goku Shi IV JAZD = The Legend of the Mystical Ninja JAZE = The Legend of The Mystical Ninja JAZJ = Ganbare Goemon: Yukihime Kyuushutsu Emaki JAZP = The Legend of the Mystical Ninja JB3D = Harvest Moon JB3E = Harvest Moon JB3J = Harvest Moon JB3P = Harvest Moon JB5J = Super Gussun Oyoyo JB6J = Treasure Hunter G JB7J = Front Mission: Gun Hazard JB9J = Gakkou de atta Kowai Hanashi JBAE = Metal Marines JBAJ = Militia JBBE = Super Street Fighter II: The New Challengers JBBJ = Super Street Fighter II: The New Challengers JBBP = Super Street Fighter II: The New Challengers JBCE = Kirby's Dream Course JBCJ = Kirby Bowl JBCK = Kirby's Dream Course JBCP = Kirby's Dream Course JBDD = Donkey Kong Country 2: Diddy's Kong-Quest JBDE = Donkey Kong Country 2: Diddy's Kong Quest JBDJ = Super Donkey Kong 2: Dixie & Diddy JBDK = Donkey Kong Country 2: Diddy Kong's Quest JBDP = Donkey Kong Country 2: Diddy's Kong-Quest JBEJ = Magical Drop JBFJ = Otogirisou JBGJ = Mystery Dungeon: Shiren the Wanderer JBHJ = Heracles no Eikou IV: Kamigami-kara no Okurimono JBIE = Street Fighter II Turbo: Hyper Fighting JBIJ = Street Fighter II Turbo: Hyper Fighting JBIP = Street Fighter II Turbo: Hyper Fighting JBKE = Breath of Fire II JBKJ = Breath of Fire II: Shimei no Ko JBKP = Breath of Fire II JBLE = Pac-Attack JBLJ = Cosmo Gang the Puzzle JBLP = Pac-Attack JBNE = Darius Twin JBNJ = Darius Twin JBOJ = Panel de Pon JBOK = Panel de Pon JBPE = Donkey Kong Country 3: Dixie Kong's Double Trouble JBPJ = Super Donkey Kong 3: Nazo no Krems Shima JBPP = Donkey Kong Country 3: Dixie Kong’s Double Trouble JBQE = Kirby's Avalanche JBQJ = Kirby's Avalanche JBQP = Kirby's Ghost Trap JBRE = Vegas Stakes JBRJ = Vegas Stakes JBRP = Vegas Stakes JBSE = Axelay JBSJ = Axelay JBSP = Axelay JBTE = Super Turrican JBTJ = Super Turrican JBTP = Super Turrican JBUE = Super Turrican 2 JBUJ = Super Turrican Two JBVJ = Der Langrisser JBWE = Cybernator JBWJ = Assault Suits Valken JBWK = Cybernator JBWP = Cybernator JBYE = Super R-Type JBYJ = Super R-Type JBYK = Super R-Type JBYP = Super R-Type JC2J = Taikou Risshiden JC3J = Bahamut Lagoon JC4E = Indiana Jones' Greatest Adventures JC4J = Indiana Jones Great Adventure JC4P = Indiana Jones' Greatest Adventures JC5J = Romancing SaGa JC6J = Romancing SaGa 2 JC7E = The Combatribes JC7J = The Combatribes JC8E = Final Fantasy II JC8J = Final Fantasy IV JC8M = Final Fantasy II JC8P = Final Fantasy 2 JC9J = Final Fantasy V JCAJ = DoReMi Fantasy: Milon no DokiDoki Daibouken JCAL = DoReMi Fantasy - Milon’s DokiDoki Adventure JCAN = DoReMi Fantasy: Milon's DokiDoki Adventure JCBE = Super Mario RPG: Legend of the Seven Stars JCBJ = Super Mario RPG JCBM = Super Mario RPG: Legend of the Seven Stars JCCE = Kirby Super Star JCCJ = Hoshi no Kirby Super Deluxe JCCP = Kirby’s Fun Pak JCDE = Kirby's Dream Land 3 JCDJ = Hoshi no Kirby 3 JCDM = Kirby’s Dream Land 3 JCEJ = Fire Emblem: Thracia 776 JCGJ = Ganbare Goemon 2: Kiteretsu Shougun Magginesu JCHJ = Ganbare Goemon 3 JCIJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo JCJE = Super Punch-Out!! JCJJ = Super Punch-Out!! JCJP = Super Punch Out!! JCKE = Space Invaders: The Original Game JCKJ = Space Invaders: The Original Game JCKP = Space Invaders -The Original Game JCLD = Secret of Mana JCLE = Secret of Mana JCLF = Secret of Mana JCLJ = Seiken Densetsu 2 JCLP = Secret of Mana JCMJ = Super Wagyan Land JCNE = Prince of Persia JCNJ = Prince of Persia JCTE = Ogre Battle: The March of the Black Queen JCTJ = Densetsu no Ogre Battle: The March of the Black Queen JCTM = Ogre Battle: The March of the Black Queen JCUE = PilotWings JCUJ = Tactics Ogre: Let Us Cling Together JCVE = Pilotwings JCVJ = Pilotwings JCVP = Pilotwings JCWE = Super Mario Kart JCWJ = Super Mario Kart JCWP = Super Mario Kart JCXE = Nobunaga's Ambition JCXJ = Super Nobunaga no Yabou: Zengokuban JCYE = Uncharted Waters: New Horizons JCYJ = Daikoukai Jidai II JCZE = Genghis Khan II: Clan of the Gray Wolf JCZJ = Super Aoki Ookami to Shiroki Meshika: Genchou Hishi JD2J = Bishoujo Janshi Suchie-Pai JD3E = Super E.D.F. Earth Defense Force JD3J = Super E.D.F. Earth Defense Force JD3P = Super EDF Earth Defense Force JD4E = Rival Turf! JD4J = Rushing Beat JD4P = Rival Turf! JD5E = Brawl Brothers JD5J = Rushing Beat Ran: Fukusei Toshi JD5P = Brawl Brothers JD6E = The Ignition Factor JD6J = Fire Fighting JD6M = The Ignition Factor JD7E = Super Adventure Island JD7J = Takahashi Meijin no Daibouken Jima JD7P = Super Adventure Island JD8E = Super Adventure Island II JD8J = Takahashi Meijin no Daibouken Jima II JD8P = Super Adventure Island II JD9E = Super Bonk JD9J = Chou-Genjin JD9M = Super Bonk JDAE = Final Fantasy III JDAJ = Final Fantasy VI JDAP = Final Fantasy III JDBE = Super Bomberman 3 JDCE = Street Fighter Alpha 2 JDCJ = Street Fighter Two Alpha JDCP = Street Fighter Alpha 2 JDDE = Final Fight 2 JDDJ = Final Fight Two JDDP = Final Fight 2 JDEE = Final Fight 3 JDEJ = Final Fight Tough JDEP = Final Fight 3 JDFJ = Sutte Hakkun JDHJ = Super Famicom Wars JDIE = Super Star Wars JDIJ = Super Star Wars JDIP = Super Star Wars JDJE = Super Star Wars: The Empire Strikes Back JDJJ = Super Star Wars The Empire Strikes Back JDJP = Super Star Wars: The Empire Strikes Back JDKJ = Metal Max 2 JDLE = Super Star Wars: Return of the Jedi JDLJ = Super Star Wars Return Of The Jedi JDLP = Super Star Wars: Return of the Jedi JDMJ = Kirby no Kirakira Kizzu JDNE = Ghoul Patrol JDNJ = Ghoul Patrol JDOJ = Heisei Shin Onigashima: Zenpen JDPJ = Heisei Shin Onigashima: Kouhen JDQJ = Romancing Sa-Ga 3 JDRJ = Clock Tower JDSJ = Shin Megami Tensei II JDTJ = Shin Megami Tensei if... JDUJ = Albert Odyssey JDVE = Wild Guns JDVJ = Wild Guns JDVP = Wild Guns JDWE = Aero the Acrobat JDWJ = Aero The Acrobat JDWP = Aero The Acrobat JDXE = Aero the Acrobat 2 JDXJ = Aero The Acrobat Two JDXP = Aero the Acrobat 2 JDYJ = Rudra no Hihou JDZE = Final Fantasy Mystic Quest JDZJ = Final Fantasy USA: Mystic Quest JEAE = Natsume Championship Wrestling JEAJ = Natsume Championship Wrestling JEAP = Natsume Championship Wrestling JEBE = Mega Man X JEBJ = RockMan X JECE = Chrono Trigger JECJ = Chrono Trigger JECM = Chrono Trigger JECP = Chrono Trigger JEDJ = Kunio-Kun no Dodge Ball Dayo Zenin Shuugo! JEEJ = Majin Tensei JEFJ = Majin Tensei II: Spiral Nemesis JEGJ = Gouketuji Ichizoku JEHE = Mega Man X2 JEHJ = RockMan X2 JEIJ = Metal Max Returns JEJJ = Tsukikomori JEKJ = Kyuyaku Megami Tensei: Megami Tensei I・II JODI = Homebrew Channel JOUE01 = New Super Mario Bros. Wii 10 The Journey KMCP06 = Wiimms MKW Fun 2010-12.pal+ KMKE01 = Kustom Mario Kart Wii KMNE03 = Newer Super Mario Bros. Wii KMNE10 = Koopa Country KMNJ03 = Newer Super Mario Bros. Wii KMNP03 = Newer Super Mario Bros. Wii KMNP10 = Koopa Country L40P4Q = Sing IT: Pop hits, los 40 principales LAAJ = Hokuto no Ken LABE = Fantasy Zone LABJ = Fantasy Zone LABP = Fantasy Zone LACE = Wonder Boy LACJ = Super Wonder Boy LACP = Wonder Boy LADE = Phantasy Star LADJ = Phantasy Star LADP = Phantasy Star LAEE = Alex Kidd in Miracle World LAEJ = Alex Kidd in Miracle World LAEP = Alex Kidd in Miracle World LAFJ = Ashura LAFN = Secret Commando LAFP = Secret Command LAGE = Sonic The Hedgehog LAGJ = Sonic the Hedgehog LAGP = Sonic The Hedgehog LAHE = Space Harrier LAHJ = Space Harrier LAHP = Space Harrier LAIE = Enduro Racer LAIJ = Enduro Racer LAIP = Enduro Racer LAJE = Sonic The Hedgehog 2 LAJJ = Sonic the Hedgehog 2 LAJP = Sonic The Hedgehog 2 LAKE = Wonder Boy in Monster Land LAKJ = Super Wonder Boy: Monster World LAKP = Wonder Boy in Monster Land LALE = Fantasy Zone II: The Tears of OPA-OPA LALJ = Fantasy Zone II: The Tears of Opa-Opa LALP = Fantasy Zone II LAME = Sonic Chaos LAMJ = Sonic Chaos LAMP = Sonic Chaos LANE = Alex Kidd: The Lost Stars LANJ = Alex Kidd: The Lost Stars LANP = Alex Kidd: The Lost Stars LAOE = R-Type LAOJ = R-Type LAOP = R-Type LAPE = Wonder Boy III: The Dragon's Trap LAPP = Wonder Boy III: The Dragon's Trap LAQE = Alex Kidd in Shinobi World LAQP = Alex Kidd in Shinobi World LULZ = Homebrew Channel MA2J = Dyna Brothers MA3E = Puyo Puyo 2 MA3J = Puyo Puyo Tsuu MA3L = Puyo Puyo 2 MA4J = Bahamut Senki MA5J = Rent A Hero MA6E = Streets of Rage 2 MA6J = Bare Knuckle II: Shitou no Chinkon Uta MA6P = Streets of Rage 2 MA7E = Shining in the Darkness MA7J = Shining and the Darkness MA7P = Shining in the Darkness MA8E = Ecco: The Tides of Time MA8J = Ecco the Dolphin 2 MA8P = Ecco: The Tides of Time MA9J = The Hybrid Front MAAE = Altered Beast MAAJ = Juuouki MAAP = Altered Beast MABE = Columns MABJ = Columns MABP = Columns MACE = Dr. Robotnik's Mean Bean Machine MACJ = Puyo Puyo MACP = Dr. Robotnik's Mean Bean Machine MADE = Ecco the Dolphin MADJ = Ecco the Dolphin MADP = Ecco the Dolphin MAEE = Golden Axe MAEJ = Golden Axe MAEP = Golden Axe MAFE = Gunstar Heroes MAFJ = Gunstar Heroes MAFP = Gunstar Heroes MAGE = Ristar MAGJ = Ristar MAGP = Ristar MAHE = Sonic the Hedgehog MAHJ = Sonic the Hedgehog MAHP = Sonic the Hedgehog MAIE = Space Harrier II MAIJ = Space Harrier II MAIP = Space Harrier II MAJE = Toe Jam & Earl MAJJ = ToeJam & Earl MAJP = ToeJam & Earl MAKE = Shadow Dancer: The Secret of Shinobi MAKJ = Shadow Dancer: The Secret of Shinobi MAKP = Shadow Dancer: The Secret of Shinobi MALE = Bonanza Bros. MALJ = Bonanza Bros. MALP = Bonanza Bros. MAME = Sword of Vermillion MAMJ = Vermilion MAMP = Sword of Vermilion MANE = Gain Ground MANJ = Gain Ground MANP = Gain Ground MAOE = Bio-Hazard Battle MAOJ = Crying: Aseimei Sensou MAOP = Bio-Hazard Battle MAPE = Comix Zone MAPJ = Comix Zone MAPP = Comix Zone MAQE = Streets of Rage MAQJ = Bare Knuckle: Ikari no Tekken MAQP = Streets of Rage MARE = Beyond Oasis MARJ = The Story of Thor: Hikari o Tsugu Mono MARP = The Story of Thor MASE = Vectorman MASJ = Vectorman MASP = Vectorman MATE = Sonic Spinball MATJ = Sonic Spinball MATP = Sonic Spinball MAUJ = Puzzle & Action: Tant-R MAVE = Wonder Boy in Monster World MAVJ = Wonder Boy V: Monster World III MAVP = Wonder Boy In Monster World MAWE = Virtua Fighter 2 MAWJ = Virtua Fighter 2 MAWP = Virtua Fighter 2 MAXE = Alex Kidd In The Enchanted Castle MAXJ = Alex Kidd: Tenkuu Mashiro MAXP = Alex Kidd In The Enchanted Castle MAYE = Alien Storm MAYJ = Alien Storm MAYP = Alien Storm MAZE = ToeJam & Earl in Panic on Funkotron MAZP = ToeJam & Earl in Panic on Funkotron MB2J = Langrisser MB3E = Monster World IV MB3J = Monster World IV MB4J = Party Quiz Mega Q MB5J = Rangurissah II MB6E = Shining Force II MB6J = Shining Force II: Inishie no Fuuin MB6P = Shining Force II MB7E = Mega Turrican MB7P = Mega Turrican MB8E = Phantasy Star II MB8J = Phantasy Star II: Kaerazaru Toki no Owari ni MB8P = Phantasy Star II MB9J = Pepenga Pengo MBAJ = Pulseman MBAL = Pulseman MBAN = Pulseman MBBE = Sonic the Hedgehog 2 MBBJ = Sonic the Hedgehog 2 MBBP = Sonic the Hedgehog 2 MBCE = Kid Chameleon MBCJ = Chameleon Kid MBCP = Kid Chameleon MBDE = Golden Axe II MBDJ = Golden Axe II MBDP = Golden Axe II MBEE = Shining Force MBEJ = Shining Force: Kamigami no Isan MBEP = Shining Force MBFE = Shinobi III: Return of the Ninja Master MBFJ = The Super Soldier II MBFP = Shinobi III: Return of the Ninja master MBGE = Dynamite Headdy MBGJ = Dynamite Headdy MBGP = Dynamite Headdy MBHJ = Puzzle & Action: Ichidant-R MBIE = Landstalker: The Treasures of King Nole MBIJ = LandStalker: Koutei no Zaihou MBIP = Landstalker: The Treasures of King Nole MBJE = Ghouls'n Ghosts MBJJ = Dai Makai-Mura MBJP = Ghouls'n Ghosts MBKJ = Crack Down MBKP = Crack Down MBLJ = ESWAT: Cyber Police MBLP = ESWAT City Under Siege MBME = Sonic the Hedgehog 3 MBMJ = Sonic the Hedgehog 3 MBMP = Sonic the Hedgehog 3 MBNJ = Chelnov MBOE = Golden Axe III MBOJ = Golden Axe III MBOP = Golden Axe III MBPE = Super Thunder Blade MBPJ = Super Thunder Blade MBPP = Super Thunder Blade MBQE = Streets of Rage 3 MBQJ = Bare Knuckle III MBQP = Streets of Rage 3 MBRE = Rolling Thunder 2 MBRJ = Rolling Thunder 2 MBRP = Rolling Thunder 2 MBSJ = Dyna Brothers 2 Special MBTE = Alien Soldier MBTJ = Alien Soldier MBTP = Alien Soldier MBUE = Sonic 3D: Blast MBUJ = Sonic 3D Blast MBUP = Sonic 3D: Flickies' Island MBVJ = Jusu Kihei Leynos MBWE = Columns III: Revenge of Columns MBWJ = Columns III: Taiketsu! Columns World MBWM = Columns III: Revenge of Columns MBXE = Ecco Jr. MBXJ = Ecco Jr. MBXM = Ecco Jr. MBYE = Light Crusader MBYJ = Light Crusader MBYP = Light Crusader MBZE = Eternal Champions MBZJ = Eternal Champions MBZP = Eternal Champions MC2E = Earthworm Jim 2 MC2J = Earthworm Jim 2 MC2P = Earthworm Jim 2 MC3E = Super Street Fighter II: The New Challengers MC3J = Super Street Fighter 2: The New Challengers MC3P = Super Street Fighter II: The New Challengers MC4E = Strider MC4J = Strider Hiryu MCAJ = Gley Lancer MCAL = Gley Lancer MCAN = Gley Lancer MCBE = Powerball MCBJ = Wrestleball MCCE = Phantasy Star III MCCJ = Toki no Keishousha: Phantasy Star III MCCP = Phantasy Star III: Generations of Doom MCDE = Sonic & Knuckles MCDJ = Sonic & Knuckles MCDP = Sonic & Knuckles MCEJ = Super Fantasy Zone MCEN = Super Fantasy Zone MCEP = Super Fantasy Zone MCGE = Forgotten Worlds MCGJ = Forgotten Worlds MCGP = Forgotten Worlds MCHE = M.U.S.H.A. MCHJ = Musha Aleste MCHM = MUSHA : Metallic Uniframe Super Hybrid Armor MCIJ = Gynoug MCJE = Splatterhouse 2 MCJJ = Splatterhouse Part 2 MCJP = Splatterhouse 2 MCKE = Phantasy Star IV MCKJ = Phantasy Star: Sennenki no Owari ni MCKP = Phantasy Star IV MCLE = Street Fighter II': Special Champion Edition MCLJ = Street Fighter II' Plus: Champion Edition MCLP = Street Fighter II’: Special Champion Edition MCMJ = Lord Monarch: Tokoton Sentou Densetsu MCNJ = Hokuto no Ken: Shin Seikimatu Kyuseisyu Densetsu MCOJ = Sorcerian MCPE = Earthworm Jim MCPJ = Earthworm Jim MCPP = Earthworm Jim MCQE = Boogerman: A Pick and Flick Adventure MCQP = Boogerman - A Pick and Flick Adventure MCRE = Wolf of the Battlefield: MERCS MCRJ = Senjou no Ookami II MCRP = MERCS: Wolf of the Battlefield MCSJ = Wonder Boy III: Monster Lair MCSN = Wonder Boy III: Monster Lair MCSP = Wonder Boy III: Monster Lair MCTE = Clay Fighter MCTP = Clay Fighter MCUJ = Dragon Slayer: The Legend of Heroes MCVE = Pitfall: The Mayan Adventure MCVJ = Pitfall: The Mayan Adventure MCVP = Pitfall: The Mayan Adventure MCWE = Galaxy Force II MCWJ = Galaxy Force II MCWP = Galaxy Force II MCXJ = Dragon Slayer: The Legend of Heroes MCYE = The Revenge of Shinobi MCYJ = The Super Shinobi MCYP = The Revenge of Shinobi MCZE = Shanghai II: Dragon's Eye MCZP = Shanghai II Dragon's Eye MDUE01 = Mario Kart: Track Grand Priix MECPSI = SingItStar Mecano METE01 = New Super Metroid Bros. Wii MIJPSI = SingItStar Michael Jackson MILPSI = Sing IT Star: Miliki MKDE02 = Darky Kart Wii MKTE01 = Mario Kart Wii Teknik MKWP01 = Super Mario Kart for Wii MMRE01 = D.U. Super Mario Bros 2.1 Madness Returns MRRE01 = New Super Mario Bros. Wii Retro Remix MRRP01 = New Super Mario Bros. Wii Retro Remix NA3E = Bomberman Hero NA3J = Bomberman Hero NA3P = Bomberman Hero NAAE = Super Mario 64 NAAJ = Super Mario 64 NAAP = Super Mario 64 NABE = Mario Kart 64 NABJ = Mario Kart 64 NABK = Mario Kart 64 NABP = Mario Kart 64 NACE = The Legend of Zelda: Ocarina of Time NACJ = Zelda no Densetsu: Toki no Ocarina NACP = The Legend of Zelda: Ocarina of Time NADE = Star Fox 64 NADJ = Star Fox 64 NADK = Star Fox 64 NADP = Lylat Wars NAEE = Paper Mario NAEJ = Mario Story NAEP = Paper Mario NAFE = F-Zero X NAFJ = F-Zero X NAFP = F-Zero X NAGJ = Aerogauge NAHE = Yoshi's Story NAHJ = Yoshi's Story NAHP = Yoshi's Story NAIE = Wave Race 64 NAIJ = Wave Race 64: Kawasaki Jet Ski NAIP = Wave Race 64 NAJ8 = The Legend of Zelda: Ocarina of Time (spanish translation) NAJ9 = Super Smash Bros. NAJJ = Tsumi to Batsu NAJL = Sin & Punishment NAJN = Sin and Punishment NAKD = Pokémon Snap NAKE = Pokémon Snap NAKF = Pokémon Snap NAKI = Pokémon Snap NAKJ = Pokémon Snap NAKP = Pokémon Snap NAKS = Pokémon Snap NALE = Super Smash Bros. NALJ = Nintendo All-Star Dairantou Smash Brothers NALP = Super Smash Bros. NAME = Kirby 64: The Crystal Shards NAMJ = Hoshi no Kirby 64 NAMK = Kirby 64: The Crystal Shards NAMP = Kirby 64: The Crystal Shards NAND = Pokémon Puzzle League NANE = Pokémon Puzzle League NANF = Pokémon Puzzle League NANJ = Pokemon Puzzle League NANP = Pokémon Puzzle League NAOE = 1080° Snowboarding NAOJ = 1080° Snowboarding NAOK = 1080° Snowboarding NAOP = 1080 : TenEighty Snowboarding NAPJ = Custom Robo V2 NARE = The Legend of Zelda: Majora's Mask NARJ = Zelda no Densetsu: Majora no Kamen NARP = The Legend of Zelda: Majora's Mask NASE = Cruis'n USA NASJ = Cruisn USA NASP = Cruis'n USA NATE = Mario Tennis NATJ = Mario Tennis 64 NATP = Mario Tennis NAUE = Mario Golf NAUJ = Mario Golf 64 NAUP = Mario Golf NAYE = Ogre Battle 64: Person of Lordly Caliber NAYJ = Ogre Battle 64: Person of Lordly Caliber NAYM = Ogre Battle 64 : Person of Lordly Caliber NAZE = Mario Party 2 NAZJ = Mario Party 2 NAZP = Mario Party 2 NEEA = The Legend of Zelda: Ocarina of Time Master Quest NEWE01 = New Super Mario Bros Wii 15 A New World NK2O = Neek2o NMNP01 = Newer Super Mario Bros. Wii NRJ1FR = StarSing : NRJ Music Tour v1.1 NSMB02 = New Super Mario Bros. Wii 2 NSSP01 = Newer Summer Sun NWRP01 = Newer Super Mario Bros. Wii NZXM = Super Mario 64 Multiplayer ONKELZ = SingItStar Böhse Onkelz PAL OTFPSI = Sing IT: Operación triunfo P2ME01 = Metroid Prime 2: Echoes (Bonus Disc) PA2J = Nekketsu Koukou Dodgeball Bu: CD Soccer Hen PA3J = Salamander PA4J = Parasol Stars PA6E = Bloody Wolf PA6J = Narazumono Sentou Butai: Bloody Wolf PA6P = Bloody Wolf PA7E = Alien Crush PA7J = Alien Crush PA7P = Alien Crush PA8E = Ordyne PA8J = Ordyne PA9E = Splatterhouse PA9J = Splatterhouse PA9P = Splatterhouse PAAE = Bomberman '93 PAAP = Bomberman '93 PABE = Bonk's Adventure PABJ = PC Genjin PABP = Bonk's Adventure PACE = Dungeon Explorer PACJ = Dungeon Explorer PACP = Dungeon Explorer PADE = R-Type PADJ = R-Type I PADP = R-Type PAEE = Super Star Soldier PAEJ = Super Star Soldier PAEP = Super Star Soldier PAFE = Victory Run PAFJ = Victory Run: Eikou no 13,000KM PAFP = Victory Run PAGJ = Bomberman '94 PAGL = Bomberman'94 PAGN = Bomberman '94 PAHE = Battle Lode Runner PAHJ = Battle Lode Runner PAHP = Battle Lode Runner PAIE = New Adventure Island PAIJ = Takahashi Meijin no Shin Bouken Jima PAIP = New Adventure Island PAJJ = Joshoken Necromancer PAKE = Dragon's Curse PAKJ = Adventure Island PAKP = Dragon's Curse PALE = Soldier Blade PALJ = Soldier Blade PALP = Soldier Blade PAME = Neutopia PAMJ = Neutopia: Frey no Shou PAMP = Neutopia PANE = Military Madness PANJ = Nectaris PANP = Military Madness PAOJ = Final Soldier PAOL = Final Soldier PAON = Final Soldier PAPJ = R-Type II PAQJ = Gradius PARJ = Detana TwinBee PARL = Detana Twin Bee PARN = Detana Twin Bee PASJ = Cadash PATJ = Kiki Kaikai PAUJ = Kaizou Chounin Shubibinman PAVE = Vigilante PAVJ = Vigilante PAVP = Vigilante PAWE = Galaga '90 PAWJ = Galaga '88 PAWP = Galaga'90 PAYJ = Valkyrie no Densetsu PAZJ = Genpei Toumaden PB2E = Neutopia II PB2J = Neutopia II PB2P = Neutopia II PB3E = Devil's Crush PB3J = Devil Crash PB3P = Devil's Crush PB5J = Ninja Ryukenden PB6E = Cratermaze PB6P = Cratermaze PB7J = Sengoku Mahjong PB8E = Blazing Lazers PB8J = Blazing Lazers PB8P = Blazing Lazers PB9E = World Sports Competition PB9J = Power Sports PB9P = World Sports Competition PBAE = Dragon Spirit PBAJ = Dragon Spirit PBAP = Dragon Spirit PBCJ = Wonder-Momo PBDE = Double Dungeons PBDJ = Double Dungeons PBDP = Double Dungeons PBEE = Moto Roader PBEJ = Moto Roader PBEP = Motoroader PBFJ = Fire ProWrestling: Combination Tag PBHE = Bonk's Revenge PBHJ = PC Genjin 2 PBHP = Bonk's Revenge PBIE = Bonk 3: Bonk's Big Adventure PBIJ = PC Genjin 3 PBIP = Bonk III: Bonk's Big Adventure PBJE = Samurai Ghost PBJJ = Genpei Toumaden: Kannoni PBJP = Samurai Ghost PBME = Legend of Hero Tonma PBMJ = Legend of Hero Tonma PBMP = Legend of Hero Tonma PBNE = Ninja Spirit PBNJ = Saigou no Nindou: Ninja Spirit PBNP = Ninja Spirit PBSE = Chew Man Fu PBSJ = Be Ball PBSP = Chew Man Fu PBTE = China Warrior PBTJ = The Kung Fu PBTP = China Warrior PBUE = Bravoman PBUJ = Chouzetsu Rinjin Bravoman PBVJ = Benkei Gaiden PBWE = Air “Zonk” PBWJ = PC Denjin: Punkic Cyborgs PBWP = Air 'Zonk' PBXE = Shockman PBXJ = Kaizou Chounin Shubibinman 2: Atanaru Teki PBXP = Shockman PBYJ = Out Live PBZE = J.J. & Jeff PBZP = J.J. & Jeff PC2E = Chase H.Q. PC2J = Chase H.Q. PC2P = Chase H.Q. PC3J = Darius Plus PC4J = Space Invaders: Fukkatsu no Hi PC5J = Dragon Saber PC6E01 = Pokémon Colosseum Bonus Disc PC6J = Final Blaster PC7J = Mizubaku Daibouken PC8J = The Ninjawarriors PC9J = The NewZealand Story PCAE = Silent Debuggers PCAJ = Silent Debuggers PCAP = Silent Debuggers PCBE = Dead Moon PCBJ = Dead Moon: Tsuki Sekai no Akumu PCBP = Dead Moon PCCJ = Makai Hakkenden Shada PCDJ = Appare! Gateball PCEE = Power Golf PCEJ = Power Golf PCEP = Power Golf PCHE = Drop Off PCHJ = Drop Rock Hora Hora PCHP = Drop Off PCJJ = Override PCKJ = Gai Flame PCMJ = Mr. Heli no Daibouken PCNJ = Winning Shot PCOE = Psychosis PCOJ = Paranoia PCOP = Psychosis PCPJ = Power Eleven PCQJ = Psycho Chaser PCRJ = Break In PCRL = Break In PCRN = Break In PCSJ = Digital Champ: Battle Boxing PCSJ01 = Pokemon Colosseum Bonus Disc PCSL = Digital Champ : Battle Boxing PCSN = Digital Champ Battle Boxing PCTJ = Power Tennis PCUJ = Fire ProWrestling 2nd Bout PCVE = World Class Baseball PCVP = World Class Baseball PCWJ = Image Fight PCXJ = Power League IV PCYJ = Wallaby!! Usagi no Kuni no Kangaroo Race PDCJ = Dai Makaimura PDDJ = Volfied PDEJ = S.C.I.: Special Criminal Investigation PDFJ = Jigoku Meguri PDGJ = Fire ProWrestling 3: Legend Bout PDHJ = Rastan Saga II PDIE = Champion Wrestler PDJJ = Street Fighter II': Champion Edition PDJL = Street Fighter II' : Champion Edition PDJN = Street Fighter II: Champion Edition PDUE01 = Another Super Mario Bros. Wii PKBJ01 = The Tower of Druaga PLUS = WiiMC+ PM4E01 = Mario Kart: Double Dash!! Bonus Disc PMNEO1 = New Old Super Mario Bros. Wii POPPSI = SingItStar Pop PPNE01 = New Super Mario Bros. Wii 2: The Next Levels PPNP01 = New Super Mario Bros. Wii 2: The Next Levels PRJE01 = Pac-Man vs. PRJJ01 = Pac-Man vs. PRJP01 = Pac-Man vs. PROE01 = New Super Mario Bros. Wii 14 Project Mario PT1PSI = SingIt Star Portugal Hits PT2PSI = SingIt Portugal Hits Summer Party PT3PSI = Sing IT Portugal Hits - Morangos com Açucar PUTA01 = Guitar Hero III Custom : Rock Hits PWNP69 = Pwned Super Mario Bros. Wii PXWE = Project X: Love Potion Disaster PZLE01 = The Legend of Zelda: Collector's Edition PZLJ01 = The Legend of Zelda: Collector's Edition PZLP01 = The Legend of Zelda: Collector's Edition QA2J = Nekketsu Koukou Dodge Ball-Bu: CD Soccer-hen QA3E = SimEarth: The Living Planet QA3J = SimEarth QA3P = SimEarth: The Living Planet QA4J = Super Darius II QA5J = Space Invaders: The Original Game QA6J = Super Darius QA7J = Legend of Xanadu: Kaze no Densetsu Xanadu QA8J = Spriggan Mark 2 QA9J = Kaze no Densetsu: Xanadu II QAAE = Super Air Zonk QAAJ = CD Denjin: Rockabilly Tengoku QAAP = Super Air Zonk QABE = Ys Book I & II QABJ = Ys I + II QABP = Ys Book I & II QACJ = Cho Aniki QACL = Cho Aniki QACN = Cho Aniki QADJ = Gradius II: Gofer no Yabou QADL = Gradius II: Gofer no Yabou QADN = Gradius II Gofer No Yabou QAEJ = A.III: A-Ressha de Ikou III QAFE = The Dynastic Hero QAFJ = Chou Eiyuu Densetsu: Dynastic Hero QAFP = The Dynastic Hero QAGE = Gate of Thunder QAGJ = Gate of Thunder QAGP = Gate of Thunder QAHJ = Kawa no Nushi Tsuni Shizenha QAJJ = Image Fight II QAKJ = Ai Chou Aniki QALJ = The Atlas: Renaissance Voyager QANJ = Neo Nectaris QAOJ = Dungeon Explorer II QAPJ = Akumajou Dracula X: Chi no Rondo QAPL = Castlevania : Rondo of Blood QAPN = Castlevania Rondo of Blood QAPP = Castlevania: Rondo of Blood QAQJ = Dragon Slayer: Eiyuu Densetsu QARJ = Blood Gear QASE = Lords of Thunder QASJ = Winds of Thunder QASP = Lords of Thunder QATE = Riot Zone QATJ = Crest of Wolf QATP = Riot Zone QAUE = Monster Lair QAUJ = Wonder Boy III: Monster Lair QAUP = Monster Lair QAVJ = Bomberman: Panic Bomber QAWJ = Star Parodier QAWL = Star Parodier QAWN = Star Parodier QAXJ = Martial Champion QAYJ = Seirei Senshi Spriggan QAZJ = Eikan wa Kimi ni: Koko Yakyu Zenkoku Taikai QBAJ = L Dis QBBE = Fighting Street QBBJ = Fighting Street QBBP = Fighting Street R01PET = SingItStar Queen R02PEA = SingItStar Rock Ballads R15POH = SingIt Star Radio 105 R22E01 = FlingSmash R22J01 = Tataite Hazumu: Super Smash Ball Plus R22P01 = FlingSmash R23E52 = Barbie and the Three Musketeers R23P52 = Barbie and the Three Musketeers R24J01 = Chibi-Robo! R25EWR = LEGO Harry Potter: Years 1-4 R25PWR = LEGO Harry Potter: Years 1-4 R26E5G = Data East Arcade Classics R27E54 = Dora Saves the Crystal Kingdom R27X54 = Dora Saves the Crystal Kingdom R28E54 = Top Spin 4 R28P54 = Top Spin 4 R29E52 = NPPL Championship Paintball 2009 R29P52 = Millennium Series Championship Paintball 2009 R2AE7D = Ice Age 2: The Meltdown R2AP7D = Ice Age 2: The Meltdown R2AX7D = Ice Age 2: The Meltdown R2DEEB = Dokapon Kingdom R2DJEP = Dokapon Kingdom For Wii R2DPAP = Dokapon Kingdom R2DPJW = Dokapon Kingdom R2EJ99 = Fish Eyes Wii R2FE5G = Freddi Fish: Kelp Seed Mystery R2FP70 = Freddi Fish: Kelp Seed Mystery R2GEXJ = Fragile Dreams: Farewell Ruins of the Moon R2GJAF = Fragile: Sayonara Tsuki no Haikyo R2GP99 = Fragile Dreams: Farewell Ruins of the Moon R2HE41 = Petz Horse Club R2IE69 = Madden NFL 10 R2IP69 = Madden NFL 10 R2JJAF = Taiko no Tatsujin Wii R2KE54 = Don King Boxing R2KP54 = Don King Boxing R2LJMS = Hula Wii: Hura de Hajimeru Bi to Kenkou!! R2ME20 = M&M's Adventure R2NE69 = NASCAR Kart Racing R2OE68 = Medieval Games R2OP68 = Medieval Games R2PE9B = Super Swing Golf Season 2 R2PJ9B = Super Swing Golf Season 2 R2PKZ4 = Super Swing Golf Season 2 R2PP99 = Super Swing Golf R2PP9B = Super Swing Golf R2QJC0 = Cooking Mama 2 Taihen Mama Wa Ooisogashi R2RE4F = Pony Friends 2 R2RP4F = Pony Friends 2 R2SE18 = Deca Sports 2 R2SJ18 = Deca Sporta 2 R2SP18 = Sports Island 2 R2TE41 = Teenage Mutant Ninja Turtles: Smash-Up R2TP41 = Teenage Mutant Ninja Turtles: Smash-Up R2UE8P = Let's Tap R2UJ8P = Let's Tap R2UP8P = Let's Tap R2VE01 = Sin & Punishment: Star Successor R2VJ01 = Sin and Punishment: Successor to the Sky R2VP01 = Sin and Punishment: Successor of the Skies R2WEA4 = Pro Evolution Soccer 2009 R2WJA4 = Winning Eleven PLAY MAKER 2009 R2WPA4 = Pro Evolution Soccer 2009 R2WXA4 = Pro Evolution Soccer 2009 R2YE54 = Birthday Party Bash R2YP54 = It's my Birthday! R32J01 = Metroid Prime 2 R33E69 = AC/DC Live: Rock Band Track Pack R33P69 = AC/DC Live: Rock Band Song Pack R34E69 = Rock Band: Country Track Pack R35JC8 = Sangokushi 11 with Power-Up Kit R36E69 = Green Day: Rock Band R36P69 = Green Day: Rock Band R37E69 = Rock Band: Metal Track Pack R38E78 = Marvel Super Hero Squad R38P78 = Marvel Super Hero Squad R38X78 = Marvel Super Hero Squad: Walmart Edition R38Y78 = Marvel Super Hero Squad R39EFP = Shimano Xtreme Fishing R39PNK = Shimano Extreme Fishing R3AE20 = Story Hour: Adventures R3AP20 = Story Hour: Adventures R3AP7J = Story Hour: Adventures R3BE8P = Samba de Amigo R3BJ8P = Samba de Amigo R3BP8P = Samba de Amigo R3CE20 = Chrysler Classic Racing R3CP20 = Chrysler Classic Racing R3CP7J = Chrysler Classic Racing R3DES5 = Dream Pinball 3D R3DPS5 = Dream Pinball 3D R3EEWR = Game Party 3 R3EPWR = Game Party 3 R3FJA4 = Jikkyou Powerful Major League 3 R3GXUG = Kidz Sports: Crazy Mini Golf R3HP6Z = Agent Hugo: Hula Holiday R3HX6Z = Agent Hugo: Hula Holiday R3IJ01 = Metroid Prime R3JE5G = Go Play Circus Star R3KP6N = Skyscraper R3LEWR = Green Lantern: Rise of the Manhunters R3LPWR = Green Lantern: Rise of the Manhunters R3ME01 = Metroid Prime: Trilogy R3MP01 = Metroid Prime: Trilogy R3NEXS = Guilty Gear XX Accent Core Plus R3NPH3 = Guilty Gear XX Accent Core Plus R3OE01 = Metroid: Other M R3OJ01 = Metroid: Other M R3OP01 = Metroid: Other M R3PEWR = Speed Racer: The Videogame R3PJ52 = Speed Racer R3PPWR = Speed Racer: The Videogame R3RE8P = Sonic & SEGA All-Stars Racing R3RP8P = Sonic & SEGA All-Stars Racing R3SE52 = Spider-Man: Web of Shadows R3SP52 = Spider-Man: Web of Shadows R3TE54 = Top Spin 3 R3TJG9 = Top Spin 3 R3TP54 = Top Spin 3 R3UJGD = Oyako de Asobo: Miffy no Omocha Bako R3VEFP = Deer Drive R3VPNK = Deer Drive R3XE6U = Sam & Max: Season One R3XP6V = Sam & Max: Season One R3YE70 = Sam & Max: Season Two: Beyond Time and Space R3YP70 = Sam & Max: Season Two: Beyond Time and Space R3ZE69 = Rock Band Track Pack: Classic Rock R42E69 = The Sims 2: Castaway R42P69 = The Sims 2: Castaway R43E69 = EA Sports Active: Personal Trainer R43J13 = EA Sports Active Personal Trainer Wii 30-Hi Seikatsu Kaizen Program R43P69 = EA Sports Active: Personal Trainer R44J8P = Suzumiya Haruhi no Heiretsu R46ENS = Phantom Brave: We Meet Again R46JKB = Phantom Brave Wii R47E20 = ATV Quad Kings R48E7D = The Spiderwick Chronicles R48P7D = The Spiderwick Chronicles R49E01 = Donkey Kong Jungle Beat R49J01 = Donkey Kong: Jungle Beat R49P01 = Donkey Kong: Jungle Beat R4AE69 = SimAnimals R4AJ13 = SimAnimals R4AP69 = SimAnimals R4BEJZ = Championship Foosball R4BPGT = Table Football R4CE69 = SimCity Creator R4CJ13 = Simcity Creator R4CK69 = SimCity Creator R4CP69 = Simcity Creator R4DDUS = Die drei Fragezeichen - Das verfluchte Schloss R4EE01 = Endless Ocean: Blue World R4EJ01 = Forever Blue: Umi no Yobigoe (Endless Ocean 2) R4EP01 = Endless Ocean 2: Adventures of the Deep R4FE20 = Story Hour: Fairy Tales R4FP20 = Story Hour: Fairy Tales R4FP7J = Story Hour: Fairy Tales R4IPNK = Mad Tracks R4LPUG = Athletic Piggy Party R4LXUG = Athletic Piggy Party R4MJ0Q = Shikakui Atama wo Marukusuru Wii R4NE5G = Major Minor's Majestic March R4NP5G = Major Minor's Majestic March R4NX5G = Major Minor's Majestic March R4PE69 = The Sims 2: Pets R4PP69 = The Sims 2: Pets R4QE01 = Mario Strikers Charged R4QJ01 = Mario Strikers Charged R4QK01 = Mario Power Soccer R4QP01 = Mario Strikers Charged Football R4RE69 = FIFA Soccer 10 R4RJ13 = FIFA 10 WORLD CLASS SOCCER R4RK69 = FIFA 10 R4RP69 = FIFA 10 R4RX69 = FIFA 10 R4RY69 = FIFA 10 R4RZ69 = FIFA Soccer 10 R4SE54 = MLB Superstars R4VEA4 = Storybook Workshop R4VJA4 = Teleshibai Wii R4VJAF = Tere Shibai Wii R4WJA4 = Jikkyou Powerful Major League 2009 R4YJ2M = Sukeban Shachou Rena Wii R4ZE01 = Fatal Frame 4: Mask of the Lunar Eclipse R4ZJ01 = Fatal Frame IV: Mask of the Lunar Eclipse R4ZP01 = Fatal Frame IV: Mask of the Lunar Eclipse R52E08 = Neopets Puzzle Adventure R52P08 = Neopets Puzzle Adventure R53PFH = In The Mix Featuring Armin van Buuren R54FMR = Countdown: The Game R55F41 = Qui Veut Gagner Des Millions: 1ère Edition R55P41 = Who Wants To Be A Millionaire: 1st Edition R56EG9 = Astro Boy: The Video Game R56PG9 = Astro Boy: The Video Game R57FMR = Questions pour un champion R58DMR = U-Sing R58FMR = U-Sing R58PMR = U-Sing R58SMR = U-Sing R59D4Q = Club Penguin: Game Day! R59E4Q = Club Penguin: Game Day! R59P4Q = Club Penguin: Game Day! R5AE8P = The Golden Compass R5AP8P = The Golden Compass R5AX8P = The Golden Compass R5DE5G = Flip's Twisted World R5EPMR = Countdown: The Game R5FE41 = Academy of Champions: Soccer R5FP41 = Academy of Champions: Football R5GE78 = Are You Smarter Than A 5th Grader?: Make the Grade R5IE4Q = Toy Story Mania! R5IP4Q = Toy Story Mania! R5IR4Q = Toy Story Mania! R5IX4Q = Toy Story Mania! R5JES5 = Pirates vs Ninjas Dodgeball R5JPS5 = Pirates vs Ninjas Dodgeball R5MJAF = Kotoba No Puzzle Mojipittan Wii Deluxe R5NJN9 = Doala De Wii R5OENR = Party Pigs: Farmyard Games R5OXUG = Farmyard Party: Featuring the Olympigs R5PE69 = Harry Potter and the Order of the Phoenix R5PJ13 = Harry Potter and the Order of the Phoenix R5PP69 = Harry Potter and the Order of the Phoenix R5PX69 = Harry Potter and the Order of the Phoenix R5QPGT = Circus R5SERW = Mortimer Beckett and the Secrets of Spooky Manor R5TE69 = Grand Slam Tennis R5TJ13 = Grand Slam Tennis R5TP69 = Grand Slam Tennis R5UE41 = CSI: Deadly Intent R5UP41 = CSI: Deadly Intent R5VE41 = James Cameron's Avatar: The Game R5VP41 = James Cameron's Avatar: The Game R5VX41 = James Cameron's Avatar: The Game R5WEA4 = Silent Hill: Shattered Memories R5WJA4 = Silent Hill: Shattered Memories R5XJ13 = MySims Agents R5XP69 = MySims Agents R5YD78 = All Star Cheerleader 2 R5YE78 = All Star Cheer Squad 2 R5YP78 = All Star Cheerleader 2 R62E4Q = Disney Sing It: Pop Hits R62P4Q = Disney Sing It: Pop Hits R63EG9 = Family Party: 30 Great Games Outdoor Fun R63PG9 = Family Party: 30 Great Games Outdoor Fun R64E01 = Wii Music R64J01 = Wii Music R64K01 = Wii Music R64P01 = Wii Music R65ENR = Buck Fever R66E41 = Press Your Luck 2010 Edition R67E6K = Smart Series Presents: JaJa's Adventure R68E5G = Go Play City Sports R69E36 = DiRT 2 R69P36 = Colin McRae: DiRT 2 R6APPU = Baby and Me R6BE78 = de Blob R6BJ78 = Blob Colorful Na Kibou R6BK78 = de Blob R6BP78 = de Blob R6BX78 = de Blob R6CEAF = We Cheer 2 R6CJAF = WE CHEER Dancing Spirits! R6DFJW = Code de la Route R6EE41 = Family Feud 2010 Edition R6FE41 = Six Flags Fun Park R6FERS = Six Flags Fun Park R6FP41 = Fun Park Party R6GPMR = Golden Balls R6HE54 = Ni Hao, Kai-lan: Super Game Day R6HP54 = Ni Hao, Kai-lan: Super Game Day R6IE54 = Baseball Blast! R6JJGD = Fullmetal Alchemist: Prince of the Dawn R6KP36 = Ashes Cricket 2009 R6KU36 = Ashes Cricket 2009 R6LEWR = LEGO Rock Band R6LPWR = LEGO Rock Band R6ME5Z = America's Next Top Model R6MPML = America's Next Top Model R6MXMR = Top Model R6NE41 = Shaun White Snowboarding: World Stage R6NP41 = Shaun White Snowboarding: World Stage R6NY41 = Shaun White Snowboarding: World Stage R6OE78 = Cars Race-O-Rama R6OP78 = Cars Race-O-Rama R6OX78 = Cars Race-O-Rama R6QE69 = MySims Agents R6REJH = TrackMania: Build to Race R6RPHH = TrackMania R6TEA4 = Tornado Outbreak R6TPA4 = Tornado Outbreak R6VE4Z = King of Clubs R6VPGN = King of Clubs R6WE68 = AMF Bowling World Lanes R6WP68 = AMF Bowling World Lanes R6XE69 = Hasbro: Family Game Night 2 R6XP69 = Hasbro: Family Game Night 2 R6YEXS = Squeeballs Party R6YPH3 = Squeeballs Party R72E5G = Cake Mania: In The Mix! R72P5G = Cake Mania: In The Mix! R74E20 = Arcade Shooting Gallery R75E20 = Dream Salon R76E54 = NBA 2K10 R76P54 = NBA 2K10 R77JAF = SD Gundam: G Generation Wars R79JAF = Mobile Suit Gundam: MS Sensen 0079 R7AE69 = SimAnimals Africa R7AJ13 = SimAnimals Africa R7AP69 = SimAnimals Africa R7BE20 = Jelly Belly Ballistic Beans R7BP7J = Jelly Belly Ballistic Beans R7CJ01 = Captain Rainbow R7EE8P = NiGHTS: Journey of Dreams R7EJ8P = Nights Journey Of Dreams R7EP8P = NiGHTS: Journey of Dreams R7FEGD = Final Fantasy Fables: Chocobo's Dungeon R7FJGD = Final Fantasy Fables: Chocobo's Dungeon R7FPGD = Final Fantasy Fables: Chocobo's Dungeon R7GEAF = Dragon Ball: Revenge of King Piccolo R7GJAF = Dragon Ball: Tenkaichi Daibouken R7GPAF = Dragon Ball: Revenge of King Piccolo R7HE6K = Army Rescue R7IE69 = Charm Girls Club: Pajama Party R7IP69 = Charm Girls Club: Pyjama Party R7KE6K = Rock Blast R7LP7J = Margot's Bepuzzled! R7MXFR = Musiic Party: Rock the House R7NE20 = Cold Stone Creamery: Scoop It Up R7OE54 = NHL 2K10 R7OP54 = NHL 2K10 R7PE01 = Punch-Out!! R7PJ01 = Punch-Out!! R7PP01 = Punch-Out!! R7QE52 = Chaotic: Shadow Warriors R7RE52 = Little League World Series Baseball 2009 R7SE5G = Escape The Museum R7SP5G = Escape The Museum R7TFJW = Pétanque Pro R7VEWR = Vacation Isle: Beach Party R7VPWR = Vacation Isle: Beach Party R7WE52 = Mountain Sports R7WP52 = Mountain Sports R7XE69 = Need for Speed: Nitro R7XJ13 = Need for Speed: Nitro R7XP69 = Need for Speed: Nitro R7YFMR = Pékin Express R7ZE41 = Team Elimination Games R7ZP41 = Knockout Party R82E52 = Animal Planet: Vet Life R82JG0 = Darts Wii DX R82P52 = Animal Planet: Vet Life R83EA4 = Pop'n Music R83JA4 = Pop'n Music R83PA4 = Pop'n Rhythm R84EE9 = Harvest Moon: Tree Of Tranquility R84J99 = Bokujo for Wii R84P99 = Harvest Moon: Tree of Tranquility R85EG9 = The Secret Saturdays: Beasts of the 5th Sun R85PG9 = The Secret Saturdays: Beasts of the 5th Sun R86E20 = Dream Dance & Cheer R87EVN = Ski-Doo: Snowmobile Challenge R88J2L = Anpanman Niko Niko Party R89JEL = Tokyo Friend Park 2 Wii R8AE01 = PokéPark Wii: Pikachu's Adventure R8AJ01 = PokéPark Wii: Pikachu no Daibouken R8AP01 = PokéPark Wii: Pikachu's Adventure R8BE41 = Imagine Party Babyz R8BP41 = Babysitting Party R8DEA4 = Yu-Gi-Oh! 5D's: Duel Transer R8DJA4 = Yu-Gi-Oh! 5D's: Duel Transer R8DPA4 = Yu-Gi-Oh! 5D's: Master of the Cards R8EJQC = Earth Seeker R8FES5 = Fast Food Panic R8FJHA = Takumi Restaurant ha Daihanjou! R8FJSC = Takumi Restaurant wa Daihanjou! (Simplified Chinese Translation) R8FPNP = Fast Food Panic R8GJC8 = G1 Jockey Wii 2008 R8GPC8 = G1 Jockey Wii 2008 R8HE4Q = Hannah Montana: The Movie R8HP4Q = Hannah Montana: The Movie R8HX4Q = Hannah Montana: The Movie R8HY4Q = Hannah Montana: The Movie R8IE78 = SpongeBob's Truth or Square R8IP78 = SpongeBob's Truth or Square R8IS78 = SpongeBob's Truth or Square R8JEWR = The Lord of the Rings: Aragorn's Quest R8JPWR = The Lord of the Rings: Aragorn's Quest R8KPKM = Street Football 2 R8LE20 = Chicken Blaster R8LP7J = Chicken Blaster R8NEA4 = The Cages: Pro Style Batting Practice R8NJG0 = Batting Revolution R8OE54 = Ringling Bros. and Barnum & Bailey Circus R8OX54 = It's My Circus R8PC01 = Super Paper Mario(CN) R8PE01 = Super Paper Mario R8PJ01 = Super Paper Mario R8PK01 = Super Paper Mario R8PP01 = Super Paper Mario R8QPRT = Crazy Quiz: Are You Crazy Enough? R8RP41 = Arthur and the Revenge of Maltazard R8SE41 = Vacation Sports R8SP41 = World Sports Party R8SX41 = World Sports Party R8TENR = Tournament Pool R8UXMR = Adibou R8VE41 = Petz Rescue: Wildlife Vet R8VP41 = Planet Rescue: Wildlife Vet R8XE52 = Jurassic: The Hunted R8XZ52 = Top Shot Dinosaur Hunter R8YE52 = Cabela's Big Game Hunter 2010 R8ZE8P = Daisy Fuentes Pilates R8ZPGT = Daisy Fuentes Pilates R92E01 = Pikmin 2 R92J01 = Pikmin 2 R92P01 = Pikmin 2 R94PMR = The Ultimate Red Ball Challenge R94XMR = The Ultimate Red Ball Challenge R96EAF = Klonoa R96JAF = Kaze no Klonoa Door to Phantomile R96KAF = Klonoa - Door to Phantomile R96PAF = Klonoa R97E9B = Family Fun Football R9AE52 = Activision Demo Action Pack (Demo) R9BPMT = Bob the Builder: Festival of Fun R9CPMR = I'm a Celebrity...Get Me Out of Here! R9DE78 = Drawn to Life: The Next Chapter R9DP78 = Drawn to Life: The Next Chapter R9EPNP = Fix It: Home Improvement Challenge R9FE36 = F1 2009 R9FJ36 = F1 2009 R9FP36 = F1 2009 R9GEWR = Legend of the Guardians: The Owls of Ga'Hoole R9GPWR = Legend of the Guardians: The Owls of Ga'Hoole R9HE78 = Are You Smarter Than A 5th Grader?: Game Time R9IE01 = Pikmin R9IJ01 = Pikmin R9IK01 = Pikmin R9IP01 = Pikmin R9JE69 = The Beatles: Rock Band R9JP69 = The Beatles: Rock Band R9KE20 = Groovin' Blocks R9LE41 = Sleepover Party R9LP41 = Girls Life: Sleepover Party R9ME5Z = World Championship Athletics R9MPFR = Summer Athletics 2009 R9NPMR = Family Fortunes R9OE69 = Tiger Woods PGA Tour 10 R9OK69 = Tiger Woods PGA Tour 10 R9OP69 = Tiger Woods PGA Tour 10 R9QPNG = Dance Party Club Hits R9RPNG = Dance Party Pop Hits R9SPPL = Sudoku Ball: Detective R9TE69 = Tiger Woods PGA Tour 09 All-Play R9TJ13 = Tiger Woods PGA Tour 09 All-Play R9TK69 = Tiger Woods PGA Tour 09 All-Play R9TP69 = Tiger Woods PGA Tour 09 All-Play R9UE52 = Build-A-Bear Workshop: Friendship Valley R9UPGY = Build-A-Bear Workshop: Friendship Valley R9VE52 = Cabela's Outdoor Adventures 2010 R9WPSP = WSC Real 09: World Snooker Championship R9XE52 = Arcade Zone R9XP52 = Arcade Zone R9YES5 = Sled Shred R9ZE54 = Major League Baseball 2K9 RABAZZ = System Menu Changer RADP01 = New Super Mario Bros. Wii 0-6 Radiance RB2E6K = Balloon Pop RB2J2K = Rainbow Pop RB2P6K = Pop! RB2PGT = Pop! RB4E08 = Resident Evil 4: Wii Edition RB4J08 = Biohazard 4 Wii Edition RB4P08 = Resident Evil 4: Wii Edition RB4X08 = Resident Evil 4: Wii Edition RB5E41 = Brothers In Arms: Earned In Blood RB5P41 = Brothers In Arms: Earned In Blood RB6J18 = Bomberman RB7E54 = Bully: Scholarship Edition RB7P54 = Bully: Scholarship Edition RB8E70 = Backyard Baseball '09 RB9D78 = Bratz: The Movie RB9E78 = Bratz: The Movie RB9P78 = Bratz: The Movie RB9X78 = Bratz: The Movie RB9Y78 = Bratz: The Movie RBAE41 = Blazing Angels: Squadrons of WWII RBAP41 = Blazing Angels: Squadrons of WWII RBBE18 = Bomberman Land RBBJ18 = Bomberman Land Wii RBBP99 = Bomberman Land Wii RBCP41 = Telly Addicts RBEE52 = Bee Movie Game RBEP52 = Bee Movie Game RBEX52 = Bee Movie Game RBFE20 = Balls of Fury RBFP20 = Balls of Fury RBFP7J = Balls of Fury RBGE54 = The BIGS RBGP54 = The Bigs RBHE08 = Resident Evil Archives: Resident Evil Zero RBHJ08 = Biohazard 0 RBHP08 = Resident Evil Archives: Resident Evil Zero RBIEE9 = Harvest Moon: Animal Parade RBIJ99 = Bokujou Monogatari Waku Waku Animal March RBIP99 = Harvest Moon: Animal Parade RBKE69 = Boom Blox RBKJ13 = Boom Blox RBKK69 = Boom Blox RBKP69 = Boom Blox RBLE8P = Bleach: Shattered Blade RBLJ8P = Bleach: Shattered Blade RBLP8P = Bleach: Shattered Blade RBME5G = Bust-a-Move Bash! RBMPGT = Bust-A-Move RBNEG9 = Ben 10: Protector of Earth RBNPG9 = Ben 10: Protector of Earth RBNXG9 = Ben 10: Protector of Earth RBOE69 = Boogie RBOP69 = Boogie RBPE4Z = Brunswick Pro Bowling RBPP4Z = Brunswick Pro Bowling RBPPGT = Brunswick Pro Bowling RBQENR = Classic British Motor Racing RBQPUG = Classic British Motor Racing RBRE5G = Blast Works: Build, Trade, Destroy RBRP5G = Blast Works: Build, Trade, Destroy RBRX5G = Blast Works: Build, Trade, Destroy RBSJ08 = Sengoku Basara 2 Heroes (Double Pack) RBSJ09 = Sengoku Basara 2 Heroes RBTE8P = SEGA Bass Fishing RBTJ8P = Sega Bass Fishing RBTP8P = Sega Bass Fishing RBUE08 = Resident Evil: The Umbrella Chronicles RBUJ08 = Biohazard The Umbrella Chronicles RBUK08 = Biohazard The Umbrella Chronicles RBUP08 = Resident Evil: The Umbrella Chronicles RBVE52 = Barbie as The Island Princess RBVP52 = Barbie as The Island Princess RBWE01 = Battalion Wars 2 RBWJ01 = Totsugeki Famicom Wars vs. RBWP01 = Battalion Wars 2 RBXJ8P = Bleach: Versus Crusade RBYE78 = Barnyard RBYJ78 = Barnyard RBYP78 = Barnyard RBZE5Z = Billy the Wizard: Rocket Broomstick Racing RBZP5Z = Billy the Wizard: Rocket Broomstick Racing RBZPUG = Billy the Wizard: Rocket Broomstick Racing RBZXUG = Billy the Wizard: Rocket Broomstick Racing RC2E78 = Cars: Mater-National RC2P78 = Cars: Mater-National RC2X78 = Cars: Mater-National RC2Y78 = Cars: Mater-National RC3E41 = Petz Catz 2 RC3J41 = Nyanko To Mahou No Boushi RC3P41 = Catz RC3X41 = Catz RC4JD9 = Crayon Shin-Chan: Saikyou Kazoku Kasukabe King Wii RC4SGT = Shin Chan The New Adventures For Wii RC5JDQ = Osouji Sentai Clean Keeper RC7E20 = Sea Monsters: A Prehistoric Adventure RC7P7J = Sea Monsters: A Prehistoric Adventure RC8E7D = Crash: Mind Over Mutant RC8P7D = Crash: Mind Over Mutant RC8X7D = Crash: Mind Over Mutant RC9PGN = CID: The Dummy RCAE78 = Cars RCAJ78 = Cars RCAP78 = Cars RCAX78 = Cars RCAY78 = Cars RCBE52 = Cabela's Big Game Hunter RCBP52 = Cabela's Big Game Hunter RCCE5G = Cooking Mama: Cook Off RCCJC0 = Cooking Mama RCCPGT = Cooking Mama RCCR78 = Guitar Hero III Custom: Coheed and Cambria RCDD52 = Call of Duty 3 RCDE52 = Call of Duty 3 RCDP52 = Call of Duty 3 RCDX52 = Call of Duty 3 RCEE5Z = Mini Desktop Racing RCEPUG = Mini Desktop Racing RCEXUG = Mini Desktop Racing RCFE41 = Cosmic Family RCFP41 = Cosmic Family RCGE54 = Carnival Games RCGP54 = Carnival Games RCHC52 = Guitar Hero III Custom : Guitar Hero II RCHEAF = We Cheer RCHJAF = We Cheer RCHPAF = We Cheer RCHPGT = We Cheer RCIE41 = CSI: Hard Evidence RCIP41 = CSI: Hard Evidence RCJE8P = The Conduit RCJP8P = The Conduit RCKPGN = Alan Hansen's Sports Challenge RCLE4Q = Disney's Chicken Little: Ace in Action RCLP4Q = Chicken Little: Ace In Action RCOC99 = Meitantei Conan: Tsuioku no Mirage RCOJ99 = Meitantei Conan: Tsuioku no Mirage RCOK99 = Detective Conan: Case Closed: The Mirapolis Investigation RCOKZF = Case Closed: The Mirapolis Investigation RCOPNP = Case Closed: The Mirapolis Investigation RCPE18 = Kororinpa: Marble Mania RCPJ18 = Kororinpa RCPP18 = Kororinpa RCQEDA = Penny Racers Party: Turbo-Q Speedway RCQJDA = Choro Q RCRE5D = Cruis'n RCRP5D = Cruis'n RCSE20 = Chicken Shoot RCSP20 = Chicken Shoot RCSP7J = Chicken Shoot RCTE5Z = Counter Force RCTP5Z = Counter Force RCTPGT = Counter Force RCUE52 = Cabela's Legendary Adventures RCUP52 = Cabela's Legendary Adventures RCVE41 = Far Cry: Vengeance RCVP41 = Far Cry: Vengeance RCXE78 = All Star Cheer Squad RCXP78 = All Star Cheerleader RCXX78 = All Star Cheerleader RCYPGN = Cheggers Party Quiz RD2E41 = Red Steel 2 RD2J41 = Red Steel 2 RD2K41 = Red Steel 2 RD2P41 = Red Steel 2 RD2X41 = Red Steel 2 RD4EA4 = Dance Dance Revolution: Hottest Party 2 RD4JA4 = Dance Dance Revolution: Furu Furu Party RD4PA4 = Dance Dance Revolution: Hottest Party 2 RD6EE9 = Animal Kingdom: Wildlife Expedition RD6J8N = Doubutu Kisoutengai RD6PNP = SAFAR'Wii RD8E52 = Dancing with the Stars RD9J18 = Sudoku RDAE52 = Dancing with the Stars: We Dance! RDBE70 = Dragon Ball Z: Budokai Tenkaichi 2 RDBJAF = Dragon Ball Z: Sparking! NEO RDBP70 = Dragon Ball Z: Budokai Tenkaichi 2 RDBPAF = Dragon Ball Z: Budokai Tenkaichi 2 RDCE78 = Deadly Creatures RDCP78 = Deadly Creatures RDDEA4 = Dance Dance Revolution: Hottest Party RDDJA4 = Dance Dance Revolution: Hottest Party RDDPA4 = Dance Dance Revolution Hottest Party RDEJ0A = Zenkoku Dekotora Matsuri RDFE41 = Shaun White Snowboarding: Road Trip RDFP41 = Shaun White Snowboarding: Road Trip RDGEA4 = Castlevania Judgment RDGJA4 = Akumajou Dracula Judgment RDGPA4 = Castlevania Judgment RDHE78 = Destroy All Humans! Big Willy Unleashed RDHP78 = Destroy All Humans! Big Willy Unleashed RDIE41 = The Dog Island RDIJG2 = The Dog Island RDIP41 = The Dog Island RDJE4F = Death Jr.: Root of Evil RDJP4F = Death Jr.: Root of Evil RDKE01 = Donkey Kong: Barrel Blast RDKJ01 = Donkey Kong Taru Jet Race RDKP01 = Donkey Kong: Jet Race RDLE5G = Spy Fox in Dry Cereal RDLP70 = Spy Fox In Dry Cereal RDME6K = Domino Rally RDMJ8N = Go! Go! Minon RDMPHZ = Minon: Everyday Hero RDNEA4 = Dance Dance Revolution: Disney Grooves RDOE41 = Petz Dogz 2 RDOJ41 = Dog To Mahou No Boushi RDOP41 = Dogz RDOX41 = Dogz RDPE54 = Dora Saves the Snow Princess RDPP54 = Dora Saves the Snow Princess RDPX54 = Dora Saves the Snow Princess RDQEGD = Dragon Quest Swords: The Masked Queen and The Tower of Mirrors RDQJGD = Dragon Quest Swords: Kamen no Joou to Kagami no Tou RDQPGD = Dragon Quest Swords: The Masked Queen and the Tower of Mirrors RDREA4 = Dewy's Adventure RDRJA4 = Dewy's Adventure RDRPA4 = Dewy's Adventure RDSE70 = Dragon Ball Z: Budokai Tenkaichi 3 RDSJAF = Dragon Ball Z: Sparking! METEOR RDSPAF = Dragon Ball Z: Budokai Tenkaichi 3 RDSZ70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino RDTEAF = Tamagotchi: Party On! RDTJAF = Tamagotchi Pikadai RDTPAF = Tamagotchi: Party On! RDUE01 = DU Super Mario Bros. : Find That Princess RDUJDQ = Sugorochronicle Migite Ni Ken Wo Hidarite Ni Saikoro Wo RDVE41 = Driver: Parallel Lines RDVP41 = Driver: Parallel Lines RDWEG9 = Dragon Blade: Wrath of Fire RDWJG9 = Dragon Blade: Wrath Of Fire RDWPG9 = Dragon Blade: Wrath Of Fire RDXE18 = Deca Sports RDXJ18 = Deca Sporta RDXKA4 = Deca Sporta RDXP18 = Sports Island RDYEGN = CID: The Dummy RDZJ01 = Disaster: Day of Crisis RDZP01 = Disaster: Day of Crisis RE3ENR = WWII Aces RE4E08 = Resident Evil Archives: Resident Evil RE4J08 = Biohazard RE4P08 = Resident Evil Archives: Resident Evil RE5PAF = The Munchables RE6PRT = Summer Challenge: Athletics Tournament RE7PNK = Hunting Challenge RE8J99 = Katekyoo Hitman Reborn Kindan No Yami No Delta REAE69 = Celebrity Sports Showdown REAF69 = Celebrity Sports Showdown REAP69 = Celebrity Sports Showdown REBE4Z = Mr Bean's Wacky World of Wii REBPMT = Mr Bean's Wacky World of Wii RECE6K = Spy Games: Elevator Mission RECP6K = Spy Games: Elevator Mission REDE41 = Red Steel REDJ41 = Red Steel REDP41 = Red Steel REFP41 = My French Coach: Improve Your French REGE36 = Emergency Mayhem REGP36 = Emergency Mayhem REHE41 = Emergency Heroes REHP41 = Emergency Heroes REJEAF = Active Life: Extreme Challenge REJJAF = Family Trainer 2 REJPAF = Family Trainer: Extreme Challenge REKE41 = Gold's Gym: Cardio Workout REKJ2N = Shape Boxing Wii De Enjoy Diet REKP41 = My Fitness Coach: Cardio Workout REKU41 = Gold's Gym: Cardio Workout RELEA4 = Elebits RELJA4 = Elebits RELKA4 = Elebits RELPA4 = Eledees RELSAB = Sonic Adventure DX: Director's Cut (Preview Prototype) REMJ8P = Doraemon Wii Himitsu Douguou Ketteisen RENE8P = Sonic and the Black Knight RENJ8P = Sonic and the Black Knight RENP8P = Sonic and the Black Knight REQE54 = Go Diego Go! Safari Rescue REQP54 = Go Diego Go! Safari Rescue REQX54 = Go Diego Go! Safari Rescue REQY54 = Go Diego Go! Safari Rescue RESP41 = My Spanish Coach: Improve Your Spanish RETJAF = Ennichi No Tatsujin REUPNK = My Body Coach REVJ8P = Imabi Kisô: Kaimei Hen REVJBP = Imabikisou: Kaimei Hen REWFMR = My Horse Club: On the Trail of the Mysterious Appaloosa REWXMR = My Horse Club: On the Trail of the Mysterious Appaloosa REWYMR = My Horse Club: On the Trail of the Mysterious Appaloosa REXE01 = Excite Truck REXJ01 = Excite Truck REXP01 = Excite Truck REYE4Q = Disney Sing It: High School Musical 3 Senior Year REYP4Q = Disney Sing It: High School Musical 3 REYX4Q = Disney Sing It: High School Musical 3 REZEJJ = Fritz Chess REZPKM = Fritz Chess RF2E54 = Fantastic Four: Rise of the Silver Surfer RF2P54 = Fantastic Four: Rise of the Silver Surfer RF3E52 = Ferrari Challenge: Trofeo Pirelli RF3P6M = Ferrari Challenge RF4E36 = Super Fruit Fall RF4P6M = Super Fruit Fall RF7J08 = Tatsunoko vs. Capcom: Cross Generation of Heroes RF8E69 = FIFA Soccer 08 RF8J13 = FIFA 08 RF8K69 = FIFA 08 RF8P69 = FIFA 08 RF8X69 = FIFA 08 RF8Y69 = FIFA 08 RF9E69 = FIFA Soccer 09 All-Play RF9J13 = FIFA 09 All-Play RF9K69 = FIFA 09 All-Play RF9P69 = FIFA 09 All-Play RF9X69 = FIFA 09 All-Play RF9Y69 = FIFA 09 All-Play RFAEAF = Active Life: Outdoor Challenge RFAJAF = Family Trainer: Athletic World RFAPAF = Family Trainer RFBE01 = Endless Ocean RFBJ01 = Forever Blue RFBP01 = Endless Ocean RFCEGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFCJGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFCPGD = Final Fantasy Crystal Chronicles: The Crystal Bearers RFEE01 = Fire Emblem: Radiant Dawn RFEJ01 = Fire Emblem Akatsuki No Megami RFEP01 = Fire Emblem: Radiant Dawn RFFEGD = Final Fantasy Crystal Chronicles: Echoes of Time RFFJGD = Final Fantasy Crystal Chronicles: Echoes of Time RFFPGD = Final Fantasy Crystal Chronicles: Echoes of Time RFJJAF = Family Jockey RFKE41 = My Fitness Coach RFKJ41 = My Fitness Coach RFKP41 = My Fitness Coach: Get In Shape RFKX41 = My Fitness Coach: Get In Shape RFLE69 = Madden NFL 09 All-Play RFLP69 = Madden NFL 09 All-Play RFLPWK = Wii Freeloader RFMJAF = Pro Yakyuu Family Stadium RFNE01 = Wii Fit RFNJ01 = Wii Fit RFNK01 = Wii Fit RFNP01 = Wii Fit RFNW01 = Wii Fit RFOE52 = Spider-Man: Friend or Foe RFOP52 = Spider-Man: Friend or Foe RFOX52 = Spider-Man: Friend or Foe RFPE01 = Wii Fit Plus RFPJ01 = Wii Fit Plus RFPK01 = Wii Fit Plus RFPP01 = Wii Fit Plus RFPR01 = Wii Fit Plus RFPW01 = Wii Fit Plus RFQE69 = FaceBreaker K.O. Party RFQJ13 = FaceBreaker K.O. Party RFQJ69 = FaceBreaker K.O. Party RFQK69 = FaceBreaker: K.O. Party RFQP69 = FaceBreaker: K.O. Party RFRE5G = Furu Furu Park RFRJC0 = Furu Furu Park RFSEEB = Shiren the Wanderer RFSJ8P = Fushigi No Dungeon: Furai No Shiren 3 RFTE70 = Backyard Football RFTP70 = Backyard Football '08 RFUJA4 = Mahjong Kakutou Club Wii: Wi-fi Taiou RFVE52 = Monkey Mischief! Party Time RFVP52 = Monkey Mischief! 20 Games RFWE5Z = Safari Adventures Africa RFWPNK = Safari Adventures Africa RFYFMR = Fort Boyard RFZE41 = Imagine Fashion Party RFZP41 = Imagine Fashion Idol RG0E52 = Guitar Hero III Custom : Green Day Plus RG1552 = Guitar Hero III Custom : Weird Al Yankovic RG1E52 = Guitar Hero III Custom : Revenge RG2E52 = Guitar Hero III Custom : The Beatles Plus RG2EXS = Guilty Gear XX Accent Core RG2JJF = Guilty Gear XX Accent Core RG2PGT = Guilty Gear XX Accent Core RG2PXS = Guilty Gear XX Accent Core RG3E52 = Guitar Hero III Custom : Muse and Rush RG4152 = Guitar Hero III Custom : Sum 41 RG4E52 = Guitar Hero Mayan Apocalypse RG4JC0 = Let's Go By Train Shinkansen EX RG5EWR = Guinness World Records: The Videogame RG5PWR = Guinness World Records: The Videogame RG6E69 = Boogie SuperStar RG6P69 = Boogie SuperStar RG7EQH = City Builder RG8E41 = Petz Sports RG8P41 = Petz Sports: Dog Playground RG9E52 = Guitar Hero III Custom : Anarchy RG9E54 = Carnival Games: Mini Golf RG9P54 = Carnival Games: Mini Golf RGAE8P = Planet 51: The Game RGAP8P = Planet 51: The Game RGBE08 = Harvey Birdman: Attorney at Law RGBP08 = Harvey Birdman: Attorney at Law RGCEXS = MiniCopter: Adventure Flight RGCJJF = Petitcopter Wii Adventure Flight RGCM52 = Guitar Hero III Custom : Metallica RGCPGT = Radio Helicopter RGCS52 = Guitar Hero III Custom : ClasSick Edition RGDEA4 = Target: Terror RGDPA4 = Target: Terror RGEJJ9 = The World Of Golden Eggs Norinori Rhythm RGEK52 = Guitar Hero III Custom: Slipknot RGFE69 = The Godfather: Blackhand Edition RGFF69 = The Godfather: Blackhand Edition RGFI69 = The Godfather: Blackhand Edition RGFP69 = The Godfather: Blackhand Edition RGFS69 = The Godfather: Blackhand Edition RGGE52 = Guitar Hero III Custom : Rock The Games RGGJAF = Gegege No Kitarou Youkai Daiundoukai RGHC20 = Guitar Hero III Custom : Fail Edition RGHE51 = Guitar Hero III Custom : Aspero RGHE52 = Guitar Hero III: Legends of Rock RGHE60 = Guitar Hero III Custom: WTF Custom RGHE61 = I Fought The Law - GH3 RGHE62 = Sweet Home Alabama - GH3 RGHE69 = Guitar Hero III Custom : Legends of METAL RGHEMR = Guitar Hero III Custom : Modern Rock RGHI52 = Guitar Hero III Custom: Chimba RGHJ52 = Guitar Hero III Legends of Rock RGHK52 = Guitar Hero III Legends of Rock RGHP52 = Guitar Hero III: Legends of Rock RGHPOH = SingItStar Italian Greatest Hits RGHPS2 = Guitar Hero III Custom : J-Music RGHX52 = Guitar Hero III Custom: Anime's Alex Chan RGIJC8 = G1 Jockey Wii RGIPC8 = G1 Jockey Wii RGJE4Z = George of the Jungle: Search for the Secret RGJP7U = George of the Jungle: Search for the Secret RGKE52 = Guitar Hero III Custom : KoRn RGKENR = Kidz Sports: Crazy Golf RGKPNR = Crazy Mini Golf RGLE7D = Geometry Wars: Galaxies RGLP7D = Geometry Wars: Galaxies RGME5D = The Grim Adventures of Billy & Mandy RGMP5D = The Grim Adventures of Billy & Mandy RGNJAF = Gintama Yorozuya Tuve RGOJJ9 = The World of Golden Eggs Nissan Note Version RGPJAF = Anime Slot Revolution Pachi-Slot Kidou Senshi Gundam II Ai Senshi Hen RGQE70 = Ghostbusters: The Video Game RGQP70 = Ghostbusters: The Video Game RGRM52 = Guitar Hero III Custom: Rock & Metal RGSE8P = Ghost Squad RGSJ8P = Ghost Squad RGSP8P = Ghost Squad RGTE41 = GT Pro Series RGTJBL = GT Pro Series RGTP41 = GT Pro Series RGVE52 = Guitar Hero: Aerosmith RGVE99 = Guitar Hero Aerosmith Custom: NOT Aerosmith but... RGVJ52 = Guitar Hero: Aerosmith RGVP52 = Guitar Hero: Aerosmith RGWE41 = Rabbids Go Home RGWJ41 = Rabbids Go Home RGWP41 = Rabbids Go Home RGWX41 = Rabbids Go Home RGXE5D = Game Party RGXEFN = Guitar Hero III Custom: Meteo Last Custom RGXM52 = Guitar Hero III Custom : xMxExTxAxLx's Edition RGXP5D = Game Party RGYE5Z = Action Girlz Racing RGYPUG = Action Girlz Racing RGZC52 = Guitar Hero III Custom : Led Zeppelin RGZE52 = Guitar Hero III Custom : Shred Edition RGZE70 = Godzilla Unleashed RGZP70 = Godzilla Unleashed RH2E41 = Hell's Kitchen: The Video Game RH2P41 = Hell's Kitchen RH3E4Q = High School Musical 3: Senior Year Dance! RH3J4Q = High School Musical 3: Senior Year Dance! RH3P4Q = High School Musical 3: Senior Year Dance! RH4XUG = Hamster Heroes RH5EVN = Horse Life Adventures RH5PKM = Horse Life 2 RH6E69 = Harry Potter and the Half-Blood Prince RH6K69 = Harry Potter and the Half Blood Prince RH6P69 = Harry Potter and the Half-Blood Prince RH7J8P = Jissen Pachislot Hisshouhou! Sammy's Collection Hokuto no Ken Wii RH8E4F = Tomb Raider: Underworld RH8JEL = Tomb Raider: Underworld RH8P4F = Tomb Raider: Underworld RH8X4F = Tomb Raider: Underworld RH9JC8 = Harukanaru Toki no Naka de 4 RHAE01 = Wii Play RHAJ01 = Hajimete no Wii RHAK01 = Wii Play RHAP01 = Wii Play RHAW01 = Wii Play RHCE52 = The History Channel: Battle for the Pacific RHCP52 = The History Channel: Battle for the Pacific RHD222 = The House of The Dead 2 RHD333 = The House of the Dead 3 RHDE8P = The House of the Dead 2 & 3 Return RHDJ8P = The House of The Dead 2 & 3 Return RHDP8P = The House of the Dead 2 & 3 Return RHEEJJ = Professor Heinz Wolff's Gravity RHEPKM = Professor Heinz Wolff's Gravity RHFE5D = Happy Feet RHFP5D = Happy Feet RHGH52 = Guitar Hero III Custom : RandomHero's RHGP6Z = Agent Hugo: Lemoon Twist RHGX6Z = Agent Hugo: Lemoon Twist RHHJ8J = Suzumiya Haruhi no Gekidou RHIEXJ = Victorious Boxers: Revolution RHIJ41 = Hajime No Ippo Revolution RHIJJ9 = Hajime No Ippo Revolution RHIP41 = Victorious Boxers Challenge RHJJ13 = Ginsei Table Games Wii RHKE18 = Help Wanted: 50 Wacky Jobs RHKJ18 = Hataraku Hit RHKP18 = Job Island: Hard Working People RHLE4Z = World Championship Poker Featuring Howard Lederer: All-In RHLPGT = World Championship Poker Featuring Howard Lederer: All-In RHMEE9 = Harvest Moon: Magical Melody RHMP99 = Harvest Moon: Magical Melody RHNE70 = My Horse & Me RHNP70 = My Horse & Me RHOE8P = The House of the Dead: Overkill RHOJ8P = The House of The Dead: Overkill RHOP8P = The House of the Dead: Overkill RHPJ8N = Akko De Pon! Ikasama Hourouki RHQE4Q = Hannah Montana: Spotlight World Tour RHQP4Q = Hannah Montana: Spotlight World Tour RHQX4Q = Hannah Montana: Spotlight World Tour RHQY4Q = Hannah Montana: Spotlight World Tour RHRJ99 = Kateikyou Hitman Reborn! Dream Hyper Battle! Wii RHSE36 = Heatseeker RHSP36 = Heatseeker RHSX36 = Heatseeker RHSY36 = Heatseeker RHTE54 = Manhunt 2 RHTP54 = Manhunt 2 RHUE20 = Skate City Heroes RHUP20 = Skate City Heroes RHUP7J = Skate City Heroes RHVE5Z = Crazy Chicken Tales RHVPFR = Crazy Chicken Tales RHWE52 = Hot Wheels: Beat That! RHWP52 = Hot Wheels: Beat That! RHXE78 = Battle of the Bands RHXP78 = Battle of the Bands RHYJAF = Haneru no Tobira Wii RHZE41 = Petz Horsez 2 RHZP41 = Pippa Funnell: Ranch Rescue RI1POH = SingItStar Italian Party RI2E4Q = High School Musical: Sing It! RI2P4Q = Disney Sing It: High School Musical RI2POH = SingItStar Italian Party vol. 2 RI3E5D = The Ant Bully RI3P5D = The Ant Bully RI3POH = SingItStar Italian Top.it RI6ENR = Summer Sports 2: Island Sports Party RI6P41 = Summer Sports Party RI7E4Z = Monster Mayhem: Build and Battle RI8E41 = Brothers In Arms: Road to Hill 30 RI8P41 = Brothers In Arms: Road To Hill 30 RI9EGT = Diva Girls: Divas on Ice RI9PGT = Diva Girls: Princess On Ice RIAE52 = Ice Age: Dawn of the Dinosaurs RIAI52 = Ice Age 3: Dawn of the Dinosaurs RIAP52 = Ice Age 3: Dawn of the Dinosaurs RIBES5 = Igor the Game RIBPKM = Igor: The Game RICENR = Iron Chef America: Supreme Cuisine RIDE20 = Smiley World: Island Challenge RIDP7J = Smiley World: Island Challenge RIEEA4 = Karaoke Revolution Presents: American Idol Encore RIFEA4 = Karaoke Revolution Presents: American Idol Encore 2 RIGE54 = Go Diego Go! Great Dinosaur Rescue RIGP54 = Go, Diego, Go! Great Dinosaur Rescue RIHE8P = The Incredible Hulk RIHP8P = The Incredible Hulk RIIEQH = Kart Racer RIIPNG = Kart Racer RIIV = Riivolution RIJE69 = G.I. JOE: The Rise of Cobra RIJP69 = G.I. JOE: The Rise of Cobra RIKEQH = Truck Racer RIKPNG = Truck Racer RILJ18 = Puzzle Series Vol. 2: Illust Logic + Colorful Logic RIME36 = Impossible Mission RIMP6M = Impossible Mission RINE08 = Dead Rising: Chop Till You Drop RINJ08 = Dead Rising Zombie No Ikenie RINP08 = Dead Rising: Chop Till You Drop RIOPSU = Horrible Histories: Ruthless Romans RIPEAF = One Piece: Unlimited Adventure RIPJAF = One Piece: Unlimited Adventure RIPPAF = One Piece Unlimited Cruise 1: The Treasure Beneath the Waves RIQPUJ = Dancing on Ice RIRE8P = Iron Man RIRP8P = Iron Man RITFMR = Intervilles, le jeu officiel RIUJAF = One Piece Unlimited Cruise 2: Awakening of a Hero RIUPAF = One Piece Unlimited Cruise 2: Awakening of a Hero RIVEXJ = Ivy The Kiwi? RIVJAF = Ivy the Kiwi? RIVP99 = Ivy The Kiwi? RIWENR = Burger Island RIXE20 = Dodge Racing: Charger vs. Challenger RIXP7J = Dodge Racing: Charger vs Challenger RIYE52 = Space Camp RIYP52 = Space Camp RIZENR = Indianapolis 500 Legends RJ2E52 = 007: Quantum of Solace RJ2JGD = 007: Quantum of Solace RJ2P52 = 007: Quantum of Solace RJ3E20 = Jeep Thrills RJ3P7J = Jeep Thrills RJ4ENR = Jewel Master: Cradle of Rome RJ4PRM = Jewel Master: Cradle of Rome RJ6E69 = MySims Sky Heroes RJ6P69 = MySims Sky Heroes RJ7FWP = Télé 7 Jeux: Mots Fléchés RJ8E64 = Indiana Jones and the Staff of Kings RJ8P64 = Indiana Jones and the Staff of Kings RJ9E5Z = thinkSMART Family RJ9FMR = Think Logic Trainer RJ9PFR = Think Logic Trainer RJ9XML = Think Logic Trainer RJAD52 = Call of Duty: Modern Warfare - Reflex Edition RJAE52 = Call of Duty: Modern Warfare - Reflex Edition RJAP52 = Call of Duty: Modern Warfare - Reflex Edition RJAX52 = Call of Duty: Modern Warfare - Reflex Edition RJBJAF = Daikaijuu Battle Ultra Coliseum RJCE52 = Score International Baja 1000: World Championship Offroad Racing RJCP52 = Score International Baja 1000: World Championship Offroad Racing RJDPKM = My Animal Centre RJEE70 = Jenga World Tour RJEP70 = Jenga World Tour RJFE5G = Jillian Michaels' Fitness Ultimatum 2009 RJFP5G = Jillian Michaels' Fitness Ultimatum 2009 RJFPKM = Jillian Michaels' Fitness Ultimatum 2009 RJGJDA = Jinsei Game Wii RJHE52 = Madagascar Kartz RJHP52 = Madagascar Kartz RJIP6M = Ferrari: The Race Experience RJJE8P = Jambo! Safari Animal Rescue RJJG52 = Guitar Hero III Custom : JJ-KwiK's Edition RJJP8P = Jambo! Safari RJMERS = Jumper: Griffin's Story RJMPRS = Jumper: Griffin's Story RJNE20 = Build 'N Race RJOEXJ = Ju-on: The Grudge RJOJJ9 = Kyoufu Taikan Juon RJOP99 = Ju-On The Grudge RJPJA4 = Jikkyou Powerful Pro Yakyuu Wii RJQE5G = Pajama Sam: Don't Fear the Dark RJQP70 = Pajama Sam: No Need to Hide when it's Dark Outside RJREA4 = Dance Dance Revolution: Hottest Party 3 RJRJA4 = Dance Dance Revolution: MUSIC FIT RJRPA4 = Dance Dance Revolution: Hottest Party 3 RJSENR = Kawasaki Jet Ski RJSPNR = Kawasaki Jet Ski RJSPUG = Kawasaki Jet Ski RJSXUG = Kawasaki Jet Ski RJTJ01 = Minna no Joushiki Ryoku TV RJVEGN = Hysteria Hospital: Emergency Ward RJVPGN = Hysteria Hospital: Emergency Ward RJWJEL = Jawa mammoth And A Secret Stone RJXE5G = Go Play Lumberjacks RJXXFR = Go Play Lumberjacks RJYE5Z = Doctor Fizzwizzle's Animal Rescue RJZP7U = SNK Arcade Classics Volume 1 RK2EEB = Trauma Center: New Blood RK2JEB = Trauma Center: New Blood RK2P01 = Trauma Center: New Blood RK3J01 = And-Kensaku RK4JAF = Kekkaishi RK5E01 = Kirby's Epic Yarn RK5J01 = Keito no Kirby RK5K01 = Kirby's Epic Yarn RK5P01 = Kirby's Epic Yarn RK6E18 = Marble Saga: Kororinpa RK6J18 = Kororinpa 2 RK6P18 = Marbles! Balance Challenge RK7J0A = Ougon no Kizuna RK8E54 = Major League Baseball 2K8 RK9EA4 = Karaoke Revolution RK9PA4 = Karaoke Revolution RKAE6K = Ultimate Shooting Collection RKAJMS = Milestone Shooting Collection RKAK8M = Milestone Shooting Collection Karous Wii RKAP6K = Ultimate Shooting Collection RKBE41 = Cranium Kabookii RKBP41 = Cranium Kabookii RKDEEB = Trauma Center: Second Opinion RKDJEB = Trauma Center: Second Opinion RKDJG9 = Kamen Rider: Climax Heroes W RKDP01 = Trauma Center: Second Opinion RKDPEB = Trauma Center: Second Opinion RKEENR = Cate West: The Vanishing Files RKEPGN = Cate West: The Vanishing Files RKEPNR = Cate West: The Vanishing Files RKFEH4 = The King of Fighters Collection: The Orochi Saga RKFKZA = King of Fighters Collection: The Orochi Saga RKFP7U = King of Fighters Collection: The Orochi Saga RKGEGY = Bratz Kidz: Slumber Party RKGPGY = Bratz: Kidz Party RKHE52 = Kung Fu Panda: Legendary Warriors RKHP52 = Kung Fu Panda: Legendary Warriors RKIENR = Kidz Sports: Ice Hockey RKIPUG = Kidz Sports: Ice Hockey RKJJ0Q = 250 Mannin no Kanken Wii de Tokoton Kanji Nou RKKE6K = Heavenly Guardian RKLEG9 = Coraline RKLPG9 = Coraline RKME5D = Mortal Kombat: Armageddon RKMP5D = Mortal Kombat: Armageddon RKNJ2N = Kanken Wii: Kanji Ou Kettei Sen RKOJBL = Relaxuma: Minna de Goyururi Seikatsu RKPE52 = Kung Fu Panda RKPJ52 = Kung Fu Panda RKPK52 = Kung Fu Panda RKPP52 = Kung Fu Panda RKPV52 = Kung Fu Panda RKPY52 = Kung Fu Panda RKQENR = Candace Kane's Candy Factory RKSENR = Kidz Sports: Basketball RKSPUG = Kidz Sports: Basketball RKTENR = Kidz Sports: International Soccer RKTXUG = Kidz Sports: International Football RKVE54 = The BIGS 2 RKVP54 = The Bigs 2: Baseball RKWJ18 = Jigsaw Puzzle Kyo-no Wan Ko RKXE69 = Rock Band RKXP69 = Rock Band RKYE20 = Army Men: Soldiers of Misfortune RKYP20 = Army Men: Soldiers of Misfortune RKYP7J = Army Men: Soldiers of Misfortune RKZEA4 = Lost in Blue: Shipwrecked RKZJA4 = Survival Kids Wii RKZPA4 = Lost in Blue: Shipwrecked RL2E78 = Gallop & Ride! RL2HMN = Horse & Pony: My Riding Stables RL2HMR = Horse & Pony: My Riding Stables RL2PFR = Horse & Pony: My Riding Stables RL3EMJ = Luxor 3 RL4E64 = LEGO Indiana Jones 2: The Adventure Continues RL4P64 = LEGO Indiana Jones 2: The Adventure Continues RL5E52 = iCarly RL5P52 = iCarly RL6E69 = NERF N-Strike Elite RL7E69 = Littlest Pet Shop: Friends RL7P69 = Littlest Pet Shop: Friends RL8E54 = MLB Power Pros 2008 RL9ESD = Guitar Hero Linkin Park RL9PHZ = King of Pool RLADMR = Deal or No Deal: The Banker Is Back RLAE20 = Deal or No Deal RLAPMR = Deal or No Deal: The Banker Is Back RLBEWR = LEGO Batman: The Videogame RLBPWR = LEGO Batman: The Videogame RLCP7J = Love is... in bloom RLDEGY = Legend of the Dragon RLDPFK = Legend Of The Dragon RLEEFS = Ten Pin Alley 2 RLEPFS = Ten Pin Alley 2 RLFE64 = Star Wars The Clone Wars: Lightsaber Duels RLFP64 = Star Wars The Clone Wars: Lightsaber Duels RLGE64 = LEGO Star Wars: The Complete Saga RLGJ52 = LEGO Star Wars: The Complete Saga RLGP64 = LEGO Star Wars: The Complete Saga RLHE52 = Little League World Series Baseball 2008 RLHP52 = Little League World Series Baseball 2008 RLIE64 = LEGO Indiana Jones: The Original Adventures RLIL78 = Guitar Hero 2nd Custom RLIP64 = LEGO Indiana Jones: The Original Adventures RLJEHJ = Line Rider 2: Unbound RLJPKM = Line Rider Freestyle RLKEGY = Code Lyoko: Quest for Infinity RLKPFK = Code Lyoko: Quest for Infinity RLLP70 = Go West: A Lucky Luke Adventure RLMJH4 = Metal Slug Complete RLNEVN = Survivor RLNFMR = Survivor RLNHMR = Survivor RLNIMR = Survivor RLNPMR = Survivor RLPE69 = Littlest Pet Shop RLPP69 = Littlest Pet Shop RLQE52 = Big League Sports RLQP52 = World Championship Sports RLRE4F = Tomb Raider: Anniversary RLRJEL = Tomb Raider: Anniversary RLRP4F = Tomb Raider: Anniversary RLSE8P = Alien Syndrome RLSP8P = Alien Syndrome RLTENR = London Taxi: Rush Hour RLTPNR = London Taxi: Rush Hour RLTXUG = London Taxi: Rush Hour RLUE4Q = Disney's Bolt RLUP4Q = Bolt RLUX4Q = Bolt RLUY4Q = Bolt RLVE78 = Avatar: The Last Airbender RLVP78 = Avatar: The Legend of Aang RLWE78 = Ratatouille RLWJ78 = Ratatouille RLWP78 = Ratatouille RLWW78 = Ratatouille RLWX78 = Ratatouille RLWY78 = Ratatouille RLWZ78 = Ratatouille RLXEMJ = Luxor: Pharaoh's Challenge RLXP36 = Luxor: Pharaoh's Challenge RLYEWR = Looney Tunes: Acme Arsenal RLYPWR = Looney Tunes: Acme Arsenal RLZE4Z = Defendin' De Penguin RLZP4Z = Defendin' De Penguin RLZPXT = Defendin' De Penguin RM2E69 = Medal of Honor: Heroes 2 RM2J13 = Medal of Honor: Heroes 2 RM2P69 = Medal of Honor: Heroes 2 RM2U69 = Medal of Honor: Heroes 2 RM2X69 = Medal of Honor: Heroes 2 RM3E01 = Metroid Prime 3: Corruption RM3J01 = Metroid Prime 3: Corruption RM3P01 = Metroid Prime 3: Corruption RM4E41 = Monster 4x4: World Circuit RM4J41 = Monster 4x4: World Circuit RM4P41 = Monster 4x4: World Circuit RM5E7D = The Mummy: Tomb of the Dragon Emperor RM5P7D = The Mummy: Tomb Of The Dragon Emperor RM6EEB = Baroque RM6P99 = Baroque RM7E4F = Monster Lab RM7P4F = Monster Lab RM8E01 = Mario Party 8 RM8J01 = Mario Party 8 RM8K01 = Mario Party 8 RM8P01 = Mario Party 8 RM9EGM = Mushroom Men: The Spore Wars RM9PGM = Mushroom Men: The Spore Wars RMAE01 = Mario Power Tennis RMAJ01 = Mario Power Tennis RMAP01 = Mario Power Tennis RMBE01 = Mario Super Sluggers RMBJ01 = Super Mario Stadium: Family Baseball RMCC01 = Mario Kart Wii (Custom) RMCE01 = Mario Kart Wii RMCE02 = Wiimms MKW Fun 2010-02.p RMCE03 = Wiimms MKW Fun 2010-10.p RMCE04 = Wiimms MKW Fun 2010-12.p RMCE05 = Wiimms MKW Fun 2010-12.p RMCE06 = Wiimms MKW Fun 2010-12.ntsc RMCE07 = Wiimms MKW Retro 2011-02.ntsc RMCE08 = Wiimms MKW Fun 2011-03.ntsc RMCE09 = Wiimms MKW Fun 2011-06.ntsc RMCE10 = Wiimms MKW Fun 2011-07.ntsc RMCE11 = Wiimms MKW Fun 2011-08.ntsc RMCE12 = Wiimms MKW Fun 2011-11.ntsc RMCE13 = Wiimms MKW Fun 2012-01.ntsc RMCE14 = Wiimms MKW Revival 2012-02.ntsc RMCE15 = Wiimms MKW Boost 2012-03.ntsc RMCE16 = Wiimms MKW Fun 2012-05.ntsc RMCE17 = Wiimms MKW Fun 2012-09.ntsc RMCE18 = Wiimms MKW N64 2012-10.ntsc RMCE19 = Wiimms MKW Fun 2012-12.ntsc RMCE20 = Wiimms MKW Fun 2013-04.ntsc RMCE21 = Wiimms MKW Fun 2013-09.ntsc RMCE22 = Wiimms MKW Fun 2013-10.ntsc RMCE23 = Wiimms MKW Fun 2014-01.ntsc RMCE24 = Wiimms MKW Retro 2014-02.ntsc RMCE25 = Wiimms MKW Fun 2014-04.ntsc RMCE26 = Wiimms MKW Fun 2014-11.ntsc RMCE65 = Mario Kart Wii: Double Dash 64 RMCE66 = Mizy's Texture Pack RMCE67 = Rookie's Texture & Music Pack RMCE68 = Character Kart Wii RMCE69 = Venom Kart Wii RMCE70 = Stickboy Kart Wii RMCE71 = Funky's Riivolution RMCE72 = CtocKart Wii RMCE73 = Mario Kart Adventures RMCE74 = Mario Kart Adventures RMCE75 = Cam, Tom and Troy's CTGP Pack RMCE76 = Pro CT Pack RMCE77 = SpyKid's CT Pack RMCE78 = Mario Kart: Double Dash!! Wii RMCE79 = Super Mario Kart Wii RMCE80 = Mario Kart 64 Wii RMCE81 = Spade's Custom Track Pack RMCE82 = HD's Retro Pack RMCE83 = Glitch Kart Wii RMCE84 = Legend's Awesome CT Pack RMCE85 = Project Double Dash!! RMCE86 = Newer Mario Kart Wii Revolution!: Backward Circuits RMCE87 = Newer Mario Kart Wii Revolution!: Sunset Sun & Dark Moon RMCE88 = Kaizo Kart Wii RMCE89 = Mario Kart Extra RMCE90 = Mario Kart QZW RMCE91 = Medal Kart 64 RMCE92 = MKWLH100's Custom Track Pack RMCE93 = MKW Hack Pack RMCE94 = Custom Track Kart Wii RMCE95 = Soarin's CT Pack X RMCE96 = Mario Kart 6 RMCE97 = Mario Kart Wii Awesomeness 2 RMCE98 = Mario Kart Wii Awesomeness RMCE99 = ReedyCustomPack Ultimate RMCEA1 = Mario Kart Adventures v0.8 RMCECT = Mario Kart Wii CTGP Revolution RMCEDK = Darky Kart Wii RMCEG2 = Mario Kart Wii CTGP Revolution RMCEGP = Mario Kart Wii CTGP Revolution RMCEWS = Wine's CT Pack RMCJ01 = Mario Kart Wii RMCJ12 = Wiimms MKW Fun 2011-11 RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCK01 = Mario Kart Wii RMCP01 = Mario Kart Wii RMCP02 = Wiimms MKW Fun 2010-02.p RMCP03 = Wiimms MKW Fun 2010-10.p RMCP04 = Wiimms MKW Fun 2010-12.p RMCP05 = Custom Mario Kart Wii RMCP06 = Wiimms MKW Fun 2010-12.pal RMCP07 = Wiimms MKW Retro 2011-02.pal RMCP08 = Wiimms MKW Fun 2011-03.pal RMCP09 = Wiimms MKW Fun 2011-06.pal RMCP10 = Wiimms MKW Fun 2011-07.pal RMCP11 = Wiimms MKW Fun 2011-08.pal RMCP12 = Wiimms MKW Fun 2011-11.pal RMCP13 = Wiimms MKW Fun 2012-01.pal RMCP14 = Wiimms MKW Revival 2012-02.pal RMCP15 = Wiimms MKW Boost 2012-03.pal RMCP16 = Wiimms MKW Fun 2012-05.pal RMCP17 = Wiimms MKW Fun 2012-09.pal RMCP18 = Wiimms MKW N64 2012-10.pal RMCP19 = Wiimms MKW Fun 2012-12.pal RMCP20 = Wiimms MKW Fun 2013-04.pal RMCP21 = Wiimms MKW Fun 2013-09.pal RMCP22 = Wiimms MKW Fun 2013-10.pal RMCP23 = Wiimms MKW Fun 2014-01.pal RMCP24 = Wiimms MKW Retro 2014-02.pal RMCP25 = Wiimms MKW Fun 2014-04.pal RMCP26 = Wiimms MKW Fun 2014-11.pal RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCX = Mario Kart Wii CTGP Revolution Channel RMDE69 = Madden NFL 07 RMDP69 = Madden NFL 07 RMEJDA = Major Dream RMFE68 = AMF Bowling Pinbusters! RMFP68 = AMF Bowling Pinbusters! RMGC01 = Super Mario Galaxy RMGE01 = Super Mario Galaxy RMGE52 = Guitar Hero III Custom : Megadeth RMGJ01 = Super Mario Galaxy RMGK01 = Super Mario Galaxy RMGP01 = Super Mario Galaxy RMGR01 = Super Mario Galaxy RMHC08 = Monster Hunter Tri (Custom) RMHE08 = Monster Hunter Tri RMHJ08 = Monster Hunter Tri RMHP08 = Monster Hunter Tri RMIE20 = Margot's Word Brain RMIP7J = Margot's Word Brain RMJJC8 = Mah-jong Rally Wii RMKE01 = Mario Sports Mix RMKE02 = Custom Kart 1 RMKJ01 = Mario Sports Mix RMKP01 = Mario Sports Mix RMLEH4 = Metal Slug Anthology RMLJH4 = Metal Slug Complete RMLK52 = Metal Slug Complete RMLP7U = Metal Slug Anthology RMLPH4 = Metal Slug Anthology RMME7U = Mercury Meltdown Revolution RMMJ7U = Tama-run RMMP52 = Guitar Hero III Custom : Metal Mayhem RMMP7U = Mercury Meltdown Revolution RMNDFR = My Pet Hotel RMNHMN = My Pet Hotel RMNHMR = My Pet Hotel RMNPFR = My Pet Hotel RMOE52 = Monster Jam RMOP52 = Monster Jam RMPE54 = MLB Power Pros RMPP54 = MLB Power Pros RMQENR = Myth Makers: Orbs of Doom RMQPUG = Myth Makers: Orbs of Doom RMQXUG = Myth Makers: Orbs of Doom RMRE5Z = Cocoto Magic Circus RMRPNK = Cocoto Magic Circus RMRXNK = Cocoto Magic Circus RMSE52 = Marvel: Ultimate Alliance 2 RMSP52 = Marvel: Ultimate Alliance 2 RMTJ18 = Momotarô Dentetsu 16 RMUE52 = Marvel: Ultimate Alliance RMUJ2K = Marvel: Ultimate Alliance RMUP52 = Marvel: Ultimate Alliance RMVE69 = Medal of Honor: Vanguard RMVP69 = Medal of Honor: Vanguard RMVX69 = Medal of Honor: Vanguard RMWE20 = M&M's Kart Racing RMWP20 = M&M's Kart Racing RMXE78 = MX vs. ATV: Untamed RMXF78 = MX vs. ATV: Untamed RMXP78 = MX vs. ATV: Untamed RMYE5Z = Myth Makers: Super Kart GP RMYPUG = Myth Makers: Super Kart GP RMYXUG = Myth Makers: Super Kart GP RMZE5Z = Myth Makers: Trixie in Toyland RMZPUG = Myth Makers: Trixie in Toyland RN2EAF = Namco Museum Remix RN2K70 = Namco Museum Remix RN2P70 = Namco Museum Remix RN3E78 = Nicktoons: Attack of the Toybots RN3J78 = Nicktoons: Attack of the Toybots RN3P78 = Nicktoons: Attack of the Toybots RN3X78 = Nicktoons: Attack Of The Toybots RN4E41 = Dawn of Discovery RN4P41 = ANNO: Create a New World RN5E78 = The Naked Brothers Band: The Video Game RN5P78 = The Naked Brothers Band: The Video Game RN6ENR = North American Hunting Extravaganza RN6P7J = North American Hunting Extravaganza RN7E78 = Neighborhood Games RN7P78 = Big Family Games RN8JC8 = Nobunaga no Yabou Kakushin with Power-Up Kit RN9E4F = Escape from Bug Island RN9JEL = Necro-Nesia RN9P4F = Escape From Bug Island RNAE69 = NCAA Football 09 RNBE69 = NBA Live 08 RNBP69 = NBA Live 08 RNBX69 = NBA Live 08 RNCEH4 = SNK Arcade Classics Volume 1 RNCPH4 = SNK Arcade Classics Volume 1 RNDJAF = Nodame Cantabile Dream Orchestra RNEEDA = Naruto Shippuden: Clash of Ninja Revolution 3 RNEJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX 3 RNEPDA = Naruto Shippuden: Clash of Ninja Revolution 3 RNFE69 = Madden NFL 08 RNFP69 = Madden NFL 08 RNGJ99 = Negima!? Neo-Pactio Fight!! RNHE41 = No More Heroes RNHJ99 = No More Heroes RNHK8M = No More Heroes RNHP41 = No More Heroes RNHP99 = No More Heroes RNIPGT = Mind, Body & Soul: Nutrition Matters RNJE4F = Mini Ninjas RNJP4F = Mini Ninjas RNKE69 = NERF N-Strike RNKP69 = NERF N-Strike RNLE54 = NHL 2K9 RNLP54 = NHL 2K9 RNME5Z = Ninjabread Man RNMPUG = Ninjabread Man RNMXUG = Ninjabread Man RNNE4Q = The Chronicles of Narnia: Prince Caspian RNNJ4Q = The Chronicles of Narnia: Prince Caspian RNNP4Q = The Chronicles of Narnia: Prince Caspian RNNX4Q = The Chronicles of Narnia: Prince Caspian RNNY4Q = The Chronicles of Narnia: Prince Caspian RNNZ4Q = The Chronicles of Narnia: Prince Caspian RNOJ01 = Another Code R Kioku no Tobira RNOP01 = Another Code: R - A Journey into Lost Memories RNPE69 = Need for Speed: ProStreet RNPJ13 = Need for Speed: ProStreet RNPK69 = Need for Speed: ProStreet RNPP69 = Need for Speed: ProStreet RNPX69 = Need for Speed: ProStreet RNPY69 = Need for Speed: ProStreet RNRE41 = Nitro Bike RNRJ41 = Nitro Bike RNRP41 = Nitro Bike RNSD69 = Need for Speed: Carbon RNSE69 = Need for Speed Carbon RNSF69 = Need for Speed: Carbon RNSJ13 = Need for Speed: Carbon RNSP69 = Need for Speed Carbon RNSX69 = Need for Speed: Carbon RNUE8P = Nancy Drew: The White Wolf of Icicle Creek RNVE5Z = Anubis II RNVP5Z = Anubis II RNVPUG = Anubis II RNVXUG = Anubis II RNWJAF = Namco Carnival RNWKAF = Namco Museum Remix RNXEDA = Naruto: Clash of Ninja Revolution RNXJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX RNXPDA = Naruto: Clash of Ninja Revolution RNYEDA = Naruto: Clash of Ninja Revolution 2 RNYJDA = Naruto Shippuuden: Gekitou Ninja Taisen EX 2 RNYPDA = Naruto: Clash of Ninja Revolution 2 RNZE69 = Ninja Reflex RNZJ13 = Ninja Reflex RNZK69 = Ninja Reflex RNZP69 = Ninja Reflex RO2E7N = Ford Racing Off Road RO2P7N = Off Road RO3EXJ = Little King's Story RO3J99 = Little King's Story RO3P99 = Little King's Story RO4JDA = Toshinden RO5E52 = Hot Wheels: Battle Force 5 RO5P52 = Hot Wheels: Battle Force 5 RO7E7D = Legend of Spyro: The Eternal Night RO7P7D = The Legend of Spyro: The Eternal Night RO8E7D = Legend of Spyro: Dawn of the Dragon RO8P7D = The Legend of Spyro: Dawn of the Dragon RO8X7D = The Legend of Spyro: Dawn of the Dragon RO9EFS = Aqua Panic! RO9PNK = Aqua Panic! ROAE36 = Overlord: Dark Legend ROAP36 = Overlord: Dark Legend ROBE7U = Obscure: The Aftermath ROBPPL = Obscure 2 ROCE5Z = Cocoto Kart Racer ROCPNK = Cocoto Kart Racer RODE01 = WarioWare: Smooth Moves RODJ01 = WarioWare: Smooth Moves RODK01 = WarioWare: Smooth Moves RODP01 = WarioWare: Smooth Moves ROEEJZ = Hotel for Dogs ROEPGT = Hotel For Dogs ROFE5Z = Offroad Extreme Special Edition ROFPUG = Offroad Extreme! ROFXUG = Offroad Extreme! ROGE78 = Tak and the Guardians of Gross ROGP78 = Tak and the Guardians of Gross ROHJAF = Happy Dance Collection ROJE52 = Rapala: We Fish ROJP52 = Rapala: We Fish ROKJ18 = Karaoke Joysound Wii ROLE8P = Mario & Sonic at the Olympic Winter Games ROLJ01 = Mario & Sonic at the Olympic Winter Games ROLK01 = Mario & Sonic at the Olympic Winter Games ROLP8P = Mario & Sonic at the Olympic Winter Games ROMESD = Monster Hunter G (English Patched) ROMJ08 = Monster Hunter G RONEG9 = Onechanbara: Bikini Zombie Slayers RONJG9 = Onechanbara Revolution RONPG9 = Onechanbara: Bikini Zombie Slayers ROPE41 = Open Season ROPP41 = Open Season ROQJEP = Baroque For Wii ROSJ01 = Takt of Magic ROTE20 = Twin Strike: Operation Thunder ROTP20 = Twin Strike: Operation Thunder ROTP7J = Twin Strike: Operation Thunder ROUJAF = One Piece Unlimited Cruise 1: The Treasure Beneath the Waves ROUPAF = One Piece Unlimited Cruise 1: The Treasure Beneath the Waves ROVE6U = Playmobil: Circus ROVPHM = Playmobil: Circus ROWE08 = Okami ROWJ08 = Okami ROWP08 = Okami ROXE20 = Order Up! ROXP7J = Order Up! ROXX7J = Order Up! ROYE41 = Cloudy with a Chance of Meatballs ROYP41 = Cloudy with a Chance of Meatballs ROYX41 = Cloudy with a Chance of Meatballs RP2E69 = Smarty Pants RP2P69 = Smarty Pants RP3JAF = Pro Golfer Saru RP4E69 = MySims Party RP4J13 = Boku To Sim No Machi Party RP4P69 = MySims Party RP5JA4 = Jikkyou Powerful Pro Baseball 15 RP6E41 = Petz Crazy Monkeyz RP6P41 = Petz Monkey Madness RP7E52 = Pirates: Hunt for Blackbeard's Booty RP7P52 = Pirates: Hunt for Blackbeard's Booty RP9ERS = Space Chimps RP9PRS = Space Chimps RP9XRS = Space Chimps RPAF70 = Kid Paddle: Lost in the Game RPBE01 = Pokémon Battle Revolution RPBJ01 = Pokémon Battle Revolution RPBP01 = Pokémon Battle Revolution RPCE20 = Puzzler Collection RPCP41 = Puzzler Collection RPCX7J = Puzzler Collection RPDEGN = PDC World Championship Darts 2008 RPDPGN = PDC World Championship Darts 2008 RPFE52 = Pitfall: The Big Adventure RPFP52 = Pitfall: The Big Adventure RPFU52 = Pitfall: The Big Adventure RPGE5D = Rampage: Total Destruction RPGP5D = Rampage: Total Destruction RPHPPN = Peppa Pig: The Game RPIE52 = Pimp My Ride RPIP52 = Pimp My Ride RPJE7U = Arc Rise Fantasia RPJJ99 = Arc Rise Fantasia RPKE52 = World Series of Poker: Tournament of Champions 2007 Edition RPKP52 = World Series of Poker: Tournament of Champions 2007 Edition RPLE52 = Rapala Tournament Fishing RPLP52 = Rapala Tournament Fishing RPMJA4 = Jikkyou Powerful Pro Major League 2 RPNE78 = Paws & Claws: Pet Resort RPOEC8 = Opoona RPOJC8 = Opoona RPOPC8 = Opoona RPPE41 = Prince of Persia: Rival Swords RPPP41 = Prince of Persia: Rival Swords RPQES5 = Pool Party RPQPS5 = Pool Party RPSE4Q = Disney Princess: Enchanted Journey RPSJ4Q = Disney Princess Wii RPSP4Q = Disney Princess: Enchanted Journey RPTD52 = Puppy Luv RPTE52 = Puppy Luv: Your New Best Friend RPTP52 = Puppy Luv: Your New Best Friend RPUJ8P = Puyo Puyo! 15th Anniversary RPVE4Z = Purr Pals RPVPKM = Purr Pals RPWX41 = Prince of Persia: The Forgotten Sands RPWZ41 = Prince of Persia: The Forgotten Sands RPXE69 = EA Playground RPXJ13 = EA Playground RPXP69 = EA Playground RPYE9B = Super Swing Golf RPYJ9B = Super Swing Golf RPYP9B = Pangya! Golf With Style RPZJA4 = Jikkyou Powerful Pro Baseball Wii Ketteiban RQ2JK6 = Crazy Climber Wii RQ3PGN = PDC World Championship Darts 2009 RQ4E78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ4J78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ4P78 = SpongeBob SquarePants: Creature from the Krusty Krab RQ5E5G = Mad Dog McCree Gunslinger Pack RQ5P5G = Mad Dog McCree Gunslinger Pack RQ5X5G = Mad Dog McCree Gunslinger Pack RQ6EJJ = Cursed Mountain RQ6PKM = Cursed Mountain RQ6XKM = Cursed Mountain RQ7E20 = Martian Panic RQ7PXT = Martian Panic RQ8E08 = MotoGP 08 RQ8P08 = MotoGP RQ9E69 = NBA Live 09 All-Play RQ9F69 = NBA Live 09 All-Play RQ9P69 = NBA Live 09 All-Play RQ9S69 = NBA Live 09 All-Play RQBENR = Kawasaki Quad Bikes RQBPNR = Kawasaki Quad Bikes RQBPUG = Kawasaki Quad Bikes RQBXUG = Kawasaki Quad Bikes RQCEAF = The Munchables RQCJAF = Tabemon RQEE6U = Agatha Christie: Evil Under the Sun RQEP6V = Agatha Christie: Evil Under the Sun RQFE6U = Safecracker: The Ultimate Puzzle Adventure RQFP6V = Safecracker RQGE69 = MySims Racing RQGJ13 = MySims Racing RQGJ69 = Boku To Sim No Machi Racing RQGP69 = MySims Racing RQIJ01 = Minna ga Shuyaku no NHK Kouhaku Quiz Kassen RQJE7D = Crash of the Titans RQJP7D = Crash of the Titans RQJX7D = Crash of the Titans RQKE41 = Circus Games RQKP41 = Fun Fair Party RQLE64 = Star Wars The Clone Wars: Republic Heroes RQLP64 = Star Wars The Clone Wars: Republic Heroes RQMEVN = Ocean Commander RQMPVN = Ocean Commander RQNEWR = Scooby-Doo! First Frights RQNPWR = Scooby-Doo! First Frights RQOE69 = Spore Hero RQOJ13 = Spore Hero RQOP69 = Spore Hero RQPE52 = Cabela's Trophy Bucks RQPP52 = Cabela's Trophy Bucks RQPZ52 = Cabela's Monster Buck Hunter RQQE52 = Guitar Hero III Custom : Queen RQQE70 = Backyard Football '09 RQREXJ = The Sky Crawlers: Innocent Aces RQRJAF = The Sky Crawlers: Innocent Aces RQRPAF = The Sky Crawlers: Innocent Aces RQSE4Z = Pinball Hall of Fame: The Gottlieb Collection RQSP6M = Gottlieb Pinball Classics RQTE6U = Agatha Christie: And Then There Were None RQTP6V = Agatha Christie: And Then There Were None RQUEFS = Super PickUps RQVE20 = Pacific Liberator RQVP20 = Pacific Liberator RQWEG9 = Puzzle Quest: Challenge of the Warlords RQWPG9 = Puzzle Quest: Challenge of the Warlords RQXP70 = Asterix at the Olympic Games RQYENR = Fantasy Aquarium World RQZE41 = Monster 4x4: Stunt Racer RQZP41 = Monster 4x4: Stunt Racer RR2ENR = Rig Racer 2 RR2PNR = Rig Racer 2 RR2PUG = Rig Racer 2 RR3EA4 = Ultimate Party Challenge RR3JA4 = Family Challenge Wii RR3PA4 = Let's Party! RR4EGY = Build-A-Bear Workshop: A Friend Fur All Seasons RR4PFK = Build-A-Bear Workshop: A Friend Fur All Seasons RR5E70 = Ready 2 Rumble Revolution RR5P70 = Ready 2 Rumble Revolution RR7PVP = Real Madrid The Game RR8PUJ = International Athletics RR9E78 = WWE SmackDown vs. Raw 2009 RRAE5Z = Rock 'N' Roll Adventures RRAPUG = Rock 'N' Roll Adventures RRAXUG = Rock 'N' Roll Adventures RRBE41 = Rayman Raving Rabbids RRBJ41 = Rayman Raving Rabbids RRBP41 = Rayman Raving Rabbids RRCE52 = Barbie Horse Adventures: Riding Camp RRCP52 = Barbie Horse Adventures: Riding Camp RRDE69 = Rock Band Track Pack: Vol. 2 RRDP69 = Rock Band Song Pack 2 RREE69 = Rock Band Track Pack: Vol. 1 RREP69 = Rock Band Song Pack 1 RRFEE9 = Reel Fishing: Angler's Dream RRFPE9 = Reel Fishing: Angler's Dream RRGE52 = Madagascar: Escape 2 Africa RRGP52 = Madagascar 2: Escape 2 Africa RRHPUJ = Mary King's Riding School 2 RRHXUJ = Mary King's Riding School 2 RRIPTV = Paint Party RRJFMR = Ready Steady Cook: The Game RRJIMR = Ready Steady Cook: The Game RRJPMR = Ready Steady Cook: The Game RRKE70 = Alone in the Dark RRKP70 = Alone in the Dark RRLE78 = Bratz: Girlz Really Rock RRLP78 = Bratz: Girlz Really Rock RRLX78 = Bratz: Girlz Really Rock RRLY78 = Bratz: Girlz Really Rock RRLZ78 = Bratz: Girlz Really Rock RRME69 = Hasbro: Family Game Night RRMP69 = Hasbro: Family Game Night RRMX69 = Hasbro: Family Game Night RRPE41 = The Price Is Right RRQE52 = Shrek's Carnival Craze Party Games RRQP52 = Shrek's Carnival Craze Party Games RRQX52 = Shrek's Carnival Craze Party Games RRRE5Z = Real Heroes: Firefighter RRRPRM = Real Heroes: Firefighter RRSE4Q = Meet The Robinsons RRSJ4Q = Meet The Robinsons RRSP4Q = Meet The Robinsons RRSX4Q = Meet The Robinsons RRTE52 = Block Party 20 Games RRTP52 = Block Party! 20 Games RRUEJF = Winter Sports 2: The Next Challenge RRUFRT = Winter Sports 2009: The Next Challenge RRUJJF = Winter Sports 2009 The Next Challenge RRUPRT = Winter Sports 2009: The Next Challenge RRVENR = Battle Rage: Mech Conflict RRVPNR = Battle Rage: The Robot Wars RRWJAF = Super Robot Taisen NEO RRXE5Z = Monster Trux Arenas: Special Edition RRXPUG = Monster Trux Arenas RRXXUG = Monster Trux Arenas RRYEHG = Rogue Trooper: Quartz Zone Massacre RRYPHY = Rogue Trooper: Quartz Zone Massacre RRZEGY = Rubik's World RRZPGY = Rubik's Puzzle World RS2E20 = Ultimate Duck Hunting RS2EGJ = Ultimate Duck Hunting RS2PGJ = Ultimate Duck Hunting RS3E52 = Spider-Man 3 RS3J52 = Spider-Man 3 RS3P52 = Spider-Man 3 RS3X52 = Spider-Man 3 RS4EXS = Castle of Shikigami III RS4JJF = Shikigami No Shiro III RS4PXS = Castle Of Shikigami III RS5EC8 = Samurai Warriors: Katana RS5JC8 = Sengoku Musou KATANA RS5PC8 = Samurai Warriors: Katana RS7J01 = Eyeshield 21 Field Saikyo no Senshi Tachi RS8J8N = Shanghai RS9E8P = Sonic Riders: Zero Gravity RS9J8P = Sonic Riders: Shooting Star Story RS9P8P = Sonic Riders: Zero Gravity RSAE78 = SpongeBob's Atlantis SquarePantis RSAP78 = SpongeBob's Atlantis SquarePantis RSBE01 = Super Smash Bros. Brawl RSBE02 = Super Smash Bros. Project M Red Version RSBE03 = Super Smash Bros. Brawl DX RSBE04 = Super Smash Bros. Project M+ RSBE05 = Super Smash Bros. Project M Patt Edition RSBE06 = Darkon360's Brawl Hack Pack RSBE07 = Super Smash Bros. Project M: Theytah's Custom Build RSBE08 = Smash Bros. Infinite RSBE09 = Springboy64's Brawl Hack Pack RSBE10 = Brawl Ying Yang Edition RSBE11 = Professor MGW's Tournament Hack Pack #1 RSBE12 = Professor MGW's Tournament Hack Pack #2 RSBE13 = Professor MGW's Hack Pack #3 RSBE14 = Super Smash Bros. Brawl- Zeus RSBE15 = Super Smash Bros. Brawl Minus Mugen RSBE16 = Super Smash Bros. Brawl Shock RSBE17 = Super Smash Bros. Brawl - Battlefield Build RSBE18 = Super Smash Bros. Project M: Tournament Hack Pack RSBE19 = Super Smash Bros. Project M: Fully Dressed Edition RSBE20 = Pikezer's BrawlEx Pack RSBE21 = Calabrel's Custom Project M Build RSBE22 = Project M: Rage83's Competitive Custom Build RSBE23 = Super Smash Bros. Project M: Justice Build RSBE24 = Super Smash Bros. 3 RSBE25 = Super Smash Bros. Red Version RSBE26 = Super Smash Bros. Silver RSBE27 = Springboy64's Super Smash Bros. Brawl Hack Pack RSBE28 = SuperYoshiStar's Super Smash Bros. Brawl Hack Pack RSBE29 = Super Smash Bros. Project M: YoeiX Custom Build RSBE30 = Super Smash Bros. Project M: Arko's Loaded Custom Build RSBE31 = Super Smash Bros. Project M: Arko's Tournament Custom Build RSBE32 = Super Smash Bros. Project M: Sempai's Build RSBE33 = Super Smash Bros. Brawl Yin Yang Edition 2: The Balance of Kyu RSBE34 = Super Smash Bros. Project U: Blue Version RSBE35 = Super Smash Bros. Brawl Legacy: Project M RSBE36 = Super Smash Bros. Project Best RSBE37 = Super Smash Bros. Project M: Psycho Ghost's Build RSBE38 = Super Smash Sisters Generations RSBE39 = Super Smash Bros. Ultra Project M RSBE40 = Super Smash Bros. Project M: Ragnarok Edition RSBE41 = Super Smash Bros. Project M: Calabrel's Custom Build RSBE42 = Super Smash Bros. Project M: RedX Anime/Game Custom Build RSBEBB = Super Smash Bros. Balanced Brawl RSBEBM = Super Smash Bros. Brawl Minus RSBEBP = Super Smash Bros. Brawl Plus RSBEC3 = Super Smash Bros. Project M 3.5 Netplay Build RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBEWM = Super Smash Bros. Project M Wi-Fi RSBJ01 = Dairantou Smash Brothers X RSBK01 = Dairantou Smash Brothers X RSBP01 = Super Smash Bros. Brawl RSCD7D = Scarface: The World Is Yours RSCE7D = Scarface: The World Is Yours RSCP7D = Scarface: The World Is Yours RSCU7D = Scarface: The World Is Yours RSDJAF = SD Gundam: Scad Hammers RSEJGD = Soul Eater Monotone Princess RSFC99 = Muramasa: The Demon Blade (Custom) RSFE7U = Muramasa: The Demon Blade RSFJ99 = Oboro Muramasa RSFP99 = Muramasa: The Demon Blade RSHE69 = MySims Kingdom RSHJ13 = Boku to Sim no Machi Kingdom RSHK69 = MySims Kingdom RSHP69 = MySims Kingdom RSIE69 = MySims RSIJ13 = Boku To Sim No Machi RSIP69 = MySims RSJE41 = Broken Sword: Shadow of the Templars (Director's Cut) RSJESD = Guitar Hero III Custom : System of a Down RSJP41 = Broken Sword: Shadow of the Templars - The Director's Cut RSKE52 = Shrek The Third RSKP52 = Shrek The Third RSKX52 = Shrek The Third RSLEAF = Soulcalibur: Legends RSLJAF = Soulcalibur: Legends RSLKAF = Soulcalibur: Legends RSLPAF = Soulcalibur: Legends RSME8P = Super Monkey Ball: Banana Blitz RSMJ8P = Super Monkey Ball: Banana Blitz RSMP8P = Super Monkey Ball: Banana Blitz RSND69 = The Simpsons Game RSNE69 = The Simpsons Game RSNF69 = The Simpsons Game RSNP69 = The Simpsons Game RSNX69 = The Simpsons Game RSOE4Z = Solitaire & Mahjong RSOP4Z = Solitaire & Mahjong RSPE01 = Wii Sports RSPJ01 = Wii Sports RSPK01 = Wii Sports RSPP01 = Wii Sports RSPW01 = Wii Sports RSQEAF = We Ski RSQJAF = Family Ski RSQPAF = Family Ski RSRE8P = Sonic and the Secret Rings RSRJ8P = Sonic and the Secret Rings RSRP8P = Sonic and the Secret Rings RSSEH4 = Samurai Shodown Anthology RSSJH4 = Samurai Spirits: Rokuban Shoubu RSSK52 = Samurai Shodown Anthology RSSP7U = Samurai Shodown Anthology RSTE64 = Star Wars: The Force Unleashed RSTJ52 = Star Wars: The Force Unleashed RSTP64 = Star Wars: The Force Unleashed RSUENR = Summer Sports: Paradise Island RSUP41 = Sports Party RSVE8P = Sonic Unleashed RSVJ8P = Sonic World Adventure RSVP8P = Sonic Unleashed RSWE08 = Spyborgs RSWP08 = Spyborgs RSXE69 = SSX Blur RSXJ13 = SSX Blur RSXK69 = SSX Blur RSXP69 = SSX Blur RSXX78 = Guitar Hero RadioHead RSYE20 = Showtime Championship Boxing RSYP06 = Super Smash Bros. Brawl : YF06's Mod RSYP7J = Showtime Championship Boxing RSZJES = Yukinko Daisenpuu RSZPGT = Legend of Sayuki RT2E20 = Arctic Tale RT2P20 = Arctic Tale RT2P7J = Arctic Tale RT3E54 = Rockstar Games Presents: Table Tennis RT3JEL = Rockstar Games Presents: Table Tennis RT3P54 = Rockstar Games Presents: Table Tennis RT4EAF = Tales of Symphonia: Dawn of the New World RT4JAF = Tales Of Symphonia: Ratatosk no Kishi RT4PAF = Tales of Symphonia: Dawn of the New World RT5E8P = SEGA Superstars Tennis RT5P8P = SEGA Superstars Tennis RT6FKM = Magic Roundabout RT6PKM = The Magic Roundabout RT7E69 = Tiger Woods PGA Tour 07 RT7F69 = Tiger Woods PGA Tour 07 RT7P69 = Tiger Woods PGA Tour 07 RT8E69 = Tiger Woods PGA Tour 08 RT8J13 = Tiger Woods PGA Tour Golf 08 RT8K69 = Tiger Woods PGA Tour Golf 08 RT8P69 = Tiger Woods PGA Tour 08 RT9E52 = Tony Hawk's Proving Ground RT9P52 = Tony Hawk's Proving Ground RTAE41 = Tom Clancy's H.A.W.X. 2 RTAP41 = Tom Clancy's H.A.W.X. 2 RTBE52 = Rapala Fishing Frenzy RTBP52 = Rapala Fishing Frenzy RTCE41 = Tom Clancy's Splinter Cell: Double Agent RTCP41 = Tom Clancy's Splinter Cell: Double Agent RTDE6K = The Monkey King: The Legend Begins RTDJES = Shin Chuuka Taisen RTDK8M = Shin Chuuka Taisen RTEE78 = Paws & Claws: Pet Vet RTEHMR = Real Stories: Veterinaire RTEPFR = My Vet Practice RTFE52 = Transformers: The Game RTFJ52 = Transformers: The Game RTFK52 = Transformers: The Game RTFP52 = Transformers: The Game RTFX52 = Transformers: The Game RTFY52 = Transformers: The Game RTGJ18 = Wi-Fi Taiô Gensen Table Games Wii RTHE52 = Tony Hawk's Downhill Jam RTHP52 = Tony Hawk's Downhill Jam RTIE8P = Wacky World of Sports RTIJ8P = Wacky World of Sports RTIP8P = Wacky World of Sports RTJE68 = Star Trek: Conquest RTJP68 = Star Trek: Conquest RTKE5Z = Octomania RTKJDQ = Sharuui Takoron RTKK8M = Sharuui Takoron RTLE18 = Fishing Master: World Tour RTLJ18 = Mezase Tsuri Master Sekai Ni Challenge Hen RTLP18 = Fishing Master: World Tour RTME41 = TMNT RTMP41 = TMNT: Teenage Mutant Ninja Turtles RTNE41 = Tenchu: Shadow Assassins RTNJCQ = Tenchu 4 RTNP41 = Tenchu: Shadow Assassins RTOJ8P = 428: Fuusa Sareta Shibuya de RTPP41 = Top Trumps Adventures RTQENR = Monster Trux Offroad RTQPUG = Monster Trux Offroad RTQXUG = Monster Trux Offroad RTRE18 = Fishing Master RTRJ18 = Mezase Tsuri Master RTRP18 = Fishing Master RTSEVN = Totally Spies! Totally Party RTSP41 = Totally Spies! Totally Party RTTJAF = Tamagotchi no Furifuri Kagekidan RTUEJJ = Secret Files Tunguska RTUFKM = Secret Files: Tunguska RTUPKM = Secret Files: Tunguska RTVE64 = Thrillville: Off the Rails RTVP64 = Thrillville: Off The Rails RTWE5D = TNA iMPACT! RTWP5D = TNA iMPACT! RTYP01 = Wii Chess RTZE08 = Zack & Wiki: Quest for Barbaros' Treasure RTZJ08 = Takarajima Z Barbaros' Treasure RTZK08 = Zack & Wiki: Quest For Barbaros' Treasure RTZP08 = Zack & Wiki: Quest For Barbaros' Treasure RU1P4Q = Disney Sing It:: Sing It Star Singstar 1 RU2E5Z = Winter Sports 2: The Next Challenge RU2P4Q = Disney Sing It: Sing It Star Singstar 2 RU2P5Z = Winter Sports 2 The Next Challenge RU3E5Z = Summer Athletics: The Ultimate Challenge RU4E41 = My Fitness Coach 2: Exercise & Nutrition RU4X41 = NewU Fitness First Personal Trainer RU5E4Q = The Princess and the Frog RU5P4Q = Disney The Princess and the Frog RU5V4Q = Disney: The Princess and the Frog RU5X4Q = Disney: The Princess and the Frog RU5Y4Q = The Princess and the Frog (Riverboat Jazz Edition) RU6EHG = Free Running RU6PHY = Free Running RU7E5G = Night at the Museum: Battle of the Smithsonian - The Video Game RU7X5G = Night at the Museum: Battle of the Smithsonian - The Video Game RU8EFS = Bass Pro Shops: The Hunt RU9EGT = My Ballet Studio RU9PGT = Diva Girls: Diva Ballerina RUAE52 = Monster Jam: Urban Assault RUAP52 = Monster Jam: Urban Assault RUBEVN = Ultimate Board Game Collection RUBP7N = Ultimate Board Game Collection RUCE5Z = Winter Sports: The Ultimate Challenge RUCPRT = Winter Sports 2008: The Ultimate Challenge RUCXRT = Winter Sports 2008: The Ultimate Challenge RUEE4Q = G-Force RUEP4Q = G-Force RUEX4Q = G-Force RUEY4Q = G-Force RUFEMV = Rune Factory: Frontier RUFJ99 = Rune Factory: Frontier RUFP99 = Rune Factory: Frontier RUGE7T = Goosebumps: HorrorLand RUGP5G = Goosebumps: HorrorLand RUHE52 = Bakugan Battle Brawlers RUHP52 = Bakugan Battle Brawlers RUHX52 = Bakugan Battle Brawlers (Toys R Us Edition) RUHZ52 = Bakugan Battle Brawlers RUIE4Q = Disney: Sing It RUIGGD = SingItStar Ned. 80's RUIP4Q = Disney: Sing It RUIX4Q = Disney: Sing It RUKEGT = Rolling Stone: Drum King RUKPGT = We Rock: Drum King RULE4Q = Ultimate Band RULP4Q = Ultimate Band RUME5Z = Ski and Shoot RUMPFR = Summer Athletics RUNJ0Q = New Unou Kids Wii EX RUOEPL = Aliens in the Attic RUOPPL = Aliens in the Attic RUPJC8 = Winning Post 7 Maximum 2008 RUQD78 = Up RUQE78 = Up RUQI78 = Up RUQJJE = Carl jii san no sora tobu Ie RUQP78 = Up RUQS78 = Up RUQX78 = Up RUREPL = Pool Hall Pro RURPPL = Pool Hall Pro RUSE78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUSK78 = SpongeBob SquarePants Featuring Nicktoons: Globs of Doom RUSP78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUSX78 = SpongeBob SquarePants Featuring Nicktoons: Globs of Doom RUSY78 = SpongeBob SquarePants featuring Nicktoons: Globs of Doom RUUE01 = Animal Crossing: City Folk RUUJ01 = Machi He Ikouyo: Doubutsu no Mori RUUK01 = Animal Crossing: City Folk RUUP01 = Animal Crossing: Let's Go to the City RUWJC8 = Winning Post World RUXPUG = Urban Extreme: Street Rage RUXXUG = Urban Extreme: Street Rage RUYE41 = No More Heroes 2: Desperate Struggle RUYJ99 = No More Heroes 2: Desperate Struggle RUYP99 = No More Heroes 2: Desperate Struggle RUZE7T = Ultimate I SPY RUZP5G = Ultimate I SPY RV2E5D = Game Party 2 RV2P5D = More Game Party RV3P6N = Clever Kids: Creepy Crawlies RV7SMR = Survivor RV8E20 = Beach Fun: Summer Challenge RV8PRT = Beach Fun: Summer Challenge RV9E78 = Avatar: The Last Airbender - Into the Inferno RV9P78 = Avatar: The Legend of Aang - Into the Inferno RVAE78 = Avatar: The Last Airbender - The Burning Earth RVAP78 = Avatar: The Legend of Aang - The Burning Earth RVBERS = Alvin and the Chipmunks RVBPRS = Alvin and the Chipmunks RVDPLG = Diabolik: The Original Sin RVEFMR = Bienvenue Chez Les Ch'tis RVFE20 = Bigfoot: Collision Course RVFP7J = Bigfoot: Collision Course RVGE78 = Merv Griffin's Crosswords RVGP78 = Margot's Word Brain RVHP41 = Scrabble Interactive: 2009 Edition RVIE4F = Bionicle Heroes RVIP4F = Bionicle Heroes RVJPFR = So Blonde: Back to the Island RVKEXJ = Valhalla Knights: Eldar Saga RVKJ99 = Valhalla Knights Elder Saga RVKKZA = Valhalla Knights: Eldar Saga RVKP99 = Eldar Saga RVLPA4 = Rock Revolution RVNE20 = Calvin Tucker's Redneck Jamboree RVNP20 = Calvin Tucker's Redneck Jamboree RVNP7J = Calvin Tucker's Redneck Jamboree RVOEPL = Vertigo RVOPPL = Vertigo RVPEFS = PopStar Guitar RVPPFS = PopStar Guitar RVQE41 = Movie Games RVQP41 = Movie Studios Party RVREFS = Rebel Raiders: Operation Nighthawk RVRPFS = Rebel Raiders: Operation Nighthawk RVRPKG = Rebel Raiders: Operation Nighthawk RVSE69 = Skate It RVSJ13 = Skate It RVSP69 = Skate It RVTFMR = Real Stories: Veterinaire RVTPMR = My Pet Club RVTXMR = Real Stories: Veterinaire RVUE8P = Virtua Tennis 2009 RVUP8P = Virtua Tennis 2009 RVVE78 = Big Beach Sports RVVP78 = Big Beach Sports RVXFRT = RTL Biathlon 2009 RVXPRT = RTL Biathlon 2009 RVYD52 = Call of Duty: World at War RVYE52 = Call of Duty: World at War RVYK52 = Call of Duty: World at War RVYP52 = Call of Duty: World at War RVYX52 = Call of Duty: World at War RVYY52 = Call of Duty: World at War RVZE52 = Monsters vs. Aliens RVZP52 = Monsters vs. Aliens RW3E4Q = Pirates of the Caribbean: At World's End RW3J4Q = Pirates Of The Caribbean: At World's End RW3P4Q = Pirates Of The Caribbean: At World's End RW4D41 = My Word Coach: Develop your vocabulary RW5F41 = Who Wants To Be A Millionaire: 2nd Edition RW5P41 = Who Wants To Be A Millionaire: 2nd Edition RW6PA4 = Dance Dance Revolution: Winx Club RW7E41 = Shaun White Snowboarding: Road Trip - Target Limited Edition RW8P41 = Imagine Champion Rider RW9P78 = WWE SmackDown vs. Raw 2009 RW9X78 = WWE SmackDown vs. Raw 2009 RWAD78 = WALL•E RWAE78 = WALL•E RWAJ78 = WALL•E RWAK78 = WALL•E RWAP78 = WALL•E RWAR78 = WALL•E RWAU78 = WALL•E RWAX78 = WALL•E RWAY78 = WALL•E RWAZ78 = WALL•E RWBENR = Kawasaki Snowmobiles RWBXUG = Kawasaki Snow Mobiles RWCE4Z = Pinball Hall of Fame: The Williams Collection RWCP4Z = Pinball: Hall Of Fame RWCP6M = Williams Pinball Classics RWDC52 = Guitar Hero III Custom: WD Custom RWDE5G = Wild Earth: African Safari RWDP5G = Wild Earth: African Safari RWEEA4 = Pro Evolution Soccer 2008 RWEJA4 = Winning Eleven PLAY MAKER 2008 RWEPA4 = Pro Evolution Soccer 2008 RWFH41 = My Word Coach: Develop your vocabulary RWGE08 = We Love Golf! RWGJ08 = We Love Golf! RWGP08 = We Love Golf! RWHP4F = Top Trumps: Doctor Who RWIE18 = Wing Island RWIJ18 = Wing Island RWIP18 = Wing Island RWJENR = WordJong Party RWKE5G = Cooking Mama: World Kitchen RWKPGT = Cooking Mama 2: World Kitchen RWLE01 = Wario Land: Shake It! RWLJ01 = Warioland Shake RWLK01 = Wario Land Shaking RWLP01 = Wario Land: The Shake Dimension RWME78 = Worms: A Space Oddity RWMP78 = Worms: A Space Oddity RWNF70 = Warning: Code De La Route RWOE69 = Monopoly RWOJ13 = Monopoly RWOP69 = Monopoly RWQPSP = WSC Real 08: World Snooker Championship RWRE4F = Wacky Races: Crash & Dash RWRP4F = Wacky Races: Crash & Dash RWSE8P = Mario & Sonic at the Olympic Games RWSJ01 = Mario & Sonic at the Olympic Games RWSK01 = Mario & Sonic at the Olympic Games RWSP8P = Mario & Sonic at the Olympic Games RWTEG9 = Ben 10: Alien Force RWTPG9 = Ben 10: Alien Force RWUE52 = X-Men Origins: Wolverine RWUP52 = X-Men Origins: Wolverine RWUX52 = X-Men Origins: Wolverine RWWE52 = Guitar Hero III Custom : WWE The Hits RWWE78 = WWE SmackDown vs. Raw 2008 RWWJ78 = WWE SmackDown vs. Raw 2008 RWWP78 = WWE SmackDown vs. Raw 2008 RWWX78 = WWE SmackDown vs. Raw 2008 RWXES5 = Brave: A Warrior's Tale RWXPS5 = Brave: A Warrior's Tale RWYPHH = Runaway: The Dream of the Turtle RWZE5G = Wonder World Amusement Park RWZP5G = Wonder World Amusement Park RWZX5G = Wonder World Amusement Park RX2E70 = My Horse & Me: Riding for Gold RX2P70 = My Horse & Me 2 RX3E01 = ExciteBots: Trick Racing RX3J01 = ExciteBots: Trick Racing RX4E4Z = Casper's Scare School: Spooky Sports Day RX4PMT = Casper's Scare School: Spooky Sports Day RX5E52 = Tony Hawk: Ride RX5P52 = Tony Hawk: Ride RX6E78 = The Biggest Loser RX6P78 = The Biggest Loser RX7JGD = Meja-maji March RX8JA4 = Jikkyou Powerful Pro Yakyuu Next RX9E69 = Need for Speed: Undercover RX9J13 = Need for Speed: Undercover RX9K69 = Need for Speed: Undercover RX9P69 = Need for Speed: Undercover RX9X69 = Need for Speed: Undercover RX9Y69 = Need for Speed: Undercover RXAE78 = WWE SmackDown vs. Raw 2010 RXAP78 = WWE SmackDown vs. Raw 2010 RXBE70 = Backyard Baseball '10 RXBP70 = Backyard Baseball '10 RXCE4Z = Dave Mirra BMX Challenge RXCP4Z = Dave Mirra BMX Challenge RXCPGT = Dave Mirra BMX Challenge RXDD4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDE4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDJ4Q = Disney Th!nk Haya Oshi Quiz RXDP4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDR4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDX4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXDY4Q = Disney Th!nk Fast: The Ultimate Trivia Showdown RXEJDA = Major Wii Perfect Closer RXFEVN = Offshore Tycoon RXGE6K = Geon Cube RXGP6K = Geon Cube RXHF5D = Chaos à La Maison RXIE52 = Transformers: Revenge of the Fallen RXIP52 = Transformers: Revenge of the Fallen RXJJDA = Jinsei Game Wii EX RXKEGL = TV Show King Party RXKFGL = TV Show King Party RXKPGL = TV Show King Party RXLE41 = Grey's Anatomy: The Video Game RXLP41 = Grey's Anatomy: The Video Game RXMJ8P = Miburi & Teburi RXNEXS = Hooked Again: Real Motion Fishing RXNJJF = Bass Fishing Wii World Tournament RXNPGT = Big Catch Bass Fishing 2 RXPEXS = Hooked!: Real Motion Fishing RXPJJF = Bass Fishing Wii RXPPGT = Big Catch Bass Fishing RXQEWR = Where the Wild Things Are RXQPWR = Where the Wild Things Are RXRERS = The Tale of Despereaux RXRPRS = The Tale of Despereaux RXRXRS = The Tale Of Despereaux RXSPA4 = Dancing Stage: Hottest Party RXUE41 = Surf's Up RXUP41 = Surf's Up RXUX41 = Surf's Up RXVXWP = Télé 7 Jeux: Mots Croisés RXWE20 = M&M's Beach Party RXXE4Q = Spectrobes: Origins RXXJ4Q = Spectrobes: Origins RXXP4Q = Spectrobes: Origins RXYE4Z = Puzzle Challenge: Crosswords and More! RXYP4Z = Puzzle Challenge Crosswords RXZE52 = Cabela's Dangerous Hunts 2009 RXZP52 = Cabela's Dangerous Adventures RY2E41 = Rayman Raving Rabbids 2 RY2J41 = Rayman Raving Rabbids 2 RY2K41 = Rayman Raving Rabbids 2 RY2P41 = Rayman Raving Rabbids 2 RY2R41 = Rayman Raving Rabbids 2 RY3E41 = Rayman Raving Rabbids TV Party RY3J41 = Rayman Raving Rabbids TV Party RY3K41 = Rayman Raving Rabbids: TV Party RY3P41 = Rayman Raving Rabbids: TV Party RY4J8P = Puyo Puyo 7 RY5E52 = Big League Sports: Summer RY5P52 = World Championship Sports: Summer RY6EA4 = Walk It Out! RY6PA4 = Step to the Beat RY7PHZ = Ninja Captains RY8EFS = Bass Pro Shops: The Strike RYAJDA = Yattaman Wii Bikkuridokkiri Machine De Mou Race Da Koron RYAJSC = Yatterman Wii (Simplified Chinese Translation) RYBE69 = Boom Blox: Bash Party RYBP69 = Boom Blox: Bash Party RYDELT = Pet Pals: Animal Doctor RYDP6V = Pet Pals: Animal Doctor RYEEEB = 101-in-1 Party Megamix RYEPHZ = 101-in-1 Party Megamix RYGE9B = Rygar: The Battle of Argus RYGJ9B = Argus No Senshi Muscle Impact RYGP99 = Rygar: The Battle of Argus RYHES5 = Roogoo: Twisted Towers RYHPS5 = Roogoo: Twisted Towers RYIE9B = SPRay RYIP9B = SPRay RYJPTV = Princess Lillifee's Magic Fairy RYKEAF = We Ski & Snowboard RYKJAF = Family Ski: World Ski & Snowboard RYKPAF = Family Ski & Snowboard RYLDSV = Germany's Next Top Model RYNE6U = The Hardy Boys: The Hidden Theft RYNP6V = The Hardy Boys: The Hidden Theft RYOEA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYOJA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYOPA4 = Yu-Gi-Oh! 5D's: Wheelie Breakers RYQE69 = Trivial Pursuit RYQP69 = Trivial Pursuit RYQX69 = Trivial Pursuit Nordic RYRE41 = Your Shape RYRP41 = Your Shape RYTE4Z = PBR: Out of the Chute RYVEMS = Arcade Shooter: Ilvelo RYVJMS = Illvelo Wii RYWE01 = Big Brain Academy: Wii Degree RYWJ01 = Wii de Yawaraka Atama Juku RYWK01 = Big Brain Academy: Wii Degree RYWP01 = Big Brain Academy for Wii RYXE20 = Yamaha Supercross RYXP7J = Yamaha Supercross RYZE6U = World Party Games RYZPTV = Play the World RZ2JG9 = Simple Wii Series Vol. 1: The Minna de Kart Race RZ3JG9 = Simple Wii Series Vol. 2: The Minna de Bass Tsuri Taikai RZ4JG9 = Simple Wii Series Vol. 3: The Casino Party RZ5JG9 = Simple Wii Series Vol. 4: The Shooting Action RZ6JG9 = Simple Wii Series Vol. 5: The Block Kuzushi RZ7JG9 = Simple Wii Series Vol. 6: The Waiwai Konbatto RZ8JG9 = Simple 2000 Series Wii Vol. 1: The Table Game RZ9EG9 = Family Party: 30 Great Games RZ9JG9 = Simple 2000 Series Wii Vol. 2: The Party Game RZ9PG9 = Family Party: 30 Great Games RZAPTV = Lernerfolg Grundschule Power Math RZCE6K = Saint RZDC01 = The Legend of Zelda: Twilight Princess (Custom) RZDE01 = The Legend of Zelda: Twilight Princess RZDJ01 = The Legend of Zelda: Twilight Princess RZDK01 = The Legend of Zelda: Twilight Princess RZDP01 = The Legend of Zelda: Twilight Princess RZEE52 = Science Papa RZEP52 = Science Papa RZFPKM = Secret Files 2: Puritas Cordis RZHE5G = Zoo Hospital RZHP5G = Zoo Hospital RZHX5G = Zoo Hospital RZIE20 = Winter Sports 3: The Great Tournament RZIPRT = Winter Sports 2010: The Great Tournament RZJD69 = Dead Space: Extraction RZJE69 = Dead Space: Extraction RZJJ13 = Dead Space: Extraction RZJP69 = Dead Space: Extraction RZKE20 = Puzzle Kingdoms RZKP7J = Puzzle Kingdoms RZLE41 = Cook Wars RZLP41 = Cook-off Party RZNJ01 = Zangeki no Reginleiv RZOE78 = World of Zoo RZOP78 = World of Zoo RZPE01 = Link's Crossbow Training RZPJ01 = Link's Crossbow Training RZPK01 = Link's Crossbow Training RZPP01 = Link's Crossbow Training RZREGT = The Destiny of Zorro RZRPGT = The Destiny of Zorro RZSEGJ = Speed Zone RZSP68 = Wheelspin RZTE01 = Wii Sports Resort RZTJ01 = Wii Sports Resort RZTK01 = Wii Sports Resort RZTP01 = Wii Sports Resort RZTW01 = Wii Sports Resort RZUE4Z = Crayola Colorful Journey RZYE41 = My Word Coach RZYF41 = My Word Coach: Develop your vocabulary RZYP41 = My Word Coach: Develop your vocabulary RZYS41 = My Word Coach: Develop your vocabulary RZZE8P = MadWorld RZZJEL = MadWorld RZZP8P = MadWorld S02PES = Sing It Star 90's S22JAF = Family Fishing S22K01 = Family Fishing S25JGD = Dragon Quest 25 Collection: Famicom & Super Famicom Dragon Quest I-II-III S26PML = 2-in-1: Pony Friends 2 + My Riding Stables: Life with Horses S2AEAF = Active Life: Explorer S2AJAF = Minna de Bouken! Family Trainer S2APAF = Family Trainer: Treasure Adventure S2BEPZ = Country Dance 2 S2BPXT = Country Dance 2 S2CE54 = New Carnival Games S2CP54 = New Carnival Funfair Games S2DPML = Dance! It's Your Stage S2EE41 = ABBA: You Can Dance S2EP41 = ABBA: You Can Dance S2HE70 = Haunted House S2HP70 = Haunted House S2IE8P = Iron Man 2 S2IP8P = Iron Man 2 S2LE01 = PokéPark 2: Wonders Beyond S2LJ01 = PokéPark 2: Beyond the World S2LP01 = PokéPark 2: Wonders Beyond S2ME69 = Madden NFL 13 S2OEFS = Bass Pro Shops: The Strike - Tournament Edition S2PEA4 = Pro Evolution Soccer 2012 S2PJA4 = Winning Eleven PLAY MAKER 2012 S2PPA4 = Pro Evolution Soccer 2012 S2PXA4 = Pro Evolution Soccer 2012 S2PYA4 = Pro Evolution Soccer 2012 S2QE54 = NBA 2K12 S2QP54 = NBA 2K12 S2RPNK = Reload S2TJAF = Taiko no Tatsujin Wii: Dodoon to 2 Daime! S2VEG9 = Victorious: Taking the Lead S2VPAF = Victorious: Taking the Lead S2WE78 = WWE All Stars S2WP78 = WWE All Stars S2XE41 = The Smurfs 2 S2XP41 = The Smurfs 2 S2YE52 = Wipeout: Create & Crash S2ZE52 = Zhu Zhu Pets: Featuring The Wild Bunch S2ZP52 = Zhu Zhu Pets: Featuring the Wild Bunch S3AE5G = Attack of the Movies 3D S3BEWR = Batman: The Brave and the Bold S3BPWR = Batman: The Brave and the Bold S3CENR = Triple Crown Championship Snowboarding S3DE18 = Deca Sports 3 S3DJ18 = Deca Sporta 3 S3DP18 = Sports Island 3 S3EE78 = Barbie Jet, Set & Style! S3EP78 = Barbie Jet, Set & Style! S3FE69 = FIFA Soccer 13 S3FP69 = FIFA 13 S3FX69 = FIFA 13 S3GE20 = Glacier 3: The Meltdown S3GPXT = Glacier 3 S3HJ08 = Sengoku Basara 3 Utage S3IEA4 = Pro Evolution Soccer 2013 S3IPA4 = Pro Evolution Soccer 2013 S3IXA4 = Pro Evolution Soccer 2013 S3IYA4 = Pro Evolution Soccer 2013 S3LPY1 = Andrew Lloyd Webber Musicals: Sing and Dance S3ME69 = The Sims 3 S3MP69 = The Sims 3 S3PE4Q = Disney Princess: My Fairytale Adventure S3PP4Q = Disney Princess: My Fairytale Adventure S3PX4Q = Disney Princess: My Fairytale Adventure S3RJMS = Twinkle Queen S3SJ18 = Karaoke Joysound Wii Super DX: Hitori de Minna de Utai Houdai! S3TJAF = Taiko no Tatsujin Wii: Minna de Party ☆ 3 Daime! S3WEG9 = Family Party: 30 Great Games Winter Fun S3WPG9 = Family Party: 30 Great Games Winter Fun S3XE78 = WWE '13 S3XP78 = WWE '13 S3ZE52 = Men In Black: Alien Crisis S3ZP52 = Men In Black: Alien Crisis S4MJGD = Dragon Quest X Online: Mesamashi Itsutsu no Shuzoku S4SJGD = Dragon Quest X: Nemureru Yuusha to Michibiki no Meiyuu Online S4TJAF = Taiko no Tatsujin Wii: Ketteiban S59E01 = Samurai Warriors 3 S59JC8 = Sengoku Musou 3 S59P01 = Samurai Warriors 3 S5BETL = Back to the Future: The Game S5BPKM = Back to the Future: The Game S5KJAF = Taiko no Tatsujin Wii Chou Goukaban S5QJC8 = SengokuMusou 3 Moushouden S5RESZ = Ram Racing S5RPNJ = Ram Racing S5SJHF = Inazuma Eleven Go Strikers 2013 S5TEG9 = Ben 10: Omniverse S5TPAF = Ben 10: Omniverse S5WE20 = Around The World in 50 Games S6BE4Q = Brave: The Video Game S6BP4Q = Brave: The Video Game S6BY4Q = Brave: The Video Game S6IE78 = Disney Princess: Enchanting Storybooks S6IP78 = Disney Princess: Enchanting Storybooks S6RE52 = Wreck-It Ralph S6RP52 = Wreck-It Ralph S6TJGD = Dragon Quest X (All in One Package) S72E01 = Kirby's Dream Collection: Special Edition S72J01 = Hoshi No Kirby: 20th Anniversary Edition S75E69 = Monopoly Streets S75P69 = Monopoly Streets S7AEWR = LEGO Batman 2: DC Super Heroes S7AKWR = LEGO Batman 2: DC Super Heroes S7AKZA = Lego Superheroes 1 S7APWR = LEGO Batman 2: DC Super Heroes S7BE69 = Trivial Pursuit: Bet You Know It S7BP69 = Trivial Pursuit: Casual S7CJAF = Kamen Rider Climax Heroes Fourze S7DE52 = Angry Birds: Star Wars S7DP52 = Angry Birds: Star Wars S7EP52 = Transformers: Ultimate Battle Edition S7FE5G = Zumba Kids S7FPGT = Zumba Kids: The Ultimate Zumba Dance Party S7JPKM = Let's Sing 6 - Spanish version S7KPKM = Let's Sing 2014 S7SP41 = The Smurfs Party Pack S80U3Q = SingItStar Ultimate 80s SA3E5G = Alvin and the Chipmunks: Chipwrecked SA3P5G = Alvin and the Chipmunks: Chipwrecked SA5E78 = Are You Smarter Than A 5th Grader?: Back to School SA6EG9 = Ben 10: Galactic Racing SA6PAF = Ben 10: Galactic Racing SA7ESZ = Gummy Bears: Magical Medallion SA8P52 = The Amazing Spider-Man SA9D7K = Bibi und Tina Das grosse Reiterfest SAAJA4 = Winning Eleven PLAY MAKER 2013 SABENR = Alien Monster Bowling League SABPJG = Alien Monster Bowling League SACPVS = ACB Total 2010/2011 SACSVS = ACB Total 2010/2011 SADE70 = Backyard Sports: Sandlot Sluggers SAFUHS = AFL: Australian Football League SAGE41 = The Amazing Race SAHE69 = Hasbro: Family Game Night Fun Pack SAJE52 = Cabela's Survival: Shadows of Katmai SAJP52 = Cabela's Survival: Shadows of Katmai SAKENS = Sakura Wars: So Long, My Love SAKPNS = Sakura Wars: So Long, My Love SALE4Q = Alice in Wonderland SALP4Q = Alice in Wonderland SAME01 = New Super Mario Bros. Wii 11 American Revolution SANE01 = New Super Mario Bros. Wii Five Spica Edition SANEFS = Bass Pro Shops: The Hunt - Trophy Showdown SANT3Q = SingItStar Anthems SAOE78 = Monster High: Ghoul Spirit SAOP78 = Monster High: Ghoul Spirit SAQE5G = Harley Pasternak's Hollywood Workout SARE4Z = Aladdin Magic Racer SARP01 = New Super Mario Bros. Wii 4 Arcadia Another Ride SARPNK = Aladin: Magic Racer SASEWW = Atrévete a Soñar SATE6K = Chuck E. Cheese's Super Collection SAUJ8P = Puyo Puyo!! 20th Anniversary SAVE5G = Alvin and the Chipmunks: The Squeakquel SAVX5G = Alvin and the Chipmunks: The Squeakquel SAWE52 = Angry Birds Trilogy SAWP52 = Angry Birds Trilogy SAXPFH = Max & the Magic Marker SAYE20 = Boot Camp Academy SAYP41 = Boot Camp Academy SAZE52 = The Amazing Spider-Man SAZP52 = The Amazing Spider-Man SB2ES5 = My Baby First Steps SB2PNP = My Baby 2: My Baby Grew Up SB3E08 = Sengoku Basara: Samurai Heroes SB3J08 = Sengoku BASARA 3 SB3P08 = Sengoku Basara: Samurai Heroes SB4C01 = Super Mario Galaxy 2 (Custom) SB4E01 = Super Mario Galaxy 2 SB4E02 = Neo Mario Galaxy SB4E03 = Super Mario Galaxy: Plumber's Way SB4E04 = Super Mario Sunshine Galaxy SB4E05 = Season Cycle Galaxy SB4E25 = Super Mario Galaxy 2.5 SB4J01 = Super Mario Galaxy 2 SB4J02 = Neo Mario Galaxy SB4J05 = Season Cycle Galaxy SB4K01 = Super Mario Galaxy 2 SB4P01 = Super Mario Galaxy 2 SB4P02 = Neo Mario Galaxy SB4P05 = Season Cycle Galaxy SB4W01 = Super Mario Galaxy 2 SB5E54 = NBA 2K11 SB5P54 = NBA 2K11 SB6E52 = Bakugan: Defenders of the Core SB6P52 = Bakugan: Defenders of the Core SB7IVU = Planet Basket 2009/2010 SB8EQH = Burger Bot SB9E78 = Barbie: Groom and Glam Pups SB9P78 = Barbie: Groom and Glam Pups SBAJGD = Dragon Quest Monsters: Battle Road Victory SBBE18 = Beyblade: Metal Fusion - Battle Fortress SBBJ18 = Metal Fight Beyblade Gachinko Stadium SBBP18 = Beyblade: Metal Fusion - Counter Leone SBCJ2N = Billy's Boot Camp: Wii de Enjoy Diet! SBDE08 = Resident Evil: The Darkside Chronicles SBDJ08 = Biohazard: The Darkside Chronicles SBDK08 = Biohazard: The Darkside Chronicles SBDP08 = Resident Evil: The Darkside Chronicles SBEPSV = Bermuda Triangle SBFE70 = Backyard Football '10 SBHEFP = Remington Great American Bird Hunt SBHPNK = Remington Great American Bird Hunt SBIEVZ = Busy Scissors SBIPVZ = Busy Scissors SBJEG9 = Ben 10: Ultimate Alien Cosmic Destruction SBJPAF = Ben 10: Ultimate Alien Cosmic Destruction SBKEPZ = Brunswick Zone Cosmic Bowling SBLE5G = A Boy and His Blob SBLP5G = A Boy and His Blob SBNEG9 = Ben 10: Alien Force Vilgax Attacks SBNPG9 = Ben 10: Alien Force Vilgax Attacks SBOD3Q = SingItStar Best of Disney SBQE4Z = Big Buck Hunter Pro SBREJJ = Let's Play Ballerina SBRPKM = Ballerina SBSE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh SBSEFP = Remington Super Slam Hunting: North America SBSURN = Remington Super Slam Hunting: North America SBVE78 = SpongeBob's Boating Bash SBVG3Q = SingItStar Boybands vs Girlbands SBVP78 = SpongeBob's Boating Bash SBVS78 = SpongeBob's Boating Bash SBWC11 = New Super Mario Bros. 3: The Wrath of Shadow Bowser SBWE5G = Babysitting Mama SBWJRA = Babysitter Mama SBWPGT = Cooking Mama World: Babysitting Mama SBXEWR = The Bachelor: The Video Game SBYE41 = Dance on Broadway SBYP41 = Dance on Broadway SBZESZ = Bermuda Triangle: Saving the Coral SC2E8P = Conduit 2 SC2P8P = Conduit 2 SC4E64 = LEGO Star Wars III: The Clone Wars SC4P64 = LEGO Star Wars III: The Clone Wars SC5PGN = Challenge Me: Word Puzzles SC6PGN = Challenge Me: Brain Puzzles 2 SC7D52 = Call of Duty: Black Ops SC7E52 = Call of Duty: Black Ops SC7F52 = Call of Duty: Black Ops SC7I52 = Call of Duty: Black Ops SC7P52 = Call of Duty: Black Ops SC7S52 = Call of Duty: Black Ops SC8E01 = Wii Play: Motion SC8J01 = Wii Play: Motion SC8K01 = Wii Play: Motion SC8P01 = Wii Play: Motion SC9P52 = Cabela's Big Game Hunter 2010 SCAE18 = Calling SCAJ18 = CALLING Kuroki Chakushin SCAP18 = Calling SCBPNK = Cyberbike Cycling Sports SCDE52 = Cabela's Dangerous Hunts 2011 SCDP52 = Cabela's Dangerous Hunts 2011 SCEE6K = Chuck E. Cheese's Party Games SCFPNK = Cocoto Festival SCGE20 = Calvin Tucker's Redneck: Farm Animal Racing Tournament SCGPXT = Calvin Tucker's: Farm Animals Racing Tournament SCHEQH = Canada Hunt SCIE41 = CSI: Fatal Conspiracy SCIP41 = CSI: Fatal Conspiracy SCJE4Q = LEGO Pirates of the Caribbean: The Video Game SCJP4Q = LEGO Pirates of the Caribbean: The Video Game SCKE6K = Chuck E. Cheese's Sports Games SCMJAF = Kamen Rider Climax Heroes OOO SCNEA4 = Scene It? Twilight SCNPA4 = Scene It? Twilight SCPE70 = Centipede: Infestation SCQDRV = Schlag den Raab - Das 2. Spiel SCREJH = Chicken Riot SCRPJH = Chicken Riot SCSE52 = Cruise Ship Vacation Games SCSPGR = Cruise Ship Resort SCTE01 = The Curse of Black Toad SCTPNK = Cocoto Surprise SCUPFR = Crazy Chicken: Carnival SCWE41 = Gold's Gym: Dance Workout SCWP41 = My Fitness Coach: Dance Workout SCXESZ = Chevrolet Camaro: Wild Ride SCXPNJ = Chevrolet Camaro: Wild Ride SCYE4Q = Cars 2 SCYP4Q = Cars 2 SCYX4Q = Cars 2 SCYY4Q = Cars 2 SCYZ4Q = Cars 2 SCZEMH = Crazy Machines SCZPFR = Crazy Machines SD2E41 = Just Dance 2 SD2J01 = Just Dance Wii SD2K41 = Just Dance 2 SD2P41 = Just Dance 2 SD2Y41 = Just Dance 2: Best Buy Edition SD3DSV = Der Gesundheitscoach SD5PTV = Lernerfolg Grundschule Deutsch SD6PTV = Lernerfolg Grundschule Englisch SD7PTV = Lernerfolg Grundschule Mathematik SD8DSV = Mein neues Leben Abenteuer auf Tropicana SD9JAF = SD Gundam Gashapon Wars SDAE01 = Scooby-Doo! The Bros Adventure SDAE5G = The Daring Game for Girls SDBE78 = de Blob 2 SDBP78 = de Blob 2 SDDPML = The Ultimate Battle Of The Sexes SDEE5G = Dance Sensation! SDFE4Q = Disney Sing It: Family Hits SDFP4Q = Disney Sing It: Family Hits SDGE4Q = Disney Channel: All Star Party SDGP4Q = Disney Channel: All Star Party SDHER3 = Super Smash Bros. Brawl Dark Hole/D.A.R.S. SDIE4Q = Disney Sing It: Party Hits SDIP4Q = Disney Sing It: Party Hits SDJJAF = SD Gundam: G Generation World SDLE78 = Dood's Big Adventure SDLP78 = Dood's Big Adventure SDMEG9 = Despicable Me: The Game SDMPAF = Despicable Me: The Game SDNE41 = Just Dance SDNP41 = Just Dance SDOPLR = Doctor Who: Return To Earth SDPE54 = Dora's Big Birthday Adventure SDPP54 = Dora's Big Birthday SDQJGD = Dragon Quest X Inishie no Ryu no Denshou Online SDREYG = Maximum Racing: Drag & Stock Racer SDRP3Q = SingItStar Deutsch Rock-Pop Vol. 1 SDRPNG = Drag & Stock Racer SDSPNG = We Dance SDTH3Q = SingItStar Die Toten Hosen SDTPGN = PDC World Championship Darts: Pro Tour SDUE41 = The Smurfs Dance Party SDUP41 = The Smurfs: Dance Party SDUPO1 = DU Super Mario Bros. : DU Edition SDVE41 = Driver: San Francisco SDVP41 = Driver: San Francisco SDWE18 = Lost in Shadow SDWJ18 = Lost in Shadow SDWP18 = A Shadow's Tale SDXE4Q = Disney Universe SDXP4Q = Disney Universe SDYEA4 = Dance Dance Revolution SDYPA4 = Dance Dance Revolution: Hottest Party 4 SDZE41 = Just Dance Kids SDZP41 = Dance Juniors SE2E69 = EA Sports Active 2 SE2P69 = EA Sports Active 2 SE3E41 = Just Dance 2015 SE3P41 = Just Dance 2015 SEAE69 = EA Sports Active: More Workouts SEAJ13 = EA Sports Active More Workout SEAP69 = EA Sports Active: More Workouts SECE69 = Create SECP69 = Create SEGA = Genplus GX SEGE6U = Yoga SEGP6V = Yoga SEKJ99 = Ikenie no Yoru SELE69 = FIFA Soccer 11 SELP69 = FIFA 11 SELX69 = FIFA 11 SEME4Q = Disney Epic Mickey SEMJ01 = Disney Epic Mickey: Mickey Mouse and the Magic Brush SEMP4Q = Disney Epic Mickey SEMX4Q = Disney Epic Mickey SEMY4Q = Disney Epic Mickey SEMZ4Q = Disney Epic Mickey SENPZX = Enclave: Shadows of Twilight SEOP01 = New Super Mario Bros. Wii 8 Omega SEOP4Q = Sing It: Edad de Oro del Pop Español SEPE41 = The Black Eyed Peas Experience SEPP41 = The Black Eyed Peas Experience SEPX41 = The Black Eyed Peas Experience D1 Edition SEPZ41 = The Black Eyed Peas Experience: Limited Edition SERE4Q = Disney Epic Mickey 2: The Power of Two SERF4Q = Disney Epic Mickey 2: The Power of Two SERK4Q = Disney Epic Mickey 2: The Power of Two SERP4Q = Disney Epic Mickey 2: The Power of Two SERV4Q = Disney Epic Mickey 2: The Power of Two SESEWR = Sesame Street: Ready, Set, Grover! SESPWR = Sesame Street: Ready, Set, Grover! SESUWR = Sesame Street: Ready, Set, Grover! SEZJHF = Inazuma Eleven Strikers 2012 Xtreme SF2P64 = Star Wars: The Force Unleashed II SF4E20 = Flatout SF4PXT = Flatout SF5E41 = Fit in Six SF5J41 = Fit in Six SF5P41 = My Fitness Coach: Club SF7E41 = Family Feud 2012 Edition SF8E01 = Donkey Kong Country Returns SF8J01 = Donkey Kong Returns SF8P01 = Donkey Kong Country Returns SFAE41 = Family Feud Decades SFAJGD = Fullmetal Alchemist: Daughter of the Dusk SFBE70 = Backyard Sports Football: Rookie Rush SFDE01 = New Super Mario Bros. Wii 9 Virtue: This Fall Darkness SFDEAF = Active Life: Magical Carnival SFDJAF = Issyoni Asobou! Dream Theme Park SFDPAF = Family Trainer: Magical Carnival SFGE69 = Hasbro: Family Game Night 4 - The Game Show SFGP69 = Hasbro: Family Game Night 4 - The Game Show SFHEFP = Outdoor Action Double Pack SFIE01 = Mystery Case Files: The Malgrave Incident SFIP01 = Mystery Case Files: The Malgrave Incident SFKEG9 = Family Party: Fitness Fun SFKPAF = Family Party: Fitness Fun SFLDSV = Der Fluch der Osterinsel SFOEAF = Food Network: Cook or Be Cooked SFPPFR = Fantastic Football Fan Party SFQE8P = Captain America: Super Soldier SFQP8P = Captain America: Super Soldier SFRDRV = Fit & Fun SFRPXT = Fit & Fun SFSPGT = All Round Hunter SFTE78 = Wheel of Fortune SFTP78 = Wheel of Fortune SFUE64 = Star Wars: The Force Unleashed II SFVEXJ = Fishing Resort SFWE69 = 2010 FIFA World Cup South Africa SFWJ13 = 2010 FIFA World Cup South Africa SFWK13 = 2010 FIFA World Cup: South Africa SFWK69 = 2010 FIFA World Cup South Africa SFWP69 = 2010 FIFA World Cup South Africa SFWX69 = 2010 FIFA World Cup South Africa SFWY69 = 2010 FIFA World Cup South Africa SFWZ69 = 2010 FIFA World Cup South Africa SFXPKM = The X Factor SFXXKM = X Factor SFYEG9 = Family Party: 90 Great Games Party Pack SFYPAF = Family Party: 90 Great Games Party Pack SFZEPZ = Pheasants Forever: Wingshooter SFZPXT = Pheasants Forever SG2EFS = Crazy Mini Golf 2 SG2XUG = Crazy Mini Golf 2 SG2YFS = Crazy Mini Golf 2 SG3DSV = Germany's Next Top Model 2010 SG5PSV = Family Quiz SG6DSV = Galileo Family Quiz SG7E20 = The Garfield Show: Threat of the Space Lasagna SG7PVL = The Garfield Show: Threat of the Space Lasagna SG8EG9 = Yogi Bear SG8PAF = Yogi Bear: The Video Game SG9EYC = Gremlins: Gizmo SGAE8P = Tournament of Legends SGAP8P = Tournament of Legends SGBE5G = Greg Hastings Paintball 2 SGCE20 = Glacier 2 SGDEJJ = Let's Play Garden SGDPKM = Play Gardens SGEEG9 = Nat Geo Challenge! Wild Life SGEPLG = Nat Geo Quiz! Wild Life SGHE41 = Tom Clancy's Ghost Recon SGHP41 = Tom Clancy's Ghost Recon SGI1CL = SingIt Clasicos SGI1DB = Sing IT: Dibujos Animados SGI1MC = SingItStar Mecano SGI1ML = Sing It Star: Miliki SGI1PT = Sing IT: Party SGI1RC = Sing IT: Rocks 2 SGIEA4 = GTI Club Supermini Festa! SGIJA4 = GTI Club World City Race SGIPA4 = GTI Club Supermini Festa! SGJDSV = Galileo Mystery: The Crown of Midas SGJPSV = The Crown of Midas SGKEC8 = Champion Jockey: G1 Jockey & Gallop Racer SGKJC8 = Champion Jockey: Gallop Racer & GI Jockey SGKPC8 = Champion Jockey: G1 Jockey & Gallop Racer SGLEA4 = Gormiti: The Lords of Nature! SGLPA4 = Gormiti: The Lords of Nature! SGNE69 = Hasbro: Family Game Night Value Pack SGODKP = Mini Golf Resort SGOETV = Mini Golf Resort SGPEYG = Maximum Racing: GP Classic Racing SGPPNG = GP Classic Racing SGPTI1 = Sing It Party SGQDSV = Germany's Next Top Model 2011 SGREGT = Grease SGRPGT = Grease SGSESZ = Family Gameshow SGSP7J = Family GameShow SGTEFS = My Personal Golf Trainer with IMG Academies and David Leadbetter SGTPUG = My Personal Golf Trainer with IMG Academies and David Leadbetter SGUE4Q = Disney Guilty Party SGVEAF = Go Vacation SGVJAF = Go Vacation SGVPAF = Go Vacation SGWD7K = Bibi Blocksberg SGXE41 = Battle of Giants: Dinosaurs Strike SGXP41 = Combat of Giants: Dinosaurs Strike SGYESZ = Gummy Bears Mini Golf SGYPNJ = Gummy Bears Mini Golf SH2JMS = Hula Wii: Tanoshiku Hula o Odorou!! SH3E54 = NHL 2K11 SH3P54 = NHL 2K11 SH4EFP = Heavy Fire: Afghanistan SH4PNK = Heavy Fire: Afghanistan SH5E69 = Harry Potter and the Deathly Hallows, Part 2 SH5P69 = Harry Potter and the Deathly Hallows - Part 2 SH6E52 = Cabela's Big Game Hunter 2012 SH6P52 = Cabela's Big Game Hunter 2012 SH7ESZ = Honda ATV Fever SH7PNJ = ATV Fever SH8E52 = Cabela's Adventure Camp SH8P52 = Cabela's Adventure Camp SH9ESZ = Heathcliff: The Fast and the Furriest SHBE69 = Hasbro: Family Game Night 3 SHBP69 = Hasbro: Family Game Night 3 SHDE52 = How to Train Your Dragon SHDP52 = How to Train Your Dragon SHEDRM = Der Bauernhof SHFE20 = Basketball Hall of Fame: Ultimate Hoops Challenge SHGDRM = Holiday Games SHHE69 = Harry Potter and the Deathly Hallows, Part 1 SHHP69 = Harry Potter and the Deathly Hallows - Part 1 SHIJ2N = Shape Boxing 2 Wii Enjoy Diet! SHKE20 = Hello Kitty Seasons SHKPNQ = Hello Kitty Seasons SHLPA4 = Silent Hill: Shattered Memories SHMPLR = Horrid Henry: Missions of Mischief SHNE41 = Shaun White Skateboarding SHNP41 = Shaun White Skateboarding SHOXKR = Hugo: Magic in the Troll Woods SHOYKR = Hugo: Magic in the Troll Woods SHPE5G = Our House Party SHSE20 = Hyper Fighters SHSPXT = Hyper Fighters SHTE20 = Mathews Bow Hunting SHUE52 = Cabela's Dangerous Hunts 2011: Special Edition SHVE78 = Hot Wheels: Track Attack SHVP78 = Hot Wheels: Track Attack SHWE41 = Hollywood Squares SHXEWR = Happy Feet Two SHXPWR = Happy Feet 2 SHYE69 = NHL SlapShot SHYP69 = EA Sports: NHL Slapshot SHZENR = Harley Davidson: Road Trip SI3E69 = FIFA Soccer 12 SI3P69 = FIFA 12 SI3X69 = FIFA 12 SIABOH = SingItStar Placebo SIAE52 = Ice Age: Continental Drift - Arctic Games SIAP52 = Ice Age 4: Continental Drift - Artic Games SIBBHJ = SingItStar Country SIDE54 = Sid Meier's Pirates! SIDP54 = Sid Meier's Pirates! SIESP1 = Sing It: Canciones en Español SIFESZ = The Island of Dr. Frankenstein SIFPNJ = The Island of Dr. Frankenstein SIFPOH = SingItStar Fussballhits SIHE4Z = Sing 4: The Hits Edition SIIE8P = Mario & Sonic at the London 2012 Olympic Games SIIJ01 = Mario & Sonic at the London 2012 Olympic Games SIIP8P = Mario & Sonic at the London 2012 Olympic Games SIJE52 = iCarly 2: iJoin the Click! SIJP52 = iCarly 2: iJoin the Click! SILE78 = Worms: Battle Islands SILP4Q = Latino Sing It SILP78 = Worms Battle Islands SIME69 = MySims Collection SINPNG = We Sing: Robbie Williams SIPE7T = I SPY Game Pack SIS1OH = SingItStar Volume 1 SIS2OH = SingItStar ABBA SIS3OH = SingItStar Summer Party SIS4OH = SingItStar Amped SIS5OH = SingItStar Pop Hits SIS7OH = SingItStar Take That SIS80Q = SingItStar Ultimate 80's SIS80S = StarSing : '80s Volume 1 v1.2 SIS90H = SingItStar 90´s SIS9OH = SingItStar 90's SISACD = StarSing AC/DC SISAOH = SingItStar Après Ski Party SISBOH = SingItStar R'n'B SISCOH = SingItStar Chartbreaker SISCS1 = SingItStar Chartsurfer Vol. 1 SISDAE = SingItStar Die Ärzte SISDEM = SingItStar Depeche Mode SISDOH = SingItStar The Dome SISENR = Princess Isabella: A Witch's Curse SISHOH = SingItStar Hottest Hits SISJ0Q = Pelvic Fitness by Wii (Isometric & Karate Exercise) SISLIP = StarSing : Linkin Park v1.2 SISLOH = SingItStar Legends SISMEL = StarSing : Happy Birthday Mélanie v1.1 SISMJ1 = StarSing : Michael Jackson v2.1 SISMOH = SingItStar Mallorca Party SISP10 = SingItStar Studio100 SISP12 = StarSing : Pop Hits 1 & 2 v2.0 SISP34 = StarSing : Pop Hits 3 & 4 v2.0 SISPBC = SingItStar Britney vs Christina SISPOH = SingItStar Party SISPOP = StarSing : Pop v1.1 SISPUH = Princess Isabella: A Witch's Curse SISQ3Q = SingItStar Queen SISR3Q = SingItStar Rocks! SISREU = StarSing : Rocks! v1.1 SISRP4 = SingItStar Rocks! SISSOH = SingItStar Schlager SISTDK = SingItStar - Turkish Party SITPNG = We Sing: Deutsche Hits SIUUNG = We Sing Down Under SIXE01 = New Super Mario Bros Wii 16 Revelations SIXE41 = Drawsome! Tablet SJ2EWR = Scooby-Doo! and the Spooky Swamp SJ2PWR = Scooby-Doo! and the Spooky Swamp SJ3JDA = Jinsei Game: Happy Family SJ3PNL = Jakers! Kart Racing SJ5JDA = Jinsei Game Happy Family Gotouchi Neta Zouryou Shiage SJ6E41 = Just Dance Disney Party SJ6P41 = Just Dance Disney Party SJ7E41 = Just Dance Kids 2014 SJ7P41 = Just Dance Kids 2014 SJ9E41 = Just Dance Summer Party SJ9P41 = Just Dance 2: Extra Songs SJAE5G = JAWS: Ultimate Predator SJBE52 = GoldenEye 007 SJBJ01 = GoldenEye 007 SJBP52 = GoldenEye 007 SJCEZW = Jerry Rice & Nitus' Dog Football SJDE41 = Just Dance 3 SJDJ01 = Just Dance Wii 2 SJDK41 = Just Dance 3 SJDP41 = Just Dance 3 SJDX41 = Just Dance 3 Special Edition SJDY41 = Just Dance 3: Best Buy Exclusive Edition SJDZ41 = Just Dance 3: Target Exclusive Edition SJEEPK = JumpStart Escape from Adventure Island SJFE4Z = Kid Fit Island Resort SJFPGR = Junior Fitness Trainer SJFXGR = Junior Fitness Trainer SJGEPK = JumpStart Get Moving Family Fitness SJHE41 = Just Dance Greatest Hits SJIEG9 = Jillian Michaels Fitness Ultimatum 2011 SJJEA4 = Jimmie Johnson's Anything With An Engine SJKEPK = JumpStart Crazy Karts SJLEFS = Junior League Sports SJLPXT = Junior League Sports SJME5G = Jillian Michaels Fitness Ultimatum 2010 SJMPGT = Jillian Michaels Fitness Ultimatum 2010 SJOE41 = Just Dance 2014 SJOP41 = Just Dance 2014 SJPE78 = Jeopardy! SJQEPZ = Jewel Quest Trilogy SJQPGR = Jewel Quest Trilogy SJREA4 = Def Jam Rapstar SJRXA4 = Def Jam Rapstar SJSEPK = JumpStart Pet Rescue SJTP41 = Just Dance: Best Of SJUE20 = Dino Strike SJUPXT = Dino Strike SJVE20 = Shawn Johnson Gymnastics SJWJA4 = Winning Eleven PLAY MAKER 2010 Japan Challenge SJXD41 = Just Dance 4 SJXE41 = Just Dance 4 SJXP41 = Just Dance 4 SJZE41 = Just Dance Kids 2 SJZP41 = Just Dance Kids SK3EEB = Trauma Team SK4E52 = Shrek Forever After SK4P52 = Shrek Forever After SK5PY1 = Kylie Sing & Dance SK6KJD = K-POP Dance Festival SK7PVZ = Disney Violetta: Rhythm & Music SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8P52 = Skylanders: Trap Team SK8V52 = Skylanders: Trap Team SKAEA4 = Karaoke Revolution Glee SKAPA4 = Karaoke Revolution Glee SKBEG9 = Kidz Bop Dance Party SKCE20 = Bigfoot: King of Crush SKDJ18 = Karaoke Joysound Wii Duet Song SKEJ18 = Karaoke Joysound Wii: Enka Kayoukyoku Hen SKGEA4 = Karaoke Revolution Glee Volume 2 SKGPA4 = Karaoke Revolution Glee Volume 2 SKHJAF = Kamen Rider Super Climax Heroes SKJE78 = You Don't Know Jack SKKPHY = Captain Morgane and the Golden Turtle SKKXHY = Captain Morgane and the Golden Turtle SKLDSV = K11 - Kommissare im Einsatz SKMJAF = Kamen Rider Climax Heroes W SKOEA4 = Karaoke Revolution Glee Volume 3 SKOPA4 = Karaoke Revolution Glee Volume 3 SKREG9 = Kamen Rider Dragon Knight SKSE54 = NBA 2K13 SKSP54 = NBA 2K13 SKTE78 = All Star Karate SKTP78 = All Star Karate SKUE78 = Kung Fu Panda 2 SKUP78 = Kung Fu Panda 2 SKVE20 = Kevin Van Dam's Big Bass Challenge SKWPNK = Cocoto Kart Racer 2 SKXE20 = Pirate Blast SKXPFH = Pirate Blast SKYE52 = Skylanders: Giants SKYP52 = Skylanders: Giants SKYX52 = Skylanders: Giants SKYZ52 = Skylanders: Giants SKZE52 = DreamWorks Super Star Kartz SKZP52 = DreamWorks Super Star Kartz SL2J01 = Zero: Shinku no Chou SL2P01 = Project Zero 2: Wii Edition SL3ENR = Dragon's Lair Trilogy SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = The Last Airbender SLAP78 = The Last Airbender SLAZ78 = The Last Airbender: ToysRUs Special Edition SLCEGN = Get Up And Dance SLCPGN = Get Up And Dance SLDEYG = Let's Dance SLDPLG = Let's Dance with Mel B SLEE78 = Deepak Chopra's Leela SLEP78 = Deepak Chopra's Leela SLFE01 = New Super Mario Bros. 3 The Final Levels SLFP01 = New Super Mario Bros. 3: The Final Levels SLFPKM = Let's Sing SLFXKM = Let's Sing 5 - Spanish version SLHEWR = LEGO Harry Potter: Years 5-7 SLHPWR = LEGO Harry Potter: Years 5-7 SLIE52 = Little League World Series Baseball: Double Play SLLEWW = Lucha Libre AAA: Héroes del Ring SLPP5D = The Spirit of the Wolf SLREWR = LEGO The Lord of the Rings SLRPWR = LEGO The Lord of the Rings SLSEXJ = The Last Story SLSJ01 = The Last Story SLSP01 = The Last Story SLTEJJ = NewU Fitness First Mind Body: Yoga & Pilates Workout SLTPLG = NewU Fitness First Mind Body: Yoga & Pilates Workout SLVP41 = We Dare SLWE41 = Where's Waldo? The Fantastic Journey SLYESZ = Beastly SLYPNJ = Beastly SM2E52 = 10 Minute Solution SM2P52 = 10 Minute Solution SM3E01 = Super Mario Bros. 3+ SM4E20 = Monster Trucks Mayhem SM4PXT = Monster Trucks: Ultra Mega Xtreme!!! SM5EAF = Power Rangers Samurai SM5PAF = Power Rangers Samurai SM6PNK = My Body Coach 2: Fitness & Dance SM7E69 = Madden NFL 12 SM8D52 = Call of Duty: Modern Warfare 3 SM8E52 = Call of Duty: Modern Warfare 3 SM8F52 = Call of Duty: Modern Warfare 3 SM8I52 = Call of Duty: Modern Warfare 3 SM8P52 = Call of Duty: Modern Warfare 3 SM8S52 = Call of Duty: Modern Warfare 3 SM8X52 = Call of Duty: Modern Warfare 3 SM9E54 = Major League Baseball 2K12 SMAENR = Marines: Modern Urban Combat SMAPGN = Marines: Modern Urban Combat SMBE8P = Super Monkey Ball: Step & Roll SMBJ8P = Super Monkey Ball: Step & Roll SMBP8P = Super Monkey Ball: Step & Roll SMCENR = We Wish You A Merry Christmas SMCPXT = We Wish You A Merry Christmas SMD3OH = SingItStar e La Magia Disney SMEE69 = Madden NFL 11 SMFE4Q = Phineas and Ferb: Across the 2nd Dimension SMFP4Q = Phineas and Ferb: Across the 2nd Dimension SMGE78 = Megamind: Mega Team Unite SMGP78 = Megamind: Mega Team Unite SMGX = SaveGame Manager GX SMHPNK = Marvel Super Heroes 3D: Grandmaster's Challenge SMIE41 = Who Wants To Be A Millionaire SMIG3Q = SingItStar Made in Germany SMJE52 = Monster Jam: Path of Destruction SMJP52 = Monster Jam: Path of Destruction SMKE4Z = Gem Smashers SMLE54 = Major League Baseball 2K10 SMME02 = Super Mario: Mushroom Adventure PLUS - Winter Moon SMMJ0Q = Momu chan Diet Wii Figurobics by Chon Dayon SMMP01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 4. SMMP02 = Super Mario: Mushroom Adventure PLUS: Winter Moon SMNC01 = New Super Mario Bros. Wii SMNE01 = New Super Mario Bros. Wii SMNE02 = New Super Mario Remake SMNE03 = Newer Super Mario Bros. Wii SMNE04 = Cannon Super Mario Bros. Wii SMNE05 = Another Super Mario Bros. Wii SMNE06 = Newer Summer Sun SMNE07 = Newer Holiday Special SMNE08 = Epic Super Bowser World SMNE09 = Old Super Mario Bros. Wii SMNE10 = Koopa Country SMNE11 = New Super Mario Bros. Wii 4 SMNE12 = Awesomer Super Luigi Mini SMNE13 = New Super Mario Bros. Wii 9 Summer Special SMNE14 = Super Mario World Wii SMNE15 = Newer Super Mario Bros. 7 SMNE16 = Newer Super Mario Sunshine SMNE17 = Flowery Super Mario Land Wii SMNE18 = Super Switchy Mario World Wii SMNE19 = New Super Mr. M Bros. Wii SMNE20 = New Super Mario Bros. H SMNE21 = Newer Super Mario Land Wii SMNE22 = Neo Mario Brothers Wii SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE24 = Super Mario Ghost Special SMNE25 = Happy Super Marionose Wii SMNE26 = New Super Mario Bros. DS Wii Version SMNE27 = Newer Super Mario All Star SMNE28 = New Super Mario World SMNE29 = Not So Super Toaster Bros.: The Newer Collab! SMNE2D = Super Mario 2D Land 7 SMNE30 = New Super Mario Bros. Koopa Kall SMNE31 = New Super Mario Bros. Wii - Other World SMNE32 = Super Mario Legends SMNE33 = New Super Mario Bros. Wii Rollercoaster Party SMNE34 = New Super Mario Bros. Wii: Yoshi Mode SMNE35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNE36 = New Super Mario Bros. Wii Hack Pack SMNE37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNE38 = New Super Mario Bros. Wii Underground Maze SMNE39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNE40 = Newer Super Mario Bros. Wii U SMNE41 = Devil Mario Winter Special SMNE42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNE99 = Children's Super Mario Bros. Wii SMNED2 = New Super Mario Bros. + Animal Edition SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNENW = Newer Mario Escapade SMNEPM = Super Mario: Mushroom Adventure PLUS SMNEPS = New Super Mario Bros. Plus SMNERE = Retro Mario Bros. SMNERV = RVLution Wii SMNESL = Newer Super Mario Land Wii SMNESM = New Super Ghost Mario Wii SMNESN = New Super Mario Bros. Wii H SMNESS = New Super Mario Bros. 7 SMNEXD = Deluxe Super Mario Bros. Wii SMNEXR = Super Mario Remix SMNEYE = 8Forrest's Super Mario Bros. Wii SMNEYL = Luigi's Super Yoshi Bros. SMNEYM = You Super Mario Bros. Me Summer Special SMNEYS = Yoshi Super Mario Bros. Wii SMNEYU = You Super Mario Bros. Me SMNEYW = Newer Super Mario World Yoshi Way SMNEYY = You Super Mario Bros. Me Autumn Adventure SMNEZ2 = New JeDa Mario Bros. Wii SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZG = GF Super Mario Bros. Wii SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZQ = Basic Super Mario Bros. Wii SMNEZR = Newer Super Wario World Wii SMNEZS = Another Newer Super Mario Bros. Wii SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZX = Donkey Kong Remastered SMNEZY = Super Mario Skyland SMNEZZ = New Super Mario Bros. 2 Wii Version SMNJ01 = New Super Mario Bros. Wii SMNJ02 = Awesomer Super Luigi Mini SMNJ03 = Newer Super Mario Bros. Wii SMNJ04 = Cannon Super Mario Bros. Wii SMNJ06 = Newer Summer Sun SMNJ07 = Newer Holiday Special SMNJ08 = Epic Super Bowser World SMNJ10 = Koopa Country SMNJ11 = New Super Mario Bros. Wii 4 SMNJ13 = New Super Mario Bros. Wii 9 Summer Special SMNJ14 = Super Mario World Wii SMNJ15 = Newer Super Mario Bros. 7 SMNJ16 = Newer Super Mario Sunshine SMNJ17 = Flowery Super Mario Land Wii SMNJ18 = Super Switchy Mario World Wii SMNJ19 = New Super Mr. M Bros. Wii SMNJ20 = New Super Mario Bros. H SMNJ21 = Newer Super Mario Land Wii SMNJ22 = Neo Mario Brothers Wii SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ24 = Super Mario Ghost Special SMNJ25 = Happy Super Marionose Wii SMNJ26 = New Super Mario Bros. DS Wii Version SMNJ27 = Newer Super Mario All Star SMNJ28 = New Super Mario World SMNJ29 = Not So Super Toaster Bros.: The Newer Collab! SMNJ2D = Super Mario 2D Land Wii SMNJ30 = New Super Mario Bros. Koopa Kall SMNJ31 = New Super Mario Bros. Wii - Other World SMNJ32 = Super Mario Legends SMNJ33 = New Super Mario Bros. Wii Rollercoaster Party SMNJ34 = New Super Mario Bros. Wii: Yoshi Mode SMNJ35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNJ36 = New Super Mario Bros. Wii Hack Pack SMNJ37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNJ38 = New Super Mario Bros. Wii Underground Maze SMNJ39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNJ40 = Newer Super Mario Bros. Wii U SMNJ41 = Devil Mario Winter Special SMNJ42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNJ99 = Children's Super Mario Bros. Wii SMNJD2 = New Super Mario Bros. + Animal Edition SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJNW = Newer Mario Escapade SMNJPM = Super Mario: Mushroom Adventure PLUS SMNJPS = New Super Mario Bros. Plus SMNJRE = Retro Mario Bros. SMNJRV = RVLution Wii SMNJSL = Newer Super Mario Land Wii SMNJSM = New Super Ghost Mario Wii SMNJXD = Deluxe Super Mario Bros. Wii SMNJXR = Super Mario Remix SMNJYE = 8Forrest's Super Mario Bros. Wii SMNJYL = Luigi's Super Yoshi Bros. SMNJYM = You Super Mario Bros. Me Summer Special SMNJYS = Yoshi Super Mario Bros. Wii SMNJYY = You Super Mario Bros. Me Autumn Adventure SMNJZ2 = New JeDa Mario Bros. Wii SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZG = GF Super Mario Bros. Wii SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZQ = Basic Super Mario Bros. Wii SMNJZR = Newer Super Wario World Wii SMNJZS = Another Newer Super Mario Bros. Wii SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZX = Donkey Kong Remastered SMNJZY = Super Mario Skyland SMNJZZ = New Super Mario Bros. 2 Wii Version SMNK01 = New Super Mario Bros. Wii SMNP01 = New Super Mario Bros. Wii SMNP02 = Awesomer Super Luigi Mini SMNP03 = Newer Super Mario Bros. Wii SMNP04 = Cannon Super Mario Bros. Wii SMNP05 = Another Super Mario Bros. Wii SMNP06 = Newer Summer Sun SMNP07 = Newer Holiday Special SMNP08 = Epic Super Bowser World SMNP10 = Koopa Country SMNP11 = New Super Mario Bros. Wii 4 SMNP12 = Awesomer Super Luigi Mini SMNP13 = New Super Mario Bros. Wii 9 Summer Special SMNP14 = Super Mario World Wii SMNP15 = Newer Super Mario Bros. 7 SMNP16 = Newer Super Mario Sunshine SMNP17 = Flowery Super Mario Land Wii SMNP18 = Super Switchy Mario World Wii SMNP19 = New Super Mr. M Bros. Wii SMNP20 = New Super Mario Bros. H SMNP21 = Newer Super Mario Land Wii SMNP22 = Neo Mario Brothers Wii SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP24 = Super Mario Ghost Special SMNP25 = Happy Super Marionose Wii SMNP26 = New Super Mario Bros. DS Wii Version SMNP27 = Newer Super Mario All Star SMNP28 = New Super Mario World SMNP29 = Not So Super Toaster Bros.: The Newer Collab! SMNP2D = Super Mario 2D Land Wii SMNP30 = New Super Mario Bros. Koopa Kall SMNP31 = New Super Mario Bros. Wii - Other World SMNP32 = Super Mario Legends SMNP33 = New Super Mario Bros. Wii Rollercoaster Party SMNP34 = New Super Mario Bros. Wii: Yoshi Mode SMNP35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNP36 = New Super Mario Bros. Wii Hack Pack SMNP37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNP38 = New Super Mario Bros. Wii Underground Maze SMNP39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNP40 = Newer Super Mario Bros. Wii U SMNP41 = Devil Mario Winter Special SMNP42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNP77 = New Super Mario Bros. Wii Arcadia SMNP99 = Children's Super Mario Bros. Wii SMNPD2 = New Super Mario Bros. + Animal Edition SMNPDU = DU Super Mario Bros. : Anniversary Edition SMNPLL = Newer Super Luigi Wii SMNPLM = Newer Super Luigi Wii Dark Moon SMNPMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNPNW = Newer Mario Escapade SMNPO1 = New Super Mario Custom Edition SMNPPM = Super Mario: Mushroom Adventure PLUS SMNPPS = New Super Mario Bros. Plus SMNPRE = Retro Mario Bros. SMNPRV = RVLution Wii SMNPSL = Newer Super Mario Land Wii SMNPSM = New Super Ghost Mario Wii SMNPXD = Deluxe Super Mario Bros. Wii SMNPXR = Super Mario Remix SMNPYE = 8Forrest's Super Mario Bros. Wii SMNPYL = Luigi's Super Yoshi Bros. SMNPYM = You Super Mario Bros. Me Summer Special SMNPYS = Yoshi Super Mario Bros. Wii SMNPYY = You Super Mario Bros. Me Autumn Adventure SMNPZ2 = New JeDa Mario Bros. Wii SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZG = GF Super Mario Bros. Wii SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZQ = Basic Super Mario Bros. Wii SMNPZR = Newer Super Wario World Wii SMNPZS = Another Newer Super Mario Bros. Wii SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZX = Donkey Kong Remastered SMNPZY = Super Mario Skyland SMNPZZ = New Super Mario Bros. 2 Wii Version SMNW01 = New Super Mario Bros. Wii SMOE41 = Michael Jackson: The Experience SMOJ41 = Michael Jackson: The Experience SMOP41 = Michael Jackson The Experience SMOT3Q = SingItStar Motown SMOX41 = Michael Jackson: The Experience - Walmart Edition SMOY41 = Michael Jackson: The Experience - Special Edition SMPE69 = Monopoly Collection SMPP01 = New Super Mario Bros. Wii 2: The Other P SMPP69 = Monopoly Collection SMRE01 = New Super Mario Bros. Wii: Super Mario Bros. 1 Custom SMRE78 = WWE SmackDown vs. Raw 2011 SMRP78 = WWE SmackDown vs. Raw 2011 SMSE01 = New Super Mario Bros Wii 12 Sunshine Paradise SMSE78 = Marvel Super Hero Squad: The Infinity Gauntlet SMSP78 = Marvel Super Hero Squad: The Infinity Gauntlet SMTJ18 = Momotarô Dentetsu 2010 SMUJAF = Daikaijuu Battle: Ultra Coliseum DX - Ultra Senshi Daishuuketsu SMVE01 = Super Mario Vacation SMVE54 = Major League Baseball 2K11 SMVJ01 = Super Mario Vacation SMVP01 = Super Mario Vacation SMWE01 = Newer Super Mario World U SMWE4Z = Man vs. Wild SMWJ01 = Newer Super Mario World U SMWP01 = Newer Super Mario World U SMYE20 = Minute to Win It SMZE78 = Marvel Super Hero Squad: Comic Combat SMZP78 = Marvel Super Hero Squad: Comic Combat SN2E69 = NERF N-Strike Double Blast Bundle SN3EYG = Maximum Racing: Rally Racer SN3PNG = Rally Racer SN4EDA = Naruto Shippuden: Dragon Blade Chronicles SN4JDA = Naruto Shippuuden: Ryujinki SN4XGT = Naruto Shippuden: Dragon Blade Chronicles SN5EYG = Maximum Racing: Crash Car Racer SN5PNG = Crash Car Racer SN6EYG = Maximum Racing: Super Karts SN6PNG = Super Karts SN7EYG = Maximum Racing: Super Truck Racer SN7PNG = Super Truck Racer SN8EYG = Maximum Racing: Sprint Cars SN8PNG = Sprint Cars SN9E54 = Nickelodeon Fit SNAE52 = Cabela's North American Adventures 2011 SNBE41 = NCIS: The Game SNBP41 = NCIS: The Game SNCE8P = Sonic Colors SNCJ8P = Sonic Colors SNCP8P = Sonic Colours SNDE20 = Deal or No Deal: Special Edition SNEENR = North American Hunting Extravaganza 2 SNEPXT = North American Hunting 2: Extravaganza SNFE69 = EA Sports Active NFL Training Camp SNGEJJ = Get Fit with Mel B SNGPLG = Get Fit with Mel B SNHE69 = Need for Speed: Hot Pursuit SNHJ13 = Need for Speed: Hot Pursuit SNHP69 = Need for Speed: Hot Pursuit SNIE54 = Nicktoons MLB SNJE69 = NBA Jam SNJP69 = NBA Jam SNKX54 = Nickelodeon Fit SNLE01 = New Super Mario Bros. Wii 0-2 Next Generation Levels SNLE54 = Nickelodeon Dance SNLP54 = Nickelodeon Dance SNLX54 = Nickelodeon Dance SNMEAF = Namco Museum Megamix SNOPY1 = Now! That's What I Call Music: Dance & Sing SNPE52 = NASCAR The Game: Inside Line SNQE7U = National Geographic Challenge! SNQPLG = National Geographic Challenge! SNRE52 = NASCAR Unleashed SNSE52 = NASCAR 2011: The Game SNTEXN = Netflix Instant Streaming Disc SNUPJW = Happy Neuron Academy SNVE69 = Need for Speed: The Run SNVJ13 = Need for Speed: The Run SNVP69 = Need for Speed: The Run SNXJDA = Naruto Shippuuden: Gekitou Ninja Taisen Special SNYEVZ = Monster High: 13 Wishes SNYPVZ = Monster High: 13 Wishes SNZEVZ = Barbie: Dreamhouse Party SNZPVZ = Barbie: Dreamhouse Party SO3EE9 = Rune Factory: Tides of Destiny SO3J99 = Rune Factory: Oceans SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg 2 SOCE4Z = Deadliest Catch: Sea of Chaos SOIEEB = 101-in-1 Sports Party Megamix SOIPHZ = 101-in-1 Sports Party Megamix SOJE41 = Rayman Origins SOJP41 = Rayman Origins SOKEA4 = Karaoke Joysound SOKJ18 = Karaoke Joysound Wii DX SOME01 = Rhythm Heaven Fever SOMJ01 = Minna no Rhythm Tengoku SOMK01 = Rhythm Heaven Fever SOMP01 = Beat the Beat: Rhythm Paradise SONDMR = My First Songs SONFMR = My First Songs SONPMR = My First Songs SORE4Z = The Oregon Trail SOSEG9 = Turbo: Super Stunt Squad SOSPAF = Turbo: Super Stunt Squad SOTE52 = Wipeout: The Game SOUE01 = The Legend of Zelda: Skyward Sword SOUJ01 = The Legend of Zelda: Skyward Sword SOUK01 = The Legend of Zelda: Skyward Sword SOUP01 = The Legend of Zelda: Skyward Sword SP2E01 = Wii Sports + Wii Sports Resort SP2P01 = Wii Sports + Wii Sports Resort SP3E41 = The $1,000,000 Pyramid SP4PJW = Pétanque Master SP4V = Castlevania: Rondo of Blood SP5E70 = The Kore Gang: Outvasion From Inner Earth SP5PVV = The Kore Gang: Outvasion From Inner Earth SP6DSV = Popstars SP7EAF = Pac-Man Party SP7JAF = Pac-Man Party SP7PAF = Pac-Man Party SP8E78 = The Penguins of Madagascar: Dr. Blowhole Returns Again! SP8P78 = The Penguins of Madagascar: Dr. Blowhole Returns Again! SP9P4Q = SingIt Star POP 2009 SP9PJW = Pucca's Race for Kisses SPAE5G = Pirates Plund-Arrr SPBPGT = Spellbound Party SPCPZS = Pocoyo Racing SPDE52 = Spider-Man: Shattered Dimensions SPDP52 = Spider-Man: Shattered Dimensions SPEE20 = Speed SPEPXT = Speed SPGPPN = Peppa Pig: Fun And Games SPHPJW = Spaghetti Western Shooter SPIE18 = Oops! Prank Party SPIJ18 = Party Game Box 100 SPIP18 = Games Island SPKXPV = Springdale: Riding Adventures SPMDRM = Mahjongg Party SPMPWP = Mahjong Party Pack SPOPFR = Winter Sports 2011: Go for Gold SPPEFS = Power Punch SPQE7T = I SPY Spooky Mansion SPRE01 = New Super Mario Bros. Wii 14 Project Mario SPRE41 = The Price Is Right: 2010 Edition SPTJEB = Hospital. 6 nin no Ishi SPUE20 = Let's Paint SPVEA4 = Pro Evolution Soccer 2011 SPVPA4 = Pro Evolution Soccer 2011 SPVXA4 = Pro Evolution Soccer 2011 SPVYA4 = Pro Evolution Soccer 2011 SPWHZH = The Studio 100: Play Island SPXP41 = Prince of Persia: The Forgotten Sands SPYDSV = Yetisports: Penguin Party Island SPZE5G = Pizza Delivery Boy SQ2EPZ = Country Dance SQ2PXT = Country Dance SQAE52 = Cabela's African Adventures SQBPXT = The Cube SQDE8P = Gunblade NY & LA Machineguns : Arcade Hits Pack SQDP8P = Gunblade NY & LA Machineguns: Arcade Hits Pack SQEENG = We Sing Pop! SQEPNG = We Sing Pop! SQFE5G = Phineas and Ferb: Quest for Cool Stuff SQFPGT = Phineas and Ferb: Quest for Cool Stuff SQIE4Q = Disney Infinity SQIP4Q = Disney Infinity SQIY4Q = Disney Infinity SQKE5G = Cooking Mama 2-Pack SQKK01 = Cooking Mama 2 Pack SQLE4Z = Cartoon Network Punch Time Explosion XL SQLPGN = Cartoon Network: Punch Time Explosion XL SQME52 = Spider-Man: Edge of Time SQMP52 = Spider-Man: Edge of Time SQPPX4 = Speed 2 SQQEVZ = Disney Planes: Fire & Rescue SQQPVZ = Disney Planes: Fire & Rescue SQRPNG = We Sing Rock! SQTPML = The Ultimate Battle Of The Sexes: Quizz & Play! SQUDX3 = Quiz Party SQUFX3 = Quiz Party SQVE69 = FIFA 15 SQVP69 = FIFA 15 - Legacy Edition SQVX69 = FIFA 15 - Legacy Edition SR4E41 = Raving Rabbids: Travel in Time SR4J41 = Raving Rabbids: Travel in Time SR4P41 = Raving Rabbids: Travel in Time SR5E41 = Raving Rabbids Party Collection SR5P41 = Raving Rabbids Party Collection SR6EHG = Reader Rabbit 1st Grade SR7EHG = Reader Rabbit 2nd Grade SR8EHG = Reader Rabbit Kindergarten SR9EHG = Reader Rabbit Preschool SRAJMS = Rajirugi Noa Wii SRBP4Q = SingItStar: R&B SRBPHS = Rugby League 3 SRCE69 = Rock Band: Country Track Pack 2 SREXNL = Reader Rabbit Kindergarten SRFE52 = Rapala Pro Bass Fishing SRFP52 = Rapala Pro Bass Fishing SRGE69 = Rango SRGP01 = New Super Mario Bros Wii 2 Reggie SRGP69 = Rango SRHP01 = New Super Mario Bros. Wii 7 Retro Heaven SRIE78 = Rio SRIP78 = Rio SRJJAF = Super Sentai Battle: Ranger Cross SRKEFP = Remington Super Slam Hunting: Alaska SRKPNK = Remington Dangerous Animals SRLXNL = Reader Rabbit Preschool SRME18 = Rooms: The Main Building SRMJ18 = Rooms: Fushigi na Ugoku Heya SRNE70 = Project Runway SRNP01 = New Super Mario Bros. Wii Revolution SRNP70 = Project Runway SRPE4Q = Disney Tangled SRPP4Q = Disney Tangled SRQE41 = Racquet Sports SRQP41 = Racket Sports Party SRRENR = Rec Room Games SRRPGN = Great Party Games SRSE20 = Super Sonic Racer SRSPXT = Supersonic Racer SRTXNL = Reader Rabbit 1st Grade SRUE4Z = Rudolph the Red-Nosed Reindeer SRVE41 = The Price Is Right Decades SRVP01 = New Super Mario Bros Revolution SRWXNL = Reader Rabbit 2nd Grade SRXE52 = Generator Rex: Agent of Providence SRXP52 = Generator Rex: Agent of Providence SRYEAF = ExerBeat: Gym Class Workout SRYJAF = Fitness Party SRYPAF = ExerBeat: Gym Class Workout SS2PFR = Winter Sports 2012: Feel the Spirit SS3EWR = Sesame Street: Elmo's A-to-Zoo Adventure SS3PWR = Sesame Street: Elmo's A-to-Zoo Adventure SS3UWR = Sesame Street: Elmo's A-to-Zoo Adventure SS4EWR = Sesame Street: Cookie's Counting Carnival SS4UWR = Sesame Street: Cookie's Counting Carnival SS5ENR = Satisfashion SS6UHS = AFL Live: Game of the Year Edition SS7EFP = Remington Super Slam Hunting: Africa SS7URN = Remington Super Slam Hunting: Africa SS8E78 = SpongeBob SquigglePants SS8P78 = SpongeBob SquigglePants SS9JMS = Milestone Shooting Collection 2 SSBE78 = Puss in Boots SSBP78 = Puss in Boots SSCDWR = Scene It? Bright Lights! Big Screen! SSCEPM = Scene It? Bright Lights! Big Screen! SSCFPM = Scene It? Bright Lights! Big Screen! SSCFWR = Scene It? Bright Lights! Big Screen! SSCIWR = Scene It? Bright Lights! Big Screen! SSCPWR = Scene It? Bright Lights! Big Screen! SSCSWR = Scene It? Bright Lights! Big Screen! SSDDRV = Schlag den Raab SSEDNG = We Sing: Encore SSEPNG = We Sing: Encore SSEVNG = We Sing: Encore SSFPKM = Sing 4: The Hits Edition SSGPNG = We Sing SSHPHH = Sherlock Holmes: The Silver Earring SSIENR = Winter Blast: 9 Snow & Ice Games SSJEJJ = Summer Stars 2012 SSJPKM = Summer Stars 2012 SSLENR = I Love Horses: Rider's Paradise SSLPKM = The Saddle Club SSLPOH = SingItStar Legends SSMEYG = American Mensa Academy SSMPGD = Mensa Academy SSNEYG = Sniper Elite SSNPHY = Sniper Elite SSPE52 = Skylanders: Spyro's Adventure SSPJ52 = Skylanders: Spyro's Adventure SSPP52 = Skylanders: Spyro's Adventure SSPX52 = Skylanders: Spyro's Adventure SSQE01 = Mario Party 9 SSQJ01 = Mario Party 9 SSQK01 = Mario Party 9 SSQP01 = Mario Party 9 SSQW01 = Mario Party 9 SSRE20 = Wild West Shootout SSRPXT = Wild West Shootout SSSE01 = New Super Mario Bros. Wii: Summer Sun SSSEWR = Sesame Street: Elmo's Musical Monsterpiece SSTEG9 = Kid Adventures: Sky Captain SSTPY5 = Stunt Flyer: Hero of the Skies SSUES5 = Sushi Go Round SSVE52 = Wipeout 3 SSWDRM = Water Sports SSWEPZ = Water Sports SSWPGR = Water Sports SSZE5G = Swords ST3J01 = Kiki Trick ST4PNX = Thomas & Friends: Hero of the Rails ST4XNX = Thomas & Friends: Hero of the Rails ST5E52 = Transformers: Cybertron Adventures ST5P52 = Transformers: Cybertron Adventures ST6E78 = The Biggest Loser Challenge ST6P78 = The Biggest Loser Challenge ST7E01 = Fortune Street ST7JGD = Itadaki Street Wii ST7P01 = Boom Street ST8P75 = SingItStar 80's ST9E52 = Top Shot Arcade STAE78 = Pictionary STAP75 = SingItStar Apres Ski Hits STAP78 = Pictionary STAU78 = Pictionary STCP75 = SingItStar Singstar STDEFP = Reload STDP75 = SingItStar Deutsch Rock-Pop STEETR = Tetris Party Deluxe STEJ18 = Tetris Party Premium STEPTR = Tetris Party Deluxe STFE52 = Transformers: Prime STFP52 = Transformers Prime: The Game STGJAF = Tales of Graces STHE8P = THOR: God of Thunder STHP75 = SingItStar Hottest Hits STHP8P = THOR: God of Thunder STIFKM = Titeuf le Film STJJAF = Taiko no Tatsujin Wii: Ketteiban STKE08 = Tatsunoko vs. Capcom: Ultimate All-Stars STKJ08 = Tatsunoko vs. Capcom: Ultimate All-Stars STKP08 = Tatsunoko vs. Capcom: Ultimate All-Stars STLE78 = Truth or Lies STLP78 = Truth or Lies STMEGN = Titanic Mystery STMPKP = Titanic Mystery STNE41 = The Adventures of Tintin: The Game STNP41 = The Adventures of Tintin: The Secret of the Unicorn STOE4Q = Cars Toon: Mater's Tall Tales STOP4Q = Cars Toon: Mater's Tall Tales STOX4Q = Cars Toon: Mater's Tall Tales STPP75 = SingItStar Pop Hits STPPML = Pet Vet: Marine Patrol STQJHF = Inazuma Eleven Strikers STQP01 = Inazuma Eleven Strikers STQP75 = SingItStar Queen STQX01 = Inazuma Eleven Strikers STRE4Q = Tron: Evolution - Battle Grids STRP4Q = Tron: Evolution - Battle Grids STRP75 = SingItStar Rock Ballads STRX4Q = Tron: Evolution - Battle Grids Championship Edition STSE4Q = Toy Story 3 STSP4Q = Toy Story 3 STSP75 = SingItStar Schlager STSX4Q = Toy Story 3 STSY4Q = Toy Story 3 STSZ4Q = Toy Story 3: Toy Box Special Edition STTDRM = Hidden Mysteries: Titanic STTE52 = Hidden Mysteries: Titanic STTPGR = Hidden Mysteries Titanic: Secrets of the Fateful Voyage STTXGR = Hidden Mysteries: Titanic STUPRN = Turbo Trainz STVDSV = TV Total Events STWE69 = Tiger Woods PGA Tour 11 STWP69 = Tiger Woods PGA Tour 11 STXE69 = Tiger Woods PGA Tour 12: The Masters STXP69 = Tiger Woods PGA Tour 12: The Masters STYE52 = Tony Hawk: Shred STYP52 = Tony Hawk: Shred STZE52 = Transformers: Dark of the Moon - Stealth Force Edition STZP52 = Transformers: Dark of the Moon - Stealth Force Edition SU2E54 = Nickelodeon Dance 2 SU2P54 = Nickelodeon Dance 2 SU2X54 = Nickelodeon Dance 2 SU3DMR = U-Sing 2 SU3FMR = U-Sing 2 SU3HMR = U-Sing 2: Popstars Edition SU3PMR = U-Sing 2 SU3SMR = U-Sing 2 SU3UMR = U-Sing 2: Australian Edition SU4E78 = UFC Personal Trainer: The Ultimate Fitness System SU4P78 = UFC Personal Trainer: The Ultimate Fitness System SU5EVZ = Monster High: Skultimate Roller Maze SU5PVZ = Monster High: Skultimate Roller Maze SU6E5G = Zumba Fitness Core SU6P5G = Zumba Fitness Core SU6XGT = Zumba Fitness Core SU7EG9 = Rise of the Guardians SU7PAF = Rise of the Guardians SU8PNG = We Sing: Deutsche Hits 2 SU9E4Q = Disney Planes SU9P4Q = Disney Planes SU9X4Q = Disney Planes SUKE01 = Kirby's Return to Dream Land SUKJ01 = Hoshi no Kirby Wii SUKK01 = Kirby's Return to Dream Land SUKP01 = Kirby's Adventure Wii SUMJC8 = Winning Post World 2010 SUNEYG = Deer Drive Legends SUOE41 = The Hip Hop Dance Experience SUOP41 = The Hip Hop Dance Experience SUPE01 = Wii Party SUPJ01 = Wii Party SUPK01 = Wii Party SUPP01 = Wii Party SUQENG = We Sing UK Hits SUQPNG = We Sing: UK Hits SURE01 = New Super Mario Bros. Wii 19 Resurrection U SUREA4 = Dance Dance Revolution II SURPA4 = Dance Dance Revolution: Hottest Party 5 SUSFMR = U-Sing Johnny Hallyday SUSPMR = U-Sing Girls Night SUTESZ = Once Upon A Time SUUE78 = uDraw Studio: Instant Artist SUUP78 = uDraw Studio: Instant Artist SUVE52 = Cabela's Dangerous Hunts 2013 SUVP52 = Cabela's Dangerous Hunts 2013 SUWE78 = uDraw Studio SUWP78 = uDraw Studio SUXEA4 = Pro Evolution Soccer 2010 SUXJA4 = Winning Eleven PLAY MAKER 2010 SUXPA4 = Pro Evolution Soccer 2010 SUXXA4 = Pro Evolution Soccer 2010 SUXYA4 = Pro Evolution Soccer 2010 SUYDRV = Schlag den Raab - Das 3. Spiel SUZD7K = Benjamin Blümchen - Törööö im Zoo SV2E78 = Big Beach Sports 2 SV2P78 = Big Beach Sports 2 SV3EG9 = Madagascar 3: The Video Game SV3PAF = Madagascar 3: Europe's Most Wanted SV4E8P = Virtua Tennis 4 SV4P8P = Virtua Tennis 4 SV5PRV = The Voice of Germany Vol. 2 SV6SRV = The Voice SV7EVZ = Penguins of Madagascar SV7PVZ = Penguins of Madagascar SVBE52 = Battleship SVBP52 = Battleship SVCEPZ = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVHP69 = FIFA 14 - Legacy Edition SVHX69 = FIFA 14 - Legacy Edition SVME01 = Super Mario All-Stars SVMJ01 = Super Mario Collection: 25th Anniversary Edition SVMK01 = Super Mario All-Stars SVMP01 = Super Mario All-Stars: 25th Anniversary Edition SVOEWW = El Chavo SVPESZ = Vegas Party SVPPNJ = Vegas Party SVSPZX = Battle vs Chess SVTEXS = Bit.Trip Complete SVTP99 = BIT.TRIP COMPLETE SVUPRV = The Voice of Germany SVVEG9 = The Croods: Prehistoric Party! SVVPAF = The Croods: Prehistoric Party! SVWEQH = Veggy World SVXE52 = Skylanders: Swap Force SVXF52 = Skylanders: Swap Force SVXI52 = Skylanders: Swap Force SVXP52 = Skylanders: Swap Force SVXY52 = Skylanders: Swap Force SVYEG9 = Ben 10: Omniverse 2 SVYPAF = Ben 10: Omniverse 2 SVZEVZ = How to Train Your Dragon 2 SVZPVZ = How to Train Your Dragon 2 SW2E52 = Wipeout 2 SW3EJJ = Winter Stars SW3PKM = Winter Stars SW4JA4 = Winning Eleven PLAY MAKER 2011 SW6E78 = WWE '12 SW6P78 = WWE '12 SW7EVN = Gunslingers SW7PNK = Western Heroes SW8ENG = We Sing 80s SW8PNG = We Sing 80s SW9EVN = Wicked Monsters Blast! SW9PYT = Wicked Monsters Blast! SWAE52 = DJ Hero SWAP52 = DJ Hero SWBE52 = DJ Hero 2 SWBP01 = New Super Mario Bros. Wii 0 Where It All Began SWBP52 = DJ Hero 2 SX2PNG = Jungle Kartz SX3EXJ = Pandora's Tower SX3J01 = Pandora’s Tower: Until I Return to Your Side SX3P01 = Pandora's Tower SX4E01 = Xenoblade Chronicles SX4J01 = Xenoblade SX4P01 = Xenoblade Chronicles SX5E4Z = Santa Claus is Comin' to Town! SX6JAF = Pretty Cure All Stars Everyone Gather ☆ Let's Dance SX7E52 = Teenage Mutant Ninja Turtles SX7P52 = Teenage Mutant Ninja Turtles SX8E52 = X-Men Destiny SX8P52 = X-Men Destiny SXAE52 = Guitar Hero: World Tour SXAP52 = Guitar Hero: World Tour SXBE52 = Guitar Hero: Metallica SXBP52 = Guitar Hero: Metallica SXCE52 = Guitar Hero: Smash Hits SXCP52 = Guitar Hero: Greatest Hits SXDE52 = Guitar Hero: Van Halen SXDP52 = Guitar Hero: Van Halen SXEE52 = Guitar Hero 5 SXEF52 = Guitar Hero III Custom : Megadeth SXEP52 = Guitar Hero 5 SXFE52 = Band Hero SXFF52 = Guitar Hero III Custom : My Chemical Romance SXFP52 = Band Hero SXIE52 = Guitar Hero: Warriors of Rock SXIP52 = Guitar Hero: Warriors of Rock SY8PKM = Let's Sing 2015 SZ2E5G = Zumba Fitness 2 SZ2P5G = Zumba Fitness 2 SZ2XGT = Zumba Fitness 2 SZ3E5G = Zumba Fitness World Party SZ3PGT = Zumba Fitness World Party SZ5E5G = Zumba Fitness SZ5PGT = Zumba Fitness SZAE69 = Rock Band 2 SZAP69 = Rock Band 2 SZBE69 = Rock Band 3 SZBP69 = Rock Band 3 SZEE01 = New Super Mario Bros Wii 13 Shadow Zero Escape TITLES = http://www.gametdb.com (type: Wii language: EN version: 20150208110336) UGPE01 = Game Boy Player UGPJ01 = Game Boy Player UGPP01 = Game Boy Player ULFW = uLoader UUUE01 = New Super Mario Bros. Wii 19 Resurrection U VBGX = Visual Boy Advance GX VIPE01 = New Super Mario Bros Wii 18 Vip Mix W22E = Planet Fish W24E = 2 Fast 4 Gnomz W2AE = Big Bass Arcade W2CE = Brain Challenge W2CJ = Brain Challenge W2CP = Brain Challenge W2FP = Physiofun - Balance Training W2GD = Phoenix Wright Ace Attorney: Justice for All (Deutsche Version) W2GE = Phoenix Wright: Ace Attorney Justice for All W2GI = Phoenix Wright: Ace Attorney - Justice for All W2GJ = Gyakuten Saiban 2 W2GP = Phoenix Wright Ace Attorney: Justice for All W2IE = Fishie Fishie W2IP = Fishie Fishie W2JE = Just Jam W2KE = Let's Catch W2KJ = Let's Catch W2KP = Let's Catch W2LE = Bloons W2LP = Bloons W2ME = Blaster Master: Overdrive W2MP = Blaster Master: Overdrive W2OE = My Aquarium 2 W2OJ = Blue Oasis: Michinaru Shinkai W2OP = My Aquarium 2 W2PP = Physiofun: Pelvic Floor Training W2TE = Drill Sergeant Mindstrong W2TJ = Onitore Kyoukan ha Onigunsou W2TP = Brain Cadets W2YE = Fireplacing W2YP = My Fireplace W34J = Simple Series Vol. 4: The Misshitsu kara no Dasshutsu W3AE = Carmen Sandiego Adventures in Math: The Big Ben Burglary W3BE = Soccer Bashi W3BP = Soccer Bashi W3DJ = 3° C W3FE = 3D Pixel Racing W3FP = 3D Pixel Racing W3GD = Phoenix Wright Ace Attorney 3: Trials And Tribulations W3GE = Phoenix Wright Ace Attorney: Trials and Tribulations W3GI = Phoenix Wright: Ace Attorney - Trials and Tribulations W3GJ = Gyakuten Saiban 3 W3GP = Phoenix Wright Ace Attorney: Trials and Tribulations W3JE = Triple Jumping Sports W3KE = ThruSpace W3KJ = Surinuke Anatousu W3KP = ThruSpace: High Velocity 3D Puzzle W3LE = Carmen Sandiego Adventures in Math: The Lady Liberty Larceny W3ME = The Three Musketeers: One for all W3MP = The Three Musketeers: One for all W3PE = Triple Throwing Sports W3RE = Triple Running Sports W3SE = Triple Shot Sports W3TE = Pearl Harbor Trilogy - 1941: Red Sun Rising W3TP = Pearl Harbor Trilogy 1941: Red Sun Rising W42J = Fortune: Hoshi no Furisosogu Oka W44E = Stop Stress: A Day of Fury W44P = Stop Stress: A Day of Fury W48E = ShadowPlay W4AE = Arcade Sports W4AP = Arcade Sports: Air Hockey, Bowling, Pool, Snooker W4KE = Deer Captor W4KJ = Shikagari W4OJ = Shikakui Atama wo Marukusuru Challenge W4TE = Spaceball Revolution W4TP = Spaceball Revolution W54E = 5 Spots Party W54P = 5 Spots Party W5AE = 5 Arcade Gems W5AP = 5 Arcade Gems W5IE = 5 in 1 Solitaire W6BE = Eco Shooter: Plant 530 W6BJ = 530 Eco Shooter W6BP = Eco-Shooter: Plant 530 W72P = Successfully Learning German Year 3 W73P = Successfully Learning German Year 4 W74P = Successfully Learning German Year 5 W7IP = Successfully Learning German Year 2 W82J = Jintori Action Taikokenchi Karakuri Shiro no Nazo W8BP = Babel Rising W8CE = Bit.Trip Core W8CJ = BIT.TRIP CORE: Rhythm Seijin no Gyakushuu W8CP = Bit.Trip Core W8DJ = Mebius Drive W8IJ = Hachi-One Diver Wii W8LE = Balloon Pop Festival W8PJ = Ouchi de Mugen Puchi Puchi Wii W8WE = Happy Holidays: Halloween W8WP = Happy Holidays: Halloween W8XE = Battle Poker W9BE = Big Town Shoot Out W9BP = Big Town Shoot W9IE = Evasive Space W9IJ = Kiken Kuuiki W9LE = Christmas Clix W9RE = Happy Holidays: Christmas W9RP = Happy Holidays: Christmas W9UE = Cruise Party W9UP = Cruise Party WA2E = Magnetica Twist WA2J = Minna de Puzzloop WA2P = Actionloop Twist WA4E = WarioWare: D.I.Y. Showcase WA4J = WarioWare: D.I.Y. Showcase WA4P = WarioWare: Do It Yourself – Showcase WA5E = Carmen Sandiego Adventures in Math: The Island of Diamonds WA7E = Toribash WA7P = Toribash Violence Perfected WA8E = Art Style: Rotozoa WA8J = Art Style: Penta Tentacles WA8P = Art Style: Penta Tentacles WAAE = Aya and the Cubes of Light WAAP = Aya and the Cubes of Light WABE = Art of Balance WABP = Art of Balance WACE = Arcade Essentials WACP = Arcade Essentials WAEE = Around The World WAEP = Around the world WAFE = Airport Mania: First Flight WAFP = Airport Mania: First Flight WAGE = Pinocchio's Puzzle WAHE = Trenches Generals WAHP = Trenches: Generals WAIE = 101-in-1 Explosive Megamix WAIP = 101-in-1 Explosive Megamix WAJE = MotoHeroz WAJP = MotoHeroz WAKE = Carmen Sandiego Adventures in Math: The Case of the Crumbling Cathedral WALE = Art Style: Light Trax WALJ = Art Style: Lightstream WALP = Art Style: light trax WAME = Carmen Sandiego Adventures in Math: The Great Gateway Grab WANE = Ant Nation WANP = Ant Nation WAOE = The Very Hungry Caterpillar's ABCs WAOJ = Harapeko Aomushi no ABC WAOP = The Very Hungry Caterpillar´s ABC WAQJ = Yakuman Wii: Ide Yousuke no Kenkou Mahjong WARE01 = DU Super Wario Bros. WARJ = Tsuushin Taikyoku Igo Doujou 2700 Mon WASJ = Tsuushin Taikyoku: Hayazashi Syogi Sandan WATE = Astro Bugz Revenge WAUJ = Tsushin Taikyoku: World Chess WAYE = And Yet It Moves WAYP = And Yet It Moves WAZE = The Amazing Brain Train WB2E = Strong Bad Episode 4: Dangeresque 3 WB2P = Strong Bad Episode 4: Dangeresque 3 WB3E = Strong Bad Episode 5: 8-bit is Enough WB3P = Strong Bad Episode 5: 8-bit is Enough WB4E = Wild West Guns WB4J = Wild West Guns WB4P = Wild West Guns WB5E = Block Breaker Deluxe WB5J = Block Breaker Deluxe WB5P = Block Breaker Deluxe WB6E = TV Show King WB6J = TV Show King WB6P = TV Show King WB7E = Midnight Pool WB7J = Hamaru Billiards WB7P = Midnight Pool WB8E = Midnight Bowling WB8J = Hamaru Bowling WB8P = Midnight Bowling WBAJ = Bakutan WBBE = Snowboard Riot WBBJ = Board Warriors WBBP = Snowboard Riot WBDE = Brain Drain WBDP = Brain Drain WBEE = Pong Toss: Frat Party Games WBEP = Beer Pong: Frat Party Games WBFE = Bit.Trip Fate WBFP = Bit.Trip Fate WBGP = Bang Attack WBHE = Blood Beach WBHP = Blood Beach WBIE = Boingz WBJE = Harvest Moon: My Little Shop WBJJ = Bokujou Monogatari Series: Makiba no Omise WBKE = Arkanoid Plus! WBKJ = Arkanoid Plus! WBKP = Arkanoid Plus! WBLE = Bubble Bobble Plus! WBLJ = Bubble Bobble Wii WBLP = Bubble Bobble Plus! WBME = My Pokémon Ranch WBMJ = Minna no Pokémon Bokujou WBMP = My Pokémon Ranch WBNE = Bonsai Barber WBNJ = Bonsai Barber WBNP = Bonsai Barber WBOE = Gravitronix WBPE = PLÄTTCHEN twist 'n' paint WBPP = PLÄTTCHEN - twist 'n' paint WBQE = Star Soldier R WBQJ = Star Soldier R WBQP = Star Soldier R WBRP = Pirates: The Key of Dreams WBSE = Pop WBSJ = Pop WBSP = Pop WBTJ = Fantasic Tambourine WBVE = SPOGS Racing WBVP = SPOGS Racing WBWE = Critter Round-Up WBWJ = Saku Saku Animal Panic WBWP = Critter Round-Up WBXE = Strong Bad Episode 1: Homestar Ruiner WBXP = Strong Bad Episode 1: Homestar Ruiner WBYE = Strong Bad Episode 2: Strong Badia - The Free WBYP = Strong Bad Episode 2: Strong Badia - The Free WBZE = Strong Bad Episode 3: Baddest of the Bands WBZP = Strong Bad Episode 3: Baddest of the Bands WC2E = Crystal Defenders R2 WC2J = Crystal Defenders R2 WC2P = Crystal Defenders R2 WC6E = Chronos Twins DX WC6P = Chronos Twins DX WC8J = Line Attack Heroes WCHE = Chess Challenge! WCHP = Chess Challenge WCIE = Crystal Defenders R1 WCIJ = Crystal Defenders R1 WCIP = Crystal Defenders R1 WCJE = Cocoto Platform Jumper WCJP = Cocoto: Platform Jumper WCKE = chick chick BOOM WCKJ = chick chick BOOM WCKP = chick chick BOOM WCLE = Doc Clock: The Toasted Sandwich of Time WCNJ = Tokyo City Nights WCOE = Cocoto Fishing Master WCOP = Cocoto Fishing Master WCPE = Copter Crisis WCPP = Copter Crisis WCRE = Carnival King WCSE = CueSports: Pool Revolution WCSJ = Cue Sports: Wi-Fi Taisen Billiards WCSP = CueSports: Snooker vs Billiards WCUE = 3-2-1, Rattle Battle! WCUJ = Atsui 12-Game: FuriFuri Party! WCUP = 3-2-1, Rattle Battle! WCVE = Cave Story WCVP = Cave Story WCZE = ColorZ WCZJ = ColorZ WCZP = ColorZ WD2J = Simple Wii Series Vol. 2: The Number Puzzle Neo WD9E = Castlevania The Adventure ReBirth WD9J = Dracula Densetsu ReBirth WD9P = Castlevania: The Adventure ReBirth WDAJ = Darts Wii WDBE = Derby Dogs WDBJ = Dirby Dog WDDE = Diner Dash WDDJ = Diner Dash WDDP = Diner Dash WDEE = Magic Destiny Astrological Games WDEP = Magic Destiny Astrological Games WDFE = Defend your Castle WDFP = Defend your Castle WDHE = Art Style: ROTOHEX WDHJ = Art Style: Dialhex WDHP = Art Style: ROTOHEX WDIJ = Simple Wii Series Vol. 1: The Block Kuzushi Neo WDKE = Dart Rage WDME = Dr. Mario Online RX WDMJ = Dr. Mario & Saikin Bokumetsu WDMP = Dr. Mario & Germ Buster WDNJ = Discipline Teikoku no Tanjyou WDOE = Driift Mania WDOP = Driift Mania WDPE = Dr. Mario Online Rx (Friend Battle Demo) WDPJ = Dr. Mario Online Rx (Friend Battle Demo) WDPP = Dr. Mario & Germ Buster (Friend Battle Demo) WDRE = Mr Driller W WDRJ = Mr. Driller World WDRP = Mr. Driller W WDSE = Dragon Master Spell Caster WDSP = Dragon Master Spell Caster WDVE = Voodoo Dice WDVP = Voodoo Dice WDXE = Diatomic WE6E = My Dolphin WE6J = Sea Farm: Iruka to Watashi no Showtime WE9E = Alien Crush Returns WE9J = Alien Crush Returns WE9P = Alien Crush Returns WEDE = Eduardo the Samurai Toaster WEME = Aha! I Got It! Escape Game WEMJ = 1 Nuke! Dasshutsu Game * My Home Hen WEMP = Aha! I Got It! Escape Game WENE = TNT Racers WENP = TNT Racers WEQE = Equilibrio WEQJ = Katamuki Spirits WEQP = Equilibrio WERE = My Aquarium WERJ = Blue Oasis: The Healing Space of Fish WERP = My Aquarium WETE = PictureBook Games: Pop-Up Pursuit WETJ = Asoberu Ehon: Tobida Sugoroku WETP = PictureBook Games: A Pop-Up Adventure WEVE = Viral Survival WEVJ = Peakvox Escape Virus WEVP = Viral Survival WF2E = Final Fantasy Crystal Chronicles: My Life as a Darklord WF2J = Final Fantasy Crystal Chronicles: Hikari to Yami no Himegimi to Sekai Seifuku no Tou WF2P = Final Fantasy Crystal Chronicles: My Life as a Darklord WF3E = Family Games - Pen & Paper Edition WF4E = Final Fantasy IV: The After Years WF4J = Final Fantasy IV: The After Years - Tsuki no Kikan WF4P = Final Fantasy IV: The After Years WF5E = Family Card Games WF5J = Okiraku Daifugou Wii WF5P = Family Card Games WF6E = Frobot WFAE = Fast Draw Showdown WFAP = Fast Draw Showdown WFBE = Sandy Beach WFBJ = Beach e Oki o Tsukuccha Wow! WFBP = Sandy Beach WFCE = Final Fantasy Crystal Chronicles: My Life as a King WFCJ = Final Fantasy Crystal Chronicles: Chiisana Ousama to Yakusoku no Kuni WFCP = Final Fantasy Crystal Chronicles: My Life as a King WFDE = Save the Furries WFEE = Fenimore Fillmore "The Westerner" WFFE = Fun! Fun! Minigolf WFFF4I = Fatal Frame 4: Mask of the Lunar Eclipse WFFJ = Fun! Fun! Minigolf WFFP = Fun! Fun! Minigolf WFGE = Frogger Returns WFGJ = Frogger Returns WFGP = Frogger Returns WFHE = Flight Control WFHP = Flight Control WFIE = Reel Fishing Challenge WFIJ = Fish Eyes Challenge WFIP = Reel Fishing Challenge WFKE = Family Go-Kart Racing WFKJ = Okiraku Kart Wii WFLE = Fluidity WFLP = Hydroventure WFME = Family & Friends Party WFMP = Family & Friends Party WFNE = Fish Tank WFNP = Fish Tank WFPJ = Hirameki Card Battle Mekuruca WFQP = Frogger: Hyper Arcade Edition WFSJ = Minna no Theater Wii WFTE = Fish 'em All WFTP = Fish'em All! WFUE = Furry Legends WFUP = Furry Legends WFVE = Soccer Up WFVP = Football Up WFWE = Flower Works WFWP = Flowerworks: Follie's Adventure WFXE = Cosy Fire WFXP = Cosy Fire WFYE = Family Games Pen & Paper Edition WFYP = Family Games Pen & Paper Edition WG2J = Sugar Bunnies Wii: Youkoso * Bunnies Field e WG4E = GhostSlayer WGAE = Ghost Mania WGAP = Ghost Mania WGDE = Gradius Rebirth WGDJ = Gradius Rebirth: Updated WGDP = Gradius Rebirth WGFP = Girlfriends Forever: Magic Skate WGGE = Gabrielle's Ghostly Groove: Monster Mix WGGJ = Ushimitsu Monstruo Puchi: Fushigi na Oshiro no Dance Party WGGP = Gabrielle's Ghostly Groove: Monster Mix WGLE = Gene Labs WGMJ = Game SoundStation WGOE = World of Goo WGOJ = World of Goo WGOP = World of Goo WGPE = AquaSpace WGPJ = Aqua Living: TV de Nagameru Uotachi WGPP = Zenquaria: Virtual Aquarium WGSD = Phoenix Wright: Ace Attorney (Deutsche Version) WGSE = Phoenix Wright: Ace Attorney WGSF = Phoenix Wright: Ace Attorney (French Version) WGSI = Phoenix Wright: Ace Attorney WGSJ = Gyakuten Saiban: Yomigaeru Gyakuten WGSP = Phoenix Wright: Ace Attorney WGTJ = Sekai no Omoshiro Party Game WGUJ = Aero Guitar WGVE = Groovin' Blocks WGYE = Gyrostarr WH3E = Home Sweet Home WH3P = Home Sweet Home WHBE = Hubert the Teddy Bear: Winter Games WHEE = Heracles: Chariot Racing WHEP = Heracles: Chariot Racing WHFE = Heavy Fire: Special Operations WHFP = Heavy Fire: Special Operations WHHJ = Let's Zenryoku Hitchhike!!!!!!!!! WHMP51 = New Super Mario Bros. Wii: The Ultimate Wii-Homebrew.com Edition WHOE = Hockey Allstar Shootout WHPE = Sexy Poker WHPP = Sexy Poker WHRE = Heron Steam Machine WHRP = Heron: Steam Machine WHUE = Ghost Mansion Party WHUJ = Ghost Mansion Party WHUP = Ghost Mansion Party WHVE = High Voltage: Hot Rod Show WHWE = HoopWorld WHWP = HoopWorld: BasketBrawl WHXE = Helix WHXP = Helix WHYE = Heavy Fire: Black Arms WHZE = Horizon Riders WIBE = bittos+ WICE = NyxQuest Kindred Spirits WICJ = NyxQuest WICP = NyxQuest: Kindred Spirits WIDE = Dracula: Undead Awakening WIDP = Dracula: Undead Awakening WIEE = Tales of Monkey Island: Chapter 3 - Lair of the Leviathan WIEP = Tales of Monkey Island Chapter 3: Lair of the Leviathan WIGE = Incoming WIHE = Play with Birds WIKJ = Ivy the Kiwi? Mini WILE = Tales of Monkey Island: Chapter 1 - Launch of the Screaming Narwhal WILP = Tales of Monkey Island Chapter 1: Launch of the Screaming Narwhal WIMC = WiiMC WINE = The Incredible Maze WINJ = Chokkan! Balance * Labyrinth WINP = The Incredible Maze WIRE = Tales of Monkey Island: Chapter 5 - Rise of the Pirate God WIRP = Tales of Monkey Island Chapter 5: Rise Of The Pirate God WISE = Tales of Monkey Island: Chapter 2 - The Seige of Spinner Cay WISP = Tales of Monkey Island Chapter 2: Siege Of Spinner Cay WITE = Aha! I Found It! Hidden Object Game WITJ = Aa! Mitsuketa! Item Sagashi Game WITP = Aha! I Found It! Hidden Object Game WIUE = Inkub WIVE = Space Invaders Get Even WIVJ = Space Invaders Get Even WIVP = Space Invaders Get Even WIYE = Tales of Monkey Island: Chapter 4 - The Trial and Execution of Guybrush Threepwood WIYP = Tales of Monkey Island Chapter 4: The Trial and Execution of Guybrush Threepwood WJ2J = Jinsei Game: Happy Step WJAE = Jam City Rollergirls WJAP = Jam City Rollergirls WJCE = JellyCar 2 WJEE = Jett Rocket WJEP = Jett Rocket WJFE = Gnomz WJFP = Gnomz WJGJ = Jinsei Game WJKE = Jewel Keepers Easter Island WJKP = Jewel Keepers: Easter Island WJPJ = Janken Party Paradise WJSE = Jungle Speed WJSP = Jungle Speed WJWE = Bejeweled 2 WJWP = Bejeweled 2 WK2J = Kappa-kun to Asobou: Kappa-kun to Ota no Shimikai WK3J = Kappa-kun to Asobou: Kappa-kun to Mori no Nakamatachi WK9J = Minna de Asobou Koinu de Kururin WKBE = You, Me, and the Cubes WKBJ = Kimi to Boku to Rittai WKBP = You, Me and the Cubes WKCE = Kyotokei WKCP = Kyotokei WKDE = Pirates: The Key of Dreams WKEJ = RakuRaku Kinen Apori Wii: Kinenka no Isha ga Osheru Nanoka de yameru Houhou WKFE = Kung Fu Funk: Everybody is Kung Fu Fighting! WKFP = Kung Fu Funk: Everybody Is Kung Fu Fighting WKHE = Big Kahuna Party WKIE = The Mystery of Whiterock Castle WKIP = The Mystery of Whiterock Castle WKKE = Party Fun Pirate WKKJ = Kurohige Kiki Ippatsu WKKP = Pop-Up Pirates! WKNJ = Kanken Minna de Waiwai Kanji Nou WKPJ = Kappa Kun to Mori no Nakama Tachi WKQJ = Kentei! TV Wii Minna de Gotouchi Quiz Battle WKRP = Karate Phants: Gloves of Glory WKTE = Contra Rebirth WKTJ = Contra ReBirth WKTP = Contra ReBirth WKUJ = Downtown Nekketsu Dodgeball WKWE = Adventure on Lost Island: Hidden Object Game WKWJ = Item Sagashi * Yousei to Fushigi no Shima WKWP = Adventure on LOST ISLAND: Hidden Object Game WL2E = Target Toss Pro: Lawn Darts WL5E = HB Arcade Disc Golf WL9E = Let's Create! Pottery WLCE = Bingo Party Deluxe WLCJ = Wai Wai Bingo Deluxe WLCP = Bingo Party Deluxe WLDJ = Boku mo Sekai o Sukuitai: Battle Tournament WLEE = Learning with the PooYoos: Episode 1 WLEJ = Pooyoo to Asobou Episode 1 WLEP = Learning with the PooYoos: Episode 1 WLGE = HB Arcade Cards WLIE = Liight WLJJ = Boku mo Sekai o Sukuitai: Battle Tournament WLKJ = Okiraku Tennis SP WLLE = Little Tournament Over Yonder WLLP = Little Tournament Over Yonder WLME = La-Mulana WLMJ = La Mulana WLMP = La-Mulana WLNE = Learning with the PooYoos: Episode 2 WLNP = Learning with the PooYoos: Episode 2 WLOE = LostWinds: Winter of the Melodias WLOJ = LostWinds: Winter of the Melodias WLOP = LostWinds: Winter of the Melodias WLPE = Lonpos WLPJ = Lonpos WLPP = Lonpos WLTE = LIT WLTJ = School of Darkness WLTP = LIT WLWE = LostWinds WLWJ = LostWinds WLWP = LostWinds WLXJ = Phalanx WLZE = lilt line WLZP = lilt line WM2E = My Little Baby WM2P = My Little Baby WM3E = Manic Monkey Mayhem WM3P = Manic Monkey Mayhem WM4E = Mix Superstar WM4P = Mix Superstar WM5E = MDK2 WM7E = Anima Ark of Sinners WM7P = Anima Ark of Sinners WM8E = Bomberman Blast WM8J = Wi-Fi 8-Nin Battle Bomberman WM8P = Bomberman Blast WM9E = Happy Hammerin WM9J = Tataite Mogupon WM9P = Happy Hammerin' WMAE = Magnetis WMAP = Magnetis WMBE = MaBoShi's Arcade WMBJ = Katachi no Game: Marubou Shikaku WMBP = MaBoShi: The Three Shape Arcade WMCE = Monsteca Corral: Monsters vs. Robots WMCP = Monsteca Corral: Monsters Vs. Robots WMDE = Madstone WMGE = Mart Racer WMHE = Mouse House WMJE = Dive: The Medes Islands Secret WMJP = Dive: The Medes Islands Secret WMKE = Lead the Meerkats WMKP = Lead the Meerkats WMLE = Major League Eating: The Game WMLJ = Major League Eating: The Game WMME = Muscle March WMMJ = Muscle Koushinkyoku WMMP = Muscle March WMOE = Moki Moki WMOJ = Antaga Mawashite Sukuu Puzzle: Mochimochi Q WMOP = Moki Moki WMRE = Monochrome Racing WMRP = Monochrome Racing WMSE = Enjoy your massage! WMSP = Enjoy your massage! WMWP = Miffy's World WMXE = Max & The Magic Marker WMXJ = Max & the Magic Marker WMXP = Max & the Magic Marker WMZP = Mahjong WN9E = Military Madness: Nectaris WN9J = Nectaris WN9P = Military Madness: Nectaris WNAP = Back to Nature WNEE = Penguins & Friends Hey! That's My Fish! WNEP = Penguins & Friends Hey! That’s my Fish! WNGE = Bang Attack WNKE = Niki - Rock 'n' Ball WNKP = Niki - Rock 'n' Ball WNPJ = Sugusuro Duo: New Pulsar R & V WNSE = Newton Vs The Horde WNVE = Neves Plus WNVJ = Neves Plus WNVP = Neves Plus: Phantheon of Tangrams WNWJ = Hamekomi Lucky Puzzle Wii Return WO6E = Family Pirate Party WO6J = Okiraku Sugoroku Wii WO6P = Family Pirate Party WOAE = Family Glide Hockey WOAJ = Okiraku Air Hockey Wii WOAP = Family Glide Hockey WOBE = Art Style: ORBIENT WOBJ = Art Style: Orbital WOBP = Art Style: ORBIENT WODJ = Ouudaa! WOEJ = Oekaki Logic WOFE = Overflow WOGE = Family Mini Golf WOGJ = Okiraku Putter Golf Wii WOGP = Family Mini Golf WOKE = Karaoke Joysound WOKJ = Karaoke Joysound Wii WOLJ = Othello WOMJ = Sekai no Omoshiro Party Game 2 WOPE = Word Searcher Deluxe WOSE = Family Slot Car Racing WOSJ = Okiraku Slot Car Racing Wii WOSP = Family Slot Car Racing WOTE = Overturn WOTJ = Overturn WOTP = Overturn: Mecha Wars WOXJ = Osu! Exercise Dojo WOYE = Bit Boy!! WOYJ = Bit Man WOYP = Bit Boy!! WOZJ = Kodomo Kyouiku Telebi Wii: Aiue-Oumuzu WP2E = Potpourrii WP2P = Potpourrii WP4E = Learning with the PooYoos: Episode 3 WP4P = Learning with the PooYoos: Episode 3 WP5J = Pokosuka Racing WP6J = Boku wa Plarail Untenshi: Shinkansen Joukikikansha-Hen WP7E = My Planetarium WP7J = Planetarium WP7P = My Starry Night WP9J = Po-Ka-Zu Wii WPAJ = Pokémon Fushigi no Dungeon: Susume! Honoo no Boukendan WPBE = Pub Darts WPBP = Pub Darts WPCE = Doc Louis's Punch-Out!! WPDJ = Chindouchuu!! Pole no Daibouken WPFJ = Pokémon Fushigi no Dungeon: Ikuzo! Arashi no Boukendan WPGE = Snowpack Park WPGJ = Penguin Life WPHJ = Pokémon Fushigi no Dungeon: Mesaze! Hikari no Boukendan WPIE = Pit Crew Panic! WPIJ = Pit Crew Panic WPIP = Pit Crew Panic! WPJE = Pucca's Kisses Game WPJP = Pucca's Kisses Game WPKE = Texas Hold'Em Poker WPKP = Texas Hold'Em Poker WPLE = Planet Pachinko WPNJ = Ponjan WPOJ = Popple to Mahou no Crayon WPPE = Family Table Tennis WPPJ = Okiraku Ping Pong WPPP = Family Table Tennis WPQE = Protöthea WPQP = Protöthea WPRE = Art Style: Cubello WPRJ = Art Style: Cubeleo WPRP = Art Style: CUBELLO WPSE = Pokémon Rumble WPSJ = Ransen Pokémon Scramble WPSP = Pokémon Rumble WPTJ = Fantasic Cube WPUE = Bust-A-Move Plus! WPUJ = Puzzle Bobble Wii WPUP = Puzzle Bobble Plus! WPVE = The Tales of Bearsworth Manor: Chaotic Conflicts WPVJ = Kumanage Battle-Hen: Kiina no Kirai na Aoi Hoseki WPVP = The Tales of Bearsworth Manor: Chaotic Conflicts WPWE = Pong Toss Pro - Frat Party Games WPXJ = Minna de Tobikome Penguin Diving Hooper Looper WPYE = Pallurikio WPYP = Pallurikio WPZE = Bruiser & Scratch WQ4J = Kentoushi FuriFuri Boxing WR2E = Rabbids Lab WR2P = Rabbids Lab WR4P = Rush Rush Rally Racing WR5E = Retro City Rampage WR9E = Mega Man 9 WR9J = RockMan 9: Yabou no Fukkatsu! WR9P = Mega Man 9 WRBE = Robocalypse - Beaver Defense WRBP = Robocalypse - Beaver Defense WRDE = Word Searcher WRDP = Word Searcher WREE = Racers' Islands - Crazy Arenas WREP = Racers Islands Crazy Arenas WRFE = Reel Fishing Challenge II WRFP = Reel Fishing Challenge II WRGE = Rage of the Gladiator WRGP = Rage of the Gladiator WRIE = Rainbow Islands: Towering Adventure! WRIJ = Rainbow Islands: Towering Adventure! WRIP = Rainbow Islands: Towering Adventure! WRJE = Racers' Islands - Crazy Racers WRJP = Racers Islands - Crazy Racers WRLE = FAST Racing League WRLP = FAST Racing League WRNJ = BIT.TRIP RUNNER WRPE = Burn the Rope WRQE = Deer Drive Legends WRQP = Deer Drive Legends WRRE = Robin Hood: The Return of Richard WRRP = Robin Hood: The Return Of Richard WRSE = Step Up WRTE = Robox WRUE = BIT.TRIP RUNNER WRUP = Bit.Trip Runner WRXE = Mega Man 10 WRXJ = RockMan 10 WRXP = Mega Man 10 WRYE = Robox WRYP = Robox WS2J = Saikyou Ginsei Igo WS3E = Silver Star: Chess WS3J = Saikyou Ginsei Chess WS4J = Saikyou Ginsei Mahjong WS5J = Saikyou Ginsei Gomoku Narabe WS6E = Silver Star: Reversi WS6J = Saikyou Ginsei Reversi WS7E = Fantasy Slots: Adventure Slots and Games WS8J = Minna de Taisen Puzzle Shanghai WS9E = Sudoku Challenge! WS9P = Sudoku Challenge! WSAE = Onslaught WSAJ = MadSecta WSAP = Onslaught WSBJ = Sorcery Blade WSCJ = Out of Galaxy: Gin no Koshika WSEJ = Princess Ai Monogatari WSGE = Pop 'Em Drop 'Em Samegame WSGJ = Same Game Wii WSGP = Pop Them, Drop Them SAMEGAME WSHE = Stonekeep: Bones of the Ancestors WSIJ = Saikyou Ginsei Shogi WSJE = Spot The Differences! WSJP = Spot the Differences! WSLE = The Magic Obelisk WSLJ = Shadow Walker WSME = Eat! Fat! FIGHT! WSMJ = Tsuppari Oozumou Wii Heya WSMP = Eat! Fat! FIGHT! WSNE = Sonic The Hedgehog 4 Episode I WSNJ = Sonic the Hedgehog 4: Episode I WSNP = Sonic The Hedgehog 4 Episode I WSRE = Space Trek WSSP = Solitaire WSTJ = Tenshi no Solitaire WSUE = Shootanto: Evolutionary Mayhem WSUJ = Shootanto: Kakohen WSUP = Shootanto: Evolutionary Mayhem WSWE = Swords & Soldiers WSWP = Swords & Soldiers WSXE = Stunt Cars WSXP = Stunt Cars WSYE = Snail Mail WSZE = Sneezies WSZP = Sneezies WT2E = Target Toss: Pro Bags WT3E = Tomena Sanner WT3J = Tomena Sanner Wii WT3P = Tomena Sanner WT8J = Hajite! Block Rush WTBJ = Fantasic Tambourine WTDJ = Tomica Drive WTEE = Tales of Elastic Boy: Mission 1 WTEP = Tales of Elastic Boy Mission 1 WTFE = Bit.Trip: Flux WTFP = Bit.Trip Flux WTHJ = Kaku! Ugoku! Tsukamaeru! Sensei Wii WTIE = Tiki Towers WTKE = TV Show King 2 WTKP = TV Show King 2 WTME = Adventure Island: The Beginning WTMJ = Takahashi Meijin no Bouken Jima Wii WTMP = Adventure Island: The Beginning WTNE = Family Tennis WTNJ = Okiraku Tennis Wii WTPE = Tetris Party WTPJ = Tetris Party WTPP = Tetris Party WTRE = Bit.Trip Beat WTRJ = BIT.TRIP BEAT WTRP = Bit.Trip Beat WTTE = Toki Tori WTTP = Toki Tori WTUE = Tumblebugs 2 WTWP = Fenimore Fillmore: The Westerner WTXE = Texas Hold’em Tournament WTXP = Texas Hold’em Tournament WU2P = Successfully Learning Mathematics Year 3 WU3P = Successfully Learning Mathematics Year 4 WU4P = Successfully Learning Mathematics Year 5 WUBE = Ubongo WUBP = Ubongo WUFE = Drop Zone: Under Fire WUHE = Grill-Off with Ultra Hand! WUIP = Successfully Learning Mathematics Year 2 WUKJ = Unou Kids Okigaru Unou Training WUNE = Uno WUNJ = Uno WUNP = Uno WURE = Urbanix WURP = Urbanix WVBE = Bit.Trip: Void WVBJ = BIT.TRIP VOID WVBP = Bit.Trip Void WVCE = V.I.P. Casino: Blackjack WVDJ = Kodomo Kyouiku TV Wii: Aiue-O-Chan WVFE = Bobby Carrot Forever WVFP = Bobby Carrot Forever WVIE = Violin Paradise WVKE = Water Warfare WVKJ = Bang Bang Kids WVKP = Water Warfare WVOE = Rock N' Roll Climber WVOJ = Rock n' Roll Climber WVOP = Rock'n Roll Climber WVQE = Vampire Crystals WVQP = Vampire Crystals WVSE = Gods Vs Humans WVSP = Gods Vs Humans WVUP = Mr Bumblebee Racing Champion WW2P = Where's Wally? Fantastic Journey 2 WW3P = Where's Wally? Fantastic Journey 3 WWAE = Warmen Tactics WWIP = Where's Wally? Fantastic Journey 1 WWLP = The Will of Dr. Frankenstein WWRE = Excitebike World Rally WWRJ = Excitebike: World Race WWRP = Excitebike: World Challenge WWTE = BurgerTime World Tour WWTP = BurgerTime World Tour WWXE = Paper Wars: Cannon Fodder WWXP = Paper Wars Cannon Fodder WXBE = Ben 10: Alien Force - The Rise of Hex WXBP = Ben 10: Alien Force - The Rise of Hex WXME = Xmas Puzzle WXPE = Paint Splash! WXPP = Paint Splash WXRE = Reel Fishing Ocean Challenge WYIE = escapeVektor: Chapter 1 WYIP = escapeVektor: Chapter 1 WYKJ = Yomi Kiku Asobi WYME = Yummy Yummy Cooking Jam WYMP = Yummy Yummy Cooking Jam WYSE = Yard Sale Hidden Treasures: Sunnyville WYSP = Yard Sale Hidden Treasures Sunnyville WZAE = Zombii Attack WZBP = Cricket Challenge WZGE = Zoo Disc Golf WZHE = My Zoo WZHJ = Animal Life: Doubutsu Fureai Seikatsu WZHP = My Zoo WZIE = Rubik's Puzzle Galaxy RUSH WZIP = Rubik's Puzzle Galaxy: RUSH WZJJ = Simple Series Vol. 5: The Judo WZMJ = Simple Wii Series Vol. 3: The Mahjong WZPE = Zombie Panic in Wonderland WZPJ = Zombie in Wonderland WZPP = Zombie Panic in Wonderland WZZE = The Tales of Bearsworth Manor: Puzzling Pages WZZJ = Kumanage Puzzle-Hen: Piina no Suki na Akai Candy WZZP = The Tales of Bearsworth Manor: Puzzling Pages XAAJ = Eggy XABJ = Aleste XADJ = Yie Ar Kung 2 XAEJ = Space Manbow XAFJ = Metal Gear XAGJ = Road Fighter XAHJ = Penguin Adventure: Yume Tairiku Adventure XAIJ = Quarth XAKJ = Parodius - Tako wa Chikyuu wo Sukuu XALJ = Contra XAMJ = Knightmare: Majou Densetsu XANJ = Parodius 2 XAOJ = Gofer no Yabou: Episode II XAPJ = Metal Gear 2: Solid Snake XAQJ = Salamander XBKE52 = Guitar Hero III Custom : Bullet For Kamelot XH2E = Cave Story (Demo) XH2P = Cave Story (Demo) XH3E = Frobot (Demo) XH4E = Max and the Magic Marker (Demo) XH5E = Ayim And Yet It Moves Demo XH6E = Robox (Demo) XH6P = Robox (Demo) XH7E = Lit (Demo) XH7P = Lit (Demo) XH8E = Lead the Meerkats (Demo) XH8P = Lead the Meerkats (Demo) XHAE = Pokemon Rumble (Demo) XHAP = Pokemon Rumble (Demo) XHCE = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHCJ = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHDE = NyxQuest: Kindred Spirits (Demo) XHDP = NyxQuest: Kindred Spirits (Demo) XHEE = BIT.TRIP BEAT (Demo) XHEJ = BIT.TRIP BEAT (Demo) XHEP = BIT.TRIP BEAT (Demo) XHFE = World of Goo (Demo) XHFP = World of Goo (Demo) XHIE = Fluidity (Demo) XHIP = Hydroventure (Demo) XHJE = Thruspace (Demo) XHJP = Thruspace (Demo) XHKE = Dive: The Medes Island Secret (Demo) XHKP = Dive: The Medes Secret Island (Demo) XHLE = Jett Rocket (Demo) XHLP = Jett Rocket (Demo) XHME = Art of Balance (Demo) XHMP = Art of Balance (Demo) XHQE = Zombie Panic (Demo) XHQP = Zombie Panic (Demo) XHRE = Furry Legends (Demo) XHRP = Furry Legends (Demo) XHVE = BIT.TRIP CORE (Demo) XHVP = BIT.TRIP CORE (Demo) XHWE = BIT.TRIP VOID (Demo) XHWP = BIT.TRIP VOID (Demo) XHXE = BIT.TRIP RUNNER (Demo) XHXP = BIT.TRIP RUNNER (Demo) XHZE = Chronos Twins DX (Demo) XHZP = Chronos Twins DX (Demo) XI2E = Kyotokei (Demo) XI2P = Kyotokei (Demo) XI7E = Liight (Demo) XI8E = Jam City (Demo) XI8P = Jam City (Demo) XIAE = Lilt Line (Demo) XIAP = Lilt Line (Demo) XIBE = Fish em All (Demo) XIBP = Fish em All Demo XICE = Gods vs Humans Demo XICP = Gods vs Humans Demo XIDE = Racers Islands Crazy Racers Demo XIDP = Racers Islands Crazy Racers Demo XIEE = chick chick BOOM Demo XIEP = chick chick BOOM Demo XIGE = Urbanix Demo XIGP = Urbanix Demo XIHE = Gladiator Demo XIHP = Gladiator Demo XIJE = Fast Racing League Demo XIJP = Fast Racing League Demo XIKE = Monsteca Corral Demo XIKP = Monsteca Corral Demo XINE = Learning with the Pooyoos Episode 1 Demo XINP = Learning with the Pooyoos Episode 1 Demo XIOE = Learning with the Pooyoos Episode 2 Demo XIOP = Learning with the Pooyoos Episode 2 Demo XIPE = Learning with the Pooyoos Episode 3 Demo XIPP = Learning with the Pooyoos Episode 3 Demo XIQE = Dart Rage Demo XIRE = Pong Toss Pro Demo XISE = BIT.TRIP FLUX Demo XISP = BIT.TRIP FLUX Demo XITE = Fast Draw Demo XITP = Fast Draw Demo XIUE = Soccer Bashi Demo XIUP = Soccer Bashi Demo XIVE = Mix Superstar Demo XIVP = Mix Superstar Demo XIZE = 3D Pixel Racing Demo XIZP = 3D Pixel Racing Demo XJEE = Aya and the Cubes of Light Demo XJEP = Aya and the Cubes of Light Demo XJGE = Gnomz Demo XJGP = Gnomz Demo XJHE = Paint Splash Demo XJIE = 2 Fast 4 Gnomz Demo XJSE = Karaoke Joysound (Demo) XJSP = Karaoke Joysound Wii (Demo) XNWE52 = Guitar Hero III Custom: Nightwish XXXX02 = Mario Kart Teknik ZXFP52 = Guitar Hero 3 Encore wit-2.31a/share/titles-zhcn.txt0000644000175000017500000114031512655737310016316 0ustar michaelmichael010E01 = Wii 备份盘 v1.31(美) 301E01 = GameCube Service Disc AFRE01 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 8. AMEE01 = New Super Mario Bros. Wii 11 American Revolution AMNE01 = 自制 另一个超级马里奥兄弟Wii(美) AMOR04 = 自制 吉他英雄3 HARDcore(欧) APRP01 = 自制 ANDY AFRO的复古自制(欧) APRP02 = 自制 ANDY AFRO的新超级马里奥兄弟Wii 混搭X 第三辑(欧) APRP03 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 6. APRP04 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 7. APRP06 = New Super Mario Bros. Wii ANDY AFRO'S Custom Collection Volume 5. APRP08 = 自制 ANDY AFRO的新超级马里奥兄弟Wii 自制第一辑(欧) ASMB01 = 自制 另一个超级马里奥兄弟Wii BEPS01 = 自制 吉他英雄 下载版(西) BOWE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh C3BE52 = 自制 吉他英雄3 下载版(美) C3FP52 = 自制 吉他英雄3 下载版(欧) C3KE52 = 自制 吉他英雄3 Kyle第一版(美) C3ME52 = 自制 吉他英雄3 下载版(美) C3PP52 = 自制 吉他英雄3 现代流行与摇滚(欧) C80E52 = 自制 吉他英雄 下载版(美) C80P52 = 自制 吉他英雄3 下载版(欧) C93E = Last Ninja 2 C93P = The Last Ninja 2 C94E = Tower Toppler C94P = Nebulus C95P = Impossible Mission C96E = Summer Games II C96P = Summer Games 2 C97E = California Games C97P = California Games C98P = Paradroid C99P = Uridium C9EP = Winter Games C9GP = Mayhem in Monsterland C9HE = Boulder Dash C9HP = Boulder Dash C9IE = Cybernoid C9IP = Cybernoid C9ME = Pitstop II C9MJ = Pitstop Two C9MP = Pitstop II C9PP = The Last Ninja 3 C9QP = Jumpman C9RP = International Karate + C9SP = 碟中谍(欧) C9XE = The Last Ninja C9XJ = The Last Ninja C9XP = The Last Ninja C9YE = International Karate C9YJ = International Karate C9YP = International Karate C9ZP = World Games CANE52 = 自制 吉他英雄 下载版(美) CCPE01 = 自制 马里奥赛车 大师赛事(美) CEMU69 = PunEmu CFEE52 = 自制 吉他英雄3 迈克尔杰克逊版(美) CG1E52 = 自制 吉他英雄3 下载版(美) CG1P52 = 自制 吉他英雄3 下载版(欧) CG2E52 = 自制 吉他英雄3 下载版(美) CG2EFL = 自制 吉他英雄3 下载版(美) CG2P52 = 自制 吉他英雄3 下载版(欧) CG3ECS = 自制 吉他英雄3 下载版(美) CG3PCS = 自制 吉他英雄 下载版(欧) CGBE52 = 自制 摇滚乐团(美) CGBP52 = 自制 吉他英雄3 摇滚乐队(欧) CGH370 = 自制 吉他英雄3 70新曲(?) CGH3IM = 自制 吉他英雄3 下载版(欧) CGH3LM = 自制 吉他英雄3 音乐幻想(?) CGH3ME = 自制 吉他英雄3 下载版(欧) CGH3NE = 自制 吉他英雄3 Nostalgia版(?) CGH3WD = 自制 吉他英雄3 下载版(欧) CGHCE1 = 自制 吉他英雄3 自制版(?) CGHE87 = 自制 吉他英雄3 下载版(美) CGHE88 = 自制 吉他英雄3 下载版(美) CGHE89 = 自制 吉他英雄3 下载版(美) CGHE90 = 自制 吉他英雄3 下载版(美) CGHE91 = 自制 吉他英雄3 下载版(美) CGHE92 = 自制 吉他英雄3 下载版(美) CGHE93 = 自制 吉他英雄3 下载版(美) CGHE94 = 自制 吉他英雄3 下载版(美) CGHE95 = 自制 吉他英雄3 下载版(美) CGHE96 = 自制 吉他英雄3 下载版(美) CGHE97 = 自制 吉他英雄3 下载版(美) CGHE98 = 自制 吉他英雄3 下载版(美) CGHE99 = 自制 吉他英雄3 下载版(美) CGHECB = 自制 吉他英雄3 下载版(美) CGHEDC = 自制 吉他英雄3 下载版(美) CGHEDM = 自制 吉他英雄3 下载版(美) CGHEMC = 自制 吉他英雄3 下载版(美) CGHENC = 自制 吉他英雄3 下载版(美) CGHEPH = 自制 吉他英雄3 下载版(美) CGHER2 = 自制 吉他英雄3 下载版(美) CGHERF = 自制 吉他英雄3 Rockfest 2010(美) CGHJ52 = 自制 吉他英雄3 Jumapa(美) CGHKY2 = 自制 吉他英雄3 Kyle第二版(韩) CGHPF2 = 自制 吉他英雄3 下载版(欧) CGHPF3 = 自制 吉他英雄3 下载版(欧) CGHPF4 = 自制 吉他英雄3 下载版(欧) CGHPF5 = 自制 吉他英雄3 下载版(欧) CGHPNT = 自制 吉他英雄 下载版(欧) CGHRH2 = 自制 吉他英雄3 摇滚精选v2(欧) CGHSKV = 自制 吉他英雄3 Starchildren和Kneos版(欧) CGIE52 = 自制 吉他英雄 下载版(美) CGSP52 = 自制 吉他英雄 下载版(欧) CGVECD = 自制 吉他英雄 下载版(美) CGVEM2 = 自制 吉他英雄 下载版(美) CGVEMC = 自制 吉他英雄 下载版(美) CGVEUV = 自制 吉他英雄 下载版(美) CKBE88 = 自制 马里奥赛车 黑化版(美) CLAPSI = 自制 唱吧 下载版(欧) CMDE52 = 自制 吉他英雄3 下载版(美) CMKE01 = 自制 马里奥赛车Wii 龙之路(美) CS0P00 = 自制 唱吧 Bollywood v1.0 CS0PZZ = 自制 唱吧 Pop Part. I v2.0(欧) CS1P00 = 自制 唱吧 Country v2.0 CS1PZZ = 自制 唱吧 Pop Part. II v2.0(欧) CS2P00 = 自制 唱吧 Placebo v1.0 CS2PZZ = 自制 唱吧 '80s Volume 1 v2.0(欧) CS3P00 = 自制 唱吧 Volume 1 v2.0 CS3PZZ = 自制 唱吧 Anthems v2.0(欧) CS4P00 = 自制 唱吧 NRJ Music Tour v2.0 CS4PZZ = 自制 唱吧 Legends v2.0(欧) CS5P00 = 自制 唱吧 '70s v2.1 CS5PZZ = 自制 唱吧 Songs For My Jedi v1.0(欧) CS6P00 = 自制 唱吧 Douce France v2.0 CS6PZZ = 自制 唱吧 Amped Part. I v2.0(欧) CS7P00 = StarSing : Red Hot Chili Peppers v1.0 CS7PZZ = 自制 唱吧 Amped Part. II v2.0(欧) CS8P00 = 自制 唱吧 '90s v2.0 CS8PZZ = 自制 唱吧 Disco-Funk v1.0(欧) CS9P00 = 自制 唱吧 '80s Volume 2 v2.1 CS9PZZ = 自制 唱吧 Pop Hits 9 v1.0(欧) CSAP00 = 自制 唱吧 '80s Volume 3 v2.1 CSAPZZ = 自制 唱吧 Best of Goldman v1.0(欧) CSBP00 = 自制 唱吧 '90s Volume 2 v2.1 CSCP00 = StarSing : Michael Jackson v2.2 CSCPZZ = 自制 唱吧 Hottest Hits v2.0(欧) CSDP00 = 自制 唱吧 Rocks! Volume 2 v2.0 CSDPZZ = 自制 唱吧 Boy Bands Vs. Girl Bands v2.0(欧) CSEP00 = 自制 唱吧 Pop Hits 5 v1.2 CSFP00 = 自制 唱吧 Pop Hits 6 v1.2 CSGP00 = 自制 唱吧 Chansons Magiques de Disney v1.4 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = 自制 唱吧 Pop Hits 7 v1.3 CSJP00 = 自制 唱吧 Après-Ski Party v1.2 CSKP00 = 自制 唱吧 ABBA v1.1 CSLP00 = StarSing : Queen v2.0 CSMP00 = 自制 唱吧 Electro-Dancefloor Volume 1 v2.0 CSNP00 = 自制 唱吧 Electro-Dancefloor Volume 2 v2.0 CSOP00 = 自制 唱吧 Electro-Dancefloor Volume 3 v2.0 CSPP00 = 自制 唱吧 Linkin Park Live at Webster Hall New York v1.0 CSQP00 = 自制 唱吧 Muse v2.0 CSRP00 = StarSing : International Volume 3 v1.0 CSSP00 = 自制 唱吧 Après-Ski Party 2 v2.0(欧) CSTP00 = 自制 唱吧 Depeche Mode v2.0(欧) CSUP00 = 自制 唱吧 Pop Hits 8 v1.3(欧) CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = 自制 唱吧 Génériques TV v2.0 (欧) CSYP00 = 自制 唱吧 Electro-Dancefloor Volume 4 v2.0 CSZP00 = 自制 唱吧 Glee Volume 1 v2.1(欧) CT0P00 = StarSing : Pop Part. I v2.1 CT1P00 = StarSing : Pop Part. II v2.1 CT2P00 = StarSing : '80s Volume 1 v2.1 CT3P00 = StarSing : Anthems v2.1 CT4P00 = StarSing : Legends v2.1 CT5P00 = StarSing : Songs For My Jedi v2.0 CT6P00 = StarSing : Amped Part. I v2.1 CT7P00 = StarSing : Amped Part. II v2.1 CT8P00 = StarSing : Disco-Funk v2.0 CT9P00 = StarSing : Pop Hits 9 v1.3 CTAP00 = StarSing : Best of Goldman v2.0 CTBP00 = StarSing : Glee Volume 3 v1.0 CTCP00 = 自制 唱吧 Hottest Hits v2.0(欧) CTDP00 = StarSing : Boy Bands Vs. Girl Bands v2.1 CTEP00 = 自制 唱吧 R&B v2.0(欧) CTFP00 = 自制 唱吧 Rock Ballads v2.0(欧) CTGP00 = 自制 唱吧 Take That v2.0(欧) CTHP00 = 自制 唱吧 Summer Party v2.0(欧) CTIP00 = 自制 唱吧 Rocks! Part. I v2.0(欧) CTJP00 = 自制 唱吧 Rocks! Part. II v2.0(欧) CTKP00 = StarSing : Pop Hits v2.0 CTLP00 = StarSing : Britney Spears v2.0 CTMP00 = StarSing : Shakira v1.1 CTNP00 = StarSing : Pop Hits 10 v1.3 CTOP00 = StarSing : The Beatles Volume 2 v2.0 CTPP00 = StarSing : Motown v2.0 CTQP00 = StarSing : Glee Volume 2 v1.0 CTRP00 = StarSing : International Volume 1 v1.0 CTSP00 = StarSing : International Volume 2 v1.0 CTTP00 = StarSing : '80s Volume 4 v1.0 CTUP00 = StarSing : Rihanna v1.0 CTVP00 = StarSing : Lady GaGa v1.0 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CVLE38 = 自制 马里奥赛车 胜利赛道(美) D01A = Wiimmfi Patcher D02A = Engine02 D03A = BrainSlug Wii D05A = Bash the Castle D06A = Bit Streamer D07A = BlisterBall D08A = Blob Wars: Metal Blob Solid D09A = Blobby Volley 2 Wii D0AA = MPlayer Wii Youtube D0BA = MPlayer Wii D0CA = Ocarina D0DA = MPlayer Dvdlib Edition D0EA = MPlayer Wii By Rodries D0FA = Signcheck D0GA = GCBoot D0HA = Memview D0IA = IOS Check D0JA = Open Sram Lang Modifier D0KA = WiiBServer D0LA = LibWiiGameLoad D0MA = Wiireader D0NA = lsusb D0OA = Move The Pussy Demo D0PA = Wiilax Minitro D0QA = Fission Engine Project D0RA = GRRLIB 4.0 Demo D0SA = OSDM-BAR D0TA = Homebrew Menu Demo D0UA = LibMii Example D0VA = The Scary Demo D0WA = Starfield Demo D0XA = Wire3D Demo D0YA = Something D0ZA = GRRLIB 4.3.0 Promote Intro D10A = cIOSFix D11A = ASCII Pong D12A = BuscaWiinas D13A = C-Dogs SDL D14A = Castles of Dr. Creep D15A = Wii Shop and IOS51 Installer D16A = Centipede D17A = Cobra Arcade D18A = Dump Espresso OTP D1LA = Blind D1PA = 1bit Invaders D1RA = MinimaLauncher D21A = Xroar D22A = cIOS222 installer D24A = 24 Points D26A = Wii2600 D29J01 = Monthly Nintendo Shop Demo May 2002 D2AA = Wii Deadly Cobra D2AJAF = 运动生活 探险家 试玩版(日) D2BA = Jump N Bump D2CA = Wiiflow Advanced D2DA = Box2D Balls D2EA = Wiiflow Start Configurator D2GA = Wadinstallerbatch D2QA = Sqrxz 2 D2SE18 = 德卡运动会2 试玩版(美) D2ZA = Console Shooter D32J01 = Monthly Nintendo Shop Demo June 2002 D33A = Time Frack 2D D33J01 = Monthly Nintendo Shop Demo July 2002 D34J01 = Monthly Nintendo Shop Demo July 2002 D36A = cIOS36 installer D37A = WiiConnect D38A = cIOS38 installer D38J01 = Monthly Nintendo Shop Demo September 2002 D39A = Ctr Gts DacoTaco Edition D3DA = Time Frack 3D D3DE18 = 德卡运动会3 试玩版(美) D3JA = NDSLoad D3KA = Button Tester D3LA = BootMii Booter D3MA = Custom NAND Loader D3OA = cIOS USB 2 Installer D3QA = Sqrxz 3 D3WA = Warheads D40A = Luigi and the Island of Mystery D42A = ArianeB D43A = Wii Virtual Jaguar D43E01 = The Legend of Zelda: Ocarina of Time / Master Quest D43J01 = Zelda no Densetsu: Toki no Ocarina GC / Ura Zelda D43P01 = The Legend of Zelda: Ocarina of Time / Master Quest D43U01 = The Legend of Zelda: Ocarina of Time (Bonus Disc) D43W01 = The Legend of Zelda: Ocarina of Time / Master Quest D46A = Newo Escape D4BE08 = Resident Evil 4: Preview Disc D4BP01 = Resident Evil 4: Bonus Disc D4BP08 = Resident Evil Four Preview Disc D4BU01 = Resident Evil 4: Bonus Disc D4KA = Aleph WOne D4LA = Yawnd D4NA = Disc Dumper D4PA = DVD Dumper D4QA = Sqrxz 4 D4SA = USB Loader GUI FX D51A = IOS51 Update D52A = cboot252 D53J01 = Monthly Nintendo Shop Demo May 2003 D54A = cIOS Patchmii Installer D55A = PID Extractor D55J01 = Interactive Disc Catalog Summer 2003 D56A = Shopping Channel Fixer D56E01 = Interactive Multi-Game Demo Disc - Version 35 D56J01 = Pokémon Channel (Bonus Disc) D57A = Hijill GUI D57E01 = Interactive Multi-Game Demo Disc - Version 34 D58A = Priiloader HacksDen Edition D58E01 = Interactive Multi-Game Demo Disc - Version 33 D59A = TheUntitledProject D59E01 = Interactive Multi Game Demo Disc Version 32 D5AA = Alarmii D5BA = WiiFont D5CA = cLoader D5FA = Txted Mod D5HA = Title Lister D5JA = Tidy Up D5LA = Switchtosneek D5RA = Botoning D60A = Ultimate USB Loader D61A = Sand Traps Extra Levels D62A = Newo Puzzle D62E01 = Interactive Multi-Game Demo Disc - Version 31 D63A = 3D Maze D63E01 = Interactive Multi-Game Demo Disc - Version 30 D64A = 任天堂N64模拟器(欧) D64E01 = Interactive Multi-Game Demo Disc - Version 29 D65A = Transitory Vectors D65E01 = Interactive Multi Game Demo Disc Version 28 D65P01 = Interactive Multi-Game Demo Disc - December 2002 D66A = Secret Maryo Chronicles D66E01 = Interactive Multi-Game Demo Disc - Version 27 D67E01 = Interactive Multi-Game Demo Disc - Version 26 D67J01 = Monthly Nintendo Shop Demo December 2003 D68A = TheyDoNotDie2 D68E01 = Interactive Multi-Game Demo Disc - Version 25 D68J01 = Monthly Nintendo Shop Demo January 2004 D69A = IOS60 Installer D69E01 = Interactive Multi-Game Demo Disc - Version 24 D6AA = Pussieloader D6BA = Updatersafe D6DA = Savegame Manager Mod D6EA = Sneek FS Dumper D6FA = Anytitle Deleter Mod D6HA = AnyTitle Deleter Mod DB D6IA = DVD Info D6KA = AnyTitle Deleter DB D6MA = Banana Saves D6OA = DOP Shop D6QA = BootMii Checker D6TA = MiiPlayer D70A = Dungeon Crawl Stone Soup D71A = Panic in the Mushroom Kingdom D72A = Bfi D72E01 = Interactive Multi-Game Demo Disc - Version 23 D73E01 = Interactive Multi-Game Demo Disc - Version 22 D74E01 = Interactive Multi Game Demo Disc Version 21 D75E01 = Interactive Multi-Game Demo Disc - Version 20 D76E01 = Interactive Multi-Game Demo Disc - Version 19 D77E01 = Interactive Multi-Game Demo Disc - Version 18 D77P01 = Interactive Multi Game Demo Disc April 2006 D78A = Wii7800 D78E01 = Interactive Multi-Game Demo Disc - Version 17 D78J01 = Interactive Multi-Game Demo Disc - May 2004 D78P01 = Interactive Multi-Game Demo Disc - October 2005 D79A = Newo Defence D79E01 = Interactive Multi-Game Demo Disc - Version 16 D79P01 = Interactive Multi Game Demo Disc May 2005 D7AA = Action Replay Loader D7DA = Depanbrew D7GA = Channel Loader D7KA = RawkSD D7LA = Rumbler D7MA = IS Wad D7OA = Recovery Manager D7QA = Reboot D7SA = Childproof USB Loader D7TA = Power Mii Off D7VA = Power Off D7WA = Abbaye des Morts D7XA = NuGaSa D7YA = Resistor D81A = Newo Asteroids D82A = cIOS Patchmii Installer with Korean Disc Support D82E01 = Interactive Multi-Game Demo Disc - Version 15 D82J01 = Monthly Nintendo Shop Demo July 2004 D82P01 = Interactive Multi Game Demo Disc April 2005 D83A = Wii MFE Port D83E01 = Interactive Multi-Game Demo Disc - Version 14 D83P01 = Interactive Multi Game Demo Disc February 2005 D84A = Gambol D84E01 = Interactive Multi-Game Demo Disc - Version 13 D84P01 = Interactive Multi-Game Demo Disc - November 2004 D85A = Wii EDuke32 D85E01 = Interactive Multi-Game Demo Disc - Version 12 D85P01 = Interactive Multi Game Demo Disc July 2004 D86A = Firewii D86E01 = Interactive Multi-Game Demo Disc - Version 11 D86P01 = Interactive Multi-Game Demo Disc - May 2004 D87A = Tick Tock Boat Race D87E01 = Gamecube Preview Disc D87P01 = Interactive Multi-Game Demo Disc - March 2004 D88A = Quasi88 D88E01 = Interactive Multi-Game Demo Disc - Version 10 D88P01 = Interactive Multi-Game Demo Disc - November 2003 D89A = Wiimote Led Flasher D89E01 = Interactive Multi-Game Demo Disc - Version 9 D89J01 = Club Nintendo Original e-Catalog 2004 D89P01 = Interactive Multi-Game Demo Disc - September 2003 D8AA = Front SD ELF Loader D8BA = GameCube Homebrew Launcher D8CA = WiiSend D8DA = Menu D8EA = Gecko Loader D8FA = Shell D8JA = Calc D8QA = Brick OS D8RA = Lotto D8SA = Brainf**k D8UA = TCPLoader D8VA = Snort48 D8WA = Wiisixty D8XA = All In One Emuloader D8YA = Swissloader D8ZA = Tick Tock Zombie Shooter D91A = Jenny Thinks D92E01 = Interactive Multi-Game Demo Disc - Version 8 D92P01 = Interactive Multi Game Demo Disc June 2003 D93A = Wiiraytracer D93E01 = Interactive Multi-Game Demo Disc - Version 7 D93P01 = Interactive Multi Game Demo Disc April 2003 D94A = Nowhere D94P01 = Interactive Multi-Game Demo Disc - February 2003 D95A = RenderMii D95P01 = Interactive Multi-Game Demo Disc - December 2002 D96A = WiiMotionDemo D96P01 = Interactive Multi-Game Demo Disc - November 2002 D97A = Fire D98A = InstallMii D99A = System Channels Updater D9BA = Info D9CA = cIOS USB2 Installer D9FA = Dump D9GA = Wad Creator D9HA = WakeMiiUp D9IA = SNES9xGX Channel Installer D9KA = Txtread D9LA = Forwarder DA1A = Radianwars DA2A = Moonstone DA3A = Wiitch DA4A = arCard+Wii DA6A = Automatii DA7A = Astronomy DA8A = Beer Belly Bill 3 Grillieren DA9A = Achtung Wii Kurve DAAA = WiiNetPuzzle DAHA = Accio Hacks DALJ01 = Dairantou Smash Brothers DX (Demo) DAMA = MegaCodeDownloader DAPA = Map Maker DARA = Anyregion Changer DASA = Aspirin DASE4Q = 米老鼠传奇 试玩版(美) DATA = AnyTitle Deleter DATD = AnyTitle Deleter DAUEPZ = Country Dance (Demo) DAVA = Avoidance DAVE01 = Mystery Case Files: The Malgrave Incident (Demo) DAWA = Abuse Wii DAXE01 = 萨尔达传说 天空之剑 试玩版(欧) DAXP01 = 萨尔达传说 天空之剑 试玩版(欧) DB0A = Spitits DB2A = Mad Bomber DB3A = Squarez DB5A = mapbf DB7A = Blacks Dash DB9A = Robi DBAA = BowFishing Action DBBA = Balance Board Tools DBBE18 = 金属战斗陀螺 对决大赛场 试玩版(美) DBCA = BootMii Configuration Editor DBDA = Bluedump DBGA = BlastGuy DBIA = Boot It DBKE69 = 轰炸方块 试玩版(美) DBKP69 = 轰炸方块 试玩版(欧) DBLA = BlueMSX-wii DBMA = BootIOS DBPA = Balance Board Pro DBRA = WiiBrowser DBSA = BrawlStats DBTA = Bolt Thrower DBUA = Buttoncast DBWA = Reversmii DBXA = Biniax 2 DBZJ08 = Biohazard Zero: Trial Edition DC6A = Frodo (C64-network.org) DC7A = Calculate DCAA = Wiicasino DCAE18 = 鬼铃 黑暗来电 试玩版(美) DCBA = CascadeBeneath DCCA = Christmascountdown DCDA = cIOS Downgrader DCEA = Cheat Manager DCFA = Coverfloader DCGA = Ctr-Gcs DCHA = Wiichatter DCHEAF = 大家的啦啦队 试玩版(美) DCHJAF = 大家的啦啦队 限定收藏盘(日) DCIA = cIOS Installer DCLA = Configurable USB Loader DCMA = Wiicm DCNA = Nandclean DCOA = Connectmii DCPA = Splatter Castle DCRA = 都市打靶(欧) DCSA = Cert.sys Extractor DCTA = Christmas-Type Adventure Time DCUA = cIOS Uninstaller DCVA = WiiColEm DCWA = WiiMC Channel Installer DCXA = ComixChannel DCYA = Cylinder Dodge DD2A = Double Dash Wii DD2P41 = 舞力全开2 试玩版(欧) DD3A = Dario DD5A = Dcvg5k DD9A = Dungeons DDAA = Darkcorp DDBA = DOSBox Wii DDCA = d2x cIOS Installer DDDA = Disk Drive Lighter DDEA = WiiModder DDFA = Defendguin DDHA = Homebrew Disc Launcher DDIA = DiiLC DDLA = 磁盘装载软件(欧) DDMA = 龙媒播放器(欧) DDOA = DOP-Mii DDRA = 顶级王牌 神秘博士(欧) DDSA = DeSmuME DDVA = Devolution DDWA = DOP Mii Wiibrew Edition DDWE18 = 黑影之塔 试玩版(美) DDWX18 = Lost In Shadow - Best Buy (Demo) DE2A = Doubledown DE5A = Pictogrid DE7A = Commander Keen DE9A = Wii Bash DEAA = Headtracking Demo DEBA = Pong Breaker DEDA = Txted DEEA = Eeeek Eeeeek Hooooook DEFA = Fuse DEHA = Chess DEME = PunEmu DEPA = Pacman DERA = Elongated Reptile DETA = MPlayer TT DEWA = Wii Exhibit DEZP8P = Billy Hatcher and the Giant Egg (Demo) DF0A = Mini FSToolbox DF2A = Da ShAmAn DF3A = Briickout DF4A = Star Catching DF5A = Strobe Alarm Clock DF6A = Wii Quizz DF7A = Chatnoir DF8A = Trinary DF9A = Chunk Munch DFBA = Fsbrowser DFEA = FlipEm DFFA = Simple fs dumper DFGA = Smashing! DFIA = Fceugx Channel Installer DFLA = Starfall DFMA = FMyLife DFRA = FridgeMagnets DFSA = Fstoolbox DFTA = FTP服务器(欧) DFUA = Fuse DG3A = Giddy 3 DG7A = WiiPeng DG8A = Abusimbel Deluxe DG9A = Garnatron DGBA = GeexBox播放器(欧) DGCA = GC备份加载器(欧) DGEA = GeckoOS DGFA = Guitars On Fire DGGA = Wii Rick Dangerous DGIA = Gravitii DGKA = ProjectGMC DGMA = GCMM DGPA = 世嘉MD模拟器(欧) DGSA = Shooting Gallery DGWA = Goodbye World DGXA = GxGeo DH7A = Harmony's Nightmare DH9A = Prophecy DHBA = 自制频道浏览器(欧) DHCA = Hero City DHDA = Hidtest DHEA = Helium Boy DHFA = Homebrew Filter DHGA = HuGo-GX DHHA = HHexen DHHJ8J = 凉宫春日的激动(日) DHIA = HackMii Installer DHKE18 = 工作狂 试玩版(美) DHLA = Heli DHMA = CharioMan DHSA = Homebrew Sorter DHTA = Hatari DHWA = We are nowhere DHXA = Hex DI5A = Tanks DI7A = ExistenzE DI8A = Ios58 Installer DI9A = Barrage DIBA = Revolt of the Binary Couriers DICA = Cubic DIEA = EasyIOS DIGA = Categorii DIIA = iiii DIMA = Inspectmii DINA = Mii Installer DIRA = Ironing Maiden DISA = Wii Supersonic DITA = IOS236 Installer DIXA = cIOSx installer DIYP01 = New Super Mario Bros. Wii 0-4 D.I.Y. DJAA = Arcade Jigsaw DJCA = Wii JellyCar DJFA = Joyflow DJJA = Jumping Jack DJQA = 宝石探秘(欧) DJWA = Wii System Menu DJZA = JzintvWii DK1A = Karaokii DK3A = Sketch Fight DK4A = Drawingbox DK6A = King of Fighters: Flames of Courage DK6E18 = 穿越迷路 试玩版(美) DK6J18 = 穿越迷路2 试玩版[平衡板][WiFi](日) DK7A = Uschtris DKBA = RPG Baker DKCA = Tick Tock Car Race DKCP01 = Darky Kart Riivo DKDA = Darkcube DKHA = Katakana and Hiragana Practice DKKA = Koreankii DKOA = Komopong DKPA = Kidspaint DKSA = Wii Stpp DKTA = Taiko DKWA = Kurushi DKWE01 = Darky Kart Wii Vol. 1 DKWE02 = Darky Kart Wii Vol. 2 DKWE03 = Darky Kart Wii Vol. 3 DKWE04 = Darky Kart Wii Vol. 4 DL3A = Ballion DL4A = LPairs DL5A = Gameload DL7A = LabClone DLBA = My Little Ball DLCA = Dance Clone DLDA = Devilock DLEA = Preloader DLFA = LifeMii DLGA = Gravity Glider DLIA = WiiMod Lite DLLA = Lolicopocalypse DLMA = 自制程序装载器(欧) DLNA = Lander DLOA = Lightsout DLPA = Lopan DLSE64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLSP64 = Star Wars: Rogue Squadron III: Rebel Strike: Limited Edition Bonus Disc (Demo) DLTA = Leveltool DLUA = WiiLauncher DLXA = Linux Installer DLZEPW = Super Smash Bros Phoenix Wings DM0A = Pom DM5A = Missle Command DM7A = Matches DM9A = Checkregion DMAA = Mame Wii DMBA = Multiboot(美) DMCA = Cleanrip mod DMDA = WiiMod DMEA = Mii Extractor DMFA = WiiMednafen DMGA = Mighty Channels DMHA = NanoMechas DMHE08 = 怪物猎人3 试玩版(美) DMHJ08 = 怪物猎人3 试玩版[WiFi](日) DMIA = DIOS MIOS Booter DMJA = 自制 麻将 Wii(欧) DMKE01 = 自制 马里奥赛车Wii 2(美) DMLA = Mighty Loader DMMA = 我的自制菜单(美) DMNA = Magic Number DMOA = cMIOS installer DMPA = MPlayerCE播放器(欧) DMRA = MIOS Patcher DMSA = ShutMiiReboot DMSP4Q = 自制 迪斯尼电影 想唱就唱(欧) DMTA = Metronome DMUA = Multi Mod Manager DMWA = Wakemiiup DN0A = Thatother DN7A = Alien Breed DN9A = Point and No Click DNAA = Ncard DNCA = NeoCD-Wii DNDA = Nintendont DNEA = Gravity DNGA = NeoGammA加载器(欧) DNHA = Headings DNIA = Bugin DNKA = Neko Project II DNMA = Newo Model Viewer DNNA = Save installer DNOA = O.T.T.F. DNPA = NeoPopWii DNRA = Newo Runner DNSA = Newo Shooter DNTA = NeoTanks DNUEDA = Naruto Clash of Ninja 2 (Demo) DNWA = Nowell DO2A = O2EM DO3A = Three Point O DO4A = MTP DO5A = Planet Hively DO6A = Mini MP3 Player DOCA = Code Downloader DOEA = ShowTest DOGA = Wii Maze of Galious DOHA = HighOctane DOIA = Neogamma IOS Switcher DOMA = Mole DONA = Offline Network Enabler DOOA = Doom DOPA = PowerCheck DORA = Rebooter DOTA = OpenTTD DP0A = Starplit DP1A = Italian Parking DP2A = Pong2 DP3A = Inkpoly DP4A = Piirates DP5A = Pix DP6A = IOS36 patcher DP7A = Brawl+ Updatifier DP8A = Timeless DP9A = Alien Puzzle Wii DPAA = WiiPaintBall DPBA = Priibootergui DPCA = Cherophobe DPEA = PieChart DPFA = Pwiictogrid DPGA = Pingus DPIA = Patched IOS 80 Installer for vWii DPIE18 = 装扮聚会 试玩版(美) DPJA = Project M Launcher DPKA = Physco DPLA = Priiloader(欧) DPMA = Music Painter DPNA = RPG Pineapple Apocalypse DPNP08 = P.N.03 (Promo) DPOA = Postloader DPPA = Project Panic DPRA = PlasmaRaketti DPSA = Playstats DPTA = Two Point Five DPVA = Pattview DPWA = Pimp my Wii DQ1A = Q1rev DQ2A = Q2rev DQ6A = Light DQ7A = Quake DQ8A = LuaFWii DQ9A = Wiihttpd DQAJK2 = 水瓶座棒球(日) DQAJSC = 水瓶座棒球 (貓星漢化版) DQBA = Bible Quiz DQCA = Q2ctfrev DQGP69 = 我的模拟人生 赛车 试玩版(欧) DQRA = Qrevpak DQWA = Quakegx DR0A = Rokoban DR1A = Wii Whiteboard DR3A = Death Star Run DR4A = Rock Paper Scissors DR5A = Briicks DR6A = Reader DR7A = RockBlueMet DR8A = Operation DR9A = PixelPlot DRAA = RetroArch-Wii DRBA = Rock Band 2 Wad Installer DRCA = Wiicross DRDA = Drawmii DREA = Wiirecipe DRFA = Radiofeeds DRGA = Reggie Dumper DRIA = Cleanrip DRKA = Robotfindskitten DRMA = Mr. Sitwell DRME18 = 奇幻房间 试玩版(美) DROA = SlimeRoll DRP22Q = 自制 唱吧 下载版(欧) DRPA = Marcos Lopez Part II DRRA = Riiper DRSA = RedSquare DRTA = Tetris Custom DRUA = Radiofeeds Updater DRVA = Residualvm DRWA = Winterman DRZA = Zerace DS0A = ShootMii DS1A = Another Rock Paper Scissors DS2A = Swingball2 DS3A = Senet DS4A = Sar DS5A = Snaketwo DS6A = Scogger DS7A = Swing Ball DS8A = Scape DS9A = Minesweeper DSAA = Schism Tracker DSBA = SpaceBubble DSCA = Softchip DSDA = SuperDump 1.3(美) DSEA = Settings Editor GUI DSFA = Sciifii DSFE7U = 胧村正 妖刀传 试玩版(美) DSGA = Savegame Manager DSHA = SysCheck HacksDen Edition DSIA = Simple IOS Patcher DSKA = SockDreams DSLA = Wii Stella DSMA = 世嘉SMS模拟器(欧) DSNA = SNES9x超任模拟器(美) DSOA = Bermuda Syndrome Wii DSPA = Super Star Shooter DSQA = Sqrxz DSRA = Wiistrobe DSRJ8P = 索尼克与神秘指环 试玩版(日) DSSA = RSSMii DSTA = Wii纸牌(欧) DSUA = Super Mario War DSVA = ScummVM模拟器(美) DSWA = SuperTux Wii DSXA = Super Pixel Jumper DSYA = Syscheck DT0A = Tower Defense DT1A = Turnip DT2A = Matching Cards DT3A = Bichejos DT4A = Soduku DT5A = Poker DT6A = Simon DT7A = TheyDoNotDie DTAA = Wii Tac Toe DTCA = The Catachthonic DTDA = Descent DTEA = Topedit DTFA = 模拟NAND中游戏运行器(美) DTHA = Heretic DTIA = Wiitriis DTJA = Trojan DTKA = Tick Tock Tank Fight DTLA = TailTale DTLX01 = Action Replay DTMA = Tetrominos DTNA = Tunnel DTOA = Tong DTPA = Paintown DTRA = Trucha Bug Restorer DTSA = Desert Bus DTTA = Toddtris DTWA = Wiitweet DTXA = Texttris DU0A = Dumpmiinand DU7A = Uno DU8A = RealWnd DU9A = Harmonium DUAA = UAE Wii DUAP01 = DU Super Mario Bros. : Anniversary Edition DUBA = Multibu DUCE01 = 自制 马里奥赛车Wii(美) DUDA = Duck Hunt DUDE01 = 自制 新史酷比马里奥兄弟(美) DUGA = Guitar Fun DUIA = ChessUI DULA = USB Loader GX DUNA = Uname DUSA = bootOperaModUSB DUTG = DU Tag Channel DUWA = Waninkoko's USB Loader DV0A = Remove Preloader Hacks DV3A = DVD Browser DV9A = SensorMii DVDA = cIOS DVD Dumper DVGA = The Video Game DVHA = Horror Vacui DVIA = Vbagx Channel Installer DVJP08 = Viewtiful Joe (Promotional demo) DVLA = Vigiroth le livreur DVNA = Wiivnc DVOA = Vectoroids DVPA = Progressiveswitch DVSA = GameCube Saver DVXA = VectrexWii DW1A = Intuitwars DW5A = Marel DW6A = Wiicraft DW7A = Ravewild DWAA = WiiApple DWBA = WiirtualBoy DWCA = WiiFlow Channel Installer DWDA = Wiiflow Banner Downloader DWEA = Wii地球(欧) DWEPA4 = 实况足球2008 试玩版(欧) DWFA = WiiFlow DWHA = WiiHandySDL DWJA = Jewel DWKA = Wiibreaker DWLA = Wii-Linux DWMA = Wad管理器 v1.5(美) DWNA = Nwancat DWPA = WiiPhysics DWRA = Wii电台(美) DWSA = WiiSX DWTA = Wiituka DWUA = Wufe DWWA = Winters End DWXA = Wii资源管理器(欧) DX3A = Midway Space Invaders Emulator DX4A = Brawl DX Launcher DX5A = MP3+G Player DX6A = Build Blocks DX7A = Roxoptr2 DX8A = Hexen DX9A = Sand Traps DXBA = Wii X Ball DXCA = CorsixTH DXDA = DVDX DXEA = SDExplorer DXHA = Texas Holdem Poker DXIA = Piixelator DXLA = WiiXL DXNA = bootnetflix DXPA = Xeempongwii DXQA = Quadrax DXSA = Save extractor DXSE18 = 德卡运动会 试玩版(美) DXTA = The Lone Pixel DXXA = Hexxagon DXYA = xyzzy DXZA = Megazeux DY5A = Darkcorp Lite DY6A = Liqwiid Wars DY9A = TetWiis DYAA = Syasokoban DYBA = Yabause DYCA = Tetricycle DYEA = Epilepsii DYGA = Yog DYHA = Hypno Blast DYIA = Chippy DYMA = YAWMM DYOA = Toy Wars DYPA = PongYourWii DYSA = Shiny tank DYTA = Newo Tokyo DYUA = UFO Racer DYWA = Yahtzwii DYYA = System Setting Replace Tool DZ0A = Eject DZ7A = SameGame DZ8A = WiiMPC DZ9A = Teeter Torture DZDE01 = 塞尔达传说 黎明公主 试玩版(美) DZDP01 = 塞尔达传说 黎明公主 试玩版(欧) DZIA = Ziip DZPA = Puzsion DZQA = Quizz DZRA = Rezerwar DZSA = Szigoy DZXA = FBZX Wii DZYA = Snake Two DZZA = OpenJazz E52E = 1942 E52J = 1942 E52P = 1942 E53E = Black Tiger E53J = Black Dragon E53P = Black Tiger E54E = Ghosts 'n Goblins E54J = Makaimura E54P = Ghost'n Goblins E55E = Commando E55J = Senji no Ookami E55P = Commando E56E = Exed Exes E56J = Exed Eyes E56P = Exed Exes E57E = SonSon E57J = Son Son E57P = SonSon E58J = Mr. Do! E59J = Karate Dou E5AJ = Ikki E5BJ = Shanghai E5VJ = Renegade E5WE = Wonder Boy in Monster Land E5WJ = Wonder Boy in Monster Land E5XJ = Puyo Puyo Tsu E5YJ = Puyo Puyo E5ZE = Super Hang-On E5ZJ = Super Hang-On E62E = Space Harrier E62J = Space Harrier E62P = Space Harrier E63E = Shinobi E63J = Shinobi Virtual Arcade E63P = Shinobi E64J = Rolling Thunder 2 E65J = Valkyrie no Densetsu E66J = Ordyne E67J = Dig Dug E68J = Galaga E69J = Baraduke E6AJ = Moon Cresta E6BJ = Crazy Climber E6CJ = Rompers E6DJ = Toy Pop E6EJ = Libble Rabble E6FJ = Galaxian E6GJ = Namco Quester E6HJ = Face Off E6IJ = Trink Force E6JJ = Bakutotsu Kijuutei: BaRaDuKe II E6KJ = Chouzetsu Rinjin - Berabow Man E6LJ = Marchen Maze E6ME = Tecmo Bowl E6MJ = Tecmo Bowl E6NE = Solomon's Key E6NJ = Solomon no Kagi E6NP = Solomon's Key E6OJ = Bomb Jack Arcade E6PE = Ninja Gaiden E6PJ = Ninja Ryukenden Arcade E6PP = Ninja Gaiden E6QE = Rygar E6QJ = Argos no Senshi E6QP = Rygar E6SJ = New Rally-X E6VE = Zaxxon 3-D E6VJ = Zaxxon E6VP = Zaxxon E6WE = 黄金战斧(美) E6WJ = Golden Axe E6WP = 黄金战斧(欧) E6XE = Altered Beast E6XP = Altered Beast E6YJ = Space Invaders E6ZE = Starforce E6ZJ = Star Force E6ZP = Star Force E72J = Starblade E73E = Mappy E73J = Mappy E73P = Mappy E74J = Cosmo Gang the Puzzle E75J = Genpei Toumaden E76J = Emeraldia E77J = The Return of Ishtar E78J = Solvalou E79E = Gaplus E79J = Gaplus E79P = Gaplus E7AJ = Grobda E7BJ = Dig Dug II E7CJ = Bosconian E7EJ = Dragon Buster E7FJ = Dragon Saber E7GJ = Dragon Spirit E7HJ = Xevious E7IJ = Finest Hour E7JJ = Knuckle Heads E7KJ = Pac-Mania E7LJ = Cosmo Gang the Video E7MJ = Phelios E7NJ = Rolling Thunder E7OJ = Burning Force E7PJ = Marvel Land E7QJ = Galaga '88 E7RJ = Wonder Momo E7SJ = Assault E7TJ = Hopping Mappy E7UJ = Splatterhouse E7VJ = Cyber Sled E7WJ = Numan Athletics E7XJ = Youkai Douchuki E7YJ = Sky Kid E7ZE = The Tower of Druaga E7ZJ = Druaga no Tou E7ZP = The Tower of Druaga EA2E = Metal Slug 2 EA2J = Metal Slug 2 EA2P = 合金弹头2(欧) EA3J = Galaxy Fight: Universal Warriors EA4E = Samurai Showdown III EA4J = Samurai Spirits Kibeniro Musouken EA4P = 侍魂III(欧) EA5E = Fatal Fury 3: Road to the Final Victory EA5J = Garou Densetsu 3: Road to the Final Victory EA5P = 饿狼传说3 最终胜利之路(欧) EA6E = The King of Fighters '96 EA6J = The King of Fighters '96 EA7E = Samurai Shodown IV: Amakusa's Revenge EA7J = Samurai Spirits: Amakusa Kourin EA8E = Ironclad EA8J = Ironclad: Chotetsu Brikinger EA8M = Iron Clad EA9J = Waku Waku 7 EAAE = Fatal Fury EAAJ = Garou Densetsu: Shukumei no Takatai EAAP = 饿狼传说(欧) EABE = World Heroes EABJ = World Heroes EABP = World Heroes EACE = Magician Lord EACJ = Magician Lord EACP = Magician Lord EADE = Art of Fighting EADJ = Ryuuko no Ken EADP = Art of Fighting EAEE = Samurai Showdown EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen EAEP = 侍魂(欧) EAFE = Blue's Journey EAFJ = Raguy EAFP = Blue's Journey EAGE = The King of Fighters '94 EAGJ = The King of Fighters '94 EAGP = 拳皇94(欧) EAHE = Baseball Stars 2 EAHJ = Baseball Stars 2 EAHP = Baseball Stars 2 EAIE = Top Hunter EAIJ = Top Hunter EAIP = Top Hunter EAJE = Metal Slug EAJJ = Metal Slug EAJP = 合金弹头(欧) EAKE = Burning Fight EAKJ = Burning Fight EAKP = Burning Fight EALE = Art of Fighting 2 EALJ = Ryuuko no Ken 2 EALP = Art of Fighting 2 EAME = Ninja Combat EAMJ = Ninja Combat EAMP = Ninja Combat EANE = Fatal Fury 2 EANJ = Garou Densetsu 2: Aratanaru Tatakai EANP = 饿狼传说2(欧) EAOE = King of the Monsters EAOJ = King of the Monsters EAOP = King of the Monsters EAPE = Ninja Commando EAPJ = Ninja Commando EAPP = Ninja Commando EAQE = WORLD HEROES 2 EAQJ = World Heroes 2 EARE = Neo Turf Masters EARJ = Neo Turf Masters EARP = Neo Turf Masters EASE = Samurai Showdown 2 EASJ = Shin Samurai Spirits Haoumaru Jigokuhen EASP = 侍魂II(欧) EATE = WORLD HEROES 2 JET EATJ = World Heroes 2 Jet EAUJ = Twinkle Star Sprites EAVE = The King of Fighters ’95 EAVJ = The King of Fighters '95 EAVP = 拳皇95(欧) EAWE = Fatal Fury Special EAWJ = Garou Densetsu Special EAWP = 饿狼传说特别版(欧) EAYJ = King of The Monsters 2 EAZE = WORLD HEROES PERFECT EAZJ = World Heroes Perfect EB2E = REAL BOUT FATAL FURY SPECIAL EB2J = Real Bout Garou Densetsu Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB6E = Metal Slug 3 EB6J = Metal Slug 3 EB6P = Metal Slug 3 EB7J = The Super Spy EB8E = SHOCK TROOPERS EB8J = Shock Troopers EB9J = Pulstar EBAE = Magical Drop II EBAJ = Magical Drop 2 EBAP = Magical Drop II EBBE = Fighters History Dynamite EBBJ = Fighter's History Dynamite EBBP = Karnov's Revenge EBCJ = Flying Power Disc EBDE = Magical Drop III EBDJ = Magical Drop III EBDP = Magical Drop 3 EBEE = Street Slam EBEJ = Dunk Dream EBEP = Street Hoop EBFE = Spin Master EBFJ = Miracle Adventure EBFP = Spin master EBGE = The King of Fighters '97 EBGJ = The King of Fighters '97 EBKJ = Last Resort EBLJ = Tsuukai GanGan Koushinkyoku EBMJ = Fire Suplex EBNJ = Fu'un Mokushiroku: Kakutou Sousei EBOJ = Fu'un Super Tag Battle EBPJ = League Bowling EBQE = NINJA MASTER'S EBQJ = Ninja Master's Haou Ninpou-chou EBRJ = Joy Joy Kid EBSE = The Path of the Warrior: Art of Fighting 3 EBSJ = Art of Fighting: Ryuuko no Ken Gaiden EBTJ = Crossed Swords EBUE = 2020 SUPER BASEBALL EBUJ = Super Baseball 2020 EBVJ = Shin-Oh-Ken EBWE = SENGOKU EBWJ = Sengoku Denshou EBXE = SENGOKU 2 EBXJ = Sengoku 2 EBZE = REAL BOUT FATAL FURY EBZJ = Real Bout Garou Densetsu ECAE = Real Bout Fatal Fury 2: The Newcomers ECAJ = Real Bout Garou Densetsu 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECDJ = Stakes Winner: G1 Kanzen Seihahe no Michi ECEE = THE LAST BLADE 2 ECEJ = Bakumatsu Rouman Dai Ni Maku: Gekka no Kenshi ECFJ = Blazing Star ECGE = Shock Troopers: 2nd Squad ECGJ = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECJE = The King of Fighters '99 ECJJ = Metal Slug 4 ECKE = NAM-1975 ECKJ = NAM-1975 ECLJ = Stakes Winner 2 ECMJ = Tokuten Oh: Honoo no Libero ECNE = Sengoku 3 ECNJ = Sengoku Denshou 2001 ENDP01 = New SUPER MARIO BROS. Wii 20 The End For Now EVOP01 = New Super Mario Bros. Wii 0-5 Evolution FA2J = Exerion FA3J = Formation Z FA4J = Devil World FA4P = Devil World FA5J = Fire Emblem: Ankoku Ryu to Hikari no Tsurugi FA6E = Donkey Kong Jr. Math FA6J = Donkey Kong Jr. no Sansuu Asobi FA6P = Donkey Kong Jr. Math FA7E = Yoshi FA7J = Yoshi no Tamago FA7K = Yoshi FA7P = Mario & Yoshi FA8E = Kirby's Adventure FA8F = Kirby's Adventure FA8J = Hoshi no Kirby: Yume no Izumi no Monogatari FA8K = Kirby's Adventure FA8P = Kirby's Adventure FA9E = Zelda II: The Adventure of Link FA9J = The Legend of Zelda 2: Link no Bouken FA9P = Zelda II: The Adventure of Link FAAE = Donkey Kong FAAJ = Donkey Kong FAAK = Donkey Kong FAAP = Donkey Kong FABE = Donkey Kong Jr. FABJ = Donkey Kong Jr. FABP = Donkey Kong Jr. FACE = Pinball FACJ = Pinball FACP = Pinball FADJ = Gomoku Narabe Renju FAFE = Mario Bros. FAFJ = Mario Bros. FAFK = Mario Bros. FAFP = 马里奥兄弟(欧) FAGE = Super Mario Bros. FAGJ = Super Mario Bros. FAGK = Super Mario Bros. FAGP = 超级马里奥兄弟(欧) FAHE = Tennis FAHJ = Tennis FAHP = Tennis FAIE = Soccer FAIJ = Soccer FAIP = Soccer FAJE = Ice Hockey FAJJ = Ice Hockey FAJP = Ice Hockey FAKE = 塞尔达传说(美) FAKJ = Zelda no Densetsu FAKK = The Legend of Zelda FAKP = 塞尔达传说(欧) FALE = Baseball FALJ = Baseball FALP = Baseball FAME = Wario's Woods FAMJ = Wario no Mori FAMP = Wario's Woods FANE = Urban Champion FANJ = Urban Champion FANK = Urban Champion FANP = Urban Champion FAOE = Solomon's Key FAOJ = Solomon no Kagi FAOP = Solomon's Key FAPE = NES Open Tournament Golf FAPJ = Mario Open Golf FAPK = NES Open Tournament Golf FAPP = NES Open Tournament Golf FAQJ = Ninja Jajamaru-kun FAQL = Ninja JaJaMaru-kun FAQN = Ninja JaJaMaru-kun FARE = Gradius FARJ = Gradius FARP = Gradius FASE = Xevious FASJ = Xevious FASK = Xevious FASP = Xevious FATE = The Legend of Kage FATJ = Kage no Densetsu FAVE = Tecmo Bowl FAVJ = Tecmo Bowl FAWE = Elevator Action FAWJ = Elevator Action FAXE = Pac-Man FAXJ = Pac-Man FAXK = Pac-Man FAXP = Pac-Man FAYJ = Ikki FAZJ = Field Combat FAZK = Downtown Nekketsu Koushinkyoku: Soreyuke Daiundoukai FB2J = Super Mario Bros. 2 FB2L = Super Mario Bros.: The Lost Levels FB2N = Super Mario Bros.: The Lost Levels FB3J = Valkyrie no Bouken: Toki no Kagi Densetsu FB4E = Lunar Pool FB4J = Lunar Ball FB4P = Lunar Pool FB5E = Zanac FB5J = Zanac FB6J = Front Line FB7J = Nuts & Milk FB8J = Challenger FB9J = Pooyan FBAJ = Smash Ping Pong FBAL = Smash Table Tennis FBBE = Mach Rider FBBJ = Mach Rider FBBP = Mach Rider FBCE = Excitebike FBCJ = Excitebike FBCP = Excitebike FBDE = Kid Icarus FBDJ = Hikari Shinwa: Palutena no Kagami FBDK = Kid Icarus FBDP = Kid Icarus FBEE = Ice Climber FBEJ = Ice Climber FBEP = Ice Climber FBHE = Castlevania FBHJ = Akumajou Dracula FBHP = Castlevania FBIE = Punch Out!! Featuring Mr. Dream FBIJ = Punch-Out!! FBIP = Punch-Out!! FBJE = Mighty Bomb Jack FBJJ = Mighty Bomb Jack FBJP = Mighty Bomb Jack FBKE = Teenage Mutant Ninja Turtles FBKJ = Gekikame Ninja Den FBKP = Teenage Mutant Ninja Turles FBLE = Lode Runner FBLJ = Lode Runner FBLM = Lode Runner FBNE = Ninja Gaiden FBNJ = Ninja Ryuukenden FBNM = Ninja Gaiden FBOJ = Gradius II FBQJ = Druaga no Tou FBRE = Galaga FBRJ = Galaga FBRK = Galaga FBRP = Galaga FBSE = Milon's Secret Castle FBSJ = Meikyuu Kumikyoku: Milon no Daibouken FBSM = Milon's Secret Castle FBUE = Adventures of Lolo FBUJ = Adventures of Lolo FBUK = Adventures of Lolo FBUP = Adventures of Lolo FBVJ = Tsuppari Oozumou FBWJ = Joy Mech Fight FBWK = Joy Mech Fight FBXJ = Famicom Wars FBYE = Super Mario Bros. 2 FBYJ = Super Mario USA FBYK = Super Mario USA FBYP = 超级马里奥兄弟2(欧) FBZE = Metroid FBZJ = Metroid FBZP = Metroid FC2J = Hanjuku Hero FC3E = Bubble Bobble FC3J = Bubble Bobble FC3K = Bubble Bobble FC3P = Bubble Bobble FC4J = Chack'n Pop FC5J = Ganbare Goemon Karakuki Douchuu FC6E = StarTropics FC6J = Startropics FC6P = StarTropics FC7E = NES Play Action Football FC7J = NES Play Action Football FC8E = Castlevania II Simon's Quest FC8J = Dracula II: Noroi no Fuuin FC8P = Castlevania II: Simon's Quest FC9J = Metal Slader Glory FCAE = Star Soldier FCAJ = Star Soldier FCEJ = Esper Dream FCEU = FCE Ultra任天堂FC模拟器(欧) FCFJ = Yie Ar Kung Fu FCGJ = TwinBee FCHJ = Flappy FCIJ = Volguard 2 FCJJ = SD Gundam World: Gachapon Senshi 2 - Capsule Senki FCNJ = Kekkyoku Nankyoku Daibouken FCNK = Antarctic Adventure FCOJ = Battle City FCPE = Balloon Fight FCPJ = Balloon Fight FCPP = Balloon Fight FCQE = Ninja Gaiden II: The Dark Sword of Chaos FCQJ = Ninja Gaiden Two FCRE = Adventure Island FCRJ = Takahashi Meijin no Boukenjima FCRK = Hudson's Adventure Island FCRP = Adventure Island FCSE = Super C FCSJ = Super Contra FCSP = Probotector II: Return of the Evil Forces FCTE = Mega Man FCTJ = RockMan FCTP = 洛克人(欧) FCUE = Volleyball FCUJ = Volleyball FCUP = Volleyball FCVE = Wrecking Crew FCVJ = Wrecking Crew FCVP = Wrecking Crew FCWE = Super Mario Bros. 3 FCWJ = Super Mario Bros. 3 FCWK = Super Mario Bros. 3 FCWP = 超级马里奥兄弟3(欧) FCYE = Yoshi’s Cookie FCYJ = Yoshi no Cookie FCYK = Yoshi's Cookie FCYP = Yoshi’s Cookie FCZE = King's Knight FCZJ = Kings Knight FD2E = Double Dragon FD2J = Double Dragon FD2P = Double Dragon FD3J = Nekketsu Koukou Dodgeball-bu Soccer-hen FD3K = Nekketsu Koukou Dodgeball-bu Soccer-hen FD6E = Adventures of Lolo 2 FD6P = Adventures of Lolo 2 FD7E = Mega Man 3 FD7J = RockMan 3: Dr. Wily no Saigo?! FD7P = 洛克人3(欧) FDAE = Spelunker FDAJ = Spelunker FDAM = Spelunker FDBJ = Famicom Mukashi Banashi: Shin Onigashima - Kouhen FDCJ = Star Luster FDEJ = Mappy FDFE = Bases Loaded FDFJ = Moero!! Pro Yakyuu FDGE = Ghosts'n Goblins FDGJ = Makai-Mura FDGP = Ghosts'n Goblins FDIJ = Bokosuka Wars FDLE = Ninja Gaiden III: The Ancient Ship of Doom FDLJ = Ninja Gaiden Three FDNE = Mega Man 2 FDNJ = RockMan 2 FDNP = 洛克人2(欧) FDOE = Operation Wolf FDOJ = Operation Wolf FDOP = Operation Wolf FDPE = Blades of Steel FDPP = Blades of Steel FDQE = Double Dribble FDQP = Double Dribble FDRP = Skate or Die FDSJ = Famicom Tantei Club: Kieta Koukeisha (Kouhen) FDTE = Renegade FDTJ = Renegade FDUE = Super Dodge Ball FDUJ = Nekketsu Koukou Dodge Ball Bu FDVE = River City Ransom FDVJ = Downtown Nekketsu Monogatari FDVK = Downtown Nekketsu Monogatari FDVP = Street Gangs FDWJ = Downtown Special: Kunio-kun no Jidaigeki Dayo Zenin Shuugou! FDXJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo (Kouhen) FDYJ = Fire Emblem Gaiden FDZJ = Downtown Nekketsu Koushinkyoku FE5J = Toukaidou Gojuusan Tsugi FE6J = Ninja kun Majyou no Bouken FE7J = Ninja kun Ashura no Shou FE8J = Takeshi no Chousenjou FE9J = Ike Ike! Nekketsu Hockey-bu: Subette Koronde Dairantou FECE = Skykid FECJ = Sky Kid FEDJ = Dig Dug FEDL = Dig Dug FEDN = Dig Dug FEEJ = Tantei Jinguji Saburo: Shinjuku Chuo Koen Satsujin Jiken FEFJ = Detective Saburo Jinguji 2: Yokohama-Ko Renzoku Satsujin Jiken FEGJ = Tantei Jinguuji Saburo - Kikenna Futari - Zenkouhen FEHJ = Tantei Jinguuji Saburo: Toki no Sugiyuku Mama ni FEIE = City Connection FEIJ = City Connection FEIP = City Connection FEJJ = Nazo no Murasame Jou FELJ = Transformers: Convoy no Nazo FEMJ = Bio-Miracle Bokutte Upa FEML = Bio Miracle Bokutte UPA FEMN = Bio Miracle Bokutte UPA FENE = Life Force FENJ = Salamander FEOJ = Zoids: Mokushiroku FEPJ = Getsu Fuuma Den FEQE = Castlevania III: Dracula's Curse FEQJ = Akumajo Densetsu FEQP = Castlevania III Dracula's Curse FERE = Zoda’s Revenge: StarTropics II FERJ = Zoda's Revenge FERM = Startropics II: Zoda's Revenge FESE = Clu Clu Land FESJ = Clu Clu Land FESP = Clu Clu Land FEUE = Donkey Kong 3 FEUJ = Donkey Kong 3 FEUP = Donkey Kong 3 FEVJ = Atlantis no Nazo FEWJ = Dragon Buster FEXJ = Wagyan Land FF2J = Sugoro Quest: Dice no Senshi Tachi FF4E = BurgerTime FF4J = BurgerTime FF5E = Double Dragon II: The Revenge FF5J = Double Dragon 2: The Revenge FF6J = Ganbare Goemon 2 FF7J = Ganbare Goemon Gaiden: Kieta Ougon Kiseru FFAE = Final Fantasy FFAJ = Final Fantasy FFAM = Final Fantasy FFBJ = Final Fantasy II FFDE = Crash 'N The Boys Street Challenge FFDJ = Bikkuri Nekketsu Shin Kiroku! Harukanaru Kin Medal FFEE = A Boy and His Blob: Trouble on Blobolonia FFEP = A Boy and His Blob: Trouble on Blobolonia FFFJ = Final Fantasy III FFGJ = SD Gundam World: Gachapon Senshi - Scramble Wars FFJJ = Metal Max FFKJ = Championship Lode Runner FFLE = Princess Tomato in the Salad Kingdom FFLJ = Salad no Kuni no Tomato Hime FFME = Blaster Master FFMJ = Chou-Wakusei Senki MetaFight FFMP = Blaster Master FFNE = Mega Man 4 FFNJ = RockMan 4: Aratanaru Yabou!! FFNP = 洛克人4(欧) FFOJ = Moero TwinBee: Cinnamon Hakase o Sukue! FFPB = Ufouria: The Saga FFPJ = Furu Furu Park FFQE = Shadow of the Ninja FFQM = Shadow of the Ninja FFRE = Faxanadu FFRJ = Faxanadu FFRP = 沙纳多(欧) FFTJ = Binary Land FFUE = Adventure Island 2 FFUJ = Takahashi Meijin no Bouken Jima II FFUP = Adventure Island 2 FFVE = S.C.A.T. FFVP = S.C.A.T.: Special Cybernetic Attack Team FFWP = Donkey Kong: Original Edition FFXJ = 25th Anniversary SUPER MARIO BROS. FFXP = Super Mario Brothers: 25th Anniversary Exclusive FFYE = Mega Man 5 FFYJ = RockMan 5: Blues no Wana!? FFZJ = Seicross FFZY = 魂斗罗(Y) FJOR = Kung Fu FMCA = The Goonies G01E01 = Super Smash Bros. Melee: SD Remix G01J01 = Super Smash Bros. Melee: SD Remix G01P01 = Super Smash Bros. Melee: SD Remix G02E01 = Super Smash Bros. Melee: 20XX Training Pack G02J01 = Super Smash Bros. Melee: 20XX Training Pack G02P01 = Super Smash Bros. Melee: 20XX Training Pack G2BE5G = Black & Bruised G2BP7D = Black & Bruised G2CD52 = True Crime: New York City G2CE52 = True Crime: New York City G2CP52 = True Crime: New York City G2CX52 = True Crime: New York City G2FD78 = Tak 2: The Staff of Dreams G2FE78 = Tak 2: The Staff of Dreams G2FF78 = Tak 2: The Staff of Dreams G2FP78 = Tak 2: The Staff of Dreams G2GJB2 = Mobile Suit Gundam: Gundam vs. Z Gundam G2KE8P = NHL 2K3 G2KP8P = NHL 2K3 G2ME01 = Metroid Prime 2: Echoes G2MEAB = Metroid Prime 3 (E3 Beta) G2MJ01 = Metroid Prime 2: Dark Echoes G2MP01 = Metroid Prime 2: Echoes G2OE41 = Prince of Persia: Warrior Within G2OP41 = Prince of Persia: Warrior Within G2PE6U = Spirits And Spells G2RE52 = Shrek SuperSlam G2SJGE = Shikigami no Shiro II G2TE52 = Tony Hawk's Underground 2 G2TP52 = Tony Hawk's Underground 2 G2VE08 = Viewtiful Joe 2 G2VJ08 = Viewtiful Joe 2: Blackfilm no Nazo G2VP08 = Viewtiful Joe 2 G2XE8P = Sonic Gems Collection G2XP8P = Sonic Gems Collection G3AD69 = Lord of the Rings: The Third Age G3AE69 = Lord of the Rings: The Third Age G3AF69 = Lord of the Rings: The Third Age G3AP69 = Lord of the Rings: The Third Age G3AS69 = Lord of the Rings: The Third Age G3BE9G = Serious Sam: Next Encounter G3BP54 = Serious Sam: Next Encounter G3BP9G = Serious Sam: Next Encounter G3DE6L = Carmen Sandiego: The Secret of the Stolen Drums G3DP6L = Carmen Sandiego: The Secret of the Stolen Drums G3DX6L = Carmen Sandiego: The Secret of the Stolen Drums G3EE51 = XGIII: Extreme G Racing G3EJ51 = XGIII: Extreme G Racing G3EP51 = XGIII: Extreme G Racing G3FD69 = TimeSplitters: Future Perfect G3FE69 = TimeSplitters: Future Perfect G3FF69 = TimeSplitters: Future Perfect G3FP69 = TimeSplitters: Future Perfect G3FS69 = TimeSplitters: Future Perfect G3JEAF = Curious George G3LE8P = Super Monkey Ball Adventure G3LP8P = Super Monkey Ball Adventure G3ME41 = Tom Clancy's The Sum of All Fears G3MP41 = The Sum of All Fears G3NJDA = NARUTO Gekitô Ninja Taisen! 3 G3QEA4 = Teenage Mutant Ninja Turtles 3: Mutant Nightmare G3RD52 = Shrek 2 G3RE52 = Shrek 2 G3RF52 = Shrek 2 G3RP52 = Shrek 2 G3SE41 = Bust-A-Move 3000 G3TJ8P = Derby Tsuku 3: Derby Uma O Tsukurou! G3VE69 = NBA Street Vol.3 G3VP69 = NBA Street Vol.3 G3XE52 = X-Men: The Official Game G3XP52 = X-Men: The Official Game G3YP52 = Shrek Super Slam G3YX52 = Shrek Super Slam G3YY52 = Shrek Super Slam G4AEE9 = Harvest Moon: Magical Melody G4BE08 = Resident Evil 4 G4BJ08 = Biohazard 4 G4BP08 = Resident Evil 4 G4CE54 = Charlie and the Chocolate Factory G4CP54 = Charlie and the Chocolate Factory G4FD69 = FIFA 07 G4FE69 = FIFA Soccer 07 G4FF69 = FIFA 07 G4FP69 = FIFA 07 G4GEE9 = Harvest Moon: Another Wonderful Life G4IE52 = Shrek Smash n' Crash Racing G4IP52 = Shrek Smash n' Crash Racing G4ME69 = The Sims: Bustin' Out G4MP69 = The Sims: Bustin' Out G4NJDA = NARUTO Gekitô Ninja Taisen! 4 G4OE69 = The Sims 2: Pets G4OP69 = The Sims 2: Pets G4QE01 = Super Mario Strikers G4QJ01 = Super Mario Strikers G4QP01 = Mario Smash Football G4SE01 = The Legend of Zelda: Four Swords Adventures G4SJ01 = The Legend of Zelda: Four Swords + G4SP01 = The Legend of Zelda: Four Swords Adventures G4ZE69 = The Sims 2 G4ZP69 = The Sims 2 G5BE4Z = Strike Force Bowling G5DE78 = Scooby-Doo! - Unmasked G5DP78 = Scooby-Doo! - Unmasked G5NEAF = Namco Museum 50th Anniversary G5NP69 = Namco Museum 50th Anniversary G5SE7D = Spyro: A Hero's Tail G5SP7D = Spyro: A Hero's Tail G5TE69 = Tiger Woods PGA Tour 2005 G5TP69 = Tiger Woods PGA Tour 2005 G62E54 = Major League Baseball 2k6 G63E41 = Tom Clancy's Rainbow Six 3 G63P41 = Tom Clancy's Rainbow Six 3 G6FD69 = 2006 FIFA World Cup G6FE69 = 2006 FIFA World Cup G6FF69 = 2006 FIFA World Cup G6FP69 = 2006 FIFA World Cup G6ME69 = Madden NFL 06 G6MP69 = Madden NFL 06 G6NE69 = NBA Live 06 G6NP69 = NBA Live 06 G6QE08 = Mega Man Anniversary Collection G6SE7D = The Legend of Spyro: A New Beginning G6SP7D = The Legend of Spyro: A New Beginning G6TE5G = Teen Titans G6TP5G = Teen Titans G6TP78 = Teen Titans G6WE69 = Tiger Woods PGA Tour 06 G6WP69 = Tiger Woods PGA Tour 06 G7ME69 = Madden NFL 07 G89EAF = Pac-Man World Rally G8FE8P = Virtua Quest G8ME01 = Paper Mario: The Thousand-Year Door G8MJ01 = Paper Mario RPG G8MP01 = Paper Mario: The Thousand-year Door G8OJ18 = Bobobo-bo Bo-bobo Dassutsu! Hajike Royale G8SJAF = Battle Stadium D.O.N G8WE01 = Battalion Wars G8WP01 = Battalion Wars G94E01 = Interactive Multi-Game Demo Disc - August 2002 G95E01 = Interactive Multi-Game Demo Disc - July 2002 G96E01 = Interactive Multi-Game Demo Disc - June 2002 G97E01 = Interactive Multi-Game Demo Disc - March 2002 G97P01 = Interactive Multi Game Demo Disc - September 2002 G97U01 = Interactive Multi-Game Demo Disc - September 2002 G98E01 = Interactive Multi-Game Demo Disc - January 2002 G98P01 = Interactive Multi Game Demo Disc May 2002 G99E01 = Interactive Multi-Game Demo Disc - October 2001 G99P01 = Interactive Multi Game Demo Disc March 2002 G9BEE9 = Mark Davis Pro Bass Challenge G9RD7D = Crash Tag Team Racing G9RE7D = Crash Tag Team Racing G9RF7D = Crash Tag Team Racing G9RP7D = Crash Tag Team Racing G9SE8P = Sonic Heroes G9SJ8P = Sonic Heroes G9SP8P = Sonic Heroes G9TD52 = Shark Tale G9TE52 = Shark Tale G9TF52 = Shark Tale G9TI52 = Shark Tale G9TJC0 = Shark Tale G9TP52 = Shark Tale GA2E51 = All-Star Baseball 2002 GA3E51 = All-Star Baseball 2003 GA4E51 = All-Star Baseball 2004 GA7E70 = Backyard Sports Baseball 2007 GAAJ08 = Disney's Mickey & Minnie Trick & Chase GABEAF = Zatch Bell! Mamodo Fury GACE5H = Army Men: Air Combat The Elite Missions GAEJ01 = Doubutu no Mori e+ GAFE01 = Animal Crossing GAFJ01 = Animal Forest + GAFP01 = Animal Crossing GAFU01 = Animal Crossing GAGP70 = Asterix & Obelix XXL GAHEGG = Alien Hominid GAKE5D = Midway Arcade Treasures GALE01 = Super Smash Bros. Melee GALJ01 = Dairantou Smash Brothers DX GALP01 = Super Smash Bros. Melee GAME5H = Army Men Sarges War GANE7U = Animaniacs: The Great Edgar Hunt GANP7U = Animaniacs: The Great Edgar Hunt GAPE52 = American Chopper 2 - Full Throttle GAQE6S = Aquaman: Battle of Atlantis GARE5H = Army Men: RTS GASE8P = Sonic Adventure DX: Director's Cut (Review Prototype) GASJ8P = Sonic Adventure DX GATE51 = ATV Quad Power Racing 2 GATP51 = ATV Quad Power Racing 2 GAUE08 = Auto Modellista GAUJ08 = Auto Modellista: U.S.-tuned GAVE78 = Avatar The Last Airbender GAVP78 = Avatar: The Legend of Aang GAVY78 = Avatar: The Legend of Aang GAXE5D = The Ant Bully GAYE5D = Midway Arcade Treasures 2 GAZD69 = Harry Potter and the Prisoner of Azkaban GAZE69 = Harry Potter and the Prisoner of Azkaban GAZF69 = Harry Potter and the Prisoner of Azkaban GAZH69 = Harry Potter and the Prisoner of Azkaban GAZI69 = Harry Potter and the Prisoner of Azkaban GAZJ69 = Harry Potter to Azkaban no Shuujin GAZM69 = Harry Potter and the Prisoner of Azkaban GAZP69 = Harry Potter and the Prisoner of Azkaban GAZS69 = Harry Potter and the Prisoner of Azkaban GB2J18 = Bomberman Land 2 GB3E51 = BMX XXX GB3P51 = BMX XXX GB4E51 = Burnout 2: Point of Impact GB4P51 = Burnout 2: Point of Impact GBAE8P = NBA 2K2 GBDE5G = BloodRayne GBDP7D = BloodRayne GBDS7D = BloodRayne GBFE70 = Backyard Football GBGE5G = Bomberman Generation GBGP7D = Bomberman Generation GBHDC8 = Mystic Heroes GBHEC8 = Mystic Heroes GBHFC8 = Mystic Heroes GBHJC8 = 战斗封神 GBHPC8 = Mystic Heroes GBIE08 = Resident Evil GBIJ08 = Biohazard GBIP08 = Resident Evil GBKE70 = Backyard Baseball GBLE52 = Bloody Roar: Primal Fury GBLP52 = Bloody Roar: Primal Fury GBME7F = Batman: Dark Tomorrow GBMP7F = Batman: Dark Tomorrow GBNJC0 = Warrior Blade: Rastan vs. Barbarian GBOE51 = Burnout GBOP51 = Burnout GBQE78 = Rocket Power: Beach Bandits GBQP78 = Rocket Power: Beach Bandits GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTP70 = Beyblade VForce - Super Tournament Battle GBVE41 = Batman: Vengeance GBVP41 = Batman Vengeance GBWD64 = Star Wars Bounty Hunter GBWE64 = Star Wars Bounty Hunter GBWF64 = Star Wars Bounty Hunter GBWP64 = Star Wars Bounty Hunter GBWS64 = Star Wars Bounty Hunter GBXE51 = Dave Mirra Freestyle BMX 2 GBXP51 = Dave Mirra Freestyle BMX 2 GBYE0A = Super Bubble Pop GBZE08 = Resident Evil Zero GBZJ08 = Resident Evil Zero GBZP08 = Resident Evil Zero GC2E9G = Conflict: Desert Storm II: Back to Baghdad GC2P75 = Conflict: Desert Storm II: Back to Baghdad GC3D78 = Scooby-Doo!: Mystery Mayhem GC3E78 = Scooby-Doo!: Mystery Mayhem GC3F78 = Scooby-Doo!: Mystery Mayhem GC3P78 = Scooby-Doo!: Mystery Mayhem GC4JBN = Shinseiki GPX Cyber Formula Road To The EVOLUTION GC5PNK = Cocoto: Kart Racer GC6E01 = Pokémon Colosseum GC6J01 = Pokémon Colosseum GC6P01 = Pokémon Colosseum GC7PNK = Cocoto Platform Jumper GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBP7D = Crash Bandicoot: The Wrath of Cortex GCCE01 = Final Fantasy Crystal Chronicles GCCJ01 = Final Fantasy Crystal Chronicles GCCJGC = Final Fantasy Crystal Chronicles GCCP01 = Final Fantasy Crystal Chronicles GCDE08 = Resident Evil Code: Veronica X GCDJ08 = Biohazard: Code Veronica GCDP08 = Resident Evil Code Veronica X GCEE41 = Tom Clancy's Splinter Cell GCEP41 = Tom Clancy's Splinter Cell GCFE9G = Conflict: Desert Storm GCFP75 = Conflict: Desert Storm GCGE41 = Charlie's Angels GCGP41 = Charlie's Angels GCHE78 = WWE Crush Hour GCHP78 = WWE Crush Hour GCIE69 = The Sims GCIP69 = The Sims GCJE41 = Tom Clancy's Splinter Cell: Chaos Theory GCJP41 = Tom Clancy's Splinter Cell: Chaos Theory GCLE69 = Cel Damage GCLP69 = Cel Damage GCMJA4 = Muscle Champion ~Battle of Muscle Island~ GCNE7D = Crash Nitro Kart GCNP7D = Crash Nitro Kart GCOD52 = Call of Duty: Finest Hour GCOE52 = Call of Duty: Finest Hour GCOF52 = Call of Duty: Finest Hour GCOP52 = Call of Duty: Finest Hour GCPE6S = Casper: Spirit Dimensions GCPP6S = Casper: Spirit Dimensions GCQD7D = Buffy The Vampire Slayer Chaos Bleeds GCQE7D = Buffy the Vampire Slayer: Chaos Bleeds GCQF7D = Buffy The Vampire Slayer Chaos Bleeds GCQP7D = Buffy The Vampire Slayer Chaos Bleeds GCSEAF = Street Racing Syndicate GCSPAF = Street Racing Syndicate GCTE51 = Crazy Taxi GCTP51 = Crazy Taxi GCUE69 = NCAA Football 2005 GCVEEB = Cubivore: Survival of the Fittest GCWP6X = Castleween GCZE69 = Catwoman GCZP69 = Catwoman GD4E6S = Dinotopia - The Sunstone Odyssey GD5JB2 = Dragon Drive: D-Masters Shot GD6EB2 = Digimon Rumble Arena 2 GD6P70 = Digimon Rumble Arena 2 GD7E70 = Dragon Ball Z - Budokai GD7JB2 = Dragon Ball Z - Budokai GD7P70 = Dragon Ball Z - Budokai GD7PB2 = Dragon Ball Z Budokai GD9E69 = Drome Racers GD9P69 = Drome Racers GDAJE5 = Doraemon Minna De Asobou! GDBJ01 = Doubutsu Bancho GDCE51 = Speed Kings GDCP51 = Speed Kings GDDE41 = Disney's Donald Duck: Goin' Quackers GDDP41 = Disney's Donald Duck: Qu@ck Att@ck GDED71 = Baldur's Gate Dark Alliance GDEE71 = Baldur's Gate: Dark Alliance GDEF71 = Baldur's Gate: Dark Alliance GDEP71 = Baldur's Gate Dark Alliance GDFE5D = Defender GDFP5D = Defender: For All Mankind GDGE7H = Dragon's Lair 3D: Return to the Lair GDGP78 = Dragon's Lair 3D Special Edition GDIE7D = Die Hard: Vendetta GDIP7D = Die Hard: Vendetta GDIX7D = Die Hard: Vendetta GDIY7D = Die Hard: Vendetta GDJEB2 = Digimon World 4 GDJJB2 = Digimon World X GDKEA4 = Disney Sports Soccer GDKPA4 = Disney Sports: Football GDLEA4 = Disney Sports Basketball GDLPA4 = Disney Sports: Basketball GDME01 = Disney's Magical Mirror Starring Mickey Mouse GDMJ01 = Disney's Mickey Mouse no Fushigi na Kagami GDMP01 = Disney's Magical Mirror Starring Mickey Mouse GDNJE8 = Dokapon DX GDOP41 = Disney's Donald Duck PK GDPJAF = Mr. Driller: Drill Land GDQE7L = Darkened Skye GDQP6S = Darkened Skye GDREAF = Dead to Rights GDRP69 = Dead to Rights GDRPAF = Dead to Rights GDSE78 = Dark Summit GDSP78 = Dark Summit GDTE69 = Def Jam Vendetta GDTP69 = Def Jam Vendetta GDUJA7 = Duel Masters Nettou Battle GDVE6L = Driven GDVP6L = Driven GDWEA4 = Disney Sports Football GDXEA4 = Disney Sports Skateboarding GDXJA4 = Disney Sports Skateboarding GDXPA4 = Disney Sports Skateboarding GE3E5D = Midway Arcade Treasures 3 GE4E7D = 4x4 Evo 2 GE5EA4 = TMNT: Mutant Melee GE6JA4 = Eisei Meijin VI GE9E5D = Ed, Edd n Eddy: The Mis-Edventures GEAE8P = Skies of Arcadia Legends GEAJ8P = Eternal Arcadia Legends GEAP8P = Skies of Arcadia Legends GEBEA4 = Evolution Snowboarding GEBPA4 = Evolution Snowboarding GEDE01 = Eternal Darkness: Sanity's Requiem GEDJ01 = Eternal Darkness: Manekareta 13-nin GEDP01 = Eternal Darkness: Sanity's Requiem GEJJCM = Jikkyou Powerful Pro Yakyuu 11 Chou Ketteiban GEME7F = Egg Mania: Eggstreme Madness GEMP7F = Eggo Mania GEND69 = James Bond 007: Everything Or Nothing GENE69 = James Bond 007: Everything Or Nothing GENF69 = James Bond 007: Everything Or Nothing GENP69 = 007: Everything Or Nothing GENS69 = James Bond 007: Everything Or Nothing GEOE08 = Capcom vs. SNK 2 EO GEOP08 = Capcom Vs. SNK2 EO: Millionaire Fighting 2001 GESEA4 = Evolution Skateboarding GESPA4 = Evolution Skateboarding GEVJ0M = Shinki Sekai Evolutia GEWE41 = Evolution Worlds GEWP41 = Evolution Worlds GEXE52 = Disney's Extreme Skate Adventure GEXP52 = Disney Extreme Skate Adventure GEXX52 = Disney's Extreme Skate Adventure GEXY52 = Disney Extreme Skate Adventure GEYE69 = Fight Night Round 2 GEYJ69 = Fight Night Round 2 GEYP69 = Fight Night Round 2 GEZE8P = Billy Hatcher and the Giant Egg GEZP8P = Billy Hatcher and the Giant Egg GF2E69 = F1 2002 GF2P69 = F1 2002 GF3E8P = NFL 2K3 GF3P8P = NFL 2K3 GF4E52 = Fantastic 4 GF4F52 = Fantastic Four GF4P52 = Fantastic 4 GF5D69 = FIFA Football 2005 GF5E69 = FIFA Soccer 2005 GF5F69 = FIFA Football 2005 GF5H69 = FIFA Football 2005 GF5I69 = FIFA Football 2005 GF5P69 = FIFA Football 2005 GF5S69 = FIFA Football 2005 GF6D69 = FIFA 06 GF6E69 = FIFA Soccer 06 GF6F69 = FIFA 06 GF6H69 = FIFA 06 GF6P69 = FIFA 06 GF6S69 = FIFA 06 GF7E01 = Star Fox: Assault GF7P01 = Star Fox Assault GF8E69 = FIFA Street GF8P69 = FIFA Street GFAD69 = FIFA Soccer 2003 GFAE69 = FIFA Soccer 2003 GFAF69 = FIFA Soccer 2003 GFAI69 = FIFA Football 2003 GFAJ69 = FIFA Soccer 2003 GFAP69 = FIFA Football 2003 GFAS69 = FIFA Football 2003 GFBE5D = FireBlade GFBP5D = Fireblade GFCP69 = F1 Career Challenge GFDD69 = Freedom Fighters GFDE69 = Freedom Fighters GFDF69 = Freedom Fighters GFDP69 = Freedom Fighters GFEE01 = Fire Emblem: Path of Radiance GFEJ01 = Fire Emblem: Souen no Kiseki GFEP01 = Fire Emblem: Path of Radiance GFFE5D = Freaky Flyers GFGEA4 = Frogger Beyond GFGPA4 = Frogger Beyond GFHP6V = Neighbours From Hell GFIE69 = 2002 FIFA World Cup GFKE69 = Freekstyle GFKP69 = Freekstyle GFMJAF = Family Stadium 2003 GFNJG2 = Finding Nemo GFOE78 = The Fairly OddParents - Shadow Showdown GFPEA4 = Frogger: Ancient Shadow GFQEA4 = Frogger's Adventures: The Rescue GFSD69 = 2002 FIFA World Cup GFSE69 = FIFA Soccer 2002 GFSF69 = 2002 FIFA World Cup GFSJ69 = FIFA Soccer 2002 GFSP69 = 2002 FIFA World Cup GFTE01 = Mario Golf: Toadstool Tour GFTJ01 = Mario Golf: Family Tour GFTP01 = Mario Golf: Toadstool Tour GFUE4Z = Future Tactics: The Uprising GFUP6V = Future Tactics: The Uprising GFVE5D = NFL Blitz Pro GFWE78 = The Fairly OddParents: Breakin' Da Rules GFXE5D = Freestyle Metal X GFYE69 = FIFA Street 2 GFYP69 = FIFA Street 2 GFZE01 = F-Zero GX GFZJ01 = F-Zero GX GFZJ8P = F-Zero AX GFZP01 = F-Zero GX GG1J08 = Donkey Kong: Jungle Fever GG2E4Z = Trigger Man GG3J08 = Donkey Kong: Banana Kingdom GG4E08 = Gotcha Force GG4P08 = Gotcha Force GG5E52 = Cabela's Big Game Hunter 2005 GGAJB2 = Mobile Suit Gundam: The Ace Pilot GGCE0A = Goblin Commander: Unleash The Horde GGCP0A = Goblin Commander: Unleash the Horde GGEE41 = Beyond Good & Evil GGEP41 = Beyond Good And Evil GGEX41 = Beyond Good And Evil GGEY41 = Beyond Good And Evil GGFJ01 = GiFTPiA GGNE5D = The Grim Adventures of Billy and Mandy GGPE01 = Mario Kart Arcade GP GGPE02 = Mario Kart Arcade GP 2 GGPJ02 = Mario Kart Arcade GP 2 GGPJAF = SD Gundam Gashapon Wars GGPJB2 = SD Gundam Gashapon Wars GGRD41 = Tom Clancy's Ghost Recon GGRE41 = Tom Clancy's Ghost Recon GGRP41 = Tom Clancy's Ghost Recon GGSEA4 = Metal Gear Solid: The Twin Snakes GGSJA4 = Metal Gear Solid: The Twin Snakes GGSPA4 = Metal Gear Solid: The Twin Snakes GGTE01 = Chibi-Robo! GGTJ01 = Chibi-Robo! GGTP01 = Chibi-Robo! GGVD78 = Spongebob Squarepants : The Movie GGVE78 = SpongeBob SquarePants: The Movie GGVP78 = Spongebob Squarepants: The Movie GGVX78 = Spongebob Squarepants : The Movie GGYE41 = Tom Clancy's Ghost Recon 2 GGYP41 = Tom Clancy's Ghost Recon 2 GGZE52 = Madagascar GGZH52 = Madagascar GGZI52 = Madagascar GGZJB2 = Madagascar GGZP52 = Madagascar GGZS52 = Madagascar GGZX52 = Madagascar GH2E69 = Need for Speed: Hot Pursuit 2 GH2P69 = Need For Speed Hot Pursuit 2 GH3E69 = NHL 2003 GH3P69 = NHL 2003 GH4D69 = Harry Potter and the Goblet of Fire GH4E69 = Harry Potter and the Goblet of Fire GH4F69 = Harry Potter and the Goblet of Fire GH4H69 = Harry Potter and the Goblet of Fire GH4I69 = Harry Potter and the Goblet of Fire GH4J69 = Harry Potter to Honoo no Goblet GH4M69 = Harry Potter and the Goblet of Fire GH4P69 = Harry Potter and the Goblet of Fire GH4S69 = Harry Potter and the Goblet of Fire GH5D52 = Over The Hedge GH5E52 = Over The Hedge GH5F52 = Over The Hedge GH5P52 = Over The Hedge GH6EAF = Hello Kitty: Roller Rescue GH6P7N = Hello Kitty: Roller Rescue GH7E5D = Happy Feet GH9P52 = Tony Hawk's American Wasteland GHAE08 = Resident Evil 2 GHAJ08 = Biohazard 2 GHAP08 = Resident Evil 2 GHBE7D = The Hobbit GHBP7D = The Hobbit GHCD4Q = Chicken Little GHCE4Q = Chicken Little GHCF4Q = Chicken Little GHCJG9 = Chicken Little GHCP4Q = Chicken Little GHEJ91 = Homeland GHFE4Z = Pinball Hall Of Fame: The Gottlieb Collection GHGEEB = Go! Go! Hypergrind GHKD7D = Hulk GHKE7D = Hulk GHKF7D = Hulk GHKP7D = Hulk GHKS7D = Hulk GHLE69 = Harry Potter and the Sorcerer's Stone GHLJ69 = Harry Potter to Kenja no Ishi GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Sorcerer's Stone GHLY69 = Harry Potter and the Sorcerer's Stone GHLZ69 = Harry Potter and the Sorcerer's Stone GHMD4F = Hitman 2: Silent Assassin GHME4F = Hitman 2: Silent Assassin GHMF4F = Hitman 2: Silent Assassin GHMP4F = Hitman 2: Silent Assassin GHNE71 = Hunter: The Reckoning GHNX71 = Hunter: The Reckoning GHPE52 = Street Hoops GHQE7D = The Simpsons: Hit & Run GHQP7D = The Simpsons: Hit & Run GHRE78 = Hot Wheels: World Race GHRP78 = Hot Wheels: World Race GHSE69 = Harry Potter and the Chamber of Secrets GHSJ69 = Harry Potter to Himitsu no Heya GHSP69 = Harry Potter and the Chamber of Secrets GHSX69 = Harry Potter and the Chamber of Secrets GHSY69 = Harry Potter and the Chamber of Secrets GHTJA4 = Hikaru No Go 3 GHUE7D = The Incredible Hulk: Ultimate Destruction GHUF7D = The Incredible Hulk Ultimate Destruction GHUP7D = The Incredible Hulk Ultimate Destruction GHVE08 = Disney's Hide & Sneak GHVP08 = Disney's Hide & Sneak GHWE78 = Hot Wheels: Velocity X GHWP78 = Hot Wheels: Velocity X GHYE6S = The Haunted Mansion GHZE5D = NHL Hitz Pro GI2J18 = Momotarou Dentetsu 12 GIAE7D = Ice Age 2: The Meltdown GIAP7D = Ice Age 2 : The Meltdown GIBE4F = The Italian Job GIBP4F = The Italian Job GICD78 = The Incredibles GICE78 = The Incredibles GICF78 = The Incredibles GICH78 = The Incredibles GICJG9 = Mr. Inkurediburu GICP78 = The Incredibles GIFJDQ = Generation of Chaos Exceed GIGJ8P = Bleach GC: Tasogare Ni Mamieru Shinigami GIHD78 = Scooby-Doo! Night of 100 Frights GIHE78 = Scooby-Doo! Night of 100 Frights GIHP78 = Scooby-Doo! Night of 100 Frights GIIJ18 = Momotarou Dentetsu 11 GIJEFP = Space Raiders GIJJC0 = Space Raiders GIKE70 = Ikaruga GIKJ70 = Ikaruga GIKP70 = Ikaruga GILE51 = Aggressive Inline GILP51 = Aggressive Inline GINE69 = Batman Begins GINX69 = Batman Begins GIPEAF = Shonen Jump's One Piece: Pirates Carnival GIPJB2 = Shonen Jump's One Piece: Pirates Carnival GIQE78 = The Incredibles: Rise of the Underminer GIQJ8P = The Incredibles: Rise of the Underminer GIQP78 = The Incredibles: Rise of the Underminer GIQX78 = The Incredibles: Rise of the Underminer GIQY78 = The Incredibles: Rise of the Underminer GISE36 = Second Sight GISP36 = Second Sight GITE01 = Geist GITP01 = Geist GIVE4Z = Intellivision Lives GIZE52 = Ty the Tasmanian Tiger 3: Night of the Quinkan GJ2JCM = Jikkyou World Soccer 2002 GJ2PA4 = International Superstar Soccer 2 GJ3PA4 = International Superstar Soccer 3 GJBE18 = Bomberman Jetters GJBE5G = Bomberman Jetters GJBJ18 = Bomberman Jetters GJCE8P = Samurai Jack: The Shadow of Aku GJCP8P = Samurai Jack: The Shadow of Aku GJDE5S = Judge Dredd: Dredd vs. Death GJDX7D = Judge Dredd: Dredd vs. Death GJDY7D = Judge Dredd: Dredd vs. Death GJFE78 = Jimmy Neutron Jet Fusion GJFP78 = Jimmy Neutron Jet Fusion GJKD52 = Star Wars Jedi Knight II: Jedi Outcast GJKE52 = Star Wars Jedi Knight II: Jedi Outcast GJKF52 = Star Wars Jedi Knight II: Jedi Outcast GJKP52 = Star Wars Jedi Knight II: Jedi Outcast GJNE78 = Jimmy Neutron Boy Genius GJNP78 = Jimmy Neutron Boy Genius GJPJCM = Jikkyou Powerful Pro Yakyuu 11 GJSJ18 = Hudson Selection Vol. 2: Star Soldier GJUD78 = Tak and the Power of JuJu GJUE78 = Tak and the Power of Juju GJUF78 = Tak and the Power of JuJu GJUP78 = Tak and the Power of JuJu GJWE78 = Tak: The Great JuJu Challenge GJWP78 = Tak: The Great JuJu Challenge GJXE51 = Vexx GJXP51 = Vexx GJYE78 = Jimmy Neutron: Attack of the Twonkies GJYP78 = Jimmy Neutron Boy Genius: Attack of the Twonkies GJZE52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GJZP52 = SeaWorld Adventure Parks: Shamu's Deep Sea Adventures GK2D52 = Spider-Man 2 GK2E52 = Spider-Man 2 GK2F52 = Spider-Man 2 GK2P52 = Spider-Man 2 GK3E8P = NBA 2K3 GK3P8P = NBA 2K3 GK4E01 = Baten Kaitos Origins GK4J01 = Baten Kaitos II: Hajimari no Tsubasa to Kamigami no Shishi GK5E78 = Monster House GK5P78 = Monster House GK5X78 = Monster House GK6JA4 = Croket Banking No Kikiwosukue GK7E08 = Killer7 GK7J08 = Killer7 GK7P08 = Killer 7 GK9EA4 = Karaoke Revolution Party GKAE8P = Amazing Island GKAJ8P = Kaijuu no Shima: Amazing Island GKBEAF = Baten Kaitos Eternal Wings and the Lost Ocean GKBJAF = Baten Kaitos: Owaranai Tsubasa to Ushinawareta Umi GKBPAF = Baten Kaitos: Eternal Wings and the Lost Ocean GKDJ01 = Kyojin no Doshin GKDP01 = Doshin the Giant GKEJA4 = PAWAFURU PUROYAKYU 12 KETTEIBAN GKFEGG = Chaos Field GKFJ8P = Chaos Field Expanded GKGE01 = Donkey Konga GKGJ01 = Donkey Konga GKGP01 = Donkey Konga GKHEA4 = King Arthur GKHPA4 = King Arthur GKJD78 = Cars GKJE78 = Cars GKJF78 = Cars GKJH78 = Cars GKJJ78 = Cars GKJP78 = Cars GKJS78 = Cars GKKE69 = Knockout Kings 2003 GKKP69 = Knockout Kings 2003 GKLD69 = Lord of the Rings: The Return of the King GKLE69 = Lord of the Rings: The Return of the King GKLF69 = Lord of the Rings: The Return of the King GKLI69 = Lord of the Rings: The Return of the King GKLJ69 = The Lord of the Rings: The Return of the King GKLP69 = Lord of the Rings: The Return of the King GKLS69 = Lord of the Rings: The Return of the King GKME41 = Prince of Persia: The Two Thrones GKMP41 = Prince of Persia: The Two Thrones GKNEB2 = Ultimate Muscle: Legends vs. New Generation GKNJB2 = Kinnikuman Nisei: Shinsedai Choujin vs Densetsu Choujin GKOE70 = Kao The Kangaroo Round 2 GKOP6V = Kao The Kangaroo Round 2 GKPJA4 = Jikkyou Powerful Pro Yakyuu 12 GKQJ01 = Kururin Squash! GKREB2 = Ribbit King GKRPB2 = Ribbit King GKSE52 = Kelly Slater's Pro Surfer GKSP52 = Kelly Slater's Pro Surfer GKSX52 = Kelly Slater's Pro Surfer GKTJA4 = Captain Tsubasa: Ougon Sedai no Chousen GKUE9G = Scaler GKWJ18 = DreamMix TV World Fighters GKXJE7 = Kiwame Mahjong DX2 GKYE01 = Kirby Air Ride GKYJ01 = Kirby Airride GKYP01 = Kirby Air Ride GKZD9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZE9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZF9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP54 = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GL2E51 = Legends of Wrestling 2 GL2P51 = Legends of Wrestling II GL3JE8 = Lupin The Third - Umi Ni Kieta Hihou GL5E4F = LEGO Star Wars: The Video Game GL5P4F = LEGO Star Wars: The Video Game GL5X4F = LEGO Star Wars: The Video Game GL7E64 = LEGO Star Wars II: The Original Trilogy GL7P64 = LEGO Star Wars II: The Original Trilogy GL8D4F = Lara Croft Tomb Raider: Legend GL8E4F = Lara Croft Tomb Raider: Legend GL8F4F = Lara Croft Tomb Raider: Legend GL8P4F = Lara Croft Tomb Raider: Legend GLBE8P = Home Run King GLCD52 = Lemony Snickets A Series Of Unfortunate Events GLCE52 = Lemony Snickets A Series Of Unfortunate Events GLCF52 = Lemony Snickets A Series Of Unfortunate Events GLCP52 = Lemony Snickets A Series Of Unfortunate Events GLCS52 = Lemony Snickets A Series Of Unfortunate Events GLEE08 = Resident Evil 3: Nemesis GLEJ08 = BioHazard 3: Last Escape GLEP08 = Resident Evil 3: Nemesis GLGP41 = Largo Winch : Empire Under Threat GLHEG9 = Flushed Away GLHPG9 = Flushed Away GLIJA7 = Special Jinsei Game GLJJMS = Radirgy GLLE78 = Ratatouille GLLF78 = Ratatouille GLME01 = Luigi's Mansion GLMJ01 = Luigi's Mansion GLMP01 = Luigi's Mansion GLNE69 = Looney Tunes: Back in Action GLNP69 = Looney Tunes: Back in Action GLOD69 = Lord of the Rings: The Two Towers GLOE69 = Lord of the Rings: The Two Towers GLOF69 = Lord of the Rings: The Two Towers GLOI69 = Lord of the Rings: The Two Towers GLOP69 = Lord of the Rings: The Two Towers GLOS69 = Lord of the Rings: The Two Towers GLQE41 = Tom Clancy's Rainbow Six: Lockdown GLQP41 = Tom Clancy's Rainbow Six: Lockdown GLRD64 = Star Wars Rogue Squadron III: Rebel Strike GLRE64 = Star Wars Rogue Squadron III: Rebel Strike GLRF64 = Star Wars Rogue Squadron III: Rebel Strike GLRJ13 = Star Wars Rogue Squadron III: Rebel Strike GLRP64 = Star Wars Rogue Squadron III: Rebel Strike GLSD64 = Gladius GLSE64 = Gladius GLSF64 = Gladius GLSP64 = Gladius GLUE7U = Lotus Challenge GLVD4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVE4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVF4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLVP4Q = The Chronicles of Narnia: The Lion Witch and the Wardrobe GLWE51 = Legends of Wrestling GLWP51 = Legends of Wrestling GLXJ29 = Legend of Golfer GLYE69 = NBA Live 2005 GLYP69 = NBA Live 2005 GLZD69 = James Bond 007: From Russia With Love GLZE69 = 007: From Russia With Love GLZF69 = James Bond 007: From Russia With Love GLZP69 = James Bond 007: From Russia With Love GM2E8P = Super Monkey Ball 2 GM2J8P = Super Monkey Ball 2 GM2P8P = Super Monkey Ball 2 GM3E69 = Madden NFL 2003 GM3P69 = Madden NFL 2003 GM4E01 = Mario Kart: Double Dash!! GM4J01 = Mario Kart: Double Dash!! GM4P01 = Mario Kart: Double Dash!! GM5D7D = Metal Arms: Glitch in the System GM5E7D = Metal Arms: Glitch in the System GM5F7D = Metal Arms: Glitch in the System GM5P7D = Metal Arms: Glitch in the System GM6EE9 = Medabots Infinity GM6PE9 = Medabots Infinity GM8E01 = Metroid Prime GM8J01 = Metroid Prime GM8P01 = Metroid Prime GM9E6S = Muppets Party Cruise GMAE51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMAP51 = Mary-Kate and Ashley: Sweet 16 Licensed to Drive GMBE8P = Super Monkey Ball GMBJ8P = Super Monkey Ball GMBP8P = Super Monkey Ball GMDE69 = Madden NFL 2002 GMEE70 = Men In Black II: Alien Escape GMEP70 = Men In Black II: Alien Escape GMFD69 = Medal of Honor: Frontline GMFE69 = Medal of Honor: Frontline GMFF69 = Medal of Honor: Frontline GMFI69 = Medal of Honor: Frontline GMFP69 = Medal of Honor: Frontline GMFS69 = Medal of Honor: Frontline GMHE52 = Mat Hoffmans Pro Bmx 2 GMHF52 = Mat Hoffman's Pro BMX 2 GMHP52 = Mat Hoffman's Pro BMX 2 GMIE70 = Mission Impossible: Operation Surma GMIP70 = Mission Impossible: Operation Surma GMJE41 = Monster Jam: Maximum Destruction GMJP41 = Monster Jam: Maximum Destruction GMKD5D = Mortal Kombat: Deadly Alliance GMKE5D = Mortal Kombat: Deadly Alliance GMKP5D = Mortal Kombat: Deadly Alliance GMLEA4 = ESPN MLS Extra Time 2002 GMNE78 = Monsters, Inc. Scream Arena GMNP78 = Monsters, Inc. Scream Arena GMOP70 = Micro Machines GMPE01 = Mario Party 4 GMPJ01 = Mario Party 4 GMPP01 = Mario Party 4 GMQE70 = Monopoly Party GMQP70 = Monopoly Party GMRE70 = Big Air Freestyle GMRP70 = Big Air Freestyle GMSE01 = Super Mario Sunshine GMSJ01 = Super Mario Sunshine GMSP01 = Super Mario Sunshine GMTE69 = Disney's Party GMTP69 = Disney's Party GMUE5D = Dr. Muto GMWD52 = Minority Report: Everybody Runs GMWE52 = Minority Report: Everybody Runs GMWF52 = Minority Report: Everybody Runs GMWP52 = Minority Report: Everybody Runs GMXE70 = Enter The Matrix GMXJB2 = Enter The Matrix GMXP70 = Enter The Matrix GMYJ8P = Gekitou Pro Yakyuu GMZE41 = Monster 4x4: Masters Of Metal GN2E70 = Nascar: Dirt To Daytona GN3E5D = NHL Hitz 2003 GN3P5D = NHL Hitz 2003 GN4E69 = Nascar 2005: Chase For The Cup GN5E69 = NHL 2005 GN5P69 = NHL 2005 GN6E69 = NHL 06 GN6P69 = NHL 06 GN7E69 = NFL Street 2 GN7P69 = NFL Street 2 GN8E69 = NBA Live 2004 GN8P69 = NBA Live 2004 GN9E70 = Nickelodeon Party Blast GNAE8P = NCAA College Football 2K3 GNBE01 = NBA Courtside 2002 GNBP01 = NBA Courtside 2002 GNCE69 = Nascar Thunder 2003 GNDD69 = Need For Speed Underground GNDE69 = Need For Speed Underground GNDF69 = Need For Speed Underground GNDP69 = Need For Speed Underground GNED78 = Finding Nemo GNEE78 = Finding Nemo GNEF78 = Finding Nemo GNEP78 = Finding Nemo GNES78 = Finding Nemo GNFE5D = NFL Blitz 2002 GNGE69 = NCAA Football 2003 GNHE5D = NHL Hitz 2002 GNHP5D = NHL Hitz 20-02 GNIEA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNIPA4 = Teenage Mutant Ninja Turtles 2: Battle Nexus GNJEAF = I-Ninja GNKE8P = NCAA College Basketball 2K3 GNLE69 = NBA Live 2003 GNLP69 = NBA Live 2003 GNMEAF = Namco Museum GNNE69 = NFL Street GNNP69 = NFL Street GNOE78 = Nicktoons Unite! GNOX78 = Spongebob Squarepants & Friends: Unite! GNPP70 = Nickelodeon Party Blast GNQE69 = Madden NFL 2005 GNQP69 = Madden NFL 2005 GNREDA = Naruto Clash of Ninja GNRJDA = NARUTO Gekitô Ninja Taisen! GNSE69 = NBA Street GNSJ69 = NBA Street GNUEDA = Naruto Clash of Ninja 2 GNUJDA = Naruto: Gekitou Ninja Taisen! 2 GNUPDA = Naruto: Clash of Ninja - European Version GNVE69 = NHL 2004 GNVP69 = NHL 2004 GNWE69 = Def Jam: Fight For NY GNWP69 = Def Jam: Fight For NY GNXE69 = NCAA Football 2004 GNZE69 = NBA Street Vol.2 GNZP69 = NBA Street Vol.2 GO2D4F = Blood Omen 2: The Legacy of Kain Series GO2E4F = Blood Omen 2: The Legacy of Kain Series GO2F4F = Blood Omen 2: The Legacy of Kain Series GO2P4F = Blood Omen 2: The Legacy of Kain Series GO3E5D = NFL Blitz 2003 GO7D69 = James Bond 007: NightFire GO7E69 = 007: NightFire GO7F69 = James Bond 007: NightFire GO7P69 = James Bond 007: NightFire GO7S69 = James Bond 007: NightFire GOAE52 = Cabela's Outdoor Adventures GOBE4Z = Bad Boys: Miami Takedown GOBP7N = Bad Boys II GOCE5D = RoadKill GODJGA = Ohenro-San: Hosshin no Dojo GOFE7L = Outlaw Golf GOFP6S = Outlaw Golf GOGJB2 = One Piece: Grand Battle! 3 GOME01 = Mario Power Tennis GOMJ01 = Mario Tennis GC GOMP01 = Mario Power Tennis GOND69 = Medal of Honor: European Assault GONE69 = Medal of Honor: European Assault GONF69 = Medal of Honor: European Assault GONJ13 = Medal of Honor: Europa Kyoushuu GONP69 = Medal of Honor: European Assault GOOE01 = Odama GOOJ01 = Odama GOOP01 = Odama GOPEB2 = Shonen Jump's One Piece: Grand Battle GOPJB2 = One Piece: Grand Battle! Rush GOQE82 = One Piece: Grand Adventure GOQEAF = Shonen Jump's One Piece: Grand Adventure GOSE41 = Open Season GOSP41 = Open Season GOSX41 = Open Season GOUPNK = Cocoto Funfair GOWD69 = Need For Speed Most Wanted GOWE69 = Need For Speed Most Wanted GOWF69 = Need For Speed Most Wanted GOWJ69 = Need For Speed Most Wanted GOWP69 = Need For Speed Most Wanted GOYD69 = GoldenEye: Rogue Agent GOYE69 = GoldenEye: Rogue Agent GOYF69 = GoldenEye: Rogue Agent GOYP69 = GoldenEye: Rogue Agent GOYS69 = GoldenEye: Rogue Agent GP2EAF = Pac-Man World 2 GP2P69 = Pac-Man World 2 GP3E78 = The Polar Express GP3P78 = The Polar Express GP4J18 = Hudson Selection Vol. 3: Bonk's Adventure GP5E01 = Mario Party 5 GP5J01 = Mario Party 5 GP5P01 = Mario Party 5 GP6E01 = Mario Party 6 GP6J01 = Mario Party 6 GP6P01 = Mario Party 6 GP7E01 = Mario Party 7 GP7J01 = Mario Party 7 GP7P01 = Mario Party 7 GP8EAF = Pac-Man World 3 GP8P69 = Pac-Man World 3 GP8PAF = Pac-Man World 3 GP9E7F = Rogue Ops GP9P7F = Rogue Ops GPAE01 = Pokémon Channel GPAJ01 = Pokémon Channel GPAP01 = Pokémon Channel GPAU01 = Pokémon Channel GPDE51 = Dakar 2: The World's Ultimate Rally GPDP51 = Dakar 2: The World's Ultimate Rally GPEJ2Q = Pool Edge GPHD52 = Pitfall: The Lost Expedition GPHE52 = Pitfall: The Lost Expedition GPHF52 = Pitfall: The Lost Expedition GPHP52 = Pitfall: The Lost Expedition GPIE01 = Pikmin GPIJ01 = Pikmin GPIP01 = Pikmin GPJJCM = Jikkyou Powerful Pro Yakyuu 10 GPKE41 = Disney's PK Out of the Shadows GPLD9G = Piglet's Big Game GPLE9G = Piglet's Big Game GPLF9G = Piglet's Big Game GPLP9G = Piglet's Big Game GPMEAF = Pac Man Fever GPNE08 = P.N.03 GPNJ08 = P.N.03 GPNP08 = P.N.03 GPOE8P = Phantasy Star Online Episode I & II GPOJ8P = Phantasy Star Online Episode I & II GPOP8P = Phantasy Star Online Episode I&II GPPJCM = Jikkyou Powerful Pro Yakyuu 9 GPQE6L = The Powerpuff Girls: Relish Rampage GPQP6L = The Powerpuff Girls: Relish Rampage GPRE7U = Pool Paradise GPRP7U = Pool Paradise GPSE8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPSJ8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPSP8P = Phantasy Star Online Episode III: C.A.R.D. Revolution GPTE41 = Prince of Persia: The Sands of Time GPTP41 = Prince of Persia: The Sands of Time GPUE8P = Puyo Pop Fever GPUP6W = Puyo Pop Fever GPUP8P = Puyo Pop Fever GPVE01 = Pikmin 2 GPVJ01 = Pikmin 2 GPVP01 = Pikmin 2 GPWEAF = Spawn: Armageddon GPWP69 = Spawn: Armageddon GPWPAF = Spawn: Armageddon GPXE01 = Pokémon Box: Ruby & Sapphire GPXJ01 = Pokémon Box: Ruby & Sapphire GPXP01 = Pokémon Box: Ruby & Sapphire GPYJ8P = Puyo Pop Fever GPZJ01 = Nintendo Puzzle Collection GQ4E78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ4F78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ4P78 = SpongeBob SquarePants: Creature from the Krusty Krab GQ8E69 = Madden NFL 08 GQBE51 = NFL Quarterback Club 2002 GQCD52 = Call of Duty 2: Big Red One GQCE52 = Call of Duty 2: Big Red One GQCF52 = Call of Duty 2: Big Red One GQCP52 = Call of Duty 2: Big Red One GQCS52 = Call of Duty 2: Big Red One GQFFFK = Franklin: A Birthday Surprise GQLE9G = Dora The Explorer: Journey To The Purple Planet GQLP54 = Dora The Explorer: Journey to the Purple Planet GQNE5D = Mortal Kombat: Deception GQPE78 = SpongeBob SquarePants: Battle for Bikini Bottom GQPP78 = SpongeBob Squarepants: Battle For Bikini Bottom GQQD78 = SpongeBob SquarePants: Lights, Camera, PANTS! GQQE78 = SpongeBob SquarePants: Lights, Camera, Pants! GQQF78 = SpongeBob SquarePants: Lights, Camera, PANTS! GQQH78 = SpongeBob SquarePants: Lights, Camera, Pants! GQQP78 = SpongeBob SquarePants: Lights, Camera, Pants! GQRJ18 = Hudson Selection Vol. 1: Cubic Lode Runner GQSDAF = Tales of Symphonia GQSEAF = Tales of Symphonia GQSFAF = Tales of Symphonia GQSIAF = Tales of Symphonia GQSPAF = Tales of Symphonia GQSSAF = Tales of Symphonia GQTE4Q = Meet the Robinsons GQWE69 = Harry Potter: Quidditch World Cup GQWJ69 = Harry Potter World Cup GQWP69 = Harry Potter: Quidditch World Cup GQWX69 = Harry Potter: Quidditch World Cup GQXE69 = Madden NFL 2004 GQXP69 = Madden NFL 2004 GQZJ01 = Densetsu no Quiz Ou Ketteisen GR2E52 = Lost Kingdoms 2 GR2JCQ = Rune II: Koruten no Kagi no Himitsu GR2P52 = Lost Kingdoms 2 GR3E5D = Red Card 2003 GR4EMZ = MC Groovz Dance Craze GR4PMZ = MC Groovz Dance Craze GR5J1K = Robocop: Aratanaru Kiki GR6D78 = Bratz: Rock Angelz GR6E78 = Bratz: Rock Angelz GR6F78 = Bratz: Rock Angelz GR6P78 = Bratz: Rock Angelz GR8D69 = Medal of Honor: Rising Sun GR8E69 = Medal of Honor: Rising Sun GR8F69 = Medal of Honor: Rising Sun GR8J69 = Medal of Honor: Rising Sun GR8P69 = Medal of Honor: Rising Sun GR9E6L = Reign of Fire GR9P6L = Reign of Fire GRAE5Z = Rally Championship GRAP75 = Rally Championship GRBE6S = Robotech: Battlecry GRBP6S = Robotech : Battlecry GRDP5D = RedCard GREE08 = Mega Man Network Transmission GREJ08 = RockMan EXE Transmission GREP08 = Mega Man Network Transmission GRFD78 = Red Faction II GRFE78 = Red Faction II GRFF78 = Red Faction II GRFP78 = Red Faction II GRHE41 = Rayman 3: Hoodlum Havoc GRHP41 = Rayman 3: Hoodlum Havoc GRJEAF = R: Racing Evolution GRJJAF = R:Racing Evolution: Life in the Fast Lane GRJP69 = R: Racing GRKE41 = Rocky GRKP7G = Rocky GRLE41 = Pro Rally GRLP41 = Pro Rally GRMJDA = Monopoly: Mezase!! Daifugou Jinsei!! GRNE52 = Lost Kingdoms GRNJCQ = Rune GRNP52 = Lost Kingdoms GROE5Z = Road Trip: The Arcade Edition GROP7J = Gadget Racers GRQE41 = City Racer GRRE78 = Rugrats: Royal Ransom GRRP78 = Rugrats: Royal Ransom GRSEAF = SoulCalibur II GRSJAF = SoulCalibur II GRSPAF = SoulCalibur II GRUE78 = Power Rangers Dino Thunder GRUF78 = Power Rangers Dino Thunder GRUP78 = Power Rangers Dino Thunder GRVEA4 = Rave Master GRWJD9 = Super Robot Taisen GC GRYE41 = Rayman Arena GS2D78 = Summoner: A Goddess Reborn GS2E78 = Summoner: A Goddess Reborn GS2F78 = Summoner: A Goddess Reborn GS2P78 = Summoner: A Goddess Reborn GS3E51 = SX Superstar GS3P51 = SX Superstar GS7E5D = MLB SlugFest 2004 GS8E7D = Spyro: Enter the Dragonfly GS8P7D = Spyro: Enter the Dragonfly GS9E6S = Shrek Extra Large GS9P6S = Shrek Extra Large GSAE01 = Star Fox Adventures GSAJ01 = StarFox Adventures GSAP01 = Star Fox Adventures GSBJ8P = Sonic Adventure 2: Battle GSCE51 = Jeremy McGrath SuperCross World GSCP51 = Jeremy McGrath SuperCross World GSDEAF = Smashing Drive GSEJB2 = Shaman King: Soul Fight GSGE5D = MLB SlugFest 2003 GSHE5D = SpyHunter GSHP5D = SpyHunter GSKE7D = The Scorpion King: Rise of the Akkadian GSKP7D = The Scorpion King : Rise of the Akkadian GSMD52 = Spider-Man GSME52 = Spider-Man: The Movie GSMF52 = Spider-Man GSMP52 = Spider-Man GSNE8P = Sonic Adventure 2: Battle GSNP8P = Sonic Adventure 2: Battle GSOE8P = Sonic Mega Collection GSOJ8P = Sonic Mega Collection GSOP8P = Sonic Mega Collection GSPE69 = The Simpsons: Road Rage GSPP69 = The Simpsons: Road Rage GSQE78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSQP78 = SpongeBob SquarePants: Revenge of the Flying Dutchman GSRE7S = Smuggler's Run: Warzones GSRP7S = Smuggler's Run: Warzones GSSE8P = Sega Soccer Slam GSSJ8P = Sega Soccer Slam GSSP70 = Sega Soccer Slam GSSP8P = Sega Soccer Slam GSTE69 = SSX Tricky GSTJ69 = SSX Tricky GSTP69 = SSX Tricky GSUE70 = Superman: Shadow of Apokolips GSUP70 = Superman: Shadow of Apokolips GSVE78 = MX Superfly Featuring Ricky Carmichael GSVP78 = MX Superfly featuring Ricky Carmichael GSWD64 = Star Wars Rogue Leader: Rogue Squadron II GSWE64 = Star Wars Rogue Squadron II: Rogue Leader GSWF64 = Star Wars Rogue Leader: Rogue Squadron II GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = Star Wars Rogue Leader: Rogue Squadron II GSWP64 = Star Wars Rogue Leader: Rogue Squadron II GSWS64 = Star Wars Rogue Leader: Rogue Squadron II GSXD64 = Star Wars: The Clone Wars GSXE64 = Star Wars: The Clone Wars GSXF64 = Star Wars: The Clone Wars GSXJ13 = Star Wars: Clone Sensou GSXP64 = Star Wars: The Clone Wars GSXS64 = Star Wars: The Clone Wars GSYE6S = Shrek: Super Party GSYP6S = Shrek: Super Party GSZP41 = Speed Challenge: Jacques Villeneuve Racing Vision GT2J18 = Tengai Makyou 2: Manji Maru GT3D52 = Tony Hawk's Pro Skater 3 GT3E52 = Tony Hawk's Pro Skater 3 GT3F52 = Tony Hawk's Pro Skater 3 GT3J52 = Tony Hawk's Pro Skater 3 GT3P52 = Tony Hawk's Pro Skater 3 GT4D52 = Tony Hawk's Pro Skater 4 GT4E52 = Tony Hawk's Pro Skater 4 GT4F52 = Tony Hawk's Pro Skater 4 GT4P52 = Tony Hawk's Pro Skater 4 GT5E7N = Starsky & Hutch GT5P7N = Starsky & Hutch GT6E70 = Terminator 3: The Redemption GT6J70 = Terminator 3: The Redemption GT6P70 = Terminator 3: The Redemption GT7E41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7P41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT7X41 = Tom Clancy's Splinter Cell: Pandora Tomorrow GT8E78 = Big Mutha Truckers GT8P78 = Big Mutha Truckers GT8P7N = Big Mutha Truckers GTAE5S = Top Angler : Real Bass Fishing GTAP5S = Top Angler: Real Bass Fishing GTCJBL = GT Cube GTDE52 = Tony Hawk's Underground GTDP52 = Tony Hawk's Underground GTEE01 = 1080° Avalanche GTEJ01 = 1080° Silver Storm GTEP01 = 1080° Avalanche GTFEA4 = Teenage Mutant Ninja Turtles GTFPA4 = Teenage Mutant Ninja Turtles GTGE60 = Top Gun: Combat Zones GTGP60 = Top Gun: Combat Zones GTHJD9 = Charinko Hero GTIE69 = Tiger Woods PGA Tour 2003 GTIP69 = Tiger Woods PGA Tour 2003 GTJE5L = Tom & Jerry in War of the Whiskers GTKD51 = Turok Evolution GTKE51 = Turok Evolution GTKP51 = Turok Evolution GTLE52 = True Crime: Streets of LA GTLP52 = True Crime: Streets of LA GTLX52 = True Crime: Streets of LA GTMJDA = Mutsu To Nohohon GTNJ18 = Hudson Selection Vol. 4: Adventure Island GTOJAF = Tales of Symphonia GTPP6S = Knights Of The Temple : Infernal Crusade GTQE6S = Tonka: Rescue Patrol GTRE78 = Tetris Worlds GTRP78 = Tetris Worlds GTSE4F = TimeSplitters 2 GTSP4F = TimeSplitters 2 GTUE8G = Tube Slider - The Championship of Future Formula GTVE70 = Transworld Surf: Next Wave GTWE70 = Taz Wanted GTWP70 = Taz Wanted GTYE69 = Ty the Tasmanian Tiger GTYP69 = Ty: The Tasmanian Tiger GTZE41 = Tarzan Untamed GTZP41 = Tarzan Freeride GU2D78 = 2 Games in 1: The Incredibles / Finding Nemo GU2F78 = 2 Games in 1: The Incredibles / Finding Nemo GU3D78 = 2 Games in 1: The SpongeBob SquarePants Movie / Tak 2: The Staff of Dreams GU4Y78 = 2 Games in 1: The SpongeBob SquarePants Movie / Battle for Bikini Bottom GU6E78 = Nicktoons - Battle for Volcano Island GUBE69 = The Urbz: Sims in the City GUBJ13 = The Urbz: Sims In The City GUBP69 = The Urbz: Sims In The City GUCD69 = UEFA Champions League 2004-2005 GUCF69 = UEFA Champions League 2004-2005 GUCP69 = UEFA Champions League 2004-2005 GUFE4Z = Ultimate Fighting Championship Throwdown GUFP4Z = UFC: Throwdown GUGD69 = Need For Speed Underground 2 GUGE69 = Need For Speed Underground 2 GUGF69 = Need For Speed Underground 2 GUGP69 = Need For Speed Underground 2 GUMD52 = Gun GUME52 = Gun GUMP52 = Gun GUNE5D = Gauntlet: Dark Legacy GUNP5D = Gauntlet: Dark Legacy GUPE8P = Shadow the Hedgehog GUPJ8P = Shadow the Hedgehog GUPP8P = Shadow the Hedgehog GUSE7F = Universal Studios Theme Park Adventure GUSP7F = Universal Studios Theme Park Adventure GUTD52 = Ultimate Spider-Man GUTE52 = Ultimate Spider-Man GUTF52 = Ultimate Spider-Man GUTI52 = Ultimate Spider-Man GUTJC0 = Ultimate Spider-Man GUTP52 = Ultimate Spider-Man GUTS52 = Ultimate Spider-Man GUVE51 = Freestyle Street Soccer GUVP51 = Urban Freestyle Soccer GUZE41 = Batman: Rise of Sin Tzu GUZP41 = Batman Rise of Sin Tzu GV3J70 = V-Rally 3 GV3P70 = V-Rally 3 GV4E69 = MVP Baseball 2005 GVCE08 = Viewtiful Joe: Red Hot Rumble GVCJ08 = Viewtiful Joe: Battle Carnival GVCP08 = Viewtiful Joe: Red Hot Rumble GVDE78 = Bratz Forever Diamondz GVDP78 = Bratz Forever Diamondz GVHE4F = Bionicle Heroes GVJE08 = Viewtiful Joe GVJJ08 = Viewtiful Joe GVJP08 = Viewtiful Joe GVKE52 = Cabela's Dangerous Hunts 2 GVLD69 = Marvel Nemesis: Rise of the Imperfects GVLE69 = Marvel Nemesis: Rise of the Imperfects GVLF69 = Marvel Nemesis: Rise of the Imperfects GVLP69 = Marvel Nemesis: Rise of the Imperfects GVMP41 = Super Bust-A-Move All Stars GVOE69 = Bionicle GVOP69 = Bionicle GVPE69 = MVP Baseball 2004 GVRE7H = Grooverider Slot Car Thunder GVS46E = Virtua Striker 4 Ver.2006 GVS46J = Virtua Striker 4 Ver.2006 GVSE8P = Virtua Striker 2002 GVSJ8P = VIRTUA STRIKER 3 ver.2002 GVSJ9P = Virtua Striker 4 Ver.2006 GVSP8P = Virtua Striker 3 Ver. 2002 GVWJDQ = Gakuen Toshi Vara Noir Roses GW2E78 = WWE Day of Reckoning 2 GW2P78 = WWE Day of Reckoning 2 GW3E78 = WWE WrestleMania X8 GW3JG2 = WWE WrestleMania X8 GW3P78 = WWE Wrestlemania X8 GW4E69 = Tiger Woods PGA Tour 2004 GW4P69 = Tiger Woods PGA Tour 2004 GW5D69 = Need For Speed Carbon GW5E69 = Need For Speed Carbon GW5F69 = Need For Speed Carbon GW5P69 = Need For Speed Carbon GW6JEM = Winning Eleven 6 Final Evolution GW7D69 = James Bond 007 in Agent Under Fire GW7E69 = 007: Agent Under Fire GW7F69 = James Bond 007 in Agent Under Fire GW7P69 = James Bond 007 in Agent Under Fire GW8E52 = World Series of Poker GW9E78 = WWE WrestleMania XIX GW9JG2 = WWE WrestleMania XIX GW9P78 = WWE WrestleMania XIX GWAD8P = Spartan Total Warrior GWAE8P = Spartan Total Warrior GWAF8P = Spartan Total Warrior GWAP8P = Spartan Total Warrior GWBE41 = Worms Blast GWBP41 = Worms Blast GWDP6S = World Racing GWEE51 = 18 Wheeler: American Pro Trucker GWEP8P = 18 Wheeler American Pro Trucker GWGE4F = Swingerz Golf GWGJ4F = Wai Wai Golf GWGP4F = Ace Golf GWHE41 = Winnie The Pooh Rumbly Tumbly Adventures GWHP41 = Winnie the Pooh's Rumbly Tumbly Adventure GWJE52 = Tony Hawk's American Wasteland GWKE41 = Peter Jackson's King Kong: The Official Game of the Movie GWKP41 = Peter Jackson's King Kong: The Official Game of the Movie GWLE6L = Wallace & Gromit in Project Zoo GWLP6L = Wallace & Gromit : Project Zoo GWLX6L = Wallace & Gromit in Project Zoo GWME51 = Worms 3D GWMP8P = Worms 3D GWOE5G = Blowout GWPE78 = WWE Day of Reckoning GWPJG2 = WWE Day of Reckoning GWPP78 = WWE Day of Reckoning GWQE52 = Wreckless: The Yakuza Missions GWQP52 = Wreckless: The Yakuza Missions GWRE01 = Wave Race: Blue Storm GWRJ01 = Wave Race: Blue Storm GWRP01 = Wave Race: Blue Storm GWSEA4 = ESPN International Winter Sports 2002 GWSJA4 = Hyper Sports 2002 Winter GWSPA4 = ESPN International Winter Sports GWTEA4 = WTA Tour Tennis GWTJA4 = WTA Tour Tennis GWTPA4 = Pro Tennis WTA Tour GWUE7D = Whirl Tour GWUP7D = Whirl Tour GWVE52 = X2: Wolverine's Revenge GWVP52 = X-Men 2: Wolverine's Revenge GWVX52 = X-Men 2 : Wolverine's Revenge GWWE01 = Wario World GWWJ01 = Wario World GWWP01 = Wario World GWYE41 = Tom Clancy's Splinter Cell: Double Agent GWYX41 = Tom Clancy's Splinter Cell: Double Agent GWZE01 = Dance Dance Revolution: Mario Mix GWZJ01 = Dance Dance Revolution: Mario Mix GWZP01 = Dancing Stage Mario Mix GX2D52 = X-Men Legends II: Rise of Apocalypse GX2E52 = X-Men Legends II: Rise of Apocalypse GX2P52 = X-Men Legends II: Rise of Apocalypse GX2S52 = X-Men Legends II: Rise of Apocalypse GX3E41 = XIII GX3P41 = XIII GX3X41 = XIII GXAE51 = XGRA Extreme G Racing Association GXAP51 = XGRA Extreme G Racing Association GXBE69 = SSX 3 GXBP69 = SSX 3 GXCE01 = Custom Robo GXEE8P = Sonic Riders GXEJ8P = Sonic Riders GXEP8P = Sonic Riders GXFD69 = FIFA Football 2004 GXFE69 = FIFA Soccer 2004 GXFF69 = FIFA Football 2004 GXFI69 = FIFA Football 2004 GXFP69 = FIFA Football 2004 GXFS69 = FIFA Football 2004 GXGE08 = Mega Man X Collection GXLE52 = X-Men Legends GXLP52 = X-Men Legends GXLX52 = X-Men Legends GXME52 = X-Men: Next Dimension GXMF52 = X-Men: Next Dimension GXMP52 = X-Men: Next Dimension GXNE5D = Rampage Total Destruction GXOE69 = SSX on Tour GXOJ69 = SSX On Tour with Mario GXOP69 = SSX On Tour GXOX69 = SSX On Tour GXPE78 = Sphinx and the Cursed Mummy GXPP78 = Sphinx and the Cursed Mummy GXQF41 = Taxi 3 GXRE08 = Mega Man X: Command Mission GXRJ08 = Rockman X: Command Mission GXRP08 = Mega Man X: Command Mission GXSE8P = Sonic Adventure DX: Director's Cut GXSP6W = Sonic Adventure DX : Director's Cut GXSP8P = Sonic Adventure DX: Director's Cut GXUE41 = Surf's Up GXXE01 = Pokémon XD: Gale of Darkness GXXJ01 = Pokemon XD: Yami no Kaze Dark Lugia GXXP01 = Pokémon XD: Gale of Darkness GY2E01 = Donkey Konga 2 GY2J01 = Donkey Konga 2 GY2P01 = Donkey Konga 2 GY3J01 = Donkey Konga 3 GYAD78 = Barnyard GYAE78 = Barnyard GYAP78 = Barnyard GYAX78 = Barnyard GYBE01 = Donkey Kong Jungle Beat GYBJ01 = Donkey Kong Jungle Beat GYBP01 = Donkey Kong Jungle Beat GYFEA4 = Yu-Gi-Oh! The Falsebound Kingdom GYFJA4 = Yu-Gi-Oh! The Falsebound Kingdom GYFPA4 = Yu-Gi-Oh! The Falsebound Kingdom GYKEB2 = Zatch Bell! Mamodo Battles GYMJA4 = Jikkyou Powerful Major League GYQE01 = Mario Superstar Baseball GYQJ01 = Super Mario Stadium Miracle Baseball GYQP01 = Mario Superstar Baseball GYRE41 = TMNT GYRP41 = TMNT GYTE69 = Ty The Tasmanian Tiger 2: Bush Rescue GYTP69 = Ty The Tasmanian Tiger 2: Bush Rescue GYWDE9 = Harvest Moon: A Wonderful Life GYWEE9 = Harvest Moon: A Wonderful Life GYWJ99 = Bokujou Monogatari: Wonderful Life GYWP41 = Harvest Moon: A Wonderful Life GYWPE9 = Harvest Moon: A Wonderful Life GZ2E01 = The Legend of Zelda: Twilight Princess GZ2J01 = Zelda no Densetsu: Twilight Princess GZ2P01 = The Legend of Zelda: Twilight Princess GZ3E70 = Dragon Ball Z: Budokai 2 GZ3P70 = Dragon Ball Z: Budokai 2 GZ3PB2 = Dragon Ball Z Budokai 2 GZCE51 = ZooCube GZCJB0 = ZooCube GZCP51 = Zoocube GZDE70 = Godzilla: Destroy all Monsters Melee GZDJ70 = Godzilla: Kaijuu Dairantou GZDP70 = Godzilla: Destroy all Monsters Melee GZEE70 = Dragon Ball Z: Sagas GZFJBP = Gekituisenki - Zero Fighter GZHJDA = Zoids Full Metal Crash GZLE01 = The Legend of Zelda: The Wind Waker GZLJ01 = Zelda no Densetsu: Kaze no Takuto GZLP01 = The Legend of Zelda: The Wind Waker GZMP7D = Butt-Ugly Martians Zoom or Doom GZOJDA = Zoids vs. GZPE70 = Zapper - One Wicked Cricket! GZPP70 = Zapper: One Wicked Cricket! GZQE7D = Robots GZQJ7D = Robots GZQP7D = Robots GZSE70 = Zoids Battle Legends GZSJDA = Zoids VS. II GZVJDA = Zoids vs. III GZWE01 = Wario Ware Inc.: Mega Party Game$! GZWJ01 = Atumare!! made in wario GZWP01 = Wario Ware Inc.: Mega Party Game$! HAAA = 照片频道 HABA = 购物频道(欧) HABK = Wii Shop Channel HACA = Mii频道(欧) HACK = Mii Channel HADE = 网络频道(美) HADJ = 网络频道(日) HADP = 网络频道(欧) HAFE = 天气频道(美) HAFJ = 天气频道(日) HAFP = 天气频道(欧) HAGE = 新闻频道(美) HAGJ = 新闻频道(日) HAGP = 新闻频道(欧) HAJE = Everybody Votes Channel HAJJ = Everybody Votes Channel HAJP = Everybody Votes Channel HAPE = Check Mii Out频道(美) HAPJ = Mii Contest Channel HAPP = Check Mii Out频道(欧) HATE = Nintendo Channel HATJ = Nintendo Channel HATP = Nintendo Channel HAVJ = Today and Tomorrow Fortune Teller HAVK = Today And Tomorrow Channel HAVP = Today and Tomorrow Channel HAWE = Metroid Prime 3 Preview HAWJ = Metroid Prime 3 Preview HAWP = Metroid Prime 3 Preview HAYA = 照片频道 HAYK = Photo Channel HBNJ = TV Friend Channel HBWE01 = 自制 超级马里奥兄弟Wii 地狱男爵版(美) HC3J = USB Flash Optimization HCAJ = Band Bros. DX Speaker Channel HCAP = Jam with the Band Live HCBJ = Photo Channel 1.0 Restore Program HCDJ = Digicam Print Channel HCFE = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Wii Speak Channel HCGE = Wii + Internet HCGJ = Wii Plus Internet HCGP = Wii Plus Internet HCHJ = Food Service HCIJ = Wii no ma HCJP = BBC iPlayer Channel HCLE = Netflix系统安装盘(美) HCLP = Netflix HCMP = Kirby TV HCQE = Hulu Plus HCQJ = Hulu HCRE = The Legend of Zelda: Skyward Sword Save Data Update Channel HCRJ = The Legend of Zelda Skyward Sword Update HCRP = The Legend of Zelda Skyward Sword Update HCSE = Wii U Transfer Tool HCSJ = Wii U Transfer Tool HCSP = Wii U Transfer Tool HCTE = Wii System Transfer HCTJ = Wii System Transfer HCTP = Wii System Transfer HCUE = Wii Menu Electronic Manual HCUJ = Wii Menu Electronic Manual HCUP = Wii Menu Electronic Manual HCVA = Wii U Menu HCWE = Amazon Instant Video HCWP = Amazon Instant Video HCXE = YouTube HCXJ = YouTube HCXP = YouTube HCZE = Wii System Transfer HWFL = HackWiiFlow JA2J = Shin Megami Tensei JA3J = Kamaitachi no Yoru JA4E = 超魔界村(美) JA4J = Chou-Makai-Mura JA4P = 超魔界村(欧) JA5J = Heracles no Eikou III: Kamigami no Chinmoku JA6E = Zombies Ate My Neighbors JA6J = Zombies Ate My Neighbors JA6P = Zombies JA7D = 阿雷沙(德) JA7E = 阿雷沙(美) JA7F = 阿雷沙(法) JA7J = Actraiser JA7P = 阿雷沙(欧) JA8E = 快打旋风(美) JA8J = Final Fight JA8P = 快打旋风(欧) JAAE = 超级马里奥世界(美) JAAJ = Super Mario World JAAK = Super Mario World JAAP = 超级马里奥世界(欧) JABJ = Mario no Super Picross JABL = Mario’s Super Picross JACE = F-Zero(美) JACJ = F-Zero JACK = F-Zero JACP = F-Zero(欧) JADD = The Legend of Zelda: A Link to the Past JADE = The Legend of Zelda: A Link to the Past JADF = The Legend of Zelda: A Link to the Past JADJ = Zelda no Densetsu: Kamigami no Triforce JADK = The Legend of Zelda: A Link to the Past JADP = The Legend of Zelda: A Link to the Past JAEE = Donkey Kong Country JAEJ = Super Donkey Kong JAEK = Donkey Kong Country JAEP = Donkey Kong Country JAFD = SimCity JAFE = Sim City JAFF = SimCity JAFJ = SimCity JAFP = SimCity JAGJ = Fire Emblem: Monshou no Nazo JAHE = R-Type III: The 3rd Lightning JAHJ = R-Type III: The Third Lightning JAHK = R-Type III: The Third Lightning JAHP = R-TYPE III : The Third Lightning JAIE = Super Castlevania IV JAIJ = Akumajou Dracula JAIP = Super Castlevania IV JAJE = Street Fighter II: The World Warrior JAJJ = Street Fighter II JAJP = Street Fighter II: The World Warrior JALE = Contra III: The Alien Wars JALJ = Contra Spirits JALK = Contra III: The Alien Wars JALP = Super Probotector: Alien Rebels JAME = 宇宙巡航机3(美) JAMJ = Gradius III JAMK = Gradius III JAMM = 宇宙巡航机3(欧) JAPJ = Fire Emblem: Seisen no Keifu JAUJ = Famicom Bunko: Hajimari no Mori JAVE = Super Metroid JAVJ = Super Metroid JAVK = Super Metroid JAVP = 超级银河战士(欧) JAWE = Romance of the Three Kingdoms IV: Wall of Fire JAWJ = San Goku Shi IV JAZD = The Legend of the Mystical Ninja JAZE = The Legend of The Mystical Ninja JAZJ = Ganbare Goemon: Yukihime Kyuushutsu Emaki JAZP = The Legend of the Mystical Ninja JB3D = Harvest Moon JB3E = Harvest Moon JB3J = Harvest Moon JB3P = Harvest Moon JB5J = Super Gussun Oyoyo JB6J = Treasure Hunter G JB7J = Front Mission: Gun Hazard JB9J = Gakkou de atta Kowai Hanashi JBAE = Metal Marines JBAJ = Militia JBBE = Super Street Fighter II: The New Challengers JBBJ = Super Street Fighter II: The New Challengers JBBP = Super Street Fighter II: The New Challengers JBCE = Kirby's Dream Course JBCJ = Kirby Bowl JBCK = Kirby's Dream Course JBCP = Kirby's Dream Course JBDD = Donkey Kong Country 2: Diddy's Kong-Quest JBDE = Donkey Kong Country 2: Diddy's Kong Quest JBDJ = Super Donkey Kong 2: Dixie & Diddy JBDK = Donkey Kong Country 2: Diddy Kong's Quest JBDP = Donkey Kong Country 2: Diddy's Kong-Quest JBEJ = Magical Drop JBFJ = Otogirisou JBGJ = Mystery Dungeon: Shiren the Wanderer JBHJ = Heracles no Eikou IV: Kamigami-kara no Okurimono JBIE = Street Fighter II Turbo: Hyper Fighting JBIJ = Street Fighter II Turbo: Hyper Fighting JBIP = Street Fighter II Turbo: Hyper Fighting JBKE = Breath of Fire II JBKJ = Breath of Fire II: Shimei no Ko JBKP = Breath of Fire II JBLE = 小精灵的攻击(美) JBLJ = Cosmo Gang the Puzzle JBLP = 小精灵的攻击(欧) JBNE = Darius Twin JBNJ = Darius Twin JBOJ = Panel de Pon JBOK = Panel de Pon JBPE = Donkey Kong Country 3: Dixie Kong's Double Trouble JBPJ = Super Donkey Kong 3: Nazo no Krems Shima JBPP = Donkey Kong Country 3: Dixie Kong’s Double Trouble JBQE = Kirby's Avalanche JBQJ = Kirby's Avalanche JBQP = Kirby's Ghost Trap JBRE = Vegas Stakes JBRJ = Vegas Stakes JBRP = Vegas Stakes JBSE = Axelay JBSJ = Axelay JBSP = Axelay JBTE = Super Turrican JBTJ = Super Turrican JBTP = Super Turrican JBUE = Super Turrican 2 JBUJ = Super Turrican Two JBVJ = Der Langrisser JBWE = 机动装甲(美) JBWJ = Assault Suits Valken JBWK = Cybernator JBWP = 机动装甲(欧) JBYE = 超级异形战机(美) JBYJ = Super R-Type JBYK = Super R-Type JBYP = 超级异形战机(欧) JC2J = Taikou Risshiden JC3J = Bahamut Lagoon JC4E = 印第安纳琼斯大冒险(美) JC4J = Indiana Jones Great Adventure JC4P = 印第安纳琼斯大冒险(欧) JC5J = Romancing SaGa JC6J = Romancing SaGa 2 JC7E = The Combatribes JC7J = The Combatribes JC8E = 最终幻想2(美) JC8J = Final Fantasy IV JC8M = 最终幻想2(M) JC8P = 最终幻想2(欧) JC9J = Final Fantasy V JCAJ = DoReMi Fantasy: Milon no DokiDoki Daibouken JCAL = DoReMi Fantasy - Milon’s DokiDoki Adventure JCAN = DoReMi Fantasy: Milon's DokiDoki Adventure JCBE = 超级玛利奥RPG(美) JCBJ = Super Mario RPG JCBM = 超级玛利奥RPG(欧) JCCE = Kirby Super Star JCCJ = Hoshi no Kirby Super Deluxe JCCP = Kirby’s Fun Pak JCDE = Kirby's Dream Land 3 JCDJ = Hoshi no Kirby 3 JCDM = Kirby’s Dream Land 3 JCEJ = Fire Emblem: Thracia 776 JCGJ = Ganbare Goemon 2: Kiteretsu Shougun Magginesu JCHJ = Ganbare Goemon 3 JCIJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo JCJE = Super Punch-Out!! JCJJ = Super Punch-Out!! JCJP = Super Punch Out!! JCKE = 太空侵略者(美) JCKJ = Space Invaders: The Original Game JCKP = 太空侵略者(欧) JCLD = Secret of Mana JCLE = Secret of Mana JCLF = Secret of Mana JCLJ = Seiken Densetsu 2 JCLP = Secret of Mana JCMJ = Super Wagyan Land JCNE = Prince of Persia JCNJ = Prince of Persia JCTE = Ogre Battle: The March of the Black Queen JCTJ = Densetsu no Ogre Battle: The March of the Black Queen JCTM = Ogre Battle: The March of the Black Queen JCUE = 飞行俱乐部(美) JCUJ = Tactics Ogre: Let Us Cling Together JCVE = Pilotwings JCVJ = Pilotwings JCVP = 飞行俱乐部(欧) JCWE = 超级马里奥赛车(美) JCWJ = Super Mario Kart JCWP = 超级马里奥赛车(欧) JCXE = Nobunaga's Ambition JCXJ = Super Nobunaga no Yabou: Zengokuban JCYE = Uncharted Waters: New Horizons JCYJ = Daikoukai Jidai II JCZE = Genghis Khan II: Clan of the Gray Wolf JCZJ = Super Aoki Ookami to Shiroki Meshika: Genchou Hishi JD2J = Bishoujo Janshi Suchie-Pai JD3E = Super E.D.F. Earth Defense Force JD3J = Super E.D.F. Earth Defense Force JD3P = 地球防卫队(欧) JD4E = Rival Turf! JD4J = Rushing Beat JD4P = Rival Turf! JD5E = Brawl Brothers JD5J = Rushing Beat Ran: Fukusei Toshi JD5P = Brawl Brothers JD6E = The Ignition Factor JD6J = Fire Fighting JD6M = The Ignition Factor JD7E = Super Adventure Island JD7J = Takahashi Meijin no Daibouken Jima JD7P = Super Adventure Island JD8E = Super Adventure Island II JD8J = Takahashi Meijin no Daibouken Jima II JD8P = Super Adventure Island II JD9E = Super Bonk JD9J = Chou-Genjin JD9M = Super Bonk JDAE = Final Fantasy III JDAJ = Final Fantasy VI JDAP = Final Fantasy III JDBE = Super Bomberman 3 JDCE = Street Fighter Alpha 2 JDCJ = Street Fighter Two Alpha JDCP = Street Fighter Alpha 2 JDDE = Final Fight 2 JDDJ = Final Fight Two JDDP = Final Fight 2 JDEE = Final Fight 3 JDEJ = Final Fight Tough JDEP = Final Fight 3 JDFJ = Sutte Hakkun JDHJ = Super Famicom Wars JDIE = Super Star Wars JDIJ = Super Star Wars JDIP = Super Star Wars JDJE = 星际大战5 帝国大反击(美) JDJJ = Super Star Wars The Empire Strikes Back JDJP = 星际大战5 帝国大反击(欧) JDKJ = Metal Max 2 JDLE = Super Star Wars: Return of the Jedi JDLJ = Super Star Wars Return Of The Jedi JDLP = Super Star Wars: Return of the Jedi JDMJ = Kirby no Kirakira Kizzu JDNE = Ghoul Patrol JDNJ = Ghoul Patrol JDOJ = Heisei Shin Onigashima: Zenpen JDPJ = Heisei Shin Onigashima: Kouhen JDQJ = Romancing Sa-Ga 3 JDRJ = Clock Tower JDSJ = Shin Megami Tensei II JDTJ = Shin Megami Tensei if... JDUJ = Albert Odyssey JDVE = 荒野双枪(美) JDVJ = Wild Guns JDVP = 荒野双枪(欧) JDWE = Aero the Acrobat JDWJ = Aero The Acrobat JDWP = Aero The Acrobat JDXE = Aero the Acrobat 2 JDXJ = Aero The Acrobat Two JDXP = 飞天蝙蝠2(欧) JDYJ = Rudra no Hihou JDZE = Final Fantasy Mystic Quest JDZJ = Final Fantasy USA: Mystic Quest JEAE = Natsume Championship Wrestling JEAJ = Natsume Championship Wrestling JEAP = Natsume Championship Wrestling JEBE = Mega Man X JEBJ = RockMan X JECE = Chrono Trigger JECJ = Chrono Trigger JECM = Chrono Trigger JECP = Chrono Trigger JEDJ = Kunio-Kun no Dodge Ball Dayo Zenin Shuugo! JEEJ = Majin Tensei JEFJ = Majin Tensei II: Spiral Nemesis JEGJ = Gouketuji Ichizoku JEHE = Mega Man X2 JEHJ = RockMan X2 JEIJ = Metal Max Returns JEJJ = Tsukikomori JEKJ = Kyuyaku Megami Tensei: Megami Tensei I・II JODI = 自制频道(欧) JOUE01 = New Super Mario Bros. Wii 10 The Journey KMCP06 = Wiimms MKW Fun 2010-12.pal+ KMKE01 = 自制 马里奥赛车Wii(美) KMNE03 = Newer Super Mario Bros. Wii KMNE10 = Koopa Country KMNJ03 = Newer Super Mario Bros. Wii KMNP03 = Newer Super Mario Bros. Wii KMNP10 = Koopa Country L40P4Q = 自制 唱吧 下载版(欧) LAAJ = Hokuto no Ken LABE = Fantasy Zone LABJ = Fantasy Zone LABP = Fantasy Zone LACE = Wonder Boy LACJ = Super Wonder Boy LACP = Wonder Boy LADE = Phantasy Star LADJ = Phantasy Star LADP = Phantasy Star LAEE = Alex Kidd in Miracle World LAEJ = Alex Kidd in Miracle World LAEP = Alex Kidd in Miracle World LAFJ = Ashura LAFN = Secret Commando LAFP = Secret Command LAGE = Sonic The Hedgehog LAGJ = Sonic the Hedgehog LAGP = Sonic The Hedgehog LAHE = Space Harrier LAHJ = Space Harrier LAHP = Space Harrier LAIE = Enduro Racer LAIJ = Enduro Racer LAIP = Enduro Racer LAJE = Sonic The Hedgehog 2 LAJJ = Sonic the Hedgehog 2 LAJP = Sonic The Hedgehog 2 LAKE = Wonder Boy in Monster Land LAKJ = Super Wonder Boy: Monster World LAKP = Wonder Boy in Monster Land LALE = Fantasy Zone II: The Tears of OPA-OPA LALJ = Fantasy Zone II: The Tears of Opa-Opa LALP = Fantasy Zone II LAME = Sonic Chaos LAMJ = Sonic Chaos LAMP = Sonic Chaos LANE = Alex Kidd: The Lost Stars LANJ = Alex Kidd: The Lost Stars LANP = Alex Kidd: The Lost Stars LAOE = R-Type LAOJ = R-Type LAOP = R-Type LAPE = Wonder Boy III: The Dragon's Trap LAPP = Wonder Boy III: The Dragon's Trap LAQE = Alex Kidd in Shinobi World LAQP = Alex Kidd in Shinobi World LULZ = 自制频道(欧) MA2J = Dyna Brothers MA3E = Puyo Puyo 2 MA3J = Puyo Puyo Tsuu MA3L = Puyo Puyo 2 MA4J = Bahamut Senki MA5J = Rent A Hero MA6E = Streets of Rage 2 MA6J = Bare Knuckle II: Shitou no Chinkon Uta MA6P = Streets of Rage 2 MA7E = Shining in the Darkness MA7J = Shining and the Darkness MA7P = Shining in the Darkness MA8E = Ecco: The Tides of Time MA8J = Ecco the Dolphin 2 MA8P = Ecco: The Tides of Time MA9J = The Hybrid Front MAAE = Altered Beast MAAJ = Juuouki MAAP = Altered Beast MABE = Columns MABJ = Columns MABP = Columns MACE = Dr. Robotnik's Mean Bean Machine MACJ = Puyo Puyo MACP = Dr. Robotnik's Mean Bean Machine MADE = Ecco the Dolphin MADJ = Ecco the Dolphin MADP = Ecco the Dolphin MAEE = Golden Axe MAEJ = Golden Axe MAEP = Golden Axe MAFE = Gunstar Heroes MAFJ = Gunstar Heroes MAFP = Gunstar Heroes MAGE = Ristar MAGJ = Ristar MAGP = Ristar MAHE = Sonic the Hedgehog MAHJ = Sonic the Hedgehog MAHP = Sonic the Hedgehog MAIE = Space Harrier II MAIJ = Space Harrier II MAIP = Space Harrier II MAJE = Toe Jam & Earl MAJJ = ToeJam & Earl MAJP = ToeJam & Earl MAKE = Shadow Dancer: The Secret of Shinobi MAKJ = Shadow Dancer: The Secret of Shinobi MAKP = Shadow Dancer: The Secret of Shinobi MALE = Bonanza Bros. MALJ = Bonanza Bros. MALP = Bonanza Bros. MAME = Sword of Vermillion MAMJ = Vermilion MAMP = Sword of Vermilion MANE = Gain Ground MANJ = Gain Ground MANP = Gain Ground MAOE = Bio-Hazard Battle MAOJ = Crying: Aseimei Sensou MAOP = Bio-Hazard Battle MAPE = Comix Zone MAPJ = Comix Zone MAPP = Comix Zone MAQE = Streets of Rage MAQJ = Bare Knuckle: Ikari no Tekken MAQP = Streets of Rage MARE = Beyond Oasis MARJ = The Story of Thor: Hikari o Tsugu Mono MARP = The Story of Thor MASE = Vectorman MASJ = Vectorman MASP = Vectorman MATE = Sonic Spinball MATJ = Sonic Spinball MATP = Sonic Spinball MAUJ = Puzzle & Action: Tant-R MAVE = Wonder Boy in Monster World MAVJ = Wonder Boy V: Monster World III MAVP = Wonder Boy In Monster World MAWE = Virtua Fighter 2 MAWJ = Virtua Fighter 2 MAWP = Virtua Fighter 2 MAXE = Alex Kidd In The Enchanted Castle MAXJ = Alex Kidd: Tenkuu Mashiro MAXP = Alex Kidd In The Enchanted Castle MAYE = Alien Storm MAYJ = Alien Storm MAYP = Alien Storm MAZE = ToeJam & Earl in Panic on Funkotron MAZP = ToeJam & Earl in Panic on Funkotron MB2J = Langrisser MB3E = Monster World IV MB3J = Monster World IV MB4J = Party Quiz Mega Q MB5J = Rangurissah II MB6E = Shining Force II MB6J = Shining Force II: Inishie no Fuuin MB6P = Shining Force II MB7E = Mega Turrican MB7P = Mega Turrican MB8E = Phantasy Star II MB8J = Phantasy Star II: Kaerazaru Toki no Owari ni MB8P = Phantasy Star II MB9J = Pepenga Pengo MBAJ = Pulseman MBAL = Pulseman MBAN = Pulseman MBBE = Sonic the Hedgehog 2 MBBJ = Sonic the Hedgehog 2 MBBP = Sonic the Hedgehog 2 MBCE = Kid Chameleon MBCJ = Chameleon Kid MBCP = Kid Chameleon MBDE = Golden Axe II MBDJ = Golden Axe II MBDP = Golden Axe II MBEE = Shining Force MBEJ = Shining Force: Kamigami no Isan MBEP = Shining Force MBFE = Shinobi III: Return of the Ninja Master MBFJ = The Super Soldier II MBFP = Shinobi III: Return of the Ninja master MBGE = Dynamite Headdy MBGJ = Dynamite Headdy MBGP = Dynamite Headdy MBHJ = Puzzle & Action: Ichidant-R MBIE = Landstalker: The Treasures of King Nole MBIJ = LandStalker: Koutei no Zaihou MBIP = Landstalker: The Treasures of King Nole MBJE = Ghouls'n Ghosts MBJJ = Dai Makai-Mura MBJP = Ghouls'n Ghosts MBKJ = Crack Down MBKP = Crack Down MBLJ = ESWAT: Cyber Police MBLP = ESWAT City Under Siege MBME = Sonic the Hedgehog 3 MBMJ = Sonic the Hedgehog 3 MBMP = Sonic the Hedgehog 3 MBNJ = Chelnov MBOE = Golden Axe III MBOJ = Golden Axe III MBOP = Golden Axe III MBPE = Super Thunder Blade MBPJ = Super Thunder Blade MBPP = Super Thunder Blade MBQE = Streets of Rage 3 MBQJ = Bare Knuckle III MBQP = Streets of Rage 3 MBRE = Rolling Thunder 2 MBRJ = Rolling Thunder 2 MBRP = Rolling Thunder 2 MBSJ = Dyna Brothers 2 Special MBTE = Alien Soldier MBTJ = Alien Soldier MBTP = Alien Soldier MBUE = Sonic 3D: Blast MBUJ = Sonic 3D Blast MBUP = Sonic 3D: Flickies' Island MBVJ = Jusu Kihei Leynos MBWE = Columns III: Revenge of Columns MBWJ = Columns III: Taiketsu! Columns World MBWM = Columns III: Revenge of Columns MBXE = Ecco Jr. MBXJ = Ecco Jr. MBXM = Ecco Jr. MBYE = Light Crusader MBYJ = Light Crusader MBYP = Light Crusader MBZE = Eternal Champions MBZJ = Eternal Champions MBZP = Eternal Champions MC2E = Earthworm Jim 2 MC2J = Earthworm Jim 2 MC2P = Earthworm Jim 2 MC3E = Super Street Fighter II: The New Challengers MC3J = Super Street Fighter 2: The New Challengers MC3P = Super Street Fighter II: The New Challengers MC4E = Strider MC4J = Strider Hiryu MCAJ = Gley Lancer MCAL = Gley Lancer MCAN = Gley Lancer MCBE = Powerball MCBJ = Wrestleball MCCE = Phantasy Star III MCCJ = Toki no Keishousha: Phantasy Star III MCCP = Phantasy Star III: Generations of Doom MCDE = Sonic & Knuckles MCDJ = Sonic & Knuckles MCDP = Sonic & Knuckles MCEJ = Super Fantasy Zone MCEN = Super Fantasy Zone MCEP = Super Fantasy Zone MCGE = Forgotten Worlds MCGJ = Forgotten Worlds MCGP = Forgotten Worlds MCHE = M.U.S.H.A. MCHJ = Musha Aleste MCHM = MUSHA : Metallic Uniframe Super Hybrid Armor MCIJ = Gynoug MCJE = Splatterhouse 2 MCJJ = Splatterhouse Part 2 MCJP = Splatterhouse 2 MCKE = Phantasy Star IV MCKJ = Phantasy Star: Sennenki no Owari ni MCKP = Phantasy Star IV MCLE = Street Fighter II': Special Champion Edition MCLJ = Street Fighter II' Plus: Champion Edition MCLP = Street Fighter II’: Special Champion Edition MCMJ = Lord Monarch: Tokoton Sentou Densetsu MCNJ = Hokuto no Ken: Shin Seikimatu Kyuseisyu Densetsu MCOJ = Sorcerian MCPE = Earthworm Jim MCPJ = Earthworm Jim MCPP = Earthworm Jim MCQE = Boogerman: A Pick and Flick Adventure MCQP = Boogerman - A Pick and Flick Adventure MCRE = Wolf of the Battlefield: MERCS MCRJ = Senjou no Ookami II MCRP = MERCS: Wolf of the Battlefield MCSJ = Wonder Boy III: Monster Lair MCSN = Wonder Boy III: Monster Lair MCSP = Wonder Boy III: Monster Lair MCTE = Clay Fighter MCTP = Clay Fighter MCUJ = Dragon Slayer: The Legend of Heroes MCVE = Pitfall: The Mayan Adventure MCVJ = Pitfall: The Mayan Adventure MCVP = Pitfall: The Mayan Adventure MCWE = Galaxy Force II MCWJ = Galaxy Force II MCWP = Galaxy Force II MCXJ = Dragon Slayer: The Legend of Heroes MCYE = The Revenge of Shinobi MCYJ = The Super Shinobi MCYP = The Revenge of Shinobi MCZE = Shanghai II: Dragon's Eye MCZP = Shanghai II Dragon's Eye MDUE01 = 自制 马里奥赛车 Track Grand Priix[WiFi](美) MECPSI = 自制 唱吧 下载版(欧) METE01 = New Super Metroid Bros. Wii MIJPSI = 自制 唱吧 迈克尔杰克逊(欧) MILPSI = 自制 唱吧 下载版(欧) MKDE02 = Darky Kart Wii MKTE01 = 自制 马里奥赛车 技巧(美) MKWP01 = 自制 超级马里奥赛车Wii(欧) MMRE01 = 自制 D.U.超级马里奥兄弟2.1 疯狂反击(美) MRRE01 = New Super Mario Bros. Wii Retro Remix MRRP01 = 自制 新超级马里奥兄弟Wii 复古重制版(欧) NA3E = Bomberman Hero NA3J = Bomberman Hero NA3P = Bomberman Hero NAAE = 超级马里奥64(美) NAAJ = Super Mario 64 NAAP = 超级马里奥64(欧) NABE = 马里奥赛车64(美) NABJ = Mario Kart 64 NABK = Mario Kart 64 NABP = 马里奥赛车64(欧) NACE = The Legend of Zelda: Ocarina of Time NACJ = Zelda no Densetsu: Toki no Ocarina NACP = The Legend of Zelda: Ocarina of Time NADE = Star Fox 64 NADJ = Star Fox 64 NADK = Star Fox 64 NADP = Lylat Wars NAEE = 纸片马里奥(美) NAEJ = Mario Story NAEP = 纸片马里奥(欧) NAFE = F-Zero X NAFJ = F-Zero X NAFP = F-Zero X NAGJ = Aerogauge NAHE = Yoshi's Story NAHJ = Yoshi's Story NAHP = Yoshi's Story NAIE = 水上摩托64(美) NAIJ = Wave Race 64: Kawasaki Jet Ski NAIP = 水上摩托64(欧) NAJ8 = The Legend of Zelda: Ocarina of Time (spanish translation) NAJ9 = Super Smash Bros. NAJJ = Tsumi to Batsu NAJL = 罪与罚(L) NAJN = 罪与罚(N) NAKD = Pokémon Snap NAKE = Pokémon Snap NAKF = Pokémon Snap NAKI = Pokémon Snap NAKJ = Pokémon Snap NAKP = Pokémon Snap NAKS = Pokémon Snap NALE = Super Smash Bros. NALJ = Nintendo All-Star Dairantou Smash Brothers NALP = Super Smash Bros. NAME = Kirby 64: The Crystal Shards NAMJ = Hoshi no Kirby 64 NAMK = Kirby 64: The Crystal Shards NAMP = Kirby 64: The Crystal Shards NAND = Pokémon Puzzle League NANE = Pokémon Puzzle League NANF = Pokémon Puzzle League NANJ = Pokemon Puzzle League NANP = Pokémon Puzzle League NAOE = 1080° Snowboarding NAOJ = 1080° Snowboarding NAOK = 1080° Snowboarding NAOP = 1080 : TenEighty Snowboarding NAPJ = Custom Robo V2 NARE = The Legend of Zelda: Majora's Mask NARJ = Zelda no Densetsu: Majora no Kamen NARP = The Legend of Zelda: Majora's Mask NASE = 特级飞车(美) NASJ = Cruisn USA NASP = 特级飞车(欧) NATE = 马里奥网球(美) NATJ = Mario Tennis 64 NATP = 马里奥网球(欧) NAUE = 马里奥高尔夫(美) NAUJ = Mario Golf 64 NAUP = 马里奥高尔夫(欧) NAYE = Ogre Battle 64: Person of Lordly Caliber NAYJ = Ogre Battle 64: Person of Lordly Caliber NAYM = Ogre Battle 64 : Person of Lordly Caliber NAZE = Mario Party 2 NAZJ = Mario Party 2 NAZP = Mario Party 2 NEEA = The Legend of Zelda: Ocarina of Time Master Quest NEWE01 = New Super Mario Bros Wii 15 A New World NK2O = Neek2o NMNP01 = Newer Super Mario Bros. Wii NRJ1FR = 自制 唱吧 NRJ音乐之旅 1.1版(自) NSMB02 = New Super Mario Bros. Wii 2 NSSP01 = Newer Summer Sun NWRP01 = Newer Super Mario Bros. Wii NZXM = Super Mario 64 Multiplayer ONKELZ = 自制 唱吧 下载版(美) OTFPSI = 自制 唱吧 下载版(欧) P2ME01 = Metroid Prime 2: Echoes (Bonus Disc) PA2J = Nekketsu Koukou Dodgeball Bu: CD Soccer Hen PA3J = Salamander PA4J = Parasol Stars PA6E = Bloody Wolf PA6J = Narazumono Sentou Butai: Bloody Wolf PA6P = Bloody Wolf PA7E = Alien Crush PA7J = Alien Crush PA7P = Alien Crush PA8E = Ordyne PA8J = Ordyne PA9E = Splatterhouse PA9J = Splatterhouse PA9P = Splatterhouse PAAE = Bomberman '93 PAAP = Bomberman '93 PABE = Bonk's Adventure PABJ = PC Genjin PABP = Bonk's Adventure PACE = Dungeon Explorer PACJ = Dungeon Explorer PACP = Dungeon Explorer PADE = R-Type PADJ = R-Type I PADP = R-Type PAEE = Super Star Soldier PAEJ = Super Star Soldier PAEP = Super Star Soldier PAFE = Victory Run PAFJ = Victory Run: Eikou no 13,000KM PAFP = Victory Run PAGJ = Bomberman '94 PAGL = Bomberman'94 PAGN = Bomberman '94 PAHE = Battle Lode Runner PAHJ = Battle Lode Runner PAHP = Battle Lode Runner PAIE = New Adventure Island PAIJ = Takahashi Meijin no Shin Bouken Jima PAIP = New Adventure Island PAJJ = Joshoken Necromancer PAKE = Dragon's Curse PAKJ = Adventure Island PAKP = Dragon's Curse PALE = Soldier Blade PALJ = Soldier Blade PALP = Soldier Blade PAME = Neutopia PAMJ = Neutopia: Frey no Shou PAMP = Neutopia PANE = Military Madness PANJ = Nectaris PANP = Military Madness PAOJ = Final Soldier PAOL = Final Soldier PAON = Final Soldier PAPJ = R-Type II PAQJ = Gradius PARJ = Detana TwinBee PARL = Detana Twin Bee PARN = Detana Twin Bee PASJ = Cadash PATJ = Kiki Kaikai PAUJ = Kaizou Chounin Shubibinman PAVE = Vigilante PAVJ = Vigilante PAVP = Vigilante PAWE = Galaga '90 PAWJ = Galaga '88 PAWP = Galaga'90 PAYJ = Valkyrie no Densetsu PAZJ = Genpei Toumaden PB2E = Neutopia II PB2J = Neutopia II PB2P = Neutopia II PB3E = Devil's Crush PB3J = Devil Crash PB3P = Devil's Crush PB5J = Ninja Ryukenden PB6E = Cratermaze PB6P = Cratermaze PB7J = Sengoku Mahjong PB8E = Blazing Lazers PB8J = Blazing Lazers PB8P = Blazing Lazers PB9E = World Sports Competition PB9J = Power Sports PB9P = World Sports Competition PBAE = Dragon Spirit PBAJ = Dragon Spirit PBAP = Dragon Spirit PBCJ = Wonder-Momo PBDE = Double Dungeons PBDJ = Double Dungeons PBDP = Double Dungeons PBEE = Moto Roader PBEJ = Moto Roader PBEP = Motoroader PBFJ = Fire ProWrestling: Combination Tag PBHE = Bonk's Revenge PBHJ = PC Genjin 2 PBHP = Bonk's Revenge PBIE = Bonk 3: Bonk's Big Adventure PBIJ = PC Genjin 3 PBIP = Bonk III: Bonk's Big Adventure PBJE = Samurai Ghost PBJJ = Genpei Toumaden: Kannoni PBJP = Samurai Ghost PBME = Legend of Hero Tonma PBMJ = Legend of Hero Tonma PBMP = Legend of Hero Tonma PBNE = Ninja Spirit PBNJ = Saigou no Nindou: Ninja Spirit PBNP = Ninja Spirit PBSE = Chew Man Fu PBSJ = Be Ball PBSP = Chew Man Fu PBTE = China Warrior PBTJ = The Kung Fu PBTP = China Warrior PBUE = Bravoman PBUJ = Chouzetsu Rinjin Bravoman PBVJ = Benkei Gaiden PBWE = Air “Zonk” PBWJ = PC Denjin: Punkic Cyborgs PBWP = Air 'Zonk' PBXE = Shockman PBXJ = Kaizou Chounin Shubibinman 2: Atanaru Teki PBXP = Shockman PBYJ = Out Live PBZE = J.J. & Jeff PBZP = J.J. & Jeff PC2E = Chase H.Q. PC2J = Chase H.Q. PC2P = Chase H.Q. PC3J = Darius Plus PC4J = Space Invaders: Fukkatsu no Hi PC5J = Dragon Saber PC6E01 = Pokémon Colosseum Bonus Disc PC6J = Final Blaster PC7J = Mizubaku Daibouken PC8J = The Ninjawarriors PC9J = The NewZealand Story PCAE = Silent Debuggers PCAJ = Silent Debuggers PCAP = Silent Debuggers PCBE = Dead Moon PCBJ = Dead Moon: Tsuki Sekai no Akumu PCBP = Dead Moon PCCJ = Makai Hakkenden Shada PCDJ = Appare! Gateball PCEE = Power Golf PCEJ = Power Golf PCEP = Power Golf PCHE = Drop Off PCHJ = Drop Rock Hora Hora PCHP = Drop Off PCJJ = Override PCKJ = Gai Flame PCMJ = Mr. Heli no Daibouken PCNJ = Winning Shot PCOE = Psychosis PCOJ = Paranoia PCOP = Psychosis PCPJ = Power Eleven PCQJ = Psycho Chaser PCRJ = Break In PCRL = Break In PCRN = Break In PCSJ = Digital Champ: Battle Boxing PCSJ = Digital Champ: Battle Boxing PCSJ01 = Pokemon Colosseum Bonus Disc PCSL = Digital Champ : Battle Boxing PCSN = Digital Champ Battle Boxing PCTJ = Power Tennis PCUJ = Fire ProWrestling 2nd Bout PCVE = World Class Baseball PCVP = World Class Baseball PCWJ = Image Fight PCXJ = Power League IV PCYJ = Wallaby!! Usagi no Kuni no Kangaroo Race PDCJ = Dai Makaimura PDDJ = Volfied PDEJ = S.C.I.: Special Criminal Investigation PDFJ = Jigoku Meguri PDGJ = Fire ProWrestling 3: Legend Bout PDHJ = Rastan Saga II PDIE = Champion Wrestler PDJJ = Street Fighter II': Champion Edition PDJL = Street Fighter II' : Champion Edition PDJN = Street Fighter II: Champion Edition PDUE01 = 自制 另一个超级马里奥兄弟Wii(美) PKBJ01 = The Tower of Druaga PLUS = WiiMC+ PM4E01 = Mario Kart: Double Dash!! Bonus Disc PMNEO1 = 自制 新旧超级马里奥兄弟Wii(美) POPPSI = 自制 唱吧 下载版(欧) PPNE01 = 自制 新超级马里奥兄弟Wii 2 下一阶段(美) PPNP01 = 自制 新超级马里奥兄弟Wii 2 下一阶段(欧) PRJE01 = Pac-Man vs. PRJJ01 = Pac-Man vs. PRJP01 = Pac-Man vs. PROE01 = New Super Mario Bros. Wii 14 Project Mario PT1PSI = 自制 唱吧 Portugal Hits(欧) PT2PSI = SingIt Portugal Hits Summer Party PT3PSI = Sing IT Portugal Hits - Morangos com Açucar PUTA01 = 自制 吉他英雄3 摇滚精选(?) PWNP69 = Pwned Super Mario Bros. Wii PXWE = Project X: Love Potion Disaster PZLE01 = The Legend of Zelda: Collector's Edition PZLJ01 = The Legend of Zelda: Collector's Edition PZLP01 = The Legend of Zelda: Collector's Edition QA2J = Nekketsu Koukou Dodge Ball-Bu: CD Soccer-hen QA3E = SimEarth: The Living Planet QA3J = SimEarth QA3P = SimEarth: The Living Planet QA4J = Super Darius II QA5J = Space Invaders: The Original Game QA6J = Super Darius QA7J = Legend of Xanadu: Kaze no Densetsu Xanadu QA8J = Spriggan Mark 2 QA9J = Kaze no Densetsu: Xanadu II QAAE = Super Air Zonk QAAJ = CD Denjin: Rockabilly Tengoku QAAP = Super Air Zonk QABE = Ys Book I & II QABJ = Ys I + II QABP = Ys Book I & II QACJ = Cho Aniki QACL = Cho Aniki QACN = Cho Aniki QADJ = Gradius II: Gofer no Yabou QADL = Gradius II: Gofer no Yabou QADN = Gradius II Gofer No Yabou QAEJ = A.III: A-Ressha de Ikou III QAFE = The Dynastic Hero QAFJ = Chou Eiyuu Densetsu: Dynastic Hero QAFP = The Dynastic Hero QAGE = Gate of Thunder QAGJ = Gate of Thunder QAGP = Gate of Thunder QAHJ = Kawa no Nushi Tsuni Shizenha QAJJ = Image Fight II QAKJ = Ai Chou Aniki QALJ = The Atlas: Renaissance Voyager QANJ = Neo Nectaris QAOJ = Dungeon Explorer II QAPJ = Akumajou Dracula X: Chi no Rondo QAPL = Castlevania : Rondo of Blood QAPN = Castlevania Rondo of Blood QAPP = Castlevania: Rondo of Blood QAQJ = Dragon Slayer: Eiyuu Densetsu QARJ = Blood Gear QASE = Lords of Thunder QASJ = Winds of Thunder QASP = Lords of Thunder QATE = Riot Zone QATJ = Crest of Wolf QATP = Riot Zone QAUE = Monster Lair QAUJ = Wonder Boy III: Monster Lair QAUP = Monster Lair QAVJ = Bomberman: Panic Bomber QAWJ = Star Parodier QAWL = Star Parodier QAWN = Star Parodier QAXJ = Martial Champion QAYJ = Seirei Senshi Spriggan QAZJ = Eikan wa Kimi ni: Koko Yakyu Zenkoku Taikai QBAJ = L Dis QBBE = Fighting Street QBBJ = Fighting Street QBBP = Fighting Street R01PET = 自制 唱吧 下载版(欧) R02PEA = 自制 唱吧 下载版(欧) R15POH = 自制 唱吧 Radio 105(欧) R22E01 = 弹球小精灵[MP](美) R22J01 = 弹球小精灵[MP](日) R22P01 = 弹球小精灵[MP](欧) R23E52 = 芭比与三个火枪手(美) R23P52 = 芭比与三个火枪手(欧) R24J01 = 用Wii游玩小小机器人(日) R25EWR = 乐高哈利波特 1-4 学年(美) R25PWR = 乐高哈利波特 1-4 学年(欧) R26E5G = Data East街机经典(美) R27E54 = 探险家多拉 拯救水晶王国(美) R27X54 = 探险家多拉 拯救水晶王国(X) R28E54 = 上旋高手4(美) R28P54 = 上旋高手4(欧) R29E52 = 世界彩弹锦标赛2009(美) R29P52 = 世界彩弹锦标赛2009(欧) R2AE7D = 冰河世纪2 消融(美) R2AP7D = 冰河世纪2 消融(欧) R2AX7D = 冰河世纪2 消融(X) R2DEEB = 多卡波王国(美) R2DJEP = 多卡波王国(日) R2DPAP = 多卡波王国(欧) R2DPJW = 多卡波王国(欧) R2EJ99 = 鱼之眼 Wii(日) R2FE5G = 小鱼弗雷迪 丢失的海藻种盒(美) R2FP70 = 小鱼弗雷迪 丢失的海藻种盒(欧) R2GEXJ = 废墟迷宫 再见月的废墟(美) R2GJAF = 废墟迷宫 再见月的废墟(日) R2GP99 = 废墟迷宫 再见月的废墟(欧) R2HE41 = 想象 冠军骑士(美) R2IE69 = 美式橄榄球大联盟10[WiFi](美) R2IP69 = 美式橄榄球大联盟10[WiFi](欧) R2JJAF = 太鼓达人Wii(日) R2KE54 = 唐金拳击[平衡板](美) R2KP54 = 唐金拳击[平衡板](欧) R2LJMS = 草裙舞Wii[平衡板](日) R2ME20 = 巧克力豆大冒险(美) R2NE69 = 纳斯卡卡丁车赛(美) R2OE68 = 中世纪游戏(美) R2OP68 = 中世纪游戏(欧) R2PE9B = 魔法飞球2(美) R2PJ9B = 魔法飞球2(日) R2PKZ4 = 魔法飞球2(韩) R2PP99 = 魔法高尔夫(欧) R2PP9B = 魔法高尔夫(欧) R2QJC0 = 料理妈妈2 糟糕!妈妈好忙!!(日) R2RE4F = 小马伙伴2(美) R2RP4F = 小马伙伴2(欧) R2SE18 = 德卡运动会2[WiFi](美) R2SJ18 = 德卡运动会2[WiFi](日) R2SP18 = 德卡运动会2[WiFi](欧) R2TE41 = 忍者神龟 毁灭[WiFi](美) R2TP41 = 忍者神龟 毁灭[WiFi](欧) R2UE8P = 一起来敲打(美) R2UJ8P = 一起来敲打(日) R2UP8P = 一起来敲打(欧) R2VE01 = 罪与罚 宇宙的后继者[WiFi](美) R2VJ01 = 罪与罚 宇宙的后继者[WiFi](日) R2VP01 = 罪与罚 宇宙的后继者[WiFi](欧) R2WEA4 = 实况足球2009[WiFi](美) R2WJA4 = 实况足球2009[WiFi](日) R2WPA4 = 实况足球2009[WiFi](欧) R2WXA4 = 实况足球2009[WiFi](X) R2YE54 = 我的生日(美) R2YP54 = 我的生日(欧) R32J01 = 用Wii玩银河战士Prime2 黑暗回音(日) R33E69 = 摇滚乐团 乐曲扩展包2(美) R33P69 = 摇滚乐团 乐曲扩展包2(欧) R34E69 = 摇滚乐团 乡村音乐包(美) R35JC8 = 三国志11 威力加强版(日) R36E69 = 摇滚乐队 绿日乐队(美) R36P69 = 摇滚乐队 绿日乐队(欧) R37E69 = 摇滚乐队 金属乐曲包(美) R38E78 = 超级漫画英雄战队(美) R38P78 = 超级漫画英雄战队(欧) R38X78 = 超级漫画英雄战队 沃尔玛版(X) R38Y78 = 超级漫画英雄战队(Y) R39EFP = 禧玛诺极限钓鱼(美) R39PNK = 禧玛诺极限钓鱼(欧) R3AE20 = 故事时间 冒险故事(美) R3AP20 = 故事时间 冒险故事(欧) R3AP7J = 故事时间 冒险故事(欧) R3BE8P = 快乐桑巴[WiFi](美) R3BJ8P = 快乐桑巴[WiFi](日) R3BP8P = 快乐桑巴[WiFi](欧) R3CE20 = 克莱斯勒经典赛车(美) R3CP20 = 克莱斯勒经典赛车(欧) R3CP7J = 克莱斯勒经典赛车(欧) R3DES5 = 梦幻弹球3D(美) R3DPS5 = 梦幻弹球3D(欧) R3EEWR = 游戏派对3(美) R3EPWR = 游戏派对3(欧) R3FJA4 = 实况力量棒球大联盟3(日) R3GXUG = 国际儿童 疯狂小型高尔夫[MP](X) R3HP6Z = 特工雨果 热带假期(欧) R3HX6Z = 特工雨果 热带假期(X) R3IJ01 = 用Wii玩银河战士Prime(日或中) R3JE5G = 去玩吧马戏团明星[平衡板](美) R3KP6N = 摩天大楼(欧) R3LEWR = 绿光战警 猎人的崛起(美) R3LPWR = 绿光战警 猎人的崛起(欧) R3ME01 = 银河战士三部曲(美) R3MP01 = 银河战士Prime 三部曲(欧) R3NEXS = 罪恶装备XXAC 加强版(美) R3NPH3 = 罪恶装备XXAC 加强版(欧) R3OE01 = 银河战士 另一个M(美) R3OJ01 = 银河战士 另一个M(日或中) R3OP01 = 银河战士 另一个M(欧) R3PEWR = 极速赛车手(美) R3PJ52 = 极速赛车手(日) R3PPWR = 极速赛车手(欧) R3RE8P = 索尼克与世嘉全明星赛车(美) R3RP8P = 索尼克与世嘉全明星赛车(欧) R3SE52 = 蜘蛛侠 影之网(美) R3SP52 = 蜘蛛侠 影之网(欧) R3TE54 = 上旋高手3(美) R3TJG9 = 上旋高手3(日) R3TP54 = 上旋高手3(欧) R3UJGD = 亲子游戏 米菲兔的玩具(日) R3VEFP = 麋鹿猎人(美) R3VPNK = 麋鹿猎人(欧) R3XE6U = 山姆和迈克斯第一季(美) R3XP6V = 山姆和迈克斯第一季(欧) R3YE70 = 山姆和迈克斯2 超越时空(美) R3YP70 = 山姆和迈克斯2 超越时空(欧) R3ZE69 = 摇滚乐团乐曲包 经典摇滚(美) R42E69 = 模拟人生2 生存游戏(美) R42P69 = 模拟人生2 生存游戏(欧) R43E69 = EA运动活力[平衡板](美) R43J13 = EA运动活力[平衡板](日) R43P69 = EA运动活力[平衡板](欧) R44J8P = 凉宫春日的并列(日) R46ENS = 灵武战记Wii(美) R46JKB = 灵武战记Wii(日) R47E20 = ATV沙滩车之王(美) R48E7D = 奇幻精灵事件簿(美) R48P7D = 奇幻精灵事件簿(欧) R49E01 = 大金刚 丛林敲击(美) R49J01 = 大金刚 丛林敲击(日或中) R49P01 = 大金刚 丛林敲击(欧) R4AE69 = 模拟动物(美) R4AJ13 = 模拟动物(日) R4AP69 = 模拟动物(欧) R4BEJZ = 桌面足球(美) R4BPGT = 桌面足球(欧) R4CE69 = 模拟城市 建筑大师[WiFi](美) R4CJ13 = 模拟城市 建筑大师[WiFi](日) R4CK69 = 模拟城市 建筑大师[WiFi](韩) R4CP69 = 模拟城市 建筑大师[WiFi](欧) R4DDUS = 三个问号 高校之迷(德) R4EE01 = 永恒蔚蓝2 蓝色世界[WiFi](美) R4EJ01 = 永恒蔚蓝2 海的呼唤[WiFi](日) R4EP01 = 永恒蔚蓝2 深海探险[WiFi](欧) R4FE20 = 故事时间 童话故事(美) R4FP20 = 故事时间 童话故事(欧) R4FP7J = 故事时间 童话故事(欧) R4IPNK = 疯狂玩具车(欧) R4LPUG = 田径猪派对(X) R4LXUG = 田径猪派对(X) R4MJ0Q = 使头脑变灵活Wii(日) R4NE5G = 大小调的庄严进行曲(美) R4NP5G = 大小调的庄严进行曲(欧) R4NX5G = 大小调的庄严进行曲(欧) R4PE69 = 模拟人生2 宠物(美) R4PP69 = 模拟人生2 宠物(欧) R4QE01 = 马里奥激情足球[WiFi](美) R4QJ01 = 马里奥激情足球[WiFi](日) R4QK01 = 马里奥激情足球[WiFi](韩) R4QP01 = 马里奥激情足球[WiFi](欧) R4RE69 = FIFA足球10[WiFi](美) R4RJ13 = FIFA足球10[WiFi](日) R4RK69 = FIFA足球10[WiFi](韩) R4RP69 = FIFA足球10[WiFi](欧) R4RX69 = FIFA足球10[WiFi](X) R4RY69 = FIFA足球10[WiFi](Y) R4RZ69 = 自制 FIFA足球10[WiFi](美) R4SE54 = 北美职棒超明星(美) R4VEA4 = 故事绘本工坊(美) R4VJA4 = 电视剧场Wii[WiFi](日) R4VJAF = 电视剧场Wii[WiFi](日) R4WJA4 = 实况力量棒球大联盟2009(日) R4YJ2M = 猫社长蕾娜Wii(日) R4ZE01 = 自制 零月蚀之假面(美) R4ZJ01 = 零 月蚀之假面(日) R4ZP01 = 自制 零月蚀之假面(美) R52E08 = 尼奥宠物谜题大冒险(美) R52P08 = 尼奥宠物谜题大冒险[WiFi](欧) R53PFH = 混音大师 阿曼凡布伦(欧) R54FMR = 倒数游戏(法) R55F41 = 谁想成为百万富翁(法) R55P41 = 谁想成为百万富翁(欧) R56EG9 = 铁臂阿童木(美) R56PG9 = 铁臂阿童木(欧) R57FMR = 联合答题冠军(法) R58DMR = 你来唱[麦克风](德) R58FMR = 你来唱[麦克风](法) R58PMR = 你来唱[麦克风](欧) R58SMR = 你来唱[麦克风](西) R59D4Q = 企鹅俱乐部 游戏日[WiFi](欧) R59E4Q = 企鹅俱乐部 游戏日[WiFi](美) R59P4Q = 企鹅俱乐部 游戏日[WiFi](欧) R5AE8P = 黄金罗盘(美) R5AP8P = 黄金罗盘(欧) R5AX8P = 黄金罗盘(X) R5DE5G = 翻转的扭曲世界(美) R5EPMR = 倒计时(欧) R5FE41 = 冠军学院 足球[MP][平衡板](美) R5FP41 = 冠军学院 足球[MP][平衡板](欧) R5GE78 = 你比五年级生聪明吗(美) R5IE4Q = 玩具总动员(美) R5IP4Q = 玩具总动员(欧) R5IR4Q = Toy Story Mania! R5IX4Q = 玩具总动员(X) R5JES5 = 海盗VS忍者 躲避球(美) R5JPS5 = 海盗VS忍者 躲避球(欧) R5MJAF = 语言解谜 文字拼词Wii豪华版(日) R5NJN9 = 多阿拉Wii(日) R5OENR = 田径猪派对(美) R5OXUG = 田径猪派对(X) R5PE69 = 哈利波特与凤凰社(美) R5PJ13 = 哈利波特与凤凰社(日) R5PP69 = 哈利波特与凤凰社(欧) R5PX69 = 哈利波特与凤凰社(X) R5QPGT = 马戏团游戏(欧) R5SERW = 幽灵庄园的秘密(美) R5TE69 = 大满贯网球[MP][WiFi](美) R5TJ13 = 大满贯网球[MP][WiFi](日) R5TP69 = 大满贯网球[MP][WiFi](欧) R5UE41 = 犯罪现场调查 致命意图(美) R5UP41 = CSI犯罪现场 致命意图(欧) R5VE41 = 阿凡达[MP][平衡板](美) R5VP41 = 阿凡达[MP][平衡板](欧) R5VX41 = 阿凡达[MP][平衡板](X) R5WEA4 = 寂静岭 破碎的记忆(美) R5WJA4 = 寂静岭 破碎的记忆(日) R5XJ13 = 我的模拟人生 特工(日) R5XP69 = 我的模拟人生 特工(欧) R5YD78 = 全明星啦啦队[平衡板](德) R5YE78 = 全明星啦啦队2[平衡板](美) R5YP78 = 全明星啦啦队2[平衡板](欧) R62E4Q = 迪士尼 想唱就唱 流行节奏(美) R62P4Q = 迪士尼 想唱就唱 流行节奏(欧) R63EG9 = 家庭聚会 30款有趣的户外游戏(美) R63PG9 = 家庭聚会 30款有趣的户外游戏(欧) R64E01 = Wii音乐[平衡板][WiFi](美) R64J01 = Wii音乐[平衡板][WiFi](日) R64K01 = Wii音乐[平衡板][WiFi](韩) R64P01 = Wii音乐[平衡板][WiFi](欧) R65ENR = 猎鹿狂(美) R66E41 = 按你的运气 2010版(美) R67E6K = 聪明系列出品 佳佳的冒险(美) R68E5G = 去玩吧 城市运动[平衡板](美) R69E36 = 尘埃2(美) R69P36 = 尘埃2(欧) R6APPU = 宝贝和我[平衡板](欧) R6BE78 = 颜料宝贝(美) R6BJ78 = 颜料宝贝(日) R6BK78 = 颜料宝贝(韩) R6BP78 = 颜料宝贝(欧) R6BX78 = 颜料宝贝(X) R6CEAF = 大家的啦啦队2(美) R6CJAF = 我们的啦啦队 热舞灵魂!(日) R6DFJW = 警告 公路规则(法) R6EE41 = 家庭智力抢答 2010版(美) R6FE41 = 六旗主题乐园(美) R6FERS = 六旗主题乐园(美) R6FP41 = 欢乐园聚会(欧) R6GPMR = 黄金球(欧) R6HE54 = 你好,开兰 超级游戏日(美) R6HP54 = 你好,开兰 超级游戏日(欧) R6IE54 = 棒球冲击波[MP](美) R6JJGD = 钢之炼金术师 晓之王子(日) R6KP36 = 灰烬杯板球赛2009(欧) R6KU36 = 灰烬杯板球赛2009(英) R6LEWR = 乐高摇滚乐团(美) R6LPWR = 乐高摇滚乐团(欧) R6ME5Z = 全美超模大赛(美) R6MPML = 全美超模大赛(欧) R6MXMR = Top Model R6NE41 = 肖恩怀特滑雪 世界舞台[MP][平衡板](美) R6NP41 = 肖恩怀特滑雪 世界舞台[MP][平衡板](欧) R6NY41 = 肖恩怀特滑雪 世界舞台[MP][平衡板](Y) R6OE78 = 汽车总动员 奥拉玛大奖赛(美) R6OP78 = 汽车总动员 奥拉玛大奖赛(欧) R6OX78 = 汽车总动员 奥拉玛大奖赛(X) R6QE69 = 我的模拟人生 特工(美) R6REJH = 赛道狂飙 建设赛(美) R6RPHH = 赛道狂飙(欧) R6TEA4 = 龙卷风爆发(美) R6TPA4 = 龙卷风爆发(欧) R6VE4Z = 俱乐部之王(美) R6VPGN = 俱乐部之王(欧) R6WE68 = AMF保龄球世界(美) R6WP68 = AMF保龄球世界(欧) R6XE69 = 孩之宝 家庭游戏之夜2(美) R6XP69 = 孩之宝 家庭游戏之夜2(欧) R6YEXS = 橡皮球聚会(美) R6YPH3 = 橡皮球聚会(欧) R72E5G = 蛋糕工坊 混合(美) R72P5G = 蛋糕工坊 混合[WiFi](欧) R74E20 = 商场射击馆(美) R75E20 = 梦幻沙龙(美) R76E54 = NBA 2010[WiFi](美) R76P54 = NBA 2010[WiFi](欧) R77JAF = SD高达G世代:世纪战役(日) R79JAF = 机动战士高达 MS战线0079(日) R7AE69 = 模拟动物 非洲(美) R7AJ13 = 模拟动物 非洲(日) R7AP69 = 模拟动物 非洲(欧) R7BE20 = 吉利贝利 弹道豆(美) R7BP7J = 吉利贝利 弹道豆(欧) R7CJ01 = 彩虹队长(日) R7EE8P = 梦精灵 星降夜物语[WiFi](美) R7EJ8P = 梦精灵 星降夜物语[WiFi](日) R7EP8P = 梦精灵 星降夜物语[WiFi](欧) R7FEGD = 陆行鸟 忘却时间的迷宫[WiFi](美) R7FJGD = 陆行鸟 忘却时间的迷宫[WiFi](日) R7FPGD = 陆行鸟 忘却时间的迷宫[WiFi](欧) R7GEAF = 龙珠 天下第一大冒险(美) R7GJAF = 龙珠 天下第一大冒险(日) R7GPAF = 龙珠 天下第一大冒险(欧) R7HE6K = 救兵总动员(美) R7IE69 = 魅力女孩俱乐部[平衡板](美) R7IP69 = 魅力女孩俱乐部 睡衣派对[平衡板](欧) R7KE6K = 岩石疾风(美) R7LP7J = 玛格的困惑!(欧) R7MXFR = 音乐派对 轰动全场(欧) R7NE20 = 酷圣石 冰激凌来一勺(美) R7OE54 = 北美冰球联盟2010[MP][WiFi](美) R7OP54 = 北美冰球联盟2010[MP][WiFi](欧) R7PE01 = 拳王争霸[平衡板](美) R7PJ01 = 拳王争霸[平衡板](日) R7PP01 = 拳王争霸[平衡板](欧) R7QE52 = 混沌影子武士(美) R7RE52 = 小联盟世界锦标赛2009(美) R7SE5G = 逃出博物馆(美) R7SP5G = 逃出博物馆(欧) R7TFJW = 法式滚球(法) R7VEWR = 度假岛 海滩派对[平衡板](美) R7VPWR = 度假岛 海滩派对[平衡板](欧) R7WE52 = 雪山运动[平衡板](美) R7WP52 = 雪山运动[平衡板](欧) R7XE69 = 极品飞车 氮气(美) R7XJ13 = 极品飞车 氮气(日) R7XP69 = 极品飞车 氮气(欧) R7YFMR = 北京快车(法) R7ZE41 = 团体淘汰赛[平衡板](美) R7ZP41 = 淘汰派对[平衡板](欧) R82E52 = 动物星球 兽医(美) R82JG0 = 飞标Wii DX(日) R82P52 = 动物星球 兽医(欧) R83EA4 = 流行音乐(美) R83JA4 = 流行音乐Wii(日) R83PA4 = 流行音乐(欧) R84EE9 = 牧场物语Wii 安稳之树(美) R84J99 = 牧场物语 安稳之树(日) R84P99 = 牧场物语 济世之树(欧) R85EG9 = 秘密星期六 第五太阳之兽(美) R85PG9 = 秘密星期六 第五日之兽(欧) R86E20 = 梦之舞蹈啦啦队[平衡板](美) R87EVN = 斯基度雪地车挑战赛(美) R88J2L = 面包超人 热烈派对(日) R89JEL = 东京友好乐园2(日) R8AE01 = 口袋妖怪乐园 皮卡丘大冒险(美) R8AJ01 = 口袋妖怪乐园 皮卡丘大冒险(日) R8AP01 = 口袋乐园 皮卡丘历险记(欧) R8BE41 = 保姆派对[平衡板](美) R8BP41 = 保姆派对[平衡板](欧) R8DEA4 = 游戏王5D's 决斗狂热者[WiFi](美) R8DJA4 = 游戏王5D's︰决斗狂热者(日) R8DPA4 = 游戏王5D's 决斗狂热者[WiFi](欧) R8EJQC = 异星寻奇(日) R8FES5 = 快餐危机(美) R8FJHA = 匠餐厅大繁盛!(日或中) R8FJSC = 匠餐厅大繁盛! 简体中文版 R8FPNP = 快餐狂(欧) R8GJC8 = GI骑师联盟2008[平衡板][WiFi](日) R8GPC8 = GI骑师联盟2008[平衡板][WiFi](欧) R8HE4Q = 汉娜 蒙塔娜 电影版(美) R8HP4Q = 汉娜 蒙塔娜 电影版(欧) R8HX4Q = 汉娜 蒙塔娜 电影版(X) R8HY4Q = 汉娜 蒙塔娜 电影版(Y) R8IE78 = 海绵宝宝 诚实还是正直[MP](美) R8IP78 = 海绵宝宝 诚实还是正直[MP](欧) R8IS78 = 海绵宝宝 诚实还是正直[MP](欧) R8JEWR = 指环王 阿拉贡的冒险(美) R8JPWR = 指环王 阿拉贡的冒险(欧) R8KPKM = 街头足球 尼科拉斯阿内尔卡(欧) R8LE20 = 爆裂小鸡猎杀者(美) R8LP7J = 爆裂小鸡猎杀者(欧) R8NEA4 = 专业击球练习场[MP](美) R8NJG0 = 日本棒球机构承认 击球革命[MP](日) R8OE54 = 玲玲马戏团[平衡板](美) R8OX54 = 我的马戏团(X) R8PC01 = 超级纸片马里奥(简) R8PE01 = 超级纸片马里奥(美) R8PJ01 = 超级纸片马里奥(日) R8PK01 = 超级纸片马里奥(韩) R8PP01 = 超级纸片马里奥(欧) R8QPRT = 疯狂问答(欧) R8RP41 = 亚瑟与他的迷你王国2[平衡板](欧) R8SE41 = 假日体育(美) R8SP41 = 假日体育(欧) R8SX41 = 假日体育(X) R8TENR = 台球巡回赛(美) R8UXMR = 阿迪波冒险记(X) R8VE41 = 拯救地球 野生动物兽医(美) R8VP41 = 拯救地球 野生动物兽医(欧) R8XE52 = 侏罗纪 猎物(美) R8XZ52 = 顶级射手 恐龙猎人(美) R8YE52 = 卡贝拉猎人2010(美) R8ZE8P = 大师教你普拉提[平衡板](美) R8ZPGT = 大师教你普拉提[平衡板](欧) R92E01 = 皮克敏2 R92J01 = 用Wii玩皮克敏2(日) R92P01 = 用Wii玩皮克敏2(欧) R94PMR = 终极红球挑战赛(欧) R94XMR = 终极红球挑战赛(X) R96EAF = 风之克罗诺亚 幻影之门(美) R96JAF = 风之克罗诺亚 幻影之门(日或中) R96KAF = 风之克罗诺亚 幻影之门(韩) R96PAF = 风之克罗诺亚 幻影之门(欧) R97E9B = 家庭欢乐橄榄球(美) R9AE52 = 动作游戏试玩包(美) R9BPMT = 鲍勃工程队 欢乐节庆(欧) R9CPMR = 我是明星 快放我走[平衡板](欧) R9DE78 = 描绘生命 下一章(美) R9DP78 = 描绘生命 下一章(欧) R9EPNP = 修理派对(欧) R9FE36 = 一级方程式赛车2009(美) R9FJ36 = 一级方程式赛车2009(日) R9FP36 = 一级方程式赛车2009(欧) R9GEWR = 猫头鹰家族守卫者(美) R9GPWR = 猫头鹰家族守卫者(欧) R9HE78 = 你比五年级生聪明吗?(美) R9IE01 = 用Wii玩皮克敏(美) R9IJ01 = 用Wii玩皮克敏(日) R9IK01 = 用Wii玩皮克敏(韩) R9IP01 = 用Wii玩皮克敏(欧) R9JE69 = 甲壳虫 摇滚乐团[WiFi](美) R9JP69 = 甲壳虫 摇滚乐团[WiFi](欧) R9KE20 = 律动方块(美) R9LE41 = 女孩生活 通宵派对[平衡板](美) R9LP41 = 女孩生活 通宵派对[平衡板](欧) R9ME5Z = 夏季运动会2009[平衡板](美) R9MPFR = 夏季运动会2009[平衡板](欧) R9NPMR = 家族财富(欧) R9OE69 = 泰格伍兹高尔夫巡回赛10[MP][WiFi](美) R9OK69 = 泰格伍兹高尔夫巡回赛10[MP][WiFi](韩) R9OP69 = 泰格伍兹高尔夫巡回赛10[MP][WiFi](欧) R9QPNG = 舞会俱乐部精选(欧) R9RPNG = 舞蹈派对 流行精选[跳舞毯](欧) R9SPPL = 球形数独 侦探(欧) R9TE69 = 泰格伍兹高尔夫巡回赛09[WiFi](美) R9TJ13 = 泰格伍兹高尔夫巡回赛09(日) R9TK69 = 泰格伍兹高尔夫巡回赛09[WiFi](韩) R9TP69 = 泰格伍兹高尔夫巡回赛09[WiFi](欧) R9UE52 = 熊熊工坊 友谊谷(美) R9UPGY = 熊熊工作室 友谊谷(欧) R9VE52 = 坎贝拉野外冒险2010(美) R9WPSP = WSC真实09世界斯诺克大奖赛(欧) R9XE52 = 街机地带(美) R9XP52 = 街机地带(欧) R9YES5 = 撕裂雪橇(美) R9ZE54 = 职业棒球大联盟2K9(美) RABAZZ = Wii菜单卸载 RADP01 = New Super Mario Bros. Wii 0-6 Radiance RB2E6K = 气球泡泡(美) RB2J2K = 气球泡泡(日或中) RB2P6K = 气球泡泡(欧) RB2PGT = 气球泡泡(欧) RB4E08 = 生化危机4(美) RB4J08 = 生化危机4(日) RB4P08 = 生化危机4(欧) RB4X08 = 生化危机4(X) RB5E41 = 战火兄弟连 双重时间(美) RB5P41 = 战火兄弟连 双重时间(欧) RB6J18 = 炸弹人[WiFi](日) RB7E54 = 恶霸鲁尼 学院风云(美) RB7P54 = 恶霸鲁尼 学院风云(欧) RB8E70 = 后院棒球09(美) RB9D78 = 布拉兹娃娃电影版(德) RB9E78 = 布拉兹娃娃电影版(美) RB9P78 = 布拉兹娃娃电影版(欧) RB9X78 = 布拉兹娃娃电影版(欧) RB9Y78 = 布拉兹娃娃电影版(欧) RBAE41 = 炽天使 二战空骑兵(美) RBAP41 = 炽天使 二战空骑兵(欧) RBBE18 = 炸弹人乐园(美) RBBJ18 = 炸弹人乐园(日) RBBP99 = 炸弹人乐园(欧) RBCP41 = 电视迷(欧) RBEE52 = 蜜蜂总动员(美) RBEP52 = 蜜蜂总动员(欧) RBEX52 = 蜜蜂总动员(X) RBFE20 = 乒乓特种兵(美) RBFP20 = 乒乓特种兵(欧) RBFP7J = 乒乓特种兵(欧) RBGE54 = 大棒球联盟(美) RBGP54 = 职业棒球联赛(欧) RBHE08 = 生化危机0(美) RBHJ08 = 生化危机0(日) RBHP08 = 生化危机0(欧) RBIEE9 = 牧场物语 欢乐动物进行曲[WiFi](美) RBIJ99 = 牧场物语 欢乐动物进行曲[WiFi](日) RBIP99 = 牧场物语 欢乐动物进行曲[WiFi](欧) RBKE69 = 轰炸方块[WiFi](美) RBKJ13 = 轰炸方块(日) RBKK69 = 轰炸方块[WiFi](韩) RBKP69 = 轰炸方块[WiFi](欧) RBLE8P = 死神 白刃闪耀圆舞曲(美) RBLJ8P = 死神 白刃闪耀圆舞曲(日) RBLP8P = 死神 白刃闪耀圆舞曲(欧) RBME5G = 泡泡龙(美) RBMPGT = 泡泡龙(欧) RBNEG9 = Ben 10 守护地球(美) RBNPG9 = Ben 10 守护地球(欧) RBNXG9 = Ben 10 守护地球(X) RBOE69 = 布吉摇摆(美) RBOP69 = 布吉摇摆(欧) RBPE4Z = 布朗斯威克 职业保龄球赛(美) RBPP4Z = 布朗斯威克 职业保龄球赛(欧) RBPPGT = 布朗斯威克 职业保龄球赛(欧) RBQENR = 经典英式赛车(美) RBQPUG = 经典英式赛车(欧) RBRE5G = 轰炸使命[WiFi](美) RBRP5G = 轰炸使命[WiFi](欧) RBRX5G = 轰炸作业 建造 融化 摧毁(欧) RBSJ08 = 战国 BASARA 2 英雄外传A(日) RBSJ09 = 战国 BASARA 2 英雄外传B(日) RBTE8P = 钓鱼高手(美) RBTJ8P = 钓鱼高手(日) RBTP8P = 钓鱼高手(欧) RBUE08 = 生化危机 安布雷拉历代记(美或中) RBUJ08 = 生化危机 安布雷拉历代记(日) RBUK08 = 生化危机 安布雷拉历代记(韩) RBUP08 = 生化危机 安布雷拉历代记(欧) RBVE52 = 芭比 森林公主(美) RBVP52 = 芭比 森林公主(欧) RBWE01 = 军队战争2[WiFi](美) RBWJ01 = 军队战争2[WiFi](日) RBWP01 = 军队战争2[WiFi](欧) RBXJ8P = 死神 对决十刃[WiFi](日) RBYE78 = 疯狂农庄(美) RBYJ78 = 疯狂农庄(日) RBYP78 = 疯狂农庄(欧) RBZE5Z = 巫师比利 火箭扫帚大竞速(美) RBZP5Z = 巫师比利 火箭扫帚大竞速(欧) RBZPUG = 巫师比利 火箭扫帚大竞速(欧) RBZXUG = 巫师比利 火箭扫帚大竞速(X) RC2E78 = 汽车总动员 全国汽车大赛(美) RC2P78 = 汽车总动员 全国汽车大赛(欧) RC2X78 = 汽车总动员 全国汽车大赛(X) RC2Y78 = 汽车总动员 全国汽车大赛(Y) RC3E41 = 模拟宠物猫2(美) RC3J41 = 模拟宠物猫2(日) RC3P41 = 模拟宠物猫2(欧) RC3X41 = 模拟宠物猫2(X) RC4JD9 = 蜡笔小新 最强家族春日部之王(日) RC4SGT = 蜡笔小新 最强家族春日部之王(西) RC5JDQ = 扫除战队(日) RC7E20 = 与海怪同行 史前探险(美) RC7P7J = 与海怪同行 史前探险(欧) RC8E7D = 古惑狼 变异心灵(美) RC8P7D = 古惑狼 变异心灵(欧) RC8X7D = 古惑狼 变异心灵(X) RC9PGN = 人偶CID(欧) RCAE78 = 汽车总动员(美) RCAJ78 = 汽车总动员(日) RCAP78 = 汽车总动员(欧) RCAX78 = 汽车总动员(X) RCAY78 = 汽车总动员(Y) RCBE52 = 坎贝拉猎人(美) RCBP52 = 坎贝拉猎人(欧) RCCE5G = 料理妈妈(美) RCCJC0 = 料理妈妈(日) RCCPGT = 料理妈妈(欧) RCCR78 = 自制 吉他英雄3 Coheed与Cambria(欧) RCDD52 = 使命召唤3(德) RCDE52 = 使命召唤3(美) RCDP52 = 使命召唤3(欧) RCDX52 = 使命召唤3(X) RCEE5Z = 迷你模型赛车(美) RCEPUG = 迷你模型赛车(欧) RCEXUG = 迷你模型赛车(X) RCFE41 = 宇宙家庭(美) RCFP41 = 宇宙家庭(欧) RCGE54 = 嘉年华游戏(美) RCGP54 = 嘉年华游戏(欧) RCHC52 = Guitar Hero III Custom : Guitar Hero II RCHEAF = 大家的啦啦队(美) RCHJAF = 大家的啦啦队(日) RCHPAF = 大家的啦啦队(欧) RCHPGT = 大家的啦啦队(欧) RCIE41 = 犯罪现场调查 铁证如山(美) RCIP41 = 犯罪现场调查 铁证如山(欧) RCJE8P = 管道[WiFi](美) RCJP8P = 管道[WiFi](欧) RCKPGN = 阿伦·汉森的运动挑战(欧) RCLE4Q = 四眼天鸡之动作天王(美) RCLP4Q = 四眼天鸡之动作天王(欧) RCOC99 = 名侦探柯南 追忆的幻想(ACG汉化简体中文版) RCOJ99 = 名侦探柯南 追忆的幻想(日) RCOK99 = Detective Conan: Case Closed: The Mirapolis Investigation RCOKZF = 名侦探柯南 追忆的幻想(韩) RCOPNP = 名侦探柯南 追忆的幻想(欧) RCPE18 = 穿越迷路(美) RCPJ18 = 穿越迷路(日) RCPP18 = 穿越迷路(欧) RCQEDA = Q版赛车 Wii(美) RCQJDA = Q版赛车 Wii(日) RCRE5D = 劲速狂飙(美) RCRP5D = 劲速狂飙(欧) RCSE20 = 射鸡英雄传(美) RCSP20 = 射鸡英雄传(欧) RCSP7J = 射鸡英雄传(欧) RCTE5Z = 反击力量(美) RCTP5Z = 反击力量(欧) RCTPGT = 反击力量(欧) RCUE52 = 卡贝拉传奇冒险(美) RCUP52 = 卡贝拉传奇冒险(欧) RCVE41 = 孤岛惊魂 复仇(美) RCVP41 = 孤岛惊魂 复仇(欧) RCXE78 = 全明星拉拉队[平衡板](美) RCXP78 = 全明星拉拉队[平衡板](欧) RCXX78 = 全明星拉拉队[平衡板](欧) RCYPGN = 切格的聚会迷题(欧) RD2E41 = 赤铁2[MP](美) RD2J41 = 赤铁2[MP](日) RD2K41 = 赤铁2[MP](韩) RD2P41 = 赤铁2[MP](欧) RD2X41 = 赤铁2[MP](X) RD4EA4 = 劲舞革命 劲爆舞会 2[跳舞毯](美) RD4JA4 = 劲舞革命 劲爆舞会2[跳舞毯](日) RD4PA4 = 劲舞革命 劲爆舞会2[跳舞毯](欧) RD6EE9 = 动物王国 野生动物探索(美) RD6J8N = 动物奇想天外!在谜之乐园摄影(日) RD6PNP = 动物奇想天外!在谜之乐园摄影(欧) RD8E52 = 与星共舞[跳舞毯](美) RD9J18 = 解谜系列Vol.1 数独(日) RDAE52 = 与星共舞 一起跳[跳舞毯](美) RDBE70 = 龙珠Z 电光火石 2(美) RDBJAF = 龙珠Z 电光火石(日) RDBP70 = 龙珠Z 电光火石 2(欧) RDBPAF = 龙珠Z 电光火石 2(欧) RDCE78 = 致命生物(美) RDCP78 = 致命生物(欧) RDDEA4 = 热舞革命 劲爆舞会[跳舞毯](美) RDDJA4 = 热舞革命 劲爆舞会[跳舞毯](日) RDDPA4 = 热舞革命 劲爆舞会[跳舞毯](欧) RDEJ0A = 全日本货柜车祭典(日) RDFE41 = 肖恩怀特滑雪板[平衡板](美) RDFP41 = 肖恩怀特滑雪板[平衡板](欧) RDGEA4 = 恶魔城 审判[WiFi](美) RDGJA4 = 恶魔城 审判[WiFi](日) RDGPA4 = 恶魔城 审判[WiFi](欧) RDHE78 = 毁灭全人类 解放威廉(美) RDHP78 = 毁灭全人类 解放威廉(欧) RDIE41 = 宠物狗乐园(美) RDIJG2 = 宠物狗乐园(日) RDIP41 = 宠物狗乐园(欧) RDJE4F = 小死神 邪恶的根源(美) RDJP4F = 小死神 邪恶的根源(欧) RDKE01 = 大金刚 木桶喷射(美) RDKJ01 = 大金刚 木桶喷射(日) RDKP01 = 大金刚 木桶喷射(欧) RDLE5G = 狐狸侦探智救人质(美) RDLP70 = 狐狸侦探智救人质(欧) RDME6K = 米侬向前冲(美) RDMJ8N = 米侬向前冲(日) RDMPHZ = 每日英雄 米侬(欧) RDNEA4 = 劲舞革命 开心迪士尼[跳舞毯](美) RDOE41 = 模拟宠物狗2(美) RDOJ41 = 模拟宠物狗2(日) RDOP41 = 模拟宠物狗2(欧) RDOX41 = 模拟宠物狗2(X) RDPE54 = 探险家多拉 拯救雪公主(美) RDPP54 = 探险家多拉 拯救雪公主(欧) RDPX54 = 探险家多拉 拯救雪公主(X) RDQEGD = 勇者斗恶龙 假面女王(美) RDQJGD = 勇者斗恶龙 假面女王(日) RDQPGD = 勇者斗恶龙 假面女王(欧) RDREA4 = 水精迪依大冒险(美) RDRJA4 = 水精迪依大冒险(日) RDRPA4 = 水精迪依大冒险(欧) RDSE70 = 龙珠Z 电光火石 3[WiFi](美) RDSJAF = 龙珠Z 电光火石 3[WiFi](日) RDSPAF = 龙珠Z 电光火石 3[WiFi](欧) RDSZ70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino RDTEAF = 电子鸡宠物店(美) RDTJAF = 电子鸡宠物店(日) RDTPAF = 电子鸡宠物店(欧) RDUE01 = 自制 DU超级马里奥兄弟 寻找公主(美) RDUJDQ = 陆官编年史左手骰子右手剑[WiFi](日) RDVE41 = 横冲直撞之平行线(美) RDVP41 = 横冲直撞之平行线(欧) RDWEG9 = 龙刃 怒火燃烧(美) RDWJG9 = 龙刃 怒火燃烧(日) RDWPG9 = 龙刃 怒火燃烧(欧) RDXE18 = 十项全能(美) RDXJ18 = 德卡运动会(日) RDXKA4 = 德卡运动会(韩) RDXP18 = 德卡运动会(欧) RDYEGN = 人偶CID(美) RDZJ01 = 天灾 危机之日(日或中) RDZP01 = 天灾 危机之日(欧) RE3ENR = 空战高手 二战英雄(美) RE4E08 = 生化危机 复刻版(美) RE4J08 = 生化危机(日) RE4P08 = 生化危机(欧) RE5PAF = 大胃王(欧) RE6PRT = 夏季田径邀请赛的挑战(欧) RE7PNK = 狩猎挑战(欧) RE8J99 = 家庭教师 禁断的暗之三角[WiFi](日) REAE69 = 名人体育(美) REAF69 = 名人体育(法) REAP69 = 名人体育(欧) REBE4Z = 憨豆先生的古怪世界(欧) REBPMT = 憨豆先生的古怪世界(欧) RECE6K = 间谍游戏 电梯任务(美) RECP6K = 间谍游戏 电梯任务(欧) REDE41 = 赤色钢铁(美) REDJ41 = 赤铁(日) REDP41 = 赤铁(欧) REFP41 = 我的法语教练(欧) REGE36 = 紧急出动(美) REGP36 = 紧急出动(欧) REHE41 = 紧急英雄(美) REHP41 = 紧急英雄(欧) REJEAF = 活力生活 极限挑战(美) REJJAF = 家庭教练2[跳舞毯](日) REJPAF = 活力生活 极限挑战[跳舞毯](欧) REKE41 = 金牌吉姆卡迪欧塑身[平衡板](美) REKJ2N = 有氧拳击 Wii快乐瘦身[平衡板](日或中) REKP41 = 金牌吉姆卡迪欧塑身[平衡板](欧) REKU41 = 金牌吉姆卡迪欧塑身[平衡板](英) RELEA4 = 能源小精灵(美) RELJA4 = 能源小精灵(日) RELKA4 = 能源小精灵(韩) RELPA4 = 能源小精灵(欧) RELSAB = Sonic Adventure DX: Director's Cut (Preview Prototype) REMJ8P = 哆啦A梦Wii 秘密道具王决定战!(日) RENE8P = 索尼克与黑暗骑士[WiFi](美) RENJ8P = 索尼克与黑暗骑士[WiFi](日) RENP8P = 索尼克与黑暗骑士[WiFi](欧) REQE54 = 迪亚哥 徒步旅行救助队(美) REQP54 = 迪亚哥 徒步旅行救助队(欧) REQX54 = 迪亚哥 徒步旅行救助队(欧) REQY54 = 迪亚哥 徒步旅行救助队(欧) RESP41 = 我的西班牙语教练(欧) RETJAF = 庙会达人(日) REUPNK = 我的形体教练(欧) REVJ8P = 忌火起草 解明篇(日) REVJBP = 忌火起草 解明篇(日) REWFMR = 我的马匹俱乐部(法) REWXMR = 我的马匹俱乐部(X) REWYMR = 我的马匹俱乐部(Y) REXE01 = 疯狂卡车(美) REXJ01 = 疯狂卡车(日) REXP01 = 疯狂卡车(欧) REYE4Q = 迪士尼 想唱就唱 歌舞青春3 毕业季(美) REYP4Q = 迪士尼 想唱就唱 歌舞青春3 毕业季(欧) REYX4Q = Disney Sing It: High School Musical 3 REZEJJ = 西洋棋高手(美) REZPKM = 西洋棋高手(欧) RF2E54 = 神奇四侠 神奇四侠与银影侠(美) RF2P54 = 神奇四侠 神奇四侠与银影侠(欧) RF3E52 = 法拉利挑战赛(美) RF3P6M = 法拉利挑战赛(欧) RF4E36 = 超级水果瀑布(美) RF4P6M = 超级水果瀑布(欧) RF7J08 = 龙之子对卡普空(日) RF8E69 = FIFA足球08[WiFi](美) RF8J13 = FIFA足球08[WiFi](日) RF8K69 = FIFA足球08[WiFi](韩) RF8P69 = FIFA足球08[WiFi](欧) RF8X69 = FIFA足球08[WiFi](X) RF8Y69 = FIFA足球08[WiFi](Y) RF9E69 = FIFA足球09[WiFi](美) RF9J13 = FIFA足球09[WiFi](日) RF9K69 = FIFA足球09[WiFi](韩) RF9P69 = FIFA足球09[WiFi](欧) RF9X69 = FIFA足球09[WiFi](X) RF9Y69 = FIFA足球09[WiFi](Y) RFAEAF = 生命运动 户外挑战[跳舞毯](美) RFAJAF = 家庭教练 体育世界(日) RFAPAF = 家庭教练[跳舞毯](欧) RFBE01 = 永恒蔚蓝[WiFi](美) RFBJ01 = 永恒蔚蓝[WiFi](日) RFBP01 = 永恒蔚蓝[WiFi](欧) RFCEGD = 最终幻想水晶编年史 水晶守护者(美) RFCJGD = 最终幻想水晶编年史 水晶守护者(日) RFCPGD = 最终幻想水晶编年史 水晶守护者(欧) RFEE01 = 火炎纹章 晓之女神(美) RFEJ01 = 火炎纹章 晓之女神(日或中) RFEP01 = 火炎纹章 晓之女神(欧) RFFEGD = 水晶编年史 时之回声[WiFi](美) RFFJGD = 水晶编年史 时之回声[WiFi](日) RFFPGD = 水晶编年史 时之回声[WiFi](欧) RFJJAF = 家庭赛马(日) RFKE41 = 我的健康教练(美) RFKJ41 = 我的健康教练(日) RFKP41 = 我的健康教练(欧) RFKX41 = 我的健康教练(X) RFLE69 = 美式橄榄球大联盟09[WiFi](美) RFLP69 = 美式橄榄球大联盟09[WiFi](欧) RFLPWK = 美式橄榄球大联盟09[WiFi](欧) RFMJAF = 职棒家庭棒球场[WiFi](日) RFNE01 = Wii健身[平衡板](美) RFNJ01 = Wii健身[平衡板](日) RFNK01 = Wii健身[平衡板](韩) RFNP01 = Wii健身[平衡板](欧) RFNW01 = Wii健身[平衡板] RFOE52 = 蜘蛛侠 敌友难辨(美) RFOP52 = 蜘蛛侠 敌友难辨(欧) RFOX52 = 蜘蛛侠 敌友难辨(X) RFPE01 = Wii健身加强版[平衡板](美) RFPJ01 = Wii健身 加强版[平衡板](日) RFPK01 = Wii健身加强版[平衡板](韩) RFPP01 = Wii健身加强版[平衡板](欧) RFPR01 = Wii健身加强版[平衡板](俄) RFPW01 = Wii健身加强版[平衡板] RFQE69 = 破相拳击(美) RFQJ13 = 破相拳击(日) RFQJ69 = 破相拳击(日) RFQK69 = 破相拳击(韩) RFQP69 = 破相拳击(欧) RFRE5G = 摇摆回转公园(美) RFRJC0 = 摇摆回转公园(日) RFSEEB = 风来之西林3(美) RFSJ8P = 风来之西林3 机关屋沉睡公主(日) RFTE70 = 后院橄榄球(美) RFTP70 = 后院橄榄球(欧) RFUJA4 = 麻将格斗俱乐部 Wii Wi-Fi 对应 (日) RFVE52 = 淘气小猴 聚会时间(美) RFVP52 = 淘气小猴 聚会时间(欧) RFWE5Z = 野外探险 非洲(美) RFWPNK = 非洲徒步大冒险(欧) RFYFMR = 博涯堡垒 开战(法) RFZE41 = 想象 时尚聚会[平衡板](美) RFZP41 = 想象 时尚偶像[平衡板](欧) RG0E52 = 自制 吉他英雄 年轻岁月 加强版(美) RG1552 = 自制 吉他英雄 Weird Al Yankovic(?) RG1E52 = 自制 吉他英雄3 Revenge(美) RG2E52 = 自制 吉他英雄 披头四 加强版(美) RG2EXS = 罪恶装备XX(美) RG2JJF = 罪恶装备XX ΛCore(日) RG2PGT = 罪恶装备XX(欧) RG2PXS = 罪恶装备XX(欧) RG3E52 = 自制 吉他英雄3 Muse and Rush(美) RG4152 = 自制 吉他英雄 Sum 41(?) RG4E52 = Guitar Hero Mayan Apocalypse RG4JC0 = 电车Go!新干线EX 山阳新干线(日) RG5EWR = 吉尼斯世界纪录 电视游戏[WiFi](美) RG5PWR = 吉尼斯世界纪录 电视游戏[WiFi](欧) RG6E69 = 摇滚乐超级明星(美) RG6P69 = 摇滚乐超级明星(欧) RG7EQH = 城市建设者(美) RG8E41 = 宠物体育 狗狗竞技场(美) RG8P41 = 宠物体育 狗狗竞技场(欧) RG9E52 = 自制 吉他英雄3 Anarchy(美) RG9E54 = 嘉年华游戏 迷你高尔夫(美) RG9P54 = 嘉年华游戏 迷你高尔夫(欧) RGAE8P = 51号星球(美) RGAP8P = 51号星球(欧) RGBE08 = 哈维博德曼 律师(美) RGBP08 = 哈维博德曼 律师(欧) RGCEXS = 遥控直升机Wii 飞行大冒险(美) RGCJJF = 遥控直升机Wii 飞行大冒险(日) RGCM52 = 自制 吉他英雄3 Metallica(欧) RGCPGT = 遥控直升机Wii 飞行大冒险(欧) RGCS52 = 自制 吉他英雄3 下载版(西) RGDEA4 = 恐怖行动(美) RGDPA4 = 恐怖行动(欧) RGEJJ9 = 世界黄金蛋节奏合拍系日本的音符(日) RGEK52 = Guitar Hero III Custom: Slipknot RGFE69 = 教父 黑手党(美) RGFF69 = 教父 黑手党(法) RGFI69 = 教父 黑手党(意) RGFP69 = 教父 黑手党(欧) RGFS69 = 教父 黑手党(西) RGGE52 = 自制 摇滚吉他英雄(美) RGGJAF = GeGeGe的鬼太郎 妖怪大运动会(日) RGHC20 = 自制 吉他英雄3 下载版(欧) RGHE51 = 自制 吉他英雄3 Aspero(美) RGHE52 = 吉他英雄3 摇滚传奇[WiFi](美) RGHE60 = 自制 吉他英雄3 WTF Custom(美) RGHE61 = 自制 吉他英雄3 下载版(美) RGHE62 = 自制 吉他英雄3 下载版(美) RGHE69 = 自制 吉他英雄3 Legends of METAL(美) RGHEMR = 自制 吉他英雄3 下载版(美) RGHI52 = 自制 吉他英雄3 Chimba(欧) RGHJ52 = 吉他英雄3 摇滚传奇[WiFi](日) RGHK52 = 吉他英雄3 摇滚传奇[WiFi](韩) RGHP52 = 吉他英雄3 摇滚传奇[WiFi](欧) RGHPOH = 自制 唱吧 意大利语精选(欧) RGHPS2 = 自制 吉他英雄3 下载版(欧) RGHX52 = 自制 吉他英雄 Alex Chan(欧) RGIJC8 = G1骑师Wii(日) RGIPC8 = G1骑师Wii(欧) RGJE4Z = 森林泰山 探秘(美) RGJP7U = 森林泰山 探秘(欧) RGKE52 = 自制 吉他英雄 KoRn(美) RGKENR = 国际儿童 疯狂高尔夫(美) RGKPNR = 国际儿童 疯狂高尔夫(欧) RGLE7D = 几何战争 银河[WiFi](美) RGLP7D = 几何战争 银河[WiFi](欧) RGME5D = 企鹅也疯狂(美) RGMP5D = 企鹅也疯狂(欧) RGNJAF = 银魂(日) RGOJJ9 = 金蛋世界(日) RGPJAF = 机动战士高达2 哀.战士篇(日) RGQE70 = 捉鬼敢死队(美) RGQP70 = 捉鬼敢死队(欧) RGRM52 = Guitar Hero III Custom: Rock & Metal RGSE8P = 幽灵小队[WiFi](美) RGSJ8P = 幽灵小队(日) RGSP8P = 幽灵小队[WiFi](欧) RGTE41 = GT职业赛车(美) RGTJBL = GT职业赛车(日) RGTP41 = GT职业赛车(欧) RGVE52 = 吉他英雄 空中铁匠乐队专辑[WiFi](美) RGVE99 = 吉他英雄 不是空中铁匠乐队而是...(美) RGVJ52 = 吉他英雄 空中铁匠乐队专辑[WiFi](日) RGVP52 = 吉他英雄 空中铁匠乐队专辑[WiFi](欧) RGWE41 = 疯狂兔子 回家[WiFi](美) RGWJ41 = 疯狂兔子 回家[WiFi](日) RGWP41 = 疯狂兔子 回家[WiFi](欧) RGWX41 = 疯狂兔子 回家[WiFi](X) RGXE5D = 游戏派对(美) RGXEFN = 自制 吉他英雄3 Meteo最终自制(美) RGXM52 = 自制 吉他英雄3 xMxExTxAxLx版(欧) RGXP5D = 游戏派对(欧) RGYE5Z = 美女卡丁车(美) RGYPUG = 美女卡丁车(欧) RGZC52 = 自制 吉他英雄3 Led Zeppelin(?) RGZE52 = 自制 哥斯拉能量释放(美) RGZE70 = 哥斯拉 能量释放(美) RGZP70 = 哥斯拉 能量释放(欧) RH2E41 = 地狱厨房(美) RH2P41 = 地狱厨房(欧) RH3E4Q = 歌舞青春3 毕业舞会(美) RH3J4Q = 歌舞青春3 毕业舞会(日) RH3P4Q = 歌舞青春3 毕业舞会(欧) RH4XUG = 仓鼠英雄(X) RH5EVN = 小马生活冒险[WiFi](美) RH5PKM = 爱伦怀塔克的小马生活(欧) RH6E69 = 哈里波特与混血王子(美) RH6K69 = 哈利波特 混血王子的背叛(韩) RH6P69 = 哈里波特与混血王子(欧) RH7J8P = Sammy合集 北斗神拳[WiFi](日) RH8E4F = 古墓丽影 地下世界(美) RH8JEL = 古墓丽影 地下世界(日) RH8P4F = 古墓丽影 地下世界(欧) RH8X4F = 古墓丽影 地下世界(X) RH9JC8 = 遥远时空4 (日) RHAE01 = Wii第一次接触(美) RHAJ01 = Wii第一次接触(日) RHAK01 = Wii第一次接触(韩) RHAP01 = Wii第一次接触(欧) RHAW01 = Wii第一次接触(中) RHCE52 = 历史频道 太平洋战争(美) RHCP52 = 历史频道 太平洋战争(欧) RHD222 = 自制 死亡之屋2(自) RHD333 = 自制 死亡之屋3(自) RHDE8P = 死亡之屋2+3(美) RHDJ8P = 死亡之屋2+3(日) RHDP8P = 死亡之屋2+3(欧) RHEEJJ = 海因兹沃尔夫教授的重力挑战(美) RHEPKM = 海因兹沃尔夫教授的重力挑战(欧) RHFE5D = 快乐大脚(美) RHFP5D = 快乐大脚(欧) RHGH52 = 自制 吉他英雄3 RandomHero's(欧) RHGP6Z = 特工雨果 柠檬榨汁(欧) RHGX6Z = 特工雨果 柠檬榨汁(X) RHHJ8J = 凉宫春日的激动(日) RHIEXJ = 第一神拳 革命(美) RHIJ41 = 第一神拳 革命(日) RHIJJ9 = 第一神拳 革命(日) RHIP41 = 第一神拳 革命(欧) RHJJ13 = 银星桌面游戏(日) RHKE18 = 工作狂(美) RHKJ18 = 工作狂(日) RHKP18 = 工作狂(欧) RHLE4Z = 世界锦标纸牌赛(美) RHLPGT = 世界锦标纸牌赛(欧) RHMEE9 = 牧场物语(美) RHMP99 = 牧场物语(欧) RHNE70 = 马儿与我(美) RHNP70 = 马儿与我(欧) RHOE8P = 死亡之屋 过度杀戮(美) RHOJ8P = 死亡之屋 过度杀戮(日) RHOP8P = 死亡之屋 过度杀戮(欧) RHPJ8N = 欺诈流浪记(日) RHQE4Q = 汉娜蒙塔娜 聚光灯下的世界巡演(美) RHQP4Q = 汉娜蒙塔娜 聚光灯下的世界巡演(欧) RHQX4Q = 孟汉娜万众瞩目全球巡演歌唱大赛(欧) RHQY4Q = 孟汉娜万众瞩目全球巡演歌唱大赛(Y) RHRJ99 = 家庭教师HITMAN!梦之超级战斗!(日) RHSE36 = 热导追踪(美) RHSP36 = 热导追踪(欧) RHSX36 = 热导追踪(X) RHSY36 = 热导追踪(Y) RHTE54 = 侠盗猎魔2(美) RHTP54 = 侠盗猎魔2(欧) RHUE20 = 轮滑城市英雄[平衡板](美) RHUP20 = 轮滑城市英雄[平衡板](欧) RHUP7J = 轮滑城市英雄[平衡板](欧) RHVE5Z = 疯狂小鸡传说(美) RHVPFR = 疯狂小鸡传说(欧) RHWE52 = 热轮竞速(美) RHWP52 = 热轮竞速(欧) RHXE78 = 乐队大战(美) RHXP78 = 乐队大战(欧) RHYJAF = 跳跃之门Wii 极限挑战(日) RHZE41 = 模拟宠物马2(美) RHZP41 = 模拟宠物马2(欧) RI1POH = 自制 唱吧 下载版(欧) RI2E4Q = 迪斯尼 想唱就唱 高校音乐剧(美) RI2P4Q = 迪斯尼 想唱就唱 高校音乐剧(欧) RI2POH = 自制 唱吧 下载版 Vol.2(欧) RI3E5D = 别惹蚂蚁(美) RI3P5D = 别惹蚂蚁(欧) RI3POH = 自制 唱吧 下载版(欧) RI6ENR = 夏季运动会2 小岛运动会(美) RI6P41 = 夏季运动聚会(欧) RI7E4Z = 怪物大破坏 创建和战斗(美) RI8E41 = 战火兄弟连 双重时间(美) RI8P41 = 战火兄弟连 双重时间(欧) RI9EGT = 天后女孩 冰上公主[平衡板](美) RI9PGT = 天后女孩 冰上公主[平衡板](欧) RIAE52 = 冰河世纪3 恐龙的黎明(美) RIAI52 = 冰河世纪3 恐龙的黎明(意) RIAP52 = 冰河世纪3 恐龙的黎明(欧) RIBES5 = 科学小怪蛋(美) RIBPKM = 科学小怪蛋(欧) RICENR = 美国铁人料理 顶级烹饪法(美) RIDE20 = 微笑世界岛屿挑战(美) RIDP7J = 微笑的世界岛屿挑战(欧) RIEEA4 = 卡拉OK革命 美国偶像 再次演唱(美) RIFEA4 = 卡拉OK革命 美国偶像 再次演唱2(美) RIGE54 = 迪亚哥 恐龙大拯救(美) RIGP54 = 迪亚哥 恐龙大拯救(欧) RIHE8P = 无敌绿巨人(美) RIHP8P = 无敌绿巨人(欧) RIIEQH = 卡丁赛车手(美) RIIPNG = 卡丁赛车手(欧) RIIV = Riivolution RIJE69 = 特种部队 眼镜蛇危机(美) RIJP69 = 特种部队 眼镜蛇危机(欧) RIKEQH = 卡车赛车手(美) RIKPNG = 卡车赛车手(欧) RILJ18 = 益智系列 Vol.2 插画逻辑+色彩逻辑(日) RIME36 = 碟中谍(美) RIMP6M = 碟中谍(欧) RINE08 = 丧尸围城 僵尸的祭品(美) RINJ08 = 丧尸围城 僵尸的祭品(日) RINP08 = 丧尸围城 僵尸的祭品(欧) RIOPSU = 恐怖历史之残忍罗马(欧) RIPEAF = 海贼王 无尽的冒险(美) RIPJAF = 海贼王 无尽的冒险(日) RIPPAF = 海贼王 无限巡航 EP1 波浪中的秘宝(欧) RIQPUJ = 冰上炫舞(欧) RIRE8P = 钢铁侠(美) RIRP8P = 钢铁侠(欧) RITFMR = 城市之间[平衡板](法) RIUJAF = 海贼王 无限巡航 EP2 觉醒的勇者(日) RIUPAF = 海贼王 无限巡航 EP2 觉醒的勇者(欧) RIVEXJ = 奇异鸟伊维(美) RIVJAF = 奇异鸟伊维(日) RIVP99 = 奇异鸟伊维(欧) RIWENR = 汉堡岛(美) RIXE20 = 道奇赛车 掌控者与挑战者(美) RIXP7J = 道奇赛车 掌控者与挑战者(欧) RIYE52 = 太空营地(美) RIYP52 = 太空营地(欧) RIZENR = 印第500赛车(美) RJ2E52 = 詹姆斯邦德007 量子危机[WiFi](美) RJ2JGD = 詹姆斯邦德007 量子危机[WiFi](日) RJ2P52 = 詹姆斯邦德007 量子危机[WiFi](欧) RJ3E20 = 吉普越野赛车(美) RJ3P7J = 吉普越野赛车(欧) RJ4ENR = 珠宝大师 罗马发源地(美) RJ4PRM = 珠宝大师 罗马发源地(欧) RJ6E69 = 我的模拟人生 空中英豪(美) RJ6P69 = 我的模拟人生 空中英豪(欧) RJ7FWP = 电视7游戏 法语填字游戏(法) RJ8E64 = 印第安纳琼斯与帝王手杖(美) RJ8P64 = 印第安纳琼斯与帝王手杖(欧) RJ9E5Z = 智能家庭(美) RJ9FMR = 思考 逻辑训练(法) RJ9PFR = 思考 逻辑训练(欧) RJ9XML = 思考 逻辑训练(X) RJAD52 = 使命召唤 现代战争 反应能力[WiFi](德) RJAE52 = 使命召唤 现代战争(美) RJAP52 = 使命召唤 现代战争 反应能力[WiFi](欧) RJAX52 = 使命召唤 现代战争 反应能力[WiFi](X) RJBJAF = 大怪兽对决 超人力霸王竞技场(日) RJCE52 = Baja 1000越野拉力赛(美) RJCP52 = Baja 1000越野拉力赛(欧) RJDPKM = 我的动物中心(欧) RJEE70 = 层层叠世界巡回赛(美) RJEP70 = 层层叠世界巡回赛(欧) RJFE5G = 吉利安麦克尔健身训练09[平衡板](美) RJFP5G = 吉利安麦克尔健身训练09[平衡板](欧) RJFPKM = 吉利安麦克尔健身训练09[平衡板](欧) RJGJDA = 人生游戏(日) RJHE52 = 马达加斯加赛车(美) RJHP52 = 马达加斯加赛车(欧) RJIP6M = 法拉利 竞速体验(欧) RJJE8P = 丛林之旅 动物救援(美) RJJG52 = 自制 吉他英雄3 JJ-KwiK版(欧) RJJP8P = 丛林之旅 动物救援(欧) RJMERS = 心灵传输者(美) RJMPRS = 心灵传输者(欧) RJNE20 = 建道与赛车(美) RJOEXJ = 恐怖体感 咒怨(美) RJOJJ9 = 恐怖体感 咒怨(日或中) RJOP99 = 恐怖体感 咒怨(欧) RJPJA4 = 实况棒球Wii(日) RJQE5G = 睡衣山姆 别怕黑(美) RJQP70 = 睡衣山姆 别怕黑(欧) RJREA4 = 热舞革命 劲爆舞会 3[跳舞墊][平衡板](美) RJRJA4 = 劲舞革命 劲爆舞会3[跳舞毯][平衡板](日) RJRPA4 = 劲舞革命 劲爆舞会 3[跳舞毯][平衡板](欧) RJSENR = 川崎水上摩托(美) RJSPNR = 川崎水上摩托(欧) RJSPUG = 川崎水上摩托(欧) RJSXUG = 川崎水上摩托(X) RJTJ01 = 大家的常识力(日) RJVEGN = 狂热医院 紧急病房(美) RJVPGN = 狂热医院 紧急病房(欧) RJWJEL = 猛犸象与神秘之石(日) RJXE5G = 去玩吧伐木工[平衡板](美) RJXXFR = Go Play Lumberjacks RJYE5Z = 费兹维泽医生的动物大拯救[平衡板](美) RJZP7U = SNK街机经典Vol1(欧) RK2EEB = 超执刀 新血[WiFi](美) RK2JEB = 超执刀 新血[WiFi](日) RK2P01 = 超执刀 新血[WiFi](欧) RK3J01 = 安藤检索(日) RK4JAF = 结界师 黑芒楼之影(日) RK5E01 = 星之卡比 毛线传说(美) RK5J01 = 星之卡比 毛线传说(日) RK5K01 = Kirby's Epic Yarn RK5P01 = 星之卡比 毛线传说(欧) RK6E18 = 穿越迷路2[平衡板][WiFi](美) RK6J18 = 穿越迷路2[平衡板][WiFi](日) RK6P18 = 穿越迷路2[平衡板][WiFi](欧) RK7J0A = 黄金之绊(日) RK8E54 = 职业棒球大联盟2K8(美) RK9EA4 = 卡拉OK革命[麦克风](美) RK9PA4 = 卡拉OK革命[麦克风](欧) RKAE6K = 卡拉斯Wii射击集锦(美) RKAJMS = Milestone射击游戏精选Wii(日) RKAK8M = Milestone射击游戏精选Wii(韩) RKAP6K = 卡拉斯Wii射击集锦(欧) RKBE41 = 卡波其涂鸦(美) RKBP41 = 卡波其涂鸦(欧) RKDEEB = 超执刀 再次执刀(美) RKDJEB = 超执刀 再次执刀(日) RKDJG9 = 超执刀 再次执刀(日) RKDP01 = 超执刀 再次执刀(欧) RKDPEB = 超执刀 再次执刀(欧) RKEENR = 消失的档案(美) RKEPGN = 消失的档案(欧) RKEPNR = 消失的档案(欧) RKFEH4 = 格斗天王合辑 大蛇传说(美) RKFKZA = 格斗之王合辑 大蛇传说(韩) RKFP7U = 格斗之王合辑 大蛇传说(欧) RKGEGY = 贝兹娃娃(美) RKGPGY = 贝兹娃娃(欧) RKHE52 = 功夫熊猫 神龙大侠(美) RKHP52 = 功夫熊猫 神龙大侠(欧) RKIENR = 国际儿童冰球赛(美) RKIPUG = 国际儿童冰球赛(欧) RKJJ0Q = 汉字能力检定协会 250万人的汉检(日) RKKE6K = 雪女大旋风(美) RKLEG9 = 鬼妈妈(美) RKLPG9 = 鬼妈妈(欧) RKME5D = 真人快打(美) RKMP5D = 真人快打(欧) RKNJ2N = 汉检Wii 汉字王决定战(日) RKOJBL = 懒懒熊 一起来悠闲生活[平衡板](日) RKPE52 = 功夫熊猫(美) RKPJ52 = 功夫熊猫(日) RKPK52 = 功夫熊猫(韩) RKPP52 = 功夫熊猫(欧) RKPV52 = 功夫熊猫(欧) RKPY52 = 功夫熊猫(Y) RKQENR = 糖果工厂(美) RKSENR = 儿童篮球赛(美) RKSPUG = 儿童篮球赛(欧) RKTENR = 国际儿童足球赛(美) RKTXUG = 国际儿童足球赛(X) RKVE54 = 大棒球联盟2(美) RKVP54 = 大棒球联盟2(欧) RKWJ18 = 拼图小狗 每日一问(日) RKXE69 = 摇滚乐团(美) RKXP69 = 摇滚乐团(欧) RKYE20 = 玩具军人 倒霉战士(美) RKYP20 = 玩具军人 倒霉战士(欧) RKYP7J = 玩具军人 倒霉战士(欧) RKZEA4 = 迷失蔚蓝Wii(美) RKZJA4 = 迷失蔚蓝Wii(日) RKZPA4 = 迷失蔚蓝Wii(欧) RL2E78 = 我的驯马场(美) RL2HMN = Horse & Pony: My Riding Stables RL2HMR = 我的驯马场(荷) RL2PFR = 我的驯马场(欧) RL3EMJ = 金字塔祖玛 3(美) RL4E64 = 乐高印第安纳琼斯2 冒险再续(美) RL4P64 = 乐高印第安纳琼斯2 冒险再续(欧) RL5E52 = 爱卡莉(美) RL5P52 = 爱卡莉(欧) RL6E69 = 玩具枪大作战2 精英(美) RL7E69 = 小小宠物店 朋友(美) RL7P69 = 小小宠物店 朋友(欧) RL8E54 = 实况职业力量棒球2008(美) RL9ESD = 自制 吉他英雄 联合公园(美) RL9PHZ = 台球天王(欧) RLADMR = 一掷千金(德) RLAE20 = 一掷千金(美) RLAPMR = 一掷千金(欧) RLBEWR = 乐高蝙蝠侠(美) RLBPWR = 乐高蝙蝠侠(欧) RLCP7J = 爱如鲜花盛开(欧) RLDEGY = 龙的传说(美) RLDPFK = 龙的传说(欧) RLEEFS = 大满贯保龄球2(美) RLEPFS = 大满贯保龄球2(欧) RLFE64 = 星球大战 复制战纪(美) RLFP64 = 星球大战 复制战纪(欧) RLGE64 = 乐高星球大战 完整的传奇(美) RLGJ52 = 乐高星球大战 完整的传奇(日) RLGP64 = 乐高星球大战 完整的传奇(欧) RLHE52 = 小联盟世界锦标赛2008(美) RLHP52 = 小联盟世界锦标赛2008(欧) RLIE64 = 乐高印第安纳琼斯(美) RLIL78 = Guitar Hero 2nd Custom RLIP64 = 乐高印第安纳琼斯(欧) RLJEHJ = 线条滑雪2(美) RLJPKM = 线条滑雪2(欧) RLKEGY = 虚幻勇士 追求无限(美) RLKPFK = 虚幻勇士 追求无限(欧) RLLP70 = 幸运的路克 独闯西部(欧) RLMJH4 = 合金弹头精选集(日) RLNEVN = 幸存者[平衡板](美) RLNFMR = 兰达岛生存游戏[平衡板](法) RLNHMR = 前进鲁宾逊[平衡板](荷) RLNIMR = 前进鲁宾逊[平衡板](意) RLNPMR = 幸存者[平衡板](欧) RLPE69 = 小小宠物店(美) RLPP69 = 小小宠物店(欧) RLQE52 = 大联盟运动(美) RLQP52 = 大联盟运动(欧) RLRE4F = 古墓丽影 十周年纪念版(美) RLRJEL = 古墓丽影 十周年纪念版(日) RLRP4F = 古墓丽影 十周年纪念版(欧) RLSE8P = 异形特攻队(美) RLSP8P = 异形特攻队(欧) RLTENR = 伦敦出租车 高峰时间(美) RLTPNR = 伦敦出租车 高峰时间(欧) RLTXUG = 伦敦出租车 高峰时间(X) RLUE4Q = 闪电狗(美) RLUP4Q = 闪电狗(欧) RLUX4Q = 闪电狗(X) RLUY4Q = 闪电狗(Y) RLVE78 = 降世神通最后的空气大师(美) RLVP78 = 降世神通最后的空气大师(欧) RLWE78 = 料理鼠王(美) RLWJ78 = 料理鼠王(日) RLWP78 = 料理鼠王(欧) RLWW78 = 料理鼠王(W) RLWX78 = 料理鼠王(X) RLWY78 = 料理鼠王(Y) RLWZ78 = 料理鼠王(Z) RLXEMJ = 埃及祖玛 法老王的挑战(美) RLXP36 = 埃及祖玛 法老王的挑战(欧) RLYEWR = 华纳群星总动员 超级兵工厂(美) RLYPWR = 华纳群星总动员 超级兵工厂(欧) RLZE4Z = 企鹅保卫战(美) RLZP4Z = 企鹅保卫战(欧) RLZPXT = 企鹅保卫战(欧) RM2E69 = 荣誉勋章 英雄2[WiFi](美) RM2J13 = 荣誉勋章 英雄2(日) RM2P69 = 荣誉勋章 英雄2[WiFi](欧) RM2U69 = 荣誉勋章 英雄2[WiFi](英) RM2X69 = 荣誉勋章 英雄2[WiFi](X) RM3E01 = 银河战士3 腐蚀(美) RM3J01 = 银河战士3 腐蚀(日) RM3P01 = 银河战士3 腐蚀(欧) RM4E41 = 怪物四驱 世界巡回赛(美) RM4J41 = 怪物四驱 世界巡回赛(日) RM4P41 = 怪物四驱 世界巡回赛(欧) RM5E7D = 木乃伊归来3 龙帝之墓(美) RM5P7D = 木乃伊归来3 龙帝之墓(欧) RM6EEB = 巴洛克(美) RM6P99 = 巴洛克(欧) RM7E4F = 怪物实验室[WiFi](美) RM7P4F = 怪物实验室[WiFi](欧) RM8E01 = 马里奥派对8(美) RM8J01 = 马里奥派对8(日) RM8K01 = 马里奥派对8(韩) RM8P01 = 马里奥派对8(欧) RM9EGM = 蘑菇人 孢子大战(美) RM9PGM = 蘑菇人 孢子大战(欧) RMAE01 = 用Wii玩马里奥网球GC(美) RMAJ01 = 用Wii玩马里奥网球GC(日) RMAP01 = 用Wii玩马里奥网球GC(欧) RMBE01 = 超级马里奥棒球场 家庭棒球(美) RMBJ01 = 超级马里奥棒球场 家庭棒球(日) RMCC01 = 超级马里奥赛车(ACG汉化简体中文版) RMCE01 = 马里奥赛车[WiFi](美) RMCE02 = Wiimms MKW Fun 2010-02.p RMCE03 = Wiimms MKW Fun 2010-10.p RMCE04 = Wiimms MKW Fun 2010-12.p RMCE05 = Wiimms MKW Fun 2010-12.p RMCE06 = 自制 Wiimm的马里奥赛车趣味2010-12(美) RMCE07 = 自制 Wiimm的马里奥赛车 复古版2011-02(欧) RMCE08 = 自制 Wiimm的马里奥赛车趣味2011-03(美) RMCE09 = 自制 Wiimm的马里奥赛车趣味2011-06(美) RMCE10 = Wiimms MKW Fun 2011-07.ntsc RMCE11 = Wiimms MKW Fun 2011-08.ntsc RMCE12 = Wiimms MKW Fun 2011-11.ntsc RMCE13 = Wiimms MKW Fun 2012-01.ntsc RMCE14 = Wiimms MKW Revival 2012-02.ntsc RMCE15 = Wiimms MKW Boost 2012-03.ntsc RMCE16 = Wiimms MKW Fun 2012-05.ntsc RMCE17 = Wiimms MKW Fun 2012-09.ntsc RMCE18 = Wiimms MKW N64 2012-10.ntsc RMCE19 = Wiimms MKW Fun 2012-12.ntsc RMCE20 = Wiimms MKW Fun 2013-04.ntsc RMCE21 = Wiimms MKW Fun 2013-09.ntsc RMCE22 = Wiimms MKW Fun 2013-10.ntsc RMCE23 = Wiimms MKW Fun 2014-01.ntsc RMCE24 = Wiimms MKW Retro 2014-02.ntsc RMCE25 = Wiimms MKW Fun 2014-04.ntsc RMCE26 = Wiimms MKW Fun 2014-11.ntsc RMCE65 = Mario Kart Wii: Double Dash 64 RMCE66 = Mizy's Texture Pack RMCE67 = Rookie's Texture & Music Pack RMCE68 = Character Kart Wii RMCE69 = Venom Kart Wii RMCE70 = Stickboy Kart Wii RMCE71 = Funky's Riivolution RMCE72 = CtocKart Wii RMCE73 = Mario Kart Adventures RMCE74 = Mario Kart Adventures RMCE75 = Cam, Tom and Troy's CTGP Pack RMCE76 = Pro CT Pack RMCE77 = SpyKid's CT Pack RMCE78 = Mario Kart: Double Dash!! Wii RMCE79 = Super Mario Kart Wii RMCE80 = Mario Kart 64 Wii RMCE81 = Spade's Custom Track Pack RMCE82 = HD's Retro Pack RMCE83 = Glitch Kart Wii RMCE84 = Legend's Awesome CT Pack RMCE85 = Project Double Dash!! RMCE86 = Newer Mario Kart Wii Revolution!: Backward Circuits RMCE87 = Newer Mario Kart Wii Revolution!: Sunset Sun & Dark Moon RMCE88 = Kaizo Kart Wii RMCE89 = Mario Kart Extra RMCE90 = Mario Kart QZW RMCE91 = Medal Kart 64 RMCE92 = MKWLH100's Custom Track Pack RMCE93 = MKW Hack Pack RMCE94 = Custom Track Kart Wii RMCE95 = Soarin's CT Pack X RMCE96 = Mario Kart 6 RMCE97 = Mario Kart Wii Awesomeness 2 RMCE98 = Mario Kart Wii Awesomeness RMCE99 = ReedyCustomPack Ultimate RMCEA1 = Mario Kart Adventures v0.8 RMCECT = Mario Kart Wii CTGP Revolution RMCEDK = Darky Kart Wii RMCEG2 = Mario Kart Wii CTGP Revolution RMCEGP = Mario Kart Wii CTGP Revolution RMCEWS = Wine's CT Pack RMCJ01 = 马里奥赛车 Wii(日) RMCJ12 = 马里奥赛车Wii 自制版(2011-11 Wiimm)(日) RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCK01 = 马里奥赛车[WiFi](韩) RMCP01 = 马里奥赛车[WiFi](欧) RMCP02 = Wiimms MKW Fun 2010-02.p RMCP03 = Wiimms MKW Fun 2010-10.p RMCP04 = Wiimms MKW Fun 2010-12.p RMCP05 = 自制 马里奥赛车Wii(欧) RMCP06 = 自制 Wiimm的马里奥赛车趣味2010-12(欧) RMCP07 = 自制 Wiimm的马里奥赛车 复古版2011-02(欧) RMCP08 = 自制 Wiimm的马里奥赛车趣味2011-03(欧) RMCP09 = 自制 Wiimm的马里奥赛车趣味2011-06(欧) RMCP10 = Wiimms MKW Fun 2011-07.pal RMCP11 = Wiimms MKW Fun 2011-08.pal RMCP12 = Wiimms MKW Fun 2011-11.pal RMCP13 = Wiimms MKW Fun 2012-01.pal RMCP14 = Wiimms MKW Revival 2012-02.pal RMCP15 = Wiimms MKW Boost 2012-03.pal RMCP16 = Wiimms MKW Fun 2012-05.pal RMCP17 = Wiimms MKW Fun 2012-09.pal RMCP18 = Wiimms MKW N64 2012-10.pal RMCP19 = Wiimms MKW Fun 2012-12.pal RMCP20 = Wiimms MKW Fun 2013-04.pal RMCP21 = Wiimms MKW Fun 2013-09.pal RMCP22 = Wiimms MKW Fun 2013-10.pal RMCP23 = Wiimms MKW Fun 2014-01.pal RMCP24 = Wiimms MKW Retro 2014-02.pal RMCP25 = Wiimms MKW Fun 2014-04.pal RMCP26 = Wiimms MKW Fun 2014-11.pal RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCX = Mario Kart Wii CTGP Revolution Channel RMDE69 = 美式橄榄球大联盟07[WiFi](美) RMDP69 = 美式橄榄球大联盟07[WiFi](欧) RMEJDA = 大联盟Wii投掷(日) RMFE68 = AMF保龄球 非同寻常(美) RMFP68 = AMF保龄球 非同寻常(欧) RMGC01 = 自制 超级马里奥银河(简) RMGE01 = 超级马里奥银河(美) RMGE52 = 自制 吉他英雄3 Megadeth(美) RMGJ01 = 超级马里奥银河(日或中) RMGK01 = 超级马里奥银河(韩) RMGP01 = 超级马里奥银河(欧) RMGR01 = 自制 超级马里奥银河(俄) RMHC08 = 怪物猎人3(ACG汉化简体中文版) RMHE08 = 怪物猎人3[WiFi](美) RMHJ08 = 怪物猎人3[WiFi](日或中) RMHP08 = 怪物猎人3[WiFi](美) RMIE20 = 玛戈的单词大脑(美) RMIP7J = 玛戈的单词大脑(欧) RMJJC8 = 麻将大会(日) RMKE01 = 马里奥大运动会(美) RMKE02 = 自制 马里奥赛车1(美) RMKJ01 = 马里奥大运动会(日) RMKP01 = 马里奥大运动会(欧) RMLEH4 = 合金弹头精选集(美) RMLJH4 = 合金弹头 完全版(日) RMLK52 = 合金弹头精选集(韩) RMLP7U = 合金弹头精选集(欧) RMLPH4 = 合金弹头精选集(欧) RMME7U = 水银融化 革命(美) RMMJ7U = 水银融化 革命(日) RMMP52 = 自制 吉他英雄3 Metal Mayhem(欧) RMMP7U = 水银融化 革命(欧) RMNDFR = 我的宠物旅店(德) RMNHMN = 我的宠物旅店(荷) RMNHMR = 我的宠物旅店(荷) RMNPFR = 我的宠物旅店(欧) RMOE52 = 怪兽大卡车(美) RMOP52 = 怪兽大卡车(欧) RMPE54 = 职业力量棒球2008(美) RMPP54 = 职业力量棒球2008(欧) RMQENR = 魔法制造者 末日宝石(美) RMQPUG = 魔法制造者 末日宝石(欧) RMQXUG = 魔法制造者 末日宝石(X) RMRE5Z = 小魔怪魔法马戏团(美) RMRPNK = 小魔怪魔法马戏团(欧) RMRXNK = 小魔怪魔法马戏团(X) RMSE52 = 惊奇漫画 终极联盟2[WiFi](美) RMSP52 = 惊奇漫画 终极联盟2([WiFi]欧) RMTJ18 = 桃太郎电铁16北海道大移动[WiFi](日) RMUE52 = 漫画英雄联盟(美) RMUJ2K = 漫画英雄联盟(日) RMUP52 = 漫画英雄联盟(欧) RMVE69 = 荣誉勋章 先遣部队(美) RMVP69 = 荣誉勋章 先遣部队(欧) RMVX69 = 荣誉勋章 先遣部队(X) RMWE20 = M&M巧克力卡丁赛车(美) RMWP20 = M&M巧克力卡丁赛车(欧) RMXE78 = 极限越野 突破[WiFi](美) RMXF78 = 极限越野 突破[WiFi](法) RMXP78 = 极限越野 突破[WiFi](欧) RMYE5Z = 超级卡丁车GP(美) RMYPUG = 超级卡丁车GP(欧) RMYXUG = 超级卡丁车GP(欧) RMZE5Z = 神话制造者 崔克茜在玩具岛(美) RMZPUG = 神话制造者 崔克茜在玩具岛(欧) RN2EAF = Namco博物馆重制版(美) RN2K70 = Namco Museum Remix RN2P70 = Namco博物馆重制版(欧) RN3E78 = 海绵宝宝 玩具机器人来袭(美) RN3J78 = 海绵宝宝 玩具机器人来袭(日) RN3P78 = 海绵宝宝 玩具机器人来袭(欧) RN3X78 = 海绵宝宝 玩具机器人来袭(X) RN4E41 = 创造新世纪(美) RN4P41 = 创造新世纪(欧) RN5E78 = 赤裸兄弟乐队(美) RN5P78 = 赤裸兄弟乐队(欧) RN6ENR = 北美狩猎盛典(美) RN6P7J = 北美狩猎盛典(欧) RN7E78 = 邻居间的游戏(美) RN7P78 = 邻居间的游戏(欧) RN8JC8 = 信长的野望·革新 威力加强版(日) RN9E4F = 巨虫魔岛(美) RN9JEL = 巨虫魔岛(日) RN9P4F = 巨虫魔岛(欧) RNAE69 = 美国大学橄榄球2009(美) RNBE69 = 美国职业篮球2008[WiFi](美) RNBP69 = 美国职业篮球2008[WiFi](欧) RNBX69 = 美国职业篮球2008[WiFi](X) RNCEH4 = SNK街机经典Vol1(美) RNCPH4 = SNK街机经典Vol1(欧) RNDJAF = 交响情人梦 梦之☆管弦乐(日) RNEEDA = 火影忍者疾风传 激斗忍者大战 3[WiFi](美) RNEJDA = 火影忍者疾风传 激斗忍者大战 3[WiFi](日) RNEPDA = 火影忍者疾风传 激斗忍者大战 3[WiFi](欧) RNFE69 = 美式橄榄球大联盟08[WiFi](美) RNFP69 = 美式橄榄球大联盟08[WiFi](欧) RNGJ99 = 魔法老师涅吉!?新契约大战!!(日) RNHE41 = 英雄不再(美) RNHJ99 = 英雄不再(日) RNHK8M = 英雄不再(韩) RNHP41 = 英雄不再(欧) RNHP99 = 英雄不再(欧) RNIPGT = 休养生息 营养调理[平衡板](欧) RNJE4F = 迷你忍者(美) RNJP4F = 迷你忍者(欧) RNKE69 = 玩具枪大战(美) RNKP69 = 玩具枪大战(欧) RNLE54 = 北美冰球联盟2009[WiFi](美) RNLP54 = 北美冰球联盟2009[WiFi](欧) RNME5Z = 面包忍者(美) RNMPUG = 面包忍者(欧) RNMXUG = 面包忍者(X) RNNE4Q = 纳尼亚传奇 凯斯宾王子(美) RNNJ4Q = 纳尼亚传奇 凯斯宾王子(日) RNNP4Q = 纳尼亚传奇 凯斯宾王子(欧) RNNX4Q = 纳尼亚传奇 凯斯宾王子(X) RNNY4Q = 纳尼亚传奇 凯斯宾王子(Y) RNNZ4Q = 纳尼亚传奇 凯斯宾王子(Z) RNOJ01 = 异色代码 R 记忆之门(日或中) RNOP01 = 异色代码 R 记忆之门(欧) RNPE69 = 极品飞车 街头职业赛(美) RNPJ13 = 极品飞车 街头职业赛(日) RNPK69 = 极品飞车 街头职业赛(韩) RNPP69 = 极品飞车 街头职业赛(欧) RNPX69 = 极品飞车 街头职业赛(X) RNPY69 = 极品飞车 街头职业赛(Y) RNRE41 = 火爆机车[WiFi](美) RNRJ41 = 火爆机车[WiFi](日) RNRP41 = 火爆机车[WiFi](欧) RNSD69 = 极品飞车10卡本峡谷(德) RNSE69 = 极品飞车10卡本峡谷(美) RNSF69 = 极品飞车10卡本峡谷(法) RNSJ13 = 极品飞车10卡本峡谷(日) RNSP69 = 极品飞车10卡本峡谷(欧) RNSX69 = 极品飞车10卡本峡谷(X) RNUE8P = 南茜朱儿 冰溪白狼(美) RNVE5Z = 阿努比斯2(美) RNVP5Z = 阿努比斯2(欧) RNVPUG = 阿努比斯2(欧) RNVXUG = 阿努比斯2(X) RNWJAF = Namco博物馆 重制版(日) RNWKAF = Namco博物馆 重制版(韩) RNXEDA = 火影忍者疾风传 激斗忍者大战(美) RNXJDA = 火影忍者疾风传 激斗忍者大战(日) RNXPDA = 火影忍者疾风传 激斗忍者大战(欧) RNYEDA = 火影忍者疾风传 激斗忍者大战 2(美) RNYJDA = 火影忍者疾风传 激斗忍者大战 2(日) RNYPDA = 火影忍者疾风传 激斗忍者大战 2(欧) RNZE69 = 忍者反应[WiFi](美) RNZJ13 = 忍者反应(日) RNZK69 = 忍者反应(韩) RNZP69 = 忍者反应(欧) RO2E7N = 福特越野赛车(美) RO2P7N = 福特越野赛车(欧) RO3EXJ = 小国王物语(美) RO3J99 = 小国王物语(日) RO3P99 = 小国王物语(欧) RO4JDA = 斗真传(日) RO5E52 = 无敌风火轮赛车 第五战队(美) RO5P52 = 无敌风火轮赛车 第五战队(欧) RO7E7D = 斯派罗传说 永夜(美) RO7P7D = 斯派罗传说 永夜(欧) RO8E7D = 斯派罗传说 龙之黎明(美) RO8P7D = 斯派罗传说 龙之黎明(欧) RO8X7D = 斯派罗传说 龙之黎明(X) RO9EFS = 水底恐慌(美) RO9PNK = 水底恐慌(欧) ROAE36 = 霸王 黑暗传奇(美) ROAP36 = 霸王 黑暗传奇(欧) ROBE7U = 暗夜杀机 结果(美) ROBPPL = 暗夜杀机 结果(欧) ROCE5Z = 小魔怪卡丁车(美) ROCPNK = 小魔怪卡丁车(欧) RODE01 = 瓦里奥制造 平滑移动(美) RODJ01 = 瓦里奥制造 平滑移动(日) RODK01 = 瓦里奥制造 平滑移动(韩) RODP01 = 瓦里奥制造 平滑移动(欧) ROEEJZ = 流浪狗之家(美) ROEPGT = 流浪狗之家(欧) ROFE5Z = 极限越野特别版(美) ROFPUG = 极限越野特别版(欧) ROFXUG = 极限越野特别版(欧) ROGE78 = 塔克和恶心的监护人(美) ROGP78 = 塔克和恶心的监护人(欧) ROHJAF = 快乐组舞(日) ROJE52 = 乐伯乐 大众钓鱼(美) ROJP52 = 乐伯乐 大众钓鱼(欧) ROKJ18 = 卡拉OK 欢乐之声Wii(日) ROLE8P = 马里奥与索尼克在温哥华冬奥会[WiFi][平衡板](美) ROLJ01 = 马里奥与索尼克在温哥华冬季奥运(日) ROLK01 = 马里奥与索尼克在温哥华冬奥会[WiFi][平衡板](韩) ROLP8P = 马里奥与索尼克在温哥华冬奥会[WiFi][平衡板](欧) ROMESD = 自制 怪物猎人 G(美) ROMJ08 = 怪物猎人 G[WiFi](日) RONEG9 = 御姐玫瑰 革命[WiFi](美) RONJG9 = 性感女剑士 Revolution(日或中) RONPG9 = 御姐玫瑰 革命[WiFi](欧) ROPE41 = 狩猎季节(美) ROPP41 = 狩猎季节(欧) ROQJEP = 巴洛克(日) ROSJ01 = 魔法指挥棒[WiFi](日) ROTE20 = 双重打击 雷电行动(美) ROTP20 = 双重打击 雷电行动(欧) ROTP7J = 双重打击 雷电行动(欧) ROUJAF = 海贼王 无限巡航 EP1 波浪中的秘宝(日) ROUPAF = 海贼王 无限巡航 EP1 波浪中的秘宝(欧) ROVE6U = 巡游马戏团[平衡板](美) ROVPHM = 巡游马戏团[平衡板](欧) ROWE08 = 大神(美) ROWJ08 = 大神(日或中) ROWP08 = 大神(欧) ROXE20 = 上菜啦(美) ROXP7J = 上菜啦(欧) ROXX7J = 上菜啦(X) ROYE41 = 美食从天而降(美) ROYP41 = 美食从天而降(欧) ROYX41 = 美食从天降(X) RP2E69 = 冷知识游戏(美) RP2P69 = 冷知识游戏(欧) RP3JAF = 高尔夫球选手猿(日) RP4E69 = 我的模拟聚会[WiFi](美) RP4J13 = 我的模拟聚会[WiFi](日) RP4P69 = 我的模拟聚会[WiFi](欧) RP5JA4 = 实况力量棒球15(日) RP6E41 = 宠物 疯狂的猴子(美) RP6P41 = 宠物 疯狂的猴子(欧) RP7E52 = 海盗任务 搜寻黑胡子的密宝(美) RP7P52 = 海盗任务 搜寻黑胡子的密宝(欧) RP9ERS = 太空黑猩猩(美) RP9PRS = 太空黑猩猩(欧) RP9XRS = 太空黑猩猩(X) RPAF70 = 船桨男孩 迷失(法) RPBE01 = 口袋妖怪 战斗革命[WiFi](美) RPBJ01 = 口袋妖怪 战斗革命[WiFi](日) RPBP01 = 口袋妖怪 战斗革命[WiFi](欧) RPCE20 = 难题收藏(美) RPCP41 = 难题收藏(欧) RPCX7J = 难题收藏(X) RPDEGN = PDC世界飞镖锦标赛2008(美) RPDPGN = PDC世界飞镖锦标赛2008(欧) RPFE52 = 森林寻宝 大冒险(美) RPFP52 = 森林寻宝 大冒险(欧) RPFU52 = 森林寻宝 大冒险(英) RPGE5D = 怪兽大破坏(美) RPGP5D = 怪兽大破坏(欧) RPHPPN = 粉红猪小妹 游戏(欧) RPIE52 = MTV 帮你改装车(美) RPIP52 = MTV 帮你改装车(欧) RPJE7U = 弧光幻想曲(美) RPJJ99 = 弧光幻想曲(日) RPKE52 = 世界扑克冠军联赛2007(美) RPKP52 = 世界扑克冠军联赛2007(欧) RPLE52 = 乐伯乐钓鱼巡回赛(美) RPLP52 = 乐伯乐钓鱼巡回赛(欧) RPMJA4 = 实况力量棒球 职业棒球大联盟2(日) RPNE78 = 我的宠物旅馆(美) RPOEC8 = 欧波娜大冒险(美) RPOJC8 = 欧波娜大冒险(日) RPOPC8 = 欧波娜大冒险(欧) RPPE41 = 波斯王子 宿敌之剑(美) RPPP41 = 波斯王子 宿敌之剑(欧) RPQES5 = 桌球派对(美) RPQPS5 = 桌球派对(欧) RPSE4Q = 迪斯尼公主 魔咒下的旅行(美) RPSJ4Q = 迪斯尼公主 魔咒下的旅行(日) RPSP4Q = 迪斯尼公主 魔咒下的旅行(欧) RPTD52 = 爱心宠物狗(德) RPTE52 = 爱心宠物狗(美) RPTP52 = 爱心宠物狗(欧) RPUJ8P = 魔法气泡! 15周年纪念版(日) RPVE4Z = 猫猫物语(美) RPVPKM = 猫猫物语(欧) RPWX41 = 波斯王子 遗忘之沙(欧) RPWZ41 = 波斯王子 遗忘之沙(欧) RPXE69 = EA游乐场(美) RPXJ13 = EA游乐场(日) RPXP69 = EA游乐场(欧) RPYE9B = 魔法高尔夫(美) RPYJ9B = 魔法高尔夫(日) RPYP9B = 魔法高尔夫(欧) RPZJA4 = 实况力量职棒Wii 决定版[WiFi](日) RQ2JK6 = 疯狂攀登者Wii(日) RQ3PGN = PDC世界飞镖锦标赛2009(欧) RQ4E78 = 棉球方块历险记(美) RQ4J78 = 棉球方块历险记(日) RQ4P78 = 棉球方块历险记(欧) RQ5E5G = 疯狗麦基利(美) RQ5P5G = 疯狗麦基利(欧) RQ5X5G = 疯狗麦基利(欧) RQ6EJJ = 妖山诅咒(美) RQ6PKM = 妖山诅咒(欧) RQ6XKM = 妖山诅咒(X) RQ7E20 = 火星人的恐慌(美) RQ7PXT = Martian Panic RQ8E08 = GP摩托车赛08(美) RQ8P08 = GP摩托车赛08(欧) RQ9E69 = 美国职业篮球2009[WiFi](美) RQ9F69 = 美国职业篮球2009[WiFi](法) RQ9P69 = 美国职业篮球2009[WiFi](欧) RQ9S69 = 美国职业篮球2009[WiFi](西) RQBENR = 川崎4X4沙滩车(美) RQBPNR = 川崎4X4沙滩车(欧) RQBPUG = 川崎4X4沙滩车(欧) RQBXUG = 川崎4X4沙滩车(X) RQCEAF = 大胃王(美) RQCJAF = 大胃王(日) RQEE6U = 阿加莎克里斯蒂 阳光下的罪恶(美) RQEP6V = 阿加莎克里斯蒂 阳光下的罪恶(欧) RQFE6U = 破箱人 终极难题冒险(美) RQFP6V = 破箱人 终极难题冒险(欧) RQGE69 = 我的模拟人生 赛车(美) RQGJ13 = 我的模拟人生 赛车(日) RQGJ69 = 我的模拟人生 赛车(日) RQGP69 = 我的模拟人生 赛车(欧) RQIJ01 = NHK红白猜谜合战(日) RQJE7D = 古惑狼之泰坦巨人[WiFi](美) RQJP7D = 古惑狼之泰坦巨人[WiFi](欧) RQJX7D = 古惑狼之泰坦巨人[WiFi](X) RQKE41 = 马戏团游戏(美) RQKP41 = 聚会游乐园(欧) RQLE64 = 星球大战之克隆战争 共和国英雄(美) RQLP64 = 星球大战之克隆战争 共和国英雄(欧) RQMEVN = 海底指挥官(美) RQMPVN = 海底指挥官(欧) RQNEWR = 史酷比最初恐惧(美) RQNPWR = 史酷比最初恐惧(欧) RQOE69 = 孢子英雄(美) RQOJ13 = 孢子英雄(日) RQOP69 = 孢子英雄(欧) RQPE52 = 卡贝拉的猎鹿(美) RQPP52 = 卡贝拉的猎鹿(欧) RQPZ52 = 卡贝拉的猎鹿(欧) RQQE52 = 自制 吉他英雄 皇后乐团(美) RQQE70 = 后院橄榄球2009(美) RQREXJ = 空中杀手 无罪王牌(美) RQRJAF = 空中杀手 无罪王牌(日) RQRPAF = 空中杀手 无罪王牌(欧) RQSE4Z = 弹珠台名人堂 威廉收藏版(美) RQSP6M = 经典弹珠台(欧) RQTE6U = 阿加莎·克里斯蒂 童谣谋杀案(美) RQTP6V = 阿加莎·克里斯蒂 童谣谋杀案(欧) RQUEFS = 超级小卡车(美) RQVE20 = 太平洋解放者(美) RQVP20 = 太平洋解放者(美) RQWEG9 = 益智之迷 战神的挑战(美) RQWPG9 = 益智之迷 战神的挑战(欧) RQXP70 = 奥运会上的阿斯特里克斯(欧) RQYENR = 梦幻水族世界(美) RQZE41 = 异形4X4特技赛车(美) RQZP41 = 怪兽4X4特级赛车(欧) RR2ENR = 装载卡车竞赛2(美) RR2PNR = 装载卡车竞赛2(欧) RR2PUG = 装载卡车竞赛2(欧) RR3EA4 = 终极聚会挑战[跳舞毯](美) RR3JA4 = 全家挑战(日) RR3PA4 = 一起派对(欧) RR4EGY = 熊熊工作室(美) RR4PFK = 熊熊工作室(欧) RR5E70 = 暴力拳击2 革命(美) RR5P70 = 暴力拳击2 革命(欧) RR7PVP = 一球成名 皇家马德里 游戏版(欧) RR8PUJ = 国际田径大赛(欧) RR9E78 = 世界职业摔角2009[WiFi](美) RRAE5Z = 猫王的摇滚大冒险(美) RRAPUG = 猫王的摇滚大冒险(欧) RRAXUG = 猫王的摇滚大冒险(X) RRBE41 = 雷曼 疯狂兔子(美) RRBJ41 = 雷曼 疯狂兔子(日) RRBP41 = 雷曼 疯狂兔子(欧) RRCE52 = 芭比小马冒险 骑术野营(美) RRCP52 = 芭比小马冒险 骑术野营(欧) RRDE69 = 摇滚乐团 乐曲扩展包2(美) RRDP69 = 摇滚乐团 乐曲扩展包2(欧) RREE69 = 摇滚乐团 乐曲扩展包1(美) RREP69 = 摇滚乐团 乐曲扩展包1(欧) RRFEE9 = 鱼之眼Wii(美) RRFPE9 = 鱼之眼Wii(欧) RRGE52 = 马达加斯加2 逃往非洲(美) RRGP52 = 马达加斯加2 逃往非洲(欧) RRHPUJ = 玛丽·金的骑术学校2(欧) RRHXUJ = 玛丽·金的骑术学校2(X) RRIPTV = 图画聚会(欧) RRJFMR = 准备稳妥的厨师(法) RRJIMR = 准备稳妥的厨师(意) RRJPMR = 准备好的可靠的厨师(欧) RRKE70 = 鬼屋魔影(美) RRKP70 = 鬼屋魔影(欧) RRLE78 = 贝兹娃娃 女孩本摇滚(美) RRLP78 = 贝兹娃娃 女孩本摇滚(欧) RRLX78 = 贝兹娃娃 女孩本摇滚(X) RRLY78 = 贝兹娃娃 女孩本摇滚(Y) RRLZ78 = 贝兹娃娃 女孩本摇滚(Z) RRME69 = 孩之宝 家庭游戏之夜(美) RRMP69 = 孩之宝 家庭游戏之夜(欧) RRMX69 = 孩之宝 家庭游戏之夜(X) RRPE41 = 正确定价(美) RRQE52 = 史莱克的疯狂嘉年华(美) RRQP52 = 史莱克的疯狂嘉年华(欧) RRQX52 = 史莱克的疯狂嘉年华(X) RRRE5Z = 火场英雄 消防队员(美) RRRPRM = 火场英雄 消防队员(欧) RRSE4Q = 迪斯尼 拜访鲁滨逊一家(美) RRSJ4Q = 迪斯尼 拜访鲁滨逊一家(日) RRSP4Q = 迪斯尼 拜访鲁滨逊一家(欧) RRSX4Q = 迪斯尼 拜访鲁滨逊一家(X) RRTE52 = 打击聚会(美) RRTP52 = 打击聚会(欧) RRUEJF = 冬季运动会2 下一个挑战[平衡板](美) RRUFRT = 冬季运动会2009 下一个挑战[平衡板](法) RRUJJF = 冬季运动会2009 下一个挑战[平衡板](日) RRUPRT = 冬季运动会2009 下一个挑战[平衡板](欧) RRVENR = 战斗愤怒 机器人战争(美) RRVPNR = 战斗愤怒 机器人战争(欧) RRWJAF = 超级机器人大战NEO(日) RRXE5Z = 怪物卡车竞技场(美) RRXPUG = 怪物卡车竞技场(欧) RRXXUG = 怪物卡车竞技场(X) RRYEHG = 侠盗骑兵 石英地带大屠杀(美) RRYPHY = 侠盗骑兵 石英地带大屠杀(欧) RRZEGY = 魔方世界(美) RRZPGY = 魔方世界(欧) RS2E20 = 终极猎鸭(美) RS2EGJ = 终极猎鸭(美) RS2PGJ = 终极猎鸭(欧) RS3E52 = 蜘蛛侠3(美) RS3J52 = 蜘蛛侠3(日) RS3P52 = 蜘蛛侠3(欧) RS3X52 = 蜘蛛侠3(X) RS4EXS = 式神之城3(美) RS4JJF = 式神之城3(日) RS4PXS = 式神之城3(欧) RS5EC8 = 战国无双KATANA(美) RS5JC8 = 战国无双 KATANA(日) RS5PC8 = 战国无双 KATANA(欧) RS7J01 = 光速蒙面侠21 赛场上的最强战士(日) RS8J8N = 上海(日) RS9E8P = 索尼克滑板 失重[WiFi](美) RS9J8P = 索尼克滑板 失重[WiFi](日) RS9P8P = 索尼克滑板 失重[WiFi](欧) RSAE78 = 海绵宝宝 亚特兰蒂斯(美) RSAP78 = 海绵宝宝 亚特兰蒂斯(欧) RSBE01 = 任天堂明星大乱斗X[WiFi](美) RSBE02 = Super Smash Bros. Project M Red Version RSBE03 = Super Smash Bros. Brawl DX RSBE04 = Super Smash Bros. Project M+ RSBE05 = Super Smash Bros. Project M Patt Edition RSBE06 = Darkon360's Brawl Hack Pack RSBE07 = Super Smash Bros. Project M: Theytah's Custom Build RSBE08 = Smash Bros. Infinite RSBE09 = Springboy64's Brawl Hack Pack RSBE10 = Brawl Ying Yang Edition RSBE11 = Professor MGW's Tournament Hack Pack #1 RSBE12 = Professor MGW's Tournament Hack Pack #2 RSBE13 = Professor MGW's Hack Pack #3 RSBE14 = Super Smash Bros. Brawl- Zeus RSBE15 = Super Smash Bros. Brawl Minus Mugen RSBE16 = Super Smash Bros. Brawl Shock RSBE17 = Super Smash Bros. Brawl - Battlefield Build RSBE18 = Super Smash Bros. Project M: Tournament Hack Pack RSBE19 = Super Smash Bros. Project M: Fully Dressed Edition RSBE20 = Pikezer's BrawlEx Pack RSBE21 = Calabrel's Custom Project M Build RSBE22 = Project M: Rage83's Competitive Custom Build RSBE23 = Super Smash Bros. Project M: Justice Build RSBE24 = Super Smash Bros. 3 RSBE25 = Super Smash Bros. Red Version RSBE26 = Super Smash Bros. Silver RSBE27 = Springboy64's Super Smash Bros. Brawl Hack Pack RSBE28 = SuperYoshiStar's Super Smash Bros. Brawl Hack Pack RSBE29 = Super Smash Bros. Project M: YoeiX Custom Build RSBE30 = Super Smash Bros. Project M: Arko's Loaded Custom Build RSBE31 = Super Smash Bros. Project M: Arko's Tournament Custom Build RSBE32 = Super Smash Bros. Project M: Sempai's Build RSBE33 = Super Smash Bros. Brawl Yin Yang Edition 2: The Balance of Kyu RSBE34 = Super Smash Bros. Project U: Blue Version RSBE35 = Super Smash Bros. Brawl Legacy: Project M RSBE36 = Super Smash Bros. Project Best RSBE37 = Super Smash Bros. Project M: Psycho Ghost's Build RSBE38 = Super Smash Sisters Generations RSBE39 = Super Smash Bros. Ultra Project M RSBE40 = Super Smash Bros. Project M: Ragnarok Edition RSBE41 = Super Smash Bros. Project M: Calabrel's Custom Build RSBE42 = Super Smash Bros. Project M: RedX Anime/Game Custom Build RSBEBB = Super Smash Bros. Balanced Brawl RSBEBM = Super Smash Bros. Brawl Minus RSBEBP = Super Smash Bros. Brawl Plus RSBEC3 = Super Smash Bros. Project M 3.5 Netplay Build RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBEWM = Super Smash Bros. Project M Wi-Fi RSBJ01 = 任天堂明星大乱斗X[WiFi](日) RSBK01 = 任天堂明星大乱斗X[WiFi](韩) RSBP01 = 任天堂明星大乱斗X[WiFi](欧) RSCD7D = 疤面煞星 掌握世界(德) RSCE7D = 疤面煞星 掌握世界(美) RSCP7D = 疤面煞星 掌握世界(欧) RSCU7D = 疤面煞星 掌握世界(英) RSDJAF = SD高达 疾速流星锤(日) RSEJGD = 噬魂者 单调公主(日) RSFC99 = 胧村正(ACG汉化简体中文版) RSFE7U = 胧村正 妖刀传(美) RSFJ99 = 胧村正(日或中) RSFP99 = 胧村正 妖刀传(欧) RSHE69 = 我的模拟王国(美) RSHJ13 = 我的模拟王国(日) RSHK69 = 我的模拟王国(韩) RSHP69 = 我的模拟王国(欧) RSIE69 = 我的模拟人生(美) RSIJ13 = 我的模拟人生(日) RSIP69 = 我的模拟人生(欧) RSJE41 = 断剑 圣堂武士之谜(美) RSJESD = 自制 吉他英雄 System Of A Down(美) RSJP41 = 断剑 圣堂武士之谜(欧) RSKE52 = 怪物史莱克3(美) RSKP52 = 怪物史莱克3(欧) RSKX52 = 怪物史莱克3(X) RSLEAF = 剑魂传说(美) RSLJAF = 剑魂传说(日) RSLKAF = 剑魂传说(韩) RSLPAF = 剑魂传说(欧) RSME8P = 超级猴子球 香蕉闪电战(美) RSMJ8P = 超级猴子球 香蕉闪电战(日) RSMP8P = 超级猴子球 香蕉闪电战(欧) RSND69 = 辛普森一家(德) RSNE69 = 辛普森一家(美) RSNF69 = 辛普森一家(法) RSNP69 = 辛普森一家(欧) RSNX69 = 辛普森一家(X) RSOE4Z = 纸牌麻将游戏专辑(美) RSOP4Z = 纸牌麻将游戏专辑(欧) RSPE01 = Wii运动(美) RSPJ01 = Wii运动(日) RSPK01 = Wii运动(韩) RSPP01 = Wii运动(欧) RSPW01 = Wii运动 RSQEAF = 家庭滑雪[平衡板](美) RSQJAF = 家庭滑雪(日) RSQPAF = 家庭滑雪[平衡板](欧) RSRE8P = 索尼克与神秘指环(美) RSRJ8P = 索尼克与神秘指环(日) RSRP8P = 索尼克与神秘指环(欧) RSSEH4 = 侍魂 六番胜负(美) RSSJH4 = 侍魂 六番胜负(日) RSSK52 = 侍魂 六番胜负(韩) RSSP7U = 侍魂 六番胜负(欧) RSTE64 = 星球大战 原力释放(美) RSTJ52 = 星球大战 原力释放(日) RSTP64 = 星球大战 原力释放(欧) RSUENR = 夏季运动会 天堂岛(美) RSUP41 = 夏季运动会 天堂岛(欧) RSVE8P = 索尼克 释放(美) RSVJ8P = 索尼克 释放(日) RSVP8P = 索尼克 释放(欧) RSWE08 = 生化间谍(美) RSWP08 = 生化间谍(欧) RSXE69 = 极限滑雪(美) RSXJ13 = 极限滑雪(日) RSXK69 = 极限滑雪(韩) RSXP69 = 极限滑雪(欧) RSXX78 = Guitar Hero RadioHead RSYE20 = 冠军拳击赛(美) RSYP06 = 自制 任天堂明星大乱斗X YF06修改版(欧) RSYP7J = 冠军拳击赛(欧) RSZJES = 雪女大旋风纱雪小雪的惊奇大骚动(日) RSZPGT = 雪女大旋风纱雪小雪的惊奇大骚动(欧) RT2E20 = 极地熊宝贝(美) RT2P20 = 极地熊宝贝(欧) RT2P7J = 极地熊宝贝(欧) RT3E54 = Rockstar乒乓球(美) RT3JEL = Rockstar乒乓球(日) RT3P54 = Rockstar乒乓球(欧) RT4EAF = 仙乐传说 拉塔托斯克的骑士(美) RT4JAF = 仙乐传说 拉塔托斯克的骑士(日) RT4PAF = 仙乐传说 拉塔托斯克的骑士(欧) RT5E8P = 世嘉超级明星网球(美) RT5P8P = 世嘉超级明星网球(欧) RT6FKM = 神奇的旋转木马(法) RT6PKM = 神奇的旋转木马(欧) RT7E69 = 泰格伍兹高尔夫巡回赛07(美) RT7F69 = 泰格伍兹高尔夫巡回赛07(法) RT7P69 = 泰格伍兹高尔夫巡回赛07(欧) RT8E69 = 泰格伍兹高尔夫巡回赛08(美) RT8J13 = 泰格伍兹高尔夫巡回赛08(日) RT8K69 = 泰格伍兹高尔夫巡回赛08(韩) RT8P69 = 泰格伍兹高尔夫巡回赛08(欧) RT9E52 = 托尼霍克滑板 练习场[WiFi](美) RT9P52 = 托尼霍克滑板 练习场[WiFi](欧) RTAE41 = 汤姆克兰西之鹰击长空2(美) RTAP41 = 汤姆克兰西之鹰击长空2(欧) RTBE52 = 乐伯乐疯狂钓鱼(美) RTBP52 = 乐伯乐疯狂钓鱼(欧) RTCE41 = 分裂细胞 双重间谍(美) RTCP41 = 分裂细胞 双重间谍(欧) RTDE6K = 新中华大仙 米迦勒与美美的冒险(美) RTDJES = 新中华大仙 米迦勒与美美的冒险(日) RTDK8M = 新中华大仙 米迦勒与美美的冒险(韩) RTEE78 = 我的宠物医院(美) RTEHMR = 我的宠物医院(荷) RTEPFR = 我的宠物医院(欧) RTFE52 = 变形金刚 游戏(美) RTFJ52 = 变形金刚 游戏(日) RTFK52 = 变形金刚 游戏(韩) RTFP52 = 变形金刚 游戏(欧) RTFX52 = 变形金刚 游戏(X) RTFY52 = 变形金刚 游戏(Y) RTGJ18 = Wi-Fi对应 严选桌面游戏[WiFi](日) RTHE52 = 托尼霍克滑板 下坡.(美) RTHP52 = 托尼霍克滑板(欧) RTIE8P = 古怪运动世界(美) RTIJ8P = 疯狂世界大运动(日) RTIP8P = 古怪运动世界(欧) RTJE68 = 星舰迷航记 征服(美) RTJP68 = 星舰迷航记 征服(欧) RTKE5Z = 章鱼大作战[WiFi](美) RTKJDQ = 章鱼大作战[WiFi](日) RTKK8M = 章鱼大作战[WiFi](韩) RTLE18 = 目标!钓鱼大师 世界版(美) RTLJ18 = 目标!钓鱼大师 世界版(日) RTLP18 = 目标!钓鱼大师 世界版(欧) RTME41 = 忍者神龟2007旋风再起(美) RTMP41 = 忍者神龟2007旋风再起(欧) RTNE41 = 天诛4(美) RTNJCQ = 天诛4(日) RTNP41 = 天诛4(欧) RTOJ8P = 428 被封锁的涉谷(日) RTPP41 = 王牌冒险(欧) RTQENR = 怪物卡车 越野赛(美) RTQPUG = 怪物卡车 越野赛(欧) RTQXUG = 怪物卡车 越野赛(X) RTRE18 = 垂钓大师(美) RTRJ18 = 垂钓大师(日) RTRP18 = 垂钓大师(欧) RTSEVN = 特工少女组 狂欢派对(美) RTSP41 = 特工少女组 狂欢派对(欧) RTTJAF = 电子鸡宠物店(日) RTUEJJ = 秘密档案 通古斯(美) RTUFKM = 秘密档案 通古斯(法) RTUPKM = 秘密档案 通古斯(欧) RTVE64 = 主题公园 惊奇世界(美) RTVP64 = 主题公园 惊奇世界(欧) RTWE5D = 摔角联盟(美) RTWP5D = 摔角联盟(欧) RTYP01 = Wii国际象棋[WiFi](欧) RTZE08 = 宝岛Z 巴尔巴罗斯的秘宝(美) RTZJ08 = 宝岛Z 巴尔巴罗斯的秘宝(日) RTZK08 = 宝岛Z 巴尔巴罗斯的秘宝(韩) RTZP08 = 宝岛Z 巴尔巴罗斯的秘宝(欧) RU1P4Q = 自制 迪斯尼想唱就唱 下载版(欧) RU2E5Z = 冬季运动会2 下一个挑战[平衡板](美) RU2P4Q = 自制 迪斯尼想唱就唱 下载版(欧) RU2P5Z = 冬季运动会2 下一个挑战[平衡板](欧) RU3E5Z = 夏季田径运动会(美) RU4E41 = 我的健身教练2 运动与营养[平衡板](美) RU4X41 = 新个人健身教练[平衡板](X) RU5E4Q = 迪士尼公主和青蛙(美) RU5P4Q = 公主与青蛙(欧) RU5V4Q = Disney: The Princess and the Frog RU5X4Q = 公主与青蛙(X) RU5Y4Q = 公主与青蛙(Y) RU6EHG = 自由奔跑(美) RU6PHY = 自由奔跑(欧) RU7E5G = 博物馆奇妙夜2 决战史密森尼(美) RU7X5G = 博物馆奇妙夜2 决战史密森尼(X) RU8EFS = 模拟专业狩猎(美) RU9EGT = 我的芭蕾舞工作室[平衡板](美) RU9PGT = 天后女孩 芭蕾天后[平衡板](欧) RUAE52 = 怪物卡车 袭击市区(美) RUAP52 = 怪物卡车 袭击市区(欧) RUBEVN = 极致桌上游戏合辑(美) RUBP7N = 极致桌上游戏合辑(欧) RUCE5Z = 冬季运动会 终极挑战 2008(美) RUCPRT = 冬季运动会 终极挑战 2008(欧) RUCXRT = 冬季运动会 终极挑战 2008(X) RUEE4Q = 豚鼠特工队(美) RUEP4Q = 豚鼠特工队(欧) RUEX4Q = 豚鼠特工队(X) RUEY4Q = 豚鼠特攻队(欧) RUFEMV = 牧场物语 符文工场 边境(美) RUFJ99 = 符文工场 边境(日) RUFP99 = 牧场物语 符文工场 边境(欧) RUGE7T = 鸡皮疙瘩恐怖乐园(美) RUGP5G = 鸡皮疙瘩恐怖乐园(欧) RUHE52 = 爆丸 战斗对决(美) RUHP52 = 爆丸 战斗对决(欧) RUHX52 = 爆丸 战斗对决(X) RUHZ52 = 爆丸 战斗对决(欧) RUIE4Q = 迪斯尼 想唱就唱(美) RUIGGD = SingItStar Ned. 80's RUIP4Q = 迪斯尼 想唱就唱(欧) RUIX4Q = 迪斯尼 想唱就唱(X) RUKEGT = 我们来摇滚吧 鼓王(美) RUKPGT = 我们来摇滚吧 鼓王(欧) RULE4Q = 终极乐队[WiFi](美) RULP4Q = 终极乐队[WiFi](欧) RUME5Z = 滑雪射击[平衡板](美) RUMPFR = 夏季田径运动会(欧) RUNJ0Q = 新 右脑达人Wii(日) RUOEPL = 阁楼里的外星人(美) RUOPPL = 阁楼里的外星人(欧) RUPJC8 = 赛马大亨7 Maximum 2008(日) RUQD78 = 飞屋环游记(德) RUQE78 = 飞屋环游记(美) RUQI78 = 飞屋环游记(欧) RUQJJE = 飞屋环游记(日) RUQP78 = 飞屋环游记(欧) RUQS78 = 飞屋环游记(西) RUQX78 = 飞屋环游记(欧) RUREPL = 职业撞球名人堂(美) RURPPL = 职业撞球名人堂(欧) RUSE78 = 海绵宝宝历险记 致命水珠(美) RUSK78 = 海绵宝宝历险记 致命水珠(韩) RUSP78 = 海绵宝宝历险记 致命水珠(欧) RUSX78 = 海绵宝宝历险记 致命水珠(X) RUSY78 = 海绵宝宝历险记 致命水珠(Y) RUUE01 = 动物之森 城市大家庭[WiFi](美) RUUJ01 = 动物之森 城市大家庭[WiFi](日) RUUK01 = 动物之森 城市大家庭[WiFi](韩) RUUP01 = 动物之森 城市大家庭[WiFi](欧) RUWJC8 = 胜利赛马世界(日) RUXPUG = 都市极限飚车 街道之怒(X) RUXXUG = 都市极限飚车 街道之怒(X) RUYE41 = 英雄不再2 垂死挣扎(美) RUYJ99 = 英雄不再2:垂死挣扎(日) RUYP99 = 英雄不再2 垂死挣扎(欧) RUZE7T = 终极间谍(美) RUZP5G = 终极间谍(欧) RV2E5D = 游戏派对2(美) RV2P5D = 游戏派对2(欧) RV3P6N = 聪明的孩子 吓人的爬行动物(欧) RV7SMR = 幸存者[平衡板](欧) RV8E20 = 夏日海滩趣味挑战(美) RV8PRT = 夏日海滩趣味挑战(欧) RV9E78 = 降世神通 最后的气宗 前往地狱(美) RV9P78 = 降世神通 最后的气宗 前往地狱(欧) RVAE78 = 降世神通 燃烧的大地(美) RVAP78 = 降世神通 燃烧的大地(欧) RVBERS = 艾尔文与花栗鼠(美) RVBPRS = 艾尔文与花栗鼠(欧) RVDPLG = 德伯力克 原罪(欧) RVEFMR = 欢迎来到北方(法) RVFE20 = 大脚车 碰撞航向(美) RVFP7J = 大脚车 碰撞航向(欧) RVGE78 = 默夫格里芬纵横字迷(美) RVGP78 = 默夫格里芬纵横字迷(欧) RVHP41 = 拼字游戏互动2009[WiFi][平衡板](欧) RVIE4F = 乐高生化战士(美) RVIP4F = 乐高生化战士(欧) RVJPFR = 金发美女 回到小岛(欧) RVKEXJ = 瓦尔哈拉骑士 艾德尔传奇[WiFi](美) RVKJ99 = 瓦尔哈拉骑士 艾德尔传奇[WiFi](日) RVKKZA = 瓦尔哈拉骑士 艾德尔传奇[WiFi](韩) RVKP99 = 瓦尔哈拉骑士 艾德尔传奇[WiFi](欧) RVLPA4 = 摇滚革命(欧) RVNE20 = 凯文塔克的乡巴佬露营会(美) RVNP20 = 凯文塔克的乡巴佬露营会(欧) RVNP7J = 凯文塔克的乡巴佬露营会(欧) RVOEPL = 眩晕滚球[平衡板](美) RVOPPL = 眩晕滚球[平衡板](欧) RVPEFS = 明星吉他(美) RVPPFS = 明星吉他(欧) RVQE41 = 电影游戏(美) RVQP41 = 电影游戏(欧) RVREFS = 叛乱袭击者 夜鹰行动(美) RVRPFS = 叛乱袭击者 夜鹰行动(欧) RVRPKG = 叛乱袭击者 夜鹰行动(欧) RVSE69 = 极限滑板[平衡板](美) RVSJ13 = 极限滑板[平衡板](日) RVSP69 = 极限滑板[平衡板](欧) RVTFMR = 真实故事 兽医(法) RVTPMR = 我的宠物俱乐部(欧) RVTXMR = 真实故事 兽医(X) RVUE8P = VR网球2009[MP][WiFi](美) RVUP8P = VR网球2009[MP][WiFi](欧) RVVE78 = 大沙滩运动(美) RVVP78 = 大沙滩运动(欧) RVXFRT = 现代冬季两项2009[平衡板](法) RVXPRT = 现代冬季两项2009[平衡板](欧) RVYD52 = 使命召唤 世界大战[WiFi](德) RVYE52 = 使命召唤 世界大战(美) RVYK52 = 使命召唤 世界大战[WiFi](韩) RVYP52 = 使命召唤 世界大战[WiFi](欧) RVYX52 = 使命召唤 世界大战[WiFi](X) RVYY52 = 使命召唤 世界大战[WiFi](Y) RVZE52 = 怪兽大战外星人(美) RVZP52 = 怪兽大战外星人(欧) RW3E4Q = 加勒比海盗 世界的尽头(美) RW3J4Q = 加勒比海盗 世界的尽头(日) RW3P4Q = 加勒比海盗 世界的尽头(欧) RW4D41 = 我的词汇教练(德) RW5F41 = 谁想成为百万富翁?第二集(法) RW5P41 = 谁想成为百万富翁?第二集(欧) RW6PA4 = 劲舞革命 美少女俱乐部[跳舞毯](欧) RW7E41 = 肖恩怀特滑雪[平衡板](美) RW8P41 = 想象 冠军骑士(欧) RW9P78 = 世界职业摔角联盟2009[WiFi](欧) RW9X78 = 世界职业摔角联盟2009[WiFi](X) RWAD78 = 机器人瓦伊(德) RWAE78 = 机器人瓦伊(美) RWAJ78 = 机器人瓦伊(日) RWAK78 = 机器人瓦伊(韩) RWAP78 = 机器人瓦伊(欧) RWAR78 = 机器人瓦伊(俄) RWAU78 = 机器人瓦伊(英) RWAX78 = 机器人瓦伊(X) RWAY78 = 机器人瓦伊(Y) RWAZ78 = 机器人瓦伊(Z) RWBENR = 川崎雪橇(美) RWBXUG = 川崎雪橇(X) RWCE4Z = 荣誉弹珠台 威廉姆斯家族珍藏(美) RWCP4Z = 荣誉弹珠台 威廉姆斯家族珍藏(欧) RWCP6M = 威廉姆斯家族 经典弹珠台(欧) RWDC52 = 自制 吉他英雄 下载版(欧) RWDE5G = 野生大地 非洲之旅(美) RWDP5G = 野生大地 非洲之旅(欧) RWEEA4 = 实况足球2008[WiFi](美) RWEJA4 = 实况足球2008[WiFi](日) RWEPA4 = 实况足球2008[WiFi](欧) RWFH41 = 我的单词教练(荷) RWGE08 = 全民高尔夫[WiFi](美) RWGJ08 = 全民高尔夫(日) RWGP08 = 全民高尔夫[WiFi](欧) RWHP4F = 顶级王牌 神秘博士(欧) RWIE18 = 翼神之岛(美) RWIJ18 = 翼神之岛(日) RWIP18 = 翼神之岛(欧) RWJENR = 单词琼聚会(美) RWKE5G = 料理妈妈 世界厨房(美) RWKPGT = 料理妈妈 世界厨房(欧) RWLE01 = 瓦里奥大陆 摇动(美) RWLJ01 = 瓦里奥大陆 摇动(日) RWLK01 = 瓦里奥大陆 摇动(韩) RWLP01 = 瓦里奥大陆 摇动(欧) RWME78 = 百战天虫 怪异空间(美) RWMP78 = 百战天虫 怪异空间(欧) RWNF70 = 警告 公路规则(法) RWOE69 = 大富翁(美) RWOJ13 = 大富翁(日) RWOP69 = 大富翁(欧) RWQPSP = 真实世界斯诺克冠军赛2008(欧) RWRE4F = 古怪赛车 冲撞(美) RWRP4F = 古怪赛车 冲撞(欧) RWSE8P = 马里奥与索尼克在奥运会[WiFi](美) RWSJ01 = 马里奥与索尼克在北京奥运(日) RWSK01 = 马里奥与索尼克在奥运会[WiFi](韩) RWSP8P = 马里奥与索尼克在奥运会[WiFi](欧) RWTEG9 = BEN 10 外星神力(美) RWTPG9 = BEN 10 外星神力(欧) RWUE52 = X战警 金钢狼(美) RWUP52 = X战警 金钢狼(欧) RWUX52 = X战警 金钢狼(X) RWWE52 = 自制 吉他英雄 WWE The Hits(美) RWWE78 = 世界职业摔角2008[WiFi](美) RWWJ78 = 世界职业摔角2008[WiFi](日) RWWP78 = 世界职业摔角2008[WiFi](欧) RWWX78 = 世界职业摔角2008[WiFi](X) RWXES5 = 印第安武士 一个勇士的传说(美) RWXPS5 = 印第安武士 一个勇士的传说(欧) RWYPHH = 逃亡2 海龟之梦(欧) RWZE5G = 奇迹世界游乐园(美) RWZP5G = 奇迹世界游乐园(欧) RWZX5G = 奇迹世界游乐园(X) RX2E70 = 我和我的小马2(美) RX2P70 = 我和我的小马2(欧) RX3E01 = 激情漫游 特技竞速[WiFi](美) RX3J01 = 激情漫游 特技竞速(日) RX4E4Z = 鬼马小灵精 恐怖学校鬼怪的运动日(美) RX4PMT = 鬼马小灵精 恐怖学校鬼怪的运动日(欧) RX5E52 = 托尼霍克 直立滑行(美) RX5P52 = 托尼霍克 直立滑行(欧) RX6E78 = 减肥达人[平衡板](美) RX6P78 = 减肥达人[平衡板](欧) RX7JGD = 梅吉玛吉演奏比赛(日) RX8JA4 = 实况力量棒球NEXT(日) RX9E69 = 极品飞车 卧底(美) RX9J13 = 极品飞车 卧底(日) RX9K69 = 极品飞车 卧底(韩) RX9P69 = 极品飞车 卧底(欧) RX9X69 = 极品飞车 卧底(X) RX9Y69 = 极品飞车 卧底(Y) RXAE78 = 美国职业摔角联盟2010[WiFi](美) RXAP78 = 美国职业摔角联盟2010[WiFi](欧) RXBE70 = 后院棒球10(美) RXBP70 = 后院棒球10(欧) RXCE4Z = 戴夫·米拉自行车越野挑战赛(美) RXCP4Z = 戴夫·米拉自行车越野挑战赛(欧) RXCPGT = 戴夫·米拉自行车越野挑战赛(欧) RXDD4Q = 灵机一动(德) RXDE4Q = 灵机一动(美) RXDJ4Q = 灵机一动(日) RXDP4Q = 灵机一动(欧) RXDR4Q = 灵机一动(俄) RXDX4Q = 灵机一动(X) RXDY4Q = 灵机一动(Y) RXEJDA = 棒球大联盟Wii(日) RXFEVN = 海洋大亨(美) RXGE6K = 吉纶立方(美) RXGP6K = Geon Cube RXHF5D = 混沌之家(法) RXIE52 = 变形金刚2 卷土重来[WiFi](美) RXIP52 = 变形金刚2 卷土重来[WiFi](欧) RXJJDA = 人生游戏Wii EX(日) RXKEGL = 电视秀之王聚会(美) RXKFGL = 电视秀之王聚会(法) RXKPGL = 电视秀之王聚会(欧) RXLE41 = 实习医生格蕾(美) RXLP41 = 医生格蕾(欧) RXMJ8P = 手舞足蹈填字谜(日) RXNEXS = 又上钩啦 实感钓鱼(美) RXNJJF = 鲈鱼钓手Wii 世界锦标赛[MP](日) RXNPGT = 大收获 巴斯钓鱼2[MP](欧) RXPEXS = 实感钓鱼[WiFi](美) RXPJJF = 实感钓鱼[WiFi](日) RXPPGT = 实感钓鱼[WiFi](欧) RXQEWR = 野兽家园(美) RXQPWR = 野兽家园(欧) RXRERS = 浪漫鼠德佩罗(美) RXRPRS = 浪漫鼠德佩罗(欧) RXRXRS = 浪漫的老鼠(欧) RXSPA4 = 热舞生涯 劲爆舞会[跳舞毯](欧) RXUE41 = 冲浪企鹅(美) RXUP41 = 冲浪企鹅(欧) RXUX41 = 冲浪企鹅(X) RXVXWP = 填字游戏(X) RXWE20 = 巧克力豆海滩聚会(美) RXXE4Q = 化石超进化 起源(美) RXXJ4Q = 化石超进化 起源(日) RXXP4Q = 化石超进化 起源(欧) RXYE4Z = 更多的难题挑战(美) RXYP4Z = 更多的难题挑战(欧) RXZE52 = 卡贝拉危险狩猎2009(美) RXZP52 = 卡贝拉危险狩猎2009(欧) RY2E41 = 雷曼 疯狂兔子2[WiFi](美) RY2J41 = 雷曼 疯狂兔子2[WiFi](日) RY2K41 = 雷曼 疯狂兔子2[WiFi](韩) RY2P41 = 雷曼 疯狂兔子2[WiFi](欧) RY2R41 = 雷曼 疯狂兔子2[WiFi](俄) RY3E41 = 雷曼 疯狂兔子 电视聚会[平衡板](美) RY3J41 = 雷曼 疯狂兔子 电视聚会[平衡板](日) RY3K41 = 雷曼 疯狂兔子 电视聚会[WiFi][平衡板](韩) RY3P41 = 雷曼 疯狂兔子 电视聚会[WiFi][平衡板](欧) RY4J8P = 噗哟噗哟7(日) RY5E52 = 夏日运动大联盟(美) RY5P52 = 夏日运动大联盟(欧) RY6EA4 = 去户外吧[平衡板][跳舞毯](美) RY6PA4 = 节拍漫步[平衡板][跳舞毯](欧) RY7PHZ = 忍者首领(欧) RY8EFS = 巴斯专业店 鱼饵(美) RYAJDA = 小双侠Wii 噗通噗通大赛车(日) RYAJSC = 小双侠赛车 Wii 惊心动魄机器猛竞速 RYBE69 = 轰炸方块 猛击聚会[WiFi](美) RYBP69 = 轰炸方块 猛击聚会[WiFi](欧) RYDELT = 宠物伴侣 动物医生(美) RYDP6V = 宠物伴侣 动物医生(欧) RYEEEB = 101合1 聚会游戏大合集(美) RYEPHZ = 101合1 聚会游戏大合集(欧) RYGE9B = 阿尔戈斯战士 筋肉冲击(美) RYGJ9B = 阿尔戈斯战士 筋肉冲击(日) RYGP99 = 阿尔戈斯战士 筋肉冲击(欧) RYHES5 = 虚拟宇宙 扭曲之塔(美) RYHPS5 = 虚拟宇宙 扭曲之塔(欧) RYIE9B = 涂鸦王子(美) RYIP9B = 涂鸦王子(欧) RYJPTV = 莉莉菲公主 魔法小仙女(欧) RYKEAF = 世界滑雪&滑雪板[平衡板](美) RYKJAF = 家庭滑雪:世界滑雪&滑雪板(日) RYKPAF = 世界滑雪&滑雪板[平衡板](欧) RYLDSV = 德国顶级模特(德) RYNE6U = 哈迪男孩 隐藏的盗窃(美) RYNP6V = 哈迪男孩 隐藏的盗窃(欧) RYOEA4 = 游戏王5D's 破碎转轮(美) RYOJA4 = 游戏王5D's 破碎转轮(日) RYOPA4 = 游戏王5D's 破碎转轮(欧) RYQE69 = 打破砂锅问到底(美) RYQP69 = 打破砂锅问到底(欧) RYQX69 = 打破砂锅问到底(X) RYRE41 = 你的塑身(美) RYRP41 = 你的塑身(欧) RYTE4Z = 职业牛仔骑士公司 斜道之外(美) RYVEMS = 街机射击 爱贝罗(美) RYVJMS = 伊鲁贝罗Wii(日) RYWE01 = 轻松头脑教室(美) RYWJ01 = 轻松头脑教室(日) RYWK01 = 轻松头脑教室(韩) RYWP01 = 轻松头脑教室(欧) RYXE20 = 雅马哈超级摩托(美) RYXP7J = 雅马哈超级摩托(欧) RYZE6U = 世界派对游戏[平衡板](美) RYZPTV = 游玩天下[平衡板](欧) RZ2JG9 = 简单Wii系列1 大家一起赛车[WiFi](日) RZ3JG9 = 简单Wii系列2 大家一起钓鱼[WiFi](日) RZ4JG9 = 简单Wii系列3 赌场聚会[WiFi](日) RZ5JG9 = 简单Wii系列4 战斗射击[WiFi](日) RZ6JG9 = 简单Wii系列5 打砖块[WiFi](日) RZ7JG9 = 简单Wii系列6 喧哗枪战[WiFi](日) RZ8JG9 = 简单2000系列1 桌面游戏(日) RZ9EG9 = 家庭聚会 30游戏(美) RZ9JG9 = 简单2000系列2 家庭聚会(日) RZ9PG9 = 简单2000系列2 家庭聚会(欧) RZAPTV = 力量数学(欧) RZCE6K = 大圣王(美) RZDC01 = 塞尔达传说 黎明公主(ACG汉化简体中文版) RZDE01 = 塞尔达传说 黎明公主(美) RZDJ01 = 塞尔达传说 黎明公主(日或中) RZDK01 = 塞尔达传说 黎明公主(韩) RZDP01 = 塞尔达传说 黎明公主(欧) RZEE52 = 科学爸爸(美) RZEP52 = 科学爸爸(欧) RZFPKM = 秘密档案2 清心(欧) RZHE5G = 动物医院[WiFi](美) RZHP5G = 动物医院[WiFi](欧) RZHX5G = 动物医院[WiFi](X) RZIE20 = 冬季运动会3 超级联赛[WiFi](美) RZIPRT = RTL冬季运动会2010(欧) RZJD69 = 死亡空间 撤离(德) RZJE69 = 死亡太空 撤离(美) RZJJ13 = 死亡太空 撤离(日) RZJP69 = 死亡太空 撤离(欧) RZKE20 = 谜题王国(美) RZKP7J = 谜题王国(欧) RZLE41 = 烹饪战争(美) RZLP41 = 烹饪聚会(欧) RZNJ01 = 斩击的女武神(日) RZOE78 = 动物园世界(美) RZOP78 = 动物园世界(欧) RZPE01 = 林克的弓箭训练(美) RZPJ01 = 林克的弓箭训练(日或中) RZPK01 = 林克的弓箭训练(韩) RZPP01 = 林克的弓箭训练(欧) RZREGT = 佐罗的宿命(美) RZRPGT = 佐罗的宿命(欧) RZSEGJ = 极速地带(美) RZSP68 = 飞速赛车(欧) RZTE01 = Wii运动 度假胜地[MP](美) RZTJ01 = Wii运动 度假胜地[MP](日) RZTK01 = Wii运动 度假胜地[MP](韩) RZTP01 = Wii运动 度假胜地[MP](欧) RZTW01 = Wii运动 度假胜地[MP] RZUE4Z = 彩色之旅(美) RZYE41 = 我的单词教练(美) RZYF41 = 我的单词教练(法) RZYP41 = 我的单词教练(欧) RZYS41 = 我的单词教练(西) RZZE8P = 疯狂世界(美) RZZJEL = 疯狂世界(日) RZZP8P = 疯狂世界(欧) S02PES = 自制 唱吧 下载版(欧) S22JAF = 家庭钓鱼(日) S22K01 = Family Fishing S25JGD = 勇者斗恶龙25周年纪念 FC & SFC 勇者斗恶龙1、2、3 (日) S26PML = 2-in-1: Pony Friends 2 + My Riding Stables: Life with Horses S2AEAF = 运动生活 探险家(美) S2AJAF = 运动生活 探险家(日) S2APAF = 运动生活 探险家(欧) S2BEPZ = 乡村舞蹈2(美) S2BPXT = Country Dance 2 S2CE54 = 新嘉年华游戏[MP](美) S2CP54 = 新嘉年华游戏[MP](欧) S2DPML = 跳吧!这是你的舞台[平衡板](欧) S2EE41 = ABBA: You Can Dance(美) S2EP41 = ABBA: You Can Dance(欧) S2HE70 = 鬼屋(美) S2HP70 = 鬼屋(欧) S2IE8P = 钢铁人2(美) S2IP8P = 钢铁人2(欧) S2LE01 = 神奇宝贝乐园 2 (美) S2LJ01 = 神奇宝贝乐园 2(日) S2LP01 = 神奇宝贝乐园 2(欧) S2ME69 = Madden NFL 13 S2OEFS = 巴斯专业店鱼饵 锦标赛版(美) S2PEA4 = 实况足球 中场指挥官 2012(美) S2PJA4 = 实况足球 中场指挥官 2012(日) S2PPA4 = 实况足球 中场指挥官 2012(欧) S2PXA4 = 实况足球 中场指挥官 2012(欧) S2PYA4 = 实况足球 中场指挥官 2012(欧) S2QE54 = NBA 2K12(美) S2QP54 = NBA 2K12(欧) S2RPNK = 目标狙击(美) S2TJAF = 太鼓达人Wii 大张旗鼓!二代目(日) S2VEG9 = Victorious: Taking the Lead S2VPAF = Victorious: Taking the Lead S2WE78 = WWE激爆职业摔角 全明星大赛(美) S2WP78 = WWE激爆职业摔角 全明星大赛(欧) S2XE41 = 蓝色小精灵2(美) S2XP41 = 蓝精灵2(欧) S2YE52 = Wipeout: Create & Crash S2ZE52 = 开心鼠园2(美) S2ZP52 = 开心鼠园2(欧) S3AE5G = 电影空间大冒险(美) S3BEWR = 蝙蝠侠 英勇与无畏(美) S3BPWR = 蝙蝠侠 英勇与无畏(欧) S3CENR = 三冠王滑雪锦标赛[平衡板](美) S3DE18 = 德卡运动会3[MP][WiFi](美) S3DJ18 = 德卡运动会3[MP][WiFi](日) S3DP18 = 德卡运动会3[MP][WiFi](欧) S3EE78 = 芭比娃娃 时尚风格(美) S3EP78 = 芭比娃娃 时尚风格(欧) S3FE69 = FIFA Soccer 13 S3FP69 = FIFA 足球 13 S3FX69 = FIFA 13 S3GE20 = 冰川赛车3(美) S3GPXT = Glacier 3 S3HJ08 = 战国 BASARA3 宴(日) S3IEA4 = Pro Evolution Soccer 2013 S3IPA4 = 实况足球2013 欧版 S3IXA4 = Pro Evolution Soccer 2013 S3IYA4 = Pro Evolution Soccer 2013 S3LPY1 = Andrew Lloyd Webber Musicals: Sing and Dance S3ME69 = 模拟人生3(美) S3MP69 = 模拟人生3(欧) S3PE4Q = 迪士尼公主 我的童话冒险(美) S3PP4Q = 迪士尼公主 我的童话冒险(欧) S3PX4Q = 迪士尼公主 我的童话冒险(欧) S3RJMS = 一闪女皇(日) S3SJ18 = 卡拉OK Joysound Wii超级DX版 好歌一起唱(日) S3TJAF = 太鼓达人Wii 大家的聚会!三代目(日) S3WEG9 = 家庭聚会 30大冬季游戏(美) S3WPG9 = 家庭聚会 30大冬季游戏(欧) S3XE78 = WWE '13 S3XP78 = WWE摔跤13 S3ZE52 = MIB黑衣人3(美) S3ZP52 = MIB黑衣人3(欧) S4MJGD = 勇者斗恶龙 10 觉醒的五个种族 Online(日) S4SJGD = Dragon Quest X: Nemureru Yuusha to Michibiki no Meiyuu Online S4TJAF = 太鼓达人Wii 决定版(日) S59E01 = 战国无双 3(美) S59JC8 = 战国无双 3(日) S59P01 = 战国无双 3(欧) S5BETL = 回到未来(美) S5BPKM = Back to the Future: The Game S5KJAF = 太鼓达人Wii 超豪华版(日) S5QJC8 = 战国无双3 猛将传(日) S5RESZ = Ram Racing S5RPNJ = Ram Racing S5SJHF = 闪电十一人GO时空之石 王牌前锋 2013(日) S5TEG9 = Ben 10: 全能宇宙 S5TPAF = Ben 10: Omniverse S5WE20 = 在50个游戏里环游世界(美) S6BE4Q = 勇敢传说(美) S6BP4Q = 勇敢传说(欧) S6BY4Q = Brave: The Video Game S6IE78 = 迪斯尼公主故事书(美) S6IP78 = 迪斯尼公主故事书(美) S6RE52 = 无敌破坏王(美) S6RP52 = 无敌破坏王(欧) S6TJGD = Dragon Quest X (All in One Package) S72E01 = Kirby's Dream Collection: Special Edition S72J01 = 星之卡比 20周年纪念合集 S75E69 = 大富翁 风华大街(美) S75P69 = 大富翁 风华大街(欧) S7AEWR = 乐高蝙蝠侠2 DC超级英雄(美) S7AKWR = LEGO Batman 2: DC Super Heroes S7AKZA = Lego Superheroes 1 S7APWR = 乐高蝙蝠侠2 DC超级英雄(欧) S7BE69 = 棋盘游戏(美) S7BP69 = 棋盘游戏(欧) S7CJAF = 假面骑士 巅峰英雄 Fourze(日) S7DE52 = 愤怒的小鸟:星球大战 S7DP52 = Angry Birds: Star Wars S7EP52 = Transformers: Ultimate Battle Edition S7FE5G = Zumba Kids S7FPGT = Zumba Kids: The Ultimate Zumba Dance Party S7JPKM = Let's Sing 6 - Spanish version S7KPKM = Let's Sing 2014 S7SP41 = The Smurfs Party Pack S80U3Q = 自制 唱吧 下载版(欧) SA3E5G = 艾尔文与金花鼠 3(美) SA3P5G = Alvin and the Chipmunks: Chipwrecked SA5E78 = 你比小学五年级聪明吗?开学(美) SA6EG9 = Ben 10 银河赛车(美) SA6PAF = Ben 10 银河赛车(美) SA7ESZ = 橡皮糖熊的魔法勋章(美) SA8P52 = The Amazing Spider-Man SA9D7K = Bibi und Tina Das grosse Reiterfest SAAJA4 = Winning Eleven PLAY MAKER 2013 SABENR = 外星怪兽保龄球联赛[MP](美) SABPJG = 外星怪兽保龄球联赛[MP](欧) SACPVS = ACB Total 2010/2011 SACSVS = ACB Total 2010/2011 SADE70 = 后院运动 沙地强打者(美) SAFUHS = 澳大利亚橄榄球联赛(英) SAGE41 = 极速前进(美) SAHE69 = Hasbro: Family Game Night Fun Pack SAJE52 = 坎贝拉生存大冒险 卡特迈的阴影(美) SAJP52 = 坎贝拉生存大冒险 卡特迈的阴影(欧) SAKENS = 樱花大战5 再见吾爱(美) SAKPNS = 樱花大战5 再见吾爱(欧) SALE4Q = 爱丽丝漫游仙境(美) SALP4Q = 爱丽丝漫游仙境(欧) SAME01 = New Super Mario Bros. Wii 11 American Revolution SANE01 = New Super Mario Bros. Wii Five Spica Edition SANEFS = 巴斯专业店 狩猎 奖杯赛(美) SANT3Q = 自制 唱吧 下载版(欧) SAOE78 = Monster High: Ghoul Spirit SAOP78 = 怪物美少女 尸鬼精灵(欧) SAQE5G = Harley Pasternak's Hollywood Workout SARE4Z = 阿拉丁魔毯竞速[平衡板](美) SARP01 = New Super Mario Bros. Wii 4 Arcadia Another Ride SARPNK = 阿拉丁魔毯竞速[平衡板](欧) SASEWW = Atrévete a Soñar SATE6K = 查克E奶酪的超级收藏(美) SAUJ8P = 魔法气泡! 20周年纪念版(日) SAVE5G = 艾尔文与花栗鼠 明星俱乐部(美) SAVX5G = 艾尔文与金花鼠 明星俱乐部(欧) SAWE52 = 愤怒的小鸟 三部曲(美) SAWP52 = 愤怒的小鸟 三部曲(欧) SAXPFH = Max & the Magic Marker SAYE20 = 新兵训练营学院(美) SAYP41 = 新兵训练营学院(欧) SAZE52 = 蜘蛛人 惊奇再起(美) SAZP52 = 蜘蛛人 惊奇再起(欧) SB2ES5 = 我宝宝的第一步(美) SB2PNP = 我的宝贝2[WiFi](欧) SB3E08 = 战国 BASARA 3(美) SB3J08 = 战国 BASARA 3(日) SB3P08 = 战国 BASARA 3(欧) SB4C01 = 超级马里奥银河2(ACG汉化简体中文版) SB4E01 = 超级马里奥银河2(美) SB4E02 = Neo Mario Galaxy SB4E03 = Super Mario Galaxy: Plumber's Way SB4E04 = Super Mario Sunshine Galaxy SB4E05 = Season Cycle Galaxy SB4E25 = Super Mario Galaxy 2.5 SB4J01 = 超级马里奥银河2(日) SB4J02 = Neo Mario Galaxy SB4J05 = Season Cycle Galaxy SB4K01 = 超级马里奥银河2(韩) SB4P01 = 超级马里奥银河2(欧) SB4P02 = Neo Mario Galaxy SB4P05 = Season Cycle Galaxy SB4W01 = 超级马里奥银河2 SB5E54 = NBA 2K11[WiFi](美) SB5P54 = NBA 2K11[WiFi](欧) SB6E52 = 爆丸 核心守护者(美) SB6P52 = 爆丸 核心守护者(欧) SB7IVU = Planet Basket 2009/2010 SB8EQH = 汉堡博特(美) SB9E78 = 芭比娃娃 照顾小狗(美) SB9P78 = 芭比娃娃 照顾小狗(欧) SBAJGD = 勇者斗恶龙 怪兽战斗之路 胜利(日) SBBE18 = 金属战斗陀螺 对决大赛场(美) SBBJ18 = 金属战斗陀螺 对决大赛场(日) SBBP18 = 金属战斗陀螺 对决大赛场(欧) SBCJ2N = 比利的训练营Wii 享受减肥(日) SBDE08 = 生化危机 暗黑编年史[WiFi](美) SBDJ08 = 生化危机 暗黑编年史[WiFi](日) SBDK08 = 生化危机 暗黑编年史[WiFi](韩) SBDP08 = 生化危机 暗黑编年史[WiFi](欧) SBEPSV = 百慕大三角 拯救珊瑚礁(欧) SBFE70 = 后院橄榄球10(美) SBHEFP = 雷明顿美洲猎鸟记(美) SBHPNK = 雷明顿美洲猎鸟记(欧) SBIEVZ = 勤劳理发师(美) SBIPVZ = 勤劳理发师(欧) SBJEG9 = BEN 10 外星神力 终极异型(美) SBJPAF = BEN 10 外星神力 终极异型(欧) SBKEPZ = 布朗斯威克 宇宙领域保龄球[MP](美) SBLE5G = 男孩与软泥(美) SBLP5G = 男孩与软泥(欧) SBNEG9 = BEN 10 外星神力 维尔加科斯的攻击(美) SBNPG9 = BEN 10 外星神力 维尔加科斯的反击(欧) SBOD3Q = 自制 唱吧 下载版(欧) SBQE4Z = 雄鹿猎人(美) SBREJJ = 一起跳芭蕾[平衡板](美) SBRPKM = 一起跳芭蕾[平衡板](欧) SBSE01 = New Super Mario Bros. Wii 17 Bowser's Last Laugh SBSEFP = 雷明顿狩猎北美超级大满贯(美) SBSURN = 雷明顿狩猎北美超级大满贯(英) SBVE78 = 海绵宝宝 碰碰船竞速(美) SBVG3Q = 自制 唱吧 下载版(欧) SBVP78 = 海绵宝宝 碰碰船竞速(欧) SBVS78 = 海绵宝宝 碰碰船竞速(欧) SBWC11 = New Super Mario Bros. 3: The Wrath of Shadow Bowser SBWE5G = 育儿妈妈(美) SBWJRA = 育儿妈妈(日) SBWPGT = 育儿妈妈(欧) SBXEWR = 亿万未婚夫(美) SBYE41 = 起舞百老汇(美) SBYP41 = 起舞百老汇(欧) SBZESZ = 百慕大三角 拯救珊瑚礁(美) SC2E8P = 管道2[MP][WiFi](美) SC2P8P = 管道2[MP][WiFi](欧) SC4E64 = 乐高星球大战3 克隆人战争(美) SC4P64 = 乐高星球大战3 克隆人战争(欧) SC5PGN = 挑战自我 填字游戏(欧) SC6PGN = 自我挑战 大脑智力题2(欧) SC7D52 = 使命召唤7 黑色行动[WiFi](德) SC7E52 = 使命召唤7 黑色行动(美) SC7F52 = 使命召唤7 黑色行动[WiFi](法) SC7I52 = 使命召唤7 黑色行动[WiFi](意) SC7P52 = 使命召唤7 黑色行动[WiFi](欧) SC7S52 = 使命召唤7 黑色行动[WiFi](西) SC8E01 = Wii遥控器Plus 动感欢乐组合[MP](美) SC8J01 = Wii遥控器Plus 动感欢乐组合[MP](日或中) SC8K01 = Wii Play: Motion SC8P01 = Wii遥控器Plus 动感欢乐组合[MP](欧) SC9P52 = 卡贝拉猎人2010(美) SCAE18 = 鬼铃 黑暗来电(美) SCAJ18 = 鬼铃 黑暗来电(日) SCAP18 = 鬼铃 黑暗来电(欧) SCBPNK = 自行车运动(欧) SCDE52 = 坎贝拉危险狩猎 2011(欧) SCDP52 = 坎贝拉危险狩猎 2011(欧) SCEE6K = 查克 E. 奶酪的聚会游戏(美) SCFPNK = 魔怪狂欢节(欧) SCGE20 = 凯文塔克的乡村狂欢 农场动物赛车锦标赛(美) SCGPXT = Calvin Tucker's: Farm Animals Racing Tournament SCHEQH = 加拿大狩猎(美) SCIE41 = CSI 致命阴谋(美) SCIP41 = CSI 致命阴谋(欧) SCJE4Q = 乐高神鬼奇航(美) SCJP4Q = 乐高神鬼奇航(欧) SCKE6K = 查克 E. 奶酪的运动游戏(美) SCMJAF = 假面骑士 巅峰英雄欧兹(日) SCNEA4 = 暮光之城(美) SCNPA4 = 暮光之城(欧) SCPE70 = 巨虫入侵ACT(美) SCQDRV = Schlag den Raab - Das 2. Spiel SCREJH = 小鸡大暴乱(美) SCRPJH = 小鸡大暴乱(欧) SCSE52 = 游轮度假游戏[MP](美) SCSPGR = 游轮度假游戏[MP](欧) SCTE01 = The Curse of Black Toad SCTPNK = 小魔怪惊喜(欧) SCUPFR = 疯狂小鸡嘉年华派对(欧) SCWE41 = 金牌体育 舞蹈锻炼[平衡板](美) SCWP41 = 我的健身教练 舞蹈锻炼[平衡板](欧) SCXESZ = 雪福来卡玛洛 野外驾驶(美) SCXPNJ = 雪福来卡玛洛 野外驾驶(美) SCYE4Q = 汽车总动员2(美) SCYP4Q = 汽车总动员2(欧) SCYX4Q = 汽车总动员2(欧) SCYY4Q = 汽车总动员2(欧) SCYZ4Q = 汽车总动员2(欧) SCZEMH = 疯狂机器(美) SCZPFR = 疯狂机器(欧) SD2E41 = 舞力全开2(美) SD2J01 = 舞力全开 Wii (日) SD2K41 = Just Dance 2 SD2P41 = 舞力全开2(欧) SD2Y41 = 舞力全开2 百思买版(美) SD3DSV = 健康教练 每天感觉好极了[平衡板](欧) SD5PTV = 小学学习检测 德语(欧) SD6PTV = 小学学习检测 英语1-4年级(欧) SD7PTV = 小学学习检测 数学(欧) SD8DSV = Mein neues Leben Abenteuer auf Tropicana SD9JAF = SD高达 扭蛋战争(日) SDAE01 = 自制 史酷比!冒险的兄弟(美) SDAE5G = 女孩们的勇敢游戏(美) SDBE78 = 颜料宝贝2(美) SDBP78 = 颜料宝贝2(欧) SDDPML = 两性终极之战[平衡板](欧) SDEE5G = 舞感[MP](美) SDFE4Q = 迪斯尼想唱就唱 合家欢唱版(美) SDFP4Q = 迪斯尼想唱就唱 合家欢唱版(欧) SDGE4Q = 迪斯尼全明星派对(美) SDGP4Q = 迪斯尼全明星派对(欧) SDHER3 = Super Smash Bros. Brawl Dark Hole/D.A.R.S. SDIE4Q = 迪斯尼想唱就唱 聚会欢唱版(美) SDIP4Q = 迪斯尼想唱就唱 聚会欢唱版(欧) SDJJAF = SD高达G世代:新世界(日) SDLE78 = 杜德大冒险(美) SDLP78 = 杜德大冒险(欧) SDMEG9 = 卑鄙的我(美) SDMPAF = 卑鄙的我(欧) SDNE41 = 舞力全开(美) SDNP41 = 舞力全开(欧) SDOPLR = 神秘博士 重返地球(欧) SDPE54 = 探险家朵拉 生日大冒险(美) SDPP54 = 探险家多拉 生日大冒险(欧) SDQJGD = Dragon Quest X Inishie no Ryu no Denshou Online SDREYG = 最强赛车大奖赛 改装车赛(美) SDRP3Q = 自制 唱吧 下载版(欧) SDRPNG = 改装车赛(欧) SDSPNG = We Dance(欧) SDTH3Q = 自制 唱吧 下载版(欧) SDTPGN = PDC世界飞镖锦标赛 职业巡回赛(欧) SDUE41 = 蓝色小精灵 舞蹈派对(美) SDUP41 = 蓝色小精灵(欧) SDUPO1 = 自制 新超级玛利欧兄弟DU版(欧) SDVE41 = 极道车魂 旧金山(美) SDVP41 = 极道车魂 旧金山(欧) SDWE18 = 黑影之塔(美) SDWJ18 = 黑影之塔(日) SDWP18 = 黑影之塔(欧) SDXE4Q = 迪士尼世界(美) SDXP4Q = 迪士尼世界(欧) SDYEA4 = 热舞革命[跳舞垫][平衡板](美) SDYPA4 = 热舞革命 最夯的派对 4[跳舞垫][平衡板](欧) SDZE41 = 舞力全开 儿童版(美) SDZP41 = 舞力全开 儿童版(欧) SE2E69 = EA运动活力2(美) SE2P69 = EA运动活力2[平衡板](欧) SE3E41 = 舞力全开 2015 SE3P41 = Just Dance 2015 SEAE69 = EA运动活力 更多锻炼[平衡板](美) SEAJ13 = EA运动活力 更多锻炼[平衡板](日) SEAP69 = EA运动活力 更多锻炼[平衡板](欧) SECE69 = EA创造(美) SECP69 = EA创造(欧) SEGA = Genplus GX SEGE6U = 瑜伽[平衡板](美) SEGP6V = 瑜伽[平衡板](欧) SEKJ99 = 活祭之夜(日) SELE69 = FIFA足球11[WiFi](美) SELP69 = FIFA足球11[WiFi](欧) SELX69 = FIFA足球11[WiFi](欧) SEME4Q = 米老鼠传奇(美) SEMJ01 = 米老鼠传奇(日) SEMP4Q = 米老鼠传奇(欧) SEMX4Q = 米老鼠传奇(X) SEMY4Q = 传奇米老鼠(欧) SEMZ4Q = 传奇米老鼠(欧) SENPZX = Enclave: Shadows of Twilight SEOP01 = New Super Mario Bros. Wii 8 Omega SEOP4Q = 自制 唱吧 下载版(欧) SEPE41 = 黑眼豆豆大体验(美) SEPP41 = 黑眼豆豆大体验(欧) SEPX41 = The Black Eyed Peas Experience D1 Edition SEPZ41 = 黑眼豆豆大体验(美) SERE4Q = 传奇米老鼠2:双重力量(美) SERF4Q = 传奇米老鼠2:双重力量(欧) SERK4Q = Disney Epic Mickey 2: The Power of Two SERP4Q = 传奇米老鼠2:双重力量(欧) SERV4Q = 传奇米老鼠2:双重力量(欧) SESEWR = Sesame Street: Ready, Set, Grover! SESPWR = Sesame Street: Ready, Set, Grover! SESUWR = Sesame Street: Ready, Set, Grover! SEZJHF = 闪电十一人 强袭者 2012极限版(日) SF2P64 = 星际大战 原力解放2(欧) SF4E20 = 横冲直撞(美) SF4PXT = Flatout SF5E41 = 六步健身法(美) SF5J41 = 健身工坊(日) SF5P41 = 我的健身教练俱乐部(欧) SF7E41 = 家庭智力抢答2012版(美) SF8E01 = 大金刚国度 回归(美) SF8J01 = 大金刚国度 回归(日) SF8P01 = 大金刚国度 回归(欧) SFAE41 = 家庭对抗 智力问答(美) SFAJGD = 钢之炼金术师 黄昏少女(日) SFBE70 = 后院运动 菜鸟向前冲(美) SFDE01 = New Super Mario Bros. Wii 9 Virtue: This Fall Darkness SFDEAF = 家庭训练机 梦幻主题乐园(美) SFDJAF = 家庭训练机 梦幻主题乐园(日) SFDPAF = 家庭訓練機 夢幻主題樂園(歐) SFGE69 = 孩之宝家庭游戏之夜4 游戏节目(美) SFGP69 = Hasbro: Family Game Night 4 - The Game Show SFHEFP = 户外活动合集(美) SFIE01 = 神秘档案 百灵泉(美) SFIP01 = 神秘案件档案(欧) SFKEG9 = 家庭派对 欢乐瘦身[平衡板](美) SFKPAF = 家庭派对 欢乐瘦身[平衡板](欧) SFLDSV = 诅咒的复活节岛(德) SFOEAF = 网络食谱 烹饪对战(美) SFPPFR = 梦幻足球派对(欧) SFQE8P = 美国队长 超级士兵(美) SFQP8P = 美国队长 超级士兵(欧) SFRDRV = 健身乐趣[平衡板](欧) SFRPXT = 健身娱乐[平衡板](欧) SFSPGT = 全方位猎手(欧) SFTE78 = 财富之轮(美) SFTP78 = 财富之轮(欧) SFUE64 = 星际大战 原力解放2(美) SFVEXJ = 钓鱼度假村(美) SFWE69 = 2010南非世界杯足球赛(美) SFWJ13 = 2010南非世界杯足球赛(日) SFWK13 = 2010 FIFA World Cup: South Africa SFWK69 = 2010南非世界杯足球赛(韩) SFWP69 = 2010南非世界杯足球赛(欧) SFWX69 = 2010南非世界杯足球赛(法) SFWY69 = 2010南非世界杯足球赛(欧) SFWZ69 = 2010南非世界杯足球赛(美) SFXPKM = 英国偶像(欧) SFXXKM = 英国偶像(欧) SFYEG9 = 家庭聚会 90个丰富好游戏(美) SFYPAF = 家庭聚会 90个丰富好游戏(欧) SFZEPZ = 雉鸡永存(美) SFZPXT = 雉鸡永存(欧) SG2EFS = 疯狂迷你高尔夫2[MP](美) SG2XUG = 疯狂迷你高尔夫2[MP](美) SG2YFS = 疯狂迷你高尔夫2[MP](美) SG3DSV = 德国顶级模特2010[平衡板](德) SG5PSV = 家庭测验(欧) SG6DSV = 伽利略家庭测验(欧) SG7E20 = 加菲猫 拉萨尼亚危机[MP][平衡板](美) SG7PVL = 加菲猫 拉萨尼亚危机[MP][平衡板](欧) SG8EG9 = 瑜伽熊(美) SG8PAF = 瑜珈熊(欧) SG9EYC = 捣蛋鬼 小魔怪(美) SGAE8P = 剑斗士传奇(美) SGAP8P = 剑斗士传奇(欧) SGBE5G = 极限漆球大赛2(美) SGCE20 = 冰川赛车2(美) SGDEJJ = 花园一起玩(美) SGDPKM = 花园一起玩(欧) SGEEG9 = 国家地理杂志问答 野生动物(美) SGEPLG = 国家地理杂志问答 野生动物(欧) SGHE41 = 汤姆克兰西 幽灵行动[WiFi](美) SGHP41 = 汤姆克兰西 幽灵行动[WiFi](欧) SGI1CL = 自制 唱吧 下载版(欧) SGI1DB = 自制 唱吧 下载版(欧) SGI1MC = 自制 唱吧 下载版(欧) SGI1ML = 自制 唱吧 下载版(自) SGI1PT = 自制 唱吧 下载版(自) SGI1RC = 自制 唱吧 下载版(自) SGIEA4 = GTI汽车俱乐部 世界城市竞速(美) SGIJA4 = GTI汽车俱乐部 世界城市竞速(日) SGIPA4 = GTI汽车俱乐部 世界城市竞速(欧) SGJDSV = 神秘伽利略米达斯王冠(德) SGJPSV = The Crown of Midas SGKEC8 = 冠军骑师 骑师之道&风速神驹(美) SGKJC8 = 冠军骑师:风速神驹&骑师之道(日) SGKPC8 = 冠军骑师 骑师之道&风速神驹(欧) SGLEA4 = 高米迪战士 自然之王(美) SGLPA4 = 高米迪战士 自然之王(欧) SGNE69 = Hasbro: Family Game Night Value Pack SGODKP = 迷你高尔夫度假村(欧) SGOETV = 迷你高尔夫度假村(美) SGPEYG = 最强赛车大奖赛 GP经典(美) SGPPNG = 经典赛车大奖赛(欧) SGPTI1 = Sing It Party SGQDSV = 德国顶级模特2011[平衡板](德) SGREGT = 油脂劲歌热舞[平衡板](美) SGRPGT = 油脂劲歌热舞[平衡板](欧) SGSESZ = 家庭游戏秀(美) SGSP7J = 家庭游戏秀(欧) SGTEFS = 我的私人高尔夫教练 IMG大卫利佰特高尔夫学院[MP][平衡板](美) SGTPUG = 我的私人高尔夫教练 IMG大卫利佰特高尔夫学院[MP][平衡板](欧) SGUE4Q = 侦探家族(美) SGVEAF = 欢乐假期(美) SGVJAF = 欢乐假期(日) SGVPAF = 欢乐假期(欧) SGWD7K = 比比小魔女(德) SGXE41 = 巨兽之战 恐龙袭击(美) SGXP41 = 巨兽之战 恐龙袭击(欧) SGYESZ = 橡胶熊迷你高尔夫[MP](美) SGYPNJ = 橡胶熊迷你高尔夫(欧) SH2JMS = 轻松学跳草裙舞(日) SH3E54 = 北美冰球联盟2011[MP][WiFi](美) SH3P54 = 北美冰球联盟2011[MP][WiFi](欧) SH4EFP = 战火纷飞 阿富汗(美) SH4PNK = Heavy Fire: Afghanistan SH5E69 = 哈利波特 死神的圣物 下集(美) SH5P69 = 哈利波特 死神的圣物 下集(美) SH6E52 = 坎贝拉狩猎2012(美) SH6P52 = Cabela's Big Game Hunter 2012 SH7ESZ = 本田热力四射(美) SH7PNJ = 狂热本田沙滩车(欧) SH8E52 = 坎贝拉冒险夏令营(美) SH8P52 = 坎贝拉冒险夏令营(美) SH9ESZ = 希斯与利夫 火速狂飙(美) SHBE69 = 孩之宝 家庭游戏之夜3(美) SHBP69 = 孩之宝 家庭游戏之夜3(欧) SHDE52 = 驯龙高手(美) SHDP52 = 驯龙高手(美) SHEDRM = 农场(德) SHFE20 = 篮球名人堂 极限挑战(美) SHGDRM = 假日游戏[MP](欧) SHHE69 = 哈利波特与死神的圣物 上集(美) SHHP69 = 哈利波特与死神的圣物 上集(欧) SHIJ2N = 有氧拳击2 Wii快乐瘦身(日) SHKE20 = 凯蒂猫 四季(美) SHKPNQ = 凯蒂猫 四季(欧) SHLPA4 = 寂静岭 破碎的记忆(欧) SHMPLR = 调皮的亨利(欧) SHNE41 = 肖恩怀特滑板[平衡板](美) SHNP41 = 肖恩怀特滑板[平衡板](欧) SHOXKR = 雨果 巨魔树林里的魔法(X) SHOYKR = 雨果 巨魔树林里的魔法(Y) SHPE5G = 我们的家 聚会[WiFi](美) SHSE20 = 超级战斗机(美) SHSPXT = Hyper Fighters SHTE20 = 马修斯狩猎弓[MP](美) SHUE52 = 坎贝拉危险狩猎 2011 特别版(美) SHVE78 = 风火轮赛车 赛道攻击(美) SHVP78 = 风火轮赛车 赛道攻击(欧) SHWE41 = 好莱坞广场(美) SHXEWR = 快乐大脚2(美) SHXPWR = 快乐大脚2(欧) SHYE69 = NHL冰球 强打(美) SHYP69 = NHL冰球 强打(欧) SHZENR = 哈雷摩托公路狂飙(美) SI3E69 = FIFA足球12(美) SI3P69 = FIFA足球12(欧) SI3X69 = FIFA足球12[WiFi](欧) SIABOH = 自制 唱吧 Placebo SIAE52 = 冰河世纪4 大陆漂移(美) SIAP52 = 冰原历险记4 板块漂移(欧) SIBBHJ = 自制 唱吧 下载版(自) SIDE54 = 席德梅尔的海盗(美) SIDP54 = 席德梅尔的海盗(欧) SIESP1 = 自制 唱吧 Canciones en Español SIFESZ = 弗兰克斯坦博士岛(美) SIFPNJ = 弗兰克斯坦博士岛(欧) SIFPOH = 自制 唱吧 Fussballhits SIHE4Z = Sing 4: The Hits Edition SIIE8P = 马里奥与索尼克在伦敦奥运[WiFi](美) SIIJ01 = 马里奥与索尼克在伦敦奥运[WiFi](日) SIIP8P = 马里奥与索尼克在伦敦奥运[WiFi](欧) SIJE52 = 我是凯利2 加入我们(美) SIJP52 = 我是凯利2 加入我们(欧) SILE78 = 百战天虫 战斗岛[WiFi](美) SILP4Q = 自制 唱吧 下载版(欧) SILP78 = 百战天虫 战斗岛[WiFi](欧) SIME69 = 模拟人生合集(美) SINPNG = 我们歌唱 罗比 威廉斯(欧) SIPE7T = I SPY Game Pack SIS1OH = 自制 唱吧 下载版(欧) SIS2OH = 自制 唱吧 ABBA(欧) SIS3OH = 自制 唱吧 下载版(欧) SIS4OH = 自制 唱吧 下载版(PAL) SIS5OH = 自制 唱吧 下载版(欧) SIS7OH = 自制 唱吧 下载版(欧) SIS80Q = 自制 唱吧 Ultimate 80's SIS80S = 自制 唱吧 '80s Volume 1 v1.2 SIS90H = 自制 唱吧 下载版(欧) SIS9OH = 自制 唱吧 90年代(欧) SISACD = 自制 唱吧 AC/DC SISAOH = 自制 唱吧 Après滑雪派对(欧) SISBOH = 自制 唱吧 下载版(欧) SISCOH = 自制 唱吧 下载版(欧) SISCS1 = 自制 唱吧 Chartsurfer Vol. 1 SISDAE = SingItStar Die Ärzte SISDEM = SingItStar Depeche Mode SISDOH = 自制 唱吧 下载版(欧) SISENR = 伊莎贝拉公主 女巫的诅咒(美) SISHOH = 自制 唱吧 下载版(欧) SISJ0Q = 骨盆瘦身[平衡板](日) SISLIP = StarSing : Linkin Park v1.2 SISLOH = 自制 唱吧 下载版(欧) SISMEL = 自制 唱吧 生日快乐Mélanie v1.1(欧) SISMJ1 = 自制 唱吧 下载版(自) SISMOH = 自制 唱吧 下载版(欧) SISP10 = 自制 唱吧 下载版(欧) SISP12 = 自制 唱吧 下载版(欧) SISP34 = 自制 唱吧 下载版(欧) SISPBC = 自制 唱吧 Britney vs Christina(欧) SISPOH = 自制 唱吧 下载版(欧) SISPOP = 自制 唱吧 下载版(欧) SISPUH = 伊莎贝拉公主 女巫的诅咒(欧) SISQ3Q = 自制 唱吧 下载版(欧) SISR3Q = 自制 唱吧 下载版(欧) SISREU = 自制 唱吧 摇滚v1.1(欧) SISRP4 = 自制 唱吧 下载版(欧) SISSOH = 自制 唱吧 下载版(欧) SISTDK = 自制 唱吧 土耳其聚会(欧) SITPNG = 我们歌唱 德国(欧) SIUUNG = 我们歌唱 南澳洲(欧) SIXE01 = New Super Mario Bros Wii 16 Revelations SIXE41 = Drawsome! Tablet SJ2EWR = 史酷比 幽灵沼泽(美) SJ2PWR = 史酷比 幽灵沼泽(欧) SJ3JDA = 人生游戏 欢乐家庭(日) SJ3PNL = Jakers! Kart Racing SJ5JDA = 人生游戏 快乐家庭 当地题材增量版(日) SJ6E41 = 舞力全开:迪士尼派对 SJ6P41 = Just Dance Disney Party SJ7E41 = Just Dance Kids 2014 SJ7P41 = Just Dance Kids 2014 SJ9E41 = 舞力全开 夏日派对 SJ9P41 = Just Dance 2: Extra Songs SJAE5G = JAWS: Ultimate Predator SJBE52 = 詹姆斯邦德007 黄金眼(美) SJBJ01 = 007 黄金眼(日) SJBP52 = 詹姆斯邦德007 黄金眼(欧) SJCEZW = Jerry Rice & Nitus' Dog Football SJDE41 = 舞力全开 3(美) SJDJ01 = 舞力全开Wii 2 SJDK41 = Just Dance 3 SJDP41 = 舞力全开 3(美) SJDX41 = Just Dance 3 Special Edition SJDY41 = Just Dance 3: Best Buy Exclusive Edition SJDZ41 = Just Dance 3: Target Exclusive Edition SJEEPK = 开始行动 逃离冒险岛(美) SJFE4Z = 儿童健身岛度假村(美) SJFPGR = 幼儿健身教练(欧) SJFXGR = 幼儿健身教练(欧) SJGEPK = 开始行动 家庭健身[平衡板](美) SJHE41 = 舞力全开 精选集(美) SJIEG9 = 吉利安 麦克尔的健身训练2011[MP][平衡板](美) SJJEA4 = 吉米约翰的超级引擎(美) SJKEPK = 疯狂卡丁车(美) SJLEFS = 少年体育联赛(美) SJLPXT = 少年体育联赛(美) SJME5G = 吉利安 麦克尔的健身训练2010[平衡板](美) SJMPGT = 吉利安 麦克尔的健身训练2010[平衡板](欧) SJOE41 = Just Dance 2014 SJOP41 = 舞力全开 2014 SJPE78 = 智力竞答(美) SJQEPZ = 宝石探秘三部曲(美) SJQPGR = 宝石探秘三部曲(美) SJREA4 = 说唱巨星(美) SJRXA4 = 说唱巨星(欧) SJSEPK = 宠物营救(美) SJTP41 = Just Dance: Best Of SJUE20 = 恐龙快打(美) SJUPXT = 恐龙快打(美) SJVE20 = 肖恩约翰逊体操[平衡板](美) SJWJA4 = 胜利十一人2010 蓝武士的挑战(日) SJXD41 = 舞力全开4(欧) SJXE41 = 舞力全开4(美) SJXP41 = 舞力全开4(欧) SJZE41 = 舞力全开 儿童版2(美) SJZP41 = 舞力全开 儿童版2(欧) SK3EEB = 超执刀 创伤小队(美) SK4E52 = 史莱克4 快乐神仙(美) SK4P52 = 史莱克4 快乐神仙(欧) SK5PY1 = Kylie Sing & Dance SK6KJD = K-POP Dance Festival SK7PVZ = Disney Violetta: Rhythm & Music SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8P52 = Skylanders: Trap Team SK8V52 = Skylanders: Trap Team SKAEA4 = 卡拉OK革命 欢乐合唱团(美) SKAPA4 = 卡拉OK革命 欢乐合唱团(欧) SKBEG9 = Kidz Bop 舞蹈派对(美) SKCE20 = 大脚车 压碎王(美) SKDJ18 = 卡拉OK JOYSOUND Wii 双人对唱曲篇 SKEJ18 = 卡拉OK JOYSOUND Wii 演歌・歌謡曲篇 SKGEA4 = 卡拉OK革命 欢乐合唱团2(美) SKGPA4 = 卡拉OK革命 欢乐合唱团2(欧) SKHJAF = 假面骑士:超巅峰英雄 SKJE78 = 死亡医生(美) SKKPHY = Captain Morgane and the Golden Turtle SKKXHY = Captain Morgane and the Golden Turtle SKLDSV = K11 专员行动(欧) SKMJAF = 假面骑士 巅峰英雄W(日) SKOEA4 = 卡拉OK革命欢乐合唱团3(美) SKOPA4 = 卡拉OK革命欢乐合唱团3(美) SKREG9 = 假面骑士 龙骑士(美) SKSE54 = NBA 2K13 SKSP54 = NBA 2K13 SKTE78 = 全明星空手道[MP](美) SKTP78 = 全明星空手道[MP](欧) SKUE78 = 功夫熊猫2(美) SKUP78 = 功夫熊猫2(欧) SKVE20 = 凯文万达姆的大巴斯挑战(欧) SKWPNK = Cocoto Kart Racer 2 SKXE20 = 海盗袭击(美) SKXPFH = Pirate Blast SKYE52 = 小龙斯派罗:巨人(美) SKYP52 = 小龙斯派罗:巨人(欧) SKYX52 = 小龙斯派罗:巨人(欧) SKYZ52 = 小龙斯派罗:巨人(欧) SKZE52 = 梦工厂超级明星赛(美) SKZP52 = 梦工厂超级明星赛(欧) SL2J01 = 零 ~ 真红之蝶(日) SL2P01 = 零 ~ 真红之蝶(欧) SL3ENR = 龙的巢穴三部曲(美) SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = 最后的气宗(美) SLAP78 = 最后的气宗(欧) SLAZ78 = 最后的气宗 玩具反斗城版(美) SLCEGN = Get Up And Dance SLCPGN = Get Up And Dance SLDEYG = Let's Dance SLDPLG = 跟Mel B一起跳舞(欧) SLEE78 = 乔布拉 促进大脑发展的冥想游戏(美) SLEP78 = 乔布拉 促进大脑发展的冥想游戏(欧) SLFE01 = New Super Mario Bros. 3 The Final Levels SLFP01 = New Super Mario Bros. 3: The Final Levels SLFPKM = Let's Sing SLFXKM = Let's Sing 5 - Spanish version SLHEWR = 乐高哈利波特 5-7年(美) SLHPWR = 乐高哈利波特 5-7年(欧) SLIE52 = 小联盟棒球 二合一(美) SLLEWW = Lucha Libre AAA: Héroes del Ring SLPP5D = 狼的精神(欧) SLREWR = 乐高指环王(美) SLRPWR = 乐高指环王(欧) SLSEXJ = 最后的故事 SLSJ01 = 最后的故事(日) SLSP01 = 最后的故事(日) SLTEJJ = 新优健身:瑜伽和普拉提[MP][平衡板](美) SLTPLG = 新优健身 瑜珈和普拉提[MP][平衡板](欧) SLVP41 = 我们敢(欧) SLWE41 = 沃尔多在哪里? 梦幻之旅(美) SLYESZ = 丑恶人生(美) SLYPNJ = 丑恶人生(美) SM2E52 = 十分钟快速健身(美) SM2P52 = 十分钟快速健身(欧) SM3E01 = Super Mario Bros. 3+ SM4E20 = 大脚怪物卡车大破坏(美) SM4PXT = Monster Trucks: Ultra Mega Xtreme!!! SM5EAF = 侍战队真剑者(美) SM5PAF = 侍战队真剑者(欧) SM6PNK = 我的形体教练 2 健身与舞蹈(欧) SM7E69 = Madden NFL 12 SM8D52 = 使命召唤 现代战争3(欧) SM8E52 = 使命召唤 现代战争3(美) SM8F52 = 使命召唤 现代战争3(欧) SM8I52 = 使命召唤 现代战争 3(欧) SM8P52 = 使命召唤 现代战争3(欧) SM8S52 = 使命召唤 现代战争 3(欧) SM8X52 = 使命召唤 现代战争3(欧) SM9E54 = 职业棒球大联盟2K12(美) SMAENR = 海军陆战队 现代城市战(美) SMAPGN = 海军陆战队 现代城市战(欧) SMBE8P = 超级猴子球 平衡滚球[平衡板](美) SMBJ8P = 超级猴子球 平衡滚球[平衡板](日) SMBP8P = 超级猴子球 平衡滚球[平衡板](欧) SMCENR = 我们祝你圣诞快乐(美) SMCPXT = We Wish You A Merry Christmas SMD3OH = 自制 唱吧 e La Magia Disney SMEE69 = 疯狂美式橄榄球11(美) SMFE4Q = 飞哥与小佛 超时空之谜(美) SMFP4Q = 飞哥与小佛 超时空之谜(欧) SMGE78 = 超级大坏蛋(美) SMGP78 = 超级大坏蛋(欧) SMGX = SaveGame Manager GX SMHPNK = 超级漫画英雄 3D 大师的挑战(欧) SMIE41 = 谁想成为百万富翁3(美) SMIG3Q = 自制 唱吧 下载版(欧) SMJE52 = 怪物卡车 毁灭之路(美) SMJP52 = 怪物卡车 毁灭之路(欧) SMKE4Z = 宝石方块也疯狂(美) SMLE54 = 职业棒球大联盟2K10(美) SMME02 = Super Mario: Mushroom Adventure PLUS - Winter Moon SMMJ0Q = 美体瘦身Wii 郑多燕的塑型有氧(日) SMMP01 = 自制 ANDY AFRO的自制收藏 第四辑(欧) SMMP02 = Super Mario: Mushroom Adventure PLUS: Winter Moon SMNC01 = 自制 新超级马里奥兄弟Wii(中) SMNE01 = 新超级马里奥兄弟Wii(美) SMNE02 = 自制 新超级马里奥兄弟Remake版(美) SMNE03 = Newer Super Mario Bros. Wii SMNE04 = Cannon Super Mario Bros. Wii SMNE05 = Another Super Mario Bros. Wii SMNE06 = Newer Summer Sun SMNE07 = Newer Holiday Special SMNE08 = Epic Super Bowser World SMNE09 = 自制 老超级马里奥兄弟Wii(美) SMNE10 = Koopa Country SMNE11 = New Super Mario Bros. Wii 4 SMNE12 = Awesomer Super Luigi Mini SMNE13 = New Super Mario Bros. Wii 9 Summer Special SMNE14 = Super Mario World Wii SMNE15 = Newer Super Mario Bros. 7 SMNE16 = Newer Super Mario Sunshine SMNE17 = Flowery Super Mario Land Wii SMNE18 = Super Switchy Mario World Wii SMNE19 = New Super Mr. M Bros. Wii SMNE20 = New Super Mario Bros. H SMNE21 = Newer Super Mario Land Wii SMNE22 = Neo Mario Brothers Wii SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE24 = Super Mario Ghost Special SMNE25 = Happy Super Marionose Wii SMNE26 = New Super Mario Bros. DS Wii Version SMNE27 = Newer Super Mario All Star SMNE28 = New Super Mario World SMNE29 = Not So Super Toaster Bros.: The Newer Collab! SMNE2D = Super Mario 2D Land 7 SMNE30 = New Super Mario Bros. Koopa Kall SMNE31 = New Super Mario Bros. Wii - Other World SMNE32 = Super Mario Legends SMNE33 = New Super Mario Bros. Wii Rollercoaster Party SMNE34 = New Super Mario Bros. Wii: Yoshi Mode SMNE35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNE36 = New Super Mario Bros. Wii Hack Pack SMNE37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNE38 = New Super Mario Bros. Wii Underground Maze SMNE39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNE40 = Newer Super Mario Bros. Wii U SMNE41 = Devil Mario Winter Special SMNE42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNE99 = Children's Super Mario Bros. Wii SMNED2 = New Super Mario Bros. + Animal Edition SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNENW = Newer Mario Escapade SMNEPM = Super Mario: Mushroom Adventure PLUS SMNEPS = New Super Mario Bros. Plus SMNERE = Retro Mario Bros. SMNERV = RVLution Wii SMNESL = Newer Super Mario Land Wii SMNESM = New Super Ghost Mario Wii SMNESN = New Super Mario Bros. Wii H SMNESS = New Super Mario Bros. 7 SMNEXD = Deluxe Super Mario Bros. Wii SMNEXR = Super Mario Remix SMNEYE = 8Forrest's Super Mario Bros. Wii SMNEYL = Luigi's Super Yoshi Bros. SMNEYM = You Super Mario Bros. Me Summer Special SMNEYS = Yoshi Super Mario Bros. Wii SMNEYU = You Super Mario Bros. Me SMNEYW = Newer Super Mario World Yoshi Way SMNEYY = You Super Mario Bros. Me Autumn Adventure SMNEZ2 = New JeDa Mario Bros. Wii SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZG = GF Super Mario Bros. Wii SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZQ = Basic Super Mario Bros. Wii SMNEZR = Newer Super Wario World Wii SMNEZS = Another Newer Super Mario Bros. Wii SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZX = Donkey Kong Remastered SMNEZY = Super Mario Skyland SMNEZZ = New Super Mario Bros. 2 Wii Version SMNJ01 = 新超级马里奥兄弟Wii(日) SMNJ02 = Awesomer Super Luigi Mini SMNJ03 = Newer Super Mario Bros. Wii SMNJ04 = Cannon Super Mario Bros. Wii SMNJ06 = Newer Summer Sun SMNJ07 = Newer Holiday Special SMNJ08 = Epic Super Bowser World SMNJ10 = Koopa Country SMNJ11 = New Super Mario Bros. Wii 4 SMNJ13 = New Super Mario Bros. Wii 9 Summer Special SMNJ14 = Super Mario World Wii SMNJ15 = Newer Super Mario Bros. 7 SMNJ16 = Newer Super Mario Sunshine SMNJ17 = Flowery Super Mario Land Wii SMNJ18 = Super Switchy Mario World Wii SMNJ19 = New Super Mr. M Bros. Wii SMNJ20 = New Super Mario Bros. H SMNJ21 = Newer Super Mario Land Wii SMNJ22 = Neo Mario Brothers Wii SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ24 = Super Mario Ghost Special SMNJ25 = Happy Super Marionose Wii SMNJ26 = New Super Mario Bros. DS Wii Version SMNJ27 = Newer Super Mario All Star SMNJ28 = New Super Mario World SMNJ29 = Not So Super Toaster Bros.: The Newer Collab! SMNJ2D = Super Mario 2D Land Wii SMNJ30 = New Super Mario Bros. Koopa Kall SMNJ31 = New Super Mario Bros. Wii - Other World SMNJ32 = Super Mario Legends SMNJ33 = New Super Mario Bros. Wii Rollercoaster Party SMNJ34 = New Super Mario Bros. Wii: Yoshi Mode SMNJ35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNJ36 = New Super Mario Bros. Wii Hack Pack SMNJ37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNJ38 = New Super Mario Bros. Wii Underground Maze SMNJ39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNJ40 = Newer Super Mario Bros. Wii U SMNJ41 = Devil Mario Winter Special SMNJ42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNJ99 = Children's Super Mario Bros. Wii SMNJD2 = New Super Mario Bros. + Animal Edition SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJNW = Newer Mario Escapade SMNJPM = Super Mario: Mushroom Adventure PLUS SMNJPS = New Super Mario Bros. Plus SMNJRE = Retro Mario Bros. SMNJRV = RVLution Wii SMNJSL = Newer Super Mario Land Wii SMNJSM = New Super Ghost Mario Wii SMNJXD = Deluxe Super Mario Bros. Wii SMNJXR = Super Mario Remix SMNJYE = 8Forrest's Super Mario Bros. Wii SMNJYL = Luigi's Super Yoshi Bros. SMNJYM = You Super Mario Bros. Me Summer Special SMNJYS = Yoshi Super Mario Bros. Wii SMNJYY = You Super Mario Bros. Me Autumn Adventure SMNJZ2 = New JeDa Mario Bros. Wii SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZG = GF Super Mario Bros. Wii SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZQ = Basic Super Mario Bros. Wii SMNJZR = Newer Super Wario World Wii SMNJZS = Another Newer Super Mario Bros. Wii SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZX = Donkey Kong Remastered SMNJZY = Super Mario Skyland SMNJZZ = New Super Mario Bros. 2 Wii Version SMNK01 = 新超级马里奥兄弟Wii(韩) SMNP01 = 新超级马里奥兄弟Wii(欧) SMNP02 = Awesomer Super Luigi Mini SMNP03 = Newer Super Mario Bros. Wii SMNP04 = Cannon Super Mario Bros. Wii SMNP05 = Another Super Mario Bros. Wii SMNP06 = Newer Summer Sun SMNP07 = Newer Holiday Special SMNP08 = Epic Super Bowser World SMNP10 = Koopa Country SMNP11 = New Super Mario Bros. Wii 4 SMNP12 = Awesomer Super Luigi Mini SMNP13 = New Super Mario Bros. Wii 9 Summer Special SMNP14 = Super Mario World Wii SMNP15 = Newer Super Mario Bros. 7 SMNP16 = Newer Super Mario Sunshine SMNP17 = Flowery Super Mario Land Wii SMNP18 = Super Switchy Mario World Wii SMNP19 = New Super Mr. M Bros. Wii SMNP20 = New Super Mario Bros. H SMNP21 = Newer Super Mario Land Wii SMNP22 = Neo Mario Brothers Wii SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP24 = Super Mario Ghost Special SMNP25 = Happy Super Marionose Wii SMNP26 = New Super Mario Bros. DS Wii Version SMNP27 = Newer Super Mario All Star SMNP28 = New Super Mario World SMNP29 = Not So Super Toaster Bros.: The Newer Collab! SMNP2D = Super Mario 2D Land Wii SMNP30 = New Super Mario Bros. Koopa Kall SMNP31 = New Super Mario Bros. Wii - Other World SMNP32 = Super Mario Legends SMNP33 = New Super Mario Bros. Wii Rollercoaster Party SMNP34 = New Super Mario Bros. Wii: Yoshi Mode SMNP35 = New Super Mario Bros. Wii: Yoshi Mode - Classic Mode SMNP36 = New Super Mario Bros. Wii Hack Pack SMNP37 = New Super Mario Bros. Wii Dragon Coaster Frenzy SMNP38 = New Super Mario Bros. Wii Underground Maze SMNP39 = Newer Super Mario Bros. Wii: Antnee Level Pack SMNP40 = Newer Super Mario Bros. Wii U SMNP41 = Devil Mario Winter Special SMNP42 = New Super Mario Bros. Wii: Yoshi Mode Lite SMNP77 = 自制 新超级马里奥兄弟 阿卡迪亚(欧) SMNP99 = Children's Super Mario Bros. Wii SMNPD2 = New Super Mario Bros. + Animal Edition SMNPDU = DU Super Mario Bros. : Anniversary Edition SMNPLL = Newer Super Luigi Wii SMNPLM = Newer Super Luigi Wii Dark Moon SMNPMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNPNW = Newer Mario Escapade SMNPO1 = 自制 新超级马里奥兄弟Wii定制版(欧) SMNPPM = Super Mario: Mushroom Adventure PLUS SMNPPS = New Super Mario Bros. Plus SMNPRE = Retro Mario Bros. SMNPRV = RVLution Wii SMNPSL = Newer Super Mario Land Wii SMNPSM = New Super Ghost Mario Wii SMNPXD = Deluxe Super Mario Bros. Wii SMNPXR = Super Mario Remix SMNPYE = 8Forrest's Super Mario Bros. Wii SMNPYL = Luigi's Super Yoshi Bros. SMNPYM = You Super Mario Bros. Me Summer Special SMNPYS = Yoshi Super Mario Bros. Wii SMNPYY = You Super Mario Bros. Me Autumn Adventure SMNPZ2 = New JeDa Mario Bros. Wii SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZG = GF Super Mario Bros. Wii SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZQ = Basic Super Mario Bros. Wii SMNPZR = Newer Super Wario World Wii SMNPZS = Another Newer Super Mario Bros. Wii SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZX = Donkey Kong Remastered SMNPZY = Super Mario Skyland SMNPZZ = New Super Mario Bros. 2 Wii Version SMNW01 = 新超级马里奥兄弟Wii(中) SMOE41 = 迈克尔杰克逊 生涯(美) SMOJ41 = 迈克杰克逊 梦幻体验(日) SMOP41 = 迈克尔杰克逊 生涯(欧) SMOT3Q = 自制 唱吧 下载版(欧) SMOX41 = 迈克尔杰克逊 生涯(美) SMOY41 = 迈克尔杰克逊 生涯(欧) SMPE69 = 大富翁精选集 (美) SMPP01 = New Super Mario Bros. Wii 2: The Other P SMPP69 = 大富翁精选集 (美)(欧) SMRE01 = 自制 新超级马里奥兄弟Wii 超级马里奥兄弟1自制(美) SMRE78 = 美国职业摔角联盟2011(美) SMRP78 = 美国职业摔角联盟2011(欧) SMSE01 = New Super Mario Bros Wii 12 Sunshine Paradise SMSE78 = 超级漫画英雄小队 无限挑战(美) SMSP78 = 超级漫画英雄小队 无限挑战(欧) SMTJ18 = 桃太郎电铁2010 战国 维新英雄大集合之卷(日) SMUJAF = 大怪兽格斗 终极竞技场DX 终极战士大集结(日) SMVE01 = Super Mario Vacation SMVE54 = 职业棒球大联盟2K11(美) SMVJ01 = Super Mario Vacation SMVP01 = Super Mario Vacation SMWE01 = Newer Super Mario World U SMWE4Z = 荒岛求生(美) SMWJ01 = Newer Super Mario World U SMWP01 = Newer Super Mario World U SMYE20 = 分秒必争[MP](美) SMZE78 = 超级漫画英雄小队 漫画大战(美) SMZP78 = 超级漫画英雄小队 漫画大战(美) SN2E69 = 玩具枪大战 双重爆破合集(美) SN3EYG = 急速赛车 拉力赛(美) SN3PNG = 急速赛车 拉力赛(欧) SN4EDA = 火影忍者疾风传 龙刃编年史(美) SN4JDA = 火影忍者疾风传 龙刃编年史(日) SN4XGT = 火影忍者疾风传 龙刃编年史(欧) SN5EYG = 急速赛车 冲撞赛车(美) SN5PNG = 急速赛车 冲撞赛车(欧) SN6EYG = 急速赛车 超级卡丁车(美) SN6PNG = 急速赛车 超级卡丁车(欧) SN7EYG = 急速赛车 超级卡车赛(美) SN7PNG = 急速赛车 超级卡车赛(欧) SN8EYG = 急速赛车 冲刺车(美) SN8PNG = 急速赛车 冲刺车(欧) SN9E54 = 尼克罗顿健身[平衡板](美) SNAE52 = 坎贝拉猎人 北美历险记2011(美) SNBE41 = 重返犯罪现场 NCIS(美) SNBP41 = 重返犯罪现场 NCIS(欧) SNCE8P = 索尼克 五彩缤纷[WiFi](美) SNCJ8P = 索尼克:五彩缤纷[WiFi](日) SNCP8P = 索尼克 五彩缤纷[WiFi](欧) SNDE20 = 一掷千金特别版(美) SNEENR = 北美狩猎盛典2(美) SNEPXT = 北美狩猎盛典2(欧) SNFE69 = EA运动活力 NFL训练营(美) SNGEJJ = 和Mel B一起健身(美) SNGPLG = 跟Mel B一起减肥[MP][平衡板](欧) SNHE69 = 极品飞车 热力追踪(美) SNHJ13 = 极品飞车 热力追踪(日) SNHP69 = 极品飞车 热力追踪(欧) SNIE54 = 尼克卡通MLB(美) SNJE69 = NBA嘉年华(美) SNJP69 = NBA嘉年华(欧) SNKX54 = 尼克罗顿健身[平衡板](欧) SNLE01 = New Super Mario Bros. Wii 0-2 Next Generation Levels SNLE54 = 尼克罗顿舞蹈(美) SNLP54 = 尼克罗顿舞蹈(欧) SNLX54 = 尼克罗顿舞蹈(欧) SNMEAF = Namco博物馆 重制版(美) SNOPY1 = Now! That's What I Call Music: Dance & Sing SNPE52 = NASCAR The Game: Inside Line SNQE7U = 国家地理大挑战(美) SNQPLG = 国家地理大挑战(欧) SNRE52 = 云斯顿赛车 快感释放(美) SNSE52 = 云斯顿赛车 2011(美) SNTEXN = Netflix系统安装盘(美) SNUPJW = 快乐神经元学院(欧) SNVE69 = 极速快感 亡命天涯(美) SNVJ13 = 极速快感 亡命天涯(日) SNVP69 = 极速快感 亡命天涯(欧) SNXJDA = 火影忍者疾风传 激斗忍者大战Special(日) SNYEVZ = Monster High: 13 Wishes SNYPVZ = Monster High: 13 Wishes SNZEVZ = Barbie: Dreamhouse Party SNZPVZ = Barbie: Dreamhouse Party SO3EE9 = 符文工房 蓝海奇缘(美) SO3J99 = 符文工房 蓝海奇缘(日) SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg 2 SOCE4Z = 致命捕捞 混乱海域(美) SOIEEB = 101合1运动聚会游戏超级合集(美) SOIPHZ = 101合1运动聚会游戏超级合集(欧) SOJE41 = 雷曼 起源(美) SOJP41 = 雷曼 起源(欧) SOKEA4 = Karaoke Joysound SOKJ18 = 卡拉OK 欢乐之声Wii DX(日) SOME01 = 大家的节奏天国(美) SOMJ01 = 大家的节奏天国(日或中) SOMK01 = Rhythm Heaven Fever SOMP01 = 大家的节奏天国(欧) SONDMR = 我的第一首卡拉OK(德) SONFMR = 我的第一首卡拉OK(法) SONPMR = 我的第一首卡拉OK(欧) SORE4Z = The Oregon Trail SOSEG9 = 极速蜗牛 超级特技队(美) SOSPAF = Turbo: Super Stunt Squad SOTE52 = 失败比赛(美) SOUE01 = 萨尔达传说 天空之剑(美) SOUJ01 = 萨尔达传说 天空之剑(日或中) SOUK01 = 萨尔达传说 天空之剑(韩) SOUP01 = 萨尔达传说 天空之剑(欧) SP2E01 = Wii运动+Wii运动 度假胜地(欧) SP2P01 = Wii运动+Wii运动 度假胜地(欧) SP3E41 = 百万美金金字塔(美) SP4PJW = 法式滚球[MP](法) SP4V = Castlevania: Rondo of Blood SP5E70 = 惡徒 來自地底的侵略者(美) SP5PVV = 恶徒 来自地底的侵略者(欧) SP6DSV = 超级女声(德) SP7EAF = 吃豆人派对(美) SP7JAF = 吃豆人派对(日) SP7PAF = 吃豆人派对(欧) SP8E78 = 马达加斯加的企鹅 Dr. Blowhole Returns Again!(美) SP8P78 = 马达加斯加的企鹅 Dr. Blowhole Returns Again!(欧) SP9P4Q = 自制 唱吧 下载版(欧) SP9PJW = 中国娃娃之吻(欧) SPAE5G = 海盗大掠夺(美) SPBPGT = 魅力聚会(欧) SPCPZS = 优优赛车(欧) SPDE52 = 蜘蛛侠 破碎时空(美) SPDP52 = 蜘蛛侠 破碎时空(欧) SPEE20 = 极速(美) SPEPXT = 极速(欧) SPGPPN = 粉红猪小妹2 快乐游戏(欧) SPHPJW = Spaghetti Western Shooter SPIE18 = 装扮聚会(美) SPIJ18 = 家庭聚会100种(日) SPIP18 = 家庭聚会100种(欧) SPKXPV = 斯普林骑马探险(欧) SPMDRM = 麻将聚会(德) SPMPWP = Mahjong Party Pack SPOPFR = 冬季运动会2011(欧) SPPEFS = 力量拳击(美) SPQE7T = 金牌间谍之幽灵公寓(美) SPRE01 = New Super Mario Bros. Wii 14 Project Mario SPRE41 = 正确定价 2010版(美) SPTJEB = 创伤小队 6人医师(日) SPUE20 = 一起绘画[MP](美) SPVEA4 = 实况足球2011[WiFi](美) SPVPA4 = 实况足球2011[WiFi](欧) SPVXA4 = 实况足球2011[WiFi](X) SPVYA4 = 实况足球2011[WiFi](Y) SPWHZH = 工作室100 游乐岛(欧) SPXP41 = 波斯王子 遗忘之沙(欧) SPYDSV = 企鹅派对岛(德) SPZE5G = 比萨外送员(美) SQ2EPZ = 乡村舞蹈(美) SQ2PXT = Country Dance SQAE52 = Cabela's African Adventures SQBPXT = The Cube SQDE8P = 纽约风暴与洛杉矶机枪街机版[WiFi](美) SQDP8P = 纽约风暴与洛杉矶机枪街机版[WiFi](欧) SQEENG = We Sing Pop! SQEPNG = We Sing Pop! SQFE5G = 飞哥与小佛 寻找酷的东西(美) SQFPGT = Phineas and Ferb: Quest for Cool Stuff SQIE4Q = 迪斯尼无限世界(美) SQIP4Q = Disney Infinity SQIY4Q = Disney Infinity SQKE5G = Cooking Mama 2-Pack SQKK01 = Cooking Mama 2 Pack SQLE4Z = 卡通频道明星大乱斗 XL(美) SQLPGN = 卡通频道大乱斗 SQME52 = 蜘蛛侠:时间边缘(美) SQMP52 = 蜘蛛人 时间裂痕(欧) SQPPX4 = 速度 2(欧) SQQEVZ = Disney Planes: Fire & Rescue SQQPVZ = Disney Planes: Fire & Rescue SQRPNG = We Sing Rock! SQTPML = The Ultimate Battle Of The Sexes: Quizz & Play! SQUDX3 = 测验派对(欧) SQUFX3 = 测验派对(欧) SQVE69 = FIFA 15 SQVP69 = FIFA 15 - Legacy Edition SQVX69 = FIFA足球 15 SR4E41 = 疯狂兔子 时空旅行[MP][WiFi](美) SR4J41 = 疯狂兔子:时光旅行[WiFi](日) SR4P41 = 疯狂兔子 时空旅行[MP][WiFi](欧) SR5E41 = 雷曼 疯狂兔子 派对合集[WiFi][平衡板](美) SR5P41 = 雷曼 疯狂兔子 派对合集[WiFi][平衡板](欧) SR6EHG = 兔宝宝系列 一年级(美) SR7EHG = 兔宝宝系列 二年级(美) SR8EHG = 兔宝宝系列 幼儿园(美) SR9EHG = 兔宝宝系列 学前教育(美) SRAJMS = 电波少女诺亚Wii(日) SRBP4Q = 自制 唱吧 下载版(欧) SRBPHS = 橄榄球联盟3[MP](欧) SRCE69 = 摇滚乐团 乡村音乐包2(美) SREXNL = Reader Rabbit Kindergarten SRFE52 = 乐伯乐职业钓鱼大赛(美) SRFP52 = 乐伯乐职业钓鱼大赛(欧) SRGE69 = 飙风雷哥(欧) SRGP01 = New Super Mario Bros Wii 2 Reggie SRGP69 = 飙风雷哥(欧) SRHP01 = New Super Mario Bros. Wii 7 Retro Heaven SRIE78 = 里约大冒险(美) SRIP78 = 里约大冒险(欧) SRJJAF = 超级战队大战 群雄云集(日) SRKEFP = 雷明顿超级大满贯狩猎 阿拉斯加(美) SRKPNK = Remington Dangerous Animals SRLXNL = Reader Rabbit Preschool SRME18 = 奇幻房间(美) SRMJ18 = 奇幻房间(日) SRNE70 = 天桥骄子[平衡板](美) SRNP01 = New Super Mario Bros. Wii Revolution SRNP70 = 天桥骄子[平衡板](欧) SRPE4Q = 迪斯尼 长发公主(美) SRPP4Q = 迪斯尼 长发公主(欧) SRQE41 = 球拍运动[MP](美) SRQP41 = 球拍运动[MP](欧) SRRENR = 消遣游戏室[MP](美) SRRPGN = 盛大聚会游戏[MP](欧) SRSE20 = 超级音速赛车(美) SRSPXT = Supersonic Racer SRTXNL = Reader Rabbit 1st Grade SRUE4Z = 红鼻子驯鹿鲁道夫(美) SRVE41 = 价格是正确的(美) SRVP01 = New Super Mario Bros Revolution SRWXNL = Reader Rabbit 2nd Grade SRXE52 = 变形小雷(美) SRXP52 = 变形小雷(欧) SRYEAF = 动感塑身派对(美) SRYJAF = 动感塑身派对(日) SRYPAF = 动感塑身派对(欧) SS2PFR = Winter Sports 2012: Feel the Spirit SS3EWR = 芝麻街 埃尔默动物园历险记(美) SS3PWR = 芝麻街 埃尔默动物园历险记(欧) SS3UWR = 芝麻街 埃尔默动物园历险记(欧) SS4EWR = 芝麻街 饼干计数嘉年华(美) SS4UWR = 芝麻街 饼干计数嘉年华(美) SS5ENR = 赛帝时尚公司(美) SS6UHS = 实况橄榄球年度特别版(欧) SS7EFP = 雷明顿超级大满贯狩猎 非洲(美) SS7URN = 雷明顿超级大满贯狩猎 非洲(英) SS8E78 = 海绵宝宝 涂鸦裤子(美) SS8P78 = 海绵宝宝 涂鸦裤子(欧) SS9JMS = Milestone射击游戏精选2(日) SSBE78 = 鞋猫剑客(美) SSBP78 = 鞋猫剑客(美) SSCDWR = 电影场景猜猜 明亮的灯光与大屏幕(德) SSCEPM = 电影场景猜猜 明亮的灯光与大屏幕(美) SSCFPM = 电影场景猜猜 明亮的灯光与大屏幕(法) SSCFWR = 电影场景猜猜 明亮的灯光与大屏幕(法) SSCIWR = 电影场景猜猜 明亮的灯光与大屏幕(意) SSCPWR = 电影场景猜猜 明亮的灯光与大屏幕(欧) SSCSWR = 电影场景猜猜 明亮的灯光与大屏幕(西) SSDDRV = 自制 挑战拉普(德) SSEDNG = 我们唱歌 再来一曲[麦克风](欧) SSEPNG = 我们唱歌 再来一曲[麦克风](欧) SSEVNG = We Sing: Encore SSFPKM = Sing 4: The Hits Edition SSGPNG = 我们唱歌[麦克风](欧) SSHPHH = 夏洛克福尔摩斯 银耳饰之案(欧) SSIENR = 冬季爆发 九大冰雪运动[平衡板](美) SSJEJJ = 夏季明星 2012(美) SSJPKM = 夏季明星 2012(欧) SSLENR = I Love Horses: Rider's Paradise SSLPKM = 马术俱乐部(欧) SSLPOH = 自制 唱吧 Legends(意) SSMEYG = American Mensa Academy SSMPGD = 门萨学院(欧) SSNEYG = 狙击精英[WiFi](美) SSNPHY = 狙击精英[WiFi](欧) SSPE52 = Skylanders: Spyro's Adventure SSPJ52 = Skylanders: Spyro's Adventure SSPP52 = 小龙斯派罗的大冒险(歐) SSPX52 = 小龙斯派罗的大冒险(欧) SSQE01 = 马里奥派对9(美) SSQJ01 = 马里奥派对9(日) SSQK01 = Mario Party 9 SSQP01 = 马里奥派对9(欧) SSQW01 = 马里奥派对9 繁体中文版 SSRE20 = 狂野西部枪战(美) SSRPXT = 狂野西部枪战(X) SSSE01 = New Super Mario Bros. Wii: Summer Sun SSSEWR = Sesame Street: Elmo's Musical Monsterpiece SSTEG9 = 小子历险记 天空上尉(美) SSTPY5 = 特技飞行 空中英雄(欧) SSUES5 = 回转寿司(美) SSVE52 = Wipeout 3 SSWDRM = 水上运动[平衡板](德) SSWEPZ = 水上运动[平衡板](美) SSWPGR = 水上运动[平衡板](欧) SSZE5G = 剑(美) ST3J01 = 听力大考验(日) ST4PNX = 托马斯和伙伴们 铁路小英雄[MP](美) ST4XNX = 托马斯和伙伴们 铁路小英雄[MP](美) ST5E52 = 变形金刚 塞伯坦冒险(美) ST5P52 = 变形金刚 赛博坦大战(欧) ST6E78 = 减肥达人挑战赛[平衡板](美) ST6P78 = 减肥达人挑战赛[平衡板](欧) ST7E01 = 顶级街 Wii (美) ST7JGD = 富豪街 Wii (日或中) ST7P01 = 顶级街 Wii (歐) ST8P75 = 自制 唱吧 下载版(欧) ST9E52 = 顶级射手(美) STAE78 = 猜猜画画(美) STAP75 = 自制 唱吧 下载版(欧) STAP78 = 猜猜画画(欧) STAU78 = 猜猜画画(欧) STCP75 = 自制 唱吧 下载版(欧) STDEFP = 目标狙击(美) STDP75 = 自制 唱吧 下载版(欧) STEETR = 俄罗斯方块派对 豪华版[WiFi][平衡板](美) STEJ18 = 俄罗斯方块派对 超值版[WiFi][平衡板](日) STEPTR = 俄罗斯方块派对 豪华版[WiFi][平衡板](欧) STFE52 = 变形金刚:领袖(美) STFP52 = 变形金刚:领袖(欧) STGJAF = 圣恩传说(日) STHE8P = 雷神托尔(美) STHP75 = 自制 唱吧 下载版(欧) STHP8P = 雷神托尔(欧) STIFKM = 迪得夫的电影(欧) STJJAF = 太鼓达人Wii 决定版(日) STKE08 = 龙之子对卡普空 究极全明星(美) STKJ08 = 龙之子对卡普空 究极全明星(日) STKP08 = 龙之子对卡普空 究极全明星(欧) STLE78 = 真实或谎言(美) STLP78 = 真实或谎言(欧) STMEGN = 泰坦尼克号之谜(美) STMPKP = 泰坦尼克号之谜(欧) STNE41 = 丁丁历险记 独角兽号的秘密(美) STNP41 = 丁丁历险记 独角兽号的秘密(欧) STOE4Q = 汽车总动员 拖线狂想曲(美) STOP4Q = 汽车总动员 拖线狂想曲(欧) STOX4Q = 汽车总动员 拖线狂想曲(欧) STPP75 = 自制 唱吧 下载版(欧) STPPML = 宠物兽医 海洋巡防(欧) STQJHF = 闪电十一人 王牌前锋(日) STQP01 = Inazuma Eleven Strikers STQP75 = 自制 唱吧 下载版(欧) STQX01 = Inazuma Eleven Strikers STRE4Q = 电子世界争霸战(美) STRP4Q = 电子世界争霸战(欧) STRP75 = 自制 唱吧 下载版(欧) STRX4Q = 电子世界争霸战(欧) STSE4Q = 玩具总动员3(美) STSP4Q = 玩具总动员3(欧) STSP75 = 自制 唱吧 下载版(欧) STSX4Q = 玩具总动员3(欧) STSY4Q = 玩具总动员3(欧) STSZ4Q = 玩具总动员3 玩具盒特别版(美) STTDRM = 隐藏的秘密 泰坦尼克号(德) STTE52 = 隐藏的秘密 泰坦尼克号(美) STTPGR = 隐藏的秘密 泰坦尼克号(欧) STTXGR = 隐藏的秘密 泰坦尼克号(欧) STUPRN = Turbo Trainz STVDSV = 电视总事件(德) STWE69 = 泰格伍兹高尔夫巡回赛11[MP][WiFi](美) STWP69 = 泰格伍兹高尔夫巡回赛11[MP][WiFi](欧) STXE69 = 泰格伍兹高尔夫巡回赛12 大师(美) STXP69 = 泰格伍兹高尔夫巡回赛12 大师(欧) STYE52 = 托尼霍克滑板(美) STYP52 = 托尼霍克滑板(欧) STZE52 = 变形金刚3(美) STZP52 = 变形金刚3(欧) SU2E54 = 尼克罗顿舞蹈2(美) SU2P54 = 尼克罗顿舞蹈2(欧) SU2X54 = 尼克罗顿舞蹈2(欧) SU3DMR = 你来唱2[WiFi][麦克风](德) SU3FMR = 你来唱2[WiFi][麦克风](法) SU3HMR = 你来唱2[WiFi][麦克风](欧) SU3PMR = 你来唱2[WiFi][麦克风](欧) SU3SMR = 你来唱2[WiFi][麦克风](西) SU3UMR = 你来唱2[WiFi][麦克风](欧) SU4E78 = UFC 私人教练(美) SU4P78 = UFC 私人教练[平衡板][Wi-Fi](欧) SU5EVZ = Monster High: Skultimate Roller Maze SU5PVZ = Monster High: Skultimate Roller Maze SU6E5G = 尊巴瘦身:核心版 SU6P5G = Zumba Fitness Core SU6XGT = 尊巴瘦身:核心版 SU7EG9 = 守护者联盟(美) SU7PAF = Rise of the Guardians SU8PNG = We Sing: Deutsche Hits 2 SU9E4Q = 飞机总动员(美) SU9P4Q = 飞机总动员(欧) SU9X4Q = Disney Planes SUKE01 = 星之卡比 重回梦幻岛(美) SUKJ01 = 星之卡比 Wii(日) SUKK01 = Kirby's Return to Dream Land SUKP01 = 星之卡比 Wii(欧) SUMJC8 = 胜利赛马世界 2010(日) SUNEYG = Deer Drive Legends SUOE41 = The Hip Hop Dance Experience SUOP41 = The Hip Hop Dance Experience SUPE01 = Wii欢乐聚会(美) SUPJ01 = Wii欢乐聚会(日或中) SUPK01 = Wii欢乐聚会(韩) SUPP01 = Wii欢乐聚会(欧) SUQENG = We Sing UK Hits SUQPNG = We Sing: UK Hits SURE01 = New Super Mario Bros. Wii 19 Resurrection U SUREA4 = 热舞革命 2[跳舞垫](美) SURPA4 = 热舞革命 5(欧) SUSFMR = 环球歌唱 女孩之夜(法) SUSPMR = 环球歌唱 女孩之夜(欧) SUTESZ = 很久很久以前(美) SUUE78 = 天才小画家 即时艺术家(美) SUUP78 = 天才小画家 即时艺术家(欧) SUVE52 = Cabela's Dangerous Hunts 2013 SUVP52 = Cabela's Dangerous Hunts 2013 SUWE78 = 天才小画家(美) SUWP78 = 天才小画家(欧) SUXEA4 = 实况足球2010[WiFi](美) SUXJA4 = 实况足球2010[WiFi](日) SUXPA4 = 实况足球2010[WiFi](欧) SUXXA4 = 实况足球2010[WiFi](X) SUXYA4 = 实况足球2010[WiFi](Y) SUYDRV = Schlag den Raab - Das 3. Spiel SUZD7K = Benjamin Blümchen - Törööö im Zoo SV2E78 = 大沙滩运动2[平衡板](美) SV2P78 = 大沙滩运动2[平衡板](欧) SV3EG9 = 马达加斯加3(美) SV3PAF = 马达加斯加3(欧) SV4E8P = VR网球 4[MP][WiFi](美) SV4P8P = VR网球 4[MP][WiFi](欧) SV5PRV = The Voice of Germany Vol. 2 SV6SRV = The Voice SV7EVZ = Penguins of Madagascar SV7PVZ = Penguins of Madagascar SVBE52 = 战舰 SVBP52 = Battleship SVCEPZ = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = 海绵宝宝 痞老板机器人复仇 SVHP69 = FIFA 14 - Legacy Edition SVHX69 = FIFA 14 - Legacy Edition SVME01 = 超级马里奥25周年纪念包(美) SVMJ01 = 超级马里奥25周年纪念包(日) SVMK01 = Super Mario All-Stars SVMP01 = 超级马里奥25周年纪念包(欧) SVOEWW = El Chavo SVPESZ = 维加斯聚会(美) SVPPNJ = 维加斯聚会(欧) SVSPZX = Battle vs Chess SVTEXS = 超级线程(美) SVTP99 = BIT.TRIP COMPLETE SVUPRV = The Voice of Germany SVVEG9 = 疯狂原始人:史前派对(美) SVVPAF = 古魯家族(歐) SVWEQH = 蔬菜世界(美) SVXE52 = Skylanders: Swap Force SVXF52 = Skylanders: Swap Force SVXI52 = Skylanders: Swap Force SVXP52 = Skylanders: Swap Force SVXY52 = Skylanders: Swap Force SVYEG9 = Ben10 全体宇宙2 SVYPAF = Ben 10: Omniverse 2 SVZEVZ = How to Train Your Dragon 2 SVZPVZ = How to Train Your Dragon 2 SW2E52 = 百战铁人王 2(美) SW3EJJ = 冬季滑雪明星(美) SW3PKM = 冬季滑雪明星(欧) SW4JA4 = 实况足球2011[WiFi](日) SW6E78 = 美国职业摔角联盟12(美) SW6P78 = 美国职业摔角联盟12(欧) SW7EVN = 西部英雄(美) SW7PNK = 西部英雄(欧) SW8ENG = We Sing 80s SW8PNG = We Sing 80s SW9EVN = 怪物大轰炸(美) SW9PYT = 怪物大轰炸(美) SWAE52 = DJ英雄[WiFi](美) SWAP52 = DJ英雄[WiFi](欧) SWBE52 = DJ英雄2[WiFi](美) SWBP01 = New Super Mario Bros. Wii 0 Where It All Began SWBP52 = DJ英雄2[WiFi](欧) SX2PNG = 丛林赛车(欧) SX3EXJ = Pandora's Tower SX3J01 = 潘朵拉之塔 直到你身边(日) SX3P01 = 潘朵拉之塔 直到你身边 (歐) SX4E01 = 异度之刃:编年史 SX4J01 = 异度之刃(日) SX4P01 = 异度之刃(欧) SX5E4Z = 圣诞老人进城啰(美) SX6JAF = 光之美少女 全明星全员集合一起舞蹈(日) SX7E52 = 忍者神龟 SX7P52 = Teenage Mutant Ninja Turtles SX8E52 = X战警 命运(美) SX8P52 = X战警 命运(美) SXAE52 = 吉他英雄 世界巡演[WiFi](美) SXAP52 = 吉他英雄 世界巡演[WiFi](欧) SXBE52 = 吉他英雄 金属乐队专辑[WiFi](美) SXBP52 = 吉他英雄 金属乐队专辑[WiFi](欧) SXCE52 = 吉他英雄 流行精选[WiFi](美) SXCP52 = 吉他英雄 流行精选[WiFi](欧) SXDE52 = 吉他英雄 范海伦[WiFi](美) SXDP52 = 吉他英雄 范海伦[WiFi](欧) SXEE52 = 吉他英雄5[WiFi](美) SXEF52 = 自制 吉他英雄3 Megadeth SXEP52 = 吉他英雄5[WiFi](欧) SXFE52 = 乐团英雄[WiFi](美) SXFF52 = 自制 吉他英雄3 My Chemical Romance SXFP52 = 乐团英雄[WiFi](欧) SXIE52 = 吉他英雄6 摇滚战士[WiFi](美) SXIP52 = 吉他英雄6 摇滚战士[WiFi](欧) SY8PKM = Let's Sing 2015 SZ2E5G = 尊巴南美拉丁舞 2(美) SZ2P5G = 尊巴南美拉丁舞 2(欧) SZ2XGT = 尊巴南美拉丁舞 2(欧) SZ3E5G = Zumba Fitness World Party SZ3PGT = Zumba Fitness World Party SZ5E5G = 尊巴南美拉丁舞(美) SZ5PGT = 尊巴南美拉丁舞(欧) SZAE69 = 摇滚乐团2[WiFi](美) SZAP69 = 摇滚乐团2[WiFi](欧) SZBE69 = 摇滚乐团3[WiFi](美) SZBP69 = 摇滚乐团3[WiFi](欧) SZEE01 = New Super Mario Bros Wii 13 Shadow Zero Escape TITLES = http://www.gametdb.com (type: Wii language: ZHCN version: 20150208104225) UGPE01 = Game Boy Player UGPJ01 = Game Boy Player UGPP01 = Game Boy Player ULFW = uLoader UUUE01 = New Super Mario Bros. Wii 19 Resurrection U VBGX = VBA模拟器(欧) VIPE01 = New Super Mario Bros Wii 18 Vip Mix W22E = Planet Fish W24E = 2 Fast 4 Gnomz W2AE = Big Bass Arcade W2CE = Brain Challenge W2CJ = Brain Challenge W2CP = Brain Challenge W2FP = Physiofun - Balance Training W2GD = Phoenix Wright Ace Attorney : Justice for All (Deutsche Version) W2GE = Phoenix Wright: Ace Attorney Justice for All W2GI = Phoenix Wright: Ace Attorney - Justice for All W2GJ = Gyakuten Saiban 2 W2GP = Phoenix Wright Ace Attorney: Justice for All W2IE = Fishie Fishie W2IP = Fishie Fishie W2JE = Just Jam W2KE = Let's Catch W2KJ = Let's Catch W2KP = Let's Catch W2LE = Bloons W2LP = Bloons W2ME = Blaster Master: Overdrive W2MP = Blaster Master: Overdrive W2OE = My Aquarium 2 W2OJ = Blue Oasis: Michinaru Shinkai W2OP = My Aquarium 2 W2PP = Physiofun: Pelvic Floor Training W2TE = 魔鬼训练-教官是魔鬼(美) W2TJ = Onitore Kyoukan ha Onigunsou W2TP = 魔鬼训练-教官是魔鬼(欧) W2YE = Fireplacing W2YP = My Fireplace W34J = Simple Series Vol. 4: The Misshitsu kara no Dasshutsu W3AE = Carmen Sandiego Adventures in Math: The Big Ben Burglary W3BE = Soccer Bashi W3BP = Soccer Bashi W3DJ = 3° C W3FE = 3D Pixel Racing W3FP = 3D Pixel Racing W3GD = Phoenix Wright Ace Attorney 3: Trials And Tribulations W3GE = Phoenix Wright Ace Attorney: Trials and Tribulations W3GI = Phoenix Wright: Ace Attorney - Trials and Tribulations W3GJ = Gyakuten Saiban 3 W3GP = Phoenix Wright Ace Attorney: Trials and Tribulations W3JE = Triple Jumping Sports W3KE = ThruSpace W3KJ = Surinuke Anatousu W3KP = ThruSpace: High Velocity 3D Puzzle W3LE = Carmen Sandiego Adventures in Math: The Lady Liberty Larceny W3ME = The Three Musketeers: One for all W3MP = The Three Musketeers: One for all W3PE = Triple Throwing Sports W3RE = Triple Running Sports W3SE = Triple Shot Sports W3TE = Pearl Harbor Trilogy - 1941: Red Sun Rising W3TP = Pearl Harbor Trilogy 1941: Red Sun Rising W42J = Fortune: Hoshi no Furisosogu Oka W44E = Stop Stress: A Day of Fury W44P = Stop Stress: A Day of Fury W48E = ShadowPlay W4AE = Arcade Sports W4AP = Arcade Sports: Air Hockey, Bowling, Pool, Snooker W4KE = Deer Captor W4KJ = Shikagari W4OJ = Shikakui Atama wo Marukusuru Challenge W4TE = Spaceball Revolution W4TP = Spaceball Revolution W54E = 5 Spots Party W54P = 5 Spots Party W5AE = 5 Arcade Gems W5AP = 5 Arcade Gems W5IE = 5 in 1 Solitaire W6BE = Eco Shooter: Plant 530 W6BJ = 530 Eco Shooter W6BP = Eco-Shooter: Plant 530 W72P = Successfully Learning German Year 3 W73P = Successfully Learning German Year 4 W74P = Successfully Learning German Year 5 W7IP = Successfully Learning German Year 2 W82J = Jintori Action Taikokenchi Karakuri Shiro no Nazo W8BP = Babel Rising W8CE = Bit.Trip Core W8CJ = BIT.TRIP CORE: Rhythm Seijin no Gyakushuu W8CP = Bit.Trip Core W8DJ = Mebius Drive W8IJ = Hachi-One Diver Wii W8LE = Balloon Pop Festival W8PJ = Ouchi de Mugen Puchi Puchi Wii W8WE = Happy Holidays: Halloween W8WP = Happy Holidays: Halloween W8XE = Battle Poker W9BE = Big Town Shoot Out W9BP = Big Town Shoot W9IE = 危险空域(美) W9IJ = Kiken Kuuiki W9LE = Christmas Clix W9RE = Happy Holidays: Christmas W9RP = Happy Holidays: Christmas W9UE = Cruise Party W9UP = Cruise Party WA2E = 大家的旋转泡泡(美) WA2J = 大家的旋转泡泡(日) WA2P = 大家的旋转泡泡(欧) WA4E = WarioWare: D.I.Y. Showcase WA4J = WarioWare: D.I.Y. Showcase WA4P = WarioWare: Do It Yourself – Showcase WA5E = Carmen Sandiego Adventures in Math: The Island of Diamonds WA7E = Toribash WA7P = Toribash Violence Perfected WA8E = Art Style: Rotozoa WA8J = Art Style: Penta Tentacles WA8P = Art Style: Penta Tentacles WAAE = Aya and the Cubes of Light WAAP = Aya and the Cubes of Light WABE = Art of Balance WABP = Art of Balance WACE = Arcade Essentials WACP = Arcade Essentials WAEE = Around The World WAEP = Around the world WAFE = Airport Mania: First Flight WAFP = Airport Mania: First Flight WAGE = Pinocchio's Puzzle WAHE = Trenches Generals WAHP = Trenches: Generals WAIE = 101-in-1 Explosive Megamix WAIP = 101-in-1 Explosive Megamix WAJE = MotoHeroz WAJP = MotoHeroz WAKE = Carmen Sandiego Adventures in Math: The Case of the Crumbling Cathedral WALE = Art Style: Light Trax WALJ = Art Style: Lightstream WALP = Art Style: light trax WAME = Carmen Sandiego Adventures in Math: The Great Gateway Grab WANE = Ant Nation WANP = Ant Nation WAOE = The Very Hungry Caterpillar's ABCs WAOJ = Harapeko Aomushi no ABC WAOP = The Very Hungry Caterpillar´s ABC WAQJ = Yakuman Wii: Ide Yousuke no Kenkou Mahjong WARE01 = 自制 DU超级瓦里奥兄弟(美) WARJ = Tsuushin Taikyoku Igo Doujou 2700 Mon WASJ = Tsuushin Taikyoku: Hayazashi Syogi Sandan WATE = Astro Bugz Revenge WAUJ = Tsushin Taikyoku: World Chess WAYE = And Yet It Moves WAYP = And Yet It Moves WAZE = The Amazing Brain Train WB2E = Strong Bad Episode 4: Dangeresque 3 WB2P = Strong Bad Episode 4: Dangeresque 3 WB3E = Strong Bad Episode 5: 8-bit is Enough WB3P = Strong Bad Episode 5: 8-bit is Enough WB4E = 荒野大镖客(美) WB4J = Wild West Guns WB4P = 荒野大镖客(欧) WB5E = 豪华打砖块(美) WB5J = Block Breaker Deluxe WB5P = 豪华打砖块(欧) WB6E = 电视节目之王(美) WB6J = TV Show King WB6P = 电视节目之王(欧) WB7E = 午夜桌球赛(美) WB7J = Hamaru Billiards WB7P = 午夜桌球赛(欧) WB8E = 午夜保龄球(美) WB8J = Hamaru Bowling WB8P = 午夜保龄球(欧) WBAJ = Bakutan WBBE = Snowboard Riot WBBJ = Board Warriors WBBP = Snowboard Riot WBDE = Brain Drain WBDP = Brain Drain WBEE = 乒乓投掷 兄弟聚会(美) WBEP = 乒乓投掷 兄弟聚会(欧) WBFE = Bit.Trip Fate WBFP = Bit.Trip Fate WBGP = Bang Attack WBHE = Blood Beach WBHP = Blood Beach WBIE = Boingz WBJE = Harvest Moon: My Little Shop WBJJ = Bokujou Monogatari Series: Makiba no Omise WBKE = Arkanoid Plus! WBKJ = Arkanoid Plus! WBKP = Arkanoid Plus! WBLE = Bubble Bobble Plus! WBLJ = Bubble Bobble Wii WBLP = Bubble Bobble Plus! WBME = 大家的口袋妖怪牧场(美) WBMJ = Minna no Pokémon Bokujou WBMP = 大家的口袋妖怪牧场(欧) WBNE = Bonsai Barber WBNJ = Bonsai Barber WBNP = Bonsai Barber WBOE = Gravitronix WBPE = PLÄTTCHEN twist 'n' paint WBPP = PLÄTTCHEN - twist 'n' paint WBQE = Star Soldier R WBQJ = Star Soldier R WBQP = 星际战士R(欧) WBRP = 海盗 梦想的钥匙(欧) WBSE = 梦幻泡沫(美) WBSJ = Pop WBSP = 梦幻泡沫(欧) WBTJ = Fantasic Tambourine WBVE = 轮胎赛车(美) WBVP = 轮胎赛车(欧) WBWE = 动物危机(美) WBWJ = Saku Saku Animal Panic WBWP = 动物危机(欧) WBXE = Strong Bad Episode 1: Homestar Ruiner WBXP = Strong Bad Episode 1: Homestar Ruiner WBYE = Strong Bad Episode 2: Strong Badia - The Free WBYP = Strong Bad Episode 2: Strong Badia - The Free WBZE = Strong Bad Episode 3: Baddest of the Bands WBZP = Strong Bad Episode 3: Baddest of the Bands WC2E = 水晶防线R2(美) WC2J = Crystal Defenders R2 WC2P = 水晶防线R2(欧) WC6E = Chronos Twins DX WC6P = Chronos Twins DX WC8J = Line Attack Heroes WCHE = Chess Challenge! WCHP = Chess Challenge WCIE = 水晶防线R1(美) WCIJ = Crystal Defenders R1 WCIP = 水晶防线R1(欧) WCJE = Cocoto Platform Jumper WCJP = Cocoto: Platform Jumper WCKE = chick chick BOOM WCKJ = chick chick BOOM WCKP = chick chick BOOM WCLE = Doc Clock: The Toasted Sandwich of Time WCNJ = Tokyo City Nights WCOE = Cocoto Fishing Master WCOP = 小魔怪钓鱼(欧) WCPE = Copter Crisis WCPP = Copter Crisis WCRE = Carnival King WCSE = CueSports: Pool Revolution WCSJ = Cue Sports: Wi-Fi Taisen Billiards WCSP = CueSports: Snooker vs Billiards WCUE = 3-2-1, Rattle Battle! WCUJ = Atsui 12-Game: FuriFuri Party! WCUP = 3-2-1, Rattle Battle! WCVE = 洞窟物语(美) WCVP = Cave Story WCZE = ColorZ WCZJ = ColorZ WCZP = ColorZ WD2J = Simple Wii Series Vol. 2: The Number Puzzle Neo WD9E = 恶魔城传说:重生(美) WD9J = 恶魔城传说:重生(日) WD9P = 恶魔城传说:重生(欧) WDAJ = Darts Wii WDBE = Derby Dogs WDBJ = Dirby Dog WDDE = Diner Dash WDDJ = Diner Dash WDDP = Diner Dash WDEE = Magic Destiny Astrological Games WDEP = Magic Destiny Astrological Games WDFE = 守卫城堡(美) WDFP = 守卫城堡(欧) WDHE = Art Style: ROTOHEX WDHJ = Art Style: Dialhex WDHP = Art Style: ROTOHEX WDIJ = Simple Wii Series Vol. 1: The Block Kuzushi Neo WDKE = Dart Rage WDME = 马里奥医生&细菌扑灭(美) WDMJ = 马里奥医生&细菌扑灭(日) WDMP = 马里奥医生&细菌扑灭(欧) WDNJ = Discipline Teikoku no Tanjyou WDOE = Driift Mania WDOP = Driift Mania WDPE = Dr. Mario Online Rx (Friend Battle Demo) WDPJ = Dr. Mario Online Rx (Friend Battle Demo) WDPP = Dr. Mario & Germ Buster (Friend Battle Demo) WDRE = 钻地小子世界(美) WDRJ = Mr. Driller World WDRP = 钻地小子世界(欧) WDSE = Dragon Master Spell Caster WDSP = Dragon Master Spell Caster WDVE = Voodoo Dice WDVP = Voodoo Dice WDXE = Diatomic WE6E = My Dolphin WE6J = Sea Farm: Iruka to Watashi no Showtime WE9E = Alien Crush Returns WE9J = Alien Crush Returns WE9P = Alien Crush Returns WEDE = Eduardo the Samurai Toaster WEME = Aha! I Got It! Escape Game WEMJ = 1 Nuke! Dasshutsu Game * My Home Hen WEMP = Aha! I Got It! Escape Game WENE = TNT Racers WENP = TNT Racers WEQE = Equilibrio WEQJ = Katamuki Spirits WEQP = Equilibrio WERE = 我的水族馆(美) WERJ = Blue Oasis: The Healing Space of Fish WERP = 我的水族馆(欧) WETE = PictureBook Games: Pop-Up Pursuit WETJ = Asoberu Ehon: Tobida Sugoroku WETP = PictureBook Games: A Pop-Up Adventure WEVE = Viral Survival WEVJ = Peakvox Escape Virus WEVP = Viral Survival WF2E = 最终幻想水晶编年史 光暗公主与世界征服之塔(美) WF2J = Final Fantasy Crystal Chronicles: Hikari to Yami no Himegimi to Sekai Seifuku no Tou WF2P = 最终幻想水晶编年史 光暗公主与世界征服之塔(欧) WF3E = Family Games - Pen & Paper Edition WF4E = 最终幻想4后传 月之归还(美) WF4J = Final Fantasy IV: The After Years - Tsuki no Kikan WF4P = 最终幻想4后传 月之归还(欧) WF5E = Family Card Games WF5J = Okiraku Daifugou Wii WF5P = Family Card Games WF6E = Frobot WFAE = Fast Draw Showdown WFAP = Fast Draw Showdown WFBE = Sandy Beach WFBJ = Beach e Oki o Tsukuccha Wow! WFBP = Sandy Beach WFCE = 最终幻想水晶编年史 小小国王与约定之国(美) WFCJ = Final Fantasy Crystal Chronicles: Chiisana Ousama to Yakusoku no Kuni WFCP = 最终幻想水晶编年史 小小国王与约定之国(欧) WFDE = Save the Furries WFEE = Fenimore Fillmore "The Westerner" WFFE = 有趣!有趣!迷你高尔夫(美) WFFF4I = 自制 零月蚀之假面(意) WFFJ = Fun! Fun! Minigolf WFFP = 有趣!有趣!迷你高尔夫(欧) WFGE = Frogger Returns WFGJ = Frogger Returns WFGP = Frogger Returns WFHE = Flight Control WFHP = Flight Control WFIE = Reel Fishing Challenge WFIJ = Fish Eyes Challenge WFIP = Reel Fishing Challenge WFKE = Family Go-Kart Racing WFKJ = Okiraku Kart Wii WFLE = Fluidity WFLP = Hydroventure WFME = Family & Friends Party WFMP = Family & Friends Party WFNE = Fish Tank WFNP = Fish Tank WFPJ = Hirameki Card Battle Mekuruca WFQP = Frogger: Hyper Arcade Edition WFSJ = Minna no Theater Wii WFTE = Fish 'em All WFTP = Fish'em All! WFUE = Furry Legends WFUP = Furry Legends WFVE = Soccer Up WFVP = Football Up WFWE = Flower Works WFWP = Flowerworks: Follie's Adventure WFXE = Cosy Fire WFXP = Cosy Fire WFYE = Family Games Pen & Paper Edition WFYP = Family Games Pen & Paper Edition WG2J = Sugar Bunnies Wii: Youkoso * Bunnies Field e WG4E = GhostSlayer WGAE = Ghost Mania WGAP = Ghost Mania WGDE = Gradius Rebirth WGDJ = Gradius Rebirth: Updated WGDP = 沙罗曼蛇 重生(欧) WGFP = Girlfriends Forever: Magic Skate WGGE = Gabrielle's Ghostly Groove: Monster Mix WGGJ = Ushimitsu Monstruo Puchi: Fushigi na Oshiro no Dance Party WGGP = Gabrielle's Ghostly Groove: Monster Mix WGLE = Gene Labs WGMJ = Game SoundStation WGOE = 粘粘世界(美) WGOJ = World of Goo WGOP = 粘粘世界(欧) WGPE = AquaSpace WGPJ = Aqua Living: TV de Nagameru Uotachi WGPP = Zenquaria: Virtual Aquarium WGSD = Phoenix Wright: Ace Attorney (Deutsche Version) WGSE = Phoenix Wright: Ace Attorney WGSF = Phoenix Wright: Ace Attorney (French Version) WGSI = Phoenix Wright: Ace Attorney WGSJ = Gyakuten Saiban: Yomigaeru Gyakuten WGSP = Phoenix Wright: Ace Attorney WGTJ = Sekai no Omoshiro Party Game WGUJ = Aero Guitar WGVE = 律动方块(美) WGYE = 螺旋射击(美) WH3E = Home Sweet Home WH3P = Home Sweet Home WHBE = Hubert the Teddy Bear: Winter Games WHEE = Heracles: Chariot Racing WHEP = Heracles: Chariot Racing WHFE = Heavy Fire: Special Operations WHFP = Heavy Fire: Special Operations WHHJ = Let's Zenryoku Hitchhike!!!!!!!!! WHMP51 = New Super Mario Bros. Wii: The Ultimate Wii-Homebrew.com Edition WHOE = Hockey Allstar Shootout WHPE = Sexy Poker WHPP = Sexy Poker WHRE = Heron Steam Machine WHRP = Heron: Steam Machine WHUE = Ghost Mansion Party WHUJ = Ghost Mansion Party WHUP = Ghost Mansion Party WHVE = High Voltage: Hot Rod Show WHWE = HoopWorld WHWP = HoopWorld: BasketBrawl WHXE = 螺旋 舞动全身(美) WHXP = 螺旋 舞动全身(欧) WHYE = Heavy Fire: Black Arms WHZE = Horizon Riders WIBE = bittos+ WICE = NyxQuest Kindred Spirits WICJ = NyxQuest WICP = NyxQuest: Kindred Spirits WIDE = Dracula: Undead Awakening WIDP = Dracula: Undead Awakening WIEE = Tales of Monkey Island: Chapter 3 - Lair of the Leviathan WIEP = Tales of Monkey Island Chapter 3: Lair of the Leviathan WIGE = Incoming WIHE = Play with Birds WIKJ = Ivy the Kiwi? Mini WILE = Tales of Monkey Island: Chapter 1 - Launch of the Screaming Narwhal WILP = Tales of Monkey Island Chapter 1: Launch of the Screaming Narwhal WIMC = WiiMC WINE = The Incredible Maze WINJ = Chokkan! Balance * Labyrinth WINP = The Incredible Maze WIRE = Tales of Monkey Island: Chapter 5 - Rise of the Pirate God WIRP = Tales of Monkey Island Chapter 5: Rise Of The Pirate God WISE = Tales of Monkey Island: Chapter 2 - The Seige of Spinner Cay WISP = Tales of Monkey Island Chapter 2: Siege Of Spinner Cay WITE = Aha! I Found It! Hidden Object Game WITJ = Aa! Mitsuketa! Item Sagashi Game WITP = Aha! I Found It! Hidden Object Game WIUE = Inkub WIVE = Space Invaders Get Even WIVJ = Space Invaders Get Even WIVP = 太空侵略者的复仇之战(欧) WIYE = Tales of Monkey Island: Chapter 4 - The Trial and Execution of Guybrush Threepwood WIYP = Tales of Monkey Island Chapter 4: The Trial and Execution of Guybrush Threepwood WJ2J = Jinsei Game: Happy Step WJAE = Jam City Rollergirls WJAP = Jam City Rollergirls WJCE = JellyCar 2 WJEE = Jett Rocket WJEP = Jett Rocket WJFE = Gnomz WJFP = Gnomz WJGJ = Jinsei Game WJKE = Jewel Keepers Easter Island WJKP = Jewel Keepers: Easter Island WJPJ = Janken Party Paradise WJSE = Jungle Speed WJSP = Jungle Speed WJWE = Bejeweled 2 WJWP = Bejeweled 2 WK2J = Kappa-kun to Asobou: Kappa-kun to Ota no Shimikai WK3J = Kappa-kun to Asobou: Kappa-kun to Mori no Nakamatachi WK9J = Minna de Asobou Koinu de Kururin WKBE = You, Me, and the Cubes WKBJ = Kimi to Boku to Rittai WKBP = You, Me and the Cubes WKCE = Kyotokei WKCP = Kyotokei WKDE = 海盗 梦想的钥匙(美) WKEJ = RakuRaku Kinen Apori Wii: Kinenka no Isha ga Osheru Nanoka de yameru Houhou WKFE = Kung Fu Funk: Everybody is Kung Fu Fighting! WKFP = Kung Fu Funk: Everybody Is Kung Fu Fighting WKHE = Big Kahuna Party WKIE = The Mystery of Whiterock Castle WKIP = The Mystery of Whiterock Castle WKKE = Party Fun Pirate WKKJ = Kurohige Kiki Ippatsu WKKP = Pop-Up Pirates! WKNJ = Kanken Minna de Waiwai Kanji Nou WKPJ = Kappa Kun to Mori no Nakama Tachi WKQJ = Kentei! TV Wii Minna de Gotouchi Quiz Battle WKRP = Karate Phants: Gloves of Glory WKTE = 魂斗罗 重生(美) WKTJ = Contra ReBirth WKTP = 魂斗罗 重生(欧) WKUJ = Downtown Nekketsu Dodgeball WKWE = Adventure on Lost Island: Hidden Object Game WKWJ = Item Sagashi * Yousei to Fushigi no Shima WKWP = Adventure on LOST ISLAND: Hidden Object Game WL2E = Target Toss Pro: Lawn Darts WL5E = HB Arcade Disc Golf WL9E = Let's Create! Pottery WLCE = Bingo Party Deluxe WLCJ = Wai Wai Bingo Deluxe WLCP = Bingo Party Deluxe WLDJ = Boku mo Sekai o Sukuitai: Battle Tournament WLEE = Learning with the PooYoos: Episode 1 WLEJ = Pooyoo to Asobou Episode 1 WLEP = Learning with the PooYoos: Episode 1 WLGE = HB Arcade Cards WLIE = Liight WLJJ = Boku mo Sekai o Sukuitai: Battle Tournament WLKJ = Okiraku Tennis SP WLLE = Little Tournament Over Yonder WLLP = Little Tournament Over Yonder WLME = La-Mulana WLMJ = La Mulana WLMP = La-Mulana WLNE = Learning with the PooYoos: Episode 2 WLNP = Learning with the PooYoos: Episode 2 WLOE = 迷失之风 冬季铃音(美) WLOJ = LostWinds: Winter of the Melodias WLOP = 迷失之风 冬季铃音(欧) WLPE = Lonpos WLPJ = Lonpos WLPP = Lonpos WLTE = LIT WLTJ = School of Darkness WLTP = LIT WLWE = 迷失之风(美) WLWJ = LostWinds WLWP = 迷失之风(欧) WLXJ = Phalanx WLZE = lilt line WLZP = lilt line WM2E = My Little Baby WM2P = My Little Baby WM3E = Manic Monkey Mayhem WM3P = Manic Monkey Mayhem WM4E = Mix Superstar WM4P = Mix Superstar WM5E = MDK2 WM7E = Anima Ark of Sinners WM7P = Anima Ark of Sinners WM8E = Bomberman Blast WM8J = Wi-Fi 8-Nin Battle Bomberman WM8P = 炸弹人爆破(欧) WM9E = Happy Hammerin WM9J = Tataite Mogupon WM9P = Happy Hammerin' WMAE = Magnetis WMAP = Magnetis WMBE = MaBoShi's Arcade WMBJ = Katachi no Game: Marubou Shikaku WMBP = MaBoShi: The Three Shape Arcade WMCE = Monsteca Corral: Monsters vs. Robots WMCP = Monsteca Corral: Monsters Vs. Robots WMDE = 疯狂的石头(美) WMGE = Mart Racer WMHE = Mouse House WMJE = Dive: The Medes Islands Secret WMJP = Dive: The Medes Islands Secret WMKE = Lead the Meerkats WMKP = Lead the Meerkats WMLE = 大胃王联盟(美) WMLJ = Major League Eating: The Game WMME = Muscle March WMMJ = Muscle Koushinkyoku WMMP = Muscle March WMOE = Moki Moki WMOJ = Antaga Mawashite Sukuu Puzzle: Mochimochi Q WMOP = Moki Moki WMRE = Monochrome Racing WMRP = Monochrome Racing WMSE = Enjoy your massage! WMSP = Enjoy your massage! WMWP = Miffy's World WMXE = Max & The Magic Marker WMXJ = Max & the Magic Marker WMXP = Max & the Magic Marker WMZP = Mahjong WN9E = Military Madness: Nectaris WN9J = Nectaris WN9P = Military Madness: Nectaris WNAP = Back to Nature WNEE = Penguins & Friends Hey! That's My Fish! WNEP = Penguins & Friends Hey! That’s my Fish! WNGE = Bang Attack WNKE = Niki - Rock 'n' Ball WNKP = Niki - Rock 'n' Ball WNPJ = Sugusuro Duo: New Pulsar R & V WNSE = Newton Vs The Horde WNVE = Neves Plus WNVJ = Neves Plus WNVP = Neves Plus: Phantheon of Tangrams WNWJ = Hamekomi Lucky Puzzle Wii Return WO6E = Family Pirate Party WO6J = Okiraku Sugoroku Wii WO6P = Family Pirate Party WOAE = Family Glide Hockey WOAJ = Okiraku Air Hockey Wii WOAP = Family Glide Hockey WOBE = Art Style: ORBIENT WOBJ = Art Style: Orbital WOBP = 万有引力(欧) WODJ = 叫我王(日) WOEJ = Oekaki Logic WOFE = Overflow WOGE = Family Mini Golf WOGJ = Okiraku Putter Golf Wii WOGP = Family Mini Golf WOKE = Karaoke Joysound WOKJ = Karaoke Joysound Wii WOLJ = Othello WOMJ = Sekai no Omoshiro Party Game 2 WOPE = Word Searcher Deluxe WOSE = Family Slot Car Racing WOSJ = Okiraku Slot Car Racing Wii WOSP = Family Slot Car Racing WOTE = Overturn WOTJ = Overturn WOTP = Overturn: Mecha Wars WOXJ = Osu! Exercise Dojo WOYE = Bit Boy!! WOYJ = Bit Man WOYP = Bit Boy!! WOZJ = Kodomo Kyouiku Telebi Wii: Aiue-Oumuzu WP2E = Potpourrii WP2P = Potpourrii WP4E = Learning with the PooYoos: Episode 3 WP4P = Learning with the PooYoos: Episode 3 WP5J = Pokosuka Racing WP6J = Boku wa Plarail Untenshi: Shinkansen Joukikikansha-Hen WP7E = My Planetarium WP7J = Planetarium WP7P = My Starry Night WP9J = Po-Ka-Zu Wii WPAJ = Pokémon Fushigi no Dungeon: Susume! Honoo no Boukendan WPBE = Pub Darts WPBP = Pub Darts WPCE = Doc Louis's Punch-Out!! WPDJ = Chindouchuu!! Pole no Daibouken WPFJ = Pokémon Fushigi no Dungeon: Ikuzo! Arashi no Boukendan WPGE = Snowpack Park WPGJ = Penguin Life WPHJ = Pokémon Fushigi no Dungeon: Mesaze! Hikari no Boukendan WPIE = Pit Crew Panic! WPIJ = Pit Crew Panic WPIP = 手忙脚乱 美女维修队(欧) WPJE = Pucca's Kisses Game WPJP = Pucca's Kisses Game WPKE = Texas Hold'Em Poker WPKP = Texas Hold'Em Poker WPLE = Planet Pachinko WPNJ = Ponjan WPOJ = Popple to Mahou no Crayon WPPE = 家庭乒乓球(美) WPPJ = Okiraku Ping Pong WPPP = 家庭乒乓球(欧) WPQE = 邻海空袭(美) WPQP = 邻海空袭(欧) WPRE = Art Style: Cubello WPRJ = Art Style: Cubeleo WPRP = 艺术风格立方体(欧) WPSE = Pokémon Rumble WPSJ = Ransen Pokémon Scramble WPSP = Pokémon Rumble WPTJ = Fantasic Cube WPUE = 泡泡龙加强版(美) WPUJ = Puzzle Bobble Wii WPUP = 泡泡龙加强版(欧) WPVE = The Tales of Bearsworth Manor: Chaotic Conflicts WPVJ = Kumanage Battle-Hen: Kiina no Kirai na Aoi Hoseki WPVP = The Tales of Bearsworth Manor: Chaotic Conflicts WPWE = Pong Toss Pro - Frat Party Games WPXJ = Minna de Tobikome Penguin Diving Hooper Looper WPYE = Pallurikio WPYP = Pallurikio WPZE = Bruiser & Scratch WQ4J = Kentoushi FuriFuri Boxing WR2E = Rabbids Lab WR2P = Rabbids Lab WR4P = Rush Rush Rally Racing WR5E = Retro City Rampage WR9E = 洛克人9(美) WR9J = 洛克人9(日) WR9P = 洛克人9(欧) WRBE = Robocalypse - Beaver Defense WRBP = Robocalypse - Beaver Defense WRDE = Word Searcher WRDP = Word Searcher WREE = Racers' Islands - Crazy Arenas WREP = Racers Islands Crazy Arenas WRFE = Reel Fishing Challenge II WRFP = Reel Fishing Challenge II WRGE = Rage of the Gladiator WRGP = Rage of the Gladiator WRIE = 彩虹岛大冒险(美) WRIJ = Rainbow Islands: Towering Adventure! WRIP = 彩虹岛大冒险(欧) WRJE = Racers' Islands - Crazy Racers WRJP = 急速岛屿 疯狂车手(欧) WRLE = FAST Racing League WRLP = FAST Racing League WRNJ = BIT.TRIP RUNNER WRPE = Burn the Rope WRQE = Deer Drive Legends WRQP = Deer Drive Legends WRRE = Robin Hood: The Return of Richard WRRP = Robin Hood: The Return Of Richard WRSE = Step Up WRTE = Robox WRUE = BIT.TRIP RUNNER WRUP = Bit.Trip Runner WRXE = 洛克人10(美) WRXJ = 洛克人10(日) WRXP = 洛克人10(欧) WRYE = Robox WRYP = Robox WS2J = Saikyou Ginsei Igo WS3E = Silver Star: Chess WS3J = Saikyou Ginsei Chess WS4J = Saikyou Ginsei Mahjong WS5J = Saikyou Ginsei Gomoku Narabe WS6E = Silver Star: Reversi WS6J = Saikyou Ginsei Reversi WS7E = Fantasy Slots: Adventure Slots and Games WS8J = Minna de Taisen Puzzle Shanghai WS9E = Sudoku Challenge! WS9P = Sudoku Challenge! WSAE = Onslaught WSAJ = MadSecta WSAP = Onslaught WSBJ = Sorcery Blade WSCJ = Out of Galaxy: Gin no Koshika WSEJ = Princess Ai Monogatari WSGE = Pop 'Em Drop 'Em Samegame WSGJ = Same Game Wii WSGP = Pop Them, Drop Them SAMEGAME WSHE = Stonekeep: Bones of the Ancestors WSIJ = Saikyou Ginsei Shogi WSJE = Spot The Differences! WSJP = Spot the Differences! WSLE = 暗行者(美) WSLJ = Shadow Walker WSME = Eat! Fat! FIGHT! WSMJ = Tsuppari Oozumou Wii Heya WSMP = Eat! Fat! FIGHT! WSNE = Sonic The Hedgehog 4 Episode I WSNJ = Sonic the Hedgehog 4: Episode I WSNP = Sonic The Hedgehog 4 Episode I WSRE = Space Trek WSSP = Solitaire WSTJ = Tenshi no Solitaire WSUE = Shootanto: Evolutionary Mayhem WSUJ = Shootanto: Kakohen WSUP = Shootanto: Evolutionary Mayhem WSWE = Swords & Soldiers WSWP = 剑与勇士(欧) WSXE = Stunt Cars WSXP = Stunt Cars WSYE = Snail Mail WSZE = Sneezies WSZP = Sneezies WT2E = Target Toss: Pro Bags WT3E = Tomena Sanner WT3J = Tomena Sanner Wii WT3P = Tomena Sanner WT8J = Hajite! Block Rush WTBJ = Fantasic Tambourine WTDJ = Tomica Drive WTEE = Tales of Elastic Boy: Mission 1 WTEP = Tales of Elastic Boy Mission 1 WTFE = Bit.Trip: Flux WTFP = Bit.Trip Flux WTHJ = Kaku! Ugoku! Tsukamaeru! Sensei Wii WTIE = Tiki Towers WTKE = TV Show King 2 WTKP = 电视节目之王2(欧) WTME = 高桥名人冒险岛 启程(美) WTMJ = Takahashi Meijin no Bouken Jima Wii WTMP = 高桥名人冒险岛 启程(欧) WTNE = Family Tennis WTNJ = Okiraku Tennis Wii WTPE = 俄罗斯方块派对(美) WTPJ = Tetris Party WTPP = 俄罗斯方块派对(欧) WTRE = Bit.Trip Beat WTRJ = BIT.TRIP BEAT WTRP = Bit.Trip Beat WTTE = 小鸡快跑(美) WTTP = 小鸡快跑(欧) WTUE = Tumblebugs 2 WTWP = Fenimore Fillmore: The Westerner WTXE = Texas Hold’em Tournament WTXP = Texas Hold’em Tournament WU2P = Successfully Learning Mathematics Year 3 WU3P = Successfully Learning Mathematics Year 4 WU4P = Successfully Learning Mathematics Year 5 WUBE = Ubongo WUBP = Ubongo WUFE = Drop Zone: Under Fire WUHE = Grill-Off with Ultra Hand! WUIP = Successfully Learning Mathematics Year 2 WUKJ = Unou Kids Okigaru Unou Training WUNE = Uno WUNJ = Uno WUNP = Uno WURE = Urbanix WURP = Urbanix WVBE = Bit.Trip: Void WVBJ = BIT.TRIP VOID WVBP = Bit.Trip Void WVCE = V.I.P 赌场:21点(美) WVDJ = Kodomo Kyouiku TV Wii: Aiue-O-Chan WVFE = Bobby Carrot Forever WVFP = Bobby Carrot Forever WVIE = 天境奏琴(美) WVKE = Water Warfare WVKJ = Bang Bang Kids WVKP = Water Warfare WVOE = Rock N' Roll Climber WVOJ = Rock n' Roll Climber WVOP = Rock'n Roll Climber WVQE = Vampire Crystals WVQP = Vampire Crystals WVSE = Gods Vs Humans WVSP = Gods Vs Humans WVUP = Mr Bumblebee Racing Champion WW2P = Where's Wally? Fantastic Journey 2 WW3P = Where's Wally? Fantastic Journey 3 WWAE = Warmen Tactics WWIP = Where's Wally? Fantastic Journey 1 WWLP = The Will of Dr. Frankenstein WWRE = 越野摩托 世界拉力赛(美) WWRJ = Excitebike: World Race WWRP = 越野摩托 世界拉力赛(欧) WWTE = BurgerTime World Tour WWTP = BurgerTime World Tour WWXE = Paper Wars: Cannon Fodder WWXP = Paper Wars Cannon Fodder WXBE = Ben 10: Alien Force - The Rise of Hex WXBP = Ben 10: Alien Force - The Rise of Hex WXME = Xmas Puzzle WXPE = Paint Splash! WXPP = Paint Splash WXRE = Reel Fishing Ocean Challenge WYIE = escapeVektor: Chapter 1 WYIP = escapeVektor: Chapter 1 WYKJ = Yomi Kiku Asobi WYME = Yummy Yummy Cooking Jam WYMP = Yummy Yummy Cooking Jam WYSE = Yard Sale Hidden Treasures: Sunnyville WYSP = Yard Sale Hidden Treasures Sunnyville WZAE = Zombii Attack WZBP = Cricket Challenge WZGE = Zoo Disc Golf WZHE = My Zoo WZHJ = Animal Life: Doubutsu Fureai Seikatsu WZHP = My Zoo WZIE = Rubik's Puzzle Galaxy RUSH WZIP = Rubik's Puzzle Galaxy: RUSH WZJJ = 简单系列第5辑 柔道(日) WZMJ = Simple Wii Series Vol. 3: The Mahjong WZPE = Zombie Panic in Wonderland WZPJ = Zombie in Wonderland WZPP = Zombie Panic in Wonderland WZZE = The Tales of Bearsworth Manor: Puzzling Pages WZZJ = Kumanage Puzzle-Hen: Piina no Suki na Akai Candy WZZP = The Tales of Bearsworth Manor: Puzzling Pages XAAJ = Eggy XABJ = Aleste XADJ = Yie Ar Kung 2 XAEJ = Space Manbow XAFJ = Metal Gear XAGJ = Road Fighter XAHJ = Penguin Adventure: Yume Tairiku Adventure XAIJ = Quarth XAKJ = Parodius - Tako wa Chikyuu wo Sukuu XALJ = Contra XAMJ = Knightmare: Majou Densetsu XANJ = Parodius 2 XAOJ = Gofer no Yabou: Episode II XAPJ = Metal Gear 2: Solid Snake XAQJ = Salamander XBKE52 = 自制 吉他英雄3 下载版(美) XH2E = Cave Story (Demo) XH2P = Cave Story (Demo) XH3E = Frobot (Demo) XH4E = Max and the Magic Marker (Demo) XH5E = Ayim And Yet It Moves Demo XH6E = Robox (Demo) XH6P = Robox (Demo) XH7E = Lit (Demo) XH7P = Lit (Demo) XH8E = Lead the Meerkats (Demo) XH8P = Lead the Meerkats (Demo) XHAE = Pokemon Rumble (Demo) XHAP = Pokemon Rumble (Demo) XHCE = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHCJ = Final Fantasy Crystal Chronicles: My Life as a Darklord (Demo) XHDE = NyxQuest: Kindred Spirits (Demo) XHDP = NyxQuest: Kindred Spirits (Demo) XHEE = BIT.TRIP BEAT (Demo) XHEJ = BIT.TRIP BEAT (Demo) XHEP = BIT.TRIP BEAT (Demo) XHFE = World of Goo (Demo) XHFP = World of Goo (Demo) XHIE = Fluidity (Demo) XHIP = Hydroventure (Demo) XHJE = Thruspace (Demo) XHJP = Thruspace (Demo) XHKE = Dive: The Medes Island Secret (Demo) XHKP = Dive: The Medes Secret Island (Demo) XHLE = Jett Rocket (Demo) XHLP = Jett Rocket (Demo) XHME = Art of Balance (Demo) XHMP = Art of Balance (Demo) XHQE = Zombie Panic (Demo) XHQP = Zombie Panic (Demo) XHRE = Furry Legends (Demo) XHRP = Furry Legends (Demo) XHVE = BIT.TRIP CORE (Demo) XHVP = BIT.TRIP CORE (Demo) XHWE = BIT.TRIP VOID (Demo) XHWP = BIT.TRIP VOID (Demo) XHXE = BIT.TRIP RUNNER (Demo) XHXP = BIT.TRIP RUNNER (Demo) XHZE = Chronos Twins DX (Demo) XHZP = Chronos Twins DX (Demo) XI2E = Kyotokei (Demo) XI2P = Kyotokei (Demo) XI7E = Liight (Demo) XI8E = Jam City (Demo) XI8P = Jam City (Demo) XIAE = Lilt Line (Demo) XIAP = Lilt Line (Demo) XIBE = Fish em All (Demo) XIBP = Fish em All Demo XICE = Gods vs Humans Demo XICP = Gods vs Humans Demo XIDE = Racers Islands Crazy Racers Demo XIDP = Racers Islands Crazy Racers Demo XIEE = chick chick BOOM Demo XIEP = chick chick BOOM Demo XIGE = Urbanix Demo XIGP = Urbanix Demo XIHE = Gladiator Demo XIHP = Gladiator Demo XIJE = Fast Racing League Demo XIJP = Fast Racing League Demo XIKE = Monsteca Corral Demo XIKP = Monsteca Corral Demo XINE = Learning with the Pooyoos Episode 1 Demo XINP = Learning with the Pooyoos Episode 1 Demo XIOE = Learning with the Pooyoos Episode 2 Demo XIOP = Learning with the Pooyoos Episode 2 Demo XIPE = Learning with the Pooyoos Episode 3 Demo XIPP = Learning with the Pooyoos Episode 3 Demo XIQE = Dart Rage Demo XIRE = Pong Toss Pro Demo XISE = BIT.TRIP FLUX Demo XISP = BIT.TRIP FLUX Demo XITE = Fast Draw Demo XITP = Fast Draw Demo XIUE = Soccer Bashi Demo XIUP = Soccer Bashi Demo XIVE = Mix Superstar Demo XIVP = Mix Superstar Demo XIZE = 3D Pixel Racing Demo XIZP = 3D Pixel Racing Demo XJEE = Aya and the Cubes of Light Demo XJEP = Aya and the Cubes of Light Demo XJGE = Gnomz Demo XJGP = Gnomz Demo XJHE = Paint Splash Demo XJIE = 2 Fast 4 Gnomz Demo XJSE = Karaoke Joysound (Demo) XJSP = Karaoke Joysound Wii (Demo) XNWE52 = 自制 吉它英雄3 Nightwish(美) XXXX02 = 自制 马里奥赛车 技巧(美) ZXFP52 = 自制 吉他英雄3 Encore(欧) wit-2.31a/share/magic.txt0000644000175000017500000000660512655737310015134 0ustar michaelmichael # #------------------------------------------------------------------------------ ### author: Wiimm, 2012-09-20 ### info: man magic(5) file(1) ### append to: /etc/magic ### download: http://wit.wiimm.de/download/magic.txt #------------------------------------------------------------------------------ # ISO image of a GameCube disc # Created by: Wiimm, www.wiimm.de, 2012-09-19 0x1c belong 0xc2339f3d >0 regex =^[A-Z0-9]{6} GameCube ISO image !:mime application/x-gamecube-iso-image >>0x00 string x '%.6s' >>0x20 string x %.64s #------------------------------------------------------------------------------ # ISO image of a Wii disc # Created by: Wiimm, www.wiimm.de, 2012-09-19 0x18 belong 0x5d1c9ea3 >0 regex =^[A-Z0-9]{6} Wii ISO image !:mime application/x-wii-iso-image >>0x00 string x '%.6s' >>0x20 string x %.64s #------------------------------------------------------------------------------ # WBFS == Wii Backup File System # Created by: Wiimm, www.wiimm.de, 2012-09-19 0 string WBFS WBFS !:mime application/x-wbfs >10 byte x v%u >8 byte 9 \b, hss 512 >8 byte 10 \b, hss 1K >8 byte 11 \b, hss 2K >8 byte 12 \b, hss 4K >8 byte 13 \b, hss 8K >8 byte 14 \b, hss 16K >8 byte <9 \b, hss 2^%u >8 byte >14 \b, hss 2^%u >9 byte 20 \b, wss 1M >9 byte 21 \b, wss 2M >9 byte 22 \b, wss 4M >9 byte 23 \b, wss 8M >9 byte 24 \b, wss 16M >9 byte 25 \b, wss 32M >9 byte 26 \b, wss 64M >9 byte >26 \b, wss 2^%u >9 byte <20 \b, wss 2^%u >12 quad !1 \b, multi disc archive >12 quad =1 >>0x200 regex =^[A-Z0-9]{6} >>>0x21c belong 0xc2339f3d >>>>0x200 string x \b, GC '%.6s' >>>>0x220 string x %.64s >>>0x218 belong 0x5d1c9ea3 >>>>0x200 string x \b, Wii '%.6s' >>>>0x220 string x %.64s #------------------------------------------------------------------------------ # WDF == Wii(mms) Disc File # Created by: Wiimm, www.wiimm.de, 2012-09-19 0 string WII\001DISC WDF !:mime application/x-wdf >8 belong x v%u, >24 bequad x v-size %lld, >44 belong x %u chunks >0x38 regex =^[A-Z0-9]{6} >>0x54 belong 0xc2339f3d >>>0x38 string x \b, GC '%.6s' >>>0x58 string x %.64s >>0x50 belong 0x5d1c9ea3 >>>0x38 string x \b, Wii '%.6s' >>>0x58 string x %.64s #------------------------------------------------------------------------------ # WIA == Wii(mms) ISO Achive # Created by: Wiimm, www.wiimm.de, 2012-09-19 0 string WIA\001 WIA !:mime application/x-wia >4 byte x v%u >5 byte x \b.%02x >0x4c belong 0 NONE >0x4c belong 1 PURGE >0x4c belong 2 BZIP2 >0x4c belong 3 LZMA >0x4c belong 4 LZMA2 >0x4c belong >4 ? >0x50 belong x \b.%u >0x54 belong 0x0200000 \b@1 >0x54 belong !0x0200000 >>0x54 belong 0x0a00000 \b@5 >>0x54 belong !0x0a00000 >>>0x54 belong 0x1400000 \b@10 >>>0x54 belong !0x1400000 >>>>0x54 belong 0x2800000 \b@20 >>>>0x54 belong !0x2800000 >>>>>0x54 belong 0x3c00000 \b@30 >>>>>0x54 belong !0x3c00000 >>>>>>0x54 belong 0x5000000 \b@40 >>>>>>0x54 belong !0x5000000 >>>>>>>0x54 belong 0x6400000 \b@50 >>>>>>>0x54 belong !0x6400000 >>>>>>>>0x54 belong x \b, c-size %x >0x24 bequad x \b, v-size %llu >0x58 regex =^[A-Z0-9]{6} >>0x74 belong 0xc2339f3d >>>0x58 string x \b, GC '%.6s' >>>0x78 string x %.64s >>0x70 belong 0x5d1c9ea3 >>>0x58 string x \b, Wii '%.6s' >>>0x78 string x %.64s #------------------------------------------------------------------------------ wit-2.31a/print-disc-blocks.sh0000755000175000017500000000136012655737307016076 0ustar michaelmichael#!/usr/bin/env bash CYGWIN=0 [[ $TERM = cygwin ]] && CYGWIN=1 for src in "$@" do file="$(readlink -m "$src")" dir="${file%/*}" if ((CYGWIN)) then dev="$( df "$dir" | awk '$1 ~ "^[A-Z]:" { print $1; exit }' )" else dev="$( df "$dir" | awk '$1 ~ "^/dev/" { print $1; exit }' )" fi inode="<$(stat -c%i "$file")>" usage=$(($(stat -c'%B/512*%b' "$file")/2048)) size=$(($(stat -c%s "$file")/1024/1024)) if ((1)) then echo -n "$src -> $dev $inode, $usage/$size MiB, frag=" DEBUGFS_PAGER=cat /sbin/debugfs "$dev" -R "stat $inode" 2>&1 \ | sed -r '0,/^(EXTENTS|BLOCKS):/ d; s/, */\n/g' \ | grep -vF '(IND)' \ | wc -l else DEBUGFS_PAGER=cat /sbin/debugfs "$dev" -R "stat $inode" fi done wit-2.31a/setup/0000755000175000017500000000000012655737332013346 5ustar michaelmichaelwit-2.31a/setup/wit.def0000644000175000017500000000213012655737307014627 0ustar michaelmichael //---------------------------------" // This file is generated by make." // Any changes will be lost!" //---------------------------------" #gdef wit$ = @map #gdef wit$['TOOLSET_SHORT'] = "@@TOOLSET-SHORT@@" #gdef wit$['TOOLSET_LONG'] = "@@TOOLSET-LONG@@" #gdef wit$['WIT_SHORT'] = "@@WIT-SHORT@@" #gdef wit$['WIT_LONG'] = "@@WIT-LONG@@" #gdef wit$['WWT_SHORT'] = "@@WWT-SHORT@@" #gdef wit$['WWT_LONG'] = "@@WWT-LONG@@" #gdef wit$['WDF_SHORT'] = "@@WDF-SHORT@@" #gdef wit$['WDF_LONG'] = "@@WDF-LONG@@" #gdef wit$['WFUSE_SHORT'] = "@@WFUSE-SHORT@@" #gdef wit$['WFUSE_LONG'] = "@@WFUSE-LONG@@" #gdef wit$['AUTHOR'] = "@@AUTHOR@@" #gdef wit$['VERSION'] = "@@VERSION@@" #gdef wit$['VERSION_NUM'] = "@@VERSION-NUM@@" #gdef wit$['BETA_VERSION'] = "@@BETA-VERSION@@" #gdef wit$['BETA_SUFFIX'] = "@@BETA-SUFFIX@@" #gdef wit$['REVISION'] = "@@REV@@" #gdef wit$['REVISION_NUM'] = @@REV-NUM@@ #gdef wit$['REVISION_NEXT'] = @@REV-NEXT@@ #gdef wit$['BINTIME'] = @@BINTIME@@ #gdef wit$['DATE'] = "@@DATE@@" #gdef wit$['TIME'] = "@@TIME@@" #gdef wit$['DATETIME'] = "@@DATE@@ @@TIME@@" wit-2.31a/setup/install.sh0000755000175000017500000000714112655737307015360 0ustar michaelmichael#!/usr/bin/env bash ##################################################################### ## __ __ _ ___________ ## ## \ \ / /| |____ ____| ## ## \ \ / / | | | | ## ## \ \ /\ / / | | | | ## ## \ \/ \/ / | | | | ## ## \ /\ / | | | | ## ## \/ \/ |_| |_| ## ## ## ## Wiimms ISO Tools ## ## http://wit.wiimm.de/ ## ## ## ##################################################################### ## ## ## This file is part of the WIT project. ## ## Visit http://wit.wiimm.de/ for project details and sources. ## ## ## ## Copyright (c) 2009-2015 by Dirk Clemens ## ## ## ##################################################################### ## ## ## This file installs the distribution. ## ## ## ##################################################################### #------------------------------------------------------------------------------ # sudo? try_sudo=1 if [[ $1 = --no-sudo ]] then try_sudo=0 shift else uid="$(id -u 2>/dev/null)" || try_sudo=0 [[ $uid = 0 ]] && try_sudo=0 fi if ((try_sudo)) then echo "*** need root privileges to install => try sudo ***" sudo "$0" --no-sudo "$@" exit $? fi #------------------------------------------------------------------------------ # settings BASE_PATH="@@INSTALL-PATH@@" BIN_PATH="$BASE_PATH/bin" SHARE_PATH="@@SHARE-PATH@@" BIN_FILES="@@BIN-FILES@@" WDF_LINKS="@@WDF-LINKS@@" SHARE_FILES="@@SHARE-FILES@@" INST_FLAGS="-p" #------------------------------------------------------------------------------ # make? make=0 if [[ $1 = --make ]] then # it's called from make make=1 shift fi #------------------------------------------------------------------------------ echo "*** install binaries to $BIN_PATH" for f in $BIN_FILES do [[ -f bin/$f ]] || continue mkdir -p "$BIN_PATH" install $INST_FLAGS bin/$f "$BIN_PATH/$f" done #------------------------------------------------------------------------------ echo "*** create wdf links" for f in $WDF_LINKS do [[ -f "$BIN_PATH/wdf" ]] && ln -f "$BIN_PATH/wdf" "$BIN_PATH/$f" done #------------------------------------------------------------------------------ echo "*** install share files to $SHARE_PATH" for f in $SHARE_FILES do mkdir -p "$SHARE_PATH" install $INST_FLAGS -m 644 share/$f "$SHARE_PATH/$f" done if [[ -f ./load-titles.sh ]] then mkdir -p "$SHARE_PATH" install $INST_FLAGS -m 755 ./load-titles.sh "$SHARE_PATH/load-titles.sh" fi #------------------------------------------------------------------------------ # load titles ((make)) || ./load-titles.sh #------------------------------------------------------------------------------ exit 0 wit-2.31a/setup/version.h0000644000175000017500000000213512655737307015207 0ustar michaelmichael //---------------------------------" // This file is generated by make." // Any changes will be lost!" //---------------------------------" #define TOOLSET_SHORT "@@TOOLSET-SHORT@@" #define TOOLSET_LONG "@@TOOLSET-LONG@@" #define WIT_SHORT "@@WIT-SHORT@@" #define WIT_LONG "@@WIT-LONG@@" #define WWT_SHORT "@@WWT-SHORT@@" #define WWT_LONG "@@WWT-LONG@@" #define WDF_SHORT "@@WDF-SHORT@@" #define WDF_LONG "@@WDF-LONG@@" #define WFUSE_SHORT "@@WFUSE-SHORT@@" #define WFUSE_LONG "@@WFUSE-LONG@@" #define AUTHOR "@@AUTHOR@@" #define VERSION "@@VERSION@@" #define VERSION_NUM "@@VERSION-NUM@@" #define BETA_VERSION @@BETA-VERSION@@ #define REVISION "@@REV@@" #define REVISION_NUM @@REV-NUM@@ #define REVISION_NEXT @@REV-NEXT@@ #define BINTIME @@BINTIME@@ #define DATE "@@DATE@@" #define TIME "@@TIME@@" #define DATETIME "@@DATE@@ @@TIME@@" #define INSTALL_PATH "@@INSTALL-PATH@@" #define SHARE_PATH "@@SHARE-PATH@@" #define WIN_INSTALL_PATH "@@WIN-INSTALL-PATH@@" #define URI_REPOS "@@URI-REPOS@@/" #define URI_VIEWVC "@@URI-VIEWVC@@/" #define URI_HOME "@@URI-HOME@@" #define URI_DOWNLOAD "@@URI-DOWNLOAD@@" wit-2.31a/setup/windows-uninstall.sh0000755000175000017500000000761212655737307017416 0ustar michaelmichael#!/usr/bin/env bash ##################################################################### ## __ __ _ ___________ ## ## \ \ / /| |____ ____| ## ## \ \ / / | | | | ## ## \ \ /\ / / | | | | ## ## \ \/ \/ / | | | | ## ## \ /\ / | | | | ## ## \/ \/ |_| |_| ## ## ## ## Wiimms ISO Tools ## ## http://wit.wiimm.de/ ## ## ## ##################################################################### ## ## ## This file is part of the WIT project. ## ## Visit http://wit.wiimm.de/ for project details and sources. ## ## ## ## Copyright (c) 2009-2015 by Dirk Clemens ## ## ## ##################################################################### ## ## ## This file installs the distribution on a windows system. ## ## ## ##################################################################### #------------------------------------------------------------------------------ # simple cygwin check if [[ $1 != --cygwin ]] then echo "Option --cygwin not set => exit" >&2 exit 1 fi #------------------------------------------------------------------------------ # pre definitions BIN_FILES="@@BIN-FILES@@" WDF_LINKS="@@WDF-LINKS@@" SHARE_FILES="@@SHARE-FILES@@" WIN_INSTALL_PATH="@@WIN-INSTALL-PATH@@" #------------------------------------------------------------------------------ # setup echo "* setup" export PATH=".:$PATH" key="/machine/SOFTWARE/Microsoft/Windows/CurrentVersion/ProgramFilesDir" if ! WIN_PROG_PATH="$(regtool get "$key")" || [[ $WIN_PROG_PATH = "" ]] then echo "Can't determine Windows program path => abort" >&2 exit 1 fi #CYGWIN_PROG_PATH="$( realpath "$WIN_PROG_PATH" )" CYGWIN_PROG_PATH="${WIN_PROG_PATH//\\//}" WDEST="$WIN_PROG_PATH\\${WIN_INSTALL_PATH//\//\\}" CDEST="$CYGWIN_PROG_PATH/$WIN_INSTALL_PATH" #------------------------------------------------------------------------------ # remove application pathes for tool in $BIN_FILES $WDF_LINKS do key="/machine/SOFTWARE/Microsoft/Windows/CurrentVersion/App Paths/$tool.exe" if regtool check "$key" >/dev/null 2>&1 then echo "* remove application path for '$tool.exe'" regtool unset "$key/" "${WDEST}\\${tool}.exe" regtool unset "$key/Path" "${WDEST}\\" regtool remove "$key" fi done #------------------------------------------------------------------------------ # remove WIT path to environment 'Path' echo "* remove WIT path from environment 'Path'" function set_path() { local key="$1" local p= local count=0 local new_path= # split at ';' & substitute ' ' temporary to ';' to be space save for p in $( regtool --quiet get "$key" | tr '; ' '\n;' ) do p="${p//;/ }" #echo " -> |$p|" [[ "$p" = "$WDEST" ]] || new_path="$new_path;$p" done [[ $new_path = "" ]] || regtool set -e "$key" "${new_path:1}" } set_path '/machine/SYSTEM/CurrentControlSet/Control/Session Manager/Environment/Path' set_path '/user/Environment/Path' #------------------------------------------------------------------------------ wit-2.31a/setup/load-titles.sh0000755000175000017500000001000012655737307016117 0ustar michaelmichael#!/usr/bin/env bash ##################################################################### ## __ __ _ ___________ ## ## \ \ / /| |____ ____| ## ## \ \ / / | | | | ## ## \ \ /\ / / | | | | ## ## \ \/ \/ / | | | | ## ## \ /\ / | | | | ## ## \/ \/ |_| |_| ## ## ## ## Wiimms ISO Tools ## ## http://wit.wiimm.de/ ## ## ## ##################################################################### ## ## ## This file is part of the WIT project. ## ## Visit http://wit.wiimm.de/ for project details and sources. ## ## ## ## Copyright (c) 2009-2015 by Dirk Clemens ## ## ## ##################################################################### ## ## ## This file loads the title files from WiiTDB.com ## ## ## ##################################################################### #------------------------------------------------------------------------------ NEEDED="wit wget tr" BASE_PATH="@@INSTALL-PATH@@" SHARE_PATH="@@SHARE-PATH@@" URI_TITLES=@@URI-TITLES@@ LANGUAGES="@@LANGUAGES@@" SHARE_DIR=./share #------------------------------------------------------------------------------ CYGWIN=0 if [[ $1 = --cygwin ]] then shift CYGWIN=1 SHARE_DIR=. export PATH=".:$PATH" fi #------------------------------------------------------------------------------ MAKE=0 if [[ $1 = --make ]] then # it's called from make shift MAKE=1 fi #------------------------------------------------------------------------------ function load_and_store() { local URI="$1" local DEST="$2" local ADD="$3" echo "*** load $DEST from $URI" if wget -q -O- "$URI" | wit titles / - >"$DEST.tmp" && test -s "$DEST.tmp" then if [[ $ADD != "" ]] then wit titles / "$ADD" "$DEST.tmp" >"$DEST.tmp.2" mv "$DEST.tmp.2" "$DEST.tmp" fi if [[ -s $DEST ]] then grep -v ^TITLES "$DEST" >"$DEST.tmp.1" grep -v ^TITLES "$DEST.tmp" >"$DEST.tmp.2" if ! diff -q "$DEST.tmp.1" "$DEST.tmp.2" >/dev/null then #echo " => content changed!" mv "$DEST.tmp" "$DEST" fi else mv "$DEST.tmp" "$DEST" fi fi rm -f "$DEST.tmp" "$DEST.tmp.1" "$DEST.tmp.2" } #------------------------------------------------------------------------------ errtool= for tool in $NEEDED do ((CYGWIN)) && [[ -x $tool.exe ]] && continue which $tool >/dev/null 2>&1 || errtool="$errtool $tool" done if [[ $errtool != "" ]] then echo "missing tools in PATH:$errtool" >&2 exit 2 fi #------------------------------------------------------------------------------ mkdir -p "$SHARE_DIR" load_and_store "$URI_TITLES" "$SHARE_DIR/titles.txt" # load language specific title files for lang in $LANGUAGES do LANG="$( echo $lang | tr '[a-z]' '[A-Z]' )" load_and_store $URI_TITLES?LANG=$LANG "$SHARE_DIR/titles-$lang.txt" "$SHARE_DIR/titles.txt" done if (( !MAKE && !CYGWIN )) then echo "*** install titles to $SHARE_PATH" mkdir -p "$SHARE_PATH" cp -p "$SHARE_DIR"/titles*.txt "$SHARE_PATH" fi # remove a possible temp dir in SHARE_PATH ((CYGWIN)) || rm -rf "$SHARE_PATH/$SHARE_DIR" wit-2.31a/setup/windows-install.sh0000755000175000017500000001064312655737307017051 0ustar michaelmichael#!/usr/bin/env bash ##################################################################### ## __ __ _ ___________ ## ## \ \ / /| |____ ____| ## ## \ \ / / | | | | ## ## \ \ /\ / / | | | | ## ## \ \/ \/ / | | | | ## ## \ /\ / | | | | ## ## \/ \/ |_| |_| ## ## ## ## Wiimms ISO Tools ## ## http://wit.wiimm.de/ ## ## ## ##################################################################### ## ## ## This file is part of the WIT project. ## ## Visit http://wit.wiimm.de/ for project details and sources. ## ## ## ## Copyright (c) 2009-2015 by Dirk Clemens ## ## ## ##################################################################### ## ## ## This file installs the distribution on a windows system. ## ## ## ##################################################################### #------------------------------------------------------------------------------ # simple cygwin check if [[ $1 != --cygwin ]] then echo "Option --cygwin not set => exit" >&2 exit 1 fi #------------------------------------------------------------------------------ # pre definitions BIN_FILES="@@BIN-FILES@@" WDF_LINKS="@@WDF-LINKS@@" SHARE_FILES="@@SHARE-FILES@@" WIN_INSTALL_PATH="@@WIN-INSTALL-PATH@@" #------------------------------------------------------------------------------ # setup echo "* setup" export PATH=".:$PATH" key="/machine/SOFTWARE/Microsoft/Windows/CurrentVersion/ProgramFilesDir" if ! WIN_PROG_PATH="$(regtool get "$key")" || [[ $WIN_PROG_PATH = "" ]] then echo "Can't determine Windows program path => abort" >&2 exit 1 fi #CYGWIN_PROG_PATH="$( realpath "$WIN_PROG_PATH" )" CYGWIN_PROG_PATH="${WIN_PROG_PATH//\\//}" WDEST="$WIN_PROG_PATH\\${WIN_INSTALL_PATH//\//\\}" CDEST="$CYGWIN_PROG_PATH/$WIN_INSTALL_PATH" #------------------------------------------------------------------------------ # install files # mkdir before testing the directory mkdir -p "$CDEST" if [[ $(stat -c%d-%i "$PWD") != "$(stat -c%d-%i "$CDEST")" ]] then echo "* install files to $WDEST" cp --preserve=time *.bat *.dll *.exe *.sh *.txt "$CDEST" fi #------------------------------------------------------------------------------ # define application pathes for tool in $BIN_FILES $WDF_LINKS do [[ -s "$CDEST/$tool.exe" ]] || continue echo "* define application path for '$tool.exe'" key="/machine/SOFTWARE/Microsoft/Windows/CurrentVersion/App Paths/$tool.exe" regtool add "$key" regtool set -s "$key/" "${WDEST}\\${tool}.exe" regtool set -s "$key/Path" "${WDEST}\\" done #------------------------------------------------------------------------------ # add WIT path to environment 'Path' echo "* add WIT path to environment 'Path'" function set_path() { local key="$1" local p= local count=0 local new_path= # split at ';' & substitute ' ' temporary to ';' to be space save for p in $( regtool --quiet get "$key" | tr '; ' '\n;' ) do p="${p//;/ }" #echo " -> |$p|" if [[ "$p" == "$WDEST" ]] then ((count++)) || new_path="$new_path;$p" #echo "$count $WDEST" elif [[ $p != "" ]] then new_path="$new_path;$p" fi done if [[ $new_path != "" ]] then ((count)) || new_path="$new_path;$WDEST" #echo "count=$count" #echo "new_path=${new_path:1}" regtool set -e "$key" "${new_path:1}" fi } set_path '/machine/SYSTEM/CurrentControlSet/Control/Session Manager/Environment/Path' set_path '/user/Environment/Path' #------------------------------------------------------------------------------ wit-2.31a/setup/load-titles.bat0000755000175000017500000000006612655737307016266 0ustar michaelmichael@echo off bash.exe ./load-titles.sh --cygwin pause wit-2.31a/setup/INSTALL.txt0000644000175000017500000000411212655737307015215 0ustar michaelmichael ##################################################################### ## __ __ _ ___________ ## ## \ \ / /| |____ ____| ## ## \ \ / / | | | | ## ## \ \ /\ / / | | | | ## ## \ \/ \/ / | | | | ## ## \ /\ / | | | | ## ## \/ \/ |_| |_| ## ## ## ## Wiimms ISO Tools ## ## http://wit.wiimm.de/ ## ## ## ##################################################################### ## ## ## This file is part of the WIT project. ## ## Visit http://wit.wiimm.de/ for project details and sources. ## ## ## ## Copyright (c) 2009-2015 by Dirk Clemens ## ## ## ##################################################################### How to install Wiimms ISO Tools =============================== Windows: -------- Start: windows-install.exe After the very first installation of the tools, a reboot is needed. Mac, Linux, Unix: ----------------- First open a console terminal, an admin terminal is the best. Then change to the directory, where you have unpacked the distribution. Therefore use the comamnd: cd DIRECTORY ... where 'DIRECTORY' is the directory path. Call: ./install.sh If the script is not started as 'root', the script call itself with 'sudo'. Depending on your 'sudo' settings, 'sudo' asks you for the root passwort. To avoid the sudo handling, start the script with: ./install.sh --no-sudo wit-2.31a/setup/cygwin-copy.sh0000755000175000017500000000571012655737307016162 0ustar michaelmichael#!/usr/bin/env bash ##################################################################### ## __ __ _ ___________ ## ## \ \ / /| |____ ____| ## ## \ \ / / | | | | ## ## \ \ /\ / / | | | | ## ## \ \/ \/ / | | | | ## ## \ /\ / | | | | ## ## \/ \/ |_| |_| ## ## ## ## Wiimms ISO Tools ## ## http://wit.wiimm.de/ ## ## ## ##################################################################### ## ## ## This file is part of the WIT project. ## ## Visit http://wit.wiimm.de/ for project details and sources. ## ## ## ## Copyright (c) 2009-2015 by Dirk Clemens ## ## ## ##################################################################### ## ## ## This file copies the cygwin tools and DLLs into the binary ## ## directory to prepare the distribution. ## ## ## ##################################################################### #------------------------------------------------------------------------------ # setup CYGWIN_DIR="@@CYGWIN-DIR@@" CYGWIN_TOOLS="@@CYGWIN-TOOLS@@" BIN_FILES="@@BIN-FILES@@" DISTRIB_PATH="@@DISTRIB-PATH@@" BIN_PATH="$DISTRIB_PATH/bin" mkdir -p "$BIN_PATH" || exit 1 #------------------------------------------------------------------------------ # copy cygwin tools for tool in $CYGWIN_TOOLS do cp --preserve=time "$CYGWIN_DIR/$tool.exe" "$BIN_PATH" || exit 1 done #------------------------------------------------------------------------------ # copy wit tools for tool in $BIN_FILES do if [[ -s ./$tool.exe ]] then CYGWIN_TOOLS="$CYGWIN_TOOLS $tool" ln -f ./$tool.exe "$BIN_PATH" || exit 1 fi done #------------------------------------------------------------------------------ # copy needed cygwin dlls for tool in $CYGWIN_TOOLS do ldd "$BIN_PATH/$tool.exe" | grep -F "=> $CYGWIN_DIR/" | awk '{print $1}' done | sort | uniq | while read dll do cp --preserve=time "$CYGWIN_DIR/$dll" "$BIN_PATH" || exit 1 done #------------------------------------------------------------------------------ # done exit 0 wit-2.31a/WDF.txt0000644000175000017500000000330612655737307013373 0ustar michaelmichael /*************************************************************************** * __ __ _______ _______ * * \ \ / / | ____ \ | _____| * * \ \ / / | | \ \ | | * * \ \ / / | | | | | |___ * * \ \ /\ / / | | | | | ___| * * \ \/ \/ / | | | | | | * * \ /\ / | |____/ / | | * * \/ \/ |_______/ |_| * * * * Wii(mm's) Disc File * * http://wit.wiimm.de/WDF * * * *************************************************************************** * * * This file is part of the WIT/WDF project. * * Visit http://wit.wiimm.de/WDF for details and sources. * * * * Copyright (c) 2009-2015 by Dirk Clemens * * * ***************************************************************************/ This file is obsolete now. Visit http://wit.wiimm.de/WDF for technical information about the WDF file format. wit-2.31a/edit-list/0000755000175000017500000000000012655737307014106 5ustar michaelmichaelwit-2.31a/edit-list/+all-source.edit-list0000644000175000017500000000045712655737307020055 0ustar michaelmichael../src/wit.c ; ../src/wwt.c ; ../src/lib-std.[ch] ; ../src/lib-file.[ch] ; ../src/lib-error.[ch] ; ../src/lib-sf.[ch] ; ../src/lib-wdf.[ch] ; ../src/lib-ciso.[ch] ; ../src/iso-interface.[ch] ; ../src/wbfs-interface.[ch] ; ../src/*.{c,h} ; ../src/&/*.{c,h,s,S} ; ../setup/*.{c,h} ; ../work/*.{c,h,s,S} ; wit-2.31a/edit-list/+doc.edit-list0000644000175000017500000000042412655737307016546 0ustar michaelmichael../templates/module/last-history.txt ; ../templates/{wit,wwt}.txt ; ../templates/DOCUMENTATION.txt ; ../templates/HISTORY.txt ; ../templates/HISTORY*.txt ; ../templates/*.txt ; ../templates/*.forum ; ../templates/&/*.{txt,def,inc} ; ../setup/&/*.{txt,def,inc} ; ../work/2do ; wit-2.31a/edit-list/lib-sf.edit-list0000644000175000017500000000027212655737307017103 0ustar michaelmichael../src/lib-sf.[ch] ; ../src/lib-std.[ch] ; ../src/lib-file.[ch] ; ../src/lib-wdf.[ch] ; ../src/lib-ciso.[ch] ; @+all-source.edit-list -y 5530 ../src/lib-sf.c ; -y 500 ../src/lib-sf.h ; wit-2.31a/edit-list/+all-header.edit-list0000644000175000017500000000003412655737307017774 0ustar michaelmichael../src/*.h ; ../src/&/*.h ; wit-2.31a/edit-list/wtest.edit-list0000644000175000017500000000031312655737307017071 0ustar michaelmichael../src/wtest.c ; ../src/libwbfs/wiidisc.[ch] ; ../src/lib-std.c ; ../work/wtest+.c ; @+all-source.edit-list -y 1050 ../src/wtest.c ; -y 2216 ../src/libwbfs/wiidisc.c ; -y 1 ../src/libwbfs/wiidisc.h ; wit-2.31a/edit-list/test-libwbfs.edit-list0000644000175000017500000000011612655737307020331 0ustar michaelmichael../test-libwbfs/*.[ch] ; @lib-wbfs-only.edit-list ../test-libwbfs/Mafefile. ; wit-2.31a/edit-list/+scripts.edit-list0000644000175000017500000000006212655737307017466 0ustar michaelmichael../*.sh ; ../{templates,scripts,src,setup}/&/*.sh wit-2.31a/edit-list/lib-ciso.edit-list0000644000175000017500000000027412655737307017432 0ustar michaelmichael../src/lib-ciso.[ch] ; ../src/lib-sf.[ch] ; ../src/lib-std.[ch] ; ../src/lib-file.[ch] ; ../src/lib-wdf.[ch] ; @+all-source.edit-list -y 40 ../src/lib-ciso.c ; -y 20 ../src/lib-ciso.h ; wit-2.31a/edit-list/wbfs-interface.edit-list0000644000175000017500000000035712655737307020632 0ustar michaelmichael../src/wbfs-interface.[ch] ; ../src/iso-interface.[ch] ; ../src/lib-wdf.[ch] ; ../src/lib-std.[ch] ; ../src/lib-file.[ch] ; ../src/lib-error.[ch] ; @+all-source.edit-list -y 100 ../src/wbfs-interface.h ; -y 2700 ../src/wbfs-interface.c ; wit-2.31a/edit-list/+text-files.edit-list0000644000175000017500000000011012655737307020055 0ustar michaelmichael../text-files/*.inc ; ../text-files/*.inc/*.inc ; ../gen-text-file.sh ; wit-2.31a/edit-list/patch.edit-list0000644000175000017500000000036412655737307017030 0ustar michaelmichael../src/patch.[ch] ; ../src/iso-interface.[ch] ; ../src/libwbfs/file-formats.h ; ../src/lib-wdf.[ch] ; ../src/lib-std.[ch] ; ../src/lib-file.[ch] ; ../src/lib-error.[ch] ; @+all-source.edit-list -y 370 ../src/patch.c ; -y 202 ../src/patch.h ; wit-2.31a/edit-list/cert.edit-list0000644000175000017500000000015012655737307016657 0ustar michaelmichael../src/libwbfs/cert.[ch] ; @wiidisc.edit-list -y 300 ../src/libwbfs/cert.c -y 100 ../src/libwbfs/cert.h wit-2.31a/edit-list/doc-forum.edit-list0000644000175000017500000000002712655737307017620 0ustar michaelmichael../templates/*.forum ; wit-2.31a/edit-list/lib-bzip2.edit-list0000644000175000017500000000022712655737307017521 0ustar michaelmichael../src/lib-bzip2.[ch] ; ../src/libbz2/*.[ch] ; ../src/lib-lzma.[ch] ; @+all-source.edit-list -y 42 ../src/lib-bzip2.c ; -y 42 ../src/lib-bzip2.h ; wit-2.31a/edit-list/wfuse.edit-list0000644000175000017500000000015612655737307017061 0ustar michaelmichael../src/wfuse.c ; ../src/wit.c ; ../src/wwt.c ; @+all-source.edit-list @+doc.edit-list -y 100 ../src/wfuse.c ; wit-2.31a/edit-list/error.edit-list0000644000175000017500000000016512655737307017061 0ustar michaelmichael../src/lib-error.h ; ../src/lib-std.c ; @+all-source.edit-list -y 35 ../src/lib-error.h ; -y 580 ../src/lib-std.c ; wit-2.31a/edit-list/lib-gcz.edit-list0000644000175000017500000000043612655737307017260 0ustar michaelmichael../src/lib-gcz.[ch] ; ../src/lib-wia.[ch] ; ../src/lib-wdf.[ch] ; ../src/lib-sf.[ch] ; ../src/lib-std.[ch] ; ../src/lib-file.[ch] ; ../src/lib-ciso.[ch] ; @+all-source.edit-list -y 520 ../src/lib-gcz.c ; -y 100 ../src/lib-gcz.h ; -y 100 ../src/lib-wia.c ; -y 100 ../src/lib-wdf.c ; wit-2.31a/edit-list/debug.edit-list0000644000175000017500000000013112655737307017007 0ustar michaelmichael../src/debug.[ch] ; @lib-std.edit-list -y 160 ../src/debug.c ; -y 343 ../src/debug.h ; wit-2.31a/edit-list/lib-wbfs-only.edit-list0000644000175000017500000000031112655737307020405 0ustar michaelmichael../src/libwbfs/libwbfs.[ch] ; ../src/libwbfs/wiidisc.[ch] ; ../src/libwbfs/file-formats.[ch] ; ../src/libwbfs/tools.[ch] ; ../src/libwbfs/rijndael.[ch] ; ../src/libwbfs/*.[ch] ; ../src/libwbfs/*.txt ; wit-2.31a/edit-list/lib-wia.edit-list0000755000175000017500000000026512655737307017260 0ustar michaelmichael../src/lib-wia.[ch] ; ../src/lib-wdf.[ch] ; ../src/lib-sf.[ch] ; ../src/lib-std.[ch] ; ../src/lib-file.[ch] ; ../src/lib-ciso.[ch] ; @+all-source.edit-list -y 1 ../src/lib-wia.c ; wit-2.31a/edit-list/+all.edit-list0000644000175000017500000000022412655737307016547 0ustar michaelmichael@+all-source.edit-list @+doc.edit-list @+templates.edit-list @+text-files.edit-list @+scripts.edit-list @+makefiles.edit-list @+editlists.edit-list wit-2.31a/edit-list/wwt.edit-list0000644000175000017500000000021212655737307016542 0ustar michaelmichael../src/wwt.c ; ../templates/wwt.txt ; ../src/wit.c ; ../src/wwt+wit-cmd.c ; @+all-source.edit-list @+doc.edit-list -y 2990 ../src/wwt.c ; wit-2.31a/edit-list/wdf.edit-list0000644000175000017500000000015312655737307016505 0ustar michaelmichael../src/wdf.c ; ../src/wit.c ; ../src/wwt.c ; @+all-source.edit-list @+doc.edit-list -y 1150 ../src/wdf.c ; wit-2.31a/edit-list/crypt-only.edit-list0000644000175000017500000000005212655737307020043 0ustar michaelmichael../src/crypt.h ; ../src/crypto/*.[chsS] ; wit-2.31a/edit-list/+editlists.edit-list0000644000175000017500000000001612655737307020002 0ustar michaelmichael*.edit-list ; wit-2.31a/edit-list/dclib.edit-list0000644000175000017500000000006012655737307016777 0ustar michaelmichael../src/dclib-utf8.[ch] ; @+all-source.edit-list wit-2.31a/edit-list/+makefiles.edit-list0000644000175000017500000000027212655737307017742 0ustar michaelmichael../work/Makefile.user ; ../Makefile. ; ../Makefile.* ; ../src/*/Makefile ; ../makefiles-local/Makefile.* ; ../*/Makefile. ; -R *.bak -y 46 ../Makefile. ; -y -30 ../work/Makefile.user ; wit-2.31a/edit-list/+templates.edit-list0000644000175000017500000000003412655737307017774 0ustar michaelmichael../templates/*.{txt,h,sh} ; wit-2.31a/edit-list/match-pattern.edit-list0000644000175000017500000000011012655737307020465 0ustar michaelmichael../src/match-pattern.[ch] ; ../src/titles.[ch] ; @+all-source.edit-list wit-2.31a/edit-list/lib-lzma.edit-list0000644000175000017500000000035112655737307017434 0ustar michaelmichael../src/lib-lzma.[ch] ; ../src/lzma/LzmaDec.c ; ../src/lzma/LzmaEnc.c ; ../src/lzma/*.[ch] ; ../src/lzma/*.txt ; ../src/wtest.c ; @+all-source.edit-list -y 42 ../src/lib-lzma.c ; -y 42 ../src/lib-lzma.h ; -y 560 ../src/wtest.c ; wit-2.31a/edit-list/lib-wbfs.edit-list0000644000175000017500000000026212655737307017433 0ustar michaelmichael../src/libwbfs/libwbfs.[ch] ; ../src/libwbfs/tools.[ch] ; @lib-wbfs-only.edit-list @iso-interface.edit-list -y 1300 ../src/libwbfs/libwbfs.c ; -y 420 ../src/libwbfs/libwbfs.h ; wit-2.31a/edit-list/titles.edit-list0000644000175000017500000000010312655737307017224 0ustar michaelmichael../src/titles.[ch] ; @+all-source.edit-list -y 305 ../src/titles.c wit-2.31a/edit-list/wit.edit-list0000644000175000017500000000036312655737307016533 0ustar michaelmichael../src/wwt+wit-cmd.c ; ../src/wit.c ; ../src/wit-mix.c ; ../src/iso-interface.[ch] ; ../src/wwt.c ; @+all-source.edit-list @+doc.edit-list -y 680 ../src/wit.c ; -y 100 ../src/wwt.c ; -y 100 ../src/wit-mix.c ; -y 320 ../src/wwt+wit-cmd.c ; wit-2.31a/edit-list/lib-std.edit-list0000644000175000017500000000033112655737307017261 0ustar michaelmichael../src/lib-file.[ch] ; ../src/lib-std.[ch] ; ../src/lib-error.[ch] ; ../src/lib-wdf.[ch] ; ../src/lib-sf.[ch] ; @+all-source.edit-list -y 3800 ../src/lib-std.c ; -y 1220 ../src/lib-std.h ; -y 3230 ../src/lib-file.c ; wit-2.31a/edit-list/trace.edit-list0000644000175000017500000000002012655737307017014 0ustar michaelmichael../_trace-*.tmp wit-2.31a/edit-list/wiidisc.edit-list0000644000175000017500000000037312655737307017364 0ustar michaelmichael../src/libwbfs/wiidisc.[ch] ; ../src/libwbfs/tools.[ch] ; ../src/wit.c ; ../src/libwbfs/file-formats.[ch] ; @lib-wbfs-only.edit-list @iso-interface.edit-list -y 2216 ../src/libwbfs/wiidisc.c ; -y 1 ../src/libwbfs/wiidisc.h ; -y 1 ../src/wit.c ; wit-2.31a/edit-list/lib-wbfs-h.edit-list0000644000175000017500000000013212655737307017654 0ustar michaelmichael../src/libwbfs/*.h ; ../src/libwbfs/*.c ; ../src/libwbfs/*.txt ; @iso-interface.edit-list wit-2.31a/edit-list/iso-interface.edit-list0000644000175000017500000000044112655737307020455 0ustar michaelmichael../src/iso-interface.[ch] ; ../src/patch.[ch] ; ../src/libwbfs/file-formats.h ; ../src/wbfs-interface.[ch] ; ../src/lib-wdf.[ch] ; ../src/lib-std.[ch] ; ../src/lib-file.[ch] ; ../src/lib-error.[ch] ; @+all-source.edit-list -y 100 ../src/iso-interface.h ; -y 3740 ../src/iso-interface.c ; wit-2.31a/edit-list/file-formats.edit-list0000644000175000017500000000041012655737307020311 0ustar michaelmichael../src/libwbfs/file-formats.h ; ../src/libwbfs/file-formats.c ; ../src/libwbfs/tools.[ch] ; ../src/lib-std.[ch] ; ../src/lib-file.[ch] ; @+all-source.edit-list -y 1 ../src/libwbfs/file-formats.c ; -y 920 ../src/libwbfs/file-formats.h ; -y 1 ../src/lib-std.c ; wit-2.31a/edit-list/+user-interface.edit-list0000644000175000017500000000056212655737307020720 0ustar michaelmichael../src/ui/tab-ui.c ; ../src/ui/tab-wit.inc ; ../src/ui/tab-wwt.inc ; ../src/ui/tab-wdf.inc ; ../src/ui/tab-*.inc ; ../src/ui/gen-ui.c ; ../src/ui/ui.[ch] ; ../src/ui/*.[ch] ; ../ui-*.tmp ; @+all-source.edit-list -y 185 ../src/ui/tab-ui.c ; -y 48 ../src/ui/tab-wit.inc ; -y 48 ../src/ui/tab-wwt.inc ; -y 48 ../src/ui/tab-wdf.inc ; -y 48 ../src/ui/tab-wfuse.inc ; wit-2.31a/edit-list/winapi.edit-list0000644000175000017500000000025112655737307017213 0ustar michaelmichael../src/winapi.[ch] ; ../src/lib-file.[ch] ; ../src/lib-std.[ch] ; @+all-source.edit-list -y 100 ../src/winapi.c ; -y 120 ../src/winapi.h ; -y 3420 ../src/lib-file.c ; wit-2.31a/edit-list/lib-wdf.edit-list0000644000175000017500000000027412655737307017255 0ustar michaelmichael../src/lib-wdf.[ch] ; ../src/lib-sf.[ch] ; ../src/lib-std.[ch] ; ../src/lib-file.[ch] ; ../src/lib-ciso.[ch] ; @+all-source.edit-list -y 500 ../src/lib-wdf.c ; -y 220 ../src/lib-wdf.h ; wit-2.31a/gpl-2.0.txt0000644000175000017500000004310312655737306014030 0ustar michaelmichael GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. wit-2.31a/templates/0000755000175000017500000000000012655737307014206 5ustar michaelmichaelwit-2.31a/templates/gbatemp-beta-commit.forum0000644000175000017500000000163112655737307021077 0ustar michaelmichael [img]http://wit.wiimm.de/images/wiimms-tools.png[/img] [size="5"][color="#0000FF"][b]@@TOOLSET-SHORT@@: @@TOOLSET-LONG@@ v@@VERSION@@ - @@@@-@@-@@[/b][/color][/size] [size="4"][color="#800000"][b]Beta test version, for EXPERIMENTAL use only.[/b][/color][/size] [color="#000080"][b]I have commited a new version to the beta branch.[/b][/color] Binaries are not available. [size="3"][color="#0000c0"][b]Highlights of this release:[/b][/color][/size] [list] [*] [color=#ffffff].[/color] [/list] [size="3"][color="#0000c0"][b]Change log:[/b][/color][/size] [code] @@MODULE(last-history.txt)@@ [/code] The source is published under the license of GPL2. Checkout the sources directly from the [url=@@URI-REPOS@@][b]SVN repository[/b][/url] or [url=@@URI-VIEWVC@@][b]browse the source[/b][/url]. These URLs are different from the product version. Visit [url=@@URI-HOME@@][b]@@URI-HOME@@[/b][/url] for more information. wit-2.31a/templates/wii-homebrew-update.forum0000644000175000017500000000532612655737307021144 0ustar michaelmichael [img]http://wit.wiimm.de/images/wiimms-tools.png[/img] [size=18][color=#0000FF][b]@@TOOLSET-SHORT@@: @@TOOLSET-LONG@@ v@@VERSION@@ - @@@@-@@-@@[/b][/color][/size] [size=15][color=#800000][b]Ein Kommandozeilen-Toolkit fr ISO und WBFS Dateien.[/b][/color][/size] [b]wit+wwt[/b] sind [url=@@URI-HOME@@info/command-line.html]Kommandozeilen-Tools[/url]. Das bedeutet, dass man zur Ausfhrung vorher ein Kommandofenster aufmacht um dann die Kommandos einzugeben. Dieses hat aber den Vorteil, dass man sich Batch-Dateien fr immer wiederkehrende Aufgaben schreiben kann. Zum Ansprechen der Laufwerke (WBFS Platten) muss das Kommandofenster im Admin-Modus arbeiten. Die Syntax der Kommandos ist stark an Unix angelehnt, da die Programme auch unter Linux entwickelt werden. [color=#0000c0][size=12][b]Eigenschaften:[/b][/size] (Die Links zeigen auf die englischsprachige Website)[/color] @@MODULE(features-de.forum)@@ [size=12][color=#0000c0][b]Download der aktuellen Version:[/b][/color][/size] ~[size=12][color=#0000c0][b]Download[/b][/color] [color=#800000][b]der EXPERIMENTELLEN Version:[/b][/color][/size] [list] [*] [url=@@URI-DOWNLOAD-I386@@][b]@@DISTRIB-I386@@[/b][/url] : Linux/i386 Version [*] [url=@@URI-DOWNLOAD-X86_64@@][b]@@DISTRIB-X86_64@@[/b][/url] : Linux/x86_64 Version [*] [url=@@URI-DOWNLOAD-MAC@@][b]@@DISTRIB-MAC@@[/b][/url] : Mac OS Universal Binaries (ppc, i386 und x86-64) [*] [url=@@URI-DOWNLOAD-CYGWIN@@][b]@@DISTRIB-CYGWIN@@[/b][/url] : Cygwin (Windows) Version [/list] Weitere Versionen sind unter [url=@@URI-HOME@@download.html][b]@@URI-HOME@@download.html[/b][/url] verfgbar. [size=12][color=#0000c0][b]Es existieren auch mehrere graphische Oberflchen (GUI) zur Bedienung von WIT. Die beiden wichtigsten sind:[/b][/color][/size] [list] [*] [url=@@URI-QTWITGUI@@][b]QtWitGui, Bearbeitung einzelner Wii ISO discs.[/b][/url] Dieses QT basierte GUI bietet Dinge rund um die Bearbeitung (Kopieren, modifizieren) von einzelnen Wii ISO discs. [*] [url=@@URI-WIIBAFU@@][b]Wii Backup Fusion[/b], ein WBFS- und ISO-Manager.[/url] WiiBaFu ist ein ausgereiftes GUI, welches auf QT basiert. [*] [url=@@URI-MACWITGUI@@][b]Witgui[/b] fr Mac.[/url] [i]Witgui[/i] ist eine graphische Oberflche fr die Mac-Version von [i]wit[/i]. [/list] ~ Highlights [size=12][color=#0000c0][b]Hhepunkte dieser Version:[/b][/color][/size] [list] [*] [/list] [size=12][color=#0000c0][b]Letzte nderungen:[/b][/color][/size] [code] @@MODULE(last-history.txt)@@ [/code] Die Quellen stehen unter der GPL2 Lizenz und knnen entweder direkt aus dem [url=@@URI-REPOS@@][b]SVN Repository[/b][/url] exportiert oder mit einem [url=@@URI-VIEWVC@@][b]Browser besurft werden[/b][/url]. Unter [url=@@URI-HOME@@][b]@@URI-HOME@@[/b][/url] gibt es weitere Informationen. wit-2.31a/templates/HISTORY-v1.txt0000644000175000017500000007066512655737307016452 0ustar michaelmichael @@MODULE(head.txt)@@ @@MODULE(content.txt)@@ ******************************************************************************* ******* HISTORY v1.* ******* ******************************************************************************* wit v1.00a r1214 - 2010-06-12 - Because I finished my work with wwt (the WBFS manager) it's time to declare Version 1.00. The tool wit is still under development. - This is the last version which supports the three tools iso2wbfs, iso2wdf and wdf2iso. Use the more powerful command 'wit copy' instead. - Makefile changes: - File './include-local' is not included anymore. Instead the file 'makefiles-local/Makefile.local.$(SYSTEM)' is included. - make chmod: change mode 775/644 for known dirs and files. - make chown: change owner of all dirs+files to owner of '.'. - make chgrp: change group of all dirs+files to group of '.'. - make ch+ := make chmod chown chgrp - wit DUMP: Output improved. - wit DUMP can now dump data structure of Wii ISO files, ticket.bin (new!), tmd.bin (new!), header.bin (new!), boot.bin, fst.bin and of DOL-files. The file type is detected automatically by analyzing the content. wit v1.00b r1218 - 2010-06-12 (repository only) - The tools iso2wbfs, iso2wdf and wdf2iso have been removed. Use wit instead. wit v1.01a r1245 - 2010-06-20 - CISO support: The new options --chunk-mode, --chunk-size and --max-chunks gives the user the control over chunk size when creating a CISO file. - With release v0.37 I have written a complete new function to calculate the WBFS geometry (outsourcing of the calculation so that other commands can use the results). Up to now the new and the old calculation have been compared on every WBFS formatting. From now only this new calculation is used. - wit DUMP --long: Print content of TICKET and TMD too. - New option for wit DUMP: --show=keylist: This option allows fine control over the things that should be printed. If set --long is ignored. Allowed keywords: NONE, ALL, INTRO, P-TAB, P-INFO, P-MAP, D-MAP, TICKET, TMD, PART (=P-INFO|P-MAP|TICKET|TMD), MAP (=P-MAP|D-MAP). If --show is set option --long is ignored. - wit+wwt VERIFY --long --long: Hex dump of 'DATA' was wrong. - Bug fix for option --pmode: keyword INDEX is enabled now. - New warnings (exit status): "Nothing to do" and "No source file found". wit v1.01b r1248 - 2010-06-20 - Bug fix for "wit DUMP": - If neither --show nor --long is set the head parameters was not printed. - Indention was wrong. wit v1.01c r1313 - 2010-07-01 - Bug fix for "wit COPY": If converting an ISO to a plain iso file (*.iso) in scrubbing mode the destination file was truncated to the needed size. Now it is extended to 4 699 979 776 bytes again. wit v1.10a.beta r1333 - 2010-07-05 - New option: --width wd: Define the width (number of columns) for help and other messages and disables the automatic detection of the terminal width. - wwt EXTRACT: Support '%X' and '%Y' in output filenames. - I have rewritten the wiidisc lib (part of libwbfs) from scratch. It has a complete new interface and an improved functionality. It uses dynamic data structures and collect data as needed. This has considerable advantages for the whole WIT project: - All information about a Wii disc is now in one hand. Things like usage maps and partition data are loaded/built once and only if needed. - wit DUMP --show=files: Print a list with images files (like -F+ before). Option --show=offset,size,dec,hex,header controls the output columns. - wit DUMP --show=usage: Print a wii sector usage map. - wit ILIST: Redesigned. Option --show=offset,size,dec,hex,header,path controls the output columns. - Option --psel extended: --psel=NO-ID : use all partitions but not partitions with an ID type. --psel=PTAB0 : use all partitions of table #0 but no other partitions. --psel=ALL : use all partitions (the default). --psel=WHOLE : use all partitions and don't scrub partitions --psel=RAW : more than 'WHOLE': copy whole dics - wit DIFF: If using the option --psel the partition tables are normalized before comparing. This enables DIFF to compare DATA partitions only independent from the existence of other partitions. wit v1.10a.beta r1338 - 2010-07-05 (repos only) - Channel partitions (ssbb) enabled, but not tested. - The field width of offset and size columns of FST listings is now calculated. A space between the columns is guaranteed. - wit DUMP: A forgotten endian calculation results in a wrong region info. wit v1.10a.beta r1359 - 2010-07-09 - ID renaming: A point ('.') means: leave id character unchanged. - Options --ios, --id and --name modify only disc data and the DATA partition, but no longer any other partitions. - There is an complete new implementation of option --psel: Combinations like '--psel DATA,UPDATE' or '--psel -CHANNEL' are supported now. - New: wit DUMP --show=patch: Shows a address map with patching infos. - wwt EXTRACT: Complete new and improved calculation of output filename. - Option --files: Macro calls are now prefixed by a colon (':'). The previous prefix '=' is obsolete, but still allowed. - Command "wit ILIST" evaluates option --psel now. - I have run my test scripts against this release without any reported errors. wit v1.10a.beta r1363 - 2010-07-09 (repos only) - Bug fix: File size calculation error for when composing large discs. wit v1.10a.beta r1374 - 2010-07-13 - New wiidisc lib: Advanced error handling. - wit ILIST: List files like 'fst.bin' too. Aggregation of the previous beta versions: - New option: --width wd: Define the width (number of columns) for help and other messages and disables the automatic detection of the terminal width. - I have rewritten the wiidisc lib (part of libwbfs) from scratch. It has a complete new interface and an improved functionality. It uses dynamic data structures and collect data as needed. This has considerable advantages for the whole WIT project. - ID renaming: A point ('.') means: leave id character unchanged. - Options --ios, --id and --name modify only disc data and the DATA partition, but no longer any other partitions. - There is an complete new implementation of option --psel: Combinations like '--psel DATA,UPDATE' or '--psel -CHANNEL' are supported now. - wwt EXTRACT: Complete new and improved calculation of output filename. - wwt EXTRACT: Support '%X' and '%Y' in output filenames. - Option --files: Macro calls are now prefixed by a colon (':'). The previous prefix '=' is obsolete, but still allowed. - Bug fix: File size calculation error for when composing large discs. wit v1.10a r1386 - 2010-07-15 - wiitdb.com: Support of new languages: ru, zhcn, zhtw - wwt ANALYZE: If option --long is set then calculated values are printed too if other values are available. If option --long is set twice calculated values are always printed. - wit+wwt: Option --trunc: Truncate created PLAIN ISO image to needed size. wit v1.11a.beta r1428 - 2010-07-24 - Computed line breaks for error messages. - "wit COPY" accepts the options --id --name --ios --region to patch the image while copying. - New command: wit EDIT: Patch ISO images directly without copying. wit v1.11a r1434 - 2010-07-26 - Option --region: endian bug fix wit v1.12a r1451 - 2010-08-01 - Bug fix for option --sneek: Option --psel was not set in a correct way. - New command: wit CREATE TICKET/TMD: Create a ticket or tmd file from scratch. Options and parameters control the creation. - Composing: If files ticket.bin or tmd.bin missed or have a wrong size TICKET and/or TMD will be created automatically. - New command: wit MIX: Mix partitions from different sources into one new Wii disc image. *** "wit MIX" is EXPERIMENTAL! *** wit v1.13a r1468 - 2010-08-04 - Command "wit MIX" accepts now the option --overlay: Partitions will be overlayed so that data from one partition is stored in unused areas of a other partition. To find the optimum order a permutation is done. Option --overlay limits the number of input partitions to 12, because the calculation is rated as O(2^n). *** "wit MIX" is EXPERIMENTAL! *** - "wit MIX" wil accept the keyword 'psel' as alternative to 'select'. The reason is that 'select' accepts the same keyword list as --psel. - The disc subsystems recognize overlayes partitions. For overlayed partitions the --psel keyword "WHOLE" is ignored. - Command "wit DUMP" will print an info line for overlayed partitions. wit v1.14a r1506 - 2010-08-09 - Option --psel redesigned: it is now possible to allow or deny any partition by partition type, partition table and/or by partition index. Only with the unambiguous partition index it is possible to select the one wanted DATA partition if multiple exists. - New option --rm-files: This patching option defines filter rules to remove real files and directories from the FST of the DATA partition. Fake signing of the TMD is necessary. - New option --zero-files: This patching option defines filter rules to zero (set size to zero) real files of the FST of the DATA partition. Fake signing$ of the TMD is necessary. - New option --ignore-files: This option defines filter rules to ignore system and real directories and files of the FST of the DATA partition. Fake signing is not necessary, but the partition becomes invalid, because the content of some files is not copied. - New qualifier for "wit MIX": "IGNORE ruleset": Ignore files when copying a disc image. See http://wit.wiimm.de/wit/cmd-mix.html#ignore for details. - Some modification for expanding '@file' parameters: wit MIX needs control. - wit MIX: A new algorithm for 2 partitions: It tries every possible shift to find the best overlay. All holes in both partitions are relevant. - wit MIX: Before creating the image a additional verify function is called. This function controls that no sector is used by more than one partition. With verbose level >=3 an usage map is printed too. wit v1.15a r1554 - 2010-08-15 - New "wit MIX" qualifer: HEADER: Copy the disc header (first 256 bytes of disc) of the related source image to the destination image. Patching with the options --id and --name is possible. - New "wit MIX" qualifer: REGION: Copy the region infor (32 Bytes at offset 0x4e000) of the related source image to the destination image. Patching with the option --region is possible. - Bug fix: "wit mix --name discname" didn't work. - Bug fix for "wit mix --overlay". - Writing a WBFS file is now part of the file layer and libwbfs is only used as helper. Now every command, and also "wit MIX", is able to write to a WBFS file like to any other formats without special code. - "INSTALLER" is now an alternative name for the "UPDATE" partition, like "GAME" for "DATA" since the epoch. - To manage allowed and permitted options, 64 bit integer numbers had been used. Now arrays will be used, because wwt have already reached the limit of 64 command specific options. Hope that all run as before. - Korean disc support implemented. (I can't test this by myself) - New option: --common-key index: Change the common key index of all partitions and fake sign the tickets. - I have implemented a new "ID selection interface". It works with positive ('+') and negative ('-' or '/') rules. A rule consist up to 6 characters, case is ignored. Points ('.') are wildcards for a single character and mult ('*') and plus ('+') for many characters. Each source ID6 is compared to each rule of the list until a rules matches the ID. If it is a positive rule, the ID is inserted into the workig list. - The syntax of the commands "wit ID6" and "wwt ID6" have changed to use the new "ID selection interface" (see above). More commands will follow. - The commands 'wit ILIST/ILIST-L/ILIST-LL' are renamed to 'wit FILES/FILES-L /FILES-LL'. The old command names are still allowed. - The new command "wit FDIFF" is a shortcut for "wit DIFF --files +". wit v1.16a r1645 - 2010-09-01 - wit MIX: Forgotten options: --iso --wdf --ciso --wbfs - wit ID6 --long: Print disc title too. - wwt ADD: Default is now: --enc encrypt - wit DIFF: Will patch the partiton tables for scrubbed diff, because different tools modify them in a different way while scrubbing. - Bug fix for wwt VERIFY: Iteration through whole WBFS failed. - A little change when creating a WBFS file: The hss value in the WBFS header is now set to the truncated value. - New file format supported: WIA = Wii ISO Archive (EXPERIMENTAL!) WIA will decrypt partitions and compress the data in chunks with bzip2. Because of the chunks the archive allows random read access to view only parts of the image. The option --no-compress disables compressing. The resulting image is very effective packable by all compression tools. - GameCube ISO support for nearly all commands. (EXPERIMENTAL!) wit v1.17a r1834 - 2010-10-05 - The WIA file format was completely redesigned. WIA supports now 5 compression methods: NONE, PURGE, BZIP2, LZMA and LZMA2. - New extended syntax of option --compression: method.level@factor 'method' is the name (NONE, LZMA, ...) or index of the method. '.level' is a point followed by one digit. It defines the compression level. The special value '0' means: Use default compression level. '@factor' is a factor for the chunk size. With the default factor '1' the chunk size is 2 MiB (size of 1 Wii sector group). All three fields are optional. - I declare the WIA file format stable and hope that converting to and from WIA is free of bugs. The best for users is to convert to WIA and back and compare the result with the original source. - New command: WIT COMPR: Prints a list with supported compression methods. With parameters the normalized names of that parameters are printed. WIT COMPR accepts the options --long (twice) --no-header and --sections. - The new tool 'wdf' should replace the tools wdf-cat, wdf-dump and should compensate the old tools wdf2iso and iso2wdf as general wdf converters. See built in help for details. The tool 'wdf' is EXPERIMENTAL! - Support of GameCube multiboot discs. (EXPERIMENTAL!) - New options --align-part: Align partitions while moving or creating them. - New options --disc-size: Define a minimal disc size. - Command "wit SCRUB" renamed to "wit CONVERT". "wit SCRUB" is still allowed. - From now the first 0x50000 bytes of Wii discs will be scanned for non zero data. Such data is included into the copy operations. The old and standard scrubbing algorithm ignore such sectors in the range 0x08000..0x3ffff. - WBFS files with more than 1 disc are not longer detected as ISO images. - CYGWIN: Improved support of windows style paths ('X:\path\file'). - Bug fix: While composing the FST size (var 'max_fst_size4' in 'boot.bin') wasn't updated. If you compose an ISO and the resulting FST is bigger than the original, the Wii apploader failed. - Bug fix: Creation of a WIA file failed if option --psel is set and at least one partition was removed (scrubbed). The result was an invalid disc image. - Bug fix: "wit MOVE" didn't create the directory path even if --DEST is set. - Bug fix for "wit move": wit move have forgotten to move the continuation files of splitted images. - Bug fix: Non Wii ISO images are not listed any more if the source is a directory. This old behavior of wit was lost some releases ago. wit v1.18a r1868 - 2010-10-10 - ETA calculation changed to support WIA chunk caching and writing. - CYGWIN: The parameters of the options --dest and --DEST are now checked if they start with 'X:\' or 'X:/'. These code are replaced by '/cygdrive/X/'. This is also done for the last parameter of "wit COPY/MOVE/EXTRACT/DIFF" if neither --dest nor --DEST is set and the last parameter is the destination. - New option: --unit: Specify the unit for size values. Some possible values are BYTES,KB,KIB,1000,1024,AUTO,WII. Read built in help for more details. - wit LIST: Support of option --unit to define the unit for the ISO sizes. - wit ISOSIZE: Support of option --unit to define the unit for the ISO sizes. A summary line is also printed if the lsit contains 2 or more images. - Options --include and --exclude accept now a comma separated list of IDs. - Bug fix: If wit had closed a WBFS partiton a truncation errors appeared. - New wit option: --auto: If set, all devices are scanned for WBFS partitions and all WBFS partitions are added to the source list. It replaces parameters like "--source /dev/wbfs" and works like "wwt --auto --all". wit v1.19a r1904 - 2010-10-23 - Bug fix for "wit EDIT": New hash values were not copied to other sectors of the same sector group. - "wwt ADD" accepts option "--source source" as alternative source definition. - The layout of "wit LIST-LLL" is redesigned: - Bug fix for real paths for WBFS files. - New option: --real-path: print the real path instead of the entered path. - New column: p-info: Print a short info about available partitions: "DUC?" - The new command "wit/wwt INFO" will inform about features. The intension is to inform GUIs and other wit calling programs. Therefor option --sections is also supported. At this moment only supported file formats inclusive attributes (read/write/modify/extend/fst) are printed. - "wit FILETYPE" and other listing commands: The file types are redefined in a more consistence way. ISO images are tagged as 'CONTAINER/DISCTYPE' like 'ISO/WII', 'WDF/GC', 'WBFS/WII', 'FST/WII'. - New option --no-expand: Do not expand directories to the containing files or images. This option does not change the behavior of --recurse. - New options: --one-job and --job-limit=n: Limit the number of jobs to execute. If done without errors the exit status is NULL. - Some minor output bug fixes. wit v1.20a r1945 - 2010-11-05 - WIA creation warning "WIA is NEW! Compare with original source." removed. - Preparation: Tools will read future WDF versions without warnings, if the compatibility parameter allow this. - The file descriptor of the last WBFS partition is saved/cached. This makes wit faster when reading multiple discs from a WBFS. - wit EXTRACT: The progress view is now based on the file size instead of the file count. - Options --include and --exclude accept now IDs with wildcards: '.' is a wildcard for 1 character and '*' and '+' (same meaning) for any number of characters. - File 'setup.txt' is created as template while extracting a disc image. It is scanned for ID, NAME and OFFSET while composing a disc image. The new option --ignore-setup disables the scanning of 'setup.txt'. - Bug fix for "wit CONVERT": The destination path was the current working directory. - Bug fix for "wwt ADD --remove": If command is done without errors all sources files -- but not FST -- are removed. - Bug fix: Calculation of fst size fixed for GameCube parsing. - Buf fix for "wit CONVERT": Aborting with CTRL-C don't remove the source. - Composed discs: New and correct calculation of total size and time stamps. For time stamps the newest times of all scanned files are used. - wit INFO FILE-FORMAT: New attribute 'compr': Signals a compressed file format and that option --compr can be used to setup the compression mode. - Splitted are also detected, if the field width of the counters is 2-6. wit v1.21a r1980 - 2010-11-17 - Simplification of the selection of compression modes: - Option --compr accepts the single digit modes '0' (=NONE), '1' (=fast LZMA) .. '9'@ (=BEST, best LZMA). - Option --wia accepts an optional parameter: --wia=mode This is a shortcut for: --wia --compression mode Example: Use --wia=9 to force WIA output with compression 9=BEST. - wit+wwt COMPR: Layout restyled. - wit DUMP: Additional scrubbed size info and tabbing changes. - Update to Cygwin DLL release version 1.7.7-1. - The verbose level and log output of "wit DIFF" is now like "wit COPY". - New option: wit COPY --diff: Diff source and dest after copying. - wit COPY: If copying without modifying content option --preserve is set automatically. - Detect and dump cert.bin files. - Detection and status of fake signing improved. Try "wit DUMP". - wit DUMP image --show cert: Print ceritificate chain. - If dumping a ticket a tmd file, the source directory is searched for a file named 'cert.bin' to check the signature. wit v1.22a r2012 - 2010-11-22 - New command: wit CERT: Collect certificates and eliminate multiple entries of the same certificate. Dump all collected certificates to standard output (stdout) and/or write the certificate as binary to a file. Together with the new option "--fake-sign filter" is is possible to fake sign some or all certificates before dumping and/or storing. - New global option: --cert: Add certificates to the global certificate database. These certificates are used to check the signatures. - "wit dump ticket.bin tmd.bin" is now able to dump the certificate chain following the TICKET or TMD info. This combination is usual for 'cetk' and 'tmd.1234' files in WADs. - Workaround for Cygwin bug in /proc/partitions. - Bug fix for "wit CONVERT --wia" (Segmentation fault). - Bug fix for 'preserve time' if source is removed. - Command "wit LIST" supports now --progress while scanning files and dirs. - The old tools 'wdf-cat' and 'wdf-dump' are removed. Use instead the new tool 'wdf'. 'wdf' is linked to 'wdf-cat' and 'wdf-dump' to facilitate the old behavior when calling 'wdf-cat' or 'wdf-dump'. wit v1.23a r2092 - 2010-12-10 - Preallocation of disc space implemented. It is only enabled for Cygwin by default. It can be disabled with --prealloc=0 or enabled with --prealloc. The needed preallocation function is not available for mac. - wwt EXTRACT + REMOVE + TOUCH + VERIFY: These commands accept now ID6 pattern like '...P' or '+1'. Each '.' is a wildcard that matches any single character. A '+' matches any number of characters. For details see http://wit.wiimm.de/info/disc-id.html - wwt EXTRACT is now able to patch while extracting and to create WIA files. It support also the options --fst --pmode --psel --raw --files and --sneek. - Cygwin will support UTF-8 by default. - Bug fix: Error while scanning LC_CTYPE for language detection. - Support of environment variable 'WWT_LANG' removed. Use 'WIT_LANG' instead. - "wit EDIT" supports now the options --psel and --raw. - Option --pmode accepts now the keywords AUTO, NONE, POINT, ID, NAME, INDEX and COMBI. Mode 'AUTO' switches to 'COMBI' if there are multiple partitions with the same partition type. wit v1.23b r2096 - 2010-12-12 - The progress counter is updated more frequently while creating a WIA file. - Bug fix for options --one-job and --job-limit. wit v1.24a r2114 - 2010-12-23 - "wwt ADD+EXTRACT" support now --one-job and --job-limit=n - Preallocation is now enabled by default for all systems without known disadvantages. Preallocation is also used for extrated files. Thanx to deo at gbatemp who shows me Linux and Mac optimizations. - wit+wwt VERIFY: Print signing and encryption status. - Bug fix: "wit FILES+DUMP" print the file size again. wit v1.25a r2133 - 2011-01-09 - Bug fix for "wit mix": If reading from FST signing failed. - Bug fix: The space preallocation for splitted files exceeded the defined limit. This results in an error on FAT partitions. - "wit DUMP image": IDs (ticket, tmd, boot) and IOS of the data partition are printed in the "intro" and "partition info" sections of the dump. Therefor the option --show has 3 new keywords: D-ID, P-ID and ID (=D-ID|P-ID). These new keywords can be used to minimze the dump (print IDs only). - wwt format: If formatting a device and option --hss is not, then the real sector size of the device is used. This is a concession for the new drives with 4096 instead of 512 bytes per block. wit v1.25b r2143 - 2011-01-10 - Bug fix for "wwt init": Auto hd sector size (hss) detection was wrong and returns always the value 4096. - "wwt FIND" supports option --sections and --old-style. The later one will ensure that the GUIs can read and scan the old style because I will change the layout completly in one of the next releases. wit v1.26a r2223 - 2011-01-27 - Bug fix for "wwt EXTRACT --test": If extracting to an already existing file the old file was removed. - Bug fix for "wdf +PACK": wrong data written if packing a raw file. - Bug fix: Reading a GameCube WIA is now done without an assertion failure. But remember: GameCube support is still EXPERIMENTAL! - I have made some changes in the make system to support GCC option -static and cross compiling (Linux/i386 on Linux/x86_64). - Linux/i386: Because of the static linking I can use the latest version of the Linux GLIBC with preallocation support. Copying file is now fast again. - BZIP2 support is now included as source and should work for all systems. This enables WIA/bzip2 support for Mac/x86_64. - "wit COPY/CONVERT/EXTRACT/EDIT/MOVE/DIFF" and "wwt ADD/EXTRACT/REMOVE" support now the option --sections. - "wwt add": New user interface implemented: In a first fast loop the jobs are counted with respect to the options like --update and --newer (ignore skiped files). In a second loop the jobs are executed with correct job counters. - wit DUMP: Scrubbing status of disc and partitions are printed. Example: "TICKET & TMD are well signed. Partition is encrypted and scrubbed." - "wit EXTRACT" failed if the disc title could not found in the title db. - New commands: "wit/wwt SKELETON": Create skeleton copies of discs for further analysis. Details: http://wit.wiimm.de/cmd/wit/skeleton#desc wit v1.27a r2289 - 2011-02-09 - Bug fix: WBFS preallocation was always a little bit to short. - Bug fix: Wrong signature status printed when dumping the content of TICKET and TMD files. - Bug fix: "wwt sync --newer FST" failed because of missing timestamp. - New option --links: Detect soft and hard linked source files while composing or extracting discs and try to create hard links instead of independent copies on the destination file system. - New option: --flat: If extracting files the path names of the source discs are removed. This enables extracting of all files to s specific destination directory without creation of subdirectories. Command "wit files --flat" can be used to verify the flat names. - New tool: wfuse: Mount a Wii or GameCube image or a WBFS file or partition to a mount point using FUSE (Filesystem in Userspace). FUSE and wfuse are not available for Cygwin/Windows. wit v1.28a r2336 - 2011-03-04 - wfuse --version: Print FUSE versions too. - New option: wfuse --create: If the mount point does not exist, create it and remove it on unmount. - New option: wfuse --remount: If the mount point is already mounted, try silently to unmount it first. - New option: --include-first: Include lists takes take precedence over exclude lists. - New option: "wwt ADD --sync-all": Use include and exclude lists only for creating the sync list. - "wit DIFF/FDIFF": The diff output was changed completely. The options --quit, --verbose, --file-limit, --limit, --block-size and --long allow fine control. The output is now homogeneously in all three modes RAW, SCRUBBED and FILES. Option --section is supported for each log level. Hidden option --OLD enables the old diff layout for compatibility. - New: "wdf +cmp": Compare WDF, CISO and WIA files with other sources. - wit DUMP: Print version of "System Menu" if update partition found. - There is now a Windows installer (BETA): windows-install.bat Please remove old self made installations of WIT. wit v1.29a r2655 - 2011-05-21 - Script 'load-titles.sh' will be copied on install into the share folder to allow later and easy update of the title database. - New command: wit+wwt GETTITLES: Change to the share folder an call script 'load-titles.sh' to update the title database. - Known bugs: - The GameCube support is in development and EXPERIMENTAL! - There are new problems while reading from non seekable sources (e.g. pipes). The reason is the complete new and more intelligent wiidisc lib which makes more lookups ==> The best is to use version 1.01c for pipes. ******************************************************************************* ******* END ******* ******************************************************************************* wit-2.31a/templates/HISTORY-v0.txt0000644000175000017500000007056312655737307016446 0ustar michaelmichael @@MODULE(head.txt)@@ @@MODULE(content.txt)@@ ******************************************************************************* ******* HISTORY v0.* ******* ******************************************************************************* wwt v0.00a r116 - 2009-09-28 - First release. - Supported commands: HELP, ERROR, FIND, SPACE, DUMP, ID6, LIST*, ADD, EXTRACT, REMOVE wwt v0.00b r123 - 2009-09-28 - new: command FORMAT wwt v0.00c r145 - 2009-09-30 - EXTRACT & REMOVE: -tt (--test twice) => print normalized ID6 list and exit. - EXTRACT: option --unique enabled. - EXTRACT & ADD: progress info enabled with -vv. - New processing of ID6 parameters. - Bug fix: the long option --sort does'n take a parameter. - Output of LIST improved. - The read and write file subroutines are rewritten. ==> tests needed. - The new option --sparse enables improved sparse handling. wwt v0.00d r164 - 2009-10-03 - Support for WDF images (see file 'WDF.txt', EXPERIMENTAL) - New tools: wdf-dump, wdf2iso, iso2wdf, wdf-cat - Option --sparse replaced by --fast. - Scan environment variable 'WWT_WBFS' for WBFS partitions. wwt v0.01a r168 - 2009-10-04 - WWT leaves Alpha and goes Beta! - WDF is now productive; WDF documentation expanded. - Extracting to WDF is now default. --iso forces ISO output. - Bug fix: Wrong "end of disc" handling while writing a double layer ISO and --trunc is not set. wwt v0.02a r179 - 2009-10-05 - Command abbreviations are allowed if they are unambiguous. - EXTRACT: Improved filename handling when using 'ID6=filename'. - Enhanced error management. - Bug fix [wdf2iso]: Couldn't create zero length files. - From now on, the distribution has subdirectories: bin lib doc scripts - Tools wdf-dump, iso2wdf, wdf2iso, wdf-cat: options available. - New: scripts/test-wdf-tools.sh: test the wdf tools. -> over 320000 files (mixed user files) testet without failures. - New: scripts/time-test.sh: run time tests -> see file 'STATISTICS.txt'. wwt v0.03a r200 - 2009-10-08 - Enhanced error management again. - Misspelling in --help: The shortcut for 'DUMP' is 'D' and not 'DP'. - Make: Support of environment variable 'XFLAGS' -> 'XFLAGS=-march=x86-64 make' - File handling: Support of open() and fopen() as alternatives for testing. - Script test-wdf-tools.sh: Positive test is now done with >1 million files. - New option for 'wdf-dump': --chunk: Print chunk header table. - WDF specification is complete. wwt v0.04a r212 - 2009-10-11 - ADD: ID6 is now also recognized when source is a WDF. - New command: FILETYPE: Print a status line for each given file. - New script: test-ADD+EXTRACT.sh: ADD + EXTRACT test with various options. - *EXPERIMENTAL*: - Option --cache enables caching of well known file parts while reading an ISO image. Perhaps cached areas must be expanded. - Adding a game from a pipe if option --cache is set. Commands like "wwt ... ADD --cache <(UNRAR-TO-STDOUT game.rar)" are possible. - Doc: Explanation of the hidden options: --hole-size, --io and --cache wwt v0.05a r247 - 2009-10-14 - Complete new interface to the WBFS subsystem: - unused source files removed. - improved error messages of libwbfs - WBFS file handling rewritten. It supports now file (using open() function) and stream (using fopen() function) methods. Use --io to select method. - New option: --ignore: Ignore non existing files/discs without warnings. Can be used with: ADD, EXTRACT, REMOVE (replaces --force) and FILETYPE. - The lib path moved from '/usr/local/lib/' to '/usr/local/share/wwt/'. - New option --sector-size: Set logical hd sector size larger than 512 while formatting WBFS => The max disc count of a WBFS will be raised. - Title database implemented. - New command: TITLES: Print the internal title database to stdout. - ADD: ISO image is acepted from stdin if a file is named '-'. For pipes the experimental option --cache must be set. wwt v0.06a r258 - 2009-10-15 - If adding from a pipe the cache (option --cache) is enabled automatically. - Signal handler implemented for INT, TERM, USR1 and USR2. (see docu) - Bug fix: INIT failed if formatting a block device. - Bug fix: EXTRACT: Wrong file size calculation for double layer discs if a zero filled block at the end of the image is found (ISO and WDF). wwt v0.07a r273 - 2009-10-19 - Check the MAGIC "5d-1c-9e-a3" at position 0x18 of ISO files. - New script: convert-iso-to-wdf.sh: Find ISO files and convert it to WDF. The converted WDF will be compared with the source and removed if differ. - 'iso2wdf' and 'wdf2iso' may convert through stdin->stdout. - Script test-wdf-tools.sh: Positive test is now done with >2 million files. I declare WDF as stable. I have converted all my games to WDF. - The source is now more compatible for non linux/386 machines. - Source files renamed. - The binaries are linked without -static now. Hope that makes no problems. wwt v0.07b r278 - 2009-10-20 - Cygwin support. - Minor bug fixes. wwt v0.08a r294 - 2009-10-23 - iso2wdf + wdf2iso: new options: --dest dir_or_file, --overwrite - The documentation is now divided into more files: Each tool has its own one. - Some minor bug fixes in libwbfs. - Option --remove: short option is now -R. - New options: --exclude and --exclude-path: exclude discs from operation. - New command: EXCLUDE: print the results of --exclude and --exclude-path. - New tool: wit = Wiimms ISO Tool. (empty framework yet) - Scan environment variables 'WWT_OPT' and 'WIT_OPT' for predefined options. - CYGWIN bug fix: WDF support failed because of non packed data structure. - CYGWIN: I have done a little test series without failures. - Allow the wbfs subsystem to read behind end of file marker (print a warning). wwt v0.09a r309 - 2009-10-27 - Bug fix: progress counter was only shown for first job. - Hidden option --hole-size removed. - Option --sort: keyword scanning enabled. - New option --psel: define a partition selector. - New option --update for ADD+EXTRACT: copy only new files. - New wwt command UPDATE: shortcut for 'ADD --update'. - wit commands: VERSION, HELP, ERROR, TITLES, EXCLUDE, FILELIST, FILETYPE, ID6, LIST, LIST-L, LIST-LL. - Title files for: de en es fr it ja ko nl pt (loaded from WiiTDB.com). wwt v0.10a r325 - 2009-10-31 - wwt+wit DUMP: Output expanded. - ADD --trunc: WBFS will be truncated/trimmed to minimal size after adding. - New wwt command: TRUNCATE: truncate/trim a WBFS to minimal size. - Size options: advanced arguments -> see section "Processing size options". - All tools: EXPERIMENTAL support of splitted WBFS, WDF and ISO files: - While generating a file use --split and --split-size to force splitting. - While opening files for reading splitted files are detected automatically. wwt v0.11a r339 - 2009-11-02 - wwt "LIST --mixed": output format changed. - New option --progress: enable progress counter independent of verbose level. - wdf2iso + iso2wdf: - Both accept any files as input. If the input is an ISO or a WDF+ISO than the file is scrubbed (controlled by optiond --psel snd --raw). - New option --preserve: preserves file times - New command: wit COPY source... dest -> converting and scrubbing. - wwt DUMP --long --long: Dump a memory layout map for each disc. - wwt DUMP --long --long --long: Dump a memory layout map for whole WBFS. wwt v0.12a r364 - 2009-11-05 - Bug fix showing the progress counter. - Bug fix in libwbfs/wbfs_trim() -> "ADD --trunc" and "TRUNCATE" failed. - wit DUMP --long: Dump a memory map. - wdf2iso + iso2wdf: print progress infos. - New ISO source alternative: /path/to/WBFS_FILE/SELECTOR (see doc) - New wit command: COPY: Copy and convert ISO images. - New wit command: SCRUB: Scrubs ISO images. wwt v0.13a r383 - 2009-11-06 - Option --cache removed: Cache is activated when needed. - Bug fix: "wit copy --remove wbfs/selector" removes disc from WBFS. - Bug fix: wit SCRUB: output file format was controlled by options. - wwt EXTRACT: Can extract to wbfs files. - wwt ADD: Accept wbfs files as input (wbfs to wbfs copy) - New tool: iso2wbfs: Converts ISO images into a splitted WBFS files. wwt v0.14a r388 - 2009-11-08 - Progress info shows copy rate in MiB/sec too. - Buf fix: damaged WDF file if copying from WDF to WDF with --raw. - wwt CHECK: check WBFS for block errors (report only, no repair yet). wwt v0.15a r402 - 2009-11-10 - Option --progeess has now a short brother: -P - Bug fix: iso2wbfs had produced ISO images instead of WBFS. - Bug fix: wwt EXTRACT --wbfs did not work. - wwt EDIT (not documented): manipulate block assignments (EXPERIMENTAL!). I need the EDIT command to make invalid WBFS for testing the CHECK command. - wwt ID6 --long: print list in format WBFS_FILE/ID6 (wbfs+selector). - wwt CHECK improved. wwt v0.16a r428 - 2009-11-15 - wwt DUMP layout redesigned. - libwbfs: free blocks table bug fixes: - Fix the free block table while formatting or loading - Allocation of free blocks behind 32 bit boundaries - Fix table if WBFS if full while adding a game. - I propagate libwbfs v1 (v0 prior). - bug fix: progress info failed if writing splitted files. - wwt ADD/UPDATE/EXTRACT/REMOVE/TRUNCATE: A CHECK is done automatically. The WBFS will be ignored if problematic errors are detected. --force: Print messages but ignore result of the check and continue. --no-check: Disable the automatic check. - wwt ADD/UPDATE: Cleanup to previous state if the disc is full. - wwt REMOVE: new option: --no-free: do not free blocks. - wwt CHECK: new option: --repair=mode: fix the detected errors. THIS OPTION IS EXPERIMENTAL! - New wwt command: REPAIR: Shortcut for: CHECK --repair=fbt (fbt = Free Blocks Table) THIS COMMAND IS EXPERIMENTAL! wwt v0.16b r431 - 2009-11-15 - wwt EXTRACT and REMOVE denied options --force and --no-check. - cygwin: REPAIR can't write unaligned free blocks tables. wwt v0.17a r454 - 2009-11-18 - wwt ADD --ignore: Ignores non exsting sources without message. - wwt DUMP: show memory range of each inode. - New command: wit DIFF: Compare ISO images in raw or scrubbed mode. EXPERIMENTAL, because the DIFF command is not testet very well yet! - wwt EXTRACT + wit COPY/DIFF: Handle '%'-escapes for output file name. - New option --esc: Define an alternative escape character, default is '%'. - Bug fix: Wrong name scheme for splitted WBFS files. - Some minor bugs fixed. wwt v0.18a r465 - 2009-11-22 - Bug fix: Wrong temp filename while creating an splitted WBFS. - Default split size is now 4GiB-32KiB for WBFS and 4GB for all other files. - wwt CHECK -ll: Print an additional dump if errors found. - wit SCRUB: Allow type conversion. - new commands: wwt RENAME+SETTITLE: Set ID and title of discs [EXPERIMENTAL]. - IMPORTAND BUG FIX in libwbfs/wiidisc: All scrubbing operations including adding to a WBFS could loose sectors. wwt v0.19a r491 - 2009-11-27 - New ADD option: --sync: Synchronize: remove and add until WBFS contains the same discs as source list. - New command: wwt SYNC: Abbreviation for: ADD --sync - New commands: wit RENAME+SETTITLE: Set ID and title of discs [EXPERIMENTAL]. - New command: wit MOVE: move/rename iso files. - MAC bug fix: segmentation fault if formatting a drive. - Bug fix: Interrupt possible while processing a source directory. wwt v0.20a r504 - 2009-12-05 - wwt FIND -l: List all instead of only WBFS partitions. - Some minor bug fixes. - Improved text output. wwt v0.21a r520 - 2009-12-09 - New command: wwt PHANTOM: add a phantom discs (fast, for tests only). - libwbfs: I have implemented a little ID6 cache for faster disc access and less IO when searching discs. - CYGWIN bug fix: Using mixed reading and writing on files opened with open() fails and write sometimes to wrong file positions (reproducible). Switching to fopen() based IO works fine. - Docu of wwt+wit RENAME+SETTITLE. wwt v0.21b r524 - 2009-12-13 - Corrections of inline and offline docu. - New: FAQ.txt (first steps) wwt v0.22a r535 - 2009-12-25 - New options: --include and --include-path: include only given discs. - New "wit COPY" option: --update: copy only to non existing files. wwt v0.23a r544 - 2009-12-31 - Formatting will clear all inodes. That gives undelte a better chance. In respect to sparse files the inodes will be read before and only zeroed if non zero data is found. - CYGWIN: The filenames beginning "x:/" will be replaced by "/cygdrive/x/". wwt v0.24a r549 - 2010-01-03 - Suppress a read error if reading behind end of file while creating a growing wbfs (copy to wbfs file with a sinlge disc). - If the destination path of a copy command contains at least 1 valid %-escape conversion than the directory path will be created automatically. - CYGWIN bugfix: Unclear bug while rename "x:/" to "/cygdrive/x/". Now we have a small memory leak (The original filename is not freed). - Script 'install.sh' use now the system command 'install'. wwt v0.25a r558 - 2010-01-04 - wwt REMOVE: Print id6 and (that's new) title of removed discs. - wwt EXTRACT+REMOVE: No warning if parameters are given, but no disc found because of exclude and/or include lists. - New option: --DEST (-D): Works like --dest (-d), but the directory paths of the destination files will be created automatically. wwt v0.26a r569 - 2010-01-05 - cygwin: stdout and stderr use windows line ending (CR+LF). - Allow german umlaut in destination file names. - Bug fix: Option --include-path was only processed if also option --exclude-path was set. - The local title files contain now all titles and not only the local modifications. This is good for cygwin which do not support automatic language detection. Just rename 'titles-XY.txt' to 'titles.txt'. wwt v0.27a r579 - 2010-01-09 - Bug fix: Problems while creating a directory path. - Option --no-utf-8 did not work, all titles were trash. - Option --no-utf-8 is now the default for cygwin. This is needed to allow german umlauts in filebnames. - wwt ADD: Add files in alphabetic order and print iteration counter. wwt v0.28a r596 - 2010-01-15 - Little optimization for libwbfs add_disc(): Read only needed wii sectors from iso and fill others with zeros. This makes adding faster and avoids reading behind end of file. This is needed for reading from a pipe. - New error code: JOB_IGNORED: Set if a disc is ignored while adding a game. - wwt ADD: adding to more than one WBFS failed since v0.27a. - wit COPY+SCRUB+MOVE: Process files in alphabetic order and print iteration counter. - Bug fix: wwt LIST: Not all discs were shown if an invalid disc was found. - Decompose unusual unicode characters (remove accents...) in title database. wwt v0.29a r606 - 2010-01-22 - wwt ADD: Adding a complete WBFS is optimized and much faster now. - Bug fix: Option --preserve didn't work. - wwt+wit FILETYPE: Print region info if option --long is set twice. wwt v0.30a r613 - 2010-01-30 - wwt+wit FILETYPE: Print scrubbed size if option --long is set twice. - New command: wit ISOSIZE: Print scrubbed ISO sizes in up to 4 aspects. wwt v0.31a r618 - 2010-01-31 - wwt+wit FILETYPE: Print table header. - wwt FORMAT: new option: --recover: Format a WBFS in recover mode. The recover feature is EXPERIMENTAL! wwt v0.32a r632 - 2010-02-14 - wwt+wit: New environment variable: WWT_LANG: Define a default language. - wwt+wit: New option: --lang= : Define the working language. - wwt FORMAT --recover: Little optimizations. - Bug fix: Enable cache for all commands if reading from a pipe. wwt v0.33a r659 - 2010-03-01 - Support of the new extended WBFS inodes with the data records 'itime', 'mtime', 'ctime', 'atime' and 'load_count'. - ADD updates itime, mtime, ctime and atime. mtime is taken from source. - EXTRACT updates atime. mtime is copied to destination file. - RENAME+SETTILE @INODE updates ctime and atime. - RENAME+SETTILE @ISO updates mtime, ctime and atime. - LIST may show one of the time values (-ll, --*time, --time=mode) - DUMP show all times if disc dump is enabled (--long). - wit+wwt LIST: The new options --itime, --mtime, --ctime, --atime and --time=modelist will force output of a time stamp. The meaning of --long is changed. - Option --sort= supports new modes 'DATE', 'ASCENDING' and 'DESCENDING'. - New wwt command: LIST-LL or LLL: Abbreviation of 'LIST -ll'. - New wit command: LIST-LLL or LLLL: Abbreviation of 'LIST -lll'. - Bug fix: wit LIST: The WBFS file size was listed instead the ISO size. wwt v0.34a r691 - 2010-03-11 - New timestamp: 'dtime' is set when a disc is deleted. - wwt FORMAT: If formatting a block device empty inodes with empty but valid extended inode infos are written and the dtime is set. - wwt PHANTOM: Setup extended inode info (time stamps + ...) too. - wwt CHECK/REPAIR: new mode: --repair=inode: Setup all missing inode infos. - New command: wwt TOUCH: Set timestamps of inode info (created if not exist). Supported time options: --itime --mtime --ctime --atime --set-time=time - All tools can write to a block or character device if --overwrite is set. - wwt FIND --quiet: report only via return status if a WBFS is found. - The split size for WBFS and ISO is now rounded down to a multiple of 32 KiB. Any split sizes are allowed for WDF. - wwt bug fix: If extracting to WBFS the extension '.wbfs' was not added. - New wwt DUMP option: --inode: show status of all inodes (deleted discs too). - libcrypto is now statically linked, so wwt runs on older linux systems. - wwt+wit FILETYPE: Support of option --no-header - Test script test-ADD+EXTRACT.sh runs again. - Bug fix: Sometimes reading an ISO from a WBFS runs into "Not a ISO image". wwt v0.34b r701 - 2010-03-12 - Bug fix: Reading from a WBFS with exact one discs without a disc selector is possible again. - Bug fix: Progress information is also printed if extracting to wbfs files. wwt v0.35a r713 - 2010-03-14 - Bug fix: The "wwt TOUCH" command didn't accept most of the allowed options. - wwt ADD: New option --newer: Copy only newer files if mtime of source and destination are available and non zero. - RENAME+SETTITLE: Timestamps are only set if ID or title are really changing. - Doumentation has been improved a little bit. wwt v0.36a r728 - 2010-03-19 - Option --sort=key: new keys: 'ITIME', 'MTIME', 'CTIME' and 'ATIME'. - wwt+wit LIST: Support of multiple time columns. - wwt+wit LIST+ERROR: new option --sections: print machine readable output devided into sections "[...]". Each section has lines like "name=value". - Makefile: Changed some lib settings (explicit naming of libcrypto removed). wwt v0.37a r753 - 2010-03-26 - wwt: new command: ANALYZE: Analyze files and partitions for WBFS usage. It try to find existing WBFS structures and make calculations for new WBFS. - Check WBBS header - Search INODE-INFO data (includes copy of WBFS header) - Search discs for valid ID6 and MAGIC. - Make example calculations for different sector sizes. All results are printed as table with the main geometry data. - wwt INIT: - New option: --wss (Wbfs Sector Size): Defines the WBFS sector size. - The option --sector-size (defines the HD sector size) was replaced by the more handy --hss (Hd Sector Size). The old option is still allowed. - If option --recover is set the command ANALYZE is called to determine the values of --hss and --wss if not set before. This points should complete WBFS recovering. - For the ANALYZE command I have written a complete new function to calculate the WBFS geometry (outsourcing of the calculation). If formatting a drive this new function is called to compare the results with the old calculation. If there are differences the program stops with an assertion failure. ** Please tell me such errors! ** wwt v0.38a r769 - 2010-03-28 - Some dtime improvements. - wwt+wit: Option -C is not longer the short version of option --trunc. - CISO support (EXPERIMENTAL): - wdf-dump will also dump the structure and memory map of CISO files. - wdf-cat will copy the extended ISO to standard output. - On all places where a plain ISO is allowed as source file a CISO is allowed too. - To force CISO-output use option --ciso or file type ".ciso" or ".wbi". wwt v0.38b r771 - 2010-03-28 - Bug fix for wwt INIT: Wrong assertion while comparing old and new calculation for WBFS geometry. wwt v0.39a r782 - 2010-03-29 - Bug fix: New CISO files > 4 GiB have been truncated (modulo 2^32 error). - Character devices are allowed for WBFS. - wwt --auto: If the file /proc/partitions is not found, than all devices named '/dev/sd*' and '/dev/rdisk*' are scanned for WBFS. If scanning of '/dev/rdisk*' fails then also files named '/dev/disk*' are scanned. Using character devices '/dev/rdisk*' will speed up wwt on apple computers. wwt v0.40a r790 - 2010-03-31 - Cache handling (pipe support) improved. Discs with update partitions are problematic (some discs needs a 256 MiB cache). Try --psel=game to ignore update partitions. The CYGWIN version has real problems with pipes. - Bug fix: Option "--ciso" was not recognized. - New test script: scripts/test-wwt+wit.sh - test "wwt INIT" with different HD sector sizes - test "wwt ADD" with ISO, CISO, WDF, WBFS - test "wwt EXTRACT" to ISO, CISO, WDF, WBFS - test "wit COPY" (convert) to ISO, CISO, WDF, WBFS wwt v0.41a r824 - 2010-04-16 - New escape sequence for output file names: %Y = Extended filename: A shortcut for '%T [%I]' (no file extension) - wit DUMP: new option --files= (-F): dump a list of files. - New command: wit ILIST: List all files from ISO images. - New command: wit EXTRACT: Extract all files from ISO images. This is a first implementation or better a proof of concept. - New option: --files=rules: Define a rule list as selector for ISO file operations. A semicolon separate single items. Each item must begin with '+' (allow) or '-' (deny). Multiple usage of the option is allowed. This options is used by the commands DUMP, ILIST and EXTRACT. See file "wit.txt" section "Selecting files with --files=rules" for more details. - Bug fix: Creating directories (--DEST) with absoulte paths will now work. - New wit option: --rdepth: Set the maximum recurse depth for option --recurse in the range 0..100. The default depth is 10. - New param for wwt+wit LIST --section: used_blocks= (1 block = 32 KiB) wwt v0.42a r846 - 2010-04-19 - Bug fix: wit option -C was not recognized. - Bug fix: Print multiple time stamps in listing works now. - wit ILIST rewritten. It supports now --sort= - wit EXTRACT rewritten. All needed files for SNEEK are extracted. - New wit option: --pmode=default|auto|none|point|ident|name The option defined how the partition type is used to prefix the file path. - The new wit option --sneek is an abbreviation of --psel=data --pmode=none. It also suppress creating files that SNEEK don't need. wwt v0.42b r871 - 2010-04-21 (repository only) - The wiidisc interface now reads only well aligned (multiple of 512) data. - When creating a CISO the blocksize is now always a power of 2. - wwt+wit FILETYPE detect now extracted ISO file systems (FST). wwt v0.42c r873 - 2010-04-21 (repository only) - Bug fix for wiidisc aligned reading (since v0.42b). wwt v0.43a r957 - 2010-04-30 - wwt+wit FILETYPE will detect 'boot.bin', 'fst.bin' and DOL files too. - wit DUMP prints internal info of 'boot.bin', 'fst.bin' and DOL files too. - "wit COPY source_dir output_file" is able to compose a fake signed ISO image from a file system. wwt v0.44a r973 - 2010-05-02 - wit bug fix: Option --enc was not accepted. - ISO composing supports now UPDATE, DATA and CHANNEL (new!) partitions. - wit DIFF: If option --files= (-F) is set then the ISO images (real or virtual FST) will be compared on file level. The option --files= declares a file filter. - Progress counter for "wit EXTRACT" enabled. - Option --files= (-F): The macros are redifined as positive list. Now we have the following macros: =base =nobase =disc =nodisc =sys =nosys =files =nofiles =wit =wwt =sneek - wit COPY can decrypt or encrypt ISO images on the fly when copying in scrubbed mode. This does not change the signature. - Fix some troubles with new cyygwin release 1.7.5-1. The main problem was file path creation with absolute path names. wwt v0.45a r1012 - 2010-05-05 - To avoid troubles with platform dependent openssl support I have integrated the SHA1 sources from openssl into WWT. - The new command "wit VERIFY" checks the hash signatures of all needed sectors (keyword "scrubbed"). All five hash levels (H0..H4) are verified. This means 64 AES decryptions and 1029 SHA1 calculations for each MiB. wit v0.46a r1043 - 2010-05-13 - The main name have changed from "Wiimms WBFS Tool" to "Wiimms ISO Tools". The following things are changed too: - '/usr/local/share/wwt/' moved to '/usr/local/share/wit/' - Environment variable WWT_LANG moved to WIT_LANG. - wwt INIT --recover: recover also previous deleted files. Discs with collisions (use blocks that other discs also use) are never recovered. - New command: wwt RECOVER: Works like "wwt INIT --recover", but only with already WBFS formatted files => not formatting, only recovering. "wwt RECOVER" can be used with the option --test to see what happen. - wit VERIFY: Output messages redesigned. Verbosity can be controlled in five levels from -qq up to -vv. - The new option --limit sets a limit for VERIFY error messages. - New command: wwt VERIFY: works like "wit VERIFY" but with wwt interface. It also supports options --remove and --no-free for removing or dropping invalid discs. - Docu of wit+wwt VERIFY and "wwt RECOVER" added. - Minor bug fix for wwt CHECK: It have shown 'free blocks' errors for some removed discs if this the discs removed with a non wwt tool. - CGYWIN release: The new batch file 'run-cmd-as-admin.bat' starts a cmd window in administrator mode. This should simplify the work with wwt. wit v0.47a r1106 - 2010-05-22 - ID checking redesigned, underscore is now an allowed character. - Command line parsing rewritten: Commands and command specific options are defined in a special tool (C file 'gen-ui.c'). If running this tool it generates C source for all tools to analyse commands and options and to print help messages. - Included help was improved: wit and wwt supports now 'HELP command'. The output is now aligned to the current terminal width. - The documentation of all new options is now complete. - Bug fix: wit has shown wrong file size for splitted ISO images. wit v0.48a r1145 - 2010-05-29 - wit SCRUB: Option --enc= available to encrypt and decrypt disc images. - Bug fix for wit COPY: Creating a WBFS file with FST as source failed. - Bug fix: If reading from a CISO a minimal file size is now set. - Composing bug fix: Forgotten to set offset 0x4fffc to value 0xc3f81a8e. - New option --id=id: Modify ID in disc header, boot.bin, ticket.bin and tmd.bin when composing a Wii ISO image. - New option --name=name: Modify dics title in disc header and boot.bin when composing a Wii ISO image. - New option --modify=NONE,DISC,BOOT,TICKET,TMD,ALL,AUTO: decides which of disc header, boot.bin, ticket.bin and/or tmd.bin is modified when using the options --id=id or --name=name. - New option --region=JAPAN,USA,EUROPE,KOREA,FILE,AUTO: Set region when composing a Wii ISO image. Unsigned numbers are also allowed. - New option --ios=number or --ios=high-low: Define system version (IOS) within TMD when composing a Wii ISO image. - TMD and TICKET (=new) will be fake signed if composing a disc. - All UTF-8 characters with code >= 0x80 are allowed in filenames. wit v0.48b r1164 - 2010-06-01 (repository only) - Bug fix: If reading a very small WBFS file the old and buggy calculation in libwbfs for the free tables size results in zero. Accessing the non existent table forces a segmentation fault. For compatibility reasons the calculation can't be changed. - Bug fix: wit DUMP had always reported encrypted partitions. - Composing bug fix: Copy only really needed data from boot.bin if file header.bin is missed. wit v0.49a r1177 - 2010-06-06 - Built in help improved. ******************************************************************************* ******* END ******* ******************************************************************************* wit-2.31a/templates/wwt.txt0000644000175000017500000012435612655737307015603 0ustar michaelmichael @@MODULE(head.txt)@@ This files describes the main tool 'wwt'. @@MODULE(content.txt)@@ ******************************************************************************* ******* Overview about this document ********* ******************************************************************************* Contents: Output of 'wwt --help' @file Commands in detail Processing partitions Processing ISO files Processing ID6 parameters Processing exclude options Processing title db Processing split options Processing size options Some options in detail Hidden options (for testing) Environment variables Signals ******************************************************************************* ******* Output of 'wwt --help' ********* ******************************************************************************* @@EXEC(./wwt --width 80 --help)@@ ******************************************************************************* ******* @file ******* ******************************************************************************* If a parameter beginns with '@' the text behind that '@' is a filename. Each line of the file is taken as a parameter (not option, not command). Each line may terminate with LF or CR+LF. Handling of '@' is *not* recurse. The special filename '-' means: read from standard input (stdin). ******************************************************************************* ******* Commands in detail ******* ******************************************************************************* Command abbreviations are allowed as long as they are unique. The commands are listed in alphabetic order: ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 ADD)@@ ~ [2do] copy to homepage The ADD command adds all given ISO images to all given WBFS partitions. The filename '-' means 'read from stdin'. The three options --all, --auto and --part decides which partitions will be modified (see section "Options in detail: partitions" for details). If a given file does not exist or isn't a ISO image (maybe shrinked with WDF) an error message will be printed. The option --ignore suppresses this message. ADD accept plain ISO files, WDF ISO files, WBFS files and directories as source. For a directory each valid ISO file is used as source. The option --recurse allow a definition of a directory which is search recursive. Existing WBFS discs will be ignored if --update is set. They are only over- written if the option --overwrite is set. After successfull operation and if --remove is set, the ISO images will be removed from the source file system. If option --sync is set than before adding all discs that are not part of the soruce list are removed from the WBFS. The option --sync includes the option --update. After operation the WBFS contains exactly the ISO images which ae defined in the source list. If the option --newer is set and source and destination 'mtime' (last modi- fication time) for the current job are both available and non zero, then the options --update and --overwrite are ignored and the destination is over- written if the source is newer (younger) than the destination. If the --quiet option is set only error messages will be printed. If the --verbose option is set run time calculations will be made too. If the --verbose option is at least twice a progress status will be shown. If the --test option is set the programm does nothing, neither copying nor removing. Instead it will print some 'WOULD ...' messages. Before modifying the WBFS a check (see CHECK) is done. If there are any problematic errors detected the WBFS is ignored. If the option --force is set, the test is done but the result is ignored. The option --no-check disables this automatic check. Usual ERROR/EXIT CODES: 0 == OK : all done without errors. JOB_IGNORED : a source file is ignored. SYNTAX ERROR : at least one syntax error in command line found. MISSING PARAMETERS : no parameters (iso images) given. NO WBFS FOUND : no WBFS partition found. TO MUCH WBFS FOUND : 2 to more no WBFS partition found but --all missed. WRITE ERROR : error while writing a WBFS. REMOVE ERROR : error while removing a disc from a WBFS. READ ERROR : error while reading an ISO image or a WBFS. ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 ANALYZE)@@ ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 CHECK)@@ ~ [2do] copy to homepage Command CHECKS checks WBFS partions for block errors in 5 categories: - Find discs with invalid blocks. - Find discs with no valid blocks. - Find discs which uses same blocks. - Find free blocks that marked as used. - Find used blocks that marked as free. If the option --repair is set then the detected error are fixed. Fixing the free blocks table is the last action. Be carfull because discs will be removed. The repair modes in detail: - | NONE : reset = ignore previous settings F | FBT : repair free blocks table I | INODES : setup all missing inode infos STD | STANDARD : default setting: FBT,INODES RI | RM-INVALID : remove discs with invalid blocks RO | RM-OVERLAP : remove discs with overlaped blocks RF | RM-FREE : remove discs with free marked blocks RE | RM-EMPTY : remove discs with no valid blocks RA | RM-ALL : remove all discs with errors * | ALL : repair all All keyword can be prefixed by + : enable repair mode (default) - : disable repair mode = : enable repair mode and disable all others Usual ERROR/EXIT CODES: 0 == OK : all done without errors. SYNTAX ERROR : at least one syntax error in command line found. NO WBFS FOUND : no WBFS partition found. TO MUCH WBFS FOUND : 2 to more no WBFS partition found but --all missed. WBFS INVALID : An invalid WBFS found (WBFS with errors) ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 DUMP)@@ ~ [2do] copy to homepage The DUMP command dumps out the data structure of all WBFS. data. The three options --all, --auto and --part decides where partitions will be searched (see section "Options in detail: partitions" for details). If at least one parameter ('wbfs_partition') is given ther option --all well be enabled and all names are insterted into the partition list like --auto. This enables an easy lookup like 'wwt find *.wbfs'. DUMP will dumps the data structure of all WBFS partitions found. If the option --long is set then all Wii discs of each WBFS partition will be dumped too. If option --long is set at least twice an additional memory map for each disc will be printed. If --long is set at least three times an additional memory map for the whole WBFS is printed at the end. Failures (overlapped areas) are marked with '!'. If the option --inode is set, all inodes (invalid inodes with with proper inforamtions too) are shown. This implies at least one --long. When --long is four or more times the option --inode is set automatically. Usual ERROR/EXIT CODES: 0 == OK : all done without errors. SYNTAX ERROR : at least one syntax error in command line found. READ ERROR : error while read a file given by option --part. NO WBFS FOUND : no WBFS partition found. TO MUCH WBFS FOUND : 2 to more no WBFS partition found but --all missed. ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 EDIT)@@ ~ [2do] copy to homepage EDIT is a dangerous command. It let you (de-)activate the disc slots and edit the block assignments. Exact 1 WBFS must be specified. All parameters are sub commands. Modifications are only done if option --force is set. ********************************************************** ***** WARNING: This command can damage your WBFS!! ***** ********************************************************** Each parameter is one sub command. The case of commands is ignored. After editing a check of the WBFS is made and a status printed if errors found. The general subcommand syntax is: subcommand=parameter[,parameter]... List of subcommands: RM=a,b-c,... R=a,b-c,... Remove disc in slot 'a' or the slot range 'b-c' from wbfs. The slot is only marked as free, no blocks are freed. EDIT does not allow undefined slot numbers. The indices are null based. ACT=a,b-c,... A=a,b-c,... Activate disc in slot 'a' or the slot range 'b-c' from wbfs. The slot is only marked as activated without any tests. EDIT does not allow undefined slot numbers. The indices are null based. INV=a,b-c,... I=a,b-c,... Like 'ACT' but the slot is additionally marked as invalid. FREE=a,b-c,... F=a,b-c,... Modify the free blocks table and mark the single block 'a' or the range of blocks 'b-c' as free. EDIT does not allow undefined block numbers. USE=a,b-c,... U=a,b-c,... Modify the free blocks table and mark the single block 'a' or the range of blocks 'b-c' as used. EDIT does not allow undefined block numbers. ID6=a:b,c-d:e,... For the game with ID6: Set ISO block 'a' to WBFS block 'b' or set ISO blocks 'c-d' to WBFS blocks 'e...'. If 'e' is zero then set ISO blocks 'c-d' to zero (=unused). EDIT does not allow undefined block numbers. Note: The block size for all sub commands is always the WBFS block size, but never the ISO block size. Usual ERROR/EXIT CODES: 0 == OK : all done without errors. SYNTAX ERROR : at least one syntax error in command line found. READ ERROR : error while read a file given by option --part. NO WBFS FOUND : no WBFS partition found. TO MUCH WBFS FOUND : 2 to more no WBFS partition found but --all missed. ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 ERROR)@@ ~ [2do] copy to homepage The command ERROR translate an exit code to a text message. Without parameters print all error names and error messages. With a given 'error_code' the error message that belongs the number is printed to stdout and the program exits with exit status is 0 (success). If the error_code is unknown or invalid the error message is '?' and the program exits with exit status is 1 (failure). Without 'error_code' a list of all error codes is printed. The output contains three columns separated with colons. The format is: error code ':' error name ':' error messages If the option --sections is set, then the layout is completly changed to a sections base output. This output is machine readable. The output looks like: [error-CODE] code=ERROR_NUMBER name=ERROR_NAME text=ERROR_TEXT Usual ERROR/EXIT CODES: 0 == OK : all done. SYNTAX ERROR : at least one syntax error in command line found. SEMANTIC ERROR : unkown error_code given. ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 EXCLUDE)@@ ~ [2do] copy to homepage The command 'EXCLUDE' builts the exclude data base and prints the result to stdout. The handling of the additional files works like the --exclude option. The section "Processing exclude options" explains the options in detail. Usual ERROR/EXIT CODES: 0 == OK : all done. SYNTAX ERROR : at least one syntax error in command line found. ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 EXTRACT)@@ ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 FILETYPE)@@ ~ [2do] copy to homepage The command 'FILETYPE' prints for each given file one status line like: FILETYPE ID6 SIZE_MIB REGION SPLIT FILENAME Columns 'ID6' and 'SPLIT' are only printed if option --long is set. For non ISO images the ID6 is '-'. If the file is splitted than column 'SPLIT' shows the number of split files instead of '-'. Columns 'SIZE_MIB' and 'REGION' are only printed if option --long is set at least two times. 'SIZE_MIB' is the calculatet size of a scrubbed ISO image. For this all used sectors of a ISO image are counted. The usage depends of the options --psel and --raw. Filetypes are: NO-FILE : No file found DIR : Not a file but a directory WBFS : A WBFS WBFS/ : A WBFS used like directory with id6 or index or pos WDF+WBFS : A WBFS shrinked with WDF (this make no sense expect transporting) ISO : A ISO image. WDF+ISO : A ISO image shrinked with WDF. WDF : Any other WDF file (not WBFS or ISO) WIA : A ISO image packed into the WIA (Wii ISO Archive). GCZ : Dolphins GameCup-Zip images. OTHER : Any other file Remark: The test for WBFS is poor and must be improved. Usual ERROR/EXIT CODES: 0 == OK : all done without errors. SYNTAX ERROR : at least one syntax error in command line found. READ ERROR : error while reading a file. ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 FIND)@@ ~ [2do] copy to homepage The FIND command makes a quick search for WBFS partitions: it scans only the WBFS-Header. The three options --all, --auto and --part decides where partitions will be searched (see section "Options in detail: partitions" for details). If at least one parameter ('wbfs_partition') is given the option --all will be enabled and all names are inserted into the partition list like --auto. This enables an easy lookup like 'wwt find *.wbfs'. Without option --long only a list of found WBFS partition will print out, each partition in one line. With a single --long option an aligned list of all partitions, wbfs or not, is printed with 5 colums: type : 'PLAIN' for plain files or 'BLOCK' for block devices. wbfs : 'WBFS' or '--' disc usage : allocated size in MiB. size : file size in MiB. file : the given path name of the file. The option --no-header suppress the output of header and footer. With a double (or more) --long option the layout is changed: type : 'PLAIN' for plain files or 'BLOCK' for block devices. wbfs : 'WBFS' or '--' disc usage : allocated size in MiB. size : file size in bytes. full path : the real path name of the file. The option --no-header suppress the output of header and footer. The 'disc usage' is smaller than the 'file length' if the file contains holes (sparse files). For block devices it is always printed as zero. If the option --quiet is set then FIND is absolut quiet. If at least one of the examined partitions or files is a valid WBFS then the return status is 'OK' (0). If none is a WBFS the return status is 'NO WBFS FOUND' (not null). Usual ERROR/EXIT CODES: 0 == OK : all done without errors. SYNTAX ERROR : at least one syntax error in command line found. READ ERROR : error while read a file given by option --part. NO WBFS FOUND : no WBFS partition found. TO MUCH WBFS FOUND : 2 to more no WBFS partition found but --all missed. ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 FORMAT)@@ ~ [2do] copy to homepage The command FORMAT format block devices and plain files with a WBFS. All data on the destination will be lost. The command works in test mode if the option --test is set or the option --force is not set. So you must set the option --force to format. The option --size is irrelevant for already existing files. Non existing files will be created as sparse files. Therefor the option --size is needed. The option needs a integer number and an optional factor sign. The option --hss defines the HD sector size of the WBFS partition. The default is 512 bytes and most other tools and USB loaders will only support this 512. But the wbfs framwork supports any value >=16 but it must be a power of 2. WWT forces values >= 512. The option --wss defines the WBFS sector size. If not set the INIT function calculates a good value. The parameters of the size options --size and --sector-size are discussed in the section "Processing size options". If the option --recover is set, the WBFS will be formatted in recover mode: - If --hss or --wss is not set then an internal call to ANALYZE (output suppressed) is made to determine the values. The data of the first virtual row is used to override the default values of --hss and --wss. - Only the header of the WBFS is written. The inodes are not cleared. - All empty discs slots are marked as used. - All WBFS blocks are marked as used. - A silent check and repair is done: - Drop discs with invalid magic or without ID. - Drop rescued discs with invalid block numbers. (--repair=RM-INVALID) - Drop rescued discs without any block. (--repair=RM-EMPTY) - Free unused blocks in the free blocks table. (--repair=FBT) - A verbose check is done (like "wwt check --verbose") to find and report other errors. WARNING: Before using "wwt INIT --recover" you should call "wwt ANALYZE" and control the output! See also: wwt RECOVER: Recover discs without reformatting. Usual ERROR/EXIT CODES: 0 == OK : all done without errors. SYNTAX ERROR : at least one syntax error in command line found. MISSING PARAMETERS : no parameters (iso images) given. WRITE ERROR : error while writing/formatting a WBFS. ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 HELP)@@ ~ [2do] copy to homepage Usual ERROR/EXIT CODES: 0 == OK : all done without errors. ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 ID6)@@ ~ [2do] copy to homepage The command 'ID6' lists the ID6 of all discs for each partition, one ID per row. The three options --all, --auto and --part decides where partitions will be searched (see section "Options in detail: partitions" for details). If neither --part nor --auto is set then the options --auto and --all are assumed. So the usage of 'id6' without options is easy. If --uniqe is set each game disc with same ID6, name, size and region is only printed once. The --unique option implies the --all option. The sort order can be set by the --sort option. Sort=none means, that the ID will be shown in order of the WBFS partition. The default sort order is 'ID'. If the option --long is set the output is "WBFS_FILE/ID6" for each game. Usual ERROR/EXIT CODES: 0 == OK : all done without errors. SYNTAX ERROR : at least one syntax error in command line found. READ ERROR : error while read a file given by option --part. NO WBFS FOUND : no WBFS partition found. ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 LIST)@@ ~ [2do] copy to homepage The command 'LIST' lists infos of all discs for each partition, one disc per row. The three options --all, --auto and --part decides where partitions will be searched (see section "Options in detail: partitions" for details). If neither --part nor --auto is set then thr options --auto and --all are assumed. So the usage of 'list' without options is easy. Without --long the ID and the name are printed. With option --long the ID, size, region and the name are printed. The option --no-header suppress the output of header and footer. Printing of timestamps is enabled by the options --time, --itime, --mtime --ctime, --atime or when --long is set at least twice. --time=off disables time printing. All time options (not --long) supersede the previous options. The option --time take a comma separated list of the following keywords: OFF : Disable time printing. All other option enable time printing. ON : Enable time printing. SINGLE : Print only a single column (last time specified. MULTI : Print columns for all specified times. (default) I : Use itime (insertion time) for processing. M : Use mtime (last modicifaction time) for processing. (default) C : Use ctime (last staus change time) for processing. A : Use atime (last access time) for processing. NONE : Disable all 4 times above ALL : Enable all 4 times above DATE : Print time in format 'YYYY-MM-DD'. (default) TIME : Print time in format 'YYYY-MM-DD HH:MM'. MIN : Alternative keyword for 'TIME'. SEC : Print time in format 'YYYY-MM-DD HH:MM:SS'. *DATE : Short cut for '*,DATE'. '*' is one of 'I', 'M', 'C' or 'A'. *TIME : Short cut for '*,TIME'. '*' is one of 'I', 'M', 'C' or 'A'. *MIN : Alternative keywords for '*TIME'. *SEC : Short cut for '*,SEC'. '*' is one of 'I', 'M', 'C' or 'A'. With --mixed all discs of all partitions were mixed together. If --uniqe is set each game disc identified by ID6 is only printet once. The --mixed option implies the --all option. The --unique option implies the --mixed and the --all options. If the option --long is set three or more time together with --mixed then a WBFS table is printed at the top with a WBFS-Index ('WI') and the filename. The game table contains an additional column with this WBFS-Index. If the option --sections is set, then the layout is completly changed to a sections base output. This output is machine readable. The output looks like: [section_name-index] parameter=value parameter=value ... The sort order can be set by the --sort option. Sort=none means, that the ID will be shown in order of the WBFS partition. The default sort order is 'TITLE'. If available the name of the title database is used as game name. use the option -T0 to disable database titles. Usual ERROR/EXIT CODES: 0 == OK : all done without errors. SYNTAX ERROR : at least one syntax error in command line found. READ ERROR : error while read a file given by option --part. NO WBFS FOUND : no WBFS partition found. TO MUCH WBFS FOUND : 2 to more no WBFS partition found but --all missed. ------------------------------------------------------------------------------- COMMANDS: LIST-L | LL [wbfs_partition]... LIST-LL | LLL [wbfs_partition]... LIST-A | LA [wbfs_partition]... LIST-M | LM [wbfs_partition]... LIST-U | LU [wbfs_partition]... 'LIST-L' is a synonym for 'LIST --long'. 'LIST-LL' is a synonym for 'LIST --long --long'. 'LIST-A' is a synonym for 'LIST --long --long --all --auto'. 'LIST-M' is a synonym for 'LIST --long --long --all --mixed'. 'LIST-U' is a synonym for 'LIST --long --long --all --unique'. See command 'LIST' for options and details. ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 PHANTOM)@@ ~ [2do] copy to homepage The PHANTOM commands adds multiple discs to WBFS partitions. The content of the discs is undefined, only the WBFS inode and the ISO header (first 256 bytes) are written to WBFS. The PHANTOM command is implemented for test purposes; it can fill a WBFS very fast with multiple discs with random size. The ID6 of phantom discs are 'PHT###', where '###' is the lowest unused decimal number. The syntax of each subcommand is: [ NUM 'x' ] SIZE ['m'|'g'] NUM defines a number of discs to add. NUM is a unsigned integer or a range like '2-5'. If a range is given, wwt add a random number of discs specified by this range. The default number is '1' SIZE defines the size of the discs in GiB. SIZE is a unsigned integer or a range like '1-9'. If a range is given, wwt calculates the real size as random number in the specified discs. If a 'm' (or 'M') is follows the size, SIZE is specified in MiB and not in GiB. Example: wwt PHANTOM 3-5x1-9 create 3, 4 or 5 discs, each with a random size between 1 and 9 GiB. Multiple subcommands are allowed. The program terminates the filling process automatically and without errors if the WBFS becomes full. Full means that are slots are used or that no more data space is left. If the data space runs out the last phantom will be cutted silently so that all data blocks in the WBFS are used. Before modifying the WBFS a check (see CHECK) is done. If there are any problematic errors detected the WBFS is ignored. If the option --force is set, the test is done but the result is ignored. The option --no-check disables this automatic check. Usual ERROR/EXIT CODES: 0 == OK : all done without errors. SYNTAX ERROR : at least one syntax error in command line found. READ ERROR : error while read a file given by option --part. NO WBFS FOUND : no WBFS partition found. TO MUCH WBFS FOUND : 2 to more no WBFS partition found but --all missed. ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 RECOVER)@@ ~ [2do] copy to homepage The command RECOVER tries to recover presious removed discs. It recover only discs without block collisions (2 ore mor discs shares the same memory). Recovering work like this: - All empty discs slots are marked as used. - All WBFS blocks are marked as used. - A silent check and repair is done: - Drop discs with invalid magic or without ID. - Drop rescued discs with invalid block numbers. (--repair=RM-INVALID) - Drop rescued discs without any block. (--repair=RM-EMPTY) - Free unused blocks in the free blocks table. (--repair=FBT) - A verbose check is done (like "wwt check --verbose") to find and report other errors. See also: wwt FORMAT --recover: Format WBFS and recoverdiscs. Usual ERROR/EXIT CODES: 0 == OK : all done without errors. SYNTAX ERROR : at least one syntax error in command line found. MISSING PARAMETERS : no parameters (iso images) given. WRITE ERROR : error while writing/formatting a WBFS. ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 REMOVE)@@ ~ [2do] copy to homepage The REMOVE command removes all discs identified by ID6 from all given WBFS partitions. The options --all, --auto and --part decides which partitions will be modified (see section "Options in detail: partitions" for details). Each parameter is scanned for an ID6. Possible formats are: '*' | '+' ID6 ID6=name name [ID6] ID6 anything A single '*' (must be escaped by shells) or '+' means 'all'. A 'name' part will be ignored. Please read section "Processing ID6 parameters" for details. The option --ignore suppresses error messages about not found disc images. If the --quiet option is set only error messages will be printed. If the --verbose option is set run time claculations will be made too. If the --test option is set the programm does nothing, neither copying nor removing. Instead it will print some 'WOULD ...' messages. If the --test option is set two or more times then only a normalized ID6 list is printed. For each ID6 one line is printed. If a destination filename is known 'ID=name' is printed, else 'ID6' alone. If the option --no-free is set then the disc is only marked as removed. The allocated blocks are not freed. After using --no-free you should use the command CHECK with --rapair=fbt to repair the free blocks table. Before modifying the WBFS a check (see CHECK) is done. If there are any problematic errors detected the WBFS is ignored. If the option --force is set, the test is done but the result is ignored. The option --no-check disables this automatic check. Usual ERROR/EXIT CODES: 0 == OK : all done without errors. SYNTAX ERROR : at least one syntax error in command line found. MISSING PARAMETERS : no parameters (ID6) given. NO WBFS FOUND : no WBFS partition found. TO MUCH WBFS FOUND : 2 to more no WBFS partition found but --all missed. WDISC NOT FOUND : disc not found on any WBFS partition. REMOVE ERROR : error while removing a disc from a WBFS. READ ERROR : error while reading an ISO image or a WBFS. ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 RENAME)@@ ~ [2do] copy to homepage This command 'RENAME' may change the ID6 and/or the title of discs. It can change the information in the WBFS inode or the information in the ISO header or both (the default). The alternative command 'SETTITLE' modifies only titles. The advantage of 'SETTITLE' is, that it can modify all titles with 1 sub command. The syntax of a sub command is: id6=[new_id6][,new_title] 'id6' is the ID of the disc to change. The optional 'new_id6' is the new ID of the disc. The optional 'new_title' is the new title of the disc. @@MODULE(set-title.txt)@@ ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 REPAIR)@@ ~ [2do] copy to homepage Command REPAIR checks and repairs WBFS partions for block errors. By default errors in the 'free blocks table' will be fixed. See command CHECK for details. Usual ERROR/EXIT CODES: 0 == OK : all done without errors. SYNTAX ERROR : at least one syntax error in command line found. NO WBFS FOUND : no WBFS partition found. TO MUCH WBFS FOUND : 2 to more no WBFS partition found but --all missed. WBFS INVALID : An invalid WBFS found (WBFS with errors) ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 SETTITLE)@@ ~ [2do] copy to homepage This command 'SETTITLE' may change the title of discs. It can change the information in the WBFS inode or the information in the ISO header or both (the default). The alternative command 'RENAME' can also change the ID of discs. The syntax of a sub command is: id6=new_title 'id6' is the ID of the disc to change. If using '+' all discs are changed. The 'new_title' is the new title of the disc. @@MODULE(set-title.txt)@@ ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 SPACE)@@ ~ [2do] copy to homepage The SPACE command makes a quick search for WBFS partitions: it scans only the WBFS-Header. The three options --all, --auto and --part decides where partitions will be searched (see section "Options in detail: partitions" for details). If at least one parameter ('wbfs_partition') is given ther option --all well be enabled and all names are insterted into the partition list like --auto. This enables an easy lookup like 'wwt find *.wbfs'. The SPACE/DF command prints: size : file size in MiB. used : space used by discs in MiB. used% : space used by discs in percent. free : free space for discs in MiB. discs : number of wii discs / max number of discs file : the given path name of the file. With option --long the real path instead aa the given filename is printed. The option --no-header suppress the output of header and footer. Usual ERROR/EXIT CODES: 0 == OK : all done without errors. SYNTAX ERROR : at least one syntax error in command line found. READ ERROR : error while read a file given by option --part. NO WBFS FOUND : no WBFS partition found. TO MUCH WBFS FOUND : 2 to more no WBFS partition found but --all missed. ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 SYNC)@@ ~ [2do] copy to homepage COMMAND: SYNC iso_image_path... 'SYNC' is the same as 'ADD --snyc'. The command 'SNYC' does not accept the options --update, --overwrite and --sync. See command 'ADD' for options and details. ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 TITLES)@@ ~ [2do] copy to homepage The command 'TITLES' builts the title data base and prints the result to stdout. The handling of the additional files works like the --title option. The section "Processing title db" explains the options in detail. Usual ERROR/EXIT CODES: 0 == OK : all done. SYNTAX ERROR : at least one syntax error in command line found. ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 TOUCH)@@ ~ [2do] copy to homepage The TOUCH command changes the time stamps in rhe WBFS inodes of all discs identified by ID6 from all given WBFS partitions. The options --all, --auto and --part decides which partitions will be modified (see section "Options in detail: partitions" for details). Each parameter is scanned for an ID6. Possible formats are: '*' | '+' ID6 ID6=name name [ID6] ID6 anything A single '*' (must be escaped by shells) or '+' means 'all'. A 'name' part will be ignored. Please read section "Processing ID6 parameters" for details. The option --ignore suppresses error messages about not found disc images. If the --quiet option is set only error messages will be printed. If the --verbose option is set run time claculations will be made too. If the --test option is set the programm does nothing, neither copying nor removing. Instead it will print some 'WOULD ...' messages. If the --test option is set two or more times then only a normalized ID6 list is printed. For each ID6 one line is printed. If a destination filename is known 'ID=name' is printed, else 'ID6' alone. If the option --no-free is set then the disc is only makred as removed. The allocated blocks are not freed. Aufter using --no-free you should use the command CHECK with --rapair=fbt to repair the free blocks table. The options --itime, --mtime, --ctime, --atime decides which time stamp is modified. All 4 options can be combined. If none of these options is set then all 4 time stamps are modified. The time stamps are set to the current time (beginning of command touch). With the option --set-time=time an other date can be set. The format of 'time' is one of the following (in terms of function strptime()): "%Y-%m-%d %H:%M:%S" "%Y-%m-%d %H:%M" "%Y-%m-%d %H%M%S" "%Y-%m-%d %H%M" "%Y-%m-%d %H" "%Y-%m-%d" "%Y%m%d %H%M%S" "%Y%m%d %H%M" "%Y%m%d %H" "%Y%m%d" "%s" Before modifying the WBFS a check (see CHECK) is done. If there are any problematic errors detected the WBFS is ignored. If the option --force is set, the test is done but the result is ignored. The option --no-check disables this automatic check. Usual ERROR/EXIT CODES: 0 == OK : all done without errors. SYNTAX ERROR : at least one syntax error in command line found. MISSING PARAMETERS : no parameters (ID6) given. NO WBFS FOUND : no WBFS partition found. TO MUCH WBFS FOUND : 2 to more no WBFS partition found but --all missed. WDISC NOT FOUND : disc not found on any WBFS partition. REMOVE ERROR : error while removing a disc from a WBFS. READ ERROR : error while reading an ISO image or a WBFS. ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 SPACE)@@ ~ [2do] copy to homepage The SPACE command makes a quick search for WBFS partitions: it scans only the WBFS-Header. The three options --all, --auto and --part decides where partitions will be searched (see section "Options in detail: partitions" for details). If at least one parameter ('wbfs_partition') is given ther option --all well be enabled and all names are insterted into the partition list like --auto. This enables an easy lookup like 'wwt find *.wbfs'. The SPACE/DF command prints: size : file size in MiB. used : space used by discs in MiB. used% : space used by discs in percent. free : free space for discs in MiB. discs : number of wii discs / max number of discs file : the given path name of the file. With option --long the real path instead aa the given filename is printed. The option --no-header suppress the output of header and footer. Usual ERROR/EXIT CODES: 0 == OK : all done without errors. SYNTAX ERROR : at least one syntax error in command line found. READ ERROR : error while read a file given by option --part. NO WBFS FOUND : no WBFS partition found. TO MUCH WBFS FOUND : 2 to more no WBFS partition found but --all missed. ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 TRUNCATE)@@ ~ [2do] copy to homepage The command TRUNCATE truncates WBFS to a minmal size. This is done by calculating the last used block within th WBFS. The WBFS is still valid and all modification may be done. Before modifying the WBFS a check (see CHECK) is done. If there are any problematic errors detected the WBFS is ignored. If the option --force is set, the test is done but the result is ignored. The option --no-check disables this automatic check. Usual ERROR/EXIT CODES: 0 == OK : all done without errors. SYNTAX ERROR : at least one syntax error in command line found. READ ERROR : error while read a file given by option --part. NO WBFS FOUND : no WBFS partition found. TO MUCH WBFS FOUND : 2 to more no WBFS partition found but --all missed. ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 UPDATE)@@ ~ [2do] copy to homepage 'UPDATE' is the same as 'ADD --update'. The command 'UPDATE' does not accept the options --update and --overwrite. See command 'ADD' for options and details. ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 VERIFY)@@ ------------------------------------------------------------------------------- @@EXEC(./wwt help --width 80 VERSION)@@ ~ [2do] copy to homepage The command VERSION prints out the program version to standard out (stdout) and exit with status 0 (OK). The ouput line looks like: @@EXEC(./wwt version | sed 's/^/ /')@@ With option --sections the output is printed in a machine readable format: @@EXEC(./wwt --sections version | sed 's/^/ /')@@ Usual ERROR/EXIT CODES: 0 == OK : all done without errors. ******************************************************************************* ******* Processing partitions ******* ******************************************************************************* -A --all Use all WBFS partitions found. -a --auto Search for WBFS partitions using /proc/partitions. -p --part part File of primary WBFS partition. Multiple usage allowed. -p --part @file Special case: read partition list from 'file' ('-'=stdin). These 3 options defines how to search for WBFS partitions. The program generates an internal partition list. This partition list is filled by --part and --auto. --part may be set multiple times. Partitions set with the --part option must be existent, readable and valid WBFS partitions (exceptions explained in the command documentation). Partitions set with --auto are only used, if the partition is readable and the WBFS magic is found. If more than one partition is defined by --part then --all is set. If using the special case '--part @file' each line of the given file is one partition. Each line may terminate with LF or CR+LF. Handling of '@' is *not* recurse. The special filename '-' means: read from standard input (stdin). This nice feature enables shell commands like: "wwt df -p@<(ls *.wbfs)". The program terminates with an error if not exactly one valid WBFS partition is found. When using --all at least one partition must be found. If neither the option --part nor --auto is set then the environment variable 'WWT_WBFS' is searched. It contains a semicolon separated list of filenames. If one ore more of this files is a valid WBFS partition it is silently added to the partition list and the option --all is set. If neither the option --part nor --auto is set, but option --all, than option --auto is set automatically. @@MODULE(proc-iso.txt)@@ @@MODULE(proc-id6.txt)@@ @@MODULE(proc-exclude.txt)@@ @@MODULE(proc-titles.txt)@@ @@MODULE(proc-split.txt)@@ @@MODULE(proc-size.txt)@@ ******************************************************************************* ******* Some options in detail ******* ******************************************************************************* @@MODULE(opt-sort.txt)@@ ******************************************************************************* ******* Hidden options (for testing) ******* ******************************************************************************* There are some hidden options implemented for testing: --io value wwt and the other tools can handle files via open() (file mode) and via fopen() (stream mode). The option --io=value allows to control the method. Bit #0 is for opening WBFS and Bit #1 is for openening ISO images. --io=0 : WBFS=open() ISO=open() **default** --io=1 : WBFS=fopen() ISO=open() --io=2 : WBFS=open() ISO=fopen() --io=3 : WBFS=fopen() ISO=fopen() ******************************************************************************* ******* Environment variables ******* ******************************************************************************* The user can define environment variables as additional way to submit options to the tool. All options are accepted and used as default. See http://wit.wiimm.de/info/environ.html for details. @@MODULE(signals.txt)@@ ******************************************************************************* ******* END ******* ******************************************************************************* wit-2.31a/templates/WDF.txt0000644000175000017500000000330612655737307015371 0ustar michaelmichael /*************************************************************************** * __ __ _______ _______ * * \ \ / / | ____ \ | _____| * * \ \ / / | | \ \ | | * * \ \ / / | | | | | |___ * * \ \ /\ / / | | | | | ___| * * \ \/ \/ / | | | | | | * * \ /\ / | |____/ / | | * * \/ \/ |_______/ |_| * * * * Wii(mm's) Disc File * * http://wit.wiimm.de/WDF * * * *************************************************************************** * * * This file is part of the WIT/WDF project. * * Visit http://wit.wiimm.de/WDF for details and sources. * * * * Copyright (c) 2009-2015 by Dirk Clemens * * * ***************************************************************************/ This file is obsolete now. Visit http://wit.wiimm.de/WDF for technical information about the WDF file format. wit-2.31a/templates/wii-homebrew-beta.forum0000644000175000017500000000305412655737307020571 0ustar michaelmichael [img]http://wit.wiimm.de/images/wiimms-tools.png[/img] [size=18][color=#0000FF][b]@@TOOLSET-SHORT@@: @@TOOLSET-LONG@@ v@@VERSION@@ - @@@@-@@-@@[/b][/color][/size] [size=15][color=#800000][b]Beta-Test-Version![/b][/color][/size] [color=#800000]Die Produkt-Version wird im [url=http://wit.wiimm.de/r/wii-homebrew]WIT Hauptthema[/url] besprochen.[/color] [size=12][color=#0000c0][b]Download[/b][/color] [color=#800000][b]der EXPERIMENTELLEN Version:[/b][/color][/size] [list] [*] [url=@@URI-DOWNLOAD-I386@@][b]@@DISTRIB-I386@@[/b][/url] : Linux/i386 Version [*] [url=@@URI-DOWNLOAD-X86_64@@][b]@@DISTRIB-X86_64@@[/b][/url] : Linux/x86_64 Version [*] [url=@@URI-DOWNLOAD-MAC@@][b]@@DISTRIB-MAC@@[/b][/url] : Mac OS Universal Binaries (ppc, i386 und x86-64) [*] [url=@@URI-DOWNLOAD-CYGWIN@@][b]@@DISTRIB-CYGWIN@@[/b][/url] : Cygwin (Windows) Version [/list] Weitere Versionen sind unter [url=@@URI-HOME@@download.html][b]@@URI-HOME@@download.html[/b][/url] verfgbar. ~ Highlights [size=12][color=#0000c0][b]Hhepunkte dieser Version:[/b][/color][/size] [list] [*] [color=#800000]Bitte testet es![/color] [/list] [size=12][color=#0000c0][b]Letzte nderungen:[/b][/color][/size] [code] @@MODULE(last-history.txt)@@ [/code] Die Quellen stehen unter der GPL2 Lizenz und knnen entweder direkt aus dem [url=@@URI-REPOS@@][b]SVN repository[/b][/url] exportiert oder mit einem [url=@@URI-VIEWVC@@][b]Browser besurft werden[/b][/url]. Diese beiden Links zeigen auf den Beta-Zweig des SVN-Repositories. Unter [url=@@URI-HOME@@][b]@@URI-HOME@@[/b][/url] gibt es weitere Informationen. wit-2.31a/templates/wii-homebrew-announce.forum0000644000175000017500000000553012655737307021465 0ustar michaelmichael [img]http://wit.wiimm.de/images/wiimms-tools.png[/img] [size=18][color=#0000FF][b]@@TOOLSET-SHORT@@: @@TOOLSET-LONG@@ v@@VERSION@@ - @@@@-@@-@@[/b][/color][/size] [size=15][color=#800000][b]Ein Kommandozeilen-Toolkit fr ISO und WBFS Dateien.[/b][/color][/size] Dieses ist das Ankndigungsthema fr [url=@@URI-HOME@@][b]@@TOOLSET-SHORT@@[/b][/url] (@@TOOLSET-LONG@@). [url=@@URI-HOME@@]@@URI-HOME@@[/url] gibt es eine ausfhrlichere bersicht ber die Mglichkeiten, allerdings in englisch. [b]wit+wwt[/b] sind [url=@@URI-HOME@@info/command-line.html]Kommandozeilen-Tools[/url]. Das bedeutet, dass man zur Ausfhrung vorher ein Kommandofenster aufmacht um dann die Kommandos einzugeben. Dieses hat aber den Vorteil, dass man sich Batch-Dateien fr immer wiederkehrende Aufgaben schreiben kann. Zum Ansprechen der Laufwerke (WBFS Platten) muss das Kommandofenster im Admin-Modus arbeiten. Die Syntax der Kommandos ist stark an Unix angelehnt, da die Programme auch unter Linux entwickelt werden. [color=#0000c0][size=12][b]Eigenschaften:[/b][/size] (Die Links zeigen auf die englischsprachige Website)[/color] @@MODULE(features-de.forum)@@ [size=12][color=#0000c0][b]Download der aktuellen Version:[/b][/color][/size] ~[size=12][color=#0000c0][b]Download[/b][/color] [color=#800000][b]der EXPERIMENTELLEN Version:[/b][/color][/size] [list] [*] [url=@@URI-DOWNLOAD-I386@@][b]@@DISTRIB-I386@@[/b][/url] : Linux/i386 Version [*] [url=@@URI-DOWNLOAD-X86_64@@][b]@@DISTRIB-X86_64@@[/b][/url] : Linux/x86_64 Version [*] [url=@@URI-DOWNLOAD-MAC@@][b]@@DISTRIB-MAC@@[/b][/url] : Mac OS Universal Binaries (ppc, i386 und x86-64) [*] [url=@@URI-DOWNLOAD-CYGWIN@@][b]@@DISTRIB-CYGWIN@@[/b][/url] : Cygwin (Windows) Version [/list] Weitere Versionen sind unter [url=@@URI-HOME@@download.html][b]@@URI-HOME@@download.html[/b][/url] verfgbar. [size=12][color=#0000c0][b]Es existieren auch mehrere graphische Oberflchen (GUI) zur Bedienung von WIT. Die beiden wichtigsten sind:[/b][/color][/size] [list] [*] [url=@@URI-QTWITGUI@@][b]QtWitGui[/b], Bearbeitung einzelner Wii ISO discs.[/url] Dieses QT basierte GUI bietet Dinge rund um die Bearbeitung (Kopieren, modifizieren) von einzelnen WIi ISO discs. [*] [url=@@URI-WIIBAFU@@][b]Wii Backup Fusion[/b], ein WBFS- und ISO-Manager.[/url] [i]WiiBaFu[/i] ist ein ausgereiftes GUI, welches auf QT basiert. [*] [url=@@URI-MACWITGUI@@][b]Witgui[/b] fr Mac.[/url] [i]Witgui[/i] ist eine graphische Oberflche fr die Mac-Version von [i]wit[/i]. [/list] [size=12][color=#0000c0][b]Letzte nderungen:[/b][/color][/size] [code] @@MODULE(last-history.txt)@@ [/code] Die Quellen stehen unter der GPL2 Lizenz und knnen entweder direkt aus dem [url=@@URI-REPOS@@][b]SVN Repository[/b][/url] exportiert oder mit einem [url=@@URI-VIEWVC@@][b]Browser besurft werden[/b][/url]. Unter [url=@@URI-HOME@@][b]@@URI-HOME@@[/b][/url] gibt es weitere Informationen. wit-2.31a/templates/DOCUMENTATION.txt0000644000175000017500000001043512655737307016763 0ustar michaelmichael @@MODULE(head.txt)@@ @@MODULE(content.txt)@@ ******************************************************************************* ******* Overview about this document ********* ******************************************************************************* Contents: Motivation Some special features WDF support ~ Feature requests ~ Known bugs TODO HISTORY ******************************************************************************* ******* Motivation ********* ******************************************************************************* The motives for writing a new tool are simple: 1.) I like to work with the linux command line. And the only WBFS tool I found is poor in viewing information and perhaps buggy. (I have destroyed the WBFS 2 times) 2.) I want to learn more about WBFS. wwt, the WBFS manager, in now complete. wit, the ISO manage. is still under development. Visit @@URI-HOME@@ for more information. ******************************************************************************* ******* Features ********* ******************************************************************************* @@MODULE(features.txt)@@ ******************************************************************************* ******* WDF support ******* ******************************************************************************* I have already implemented the WDF support in my tool 'WWT' and tested it with many games. In the tests I have converted games from ISO to WDF and back. I done this with the tools iso2wdf, wdf2iso (both discontinued) and wdf-cat and with WBFS import and export. It work well and have not found any errors. The advantages are: - WDF files are much shorter than ISO images. - WDF files needs less disk space than the sparsed ISO images. - WDF files can be access by random access. So WBFS manager can extend their code to read from and write to a WDF on the fly. WWT does this. - WDF is not a compression and works much faster than usal compressors. For a full WDF description see the file 'WDF.txt' or try the link: @@URI-FILE@@/WDF.txt The following tools support WDF: - Tool 'wdf-dump' dumps the data structure of a WDF file. - Tool 'wdf-cat' is a 'cat' like programm with special handling of WDF. - Tool 'wit' can converts from/into WDF files. - Tool 'wwt' can extract to or add from WDF files. I have tested the 3 tools 'iso2wdf', 'wdf2iso' (both discontinued) and 'wdf-cat' with more than 2 million files (mixed files including pictures and documents, but only 50 Wii ISO images) without any errors. This means that the 3 tools are stable and the usage is sure. For more details call the script './scripts/test-wdf-tools.sh' from the distribution without parameters. ~ ~******************************************************************************* ~******* Feature requests ******* ~******************************************************************************* ~ ~ - none :) ~ ~ ~******************************************************************************* ~******* Known bugs ******* ~******************************************************************************* ~ ~ - none :) ~ ******************************************************************************* ******* TODO ******* ******************************************************************************* - Think about the options --fast and --trunc: Are they really needed? ******************************************************************************* ******* HISTORY ******* ******************************************************************************* For the complete history see file 'HISTORY.txt'. The last changes: @@MODULE(last-history.txt)@@ ******************************************************************************* ******* END ******* ******************************************************************************* wit-2.31a/templates/gbatemp-update.forum0000644000175000017500000000465612655737307020172 0ustar michaelmichael [img]http://wit.wiimm.de/images/wiimms-tools.png[/img] [size="5"][color="#0000FF"][b]@@TOOLSET-SHORT@@: @@TOOLSET-LONG@@ v@@VERSION@@ - @@@@-@@-@@[/b][/color][/size] [size="3"][color="#800000"][b]A command line ISO+WBFS tool set for various os.[/b][/color][/size] [url=@@URI-HOME@@][b]@@TOOLSET-SHORT@@[/b][/url] (@@TOOLSET-LONG@@) is a set of [url=@@URI-HOME@@info/command-line.html]command line[/url] tools to manipulate Wii ISO images and WBFS containers. The two main tools are called [url=@@URI-HOME@@wit][b]@@WIT-SHORT@@[/b][/url] (@@WIT-LONG@@) and [url=@@URI-HOME@@wwt][b]@@WWT-SHORT@@[/b][/url] (@@WWT-LONG@@, the WBFS manager). [size="3"][color="#0000c0"][b]Feature overview:[/b][/color][/size] @@MODULE(features-en.forum)@@ [size="3"][color="#0000c0"][b]Download of the current version:[/b][/color][/size] ~[size="3"][color="#0000c0"][b]Download[/b][/color] [color="#800000"][b]this EXPERIMENTAL release:[/b][/color][/size] [list] [*] [url=@@URI-DOWNLOAD-I386@@][b]@@DISTRIB-I386@@[/b][/url] : Linux/i386 version [*] [url=@@URI-DOWNLOAD-X86_64@@][b]@@DISTRIB-X86_64@@[/b][/url] : Linux/x86_64 version [*] [url=@@URI-DOWNLOAD-MAC@@][b]@@DISTRIB-MAC@@[/b][/url] : Mac OS universal binaries (ppc, i386 and x86-64) [*] [url=@@URI-DOWNLOAD-CYGWIN@@][b]@@DISTRIB-CYGWIN@@[/b][/url] : Cygwin (Windows) version [*] Other releases are available at [url=@@URI-HOME@@download.html][b]@@URI-HOME@@download.html[/b][/url]. [/list] [size="3"][color="#0000c0"][b]There are also some GUI available:[/b][/color][/size] [list] [*] [url=@@URI-QTWITGUI@@][b]QtWitGui[/b], manipulate and convert single ISO images.[/url] This QT based GUI focuses on manipulating single ISO images. It can do much more. [*] [url=@@URI-WIIBAFU@@][b]Wii Backup Fusion[/b], a WBFS and ISO manager.[/url] This QT based GUI is a complete WBFS manager and ISO tool. [*] [url=@@URI-MACWITGUI@@][b]Witgui[/b] for Mac.[/url] This is a graphical user interface for wit available for Mac OS X. [/list] [size="3"][color="#0000c0"][b]Highlights of this release:[/b][/color][/size] [list] [*] [color=#ffffff].[/color] [/list] [size="3"][color="#0000c0"][b]Change log:[/b][/color][/size] [code] @@MODULE(last-history.txt)@@ [/code] The source is published under the license of GPL2. Checkout the sources directly from the [url=@@URI-REPOS@@][b]SVN repository[/b][/url] or [url=@@URI-VIEWVC@@][b]browse the source[/b][/url]. Visit [url=@@URI-HOME@@][b]@@URI-HOME@@[/b][/url] for more information. wit-2.31a/templates/forum.edit-list0000644000175000017500000000001212655737306017146 0ustar michaelmichael*.forum ; wit-2.31a/templates/FAQ.txt0000644000175000017500000001453512655737306015365 0ustar michaelmichael @@MODULE(head.txt)@@ ******************************************************************************* ******* Contents ********* ******************************************************************************* * Tools * General Informations * Formatting a drive ******************************************************************************* ******* Tools ********* ******************************************************************************* * What is "WIT"? 'WWT' is an abbreviation of "Wiimms ISO Tools". It is a collection of tools to manipulate and convert ISO and WBFS files. * What is "wit"? 'wit' is an abbreviation of "Wiimms ISO Tool". 'wit' was the main tool for manipulating and converting ISO images. The general syntax is: wit