wit-3.01a/0000755000175000017500000000000013363642500012171 5ustar michaelmichaelwit-3.01a/gen-text-file.sh0000755000175000017500000000237713363642463015221 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-3.01a/gen-template.sh0000644000175000017500000000175313363642463015125 0ustar michaelmichael#!/usr/bin/env bash #set -v rm -f templates/*.bak templates/*.tmp mkdir -p doc list="$*" [[ $list = "" ]] && list="$(/bin/ls templates/)" awkprog=' /@@MODULE\(.*\)@@/ { gsub(/@@MODULE\(/,"templates/module/"); gsub(/\)@@/,""); system("cat " $0); next } /@@EXEC\(.*\)@@/ { gsub(/@@EXEC\(/,""); gsub(/\)@@\r?/,""); system($0); #print; next } { print $0 } ' CRLF=0 uname -s | grep -q CYGWIN && CRLF=1 for fname in $list do src="setup/$fname" [[ -f $src ]] || src="templates/$fname" if [[ -f "$src" ]] then dest="doc/$fname" ext="${dest##*.}" #[[ $ext == edit-list ]] && continue [[ $ext = "sh" || $ext = "bat" || $ext = "h" ]] && dest="$fname" [[ $fname = "INSTALL.txt" ]] && dest="$fname" #echo "|$src|$dest|" if ((CRLF)) && [[ $ext = bat || $ext = txt ]] then awk "$awkprog" $src | sed -f templates.sed | sed 's/$/\r/' >$dest else awk "$awkprog" $src | sed -f templates.sed >$dest fi [[ $ext = "sh" ]] && chmod a+x "$fname" fi done exit 0 wit-3.01a/system.c0000644000175000017500000000526313363642463013677 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 "dclib/dclib-system.h" int main ( int argc, char ** argv ) { dclibPrintSystem(stdout); return 0; } wit-3.01a/print-disc-blocks.sh0000755000175000017500000000136013363642463016067 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-3.01a/gpl-2.0.txt0000644000175000017500000004310313363642463014022 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-3.01a/setup.sh0000644000175000017500000000505313363642463013700 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-3.01a/test-libwbfs/0000755000175000017500000000000013363642463014606 5ustar michaelmichaelwit-3.01a/test-libwbfs/readme.txt0000644000175000017500000000020513363642463016601 0ustar michaelmichaelThis directory is only for test purposes. 'test-libwbfs' should confirm that libwbfs can be used independently of the WIT project. wit-3.01a/test-libwbfs/libwbfs_os.h0000644000175000017500000000003613363642463017107 0ustar michaelmichael#include "libwbfs_os.posix.h" wit-3.01a/test-libwbfs/Makefile0000644000175000017500000000562313363642463016254 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-3.01a/test-libwbfs/test-libwbfs.c0000644000175000017500000000340513363642463017361 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-3.01a/makefiles-local/0000755000175000017500000000000013363642463015231 5ustar michaelmichaelwit-3.01a/makefiles-local/Makefile.local.x86_640000644000175000017500000000036013363642463020716 0ustar michaelmichael # optimize linux x86 (64-bit) # to include this file # => copy Makefile.local to main directory and remove appropriate comments #------------------------------------------------------------------------------ CFLAGS += -march=x86-64 wit-3.01a/makefiles-local/Makefile.local.mac0000644000175000017500000000546513363642463020533 0ustar michaelmichael # optimize mac binaries and/or build universal binaries #----------------------------------------------------------------------------- SDKROOT = $(shell ls -d /Developer/SDKs/MacOSX* | tail -n1 ) SDKVERSION = $(shell echo "$(SDKROOT)" | sed -E 's/.*MacOSX//; s/([0-9]*\.[0-9*]).*/\1/g' ) CC = "gcc-4.0" CFLAGS += -mmacosx-version-min=${SDKVERSION} -isysroot ${SDKROOT} LDFLAGS += -mmacosx-version-min=${SDKVERSION} -isysroot ${SDKROOT} #----------------------------------------------------------------------------- .PHONY : mac-distrib mac-distrib: mac3 doc $(INSTALL_SCRIPTS) gen-mac-distrib .PHONY : mac2 mac2: mac-i386 mac-x86_64 @echo @echo "----- building universal binaries -----" @for i in $(MAIN_TOOLS); do \ lipo -create bin/i386/$${i} bin/x86_64/$${i} -output $${i}; \ ln -f $${i} bin/$${i}; \ done; @for i in $(WDF_LINKS); do \ ln -f wdf $${i}; \ ln -f wdf bin/$${i}; \ done; @rm -rf bin/i386 bin/x86_64 @echo "done" .PHONY : mac3 mac3: mac-i386 mac-x86_64 mac-ppc @echo @echo "----- building universal binaries -----" @for i in $(MAIN_TOOLS); do \ lipo -create bin/ppc/$${i} bin/i386/$${i} bin/x86_64/$${i} -output $${i}; \ ln -f $${i} bin/$${i}; \ done; @for i in $(WDF_LINKS); do \ ln -f wdf $${i}; \ ln -f wdf bin/$${i}; \ done; @rm -rf bin/ppc bin/i386 bin/x86_64 @echo "done" #----------------------------------------------------------------------------- .PHONY : mac-ppc mac-ppc: @echo @echo "----- building PowerPC -----" @XFLAGS="-arch ppc -mcpu=powerpc" make clean all @mkdir -p bin/ppc @mv $(MAIN_TOOLS) bin/ppc #----------------------------------------------------------------------------- .PHONY : mac-i386 mac-i386: @echo @echo "----- building i386 -----" @XFLAGS="-arch i386 -mfpmath=sse -march=prescott" make clean all @mkdir -p bin/i386 @mv $(MAIN_TOOLS) bin/i386 #----------------------------------------------------------------------------- .PHONY : mac-x86_64 mac-x86_64: @echo @echo "----- building X86-64 -----" @XFLAGS="-arch x86_64 -mfpmath=sse" make clean all @mkdir -p bin/x86_64 @mv $(MAIN_TOOLS) bin/x86_64 #----------------------------------------------------------------------------- .PHONY : gen-mac-distrib gen-mac-distrib: @printf "$(LOGFORMAT)" create "$(DISTRIB_PATH)" "" @rm -rf $(DISTRIB_PATH) @mkdir -p $(DISTRIB_PATH)/bin $(DISTRIB_PATH)/scripts $(DISTRIB_PATH)/share $(DISTRIB_PATH)/doc @cp -p $(DISTRIB_FILES) $(DISTRIB_PATH) @ln -f $(MAIN_TOOLS) $(WDF_LINKS) $(DISTRIB_PATH)/bin @cp -p share/*.txt $(DISTRIB_PATH)/share @cp -p $(DOC_FILES) $(DISTRIB_PATH)/doc @cp -p $(SCRIPTS)/*.{sh,txt} $(DISTRIB_PATH)/scripts @chmod -R 755 $(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) wit-3.01a/makefiles-local/Makefile.local.i3860000644000175000017500000000041013363642463020445 0ustar michaelmichael # optimize linux i86 (32-bit) # to include this file # => copy Makefile.local to main directory and remove appropriate comments #------------------------------------------------------------------------------ #CFLAGS += -mtune=generic CFLAGS += -march=i686 wit-3.01a/makefiles-local/Makefile.local0000644000175000017500000000070413363642463017763 0ustar michaelmichael # this is a template for ../Makefile.local # copy this file to the main directory # and remove appropriate comments (the leading '# ' of the include lines) #------------------------------------------------------------------------------ # Linux, 32 bit, i368 # -include makefiles-local/Makefile.local.i386 # Linux, 64 bit, x86 # -include makefiles-local/Makefile.local.x86_64 # Mac, universal binary # -include makefiles-local/Makefile.local.mac wit-3.01a/info/0000755000175000017500000000000013363642463013134 5ustar michaelmichaelwit-3.01a/info/mac-osx.predef0000644000175000017500000000732413363642463015700 0ustar michaelmichael#define OBJC_NEW_PROPERTIES 1 #define _LP64 1 #define __APPLE_CC__ 5646 #define __APPLE__ 1 #define __BLOCKS__ 1 #define __CHAR_BIT__ 8 #define __CONSTANT_CFSTRINGS__ 1 #define __DBL_DENORM_MIN__ 4.9406564584124654e-324 #define __DBL_DIG__ 15 #define __DBL_EPSILON__ 2.2204460492503131e-16 #define __DBL_HAS_DENORM__ 1 #define __DBL_HAS_INFINITY__ 1 #define __DBL_HAS_QUIET_NAN__ 1 #define __DBL_MANT_DIG__ 53 #define __DBL_MAX_10_EXP__ 308 #define __DBL_MAX_EXP__ 1024 #define __DBL_MAX__ 1.7976931348623157e+308 #define __DBL_MIN_10_EXP__ (-307) #define __DBL_MIN_EXP__ (-1021) #define __DBL_MIN__ 2.2250738585072014e-308 #define __DEC128_DEN__ 0.000000000000000000000000000000001E-6143DL #define __DEC128_EPSILON__ 1E-33DL #define __DEC128_MANT_DIG__ 34 #define __DEC128_MAX_EXP__ 6144 #define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL #define __DEC128_MIN_EXP__ (-6143) #define __DEC128_MIN__ 1E-6143DL #define __DEC32_DEN__ 0.000001E-95DF #define __DEC32_EPSILON__ 1E-6DF #define __DEC32_MANT_DIG__ 7 #define __DEC32_MAX_EXP__ 96 #define __DEC32_MAX__ 9.999999E96DF #define __DEC32_MIN_EXP__ (-95) #define __DEC32_MIN__ 1E-95DF #define __DEC64_DEN__ 0.000000000000001E-383DD #define __DEC64_EPSILON__ 1E-15DD #define __DEC64_MANT_DIG__ 16 #define __DEC64_MAX_EXP__ 384 #define __DEC64_MAX__ 9.999999999999999E384DD #define __DEC64_MIN_EXP__ (-383) #define __DEC64_MIN__ 1E-383DD #define __DECIMAL_DIG__ 21 #define __DEC_EVAL_METHOD__ 2 #define __DYNAMIC__ 1 #define __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ 1060 #define __FINITE_MATH_ONLY__ 0 #define __FLT_DENORM_MIN__ 1.40129846e-45F #define __FLT_DIG__ 6 #define __FLT_EPSILON__ 1.19209290e-7F #define __FLT_EVAL_METHOD__ 0 #define __FLT_HAS_DENORM__ 1 #define __FLT_HAS_INFINITY__ 1 #define __FLT_HAS_QUIET_NAN__ 1 #define __FLT_MANT_DIG__ 24 #define __FLT_MAX_10_EXP__ 38 #define __FLT_MAX_EXP__ 128 #define __FLT_MAX__ 3.40282347e+38F #define __FLT_MIN_10_EXP__ (-37) #define __FLT_MIN_EXP__ (-125) #define __FLT_MIN__ 1.17549435e-38F #define __FLT_RADIX__ 2 #define __GNUC_GNU_INLINE__ 1 #define __GNUC_MINOR__ 2 #define __GNUC_PATCHLEVEL__ 1 #define __GNUC__ 4 #define __GXX_ABI_VERSION 1002 #define __INTMAX_MAX__ 9223372036854775807L #define __INTMAX_TYPE__ long int #define __INT_MAX__ 2147483647 #define __LDBL_DENORM_MIN__ 3.64519953188247460253e-4951L #define __LDBL_DIG__ 18 #define __LDBL_EPSILON__ 1.08420217248550443401e-19L #define __LDBL_HAS_DENORM__ 1 #define __LDBL_HAS_INFINITY__ 1 #define __LDBL_HAS_QUIET_NAN__ 1 #define __LDBL_MANT_DIG__ 64 #define __LDBL_MAX_10_EXP__ 4932 #define __LDBL_MAX_EXP__ 16384 #define __LDBL_MAX__ 1.18973149535723176502e+4932L #define __LDBL_MIN_10_EXP__ (-4931) #define __LDBL_MIN_EXP__ (-16381) #define __LDBL_MIN__ 3.36210314311209350626e-4932L #define __LITTLE_ENDIAN__ 1 #define __LONG_LONG_MAX__ 9223372036854775807LL #define __LONG_MAX__ 9223372036854775807L #define __LP64__ 1 #define __MACH__ 1 #define __MMX__ 1 #define __NO_INLINE__ 1 #define __PIC__ 2 #define __PTRDIFF_TYPE__ long int #define __REGISTER_PREFIX__ #define __SCHAR_MAX__ 127 #define __SHRT_MAX__ 32767 #define __SIZE_TYPE__ long unsigned int #define __SSE2_MATH__ 1 #define __SSE2__ 1 #define __SSE3__ 1 #define __SSE_MATH__ 1 #define __SSE__ 1 #define __SSP__ 1 #define __STDC_HOSTED__ 1 #define __STDC__ 1 #define __UINTMAX_TYPE__ long unsigned int #define __USER_LABEL_PREFIX__ _ #define __VERSION__ "4.2.1 (Apple Inc. build 5646)" #define __WCHAR_MAX__ 2147483647 #define __WCHAR_TYPE__ int #define __WINT_TYPE__ int #define __amd64 1 #define __amd64__ 1 #define __block __attribute__((__blocks__(byref))) #define __k8 1 #define __k8__ 1 #define __pic__ 2 #define __strong #define __tune_core2__ 1 #define __weak __attribute__((objc_gc(weak))) #define __x86_64 1 #define __x86_64__ 1 wit-3.01a/info/linux-i386.predef0000644000175000017500000000631013363642463016151 0ustar michaelmichael#define __CHAR_BIT__ 8 #define __DBL_DENORM_MIN__ 4.9406564584124654e-324 #define __DBL_DIG__ 15 #define __DBL_EPSILON__ 2.2204460492503131e-16 #define __DBL_HAS_DENORM__ 1 #define __DBL_HAS_INFINITY__ 1 #define __DBL_HAS_QUIET_NAN__ 1 #define __DBL_MANT_DIG__ 53 #define __DBL_MAX_10_EXP__ 308 #define __DBL_MAX_EXP__ 1024 #define __DBL_MAX__ 1.7976931348623157e+308 #define __DBL_MIN_10_EXP__ (-307) #define __DBL_MIN_EXP__ (-1021) #define __DBL_MIN__ 2.2250738585072014e-308 #define __DEC128_DEN__ 0.000000000000000000000000000000001E-6143DL #define __DEC128_EPSILON__ 1E-33DL #define __DEC128_MANT_DIG__ 34 #define __DEC128_MAX_EXP__ 6144 #define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL #define __DEC128_MIN_EXP__ (-6143) #define __DEC128_MIN__ 1E-6143DL #define __DEC32_DEN__ 0.000001E-95DF #define __DEC32_EPSILON__ 1E-6DF #define __DEC32_MANT_DIG__ 7 #define __DEC32_MAX_EXP__ 96 #define __DEC32_MAX__ 9.999999E96DF #define __DEC32_MIN_EXP__ (-95) #define __DEC32_MIN__ 1E-95DF #define __DEC64_DEN__ 0.000000000000001E-383DD #define __DEC64_EPSILON__ 1E-15DD #define __DEC64_MANT_DIG__ 16 #define __DEC64_MAX_EXP__ 384 #define __DEC64_MAX__ 9.999999999999999E384DD #define __DEC64_MIN_EXP__ (-383) #define __DEC64_MIN__ 1E-383DD #define __DECIMAL_DIG__ 21 #define __DEC_EVAL_METHOD__ 2 #define __ELF__ 1 #define __FINITE_MATH_ONLY__ 0 #define __FLT_DENORM_MIN__ 1.40129846e-45F #define __FLT_DIG__ 6 #define __FLT_EPSILON__ 1.19209290e-7F #define __FLT_EVAL_METHOD__ 2 #define __FLT_HAS_DENORM__ 1 #define __FLT_HAS_INFINITY__ 1 #define __FLT_HAS_QUIET_NAN__ 1 #define __FLT_MANT_DIG__ 24 #define __FLT_MAX_10_EXP__ 38 #define __FLT_MAX_EXP__ 128 #define __FLT_MAX__ 3.40282347e+38F #define __FLT_MIN_10_EXP__ (-37) #define __FLT_MIN_EXP__ (-125) #define __FLT_MIN__ 1.17549435e-38F #define __FLT_RADIX__ 2 #define __GNUC_GNU_INLINE__ 1 #define __GNUC_MINOR__ 2 #define __GNUC_PATCHLEVEL__ 1 #define __GNUC__ 4 #define __GXX_ABI_VERSION 1002 #define __INTMAX_MAX__ 9223372036854775807LL #define __INTMAX_TYPE__ long long int #define __INT_MAX__ 2147483647 #define __LDBL_DENORM_MIN__ 3.64519953188247460253e-4951L #define __LDBL_DIG__ 18 #define __LDBL_EPSILON__ 1.08420217248550443401e-19L #define __LDBL_HAS_DENORM__ 1 #define __LDBL_HAS_INFINITY__ 1 #define __LDBL_HAS_QUIET_NAN__ 1 #define __LDBL_MANT_DIG__ 64 #define __LDBL_MAX_10_EXP__ 4932 #define __LDBL_MAX_EXP__ 16384 #define __LDBL_MAX__ 1.18973149535723176502e+4932L #define __LDBL_MIN_10_EXP__ (-4931) #define __LDBL_MIN_EXP__ (-16381) #define __LDBL_MIN__ 3.36210314311209350626e-4932L #define __LONG_LONG_MAX__ 9223372036854775807LL #define __LONG_MAX__ 2147483647L #define __NO_INLINE__ 1 #define __PTRDIFF_TYPE__ int #define __REGISTER_PREFIX__ #define __SCHAR_MAX__ 127 #define __SHRT_MAX__ 32767 #define __SIZE_TYPE__ unsigned int #define __STDC_HOSTED__ 1 #define __STDC__ 1 #define __UINTMAX_TYPE__ long long unsigned int #define __USER_LABEL_PREFIX__ #define __VERSION__ "4.2.1 (SUSE Linux)" #define __WCHAR_MAX__ 2147483647 #define __WCHAR_TYPE__ long int #define __WINT_TYPE__ unsigned int #define __gnu_linux__ 1 #define __i386 1 #define __i386__ 1 #define __linux 1 #define __linux__ 1 #define __unix 1 #define __unix__ 1 #define i386 1 #define linux 1 #define unix 1 wit-3.01a/info/cygwin.predef0000644000175000017500000000505713363642463015632 0ustar michaelmichael#define _X86_ 1 #define __CHAR_BIT__ 8 #define __CYGWIN32__ 1 #define __CYGWIN__ 1 #define __DBL_DENORM_MIN__ 4.9406564584124654e-324 #define __DBL_DIG__ 15 #define __DBL_EPSILON__ 2.2204460492503131e-16 #define __DBL_HAS_INFINITY__ 1 #define __DBL_HAS_QUIET_NAN__ 1 #define __DBL_MANT_DIG__ 53 #define __DBL_MAX_10_EXP__ 308 #define __DBL_MAX_EXP__ 1024 #define __DBL_MAX__ 1.7976931348623157e+308 #define __DBL_MIN_10_EXP__ (-307) #define __DBL_MIN_EXP__ (-1021) #define __DBL_MIN__ 2.2250738585072014e-308 #define __DECIMAL_DIG__ 21 #define __FINITE_MATH_ONLY__ 0 #define __FLT_DENORM_MIN__ 1.40129846e-45F #define __FLT_DIG__ 6 #define __FLT_EPSILON__ 1.19209290e-7F #define __FLT_EVAL_METHOD__ 2 #define __FLT_HAS_INFINITY__ 1 #define __FLT_HAS_QUIET_NAN__ 1 #define __FLT_MANT_DIG__ 24 #define __FLT_MAX_10_EXP__ 38 #define __FLT_MAX_EXP__ 128 #define __FLT_MAX__ 3.40282347e+38F #define __FLT_MIN_10_EXP__ (-37) #define __FLT_MIN_EXP__ (-125) #define __FLT_MIN__ 1.17549435e-38F #define __FLT_RADIX__ 2 #define __GNUC_MINOR__ 4 #define __GNUC_PATCHLEVEL__ 4 #define __GNUC__ 3 #define __GXX_ABI_VERSION 1002 #define __INT_MAX__ 2147483647 #define __LDBL_DENORM_MIN__ 3.64519953188247460253e-4951L #define __LDBL_DIG__ 18 #define __LDBL_EPSILON__ 1.08420217248550443401e-19L #define __LDBL_HAS_INFINITY__ 1 #define __LDBL_HAS_QUIET_NAN__ 1 #define __LDBL_MANT_DIG__ 64 #define __LDBL_MAX_10_EXP__ 4932 #define __LDBL_MAX_EXP__ 16384 #define __LDBL_MAX__ 1.18973149535723176502e+4932L #define __LDBL_MIN_10_EXP__ (-4931) #define __LDBL_MIN_EXP__ (-16381) #define __LDBL_MIN__ 3.36210314311209350626e-4932L #define __LONG_LONG_MAX__ 9223372036854775807LL #define __LONG_MAX__ 2147483647L #define __NO_INLINE__ 1 #define __PTRDIFF_TYPE__ int #define __REGISTER_PREFIX__ #define __SCHAR_MAX__ 127 #define __SHRT_MAX__ 32767 #define __SIZE_TYPE__ unsigned int #define __STDC_HOSTED__ 1 #define __USER_LABEL_PREFIX__ _ #define __USING_SJLJ_EXCEPTIONS__ 1 #define __VERSION__ "3.4.4 (cygming special, gdc 0.12, using dmd 0.125)" #define __WCHAR_MAX__ 65535U #define __WCHAR_TYPE__ short unsigned int #define __WINT_TYPE__ unsigned int #define __cdecl __attribute__((__cdecl__)) #define __declspec(x) __attribute__((x)) #define __fastcall __attribute__((__fastcall__)) #define __i386 1 #define __i386__ 1 #define __stdcall __attribute__((__stdcall__)) #define __tune_i686__ 1 #define __tune_pentiumpro__ 1 #define __unix 1 #define __unix__ 1 #define _cdecl __attribute__((__cdecl__)) #define _fastcall __attribute__((__fastcall__)) #define _stdcall __attribute__((__stdcall__)) #define i386 1 #define unix 1 wit-3.01a/scripts/0000755000175000017500000000000013363642463013670 5ustar michaelmichaelwit-3.01a/scripts/time-test.sh0000644000175000017500000001060613363642463016142 0ustar michaelmichael#!/usr/bin/env bash myname="${0##*/}" output=time-test.log if [[ $# == 0 ]] then cat <<- ---EOT--- $myname : Test adding and extracting times of tools 'wbfs' and 'wwt' This script expect as parameters names of ISO files. These files are subject of timing tests with a temporary WBFS file. The WDF test does the following: 1.) Adding and extracting the ISO with WBFS. 2.) Adding and extracting the ISO with WWT. 3.) Adding and extracting a WDF with WWT. 4.) Extracting an ISO and a WDF with WWT --fast. The results (time in milliseconds) are written to stdout and *appended* to the end of the file '$output'. The temporary files are written to a temporary subdirectory of the current working directory (hoping that here is enough space). The directory will be is deleted at the end. The signals INT, TERM and HUP are handled. ---EOT--- echo "usage: $myname iso_file" >&2 echo exit 1 fi #------------------------------------------------------------------------------ err= for tool in wbfs wwt do which $tool >/dev/null 2>&1 || err="$err $tool" done if [[ $err != "" ]] then echo "$myname: missing tools in PATH:$err" >&2 exit 2 fi #------------------------------------------------------------------------------ let BASE_SEC=$(date +%s) function get-msec() { echo $(($(date "+(%s-BASE_SEC)*1000+10#%N/1000000"))) } #------------------------------------------------------------------------------ function f_abort() { { msg="### ${myname} CANCELED ###" sep="############################" sep="$sep$sep$sep$sep" sep="${sep:1:${#msg}}" echo "" echo "$sep" echo "$msg" echo "$sep" echo "" echo "remove tempdir: $tempdir" rm -rf "$tempdir" echo "" } >&2 exit 2 } #------------------------------------------------------------------------------ # setup tempdir= trap f_abort INT TERM HUP tempdir="$(mktemp -d ./.${myname}.tmp.XXXXXX)" || exit 1 wbfs_file=a.wbfs wbfs="$tempdir/$wbfs_file" #------------------------------------------------------------------------------ # tests cat <<- ---EOT--- | tee -a $output WWT WWT WWT WWT WWT WWT WBFS WBFS add ex ex -F add ex ex -F add ex ISO ISO ISO WDF WDF WDF file ---------------------------------------------------------------------------------------- ---EOT--- while (($#)) do file="$1" id6="$(dd if="$file" bs=1 count=6)" shift echo -e "\n---------- WBFS add ----------\n" wwt init "$wbfs" -f -s10 sleep 5 start=$(get-msec) wbfs -p "$wbfs" add $file let t_wb_ad=$(get-msec)-start echo -e "\n---------- WBFS extract ----------\n" sleep 5 start=$(get-msec) ( cd "$tempdir"; wbfs -p "$wbfs_file" extract $id6) let t_wb_ex=$(get-msec)-start rm -f "$tempdir"/*.iso echo -e "\n---------- WWT add iso ----------\n" wwt init "$wbfs" -f -s10 sleep 5 start=$(get-msec) wwt -p "$wbfs" add "$file" let t_wwt_ad_iso=$(get-msec)-start echo -e "\n---------- WWT ectract iso ----------\n" sleep 5 start=$(get-msec) wwt -p "$wbfs" ex -d "$tempdir" $id6 -I let t_wwt_ex_iso=$(get-msec)-start rm -f "$tempdir"/*.iso echo -e "\n---------- WWT ectract iso --fast ----------\n" sleep 5 start=$(get-msec) wwt -p "$wbfs" ex -d "$tempdir" $id6 -I --fast let t_wwt_ex_iso_fast=$(get-msec)-start rm -f "$tempdir"/*.iso echo -e "\n---------- WWT ectract wdf --fast ----------\n" sleep 5 start=$(get-msec) wwt -p "$wbfs" ex -d "$tempdir" $id6 -W --fast let t_wwt_ex_wdf_fast=$(get-msec)-start rm -f "$tempdir"/*.wdf echo -e "\n---------- WWT ectract wdf ----------\n" sleep 5 start=$(get-msec) wwt -p "$wbfs" ex -d "$tempdir" $id6=a.wdf -W let t_wwt_ex_wdf=$(get-msec)-start echo -e "\n---------- WWT add wdf ----------\n" wwt init "$wbfs" -f -s10 sleep 5 start=$(get-msec) wwt -p "$wbfs" add "$tempdir/a.wdf" let t_wwt_ad_wdf=$(get-msec)-start rm -f "$tempdir"/*.wdf echo -e "\n---------- output ----------\n" printf "%6d\t%6d\t%6d\t%6d\t%6d\t%6d\t%6d\t%6d\t%s\n" \ $t_wb_ad $t_wb_ex \ $t_wwt_ad_iso $t_wwt_ex_iso $t_wwt_ex_iso_fast \ $t_wwt_ad_wdf $t_wwt_ex_wdf $t_wwt_ex_wdf_fast \ "$file" | tee -a $output done #------------------------------------------------------------------------------ rm -rf "$tempdir" exit 0 wit-3.01a/scripts/test-wwt+wit.sh0000755000175000017500000003324013363642463016626 0ustar michaelmichael#!/usr/bin/env bash # (c) Wiimm, 2017-01-04 myname="${0##*/}" base=wwt+wit log=$base.log err=$base.err export LC_ALL=C if [[ $# == 0 ]] then cat <<- ---EOT--- This script expect as parameters names of ISO files. ISO files are PLAIN, CISO, WBFS, WDF, WIA or GCZ. Each source file is subject of this test suite. Tests: * wwt ADD and EXTRACT - WBFS-files with different sector sizes: 512, 1024, 2048, 4096 - ADD to and EXTRACT from PLAIN ISO, CISO, WDF, WIA, GCZ, WBFS - ADD from PIPE * wit COPY - convert to PLAIN ISO, CISO, WDF, WIA, GCZ, WBFS Usage: $myname [option]... iso_file... Options: --fast : Enter fast mode => do only WDF tests and skip verify+fst+pipe+edit tests --verify : enable verify tests (default) --no-verify : disable verify tests --fst : enable "EXTRACT FST" tests (default) --no-fst : disable "EXTRACT FST" tests --pipe : enable pipe tests --no-pipe : disable pipe tests (default) --edit : enable edit tests (default) --no-edit : disable edit tests --wia : enable WIA compression tests (default) --no-wia : disable WIA compression tests --gcz : enable GCZ compression tests (default) --no-gcz : disable GCZ compression tests --raw : enable raw mode --no-raw : disable raw mode (default) --test : enter command test mode --test-modes : test and print conversion modes ---EOT--- exit 1 fi # #------------------------------------------------------------------------------ # check existence of needed tools WWT=wwt WIT=wit WDF=wdf [[ -f ./wwt && -x ./wwt ]] && WWT=./wwt [[ -f ./wit && -x ./wit ]] && WIT=./wit [[ -f ./wdf && -x ./wdf ]] && WDF=./wdf errtool= for tool in $WWT $WIT $WDF diff cmp do which $tool >/dev/null 2>&1 || errtool="$errtool $tool" done if [[ $errtool != "" ]] then echo "$myname: missing tools in PATH:$errtool" >&2 exit 2 fi # #------------------------------------------------------------------------------ # timer function let BASE_SEC=$(date +%s) function get_msec() { echo $(($(date "+(%s-BASE_SEC)*1000+10#%N/1000000"))) } #----------------------------------- function print_timer() { # $1 = start time # $2 = end time # $3 = name if set local tim ms s m h let tim=$2-$1 let ms=tim%1000 let tim=tim/1000 let s=tim%60 let tim=tim/60 let m=tim%60 let h=tim/60 if ((h)) then printf "%u:%02u:%02u.%03u hms %s\n" $h $m $s $ms "$3" elif ((m)) then printf " %2u:%02u.%03u m:s %s\n" $m $s $ms "$3" else printf " %2u.%03u sec %s\n" $s $ms "$3" fi } #----------------------------------- function print_stat() { printf "%-26s : " "$(printf "$@")" } # #------------------------------------------------------------------------------ # setup function f_abort() { echo { msg="### ${myname} CANCELED ###" sep="############################" sep="$sep$sep$sep$sep" sep="${sep:1:${#msg}}" echo "" echo "$sep" echo "$msg" echo "$sep" echo "" echo "remove tempdir: $tempdir" rm -rf "$tempdir" sync echo "" } >&2 sleep 1 exit 2 } tempdir= trap f_abort INT TERM HUP tempdir="$(mktemp -d ./.$base.tmp.XXXXXX)" || exit 1 WBFS_FILE=a.wbfs WBFS="$tempdir/$WBFS_FILE" #WIALIST=$(echo $($WIT compr | sed 's/^/wia-/')) WIALIST=$($WIT compr | sed 's/^/wia-/') WDFLIST=$($WIT features wdf1 wdf2 | awk '/^+/ {print $2}' | tr 'A-Z\n' 'a-z ') MODELIST="iso $WDFLIST $WIALIST ciso gcz wbfs" BASEMODE="wdf1" FAST_MODELIST="$WDFLIST" FAST_BASEMODE="wdf1" NOVERIFY=0 NOFST=0 NOPIPE=1 NOEDIT=0 NOWIA=0 NOGCZ=0 RAW= IO= OPT_TEST=0 OPT_TEST_MODES=0 FST_OPT="--psel data,update,channel,ptab0" export WIT_OPT= export WWT_OPT= export WWT_WBFS= # error codes STAT_OK=0 STAT_TEST=1 STAT_NOISO=2 STAT_DIFF=3 ERROR=10 STAT_SUCCESS=$STAT_OK # #------------------------------------------------------------------------------ # test function function test_function() { # $1 = short name # $2 = info # $3... = command ref="$1" print_stat " > %s" "$2" shift 2 start=$(get_msec) #echo; echo "$@" ((OPT_TEST)) || "$@" || return $ERROR stop=$(get_msec) print_timer $start $stop return $STAT_OK } # #------------------------------------------------------------------------------ # test suite function test_suite() { # $1 = valid source rm -rf "$tempdir"/* mkdir -p "$tempdir" local src dest count hss ref="-" ft="$($WWT FILETYPE -H -l "$1" | awk '{print $1}')" || return $ERROR id6="$($WWT FILETYPE -H -l "$1" | awk '{print $2}')" || return $ERROR printf "\n** %s %s %s\n" "$ft" "$id6" "$1" [[ $id6 = "-" ]] && return $STAT_NOISO #----- verify source if ((!NOVERIFY)) then test_function "VERIFY" "wit VERIFY source" \ $WIT VERIFY -qq "$1" \ || return $ERROR fi #----- test WWT hss=512 rm -f "$WBFS" test_function "INIT-$hss" "wwt INIT wbfs hss=$hss" \ $WWT INIT -q --force --size=20g --hss=$hss "$WBFS" \ || return $ERROR test_function "ADD-src" "wwt ADD source" \ $WWT_ADD -p "$WBFS" "$1" \ || return $ERROR for xmode in $MODELIST do mode="${xmode%%-*}" #echo "|$mode|$xmode|" [[ $mode = wia ]] && continue [[ $mode = gcz ]] && ((NOGCZ)) && continue dest="$tempdir/image.$mode" test_function "EXT-$mode" "wwt EXTRACT to $mode" \ $WWT -qp "$WBFS" EXTRACT "$id6=$dest" --$mode \ || return $ERROR rm -f "$WBFS" test_function "INIT-$hss" "wwt INIT wbfs hss=$hss" \ $WWT INIT -q --force --size=20g --hss=$hss "$WBFS" \ || return $ERROR let hss*=2 test_function "ADD-$mode" "wwt ADD from $mode" \ $WWT_ADD -p "$WBFS" "$dest" \ || return $ERROR [[ $mode = $BASEMODE ]] || rm -f "$dest" done test_function "CMP" "wit CMP wbfs source" \ $WIT $RAW -ql CMP "$WBFS" "$1" \ || return $STAT_DIFF #----- test WIT copy count=0 src="$tempdir/image.$BASEMODE" for xmode in $MODELIST do mode="${xmode%%-*}" [[ $xmode = ${xmode/-} ]] && compr="" || compr="--compr ${xmode#*-}" [[ $mode = wia ]] && ((NOWIA)) && continue [[ $mode = gcz ]] && ((NOGCZ)) && continue [[ $mode = wbfs && $RAW != "" ]] && continue dest="$tempdir/copy.$xmode.$mode" test_function "COPY-$xmode" "wit COPY to $xmode" \ $WIT_CP "$src" "$dest" --$mode $compr \ || return $ERROR ((count++)) && rm -f "$src" src="$dest" done test_function "CMP" "wit CMP copied source" \ $WIT $RAW -ql CMP "$dest" "$1" \ || return $STAT_DIFF rm -f "$dest" #----- test WIT extract if ((!NOFST)) then src="$tempdir/image.$BASEMODE" dest="$tempdir/fst" test_function "EXTR-FST0" "wit EXTRACT source" \ $WIT_CP "$1" "$dest/0" --fst -F :wit $FST_OPT \ || return $ERROR test_function "EXTR-FST1" "wit EXTRACT copy" \ $WIT_CP "$src" "$dest/1" --fst -F :wit $FST_OPT \ || return $ERROR test_function "DIF-FST1" "DIFF fst/0 fst/1" \ diff -rq "$dest/0" "$dest/1" \ || return $STAT_DIFF rm -rf "$dest/0" test_function "GEN-ISO" "wit COMPOSE" \ $WIT_CP "$dest/1" -D "$dest/a.wdf" --wdf --region=file \ || return $ERROR hss=512 rm -f "$WBFS" test_function "INIT-$hss" "wwt INIT wbfs hss=$hss" \ $WWT INIT -q --force --size=20g --hss=$hss "$WBFS" \ || return $ERROR test_function "ADD-FST" "wwt ADD FST" \ $WWT_ADD -p "$WBFS" "$dest/1" --region=file \ || return $ERROR test_function "CMP" "wit CMP 2x composed" \ $WIT $RAW -ql CMP "$WBFS" "$dest/a.wdf" \ || return $STAT_DIFF test_function "EXTR-FST2" "wit EXTRACT" \ $WIT_CP "$dest/a.wdf" "$dest/2" --fst -F :wit $FST_OPT \ || return $ERROR #diff -rq "$dest/1" "$dest/2" ((OPT_TEST)) || find "$dest" -name tmd.bin -type f -exec rm {} \; ((OPT_TEST)) || find "$dest" -name ticket.bin -type f -exec rm {} \; find "$dest" -regextype posix-egrep \ -regex '.*(setup.(txt|sh|bat)|align-files.txt)' \ -type f -exec rm {} \; test_function "DIF-FST2" "DIFF fst/1 fst/2" \ diff -rq "$dest/1" "$dest/2" \ || return $STAT_DIFF rm -rf "$dest" fi #----- test WWT pipe if (( !NOPIPE && !OPT_TEST )) then hss=1024 rm -f "$WBFS" test_function "INIT-$hss" "wwt INIT wbfs hss=$hss" \ $WWT INIT -q --force --size=20g --hss=$hss "$WBFS" \ || return $ERROR ref="ADD pipe" if ! $WDF +cat "$tempdir/image.$BASEMODE" | test_function "ADD-pipe" "wwt ADD $BASEMODE from pipe" \ $WWT_ADD -p "$WBFS" - --psel=DATA then ref="NO-PIPE" return $STAT_SUCCESS fi test_function "CMP" "wit CMP wbfs source" \ $WIT $RAW -ql CMP "$WBFS" "$1" --psel=DATA \ || return $STAT_DIFF fi #----- test EDIT if (( !NOEDIT && !OPT_TEST )) then src="$tempdir/image.$BASEMODE" opt="--id KKK" test_function "PATCH-WBFS" "wit PATCH to WBFS" \ $WIT -ql $opt COPY "$src" "$tempdir/pat.wbfs" \ || return $STAT_DIFF test_function "PATCH-WBFS" "wit PATCH/ALIGN to WDF2" \ $WIT -ql $opt COPY --align-wdf 1m "$src" "$tempdir/pat.wdf2" \ || return $STAT_DIFF test_function "CMP-PATCH" "wit CMP patch" \ $WIT -ql CMP "$tempdir/pat.wbfs" "$tempdir/pat.wdf2" \ || return $STAT_DIFF #--- test_function "COPY-WDF2" "wit COPY to WDF2" \ $WIT -ql COPY "$src" "$tempdir/edit.wdf2" \ || return $STAT_DIFF test_function "EDIT-WDF2" "wit EDIT WDF2" \ $WIT -q EDIT "$tempdir/edit.wdf2" $opt \ || return $STAT_DIFF test_function "CMP-EDIT" "wit CMP EDIT" \ $WIT -ql CMP "$tempdir/pat.wdf2" "$tempdir/edit.wdf2" \ || return $STAT_DIFF test_function "WDF-CMP-EDIT" "wdf CMP EDIT" \ $WDF +cmp "$tempdir/pat.wdf2" "$tempdir/edit.wdf2" \ || return $STAT_DIFF fi #----- all tests done ref=- return $STAT_SUCCESS } # #------------------------------------------------------------------------------ # print header { sep="-----------------------------------" printf "\n\f\n%s%s\n\n" "$sep" "$sep" date '+%F %T' echo $WWT --version $WIT --version $WDF --version echo echo "PARAM: $*" echo } | tee -a $log $err # #------------------------------------------------------------------------------ # main loop opts=1 while (($#)) do src="$1" shift if [[ $src == --fast ]] then NOVERIFY=1 NOFST=1 NOPIPE=1 NOEDIT=1 MODELIST="$FAST_MODELIST" BASEMODE="$FAST_BASEMODE" ((opts++)) || printf "\n" printf "## --fast : check only %s, --no-fst --no-pipe --no-edit\n" "$MODELIST" continue fi if [[ $src == --verify ]] then NOVERIFY=1 ((opts++)) || printf "\n" printf "## --verify : verify tests enabled\n" continue fi if [[ $src == --no-verify || $src == --noverify ]] then NOVERIFY=1 ((opts++)) || printf "\n" printf "## --no-verify : verify tests disabled\n" continue fi if [[ $src == --fst ]] then NOFST=0 ((opts++)) || printf "\n" printf "## --fst : fst tests enabled\n" continue fi if [[ $src == --no-fst || $src == --nofst ]] then NOFST=1 ((opts++)) || printf "\n" printf "## --no-fst : fst tests diabled\n" continue fi if [[ $src == --pipe ]] then NOPIPE=0 ((opts++)) || printf "\n" printf "## --pipe : pipe tests enabled\n" continue fi if [[ $src == --no-pipe || $src == --nopipe ]] then NOPIPE=1 ((opts++)) || printf "\n" printf "## --no-pipe : pipe tests disabled\n" continue fi if [[ $src == --edit ]] then NOEDIT=0 ((opts++)) || printf "\n" printf "## --edit : edit tests enabled\n" continue fi if [[ $src == --no-edit || $src == --noedit ]] then NOEDIT=1 ((opts++)) || printf "\n" printf "## --no-edit : edit tests disabled\n" continue fi if [[ $src == --wia ]] then NOWIA=0 ((opts++)) || printf "\n" printf "## --wia : compress WIA tests enabled\n" continue fi if [[ $src == --no-wia ]] then NOWIA=1 ((opts++)) || printf "\n" printf "## ---no-wia : compress WIA tests disabled\n" continue fi if [[ $src == --gcz ]] then NOGCZ=0 ((opts++)) || printf "\n" printf "## --gcz : compress GCZ tests enabled\n" continue fi if [[ $src == --no-gcz ]] then NOGCZ=1 ((opts++)) || printf "\n" printf "## ---no-gcz : compress GCZ tests disabled\n" continue fi if [[ $src == --raw ]] then RAW=--raw ((opts++)) || printf "\n" printf "## --raw : raw mode enabled.\n" continue fi if [[ $src == --no-raw || $src == --noraw ]] then RAW= ((opts++)) || printf "\n" printf "## --no-raw : raw mode disabled.\n" continue fi if [[ $src == --test ]] then OPT_TEST=1 STAT_SUCCESS=$STAT_TEST ((opts++)) || printf "\n" printf "## --test : test mode enabled\n" continue fi if [[ $src == --test-modes || $src == --testmodes ]] then STAT_SUCCESS=$STAT_TEST ((opts++)) || printf "\n" printf "## --test-modes : list of modes:\n" for xmode in $MODELIST do [[ $xmode = ${xmode/.} ]] && compr="" || compr="--compr ${xmode#*.}" mode="${xmode%.*}" echo "# $mode $compr" done continue fi #---- hidden options if [[ $src == --io ]] then IO="--io $( echo "$1" | tr -cd 0-9 )" shift ((opts++)) || printf "\n" printf "## Define option : $IO\n" continue fi opts=0 WWT_ADD="$WWT ADD $RAW $IO -q" WIT_CP="$WIT COPY $RAW $IO -q" total_start=$(get_msec) test_suite "$src" stat=$? total_stop=$(get_msec) print_stat " * TOTAL TIME:" print_timer $total_start $total_stop case "$stat" in $STAT_OK) stat="OK" ;; $STAT_TEST) stat="TEST" ;; $STAT_NOISO) stat="NO-ISO" ;; $STAT_DIFF) stat="DIFFER" ;; *) stat="ERROR" ;; esac printf "%s %-6s %-8s %-6s %s\n" $(date +%T) "$stat" "$ref" "$id6" "$src" | tee -a $log done 2>&1 | tee -a $err # #------------------------------------------------------------------------------ # term rm -rf "$tempdir/" exit 0 wit-3.01a/scripts/test-image-size.sh0000755000175000017500000003711513363642463017245 0ustar michaelmichael#!/usr/bin/env bash # (c) Wiimm, 2010-09-24 myname="${0##*/}" base=image-size log=$base.log err=$base.err db=$base.db WIT=wit [[ -f ./wit && -x ./wit ]] && WIT=./wit WDF=wdf [[ -f ./wdf && -x ./wdf ]] && WDF=./wdf export LC_ALL=C C1_LIST=($($WIT compr)) C2_LIST=("") C3_LIST=("") PSEL= IO= # #------------------------------------------------------------------------------ # built in help if [[ $# == 0 ]] then cat <<- ---EOT--- This script expect as parameters names of ISO files. ISO files are PLAIN, WDF, WIA, CISO, WBFS or FST. Each source file is subject of this test suite. Each source is converted to several formats to find out the size of the output. Output formats are: WDF, PLAIN ISO, CISO, WBFS, WIA. WIA is checked with different compeession modes controlled by --c1 --c2 and --c3. Some output images may additonally compressed with bzip2, rar and 7z. Usage: $myname [option]... iso_file... Options: --wia : Enter fast mode => do only WDF and WIA test --bzip2 : enable bzip2 tests (default if tool 'bzip2' found) --no-bzip2 : disable bzip2 tests --rar : enable rar tests (default if tool 'rar' found) --no-rar : disable rar tests --7zip : enable 7zip tests (default if tool '7z' found) --no-7zip : disable 7zip tests --all : shortcut for --bzip2 --rar --7z --data : DATA partition only, scrub all others --c1 list : This three options define three lists of compression modes. --c2 list modes. Each element of one list is combined with each element --c3 list each element of the other lists ( c1 x c2 x c3 ). All resulting modes are normalized, sorted and repeated modes are removed. The default for --c1 are all compression methods. Options --c2 and --c3 are initial empty. --decrypt : Enable WDF/DECRYPT tests. --diff : Enable "wit DIFF" to verify WIA archives. --read : Enable read tests (conver WIA to to WDF file). --dump : 'wdf +dump a.wia >$dumpdir' --db : Enable DB mode: 1.) Scan DB to find if stat is already known. 2.) Append new WIA statistics to DB file '$db'. ---EOT--- exit 1 fi # #------------------------------------------------------------------------------ # check existence of needed tools errtool= for tool in $WIT do which $tool >/dev/null 2>&1 || errtool="$errtool $tool" done if [[ $errtool != "" ]] then echo "$myname: missing tools in PATH:$errtool" >&2 exit 2 fi let HAVE_BZIP2=!$(which bzip2 >/dev/null 2>&1; echo $?) let HAVE_RAR=!$(which rar >/dev/null 2>&1; echo $?) let HAVE_7Z=!$(which 7z >/dev/null 2>&1; echo $?) OPT_WIA=0 OPT_BZIP2=0 OPT_RAR=0 OPT_7ZIP=0 OPT_DECRYPT=0 OPT_DATA=0 OPT_DIFF=0 OPT_READ=0 OPT_DUMP=0 OPT_DB=0 # #------------------------------------------------------------------------------ # timer function let BASE_SEC=$(date +%s) function get_msec() { echo $(($(date "+(%s-BASE_SEC)*1000+10#%N/1000000"))) } #----------------------------------- function print_timer() { # $1 = start time # $2 = end time # $3 = name if set local tim ms s m h let tim=$2-$1 last_time=$tim let ms=tim%1000 let tim=tim/1000 let s=tim%60 let tim=tim/60 let m=tim%60 let h=tim/60 if ((h)) then last_ftime=$(printf "%u:%02u:%02u.%03u hms" $h $m $s $ms) elif ((m)) then last_ftime=$(printf " %2u:%02u.%03u m:s" $m $s $ms) else last_ftime=$(printf " %2u.%03u sec" $s $ms) fi printf "%s %s\n" "$last_ftime" "$3" } #----------------------------------- function print_stat() { printf "%-26s : " "$(printf "$@")" } # #------------------------------------------------------------------------------ # calc real methods function calc_compr_modes() { #echo "--c1, N=${#C1_LIST[@]}: ${C1_LIST[*]}" >&2 #echo "--c2, N=${#C2_LIST[@]}: ${C2_LIST[*]}" >&2 #echo "--c3, N=${#C3_LIST[@]}: ${C3_LIST[*]}" >&2 CMODES=$( for c1 in "${C1_LIST[@]}" do for c2 in "${C2_LIST[@]}" do for c3 in "${C3_LIST[@]}" do local mode="$($WIT compr --numeric --verbose "$c1$c2$c3")" if [[ $mode == - ]] then echo "Illegal compression mode: $c1$c2$c3" >&2 exit 1 fi echo "$mode" done done done | sort -n | uniq ) CMODES=$(echo $($WIT compr $CMODES)) } # #------------------------------------------------------------------------------ # setup function f_abort() { echo { msg="### ${myname} CANCELED ###" sep="############################" sep="$sep$sep$sep$sep" sep="${sep:1:${#msg}}" echo "" echo "$sep" echo "$msg" echo "$sep" echo "" echo "remove tempdir: $tempdir" rm -rf "$tempdir" sync echo "" } >&2 sleep 1 exit 2 } tempdir= trap f_abort INT TERM HUP tempdir="$(mktemp -d ./.$base.tmp.XXXXXX)" || exit 1 dumpdir=./dumpdir.tmp export WIT_OPT= export WWT_OPT= # #------------------------------------------------------------------------------ # check_db function check_db() { # $1 = id6 # $2 = cmode if ((OPT_DB)) then local id6 cmode logmsg id6="$1" cmode="$2" DB_ID="$id6-$cmode" ((OPT_DATA)) && DB_ID="$DB_ID-d" logmsg="$( grep "^$DB_ID:" $db | cut -c$((${#DB_ID}+2))- )" if [[ $logmsg != "" ]] then print_stat " > %s" "$cmode" printf "%s [DB]\n" "$logmsg" printf "%s\n" "$logmsg" >>"$tempdir/time.write.log" ((basesize)) || let basesize=$( echo "$logmsg" | awk '{print $1}' ) return 0 fi fi return 1 } # #------------------------------------------------------------------------------ # test function function test_function() { # $1 = class for log file # $2 = base time # $3 = dest file # $4 = info # $5... = command local class basetime dest start stop size perc class="$1" basetime="$2" dest="$3" info="$4" shift 4 print_stat " > %s" "$info" #----- sync sleep 1 start=$(get_msec) #echo; echo "$@" "$@" || return 1 sync let stop=$(get_msec)+basetime #----- size="$(stat -c%s "$tempdir/$dest")" ((basesize)) || basesize=$size let perc=size*10000/basesize if ((perc>99999)) then perc="$(printf "%6u%%" $((perc/100)))" else perc="$(printf "%3u.%02u%%" $((perc/100)) $((perc%100)))" fi size="$(printf "%10d %s" $size "$perc" )" #print_timer $start $stop "$size" print_timer $start $stop >/dev/null logmsg=$(printf " %s %s %s" "$size" "$last_ftime" "$info") printf "%s\n" "$logmsg" printf "%s\n" "$logmsg" >>"$tempdir/time.$class.log" [[ $DB_ID = "" ]] || printf "%s:%s\n" "$DB_ID" "$logmsg" >>"$db" return 0 } # #------------------------------------------------------------------------------ # test suite function test_suite() { # $1 = valid source rm -rf "$tempdir"/* mkdir -p "$tempdir" local ft id6 name ft="$($WIT FILETYPE -H -l "$1" | awk '{print $1}')" || return 1 id6="$($WIT FILETYPE -H -l "$1" | awk '{print $2}')" || return 1 printf "\n** %s %s %s\n" "$ft" "$id6" "$1" [[ $id6 = "-" ]] && return $STAT_NOISO name="$($WIT ID6 --long --source "$1")" name="$( echo "$name" | sed 's/ /, /')" DB_ID= #----- START, read source once if ((!OPT_DB)) then basesize=0 test_function write 0 b.wdf "WDF/start" \ $WIT_CP "$1" --wdf "$tempdir/b.wdf" || return 1 rm -f "$tempdir"/time.*.log fi #----- wdf basesize=0 if ! check_db "$id6" "WDF" then test_function write 0 a.wdf "WDF" \ $WIT_CP "$1" --wdf "$tempdir/a.wdf" || return 1 local wdf_time=$last_time if ((OPT_BZIP2)) then test_function write $wdf_time a.wdf.bz2 "WDF + BZIP2" \ bzip2 --keep "$tempdir/a.wdf" || return 1 fi if ((OPT_RAR)) then test_function write $wdf_time a.wdf.rar "WDF + RAR" \ rar a -inul "$tempdir/a.wdf.rar" "$tempdir/a.wdf" || return 1 fi if ((OPT_7ZIP)) then test_function write $wdf_time a.wdf.7z "WDF + 7Z" \ 7z a -bd "$tempdir/a.wdf.7z" "$tempdir/a.wdf" || return 1 fi rm -f "$tempdir/a.wdf"* fi #----- wdf/decrypt if ((OPT_DECRYPT)) && ! check_db "$id6" "WDF/DECRYPT" then test_function write 0 a.wdf "WDF/DECRYPT" \ $WIT_CP "$1" --wdf --enc decrypt "$tempdir/a.wdf" || return 1 local wdf_time=$last_time if ((OPT_BZIP2)) then test_function write $wdf_time a.wdf.bz2 "WDF/DECRYPT + BZIP2" \ bzip2 --keep "$tempdir/a.wdf" || return 1 fi if ((OPT_RAR)) then test_function write $wdf_time a.wdf.rar "WDF/DECRYPT + RAR" \ rar a -inul "$tempdir/a.wdf.rar" "$tempdir/a.wdf" || return 1 fi if ((OPT_7ZIP)) then test_function write $wdf_time a.wdf.7z "WDF/DECRYPT + 7Z" \ 7z a -bd "$tempdir/a.wdf.7z" "$tempdir/a.wdf" || return 1 fi rm -f "$tempdir/a.wdf"* fi #----- wia for cmode in $CMODES do check_db "$id6" "WIA/$cmode" && continue test_function write 0 a.wia "WIA/$cmode" \ $WIT_CP "$1" --wia --compr $cmode "$tempdir/a.wia" || return 1 local wdf_time=$last_time DB_ID= if ((OPT_READ)) then test_function read 0 a.wia "READ/$cmode" \ $WIT_CP "$tempdir/a.wia" --wdf "$tempdir/read.wdf" || return 1 rm -f "$tempdir/read.wdf" fi ((OPT_DUMP)) && $WDF +dump "$tempdir/a.wia" >"$dumpdir/$id6-$cmode.dump" if [[ ${cmode:0:4} == NONE ]] then if ((OPT_BZIP2)) then test_function write $wdf_time a.wia.bz2 "WIA/$cmode + BZIP2" \ bzip2 --keep "$tempdir/a.wia" || return 1 fi if ((OPT_RAR)) then test_function write $wdf_time a.wia.rar "WIA/$cmode + RAR" \ rar a -inul "$tempdir/a.wia.rar" "$tempdir/a.wia" || return 1 fi if ((OPT_7ZIP)) then test_function write $wdf_time a.wia.7z "WIA/$cmode + 7Z" \ 7z a -bd "$tempdir/a.wia.7z" "$tempdir/a.wia" || return 1 fi fi if ((OPT_DIFF)) then echo " - wit DIFF orig-source a.wia" wit diff $PSEL "$1" "$tempdir/a.wia" \ || echo "!!! $id6: wit DIFF orig-source a.wia/$cmode FAILED!" | tee -a "$log" fi rm -f "$tempdir/a.wia"* done #----- plain iso if ((!OPT_WIA)) then test_function write 0 a.iso "PLAIN ISO" \ $WIT_CP "$1" --iso "$tempdir/a.iso" || return 1 local iso_time=$last_time if ((OPT_BZIP2)) then test_function write iso_time a.iso.bz2 "PLAIN ISO + BZIP2" \ bzip2 --keep "$tempdir/a.iso" || return 1 fi if ((OPT_RAR)) then test_function write iso_time a.iso.rar "PLAIN ISO + RAR" \ rar a -inul "$tempdir/a.iso.rar" "$tempdir/a.iso" || return 1 fi if ((OPT_7ZIP)) then test_function write iso_time a.iso.7z "PLAIN ISO + 7Z" \ 7z a -bd "$tempdir/a.iso.7z" "$tempdir/a.iso" || return 1 fi rm -f "$tempdir/a.iso"* fi #----- ciso if ((!OPT_WIA)) then test_function write 0 a.ciso "CISO" \ $WIT_CP "$1" --ciso "$tempdir/a.ciso" || return 1 rm -f "$tempdir/a.ciso"* fi #----- wbfs if ((!OPT_WIA)) then test_function write 0 a.wbfs "WBFS" \ $WIT_CP "$1" --wbfs "$tempdir/a.wbfs" || return 1 rm -f "$tempdir/a.wbfs"* fi #----- summary for class in write read do if [[ -s "$tempdir/time.$class.log" ]] then { printf "\f\nSummary [$class,size] of %s:\n\n" "$name" sort "$tempdir/time.$class.log" printf "\nSummary [$class,time] of %s:\n\n" "$name" sort +2 "$tempdir/time.$class.log" printf "\n" } | tee -a "$log" fi done return 0 } # #------------------------------------------------------------------------------ # print header { sep="-----------------------------------" printf "\n\f\n%s%s\n\n" "$sep" "$sep" date '+%F %T' echo $WIT --version echo echo "PARAM: $*" echo } | tee -a $log $err # #------------------------------------------------------------------------------ # main loop opts=1 calc_compr_modes while (($#)) do src="$1" shift if [[ $src == --wia || $src == --fast ]] # --fast = old & obsolete then OPT_WIA=1 ((opts++)) || printf "\n" printf "## --wia : Do only WDF and WIA tests\n" continue fi if [[ $src == --bzip2 || $src == --bz2 ]] then OPT_BZIP2=$HAVE_BZIP2 ((opts++)) || printf "\n" printf "## --bzip2 : bzip2 tests enabled\n" continue fi if [[ $src == --no-bzip2 || $src == --nobzip2 || $src == --no-bz2 || $src == --nobz2 ]] then OPT_BZIP2=0 ((opts++)) || printf "\n" printf "## --no-bzip2 : bzip2 tests disabled\n" continue fi if [[ $src == --rar ]] then OPT_RAR=$HAVE_RAR ((opts++)) || printf "\n" printf "## --rar : rar tests enabled\n" continue fi if [[ $src == --no-rar || $src == --norar ]] then OPT_RAR=0 ((opts++)) || printf "\n" printf "## --no-rar : rar tests disabled\n" continue fi if [[ $src == --7zip || $src == --7z ]] then OPT_7ZIP=$HAVE_7Z ((opts++)) || printf "\n" printf "## --7zip : 7zip tests enabled\n" continue fi if [[ $src == --no-7zip || $src == --no7zip || $src == --no-7z || $src == --no7z ]] then OPT_7ZIP=0 ((opts++)) || printf "\n" printf "## --no-7zip : 7zip tests disabled\n" continue fi if [[ $src == --all ]] then OPT_BZIP2=$HAVE_BZIP2 OPT_RAR=$HAVE_RAR OPT_7ZIP=$HAVE_7Z ((opts++)) || printf "\n" printf "## --all : shortcut for --bzip2 --rar --7z\n" continue fi if [[ $src == --decrypt ]] then OPT_DECRYPT=1 ((opts++)) || printf "\n" printf "## --decrypt : WDF/DECRYPT tests enabled\n" continue fi if [[ $src == --diff ]] then OPT_DIFF=1 ((opts++)) || printf "\n" printf "## --diff : 'wit DIFF' tests enabled\n" continue fi if [[ $src == --read ]] then OPT_READ=1 ((opts++)) || printf "\n" printf "## --read : Read tests enabled\n" continue fi if [[ $src == --dump ]] then OPT_DUMP=1 mkdir -p $dumpdir ((opts++)) || printf "\n" printf "## --dump : 'wdf +dump a.wia >$dumpdir'\n" continue fi if [[ $src == --data ]] then PSEL="--psel data" OPT_DATA=1 ((opts++)) || printf "\n" printf "## --data : DATA partition only, scrub all others\n" continue fi if [[ $src == --c1 || $src == --compr ]] # --compr = old & obsolete then C1_LIST=($( echo "$1" | tr ',' ' ')) (( ${#C1_LIST[@]} )) || C1_LIST=("") shift ((opts++)) || printf "\n" printf "## --c1 : C1 list set to: ${C1_LIST[*]}\n" calc_compr_modes printf "## compression modes are: $CMODES\n" continue fi if [[ $src == --c2 || $src == --level ]] # --level = old & obsolete then C2_LIST=($( echo "$1" | tr ',' ' ')) (( ${#C2_LIST[@]} )) || C2_LIST=("") shift ((opts++)) || printf "\n" printf "## --c2 : C2 list set to: ${C2_LIST[*]}\n" calc_compr_modes printf "## compression modes are: $CMODES\n" continue fi if [[ $src == --c3 ]] then C3_LIST=($( echo "$1" | tr ',' ' ')) (( ${#C3_LIST[@]} )) || C3_LIST=("") shift ((opts++)) || printf "\n" printf "## --c3 : C3 list set to: ${C3_LIST[*]}\n" calc_compr_modes printf "## compression modes are: $CMODES\n" continue fi if [[ $src == --db ]] then OPT_DB=1 printf "# %s - %s\n" "$(date '+%F %T')" "$($WIT --version)" >>$db ((opts++)) || printf "\n" printf "## --db : DB mode enabled.\n" continue fi #---- hidden options if [[ $src == --io ]] then IO="--io $( echo "$1" | tr -cd '0-9' )" shift ((opts++)) || printf "\n" printf "## Define option : $IO\n" continue fi #---- execute opts=0 WIT_CP="$WIT COPY $PSEL $IO -q" total_start=$(get_msec) test_suite "$src" stat=$? total_stop=$(get_msec) print_stat " * TOTAL TIME:" print_timer $total_start $total_stop done 2>&1 | tee -a $err # #------------------------------------------------------------------------------ # term rm -rf "$tempdir/" exit 0 wit-3.01a/scripts/test-ADD+EXTRACT.sh0000644000175000017500000003120713363642463016702 0ustar michaelmichael#!/usr/bin/env bash myname="${0##*/}" base=add+extract log=$base.log err=$base.err usewitcmp=0 if [[ $1 = --witcmp ]] then usewitcmp=1 shift fi if [[ $# == 0 ]] then cat <<- ---EOT--- $myname : Test adding and extracting of ISO images with 'wwt'' This script expect as parameters names of ISO or WDF+ISO files. These files are subject of adding and extracting with a temporary WBFS file. The test does the following (not in this order): 1.) Adding the ISO image with a) --io=0 (use file open() and file functions) b) --io=3 (use file fopen() and stream functions) 2.) Adding the WDF image with a) --io=0 b) --io=3 3.) extracting the image with a) --io=0 --iso b) --io=3 --iso c) --io=0 --wdf d) --io=3 --wdf 4.) compare all exported WDF and ISO among themselves. 5.) compare one ISO against the source ISO this may fail if the source ISO is not scrubbed. For each file one status line is *appended* at the end of the file '$log' in the following format: STATUS JOB ID6 filename JOB is an shortcut which job failed and ID6 is the ID of the ISO image. STATUS is one of: 'NO-ISO' : source is not an ISO. 'ERR' : a command exited with an error. 'ERR-WDF : comparison of WDF file failed. 'ERR-ISO : comparison of ISO file failed. 'ERR-W+I : comparison of one WDF against one ISO failed. 'DIFF' : comparison of one output ISO against the source ISO failed. 'OK' : Source and all destination files are identical. A full log is appended to the file '$err' ans to stdout. The temporary files are written to a temporary subdirectory of the current working directory (hoping that here is enough space). The directory will be is deleted at the end. The signals INT, TERM and HUP are handled. ---EOT--- echo "usage: $myname [--witcmp] iso_file..." >&2 echo exit 1 fi #------------------------------------------------------------------------------ WWT=wwt WIT=wit WDFCAT=wdf-cat [[ -x ./wwt ]] && WWT=./wwt [[ -x ./wit ]] && WIT=./wit [[ -x ./wdf-cat ]] && WDFCAT=./wdf-cat errtool= for tool in $WWT $WIT $WDFCAT cmp do which $tool >/dev/null 2>&1 || errtool="$errtool $tool" done if [[ $errtool != "" ]] then echo "$myname: missing tools in PATH:$errtool" >&2 exit 2 fi CMP=cmp ((usewitcmp)) && CMP="wit cmp" #------------------------------------------------------------------------------ let BASE_SEC=$(date +%s) function get_msec() { echo $(($(date "+(%s-BASE_SEC)*1000+10#%N/1000000"))) } #------------------------------------------------------------------------------ function print_timer() { # $3 = name if set local tim ms s m h let tim=$2-$1 let ms=tim%1000 let tim=tim/1000 let s=tim%60 let tim=tim/60 let m=tim%60 let h=tim/60 if ((h)) then printf "%u:%02u:%02u.%03u hms %s\n" $h $m $s $ms "$3" elif ((m)) then printf " %2u:%02u.%03u m:s %s\n" $m $s $ms "$3" else printf " %2u.%03u sec %s\n" $s $ms "$3" fi } #------------------------------------------------------------------------------ function print_stat() { printf "%-35s : " "$(printf "$@")" } #------------------------------------------------------------------------------ function f_abort() { { msg="### ${myname} CANCELED ###" sep="############################" sep="$sep$sep$sep$sep" sep="${sep:1:${#msg}}" echo "" echo "$sep" echo "$msg" echo "$sep" echo "" echo "remove tempdir: $tempdir" rm -rf "$tempdir" echo "" } >&2 sleep 1 exit 2 } #------------------------------------------------------------------------------ # setup tempdir= trap f_abort INT TERM HUP tempdir="$(mktemp -d ./.$base.tmp.XXXXXX)" || exit 1 wbfs_file=a.wbfs wbfs="$tempdir/$wbfs_file" wbfs2_file=b.wbfs wbfs2="$tempdir/$wbfs2_file" #------------------------------------------------------------------------------ # error codes STAT_OK=0 STAT_DIFF=1 STAT_NO_ISO=2 ERROR=10 ERR_WDF=11 ERR_ISO=12 ERR_WDF_ISO=13 #------------------------------------------------------------------------------ # tests function test_it() { total_start=$(get_msec) rm -f "$tempdir"/*.iso "$tempdir"/*.wdf "$tempdir"/*.wbfs mkdir -p "$tempdir" ref="-" ft="$($WWT FILETYPE -H -l "$1" | awk '{print $1}')" || return $ERROR id6="$($WWT FILETYPE -H -l "$1" | awk '{print $2}')" || return $ERROR [[ $id6 = "-" ]] && return $STAT_NO_ISO printf "\n** %s %s %s\n" "$ft" "$id6" "$1" #------------ JOB: ADD SOURCE (ISO or WDF) --io=0 ref="init" print_stat " > %s $sector_size" "$ref"; start=$(get_msec) $WWT -q init $sector_size --force "$wbfs" --size 12 || return $ERROR stop=$(get_msec); print_timer $start $stop $ref [[ $ft = ISO ]] && ref="AI0s" || ref="AW0s" print_stat " > %-4s add source($ft) --io=0" "$ref"; start=$(get_msec) $WWT -q -p "$wbfs" add --io=0 "$1" || return $ERROR stop=$(get_msec); print_timer $start $stop $ref #------------ JOB: EXTRACT ISO --io=0 ref="XI0" print_stat " > %-4s extract --iso --io=0" "$ref"; start=$(get_msec) $WWT -q -p "$wbfs" -d "$tempdir" extract --iso --io=0 "$id6=ref.iso" || return $ERROR stop=$(get_msec); print_timer $start $stop $ref if ((!fast)) then #------------ JOB: EXTRACT WBFS --io=0 ref="XB0" print_stat " > %-4s extract --wbfs --io=0" "$ref"; start=$(get_msec) $WWT -q -p "$wbfs" -d "$tempdir" extract --wbfs --io=0 "$id6=$wbfs2_file" || return $ERROR stop=$(get_msec); print_timer $start $stop $ref #------------ JOB: EXTRACT WDF --io=0 ref="XW0" print_stat " > %-4s extract --wdf --io=0" "$ref"; start=$(get_msec) $WWT -q -p "$wbfs2" -d "$tempdir" extract --wdf --io=0 "$id6=ref.wdf" || return $ERROR stop=$(get_msec); print_timer $start $stop $ref print_stat " > %-4s $CMP iso wdf" "$ref"; start=$(get_msec) if ((usewitcmp)) then $WIT -q cmp "$tempdir/ref.wdf" "$tempdir/ref.iso" || return $ERR_WDF_ISO else $WDFCAT "$tempdir/ref.wdf" | cmp --quiet "$tempdir/ref.iso" || return $ERR_WDF_ISO fi stop=$(get_msec); print_timer $start $stop #------------ JOB: ADD ISO --io=3 ref="init" print_stat " > %s $sector_size" "$ref"; start=$(get_msec) $WWT -q init $sector_size --force "$wbfs" --size 12 || return $ERROR stop=$(get_msec); print_timer $start $stop ref="AI3" print_stat " > %-4s add iso --io=3" "$ref"; start=$(get_msec) $WWT -q -p "$wbfs" add --io=3 "$tempdir/ref.iso" || return $ERROR stop=$(get_msec); print_timer $start $stop $ref #------------ JOB: EXTRACT ISO --io=3 ref="XI3" print_stat " > %-4s extract --iso --io=3" "$ref"; start=$(get_msec) $WWT -qo -p "$wbfs" -d "$tempdir" extract --iso --io=3 "$id6=temp.iso" || return $ERROR stop=$(get_msec); print_timer $start $stop $ref print_stat " > %-4s $CMP iso iso" "$ref"; start=$(get_msec) $CMP --quiet "$tempdir/ref.iso" "$tempdir/temp.iso" || return $ERR_ISO stop=$(get_msec); print_timer $start $stop #------------ JOB: EXTRACT WDF --io=3 ref="XW3" print_stat " > %-4s extract --wdf --io=3" "$ref"; start=$(get_msec) $WWT -qo -p "$wbfs" -d "$tempdir" extract --wdf --io=3 "$id6=temp.wdf" || return $ERROR stop=$(get_msec); print_timer $start $stop $ref print_stat " > %-4s $CMP wdf wdf" "$ref"; start=$(get_msec) $CMP --quiet "$tempdir/ref.wdf" "$tempdir/temp.wdf" || return $ERR_WDF stop=$(get_msec); print_timer $start $stop #------------ JOB: ADD WDF or ISO --io=0 ref="init" print_stat " > %s $sector_size" "$ref"; start=$(get_msec) $WWT -q init $sector_size --force "$wbfs" --size 12 || return $ERROR stop=$(get_msec); print_timer $start $stop if [[ $ft = ISO ]] then # add iso already done -> add wdf ref="AW0" print_stat " > %-4s add wdf --io=0" "$ref"; start=$(get_msec) $WWT -q -p "$wbfs" add --io=0 "$tempdir/ref.wdf" || return $ERROR stop=$(get_msec); print_timer $start $stop $ref else # add wdf already done -> add iso ref="AI0" print_stat " > %-4s add iso --io=0" "$ref"; start=$(get_msec) $WWT -q -p "$wbfs" add --io=0 "$tempdir/ref.iso" || return $ERROR stop=$(get_msec); print_timer $start $stop $ref fi #----- no job, just extract and compare print_stat " > %-4s extract --wdf --io=0" "$ref"; start=$(get_msec) $WWT -qo -p "$wbfs" -d "$tempdir" extract --wdf --io=0 "$id6=temp.wdf" || return $ERROR stop=$(get_msec); print_timer $start $stop print_stat " > %-4s $CMP wdf wdf" "$ref"; start=$(get_msec) $CMP --quiet "$tempdir/ref.wdf" "$tempdir/temp.wdf" || return $ERR_WDF stop=$(get_msec); print_timer $start $stop #------------ JOB: ADD WDF --io=3 ref="init" print_stat " > %s $sector_size" "$ref"; start=$(get_msec) $WWT -q init $sector_size --force "$wbfs" --size 12 || return $ERROR stop=$(get_msec); print_timer $start $stop ref="AW3" print_stat " > %-4s add wdf --io=3" "$ref"; start=$(get_msec) $WWT -q -p "$wbfs" add --io=3 "$tempdir/ref.wdf" || return $ERROR stop=$(get_msec); print_timer $start $stop $ref #----- no job, just extract and compare print_stat " > %-4s extract --wdf --io=0" "$ref"; start=$(get_msec) $WWT -qo -p "$wbfs" -d "$tempdir" extract --wdf --io=0 "$id6=temp.wdf" || return $ERROR stop=$(get_msec); print_timer $start $stop print_stat " > %-4s $CMP wdf wdf" "$ref"; start=$(get_msec) $CMP --quiet "$tempdir/ref.wdf" "$tempdir/temp.wdf" || return $ERR_WDF stop=$(get_msec); print_timer $start $stop #------------ JOB: ADD ISO --io=0 pipe #DEL ref="init" #DEL print_stat " > %s $sector_size" "$ref"; start=$(get_msec) #DEL $WWT -q init $sector_size --force "$wbfs" --size 12 || return $ERROR #DEL stop=$(get_msec); print_timer $start $stop #DEL #DEL ref="AI0p" #DEL print_stat " > %-4s add iso --io=0 pipe" "$ref"; start=$(get_msec) #DEL cat "$tempdir/ref.iso" | $WWT -q -p "$wbfs" add --io=0 - || return $ERROR #DEL stop=$(get_msec); print_timer $start $stop $ref #----- no job, just extract and compare print_stat " > %-4s extract --wdf --io=0" "$ref"; start=$(get_msec) $WWT -qo -p "$wbfs" -d "$tempdir" extract --wdf --io=0 "$id6=temp.wdf" || return $ERROR stop=$(get_msec); print_timer $start $stop print_stat " > %-4s $CMP wdf wdf" "$ref"; start=$(get_msec) $CMP --quiet "$tempdir/ref.wdf" "$tempdir/temp.wdf" || return $ERR_WDF stop=$(get_msec); print_timer $start $stop #------------ JOB: ADD ISO --io=3 pipe #DEL ref="init" #DEL print_stat " > %s $sector_size" "$ref"; start=$(get_msec) #DEL $WWT -q init $sector_size --force "$wbfs" --size 12 || return $ERROR #DEL stop=$(get_msec); print_timer $start $stop #DEL #DEL ref="AI3p" #DEL print_stat " > %-4s add iso --io=3 pipe" "$ref"; start=$(get_msec) #DEL cat "$tempdir/ref.iso" | $WWT -q -p "$wbfs" add --io=3 - || return $ERROR #DEL stop=$(get_msec); print_timer $start $stop $ref #----- no job, just extract and compare print_stat " > %-4s extract --wdf --io=0" "$ref"; start=$(get_msec) $WWT -qo -p "$wbfs" -d "$tempdir" extract --wdf --io=0 "$id6=temp.wdf" || return $ERROR stop=$(get_msec); print_timer $start $stop print_stat " > %-4s $CMP wdf wdf" "$ref"; start=$(get_msec) $CMP --quiet "$tempdir/ref.wdf" "$tempdir/temp.wdf" || return $ERR_WDF stop=$(get_msec); print_timer $start $stop fi #------------ compare with source ref="cmp" print_stat " > %-4s $CMP iso source($ft)" "$ref"; start=$(get_msec) if [[ $ft = ISO ]] || ((usewitcmp)) then $CMP --quiet "$tempdir/ref.iso" "$1" || return $STAT_DIFF else $WDFCAT "$1" | cmp --quiet "$tempdir/ref.iso" || return $STAT_DIFF fi stop=$(get_msec); print_timer $start $stop ref="+" return $STAT_OK } #------------------------------------------------------------------------------ # print header { sep="--------------------------------" printf "\n\f\n%s%s\n\n" "$sep" "$sep" date '+%F %T' $WWT --version echo } | tee -a $log $err #------------------------------------------------------------------------------ # main loop sector_size= fast=0 while (($#)) do if [[ $1 == --sector-size ]] then sector_size="--sector-size $2" echo "NEW OPTION: $sector_size" shift shift continue fi if [[ $1 == --fast ]] then fast=1 shift continue fi total_start=$(get_msec) test_it "$1" stat=$? total_stop=$(get_msec) print_stat " * TOTAL TIME:" print_timer $total_start $total_stop case "$stat" in $STAT_OK) stat="OK" ;; $STAT_DIFF) stat="DIFF" ;; $STAT_NO_ISO) stat="NO-ISO" ;; $ERR_WDF) stat="ERR-WDF" ;; $ERR_ISO) stat="ERR-ISO" ;; $ERR_WDF_ISO) stat="ERR-W+I" ;; *) stat="ERROR" ;; esac printf "%-7s %-4s %-6s %s\n" "$stat" "$ref" "$id6" "$1" | tee -a $log shift done 2>&1 | tee -a $err #------------------------------------------------------------------------------ rm -rf "$tempdir" exit 0 wit-3.01a/scripts/test-fragmentation.sh0000644000175000017500000000267413363642463020050 0ustar michaelmichael#!/usr/bin/env bash dev="$1" [[ $dev = "" ]] && dev=/dev/sdb2 rev_need=r666 log="${0##*/}.log" max=16 fragid=PHT000 firstid=PHT001 midid="$(printf "PHT%03u" $((max|1)))" lastid="$(printf "PHT%03u" $((2*max-1)))" testlist="$fragid $firstid $midid $lastid" if [[ $(wwt version | awk '{print $6}') < $rev_need ]] then printf '\n*** %s: Need at least wwt revision %s\n\n' "${0##*/}" "$rev_need" >&2 exit 1 fi if ! wwt find -q -p "$dev" then printf '\n*** %s: Not a WBFS: %s\n\n' "${0##*/}" "$dev" >&2 exit 1 fi { printf '\n---------- INIT ----------\n\n' wwt init $dev -qf rmlist="" for ((i=0;i<$max;i++)) do wwt -p $dev -q phantom 256M 4G rmlist="$rmlist $(printf "PHT%03u" $((2*i)))" done wwt -p $dev -q rm $rmlist wwt -p $dev -q phantom 4G #wwt ll $dev --sort=none wwt -p $dev dump -lll | sed '0,/WBFS Memory Map/ d' | grep -iv inode printf '\n---------- EXTRACT ----------\n\n' for (( i=0; i<10; i++ )) do for id in $testlist do echo -n "extract $id ... " start=$(date +%s) wwt -p $dev -q extract $id=/dev/null --overwrite end=$(date +%s) printf "%3u sec\n" $((end-start)) done echo done printf '\n---------- SUM ----------\n\n' } | tee $log awk=' $1=="extract" && $5=="sec" { n[$2]++; s[$2]+=$4 } END { for ( i in s ) printf("%s: %5u sec / %2u == %3u sec\n", i, s[i], n[i], s[i]/n[i] ); } ' awk "$awk" $log | sort -n +4 | tee $log.tmp cat $log.tmp >>$log rm -f $log.tmp wit-3.01a/scripts/INFO.txt0000644000175000017500000000015513363642463015165 0ustar michaelmichaelThis directory contains different scripts. Just call them without any parameters to print the built in help. wit-3.01a/share/0000755000175000017500000000000013363642463013303 5ustar michaelmichaelwit-3.01a/share/magic.txt0000644000175000017500000000660513363642463015133 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-3.01a/share/titles-ru.txt0000644000175000017500000110504013363642463015775 0ustar michaelmichael010E01 = Wii Backup Disc v1.31 301E01 = GameCube Service Disc 9XGX = SNES9xGX 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... CBIEE9 = Harvest Moon: Pride Parade 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 CGHE52 = Guitar Hero 2K16 (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.2 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.2 CS9PZZ = StarSing : Pop Hits 9 v1.0 CSAP00 = StarSing : '80s Volume 3 v2.2 CSAPZZ = StarSing : Best of Goldman v1.0 CSBP00 = StarSing : '90s Volume 2 v2.2 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 v2.0 CSFP00 = StarSing : Pop Hits 6 v2.0 CSGP00 = StarSing : Chansons Magiques de Disney v2.0 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = StarSing : Pop Hits 7 v2.0 CSJP00 = StarSing : Après-Ski Party v2.0 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 v2.0 CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = StarSing : Génériques TV v2.1 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.1 CT9P00 = StarSing : Pop Hits 9 v2.0 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.2 CTNP00 = StarSing : Pop Hits 10 v2.0 CTOP00 = StarSing : The Beatles Volume 2 v2.1 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 v2.0 CTUP00 = StarSing : Rihanna v2.0 CTVP00 = StarSing : Lady GaGa v1.1 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CTZP00 = StarSing : Volume 3 v1.0 CU0P00 = StarSing : Retro Volume 3 v1.0 CU1P00 = StarSing : Girls v1.0 CU2P00 = StarSing : Volume 4 v1.1 CU3P00 = StarSing : Retro Volume 4 v1.1 CU4P00 = StarSing : Retro Volume 5 v1.0 CU5P00 = StarSing : International Volume 4 v1.0 CU6P00 = StarSing : Volume 5 v1.0 CU7P00 = StarSing : Retro Volume 6 v1.0 CU8P00 = StarSing : Volume 6 v1.0 CU9P00 = StarSing : Volume 7 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 = B.L.I.N.D. 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 = WAD Batch Installer 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: Scorched Earth 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 = Monthly Nintendo Shop Demo - 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: A Hard Days Night 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 DBSBT3 = Dragon Ball Budokai Tenkaichi 3 Version Latino 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. Brawl: 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 DN6A = Not64 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 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 DTZJ08 = Takarajima Z Barbaros' Treasure (Demo) 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 DWEJA4 = Winning Eleven PLAY MAKER 2008 (Demo) 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 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 Shodown 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 Shodown EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen EAEP = Samurai Shodown 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 Shodown 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 EAZP = World Heroes Perfect EB2E = Real Bout Fatal Fury Special EB2J = Real Bout Garou Densetsu Special EB2P = Real Bout Fatal Fury Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB5P = 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 EBGP = 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 EBSP = The Path of the Warrior: Art of Fighting 3 EBTJ = Crossed Swords EBUE = 2020 Super Baseball EBUJ = Super Baseball 2020 EBUP = 2020 Super Baseball 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 ECAP = Real Bout Fatal Fury 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECCP = 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 ECGP = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECHP = The King of Fighters '98 ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECIP = 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 II 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 III 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 JingÌ„ji SaburÌ„: Shinjuku Ch̄̄ KÌ„en 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 FERP = Zoda’s Revenge: StarTropics II 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 FF5P = Double Dragon II: 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 G2DJB2 = Digimon Battle Chronicle 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 & 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 G2XJ8P = Sonic Gems Collection G2XP8P = Sonic Gems Collection G3AD69 = The Lord of the Rings: The Third Age G3AE69 = The Lord of the Rings: The Third Age G3AF69 = The Lord of the Rings: The Third Age G3AP69 = The Lord of the Rings: The Third Age G3AS69 = The 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 G96P01 = Interactive Multi-Game Demo Disc - November 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 G9RJ7D = Crash Bandicoot Gacchanko World 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 GA3J51 = 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 GAZJ13 = Harry Potter to Azkaban no Shuujin 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 GBMJ7F = 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 GBRJ18 = Bloody Roar Extreme GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSJ8P = Beach Spikers: Virtua Beach Volleyball GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTJA7 = Bakuten Shoot Beyblade 2002: Nettou! Magne Tag 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 = Pokémon Colosseum GC6P01 = Pokémon Colosseum GC7PNK = Cocoto Platform Jumper GC8JA4 = Crash Bandicoot: Bakusou! Nitro Kart GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBJA4 = Crash Bandicoot 4: Sakuretsu! Majin Power 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 Complete 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 GCTJ8P = 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 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 Arena 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 = 007: Everything or Nothing GENF69 = James Bond 007: Everything or Nothing GENP69 = James Bond 007: Everything Or Nothing GENS69 = James Bond 007: Everything or Nothing GEOE08 = Capcom vs. SNK 2 EO GEOJ08 = Capcom vs. SNK 2 EO: Millionaire Fighting 2001 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 GEZJ8P = 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 GF4I52 = Fantastic 4 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 GFIJ13 = 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 GG4J08 = 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 GH4J13 = Harry Potter to Honoo no Goblet 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 GHLJ13 = Harry Potter to Kenja no Ishi GHLJ69 = Harry Potter to Kenja no Ishi GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Philosopher'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 GHSJ13 = Harry Potter to Himitsu no Heya 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 GJND78 = Jimmy Neutron: Boy Genius 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 = The Lord of the Rings: The Return of the King GKLE69 = The Lord of the Rings: The Return of the King GKLF69 = Lord of the Rings: The Return of the King GKLI69 = The Lord of the Rings: The Return of the King GKLJ69 = The Lord of the Rings: The Return of the King GKLP69 = The Lord of the Rings: The Return of the King GKLS69 = The 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's Airride GKYP01 = Kirby Air Ride GKZD54 = Codename: Kids Next Door - Operation: V.I.D.E.O.G.A.M.E. 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 = The Lord of the Rings: The Two Towers GLOE69 = The Lord of the Rings: The Two Towers GLOF69 = The Lord of the Rings: The Two Towers GLOI69 = The Lord of the Rings: The Two Towers GLOP69 = The 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 Hoffman's 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 GOTJB2 = One Piece: Treasure Battle! 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 GQ4D78 = SpongeBob SquarePants: Creature from the Krusty Krab 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 GQCI52 = 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 GRJPAF = R: Racing Evolution 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 GSMJ08 = Spider-Man: The Movie 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 Squadron II: Rogue Leader GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = Star Wars Rogue Squadron II GSWP64 = Star Wars Rogue Squadron II: Rogue Leader 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 GVS32E = Virtua Striker 3 Ver. 2002 GVS32J = Virtua Striker 3 Ver.2002 (Triforce) GVS45E = Virtua Striker 4 GVS45J = Virtua Striker 4 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 = James Bond 007 in 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 GWEJ51 = 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 GX2E01 = Pokemon XG: Next Gen 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 = Pokémon 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 HADE = Internet Channel HADJ = Internet Channel HADP = Internet Channel HAFE = Forecast Channel HAFJ = Forecast Channel HAFP = Forecast 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 no Tomo Channel G Guide for Wii HBWE01 = New Super Mario Bros. Wii: Hellboy Edition HC3J = USB Flash Optimization HC4E = Crunchyroll HC4P = Crunchyroll 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 HCFJ = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Wii Speak Channel HCGE = Wii + Internet HCGJ = Wii + Internet HCGP = Wii + Internet HCHJ = Demae Channel HCIJ = Wii no Ma HCJP = BBC iPlayer Channel HCLE = Netflix HCLP = Netflix HCMP = Kirby TV Channel 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 JCNP = 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 E.D.F.: 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 JDNP = 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 = KyÌ„yaku Megami Tensei: Megami Tensei I・II JODI = Homebrew Channel JOUE01 = New Super Mario Bros. Wii 10 The Journey KLSEXJ = The Last Story (NTSC-U, Japanese Audio) 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 MB3L = 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 MK7P41 = Mario Kart 7 Wii 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 = Pokémon 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 NTLC = Super Mario 64 Multiplayer 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 = Pokémon 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 PGPJB2 = SD Gundam Trial 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: KÌ„kÌ„ YakyÌ„ 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 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 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 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 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 R7FEUD = Final Fantasy Fables: Chocobo's Dungeon Undub 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! R7MPFR = Musiic Party: Rock the House 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) 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 = Sugoro Chronicle: Migite ni Ken o Hidarite ni Saikoro o 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 RDXE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino Beta 3 RDXJ18 = Deca Sporta RDXKA4 = Deca Sporta RDXP18 = Sports Island RDYEGN = CID: The Dummy RDZE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino 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 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 = 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 RFEPUD = Fire Emblem: Radian Dawn Undub 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 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 RFNE = Wii Fit Channel 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 RFPE = Wii Fit Plus Channel 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 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 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 RGWX = Rabbids Channel RGXE5D = Game Party RGXEFN = Guitar Hero III Custom: Meteo Last Custom RGXEWR = Game Party 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 RK2EUD = Trauma Center: New Blood Undub 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 RKDEUD = Trauma Center: Second Opinion Undub RKDJEB = Trauma Center: Second Opinion RKDJG9 = Kamen Rider: Climax Heroes W RKDP01 = 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 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 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 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) RMCE = Mario Kart Channel RMCJ01 = Mario Kart Wii RMCJ12 = Wiimms MKW Fun 2011-11 RMCJ30 = Wiimms MKW-Fun 2015-12.jap RMCJ31 = Wiimms MKW-Fun 2016-02.jap RMCJ32 = Wiimms MKW-Fun 2016-07.jap RMCJ33 = Wiimms MKW-Fun 2016-10.jap RMCJ34 = Wiimms MKW-Fun 2017-05.jap RMCJ64 = Peach Kart 8 RMCJ76 = Pro CT Pack RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCJL1 = Luma's CT Pack 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 RMCP27 = Wiimms MKW-Fun 2015-03.pal RMCP28 = Wiimms MKW Retro 2015-05.pal RMCP29 = Wiimms MKW-Fun 2015-08.pal RMCP30 = Wiimms MKW-Fun 2015-12.pal RMCP31 = Wiimms MKW-Fun 2016-02.pal RMCP32 = Wiimms MKW-Fun 2016-07.pal RMCP33 = Wiimms MKW-Fun 2016-10.pal RMCP34 = Wiimms MKW-Fun 2017-05.pal RMCP64 = Peach Kart 8 RMCP76 = Pro CT Pack RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCPL1 = Luma's CT Pack 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 RNEEUD = Naruto Shippuden: Clash of Ninja Revolution 3 Undub 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 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 = Ì„kami ROWJ08 = Ì„kami ROWP08 = Ì„kami 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 RPJEUD = Arc Rise Fantasia Undub 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 RR2XUG = Extreme Truck Racing 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 SaikyÌ„ 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 = Marlan Project M 3.6 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 2 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 RSBE43 = Super Smash Bros. Brawl: MASTERLINKX's Custom Pack RSBE44 = Super Smash Bros. Brawl: Shadow Version RSBE45 = Super Smash Bros. Brawl: Shock44's Custom Build RSBE46 = Super Smash Bros. Brawl: DragonD101's Texture Pack RSBE47 = Super Smash Bros. Brawl: XChosen1's Texture Pack RSBE49 = Super Smash Bros. Brawl: Water Block Edition RSBE50 = Super Smash Bros. Project U: Ultra Version RSBEAA = Marvel and Capcom vs Super Smash Bros. 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 RSBEDH = Super Smash Bros. Brawl Dark Hole/D.A.R.S. RSBEDT = Super Smash Bros. Ultimate Dark Phoenix: Tournament Edition RSBEN1 = Super Smash Bros. Project M RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBETE = Super Smash Bros. Legacy TE RSBEWM = Super Smash Bros. Project M Wi-Fi RSBEXP = Super Smash Bros. Legacy XP RSBJ01 = Dairantou Smash Brothers X RSBK01 = Dairantou Smash Brothers X RSBP01 = Super Smash Bros. Brawl RSBP02 = Master4Robin's Super Smash Bros. Brawl Hack Pack 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 Spirits: Rokuban Shoubu 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 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 RT4EUD = Tales of Symphonia: Dawn of the New World Undub 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 Le 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 = Wario Land 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 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 RYIPNK = SPRay RYJPTV = Princess Lillifee's Magic Fairy RYKEAF = We Ski & Snowboard RYKJAF = Family Ski: World Ski & Snowboard RYKKAF = We 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 S32DJW = The Voice of Germany: I Want You S32PJW = The Voice S32SJW = La Voz: Quiero tu voz S33DKM = Let's Sing 2017 - Mit Deutschen Hits! S33FKM = Let's Sing 2017 : Hits Français et Internationaux S33PKM = Let's Sing 2017 S33SKM = Let's Sing 9 - Spanish Version S3AE5G = Attack of the Movies 3D S3APGT = 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 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 S5DE41 = Just Dance Disney Party 2 S5DP41 = Just Dance Disney Party 2 S5KJAF = Taiko no Tatsujin Wii: Chou Goukaban S5MEVZ = Monster High: New Ghoul in School S5MPVZ = Monster High: New Ghoul in School S5PPAU = PSA World Tour Squash 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: 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 Batman 2: DC Super Heroes 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 S7EE52 = Transformers: Ultimate Battle Edition 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 S7LPKM = Let's Sing @ Radio Italia 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 SAOEVZ = Monster High: Ghoul Spirit SAOP78 = Monster High: Ghoul Spirit SAOXVZ = 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 SB3EUD = Sengoku Basara: Samurai Heroes Undub 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 SCLE01 = Cliff Super Mario Bros. Wii SCLJ01 = Cliff Super Mario Bros. Wii SCLP01 = Cliff Super Mario Bros. Wii 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! SDEPGT = 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 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 Adventure 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 SDUEO1 = DU Super Mario Bros. : DU Edition 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 SERJ4Q = 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 = 家庭训练机 梦幻主题ä¹å›­(欧) SFEPYF = Fit Music 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 SFRE01 = Super Mario Bros. Frozen Edition SFRJ01 = Super Mario Bros. Frozen Edition SFRP01 = Super Mario Bros. Frozen Edition 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 SGBPGT = 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 SH9PNJ = 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 SIIK01 = 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 v2.0 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 SJNE41 = Just Dance 2016 SJNP41 = Just Dance 2016 SJOE41 = Just Dance 2014 SJOP41 = Just Dance 2014 SJPE78 = Jeopardy! SJQEPZ = Jewel Quest Trilogy SJQPGR = Jewel Quest Trilogy SJREA4 = Def Jam Rapstar SJRPA4 = Def Jam Rapstar SJRXA4 = Def Jam Rapstar SJRYA4 = 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 SK3EUD = Trauma Team Undub SK4E52 = Shrek Forever After SK4P52 = Shrek Forever After SK5PY1 = Kylie Sing & Dance SK6KJD = K-POP Dance Festival SK7EVZ = Disney Violetta: Rhythm & Music SK7PVZ = Disney Violetta: Rhythm & Music SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8I52 = 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 SKNE52 = Skylanders: SuperChargers Racing SKNP52 = Skylanders: SuperChargers Racing 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 SKYY52 = 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 SL2PUD = Project Zero 2: Wii Edition Undub SL3ENR = Dragon's Lair Trilogy SL4PAF = Los 40 Principales Karaoke Party SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = The Last Airbender SLAP78 = The Last Airbender SLAX78 = The Last Airbender: Special Edition SLAZ78 = The Last Airbender: Toys R Us Special Edition SLBE01 = MLG Super Luigi Bros Wii SLBJ01 = MLG Super Luigi Bros. Wii SLBP01 = MLG Super Luigi Bros. Wii 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 SLGEYG = Let's Sing 2016 SLGPKM = Let's Sing 2016 SLHEWR = LEGO Harry Potter: Years 5-7 SLHPWR = LEGO Harry Potter: Years 5-7 SLIE52 = Little League World Series Baseball: Double Play SLJPKM = Let's Sing 8 - Spanish Version SLKPKM = Let’s Sing 2016 : Hits Français SLLEWW = Lucha Libre AAA: Héroes del Ring SLMPWL = 40 Principales Karaoke Party Vol. 2 SLNP7M = The Voice 3 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 SMNE14 = New Super Mario Bros. Wii: Pain Coins SMNE15 = Newer Super Mario Bros. 7 SMNE20 = New Super Mario Bros. H SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE31 = New Super Mario Bros. Wii - Other World 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 SMNE44 = Go Go Mario SMNE45 = Lemmy's Winter Palace SMNE46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNE47 = The New Special Road SMNE48 = True Mario Bros. SMNE49 = New Super Mario Bros. Wii - MSMKW Pack SMNE50 = New Super Mario Bros. Wii - Power Tower Pack SMNE51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNE52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNE53 = New Super Mario Bros. Wii - Kid Edition SMNE54 = New Super Mario Bros. Wii - The Next Levels 2 SMNE55 = New Super Mario Bros. Wii - Lava Mod Pack SMNE56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNE57 = Mario's Big Adventure SMNE58 = Wario's Cave SMNE59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNE60 = Remixed Super Mario Bros. Wii SMNE61 = New Super Summer Vacation SMNE62 = New Super Bowser Wii SMNE65 = Ghostly Super Ghost Boos Wii SMNE66 = The Legend of Yoshi SMNE67 = Larsenv Super Mario Collection SMNE68 = The Legend of Yoshi DLC SMNE69 = Revised Super Mario Bros. Wii SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNERE = Retro Mario Bros. SMNERV = RVLution 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 SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZY = Super Mario Skyland 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 SMNJ14 = New Super Mario Bros. Wii: Pain Coins SMNJ15 = Newer Super Mario Bros. 7 SMNJ20 = New Super Mario Bros. H SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ31 = New Super Mario Bros. Wii - Other World 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 SMNJ44 = Go Go Mario SMNJ45 = Lemmy's Winter Palace SMNJ46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNJ47 = The New Special Road SMNJ48 = True Mario Bros. SMNJ49 = New Super Mario Bros. Wii - MSMKW Pack SMNJ50 = New Super Mario Bros. Wii - Power Tower Pack SMNJ51 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ53 = New Super Mario Bros. Wii - Kid Edition SMNJ54 = New Super Mario Bros. Wii - The Next Levels 2 SMNJ55 = New Super Mario Bros. Wii - Lava Mod Pack SMNJ56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNJ57 = Mario's Big Adventure SMNJ58 = Wario's Cave SMNJ59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNJ60 = Remixed Super Mario Bros. Wii SMNJ61 = New Super Summer Vacation SMNJ62 = New Super Bowser Wii SMNJ65 = Ghostly Super Ghost Boos Wii SMNJ66 = The Legend of Yoshi SMNJ67 = Larsenv Super Mario Collection SMNJ68 = The Legend of Yoshi DLC SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJRE = Retro Mario Bros. SMNJRV = RVLution 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 SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZY = Super Mario Skyland 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 SMNP14 = New Super Mario Bros. Wii: Pain Coins SMNP15 = Newer Super Mario Bros. 7 SMNP20 = New Super Mario Bros. H SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP31 = New Super Mario Bros. Wii - Other World 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 SMNP44 = Go Go Mario SMNP45 = Lemmy's Winter Palace SMNP46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNP47 = The New Special Road SMNP48 = True Mario Bros. SMNP49 = New Super Mario Bros. Wii - MSMKW Pack SMNP50 = New Super Mario Bros. Wii - Power Tower Pack SMNP51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNP52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNP53 = New Super Mario Bros. Wii - Kid Edition SMNP54 = New Super Mario Bros. Wii - The Next Levels 2 SMNP55 = New Super Mario Bros. Wii - Lava Mod Pack SMNP56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNP57 = Mario's Big Adventure SMNP58 = Wario's Cave SMNP59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNP60 = Remixed Super Mario Bros. Wii SMNP61 = New Super Summer Vacation SMNP62 = New Super Bowser Wii SMNP65 = Ghostly Super Ghost Boos Wii SMNP66 = The Legend of Yoshi SMNP67 = Larsenv Super Mario Collection SMNP68 = The Legend of Yoshi DLC SMNP77 = New Super Mario Bros. Wii Arcadia 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 SMNPO1 = New Super Mario Custom Edition SMNPRE = Retro Mario Bros. SMNPRV = RVLution 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 SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZY = Super Mario Skyland 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 SO3EUD = Rune Factory: Tides of Destiny Undub SO3J99 = Rune Factory: Oceans SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg 2 SOCE4Z = Deadliest Catch: Sea of Chaos SODPYK = The Explorer and the Mystery of the Diamond Scarab 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 SOME02 = Rhythm Heaven Fever Repainted SOMJ01 = Minna no Rhythm Tengoku SOMK01 = Rhythm World 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 = 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 & 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 = Mama's 2-Pack SQKK01 = Mama's 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 SQWE52 = The Voice: I Want You 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 SROENS = Rodea the Sky Soldier SROJQC = Tenkuu no Kishi Rodea SROKQC = Rodea the Sky Soldier SROPNS = Rodea the Sky Soldier 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 SSPJGD = 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 SSUPLR = 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 SVCPXT = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVEPAF = DreamWorks The Croods: Prehistoric Party! & Rise of the Guardians: Combo Pack 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 SVQEVZ = Barbie and Her Sisters: Puppy Rescue SVQPVZ = Barbie and Her Sisters: Puppy Rescue 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 SX3PUD = Pandora's Tower Undub 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 SX9PRV = The Voice Vol. 2 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 SY7PKM = Let's Sing 7 - Spanish Version 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 SZ7E41 = Just Dance 2017 SZ7P41 = Just Dance 2017 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: 20170813134833) 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 = TsÌ„shin 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 WFQE = Frogger: Hyper Arcade Edition 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: 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 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 WKJE = Karaoke Joysound 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 WMH1 = Mother 1+2+3 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 WN64 = Nintendo 64 Forwarder 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 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: Ikuzo! Arashi 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: Susume! Honoo 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 = Pokémon Rumble (Demo) XHAP = Pokémon 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-3.01a/share/titles.txt0000644000175000017500000110473113363642463015357 0ustar michaelmichael010E01 = Wii Backup Disc v1.31 301E01 = GameCube Service Disc 9XGX = SNES9xGX 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... CBIEE9 = Harvest Moon: Pride Parade 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 CGHE52 = Guitar Hero 2K16 (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.2 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.2 CS9PZZ = StarSing : Pop Hits 9 v1.0 CSAP00 = StarSing : '80s Volume 3 v2.2 CSAPZZ = StarSing : Best of Goldman v1.0 CSBP00 = StarSing : '90s Volume 2 v2.2 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 v2.0 CSFP00 = StarSing : Pop Hits 6 v2.0 CSGP00 = StarSing : Chansons Magiques de Disney v2.0 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = StarSing : Pop Hits 7 v2.0 CSJP00 = StarSing : Après-Ski Party v2.0 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 v2.0 CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = StarSing : Génériques TV v2.1 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.1 CT9P00 = StarSing : Pop Hits 9 v2.0 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.2 CTNP00 = StarSing : Pop Hits 10 v2.0 CTOP00 = StarSing : The Beatles Volume 2 v2.1 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 v2.0 CTUP00 = StarSing : Rihanna v2.0 CTVP00 = StarSing : Lady GaGa v1.1 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CTZP00 = StarSing : Volume 3 v1.0 CU0P00 = StarSing : Retro Volume 3 v1.0 CU1P00 = StarSing : Girls v1.0 CU2P00 = StarSing : Volume 4 v1.1 CU3P00 = StarSing : Retro Volume 4 v1.1 CU4P00 = StarSing : Retro Volume 5 v1.0 CU5P00 = StarSing : International Volume 4 v1.0 CU6P00 = StarSing : Volume 5 v1.0 CU7P00 = StarSing : Retro Volume 6 v1.0 CU8P00 = StarSing : Volume 6 v1.0 CU9P00 = StarSing : Volume 7 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 = B.L.I.N.D. 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 = WAD Batch Installer 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: Scorched Earth 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 = Monthly Nintendo Shop Demo - 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: A Hard Days Night 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 DBSBT3 = Dragon Ball Budokai Tenkaichi 3 Version Latino 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. Brawl: 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 DN6A = Not64 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 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 DTZJ08 = Takarajima Z Barbaros' Treasure (Demo) 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 DWEJA4 = Winning Eleven PLAY MAKER 2008 (Demo) 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 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 Shodown 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 Shodown EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen EAEP = Samurai Shodown 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 Shodown 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 EAZP = World Heroes Perfect EB2E = Real Bout Fatal Fury Special EB2J = Real Bout Garou Densetsu Special EB2P = Real Bout Fatal Fury Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB5P = 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 EBGP = 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 EBSP = The Path of the Warrior: Art of Fighting 3 EBTJ = Crossed Swords EBUE = 2020 Super Baseball EBUJ = Super Baseball 2020 EBUP = 2020 Super Baseball 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 ECAP = Real Bout Fatal Fury 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECCP = 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 ECGP = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECHP = The King of Fighters '98 ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECIP = 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 II 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 III 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 JingÌ„ji SaburÌ„: Shinjuku Ch̄̄ KÌ„en 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 FERP = Zoda’s Revenge: StarTropics II 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 FF5P = Double Dragon II: 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 G2DJB2 = Digimon Battle Chronicle 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 & 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 G2XJ8P = Sonic Gems Collection G2XP8P = Sonic Gems Collection G3AD69 = The Lord of the Rings: The Third Age G3AE69 = The Lord of the Rings: The Third Age G3AF69 = The Lord of the Rings: The Third Age G3AP69 = The Lord of the Rings: The Third Age G3AS69 = The 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 G96P01 = Interactive Multi-Game Demo Disc - November 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 G9RJ7D = Crash Bandicoot Gacchanko World 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 GA3J51 = 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 GAZJ13 = Harry Potter to Azkaban no Shuujin 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 GBMJ7F = 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 GBRJ18 = Bloody Roar Extreme GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSJ8P = Beach Spikers: Virtua Beach Volleyball GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTJA7 = Bakuten Shoot Beyblade 2002: Nettou! Magne Tag 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 = Pokémon Colosseum GC6P01 = Pokémon Colosseum GC7PNK = Cocoto Platform Jumper GC8JA4 = Crash Bandicoot: Bakusou! Nitro Kart GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBJA4 = Crash Bandicoot 4: Sakuretsu! Majin Power 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 Complete 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 GCTJ8P = 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 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 Arena 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 = 007: Everything or Nothing GENF69 = James Bond 007: Everything or Nothing GENP69 = James Bond 007: Everything Or Nothing GENS69 = James Bond 007: Everything or Nothing GEOE08 = Capcom vs. SNK 2 EO GEOJ08 = Capcom vs. SNK 2 EO: Millionaire Fighting 2001 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 GEZJ8P = 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 GF4I52 = Fantastic 4 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 GFIJ13 = 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 GG4J08 = 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 GH4J13 = Harry Potter to Honoo no Goblet 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 GHLJ13 = Harry Potter to Kenja no Ishi GHLJ69 = Harry Potter to Kenja no Ishi GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Philosopher'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 GHSJ13 = Harry Potter to Himitsu no Heya 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 GJND78 = Jimmy Neutron: Boy Genius 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 = The Lord of the Rings: The Return of the King GKLE69 = The Lord of the Rings: The Return of the King GKLF69 = Lord of the Rings: The Return of the King GKLI69 = The Lord of the Rings: The Return of the King GKLJ69 = The Lord of the Rings: The Return of the King GKLP69 = The Lord of the Rings: The Return of the King GKLS69 = The 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's Airride GKYP01 = Kirby Air Ride GKZD54 = Codename: Kids Next Door - Operation: V.I.D.E.O.G.A.M.E. 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 = The Lord of the Rings: The Two Towers GLOE69 = The Lord of the Rings: The Two Towers GLOF69 = The Lord of the Rings: The Two Towers GLOI69 = The Lord of the Rings: The Two Towers GLOP69 = The 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 Hoffman's 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 GOTJB2 = One Piece: Treasure Battle! 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 GQ4D78 = SpongeBob SquarePants: Creature from the Krusty Krab 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 GQCI52 = 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 GRJPAF = R: Racing Evolution 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 GSMJ08 = Spider-Man: The Movie 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 Squadron II: Rogue Leader GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = Star Wars Rogue Squadron II GSWP64 = Star Wars Rogue Squadron II: Rogue Leader 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 GVS32E = Virtua Striker 3 Ver. 2002 GVS32J = Virtua Striker 3 Ver.2002 (Triforce) GVS45E = Virtua Striker 4 GVS45J = Virtua Striker 4 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 = James Bond 007 in 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 GWEJ51 = 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 GX2E01 = Pokemon XG: Next Gen 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 = Pokémon 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 HADE = Internet Channel HADJ = Internet Channel HADP = Internet Channel HAFE = Forecast Channel HAFJ = Forecast Channel HAFP = Forecast 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 no Tomo Channel G Guide for Wii HBWE01 = New Super Mario Bros. Wii: Hellboy Edition HC3J = USB Flash Optimization HC4E = Crunchyroll HC4P = Crunchyroll 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 HCFJ = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Wii Speak Channel HCGE = Wii + Internet HCGJ = Wii + Internet HCGP = Wii + Internet HCHJ = Demae Channel HCIJ = Wii no Ma HCJP = BBC iPlayer Channel HCLE = Netflix HCLP = Netflix HCMP = Kirby TV Channel 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 JCNP = 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 E.D.F.: 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 JDNP = 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 = KyÌ„yaku Megami Tensei: Megami Tensei I・II JODI = Homebrew Channel JOUE01 = New Super Mario Bros. Wii 10 The Journey KLSEXJ = The Last Story (NTSC-U, Japanese Audio) 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 MB3L = 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 MK7P41 = Mario Kart 7 Wii 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 = Pokémon 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 NTLC = Super Mario 64 Multiplayer 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 = Pokémon 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 PGPJB2 = SD Gundam Trial 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: KÌ„kÌ„ YakyÌ„ 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 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 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 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 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 R7FEUD = Final Fantasy Fables: Chocobo's Dungeon Undub 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! R7MPFR = Musiic Party: Rock the House 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) 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 = Sugoro Chronicle: Migite ni Ken o Hidarite ni Saikoro o 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 RDXE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino Beta 3 RDXJ18 = Deca Sporta RDXKA4 = Deca Sporta RDXP18 = Sports Island RDYEGN = CID: The Dummy RDZE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino 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 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 = 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 RFEPUD = Fire Emblem: Radian Dawn Undub 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 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 RFNE = Wii Fit Channel 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 RFPE = Wii Fit Plus Channel 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 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 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 RGWX = Rabbids Channel RGXE5D = Game Party RGXEFN = Guitar Hero III Custom: Meteo Last Custom RGXEWR = Game Party 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 RK2EUD = Trauma Center: New Blood Undub 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 RKDEUD = Trauma Center: Second Opinion Undub RKDJEB = Trauma Center: Second Opinion RKDJG9 = Kamen Rider: Climax Heroes W RKDP01 = 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 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 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 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) RMCE = Mario Kart Channel RMCJ01 = Mario Kart Wii RMCJ12 = Wiimms MKW Fun 2011-11 RMCJ30 = Wiimms MKW-Fun 2015-12.jap RMCJ31 = Wiimms MKW-Fun 2016-02.jap RMCJ32 = Wiimms MKW-Fun 2016-07.jap RMCJ33 = Wiimms MKW-Fun 2016-10.jap RMCJ34 = Wiimms MKW-Fun 2017-05.jap RMCJ64 = Peach Kart 8 RMCJ76 = Pro CT Pack RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCJL1 = Luma's CT Pack 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 RMCP27 = Wiimms MKW-Fun 2015-03.pal RMCP28 = Wiimms MKW Retro 2015-05.pal RMCP29 = Wiimms MKW-Fun 2015-08.pal RMCP30 = Wiimms MKW-Fun 2015-12.pal RMCP31 = Wiimms MKW-Fun 2016-02.pal RMCP32 = Wiimms MKW-Fun 2016-07.pal RMCP33 = Wiimms MKW-Fun 2016-10.pal RMCP34 = Wiimms MKW-Fun 2017-05.pal RMCP64 = Peach Kart 8 RMCP76 = Pro CT Pack RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCPL1 = Luma's CT Pack 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 RNEEUD = Naruto Shippuden: Clash of Ninja Revolution 3 Undub 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 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 = Ì„kami ROWJ08 = Ì„kami ROWP08 = Ì„kami 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 RPJEUD = Arc Rise Fantasia Undub 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 RR2XUG = Extreme Truck Racing 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 SaikyÌ„ 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 = Marlan Project M 3.6 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 2 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 RSBE43 = Super Smash Bros. Brawl: MASTERLINKX's Custom Pack RSBE44 = Super Smash Bros. Brawl: Shadow Version RSBE45 = Super Smash Bros. Brawl: Shock44's Custom Build RSBE46 = Super Smash Bros. Brawl: DragonD101's Texture Pack RSBE47 = Super Smash Bros. Brawl: XChosen1's Texture Pack RSBE49 = Super Smash Bros. Brawl: Water Block Edition RSBE50 = Super Smash Bros. Project U: Ultra Version RSBEAA = Marvel and Capcom vs Super Smash Bros. 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 RSBEDH = Super Smash Bros. Brawl Dark Hole/D.A.R.S. RSBEDT = Super Smash Bros. Ultimate Dark Phoenix: Tournament Edition RSBEN1 = Super Smash Bros. Project M RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBETE = Super Smash Bros. Legacy TE RSBEWM = Super Smash Bros. Project M Wi-Fi RSBEXP = Super Smash Bros. Legacy XP RSBJ01 = Dairantou Smash Brothers X RSBK01 = Dairantou Smash Brothers X RSBP01 = Super Smash Bros. Brawl RSBP02 = Master4Robin's Super Smash Bros. Brawl Hack Pack 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 Spirits: Rokuban Shoubu 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 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 RT4EUD = Tales of Symphonia: Dawn of the New World Undub 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 Le 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 = Wario Land 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 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 RYIPNK = SPRay RYJPTV = Princess Lillifee's Magic Fairy RYKEAF = We Ski & Snowboard RYKJAF = Family Ski: World Ski & Snowboard RYKKAF = We 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 S32DJW = The Voice of Germany: I Want You S32PJW = The Voice S32SJW = La Voz: Quiero tu voz S33DKM = Let's Sing 2017 - Mit Deutschen Hits! S33FKM = Let's Sing 2017 : Hits Français et Internationaux S33PKM = Let's Sing 2017 S33SKM = Let's Sing 9 - Spanish Version S3AE5G = Attack of the Movies 3D S3APGT = 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 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 S5DE41 = Just Dance Disney Party 2 S5DP41 = Just Dance Disney Party 2 S5KJAF = Taiko no Tatsujin Wii: Chou Goukaban S5MEVZ = Monster High: New Ghoul in School S5MPVZ = Monster High: New Ghoul in School S5PPAU = PSA World Tour Squash 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: 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 Batman 2: DC Super Heroes 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 S7EE52 = Transformers: Ultimate Battle Edition 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 S7LPKM = Let's Sing @ Radio Italia 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 SAOEVZ = Monster High: Ghoul Spirit SAOP78 = Monster High: Ghoul Spirit SAOXVZ = 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 SB3EUD = Sengoku Basara: Samurai Heroes Undub 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 SCLE01 = Cliff Super Mario Bros. Wii SCLJ01 = Cliff Super Mario Bros. Wii SCLP01 = Cliff Super Mario Bros. Wii 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! SDEPGT = 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 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 Adventure 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 SDUEO1 = DU Super Mario Bros. : DU Edition 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 SERJ4Q = 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 SFEPYF = Fit Music 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 SFRE01 = Super Mario Bros. Frozen Edition SFRJ01 = Super Mario Bros. Frozen Edition SFRP01 = Super Mario Bros. Frozen Edition 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 SGBPGT = 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 SH9PNJ = 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 SIIK01 = 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 v2.0 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 SJNE41 = Just Dance 2016 SJNP41 = Just Dance 2016 SJOE41 = Just Dance 2014 SJOP41 = Just Dance 2014 SJPE78 = Jeopardy! SJQEPZ = Jewel Quest Trilogy SJQPGR = Jewel Quest Trilogy SJREA4 = Def Jam Rapstar SJRPA4 = Def Jam Rapstar SJRXA4 = Def Jam Rapstar SJRYA4 = 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 SK3EUD = Trauma Team Undub SK4E52 = Shrek Forever After SK4P52 = Shrek Forever After SK5PY1 = Kylie Sing & Dance SK6KJD = K-POP Dance Festival SK7EVZ = Disney Violetta: Rhythm & Music SK7PVZ = Disney Violetta: Rhythm & Music SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8I52 = 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 SKNE52 = Skylanders: SuperChargers Racing SKNP52 = Skylanders: SuperChargers Racing 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 SKYY52 = 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 SL2PUD = Project Zero 2: Wii Edition Undub SL3ENR = Dragon's Lair Trilogy SL4PAF = Los 40 Principales Karaoke Party SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = The Last Airbender SLAP78 = The Last Airbender SLAX78 = The Last Airbender: Special Edition SLAZ78 = The Last Airbender: Toys R Us Special Edition SLBE01 = MLG Super Luigi Bros Wii SLBJ01 = MLG Super Luigi Bros. Wii SLBP01 = MLG Super Luigi Bros. Wii 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 SLGEYG = Let's Sing 2016 SLGPKM = Let's Sing 2016 SLHEWR = LEGO Harry Potter: Years 5-7 SLHPWR = LEGO Harry Potter: Years 5-7 SLIE52 = Little League World Series Baseball: Double Play SLJPKM = Let's Sing 8 - Spanish Version SLKPKM = Let’s Sing 2016 : Hits Français SLLEWW = Lucha Libre AAA: Héroes del Ring SLMPWL = 40 Principales Karaoke Party Vol. 2 SLNP7M = The Voice 3 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 SMNE14 = New Super Mario Bros. Wii: Pain Coins SMNE15 = Newer Super Mario Bros. 7 SMNE20 = New Super Mario Bros. H SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE31 = New Super Mario Bros. Wii - Other World 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 SMNE44 = Go Go Mario SMNE45 = Lemmy's Winter Palace SMNE46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNE47 = The New Special Road SMNE48 = True Mario Bros. SMNE49 = New Super Mario Bros. Wii - MSMKW Pack SMNE50 = New Super Mario Bros. Wii - Power Tower Pack SMNE51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNE52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNE53 = New Super Mario Bros. Wii - Kid Edition SMNE54 = New Super Mario Bros. Wii - The Next Levels 2 SMNE55 = New Super Mario Bros. Wii - Lava Mod Pack SMNE56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNE57 = Mario's Big Adventure SMNE58 = Wario's Cave SMNE59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNE60 = Remixed Super Mario Bros. Wii SMNE61 = New Super Summer Vacation SMNE62 = New Super Bowser Wii SMNE65 = Ghostly Super Ghost Boos Wii SMNE66 = The Legend of Yoshi SMNE67 = Larsenv Super Mario Collection SMNE68 = The Legend of Yoshi DLC SMNE69 = Revised Super Mario Bros. Wii SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNERE = Retro Mario Bros. SMNERV = RVLution 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 SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZY = Super Mario Skyland 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 SMNJ14 = New Super Mario Bros. Wii: Pain Coins SMNJ15 = Newer Super Mario Bros. 7 SMNJ20 = New Super Mario Bros. H SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ31 = New Super Mario Bros. Wii - Other World 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 SMNJ44 = Go Go Mario SMNJ45 = Lemmy's Winter Palace SMNJ46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNJ47 = The New Special Road SMNJ48 = True Mario Bros. SMNJ49 = New Super Mario Bros. Wii - MSMKW Pack SMNJ50 = New Super Mario Bros. Wii - Power Tower Pack SMNJ51 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ53 = New Super Mario Bros. Wii - Kid Edition SMNJ54 = New Super Mario Bros. Wii - The Next Levels 2 SMNJ55 = New Super Mario Bros. Wii - Lava Mod Pack SMNJ56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNJ57 = Mario's Big Adventure SMNJ58 = Wario's Cave SMNJ59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNJ60 = Remixed Super Mario Bros. Wii SMNJ61 = New Super Summer Vacation SMNJ62 = New Super Bowser Wii SMNJ65 = Ghostly Super Ghost Boos Wii SMNJ66 = The Legend of Yoshi SMNJ67 = Larsenv Super Mario Collection SMNJ68 = The Legend of Yoshi DLC SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJRE = Retro Mario Bros. SMNJRV = RVLution 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 SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZY = Super Mario Skyland 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 SMNP14 = New Super Mario Bros. Wii: Pain Coins SMNP15 = Newer Super Mario Bros. 7 SMNP20 = New Super Mario Bros. H SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP31 = New Super Mario Bros. Wii - Other World 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 SMNP44 = Go Go Mario SMNP45 = Lemmy's Winter Palace SMNP46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNP47 = The New Special Road SMNP48 = True Mario Bros. SMNP49 = New Super Mario Bros. Wii - MSMKW Pack SMNP50 = New Super Mario Bros. Wii - Power Tower Pack SMNP51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNP52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNP53 = New Super Mario Bros. Wii - Kid Edition SMNP54 = New Super Mario Bros. Wii - The Next Levels 2 SMNP55 = New Super Mario Bros. Wii - Lava Mod Pack SMNP56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNP57 = Mario's Big Adventure SMNP58 = Wario's Cave SMNP59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNP60 = Remixed Super Mario Bros. Wii SMNP61 = New Super Summer Vacation SMNP62 = New Super Bowser Wii SMNP65 = Ghostly Super Ghost Boos Wii SMNP66 = The Legend of Yoshi SMNP67 = Larsenv Super Mario Collection SMNP68 = The Legend of Yoshi DLC SMNP77 = New Super Mario Bros. Wii Arcadia 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 SMNPO1 = New Super Mario Custom Edition SMNPRE = Retro Mario Bros. SMNPRV = RVLution 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 SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZY = Super Mario Skyland 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 SO3EUD = Rune Factory: Tides of Destiny Undub SO3J99 = Rune Factory: Oceans SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg 2 SOCE4Z = Deadliest Catch: Sea of Chaos SODPYK = The Explorer and the Mystery of the Diamond Scarab 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 SOME02 = Rhythm Heaven Fever Repainted SOMJ01 = Minna no Rhythm Tengoku SOMK01 = Rhythm World 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 = 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 & 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 = Mama's 2-Pack SQKK01 = Mama's 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 SQWE52 = The Voice: I Want You 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 SROENS = Rodea the Sky Soldier SROJQC = Tenkuu no Kishi Rodea SROKQC = Rodea the Sky Soldier SROPNS = Rodea the Sky Soldier 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 SSPJGD = 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 SSUPLR = 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 SVCPXT = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVEPAF = DreamWorks The Croods: Prehistoric Party! & Rise of the Guardians: Combo Pack 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 SVQEVZ = Barbie and Her Sisters: Puppy Rescue SVQPVZ = Barbie and Her Sisters: Puppy Rescue 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 SX3PUD = Pandora's Tower Undub 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 SX9PRV = The Voice Vol. 2 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 SY7PKM = Let's Sing 7 - Spanish Version 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 SZ7E41 = Just Dance 2017 SZ7P41 = Just Dance 2017 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: 20170813130234) 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 = TsÌ„shin 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 WFQE = Frogger: Hyper Arcade Edition 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: 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 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 WKJE = Karaoke Joysound 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 WMH1 = Mother 1+2+3 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 WN64 = Nintendo 64 Forwarder 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 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: Ikuzo! Arashi 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: Susume! Honoo 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 = Pokémon Rumble (Demo) XHAP = Pokémon 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-3.01a/share/titles-zhtw.txt0000644000175000017500000114540113363642463016350 0ustar michaelmichael010E01 = Wii 備份光碟 v1.31(美) 301E01 = GameCube Service Disc 9XGX = SNES9x超任模擬器(美) 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 = 自制 å‰ä»–英雄 下載版(美) CBIEE9 = Harvest Moon: Pride Parade 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 自製版(?) CGHE52 = Guitar Hero 2K16 (Custom) 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.2 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.2 CS9PZZ = StarSing : Pop Hits 9 v1.0 CSAP00 = StarSing : '80s Volume 3 v2.2 CSAPZZ = StarSing : Best of Goldman v1.0 CSBP00 = StarSing : '90s Volume 2 v2.2 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 v2.0 CSFP00 = StarSing : Pop Hits 6 v2.0 CSGP00 = StarSing : Chansons Magiques de Disney v2.0 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = StarSing : Pop Hits 7 v2.0 CSJP00 = StarSing : Après-Ski Party v2.0 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 v2.0 CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = StarSing : Génériques TV v2.1 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.1 CT9P00 = StarSing : Pop Hits 9 v2.0 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.2 CTNP00 = StarSing : Pop Hits 10 v2.0 CTOP00 = StarSing : The Beatles Volume 2 v2.1 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 v2.0 CTUP00 = StarSing : Rihanna v2.0 CTVP00 = StarSing : Lady GaGa v1.1 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CTZP00 = StarSing : Volume 3 v1.0 CU0P00 = StarSing : Retro Volume 3 v1.0 CU1P00 = StarSing : Girls v1.0 CU2P00 = StarSing : Volume 4 v1.1 CU3P00 = StarSing : Retro Volume 4 v1.1 CU4P00 = StarSing : Retro Volume 5 v1.0 CU5P00 = StarSing : International Volume 4 v1.0 CU6P00 = StarSing : Volume 5 v1.0 CU7P00 = StarSing : Retro Volume 6 v1.0 CU8P00 = StarSing : Volume 6 v1.0 CU9P00 = StarSing : Volume 7 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 = B.L.I.N.D. 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 = WAD Batch Installer 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: Scorched Earth 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 = Monthly Nintendo Shop Demo - 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: A Hard Days Night 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 DBSBT3 = Dragon Ball Budokai Tenkaichi 3 Version Latino 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. Brawl: 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 DN6A = Not64 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模擬器(æ­) 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 DTZJ08 = Takarajima Z Barbaros' Treasure (Demo) 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地çƒ(æ­) DWEJA4 = Winning Eleven PLAY MAKER 2008 (Demo) 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 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 Shodown 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 Shodown EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen EAEP = Samurai Shodown 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 Shodown 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 EAZP = World Heroes Perfect EB2E = Real Bout Fatal Fury Special EB2J = Real Bout Garou Densetsu Special EB2P = Real Bout Fatal Fury Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB5P = 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 EBGP = 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 EBSP = The Path of the Warrior: Art of Fighting 3 EBTJ = Crossed Swords EBUE = 2020 Super Baseball EBUJ = Super Baseball 2020 EBUP = 2020 Super Baseball 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 ECAP = Real Bout Fatal Fury 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECCP = 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 ECGP = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECHP = The King of Fighters '98 ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECIP = 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 II 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 III 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 JingÌ„ji SaburÌ„: Shinjuku Ch̄̄ KÌ„en 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 FERP = Zoda’s Revenge: StarTropics II 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 FF5P = Double Dragon II: 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 G2DJB2 = Digimon Battle Chronicle 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 & 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 G2XJ8P = Sonic Gems Collection G2XP8P = Sonic Gems Collection G3AD69 = The Lord of the Rings: The Third Age G3AE69 = The Lord of the Rings: The Third Age G3AF69 = The Lord of the Rings: The Third Age G3AP69 = The Lord of the Rings: The Third Age G3AS69 = The 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 G96P01 = Interactive Multi-Game Demo Disc - November 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 G9RJ7D = Crash Bandicoot Gacchanko World 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 GA3J51 = 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 GAZJ13 = Harry Potter to Azkaban no Shuujin 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 GBMJ7F = 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 GBRJ18 = Bloody Roar Extreme GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSJ8P = Beach Spikers: Virtua Beach Volleyball GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTJA7 = Bakuten Shoot Beyblade 2002: Nettou! Magne Tag 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 = Pokémon Colosseum GC6P01 = Pokémon Colosseum GC7PNK = Cocoto Platform Jumper GC8JA4 = Crash Bandicoot: Bakusou! Nitro Kart GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBJA4 = Crash Bandicoot 4: Sakuretsu! Majin Power 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 Complete 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 GCTJ8P = 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 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 Arena 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 = 007: Everything or Nothing GENF69 = James Bond 007: Everything or Nothing GENP69 = James Bond 007: Everything Or Nothing GENS69 = James Bond 007: Everything or Nothing GEOE08 = Capcom vs. SNK 2 EO GEOJ08 = Capcom vs. SNK 2 EO: Millionaire Fighting 2001 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 GEZJ8P = 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 GF4I52 = Fantastic 4 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 GFIJ13 = 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 GG4J08 = 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 GH4J13 = Harry Potter to Honoo no Goblet 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 GHLJ13 = Harry Potter to Kenja no Ishi GHLJ69 = Harry Potter to Kenja no Ishi GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Philosopher'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 GHSJ13 = Harry Potter to Himitsu no Heya 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 GJND78 = Jimmy Neutron: Boy Genius 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 = The Lord of the Rings: The Return of the King GKLE69 = The Lord of the Rings: The Return of the King GKLF69 = Lord of the Rings: The Return of the King GKLI69 = The Lord of the Rings: The Return of the King GKLJ69 = The Lord of the Rings: The Return of the King GKLP69 = The Lord of the Rings: The Return of the King GKLS69 = The 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's Airride GKYP01 = Kirby Air Ride GKZD54 = Codename: Kids Next Door - Operation: V.I.D.E.O.G.A.M.E. 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 = The Lord of the Rings: The Two Towers GLOE69 = The Lord of the Rings: The Two Towers GLOF69 = The Lord of the Rings: The Two Towers GLOI69 = The Lord of the Rings: The Two Towers GLOP69 = The 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 Hoffman's 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 GOTJB2 = One Piece: Treasure Battle! 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 GQ4D78 = SpongeBob SquarePants: Creature from the Krusty Krab 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 GQCI52 = 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 GRJPAF = R: Racing Evolution 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 GSMJ08 = Spider-Man: The Movie 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 Squadron II: Rogue Leader GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = Star Wars Rogue Squadron II GSWP64 = Star Wars Rogue Squadron II: Rogue Leader 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 GVS32E = Virtua Striker 3 Ver. 2002 GVS32J = Virtua Striker 3 Ver.2002 (Triforce) GVS45E = Virtua Striker 4 GVS45J = Virtua Striker 4 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 = James Bond 007 in 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 GWEJ51 = 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 GX2E01 = Pokemon XG: Next Gen 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 = Pokémon 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é »é“(æ­) HADE = 網絡頻é“(美) HADJ = Internet Channel HADP = 網絡頻é“(æ­) HAFE = 天氣頻é“(美) HAFJ = Forecast 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 no Tomo Channel G Guide for Wii HBWE01 = 超級瑪利æ­å…„弟Wii Hellboy Edition(美) HC3J = USB Flash Optimization HC4E = Crunchyroll HC4P = Crunchyroll 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 HCFJ = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Wii Speak Channel HCGE = Wii + Internet HCGJ = Wii + Internet HCGP = Wii + Internet HCHJ = Demae Channel HCIJ = Wii no Ma HCJP = BBC iPlayer Channel HCLE = Netflix系統安è£å…‰ç¢Ÿ(美) HCLP = Netflix HCMP = Kirby TV Channel 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 JCNP = 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 JDNP = 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 = KyÌ„yaku Megami Tensei: Megami Tensei I・II JODI = 自制頻é“(æ­) JOUE01 = New Super Mario Bros. Wii 10 The Journey KLSEXJ = The Last Story (NTSC-U, Japanese Audio) 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 MB3L = 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 = 自制 å”±å§ ä¸‹è¼‰ç‰ˆ(æ­) MK7P41 = Mario Kart 7 Wii 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 = Pokémon 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 NTLC = Super Mario 64 Multiplayer 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 PCSJ01 = Pokémon 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(美) PGPJB2 = SD Gundam Trial 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: KÌ„kÌ„ YakyÌ„ 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(æ—¥) 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 = 魔法飛çƒ(æ­) 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](æ—¥) 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](美) R7FEUD = Final Fantasy Fables: Chocobo's Dungeon Undub R7FJGD = 陸行鳥之ä¸å¯æ€è­°è¿·å®® å¿˜å»æ™‚間的迷宮[WiFi](æ—¥) R7FPGD = 陸行鳥之ä¸å¯æ€è­°è¿·å®® å¿˜å»æ™‚間的迷宮[WiFi](æ­) R7GEAF = 七é¾ç  天下第一大冒險(美) R7GJAF = 七é¾ç  天下第一大冒險(æ—¥) R7GPAF = 七é¾ç  天下第一大冒險(æ­) R7HE6K = 救兵總動員(美) R7IE69 = 魅力女孩俱樂部[平衡æ¿](美) R7IP69 = 魅力女孩俱樂部 ç¡è¡£æ´¾å°[平衡æ¿](æ­) R7KE6K = 岩石爆破(美) R7LP7J = 瑪格的困惑!(æ­) R7MPFR = éŸ³æ¨‚æ´¾å° æ–æ»¾æˆ¿é–“(æ­) 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(æ—¥) 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çš„åé …é‹å‹•(美) RDXE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino Beta 3 RDXJ18 = é‹å‹•大集錦 Wiiçš„åé …é‹å‹•(æ—¥) RDXKA4 = é‹å‹•大集錦 Wiiçš„åé …é‹å‹•(韓) RDXP18 = é‹å‹•大集錦 Wiiçš„åé …é‹å‹•(æ­) RDYEGN = 人å¶CID(美) RDZE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino 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 = 忌ç«èµ·è‰ 解明篇(æ—¥) 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 = è–ç«é™é­”錄 曉之女神(æ­) RFEPUD = Fire Emblem: Radian Dawn Undub RFFEGD = 太空戰士 æ°´æ™¶ç·¨å¹´å² æ™‚é–“çš„å…±é³´[WiFi](美) RFFJGD = 太空戰士 æ°´æ™¶ç·¨å¹´å² æ™‚é–“çš„å…±é³´[WiFi](æ—¥) RFFPGD = 太空戰士 æ°´æ™¶ç·¨å¹´å² æ™‚é–“çš„å…±é³´[WiFi](æ­) RFJJAF = 家庭賽馬(æ—¥) RFKE41 = 我的å¥åº·æ•™ç·´(美) RFKP41 = 我的å¥åº·æ•™ç·´(æ­) RFKX41 = 我的å¥åº·æ•™ç·´(X) RFLE69 = å‹çˆ†ç¾Žå¼è¶³çƒ09[WiFi](美) RFLP69 = å‹çˆ†ç¾Žå¼è¶³çƒ09[WiFi](æ­) RFLPWK = ç¾Žå¼æ©„欖çƒå¤§è¯ç›Ÿ09[WiFi](æ­) RFMJAF = è·æ£’家庭棒çƒå ´[WiFi](æ—¥) RFNE = Wii Fit Channel RFNJ01 = Wii塑身[平衡æ¿](æ—¥) RFNK01 = Wii塑身[平衡æ¿](韓) RFNP01 = Wii塑身[平衡æ¿](æ­) RFNW01 = Wii塑身 ç¹é«”中文版[平衡æ¿] RFOE52 = 蜘蛛人 敵å‹é›£è¾¨(美) RFOP52 = 蜘蛛人 敵å‹é›£è¾¨(æ­) RFOX52 = 蜘蛛人 敵å‹é›£è¾¨(X) RFPE = Wii Fit Plus Channel RFPJ01 = Wii塑身 加強版[平衡æ¿](æ—¥) RFPK01 = Wii塑身加強版[平衡æ¿](韓) RFPP01 = Wii塑身加強版[平衡æ¿](æ­) RFPR01 = Wii塑身加強版[平衡æ¿](ä¿„) RFPW01 = Wii塑身加強版 ç¹é«”中文版[平衡æ¿] RFQE69 = 釿‹³å‡ºæ“Š(美) RFQJ13 = 破相拳擊(æ—¥) RFQK69 = 破相拳擊(韓) RFQP69 = 釿‹³å‡ºæ“Š(æ­) RFRE5G = æ–æ“ºå›žè½‰å…¬åœ’(美) RFRJC0 = æ–æ“ºå›žè½‰å…¬åœ’(æ—¥) RFSEEB = 風塵英雄(美) RFSJ8P = ä¸å¯æ€è­°çš„è¿·å®® 風塵英雄3 機關宅邸的ç¡ç¾Žäºº(æ—¥) RFTE70 = 庭院美å¼è¶³çƒ(美) 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](æ­) RGWX = Rabbids Channel RGXE5D = éŠæˆ²æ´¾å°(美) RGXEFN = 自製 å‰ä»–英雄3 Meteo最終自製(美) RGXEWR = éŠæˆ²æ´¾å°(美) 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](美) RK2EUD = Trauma Center: New Blood Undub 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 = 超執刀 冿¬¡åŸ·åˆ€(美) RKDEUD = Trauma Center: Second Opinion Undub RKDJEB = 超執刀 冿¬¡åŸ·åˆ€(æ—¥) RKDJG9 = å‡é¢é¨Žå£« 巔峰英雄 W(æ—¥) RKDP01 = 超執刀 冿¬¡åŸ·åˆ€(æ­) 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 = 玩具兵大戰 倒霉戰士(美) RKYP7J = 玩具兵大戰 倒霉戰士(æ­) RKZEA4 = 迷失蔚è—Wii(美) RKZJA4 = 無人島求生記 Wii(æ—¥) RKZPA4 = 迷失蔚è—Wii(æ­) RL2E78 = 我的馴馬場(美) RL2HMN = Horse & Pony: My Riding Stables 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 = 幸é‹çš„路克 ç¨é—–西部(æ­) 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(æ—¥) RMCE = Mario Kart Channel RMCJ01 = 瑪利æ­è³½è»Š Wii(æ—¥) RMCJ12 = ç‘ªä¿æ­è³½è»ŠWii 自製版(2011-11 Wiimm)(æ—¥) RMCJ30 = Wiimms MKW-Fun 2015-12.jap RMCJ31 = Wiimms MKW-Fun 2016-02.jap RMCJ32 = Wiimms MKW-Fun 2016-07.jap RMCJ33 = Wiimms MKW-Fun 2016-10.jap RMCJ34 = Wiimms MKW-Fun 2017-05.jap RMCJ64 = Peach Kart 8 RMCJ76 = Pro CT Pack RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCJL1 = Luma's CT Pack 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 RMCP27 = Wiimms MKW-Fun 2015-03.pal RMCP28 = Wiimms MKW Retro 2015-05.pal RMCP29 = Wiimms MKW-Fun 2015-08.pal RMCP30 = Wiimms MKW-Fun 2015-12.pal RMCP31 = Wiimms MKW-Fun 2016-02.pal RMCP32 = Wiimms MKW-Fun 2016-07.pal RMCP33 = Wiimms MKW-Fun 2016-10.pal RMCP34 = Wiimms MKW-Fun 2017-05.pal RMCP64 = Peach Kart 8 RMCP76 = Pro CT Pack RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCPL1 = Luma's CT Pack 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](美) RNEEUD = Naruto Shippuden: Clash of Ninja Revolution 3 Undub 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(美) 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 = 弧光幻想曲(美) RPJEUD = Arc Rise Fantasia Undub 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(æ­) RR2XUG = è£è¼‰å¡è»Šç«¶è³½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 = Marlan Project M 3.6 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 2 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 RSBE43 = Super Smash Bros. Brawl: MASTERLINKX's Custom Pack RSBE44 = Super Smash Bros. Brawl: Shadow Version RSBE45 = Super Smash Bros. Brawl: Shock44's Custom Build RSBE46 = Super Smash Bros. Brawl: DragonD101's Texture Pack RSBE47 = Super Smash Bros. Brawl: XChosen1's Texture Pack RSBE49 = Super Smash Bros. Brawl: Water Block Edition RSBE50 = Super Smash Bros. Project U: Ultra Version RSBEAA = Marvel and Capcom vs Super Smash Bros. 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 RSBEDH = Super Smash Bros. Brawl Dark Hole/D.A.R.S. RSBEDT = Super Smash Bros. Ultimate Dark Phoenix: Tournament Edition RSBEN1 = Super Smash Bros. Project M RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBETE = Super Smash Bros. Legacy TE RSBEWM = Super Smash Bros. Project M Wi-Fi RSBEXP = Super Smash Bros. Legacy XP RSBJ01 = 任天堂明星大亂鬪X(æ—¥) RSBK01 = 任天堂明星大亂鬪X[WiFi](韓) RSBP01 = 任天堂明星大亂鬪X[WiFi](æ­) RSBP02 = Master4Robin's Super Smash Bros. Brawl Hack Pack 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 = 極地熊寶è²(美) RT2P7J = 極地熊寶è²(æ­) RT3E54 = å¯¦æ³æ¡Œçƒ(美) RT3JEL = å¯¦æ³æ¡Œçƒ(æ—¥) RT3P54 = å¯¦æ³æ¡Œçƒ(æ­) RT4EAF = 時空幻境 交響曲傳奇 拉塔特斯克的騎士(美) RT4EUD = Tales of Symphonia: Dawn of the New World Undub 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(美) 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 = 涂鴉王å­(美) RYIPNK = 涂鴉王å­(æ­) RYJPTV = 莉莉è²å…¬ä¸» 魔法å°ä»™å¥³(æ­) RYKEAF = 世界滑雪&滑雪æ¿[平衡æ¿](美) RYKJAF = 家庭滑雪:世界滑雪&滑雪æ¿(æ—¥) RYKKAF = We Ski & Snowboard 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(æ­) S32DJW = The Voice of Germany: I Want You S32PJW = The Voice S32SJW = La Voz: Quiero tu voz S33DKM = Let's Sing 2017 - Mit Deutschen Hits! S33FKM = Let's Sing 2017 : Hits Français et Internationaux S33PKM = Let's Sing 2017 S33SKM = Let's Sing 9 - Spanish Version S3AE5G = 3D電影大射擊(美) S3APGT = 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 S59E01 = 戰國無雙 3(美) S59JC8 = 戰國無雙 3(æ—¥) S59P01 = 戰國無雙 3(æ­) S5BETL = 回到未來(美) S5BPKM = Back to the Future: The Game S5DE41 = Just Dance Disney Party 2 S5DP41 = Just Dance Disney Party 2 S5KJAF = 太鼓é”人Wii 超豪è¯ç‰ˆ(æ—¥) S5MEVZ = Monster High: New Ghoul in School S5MPVZ = Monster High: New Ghoul in School S5PPAU = PSA World Tour Squash 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 Batman 2: DC Super Heroes S7APWR = 樂高è™è ä¿ 2 DC超級英雄(æ­) S7BE69 = æ£‹ç›¤éŠæˆ²(美) S7BP69 = æ£‹ç›¤éŠæˆ²(æ­) S7CJAF = å‡é¢é¨Žå£« 巔峰英雄 Fourze(æ—¥) S7DE52 = 憤怒的å°é³¥ï¼šæ˜Ÿçƒå¤§æˆ° S7DP52 = Angry Birds: Star Wars S7EE52 = Transformers: Ultimate Battle Edition 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 S7LPKM = Let's Sing @ Radio Italia 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 SAOEVZ = Monster High: Ghoul Spirit SAOP78 = 怪物美少女 å±é¬¼ç²¾éˆ(æ­) SAOXVZ = 怪物美少女 å±é¬¼ç²¾éˆ(æ­) 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(美) SB3EUD = Sengoku Basara: Samurai Heroes Undub 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奶酪é‹å‹•éŠæˆ²(美) SCLE01 = Cliff Super Mario Bros. Wii SCLJ01 = Cliff Super Mario Bros. Wii SCLP01 = Cliff Super Mario Bros. Wii 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 = 舞感(美) SDEPGT = 舞感(美) SDFE4Q = 迪斯尼想唱就唱 家庭版(美) SDFP4Q = 迪斯尼想唱就唱 家庭版(æ­) SDGE4Q = 迪斯尼全明星派å°(美) SDGP4Q = 迪斯尼全明星派å°(æ­) 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 = è—色å°ç²¾éˆ 舞蹈派å°(美) SDUEO1 = 新超級瑪利æ­å…„弟Wii DU版(æ­) 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 二人之力(æ­) SERJ4Q = Disney Epic Mickey 2: The Power of Two 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 SFEPYF = Fit Music SFGE69 = å­©ä¹‹å¯¶å®¶åº­éŠæˆ²ä¹‹å¤œ4 éŠæˆ²ç¯€ç›®(美) SFGP69 = Hasbro: Family Game Night 4 - The Game Show SFHEFP = 戶外活動åˆé›†(美) SFIE01 = 神秘案件檔案 ç™¾éˆæ³‰(美) SFIP01 = 神秘案件檔案(æ­) SFKEG9 = å®¶åº­èšæœƒ 歡樂瘦身(美) SFKPAF = å®¶åº­æ´¾å° æ­¡æ¨‚ç˜¦èº«(æ­) SFLDSV = 詛咒的復活節島(æ­) SFOEAF = 網絡食譜 çƒ¹é£ªå°æˆ°(美) SFPPFR = å¤¢å¹»è¶³çƒæ´¾å°(æ­) SFQE8P = 美國隊長 超級士兵(美) SFQP8P = 美國隊長 超級士兵(æ­) SFRDRV = å¥èº«é©åˆæ¨‚è¶£(æ­) SFRE01 = Super Mario Bros. Frozen Edition SFRJ01 = Super Mario Bros. Frozen Edition SFRP01 = Super Mario Bros. Frozen Edition 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(美) SGBPGT = Greg Hastings Paintball 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 = 希斯與利夫 ç«é€Ÿç‹‚飆(美) SH9PNJ = Heathcliff: The Fast and the Furriest 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](æ—¥) SIIK01 = Mario & Sonic at the London 2012 Olympic Games 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 v2.0 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[平衡æ¿](美) SJNE41 = Just Dance 2016 SJNP41 = Just Dance 2016 SJOE41 = Just Dance 2014 SJOP41 = 舞力全開 2014 SJPE78 = 智力競答(美) SJQEPZ = 寶石方塊三部曲(美) SJQPGR = 寶石方塊三部曲(美) SJREA4 = 說唱巨星(美) SJRPA4 = 說唱巨星(æ­) SJRXA4 = 說唱巨星(æ­) SJRYA4 = 說唱巨星(æ­) SJSEPK = 寵物營救(美) SJTP41 = Just Dance: Best Of SJUE20 = æé¾å¿«æ‰“(美) SJUPXT = æé¾å¿«æ‰“(美) SJVE20 = è‚–æ©ç´„ç¿°éœé«”æ“[平衡æ¿](美) SJWJA4 = 實æ³è¶³çƒ2010 è—æ­¦å£«çš„æŒ‘戰(æ—¥) SJXD41 = 舞力全開4(æ­) SJXE41 = 舞力全開4(美) SJXP41 = 舞力全開4(æ­) SJZE41 = 舞力全開 兒童版2(美) SJZP41 = 舞力全開 兒童版2(æ­) SK3EEB = 超執刀 外傷團隊(美) SK3EUD = Trauma Team Undub SK4E52 = å²ç‘žå…‹å¿«æ¨‚4神仙(美) SK4P52 = å²ç‘žå…‹å¿«æ¨‚4神仙(æ­) SK5PY1 = Kylie Sing & Dance SK6KJD = K-POP Dance Festival SK7EVZ = Disney Violetta: Rhythm & Music SK7PVZ = Disney Violetta: Rhythm & Music SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8I52 = 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(æ—¥) SKNE52 = Skylanders: SuperChargers Racing SKNP52 = Skylanders: SuperChargers Racing 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 = å°é¾æ–¯æ´¾ç¾…:巨人(æ­) SKYY52 = å°é¾æ–¯æ´¾ç¾…:巨人(æ­) SKYZ52 = å°é¾æ–¯æ´¾ç¾…:巨人(æ­) SKZE52 = 夢工廠超級明星賽(美) SKZP52 = 夢工廠超級明星賽(æ­) SL2J01 = é›¶ ~ 真紅之è¶(æ—¥) SL2P01 = é›¶ ~ 真紅之è¶(æ­) SL2PUD = Project Zero 2: Wii Edition Undub SL3ENR = é¾ç©´æ­·éšªä¸‰éƒ¨æ›²(美) SL4PAF = Los 40 Principales Karaoke Party SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = 最後的氣宗(美) SLAP78 = 最後的氣宗(æ­) SLAX78 = The Last Airbender: Special Edition SLAZ78 = 最後的氣宗 çŽ©å…·åæ–—城版(美) SLBE01 = MLG Super Luigi Bros Wii SLBJ01 = MLG Super Luigi Bros. Wii SLBP01 = MLG Super Luigi Bros. Wii 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 SLGEYG = Let's Sing 2016 SLGPKM = Let's Sing 2016 SLHEWR = 樂高哈利波特 5-7å¹´(美) SLHPWR = 樂高哈利波特 5-7å¹´(æ­) SLIE52 = ä¸–ç•Œè·æ¥­æ£’çƒè¯ç›Ÿ 二åˆä¸€(美) SLJPKM = Let's Sing 8 - Spanish Version SLKPKM = Let’s Sing 2016 : Hits Français SLLEWW = Lucha Libre AAA: Héroes del Ring SLMPWL = 40 Principales Karaoke Party Vol. 2 SLNP7M = The Voice 3 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 SMNE14 = New Super Mario Bros. Wii: Pain Coins SMNE15 = Newer Super Mario Bros. 7 SMNE20 = New Super Mario Bros. H SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE31 = New Super Mario Bros. Wii - Other World 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 SMNE44 = Go Go Mario SMNE45 = Lemmy's Winter Palace SMNE46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNE47 = The New Special Road SMNE48 = True Mario Bros. SMNE49 = New Super Mario Bros. Wii - MSMKW Pack SMNE50 = New Super Mario Bros. Wii - Power Tower Pack SMNE51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNE52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNE53 = New Super Mario Bros. Wii - Kid Edition SMNE54 = New Super Mario Bros. Wii - The Next Levels 2 SMNE55 = New Super Mario Bros. Wii - Lava Mod Pack SMNE56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNE57 = Mario's Big Adventure SMNE58 = Wario's Cave SMNE59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNE60 = Remixed Super Mario Bros. Wii SMNE61 = New Super Summer Vacation SMNE62 = New Super Bowser Wii SMNE65 = Ghostly Super Ghost Boos Wii SMNE66 = The Legend of Yoshi SMNE67 = Larsenv Super Mario Collection SMNE68 = The Legend of Yoshi DLC SMNE69 = Revised Super Mario Bros. Wii SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNERE = Retro Mario Bros. SMNERV = RVLution 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 SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZY = Super Mario Skyland 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 SMNJ14 = New Super Mario Bros. Wii: Pain Coins SMNJ15 = Newer Super Mario Bros. 7 SMNJ20 = New Super Mario Bros. H SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ31 = New Super Mario Bros. Wii - Other World 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 SMNJ44 = Go Go Mario SMNJ45 = Lemmy's Winter Palace SMNJ46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNJ47 = The New Special Road SMNJ48 = True Mario Bros. SMNJ49 = New Super Mario Bros. Wii - MSMKW Pack SMNJ50 = New Super Mario Bros. Wii - Power Tower Pack SMNJ51 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ53 = New Super Mario Bros. Wii - Kid Edition SMNJ54 = New Super Mario Bros. Wii - The Next Levels 2 SMNJ55 = New Super Mario Bros. Wii - Lava Mod Pack SMNJ56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNJ57 = Mario's Big Adventure SMNJ58 = Wario's Cave SMNJ59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNJ60 = Remixed Super Mario Bros. Wii SMNJ61 = New Super Summer Vacation SMNJ62 = New Super Bowser Wii SMNJ65 = Ghostly Super Ghost Boos Wii SMNJ66 = The Legend of Yoshi SMNJ67 = Larsenv Super Mario Collection SMNJ68 = The Legend of Yoshi DLC SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJRE = Retro Mario Bros. SMNJRV = RVLution 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 SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZY = Super Mario Skyland 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 SMNP14 = New Super Mario Bros. Wii: Pain Coins SMNP15 = Newer Super Mario Bros. 7 SMNP20 = New Super Mario Bros. H SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP31 = New Super Mario Bros. Wii - Other World 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 SMNP44 = Go Go Mario SMNP45 = Lemmy's Winter Palace SMNP46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNP47 = The New Special Road SMNP48 = True Mario Bros. SMNP49 = New Super Mario Bros. Wii - MSMKW Pack SMNP50 = New Super Mario Bros. Wii - Power Tower Pack SMNP51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNP52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNP53 = New Super Mario Bros. Wii - Kid Edition SMNP54 = New Super Mario Bros. Wii - The Next Levels 2 SMNP55 = New Super Mario Bros. Wii - Lava Mod Pack SMNP56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNP57 = Mario's Big Adventure SMNP58 = Wario's Cave SMNP59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNP60 = Remixed Super Mario Bros. Wii SMNP61 = New Super Summer Vacation SMNP62 = New Super Bowser Wii SMNP65 = Ghostly Super Ghost Boos Wii SMNP66 = The Legend of Yoshi SMNP67 = Larsenv Super Mario Collection SMNP68 = The Legend of Yoshi DLC SMNP77 = New Super Mario Bros. Wii Arcadia 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 SMNPO1 = 新超級瑪利æ­å…„弟Wii定製版(æ­) SMNPRE = Retro Mario Bros. SMNPRV = RVLution 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 SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZY = Super Mario Skyland 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 = 符文工廠 è—æµ·å¥‡ç·£(美) SO3EUD = Rune Factory: Tides of Destiny Undub SO3J99 = 符文工廠 è—æµ·å¥‡ç·£(æ—¥) SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg 2 SOCE4Z = è‡´å‘½æ•æ’ˆ 混亂海域(美) SODPYK = The Explorer and the Mystery of the Diamond Scarab SOIEEB = 101åˆ1 é‹å‹•èšæœƒéŠæˆ²å¤§åˆé›†(美) SOIPHZ = 101åˆ1 é‹å‹•èšæœƒéŠæˆ²å¤§åˆé›†(æ­) SOJE41 = 雷射超人 èµ·æº(美) SOJP41 = 雷射超人 èµ·æº(æ­) SOKEA4 = Karaoke Joysound SOKJ18 = 塿‹‰OK 歡樂之è²Wii DX(æ—¥) SOME01 = 全民節å¥å¤©åœ‹(美) SOME02 = 全民節å¥å¤©åœ‹(美) SOMJ01 = 全民節å¥å¤©åœ‹(æ—¥) SOMK01 = Rhythm World Wii 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 = Mama's 2-Pack SQKK01 = Mama's 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 SQWE52 = The Voice: I Want You 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 = 天橋驕å­(æ­) SROENS = Rodea the Sky Soldier SROJQC = Tenkuu no Kishi Rodea SROKQC = Rodea the Sky Soldier SROPNS = Rodea the Sky Soldier 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 SSPJGD = 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 = 迴轉壽å¸(美) SSUPLR = 迴轉壽å¸(美) 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 SVCPXT = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = 海綿寶寶 ç—žè€é—†æ©Ÿå™¨äººå¾©ä»‡ SVEPAF = DreamWorks The Croods: Prehistoric Party! & Rise of the Guardians: Combo Pack SVHP69 = FIFA 14 - Legacy Edition SVHX69 = FIFA 14 - Legacy Edition SVME01 = è¶…ç´šç‘ªåˆ©æ­æ”¶è—集 特別包(美) SVMJ01 = è¶…ç´šç‘ªåˆ©æ­æ”¶è—集(æ—¥) SVMK01 = Super Mario All-Stars SVMP01 = è¶…ç´šç‘ªåˆ©æ­æ”¶è—集 特別包(æ­) SVOEWW = El Chavo SVPESZ = ç¶­åŠ æ–¯èšæœƒ(美) SVPPNJ = ç¶­åŠ æ–¯èšæœƒ(æ­) SVQEVZ = Barbie and Her Sisters: Puppy Rescue SVQPVZ = Barbie and Her Sisters: Puppy Rescue 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 = 潘朵拉之塔 直到你身邊 (欧) SX3PUD = Pandora's Tower Undub SX4E01 = å¼‚åº¦ä¹‹åˆƒï¼šç¼–å¹´å² SX4J01 = 異域神åŠ(æ—¥) SX4P01 = 異域神åŠ(æ­) SX5E4Z = è–誕è€äººé€²åŸŽå›‰(美) SX6JAF = 光之美少女 全明星全員集åˆä¸€èµ·èˆžè¹ˆ(æ—¥) SX7E52 = å¿è€…神龜 SX7P52 = Teenage Mutant Ninja Turtles SX8E52 = X戰警 命é‹(美) SX8P52 = X戰警 命é‹(美) SX9PRV = The Voice Vol. 2 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 = å‰ä»–英雄 æ–æ»¾é¬¥å£«(æ­) SY7PKM = Let's Sing 7 - Spanish Version SY8PKM = Let's Sing 2015 SZ2E5G = å°Šå·´å—美拉ä¸èˆž 2(美) SZ2P5G = å°Šå·´å—美拉ä¸èˆž 2(æ­) SZ2XGT = å°Šå·´å—美拉ä¸èˆž 2(æ­) SZ3E5G = Zumba Fitness World Party SZ3PGT = Zumba Fitness World Party SZ5E5G = å°Šå·´å—美拉ä¸èˆž(美) SZ5PGT = å°Šå·´å—美拉ä¸èˆž(æ­) SZ7E41 = Just Dance 2017 SZ7P41 = Just Dance 2017 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: 20170813134847) 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 = TsÌ„shin 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 WFQE = Frogger: Hyper Arcade Edition 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: 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 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 WKJE = Karaoke Joysound 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 WMH1 = Mother 1+2+3 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 WN64 = Nintendo 64 Forwarder 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 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: Ikuzo! Arashi 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: Susume! Honoo 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 = Pokémon Rumble (Demo) XHAP = Pokémon 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-3.01a/share/titles-pt.txt0000644000175000017500000110474713363642463016007 0ustar michaelmichael010E01 = Wii Backup Disc v1.31 301E01 = GameCube Service Disc 9XGX = SNES9xGX 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... CBIEE9 = Harvest Moon: Pride Parade 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 CGHE52 = Guitar Hero 2K16 (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.2 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.2 CS9PZZ = StarSing : Pop Hits 9 v1.0 CSAP00 = StarSing : '80s Volume 3 v2.2 CSAPZZ = StarSing : Best of Goldman v1.0 CSBP00 = StarSing : '90s Volume 2 v2.2 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 v2.0 CSFP00 = StarSing : Pop Hits 6 v2.0 CSGP00 = StarSing : Chansons Magiques de Disney v2.0 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = StarSing : Pop Hits 7 v2.0 CSJP00 = StarSing : Après-Ski Party v2.0 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 v2.0 CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = StarSing : Génériques TV v2.1 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.1 CT9P00 = StarSing : Pop Hits 9 v2.0 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.2 CTNP00 = StarSing : Pop Hits 10 v2.0 CTOP00 = StarSing : The Beatles Volume 2 v2.1 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 v2.0 CTUP00 = StarSing : Rihanna v2.0 CTVP00 = StarSing : Lady GaGa v1.1 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CTZP00 = StarSing : Volume 3 v1.0 CU0P00 = StarSing : Retro Volume 3 v1.0 CU1P00 = StarSing : Girls v1.0 CU2P00 = StarSing : Volume 4 v1.1 CU3P00 = StarSing : Retro Volume 4 v1.1 CU4P00 = StarSing : Retro Volume 5 v1.0 CU5P00 = StarSing : International Volume 4 v1.0 CU6P00 = StarSing : Volume 5 v1.0 CU7P00 = StarSing : Retro Volume 6 v1.0 CU8P00 = StarSing : Volume 6 v1.0 CU9P00 = StarSing : Volume 7 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 = B.L.I.N.D. 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 = WAD Batch Installer 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: Scorched Earth 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 = Monthly Nintendo Shop Demo - 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: A Hard Days Night 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 DBSBT3 = Dragon Ball Budokai Tenkaichi 3 Version Latino 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. Brawl: 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 DN6A = Not64 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 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 DTZJ08 = Takarajima Z Barbaros' Treasure (Demo) 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 DWEJA4 = Winning Eleven PLAY MAKER 2008 (Demo) 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 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 Shodown 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 Shodown EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen EAEP = Samurai Shodown 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 Shodown 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 EAZP = World Heroes Perfect EB2E = Real Bout Fatal Fury Special EB2J = Real Bout Garou Densetsu Special EB2P = Real Bout Fatal Fury Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB5P = 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 EBGP = 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 EBSP = The Path of the Warrior: Art of Fighting 3 EBTJ = Crossed Swords EBUE = 2020 Super Baseball EBUJ = Super Baseball 2020 EBUP = 2020 Super Baseball 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 ECAP = Real Bout Fatal Fury 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECCP = 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 ECGP = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECHP = The King of Fighters '98 ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECIP = 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 II 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 III 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 JingÌ„ji SaburÌ„: Shinjuku Ch̄̄ KÌ„en 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 FERP = Zoda’s Revenge: StarTropics II 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 FF5P = Double Dragon II: 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 G2DJB2 = Digimon Battle Chronicle 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 & 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 G2XJ8P = Sonic Gems Collection G2XP8P = Sonic Gems Collection G3AD69 = The Lord of the Rings: The Third Age G3AE69 = The Lord of the Rings: The Third Age G3AF69 = The Lord of the Rings: The Third Age G3AP69 = The Lord of the Rings: The Third Age G3AS69 = The 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 G96P01 = Interactive Multi-Game Demo Disc - November 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 G9RJ7D = Crash Bandicoot Gacchanko World 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 GA3J51 = 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 GAZJ13 = Harry Potter to Azkaban no Shuujin 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 GBMJ7F = 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 GBRJ18 = Bloody Roar Extreme GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSJ8P = Beach Spikers: Virtua Beach Volleyball GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTJA7 = Bakuten Shoot Beyblade 2002: Nettou! Magne Tag 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 = Pokémon Colosseum GC6P01 = Pokémon Colosseum GC7PNK = Cocoto Platform Jumper GC8JA4 = Crash Bandicoot: Bakusou! Nitro Kart GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBJA4 = Crash Bandicoot 4: Sakuretsu! Majin Power 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 Complete 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 GCTJ8P = 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 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 Arena 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 = 007: Everything or Nothing GENF69 = James Bond 007: Everything or Nothing GENP69 = James Bond 007: Everything Or Nothing GENS69 = James Bond 007: Everything or Nothing GEOE08 = Capcom vs. SNK 2 EO GEOJ08 = Capcom vs. SNK 2 EO: Millionaire Fighting 2001 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 GEZJ8P = 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 GF4I52 = Fantastic 4 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 GFIJ13 = 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 GG4J08 = 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 GH4J13 = Harry Potter to Honoo no Goblet 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 GHLJ13 = Harry Potter to Kenja no Ishi GHLJ69 = Harry Potter to Kenja no Ishi GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Philosopher'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 GHSJ13 = Harry Potter to Himitsu no Heya 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 GJND78 = Jimmy Neutron: Boy Genius 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 = The Lord of the Rings: The Return of the King GKLE69 = The Lord of the Rings: The Return of the King GKLF69 = Lord of the Rings: The Return of the King GKLI69 = The Lord of the Rings: The Return of the King GKLJ69 = The Lord of the Rings: The Return of the King GKLP69 = The Lord of the Rings: The Return of the King GKLS69 = The 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's Airride GKYP01 = Kirby Air Ride GKZD54 = Codename: Kids Next Door - Operation: V.I.D.E.O.G.A.M.E. 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 = The Lord of the Rings: The Two Towers GLOE69 = The Lord of the Rings: The Two Towers GLOF69 = The Lord of the Rings: The Two Towers GLOI69 = The Lord of the Rings: The Two Towers GLOP69 = The 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 Hoffman's 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 GOTJB2 = One Piece: Treasure Battle! 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 GQ4D78 = SpongeBob SquarePants: Creature from the Krusty Krab 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 GQCI52 = 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 GRJPAF = R: Racing Evolution 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 GSMJ08 = Spider-Man: The Movie 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 Squadron II: Rogue Leader GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = Star Wars Rogue Squadron II GSWP64 = Star Wars Rogue Squadron II: Rogue Leader 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 GVS32E = Virtua Striker 3 Ver. 2002 GVS32J = Virtua Striker 3 Ver.2002 (Triforce) GVS45E = Virtua Striker 4 GVS45J = Virtua Striker 4 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 = James Bond 007 in 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 GWEJ51 = 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 GX2E01 = Pokemon XG: Next Gen 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 = Pokémon 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 HADE = Internet Channel HADJ = Internet Channel HADP = Internet Channel HAFE = Forecast Channel HAFJ = Forecast Channel HAFP = Forecast 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 no Tomo Channel G Guide for Wii HBWE01 = New Super Mario Bros. Wii: Hellboy Edition HC3J = USB Flash Optimization HC4E = Crunchyroll HC4P = Crunchyroll 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 HCFJ = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Wii Speak Channel HCGE = Wii + Internet HCGJ = Wii + Internet HCGP = Wii + Internet HCHJ = Demae Channel HCIJ = Wii no Ma HCJP = BBC iPlayer Channel HCLE = Netflix HCLP = Netflix HCMP = Kirby TV Channel 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 JCNP = 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 E.D.F.: 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 JDNP = 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 = KyÌ„yaku Megami Tensei: Megami Tensei I・II JODI = Homebrew Channel JOUE01 = New Super Mario Bros. Wii 10 The Journey KLSEXJ = The Last Story (NTSC-U, Japanese Audio) 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 MB3L = 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 MK7P41 = Mario Kart 7 Wii 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 = Pokémon 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 NTLC = Super Mario 64 Multiplayer 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 = Pokémon 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 PGPJB2 = SD Gundam Trial 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: KÌ„kÌ„ YakyÌ„ 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 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 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 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 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 R7FEUD = Final Fantasy Fables: Chocobo's Dungeon Undub 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! R7MPFR = Musiic Party: Rock the House 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) 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 = Sugoro Chronicle: Migite ni Ken o Hidarite ni Saikoro o 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 RDXE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino Beta 3 RDXJ18 = Deca Sporta RDXKA4 = Deca Sporta RDXP18 = Sports Island RDYEGN = CID: The Dummy RDZE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino 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 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 = 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 RFEPUD = Fire Emblem: Radian Dawn Undub 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 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 RFNE = Wii Fit Channel 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 RFPE = Wii Fit Plus Channel 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 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 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 RGWX = Rabbids Channel RGXE5D = Game Party RGXEFN = Guitar Hero III Custom: Meteo Last Custom RGXEWR = Game Party 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 RK2EUD = Trauma Center: New Blood Undub 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 RKDEUD = Trauma Center: Second Opinion Undub RKDJEB = Trauma Center: Second Opinion RKDJG9 = Kamen Rider: Climax Heroes W RKDP01 = 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 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 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 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) RMCE = Mario Kart Channel RMCJ01 = Mario Kart Wii RMCJ12 = Wiimms MKW Fun 2011-11 RMCJ30 = Wiimms MKW-Fun 2015-12.jap RMCJ31 = Wiimms MKW-Fun 2016-02.jap RMCJ32 = Wiimms MKW-Fun 2016-07.jap RMCJ33 = Wiimms MKW-Fun 2016-10.jap RMCJ34 = Wiimms MKW-Fun 2017-05.jap RMCJ64 = Peach Kart 8 RMCJ76 = Pro CT Pack RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCJL1 = Luma's CT Pack 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 RMCP27 = Wiimms MKW-Fun 2015-03.pal RMCP28 = Wiimms MKW Retro 2015-05.pal RMCP29 = Wiimms MKW-Fun 2015-08.pal RMCP30 = Wiimms MKW-Fun 2015-12.pal RMCP31 = Wiimms MKW-Fun 2016-02.pal RMCP32 = Wiimms MKW-Fun 2016-07.pal RMCP33 = Wiimms MKW-Fun 2016-10.pal RMCP34 = Wiimms MKW-Fun 2017-05.pal RMCP64 = Peach Kart 8 RMCP76 = Pro CT Pack RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCPL1 = Luma's CT Pack 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 RNEEUD = Naruto Shippuden: Clash of Ninja Revolution 3 Undub 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 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 = Ì„kami ROWJ08 = Ì„kami ROWP08 = Ì„kami 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 RPJEUD = Arc Rise Fantasia Undub 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 RR2XUG = Extreme Truck Racing 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 SaikyÌ„ 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 = Marlan Project M 3.6 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 2 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 RSBE43 = Super Smash Bros. Brawl: MASTERLINKX's Custom Pack RSBE44 = Super Smash Bros. Brawl: Shadow Version RSBE45 = Super Smash Bros. Brawl: Shock44's Custom Build RSBE46 = Super Smash Bros. Brawl: DragonD101's Texture Pack RSBE47 = Super Smash Bros. Brawl: XChosen1's Texture Pack RSBE49 = Super Smash Bros. Brawl: Water Block Edition RSBE50 = Super Smash Bros. Project U: Ultra Version RSBEAA = Marvel and Capcom vs Super Smash Bros. 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 RSBEDH = Super Smash Bros. Brawl Dark Hole/D.A.R.S. RSBEDT = Super Smash Bros. Ultimate Dark Phoenix: Tournament Edition RSBEN1 = Super Smash Bros. Project M RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBETE = Super Smash Bros. Legacy TE RSBEWM = Super Smash Bros. Project M Wi-Fi RSBEXP = Super Smash Bros. Legacy XP RSBJ01 = Dairantou Smash Brothers X RSBK01 = Dairantou Smash Brothers X RSBP01 = Super Smash Bros. Brawl RSBP02 = Master4Robin's Super Smash Bros. Brawl Hack Pack 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 Spirits: Rokuban Shoubu 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 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 RT4EUD = Tales of Symphonia: Dawn of the New World Undub 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 Le 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 = Wario Land 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 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 RYIPNK = SPRay RYJPTV = Princess Lillifee's Magic Fairy RYKEAF = We Ski & Snowboard RYKJAF = Family Ski: World Ski & Snowboard RYKKAF = We 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 S32DJW = The Voice of Germany: I Want You S32PJW = The Voice S32SJW = La Voz: Quiero tu voz S33DKM = Let's Sing 2017 - Mit Deutschen Hits! S33FKM = Let's Sing 2017 : Hits Français et Internationaux S33PKM = Let's Sing 2017 S33SKM = Let's Sing 9 - Spanish Version S3AE5G = Attack of the Movies 3D S3APGT = 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 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 S5DE41 = Just Dance Disney Party 2 S5DP41 = Just Dance Disney Party 2 S5KJAF = Taiko no Tatsujin Wii: Chou Goukaban S5MEVZ = Monster High: New Ghoul in School S5MPVZ = Monster High: New Ghoul in School S5PPAU = PSA World Tour Squash 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: 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 Batman 2: DC Super Heroes 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 S7EE52 = Transformers: Ultimate Battle Edition 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 S7LPKM = Let's Sing @ Radio Italia 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 SAOEVZ = Monster High: Ghoul Spirit SAOP78 = Monster High: Ghoul Spirit SAOXVZ = 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 SB3EUD = Sengoku Basara: Samurai Heroes Undub 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 SCLE01 = Cliff Super Mario Bros. Wii SCLJ01 = Cliff Super Mario Bros. Wii SCLP01 = Cliff Super Mario Bros. Wii 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! SDEPGT = 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 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 Adventure 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 SDUEO1 = DU Super Mario Bros. : DU Edition 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 SERJ4Q = Disney Epic Mickey 2: The Power of Two 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 SFEPYF = Fit Music 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 SFRE01 = Super Mario Bros. Frozen Edition SFRJ01 = Super Mario Bros. Frozen Edition SFRP01 = Super Mario Bros. Frozen Edition 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 SGBPGT = 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 SH9PNJ = 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 SIIK01 = 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 v2.0 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 SJNE41 = Just Dance 2016 SJNP41 = Just Dance 2016 SJOE41 = Just Dance 2014 SJOP41 = Just Dance 2014 SJPE78 = Jeopardy! SJQEPZ = Jewel Quest Trilogy SJQPGR = Jewel Quest Trilogy SJREA4 = Def Jam Rapstar SJRPA4 = Def Jam Rapstar SJRXA4 = Def Jam Rapstar SJRYA4 = 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 SK3EUD = Trauma Team Undub SK4E52 = Shrek Forever After SK4P52 = Shrek Forever After SK5PY1 = Kylie Sing & Dance SK6KJD = K-POP Dance Festival SK7EVZ = Disney Violetta: Rhythm & Music SK7PVZ = Disney Violetta: Rhythm & Music SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8I52 = 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 SKNE52 = Skylanders: SuperChargers Racing SKNP52 = Skylanders: SuperChargers Racing 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 SKYY52 = 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 SL2PUD = Project Zero 2: Wii Edition Undub SL3ENR = Dragon's Lair Trilogy SL4PAF = Los 40 Principales Karaoke Party SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = The Last Airbender SLAP78 = The Last Airbender SLAX78 = The Last Airbender: Special Edition SLAZ78 = The Last Airbender: Toys R Us Special Edition SLBE01 = MLG Super Luigi Bros Wii SLBJ01 = MLG Super Luigi Bros. Wii SLBP01 = MLG Super Luigi Bros. Wii 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 SLGEYG = Let's Sing 2016 SLGPKM = Let's Sing 2016 SLHEWR = LEGO Harry Potter: Years 5-7 SLHPWR = LEGO Harry Potter: Years 5-7 SLIE52 = Little League World Series Baseball: Double Play SLJPKM = Let's Sing 8 - Spanish Version SLKPKM = Let’s Sing 2016 : Hits Français SLLEWW = Lucha Libre AAA: Héroes del Ring SLMPWL = 40 Principales Karaoke Party Vol. 2 SLNP7M = The Voice 3 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 SMNE14 = New Super Mario Bros. Wii: Pain Coins SMNE15 = Newer Super Mario Bros. 7 SMNE20 = New Super Mario Bros. H SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE31 = New Super Mario Bros. Wii - Other World 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 SMNE44 = Go Go Mario SMNE45 = Lemmy's Winter Palace SMNE46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNE47 = The New Special Road SMNE48 = True Mario Bros. SMNE49 = New Super Mario Bros. Wii - MSMKW Pack SMNE50 = New Super Mario Bros. Wii - Power Tower Pack SMNE51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNE52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNE53 = New Super Mario Bros. Wii - Kid Edition SMNE54 = New Super Mario Bros. Wii - The Next Levels 2 SMNE55 = New Super Mario Bros. Wii - Lava Mod Pack SMNE56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNE57 = Mario's Big Adventure SMNE58 = Wario's Cave SMNE59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNE60 = Remixed Super Mario Bros. Wii SMNE61 = New Super Summer Vacation SMNE62 = New Super Bowser Wii SMNE65 = Ghostly Super Ghost Boos Wii SMNE66 = The Legend of Yoshi SMNE67 = Larsenv Super Mario Collection SMNE68 = The Legend of Yoshi DLC SMNE69 = Revised Super Mario Bros. Wii SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNERE = Retro Mario Bros. SMNERV = RVLution 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 SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZY = Super Mario Skyland 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 SMNJ14 = New Super Mario Bros. Wii: Pain Coins SMNJ15 = Newer Super Mario Bros. 7 SMNJ20 = New Super Mario Bros. H SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ31 = New Super Mario Bros. Wii - Other World 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 SMNJ44 = Go Go Mario SMNJ45 = Lemmy's Winter Palace SMNJ46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNJ47 = The New Special Road SMNJ48 = True Mario Bros. SMNJ49 = New Super Mario Bros. Wii - MSMKW Pack SMNJ50 = New Super Mario Bros. Wii - Power Tower Pack SMNJ51 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ53 = New Super Mario Bros. Wii - Kid Edition SMNJ54 = New Super Mario Bros. Wii - The Next Levels 2 SMNJ55 = New Super Mario Bros. Wii - Lava Mod Pack SMNJ56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNJ57 = Mario's Big Adventure SMNJ58 = Wario's Cave SMNJ59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNJ60 = Remixed Super Mario Bros. Wii SMNJ61 = New Super Summer Vacation SMNJ62 = New Super Bowser Wii SMNJ65 = Ghostly Super Ghost Boos Wii SMNJ66 = The Legend of Yoshi SMNJ67 = Larsenv Super Mario Collection SMNJ68 = The Legend of Yoshi DLC SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJRE = Retro Mario Bros. SMNJRV = RVLution 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 SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZY = Super Mario Skyland 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 SMNP14 = New Super Mario Bros. Wii: Pain Coins SMNP15 = Newer Super Mario Bros. 7 SMNP20 = New Super Mario Bros. H SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP31 = New Super Mario Bros. Wii - Other World 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 SMNP44 = Go Go Mario SMNP45 = Lemmy's Winter Palace SMNP46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNP47 = The New Special Road SMNP48 = True Mario Bros. SMNP49 = New Super Mario Bros. Wii - MSMKW Pack SMNP50 = New Super Mario Bros. Wii - Power Tower Pack SMNP51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNP52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNP53 = New Super Mario Bros. Wii - Kid Edition SMNP54 = New Super Mario Bros. Wii - The Next Levels 2 SMNP55 = New Super Mario Bros. Wii - Lava Mod Pack SMNP56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNP57 = Mario's Big Adventure SMNP58 = Wario's Cave SMNP59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNP60 = Remixed Super Mario Bros. Wii SMNP61 = New Super Summer Vacation SMNP62 = New Super Bowser Wii SMNP65 = Ghostly Super Ghost Boos Wii SMNP66 = The Legend of Yoshi SMNP67 = Larsenv Super Mario Collection SMNP68 = The Legend of Yoshi DLC SMNP77 = New Super Mario Bros. Wii Arcadia 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 SMNPO1 = New Super Mario Custom Edition SMNPRE = Retro Mario Bros. SMNPRV = RVLution 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 SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZY = Super Mario Skyland 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 SO3EUD = Rune Factory: Tides of Destiny Undub SO3J99 = Rune Factory: Oceans SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg 2 SOCE4Z = Deadliest Catch: Sea of Chaos SODPYK = The Explorer and the Mystery of the Diamond Scarab 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 SOME02 = Rhythm Heaven Fever Repainted SOMJ01 = Minna no Rhythm Tengoku SOMK01 = Rhythm World 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 = 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 & 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 = Mama's 2-Pack SQKK01 = Mama's 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 SQWE52 = The Voice: I Want You 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 SROENS = Rodea the Sky Soldier SROJQC = Tenkuu no Kishi Rodea SROKQC = Rodea the Sky Soldier SROPNS = Rodea the Sky Soldier 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 SSPJGD = 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 SSUPLR = 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 SVCPXT = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVEPAF = DreamWorks The Croods: Prehistoric Party! & Rise of the Guardians: Combo Pack 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 SVQEVZ = Barbie and Her Sisters: Puppy Rescue SVQPVZ = Barbie and Her Sisters: Puppy Rescue 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 SX3PUD = Pandora's Tower Undub 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 SX9PRV = The Voice Vol. 2 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 SY7PKM = Let's Sing 7 - Spanish Version 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 SZ7E41 = Just Dance 2017 SZ7P41 = Just Dance 2017 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: 20170813134826) 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 = TsÌ„shin 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 WFQE = Frogger: Hyper Arcade Edition 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: 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 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 WKJE = Karaoke Joysound 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 WMH1 = Mother 1+2+3 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 WN64 = Nintendo 64 Forwarder 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 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: Ikuzo! Arashi 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: Susume! Honoo 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 = Pokémon Rumble (Demo) XHAP = Pokémon 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-3.01a/share/titles-ja.txt0000644000175000017500000113370413363642463015751 0ustar michaelmichael010E01 = Wii Backup Disc v1.31 301E01 = GameCube Service Disc 9XGX = SNES9xGX 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... CBIEE9 = Harvest Moon: Pride Parade 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 CGHE52 = Guitar Hero 2K16 (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.2 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.2 CS9PZZ = StarSing : Pop Hits 9 v1.0 CSAP00 = StarSing : '80s Volume 3 v2.2 CSAPZZ = StarSing : Best of Goldman v1.0 CSBP00 = StarSing : '90s Volume 2 v2.2 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 v2.0 CSFP00 = StarSing : Pop Hits 6 v2.0 CSGP00 = StarSing : Chansons Magiques de Disney v2.0 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = StarSing : Pop Hits 7 v2.0 CSJP00 = StarSing : Après-Ski Party v2.0 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 v2.0 CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = StarSing : Génériques TV v2.1 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.1 CT9P00 = StarSing : Pop Hits 9 v2.0 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.2 CTNP00 = StarSing : Pop Hits 10 v2.0 CTOP00 = StarSing : The Beatles Volume 2 v2.1 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 v2.0 CTUP00 = StarSing : Rihanna v2.0 CTVP00 = StarSing : Lady GaGa v1.1 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CTZP00 = StarSing : Volume 3 v1.0 CU0P00 = StarSing : Retro Volume 3 v1.0 CU1P00 = StarSing : Girls v1.0 CU2P00 = StarSing : Volume 4 v1.1 CU3P00 = StarSing : Retro Volume 4 v1.1 CU4P00 = StarSing : Retro Volume 5 v1.0 CU5P00 = StarSing : International Volume 4 v1.0 CU6P00 = StarSing : Volume 5 v1.0 CU7P00 = StarSing : Retro Volume 6 v1.0 CU8P00 = StarSing : Volume 6 v1.0 CU9P00 = StarSing : Volume 7 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 = B.L.I.N.D. 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 = WAD Batch Installer 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: Scorched Earth 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 = Monthly Nintendo Shop Demo - 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: A Hard Days Night 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 DBSBT3 = Dragon ball z SparkingMeteor 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. Brawl: 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 DN6A = Not64 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 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 DTZJ08 = Takarajima Z Barbaros' Treasure (Demo) 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 DWEJA4 = Winning Eleven PLAY MAKER 2008 (Demo) 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 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 Shodown 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 Shodown EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen EAEP = Samurai Shodown 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 Shodown 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 EAZP = World Heroes Perfect EB2E = Real Bout Fatal Fury Special EB2J = Real Bout Garou Densetsu Special EB2P = Real Bout Fatal Fury Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB5P = 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 EBGP = 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 EBSP = The Path of the Warrior: Art of Fighting 3 EBTJ = Crossed Swords EBUE = 2020 Super Baseball EBUJ = Super Baseball 2020 EBUP = 2020 Super Baseball 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 ECAP = Real Bout Fatal Fury 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECCP = 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 ECGP = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECHP = The King of Fighters '98 ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECIP = 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 II 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 III 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 JingÌ„ji SaburÌ„: Shinjuku Ch̄̄ KÌ„en 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 FERP = Zoda’s Revenge: StarTropics II 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 FF5P = Double Dragon II: 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 G2DJB2 = ゙゙モン゙トルクロニクル 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 & 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 G2XJ8P = ソニッグェム゙コレクション G2XP8P = Sonic Gems Collection G3AD69 = The Lord of the Rings: The Third Age G3AE69 = The Lord of the Rings: The Third Age G3AF69 = The Lord of the Rings: The Third Age G3AP69 = The Lord of the Rings: The Third Age G3AS69 = The 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 G96P01 = Interactive Multi-Game Demo Disc - November 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 G9RJ7D = クラッシュ・゙ン゙ィクー ã‚™ã£ã¡ã‚ƒã‚“ã“ワール゙ 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 GA3J51 = 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 GAZJ13 = ãƒãƒªãƒ¼ãƒ»ã‚šãƒƒã‚¿ãƒ¼ã¨ã‚¢ã‚™ã‚«ã‚™ãƒ³ã®å›šäºº 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 = ゙イオãƒã‚™ãƒ¼ã‚™ GBIP08 = Resident Evil GBKE70 = Backyard Baseball GBLE52 = Bloody Roar: Primal Fury GBLP52 = Bloody Roar: Primal Fury GBME7F = Batman: Dark Tomorrow GBMJ7F = Batman: Dark Tomorrow GBMP7F = Batman: Dark Tomorrow GBNJC0 = ウォーリアー゙レイ゙ ラスタンvs゙ー゙リアン編 GBOE51 = Burnout GBOP51 = Burnout GBQE78 = Rocket Power: Beach Bandits GBQP78 = Rocket Power: Beach Bandits GBRJ18 = ゙ラッ゙ィ ロア エクストリーム GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSJ8P = ゙ームス゚イカー゙ GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTJA7 = Bakuten Shoot Beyblade 2002: Nettou! Magne Tag 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 = ゙イオãƒã‚™ãƒ¼ã‚™ã‚™ãƒ­ 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 GC8JA4 = クラッシュ・゙ン゙ィクー 爆走ï¼ãƒ‹ãƒˆãƒ­ã‚«ãƒ¼ãƒˆ GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBJA4 = クラッシュ・゙ン゙ィクー4 ã•ãれã¤!魔神゚ワー 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 = ゙イオãƒã‚™ãƒ¼ã‚™ã‚³ãƒ¼ã‚™ï¼šã‚™ãƒ­ãƒ‹ã‚«å®Œå…¨ãª 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 GCTJ8P = クレイ゙ータクシー 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 = ゙ラãˆã‚‚ã‚“ ã¿ã‚“ãªã‚™éŠã‚™ã† ! ミニ゙ラン゙ 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 Arena 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 = 007: Everything or Nothing GENF69 = James Bond 007: Everything or Nothing GENP69 = James Bond 007: Everything Or Nothing GENS69 = James Bond 007: Everything or Nothing GEOE08 = Capcom vs. SNK 2 EO GEOJ08 = CAPCOM VS SNK 2 EO: ミリオãƒã‚¢ãƒ•ァイティン゙2001 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 GEZJ8P = ゙ャイアント エッ゙ ~゙リー・ãƒãƒƒãƒãƒ£ãƒ¼ã®å¤§å†’険~ 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 GF4I52 = Fantastic 4 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 GFIJ13 = 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 GG4J08 = 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 GH4J13 = ãƒãƒªãƒ¼ãƒ»ã‚šãƒƒã‚¿ãƒ¼ã¨ç‚Žã®ã‚™ã‚™ãƒ¬ãƒƒãƒˆ 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 GHLJ13 = ãƒãƒªãƒ¼ãƒ»ã‚šãƒƒã‚¿ãƒ¼ã¨è³¢è€…ã®çŸ³ GHLJ69 = ãƒãƒªãƒ¼ãƒ»ã‚šãƒƒã‚¿ãƒ¼ã¨è³¢è€…ã®çŸ³ GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Philosopher'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 GHSJ13 = ãƒãƒªãƒ¼ãƒ»ã‚šãƒƒã‚¿ãƒ¼ã¨ç§˜å¯†ã®éƒ¨å±‹ 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 GJND78 = Jimmy Neutron: Boy Genius 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 = The Lord of the Rings: The Return of the King GKLE69 = The Lord of the Rings: The Return of the King GKLF69 = Lord of the Rings: The Return of the King GKLI69 = The Lord of the Rings: The Return of the King GKLJ69 = ロー゙・オ゙・゙・リン゙ï¼çŽ‹ã®å¸°é‚„ GKLP69 = The Lord of the Rings: The Return of the King GKLS69 = The 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 GKZD54 = Codename: Kids Next Door - Operation: V.I.D.E.O.G.A.M.E. 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 = The Lord of the Rings: The Two Towers GLOE69 = The Lord of the Rings: The Two Towers GLOF69 = The Lord of the Rings: The Two Towers GLOI69 = The Lord of the Rings: The Two Towers GLOP69 = The 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 Hoffman's 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 GOTJB2 = From TV animation ONE PIECE トレ゙ャー゙トル! 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 ゚゙ルコレクション GQ4D78 = SpongeBob SquarePants: Creature from the Krusty Krab 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 GQCI52 = 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 GRJPAF = R: Racing Evolution 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 = スー゚ーロ゙ット大戦 ï¼§ï¼£ 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 = ソニックア゙゙ンãƒãƒ£ãƒ¼ï¼’ ゙トル 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 GSMJ08 = ス゚イ゙ーマン 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 Squadron II: Rogue Leader GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = スター・ウォー゙ ロー゙ スコー゙ロン2 GSWP64 = Star Wars Rogue Squadron II: Rogue Leader 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 GVS32E = Virtua Striker 3 Ver. 2002 GVS32J = ゙ーãƒãƒ£ã‚¹ãƒˆãƒ©ã‚¤ã‚«ãƒ¼3 Ver.2002 (トライフォース) GVS45E = Virtua Striker 4 GVS45J = ゙ーãƒãƒ£ã‚¹ãƒˆãƒ©ã‚¤ã‚«ãƒ¼4 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 = James Bond 007 in 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 GWEJ51 = 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 GX2E01 = Pokemon XG: Next Gen 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 HADE = Internet Channel HADJ = インターãƒãƒƒãƒˆãƒãƒ£ãƒ³ãƒãƒ« HADP = Internet Channel HAFE = Forecast Channel HAFJ = ãŠå¤©æ°—ãƒãƒ£ãƒ³ãƒãƒ« HAFP = Forecast 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 = テレ゙ã®å‹ãƒãƒ£ãƒ³ãƒãƒ« G゙イ゙ for Wii HBWE01 = New Super Mario Bros. Wii: Hellboy Edition HC3J = USB乄モリ一修復゚囗゙ラム HC4E = Crunchyroll HC4P = Crunchyroll HCAJ = ゙ン゙ラDXス゚ーカーãƒãƒ£ãƒ³ãƒãƒ« HCAP = Jam with the Band Live HCBJ = Photo Channel 1.0 Restore Program HCDJ = Digicam Print Channel HCFE = Wii Speak Channel HCFJ = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Wii Speak Channel HCGE = Wii + Internet HCGJ = Wii + Internet HCGP = Wii + Internet HCHJ = Demae Channel HCIJ = Wiiã®é–“ HCJP = BBC iPlayer Channel HCLE = Netflix HCLP = Netflix HCMP = Kirby TV Channel 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 JCNP = 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 E.D.F.: 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 JDNP = 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 = KyÌ„yaku Megami Tensei: Megami Tensei I・II JODI = Homebrew Channel JOUE01 = New Super Mario Bros. Wii 10 The Journey KLSEXJ = The Last Story (NTSC-U, Japanese Audio) 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 MB3L = 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 MK7P41 = Mario Kart 7 Wii 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 = Pokémon 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 NTLC = Super Mario 64 Multiplayer 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 = Pokémon 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 PGPJB2 = SD Gundam Trial 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: KÌ„kÌ„ YakyÌ„ 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 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 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 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 R7FEUD = Final Fantasy Fables: Chocobo's Dungeon Undub 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! R7MPFR = Musiic Party: Rock the House 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 è‹±é›„å¤–ä¼ ã‚™ã‚™ãƒ«ã‚šãƒƒã‚¯ 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 RDXE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino Beta 3 RDXJ18 = ゙カス゚ルタ RDXKA4 = Deca Sporta RDXP18 = Sports Island RDYEGN = CID: The Dummy RDZE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino 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 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 = 忌ç«èµ·è‰ -解明編- 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 RFEPUD = Fire Emblem: Radian Dawn Undub RFFEGD = Final Fantasy Crystal Chronicles: Echoes of Time RFFJGD = FFCCエコー゙・オ゙・タイム RFFPGD = Final Fantasy Crystal Chronicles: Echoes of Time RFJJAF = ファミリー゙ョッキー RFKE41 = 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 = ã‚šãƒ­é‡Žçƒ ãƒ•ã‚¡ãƒŸãƒªãƒ¼ã‚¹ã‚¿ã‚™ã‚¢ãƒ  RFNE = Wii Fit Channel 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 RFPE = Wii Fit Plus Channel RFPJ01 = Wiiフィット ゚ラス RFPK01 = Wii Fit Plus RFPP01 = Wii Fit Plus RFPR01 = Wii Fit Plus RFPW01 = Wiiフィット ゚ラス RFQE69 = FaceBreaker K.O. Party RFQJ13 = フェイズレイカー 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 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 RGWX = Rabbids Channel RGXE5D = Game Party RGXEFN = Guitar Hero III Custom: Meteo Last Custom RGXEWR = Game Party 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 = アイ゙ィ・゙・キウィ? 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 RK2EUD = Trauma Center: New Blood Undub 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 RKDEUD = Trauma Center: Second Opinion Undub RKDJEB = ガゥケウスZ -2ã¤ã®è¶…執刀- RKDJG9 = ä»®é¢ãƒ©ã‚¤ã‚™ãƒ¼ クライマックスヒーロー゙W RKDP01 = 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 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 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 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) RMCE = Mario Kart Channel RMCJ01 = マリオカートWii RMCJ12 = マリオカートWii カスタム(2011-11 Wiimm) RMCJ30 = Wiimms MKW-Fun 2015-12.jap RMCJ31 = Wiimms MKW-Fun 2016-02.jap RMCJ32 = Wiimms MKW-Fun 2016-07.jap RMCJ33 = Wiimms MKW-Fun 2016-10.jap RMCJ34 = Wiimms MKW-Fun 2017-05.jap RMCJ64 = Peach Kart 8 RMCJ76 = Pro CT Pack RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCJL1 = Luma's CT Pack 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 RMCP27 = Wiimms MKW-Fun 2015-03.pal RMCP28 = Wiimms MKW Retro 2015-05.pal RMCP29 = Wiimms MKW-Fun 2015-08.pal RMCP30 = Wiimms MKW-Fun 2015-12.pal RMCP31 = Wiimms MKW-Fun 2016-02.pal RMCP32 = Wiimms MKW-Fun 2016-07.pal RMCP33 = Wiimms MKW-Fun 2016-10.pal RMCP34 = Wiimms MKW-Fun 2017-05.pal RMCP64 = Peach Kart 8 RMCP76 = Pro CT Pack RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCPL1 = Luma's CT Pack 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 RNEEUD = Naruto Shippuden: Clash of Ninja Revolution 3 Undub 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 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 = Ì„kami ROWJ08 = 大神 ROWP08 = Ì„kami 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 RPJEUD = Arc Rise Fantasia Undub 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 RR2XUG = Extreme Truck Racing 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 = Marlan Project M 3.6 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 2 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 RSBE43 = Super Smash Bros. Brawl: MASTERLINKX's Custom Pack RSBE44 = Super Smash Bros. Brawl: Shadow Version RSBE45 = Super Smash Bros. Brawl: Shock44's Custom Build RSBE46 = Super Smash Bros. Brawl: DragonD101's Texture Pack RSBE47 = Super Smash Bros. Brawl: XChosen1's Texture Pack RSBE49 = Super Smash Bros. Brawl: Water Block Edition RSBE50 = Super Smash Bros. Project U: Ultra Version RSBEAA = Marvel and Capcom vs Super Smash Bros. 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 RSBEDH = Super Smash Bros. Brawl Dark Hole/D.A.R.S. RSBEDT = Super Smash Bros. Ultimate Dark Phoenix: Tournament Edition RSBEN1 = Super Smash Bros. Project M RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBETE = Super Smash Bros. Legacy TE RSBEWM = Super Smash Bros. Project M Wi-Fi RSBEXP = Super Smash Bros. Legacy XP RSBJ01 = 大乱闘スマッシュ゙ラ゙ー゙X RSBK01 = Dairantou Smash Brothers X RSBP01 = Super Smash Bros. Brawl RSBP02 = Master4Robin's Super Smash Bros. Brawl Hack Pack 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 Spirits: Rokuban Shoubu 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 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 RT4EUD = Tales of Symphonia: Dawn of the New World Undub 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 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 RYIPNK = SPRay RYJPTV = Princess Lillifee's Magic Fairy RYKEAF = We Ski & Snowboard RYKJAF = ファミリースキー ワール゙スキー&スノー゙ー゙ RYKKAF = We 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 = éŠæˆ¯çŽ‹ 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 S32DJW = The Voice of Germany: I Want You S32PJW = The Voice S32SJW = La Voz: Quiero tu voz S33DKM = Let's Sing 2017 - Mit Deutschen Hits! S33FKM = Let's Sing 2017 : Hits Français et Internationaux S33PKM = Let's Sing 2017 S33SKM = Let's Sing 9 - Spanish Version S3AE5G = Attack of the Movies 3D S3APGT = 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 S59E01 = Samurai Warriors 3 S59JC8 = 戦国無åŒ3 S59P01 = Samurai Warriors 3 S5BETL = Back to the Future: The Game S5BPKM = Back to the Future: The Game S5DE41 = Just Dance Disney Party 2 S5DP41 = Just Dance Disney Party 2 S5KJAF = 太鼓ã®é”人WII è¶…ã‚™ã†ã‹ç‰ˆ S5MEVZ = Monster High: New Ghoul in School S5MPVZ = Monster High: New Ghoul in School S5PPAU = PSA World Tour Squash 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 = ゙ラ゙ンクエストX オールインワン゚ッケー゙ 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 Batman 2: DC Super Heroes 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 S7EE52 = Transformers: Ultimate Battle Edition 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 S7LPKM = Let's Sing @ Radio Italia 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 SAOEVZ = Monster High: Ghoul Spirit SAOP78 = Monster High: Ghoul Spirit SAOXVZ = 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 SB3EUD = Sengoku Basara: Samurai Heroes Undub 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 SCLE01 = Cliff Super Mario Bros. Wii SCLJ01 = Cliff Super Mario Bros. Wii SCLP01 = Cliff Super Mario Bros. Wii 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! SDEPGT = 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 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 Adventure 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 SDUEO1 = DU Super Mario Bros. : DU Edition 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 SERJ4Q = ゙ィ゙ニー エ゚ックミッキー2:二ã¤ã®åŠ› 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 SFEPYF = Fit Music 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 SFRE01 = Super Mario Bros. Frozen Edition SFRJ01 = Super Mario Bros. Frozen Edition SFRP01 = Super Mario Bros. Frozen Edition 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 SGBPGT = 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 SH9PNJ = 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 ロン゙ンオリン゚ック SIIK01 = Mario & Sonic at the London 2012 Olympic Games 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 v2.0 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 SJNE41 = Just Dance 2016 SJNP41 = Just Dance 2016 SJOE41 = Just Dance 2014 SJOP41 = Just Dance 2014 SJPE78 = Jeopardy! SJQEPZ = Jewel Quest Trilogy SJQPGR = Jewel Quest Trilogy SJREA4 = Def Jam Rapstar SJRPA4 = Def Jam Rapstar SJRXA4 = Def Jam Rapstar SJRYA4 = 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 SK3EUD = Trauma Team Undub SK4E52 = Shrek Forever After SK4P52 = Shrek Forever After SK5PY1 = Kylie Sing & Dance SK6KJD = K-POP Dance Festival SK7EVZ = Disney Violetta: Rhythm & Music SK7PVZ = Disney Violetta: Rhythm & Music SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8I52 = 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 SKNE52 = Skylanders: SuperChargers Racing SKNP52 = Skylanders: SuperChargers Racing 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 SKYY52 = Skylanders: Giants SKYZ52 = Skylanders: Giants SKZE52 = DreamWorks Super Star Kartz SKZP52 = DreamWorks Super Star Kartz SL2J01 = 零~真紅ã®è¶ï½ž SL2P01 = 零~真紅ã®è¶ï½ž SL2PUD = Project Zero 2: Wii Edition Undub SL3ENR = ゙ラ゙ン゙レアトリロ゙ー SL4PAF = Los 40 Principales Karaoke Party SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = The Last Airbender SLAP78 = The Last Airbender SLAX78 = The Last Airbender: Special Edition SLAZ78 = The Last Airbender: Toys R Us Special Edition SLBE01 = MLG Super Luigi Bros Wii SLBJ01 = MLG Super Luigi Bros. Wii SLBP01 = MLG Super Luigi Bros. Wii 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 SLGEYG = Let's Sing 2016 SLGPKM = Let's Sing 2016 SLHEWR = LEGO Harry Potter: Years 5-7 SLHPWR = LEGO Harry Potter: Years 5-7 SLIE52 = Little League World Series Baseball: Double Play SLJPKM = Let's Sing 8 - Spanish Version SLKPKM = Let’s Sing 2016 : Hits Français SLLEWW = Lucha Libre AAA: Héroes del Ring SLMPWL = 40 Principales Karaoke Party Vol. 2 SLNP7M = The Voice 3 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 SMNE14 = New Super Mario Bros. Wii: Pain Coins SMNE15 = Newer Super Mario Bros. 7 SMNE20 = New Super Mario Bros. H SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE31 = New Super Mario Bros. Wii - Other World 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 SMNE44 = Go Go Mario SMNE45 = Lemmy's Winter Palace SMNE46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNE47 = The New Special Road SMNE48 = True Mario Bros. SMNE49 = New Super Mario Bros. Wii - MSMKW Pack SMNE50 = New Super Mario Bros. Wii - Power Tower Pack SMNE51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNE52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNE53 = New Super Mario Bros. Wii - Kid Edition SMNE54 = New Super Mario Bros. Wii - The Next Levels 2 SMNE55 = New Super Mario Bros. Wii - Lava Mod Pack SMNE56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNE57 = Mario's Big Adventure SMNE58 = Wario's Cave SMNE59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNE60 = Remixed Super Mario Bros. Wii SMNE61 = New Super Summer Vacation SMNE62 = New Super Bowser Wii SMNE65 = Ghostly Super Ghost Boos Wii SMNE66 = The Legend of Yoshi SMNE67 = Larsenv Super Mario Collection SMNE68 = The Legend of Yoshi DLC SMNE69 = Revised Super Mario Bros. Wii SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNERE = Retro Mario Bros. SMNERV = RVLution 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 SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZY = Super Mario Skyland 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 SMNJ14 = New Super Mario Bros. Wii: Pain Coins SMNJ15 = Newer Super Mario Bros. 7 SMNJ20 = New Super Mario Bros. H SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ31 = New Super Mario Bros. Wii - Other World 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 SMNJ44 = Go Go Mario SMNJ45 = Lemmy's Winter Palace SMNJ46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNJ47 = The New Special Road SMNJ48 = True Mario Bros. SMNJ49 = New Super Mario Bros. Wii - MSMKW Pack SMNJ50 = New Super Mario Bros. Wii - Power Tower Pack SMNJ51 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ53 = New Super Mario Bros. Wii - Kid Edition SMNJ54 = New Super Mario Bros. Wii - The Next Levels 2 SMNJ55 = New Super Mario Bros. Wii - Lava Mod Pack SMNJ56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNJ57 = Mario's Big Adventure SMNJ58 = Wario's Cave SMNJ59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNJ60 = Remixed Super Mario Bros. Wii SMNJ61 = New Super Summer Vacation SMNJ62 = New Super Bowser Wii SMNJ65 = Ghostly Super Ghost Boos Wii SMNJ66 = The Legend of Yoshi SMNJ67 = Larsenv Super Mario Collection SMNJ68 = The Legend of Yoshi DLC SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJRE = Retro Mario Bros. SMNJRV = RVLution 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 SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZY = Super Mario Skyland 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 SMNP14 = New Super Mario Bros. Wii: Pain Coins SMNP15 = Newer Super Mario Bros. 7 SMNP20 = New Super Mario Bros. H SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP31 = New Super Mario Bros. Wii - Other World 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 SMNP44 = Go Go Mario SMNP45 = Lemmy's Winter Palace SMNP46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNP47 = The New Special Road SMNP48 = True Mario Bros. SMNP49 = New Super Mario Bros. Wii - MSMKW Pack SMNP50 = New Super Mario Bros. Wii - Power Tower Pack SMNP51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNP52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNP53 = New Super Mario Bros. Wii - Kid Edition SMNP54 = New Super Mario Bros. Wii - The Next Levels 2 SMNP55 = New Super Mario Bros. Wii - Lava Mod Pack SMNP56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNP57 = Mario's Big Adventure SMNP58 = Wario's Cave SMNP59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNP60 = Remixed Super Mario Bros. Wii SMNP61 = New Super Summer Vacation SMNP62 = New Super Bowser Wii SMNP65 = Ghostly Super Ghost Boos Wii SMNP66 = The Legend of Yoshi SMNP67 = Larsenv Super Mario Collection SMNP68 = The Legend of Yoshi DLC SMNP77 = New Super Mario Bros. Wii Arcadia 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 SMNPO1 = New Super Mario Custom Edition SMNPRE = Retro Mario Bros. SMNPRV = RVLution 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 SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZY = Super Mario Skyland 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 SO3EUD = Rune Factory: Tides of Destiny Undub SO3J99 = ルーンファクトリー オーシャン゙ SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg 2 SOCE4Z = Deadliest Catch: Sea of Chaos SODPYK = The Explorer and the Mystery of the Diamond Scarab 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 SOME02 = Rhythm Heaven Fever Repainted SOMJ01 = ã¿ã‚“ãªã®ãƒªã‚™ãƒ å¤©å›½ SOMK01 = Rhythm World 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 = ゙ル゙ã®ä¼èª¬ スカイウォー゙ソー゙ 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 & 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 = Mama's 2-Pack SQKK01 = Mama's 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 SQWE52 = The Voice: I Want You 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 SROENS = Rodea the Sky Soldier SROJQC = ロ゙ア・゙・スカイソル゙ャー SROKQC = Rodea the Sky Soldier SROPNS = Rodea the Sky Soldier 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 SSPJGD = スカイラン゙ー゙ ス゚イロã®å¤§å†’険 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 SSUPLR = 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 SVCPXT = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVEPAF = DreamWorks The Croods: Prehistoric Party! & Rise of the Guardians: Combo Pack 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 SVQEVZ = Barbie and Her Sisters: Puppy Rescue SVQPVZ = Barbie and Her Sisters: Puppy Rescue 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 SX3PUD = Pandora's Tower Undub 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 SX9PRV = The Voice Vol. 2 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 SY7PKM = Let's Sing 7 - Spanish Version 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 SZ7E41 = Just Dance 2017 SZ7P41 = Just Dance 2017 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: 20170813134805) 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 = TsÌ„shin 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 = ã²ã‚‰ã‚ãカー゙゙トル メクルカ WFQE = Frogger: Hyper Arcade Edition 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: 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 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 WKJE = Karaoke Joysound 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 WMH1 = Mother 1+2+3 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 WN64 = Nintendo 64 Forwarder 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 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 = Pokémon Rumble (Demo) XHAP = Pokémon 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-3.01a/share/titles-it.txt0000644000175000017500000110657113363642463015775 0ustar michaelmichael010E01 = Wii Backup Disc v1.31 301E01 = GameCube Service Disc 9XGX = SNES9xGX 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... CBIEE9 = Harvest Moon: Pride Parade 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 CGHE52 = Guitar Hero 2K16 (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.2 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.2 CS9PZZ = StarSing : Pop Hits 9 v1.0 CSAP00 = StarSing : '80s Volume 3 v2.2 CSAPZZ = StarSing : Best of Goldman v1.0 CSBP00 = StarSing : '90s Volume 2 v2.2 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 v2.0 CSFP00 = StarSing : Pop Hits 6 v2.0 CSGP00 = StarSing : Chansons Magiques de Disney v2.0 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = StarSing : Pop Hits 7 v2.0 CSJP00 = StarSing : Après-Ski Party v2.0 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 v2.0 CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = StarSing : Génériques TV v2.1 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.1 CT9P00 = StarSing : Pop Hits 9 v2.0 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.2 CTNP00 = StarSing : Pop Hits 10 v2.0 CTOP00 = StarSing : The Beatles Volume 2 v2.1 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 v2.0 CTUP00 = StarSing : Rihanna v2.0 CTVP00 = StarSing : Lady GaGa v1.1 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CTZP00 = StarSing : Volume 3 v1.0 CU0P00 = StarSing : Retro Volume 3 v1.0 CU1P00 = StarSing : Girls v1.0 CU2P00 = StarSing : Volume 4 v1.1 CU3P00 = StarSing : Retro Volume 4 v1.1 CU4P00 = StarSing : Retro Volume 5 v1.0 CU5P00 = StarSing : International Volume 4 v1.0 CU6P00 = StarSing : Volume 5 v1.0 CU7P00 = StarSing : Retro Volume 6 v1.0 CU8P00 = StarSing : Volume 6 v1.0 CU9P00 = StarSing : Volume 7 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 = B.L.I.N.D. 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 = WAD Batch Installer 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: Scorched Earth 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 = Monthly Nintendo Shop Demo - 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: A Hard Days Night 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 DBSBT3 = Dragon Ball Budokai Tenkaichi 3 Version Latino 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. Brawl: 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 DN6A = Not64 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 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 DTZJ08 = Takarajima Z Barbaros' Treasure (Demo) 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 DWEJA4 = Winning Eleven PLAY MAKER 2008 (Demo) 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 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 Shodown 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 Shodown EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen EAEP = Samurai Shodown 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 Shodown 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 EAZP = World Heroes Perfect EB2E = Real Bout Fatal Fury Special EB2J = Real Bout Garou Densetsu Special EB2P = Real Bout Fatal Fury Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB5P = 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 EBGP = 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 EBSP = The Path of the Warrior: Art of Fighting 3 EBTJ = Crossed Swords EBUE = 2020 Super Baseball EBUJ = Super Baseball 2020 EBUP = 2020 Super Baseball 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 ECAP = Real Bout Fatal Fury 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECCP = 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 ECGP = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECHP = The King of Fighters '98 ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECIP = 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 II 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 III 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 JingÌ„ji SaburÌ„: Shinjuku Ch̄̄ KÌ„en 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 FERP = Zoda’s Revenge: StarTropics II 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 FF5P = Double Dragon II: 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: Remix SD 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 G2DJB2 = Digimon Battle Chronicle 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 & 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 G2XJ8P = Sonic Gems Collection G2XP8P = Sonic Gems Collection G3AD69 = The Lord of the Rings: The Third Age G3AE69 = The Lord of the Rings: The Third Age G3AF69 = The Lord of the Rings: The Third Age G3AP69 = The Lord of the Rings: The Third Age G3AS69 = The 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: Il Portale Millenario 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 G96P01 = Interactive Multi-Game Demo Disc - November 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 G9RJ7D = Crash Bandicoot Gacchanko World 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 GA3J51 = 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 GAZJ13 = Harry Potter to Azkaban no Shuujin 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 GBMJ7F = 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 GBRJ18 = Bloody Roar Extreme GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSJ8P = Beach Spikers: Virtua Beach Volleyball GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTJA7 = Bakuten Shoot Beyblade 2002: Nettou! Magne Tag 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 = Pokémon Colosseum GC6P01 = Pokémon Colosseum GC7PNK = Cocoto Platform Jumper GC8JA4 = Crash Bandicoot: Bakusou! Nitro Kart GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBJA4 = Crash Bandicoot 4: Sakuretsu! Majin Power 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 Complete 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 GCTJ8P = 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 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 Arena 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 = 007: Everything or Nothing GENF69 = James Bond 007: Everything or Nothing GENP69 = James Bond 007: Everything Or Nothing GENS69 = James Bond 007: Everything or Nothing GEOE08 = Capcom vs. SNK 2 EO GEOJ08 = Capcom vs. SNK 2 EO: Millionaire Fighting 2001 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 GEZJ8P = 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 GF4I52 = I fantastici 4 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 GFIJ13 = 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 GG4J08 = 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 GH4J13 = Harry Potter to Honoo no Goblet 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 GHLJ13 = Harry Potter to Kenja no Ishi GHLJ69 = Harry Potter to Kenja no Ishi GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Philosopher'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 GHSJ13 = Harry Potter to Himitsu no Heya GHSJ69 = Harry Potter to Himitsu no Heya GHSP69 = Harry Potter and the Chamber of Secrets GHSX69 = Harry Potter e la Camera dei Segreti 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 GJND78 = Jimmy Neutron: Boy Genius 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 = The Lord of the Rings: The Return of the King GKLE69 = The 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 = The Lord of the Rings: The Return of the King GKLS69 = The 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's Airride GKYP01 = Kirby Air Ride GKZD54 = Codename: Kids Next Door - Operation: V.I.D.E.O.G.A.M.E. 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 = The Lord of the Rings: The Two Towers GLOE69 = The Lord of the Rings: The Two Towers GLOF69 = The Lord of the Rings: The Two Towers GLOI69 = Il Signore degli Anelli: Le Due Torri GLOP69 = The 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 Hoffman's 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 GOTJB2 = One Piece: Treasure Battle! 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 GQ4D78 = SpongeBob SquarePants: Creature from the Krusty Krab 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 GQCI52 = 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 GRJPAF = R: Racing Evolution 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 GSMJ08 = Spider-Man: The Movie 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 Squadron II: Rogue Leader GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = Star Wars Rogue Squadron II GSWP64 = Star Wars Rogue Squadron II: Rogue Leader 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 GVS32E = Virtua Striker 3 Ver. 2002 GVS32J = Virtua Striker 3 Ver.2002 (Triforce) GVS45E = Virtua Striker 4 GVS45J = Virtua Striker 4 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 = James Bond 007 in 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 GWEJ51 = 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 GX2E01 = Pokemon XG: Next Gen 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 = Pokémon 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 HADE = Internet Channel HADJ = Internet Channel HADP = Internet Channel HAFE = Forecast Channel HAFJ = Forecast Channel HAFP = Canale Meteo HAGE = Canale Notizie HAGJ = News Channel HAGP = Canale Notizie 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 no Tomo Channel G Guide for Wii HBWE01 = New Super Mario Bros. Wii: Hellboy Edition HC3J = USB Flash Optimization HC4E = Crunchyroll HC4P = Crunchyroll 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 HCFJ = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Wii Speak Channel HCGE = Wii + Internet HCGJ = Wii + Internet HCGP = Wii + Internet HCHJ = Demae Channel HCIJ = Wii no Ma HCJP = BBC iPlayer Channel HCLE = Netflix HCLP = Netflix HCMP = Kirby TV Channel 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 JCNP = 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 E.D.F.: 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 JDNP = 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 = KyÌ„yaku Megami Tensei: Megami Tensei I・II JODI = Canale Homebrew JOUE01 = New Super Mario Bros. Wii 10 The Journey KLSEXJ = The Last Story (NTSC-U, Japanese Audio) 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 MB3L = 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 MK7P41 = Mario Kart 7 Wii 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 = Pokémon 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 NTLC = Super Mario 64 Multiplayer 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 = Pokémon 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 PGPJB2 = SD Gundam Trial 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: KÌ„kÌ„ YakyÌ„ 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 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 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 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 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 R7FEUD = Final Fantasy Fables: Chocobo's Dungeon Undub 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! R7MPFR = Musiic Party: Rock the House 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) 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 = Sugoro Chronicle: Migite ni Ken o Hidarite ni Saikoro o 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 RDXE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino Beta 3 RDXJ18 = Deca Sporta RDXKA4 = Deca Sporta RDXP18 = Sports Island RDYEGN = CID: The Dummy RDZE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino 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 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 = 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 RFEPUD = Fire Emblem: Radian Dawn Undub 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 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 RFNE = Wii Fit Channel 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 RFPE = Wii Fit Plus Channel 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 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 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 RGWX = Rabbids Channel RGXE5D = Game Party RGXEFN = Guitar Hero III Custom: Meteo Last Custom RGXEWR = Game Party 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 RK2EUD = Trauma Center: New Blood Undub 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 RKDEUD = Trauma Center: Second Opinion Undub RKDJEB = Trauma Center: Second Opinion RKDJG9 = Kamen Rider: Climax Heroes W RKDP01 = 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 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 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 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) RMCE = Mario Kart Channel RMCJ01 = Mario Kart Wii RMCJ12 = Wiimms MKW Fun 2011-11 RMCJ30 = Wiimms MKW-Fun 2015-12.jap RMCJ31 = Wiimms MKW-Fun 2016-02.jap RMCJ32 = Wiimms MKW-Fun 2016-07.jap RMCJ33 = Wiimms MKW-Fun 2016-10.jap RMCJ34 = Wiimms MKW-Fun 2017-05.jap RMCJ64 = Peach Kart 8 RMCJ76 = Pro CT Pack RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCJL1 = Luma's CT Pack 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 RMCP27 = Wiimms MKW-Fun 2015-03.pal RMCP28 = Wiimms MKW Retro 2015-05.pal RMCP29 = Wiimms MKW-Fun 2015-08.pal RMCP30 = Wiimms MKW-Fun 2015-12.pal RMCP31 = Wiimms MKW-Fun 2016-02.pal RMCP32 = Wiimms MKW-Fun 2016-07.pal RMCP33 = Wiimms MKW-Fun 2016-10.pal RMCP34 = Wiimms MKW-Fun 2017-05.pal RMCP64 = Peach Kart 8 RMCP76 = Pro CT Pack RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCPL1 = Luma's CT Pack 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 RNEEUD = Naruto Shippuden: Clash of Ninja Revolution 3 Undub 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 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 = Ì„kami ROWJ08 = Ì„kami ROWP08 = Ì„kami 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 RPJEUD = Arc Rise Fantasia Undub 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 RR2XUG = Extreme Truck Racing 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 SaikyÌ„ 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 = Marlan Project M 3.6 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 2 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 RSBE43 = Super Smash Bros. Brawl: MASTERLINKX's Custom Pack RSBE44 = Super Smash Bros. Brawl: Shadow Version RSBE45 = Super Smash Bros. Brawl: Shock44's Custom Build RSBE46 = Super Smash Bros. Brawl: DragonD101's Texture Pack RSBE47 = Super Smash Bros. Brawl: XChosen1's Texture Pack RSBE49 = Super Smash Bros. Brawl: Water Block Edition RSBE50 = Super Smash Bros. Project U: Ultra Version RSBEAA = Marvel and Capcom vs Super Smash Bros. 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 RSBEDH = Super Smash Bros. Brawl Dark Hole/D.A.R.S. RSBEDT = Super Smash Bros. Ultimate Dark Phoenix: Tournament Edition RSBEN1 = Super Smash Bros. Project M RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBETE = Super Smash Bros. Legacy TE RSBEWM = Super Smash Bros. Project M Wi-Fi RSBEXP = Super Smash Bros. Legacy XP RSBJ01 = Dairantou Smash Brothers X RSBK01 = Dairantou Smash Brothers X RSBP01 = Super Smash Bros. Brawl RSBP02 = Master4Robin's Super Smash Bros. Brawl Hack Pack 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 Spirits: Rokuban Shoubu 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 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 RT4EUD = Tales of Symphonia: Dawn of the New World Undub 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 Le 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 = Wario Land 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 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 RYIPNK = SPRay RYJPTV = Princess Lillifee's Magic Fairy RYKEAF = We Ski & Snowboard RYKJAF = Family Ski: World Ski & Snowboard RYKKAF = We 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 S32DJW = The Voice of Germany: I Want You S32PJW = The Voice S32SJW = La Voz: Quiero tu voz S33DKM = Let's Sing 2017 - Mit Deutschen Hits! S33FKM = Let's Sing 2017 : Hits Français et Internationaux S33PKM = Let's Sing 2017 S33SKM = Let's Sing 9 - Spanish Version S3AE5G = Attack of the Movies 3D S3APGT = 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 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 S5DE41 = Just Dance Disney Party 2 S5DP41 = Just Dance Disney Party 2 S5KJAF = Taiko no Tatsujin Wii: Chou Goukaban S5MEVZ = Monster High: New Ghoul in School S5MPVZ = Monster High: Una Nuova Mostramica a Scuola S5PPAU = PSA World Tour Squash 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 = 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 Batman 2: DC Super Heroes 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 S7EE52 = Transformers: Ultimate Battle Edition 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 S7LPKM = Let's Sing @ Radio Italia 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 SAOEVZ = Monster High: Ghoul Spirit SAOP78 = Monster High: Scuola da Paura SAOXVZ = 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 SB3EUD = Sengoku Basara: Samurai Heroes Undub 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 SCLE01 = Cliff Super Mario Bros. Wii SCLJ01 = Cliff Super Mario Bros. Wii SCLP01 = Cliff Super Mario Bros. Wii 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! SDEPGT = 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 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 Adventure 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 SDUEO1 = DU Super Mario Bros. : DU Edition 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 SERJ4Q = Disney Epic Mickey 2: The Power of Two 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 SFEPYF = Fit Music 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 SFRE01 = Super Mario Bros. Frozen Edition SFRJ01 = Super Mario Bros. Frozen Edition SFRP01 = Super Mario Bros. Frozen Edition 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 SGBPGT = 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 SH9PNJ = 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 SIIK01 = 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 v2.0 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 SJNE41 = Just Dance 2016 SJNP41 = Just Dance 2016 SJOE41 = Just Dance 2014 SJOP41 = Just Dance 2014 SJPE78 = Jeopardy! SJQEPZ = Jewel Quest Trilogy SJQPGR = Jewel Quest Trilogy SJREA4 = Def Jam Rapstar SJRPA4 = Def Jam Rapstar SJRXA4 = Def Jam Rapstar SJRYA4 = 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 SK3EUD = Trauma Team Undub SK4E52 = Shrek Forever After SK4P52 = Shrek: E Vissero Felici E Contenti SK5PY1 = Kylie Sing & Dance SK6KJD = K-POP Dance Festival SK7EVZ = Disney Violetta: Musica e Ritmo SK7PVZ = Disney Violetta: Musica e Ritmo SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8I52 = 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 SKNE52 = Skylanders: SuperChargers Racing SKNP52 = Skylanders: SuperChargers Racing 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 SKYY52 = 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 SL2PUD = Project Zero 2: Wii Edition Undub SL3ENR = Dragon's Lair Trilogy SL4PAF = Los 40 Principales Karaoke Party SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = The Last Airbender SLAP78 = L'Ultimo Dominatore dell'Aria SLAX78 = The Last Airbender: Special Edition SLAZ78 = The Last Airbender: Toys R Us Special Edition SLBE01 = MLG Super Luigi Bros Wii SLBJ01 = MLG Super Luigi Bros. Wii SLBP01 = MLG Super Luigi Bros. Wii 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 SLGEYG = Let's Sing 2016 SLGPKM = Let's Sing 2016 SLHEWR = LEGO Harry Potter: Years 5-7 SLHPWR = LEGO Harry Potter: Anni 5-7 SLIE52 = Little League World Series Baseball: Double Play SLJPKM = Let's Sing 8 - Spanish Version SLKPKM = Let’s Sing 2016 : Hits Français SLLEWW = Lucha Libre AAA: Héroes del Ring SLMPWL = 40 Principales Karaoke Party Vol. 2 SLNP7M = The Voice 3 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 SMNE14 = New Super Mario Bros. Wii: Pain Coins SMNE15 = Newer Super Mario Bros. 7 SMNE20 = New Super Mario Bros. H SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE31 = New Super Mario Bros. Wii - Other World 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 SMNE44 = Go Go Mario SMNE45 = Lemmy's Winter Palace SMNE46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNE47 = The New Special Road SMNE48 = True Mario Bros. SMNE49 = New Super Mario Bros. Wii - MSMKW Pack SMNE50 = New Super Mario Bros. Wii - Power Tower Pack SMNE51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNE52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNE53 = New Super Mario Bros. Wii - Kid Edition SMNE54 = New Super Mario Bros. Wii - The Next Levels 2 SMNE55 = New Super Mario Bros. Wii - Lava Mod Pack SMNE56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNE57 = Mario's Big Adventure SMNE58 = Wario's Cave SMNE59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNE60 = Remixed Super Mario Bros. Wii SMNE61 = New Super Summer Vacation SMNE62 = New Super Bowser Wii SMNE65 = Ghostly Super Ghost Boos Wii SMNE66 = The Legend of Yoshi SMNE67 = Larsenv Super Mario Collection SMNE68 = The Legend of Yoshi DLC SMNE69 = Revised Super Mario Bros. Wii SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNERE = Retro Mario Bros. SMNERV = RVLution 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 SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZY = Super Mario Skyland 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 SMNJ14 = New Super Mario Bros. Wii: Pain Coins SMNJ15 = Newer Super Mario Bros. 7 SMNJ20 = New Super Mario Bros. H SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ31 = New Super Mario Bros. Wii - Other World 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 SMNJ44 = Go Go Mario SMNJ45 = Lemmy's Winter Palace SMNJ46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNJ47 = The New Special Road SMNJ48 = True Mario Bros. SMNJ49 = New Super Mario Bros. Wii - MSMKW Pack SMNJ50 = New Super Mario Bros. Wii - Power Tower Pack SMNJ51 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ53 = New Super Mario Bros. Wii - Kid Edition SMNJ54 = New Super Mario Bros. Wii - The Next Levels 2 SMNJ55 = New Super Mario Bros. Wii - Lava Mod Pack SMNJ56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNJ57 = Mario's Big Adventure SMNJ58 = Wario's Cave SMNJ59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNJ60 = Remixed Super Mario Bros. Wii SMNJ61 = New Super Summer Vacation SMNJ62 = New Super Bowser Wii SMNJ65 = Ghostly Super Ghost Boos Wii SMNJ66 = The Legend of Yoshi SMNJ67 = Larsenv Super Mario Collection SMNJ68 = The Legend of Yoshi DLC SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJRE = Retro Mario Bros. SMNJRV = RVLution 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 SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZY = Super Mario Skyland 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 SMNP14 = New Super Mario Bros. Wii: Pain Coins SMNP15 = Newer Super Mario Bros. 7 SMNP20 = New Super Mario Bros. H SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP31 = New Super Mario Bros. Wii - Other World 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 SMNP44 = Go Go Mario SMNP45 = Lemmy's Winter Palace SMNP46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNP47 = The New Special Road SMNP48 = True Mario Bros. SMNP49 = New Super Mario Bros. Wii - MSMKW Pack SMNP50 = New Super Mario Bros. Wii - Power Tower Pack SMNP51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNP52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNP53 = New Super Mario Bros. Wii - Kid Edition SMNP54 = New Super Mario Bros. Wii - The Next Levels 2 SMNP55 = New Super Mario Bros. Wii - Lava Mod Pack SMNP56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNP57 = Mario's Big Adventure SMNP58 = Wario's Cave SMNP59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNP60 = Remixed Super Mario Bros. Wii SMNP61 = New Super Summer Vacation SMNP62 = New Super Bowser Wii SMNP65 = Ghostly Super Ghost Boos Wii SMNP66 = The Legend of Yoshi SMNP67 = Larsenv Super Mario Collection SMNP68 = The Legend of Yoshi DLC SMNP77 = New Super Mario Bros. Wii Arcadia 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 SMNPO1 = New Super Mario Custom Edition SMNPRE = Retro Mario Bros. SMNPRV = RVLution 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 SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZY = Super Mario Skyland 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 SO3EUD = Rune Factory: Tides of Destiny Undub SO3J99 = Rune Factory: Oceans SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg 2 SOCE4Z = Deadliest Catch: Sea of Chaos SODPYK = The Explorer and the Mystery of the Diamond Scarab 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 SOME02 = Rhythm Heaven Fever Repainted SOMJ01 = Minna no Rhythm Tengoku SOMK01 = Rhythm World 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: 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 & 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 = Mama's 2-Pack SQKK01 = Mama's 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 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 SQWE52 = The Voice: I Want You 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 SROENS = Rodea the Sky Soldier SROJQC = Tenkuu no Kishi Rodea SROKQC = Rodea the Sky Soldier SROPNS = Rodea the Sky Soldier 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 SSPJGD = 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 SSUPLR = 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 SVCPXT = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = SpongeBob: La Vendetta Robotica de Plankton SVEPAF = DreamWorks The Croods: Prehistoric Party! & Rise of the Guardians: Combo Pack 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 SVQEVZ = Barbie and Her Sisters: Puppy Rescue SVQPVZ = Barbie e le sue sorelle: Salvataggio Cuccioli 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 SX3PUD = Pandora's Tower Undub 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 SX9PRV = The Voice Vol. 2 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 SY7PKM = Let's Sing 7 - Spanish Version 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 SZ7E41 = Just Dance 2017 SZ7P41 = Just Dance 2017 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: 20170813134759) 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 = TsÌ„shin 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 WFQE = Frogger: Hyper Arcade Edition 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: 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 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 WKJE = Karaoke Joysound 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 WMH1 = Mother 1+2+3 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 WN64 = Nintendo 64 Forwarder 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 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: Ikuzo! Arashi 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: Susume! Honoo 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 = Pokémon Rumble (Demo) XHAP = Pokémon 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-3.01a/share/titles-nl.txt0000644000175000017500000110522113363642463015761 0ustar michaelmichael010E01 = Wii Backup Disc v1.31 301E01 = GameCube Service Disc 9XGX = SNES9xGX 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... CBIEE9 = Harvest Moon: Pride Parade 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 CGHE52 = Guitar Hero 2K16 (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.2 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.2 CS9PZZ = StarSing : Pop Hits 9 v1.0 CSAP00 = StarSing : '80s Volume 3 v2.2 CSAPZZ = StarSing : Best of Goldman v1.0 CSBP00 = StarSing : '90s Volume 2 v2.2 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 v2.0 CSFP00 = StarSing : Pop Hits 6 v2.0 CSGP00 = StarSing : Chansons Magiques de Disney v2.0 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = StarSing : Pop Hits 7 v2.0 CSJP00 = StarSing : Après-Ski Party v2.0 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 v2.0 CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = StarSing : Génériques TV v2.1 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.1 CT9P00 = StarSing : Pop Hits 9 v2.0 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.2 CTNP00 = StarSing : Pop Hits 10 v2.0 CTOP00 = StarSing : The Beatles Volume 2 v2.1 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 v2.0 CTUP00 = StarSing : Rihanna v2.0 CTVP00 = StarSing : Lady GaGa v1.1 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CTZP00 = StarSing : Volume 3 v1.0 CU0P00 = StarSing : Retro Volume 3 v1.0 CU1P00 = StarSing : Girls v1.0 CU2P00 = StarSing : Volume 4 v1.1 CU3P00 = StarSing : Retro Volume 4 v1.1 CU4P00 = StarSing : Retro Volume 5 v1.0 CU5P00 = StarSing : International Volume 4 v1.0 CU6P00 = StarSing : Volume 5 v1.0 CU7P00 = StarSing : Retro Volume 6 v1.0 CU8P00 = StarSing : Volume 6 v1.0 CU9P00 = StarSing : Volume 7 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 = B.L.I.N.D. 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 = WAD Batch Installer 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: Scorched Earth 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 = Monthly Nintendo Shop Demo - 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: A Hard Days Night 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 DBSBT3 = Dragon Ball Budokai Tenkaichi 3 Version Latino 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. Brawl: 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 DN6A = Not64 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 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 DTZJ08 = Takarajima Z Barbaros' Treasure (Demo) 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 DWEJA4 = Winning Eleven PLAY MAKER 2008 (Demo) 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 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 Shodown 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 Shodown EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen EAEP = Samurai Shodown 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 Shodown 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 EAZP = World Heroes Perfect EB2E = Real Bout Fatal Fury Special EB2J = Real Bout Garou Densetsu Special EB2P = Real Bout Fatal Fury Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB5P = 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 EBGP = 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 EBSP = The Path of the Warrior: Art of Fighting 3 EBTJ = Crossed Swords EBUE = 2020 Super Baseball EBUJ = Super Baseball 2020 EBUP = 2020 Super Baseball 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 ECAP = Real Bout Fatal Fury 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECCP = 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 ECGP = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECHP = The King of Fighters '98 ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECIP = 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 II 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 III 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 JingÌ„ji SaburÌ„: Shinjuku Ch̄̄ KÌ„en 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 FERP = Zoda’s Revenge: StarTropics II 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 FF5P = Double Dragon II: 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 G2DJB2 = Digimon Battle Chronicle 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 & 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 G2XJ8P = Sonic Gems Collection G2XP8P = Sonic Gems Collection G3AD69 = The Lord of the Rings: The Third Age G3AE69 = The Lord of the Rings: The Third Age G3AF69 = The Lord of the Rings: The Third Age G3AP69 = The Lord of the Rings: The Third Age G3AS69 = The 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 G96P01 = Interactive Multi-Game Demo Disc - November 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 G9RJ7D = Crash Bandicoot Gacchanko World 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 GA3J51 = 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 GAZJ13 = Harry Potter to Azkaban no Shuujin 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 GBMJ7F = 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 GBRJ18 = Bloody Roar Extreme GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSJ8P = Beach Spikers: Virtua Beach Volleyball GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTJA7 = Bakuten Shoot Beyblade 2002: Nettou! Magne Tag 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 = Pokémon Colosseum GC6P01 = Pokémon Colosseum GC7PNK = Cocoto Platform Jumper GC8JA4 = Crash Bandicoot: Bakusou! Nitro Kart GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBJA4 = Crash Bandicoot 4: Sakuretsu! Majin Power 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 Complete 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 GCTJ8P = 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 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 Arena 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 = 007: Everything or Nothing GENF69 = James Bond 007: Everything or Nothing GENP69 = James Bond 007: Everything Or Nothing GENS69 = James Bond 007: Everything or Nothing GEOE08 = Capcom vs. SNK 2 EO GEOJ08 = Capcom vs. SNK 2 EO: Millionaire Fighting 2001 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 GEZJ8P = 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 GF4I52 = Fantastic 4 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 GFIJ13 = 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 GG4J08 = 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 GH4J13 = Harry Potter to Honoo no Goblet 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 GHLJ13 = Harry Potter to Kenja no Ishi GHLJ69 = Harry Potter to Kenja no Ishi GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Philosopher'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 GHSJ13 = Harry Potter to Himitsu no Heya 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 GJND78 = Jimmy Neutron: Boy Genius 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 = The Lord of the Rings: The Return of the King GKLE69 = The Lord of the Rings: The Return of the King GKLF69 = Lord of the Rings: The Return of the King GKLI69 = The Lord of the Rings: The Return of the King GKLJ69 = The Lord of the Rings: The Return of the King GKLP69 = The Lord of the Rings: The Return of the King GKLS69 = The 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's Airride GKYP01 = Kirby Air Ride GKZD54 = Codename: Kids Next Door - Operation: V.I.D.E.O.G.A.M.E. 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 = The Lord of the Rings: The Two Towers GLOE69 = The Lord of the Rings: The Two Towers GLOF69 = The Lord of the Rings: The Two Towers GLOI69 = The Lord of the Rings: The Two Towers GLOP69 = The 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 Hoffman's 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 GOTJB2 = One Piece: Treasure Battle! 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 GQ4D78 = SpongeBob SquarePants: Creature from the Krusty Krab 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 GQCI52 = 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 GRJPAF = R: Racing Evolution 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 GSMJ08 = Spider-Man: The Movie 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 Squadron II: Rogue Leader GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = Star Wars Rogue Squadron II GSWP64 = Star Wars Rogue Squadron II: Rogue Leader 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 GVS32E = Virtua Striker 3 Ver. 2002 GVS32J = Virtua Striker 3 Ver.2002 (Triforce) GVS45E = Virtua Striker 4 GVS45J = Virtua Striker 4 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 = James Bond 007 in 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 GWEJ51 = 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 GX2E01 = Pokemon XG: Next Gen 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 = Pokémon 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 HADE = Internet Channel HADJ = Internet Channel HADP = Internet Channel HAFE = Forecast Channel HAFJ = Forecast Channel HAFP = Weerkanaal HAGE = News Channel HAGJ = News Channel HAGP = Nieuwskanaal 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 no Tomo Channel G Guide for Wii HBWE01 = New Super Mario Bros. Wii: Hellboy Edition HC3J = USB Flash Optimization HC4E = Crunchyroll HC4P = Crunchyroll 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 HCFJ = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Wii Speak Channel HCGE = Wii + Internet HCGJ = Wii + Internet HCGP = Wii + Internet HCHJ = Demae Channel HCIJ = Wii no Ma HCJP = BBC iPlayer Channel HCLE = Netflix HCLP = Netflix HCMP = Kirby TV Channel 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 JCNP = 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 E.D.F.: 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 JDNP = 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 = KyÌ„yaku Megami Tensei: Megami Tensei I・II JODI = Homebrew Channel JOUE01 = New Super Mario Bros. Wii 10 The Journey KLSEXJ = The Last Story (NTSC-U, Japanese Audio) 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 MB3L = 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 MK7P41 = Mario Kart 7 Wii 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 = Pokémon 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 NTLC = Super Mario 64 Multiplayer 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 = Pokémon 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 PGPJB2 = SD Gundam Trial 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: KÌ„kÌ„ YakyÌ„ 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 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 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: De Game 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 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 = 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 = 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 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 R7FEUD = Final Fantasy Fables: Chocobo's Dungeon Undub 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! R7MPFR = Musiic Party: Rock the House 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) 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 = Sugoro Chronicle: Migite ni Ken o Hidarite ni Saikoro o 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 RDXE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino Beta 3 RDXJ18 = Deca Sporta RDXKA4 = Deca Sporta RDXP18 = Sports Island RDYEGN = CID: The Dummy RDZE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino 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 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 = 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 RFEPUD = Fire Emblem: Radian Dawn Undub 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 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 RFNE = Wii Fit Channel 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 RFPE = Wii Fit Plus Channel 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 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 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 RGWX = Rabbids Channel RGXE5D = Game Party RGXEFN = Guitar Hero III Custom: Meteo Last Custom RGXEWR = Game Party 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: 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 RK2EUD = Trauma Center: New Blood Undub 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 RKDEUD = Trauma Center: Second Opinion Undub RKDJEB = Trauma Center: Second Opinion RKDJG9 = Kamen Rider: Climax Heroes W RKDP01 = 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 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 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! 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) RMCE = Mario Kart Channel RMCJ01 = Mario Kart Wii RMCJ12 = Wiimms MKW Fun 2011-11 RMCJ30 = Wiimms MKW-Fun 2015-12.jap RMCJ31 = Wiimms MKW-Fun 2016-02.jap RMCJ32 = Wiimms MKW-Fun 2016-07.jap RMCJ33 = Wiimms MKW-Fun 2016-10.jap RMCJ34 = Wiimms MKW-Fun 2017-05.jap RMCJ64 = Peach Kart 8 RMCJ76 = Pro CT Pack RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCJL1 = Luma's CT Pack 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 RMCP27 = Wiimms MKW-Fun 2015-03.pal RMCP28 = Wiimms MKW Retro 2015-05.pal RMCP29 = Wiimms MKW-Fun 2015-08.pal RMCP30 = Wiimms MKW-Fun 2015-12.pal RMCP31 = Wiimms MKW-Fun 2016-02.pal RMCP32 = Wiimms MKW-Fun 2016-07.pal RMCP33 = Wiimms MKW-Fun 2016-10.pal RMCP34 = Wiimms MKW-Fun 2017-05.pal RMCP64 = Peach Kart 8 RMCP76 = Pro CT Pack RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCPL1 = Luma's CT Pack 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 RNEEUD = Naruto Shippuden: Clash of Ninja Revolution 3 Undub 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 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 = Ì„kami ROWJ08 = Ì„kami ROWP08 = Ì„kami 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 RPJEUD = Arc Rise Fantasia Undub 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 RR2XUG = Extreme Truck Racing 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 SaikyÌ„ 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 = Marlan Project M 3.6 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 2 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 RSBE43 = Super Smash Bros. Brawl: MASTERLINKX's Custom Pack RSBE44 = Super Smash Bros. Brawl: Shadow Version RSBE45 = Super Smash Bros. Brawl: Shock44's Custom Build RSBE46 = Super Smash Bros. Brawl: DragonD101's Texture Pack RSBE47 = Super Smash Bros. Brawl: XChosen1's Texture Pack RSBE49 = Super Smash Bros. Brawl: Water Block Edition RSBE50 = Super Smash Bros. Project U: Ultra Version RSBEAA = Marvel and Capcom vs Super Smash Bros. 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 RSBEDH = Super Smash Bros. Brawl Dark Hole/D.A.R.S. RSBEDT = Super Smash Bros. Ultimate Dark Phoenix: Tournament Edition RSBEN1 = Super Smash Bros. Project M RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBETE = Super Smash Bros. Legacy TE RSBEWM = Super Smash Bros. Project M Wi-Fi RSBEXP = Super Smash Bros. Legacy XP RSBJ01 = Dairantou Smash Brothers X RSBK01 = Dairantou Smash Brothers X RSBP01 = Super Smash Bros. Brawl RSBP02 = Master4Robin's Super Smash Bros. Brawl Hack Pack 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 Spirits: Rokuban Shoubu 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 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 RT4EUD = Tales of Symphonia: Dawn of the New World Undub 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 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 Le 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 = Wario Land 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 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 RYIPNK = Spray RYJPTV = Prinses Lillifee RYKEAF = We Ski & Snowboard RYKJAF = Family Ski: World Ski & Snowboard RYKKAF = We 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 = Happy 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 S32DJW = The Voice of Germany: I Want You S32PJW = The Voice S32SJW = La Voz: Quiero tu voz S33DKM = Let's Sing 2017 - Mit Deutschen Hits! S33FKM = Let's Sing 2017 : Hits Français et Internationaux S33PKM = Let's Sing 2017 S33SKM = Let's Sing 9 - Spanish Version S3AE5G = Attack of the Movies 3D S3APGT = 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 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 S5DE41 = Just Dance Disney Party 2 S5DP41 = Just Dance Disney Party 2 S5KJAF = Taiko no Tatsujin Wii: Chou Goukaban S5MEVZ = Monster High: New Ghoul in School S5MPVZ = Monster High: New Ghoul in School S5PPAU = PSA World Tour Squash 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: 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 Batman 2: DC Super Heroes 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 S7EE52 = Transformers: Ultimate Battle Edition 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 S7LPKM = Let's Sing @ Radio Italia 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 SAOEVZ = Monster High: Ghoul Spirit SAOP78 = Monster High: De Graf Geest SAOXVZ = 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 SB3EUD = Sengoku Basara: Samurai Heroes Undub 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 SCLE01 = Cliff Super Mario Bros. Wii SCLJ01 = Cliff Super Mario Bros. Wii SCLP01 = Cliff Super Mario Bros. Wii 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! SDEPGT = 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 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 SDUEO1 = DU Super Mario Bros. : DU Edition 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 SERJ4Q = 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 SFEPYF = Fit Music 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 SFRE01 = Super Mario Bros. Frozen Edition SFRJ01 = Super Mario Bros. Frozen Edition SFRP01 = Super Mario Bros. Frozen Edition 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 SGBPGT = 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 SH9PNJ = 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 SIIK01 = 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 v2.0 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 SJNE41 = Just Dance 2016 SJNP41 = Just Dance 2016 SJOE41 = Just Dance 2014 SJOP41 = Just Dance 2014 SJPE78 = Jeopardy! SJQEPZ = Jewel Quest Trilogy SJQPGR = Jewel Quest Trilogy SJREA4 = Def Jam Rapstar SJRPA4 = Def Jam Rapstar SJRXA4 = Def Jam Rapstar SJRYA4 = 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 SK3EUD = Trauma Team Undub SK4E52 = Shrek Forever After SK4P52 = Shrek Voor Eeuwig En Altijd SK5PY1 = Kylie Sing & Dance SK6KJD = K-POP Dance Festival SK7EVZ = Disney Violetta: Rhythm & Music SK7PVZ = Disney Violetta: Rhythm & Music SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8I52 = 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 SKNE52 = Skylanders: SuperChargers Racing SKNP52 = Skylanders: SuperChargers Racing 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 SKYY52 = 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 SL2PUD = Project Zero 2: Wii Edition Undub SL3ENR = Dragon's Lair Trilogy SL4PAF = Los 40 Principales Karaoke Party SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = The Last Airbender SLAP78 = The Last Airbender SLAX78 = The Last Airbender: Special Edition SLAZ78 = The Last Airbender: Toys R Us Special Edition SLBE01 = MLG Super Luigi Bros Wii SLBJ01 = MLG Super Luigi Bros. Wii SLBP01 = MLG Super Luigi Bros. Wii 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 SLGEYG = Let's Sing 2016 SLGPKM = Let's Sing 2016 SLHEWR = LEGO Harry Potter: Years 5-7 SLHPWR = LEGO Harry Potter: Jaren 5-7 SLIE52 = Little League World Series Baseball: Double Play SLJPKM = Let's Sing 8 - Spanish Version SLKPKM = Let’s Sing 2016 : Hits Français SLLEWW = Lucha Libre AAA: Héroes del Ring SLMPWL = 40 Principales Karaoke Party Vol. 2 SLNP7M = The Voice 3 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 SMNE14 = New Super Mario Bros. Wii: Pain Coins SMNE15 = Newer Super Mario Bros. 7 SMNE20 = New Super Mario Bros. H SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE31 = New Super Mario Bros. Wii - Other World 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 SMNE44 = Go Go Mario SMNE45 = Lemmy's Winter Palace SMNE46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNE47 = The New Special Road SMNE48 = True Mario Bros. SMNE49 = New Super Mario Bros. Wii - MSMKW Pack SMNE50 = New Super Mario Bros. Wii - Power Tower Pack SMNE51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNE52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNE53 = New Super Mario Bros. Wii - Kid Edition SMNE54 = New Super Mario Bros. Wii - The Next Levels 2 SMNE55 = New Super Mario Bros. Wii - Lava Mod Pack SMNE56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNE57 = Mario's Big Adventure SMNE58 = Wario's Cave SMNE59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNE60 = Remixed Super Mario Bros. Wii SMNE61 = New Super Summer Vacation SMNE62 = New Super Bowser Wii SMNE65 = Ghostly Super Ghost Boos Wii SMNE66 = The Legend of Yoshi SMNE67 = Larsenv Super Mario Collection SMNE68 = The Legend of Yoshi DLC SMNE69 = Revised Super Mario Bros. Wii SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNERE = Retro Mario Bros. SMNERV = RVLution 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 SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZY = Super Mario Skyland 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 SMNJ14 = New Super Mario Bros. Wii: Pain Coins SMNJ15 = Newer Super Mario Bros. 7 SMNJ20 = New Super Mario Bros. H SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ31 = New Super Mario Bros. Wii - Other World 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 SMNJ44 = Go Go Mario SMNJ45 = Lemmy's Winter Palace SMNJ46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNJ47 = The New Special Road SMNJ48 = True Mario Bros. SMNJ49 = New Super Mario Bros. Wii - MSMKW Pack SMNJ50 = New Super Mario Bros. Wii - Power Tower Pack SMNJ51 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ53 = New Super Mario Bros. Wii - Kid Edition SMNJ54 = New Super Mario Bros. Wii - The Next Levels 2 SMNJ55 = New Super Mario Bros. Wii - Lava Mod Pack SMNJ56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNJ57 = Mario's Big Adventure SMNJ58 = Wario's Cave SMNJ59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNJ60 = Remixed Super Mario Bros. Wii SMNJ61 = New Super Summer Vacation SMNJ62 = New Super Bowser Wii SMNJ65 = Ghostly Super Ghost Boos Wii SMNJ66 = The Legend of Yoshi SMNJ67 = Larsenv Super Mario Collection SMNJ68 = The Legend of Yoshi DLC SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJRE = Retro Mario Bros. SMNJRV = RVLution 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 SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZY = Super Mario Skyland 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 SMNP14 = New Super Mario Bros. Wii: Pain Coins SMNP15 = Newer Super Mario Bros. 7 SMNP20 = New Super Mario Bros. H SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP31 = New Super Mario Bros. Wii - Other World 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 SMNP44 = Go Go Mario SMNP45 = Lemmy's Winter Palace SMNP46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNP47 = The New Special Road SMNP48 = True Mario Bros. SMNP49 = New Super Mario Bros. Wii - MSMKW Pack SMNP50 = New Super Mario Bros. Wii - Power Tower Pack SMNP51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNP52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNP53 = New Super Mario Bros. Wii - Kid Edition SMNP54 = New Super Mario Bros. Wii - The Next Levels 2 SMNP55 = New Super Mario Bros. Wii - Lava Mod Pack SMNP56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNP57 = Mario's Big Adventure SMNP58 = Wario's Cave SMNP59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNP60 = Remixed Super Mario Bros. Wii SMNP61 = New Super Summer Vacation SMNP62 = New Super Bowser Wii SMNP65 = Ghostly Super Ghost Boos Wii SMNP66 = The Legend of Yoshi SMNP67 = Larsenv Super Mario Collection SMNP68 = The Legend of Yoshi DLC SMNP77 = New Super Mario Bros. Wii Arcadia 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 SMNPO1 = New Super Mario Custom Edition SMNPRE = Retro Mario Bros. SMNPRV = RVLution 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 SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZY = Super Mario Skyland 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 SO3EUD = Rune Factory: Tides of Destiny Undub SO3J99 = Rune Factory: Oceans SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg 2 SOCE4Z = Deadliest Catch: Sea of Chaos SODPYK = De Ontdekker en het mysterie van de Diamanten Scarabee 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 SOME02 = Rhythm Heaven Fever Repainted SOMJ01 = Minna no Rhythm Tengoku SOMK01 = Rhythm World 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 = 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 & 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 = Mama's 2-Pack SQKK01 = Mama's 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 SQWE52 = The Voice: I Want You 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 SROENS = Rodea the Sky Soldier SROJQC = Tenkuu no Kishi Rodea SROKQC = Rodea the Sky Soldier SROPNS = Rodea the Sky Soldier 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 SSPJGD = 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 SSUPLR = 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 SVCPXT = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = SpongeBob Squarepants: Plankton's Robotic Revenge SVEPAF = DreamWorks The Croods: Prehistoric Party! & Rise of the Guardians: Combo Pack 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 SVQEVZ = Barbie and Her Sisters: Puppy Rescue SVQPVZ = Barbie En Haar Zusjes In Het Grote Puppy Avontuur 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 SX3PUD = Pandora's Tower Undub 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 SX9PRV = The Voice Vol. 2 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 SY7PKM = Let's Sing 7 - Spanish Version 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 SZ7E41 = Just Dance 2017 SZ7P41 = Just Dance 2017 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: 20170813134819) 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 = TsÌ„shin 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 WFQE = Frogger: Hyper Arcade Edition 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: 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 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 WKJE = Karaoke Joysound 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 WMH1 = Mother 1+2+3 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 WN64 = Nintendo 64 Forwarder 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 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: Ikuzo! Arashi 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: Susume! Honoo 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 = Pokémon Rumble (Demo) XHAP = Pokémon 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-3.01a/share/system-menu.txt0000644000175000017500000000461013363642463016333 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-3.01a/share/titles-fr.txt0000644000175000017500000111135213363642463015761 0ustar michaelmichael010E01 = Wii Backup Disc v1.31 301E01 = GameCube Service Disc 9XGX = SNES9xGX 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... CBIEE9 = Harvest Moon: Pride Parade 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 CGHE52 = Guitar Hero 2K16 (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.2 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.2 CS9PZZ = StarSing : Pop Hits 9 v1.0 CSAP00 = StarSing : '80s Volume 3 v2.2 CSAPZZ = StarSing : Best of Goldman v1.0 CSBP00 = StarSing : '90s Volume 2 v2.2 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 v2.0 CSFP00 = StarSing : Pop Hits 6 v2.0 CSGP00 = StarSing : Chansons Magiques de Disney v2.0 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = StarSing : Pop Hits 7 v2.0 CSJP00 = StarSing : Après-Ski Party v2.0 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 v2.0 CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = StarSing : Génériques TV v2.1 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.1 CT9P00 = StarSing : Pop Hits 9 v2.0 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.2 CTNP00 = StarSing : Pop Hits 10 v2.0 CTOP00 = StarSing : The Beatles Volume 2 v2.1 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 v2.0 CTUP00 = StarSing : Rihanna v2.0 CTVP00 = StarSing : Lady GaGa v1.1 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CTZP00 = StarSing : Volume 3 v1.0 CU0P00 = StarSing : Retro Volume 3 v1.0 CU1P00 = StarSing : Girls v1.0 CU2P00 = StarSing : Volume 4 v1.1 CU3P00 = StarSing : Retro Volume 4 v1.1 CU4P00 = StarSing : Retro Volume 5 v1.0 CU5P00 = StarSing : International Volume 4 v1.0 CU6P00 = StarSing : Volume 5 v1.0 CU7P00 = StarSing : Retro Volume 6 v1.0 CU8P00 = StarSing : Volume 6 v1.0 CU9P00 = StarSing : Volume 7 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 = B.L.I.N.D. 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 = WAD Batch Installer 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: Scorched Earth 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 = Monthly Nintendo Shop Demo - 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: A Hard Days Night 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 DBSBT3 = Dragon Ball Budokai Tenkaichi 3 Version Latino 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. Brawl: 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 DN6A = Not64 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 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 DTZJ08 = Takarajima Z Barbaros' Treasure (Demo) 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 DWEJA4 = Winning Eleven PLAY MAKER 2008 (Demo) 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 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 Shodown 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 Shodown EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen EAEP = Samurai Shodown 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 Shodown 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 EAZP = World Heroes Perfect EB2E = Real Bout Fatal Fury Special EB2J = Real Bout Garou Densetsu Special EB2P = Real Bout Fatal Fury Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB5P = 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 EBGP = 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 EBSP = The Path of the Warrior: Art of Fighting 3 EBTJ = Crossed Swords EBUE = 2020 Super Baseball EBUJ = Super Baseball 2020 EBUP = 2020 Super Baseball 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 ECAP = Real Bout Fatal Fury 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECCP = 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 ECGP = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECHP = The King of Fighters '98 ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECIP = 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 II 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 III 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 JingÌ„ji SaburÌ„: Shinjuku Ch̄̄ KÌ„en 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 FERP = Zoda’s Revenge: StarTropics II 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 FF5P = Double Dragon II: 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 G2DJB2 = Digimon Battle Chronicle 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 & 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 G2XJ8P = Sonic Gems Collection G2XP8P = Sonic Gems Collection G3AD69 = The Lord of the Rings: The Third Age G3AE69 = The Lord of the Rings: The Third Age G3AF69 = Le Seigneur des Anneaux : Le Tiers Âge G3AP69 = The Lord of the Rings: The Third Age G3AS69 = The 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 G96P01 = Interactive Multi-Game Demo Disc - November 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 G9RJ7D = Crash Bandicoot Gacchanko World 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 GA3J51 = 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 GAZJ13 = Harry Potter to Azkaban no Shuujin 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 GBMJ7F = 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 GBRJ18 = Bloody Roar Extreme GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSJ8P = Beach Spikers: Virtua Beach Volleyball GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTJA7 = Bakuten Shoot Beyblade 2002: Nettou! Magne Tag 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! : 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 GC8JA4 = Crash Bandicoot: Bakusou! Nitro Kart GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBJA4 = Crash Bandicoot 4: Sakuretsu! Majin Power 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 Complete 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 GCTJ8P = 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 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 Arena 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 = 007: Everything or Nothing GENF69 = James Bond 007: Quitte ou Double GENP69 = James Bond 007: Everything Or Nothing GENS69 = James Bond 007: Everything or Nothing GEOE08 = Capcom vs. SNK 2 EO GEOJ08 = Capcom vs. SNK 2 EO: Millionaire Fighting 2001 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 GEZJ8P = 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 GF4I52 = Fantastic 4 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 GFIJ13 = 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 GG4J08 = 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 GH4J13 = Harry Potter to Honoo no Goblet 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 GHLJ13 = Harry Potter to Kenja no Ishi GHLJ69 = Harry Potter to Kenja no Ishi GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Philosopher'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 GHSJ13 = Harry Potter to Himitsu no Heya 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 GJND78 = Jimmy Neutron: Boy Genius 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 = The Lord of the Rings: The Return of the King GKLE69 = The Lord of the Rings: The Return of the King GKLF69 = Le Seigneur des Anneaux : Le Retour du Roi GKLI69 = The Lord of the Rings: The Return of the King GKLJ69 = The Lord of the Rings: The Return of the King GKLP69 = The Lord of the Rings: The Return of the King GKLS69 = The 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's Airride GKYP01 = Kirby Air Ride GKZD54 = Codename: Kids Next Door - Operation: V.I.D.E.O.G.A.M.E. 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 = The Lord of the Rings: The Two Towers GLOE69 = The Lord of the Rings: The Two Towers GLOF69 = Le Seigneur des Anneaux : Les Deux Tours GLOI69 = The Lord of the Rings: The Two Towers GLOP69 = The 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 Hoffman's 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 GOTJB2 = One Piece: Treasure Battle! 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 GQ4D78 = SpongeBob SquarePants: Creature from the Krusty Krab 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 GQCI52 = 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 GRJPAF = R: Racing Evolution 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 GSMJ08 = Spider-Man: The Movie 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 Squadron II: Rogue Leader GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = Star Wars Rogue Squadron II GSWP64 = Star Wars Rogue Squadron II: Rogue Leader 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 GVS32E = Virtua Striker 3 Ver. 2002 GVS32J = Virtua Striker 3 Ver.2002 (Triforce) GVS45E = Virtua Striker 4 GVS45J = Virtua Striker 4 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 = James Bond 007 in 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 GWEJ51 = 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 GX2E01 = Pokemon XG: Next Gen 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 = Pokémon 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 HADE = Chaîne Internet HADJ = Internet Channel HADP = Chaîne Internet HAFE = Forecast Channel HAFJ = Forecast 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 no Tomo Channel G Guide for Wii HBWE01 = New Super Mario Bros. Wii: Hellboy Edition HC3J = USB Flash Optimization HC4E = Crunchyroll HC4P = Crunchyroll 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 HCFJ = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Chaîne Wii Speak HCGE = Wii + Internet HCGJ = Wii + Internet HCGP = Wii + Internet HCHJ = Demae Channel 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 JCNP = 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 E.D.F. : 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 JDNP = 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 = KyÌ„yaku Megami Tensei: Megami Tensei I・II JODI = Homebrew Channel JOUE01 = New Super Mario Bros. Wii 10 The Journey KLSEXJ = The Last Story (NTSC-U, Japanese Audio) 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 MB3L = 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 MK7P41 = Mario Kart 7 Wii 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 = Pokémon 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 NTLC = Super Mario 64 Multiplayer 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 PCSJ01 = Pokémon 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 PGPJB2 = SD Gundam Trial 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: KÌ„kÌ„ YakyÌ„ 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 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 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 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 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 R7FEUD = Final Fantasy Fables: Chocobo's Dungeon Undub 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! R7MPFR = Musiic Party: Rock the House 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) 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 = Sugoro Chronicle: Migite ni Ken o Hidarite ni Saikoro o 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 RDXE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino Beta 3 RDXJ18 = Deca Sporta RDXKA4 = Deca Sporta RDXP18 = Sports Island RDYEGN = CID: The Dummy RDZE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino 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 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 = 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 RFEPUD = Fire Emblem: Radian Dawn Undub 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 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 RFNE = Wii Fit Channel 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 RFPE = Wii Fit Plus Channel 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 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 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 RGWX = Rabbids Channel RGXE5D = Game Party RGXEFN = Guitar Hero III Custom: Meteo Last Custom RGXEWR = Game Party 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 RK2EUD = Trauma Center: New Blood Undub 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 RKDEUD = Trauma Center: Second Opinion Undub RKDJEB = Trauma Center: Second Opinion RKDJG9 = Kamen Rider: Climax Heroes W RKDP01 = 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 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 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 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) RMCE = Mario Kart Channel RMCJ01 = Mario Kart Wii RMCJ12 = Wiimms MKW Fun 2011-11 RMCJ30 = Wiimms MKW-Fun 2015-12.jap RMCJ31 = Wiimms MKW-Fun 2016-02.jap RMCJ32 = Wiimms MKW-Fun 2016-07.jap RMCJ33 = Wiimms MKW-Fun 2016-10.jap RMCJ34 = Wiimms MKW-Fun 2017-05.jap RMCJ64 = Peach Kart 8 RMCJ76 = Pro CT Pack RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCJL1 = Luma's CT Pack 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 RMCP27 = Wiimms MKW-Fun 2015-03.pal RMCP28 = Wiimms MKW Retro 2015-05.pal RMCP29 = Wiimms MKW-Fun 2015-08.pal RMCP30 = Wiimms MKW-Fun 2015-12.pal RMCP31 = Wiimms MKW-Fun 2016-02.pal RMCP32 = Wiimms MKW-Fun 2016-07.pal RMCP33 = Wiimms MKW-Fun 2016-10.pal RMCP34 = Wiimms MKW-Fun 2017-05.pal RMCP64 = Peach Kart 8 RMCP76 = Pro CT Pack RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCPL1 = Luma's CT Pack 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 RNEEUD = Naruto Shippuden: Clash of Ninja Revolution 3 Undub 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 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 = Ì„kami ROWJ08 = Ì„kami ROWP08 = Ì„kami 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 RPJEUD = Arc Rise Fantasia Undub 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 RR2XUG = Extreme Truck Racing 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 SaikyÌ„ 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 = Marlan Project M 3.6 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 2 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 RSBE43 = Super Smash Bros. Brawl: MASTERLINKX's Custom Pack RSBE44 = Super Smash Bros. Brawl: Shadow Version RSBE45 = Super Smash Bros. Brawl: Shock44's Custom Build RSBE46 = Super Smash Bros. Brawl: DragonD101's Texture Pack RSBE47 = Super Smash Bros. Brawl: XChosen1's Texture Pack RSBE49 = Super Smash Bros. Brawl: Water Block Edition RSBE50 = Super Smash Bros. Project U: Ultra Version RSBEAA = Marvel and Capcom vs Super Smash Bros. 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 RSBEDH = Super Smash Bros. Brawl Dark Hole/D.A.R.S. RSBEDT = Super Smash Bros. Ultimate Dark Phoenix: Tournament Edition RSBEN1 = Super Smash Bros. Project M RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBETE = Super Smash Bros. Legacy TE RSBEWM = Super Smash Bros. Project M Wi-Fi RSBEXP = Super Smash Bros. Legacy XP RSBJ01 = Dairantou Smash Brothers X RSBK01 = Dairantou Smash Brothers X RSBP01 = Super Smash Bros. Brawl RSBP02 = Master4Robin's Super Smash Bros. Brawl Hack Pack 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 Spirits: Rokuban Shoubu 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 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 RT4EUD = Tales of Symphonia: Dawn of the New World Undub 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 Le 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 = Wario Land 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 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 RYIPNK = SPRay RYJPTV = Princesse Lillifee : La fée magique RYKEAF = Family Ski & Snowboard RYKJAF = Family Ski: World Ski & Snowboard RYKKAF = We 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 S32DJW = The Voice of Germany: I Want You S32PJW = The Voice S32SJW = La Voz: Quiero tu voz S33DKM = Let's Sing 2017 - Mit Deutschen Hits! S33FKM = Let's Sing 2017 : Hits Français et Internationaux S33PKM = Let's Sing 2017 S33SKM = Let's Sing 9 - Spanish Version S3AE5G = Attack of the Movies 3D S3APGT = 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 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 S5DE41 = Just Dance Disney Party 2 S5DP41 = Just Dance Disney Party 2 S5KJAF = Taiko no Tatsujin Wii: Chou Goukaban S5MEVZ = Monster High: New Ghoul in School S5MPVZ = Monster High : une nouvelle élève à Monster High S5PPAU = PSA World Tour Squash 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 = 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 Batman 2: DC Super Heroes 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 S7EE52 = Transformers: Ultimate Battle Edition 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 S7LPKM = Let's Sing @ Radio Italia 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 au Pays des Merveilles 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 SAOEVZ = Monster High: Ghoul Spirit SAOP78 = Monster High: Lycée d'Enfer SAOXVZ = 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 SB3EUD = Sengoku Basara: Samurai Heroes Undub 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 SCLE01 = Cliff Super Mario Bros. Wii SCLJ01 = Cliff Super Mario Bros. Wii SCLP01 = Cliff Super Mario Bros. Wii 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! SDEPGT = 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 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 SDUEO1 = DU Super Mario Bros. : DU Edition 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 SERJ4Q = Disney Epic Mickey 2: The Power of Two 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 SFEPYF = Fit Music 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 SFRE01 = Super Mario Bros. Frozen Edition SFRJ01 = Super Mario Bros. Frozen Edition SFRP01 = Super Mario Bros. Frozen Edition 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 SGBPGT = 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 SH9PNJ = 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 SIIK01 = 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 v2.0 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 SJNE41 = Just Dance 2016 SJNP41 = Just Dance 2016 SJOE41 = Just Dance 2014 SJOP41 = Just Dance 2014 SJPE78 = Jeopardy! SJQEPZ = Jewel Quest Trilogy SJQPGR = Jewel Quest Trilogy SJREA4 = Def Jam Rapstar SJRPA4 = Def Jam Rapstar SJRXA4 = Def Jam Rapstar SJRYA4 = 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 SK3EUD = Trauma Team Undub SK4E52 = Shrek Forever After SK4P52 = Shrek 4: Il Etait une Fin SK5PY1 = Kylie Sing & Dance SK6KJD = K-POP Dance Festival SK7EVZ = Disney Violetta : Rythme et musique SK7PVZ = Disney Violetta : Rythme et musique SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8I52 = 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 SKNE52 = Skylanders: SuperChargers Racing SKNP52 = Skylanders: SuperChargers Racing 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 SKYY52 = 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 SL2PUD = Project Zero 2: Wii Edition Undub SL3ENR = Dragon's Lair Trilogy SL4PAF = Los 40 Principales Karaoke Party SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = The Last Airbender SLAP78 = Le Dernier Maitre de l'Air SLAX78 = Le Dernier Maitre de l'Air SLAZ78 = The Last Airbender: Toys R Us Special Edition SLBE01 = MLG Super Luigi Bros Wii SLBJ01 = MLG Super Luigi Bros. Wii SLBP01 = MLG Super Luigi Bros. Wii 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 SLGEYG = Let's Sing 2016 SLGPKM = Let's Sing 2016 SLHEWR = LEGO Harry Potter: Years 5-7 SLHPWR = LEGO Harry Potter : Années 5 à 7 SLIE52 = Little League World Series Baseball: Double Play SLJPKM = Let's Sing 8 - Spanish Version SLKPKM = Let’s Sing 2016 : Hits Français SLLEWW = Lucha Libre AAA: Héroes del Ring SLMPWL = 40 Principales Karaoke Party Vol. 2 SLNP7M = The Voice 3 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 SMNE14 = New Super Mario Bros. Wii: Pain Coins SMNE15 = Newer Super Mario Bros. 7 SMNE20 = New Super Mario Bros. H SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE31 = New Super Mario Bros. Wii - Other World 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 SMNE44 = Go Go Mario SMNE45 = Lemmy's Winter Palace SMNE46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNE47 = The New Special Road SMNE48 = True Mario Bros. SMNE49 = New Super Mario Bros. Wii - MSMKW Pack SMNE50 = New Super Mario Bros. Wii - Power Tower Pack SMNE51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNE52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNE53 = New Super Mario Bros. Wii - Kid Edition SMNE54 = New Super Mario Bros. Wii - The Next Levels 2 SMNE55 = New Super Mario Bros. Wii - Lava Mod Pack SMNE56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNE57 = Mario's Big Adventure SMNE58 = Wario's Cave SMNE59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNE60 = Remixed Super Mario Bros. Wii SMNE61 = New Super Summer Vacation SMNE62 = New Super Bowser Wii SMNE65 = Ghostly Super Ghost Boos Wii SMNE66 = The Legend of Yoshi SMNE67 = Larsenv Super Mario Collection SMNE68 = The Legend of Yoshi DLC SMNE69 = Revised Super Mario Bros. Wii SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNERE = Retro Mario Bros. SMNERV = RVLution 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 SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZY = Super Mario Skyland 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 SMNJ14 = New Super Mario Bros. Wii: Pain Coins SMNJ15 = Newer Super Mario Bros. 7 SMNJ20 = New Super Mario Bros. H SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ31 = New Super Mario Bros. Wii - Other World 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 SMNJ44 = Go Go Mario SMNJ45 = Lemmy's Winter Palace SMNJ46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNJ47 = The New Special Road SMNJ48 = True Mario Bros. SMNJ49 = New Super Mario Bros. Wii - MSMKW Pack SMNJ50 = New Super Mario Bros. Wii - Power Tower Pack SMNJ51 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ53 = New Super Mario Bros. Wii - Kid Edition SMNJ54 = New Super Mario Bros. Wii - The Next Levels 2 SMNJ55 = New Super Mario Bros. Wii - Lava Mod Pack SMNJ56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNJ57 = Mario's Big Adventure SMNJ58 = Wario's Cave SMNJ59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNJ60 = Remixed Super Mario Bros. Wii SMNJ61 = New Super Summer Vacation SMNJ62 = New Super Bowser Wii SMNJ65 = Ghostly Super Ghost Boos Wii SMNJ66 = The Legend of Yoshi SMNJ67 = Larsenv Super Mario Collection SMNJ68 = The Legend of Yoshi DLC SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJRE = Retro Mario Bros. SMNJRV = RVLution 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 SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZY = Super Mario Skyland 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 SMNP14 = New Super Mario Bros. Wii: Pain Coins SMNP15 = Newer Super Mario Bros. 7 SMNP20 = New Super Mario Bros. H SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP31 = New Super Mario Bros. Wii - Other World 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 SMNP44 = Go Go Mario SMNP45 = Lemmy's Winter Palace SMNP46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNP47 = The New Special Road SMNP48 = True Mario Bros. SMNP49 = New Super Mario Bros. Wii - MSMKW Pack SMNP50 = New Super Mario Bros. Wii - Power Tower Pack SMNP51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNP52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNP53 = New Super Mario Bros. Wii - Kid Edition SMNP54 = New Super Mario Bros. Wii - The Next Levels 2 SMNP55 = New Super Mario Bros. Wii - Lava Mod Pack SMNP56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNP57 = Mario's Big Adventure SMNP58 = Wario's Cave SMNP59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNP60 = Remixed Super Mario Bros. Wii SMNP61 = New Super Summer Vacation SMNP62 = New Super Bowser Wii SMNP65 = Ghostly Super Ghost Boos Wii SMNP66 = The Legend of Yoshi SMNP67 = Larsenv Super Mario Collection SMNP68 = The Legend of Yoshi DLC SMNP77 = New Super Mario Bros. Wii Arcadia 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 SMNPO1 = New Super Mario Custom Edition SMNPRE = Retro Mario Bros. SMNPRV = RVLution 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 SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZY = Super Mario Skyland 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 SO3EUD = Rune Factory: Tides of Destiny Undub SO3J99 = Rune Factory: Oceans SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg 2 SOCE4Z = Deadliest Catch: Sea of Chaos SODPYK = The Explorer and the Mystery of the Diamond Scarab 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 SOME02 = Rhythm Heaven Fever Repainted SOMJ01 = Minna no Rhythm Tengoku SOMK01 = Rhythm World Wii 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 & 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 = Mama's 2-Pack SQKK01 = Mama's 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 = Disney 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 SQWE52 = The Voice: I Want You 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 SROENS = Rodea the Sky Soldier SROJQC = Tenkuu no Kishi Rodea SROKQC = Rodea the Sky Soldier SROPNS = Rodea the Sky Soldier 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 SSPJGD = 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 SSUPLR = 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 SVCPXT = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = Bob l'éponge : La vengeance robotique de Plankton SVEPAF = DreamWorks The Croods: Prehistoric Party! & Rise of the Guardians: Combo Pack 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 SVQEVZ = Barbie and Her Sisters: Puppy Rescue SVQPVZ = Barbie et ses soeurs : La grande aventure des chiots 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 SX3PUD = Pandora's Tower Undub 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 SX9PRV = The Voice Vol. 2 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 SY7PKM = Let's Sing 7 - Spanish Version 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 SZ7E41 = Just Dance 2017 SZ7P41 = Just Dance 2017 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: 20170813133020) 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 = TsÌ„shin 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 WFQE = Frogger: Hyper Arcade Edition 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 : 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 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 WKJE = Karaoke Joysound 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 WMH1 = Mother 1+2+3 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 WN64 = Nintendo 64 Forwarder 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 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: Ikuzo! Arashi 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: Susume! Honoo 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 : Le Retour de 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 = Pokémon Rumble (Demo) XHAP = Pokémon 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-3.01a/share/titles-de.txt0000644000175000017500000111062613363642463015745 0ustar michaelmichael010E01 = Wii Backup Disc v1.31 301E01 = GameCube Service Disc 9XGX = SNES9xGX 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... CBIEE9 = Harvest Moon: Pride Parade 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 CGHE52 = Guitar Hero 2K16 (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.2 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.2 CS9PZZ = StarSing : Pop Hits 9 v1.0 CSAP00 = StarSing : '80s Volume 3 v2.2 CSAPZZ = StarSing : Best of Goldman v1.0 CSBP00 = StarSing : '90s Volume 2 v2.2 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 v2.0 CSFP00 = StarSing : Pop Hits 6 v2.0 CSGP00 = StarSing : Chansons Magiques de Disney v2.0 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = StarSing : Pop Hits 7 v2.0 CSJP00 = StarSing : Après-Ski Party v2.0 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 v2.0 CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = StarSing : Génériques TV v2.1 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.1 CT9P00 = StarSing : Pop Hits 9 v2.0 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.2 CTNP00 = StarSing : Pop Hits 10 v2.0 CTOP00 = StarSing : The Beatles Volume 2 v2.1 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 v2.0 CTUP00 = StarSing : Rihanna v2.0 CTVP00 = StarSing : Lady GaGa v1.1 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CTZP00 = StarSing : Volume 3 v1.0 CU0P00 = StarSing : Retro Volume 3 v1.0 CU1P00 = StarSing : Girls v1.0 CU2P00 = StarSing : Volume 4 v1.1 CU3P00 = StarSing : Retro Volume 4 v1.1 CU4P00 = StarSing : Retro Volume 5 v1.0 CU5P00 = StarSing : International Volume 4 v1.0 CU6P00 = StarSing : Volume 5 v1.0 CU7P00 = StarSing : Retro Volume 6 v1.0 CU8P00 = StarSing : Volume 6 v1.0 CU9P00 = StarSing : Volume 7 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 = B.L.I.N.D. 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 = WAD Batch Installer 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: Scorched Earth 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 = Monthly Nintendo Shop Demo - 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: A Hard Days Night 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 DBSBT3 = Dragon Ball Budokai Tenkaichi 3 Version Latino 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. Brawl: 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 DN6A = Not64 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 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 DTZJ08 = Takarajima Z Barbaros' Treasure (Demo) 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 DWEJA4 = Winning Eleven PLAY MAKER 2008 (Demo) 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 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 Shodown 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 Shodown EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen EAEP = Samurai Shodown 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 Shodown 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 EAZP = World Heroes Perfect EB2E = Real Bout Fatal Fury Special EB2J = Real Bout Garou Densetsu Special EB2P = Real Bout Fatal Fury Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB5P = 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 EBGP = 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 EBSP = The Path of the Warrior: Art of Fighting 3 EBTJ = Crossed Swords EBUE = 2020 Super Baseball EBUJ = Super Baseball 2020 EBUP = 2020 Super Baseball 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 ECAP = Real Bout Fatal Fury 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECCP = 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 ECGP = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECHP = The King of Fighters '98 ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECIP = 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 II 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 III 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 JingÌ„ji SaburÌ„: Shinjuku Ch̄̄ KÌ„en 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 FERP = Zoda’s Revenge: StarTropics II 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 FF5P = Double Dragon II: 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 G2DJB2 = Digimon Battle Chronicle 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 & 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 G2XJ8P = Sonic Gems Collection G2XP8P = Sonic Gems Collection G3AD69 = Der Herr der Ringe: Das dritte Zeitalter G3AE69 = The Lord of the Rings: The Third Age G3AF69 = The Lord of the Rings: The Third Age G3AP69 = The Lord of the Rings: The Third Age G3AS69 = The 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 G96P01 = Interactive Multi-Game Demo Disc - November 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 G9RJ7D = Crash Bandicoot Gacchanko World 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 GA3J51 = 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 GAZJ13 = Harry Potter to Azkaban no Shuujin 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 GBMJ7F = 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 GBRJ18 = Bloody Roar Extreme GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSJ8P = Beach Spikers: Virtua Beach Volleyball GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTJA7 = Bakuten Shoot Beyblade 2002: Nettou! Magne Tag 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!: 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 GC8JA4 = Crash Bandicoot: Bakusou! Nitro Kart GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBJA4 = Crash Bandicoot 4: Sakuretsu! Majin Power 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 Complete 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 GCTJ8P = 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 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 Arena 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 = 007: Everything or Nothing GENF69 = James Bond 007: Everything or Nothing GENP69 = 007: Alles Oder Nichts GENS69 = James Bond 007: Everything or Nothing GEOE08 = Capcom vs. SNK 2 EO GEOJ08 = Capcom vs. SNK 2 EO: Millionaire Fighting 2001 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 GEZJ8P = 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 GF4I52 = Fantastic 4 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 GFIJ13 = 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 GG4J08 = 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 GH4J13 = Harry Potter to Honoo no Goblet 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 GHLJ13 = Harry Potter to Kenja no Ishi GHLJ69 = Harry Potter to Kenja no Ishi GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Philosopher'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 GHSJ13 = Harry Potter to Himitsu no Heya 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 GJND78 = Jimmy Neutron: Der mutige Erfinder 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 = The Lord of the Rings: The Return of the King GKLF69 = Lord of the Rings: The Return of the King GKLI69 = The Lord of the Rings: The Return of the King GKLJ69 = The Lord of the Rings: The Return of the King GKLP69 = The Lord of the Rings: The Return of the King GKLS69 = The 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's Airride GKYP01 = Kirby Air Ride GKZD54 = Codename: Kids Next Door - Operation: V.I.D.E.O.S.P.I.E.L. 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 = The Lord of the Rings: The Two Towers GLOF69 = The Lord of the Rings: The Two Towers GLOI69 = The Lord of the Rings: The Two Towers GLOP69 = The 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 Hoffman's 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 GOTJB2 = One Piece: Treasure Battle! 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 GQ4D78 = SpongeBob Schwammkopf: Die Kreatur aus der krossen Krabbe 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 GQCI52 = 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 GRJPAF = R: Racing Evolution 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 GSMJ08 = Spider-Man: The Movie 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 Squadron II: Rogue Leader GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = Star Wars Rogue Squadron II GSWP64 = Star Wars Rogue Squadron II: Rogue Leader 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 GVS32E = Virtua Striker 3 Ver. 2002 GVS32J = Virtua Striker 3 Ver.2002 (Triforce) GVS45E = Virtua Striker 4 GVS45J = Virtua Striker 4 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 = James Bond 007 in 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 GWEJ51 = 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 GX2E01 = Pokemon XG: Next Gen 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 = Pokémon 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 HADE = Internet Kanal HADJ = Internet Channel HADP = Internet-Kanal HAFE = Forecast Channel HAFJ = Forecast 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 no Tomo Channel G Guide for Wii HBWE01 = New Super Mario Bros. Wii: Hellboy Edition HC3J = USB Flash Optimization HC4E = Crunchyroll HC4P = Crunchyroll 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 HCFJ = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Wii Speak Channel HCGE = Wii + Internet HCGJ = Wii + Internet HCGP = Wii + Internet HCHJ = Demae Channel HCIJ = Wii no Ma HCJP = BBC iPlayer Channel HCLE = Netflix HCLP = Netflix HCMP = Kirby TV Channel 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 JCNP = 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 E.D.F.: 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 JDNP = 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 = KyÌ„yaku Megami Tensei: Megami Tensei I・II JODI = Homebrew Channel JOUE01 = New Super Mario Bros. Wii 10 The Journey KLSEXJ = The Last Story (NTSC-U, Japanese Audio) 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 MB3L = 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 MK7P41 = Mario Kart 7 Wii 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 = Pokémon 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 NTLC = Super Mario 64 Multiplayer 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 = Pokémon 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 PGPJB2 = SD Gundam Trial 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: KÌ„kÌ„ YakyÌ„ 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 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 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 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 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 R7FEUD = Final Fantasy Fables: Chocobo's Dungeon Undub 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! R7MPFR = Musiic Party: Rock the House 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) 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 = Sugoro Chronicle: Migite ni Ken o Hidarite ni Saikoro o 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 RDXE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino Beta 3 RDXJ18 = Deca Sporta RDXKA4 = Deca Sporta RDXP18 = Sports Island RDYEGN = CID: The Dummy RDZE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino 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 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 = 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 RFEPUD = Fire Emblem: Radian Dawn Undub 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 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 RFNE = Wii Fit Channel 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 RFPE = Wii Fit Plus Channel 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 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 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 RGWX = Rabbids Channel RGXE5D = Game Party RGXEFN = Guitar Hero III Custom: Meteo Last Custom RGXEWR = Game Party 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 RK2EUD = Trauma Center: New Blood Undub 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 RKDEUD = Trauma Center: Second Opinion Undub RKDJEB = Trauma Center: Second Opinion RKDJG9 = Kamen Rider: Climax Heroes W RKDP01 = 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 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 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 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) RMCE = Mario Kart Channel RMCJ01 = Mario Kart Wii RMCJ12 = Wiimms MKW Fun 2011-11 RMCJ30 = Wiimms MKW-Fun 2015-12.jap RMCJ31 = Wiimms MKW-Fun 2016-02.jap RMCJ32 = Wiimms MKW-Fun 2016-07.jap RMCJ33 = Wiimms MKW-Fun 2016-10.jap RMCJ34 = Wiimms MKW-Fun 2017-05.jap RMCJ64 = Peach Kart 8 RMCJ76 = Pro CT Pack RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCJL1 = Luma's CT Pack 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 RMCP27 = Wiimms MKW-Fun 2015-03.pal RMCP28 = Wiimms MKW Retro 2015-05.pal RMCP29 = Wiimms MKW-Fun 2015-08.pal RMCP30 = Wiimms MKW-Fun 2015-12.pal RMCP31 = Wiimms MKW-Fun 2016-02.pal RMCP32 = Wiimms MKW-Fun 2016-07.pal RMCP33 = Wiimms MKW-Fun 2016-10.pal RMCP34 = Wiimms MKW-Fun 2017-05.pal RMCP64 = Peach Kart 8 RMCP76 = Pro CT Pack RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCPL1 = Luma's CT Pack 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 RNEEUD = Naruto Shippuden: Clash of Ninja Revolution 3 Undub 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 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 = Ì„kami ROWJ08 = Ì„kami ROWP08 = Ì„kami 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 RPJEUD = Arc Rise Fantasia Undub 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 RR2XUG = Extreme Truck Racing 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 SaikyÌ„ 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 = Marlan Project M 3.6 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 2 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 RSBE43 = Super Smash Bros. Brawl: MASTERLINKX's Custom Pack RSBE44 = Super Smash Bros. Brawl: Shadow Version RSBE45 = Super Smash Bros. Brawl: Shock44's Custom Build RSBE46 = Super Smash Bros. Brawl: DragonD101's Texture Pack RSBE47 = Super Smash Bros. Brawl: XChosen1's Texture Pack RSBE49 = Super Smash Bros. Brawl: Water Block Edition RSBE50 = Super Smash Bros. Project U: Ultra Version RSBEAA = Marvel and Capcom vs Super Smash Bros. 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 RSBEDH = Super Smash Bros. Brawl Dark Hole/D.A.R.S. RSBEDT = Super Smash Bros. Ultimate Dark Phoenix: Tournament Edition RSBEN1 = Super Smash Bros. Project M RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBETE = Super Smash Bros. Legacy TE RSBEWM = Super Smash Bros. Project M Wi-Fi RSBEXP = Super Smash Bros. Legacy XP RSBJ01 = Dairantou Smash Brothers X RSBK01 = Dairantou Smash Brothers X RSBP01 = Super Smash Bros. Brawl RSBP02 = Master4Robin's Super Smash Bros. Brawl Hack Pack 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 Spirits: Rokuban Shoubu 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 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 RT4EUD = Tales of Symphonia: Dawn of the New World Undub 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 Le 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 = Wario Land 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 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 RYIPNK = SPRay RYJPTV = Prinzessin Lillifee: Die große Feenparty RYKEAF = We Ski & Snowboard RYKJAF = Family Ski: World Ski & Snowboard RYKKAF = We 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 S32DJW = The Voice of Germany: I Want You S32PJW = The Voice S32SJW = La Voz: Quiero tu voz S33DKM = Let's Sing 2017 - Mit Deutschen Hits! S33FKM = Let's Sing 2017 : Hits Français et Internationaux S33PKM = Let's Sing 2017 S33SKM = Let's Sing 9 - Spanish Version S3AE5G = Attack of the Movies 3D S3APGT = 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 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 S5DE41 = Just Dance Disney Party 2 S5DP41 = Just Dance Disney Party 2 S5KJAF = Taiko no Tatsujin Wii: Chou Goukaban S5MEVZ = Monster High: New Ghoul in School S5MPVZ = Monster High: Aller Anfang ist schwer S5PPAU = PSA World Tour Squash 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 = 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 Batman 2: DC Super Heroes 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 S7EE52 = Transformers: Ultimate Battle Edition 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 S7LPKM = Let's Sing @ Radio Italia 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 SAOEVZ = Monster High: Ghoul Spirit SAOP78 = Monster High: Monsterkrasse Highschool-Klasse! SAOXVZ = 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: Mein Baby wird Erwachsen! SB3E08 = Sengoku Basara: Samurai Heroes SB3EUD = Sengoku Basara: Samurai Heroes Undub 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 SCLE01 = Cliff Super Mario Bros. Wii SCLJ01 = Cliff Super Mario Bros. Wii SCLP01 = Cliff Super Mario Bros. Wii 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! SDEPGT = 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 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 SDUEO1 = DU Super Mario Bros. : DU Edition 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 SERJ4Q = Disney Epic Mickey 2: The Power of Two 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 SFEPYF = Fit Music 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 SFRE01 = Super Mario Bros. Frozen Edition SFRJ01 = Super Mario Bros. Frozen Edition SFRP01 = Super Mario Bros. Frozen Edition 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 SGBPGT = 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 SH9PNJ = 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 SIIK01 = 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 v2.0 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 SJNE41 = Just Dance 2016 SJNP41 = Just Dance 2016 SJOE41 = Just Dance 2014 SJOP41 = Just Dance 2014 SJPE78 = Jeopardy! SJQEPZ = Jewel Quest Trilogy SJQPGR = Jewel Quest Trilogy SJREA4 = Def Jam Rapstar SJRPA4 = Def Jam Rapstar SJRXA4 = Def Jam Rapstar SJRYA4 = 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 SK3EUD = Trauma Team Undub SK4E52 = Shrek Forever After SK4P52 = Für immer Shrek SK5PY1 = Kylie Sing & Dance SK6KJD = K-POP Dance Festival SK7EVZ = Disney Violetta: Rhythmus und Musik SK7PVZ = Disney Violetta: Rhythmus und Musik SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8I52 = 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 SKNE52 = Skylanders: SuperChargers Racing SKNP52 = Skylanders: SuperChargers Racing 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 SKYY52 = 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 SL2PUD = Project Zero 2: Wii Edition Undub SL3ENR = Dragon's Lair Trilogy SL4PAF = Los 40 Principales Karaoke Party SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = The Last Airbender SLAP78 = Die Legende von Aang SLAX78 = Die Legende von Aang SLAZ78 = The Last Airbender: Toys R Us Special Edition SLBE01 = MLG Super Luigi Bros Wii SLBJ01 = MLG Super Luigi Bros. Wii SLBP01 = MLG Super Luigi Bros. Wii 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 SLGEYG = Let's Sing 2016 SLGPKM = Let's Sing 2016 SLHEWR = LEGO Harry Potter: Years 5-7 SLHPWR = LEGO Harry Potter: Die Jahre 5-7 SLIE52 = Little League World Series Baseball: Double Play SLJPKM = Let's Sing 8 - Spanish Version SLKPKM = Let’s Sing 2016 : Hits Français SLLEWW = Lucha Libre AAA: Héroes del Ring SLMPWL = 40 Principales Karaoke Party Vol. 2 SLNP7M = The Voice 3 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 SMNE14 = New Super Mario Bros. Wii: Pain Coins SMNE15 = Newer Super Mario Bros. 7 SMNE20 = New Super Mario Bros. H SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE31 = New Super Mario Bros. Wii - Other World 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 SMNE44 = Go Go Mario SMNE45 = Lemmy's Winter Palace SMNE46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNE47 = The New Special Road SMNE48 = True Mario Bros. SMNE49 = New Super Mario Bros. Wii - MSMKW Pack SMNE50 = New Super Mario Bros. Wii - Power Tower Pack SMNE51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNE52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNE53 = New Super Mario Bros. Wii - Kid Edition SMNE54 = New Super Mario Bros. Wii - The Next Levels 2 SMNE55 = New Super Mario Bros. Wii - Lava Mod Pack SMNE56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNE57 = Mario's Big Adventure SMNE58 = Wario's Cave SMNE59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNE60 = Remixed Super Mario Bros. Wii SMNE61 = New Super Summer Vacation SMNE62 = New Super Bowser Wii SMNE65 = Ghostly Super Ghost Boos Wii SMNE66 = The Legend of Yoshi SMNE67 = Larsenv Super Mario Collection SMNE68 = The Legend of Yoshi DLC SMNE69 = Revised Super Mario Bros. Wii SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNERE = Retro Mario Bros. SMNERV = RVLution 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 SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZY = Super Mario Skyland 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 SMNJ14 = New Super Mario Bros. Wii: Pain Coins SMNJ15 = Newer Super Mario Bros. 7 SMNJ20 = New Super Mario Bros. H SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ31 = New Super Mario Bros. Wii - Other World 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 SMNJ44 = Go Go Mario SMNJ45 = Lemmy's Winter Palace SMNJ46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNJ47 = The New Special Road SMNJ48 = True Mario Bros. SMNJ49 = New Super Mario Bros. Wii - MSMKW Pack SMNJ50 = New Super Mario Bros. Wii - Power Tower Pack SMNJ51 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ53 = New Super Mario Bros. Wii - Kid Edition SMNJ54 = New Super Mario Bros. Wii - The Next Levels 2 SMNJ55 = New Super Mario Bros. Wii - Lava Mod Pack SMNJ56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNJ57 = Mario's Big Adventure SMNJ58 = Wario's Cave SMNJ59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNJ60 = Remixed Super Mario Bros. Wii SMNJ61 = New Super Summer Vacation SMNJ62 = New Super Bowser Wii SMNJ65 = Ghostly Super Ghost Boos Wii SMNJ66 = The Legend of Yoshi SMNJ67 = Larsenv Super Mario Collection SMNJ68 = The Legend of Yoshi DLC SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJRE = Retro Mario Bros. SMNJRV = RVLution 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 SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZY = Super Mario Skyland 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 SMNP14 = New Super Mario Bros. Wii: Pain Coins SMNP15 = Newer Super Mario Bros. 7 SMNP20 = New Super Mario Bros. H SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP31 = New Super Mario Bros. Wii - Other World 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 SMNP44 = Go Go Mario SMNP45 = Lemmy's Winter Palace SMNP46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNP47 = The New Special Road SMNP48 = True Mario Bros. SMNP49 = New Super Mario Bros. Wii - MSMKW Pack SMNP50 = New Super Mario Bros. Wii - Power Tower Pack SMNP51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNP52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNP53 = New Super Mario Bros. Wii - Kid Edition SMNP54 = New Super Mario Bros. Wii - The Next Levels 2 SMNP55 = New Super Mario Bros. Wii - Lava Mod Pack SMNP56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNP57 = Mario's Big Adventure SMNP58 = Wario's Cave SMNP59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNP60 = Remixed Super Mario Bros. Wii SMNP61 = New Super Summer Vacation SMNP62 = New Super Bowser Wii SMNP65 = Ghostly Super Ghost Boos Wii SMNP66 = The Legend of Yoshi SMNP67 = Larsenv Super Mario Collection SMNP68 = The Legend of Yoshi DLC SMNP77 = New Super Mario Bros. Wii Arcadia 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 SMNPO1 = New Super Mario Custom Edition SMNPRE = Retro Mario Bros. SMNPRV = RVLution 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 SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZY = Super Mario Skyland 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 SO3EUD = Rune Factory: Tides of Destiny Undub SO3J99 = Rune Factory: Oceans SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg - Das große Hexenbesen-Rennen 2 SOCE4Z = Deadliest Catch: Sea of Chaos SODPYK = The Explorer and the Mystery of the Diamond Scarab 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 SOME02 = Rhythm Heaven Fever Repainted SOMJ01 = Minna no Rhythm Tengoku SOMK01 = Rhythm World Wii 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 & 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 = Mama's 2-Pack SQKK01 = Mama's 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 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 SQWE52 = The Voice: I Want You 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 SROENS = Rodea the Sky Soldier SROJQC = Tenkuu no Kishi Rodea SROKQC = Rodea the Sky Soldier SROPNS = Rodea the Sky Soldier 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: Providence Agent 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 SSPJGD = 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 SSUPLR = 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 SVCPXT = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = Spongebob Schwammkopf: Planktons Fiese Robo-Rache SVEPAF = DreamWorks The Croods: Prehistoric Party! & Rise of the Guardians: Combo Pack 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 SVQEVZ = Barbie and Her Sisters: Puppy Rescue SVQPVZ = Barbie und ihre Schwestern: Die Rettung der Welpen 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 SX3PUD = Pandora's Tower Undub 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 SX9PRV = The Voice Vol. 2 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 SY7PKM = Let's Sing 7 - Spanish Version 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 SZ7E41 = Just Dance 2017 SZ7P41 = Just Dance 2017 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: 20170813134750) 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 = TsÌ„shin 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 WFQE = Frogger: Hyper Arcade Edition 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: 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 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 WKJE = Karaoke Joysound 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 WMH1 = Mother 1+2+3 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 WN64 = Nintendo 64 Forwarder 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 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: Ikuzo! Arashi 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: Susume! Honoo 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 = Pokémon Rumble (Demo) XHAP = Pokémon 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-3.01a/share/titles-zhcn.txt0000644000175000017500000114731413363642463016323 0ustar michaelmichael010E01 = Wii 备份盘 v1.31(美) 301E01 = GameCube Service Disc 9XGX = SNES9x超任模拟器(美) 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 = 自制 å‰ä»–英雄 下载版(美) CBIEE9 = Harvest Moon: Pride Parade 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 自制版(?) CGHE52 = Guitar Hero 2K16 (Custom) 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.2 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.2 CS9PZZ = 自制 å”±å§ Pop Hits 9 v1.0(欧) CSAP00 = 自制 å”±å§ '80s Volume 3 v2.2 CSAPZZ = 自制 å”±å§ Best of Goldman v1.0(欧) CSBP00 = 自制 å”±å§ '90s Volume 2 v2.2 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 v2.0 CSFP00 = 自制 å”±å§ Pop Hits 6 v2.0 CSGP00 = 自制 å”±å§ Chansons Magiques de Disney v2.0 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = 自制 å”±å§ Pop Hits 7 v2.0 CSJP00 = 自制 å”±å§ Après-Ski Party v2.0 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 v2.0 CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = 自制 å”±å§ Génériques TV v2.1 (欧) 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.1 CT9P00 = StarSing : Pop Hits 9 v2.0 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.2 CTNP00 = StarSing : Pop Hits 10 v2.0 CTOP00 = StarSing : The Beatles Volume 2 v2.1 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 v2.0 CTUP00 = StarSing : Rihanna v2.0 CTVP00 = StarSing : Lady GaGa v1.1 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CTZP00 = StarSing : Volume 3 v1.0 CU0P00 = StarSing : Retro Volume 3 v1.0 CU1P00 = StarSing : Girls v1.0 CU2P00 = StarSing : Volume 4 v1.1 CU3P00 = StarSing : Retro Volume 4 v1.1 CU4P00 = StarSing : Retro Volume 5 v1.0 CU5P00 = StarSing : International Volume 4 v1.0 CU6P00 = StarSing : Volume 5 v1.0 CU7P00 = StarSing : Retro Volume 6 v1.0 CU8P00 = StarSing : Volume 6 v1.0 CU9P00 = StarSing : Volume 7 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 = B.L.I.N.D. 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 = WAD Batch Installer 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: Scorched Earth 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 = Monthly Nintendo Shop Demo - 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: A Hard Days Night 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 DBSBT3 = Dragon Ball Budokai Tenkaichi 3 Version Latino 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. Brawl: 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 DN6A = Not64 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模拟器(欧) 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 DTZJ08 = Takarajima Z Barbaros' Treasure (Demo) 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地çƒ(欧) DWEJA4 = Winning Eleven PLAY MAKER 2008 (Demo) 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 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 Shodown 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 Shodown 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 Shodown 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 EAZP = World Heroes Perfect EB2E = Real Bout Fatal Fury Special EB2J = Real Bout Garou Densetsu Special EB2P = Real Bout Fatal Fury Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB5P = 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 EBGP = 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 EBSP = The Path of the Warrior: Art of Fighting 3 EBTJ = Crossed Swords EBUE = 2020 Super Baseball EBUJ = Super Baseball 2020 EBUP = 2020 Super Baseball 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 ECAP = Real Bout Fatal Fury 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECCP = 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 ECGP = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECHP = The King of Fighters '98 ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECIP = 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 II 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 III 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 JingÌ„ji SaburÌ„: Shinjuku Ch̄̄ KÌ„en 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 FERP = Zoda’s Revenge: StarTropics II 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 FF5P = Double Dragon II: 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 G2DJB2 = Digimon Battle Chronicle 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 & 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 G2XJ8P = Sonic Gems Collection G2XP8P = Sonic Gems Collection G3AD69 = The Lord of the Rings: The Third Age G3AE69 = The Lord of the Rings: The Third Age G3AF69 = The Lord of the Rings: The Third Age G3AP69 = The Lord of the Rings: The Third Age G3AS69 = The 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 G96P01 = Interactive Multi-Game Demo Disc - November 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 G9RJ7D = Crash Bandicoot Gacchanko World 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 GA3J51 = 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 GAZJ13 = Harry Potter to Azkaban no Shuujin 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 GBMJ7F = 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 GBRJ18 = Bloody Roar Extreme GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSJ8P = Beach Spikers: Virtua Beach Volleyball GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTJA7 = Bakuten Shoot Beyblade 2002: Nettou! Magne Tag 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 = Pokémon Colosseum GC6P01 = Pokémon Colosseum GC7PNK = Cocoto Platform Jumper GC8JA4 = Crash Bandicoot: Bakusou! Nitro Kart GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBJA4 = Crash Bandicoot 4: Sakuretsu! Majin Power 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 Complete 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 GCTJ8P = 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 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 Arena 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 = 007: Everything or Nothing GENF69 = James Bond 007: Everything or Nothing GENP69 = James Bond 007: Everything Or Nothing GENS69 = James Bond 007: Everything or Nothing GEOE08 = Capcom vs. SNK 2 EO GEOJ08 = Capcom vs. SNK 2 EO: Millionaire Fighting 2001 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 GEZJ8P = 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 GF4I52 = Fantastic 4 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 GFIJ13 = 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 GG4J08 = 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 GH4J13 = Harry Potter to Honoo no Goblet 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 GHLJ13 = Harry Potter to Kenja no Ishi GHLJ69 = Harry Potter to Kenja no Ishi GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Philosopher'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 GHSJ13 = Harry Potter to Himitsu no Heya 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 GJND78 = Jimmy Neutron: Boy Genius 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 = The Lord of the Rings: The Return of the King GKLE69 = The Lord of the Rings: The Return of the King GKLF69 = Lord of the Rings: The Return of the King GKLI69 = The Lord of the Rings: The Return of the King GKLJ69 = The Lord of the Rings: The Return of the King GKLP69 = The Lord of the Rings: The Return of the King GKLS69 = The 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's Airride GKYP01 = Kirby Air Ride GKZD54 = Codename: Kids Next Door - Operation: V.I.D.E.O.G.A.M.E. 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 = The Lord of the Rings: The Two Towers GLOE69 = The Lord of the Rings: The Two Towers GLOF69 = The Lord of the Rings: The Two Towers GLOI69 = The Lord of the Rings: The Two Towers GLOP69 = The 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 Hoffman's 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 GOTJB2 = One Piece: Treasure Battle! 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 GQ4D78 = SpongeBob SquarePants: Creature from the Krusty Krab 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 GQCI52 = 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 GRJPAF = R: Racing Evolution 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 GSMJ08 = Spider-Man: The Movie 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 Squadron II: Rogue Leader GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = Star Wars Rogue Squadron II GSWP64 = Star Wars Rogue Squadron II: Rogue Leader 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 GVS32E = Virtua Striker 3 Ver. 2002 GVS32J = Virtua Striker 3 Ver.2002 (Triforce) GVS45E = Virtua Striker 4 GVS45J = Virtua Striker 4 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 = James Bond 007 in 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 GWEJ51 = 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 GX2E01 = Pokemon XG: Next Gen 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 = Pokémon 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频é“(欧) 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 no Tomo Channel G Guide for Wii HBWE01 = 自制 超级马里奥兄弟Wii 地狱男爵版(美) HC3J = USB Flash Optimization HC4E = Crunchyroll HC4P = Crunchyroll 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 HCFJ = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Wii Speak Channel HCGE = Wii + Internet HCGJ = Wii + Internet HCGP = Wii + Internet HCHJ = Demae Channel HCIJ = Wii no Ma HCJP = BBC iPlayer Channel HCLE = Netflix系统安装盘(美) HCLP = Netflix HCMP = Kirby TV Channel 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 JCNP = 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 JDNP = 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 = KyÌ„yaku Megami Tensei: Megami Tensei I・II JODI = 自制频é“(欧) JOUE01 = New Super Mario Bros. Wii 10 The Journey KLSEXJ = The Last Story (NTSC-U, Japanese Audio) 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 MB3L = 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 = 自制 å”±å§ ä¸‹è½½ç‰ˆ(欧) MK7P41 = Mario Kart 7 Wii 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 = Pokémon 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 NTLC = Super Mario 64 Multiplayer 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 PCSJ01 = Pokémon 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(美) PGPJB2 = SD Gundam Trial 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: KÌ„kÌ„ YakyÌ„ 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 = å¤šå¡æ³¢çދ国(æ—¥) 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 = 魔法高尔夫(欧) 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](æ—¥) 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](美) R7FEUD = Final Fantasy Fables: Chocobo's Dungeon Undub R7FJGD = 陆行鸟 å¿˜å´æ—¶é—´çš„迷宫[WiFi](æ—¥) R7FPGD = 陆行鸟 å¿˜å´æ—¶é—´çš„迷宫[WiFi](欧) R7GEAF = é¾™ç  å¤©ä¸‹ç¬¬ä¸€å¤§å†’é™©(美) R7GJAF = é¾™ç  å¤©ä¸‹ç¬¬ä¸€å¤§å†’é™©(æ—¥) R7GPAF = é¾™ç  å¤©ä¸‹ç¬¬ä¸€å¤§å†’é™©(欧) R7HE6K = 救兵总动员(美) R7IE69 = 魅力女孩俱ä¹éƒ¨[平衡æ¿](美) R7IP69 = 魅力女孩俱ä¹éƒ¨ ç¡è¡£æ´¾å¯¹[平衡æ¿](欧) R7KE6K = 岩石疾风(美) R7LP7J = 玛格的困惑ï¼(欧) R7MPFR = éŸ³ä¹æ´¾å¯¹ 轰动全场(欧) 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(æ—¥) 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 = å项全能(美) RDXE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino Beta 3 RDXJ18 = å¾·å¡è¿åŠ¨ä¼š(æ—¥) RDXKA4 = å¾·å¡è¿åŠ¨ä¼š(韩) RDXP18 = å¾·å¡è¿åŠ¨ä¼š(欧) RDYEGN = 人å¶CID(美) RDZE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino 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 = 忌ç«èµ·è‰ 解明篇(æ—¥) 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 = ç«ç‚Žçº¹ç«  晓之女神(欧) RFEPUD = Fire Emblem: Radian Dawn Undub RFFEGD = æ°´æ™¶ç¼–å¹´å² æ—¶ä¹‹å›žå£°[WiFi](美) RFFJGD = æ°´æ™¶ç¼–å¹´å² æ—¶ä¹‹å›žå£°[WiFi](æ—¥) RFFPGD = æ°´æ™¶ç¼–å¹´å² æ—¶ä¹‹å›žå£°[WiFi](欧) RFJJAF = 家庭赛马(æ—¥) RFKE41 = 我的å¥åº·æ•™ç»ƒ(美) RFKP41 = 我的å¥åº·æ•™ç»ƒ(欧) RFKX41 = 我的å¥åº·æ•™ç»ƒ(X) RFLE69 = ç¾Žå¼æ©„榄çƒå¤§è”盟09[WiFi](美) RFLP69 = ç¾Žå¼æ©„榄çƒå¤§è”盟09[WiFi](欧) RFLPWK = ç¾Žå¼æ©„榄çƒå¤§è”盟09[WiFi](欧) RFMJAF = èŒæ£’家庭棒çƒåœº[WiFi](æ—¥) RFNE = Wii Fit Channel RFNJ01 = Wiiå¥èº«[平衡æ¿](æ—¥) RFNK01 = Wiiå¥èº«[平衡æ¿](韩) RFNP01 = Wiiå¥èº«[平衡æ¿](欧) RFNW01 = Wiiå¥èº«[平衡æ¿] RFOE52 = 蜘蛛侠 敌å‹éš¾è¾¨(美) RFOP52 = 蜘蛛侠 敌å‹éš¾è¾¨(欧) RFOX52 = 蜘蛛侠 敌å‹éš¾è¾¨(X) RFPE = Wii Fit Plus Channel RFPJ01 = Wiiå¥èº« 加强版[平衡æ¿](æ—¥) RFPK01 = Wiiå¥èº«åŠ å¼ºç‰ˆ[平衡æ¿](韩) RFPP01 = Wiiå¥èº«åŠ å¼ºç‰ˆ[平衡æ¿](欧) RFPR01 = Wiiå¥èº«åŠ å¼ºç‰ˆ[平衡æ¿](ä¿„) RFPW01 = Wiiå¥èº«åŠ å¼ºç‰ˆ[平衡æ¿] RFQE69 = 破相拳击(美) RFQJ13 = 破相拳击(æ—¥) RFQK69 = 破相拳击(韩) RFQP69 = 破相拳击(欧) RFRE5G = 摇摆回转公园(美) RFRJC0 = 摇摆回转公园(æ—¥) RFSEEB = 风æ¥ä¹‹è¥¿æž—3(美) RFSJ8P = 风æ¥ä¹‹è¥¿æž—3 机关屋沉ç¡å…¬ä¸»(æ—¥) RFTE70 = åŽé™¢æ©„榄çƒ(美) 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](欧) RGWX = Rabbids Channel RGXE5D = æ¸¸æˆæ´¾å¯¹(美) RGXEFN = 自制 å‰ä»–英雄3 Meteo最终自制(美) RGXEWR = æ¸¸æˆæ´¾å¯¹(美) 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](美) RK2EUD = Trauma Center: New Blood Undub 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 = 超执刀 冿¬¡æ‰§åˆ€(美) RKDEUD = Trauma Center: Second Opinion Undub RKDJEB = 超执刀 冿¬¡æ‰§åˆ€(æ—¥) RKDJG9 = 超执刀 冿¬¡æ‰§åˆ€(æ—¥) RKDP01 = 超执刀 冿¬¡æ‰§åˆ€(欧) 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 = 玩具军人 倒霉战士(美) RKYP7J = 玩具军人 倒霉战士(欧) RKZEA4 = 迷失蔚è“Wii(美) RKZJA4 = 迷失蔚è“Wii(æ—¥) RKZPA4 = 迷失蔚è“Wii(欧) RL2E78 = 我的驯马场(美) RL2HMN = Horse & Pony: My Riding Stables 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 = 幸è¿çš„路克 独闯西部(欧) 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汉化简体中文版) RMCE = Mario Kart Channel RMCJ01 = 马里奥赛车 Wii(æ—¥) RMCJ12 = 马里奥赛车Wii 自制版(2011-11 Wiimm)(æ—¥) RMCJ30 = Wiimms MKW-Fun 2015-12.jap RMCJ31 = Wiimms MKW-Fun 2016-02.jap RMCJ32 = Wiimms MKW-Fun 2016-07.jap RMCJ33 = Wiimms MKW-Fun 2016-10.jap RMCJ34 = Wiimms MKW-Fun 2017-05.jap RMCJ64 = Peach Kart 8 RMCJ76 = Pro CT Pack RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCJL1 = Luma's CT Pack 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 RMCP27 = Wiimms MKW-Fun 2015-03.pal RMCP28 = Wiimms MKW Retro 2015-05.pal RMCP29 = Wiimms MKW-Fun 2015-08.pal RMCP30 = Wiimms MKW-Fun 2015-12.pal RMCP31 = Wiimms MKW-Fun 2016-02.pal RMCP32 = Wiimms MKW-Fun 2016-07.pal RMCP33 = Wiimms MKW-Fun 2016-10.pal RMCP34 = Wiimms MKW-Fun 2017-05.pal RMCP64 = Peach Kart 8 RMCP76 = Pro CT Pack RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCPL1 = Luma's CT Pack 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](美) RNEEUD = Naruto Shippuden: Clash of Ninja Revolution 3 Undub 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(美) 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 = 弧光幻想曲(美) RPJEUD = Arc Rise Fantasia Undub 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(欧) RR2XUG = 装载å¡è½¦ç«žèµ›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 = Marlan Project M 3.6 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 2 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 RSBE43 = Super Smash Bros. Brawl: MASTERLINKX's Custom Pack RSBE44 = Super Smash Bros. Brawl: Shadow Version RSBE45 = Super Smash Bros. Brawl: Shock44's Custom Build RSBE46 = Super Smash Bros. Brawl: DragonD101's Texture Pack RSBE47 = Super Smash Bros. Brawl: XChosen1's Texture Pack RSBE49 = Super Smash Bros. Brawl: Water Block Edition RSBE50 = Super Smash Bros. Project U: Ultra Version RSBEAA = Marvel and Capcom vs Super Smash Bros. 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 RSBEDH = Super Smash Bros. Brawl Dark Hole/D.A.R.S. RSBEDT = Super Smash Bros. Ultimate Dark Phoenix: Tournament Edition RSBEN1 = Super Smash Bros. Project M RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBETE = Super Smash Bros. Legacy TE RSBEWM = Super Smash Bros. Project M Wi-Fi RSBEXP = Super Smash Bros. Legacy XP RSBJ01 = 任天堂明星大乱斗X[WiFi](æ—¥) RSBK01 = 任天堂明星大乱斗X[WiFi](韩) RSBP01 = 任天堂明星大乱斗X[WiFi](欧) RSBP02 = Master4Robin's Super Smash Bros. Brawl Hack Pack 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 = æžåœ°ç†Šå®è´(美) RT2P7J = æžåœ°ç†Šå®è´(欧) RT3E54 = Rockstar乒乓çƒ(美) RT3JEL = Rockstar乒乓çƒ(æ—¥) RT3P54 = Rockstar乒乓çƒ(欧) RT4EAF = ä»™ä¹ä¼ è¯´ 拉塔托斯克的骑士(美) RT4EUD = Tales of Symphonia: Dawn of the New World Undub 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(美) 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 = 涂鸦王å­(美) RYIPNK = 涂鸦王å­(欧) RYJPTV = 莉莉è²å…¬ä¸» 魔法å°ä»™å¥³(欧) RYKEAF = 世界滑雪&滑雪æ¿[平衡æ¿](美) RYKJAF = 家庭滑雪:世界滑雪&滑雪æ¿(æ—¥) RYKKAF = We Ski & Snowboard 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(欧) S32DJW = The Voice of Germany: I Want You S32PJW = The Voice S32SJW = La Voz: Quiero tu voz S33DKM = Let's Sing 2017 - Mit Deutschen Hits! S33FKM = Let's Sing 2017 : Hits Français et Internationaux S33PKM = Let's Sing 2017 S33SKM = Let's Sing 9 - Spanish Version S3AE5G = 电影空间大冒险(美) S3APGT = 电影空间大冒险(美) 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 S59E01 = æˆ˜å›½æ— åŒ 3(美) S59JC8 = æˆ˜å›½æ— åŒ 3(æ—¥) S59P01 = æˆ˜å›½æ— åŒ 3(欧) S5BETL = 回到未æ¥(美) S5BPKM = Back to the Future: The Game S5DE41 = Just Dance Disney Party 2 S5DP41 = Just Dance Disney Party 2 S5KJAF = 太鼓达人Wii 超豪åŽç‰ˆ(æ—¥) S5MEVZ = Monster High: New Ghoul in School S5MPVZ = Monster High: New Ghoul in School S5PPAU = PSA World Tour Squash 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 Batman 2: DC Super Heroes S7APWR = ä¹é«˜è™è ä¾ 2 DC超级英雄(欧) S7BE69 = 棋盘游æˆ(美) S7BP69 = 棋盘游æˆ(欧) S7CJAF = å‡é¢éª‘士 巅峰英雄 Fourze(æ—¥) S7DE52 = 愤怒的å°é¸Ÿï¼šæ˜Ÿçƒå¤§æˆ˜ S7DP52 = Angry Birds: Star Wars S7EE52 = Transformers: Ultimate Battle Edition 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 S7LPKM = Let's Sing @ Radio Italia 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 SAOEVZ = Monster High: Ghoul Spirit SAOP78 = 怪物美少女 尸鬼精çµ(欧) SAOXVZ = 怪物美少女 尸鬼精çµ(欧) 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(美) SB3EUD = Sengoku Basara: Samurai Heroes Undub 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. 奶酪的è¿åŠ¨æ¸¸æˆ(美) SCLE01 = Cliff Super Mario Bros. Wii SCLJ01 = Cliff Super Mario Bros. Wii SCLP01 = Cliff Super Mario Bros. Wii 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](美) SDEPGT = 舞感[MP](美) SDFE4Q = 迪斯尼想唱就唱 åˆå®¶æ¬¢å”±ç‰ˆ(美) SDFP4Q = 迪斯尼想唱就唱 åˆå®¶æ¬¢å”±ç‰ˆ(欧) SDGE4Q = 迪斯尼全明星派对(美) SDGP4Q = 迪斯尼全明星派对(欧) 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 = è“色å°ç²¾çµ 舞蹈派对(美) SDUEO1 = 自制 新超级玛利欧兄弟DU版(欧) 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:åŒé‡åŠ›é‡(欧) SERJ4Q = Disney Epic Mickey 2: The Power of Two 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 = 家庭訓練機 夢幻主題樂園(æ­) SFEPYF = Fit Music SFGE69 = 孩之å®å®¶åº­æ¸¸æˆä¹‹å¤œ4 游æˆèŠ‚ç›®(美) SFGP69 = Hasbro: Family Game Night 4 - The Game Show SFHEFP = 户外活动åˆé›†(美) SFIE01 = 神秘档案 ç™¾çµæ³‰(美) SFIP01 = 神秘案件档案(欧) SFKEG9 = 家庭派对 欢ä¹ç˜¦èº«[平衡æ¿](美) SFKPAF = 家庭派对 欢ä¹ç˜¦èº«[平衡æ¿](欧) SFLDSV = è¯…å’’çš„å¤æ´»èЂ岛(å¾·) SFOEAF = 网络食谱 烹饪对战(美) SFPPFR = æ¢¦å¹»è¶³çƒæ´¾å¯¹(欧) SFQE8P = 美国队长 超级士兵(美) SFQP8P = 美国队长 超级士兵(欧) SFRDRV = å¥èº«ä¹è¶£[平衡æ¿](欧) SFRE01 = Super Mario Bros. Frozen Edition SFRJ01 = Super Mario Bros. Frozen Edition SFRP01 = Super Mario Bros. Frozen Edition 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(美) SGBPGT = Greg Hastings Paintball 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 = 希斯与利夫 ç«é€Ÿç‹‚飙(美) SH9PNJ = Heathcliff: The Fast and the Furriest 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](æ—¥) SIIK01 = Mario & Sonic at the London 2012 Olympic Games 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 v2.0 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[平衡æ¿](欧) SJNE41 = Just Dance 2016 SJNP41 = Just Dance 2016 SJOE41 = Just Dance 2014 SJOP41 = 舞力全开 2014 SJPE78 = 智力竞答(美) SJQEPZ = å®çŸ³æŽ¢ç§˜ä¸‰éƒ¨æ›²(美) SJQPGR = å®çŸ³æŽ¢ç§˜ä¸‰éƒ¨æ›²(美) SJREA4 = 说唱巨星(美) SJRPA4 = 说唱巨星(欧) SJRXA4 = 说唱巨星(欧) SJRYA4 = 说唱巨星(欧) SJSEPK = å® ç‰©è¥æ•‘(美) SJTP41 = Just Dance: Best Of SJUE20 = æé¾™å¿«æ‰“(美) SJUPXT = æé¾™å¿«æ‰“(美) SJVE20 = è‚–æ©çº¦ç¿°é€Šä½“æ“[平衡æ¿](美) SJWJA4 = 胜利å一人2010 è“æ­¦å£«çš„æŒ‘战(æ—¥) SJXD41 = 舞力全开4(欧) SJXE41 = 舞力全开4(美) SJXP41 = 舞力全开4(欧) SJZE41 = 舞力全开 儿童版2(美) SJZP41 = 舞力全开 儿童版2(欧) SK3EEB = 超执刀 创伤å°é˜Ÿ(美) SK3EUD = Trauma Team Undub SK4E52 = å²èޱ克4 å¿«ä¹ç¥žä»™(美) SK4P52 = å²èޱ克4 å¿«ä¹ç¥žä»™(欧) SK5PY1 = Kylie Sing & Dance SK6KJD = K-POP Dance Festival SK7EVZ = Disney Violetta: Rhythm & Music SK7PVZ = Disney Violetta: Rhythm & Music SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8I52 = 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(æ—¥) SKNE52 = Skylanders: SuperChargers Racing SKNP52 = Skylanders: SuperChargers Racing 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 = å°é¾™æ–¯æ´¾ç½—:巨人(欧) SKYY52 = å°é¾™æ–¯æ´¾ç½—:巨人(欧) SKYZ52 = å°é¾™æ–¯æ´¾ç½—:巨人(欧) SKZE52 = 梦工厂超级明星赛(美) SKZP52 = 梦工厂超级明星赛(欧) SL2J01 = é›¶ ~ 真红之è¶(æ—¥) SL2P01 = é›¶ ~ 真红之è¶(欧) SL2PUD = Project Zero 2: Wii Edition Undub SL3ENR = 龙的巢穴三部曲(美) SL4PAF = Los 40 Principales Karaoke Party SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = 最åŽçš„æ°”å®—(美) SLAP78 = 最åŽçš„æ°”å®—(欧) SLAX78 = The Last Airbender: Special Edition SLAZ78 = 最åŽçš„æ°”å®— çŽ©å…·åæ–—城版(美) SLBE01 = MLG Super Luigi Bros Wii SLBJ01 = MLG Super Luigi Bros. Wii SLBP01 = MLG Super Luigi Bros. Wii 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 SLGEYG = Let's Sing 2016 SLGPKM = Let's Sing 2016 SLHEWR = ä¹é«˜å“ˆåˆ©æ³¢ç‰¹ 5-7å¹´(美) SLHPWR = ä¹é«˜å“ˆåˆ©æ³¢ç‰¹ 5-7å¹´(欧) SLIE52 = å°è”ç›Ÿæ£’çƒ äºŒåˆä¸€(美) SLJPKM = Let's Sing 8 - Spanish Version SLKPKM = Let’s Sing 2016 : Hits Français SLLEWW = Lucha Libre AAA: Héroes del Ring SLMPWL = 40 Principales Karaoke Party Vol. 2 SLNP7M = The Voice 3 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 SMNE14 = New Super Mario Bros. Wii: Pain Coins SMNE15 = Newer Super Mario Bros. 7 SMNE20 = New Super Mario Bros. H SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE31 = New Super Mario Bros. Wii - Other World 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 SMNE44 = Go Go Mario SMNE45 = Lemmy's Winter Palace SMNE46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNE47 = The New Special Road SMNE48 = True Mario Bros. SMNE49 = New Super Mario Bros. Wii - MSMKW Pack SMNE50 = New Super Mario Bros. Wii - Power Tower Pack SMNE51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNE52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNE53 = New Super Mario Bros. Wii - Kid Edition SMNE54 = New Super Mario Bros. Wii - The Next Levels 2 SMNE55 = New Super Mario Bros. Wii - Lava Mod Pack SMNE56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNE57 = Mario's Big Adventure SMNE58 = Wario's Cave SMNE59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNE60 = Remixed Super Mario Bros. Wii SMNE61 = New Super Summer Vacation SMNE62 = New Super Bowser Wii SMNE65 = Ghostly Super Ghost Boos Wii SMNE66 = The Legend of Yoshi SMNE67 = Larsenv Super Mario Collection SMNE68 = The Legend of Yoshi DLC SMNE69 = Revised Super Mario Bros. Wii SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNERE = Retro Mario Bros. SMNERV = RVLution 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 SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZY = Super Mario Skyland 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 SMNJ14 = New Super Mario Bros. Wii: Pain Coins SMNJ15 = Newer Super Mario Bros. 7 SMNJ20 = New Super Mario Bros. H SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ31 = New Super Mario Bros. Wii - Other World 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 SMNJ44 = Go Go Mario SMNJ45 = Lemmy's Winter Palace SMNJ46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNJ47 = The New Special Road SMNJ48 = True Mario Bros. SMNJ49 = New Super Mario Bros. Wii - MSMKW Pack SMNJ50 = New Super Mario Bros. Wii - Power Tower Pack SMNJ51 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ53 = New Super Mario Bros. Wii - Kid Edition SMNJ54 = New Super Mario Bros. Wii - The Next Levels 2 SMNJ55 = New Super Mario Bros. Wii - Lava Mod Pack SMNJ56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNJ57 = Mario's Big Adventure SMNJ58 = Wario's Cave SMNJ59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNJ60 = Remixed Super Mario Bros. Wii SMNJ61 = New Super Summer Vacation SMNJ62 = New Super Bowser Wii SMNJ65 = Ghostly Super Ghost Boos Wii SMNJ66 = The Legend of Yoshi SMNJ67 = Larsenv Super Mario Collection SMNJ68 = The Legend of Yoshi DLC SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJRE = Retro Mario Bros. SMNJRV = RVLution 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 SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZY = Super Mario Skyland 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 SMNP14 = New Super Mario Bros. Wii: Pain Coins SMNP15 = Newer Super Mario Bros. 7 SMNP20 = New Super Mario Bros. H SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP31 = New Super Mario Bros. Wii - Other World 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 SMNP44 = Go Go Mario SMNP45 = Lemmy's Winter Palace SMNP46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNP47 = The New Special Road SMNP48 = True Mario Bros. SMNP49 = New Super Mario Bros. Wii - MSMKW Pack SMNP50 = New Super Mario Bros. Wii - Power Tower Pack SMNP51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNP52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNP53 = New Super Mario Bros. Wii - Kid Edition SMNP54 = New Super Mario Bros. Wii - The Next Levels 2 SMNP55 = New Super Mario Bros. Wii - Lava Mod Pack SMNP56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNP57 = Mario's Big Adventure SMNP58 = Wario's Cave SMNP59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNP60 = Remixed Super Mario Bros. Wii SMNP61 = New Super Summer Vacation SMNP62 = New Super Bowser Wii SMNP65 = Ghostly Super Ghost Boos Wii SMNP66 = The Legend of Yoshi SMNP67 = Larsenv Super Mario Collection SMNP68 = The Legend of Yoshi DLC SMNP77 = 自制 新超级马里奥兄弟 阿å¡è¿ªäºš(欧) 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 SMNPO1 = 自制 新超级马里奥兄弟Wii定制版(欧) SMNPRE = Retro Mario Bros. SMNPRV = RVLution 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 SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZY = Super Mario Skyland 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 = 符文工房 è“æµ·å¥‡ç¼˜(美) SO3EUD = Rune Factory: Tides of Destiny Undub SO3J99 = 符文工房 è“æµ·å¥‡ç¼˜(æ—¥) SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg 2 SOCE4Z = è‡´å‘½æ•æž 混乱海域(美) SODPYK = The Explorer and the Mystery of the Diamond Scarab SOIEEB = 101åˆ1è¿åЍèšä¼šæ¸¸æˆè¶…级åˆé›†(美) SOIPHZ = 101åˆ1è¿åЍèšä¼šæ¸¸æˆè¶…级åˆé›†(欧) SOJE41 = 雷曼 èµ·æº(美) SOJP41 = 雷曼 èµ·æº(欧) SOKEA4 = Karaoke Joysound SOKJ18 = 塿‹‰OK 欢ä¹ä¹‹å£°Wii DX(æ—¥) SOME01 = 大家的节å¥å¤©å›½(美) SOME02 = 大家的节å¥å¤©å›½(美) SOMJ01 = 大家的节å¥å¤©å›½(日或中) SOMK01 = Rhythm World Wii 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 = Mama's 2-Pack SQKK01 = Mama's 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 SQWE52 = The Voice: I Want You 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 = 天桥骄å­[平衡æ¿](欧) SROENS = Rodea the Sky Soldier SROJQC = Tenkuu no Kishi Rodea SROKQC = Rodea the Sky Soldier SROPNS = Rodea the Sky Soldier 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 SSPJGD = 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 = 回转寿å¸(美) SSUPLR = 回转寿å¸(美) 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 SVCPXT = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = 海绵å®å® ç—žè€æ¿æœºå™¨äººå¤ä»‡ SVEPAF = DreamWorks The Croods: Prehistoric Party! & Rise of the Guardians: Combo Pack 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 = 维加斯èšä¼š(欧) SVQEVZ = Barbie and Her Sisters: Puppy Rescue SVQPVZ = Barbie and Her Sisters: Puppy Rescue 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 = 潘朵拉之塔 直到你身边 (æ­) SX3PUD = Pandora's Tower Undub SX4E01 = å¼‚åº¦ä¹‹åˆƒï¼šç¼–å¹´å² SX4J01 = 异度之刃(æ—¥) SX4P01 = 异度之刃(欧) SX5E4Z = 圣诞è€äººè¿›åŸŽå•°(美) SX6JAF = 光之美少女 全明星全员集åˆä¸€èµ·èˆžè¹ˆ(æ—¥) SX7E52 = å¿è€…神龟 SX7P52 = Teenage Mutant Ninja Turtles SX8E52 = X战警 命è¿(美) SX8P52 = X战警 命è¿(美) SX9PRV = The Voice Vol. 2 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](欧) SY7PKM = Let's Sing 7 - Spanish Version SY8PKM = Let's Sing 2015 SZ2E5G = å°Šå·´å—美拉ä¸èˆž 2(美) SZ2P5G = å°Šå·´å—美拉ä¸èˆž 2(欧) SZ2XGT = å°Šå·´å—美拉ä¸èˆž 2(欧) SZ3E5G = Zumba Fitness World Party SZ3PGT = Zumba Fitness World Party SZ5E5G = å°Šå·´å—美拉ä¸èˆž(美) SZ5PGT = å°Šå·´å—美拉ä¸èˆž(欧) SZ7E41 = Just Dance 2017 SZ7P41 = Just Dance 2017 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: 20170813134840) 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 = TsÌ„shin 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 WFQE = Frogger: Hyper Arcade Edition 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: 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 = 太空侵略者的å¤ä»‡ä¹‹æˆ˜(欧) 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 WKJE = Karaoke Joysound 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 WMH1 = Mother 1+2+3 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 WN64 = Nintendo 64 Forwarder 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 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: Ikuzo! Arashi 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: Susume! Honoo 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 = Pokémon Rumble (Demo) XHAP = Pokémon 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-3.01a/share/titles-ko.txt0000644000175000017500000110573013363642463015766 0ustar michaelmichael010E01 = Wii Backup Disc v1.31 301E01 = GameCube Service Disc 9XGX = SNES9xGX 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... CBIEE9 = Harvest Moon: Pride Parade 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 CGHE52 = Guitar Hero 2K16 (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.2 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.2 CS9PZZ = StarSing : Pop Hits 9 v1.0 CSAP00 = StarSing : '80s Volume 3 v2.2 CSAPZZ = StarSing : Best of Goldman v1.0 CSBP00 = StarSing : '90s Volume 2 v2.2 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 v2.0 CSFP00 = StarSing : Pop Hits 6 v2.0 CSGP00 = StarSing : Chansons Magiques de Disney v2.0 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = StarSing : Pop Hits 7 v2.0 CSJP00 = StarSing : Après-Ski Party v2.0 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 v2.0 CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = StarSing : Génériques TV v2.1 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.1 CT9P00 = StarSing : Pop Hits 9 v2.0 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.2 CTNP00 = StarSing : Pop Hits 10 v2.0 CTOP00 = StarSing : The Beatles Volume 2 v2.1 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 v2.0 CTUP00 = StarSing : Rihanna v2.0 CTVP00 = StarSing : Lady GaGa v1.1 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CTZP00 = StarSing : Volume 3 v1.0 CU0P00 = StarSing : Retro Volume 3 v1.0 CU1P00 = StarSing : Girls v1.0 CU2P00 = StarSing : Volume 4 v1.1 CU3P00 = StarSing : Retro Volume 4 v1.1 CU4P00 = StarSing : Retro Volume 5 v1.0 CU5P00 = StarSing : International Volume 4 v1.0 CU6P00 = StarSing : Volume 5 v1.0 CU7P00 = StarSing : Retro Volume 6 v1.0 CU8P00 = StarSing : Volume 6 v1.0 CU9P00 = StarSing : Volume 7 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 = B.L.I.N.D. 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 = WAD Batch Installer 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: Scorched Earth 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 = Monthly Nintendo Shop Demo - 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: A Hard Days Night 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 DBSBT3 = Dragon Ball Budokai Tenkaichi 3 Version Latino 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. Brawl: 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 DN6A = Not64 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 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 DTZJ08 = Takarajima Z Barbaros' Treasure (Demo) 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 DWEJA4 = Winning Eleven PLAY MAKER 2008 (Demo) 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 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 Shodown 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 Shodown EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen EAEP = Samurai Shodown 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 Shodown 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 EAZP = World Heroes Perfect EB2E = Real Bout Fatal Fury Special EB2J = Real Bout Garou Densetsu Special EB2P = Real Bout Fatal Fury Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB5P = 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 EBGP = 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 EBSP = The Path of the Warrior: Art of Fighting 3 EBTJ = Crossed Swords EBUE = 2020 Super Baseball EBUJ = Super Baseball 2020 EBUP = 2020 Super Baseball 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 ECAP = Real Bout Fatal Fury 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECCP = 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 ECGP = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECHP = The King of Fighters '98 ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECIP = 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 II 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 III 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 JingÌ„ji SaburÌ„: Shinjuku Ch̄̄ KÌ„en 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 FERP = Zoda’s Revenge: StarTropics II 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 FF5P = Double Dragon II: 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 G2DJB2 = Digimon Battle Chronicle 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 & 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 G2XJ8P = Sonic Gems Collection G2XP8P = Sonic Gems Collection G3AD69 = The Lord of the Rings: The Third Age G3AE69 = The Lord of the Rings: The Third Age G3AF69 = The Lord of the Rings: The Third Age G3AP69 = The Lord of the Rings: The Third Age G3AS69 = The 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 G96P01 = Interactive Multi-Game Demo Disc - November 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 G9RJ7D = Crash Bandicoot Gacchanko World 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 GA3J51 = 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 GAZJ13 = Harry Potter to Azkaban no Shuujin 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 GBMJ7F = 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 GBRJ18 = Bloody Roar Extreme GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSJ8P = Beach Spikers: Virtua Beach Volleyball GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTJA7 = Bakuten Shoot Beyblade 2002: Nettou! Magne Tag 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 = Pokémon Colosseum GC6P01 = Pokémon Colosseum GC7PNK = Cocoto Platform Jumper GC8JA4 = Crash Bandicoot: Bakusou! Nitro Kart GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBJA4 = Crash Bandicoot 4: Sakuretsu! Majin Power 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 Complete 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 GCTJ8P = 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 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 Arena 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 = 007: Everything or Nothing GENF69 = James Bond 007: Everything or Nothing GENP69 = James Bond 007: Everything Or Nothing GENS69 = James Bond 007: Everything or Nothing GEOE08 = Capcom vs. SNK 2 EO GEOJ08 = Capcom vs. SNK 2 EO: Millionaire Fighting 2001 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 GEZJ8P = 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 GF4I52 = Fantastic 4 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 GFIJ13 = 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 GG4J08 = 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 GH4J13 = Harry Potter to Honoo no Goblet 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 GHLJ13 = Harry Potter to Kenja no Ishi GHLJ69 = Harry Potter to Kenja no Ishi GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Philosopher'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 GHSJ13 = Harry Potter to Himitsu no Heya 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 GJND78 = Jimmy Neutron: Boy Genius 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 = The Lord of the Rings: The Return of the King GKLE69 = The Lord of the Rings: The Return of the King GKLF69 = Lord of the Rings: The Return of the King GKLI69 = The Lord of the Rings: The Return of the King GKLJ69 = The Lord of the Rings: The Return of the King GKLP69 = The Lord of the Rings: The Return of the King GKLS69 = The 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's Airride GKYP01 = Kirby Air Ride GKZD54 = Codename: Kids Next Door - Operation: V.I.D.E.O.G.A.M.E. 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 = The Lord of the Rings: The Two Towers GLOE69 = The Lord of the Rings: The Two Towers GLOF69 = The Lord of the Rings: The Two Towers GLOI69 = The Lord of the Rings: The Two Towers GLOP69 = The 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 Hoffman's 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 GOTJB2 = One Piece: Treasure Battle! 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 GQ4D78 = SpongeBob SquarePants: Creature from the Krusty Krab 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 GQCI52 = 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 GRJPAF = R: Racing Evolution 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 GSMJ08 = Spider-Man: The Movie 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 Squadron II: Rogue Leader GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = Star Wars Rogue Squadron II GSWP64 = Star Wars Rogue Squadron II: Rogue Leader 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 GVS32E = Virtua Striker 3 Ver. 2002 GVS32J = Virtua Striker 3 Ver.2002 (Triforce) GVS45E = Virtua Striker 4 GVS45J = Virtua Striker 4 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 = James Bond 007 in 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 GWEJ51 = 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 GX2E01 = Pokemon XG: Next Gen 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 = Pokémon 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 HADE = Internet Channel HADJ = Internet Channel HADP = Internet Channel HAFE = Forecast Channel HAFJ = Forecast Channel HAFP = Forecast 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 no Tomo Channel G Guide for Wii HBWE01 = New Super Mario Bros. Wii: Hellboy Edition HC3J = USB Flash Optimization HC4E = Crunchyroll HC4P = Crunchyroll 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 HCFJ = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Wii Speak Channel HCGE = Wii + Internet HCGJ = Wii + Internet HCGP = Wii + Internet HCHJ = Demae Channel HCIJ = Wii no Ma HCJP = BBC iPlayer Channel HCLE = Netflix HCLP = Netflix HCMP = Kirby TV Channel 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 JCNP = 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 E.D.F.: 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 JDNP = 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 = KyÌ„yaku Megami Tensei: Megami Tensei I・II JODI = Homebrew Channel JOUE01 = New Super Mario Bros. Wii 10 The Journey KLSEXJ = The Last Story (NTSC-U, Japanese Audio) 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 MB3L = 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 MK7P41 = Mario Kart 7 Wii 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 = Pokémon 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 NTLC = Super Mario 64 Multiplayer 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 = Pokémon 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 PGPJB2 = SD Gundam Trial 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: KÌ„kÌ„ YakyÌ„ 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 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 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 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 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 R7FEUD = Final Fantasy Fables: Chocobo's Dungeon Undub 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! R7MPFR = Musiic Party: Rock the House 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) 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 = Sugoro Chronicle: Migite ni Ken o Hidarite ni Saikoro o 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 RDXE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino Beta 3 RDXJ18 = Deca Sporta RDXKA4 = ë°ì¹´ìФí¬ë¥´íƒ€ Wii로 ì¦ê¸°ëŠ” 스í¬ì¸  RDXP18 = Sports Island RDYEGN = CID: The Dummy RDZE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino 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 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 = 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 RFEPUD = Fire Emblem: Radian Dawn Undub 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 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 RFNE = Wii Fit Channel 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 RFPE = Wii Fit Plus Channel 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 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 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 RGWX = Rabbids Channel RGXE5D = Game Party RGXEFN = Guitar Hero III Custom: Meteo Last Custom RGXEWR = Game Party 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 RK2EUD = Trauma Center: New Blood Undub 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 RKDEUD = Trauma Center: Second Opinion Undub RKDJEB = Trauma Center: Second Opinion RKDJG9 = Kamen Rider: Climax Heroes W RKDP01 = 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 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 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 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) RMCE = Mario Kart Channel RMCJ01 = Mario Kart Wii RMCJ12 = Wiimms MKW Fun 2011-11 RMCJ30 = Wiimms MKW-Fun 2015-12.jap RMCJ31 = Wiimms MKW-Fun 2016-02.jap RMCJ32 = Wiimms MKW-Fun 2016-07.jap RMCJ33 = Wiimms MKW-Fun 2016-10.jap RMCJ34 = Wiimms MKW-Fun 2017-05.jap RMCJ64 = Peach Kart 8 RMCJ76 = Pro CT Pack RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCJL1 = Luma's CT Pack 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 RMCP27 = Wiimms MKW-Fun 2015-03.pal RMCP28 = Wiimms MKW Retro 2015-05.pal RMCP29 = Wiimms MKW-Fun 2015-08.pal RMCP30 = Wiimms MKW-Fun 2015-12.pal RMCP31 = Wiimms MKW-Fun 2016-02.pal RMCP32 = Wiimms MKW-Fun 2016-07.pal RMCP33 = Wiimms MKW-Fun 2016-10.pal RMCP34 = Wiimms MKW-Fun 2017-05.pal RMCP64 = Peach Kart 8 RMCP76 = Pro CT Pack RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCPL1 = Luma's CT Pack 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 RNEEUD = Naruto Shippuden: Clash of Ninja Revolution 3 Undub 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 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 = Ì„kami ROWJ08 = Ì„kami ROWP08 = Ì„kami 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 RPJEUD = Arc Rise Fantasia Undub 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 RR2XUG = Extreme Truck Racing 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 SaikyÌ„ 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 = Marlan Project M 3.6 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 2 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 RSBE43 = Super Smash Bros. Brawl: MASTERLINKX's Custom Pack RSBE44 = Super Smash Bros. Brawl: Shadow Version RSBE45 = Super Smash Bros. Brawl: Shock44's Custom Build RSBE46 = Super Smash Bros. Brawl: DragonD101's Texture Pack RSBE47 = Super Smash Bros. Brawl: XChosen1's Texture Pack RSBE49 = Super Smash Bros. Brawl: Water Block Edition RSBE50 = Super Smash Bros. Project U: Ultra Version RSBEAA = Marvel and Capcom vs Super Smash Bros. 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 RSBEDH = Super Smash Bros. Brawl Dark Hole/D.A.R.S. RSBEDT = Super Smash Bros. Ultimate Dark Phoenix: Tournament Edition RSBEN1 = Super Smash Bros. Project M RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBETE = Super Smash Bros. Legacy TE RSBEWM = Super Smash Bros. Project M Wi-Fi RSBEXP = Super Smash Bros. Legacy XP RSBJ01 = Dairantou Smash Brothers X RSBK01 = 대난투 스매시 브ë¼ë”스 RSBP01 = Super Smash Bros. Brawl RSBP02 = Master4Robin's Super Smash Bros. Brawl Hack Pack 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 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 RT4EUD = Tales of Symphonia: Dawn of the New World Undub 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 Le 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 = Wario Land 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 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 RYIPNK = SPRay RYJPTV = Princess Lillifee's Magic Fairy RYKEAF = We Ski & Snowboard RYKJAF = Family Ski: World Ski & Snowboard RYKKAF = 패밀리 스키 & 스노보드 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 S32DJW = The Voice of Germany: I Want You S32PJW = The Voice S32SJW = La Voz: Quiero tu voz S33DKM = Let's Sing 2017 - Mit Deutschen Hits! S33FKM = Let's Sing 2017 : Hits Français et Internationaux S33PKM = Let's Sing 2017 S33SKM = Let's Sing 9 - Spanish Version S3AE5G = Attack of the Movies 3D S3APGT = 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 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 S5DE41 = Just Dance Disney Party 2 S5DP41 = Just Dance Disney Party 2 S5KJAF = Taiko no Tatsujin Wii: Chou Goukaban S5MEVZ = Monster High: New Ghoul in School S5MPVZ = Monster High: New Ghoul in School S5PPAU = PSA World Tour Squash 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: 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 S7EE52 = Transformers: Ultimate Battle Edition 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 S7LPKM = Let's Sing @ Radio Italia 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 SAOEVZ = Monster High: Ghoul Spirit SAOP78 = Monster High: Ghoul Spirit SAOXVZ = 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 SB3EUD = Sengoku Basara: Samurai Heroes Undub 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 SCLE01 = Cliff Super Mario Bros. Wii SCLJ01 = Cliff Super Mario Bros. Wii SCLP01 = Cliff Super Mario Bros. Wii 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! SDEPGT = 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 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 Adventure 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 SDUEO1 = DU Super Mario Bros. : DU Edition 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 SERJ4Q = 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 SFEPYF = Fit Music 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 SFRE01 = Super Mario Bros. Frozen Edition SFRJ01 = Super Mario Bros. Frozen Edition SFRP01 = Super Mario Bros. Frozen Edition 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 SGBPGT = 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 SH9PNJ = 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 SIIK01 = 마리오와 소닉 ëŸ°ë˜ ì˜¬ë¦¼í”½ 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 v2.0 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 SJNE41 = Just Dance 2016 SJNP41 = Just Dance 2016 SJOE41 = Just Dance 2014 SJOP41 = Just Dance 2014 SJPE78 = Jeopardy! SJQEPZ = Jewel Quest Trilogy SJQPGR = Jewel Quest Trilogy SJREA4 = Def Jam Rapstar SJRPA4 = Def Jam Rapstar SJRXA4 = Def Jam Rapstar SJRYA4 = 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 SK3EUD = Trauma Team Undub SK4E52 = Shrek Forever After SK4P52 = Shrek Forever After SK5PY1 = Kylie Sing & Dance SK6KJD = ì¼€ì´íŒ 댄스 페스티벌 SK7EVZ = Disney Violetta: Rhythm & Music SK7PVZ = Disney Violetta: Rhythm & Music SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8I52 = 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 SKNE52 = Skylanders: SuperChargers Racing SKNP52 = Skylanders: SuperChargers Racing 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 SKYY52 = 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 SL2PUD = Project Zero 2: Wii Edition Undub SL3ENR = Dragon's Lair Trilogy SL4PAF = Los 40 Principales Karaoke Party SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = The Last Airbender SLAP78 = The Last Airbender SLAX78 = The Last Airbender: Special Edition SLAZ78 = The Last Airbender: Toys R Us Special Edition SLBE01 = MLG Super Luigi Bros Wii SLBJ01 = MLG Super Luigi Bros. Wii SLBP01 = MLG Super Luigi Bros. Wii 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 SLGEYG = Let's Sing 2016 SLGPKM = Let's Sing 2016 SLHEWR = LEGO Harry Potter: Years 5-7 SLHPWR = LEGO Harry Potter: Years 5-7 SLIE52 = Little League World Series Baseball: Double Play SLJPKM = Let's Sing 8 - Spanish Version SLKPKM = Let’s Sing 2016 : Hits Français SLLEWW = Lucha Libre AAA: Héroes del Ring SLMPWL = 40 Principales Karaoke Party Vol. 2 SLNP7M = The Voice 3 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 SMNE14 = New Super Mario Bros. Wii: Pain Coins SMNE15 = Newer Super Mario Bros. 7 SMNE20 = New Super Mario Bros. H SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE31 = New Super Mario Bros. Wii - Other World 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 SMNE44 = Go Go Mario SMNE45 = Lemmy's Winter Palace SMNE46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNE47 = The New Special Road SMNE48 = True Mario Bros. SMNE49 = New Super Mario Bros. Wii - MSMKW Pack SMNE50 = New Super Mario Bros. Wii - Power Tower Pack SMNE51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNE52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNE53 = New Super Mario Bros. Wii - Kid Edition SMNE54 = New Super Mario Bros. Wii - The Next Levels 2 SMNE55 = New Super Mario Bros. Wii - Lava Mod Pack SMNE56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNE57 = Mario's Big Adventure SMNE58 = Wario's Cave SMNE59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNE60 = Remixed Super Mario Bros. Wii SMNE61 = New Super Summer Vacation SMNE62 = New Super Bowser Wii SMNE65 = Ghostly Super Ghost Boos Wii SMNE66 = The Legend of Yoshi SMNE67 = Larsenv Super Mario Collection SMNE68 = The Legend of Yoshi DLC SMNE69 = Revised Super Mario Bros. Wii SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNERE = Retro Mario Bros. SMNERV = RVLution 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 SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZY = Super Mario Skyland 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 SMNJ14 = New Super Mario Bros. Wii: Pain Coins SMNJ15 = Newer Super Mario Bros. 7 SMNJ20 = New Super Mario Bros. H SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ31 = New Super Mario Bros. Wii - Other World 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 SMNJ44 = Go Go Mario SMNJ45 = Lemmy's Winter Palace SMNJ46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNJ47 = The New Special Road SMNJ48 = True Mario Bros. SMNJ49 = New Super Mario Bros. Wii - MSMKW Pack SMNJ50 = New Super Mario Bros. Wii - Power Tower Pack SMNJ51 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ53 = New Super Mario Bros. Wii - Kid Edition SMNJ54 = New Super Mario Bros. Wii - The Next Levels 2 SMNJ55 = New Super Mario Bros. Wii - Lava Mod Pack SMNJ56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNJ57 = Mario's Big Adventure SMNJ58 = Wario's Cave SMNJ59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNJ60 = Remixed Super Mario Bros. Wii SMNJ61 = New Super Summer Vacation SMNJ62 = New Super Bowser Wii SMNJ65 = Ghostly Super Ghost Boos Wii SMNJ66 = The Legend of Yoshi SMNJ67 = Larsenv Super Mario Collection SMNJ68 = The Legend of Yoshi DLC SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJRE = Retro Mario Bros. SMNJRV = RVLution 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 SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZY = Super Mario Skyland 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 SMNP14 = New Super Mario Bros. Wii: Pain Coins SMNP15 = Newer Super Mario Bros. 7 SMNP20 = New Super Mario Bros. H SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP31 = New Super Mario Bros. Wii - Other World 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 SMNP44 = Go Go Mario SMNP45 = Lemmy's Winter Palace SMNP46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNP47 = The New Special Road SMNP48 = True Mario Bros. SMNP49 = New Super Mario Bros. Wii - MSMKW Pack SMNP50 = New Super Mario Bros. Wii - Power Tower Pack SMNP51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNP52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNP53 = New Super Mario Bros. Wii - Kid Edition SMNP54 = New Super Mario Bros. Wii - The Next Levels 2 SMNP55 = New Super Mario Bros. Wii - Lava Mod Pack SMNP56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNP57 = Mario's Big Adventure SMNP58 = Wario's Cave SMNP59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNP60 = Remixed Super Mario Bros. Wii SMNP61 = New Super Summer Vacation SMNP62 = New Super Bowser Wii SMNP65 = Ghostly Super Ghost Boos Wii SMNP66 = The Legend of Yoshi SMNP67 = Larsenv Super Mario Collection SMNP68 = The Legend of Yoshi DLC SMNP77 = New Super Mario Bros. Wii Arcadia 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 SMNPO1 = New Super Mario Custom Edition SMNPRE = Retro Mario Bros. SMNPRV = RVLution 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 SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZY = Super Mario Skyland 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 SO3EUD = Rune Factory: Tides of Destiny Undub SO3J99 = Rune Factory: Oceans SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg 2 SOCE4Z = Deadliest Catch: Sea of Chaos SODPYK = The Explorer and the Mystery of the Diamond Scarab 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 SOME02 = Rhythm Heaven Fever Repainted 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 & 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 = Mama's 2-Pack SQKK01 = Mama's 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 SQWE52 = The Voice: I Want You 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 SROENS = Rodea the Sky Soldier SROJQC = Tenkuu no Kishi Rodea SROKQC = ì²œê³µì˜ ê¸°ì‚¬ 로ë°ì•„ SROPNS = Rodea the Sky Soldier 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 SSPJGD = 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 SSUPLR = 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 SVCPXT = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVEPAF = DreamWorks The Croods: Prehistoric Party! & Rise of the Guardians: Combo Pack 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 SVQEVZ = Barbie and Her Sisters: Puppy Rescue SVQPVZ = Barbie and Her Sisters: Puppy Rescue 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 SX3PUD = Pandora's Tower Undub 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 SX9PRV = The Voice Vol. 2 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 SY7PKM = Let's Sing 7 - Spanish Version 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 SZ7E41 = Just Dance 2017 SZ7P41 = Just Dance 2017 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: 20170813134812) 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 = TsÌ„shin 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 WFQE = Frogger: Hyper Arcade Edition 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: 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 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 WKJE = Karaoke Joysound 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 WMH1 = Mother 1+2+3 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 WN64 = Nintendo 64 Forwarder 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 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: Ikuzo! Arashi 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: Susume! Honoo 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 = Pokémon Rumble (Demo) XHAP = Pokémon 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-3.01a/share/titles-es.txt0000644000175000017500000110744713363642463015773 0ustar michaelmichael010E01 = Wii Backup Disc v1.31 301E01 = GameCube Service Disc 9XGX = SNES9XGX 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... CBIEE9 = Harvest Moon: Pride Parade 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 CGHE52 = Guitar Hero 2K16 (GH3 Modificado) 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.2 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.2 CS9PZZ = StarSing: Pop Hits 9 v1.0 CSAP00 = StarSing : '80s Volume 3 v2.2 CSAPZZ = StarSing: Best of Goldman v1.0 CSBP00 = StarSing : '90s Volume 2 v2.2 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 v2.0 CSFP00 = StarSing : Pop Hits 6 v2.0 CSGP00 = StarSing : Chansons Magiques de Disney v2.0 CSHP00 = StarSing : Volume 2 v1.0 CSIP00 = StarSing : Pop Hits 7 v2.0 CSJP00 = StarSing : Après-Ski Party v2.0 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 v2.0 CSVP00 = StarSing : The Beatles Volume 1 v2.0 CSWP00 = StarSing : Rocks! Volume 3 v2.0 CSXF00 = StarSing : Génériques TV v2.1 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.1 CT9P00 = StarSing : Pop Hits 9 v2.0 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.2 CTNP00 = StarSing : Pop Hits 10 v2.0 CTOP00 = StarSing : The Beatles Volume 2 v2.1 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 v2.0 CTUP00 = StarSing : Rihanna v2.0 CTVP00 = StarSing : Lady GaGa v1.1 CTWP00 = StarSing : '90s Volume 3 v1.0 CTXP00 = StarSing : Retro Volume 1 v1.0 CTYP00 = StarSing : Retro Volume 2 v1.0 CTZP00 = StarSing : Volume 3 v1.0 CU0P00 = StarSing : Retro Volume 3 v1.0 CU1P00 = StarSing : Girls v1.0 CU2P00 = StarSing : Volume 4 v1.1 CU3P00 = StarSing : Retro Volume 4 v1.1 CU4P00 = StarSing : Retro Volume 5 v1.0 CU5P00 = StarSing : International Volume 4 v1.0 CU6P00 = StarSing : Volume 5 v1.0 CU7P00 = StarSing : Retro Volume 6 v1.0 CU8P00 = StarSing : Volume 6 v1.0 CU9P00 = StarSing : Volume 7 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 = B.L.I.N.D. 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 = WAD Batch Installer 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: Scorched Earth 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 = Monthly Nintendo Shop Demo - 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: A Hard Days Night 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 DBSBT3 = Dragon Ball Budokai Tenkaichi 3 Version Latino 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. Brawl: 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 DN6A = Not64 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 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 DTZJ08 = Takarajima Z Barbaros' Treasure (Demo) 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 DWEJA4 = Winning Eleven PLAY MAKER 2008 (Demo) 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 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 Shodown 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 Shodown EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen EAEP = Samurai Shodown 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 Shodown 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 EAZP = World Heroes Perfect EB2E = Real Bout Fatal Fury Special EB2J = Real Bout Garou Densetsu Special EB2P = Real Bout Fatal Fury Special EB3J = Soccer Brawl EB4J = ASO II: Last Guardian EB5E = The Last Blade EB5J = The Last Blade EB5P = 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 EBGP = 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 EBSP = The Path of the Warrior: Art of Fighting 3 EBTJ = Crossed Swords EBUE = 2020 Super Baseball EBUJ = Super Baseball 2020 EBUP = 2020 Super Baseball 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 ECAP = Real Bout Fatal Fury 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECCP = 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 ECGP = Shock Troopers: 2nd Squad ECHE = The King of Fighters '98 ECHJ = The King of Fighters '98: Dream Match Never Ends ECHP = The King of Fighters '98 ECIE = Metal Slug 4 ECIJ = The King of Fighters '99 ECIP = 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 II 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 III 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 JingÌ„ji SaburÌ„: Shinjuku Ch̄̄ KÌ„en 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 FERP = Zoda’s Revenge: StarTropics II 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 FF5P = Double Dragon II: 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 G2DJB2 = Digimon Battle Chronicle 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 & 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 G2XJ8P = Sonic Gems Collection G2XP8P = Sonic Gems Collection G3AD69 = The Lord of the Rings: The Third Age G3AE69 = The Lord of the Rings: The Third Age G3AF69 = The Lord of the Rings: The Third Age G3AP69 = The 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 G96P01 = Interactive Multi-Game Demo Disc - November 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 G9RJ7D = Crash Bandicoot Gacchanko World 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 GA3J51 = 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 GAZJ13 = Harry Potter to Azkaban no Shuujin 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 GBMJ7F = 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 GBRJ18 = Bloody Roar Extreme GBSE8P = Beach Spikers: Virtua Beach Volleyball GBSJ8P = Beach Spikers: Virtua Beach Volleyball GBSP8P = Beach Spikers: Virtua Beach Volleyball GBTE70 = Beyblade VForce - Super Tournament Battle GBTJA7 = Bakuten Shoot Beyblade 2002: Nettou! Magne Tag 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 = Pokémon Colosseum GC6P01 = Pokémon Colosseum GC7PNK = Cocoto Platform Jumper GC8JA4 = Crash Bandicoot: Bakusou! Nitro Kart GC9P6S = Conan GCAE5H = Cubix: Robots for Everyone Showdown GCBE7D = Crash Bandicoot: The Wrath of Cortex GCBJA4 = Crash Bandicoot 4: Sakuretsu! Majin Power 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 Complete 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 GCTJ8P = 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 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 Arena 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 = 007: Everything or Nothing GENF69 = James Bond 007: Everything or Nothing GENP69 = James Bond 007: Everything Or Nothing GENS69 = 007: Todo o Nada GEOE08 = Capcom vs. SNK 2 EO GEOJ08 = Capcom vs. SNK 2 EO: Millionaire Fighting 2001 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 GEZJ8P = 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 GF4I52 = Fantastic 4 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 GFIJ13 = 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 GG4J08 = 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 GH4J13 = Harry Potter to Honoo no Goblet 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 GHLJ13 = Harry Potter to Kenja no Ishi GHLJ69 = Harry Potter to Kenja no Ishi GHLP69 = Harry Potter and the Philosopher's Stone GHLX69 = Harry Potter and the Philosopher'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 GHSJ13 = Harry Potter to Himitsu no Heya 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 GJND78 = Jimmy Neutron: Boy Genius 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 = The Lord of the Rings: The Return of the King GKLE69 = The Lord of the Rings: The Return of the King GKLF69 = Lord of the Rings: The Return of the King GKLI69 = The Lord of the Rings: The Return of the King GKLJ69 = The Lord of the Rings: The Return of the King GKLP69 = The 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's Airride GKYP01 = Kirby Air Ride GKZD54 = Codename: Kids Next Door - Operation: V.I.D.E.O.G.A.M.E. 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 = The Lord of the Rings: The Two Towers GLOE69 = The Lord of the Rings: The Two Towers GLOF69 = The Lord of the Rings: The Two Towers GLOI69 = The Lord of the Rings: The Two Towers GLOP69 = The 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 Hoffman's 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 GOTJB2 = One Piece: Treasure Battle! 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 GQ4D78 = SpongeBob SquarePants: Creature from the Krusty Krab 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 GQCI52 = 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 GRJPAF = R: Racing Evolution 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 GSMJ08 = Spider-Man: The Movie 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 Squadron II: Rogue Leader GSWI64 = Star Wars Rogue Squadron II: Rogue Leader GSWJ64 = Star Wars Rogue Squadron II GSWP64 = Star Wars Rogue Squadron II: Rogue Leader 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 GVS32E = Virtua Striker 3 Ver. 2002 GVS32J = Virtua Striker 3 Ver.2002 (Triforce) GVS45E = Virtua Striker 4 GVS45J = Virtua Striker 4 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 = James Bond 007 in 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 GWEJ51 = 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 GX2E01 = Pokemon XG: Next Gen 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 = Pokémon 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 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 no Tomo Channel G Guide for Wii HBWE01 = Nuevo Super Mario Bros. Wii: Edición Hellboy HC3J = USB Flash Optimization HC4E = Crunchyroll HC4P = Crunchyroll 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 HCFJ = Wii Speak Channel HCFK = Wii Speak Channel HCFP = Wii Speak Channel HCGE = Wii + Internet HCGJ = Wii + Internet HCGP = Wii + Internet HCHJ = Demae Channel HCIJ = Wii no Ma HCJP = Canal BBC iPlayer HCLE = Netflix HCLP = Netflix HCMP = Kirby TV Channel 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 JCNP = 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 E.D.F.: 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 JDNP = 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 = KyÌ„yaku Megami Tensei: Megami Tensei I・II JODI = Canal Homebrew JOUE01 = New Super Mario Bros. Wii 10 The Journey KLSEXJ = The Last Story (NTSC-U, Japanese Audio) 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 MB3L = 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 MK7P41 = Mario Kart 7 Wii 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 = Pokémon 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 NTLC = Super Mario 64 Multiplayer 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 = Pokémon 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 PGPJB2 = SD Gundam Trial 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: KÌ„kÌ„ YakyÌ„ 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 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 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 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 R7FEUD = Final Fantasy Fables: Chocobo's Dungeon Undub 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! R7MPFR = Musiic Party: Rock the House 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) 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 = Sugoro Chronicle: Migite ni Ken o Hidarite ni Saikoro o 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 RDXE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino Beta 3 RDXJ18 = Deca Sporta RDXKA4 = Deca Sporta RDXP18 = Sports Island RDYEGN = CID: The Dummy RDZE70 = Dragon Ball Z Budokai Tenkaichi 3 Version! Latino 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 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 = 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 RFEPUD = Fire Emblem: Radian Dawn Undub 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 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 RFNE = Wii Fit Channel 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 RFPE = Wii Fit Plus Channel 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 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 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!!! RGWX = Rabbids Channel RGXE5D = Game Party RGXEFN = Guitar Hero III Custom: Meteo Last Custom RGXEWR = Game Party 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 RK2EUD = Trauma Center: New Blood Undub 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 RKDEUD = Trauma Center: Second Opinion Undub RKDJEB = Trauma Center: Second Opinion RKDJG9 = Kamen Rider: Climax Heroes W RKDP01 = 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 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 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 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) RMCE = Mario Kart Channel RMCJ01 = Mario Kart Wii RMCJ12 = Wiimms MKW Fun 2011-11 RMCJ30 = Wiimms MKW-Fun 2015-12.jap RMCJ31 = Wiimms MKW-Fun 2016-02.jap RMCJ32 = Wiimms MKW-Fun 2016-07.jap RMCJ33 = Wiimms MKW-Fun 2016-10.jap RMCJ34 = Wiimms MKW-Fun 2017-05.jap RMCJ64 = Peach Kart 8 RMCJ76 = Pro CT Pack RMCJ93 = MKW Hack Pack RMCJA1 = Mario Kart Adventures v0.8 RMCJCT = Mario Kart Wii CTGP Revolution RMCJL1 = Luma's CT Pack 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 RMCP27 = Wiimms MKW-Fun 2015-03.pal RMCP28 = Wiimms MKW Retro 2015-05.pal RMCP29 = Wiimms MKW-Fun 2015-08.pal RMCP30 = Wiimms MKW-Fun 2015-12.pal RMCP31 = Wiimms MKW-Fun 2016-02.pal RMCP32 = Wiimms MKW-Fun 2016-07.pal RMCP33 = Wiimms MKW-Fun 2016-10.pal RMCP34 = Wiimms MKW-Fun 2017-05.pal RMCP64 = Peach Kart 8 RMCP76 = Pro CT Pack RMCP93 = MKW Hack Pack RMCPA1 = Mario Kart Adventures v0.8 RMCPGP = Mario Kart CTGP Revolution RMCPL1 = Luma's CT Pack 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 RNEEUD = Naruto Shippuden: Clash of Ninja Revolution 3 Undub 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 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 = Ì„kami ROWJ08 = Ì„kami ROWP08 = Ì„kami 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 RPJEUD = Arc Rise Fantasia Undub 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 RR2XUG = Extreme Truck Racing 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 = Family Games: 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 SaikyÌ„ 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 = Marlan Project M 3.6 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 2 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 RSBE43 = Super Smash Bros. Brawl: MASTERLINKX's Custom Pack RSBE44 = Super Smash Bros. Brawl: Shadow Version RSBE45 = Super Smash Bros. Brawl: Shock44's Custom Build RSBE46 = Super Smash Bros. Brawl: DragonD101's Texture Pack RSBE47 = Super Smash Bros. Brawl: XChosen1's Texture Pack RSBE49 = Super Smash Bros. Brawl: Water Block Edition RSBE50 = Super Smash Bros. Project U: Ultra Version RSBEAA = Marvel and Capcom vs Super Smash Bros. 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 RSBEDH = Super Smash Bros. Brawl Dark Hole/D.A.R.S. RSBEDT = Super Smash Bros. Ultimate Dark Phoenix: Tournament Edition RSBEN1 = Super Smash Bros. Project M RSBEPM = Super Smash Bros. Project M RSBEPW = Super Smash Bros. Project M Wi-Fi RSBETE = Super Smash Bros. Legacy TE RSBEWM = Super Smash Bros. Project M Wi-Fi RSBEXP = Super Smash Bros. Legacy XP RSBJ01 = Dairantou Smash Brothers X RSBK01 = Dairantou Smash Brothers X RSBP01 = Super Smash Bros. Brawl RSBP02 = Master4Robin's Super Smash Bros. Brawl Hack Pack 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 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 RT4EUD = Tales of Symphonia: Dawn of the New World Undub 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 Golf 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 Le 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 = Wario Land 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 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 RYIPNK = Spray RYJPTV = Princess Lillifee's Magic Fairy RYKEAF = We Ski & Snowboard RYKJAF = Family Ski: World Ski & Snowboard RYKKAF = We 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 S32DJW = The Voice of Germany: I Want You S32PJW = The Voice S32SJW = La Voz: Quiero tu voz S33DKM = Let's Sing 2017 - Mit Deutschen Hits! S33FKM = Let's Sing 2017 : Hits Français et Internationaux S33PKM = Let's Sing 2017 S33SKM = Let's Sing 9 - Versión Española S3AE5G = Attack of the Movies 3D S3APGT = 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 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 S5DE41 = Just Dance Disney Party 2 S5DP41 = Just Dance Disney Party 2 S5KJAF = Taiko no Tatsujin Wii: Chou Goukaban S5MEVZ = Monster High: New Ghoul in School S5MPVZ = Monster High: La Nueva Chica Del Insti S5PPAU = PSA World Tour Squash 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 Batman 2: DC Super Heroes 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 S7EE52 = Transformers: Ultimate Battle Edition 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 S7LPKM = Let's Sing @ Radio Italia 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 = Alicia en el País de las Maravillas 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 SAOEVZ = Monster High: Ghoul Spirit SAOP78 = Monster High: Instituto Monstruoso SAOXVZ = 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 SB3EUD = Sengoku Basara: Samurai Heroes Undub 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 SCLE01 = Cliff Super Mario Bros. Wii SCLJ01 = Cliff Super Mario Bros. Wii SCLP01 = Cliff Super Mario Bros. Wii 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! SDEPGT = Dance Sensation! SDFE4Q = Disney Sing It: Family Hits SDFP4Q = Disney Sing It: Éxitos de película SDGE4Q = Disney Channel: All Star Party SDGP4Q = Disney Channel: All Star Party 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 SDUEO1 = DU Super Mario Bros.: DU Edition 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 SERJ4Q = Disney Epic Mickey 2: The Power of Two 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 SFEPYF = Fit Music 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 SFRE01 = Super Mario Bros. Frozen Edition SFRJ01 = Super Mario Bros. Frozen Edition SFRP01 = Super Mario Bros. Frozen Edition 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 SGBPGT = 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 SH9PNJ = 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 SIIK01 = Mario & Sonic at the London 2012 Olympic Games 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 v2.0 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 SJNE41 = Just Dance 2016 SJNP41 = Just Dance 2016 SJOE41 = Just Dance 2014 SJOP41 = Just Dance 2014 SJPE78 = Jeopardy! SJQEPZ = Jewel Quest Trilogy SJQPGR = Jewel Quest Trilogy SJREA4 = Def Jam Rapstar SJRPA4 = Def Jam Rapstar SJRXA4 = Def Jam Rapstar SJRYA4 = 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 SK3EUD = Trauma Team Undub SK4E52 = Shrek: Felices Para Siempre SK4P52 = Shrek: Felices Para Siempre SK5PY1 = Kylie Sing & Dance SK6KJD = K-POP Dance Festival SK7EVZ = Disney Violetta: Ritmo & Música SK7PVZ = Disney Violetta: Ritmo & Música SK8D52 = Skylanders: Trap Team SK8E52 = Skylanders: Trap Team SK8I52 = 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 SKNE52 = Skylanders: SuperChargers Racing SKNP52 = Skylanders: SuperChargers Racing 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 SKYY52 = 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 SL2PUD = Project Zero 2: Wii Edition Undub SL3ENR = Dragon's Lair Trilogy SL4PAF = Los 40 Principales Karaoke Party SL6PGN = Everyone Sing SL8K01 = Wii Sports + Wii Sports Resort SLAE78 = Airbender: El Último Guerrero SLAP78 = Airbender: El Último Guerrero SLAX78 = Airbender: El Último Guerrero (Edición Especial) SLAZ78 = Airbender: El Último Guerrero (Edición Especial Toys R Us) SLBE01 = MLG Super Luigi Bros Wii SLBJ01 = MLG Super Luigi Bros. Wii SLBP01 = MLG Super Luigi Bros. Wii 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 SLGEYG = Let's Sing 2016 SLGPKM = Let's Sing 2016 SLHEWR = LEGO Harry Potter: Años 5-7 SLHPWR = LEGO Harry Potter: Años 5-7 SLIE52 = Little League World Series Baseball: Double Play SLJPKM = Let's Sing 8 - Versión Española SLKPKM = Let’s Sing 2016 : Hits Français SLLEWW = Lucha Libre AAA: Héroes del Ring SLMPWL = 40 Principales Karaoke Party Vol. 2 SLNP7M = La Voz 3 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 SMNE14 = New Super Mario Bros. Wii: Pain Coins SMNE15 = Newer Super Mario Bros. 7 SMNE20 = New Super Mario Bros. H SMNE23 = Newer Super Mario Bros. Wii: Falling Leaves SMNE31 = New Super Mario Bros. Wii - Other World 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 SMNE44 = Go Go Mario SMNE45 = Lemmy's Winter Palace SMNE46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNE47 = The New Special Road SMNE48 = True Mario Bros. SMNE49 = New Super Mario Bros. Wii - MSMKW Pack SMNE50 = New Super Mario Bros. Wii - Power Tower Pack SMNE51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNE52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNE53 = New Super Mario Bros. Wii - Kid Edition SMNE54 = New Super Mario Bros. Wii - The Next Levels 2 SMNE55 = New Super Mario Bros. Wii - Lava Mod Pack SMNE56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNE57 = Mario's Big Adventure SMNE58 = Wario's Cave SMNE59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNE60 = Remixed Super Mario Bros. Wii SMNE61 = New Super Summer Vacation SMNE62 = New Super Bowser Wii SMNE65 = Ghostly Super Ghost Boos Wii SMNE66 = The Legend of Yoshi SMNE67 = Larsenv Super Mario Collection SMNE68 = The Legend of Yoshi DLC SMNE69 = Revised Super Mario Bros. Wii SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii Dark Moon SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNERE = Retro Mario Bros. SMNERV = RVLution 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 SMNEZA = Newer Apocalypse SMNEZC = Challenging Super Mario Bros. Wii: Virtual Special SMNEZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNEZN = Mario and the Glow Blocks SMNEZO = Ludwig's Hotel SMNEZP = The Pit of 100 Trials 1-20 SMNEZT = Captain Bowser's Revenge SMNEZU = Duck Tales 3 SMNEZV = Release Super Mario Bros. Wii SMNEZW = Depot Super Mario Bros. Wii SMNEZY = Super Mario Skyland 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 SMNJ14 = New Super Mario Bros. Wii: Pain Coins SMNJ15 = Newer Super Mario Bros. 7 SMNJ20 = New Super Mario Bros. H SMNJ23 = Newer Super Mario Bros. Wii: Falling Leaves SMNJ31 = New Super Mario Bros. Wii - Other World 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 SMNJ44 = Go Go Mario SMNJ45 = Lemmy's Winter Palace SMNJ46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNJ47 = The New Special Road SMNJ48 = True Mario Bros. SMNJ49 = New Super Mario Bros. Wii - MSMKW Pack SMNJ50 = New Super Mario Bros. Wii - Power Tower Pack SMNJ51 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNJ53 = New Super Mario Bros. Wii - Kid Edition SMNJ54 = New Super Mario Bros. Wii - The Next Levels 2 SMNJ55 = New Super Mario Bros. Wii - Lava Mod Pack SMNJ56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNJ57 = Mario's Big Adventure SMNJ58 = Wario's Cave SMNJ59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNJ60 = Remixed Super Mario Bros. Wii SMNJ61 = New Super Summer Vacation SMNJ62 = New Super Bowser Wii SMNJ65 = Ghostly Super Ghost Boos Wii SMNJ66 = The Legend of Yoshi SMNJ67 = Larsenv Super Mario Collection SMNJ68 = The Legend of Yoshi DLC SMNJLL = Newer Super Luigi Wii SMNJLM = Newer Super Luigi Wii Dark Moon SMNJMI = Midi's Super Mario Bros. Wii Just A Little Adventure SMNJRE = Retro Mario Bros. SMNJRV = RVLution 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 SMNJZA = Newer Apocalypse SMNJZC = Challenging Super Mario Bros. Wii: Virtual Special SMNJZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNJZN = Mario and the Glow Blocks SMNJZO = Ludwig's Hotel SMNJZP = The Pit of 100 Trials 1-20 SMNJZT = Captain Bowser's Revenge SMNJZU = Duck Tales 3 SMNJZV = Release Super Mario Bros. Wii SMNJZW = Depot Super Mario Bros. Wii SMNJZY = Super Mario Skyland 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 SMNP14 = New Super Mario Bros. Wii: Pain Coins SMNP15 = Newer Super Mario Bros. 7 SMNP20 = New Super Mario Bros. H SMNP23 = Newer Super Mario Bros. Wii: Falling Leaves SMNP31 = New Super Mario Bros. Wii - Other World 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 SMNP44 = Go Go Mario SMNP45 = Lemmy's Winter Palace SMNP46 = New Super Mario Bros. Wii - Birthday Batch of Levels SMNP47 = The New Special Road SMNP48 = True Mario Bros. SMNP49 = New Super Mario Bros. Wii - MSMKW Pack SMNP50 = New Super Mario Bros. Wii - Power Tower Pack SMNP51 = New Super Mario Bros. Wii - The Depot Level Pack Part 1 SMNP52 = New Super Mario Bros. Wii - The Depot Level Pack Part 2 SMNP53 = New Super Mario Bros. Wii - Kid Edition SMNP54 = New Super Mario Bros. Wii - The Next Levels 2 SMNP55 = New Super Mario Bros. Wii - Lava Mod Pack SMNP56 = New Super Mario Bros. Wii - The Depot Level Pack Part 3 SMNP57 = Mario's Big Adventure SMNP58 = Wario's Cave SMNP59 = New Super Mario Bros. Wii - Quenry17's Level Pack SMNP60 = Remixed Super Mario Bros. Wii SMNP61 = New Super Summer Vacation SMNP62 = New Super Bowser Wii SMNP65 = Ghostly Super Ghost Boos Wii SMNP66 = The Legend of Yoshi SMNP67 = Larsenv Super Mario Collection SMNP68 = The Legend of Yoshi DLC SMNP77 = New Super Mario Bros. Wii Arcadia 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 SMNPO1 = New Super Mario Custom Edition SMNPRE = Retro Mario Bros. SMNPRV = RVLution 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 SMNPZA = Newer Apocalypse SMNPZC = Challenging Super Mario Bros. Wii: Virtual Special SMNPZD = Depot Super Mario Bros. Wii 2: The Lost Levels SMNPZN = Mario and the Glow Blocks SMNPZO = Ludwig's Hotel SMNPZP = The Pit of 100 Trials 1-20 SMNPZT = Captain Bowser's Revenge SMNPZU = Duck Tales 3 SMNPZV = Release Super Mario Bros. Wii SMNPZW = Depot Super Mario Bros. Wii SMNPZY = Super Mario Skyland 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 SO3EUD = Rune Factory: Tides of Destiny Undub SO3J99 = Rune Factory: Oceans SOAE52 = Cabela's Hunting Expeditions SOBD7K = Bibi Blocksberg 2 SOCE4Z = Deadliest Catch: Sea of Chaos SODPYK = The Explorer and the Mystery of the Diamond Scarab 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 SOME02 = Rhythm Heaven Fever Repainted SOMJ01 = Minna no Rhythm Tengoku SOMK01 = Rhythm World 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 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 & 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 = Mama's 2-Pack SQKK01 = Mama's 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 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 SQWE52 = The Voice: I Want You 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 SROENS = Rodea the Sky Soldier SROJQC = Tenkuu no Kishi Rodea SROKQC = Rodea the Sky Soldier SROPNS = Rodea the Sky Soldier 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 SSPJGD = 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 SSUPLR = 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 SVCPXT = Big Time Rush: Dance Party SVDE52 = SpongeBob SquarePants: Plankton's Robotic Revenge SVDP52 = Bob Esponja: La Venganza de Plankton SVEPAF = DreamWorks The Croods: Prehistoric Party! & Rise of the Guardians: Combo Pack 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 SVQEVZ = Barbie and Her Sisters: Puppy Rescue SVQPVZ = Barbie y sus hermanas: Refugio para cachorros 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 SX3PUD = Pandora's Tower Undub 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 SX9PRV = La Voz Vol. 2 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 SY7PKM = Let's Sing 7 - Versión Española 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 SZ7E41 = Just Dance 2017 SZ7P41 = Just Dance 2017 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: 20170813125908) 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 = TsÌ„shin 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 WFQE = Frogger: Hyper Arcade Edition 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 WKJE = Karaoke Joysound 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 WMH1 = Mother 1+2+3 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 WN64 = Nintendo 64 Forwarder 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 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: Ikuzo! Arashi 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: Susume! Honoo 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 = Pokémon Rumble (Demo) XHAP = Pokémon 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-3.01a/edit-list/0000755000175000017500000000000013363642463014077 5ustar michaelmichaelwit-3.01a/edit-list/wfuse.edit-list0000644000175000017500000000015613363642463017052 0ustar michaelmichael../src/wfuse.c ; ../src/wit.c ; ../src/wwt.c ; @+all-source.edit-list @+doc.edit-list -y 100 ../src/wfuse.c ; wit-3.01a/edit-list/match-pattern.edit-list0000644000175000017500000000011013363642463020456 0ustar michaelmichael../src/match-pattern.[ch] ; ../src/titles.[ch] ; @+all-source.edit-list wit-3.01a/edit-list/lib-wbfs-h.edit-list0000644000175000017500000000013213363642463017645 0ustar michaelmichael../src/libwbfs/*.h ; ../src/libwbfs/*.c ; ../src/libwbfs/*.txt ; @iso-interface.edit-list wit-3.01a/edit-list/titles.edit-list0000644000175000017500000000010313363642463017215 0ustar michaelmichael../src/titles.[ch] ; @+all-source.edit-list -y 305 ../src/titles.c wit-3.01a/edit-list/lib-wbfs.edit-list0000644000175000017500000000026213363642463017424 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-3.01a/edit-list/iso-interface.edit-list0000644000175000017500000000044113363642463020446 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-3.01a/edit-list/debug.edit-list0000644000175000017500000000013113363642463017000 0ustar michaelmichael../src/debug.[ch] ; @lib-std.edit-list -y 160 ../src/debug.c ; -y 343 ../src/debug.h ; wit-3.01a/edit-list/+templates.edit-list0000644000175000017500000000003413363642463017765 0ustar michaelmichael../templates/*.{txt,h,sh} ; wit-3.01a/edit-list/+all.edit-list0000644000175000017500000000022413363642463016540 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-3.01a/edit-list/wwt.edit-list0000644000175000017500000000021213363642463016533 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-3.01a/edit-list/wit.edit-list0000644000175000017500000000036313363642463016524 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-3.01a/edit-list/wtest.edit-list0000644000175000017500000000031313363642463017062 0ustar michaelmichael../src/wtest.c ; ../src/libwbfs/wiidisc.[ch] ; ../src/lib-std.c ; ../work/wtest+.c ; @+all-source.edit-list -y 630 ../src/wtest.c ; -y 2216 ../src/libwbfs/wiidisc.c ; -y 1 ../src/libwbfs/wiidisc.h ; wit-3.01a/edit-list/+all-source-no-dclib.edit-list0000644000175000017500000000045713363642463021533 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-3.01a/edit-list/lib-ciso.edit-list0000644000175000017500000000027413363642463017423 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-3.01a/edit-list/error.edit-list0000644000175000017500000000016513363642463017052 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-3.01a/edit-list/cert.edit-list0000644000175000017500000000015013363642463016650 0ustar michaelmichael../src/libwbfs/cert.[ch] ; @wiidisc.edit-list -y 300 ../src/libwbfs/cert.c -y 100 ../src/libwbfs/cert.h wit-3.01a/edit-list/+editlists.edit-list0000644000175000017500000000001613363642463017773 0ustar michaelmichael*.edit-list ; wit-3.01a/edit-list/lib-std.edit-list0000644000175000017500000000033113363642463017252 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-3.01a/edit-list/wbfs-interface.edit-list0000644000175000017500000000035713363642463020623 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-3.01a/edit-list/wiidisc.edit-list0000644000175000017500000000037313363642463017355 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-3.01a/edit-list/test-libwbfs.edit-list0000644000175000017500000000011613363642463020322 0ustar michaelmichael../test-libwbfs/*.[ch] ; @lib-wbfs-only.edit-list ../test-libwbfs/Mafefile. ; wit-3.01a/edit-list/trace.edit-list0000644000175000017500000000002013363642463017005 0ustar michaelmichael../_trace-*.tmp wit-3.01a/edit-list/lib-wia.edit-list0000755000175000017500000000026513363642463017251 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-3.01a/edit-list/lib-lzma.edit-list0000644000175000017500000000035113363642463017425 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-3.01a/edit-list/lib-wbfs-only.edit-list0000644000175000017500000000031113363642463020376 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-3.01a/edit-list/file-formats.edit-list0000644000175000017500000000041013363642463020302 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-3.01a/edit-list/crypt-only.edit-list0000644000175000017500000000005213363642463020034 0ustar michaelmichael../src/crypt.h ; ../src/crypto/*.[chsS] ; wit-3.01a/edit-list/lib-bzip2.edit-list0000644000175000017500000000022713363642463017512 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-3.01a/edit-list/doc-forum.edit-list0000644000175000017500000000002713363642463017611 0ustar michaelmichael../templates/*.forum ; wit-3.01a/edit-list/+text-files.edit-list0000644000175000017500000000011013363642463020046 0ustar michaelmichael../text-files/*.inc ; ../text-files/*.inc/*.inc ; ../gen-text-file.sh ; wit-3.01a/edit-list/+doc.edit-list0000644000175000017500000000042413363642463016537 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-3.01a/edit-list/+scripts.edit-list0000644000175000017500000000006213363642463017457 0ustar michaelmichael../*.sh ; ../{templates,scripts,src,setup}/&/*.sh wit-3.01a/edit-list/lib-sf.edit-list0000644000175000017500000000027213363642463017074 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-3.01a/edit-list/+makefiles.edit-list0000644000175000017500000000027213363642463017733 0ustar michaelmichael../work/Makefile.user ; ../Makefile. ; ../Makefile.* ; ../src/*/Makefile ; ../makefiles-local/Makefile.* ; ../*/Makefile. ; -R *.bak -y 46 ../Makefile. ; -y -30 ../work/Makefile.user ; wit-3.01a/edit-list/winapi.edit-list0000644000175000017500000000025113363642463017204 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-3.01a/edit-list/lib-gcz.edit-list0000644000175000017500000000043613363642463017251 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-3.01a/edit-list/patch.edit-list0000644000175000017500000000036413363642463017021 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-3.01a/edit-list/+all-source.edit-list0000644000175000017500000000050613363642463020041 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} ; ../dclib/*.{c,h,inc} ; ../src/&/*.{c,h,s,S} ; ../setup/*.{c,h} ; ../work/*.{c,h,s,S} ; wit-3.01a/edit-list/+all-header-no-dclib.edit-list0000644000175000017500000000003413363642463021452 0ustar michaelmichael../src/*.h ; ../src/&/*.h ; wit-3.01a/edit-list/wdf.edit-list0000644000175000017500000000015313363642463016476 0ustar michaelmichael../src/wdf.c ; ../src/wit.c ; ../src/wwt.c ; @+all-source.edit-list @+doc.edit-list -y 1150 ../src/wdf.c ; wit-3.01a/edit-list/dclib.edit-list0000644000175000017500000000035013363642463016772 0ustar michaelmichael../dclib/dclib-file.[ch] ; ../dclib/dclib-basics.[ch] ; ../dclib/dclib-types.[ch] ; ../dclib/dclib-debug.[ch] ; ../dclib/*.[ch] ; ../dclib/*.inc ; ../src/dclib-utf8.[ch] ; -y 400 ../dclib/dclib-file.c -y 170 ../dclib/dclib-file.h wit-3.01a/edit-list/lib-wdf.edit-list0000644000175000017500000000027413363642463017246 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-3.01a/edit-list/+user-interface.edit-list0000644000175000017500000000053513363642463020711 0ustar michaelmichael../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-3.01a/edit-list/+all-header.edit-list0000644000175000017500000000005313363642463017766 0ustar michaelmichael../src/*.h ; ../src/&/*.h ; ../dclib/*.h ; wit-3.01a/edit-list/+all-no-dclib.edit-list0000644000175000017500000000023513363642463020227 0ustar michaelmichael@+all-source-no-dclib.edit-list @+doc.edit-list @+templates.edit-list @+text-files.edit-list @+scripts.edit-list @+makefiles.edit-list @+editlists.edit-list wit-3.01a/text-files/0000755000175000017500000000000013363642463014265 5ustar michaelmichaelwit-3.01a/text-files/ui-head.inc0000644000175000017500000000567613363642463016312 0ustar michaelmichael /*************************************************************************** * __ __ _ ___________ * * \ \ / /| |____ ____| * * \ \ / / | | | | * * \ \ /\ / / | | | | * * \ \/ \/ / | | | | * * \ /\ / | | | | * * \/ \/ |_| |_| * * * * Wiimms ISO Tools * * https://wit.wiimm.de/ * * * *************************************************************************** * * * This file is part of the WIT project. * * Visit https://wit.wiimm.de/ for project details and sources. * * * * Copyright (c) 2009-2017 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-3.01a/text-files/logo.inc0000644000175000017500000000107513363642463015723 0ustar michaelmichael ***************************************** * __ __ _ ___________ * * \ \ / /| |____ ____| * * \ \ / / | | | | * * \ \ /\ / / | | | | * * \ \/ \/ / | | | | * * \ /\ / | | | | * * \/ \/ |_| |_| * * * * Wiimms ISO Tools * * https://wit.wiimm.de/ * * * ***************************************** wit-3.01a/templates/0000755000175000017500000000000013363642463014177 5ustar michaelmichaelwit-3.01a/templates/HISTORY-v0.txt0000644000175000017500000007056313363642463016437 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-3.01a/templates/wwt.txt0000644000175000017500000012435713363642463015575 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 https://wit.wiimm.de/info/environ.html for details. @@MODULE(signals.txt)@@ ******************************************************************************* ******* END ******* ******************************************************************************* wit-3.01a/templates/wii-homebrew-beta.forum0000644000175000017500000000305713363642463020565 0ustar michaelmichael [img]https://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=https://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] verfügbar. ~ Highlights [size=12][color=#0000c0][b]Höhepunkte 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 können 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-3.01a/templates/gbatemp-beta-commit.forum0000644000175000017500000000163213363642463021071 0ustar michaelmichael [img]https://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-3.01a/templates/HISTORY-v2.txt0000644000175000017500000004556113363642463016441 0ustar michaelmichael @@MODULE(head.txt)@@ @@MODULE(content.txt)@@ ******************************************************************************* ******* HISTORY v2.* ******* ******************************************************************************* wit v2.00a r2834 - 2011-07-08 - Because no bugs (exclude installing) reported since months my WIT tools seems to be perfect (or ready to use or something between). So it's time to increase the major version and to proclaim v2.00a. The whole project consists about 100 000 code lines. - Bug fix for Windows install script: Remove duplicate WIT entries. wit v2.00b r2855 - 2011-07-13 - Bug fix: If creating a Wii image and using hard links (option --links) the offsets of some hard linked files are wrong for some special situations. wit v2.01a r3138 - 2011-10-27 - Windows version only: Update to Cygwin DLL 1.7.9-1 - Bug fix (thanx to fig2k4): Special characters in FST file names with code >127 will now be translated into UTF-8 to list and create files correct. - New option for "wwt LIST": --fragments: Print fragments and a ratio instead of the region info. A summary line is printed too. - New command: wwt LIST-F|LF: Short cut for "wwt LIST --fragments" - Option --sort=fragments sort some listings by the number of wbfs fragments. - Option --fast is ignored and will be removed in the near future. Please don't use --fast any longer. - New option: --copy-gc: If extracting a GameCube disc image, don't extract the real files to '/files/...'. Instead create a copy of the source image and store it as 'game.iso'. If the source image have the correct format and option --no-link is not set, try a hard link first. - Option --neek replaces the old --sneek, but --sneek is also accepted. Option --neek includes now option --copy-gc. - "wit extract --neek --dest %i": Extract like DiscEx (but faster!). The only change is for GameCube discs because of implied --copy-gc. wit v2.02a r3240 - 2011-11-25 - The default output filename for WBFS files changed from "ID6.wbfs" ("%+") to "TITLE [ID6].wbfs" ("%X"). - The file order for composed files is now Nintendo like. - If extracting an image, a new files called 'align-files.txt' is created. It stores information about file alligning. If creating a new image and option --align-files is set, this file is read to align files, that have a previous aligning of >=0x8000 (Wii sector size). This fixes the bug for "Super Paper Mario" and perhaps for some other games. - wit FILES: If the file list is sorted by offset, than an 'unused' column is added before the 'offset' column. - wfuse for Mac is back again. It was lost because non installed FUSE package. wit v2.03a r3309 - 2011-12-30 - wit+wwt SKELETON: Support of GameCube images. - New command: wwt DUP: Duplicate an existing WBFS to a new file including block assigning errors. The idea is to have a command, that can duplicate a defect WBFS for tests. - Command "wwt DUMP" accept now --show for a fine control of printed data. The dump may now contain also a usage table and a integrity check report. - For a long time the code contains a WBFS extension. Now I have xompleted, enabled and tested it. With this extension the WBFS "free blocks table" is managed in a total different way: - WBFS access: While opening a WBFS the free blocks table is ignored. Instead of using the stored one an internal memory map of used blocks is built. This needs only a part of a second. Some advantages: - Errors in the free blocks table are irrelevant. - Blocks overlaps and invalid block assignings are automatically detected, reported, and fixed for internal usage. - If removing a discs with overlaps, the blocks are still marked used. - Blocks, that are not handled by the free blocks tables (the table is sometimes too small; a result of a calculation bug in the original libwbfs) can be used. If closing a WBFS, a new and fixed free blocks table will be written. This makes the whole process compatible and transparent to other WBFS managers and USB loaders. - wwt ADD: Before adding a disc, its size is compared against the free size of the WBFS. This allows an early "disc full" error message. - wwt ADD: If adding a disc to a partition a continuous memory block is searched to minimize the (non existent) fragmentation. This is disabled for WBFS files by default because a file itself can be fragmented. - wwt ADD+PHANTOM --wbfs-alloc=mode: Set the WBFS block allocation mode. - The commands "wwt CHECK", "wwt REPAIR" and "wwt EDIT" have been modified to work with the new interface. wit v2.04a r3554 - 2012-03-10 - New option: wit --force: Ignore partition size errors and allow access to damaged partitions. "wwt --force" works similar. - New options: --disc-id=id, --boot-id=id, --ticket-id=id, --tmd-id=id and --wbfs-id=id: Patch only the specific ID. These options are handled after the --id and --modify options. Patching the WBFS ID while adding a game is now also possible. - New implementation of command "wit ID6": It generates an ID6 list of all sources. This is similar as before, only the meaning of the parameters changed. If option --long is set, a table with 5 IDs (DISC, BOOT, TICKET, TMD and WBFS) is printed. BOOT, TICKET and TMD IDs are taken from the main partition. If --long is set twice, all IDs of all partitions are printed. - wwt LLLL: List contains date and time (in seconds) columns. wit v2.05a r3591 - 2012-04-14 - "wit VERIFY" will now ignore extracted file systems. - wit --id=.....X: ID change failed if only the sixt character was modified. - All ID patching options (--id, --disc-id, ...) accept now a plus sign '+' as wildcard for multiple '.' to fill the complete entered ID to 4/6 characters. - The listing command "wit ID6" accepts now all ID patching options to test the effect of them. wit v2.05b r3611 - 2012-04-20 - Bug fix for assertion failure in "wwt RECOVER". wit v2.06a r3832 - 2012-06-15 - Windows version only: Update to Cygwin DLL 1.7.15-1 - wit CERT --long: Print keys and signatures as hex or base64 dump. wit v2.07a r3955 - 2012-07-14 - Bug fix: The automatic directory creation if using %-escapes in destination file names was gone and is now back again. - Bug fix: Extracting files of directories beginning with '.' fails sometimes. - Bug fix: "wit edit --id=... a.wbfs" may now change the WBFS id too. - Bug fix: wwt (but not wit) ignored the parameter of option --include-path. - Because of compiler warnings: Switched from utime() to utimes(). wit v2.08a r4027 - 2012-08-31 - New command: wit IMGFILES: Print a list (1 file per line) with all image files inlcuding their associated split files. If option --null (-0) is set, the list is NULL terminated to support all possible file names. - New command: wit REMOVE: Removes the image files including their associated split files. - New option --scan-progress: Print a log message is printed for each found image while scanning the local file system. - Bug fix: "wit COPY --source a --dest b" threw an error, because the tool thought, that no source was defined. - Bug fix for "wwt ADD --raw": wwt copied too large (double layer) images. wit v2.09a r4047 - 2012-09-08 - Option --scan-progress prints more info and flush every log output. - Bug fix: "wit MOVE a.wbfs ..." will work now. - New escapes for output files: The old '%f' is the source filename without path (like 'name.ext'). Now we have also '%g' and '%h' as split of '%f': '%g' is file name without extension ('name') and '%h' is the extension ('.ext'). - Bug fix: "wit COPY --recurse a --dest b" threw an error, because the tool thought, that no source was defined (same as with --source before). wit v2.09b r4053 - 2012-09-09 - Bug fix: Because of the --recurse bug fix of v2.08a, "wit COPY" failed. wit v2.10a r4118 - 2012-10-10 - Write privileges are not longer needed, if a WBFS file or partiton is only read. - New command: wit ANAID (ANAlyze ID): Analyze the entered IDs and print one line for each ID with 3 columns: HEX_ID, ASCII_ID, Game title. - Little (compatible) changes for WDF v1. - New command: wit FRAGMENTS: Print the image fragments and, if possible, their filesystem mapping. Add option --brief (-b) to print only a summary with the fragment counts. Add option --long (-l) to print additonally alignment infos. *NOTE: Filesystem mapping is only supported on real linux systems (yet), but neither for Mac nor for Cygwin. - The image builder search now the file 'exclude.fst' to exclude files from the composing. See https://wit.wiimm.de/info/composing.html#part for details. wit v2.11a r4233 - 2013-02-09 - Windows version only: Update to Cygwin v1.7.17 - Bug fix: A wrong TMD size is now detected while scanning image partitions. - Command 'wit FRAGMENTS' will now scan and print the filesystem mapping for Linux (like before) and Windows (that's new). Mac is still not supported. wit v2.12a r4272 - 2013-03-14 - Bug fix: "wit EDIT" failed on WBFS files since v2.10a (Write privileges not longer needed for WBFS files). - New command: wwt SCRUB: Scrubs an image and free unused WBFS blocks. It can be combined with --psel= to clear unwanted image partitions. This command may help to repair wrong WBFS block maps. - New wfuse option: --allow-other (-O): This option is a short cut for '-o allow_other'. It enables re-exporting of the mounted file system for example by a samba server. wit v2.13a r4298 - 2013-03-28 - New docu file: INSTALL.txt - Mac+Linux+Unix: Script 'install.sh' will call itself with 'sudo' if not started by user 'root'. Read INSTALL.txt for details. - Windows: Cygwin updated. - Bug fix: If writing an image failed ('disc full' for example), the tools didn't aborted and, if option --remove was set, deleted the source image. This bug arrived with the implementation of preallocation, because of a lost error status. wit v2.20a r4399 - 2013-05-01 - After 4 years development this version should be the last release of the WIT-Tools until further notice; with exception of bug fix releases. I will discontinue adding new features. That's the reason for the little version jump to v2.20a. - New command: "wwt NEW" is a short cut for "wwt ADD --update --newer". - Cygwin (Windows) DDLs updated. - Title data base updated. wit v2.21a r4489 - 2013-06-15 - The default image format switched from WDF to WBFS. This is only relevant, if no image type is specified by source, option or file extension, for example for the command "wwt EXTRACT". - wit DUMP --long: If dumping a DOL file, a third table with delta values between the virtual address and the file offset is printed. - New command: wit DOLPATCH: Patch a DOL file by reading a Riivolution XML file and scanning all memory tags. -> Read https://wit.wiimm.de/cmd/wit/dolpatch for details. - If extracting an image, the file 'setup.txt' contains now a new parameter: "image-type = TYPE". It shows the image type of the source image. If cretaing an image and file 'setup.txt' contains this paramater with a valid image type, this image type is used as default for the new created image. The default is superseded by format options and file extensions. This feature is dedicated to patching scripts. If an original image is extracted with "wit extract -1n ANYID6 . WORKDIR --psel data" and then patched, an image with identical image type as the original can be created by the command: wit copy WORKDIR %x --id NEWID6 --name "new title of game" - For easier script/batch support, the files "setup.sh" and "setup.bat" are created for extracted images. They contain similar info as "setup.txt", but can be directly included by ". ./PATH/setup.sh" or "CALL PATH\setup.bat" to get the settings as script variables. - Cygwin (Windows) DDLs updated. - Title data base updated. wit v2.21b r4492 - 2013-06-15 - Bug fix: wit DOLPATCH: Reading 'offset' failed on 32 bit systems. wit v2.22a r4516 - 2013-06-22 - Command "wit DOLPATCH" accepts now more commands and is able to create new TEXT and DATA sections. -> Read https://wit.wiimm.de/cmd/wit/dolpatch for details. - New option: --tt-id=ID: This is a short cut for '--ticket=ID --tmd=ID'. If TICKET and TMD differ, the game will freeze after loading. So it make sense to change only TICKET and TMD IDs together. - Bug fix, if using "wit COPY --name discname" and the destination is %X or similar: The new discname is now used to create the filename. wit v2.22b r4520 - 2013-06-22 - Command "wit DOLPATCH": - Bug fix: If loading a file, wrong data was used. - Tag 'memory', attribute 'value': 4 MiB data are accepted now. - Sub command 'address=hexstring': 4 MiB data are accepted now. wit v2.23a r4534 - 2013-07-12 - Bug fix: wit DOLPATCH: Conditions were ignored. (Already fixed in unofficial v2.22c) - Built-in docu. - Title data base updated. - Windows only: Cygwin update to v1.7.20 2013-06-07. - Some makefile changes because of a new Cygwin compiler. wit v2.24a r4723 - 2013-11-10 - The Windows installer will now force type REG_EXPAND_SZ for path variables. - wit DOLPATCH: Wrong calculation for address aligning fixed. - New sub command for "wit DOLPATCH": ENTRY=address: Define a new entry point. - Title data base updated. - Windows version only: Update to Cygwin v1.7.25. I hope that it fixes the bug that occurred during creation of MKW-Fun 2013-10 with Windows 8.1. wit v2.25a r4825 - 2014-01-03 - New option --auto-split: If set, the tools try to find out, if an image split is needed. The split size is then either below 4 or 2 GiB. Auto-Split base on tests with fseek() and works fine under Linux, but it don't work with Cygwin. Mac is unknown. In future versions --auto-split is enabled by default. It is disabled by any other split option. - New option --no-split: Disable file splitting at all. At the moment and in old versions of the tools, this is the default. - wwt CHECK+REPAIR: Support for option --sections. - Windows only: Cygwin update to v1.7.27 2013-12-09. wit v2.26a r4863 - 2014-01-22 - Bug fix: Because of a bug after implementing the auto split detection, reading source images failed, if using stdin for parameters. - Support for Dolphins file format GCZ (GameCube Zip): - All commands detect and accept GCZ files as input file. - Creating of GCZ files is also supported, but EXPERIMENTAL until final tests have been done. - New option --gcz force GCZ output. - Patching of GCZ files is not possible, because the GCZ file structure doesn't allow modifications (size of compressed data must not change). - Composing an image to a GCZ file is not possible, because it needs patching checksums and header after writing the complete image. The GCZ support is very new, so please use it only with backups of your images and don't be anger, if it destroy something. wit v2.27a r4908 - 2014-01-31 - Bug fix: If extracting a GameCube image, files larger than 4 MiB are damaged at beginning of this 4 MiB offset. - New feature: If creating a GCZ image, a blockwise z-compression is tried. If the compressed data is larger than 98.5%, the uncompressed data is stored. New is, that encrypted blocks are stored directly as uncompressed data, because encrypted are very bad compression candidates and the 98.5% test fails all the time. This makes GCZ creation faster. The new option --gcz-zip disables this optimization for encrypted data. - New option: --gcz-block=size: Define the block size for GCZ creation. The default size is 16K (also Dolphins default). - Tool 'wdf' supports info dumps of GCZ files to verify the GCZ creation. - New command for wit+wwt: FEATURES: Print a list of supported features. The output is machine readable. Scripts may use "wit features -qq" and check the exit status. - Reading support for the comming WDF v2. Details: https://wit.wiimm.de/WDF Writing support will follow, if EDIT is implemented too. wit v2.28a r4980 - 2014-03-01 - Full WDF version 2 support: - WDFv2 files are a little bit smaller and support alignment. - Parts of the WDF library have been rewritten to support WDFv2 and alignment. A side effect is a more compact code and a better chunk management if modifiying WDF files. - Option --wdf forces WDF output, the version is definied automatically. - Option --wdf1 forces WDFv1 output. - Option --wdf2 forces WDFv2 output. - Option --align-wdf defines an alignment between 1 and 1GiB (power of 2) and optional the minimal hole size before creating a new chunk. - 'wit EDIT' supports --wdf1 and --wdf2 to allow version conversions. For technical details about WDF see: https://wit.wiimm.de/WDF - Support of split files of CleanRip: If reading a plain ISO file named '*.part0', the other parts are detected as continuation files. - Windows only: Cygwin update to v1.7.28 2014-02-09. wit v2.29a r5186 - 2014-05-16 - New patching options to support the new custom server: - Option --http: Replace 'https' request to 'http' in the files 'main.dol' and 'rel/StaticR.rel'. - Option --domain=dom: Replace 'nintendowifi.net' by the new domain. - Option --wiimmfi: Patch the images for the new custom server. It is a short cut for: --http --domain=wiimmfi.de wit v2.30a r5771 - 2014-11-15 - Bug fix for GameCube extracts: The alignments in file 'align-files.txt' were too large by a factor of 4. - WDF version 2 is now the default WDF version. Use --wdf1 to force v1. - With v2.21a (June 2013) the default output file format was switched from WDF to WBFS. Since that command SKELETON used this new default by mistake. Now the much more efficient WDFv2 is used as default for skeletons. - Command SKELETON supports now GameCube images. - Windows only: Cygwin update to v1.7.32 2014-08-13. wit v2.31a r6005 - 2015-02-08 - Some minor text edits. - Title database updated. - Windows only: Cygwin update to v1.7.34-6 2015-02-04. wit v2.40a r7331 - 2017-01-05 - This will be the last release of v2.* series. I plan to reorganize the code and to use my own C source library and to integrate Wii U support. - New command: wit ID8: Print ID6 + 2 next bytes as disc and version number. - Title database: Definitions without titles (e.g. "RMCP =") will remove the related title from the internal title database. If a ID is followed by a star (e.g. "RMC* ="), then all titles beginning with the ID are removed. - Title database updated. - Some minor text edits. - Windows only: Cygwin update to v2.6.1 2016-12-16. ******************************************************************************* ******* END ******* ******************************************************************************* wit-3.01a/templates/FAQ.txt0000644000175000017500000001453513363642463015357 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