commit ea71a178e1d919e183d0e1b4d03f2d6edb4d82f6 Author: Sergio Date: Fri Dec 18 16:17:22 2020 +0000 First commit diff --git a/1_download_system_game_list.sh b/1_download_system_game_list.sh new file mode 100755 index 0000000..d03f30d --- /dev/null +++ b/1_download_system_game_list.sh @@ -0,0 +1,66 @@ +#!/bin/bash +apple2=https://retroachievements.org/gameList.php?c=38 +arcade=https://retroachievements.org/gameList.php?c=27 +atari2600=https://retroachievements.org/gameList.php?c=25 +atari7800=https://retroachievements.org/gameList.php?c=51 +atarijaguar=https://retroachievements.org/gameList.php?c=17 +atarilynx=https://retroachievements.org/gameList.php?c=13 +coleco=https://retroachievements.org/gameList.php?c=44 +gba=https://retroachievements.org/gameList.php?c=5 +gbc=https://retroachievements.org/gameList.php?c=6 +gb=https://retroachievements.org/gameList.php?c=4 +gamegear=https://retroachievements.org/gameList.php?c=15 +mastersystem=https://retroachievements.org/gameList.php?c=11 +megadrive=https://retroachievements.org/gameList.php?c=1 +msx=https://retroachievements.org/gameList.php?c=29 +ngpc=https://retroachievements.org/gameList.php?c=14 +nes=https://retroachievements.org/gameList.php?c=7 +n64=https://retroachievements.org/gameList.php?c=2 +nds=https://retroachievements.org/gameList.php?c=18 +panasonic3do=https://retroachievements.org/gameList.php?c=43 +pc8000=https://retroachievements.org/gameList.php?c=47 +pcengine=https://retroachievements.org/gameList.php?c=8 +pcfx=https://retroachievements.org/gameList.php?c=49 +psx=https://retroachievements.org/gameList.php?c=12 +pokemonmini=https://retroachievements.org/gameList.php?c=24 +sega32x=https://retroachievements.org/gameList.php?c=10 +segacd=https://retroachievements.org/gameList.php?c=9 +segasaturn=https://retroachievements.org/gameList.php?c=39 +sg1000=https://retroachievements.org/gameList.php?c=33 +snes=https://retroachievements.org/gameList.php?c=3 +vectrex=https://retroachievements.org/gameList.php?c=46 +virtualboy=https://retroachievements.org/gameList.php?c=28 +wonderswan=https://retroachievements.org/gameList.php?c=53 + +wget $apple2 -O apple2.html +wget $arcade -O arcade.html +wget $atari2600 -O atari2600.html +wget $atari7800 -O atari7800.html +wget $atarijaguar -O atarijaguar.html +wget $atarilynx -O atarilynx.html +wget $coleco -O coleco.html +wget $gba -O gba.html +wget $gbc -O gbc.html +wget $gb -O gb.html +wget $gamegear -O gamegear.html +wget $mastersystem -O mastersystem.html +wget $megadrive -O megadrive.html +wget $msx -O msx.html +wget $ngpc -O ngpc.html +wget $nes -O nes.html +wget $n64 -O n64.html +wget $nds -O nds.html +wget $panasonic3do -O panasonic3do.html +wget $pc8000 -O pc8000.html +wget $pcengine -O pcengine.html +wget $pcfx -O pcfx.html +wget $psx -O psx.html +wget $pokemonmini -O pokemonmini.html +wget $sega32x -O sega32x.html +wget $segacd -O segacd.html +wget $segasaturn -O segasaturn.html +wget $sg1000 -O sg1000.html +wget $snes -O snes.html +wget $vectrex -O vectrex.html +wget $virtualboy -O virtualboy.html +wget $wonderswan -O wonderswan.html diff --git a/2_download_system_game_webpages.sh b/2_download_system_game_webpages.sh new file mode 100755 index 0000000..d20347d --- /dev/null +++ b/2_download_system_game_webpages.sh @@ -0,0 +1,73 @@ +#!/bin/bash + +readonly SCRIPT_DIR="$(cd "$(dirname $0)" && pwd)" +readonly DATA_DIR="$SCRIPT_DIR/data" +readonly GAME_LIST_DIR="$SCRIPT_DIR/gamelists" + +#check if there is any parameter +if [ "$#" -ne 1 ]; then + echo "You must enter a source file." + exit 0 +fi + +#check if file exists +if ! test -f "$1"; then + echo "$1 does not exists." + exit 0 +fi + +#variables +hashDir=data +gameListDir=gamelists +systemName="$(basename "$1" .html)" +echo "Processing $systemName." +tempFile1="${systemName}-1.tmp" +tempFile2="${systemName}-2.tmp" +urlList="${systemName}.url" +hashList="./${hashDir}/${systemName}.hashlist" +cookie="cookie.txt" + +#update cookie time stamp +#sec=`date +%s` +#sec2=$((sec+600)) +#sed -i 's/[0-9]\{10\}/'$sec2'/' cookie.txt + +#process system html to get game url list +grep -E "Game/[1-9]'" -Eo $1 > $tempFile1 +grep -E "Game/[1-9][0-9]'" -Eo $1 >> $tempFile1 +grep -E "Game/[1-9][0-9][0-9]'" -Eo $1 >> $tempFile1 +grep -E "Game/[1-9][0-9][0-9][0-9]'" -Eo $1 >> $tempFile1 +grep -E "Game/[1-9][0-9][0-9][0-9][0-9]'" -Eo $1 >> $tempFile1 +grep -E "Game/[1-9][0-9][0-9][0-9][0-9][0-9]'" -Eo $1 >> $tempFile1 + +sort -u $tempFile1 > $tempFile2 +sed 's,Game/,,' $tempFile2 > $tempFile1 +sed 's,^,https://retroachievements.org/linkedhashes.php?g=,' $tempFile1 > $tempFile2 +sed 's,.$,,' $tempFile2 > $urlList + +echo "Found $(wc -l < $urlList) games." + +#create system folder for webpages with hashes +if test -d "./${gameListDir}/$systemName"; then + rm -rdf "./${gameListDir}/$systemName" + echo "Deleting ${gameListDir}/$systemName folder." +fi +if ! test -d "./${gameListDir}/$systemName"; then + mkdir -p "./${gameListDir}/$systemName" + echo "Create ${gameListDir}/$systemName folder." +fi + +#download webpages with hashes form url list +echo "Downloading game info ..." +wget --random-wait --no-verbose --load-cookies ${cookie} -i $urlList -P "./${gameListDir}/$systemName" + +#remove tempfiles +if test -f "$tempFile1"; then + rm "$tempFile1" +fi +if test -f "$tempFile2"; then + rm "$tempFile2" +fi +if test -f "$urlList"; then + rm "$urlList" +fi diff --git a/3_extract_hascheevos_hash_from_game_webpages.sh b/3_extract_hascheevos_hash_from_game_webpages.sh new file mode 100755 index 0000000..74c2c5e --- /dev/null +++ b/3_extract_hascheevos_hash_from_game_webpages.sh @@ -0,0 +1,76 @@ +#!/bin/bash + +SYSTEMS="apple2 arcade atari2600 atari7800 atarilynx coleco gamegear gb gba gbc mastersystem megadrive msx n64 nes ngpc pcengine sega32x sg1000 snes vectrex virtualboy wonderswan wonderswancolor" + +# check if there is at least one parameter +if [ "$#" -ne 1 ]; then + echo "You must enter a system name." + echo "Supported systemas are:" + for WORD in $SYSTEMS + do + echo -e "\t$WORD" + done + exit 0 +fi + +# check if the parameter is valid +if ! echo $SYSTEMS | grep -w $1 > /dev/null; then + echo "You must enter a valid system name." + echo "Supported systemas are:" + for WORD in $SYSTEMS + do + echo -e "\t$WORD" + done + exit 0 +fi + +readonly SCRIPT_DIR="$(cd "$(dirname $0)" && pwd)" +readonly DATA_DIR="$SCRIPT_DIR/data" +readonly GAME_LIST_DIR="$SCRIPT_DIR/gamelists" +readonly HASCHEEVOS_TXT="${DATA_DIR}/$1_hascheevos.txt" +readonly HASHLIBRARY_JSON="${DATA_DIR}/$1_hashlibrary.json" +readonly BLUE_COLOR=$( tput setaf 4 ) ; +readonly RESET_COLOR=$( tput sgr0 ) ; + +echo "Processing $1 system." +echo "Working folder: $GAME_LIST_DIR" + +# extract hashes from files on data/system folder + +# if file exists, delete it +if test -f "${HASCHEEVOS_TXT}"; then + rm "${HASCHEEVOS_TXT}" +fi + +# if file exists, delete it +if test -f "${HASHLIBRARY_JSON}"; then + rm "${HASHLIBRARY_JSON}" +fi + +# check if folder exists +if ! test -d "${GAME_LIST_DIR}/$1"; then + echo "Folder ${GAME_LIST_DIR}/$1 does not exist." + exit 0 +fi + +# create HASCHEEVOS_TXT file +grep -E "title=\"(.*?)\"" -Eo "${GAME_LIST_DIR}/$1/"* >> ${HASCHEEVOS_TXT} +sed -i -E 's,^\/(.*?)g=,,g' ${HASCHEEVOS_TXT} +sed -i -E 's,title=,true:,g' ${HASCHEEVOS_TXT} +echo "File $HASCHEEVOS_TXT created." + +# create HASHLIBRARY_JSON +echo "{" > ${HASHLIBRARY_JSON} +echo " \"Success\": true," >> ${HASHLIBRARY_JSON} +echo " \"MD5List\": {" >> ${HASHLIBRARY_JSON} +for i in "${GAME_LIST_DIR}/$1/"*; do + # catch hash and append to file + printf "%s\n" "$(grep -E "[A-Fa-f0-9]{32}" -Ho $i)" >> ${HASHLIBRARY_JSON} + printf "%s\r" "${BLUE_COLOR}Parsing $(basename ${i}) ... ${RESET_COLOR}" +done +perl -i -pe 's/(^\/.*?=)([0-9]+):([0-9A-Za-z]{32})/ "$3": $2,/' ${HASHLIBRARY_JSON} +echo " }" >> ${HASHLIBRARY_JSON} +echo "}" >> ${HASHLIBRARY_JSON} +perl -i -00pe 's/,(?!.*,)//s' ${HASHLIBRARY_JSON} +printf "%s\n" "Parsed $(wc -l < ${HASHLIBRARY_JSON}) hashes from $(find ${GAME_LIST_DIR}/$1 -type f | wc -l) games. " +echo "File: $HASHLIBRARY_JSON created." diff --git a/X_extract_hash_from_game_webpages.sh b/X_extract_hash_from_game_webpages.sh new file mode 100755 index 0000000..dd5959f --- /dev/null +++ b/X_extract_hash_from_game_webpages.sh @@ -0,0 +1,37 @@ +#!/bin/bash + +#check if there is any parameter +if [ "$#" -ne 1 ]; then + echo "You must enter a source file." + exit 0 +fi + +#check if file exists +if ! test -f "$1"; then + echo "$1 does not exists." + exit 0 +fi + +#variables +hashDir=data +gameListDir=gamelists +systemName="$(basename "$1" .html)" +echo "Processing $systemName." +tempFile1="${systemName}-1.tmp" +tempFile2="${systemName}-2.tmp" +hashList="./${hashDir}/${systemName}.hashlist" + +# extract hashes from files on data/system folder + +# if file exists, delete +if test -f "${hashList}"; then + rm "${hashList}" +fi + +# for every file in folder, do +for i in ./${gameListDir}/$systemName/*; do + # catch hash and append to file + grep -E "[a-f0-9]{32}" -Eo $i >> ${hashList} + echo "Parsing ${i} ..." +done +echo "Parsed $(wc -l < ${hashList}) hashes for $(find ${gameListDir}/${systemName} -type f | wc -l) games." diff --git a/cookie.txt b/cookie.txt new file mode 120000 index 0000000..58b0c38 --- /dev/null +++ b/cookie.txt @@ -0,0 +1 @@ +/home/sergio/.lynx_cookies \ No newline at end of file diff --git a/data/apple2_hascheevos.txt b/data/apple2_hascheevos.txt new file mode 100644 index 0000000..5c82ecd --- /dev/null +++ b/data/apple2_hascheevos.txt @@ -0,0 +1,12 @@ +13925:true:"Prince of Persia" +14022:true:"Breakout" +14024:true:"Megabots" +14034:true:"Number Munchers" +14038:true:"Paranoiak" +14225:true:"Lode Runner" +14231:true:"Odell Lake" +14391:true:"La Femme qui ne supportait pas les ordinateurs..." +14398:true:"King's Quest" +14478:true:"Black Cauldron, The" +14674:true:"~Homebrew~ Sudoku" +17138:true:"King's Quest II: Romancing the Throne" diff --git a/data/apple2_hashlibrary.json b/data/apple2_hashlibrary.json new file mode 100644 index 0000000..dd30ccf --- /dev/null +++ b/data/apple2_hashlibrary.json @@ -0,0 +1,41 @@ +{ + "Success": true, + "MD5List": { + "4f319042ecb13e6a6090456d18b2aef3": 13925, + "7314dbc241b9a21cc004eb428bb7e070": 13925, + "d566f78651f70fad171111bf38e2cfca": 13925, + "d7c976c61c01f620e7cb1d3a5d432601": 13925, + "daff679b6c57e6a9213212b4c7a79093": 14022, + "1208cc0b1d18d6b6b077164fca770c9b": 14024, + "9b55fc36780dcdc7be8e7149d08af750": 14034, + "9771f313dda522e8c65407e94c173fb2": 14038, + "fc40e6016f06eb748ead9b072c53b6aa": 14038, + "98ba542f94d25a635fd313710fd758f9": 14225, + "b2397861f6b8974134d238ad3ad9c4fc": 14225, + "f491b82b944c8d55c7ce82c3056df556": 14225, + "235600cb734020deef456a14617225b0": 14231, + "c4324ad69ac4ce78c07e4b3bf275e828": 14231, + "9d3749dceb156e166fea18765263ba92": 14391, + "b70feb11a48af379b44300e8a20e47ca": 14391, + "1895ddb08c2068a66f9df3765a29f5bf": 14398, + "6a2bd8ce8b19436d2ce455b751aadb31": 14398, + "92088fe43463ece00e33e0cc150c4a0e": 14398, + "ebb389599debac2b554c431bfb0f919c": 14398, + "0d0ef0cace8ccde940c06781efe2fd78": 14478, + "1fddafe19fba7d14af77f358bbcf9174": 14478, + "3493f40aec829f98e4cf6ff739ff0f81": 14478, + "66f82e26d9417757ece6253dc140967c": 14478, + "6af43b5d837688b373529947d3fb04fc": 14478, + "8899ad83dbda2e772393f98abefdc058": 14478, + "89d90b22588fc4217348e334c60c6900": 14478, + "9214fdb0b3a53c5f4160ac681a2002bd": 14478, + "a7cea209c45dacf4474753a701b4229d": 14478, + "dbcc564fdd15795c4b994af26a01a09e": 14478, + "bd92a051c2098b3090b865365caa3571": 14674, + "0fe0171c101d92659530af44be9df553": 17138, + "239f0238141ba3ecb100d015d543ac1f": 17138, + "d8549ae7a488ab18289a02c13461d24b": 17138, + "da01ed6b55920013f63e2d79fbb15660": 17138, + "e077d01f89c5d87fdf1f85890f579ed4": 17138 + } +} diff --git a/data/arcade_hascheevos.txt b/data/arcade_hascheevos.txt new file mode 100644 index 0000000..3b42ab8 --- /dev/null +++ b/data/arcade_hascheevos.txt @@ -0,0 +1,123 @@ +11726:true:"Captain Commando" +11727:true:"Final Fight" +11750:true:"Metal Slug: Super Vehicle-001" +11751:true:"Blazing Star" +11752:true:"Garou: Mark of the Wolves" +11753:true:"Last Blade 2, The | Bakumatsu Roman: Dai Ni Maku Gekka no Kenshi" +11757:true:"King of Fighters '98, The: The Slugfest" +11758:true:"Art of Fighting | Ryuuko no Ken" +11759:true:"Fatal Fury: King of Fighters | Garou Densetsu: Shukumei no Tatakai (AES)" +11760:true:"Zed Blade | Operation Ragnarok" +11762:true:"Spin Master | Miracle Adventure" +11763:true:"Cadillacs and Dinosaurs" +11767:true:"Shock Troopers" +11768:true:"Shock Troopers: 2nd Squad" +11769:true:"SNK vs. Capcom: SVC Chaos" +11770:true:"Metal Slug X: Super Vehicle-001" +11771:true:"Metal Slug 3" +11774:true:"Aero Fighters 2 | Sonic Wings 2 (AES)" +11787:true:"Punisher, The" +11794:true:"Mega Man: The Power Battle" +11795:true:"Street Fighter III 3rd Strike: Fight for the Future" +11796:true:"Pulstar" +11797:true:"Waku Waku 7" +11798:true:"Street Fighter Alpha 2 | Street Fighter Zero 2" +11805:true:"Street Fighter Alpha: Warriors' Dreams | Street Fighter Zero" +11806:true:"Marvel vs. Capcom: Clash of Super Heroes" +11808:true:"Street Fighter II: The World Warrior" +11812:true:"Street Fighter Alpha 3 | Street Fighter Zero 3" +11820:true:"Alien vs. Predator" +11821:true:"Warriors of Fate" +11822:true:"Marvel Super Heroes" +11825:true:"Metal Slug 2: Super Vehicle-001/II" +11836:true:"Willow" +11848:true:"Boogie Wings | Great Ragtime Show, The" +11860:true:"Windjammers | Flying Power Disc" +11895:true:"Wild West C.O.W.-Boys of Moo Mesa" +11896:true:"Pooyan" +11900:true:"Mega Man 2: The Power Fighters" +11905:true:"Nightmare in the Dark" +11932:true:"Sunset Riders" +11933:true:"X-Men" +11942:true:"X-Men vs. Street Fighter" +11943:true:"Donkey Kong" +11944:true:"Donkey Kong Junior" +11945:true:"Donkey Kong 3" +11946:true:"Mario Bros." +11948:true:"Arm Wrestling" +11951:true:"Popeye" +11971:true:"Aliens" +11975:true:"Altered Beast" +11984:true:"Asterix" +11991:true:"Bad Dudes vs. DragonNinja | DragonNinja" +12008:true:"Blade Master | Cross Blades!" +12026:true:"Metal Slug 4" +12027:true:"Metal Slug 5" +12028:true:"King of Fighters '94, The" +12029:true:"King of Fighters '95, The" +12030:true:"King of Fighters '96, The" +12031:true:"King of Fighters '97, The | King of Fighters '97 Plus, The" +12032:true:"King of Fighters '99, The: Millenium Battle" +12033:true:"King of Fighters 2000, The" +12034:true:"King of Fighters 2001, The | Crouching Tiger Hidden Dragon" +12035:true:"King of Fighters 2002, The: Challenge to Ultimate Battle" +12036:true:"King of Dragons, The" +12040:true:"Last Blade, The | Last Soldier, The" +12049:true:"Simpsons, The" +12052:true:"Cabal" +12084:true:"Dungeons & Dragons: Tower of Doom" +12104:true:"Darkstalkers: The Night Warriors | Vampire: The Night Warriors" +12152:true:"G.I. Joe: A Real American Hero" +12154:true:"Golden Axe" +12173:true:"Gyruss" +12178:true:"Haunted Castle" +12183:true:"Hook" +12192:true:"Pac-Man | Puck Man" +12210:true:"Teenage Mutant Ninja Turtles" +12211:true:"Teenage Mutant Ninja Turtles: Turtles in Time" +12214:true:"Knights of the Round" +12230:true:"Super Gem Fighter: Mini Mix | Pocket Fighter" +12247:true:"Puzzle Bobble | Bust-A-Move [Neo-Geo MVS]" +12248:true:"Puzzle Bobble 2 | Bust-A-Move Again EX [Neo-Geo MVS]" +12255:true:"Street Fighter II: Hyper Fighting | Street Fighter II Turbo: Hyper Fighting" +12266:true:"Marvel Super Heroes vs. Street Fighter" +12298:true:"Loco-Motion | Guttang Gottong" +12310:true:"Mr. Do!" +12322:true:"Neo Bomberman" +12323:true:"Neo Drift Out: New Technology" +12342:true:"Prehistoric Isle in 1930 | Genshi-Tou 1930s" +12364:true:"Riot City" +12379:true:"Rygar" +12431:true:"Rush n Attack | Green Beret" +12514:true:"Toki" +12543:true:"League Bowling" +12662:true:"Real Bout Fatal Fury Special | Real Bout Garou Densetsu Special" +12663:true:"Art of Fighting 2 | Ryuuko no Ken 2" +12708:true:"Samurai Shodown II | Shin Samurai Spirits: Haohmaru Jigokuhen" +12734:true:"Super Sidekicks 2: The World Championship" +12741:true:"Dragon Ball Z 2: Super Battle" +12792:true:"Last Resort" +12816:true:"Goal! Goal! Goal!" +13566:true:"Pachinko Sexy Reaction" +13761:true:"Breaker's" +13762:true:"Burning Fight" +13767:true:"Cyber-Lip" +13770:true:"Eight Man" +13784:true:"King of the Monsters" +13794:true:"Mutation Nation" +13796:true:"Neo Turf Masters | Big Tournament Golf" +13799:true:"Ninja Master's: Haoh-ninpo-cho" +13802:true:"Samurai Shodown | Samurai Spirits" +13808:true:"Robo Army" +13811:true:"Soccer Brawl" +13812:true:"Stakes Winner" +14880:true:"Demon Front" +15003:true:"Tapper" +15086:true:"Tempest" +15125:true:"Sinistar" +15207:true:"Nibbler" +15791:true:"Gunbarich" +15881:true:"Tetris: The Absolute - The Grand Master 2" +16492:true:"Blood Bros." +4845:true:"Pretty Soldier Sailor Moon" +5645:true:"Gaia Crusaders" diff --git a/data/arcade_hashlibrary.json b/data/arcade_hashlibrary.json new file mode 100644 index 0000000..cb79c26 --- /dev/null +++ b/data/arcade_hashlibrary.json @@ -0,0 +1,210 @@ +{ + "Success": true, + "MD5List": { + "33d1f8bc44a414a1f2f76cfe4c197c66": 11726, + "af13b049084ba6917ade6d6f01cd33dd": 11726, + "b7cf5aa4176917b597eac76d364e449c": 11726, + "e37004f9a9251cc5d5921836e14fb5c6": 11726, + "f6267c0019e7006bab5875b27be32478": 11726, + "f9505345203b7c29fcf0c227a198dfc2": 11726, + "946e902aa8b913f8e972a64b5133c522": 11727, + "b43c8b4ec999588c04dad79bb8bcc745": 11750, + "edb0c9707493e999cf61ae4e6a335f91": 11751, + "577029dbc6e6bb60afdb832cef943eb1": 11752, + "5c14f94978dfad8ffb95cd5b405abfd8": 11753, + "13e4ced9b848a542cdee1ec31a150a1a": 11757, + "28bf131945d07b8709e07645ce6bada5": 11757, + "a33726f35cbcf7fc44b0fecc2e4c3d2f": 11757, + "c0959b94e46f1811952055be7f59cba6": 11757, + "f1afe8fcd96d1e72afc826d4a1b4cd62": 11757, + "df4a8b32238c36921a260ed6ab784850": 11758, + "715b50388fc01b4e356b7227aec29722": 11759, + "ad7690ec619673225f1e0f7f265d5fa8": 11760, + "44d6eb63bfac741a7f3c987f75b85bbe": 11762, + "b246ff693d453c3b1a3049752da2bc75": 11763, + "066ab7af0557bd4280c94dcf1e56d551": 11767, + "4af54168a800f0ff32f7f9377d5329a9": 11768, + "3aec393b257a3e4d30dbc0d5c22fb2cf": 11769, + "4095f20aad3a6f24baa34e5a443d71d5": 11769, + "961e38b5146c0b07d078f53dec9b699a": 11769, + "ba2484bf7a03538d3e610aca5c7b5359": 11769, + "320a36c48c06dce51438108df9defb90": 11770, + "f69dc77532431c03d1dfbd31835bc4dd": 11771, + "34c37a308e48622cde50f3da39687796": 11774, + "1a52ed76f4df2f621e235c36a97deed3": 11787, + "209b01d5d9b045d8cbcc9311e661e94d": 11794, + "80cf81ba256b82569d3702508d430cb7": 11794, + "002180613c2131abce28ae5bd4a8a2fb": 11795, + "7f6640b9ee259b3277c4e7e8733f0245": 11795, + "bf02f7b4e9c7b535d368e878566c14a0": 11795, + "d38692661c72f0381e82e325c0e55f87": 11795, + "e8f7bc4c1fbc62db919f2a59e7953c5f": 11795, + "bb8be21788196f32b3771e2bc0561e60": 11796, + "b7e62952de4c640b526a79338d631bd6": 11797, + "5270d551afd6753d1268312c96603236": 11798, + "90bcf1208ffb058a7a83857fe2230a52": 11805, + "dad56c492769e5947c01216ab94dfcb3": 11805, + "dea3cdbe10c327ec87c6058f8b48cc7b": 11805, + "7280b613c4597b4a4bbbae6f634bb886": 11806, + "79374b32fb5e0f45c6fb40af7138bdbc": 11806, + "b81c3fcde2756cee6d7c0463c6c9ab8c": 11806, + "a7946d9b269b67f7a6b1148d3f5d8155": 11808, + "40073b2681a50f17ae0b325503a0365c": 11812, + "9d34a5ddda57b3fb20d85cbe9d708919": 11812, + "93e4612854908c374d33bfb5c979f540": 11820, + "da5c580bfa56914ef2e260f2c3483602": 11821, + "1c90c082845e4b6a52ef8b5f2a0050a0": 11822, + "86a7de326868fc46d5bb46f724a17792": 11822, + "b5e869fdadfee117203293faa33eab00": 11822, + "cae38c7d868c8630293449f74f711a4c": 11822, + "d674fa80556700a504bf94674a8461b6": 11822, + "ed65c4fe38d520f0033858a2847a6060": 11822, + "b1475b391ad385c16feae3a2bfbfc2a0": 11825, + "592cec0a3fc4d8cf9b6e57a09bff554b": 11836, + "caf87e134d793eec0e589c10f1167f07": 11836, + "9b519c4dceb4327521e6af1ab03f9ec1": 11848, + "d05c0636f31eded00e13a0051db1ed37": 11848, + "c9a5750db3e5f76e917e153dc097e738": 11860, + "5a5913127183c47bf3342315fc95e6c3": 11895, + "b34175393aacad020560636348ae5611": 11896, + "523555ae3bd12f5cc3ec406a4c8da0e9": 11900, + "80a0ae02ca0e9905e9baae671be9eea2": 11900, + "ccaa26b29d3e946fb6883710873df7fc": 11900, + "c49db6febda650eb59149c52852df9e5": 11905, + "492ea859726d84d6fc94aaed5d07152c": 11932, + "663e35948366c5f5d39b27df6826231a": 11933, + "aa1ea007f07aa246732b3c633fc2ad3c": 11933, + "cae647ac23b8f5d74b7f2b0aca48506c": 11933, + "a364a6bcde97a8910c2f3fef4b1e4dfe": 11942, + "d822240ddc24863944c78f241ff9a9a9": 11942, + "02bbe063efc4b8883206c66e6cb775c9": 11943, + "33d8780218ec321c54001d3feb0d4a4e": 11943, + "a6a463493afd575aaed06d73d3f3c390": 11944, + "0011e5155daaed1ab4bc73e24bd5ab8c": 11945, + "de2f15d014d40b93578d255e6221fd60": 11946, + "b616c446de649b69261679c173d78d18": 11948, + "8b848a152ad86d9fec34c7c291c66858": 11951, + "32d0f9f324c6861605e0f948c2b68be6": 11971, + "bc80ce3199cfe7265644e711e7919013": 11975, + "ffd3fe067fcc35a30e5ba34415e01507": 11975, + "1bf43bfeec4116b50a2789a61abfff59": 11984, + "79cfab624c6f02057146c1cdadff2edf": 11984, + "75d86ead4097fb1123ef54ca07d16f6e": 11991, + "861b05620edba698c6301faa7d56819b": 11991, + "9e226fab11cfe8f248c9452de02fd9c9": 12008, + "d7d1b007629a371d956f49347a60df2e": 12008, + "d5d7199eda7492cd9ee24173357e781b": 12026, + "024e350be5736b014d80c32330f03e2a": 12027, + "ac81f93f04be5d5a385f8e97ea595dbc": 12027, + "ed81921e0d069f9a7ead349333a96efa": 12028, + "ae9a0b2abd7445537a8cc3cc20cb27a0": 12029, + "23438b2c55800e5b4e8ab86f525b379c": 12030, + "3cfc8c16d865610ec01beb115c307874": 12030, + "5bf98ad5e7c70133d8e41bdc36172a24": 12031, + "7e950909d250e360570c83052824ffbe": 12031, + "94003f2519edbaf151bfbeed5d6b20ea": 12031, + "cc4859439b96cad014423c432484f1fe": 12031, + "d464bc738ebbf343810a19f8f7ea04a6": 12031, + "de5accc436a9a8fc925aa203d07d6cdd": 12031, + "1653c67c602403333d94dd921737ce8e": 12032, + "31de2d3eeb556034f322aa06453cf0d1": 12032, + "69fa9fb02b9fe054c98d9dee8729ce92": 12033, + "eee9ad69cc7b25a4ce0f0392eaaf2f94": 12033, + "68c49e3c1c365e44323e50ea159a6e6f": 12034, + "45993c7ce69179f7086abc11ca414639": 12035, + "bcdeb242322af6d883799bd46d874d62": 12035, + "7a9e2fba2f949c98c0dadbbad7ae09a1": 12036, + "99f1459f643a1abb0fd8b1c2e806aaa8": 12040, + "a70d170934874ba157ef5d9ba73fe667": 12040, + "476bcc5adcac540638c9be39f017ffbb": 12049, + "7007a91dd5b0e797a63ad8527b73f108": 12052, + "85712af9f7cc2ed48da39f14379e7756": 12084, + "6917407020977114942fec31ab56184d": 12104, + "891118a73716e769ba535e2f59247fbe": 12104, + "94f40cd22046f82f39831d7ce1572c61": 12152, + "8eaf95929427abcecd6d57babe80c643": 12154, + "9ee40dc7f7869a5393f7b049fd81aa11": 12154, + "0a9374acd05251a6b904092cca0a7554": 12173, + "3ddedc5f069dff75065f9ef75e5b8f54": 12178, + "5a582ef17d6a088d9cb644e4c1ea3cdd": 12183, + "6a0e8b74ae316ad680a2cc6ba07baee7": 12183, + "e3ad3ba2734c6866e7d6903ba113a375": 12183, + "64d1f88b9b276aece4b0edcc25b7a434": 12192, + "7775842918a8f43b7f3caf433e8327b7": 12192, + "344f706dd7fa89df2b38166b5f300c48": 12210, + "d77085d7b7027441353a78779dd69c17": 12210, + "38e530be656a4e14b31e709c0502e4ec": 12211, + "505481ca77e38c86b36b118433011a39": 12211, + "2061bac208c7bdd2665fbf4b7067e468": 12214, + "bf8e12d9c01322c7dfc05425f6a10ced": 12214, + "3756f4c9114d3c0af1fdcdcd67bbfa59": 12230, + "0bef9fa16cd52606f5c7b4363e726085": 12247, + "e0d17d88ad08e13d3a2cd4ef38f7c4d5": 12248, + "22546437e131e9c4c1acd32ee28c5c53": 12255, + "25909c40b4cd53fea6a806bf334bb3f0": 12255, + "0321dd1f8f8113fe4c2a558d67567f0e": 12266, + "2cd218a58638cd4ca02aee6511bdf835": 12298, + "fb5485bf674f4b24a2fe84a184ceba9c": 12298, + "811b4a59b7163b53b663ce7a0209469a": 12310, + "1380a4e5e4e91a812a86b9f925fa6581": 12322, + "49608f90881c51825b3bd2c414f21fba": 12323, + "6cf2650032fbe6a5dae3df1825f33540": 12342, + "9ea695f8a32ddd4d0366990a99812bff": 12342, + "1a5235c012c18789e81960333a76cd7a": 12364, + "02f6b54be05c7927e0794b73a942f909": 12379, + "3062538fc1a23d3cf8b1390c18a828bf": 12431, + "bd7722a998dbb4cfed80080088f3d4c2": 12431, + "cbb42a149068655211736d9274ac519c": 12514, + "cee8c9264320a0b32eb4efb1496e5c2b": 12543, + "401fa29e9f7cb9ffb490f9984ba7086b": 12662, + "78883dde65ba8ffb3b7801aab9fefea7": 12662, + "193e47e4c332a32fada099d99d40f32b": 12663, + "d297c3136b7131586b65b63b53e62b91": 12663, + "d32b94ad2780e0de66615bb2effae910": 12708, + "d946e070ea1a49ae246c8abc169e6a9c": 12708, + "f1170bcbe7bc8fffdb76dc390052aed1": 12708, + "6a3e4ce1faaf6448cd8b11cfdb930065": 12734, + "e8d35aa4568a00a9f3b8b03984b1ba38": 12741, + "6fce0b952d5398f99ddb040344310f65": 12792, + "deff1024b8ce1c7f02c4ea5fe26c95bb": 12792, + "cbba5a255ac88f685bdd8f37248e08cb": 12816, + "ed6b61fc3c23bab78e12cf3b49f6df9f": 13566, + "4af3f971f26f1e78fa672da2312bb861": 13761, + "504d6fc6bb4a767eca363474d9bb644d": 13762, + "5d43cd3332f65ceb9f9a9f780408f730": 13762, + "62726b181c25c497d2f2a9f28ed125cc": 13762, + "80252956725fdad94a2133d7b60d977a": 13762, + "db42d9fb2f27e14ea4d97a0bd5aa2c67": 13767, + "5e38e0ffa34dafe5053110568dc0cd3f": 13770, + "057827b74ba1259423d9c00de10b4300": 13784, + "f9d2719b2430d598bc155a58b4be0e3c": 13784, + "3160045ee842fc9ab77b96e32e98fa34": 13794, + "86a5e87842b12616c52f467f5693348f": 13796, + "247d7dc079da278eceafc4a0569268a1": 13799, + "71584ce454046d8b5c63ce863e8b6a42": 13802, + "f39ab67bb4de0ca120e7ecd5117b2396": 13802, + "13b4d77d6491b9bfb59d7841986d5ea4": 13808, + "4aabbb8e749d640b6d037693ba8c7f33": 13808, + "39a754c03464c2d58a8dd815cad61962": 13811, + "4c56ad041c708f398cf553591d81caa1": 13811, + "cc7d39b1ffe850ce8aa1f7842a6ee1e6": 13812, + "5caaadf5adfae76fa3e965ecb4fb4196": 14880, + "fc90e8404f7907342d5eaeb7068ac489": 15003, + "6ad8536215968eb1f3494143392c77bf": 15086, + "14e7c5aef8b731fc89df34e1bf5fb355": 15125, + "3a52b4df8e783220943a54cf31ccde72": 15207, + "71b0dbe1d874e69211596b6c69e49d00": 15207, + "7998964cb9535ea6f1b179d05ce1c818": 15207, + "95d7ba2539c81661b2ac8c5844266b0c": 15207, + "b1f28005494c5c2a58ac92b5b78d4eeb": 15207, + "d5d9404e6e3dba04bb3f8db697d4ad46": 15207, + "f9d39017ba0e348098c2d572c400d349": 15207, + "9a18cd4fc9e220a3ff75cf72806d1589": 15791, + "7b8ee99d755c0f48c919b2ea1667bc84": 15881, + "b668a7fc1d94493f367431cca54de5ad": 16492, + "1ff635b6dd49c1b03bb02c35c3823cf6": 4845, + "6fea1b51387e327e43e06222b2755b4e": 4845, + "d68fed6d32c4252699e598d07c816371": 4845, + "fa44835d0ed33e8aa3b6b8964ec77bfd": 5645 + } +} diff --git a/data/atari2600_hascheevos.txt b/data/atari2600_hascheevos.txt new file mode 100644 index 0000000..e6b6deb --- /dev/null +++ b/data/atari2600_hascheevos.txt @@ -0,0 +1,87 @@ +11191:true:"Pitfall!" +11439:true:"Seaquest" +11536:true:"~Homebrew~ Wall Jump Ninja" +11611:true:"H.E.R.O." +11684:true:"Space Invaders" +11685:true:"Desert Falcon" +11687:true:"Asteroids" +11690:true:"Pole Position" +11694:true:"Bank Heist" +11695:true:"~Homebrew~ Princess Rescue" +11697:true:"Pepsi Invaders | Coke Wins" +11699:true:"Dragonstomper" +11710:true:"E.T. - The Extra-Terrestrial" +11715:true:"Venetian Blinds Demo" +11718:true:"Taz" +11725:true:"Mouse Trap" +11776:true:"~Homebrew~ Halo 2600" +11778:true:"Adventure" +11779:true:"Math Gran Prix" +11786:true:"Q-Bert" +11793:true:"Mr. Do!" +11803:true:"~Homebrew~ Zippy the Porcupine" +12722:true:"Custer's Revenge" +12735:true:"Kaboom!" +12765:true:"Pressure Cooker" +12773:true:"Berzerk" +12795:true:"~Homebrew~ Flappy" +12813:true:"Chopper Command" +12900:true:"Enduro" +12902:true:"Acid Drop" +12905:true:"Basic Math" +12908:true:"Tapper" +12912:true:"Boxing" +12991:true:"Bowling" +13001:true:"Kangaroo" +13006:true:"Freeway" +13008:true:"Joust" +13014:true:"Galaxian" +13023:true:"~Prototype~ Xevious" +13061:true:"Midnight Magic" +13062:true:"Video Pinball" +13070:true:"Star Wars: The Empire Strikes Back" +13072:true:"Road Runner" +13092:true:"Sneak 'n Peek" +13093:true:"~Prototype~ Texas Chainsaw Massacre, The" +13094:true:"Pac-Man" +13095:true:"Donkey Kong" +13097:true:"Bumper Bash" +13138:true:"~Prototype~ Battlezone" +13140:true:"~Homebrew~ Go Fish!" +13141:true:"~Homebrew~ Tetris26" +13142:true:"Skiing" +13147:true:"Towering Inferno" +13151:true:"~Homebrew~ Pac-Man 4K" +13152:true:"~Homebrew~ Video Simon" +13154:true:"~Homebrew~ INV+" +13170:true:"Missile Command" +13208:true:"Activision Decathlon, The" +13211:true:"Keystone Kapers" +13213:true:"Pitfall II: Lost Caverns" +13214:true:"Smurfs: Rescue in Gargamel's Castle" +13222:true:"MegaMania" +13223:true:"Raiders of the Lost Ark" +13278:true:"Halloween" +13327:true:"3-D Tic-Tac-Toe" +13336:true:"Star Wars: Jedi Arena" +13378:true:"Frostbite" +13456:true:"~Homebrew~ Sheep It Up!" +13457:true:"~Homebrew~ Amoeba Jump" +14260:true:"Ms. Pac-Man" +14361:true:"Squeeze Box" +14402:true:"Dragster" +14426:true:"Human Cannonball | Cannon Man" +14686:true:"~Homebrew~ Angry Video Game Nerd K.O. Boxing, The" +14693:true:"~Homebrew~ Oystron" +14725:true:"~Homebrew~ Snake" +16052:true:"Robin Hood" +16259:true:"Commando" +16271:true:"Gangster Alley" +16277:true:"Air Raid" +16290:true:"Sky Skipper" +16305:true:"Ghostbusters" +16346:true:"Congo Bongo" +16348:true:"Haunted House" +16352:true:"Kung-Fu Master" +16405:true:"Roc 'n Rope" +3948:true:"Beamrider" diff --git a/data/atari2600_hashlibrary.json b/data/atari2600_hashlibrary.json new file mode 100644 index 0000000..1d8d0af --- /dev/null +++ b/data/atari2600_hashlibrary.json @@ -0,0 +1,117 @@ +{ + "Success": true, + "MD5List": { + "3E90CF23106F2E08B2781E41299DE556": 11191, + "f73d2d0eff548e8fc66996f27acf2b4b": 11191, + "240bfbac5163af4df5ae713985386f92": 11439, + "2489359c38551a1d96cbaa4e52d8bb30": 11536, + "3c56c0c5f6f97850ed0aa7bcc2a4e30e": 11536, + "66b92ede655b73b402ecd1f4d8cd9c50": 11611, + "fca4a5be1251927027f2c24774a02160": 11611, + "72ffbef6504b75e69ee1045af9075f66": 11684, + "fd4f5536fd80f35c64d365df85873418": 11685, + "ccbd36746ed4525821a8083b0d6d2c2c": 11687, + "dd7884b4f93cab423ac471aa1935e3df": 11687, + "5f39353f7c6925779b0169a87ff86f1e": 11690, + "a4ff39d513b993159911efe01ac12eba": 11690, + "00ce0bdd43aed84a983bef38fe7f5ee3": 11694, + "104468e44898b8e9fa4a1500fde8d4cb": 11695, + "212d0b200ed8b45d8795ad899734d7d7": 11697, + "90ccf4f30a5ad8c801090b388ddd5613": 11699, + "615a3bf251a38eb6638cdc7ffbde5480": 11710, + "d08fccfbebaa531c4a4fa7359393a0a9": 11715, + "7574480ae2ab0d282c887e9015fdb54c": 11718, + "5678ebaa09ca3b699516dba4671643ed": 11725, + "4afa7f377eae1cafb4265c68f73f2718": 11776, + "157bddb7192754a45372be196797f284": 11778, + "4b27f5397c442d25f0c418ccdacf1926": 11778, + "470878b9917ea0348d64b5750af149aa": 11779, + "484b0076816a104875e00467d431c2d2": 11786, + "0164f26f6b38a34208cd4a2d0212afc3": 11793, + "457b03cd48ff6d895795ef043c6b0f1e": 11803, + "58513bae774360b96866a07ca0e8fd8e": 12722, + "5428cdfada281c569c74c7308c7f2c26": 12735, + "97d079315c09796ff6d95a06e4b70171": 12765, + "136f75c4dd02c29283752b7e5799f978": 12773, + "2d33a44e82f88d05f6c50577218c0cae": 12795, + "c1cb228470a87beb5f36e90ac745da26": 12813, + "94b92a882f6dbaa6993a46e2dcc58402": 12900, + "17ee23e5da931be82f733917adcb6386": 12902, + "819aeeb9a2e11deb54e6de334f843894": 12905, + "c0d2434348de72fa6edcc6d8e40f28d7": 12908, + "277cca62014fceebb46c549bac25a2e3": 12912, + "c3ef5c4653212088eda54dc91d787870": 12912, + "c9b7afad3bfd922e006a6bfc1d4f3fe7": 12991, + "4326edb70ff20d0ee5ba58fa5cb09d60": 13001, + "8e0ab801b1705a740b476b7f588c6d16": 13006, + "3276c777cbe97cdd2b4a63ffc16b7151": 13008, + "640a08e9ca019172d612df22a9190afb": 13008, + "211774f4c5739042618be8ff67351177": 13014, + "24385ba7f5109fbe76aadc0a375de573": 13023, + "c6688781f4ab844852f4e3352772289b": 13023, + "da732c57697ad7d7af414998fa527e75": 13061, + "f1554569321dc933c87981cf5c239c43": 13061, + "107cc025334211e6d29da0b6be46aec7": 13062, + "6e59dd52f88c00d5060eac56c1a0b0d3": 13062, + "3c8e57a246742fa5d59e517134c0b4e6": 13070, + "2bd00beefdb424fa39931a75e890695d": 13072, + "ce5cc62608be2cd3ed8abd844efb8919": 13072, + "9c6faa4ff7f2ae549bbcb14f582b70e4": 13092, + "5eeb81292992e057b290a5cd196f155d": 13093, + "6e372f076fb9586aff416144f5cfe1cb": 13094, + "36b20c427975760cb9cf4a47e41369e4": 13095, + "1bf503c724001b09be79c515ecfcbd03": 13097, + "aa1c41f86ec44c0a44eb64c332ce08af": 13097, + "41f252a66c6301f1e8ab3612c19bc5d4": 13138, + "1b64dbaba6bbc1d428e59f088e8018e7": 13140, + "787a2faebadc670a887a0e2483b8f034": 13140, + "0279a63d922163da5a4fde76397f3fe0": 13141, + "b76fbadc8ffb1f83e2ca08b6fb4d6c9f": 13142, + "0aa208060d7c140f20571e3341f5a3f8": 13147, + "6e88da2b704916eb04a998fed9e23a3e": 13151, + "16f494f20af5dc803bc35939ef924020": 13152, + "9ea8ed9dec03082973244a080941e58a": 13154, + "3a2e2d0c6892aa14544083dfb7762782": 13170, + "525f2dfc8b21b0186cff2568e0509bfc": 13208, + "883258dcd68cefc6cd4d40b1185116dc": 13208, + "ede4ab11ca346bd023b2c21d941e0c50": 13208, + "4fbe0f10a6327a76f83f83958c3cbeff": 13211, + "be929419902e21bd7830a7a7d746195d": 13211, + "6d842c96d5a01967be9680080dd5be54": 13213, + "3d1e83afdb4265fa2fb84819c9cfd39c": 13214, + "318a9d6dda791268df92d72679914ac3": 13222, + "1cafa9f3f9a2fce4af6e4b85a2bbd254": 13223, + "f724d3dd2471ed4cf5f191dbb724b69f": 13223, + "30516cfbaa1bc3b5335ee53ad811f17a": 13278, + "0db4f4150fecf77e4ce72ca4d04c052f": 13327, + "e3600be9eb98146adafdc12d91323d0f": 13327, + "05b45ba09c05befa75ac70476829eda0": 13336, + "c9f6e521a49a2d15dac56b6ddb3fb4c7": 13336, + "4ca73eb959299471788f0b685c3ba0b5": 13378, + "1f6267db16ffeb90ba48890d5f84ac9e": 13456, + "8debebc61916692e2d66f2edf4bed29c": 13456, + "da3f54e89b54b0a2391d0513ab8c9861": 13456, + "0c72cc3a6658c1abd4b735ef55fa72e4": 13457, + "539f3c42c4e15f450ed93cb96ce93af5": 13457, + "87e79cd41ce136fd4f72cc6e2c161bee": 14260, + "ba257438f8a78862a9e014d831143690": 14361, + "77057d9d14b99e465ea9e29783af0ae3": 14402, + "7972e5101fa548b952d852db24ad6060": 14426, + "6a7e6fc102bf7459f89419c548a79e2c": 14686, + "5360693f1eb90856176bd1c0a7b17432": 14693, + "91f0a708eeb93c133e9672ad2c8e0429": 14693, + "bd81069d0945f26d7ff753767208c305": 14725, + "72a46e0c21f825518b7261c267ab886e": 16052, + "dd7598b8bcb81590428900f71b720efb": 16052, + "5d2cc33ca798783dee435eb29debf6d6": 16259, + "20edcc3aa6c189259fa7e2f044a99c49": 16271, + "35be55426c1fec32dfb503b4f0651572": 16277, + "3b91c347d8e6427edbe942a7a405290d": 16290, + "e314b42761cd13c03def744b4afc7b1b": 16305, + "00b7b4cbec81570642283e7fc1ef17af": 16346, + "f0a6e99f5875891246c3dbecbf2d2cea": 16348, + "5b92a93b23523ff16e2789b820e2a4c5": 16352, + "65bd29e8ab1b847309775b0de6b2e4fe": 16405, + "79ab4123a83dc11d468fb2108ea09e2e": 3948 + } +} diff --git a/data/atari7800_hascheevos.txt b/data/atari7800_hascheevos.txt new file mode 100644 index 0000000..b2e9431 --- /dev/null +++ b/data/atari7800_hascheevos.txt @@ -0,0 +1,6 @@ +13352:true:"Ninja Golf" +13354:true:"Donkey Kong" +13364:true:"Joust" +13368:true:"Ms. Pac-Man" +13371:true:"Rampage" +13372:true:"Robotron 2084" diff --git a/data/atari7800_hashlibrary.json b/data/atari7800_hashlibrary.json new file mode 100644 index 0000000..4819ef4 --- /dev/null +++ b/data/atari7800_hashlibrary.json @@ -0,0 +1,14 @@ +{ + "Success": true, + "MD5List": { + "220121f771fc4b98cef97dc040e8d378": 13352, + "bb551483d114dcc5bae7aaa892ee856a": 13352, + "19f1ee292a23636bd57d408b62de79c7": 13354, + "35eabe5b952a4f733b904f73511f884d": 13354, + "6acb6db87bd24ab7eecdbef2f206b384": 13364, + "12a6483c57d2060d1d07eed2f4cb63dd": 13368, + "fc0ea52a9fac557251b65ee680d951e5": 13368, + "ac03806cef2558fc795a7d5d8dba7bc0": 13371, + "66ecaafe1b82ae68ffc96267aaf7a4d7": 13372 + } +} diff --git a/data/atarilynx_hascheevos.txt b/data/atarilynx_hascheevos.txt new file mode 100644 index 0000000..32d9d1d --- /dev/null +++ b/data/atarilynx_hascheevos.txt @@ -0,0 +1,7 @@ +10596:true:"Chip's Challenge" +10598:true:"Ms. Pac-Man" +10997:true:"Switchblade II" +11473:true:"Rygar: Legendary Warrior" +11492:true:"~Prototype~ Marlboro Go!" +12858:true:"Robotron 2084" +13040:true:"Shanghai" diff --git a/data/atarilynx_hashlibrary.json b/data/atarilynx_hashlibrary.json new file mode 100644 index 0000000..8733e94 --- /dev/null +++ b/data/atarilynx_hashlibrary.json @@ -0,0 +1,12 @@ +{ + "Success": true, + "MD5List": { + "24611d1445ebd34ab79fb0ae996ff4e4": 10596, + "192b6b764a3a1c7831e0a785fa4b5453": 10598, + "4971dd8b47d3475dc8d31b5325c14459": 10997, + "ff6fff314446ab70dfecb21e2de4a2f6": 11473, + "194a3eeb876d2b74cc480f4d337d79b3": 11492, + "60c1dfbf112bbb2a49cf16eddb191842": 12858, + "46634eb87e6380d4d10f7b80d177c1ff": 13040 + } +} diff --git a/data/coleco_hascheevos.txt b/data/coleco_hascheevos.txt new file mode 100644 index 0000000..70319c6 --- /dev/null +++ b/data/coleco_hascheevos.txt @@ -0,0 +1,3 @@ +12769:true:"Time Pilot" +13488:true:"Venture" +14471:true:"~Homebrew~ Sudoku" diff --git a/data/coleco_hashlibrary.json b/data/coleco_hashlibrary.json new file mode 100644 index 0000000..22e1827 --- /dev/null +++ b/data/coleco_hashlibrary.json @@ -0,0 +1,9 @@ +{ + "Success": true, + "MD5List": { + "91c7b5d4ea94092f6e18da4775656d4b": 12769, + "ad22023a11a3bcb107610d2af5a6be77": 13488, + "94476e431aca0f9590964d6797d5dee9": 14471, + "e34e775b40367815197dc4086aab2f89": 14471 + } +} diff --git a/data/gamegear_hascheevos.txt b/data/gamegear_hascheevos.txt new file mode 100644 index 0000000..e8fb202 --- /dev/null +++ b/data/gamegear_hascheevos.txt @@ -0,0 +1,39 @@ +11711:true:"Crystal Warriors" +11712:true:"GG Shinobi II, The: The Silent Fury" +11743:true:"Tails Adventure | Tails Adventures" +12385:true:"GG Shinobi, The" +12516:true:"Berenstain Bears' Camping Adventure, The" +12517:true:"Sylvan Tale" +12524:true:"Tama and Friends Sanchoume Kouen: Tamalympic" +12564:true:"Wonder Boy" +12619:true:"Bishoujo Senshi Sailor Moon S" +12622:true:"Double Dragon" +12623:true:"Ninja Gaiden" +12630:true:"Mahou Kishi Rayearth" +12633:true:"Mega Man" +12638:true:"Shining Force Gaiden: Ensei Jaishin no Kuni e" +12639:true:"Shining Force: The Sword of Hajya | Shining Force Gaiden II: Jashin no Kakusei" +12640:true:"Shining Force Gaiden: Final Conflict" +12645:true:"Sonic the Hedgehog Chaos | Sonic & Tails" +12646:true:"Sonic the Hedgehog: Triple Trouble | Sonic & Tails 2" +12647:true:"Sonic Labyrinth" +12651:true:"Sonic the Hedgehog" +12652:true:"Sonic the Hedgehog 2" +12673:true:"Royal Stone: Hirakareshi Toki no Tobira" +12737:true:"Mortal Kombat II" +12763:true:"Tails' Skypatrol" +12768:true:"Dragon Crystal" +12835:true:"Spider-Man: Return of the Sinister Six" +12846:true:"Jurassic Park" +12847:true:"Lost World, The: Jurassic Park" +12884:true:"Phantasy Star Gaiden" +12907:true:"Smurfs, The" +13105:true:"Panzer Dragoon Mini" +13238:true:"Chuck Rock" +13397:true:"Aladdin" +13407:true:"Prince of Persia" +14330:true:"Ninku Gaiden: Hiroyuki Daikatsugeki" +14723:true:"~Prototype~ Crazy Faces" +15544:true:"Last Action Hero" +17035:true:"GG Portrait: Pai Chan" +17036:true:"GG Portrait: Yuuki Akira" diff --git a/data/gamegear_hashlibrary.json b/data/gamegear_hashlibrary.json new file mode 100644 index 0000000..6a5098e --- /dev/null +++ b/data/gamegear_hashlibrary.json @@ -0,0 +1,57 @@ +{ + "Success": true, + "MD5List": { + "35d3fc09fcf22e35db4bac8cee9967f3": 11711, + "48d741774004eab9c19c1dd43758bf2b": 11712, + "6951fb3b2d7cb6272e7e305324b5ffbb": 11743, + "a8bdb1beed088ff83c725c5af6b85e1f": 11743, + "21d2e4e7c508e6abbb12bb96c7aac868": 12385, + "0063255819682649ed682a50a0e8a440": 12516, + "2c802c2e6a61509309a76f76e4e947f7": 12517, + "6657230e92f13ed98474523efc29d6b3": 12517, + "ac7aebc91fc607150ad8dbf286a61e36": 12524, + "917c3e4f4c50d6506e64e2f05b945d9c": 12564, + "33ca01d639aef0b2fecf2d059175abbe": 12619, + "e3f4a587902a5010539a4f86db93c0c2": 12619, + "b45d73e40ce8f6e76dced24ee921871a": 12622, + "41d1ede8ab1ce9940b61c8fa1fc6724d": 12623, + "764388b8b5dc2e762fab9badd0eca6ba": 12623, + "846d48d0f4024c8094117599d0e1eef1": 12630, + "b9b1a0f7d84c6d01fa53c56d87d23d53": 12630, + "8583950be61ffbaf0f63dde8dded2ab3": 12633, + "8eafd80d35251b5d3f07d5cae27241c1": 12638, + "0a0fa9cbcc3db467191e907794c8c02b": 12639, + "8857422e565412a59c77cb29550715e4": 12639, + "35ef27f6b4b4ddc4a6ad6c78db8c890b": 12640, + "abdef9e89d2963c70c5573d37edd9d9d": 12640, + "895ca34f733c445341e5ca1642527690": 12645, + "aac8371d2179295159c73ae2cb92892d": 12645, + "05f5b6201ccece80facaf99fa7cf5a6e": 12646, + "f0f7e4dfe2908f0030e64fd9ed843422": 12646, + "aa6598585b2cdb92a14476beeb34991b": 12647, + "8a95b36139206a5ba13a38bb626aee25": 12651, + "9c64846563d8b9a24400471322e53fb5": 12652, + "0e3fecf6ebb236531743fcef29ed7f64": 12673, + "c05b51ea07c8017a6d12badaea9daf29": 12673, + "159256f5a372f2e409ecb343a3946001": 12737, + "ffb364bbaf72881cf7571e7ec388490d": 12763, + "8431baccd169025f79c9cbc44e31622d": 12768, + "aba3b030ca9c78288f74ddd02c7ab5ab": 12835, + "a3158baab261c5ddbcd4328d01e33a94": 12846, + "68d9f394bf0dd0382a8052e60b3b8a1b": 12847, + "39aa719b13cd1c50c30232cf5ac80059": 12884, + "54be96ca21885145108f1c02e4d88eba": 12884, + "ba091114cbc5a4b3482e6887094070bb": 12884, + "c8337c47ed211075b9acf4867d8c0e18": 12907, + "4d0d6d25dfef7e1a509d828f157d515f": 13105, + "86a3221d3d74133c84f658939fd6e928": 13238, + "1ab3a94109af90a333a68479a02a5643": 13397, + "258abbcd90fe78e19c53c39ce9150106": 13397, + "0d636c8d86dafd4f2c337e34e94b1e41": 13407, + "e9b45d6455e0753b8e0e825a36458253": 14330, + "0336bd86c59096a6b9a069ec0ddd94b2": 14723, + "153243555c10f79ccfc854945472e5ed": 15544, + "3dbd51ce27c7eeee98aaeccdb96affb6": 17035, + "82d3c23cf9617174aa47bed8e76438df": 17036 + } +} diff --git a/data/gb_hascheevos.txt b/data/gb_hascheevos.txt new file mode 100644 index 0000000..20651a0 --- /dev/null +++ b/data/gb_hascheevos.txt @@ -0,0 +1,201 @@ +10204:true:"Wave Race" +10666:true:"Blues Brothers, The" +11632:true:"~Bonus~ Pokemon - Red and Blue Versions" +12745:true:"~Prototype~ Pokemon - Gold Version / Silver Version" +13410:true:"~Homebrew~ Dino's Offline Adventure" +13411:true:"~Homebrew~ Tobu Tobu Girl" +1394:true:"Judge Dredd" +1395:true:"Motocross Maniacs" +14178:true:"~Hack~ Super Mario Land 2012" +14179:true:"~Hack~ Super Mario Land X" +14223:true:"~Hack~ Super Super Mario Land" +14338:true:"Pingu: Sekai de Ichiban Genki na Penguin" +16189:true:"~Hack~ Mario's Picross X" +16278:true:"~Homebrew~ DMG Deals Damage" +16366:true:"~Homebrew~ Deadeus" +16520:true:"~Unlicensed~ Super Mario 4" +16548:true:"~Hack~ Pokemon - Little Cup Red" +17034:true:"~Homebrew~ Binding of Isaac, The: Game Boy Edition" +17053:true:"~Homebrew~ Deep Forest" +2118:true:"Bomb Jack" +2180:true:"Trip World" +2184:true:"Balloon Kid" +2210:true:"Gremlins 2: The New Batch" +2211:true:"Battletoads" +2223:true:"Kirby's Star Stacker" +2231:true:"Kid Dracula" +2251:true:"Mega Man II" +2253:true:"Mega Man: Dr. Wily's Revenge" +2255:true:"Mega Man V" +2265:true:"Adventure Island" +2384:true:"Bomberman GB | Bomber Man GB 2" +2403:true:"Final Fantasy Adventure" +2409:true:"King of Fighters '95, The" +2411:true:"Gargoyle's Quest: Ghosts 'n Goblins" +2436:true:"Ganso!! Yancha-Maru" +2450:true:"Mario's Picross" +2454:true:"Megalit" +2455:true:"Maru's Mission" +2460:true:"Kwirk" +2461:true:"Simpsons, The: Itchy and Scratchy - Miniature Golf Madness" +2465:true:"Bust-A-Move 2: Arcade Edition" +2473:true:"SD Lupin III: Kinko Yaburi Daisakusen" +2475:true:"Looney Tunes" +2477:true:"Mole Mania" +2478:true:"Final Fantasy Legend" +2479:true:"Final Fantasy Legend II" +2486:true:"Yogi Bear's Gold Rush" +2488:true:"Saigo no Nindou: Ninja Spirit" +2494:true:"Punisher, The: The Ultimate Payback" +2498:true:"Tiny Toon Adventures: Babs' Big Break" +2548:true:"Nail 'n Scale" +2552:true:"Chase H.Q." +2558:true:"Snoopy's Magic Show" +2560:true:"Simpsons, The: Bart and the Beanstalk" +2561:true:"Ninja Gaiden Shadow" +2572:true:"Alfred Chicken" +2573:true:"Mickey Mouse: Magic Wands!" +3329:true:"Speedy Gonzales" +3575:true:"Pipe Dream" +3606:true:"Felix the Cat" +3609:true:"Banishing Racer" +3615:true:"Fist of the North Star" +3617:true:"Hammerin' Harry: Ghost Building Company" +3619:true:"Ghostbusters II" +3622:true:"Adventures of Star Saver, The" +3623:true:"Aerostar" +3624:true:"Adventures of Lolo" +3651:true:"Mr. Nutz" +3661:true:"Asterix" +3669:true:"RoboCop 2" +3678:true:"Batman: The Video Game" +3680:true:"Bill & Ted's Excellent Game Boy Adventure" +3687:true:"Mickey's Dangerous Chase" +3688:true:"Pierre le Chef Is... Out to Lunch" +3696:true:"Darkwing Duck" +3704:true:"Parodius Da!" +3821:true:"~Homebrew~ Waifu Clicker" +4059:true:"Lock n' Chase | Lock 'n Chase" +4065:true:"Amazing Spider-Man, The" +4069:true:"Avenging Spirit" +4089:true:"Baby T-Rex" +4095:true:"Beavis and Butt-head" +4149:true:"Flintstones, The" +4150:true:"Garfield Labyrinth" +4211:true:"Miracle Adventure of Esparks: Ushinawareta Seiseki Perivron" +4214:true:"Out of Gas" +4384:true:"Battleship" +4404:true:"Yoshi's Cookie" +4588:true:"Franky, Joe & Dirk: On the Tiles" +4589:true:"Pac-in-Time" +4643:true:"Battle Unit Zeoth" +4697:true:"Booby Boys" +4714:true:"Water World" +4715:true:"Wayne's World" +4745:true:"Joe and Mac: Caveman Ninja" +4882:true:"Wario Blast: Featuring Bomberman!" +4890:true:"Lucle" +4917:true:"Super R.C. Pro-Am" +4931:true:"Addams Family, The: Pugsley's Scavenger Hunt" +4934:true:"Addams Family, The" +4937:true:"~Prototype~ Adventures of Pinocchio, The" +4938:true:"After Burst" +4947:true:"Alien 3" +4963:true:"Stop That Roach!" +4967:true:"QIX" +4983:true:"Oddworld Adventures" +5013:true:"Castlevania II: Belmont's Revenge" +5023:true:"Mega Man III" +504:true:"Super Mario Land" +5045:true:"Kaeru no Tame ni Kane wa Naru | For the Frog the Bell Tolls" +508:true:"Tetris" +511:true:"Double Dragon" +5137:true:"Castlevania Legends" +5203:true:"Teenage Mutant Ninja Turtles III: Radical Rescue" +521:true:"Metroid II: Return of Samus" +5215:true:"Detective Conan: The Underground Amusement Park Murder Case" +522:true:"Duck Tales" +523:true:"Double Dragon II" +5251:true:"Power Racer" +5252:true:"Solar Striker" +5257:true:"Othello" +5378:true:"Jurassic Park" +5389:true:"Nettou Real Bout Fatal Fury Special" +540:true:"Super Mario Land 2: 6 Golden Coins" +549:true:"Bart Simpson's Escape from Camp Deadly" +550:true:"RoboCop" +5591:true:"~Homebrew~ Dangan GB" +5601:true:"Duck Tales 2" +5603:true:"Nintendo World Cup" +5737:true:"Great Greed" +5937:true:"Pinball: Revenge of the Gator" +5940:true:"Shaq-Fu" +5955:true:"Bust-A-Move 3 DX" +6075:true:"Operation C" +6127:true:"Bubble Ghost" +6149:true:"Aladdin" +6263:true:"Tintin in Tibet" +6298:true:"BattleCity" +6316:true:"WWF King of the Ring" +6357:true:"Cave Noire" +6435:true:"Bionic Commando" +6442:true:"Boxxle" +6443:true:"Boxxle II" +6445:true:"Burai Fighter Deluxe" +6447:true:"Buster Bros. | Buster Brothers | Pang" +6460:true:"Dr. Franken" +6481:true:"Kung-Fu Master" +6484:true:"Little Mermaid, The" +6500:true:"Sneaky Snakes" +6621:true:"Mario's Picross 2" +6630:true:"Cool Ball" +6640:true:"Flipull" +6684:true:"~Hack~ Pokemon - Strike" +669:true:"Legend of Zelda, The: Link's Awakening" +6690:true:"~Hack~ Pokemon - Blue Kaizo" +6695:true:"Undercover Cops Gaiden: Hakaishin Garumaa" +6712:true:"Mighty Morphin Power Rangers" +680:true:"Game & Watch Gallery" +682:true:"Alleyway" +689:true:"Castlevania: The Adventure" +690:true:"Contra: The Alien Wars" +6906:true:"Daedalian Opus" +692:true:"Donkey Kong" +693:true:"Donkey Kong Land" +694:true:"Donkey Kong Land 2" +695:true:"Donkey Kong Land III" +696:true:"Dr. Mario" +698:true:"Dragon's Lair: The Legend" +700:true:"Final Fantasy Legend III" +704:true:"Kid Icarus: Of Myths and Monsters" +7040:true:"Tetris Blast" +706:true:"Kirby's Dream Land" +707:true:"Kirby's Dream Land 2" +708:true:"Kirby's Pinball Land" +7080:true:"Nettou The King of Fighters '96" +7119:true:"Micro Machines" +712:true:"Mega Man IV" +715:true:"Mighty Morphin Power Rangers: The Movie" +716:true:"Mortal Kombat" +717:true:"Mortal Kombat II" +720:true:"Penguin Wars | King of the Zoo" +723:true:"Pokemon - Yellow Version" +724:true:"Pokemon - Red and Blue Versions" +729:true:"Space Invaders" +730:true:"Spot: The Video Game" +731:true:"Street Fighter II" +7317:true:"~Hack~ Pokemon - Brown" +733:true:"Sword of Hope, The" +734:true:"Tamagotchi" +735:true:"Teenage Mutant Ninja Turtles: Fall of the Foot Clan" +736:true:"Teenage Mutant Ninja Turtles II: Back From the Sewers" +739:true:"Super Mario Land 3: Wario Land" +740:true:"Wario Land II" +743:true:"Yoshi" +7446:true:"Game Boy Gallery" +7456:true:"~Bonus~ Little Mermaid, The" +7590:true:"~Hack~ Pokemon - Grape" +7596:true:"~Bonus~ Super Mario Land" +7887:true:"~Homebrew~ Snake" +8361:true:"Jurassic Park 2: The Chaos Continues" +9026:true:"~Prototype~ Diablo | Diablo Junior" diff --git a/data/gb_hashlibrary.json b/data/gb_hashlibrary.json new file mode 100644 index 0000000..a453616 --- /dev/null +++ b/data/gb_hashlibrary.json @@ -0,0 +1,371 @@ +{ + "Success": true, + "MD5List": { + "10fd41703b816fcb2a3d6766574b98f9": 10204, + "ceaedf86193a8708a8a67e0e472b57fb": 10666, + "25da61b495309bfb4d45ab54918d6135": 11632, + "6e36ce35a35942e17bf9a2544481d8ce": 11632, + "b309021c135c9967bfb2f16911061699": 11632, + "b7711b4c6d3d77567951f4689675918b": 11632, + "8e509301f6db1f89fee85aead8ebf8d4": 12745, + "b791e03946353e8afc0a06975318146f": 12745, + "ee3dcac13383404bd4178b4ca34e7e73": 12745, + "fd3819f2c0a9bc864c9c7eab107d4c7f": 12745, + "41ac9bd50237cbd54f13b50abf30973a": 13410, + "48ea776eace6f2582b70dc965cf2df1f": 13411, + "7e9d69eacd6b4c82527065bcf63e474b": 1394, + "c7f41e40a9e5a9141ca80be614e0907b": 1394, + "dca464649ea6a3969ac8ee834d431d44": 1395, + "de1572d4d181b265e2cb7d517c0ba04a": 1395, + "c6ebf4eb82380e495989ef5f5e62560a": 14178, + "d36f1f89d8b35100168d08daa7746df4": 14179, + "98d8f8ee2569aaecc1e2e5024c234941": 14223, + "4202e3486b95ab9a5718830b2aa9b7f6": 14338, + "c39e609b35ac787ad92404914047d1a1": 16189, + "f7c384e29738c21ef611d45e5d35b4b9": 16278, + "4d07686c9fda0b9ce82b67d8c5ba90ce": 16366, + "1fe5ddbb6502baf81b9cee0ae7446728": 16520, + "7be1c5d093c55b1240d300c4c08de982": 16520, + "98692ad3453bb80fe4d79a7696c036ff": 16520, + "b967638000d61c68bffb97a2107f86c7": 16520, + "d41bab8430a6033ff0c286c6b5f7291e": 16520, + "1ef07bec11e159d0cb8092799c96356a": 16548, + "2554c7f6365dbf59ec1a73f0124a70b4": 17034, + "f5357ab80e3838c58668d9d394962f48": 17053, + "7615154dc9afb1a7d7d2fe63b76c68e4": 2118, + "fe8d2f14121cc43c51c83be03e6678ee": 2118, + "c46e059a69d9b3b4b0b9d8d303c559b3": 2180, + "e0a81dcc3aa0db3896c6f46e0ed3fc80": 2180, + "f70c60ca87714fa9d81be60c9ac93de0": 2184, + "f59dbce4cf5b51a5241806e1b35301fb": 2210, + "6d24c94d3acd89b4b703f7bd2a504833": 2211, + "7bb6d3420a7df1b9874b5cc7b29386b2": 2223, + "cea7920a93f79c0eb32237df1c65c093": 2223, + "f4c0bf35939be6786c099e9eb4635919": 2223, + "24a6b4457a511cc667e9ac25417401ab": 2231, + "7fe07271d04ed9e0bc0663dde55a2ae4": 2251, + "b9cfee05797beb8ff7e259ee77eaf2fb": 2251, + "c05b47df8bdfe770be228e51bc42da84": 2251, + "2c1358474573c9dd38d6a128f4714a86": 2253, + "4ba4398181d98958fa7434ba7716f11a": 2253, + "bb2cc6f800ec53b39cc95e75ae05c5da": 2253, + "d0b1c550250c859f4563165eb29033d6": 2253, + "fed695d2bc3e1801aeeab1c8e573096e": 2253, + "309fc69d5ab1d2b17d0bbc127faf04c1": 2255, + "b53fe06db30ab689153135990354dd5a": 2255, + "ceb17d831b410d91aa41bf2819cbed82": 2255, + "d67e58bf5f39d5fb073fed85c3d9bede": 2265, + "4ab78239e79ba059d0d7aa7a629a9474": 2384, + "6fc5f5680e5e1a4d6378d5abb07e683f": 2384, + "7e4c9c3620bea7b633394beb67e9680b": 2384, + "d1559e92207a8ef8a8b1e58b50723825": 2384, + "24cd3bdf490ef2e1aa6a8af380eccd78": 2403, + "86e1622632b3f81cd61bff1bae03b8b2": 2403, + "3eade561a44103622a0aff7b176d3207": 2409, + "aa9d61a428c592030a88828ae80c8fb2": 2409, + "b68c4141b4c4f778bd13100b9a3db82c": 2409, + "63e3f5f4b90f17bdf6d2f2aed515e248": 2411, + "998addfae6aaff3f956b44484d05aa75": 2436, + "a60df6aeb6820683805be1717097fca8": 2436, + "1614cae88e570523ac657d64ddfd9659": 2450, + "1a0dbcd37ae54fc071dfd77ea922498b": 2450, + "ccaf9331318d4dfe3d1ee681928a74fd": 2450, + "defe3559ef5e8d69ca95289edb6f9f6e": 2450, + "24c5cec170f19493c6013b4ccaee1e35": 2454, + "45b5142059907dbd92aaf3f8d003721b": 2454, + "7f26dd90f8e80b52ead8fc0e3609d4f2": 2455, + "3a4bb57e9fbd4ef563c0c7b59a1c82a5": 2460, + "ed0a8885341ee6a201873b2038c87582": 2461, + "37c69c73c81e221189a672938b5f30ab": 2465, + "fa91adc7023e03f97ec36f66876a569e": 2465, + "4ea04ab8fcea4c41f26e44bb4f50d73e": 2473, + "6e9dd3c1fb169da79292a1962e95a884": 2475, + "beeb3092aec6da08f5a86630207ae87c": 2475, + "4ff223851bc7e3d19acdbf8034e4829f": 2477, + "f28ade3926852a8ad2e449c274683956": 2477, + "d5c27ff8cb1b69cb56df4ff170e2baf0": 2478, + "2bb0df1b672253aaa5f9caf9aab78224": 2479, + "d8d941968ab9fd236f91003b79c82fbf": 2479, + "edd6ce2651b74977bbff376233ff4119": 2479, + "1337510dc9de85723ff1778524c5007f": 2486, + "84fc4878829fdff7d1c6d92c67ae35ea": 2486, + "322965849b9103a3d6906c9697a19c09": 2488, + "84133af3324fc1aaf00c0769e15708c0": 2494, + "1ceb3148a1b68b2ba9eada0393f987fc": 2498, + "cbb45188c780ce5bbdf502ceb2b9994a": 2498, + "521d2aa473f4e740a6938861f70511cc": 2548, + "e35a7210ee45896d7721906478d61e3a": 2548, + "0a96c9c737a07148fd065b3c121dcbb2": 2552, + "6884a31366f565ca25935e1fba52efbc": 2552, + "3d8f6eccc13f3344c8d971b7e141f064": 2558, + "8a06994b2e265244147a4d6d0e80623f": 2558, + "19058077b12ac22580aae17b3dd1233f": 2560, + "13dd6801246da226b0c2db339df4a246": 2561, + "7f896b5e5e27eda1b08251ebe581c885": 2561, + "e12c5c2897ed095f8d26c7578afddfda": 2561, + "b83f3c669d22bc74c72743821ae3aaa3": 2572, + "cac921f8eec70d5ccd8a2db8f473a084": 2572, + "38b65d28ac0bd619f5dee5a45d5fc542": 2573, + "7e1bedf88581ee7370c8eb86c6863e2c": 3329, + "0f021462180b18436c21299e923cca91": 3575, + "d9bacb4b392a0ce4e8f9d29baa916b0b": 3575, + "4120f9c2b32583ff06274c0c2c5dfd8e": 3606, + "4d606ab4ffd5c3d3ecf914a6af1c1f90": 3606, + "8fdffb08770609255ec3cd314f79f976": 3609, + "d309a915021176cd6a49a815b010da4f": 3609, + "c88d94a984afde869426694a3b992894": 3615, + "c9edc6cb63e3c2a91889653af8929ff7": 3615, + "131993b986f3ba1f682d8d74f050487b": 3617, + "d20d4b7e9f7299ac1f59c3130abb6e02": 3617, + "0841a527b116a52ad26de023b20b1a42": 3619, + "37e37fd3f17e85bbc4f0ce604b20813c": 3619, + "4067f70f9def39ceb49a258540ce3d66": 3619, + "10c581e4d5b612831c79724434f93e9f": 3622, + "91ecec5f8d06f18724bd1462b53c4b3d": 3622, + "45260f5a05d34c011baac5cb363491d3": 3623, + "4b4d6e6d4870d36a26e6fe6ad73b0eac": 3623, + "f777a4526089a83ca758efbf01007ec1": 3623, + "5070aaf41d5ae9ee08f988b9aad26af5": 3624, + "8f6b6ef366a787852f664d945c86eb72": 3624, + "7db13139bc32e2aadb732d610f4c1604": 3651, + "812db832566202610bb1e42e643e2b93": 3661, + "c016ae8567a649c17b77171f4fd4dd7f": 3661, + "3eb476d0c6347ce9034246f826866a58": 3669, + "cd84cc505331f6a1d0702bb4a9667cec": 3669, + "dc58a99c6993a511842011722ec57092": 3669, + "03c6d84a951be6703b7458478f4277b9": 3678, + "c57f351fcae735e76189023a78fc0c91": 3678, + "9d94d01d3133165d4469bb27d58f0f6c": 3680, + "16bc18ef00088094e9fad502e613be5e": 3687, + "5ee6e81ec8261c94f41f8e689863f6c8": 3687, + "9cd7f210ae2680349078aca844be5354": 3687, + "b0195767bf5d839e4cc4c837a4709b54": 3687, + "e41aac285898754055eb3f0c3f280ea3": 3688, + "5c837aeba2aa844d4cd34653d4e332ea": 3696, + "7d776329212fa7cc2b00c5a46f06dd92": 3696, + "2e3a0305f79b058cc4618565bc2db745": 3704, + "fd72131f46eaccd71e987489f834c630": 3821, + "8bb31f539e8999d5c4e9449fe1befad6": 4059, + "4a967a8f1dd6f627e8b72950739c26d4": 4065, + "669e9d712ce5c424077ca2deec46f05a": 4069, + "e88eab57ab4614966748280bf3c97f52": 4069, + "f3e92d4ac023390145287945b51c8b61": 4069, + "b9df0bb1f84333a1e5ab4af563525cdc": 4089, + "8f160aa0b2f69a019911fd57ac8c5b31": 4095, + "f07ed24e96f84ce78787709f248263c8": 4149, + "5e441af514d1bcdaec08c133ceea4e5e": 4150, + "64080619789f154ee057f2946a98c61c": 4211, + "0b7cbe56d1cf6370e60699e553d091a1": 4214, + "d4f7ade01af0818a79bc809cf96118bb": 4384, + "bc1a3848092bdc900c157996c29a7783": 4404, + "ea8d9e89565ff9e931118b9ea4712c29": 4588, + "54ef4bb8c3d272af5bb78b4306f37248": 4589, + "e3b7b3649e52ee6aa6fd98baf88d50de": 4589, + "023a8fd8eacad0656b5110da26dcdd44": 4643, + "d17aa3dd0a52bc3dc03bfe20f27c8b07": 4697, + "faa5793986914861a1edeb8719d6fe76": 4697, + "93e66350ffd7403827914b80d233c989": 4714, + "a2b68b9472bde2d2fee32c2ec87ff017": 4715, + "341b155413d2253886d8f188625cc1c3": 4745, + "a4627fb86c2b91fc0ace4f628aa607e4": 4745, + "14fe7234ee4bcb14adf20c743f084a35": 4882, + "2cad6ee6df3402aeb8f8ab7921517779": 4882, + "d0e079ac28e1d5283bb0150623358713": 4882, + "e1d28ce25a61b4f623c3c8013ce55b89": 4890, + "9ba2999ef3ecf9e27ac6c88e995c9d7a": 4917, + "57726c28dc09949029a154f63b891dd0": 4931, + "d70c6bf2f5cabd89d5e2f522780b13a2": 4931, + "f629f0b6d156bec6acb9e6b9da4ad4e3": 4934, + "ba78ac0638f36a89386b690d619f13b1": 4937, + "b5c541c765fd3a5767b3fa1cfc821587": 4938, + "b3f3d35f58a0ea3affc0ec6d4ee1183d": 4947, + "1a316519500424ae9a2649746c4c83ab": 4963, + "1c94dccdfaaa0c3e1d6bda5969704885": 4967, + "5ca71cd4ceace3cb6650ff05d679d149": 4983, + "777a2daf393b0c336b7a78e45644c935": 4983, + "7c65e9da405d2225d079f75e56276822": 5013, + "4c614f884a07872f12056ad1a421e1f9": 5023, + "c22f3efe9048652ef6f798650fce2d2a": 5023, + "f155c9c04ef01a99b26478c1121c8069": 5023, + "b259feb41811c7e4e1dc200167985c84": 504, + "b45f850d25943a636d9999f90a2bbaa8": 504, + "b48161623f12f86fec88320166a21fce": 504, + "c6cfb6cb982ac886faa83a1f0e597dc8": 504, + "1fd8f7940f3a63012888c0014d5ab014": 5045, + "4ebe14c4c51555908c0e4cabb66dc813": 5045, + "5e477cdea0b3266b505ac5938ddc5e5c": 5045, + "084f1e457749cdec86183189bd88ce69": 508, + "982ed5d2b12a0377eb14bcdc4123744e": 508, + "d1feeed857f9010980b00bf53f749d61": 508, + "0edf8501b8c2567371ae4f8747a27d63": 511, + "545de5c311259b7f7ec313a9d58cf4b4": 511, + "1475824e7262c0d6359f43c287e034a5": 5137, + "6761f77e6daa82120dd7c73adeec777e": 5137, + "50f060cc830b1b5e4e4427987dba4558": 5203, + "7768609b189e788ab08c8aac165b9f4c": 5203, + "e6104df1feb1318ff1764c791eb4ce0e": 5203, + "5fed946c1eea9a5b11ec1cb40e025819": 521, + "693fabbcb14ebe1ad65d6735adb7133a": 521, + "9639948ad274fa15281f549e5f9c4d87": 521, + "f005cbcb60f4d9f3e4f6190e809cff1d": 521, + "7ab8eb19c5356f62bcc3fa2a8f1aba1f": 5215, + "785441d3d75913393807b10b3194dc48": 522, + "7c1689ccd53fcc9684e8ab129c03a14b": 522, + "9057925ed2531251d494f76d3b8bb471": 522, + "ca7a62e5e14aafd813bc806d0cf54117": 522, + "4f3b84eb325f9162086fac77ac577e7c": 523, + "8e76d1ce4b251e3a31056feddda92e9b": 5251, + "83bed4ebefeece45748258fd2ef105b3": 5252, + "1123060cb5177d576c191d774ebe403a": 5257, + "748330449617f7b273a61adec9c70aea": 5257, + "f57101bf26e140991a4e2f50a968ce7c": 5257, + "7173cecc94bcdb7aeb7240ae87491044": 5378, + "d11d2dc76c6d743c3cc791104a2bdae2": 5378, + "4c24f644e70f0786d20d8ca9ffcea51c": 5389, + "90cac6057cbd482d77ff0c9854ecb14d": 5389, + "1d2c316f9f32727261328c7a49b22e2c": 540, + "3321f0cbce3470aa12301e485c452a6b": 540, + "4bd6e929ec716a5c7fe7dc684860d551": 540, + "55935b66d1a130967dffc6e911d4e42e": 540, + "6e75abc7de70eb108e1d1c1500f0dedb": 540, + "946a4a60bbd5328ca2250d5f9f0606c7": 540, + "98dab710bdf256c1f1cf92c31d58d632": 540, + "9b44c70614a43a9320b398de85dd6b39": 540, + "9efef8cea73bafbaaeb779b97356149f": 540, + "a8413347d5df8c9d14f97f0330d67bce": 540, + "dfed3323300c23a691846291fdefb2b7": 540, + "5cb38ca6df6dce2c10631a010105df60": 549, + "e731fa23d9cd0c3d4dec7d5565beef61": 549, + "a477ac86be35d1fa70b708ad08dc88b8": 550, + "28a4e2d989d55f654bba6ca6e0c7f047": 5591, + "c85e5ba3dad5aa705b96da083cdd1a1c": 5591, + "2eee88360aa199b7adc9d9c6647e0809": 5601, + "665b9ef961ee82edb8db54b3eb5152fd": 5601, + "b4e5876c5acedd12b62e25a12973a4ae": 5601, + "c9200b1be878f079cee6cbebbeaa27ea": 5603, + "b83f33f33ab52e0b7ee80715dbb8d415": 5737, + "113d8f894df6b8c3641b2ba1fe60c250": 5937, + "9d4d9a346158fcda7221c853b13bd19d": 5940, + "2b1221e85b545bba7e2291fede03fd96": 5955, + "c6effb3a51b36056411760d1ffe048f7": 6075, + "7f970d79f06cfb4270dea4b051277098": 6127, + "781f768d5211aba1e4cf383d4585c1bd": 6149, + "ed5525a71dda6eaf4bbf8d5601b6b3b9": 6149, + "eef71c64f1a51f5e32ab4e6e5e2cc5e8": 6263, + "e6980267d58310af5ad57570045a95fa": 6298, + "8ffab7c16a215d3e2cce01fa24fbdf4f": 6316, + "dba637d1573394056a89cb97ec78000a": 6316, + "10d92861e262069ce31559e12b927aa0": 6357, + "9cf7725b41ee950f58c33e060718c2cf": 6357, + "f89a33de3fa660a13ec29bb323efffa9": 6435, + "239fd20f424ee53d2f11018dbd942df4": 6442, + "308abd707a48ee9d69c287d818469fd6": 6443, + "dd5aa6e85827a3ce6e4b7500e75a3262": 6445, + "d97f34c22a179fb4094acbc05616f565": 6447, + "b6da78085d38a8be3ef564b9989c45d0": 6460, + "18fe3526f170f47a277e0fac17d90170": 6481, + "8cfce7b63aa070b5bcdc2e1bcb56e18e": 6484, + "a4dee5de1b4c3d9083f307d910fa0c3f": 6484, + "0b5127a54cc8581acfabe0413378ca3d": 6500, + "142d1f9f4b868780824cca20010ad4d8": 6621, + "34bc051c58166d7bd1fc2540870edfdb": 6621, + "9cfc6376d04a47c11051411c8519a3bb": 6621, + "9f673fce1b3140108d26f3c3464b8bfc": 6621, + "e8c6250592807a674b4235d06fb05357": 6621, + "57b192b42b4e1945cc7f20c98f7e1dab": 6630, + "4fcc13db8144687e6b28200387aed25c": 6640, + "a9d98ffd50c82ef6efc8616d0cf67ebe": 6684, + "5bc0913d533000522c7c9cac1ef6f97f": 669, + "69d643bf4e37b3c133518517338b6a1c": 669, + "8b7af1a8ca96c74301d633e0ce83ba0b": 669, + "ae08c1f73f822116060ef58293b94ed8": 669, + "ef5d2d297c1262dc353ac766a2a67f27": 6690, + "5294a5fed7e88a6f76707979c83017d6": 6695, + "5b83db9958eefbd72a82c4893e79d9e1": 6712, + "7727f43d66a77fe0284bf1b8ffede7dd": 680, + "138c5fea51e0c9b3ab9075370582717c": 682, + "91128778a332495f77699eaf3a37fe30": 682, + "981087f288bac171e3ca183fbe2d273b": 682, + "0b4410c6b94d6359dba5609ae9a32909": 689, + "8d885e185ad2a0cb5c9e3b152bd24583": 690, + "34b3d0f0843b83e5b0e00bc3d0669793": 6906, + "4859ec2b18c4fabf489eb570c1d7d326": 692, + "60e55697da19bb160316ec290a7a7437": 692, + "89bb0d67d5af35c2ebf09d9aef2e34ad": 693, + "61e765494826a915948b96570eb1da1f": 694, + "6e30394fd7ef4a4dc3fe1edd9fc69f72": 694, + "2e46072ce2416feb18f4bd1e9943546c": 695, + "333444e90c0bfb99c4ff89fdcb920fe4": 695, + "8c58eac3857dc2278cf7d9c78bf18b02": 695, + "0281fd8061d82472e242954513805196": 696, + "ae4fda03378a0584d45a4735c9d6290e": 698, + "31e0b16020d3b7a08a80d4416507d631": 700, + "db156bc96b528996ce1bf771195171af": 700, + "23c7be98ac9a4d3b046ad1be3f0965e4": 704, + "0affc9df2e1220ea4573deb6cb2d4b32": 7040, + "995ce81fe91162cff295badd94e366f3": 706, + "a66e4918edcd042ec171a57fe3ce36c3": 706, + "b7963a68f95d644f8adedb269d29666c": 706, + "e1d0ae20278df92dc51618b0fb381539": 706, + "e6af05e6e73a6f0b025f43d8f36fc1e4": 706, + "28a8263bb19b7ef3ddcac5ee83f62aee": 707, + "ddb5bfae32b0ca39cf8ab6c46880126c": 707, + "13c9ca0f9c4ff72c2ec075f7c2afb9ce": 708, + "a82b4d934c049d6f0cf52f54408e1ab4": 708, + "c2de4b0c726b579012fef2be578b1920": 708, + "f711ed10307d4ea27223fe965595b123": 708, + "16ee9b10c27c136d2959ae87105a8a2e": 7080, + "5a763c7a8c6f2ee9e6464512ca2d672e": 7080, + "0631158ead23bfed84cd3a5010eb9295": 7119, + "d969f6b0fb85e41ec8b6503b70192ff0": 7119, + "401647ad59208d67507245ac13e3894c": 712, + "4cefe39910a0c6dcf9290556fbd29184": 712, + "8a00f627b8902c92327435901c249e19": 712, + "b1a4da0fc96be115b3d5303c9ca1447f": 712, + "967473063a55634223f15e4c0a79dc44": 715, + "9f826282732333a4e512dfa7acfbed93": 716, + "b17c839d444f98a4bd7fec2e49cacf12": 716, + "b3474bab3eda25bdb1508ed53765fb30": 716, + "ce2927987765182b9c69f26f758656e9": 717, + "9c17a77f10f8c8024addc299cfd74b8b": 720, + "d9290db87b1f0a23b89f99ee4469e34b": 723, + "3132056c8f17e4088b95e4264ca59575": 724, + "3d45c1ee9abd5738df46d2bdda8b57dc": 724, + "50927e843568814f7ed45ec4f944bd8b": 724, + "979ba6ee9eddc36a22f1784e2508deee": 724, + "bdc3ee3f2bc84ed8a786bda1e3f9819a": 724, + "cbfa8ac9c2181eeca72ae2c8e6019f88": 724, + "e889a133f8eab1573649f2a4ba3f9985": 724, + "e969d44cef7c07895663a7ff5f8a114d": 724, + "704cefb5c77dc74631b9acbaa2b19435": 729, + "7c1ab6fe16bcf564c7f8e13e40f2b87d": 729, + "d32b9da8028d357e20c791b07ded4f86": 729, + "2524230d0300f46ebf423ae1b37747eb": 730, + "2cf83df10495ad163c88698c6c44f1ef": 731, + "c87119b643ff4de3e2614ff10bd0c6ea": 731, + "854390c4a18d0a1744fb437037b4a531": 7317, + "7138d95583fc38ee7b3cf18de5e09e89": 733, + "9f2b62d971705e147745dc2bffb99cc1": 733, + "b8de7e1ef842f68d1d33538e621a9248": 733, + "c7920eb4b478c4d7513f2f43b7dbb9cf": 734, + "fdd228f59ee0eb8b162054a330039b0a": 734, + "3172f2d0c417107da132f8437c43763b": 735, + "ad868e84fb6071a3b6a211d16e6cbb66": 735, + "f958281428792f0a84fbf96592ac3388": 735, + "0221de99d11f50f79430c8ff9b430994": 736, + "d9d957771484ef846d4e8d241f6f2815": 739, + "edbdceb992155470983868770e4e3f62": 739, + "2fc94be87a9f05c0f915141486b71c9c": 740, + "84d4c90476cee4bbe6defb94c5b41c9e": 740, + "e5e8910d436acb9fd218559a216501a3": 740, + "a8804c8514619cc918960c2008ed65d1": 743, + "b6d1139fb8d57cd47f173faef592c813": 7446, + "7a3757ce00ed456890f953a8accb3e2a": 7456, + "fba12762da3e1d92a62acbcee04635c0": 7590, + "75c4ba84db4048d135fbe622bb975ec9": 7596, + "7d635b6861b35e28cefd433840efe1db": 7596, + "b37d04b34ac49169788149e3a9018748": 7887, + "b94eb524347bb0a8a5c151b59ad63cfa": 8361, + "28e1605572aec89f7d210775e51cb8da": 9026 + } +} diff --git a/data/gba_hascheevos.txt b/data/gba_hascheevos.txt new file mode 100644 index 0000000..b344e51 --- /dev/null +++ b/data/gba_hascheevos.txt @@ -0,0 +1,255 @@ +10897:true:"Hajime no Ippo: The Fighting" +12714:true:"Happy Feet" +12748:true:"~Prototype~ Resident Evil 2" +12786:true:"Dora the Explorer: The Search for Pirate Pig's Treasure" +12820:true:"Yoshi Topsy-Turvy | Yoshi's Universal Gravitation" +12899:true:"~Bonus~ Legend of Zelda, The: A Link to the Past & Four Swords" +12963:true:"The Game of Life - Yahtzee - Payday" +13110:true:"Car Battler Joe" +13126:true:"Snood 2: On Vacation" +13425:true:"Play Novel: Silent Hill" +1376:true:"Dragon Ball: Advanced Adventure" +13772:true:"Kururin Paradise" +1416:true:"Grand Theft Auto Advance" +14362:true:"~Bonus~ Sonic Battle" +14408:true:"~Hack~ Pokemon FireRed - Rocket Edition" +14466:true:"~Homebrew~ Sudoku Micro" +14655:true:"~Hack~ Pokemon - A Grand Day Out" +15623:true:"~Hack~ Pokemon - Der Erif | FireRed Backwards" +15933:true:"~Hack~ Fire Emblem: The Last Promise" +15988:true:"~Hack~ Pokemon - VR Missions" +16195:true:"~Hack~ Pokemon - WaterBlue Version" +16209:true:"~Homebrew~ Celeste Classic" +16307:true:"~Homebrew~ Tetrigram" +16683:true:"Lilo and Stitch" +2138:true:"Double Dragon Advance" +2155:true:"TMNT" +2169:true:"Tekken Advance" +2171:true:"Mario Tennis: Power Tour" +2179:true:"Mega Man & Bass" +2188:true:"Sonic Battle" +2190:true:"Yu-Gi-Oh! GX: Duel Academy" +2203:true:"Astro Boy: Omega Factor" +2353:true:"Castlevania: Harmony of Dissonance" +2412:true:"Yu-Gi-Oh! Worldwide Edition: Stairway to the Destined Duel" +2424:true:"Contra Advance: The Alien Wars EX" +2430:true:"Breath of Fire 2" +2445:true:"Mario Pinball Land" +2481:true:"Santa Claus Saves The Earth" +2482:true:"Fire Emblem: The Sacred Stones" +2506:true:"Teenage Mutant Ninja Turtles" +2509:true:"River City Ransom EX" +2527:true:"Driver 2 Advance" +2531:true:"Doom II" +2578:true:"~Homebrew~ Pocket Meat" +2585:true:"Super Street Fighter II Turbo Revival" +2588:true:"Summon Night: Swordcraft Story" +2589:true:"Summon Night: Swordcraft Story 2" +2591:true:"Global Star: Sudoku Fever" +2592:true:"Golden Sun: The Lost Age" +2593:true:"Advance Wars 2: Black Hole Rising" +2598:true:"One Piece" +2816:true:"Pokemon Mystery Dungeon: Red Rescue Team" +3618:true:"Crash Bandicoot Purple: Ripto's Rampage | Crash Bandicoot: Fusion" +3620:true:"Mighty Beanz Pocket Puzzles" +3653:true:"Klonoa: Empire of Dreams" +3701:true:"Duke Nukem Advance" +3706:true:"Final Fight One" +3817:true:"~Hack~ Pokemon - Light Platinum" +4033:true:"Rhythm Tengoku" +4061:true:"Max Payne" +4072:true:"Banjo-Pilot" +4073:true:"SpongeBob SquarePants Movie, The" +4092:true:"Shaman King: Master of Spirits 2" +4106:true:"Rayman Advance" +4198:true:"Harry Potter and the Goblet of Fire" +4200:true:"Harry Potter and the Prisoner of Azkaban" +4203:true:"Spyro: Season of Ice" +4204:true:"Spyro: Attack of the Rhynocs" +4205:true:"Spyro Orange: The Cortex Conspiracy | Spyro: Fusion" +4206:true:"Sword of Mana" +4690:true:"Iridion 3D" +4691:true:"Iridion II" +4703:true:"Shining Soul" +4707:true:"Shining Force: Resurrection of the Dark Dragon" +4710:true:"Yu-Gi-Oh! Reshef of Destruction" +4716:true:"An American Tail: Fievel's Gold Rush" +4723:true:"Medabots: Metabee Version" +4738:true:"King of Fighters EX, The: Neo Blood" +4740:true:"Ninja Five-O" +4879:true:"Fire Emblem: The Binding Blade" +4881:true:"DemiKids: Dark Version | Shin Megami Tensei: Devil Children - Dark Version" +4894:true:"Ed, Edd n Eddy: Jawbreakers!" +4909:true:"Mega Man Battle Chip Challenge" +4964:true:"~Hack~ Pokemon - Liquid Crystal" +4969:true:"Super Mario Advance 2: Super Mario World" +5004:true:"Yu-Gi-Oh! The Eternal Duelist Soul" +5007:true:"Mario Party-e" +5008:true:"DK: King of Swing" +505:true:"Super Mario Advance" +5057:true:"Urbz, The: Sims in the City" +506:true:"Advance Wars" +5068:true:"Alien Hominid" +507:true:"F-Zero Advance: Maximum Velocity" +5080:true:"Tim Burton's The Nightmare Before Christmas: The Pumpkin King" +5081:true:"Aladdin" +5089:true:"Yu Yu Hakusho: Ghost Files - Spirit Detective" +509:true:"Bomberman Tournament" +5093:true:"Mario Party Advance" +510:true:"Castlevania: Aria of Sorrow" +5106:true:"~Hack~ Pokemon - Snakewood" +5114:true:"Yu-Gi-Oh! World Championship Tournament 2004" +5116:true:"Yu-Gi-Oh! 7 Trials to Glory: World Championship Tournament 2005" +5117:true:"Yu-Gi-Oh! The Sacred Cards" +5127:true:"Crash Nitro Kart" +5131:true:"Yu-Gi-Oh! Ultimate Masters: World Championship Tournament 2006" +5139:true:"Rock N' Roll Racing" +514:true:"Metal Slug Advance" +515:true:"Pokemon - FireRed Version" +5176:true:"Super Robot Taisen: Original Generation" +5179:true:"Sigma Star Saga" +519:true:"Final Fantasy Tactics Advance" +5234:true:"Super Mario Advance 3: Yoshi's Island" +5240:true:"Lufia: The Ruins of Lore" +5245:true:"~Hack~ Pokemon - Ash Gray" +526:true:"Crash Bandicoot: The Huge Adventure" +527:true:"Shaman King: Master of Spirits" +528:true:"Doom" +5284:true:"Spider-Man" +529:true:"Mario vs. Donkey Kong" +5311:true:"Onimusha Tactics" +5312:true:"King of Fighters EX2, The: Howling Blood" +532:true:"Mario Golf: Advance Tour" +533:true:"Mario Kart: Super Circuit" +534:true:"Metroid: Zero Mission" +5343:true:"F-Zero: GP Legend" +535:true:"Super Puzzle Fighter II Turbo" +5364:true:"~Homebrew~ Snakes" +5377:true:"Kuru Kuru Kururin" +5443:true:"Space Channel 5: Ulala's Cosmic Attack" +548:true:"Naruto: Ninja Council 2" +5501:true:"SpongeBob SquarePants: SuperSponge" +5530:true:"Klonoa 2: Dream Champ Tournament" +5535:true:"Crash Bandicoot 2: N-Tranced" +554:true:"Fire Emblem: The Blazing Blade" +5563:true:"Pong - Asteroids - Yars' Revenge" +5564:true:"Yu Yu Hakusho: Ghost Files - Tournament Tactics" +557:true:"Sonic Advance 2" +5581:true:"Zoids Legacy" +559:true:"Legend of Zelda, The: The Minish Cap" +5619:true:"Densetsu no Stafy" +568:true:"Boktai: The Sun is in Your Hand" +569:true:"Boktai 2: Solar Boy Django" +5690:true:"IK+ | International Karate Plus | Chop N' Drop" +5705:true:"E.T. - The Extra-Terrestrial" +5710:true:"Super Dodge Ball Advance" +5719:true:"LEGO Star Wars" +572:true:"Magical Quest 3 starring Mickey & Donald" +5720:true:"LEGO Star Wars II: The Original Trilogy" +5747:true:"Lost Vikings, The" +575:true:"Mega Man Battle Network" +5764:true:"~Hack~ Castlevania: Aria of Sorrow Alter" +5778:true:"Harry Potter: Quidditch World Cup" +580:true:"Legend of Zelda, The: A Link to the Past & Four Swords" +5854:true:"Sims 2, The" +5913:true:"DemiKids: Light Version | Shin Megami Tensei: Devil Children - Light Version" +5959:true:"Egg Mania | Eggo Mania" +5987:true:"Hamtaro: Ham-Ham Heartbreak" +6011:true:"Mr. Driller 2" +6083:true:"F-Zero Climax" +6100:true:"Activision Anthology" +6101:true:"Elf Bowling 1 & 2" +6184:true:"Sims Bustin' Out, The" +6209:true:"Guilty Gear X Advance Edition" +6236:true:"Super Robot Wars J" +625:true:"Mega Man Zero 3" +6353:true:"~Hack~ Pokemon - Glazed" +6407:true:"Nicktoons: Battle for Volcano Island" +651:true:"Worms World Party" +6643:true:"~Hack~ Pokemon - Ultra Violet" +6679:true:"Spider-Man 2" +668:true:"Pokemon - Emerald Version" +6738:true:"Love Hina Advance" +6759:true:"Denki Blocks!" +677:true:"Mother 3" +6772:true:"Scooby-Doo!: Unmasked" +6834:true:"Lunar Legend" +6956:true:"~Hack~ Final Fantasy I & II Mod of Balance" +7015:true:"Konjiki no Gash Bell!!: Unare! Yuujou no Zakeru" +7079:true:"Serious Sam Advance" +7092:true:"Disney Princess" +7095:true:"Shining Soul II" +7128:true:"Elf: The Movie" +7132:true:"Quad Desert Fury" +7152:true:"Santa Claus Jr. Advance" +7158:true:"Santa Clause 3, The: The Escape Clause" +7159:true:"Polar Express, The" +7274:true:"Pac-Man Pinball" +7365:true:"Medabots AX: Metabee Version" +7367:true:"Medabots: Rokusho Version" +744:true:"Banjo-Kazooie: Grunty's Revenge" +7442:true:"Super Mario Advance 4: Super Mario Bros. 3" +745:true:"Castlevania: Circle of the Moon" +748:true:"Classic NES Series: The Legend of Zelda" +750:true:"Donkey Kong Country" +751:true:"Donkey Kong Country 2" +752:true:"Donkey Kong Country 3" +753:true:"Dragon Ball GT: Transformation" +754:true:"Dragon Ball Z: Buu's Fury" +756:true:"Dragon Ball Z: Supersonic Warriors" +758:true:"Dragon Ball Z: The Legacy of Goku" +759:true:"Dragon Ball Z: The Legacy of Goku II" +760:true:"Drill Dozer" +762:true:"Final Fantasy I & II: Dawn of Souls" +763:true:"Final Fantasy IV Advance" +764:true:"Final Fantasy V Advance" +7643:true:"Advance Guardian Heroes" +766:true:"Game & Watch Gallery 4" +767:true:"Golden Sun" +768:true:"Kingdom Hearts: Chain of Memories" +769:true:"Kirby & The Amazing Mirror" +770:true:"Kirby: Nightmare in Dream Land" +771:true:"Mario & Luigi: Superstar Saga" +773:true:"Mega Man Battle Network 2" +774:true:"Mega Man Battle Network 3: Blue Version" +7760:true:"Gyakuten Saiban" +7767:true:"Dr. Sudoku" +779:true:"Mega Man Battle Network 5: Team Protoman" +780:true:"Mega Man Battle Network 6: Cybeast Falzar" +782:true:"Mega Man Zero" +7825:true:"~Hack~ Dragon Ball Z: Team Training" +783:true:"Mega Man Zero 2" +784:true:"Mega Man Zero 4" +785:true:"Metroid Fusion" +7854:true:"X-Men: Reign of Apocalypse" +787:true:"Naruto: Ninja Council" +788:true:"Pokemon - LeafGreen Version" +789:true:"Pokemon Pinball: Ruby & Sapphire" +790:true:"Pokemon - Ruby Version" +791:true:"Pokemon - Sapphire Version" +792:true:"Snood" +793:true:"Sonic Advance" +794:true:"Sonic Advance 3" +796:true:"Spyro 2: Season of Flame" +800:true:"Wario Land 4" +801:true:"WarioWare Twisted!" +802:true:"WarioWare, Inc. Mega Microgames!" +808:true:"Street Fighter Alpha 3" +8206:true:"Spider-Man 3" +8378:true:"Magical Quest 2 starring Mickey & Minnie" +8398:true:"Robopon 2: Cross Version" +8582:true:"Tomb Raider: The Prophecy" +8679:true:"Magical Quest starring Mickey & Minnie" +9045:true:"~Hack~ Pokemon - Naranja" +9057:true:"Atlantis: The Lost Empire" +9208:true:"Sea Trader: Rise of Taipan" +9226:true:"Wolfenstein 3-D" +9284:true:"Pirates of the Caribbean: Dead Man's Chest" +9383:true:"Super Robot Taisen: Original Generation 2" +9616:true:"SpongeBob SquarePants: Lights, Camera, Pants!" +9620:true:"Ratatouille" +9664:true:"LEGO Racers 2" +9766:true:"Angelic Layer" +9815:true:"Oddworld: Munch's Oddysee" +9848:true:"Action Man: Robot Atak" +9877:true:"~Hack~ Pokemon - Theta Emerald Renev" diff --git a/data/gba_hashlibrary.json b/data/gba_hashlibrary.json new file mode 100644 index 0000000..8c03cee --- /dev/null +++ b/data/gba_hashlibrary.json @@ -0,0 +1,582 @@ +{ + "Success": true, + "MD5List": { + "e33de4139d69d016394a26119cdeba32": 10897, + "423482d9f0a696cb985d8143f574864c": 12714, + "e9385f1a0876c563dc42a0ee9c8700ce": 12748, + "e23047fcf278ca962b8e95690490cc1c": 12786, + "0cb3d605b15189485ff9689ca099187f": 12820, + "e66d2e98947a5bd1068228e4084b06da": 12820, + "52fb89bb89b83611912afd8e2f4c8d89": 12899, + "a40e7bbd268202da470950335a6793f5": 12963, + "37a569f4b2ee0818f89117a5cc958e83": 13110, + "1205d76449958f1d204f380499c7cfff": 13126, + "1d15cd3454a3566dc51d9321563d8c12": 13126, + "df9bd674970714489629e97a8bcd32f7": 13425, + "cb14df09ea41694532a9327510bb28c1": 1376, + "b77c57c60fc0dcba3b2ddd3e2f1c5f86": 13772, + "2c8ef9cce9f46b55247468ea449aeade": 1416, + "b4d933095f1be113f2b64f61e21b4055": 1416, + "5245cfb20d8e2f9c2e5a189c776b8d52": 14362, + "08dec67ed4d8305d45c575050b2efd7a": 14408, + "f8931a1a9a842de8e11e39223350af60": 14466, + "45487c50d750d30f4f465f6ed3fb6d31": 14655, + "1983512180b60115cf8c04b5c1affbec": 15623, + "485740f0f0036d32bdf7369334be13e0": 15933, + "acc02c922ab999609c1e50ffdb934df3": 15988, + "51709fdb15ddc75b0023f28502b2db93": 16195, + "6086ead790664a9c21f37b25154a0548": 16195, + "805039fa57c9eda2398c2258cf8bbba5": 16195, + "df52f58b944ef96a9a5ed350972c1ca6": 16195, + "d5b7c99707098401f12f6e4dfac87c9f": 16209, + "2050e27bdf4b7281482ce766a8c3676d": 16307, + "3a1325d0afa9ec59246673fb01878a09": 16683, + "98b3619a09eb08c2c6816c6cd2747527": 2138, + "9f738e440d5a6ebbe5e5dcf8b727bbb3": 2138, + "164b2a21afa59d6dedad07117296c8e7": 2155, + "541c6e3e1b506c7d719e3444f2495ab8": 2169, + "5d8788e5f864d576846c5fbf0a4c827a": 2169, + "6d9c1a92c3b43e833676e7a2fbc0c5fe": 2169, + "a5775e9959b79c111a6647303b93e2ae": 2169, + "c06fc491a14c54f4eb6d81a3c1345fcf": 2169, + "928c0bd4cf82b3fd6f34b53d4fd02e69": 2171, + "a3658157b02a6f5618866af93c9b771d": 2171, + "f6c0a645317d6ed90abc4e04f7b33b46": 2171, + "88792ae1fbc74f4a5425d0c6f0482023": 2179, + "100579ef01225c620560f88e65ca423a": 2188, + "1c694783acdfd013bdd980a4d8f8f546": 2188, + "7194f25da6be4548f7e0c80f73e3f628": 2188, + "e1cc21ebf4c3be179738ebbf44f25308": 2190, + "0e24f5e435b0cf651017103de24f4f92": 2203, + "2a83a1d91186c02607cc83e2702b2f86": 2203, + "732073d077f6c149588c597b55901f21": 2203, + "8d5b5381539fcad4df2bc7902a432dee": 2203, + "c518725055083f6096f3268cf608acda": 2203, + "2a5ef7708f0debc3c636577dcab43da3": 2353, + "e619f9dcd7ef3d4c6851834018b139bd": 2353, + "ea589465486d15e91ba94165c8024b55": 2353, + "1e52d66f5f8a7c4f207d80ba4fccf55e": 2412, + "0860a674599a5a07df8e7bdc116ee088": 2424, + "3f6b9bce0fde0bf0395b697e5b91b0d8": 2424, + "46e28af8f37e774163677cde4dc60d2e": 2424, + "78672ead9f35f00e467f8c7d308acdfc": 2424, + "7b279ff2f8f00274542386674384b1fc": 2424, + "9c60180ef0c9d29ee36bdd1b57adaae7": 2424, + "d3f866c892022ec6fa89b4dbdbcb0efa": 2424, + "2132b06357239d4e6a0716d963f46597": 2430, + "08c41541eb69a1d652937ed3f88824be": 2445, + "8f17e802822aa61a8f124a0f7bfd6875": 2445, + "fbd187500572b8af52c505f4f8a4bd9b": 2481, + "8f0dad780f01ce002331693f4733f27e": 2482, + "8748d99189b83242dd2a37777f1702cc": 2506, + "0b95fb20b9f487eb64431e9db9f75c7f": 2509, + "beab4156e466e97dc7f0b16948d371b7": 2527, + "dc99bcca77ec59c109576b867ab2b3ea": 2527, + "efefee9082a83fc6e49f87510746eac0": 2531, + "25cb3f0bc680ece2d1578a635e831c57": 2578, + "7a36a7486ef2c534111ee417b8acf9b7": 2585, + "b9e0b9a3d0b7afbde1aaf9a26a827723": 2585, + "dbfc3a4a54d6d41a60efac39639e311e": 2585, + "fac044fe59b25ae95471a85c072f716a": 2585, + "abfa372f860d0f10037bf28cc78de409": 2588, + "03eea2d57de9c16b5f10055e8e4e2893": 2589, + "69ea27eb346fe9e70d0110bd2fdafeb8": 2589, + "836d614be32cd350de5e05a175db6da7": 2591, + "926bebf30f7fecd6b9fa30cfd353dfee": 2591, + "370cc3b832f905a2b5511c1665e4a8bc": 2592, + "8b0fe9b5156781d1686b0add2a31b9b3": 2592, + "8efe8b2aaed97149e897570cd123ff6e": 2592, + "46599031ef71117c587bd3666c326c07": 2593, + "ce153a5ce176b608edd035e3b9a27dad": 2598, + "2100cf6f17e12cd34f1513647dfa506b": 2816, + "5e745fd1932dd5e79c06c4bc1a7d3f07": 2816, + "d3fa079587d3f1180491f49b0b6a60c9": 2816, + "dd694bf96b08fb92a7450d991aae9afc": 2816, + "15e37fb594c2dfe85b8b7ba3b7e565bd": 3618, + "24ef180602e0658bbe38fabc5d09894c": 3618, + "50126d4115f7eba81eb206b13b68d726": 3618, + "a9c93a07964aa816a8e226ae0c735a41": 3618, + "d62a474cc5635bb4b9e8604eae677444": 3618, + "315175bb0acc7db119ed82fd0b920ef5": 3620, + "66e896522a91ecd1e45fde5e93920bf7": 3620, + "31d227735fbc8220de9f1a93da10e199": 3653, + "dd311f91e8792544af395c9e3690a478": 3653, + "54bc72ab1f56930ddb05c66f118d7608": 3701, + "dfca43fb18b5ee86b3ecab2631862d6f": 3701, + "f806d204d3fc819d794fb23d3483b475": 3701, + "a8738f8633a62e10b950ba8ac86df7bf": 3706, + "c6af74aeeabfd6d7ee2875e355f49af2": 3706, + "d8453317272826159fefcf254f25ada4": 3706, + "1ff49ca009cc8f7215d325aac58791fd": 3817, + "710c820d83e1446e7992cf0c4c32faa9": 3817, + "da876c445385e449ed8162a2e5ad5a79": 3817, + "f891153d06a4cc8b1e8ff6e5ba972649": 3817, + "3c29922b367de3f58587a8f92d1280b7": 4033, + "5b2d4704ce570d89ae956025bd1036db": 4033, + "77038d7f833ecf4972367ccf47b1fec1": 4033, + "7d27519962ff61df13f0394912154bd9": 4033, + "f81f60fdb2fd774c72a170a1805db52e": 4033, + "7b79ad84814d56986566f49ab9de6423": 4061, + "aa4acde4d4147725f74efbd03a1c65e4": 4061, + "1d55a0e331301a7d36ac326f3d8dc007": 4072, + "3ac5633408cb7ac50247cdba396c5536": 4072, + "17dd0e3e76207e30614768482078cc3f": 4073, + "8d76ff1a5411fbd8ba0010dbcd0e5aa2": 4073, + "5af6a63f85fa386c7889695308dc32a4": 4092, + "971e4440cb014dc10c4c834efaef5114": 4092, + "f2c6cd5ee767f6f623874a54371fbb78": 4092, + "616f80f482ade86d88021b41587aa600": 4106, + "f2391ba88f816726e5a2ce4d321c5abf": 4106, + "33d83aec45345690ffe48ad9ed7a4ff8": 4198, + "d228b8cfeda28ba875f3c355f04d53e3": 4198, + "3fe499f2a6b141ec2959e2d109e3f321": 4200, + "f1ae630f2bc19e46617298406d28961a": 4200, + "02ca69d4ca90bc8da7ca48d59bb0035d": 4203, + "76aad0726be3ac24f3c5a7a8e64379d3": 4203, + "36e7d6e276c0e4f56984a2f8491b9364": 4204, + "4a15b07b4dc292e9003c377c55372287": 4204, + "44faf5ba9c3025ad59f53e82c8243631": 4205, + "6a496546576101291a97a93846f0d9dd": 4205, + "81f57c089f02624aa7d867a9f73ea68c": 4205, + "15a038b656bce4a0d293ad1b47737f9f": 4206, + "1fb4a4b0891ed489183ba487e2f9046e": 4206, + "510e54f22787984e33f61502712a9bc6": 4206, + "c7e5d28e7c430454aeff766961095561": 4206, + "f88df40fedb9d31a6e59dba4a9be1b2a": 4690, + "553e8c9a80190617ec13fa2a06487f2d": 4691, + "ba5048bbfb02ebe3874b8ce1b6318ce4": 4691, + "2b03e12e180aa1d88943576b25abf091": 4703, + "5931b0b58d9da9b9aa1f82d28643e2f2": 4703, + "d9b338efe2c15f9493ca0b28714a679b": 4703, + "17a986af456ed994f556f23c330666a8": 4707, + "536180ba780a0f9f513b757f0a5ca19b": 4707, + "6a1b056d8a006e069466c08c69de56c0": 4707, + "4f71a4e021f4b9319c9d4443dd710666": 4710, + "c06decdf51468503434dcb5e7bbdcca5": 4710, + "0051c7b9d4a3908afea19da18813fcbc": 4716, + "2d434f2b0392f91f7715841a122621c1": 4716, + "c1e0aacef97574abf84d9078820a5676": 4716, + "b186a9ba291a156c45640cb3c6b8a710": 4723, + "0632f298b6484b923c5e01d231ae4aa9": 4738, + "1266f7f9d73252d70b25ebfe966c9a2b": 4738, + "6946574d398ca3ab0056af834bcb2bb3": 4738, + "69d71c0dd697e86af0419fab60f32cdb": 4738, + "8a6038e823e82bd0869b3003246cd729": 4738, + "f18631a6e0af3301981848e521f1de9a": 4738, + "04244f72a9b8f17ee33e0b5bff2b8b1f": 4740, + "9ab2a55a92f8da17f6d305ac66893f34": 4740, + "8643fe7632d4895dcaaca230475e70fb": 4879, + "9fc134a926a9f2fe84a141aba2ba25a9": 4879, + "b7852693495694145a8a0afaac73e60d": 4879, + "4a28daa8f0c619ad90ca97b3b941353d": 4881, + "9e3c1af23ea83cc4852c632525bea1c5": 4894, + "d996f6cbb36eb15063b290d8f00ad654": 4909, + "e42148c3e79f7d5f7a9f3b63939b68c2": 4909, + "e2cf937901114df0928ea29443525986": 4964, + "3a93357fbeb5149ee0ae14e13709e785": 4969, + "db39788465999f269354d0b605f511be": 4969, + "f877b87f140945ad93cfce50411507c0": 4969, + "ec3f000ffde5754cb164a05d2d6f9053": 5004, + "7b17e51d5a61780f9823203c6254ed8f": 5007, + "e71b45bbbe488cc268ef4cfceb92284a": 5007, + "054223e916f9a4f543812ae795145cb5": 5008, + "1d8b145985bb38f9de77405c9f1fa60b": 5008, + "ff6b0c48065389b888c7a78731d4b58d": 505, + "0821eea9bf87804ec1d700ec458a04e5": 5057, + "04775a93461d24cf1a7e3346d244e516": 506, + "27f322f5cd535297ab21bc4a41cbfc12": 506, + "e25ea94aabbf2f2f2eecac0cf4452d68": 506, + "f4c2b2fda444dcec1274844b9a764d64": 506, + "18ef4ec828a4bf14b6fd241230bb349a": 5068, + "305de8bd99599ed38a0c4892ab0f5761": 507, + "55c14323547aa4f83e5eede98d0417f3": 507, + "2de53bf040953ad79cc8135c37b47aa0": 5080, + "4bda2a3e0249dfd09330dabc3aa20978": 5081, + "8ed4304e943b553f8ff3abc1e66ea91e": 5081, + "e01626b3c42e03e946e4275b5aad4efa": 5081, + "ade79cc8fac2f433648fb95ca8c51164": 5089, + "ffa7898ee8b3bc98e4156f3b5e7cdf63": 5089, + "0e3513cffe830cbe5b180ce6252adf62": 509, + "79aef9bbe1378adfbd688cd66e11a7be": 509, + "a6ec2db8299b370ac44abe0e3d4828b2": 509, + "0acbc949fc02ec0abd9e1825c03b8973": 5093, + "9D0D27345BF88DE8B025AA24D54D6BAD": 5093, + "023deff01a5285d1539d18266903a050": 510, + "861d080a4f5a69855dc834ecb1486d5b": 510, + "c8a40de27946f6ac53f76f83959376e2": 510, + "e28e5407f7728ea1c64bb9e0460d50ae": 510, + "e336cebcd53e38b9a59c159189c0c1b4": 510, + "e7470df4d241f73060d14437011b90ce": 510, + "3e18faadb97ea0dc129240fca69f8336": 5106, + "617a3839430fd88dab62265b82dae9d5": 5106, + "6f0f891c1d8e8dcda39eea116f2bd957": 5114, + "8517049ce498d84530c953d6a8b3112e": 5114, + "27f9f0e73752cc2df3b73bc46048e8a2": 5116, + "0a7c58069d5390165482e88a22158bd2": 5117, + "10e701d275bb9b34b4c451bf8a611495": 5127, + "41832956ab0723ca79d6883c4492fe84": 5127, + "9e6ff628db81caa74dca356eaadadac9": 5127, + "020411d3b08f5639eb8cb878283f84bf": 5131, + "b8a7c976b28172995fe9e465d654297a": 5131, + "25a0842e3db8b40eeb39de83285cc13a": 5139, + "4c56e0d7fd251ab8ebe562c25e0ddfdf": 5139, + "584fa297b632cff5b54c2def93c0de2f": 514, + "6838eb5df807a0f3299ad76066d59d26": 514, + "6eb8b130138582dc68e5e280606ec847": 514, + "7a98d4e8bcdd6fb3d3cda248be382683": 514, + "eecc817eaa0ff2184fe7e1c25956d930": 514, + "f5070f5ab5c6e8228f08fa4e4c68d56d": 514, + "21c75cf6ea782231121270606bdd2e76": 515, + "3135915853aa557889dbb36afb7d08f3": 515, + "343e0836a081330e5f530e49077c183d": 515, + "5c5c04fcc3640ef7f8e545d9bdcd2404": 515, + "69ea9b894e5fae7684129f59c01b94ab": 515, + "83ca4a8ae42c51c6bc4275413747aa87": 515, + "9ed8f007c7548716f81ddd0700a6bce7": 515, + "cf90c6c2ac7a98618227e5b43e21d234": 515, + "cfbecda514aee8b964e5e5603e60b925": 515, + "ddf2a7aed9871a68c1ee5792de3ec43f": 515, + "e26ee0d44e809351c8ce2d73c7400cdd": 515, + "e7e95ab0d167ea062a74c2accb299002": 515, + "4e641232755d9c8cf08c7d678bf7c570": 5176, + "7146102bb4d37865198dbe6881d2af9a": 5176, + "29b048b4b36b3fda168850003f2ee844": 5179, + "6ea5fc0e4b56a232ac3cbdab4b4a6bcd": 519, + "760490d2224d727b149eb47617d02a5e": 519, + "cd99cdde3d45554c1b36fbeb8863b7bd": 519, + "d0f860fce2e45b61682434edf75af909": 519, + "2291473ecb6e3406ba888b853c631390": 5234, + "5a0bd0ec784823f2c45fdaa5dd914bea": 5234, + "bb09508c782f37934c9519c5f8a7350c": 5234, + "22b31aa8f66e7c6528fd4903a09f030f": 5240, + "92262059190c05a5615be6b98612fb14": 5245, + "32d74527bfe723470c2c5406c325fb59": 526, + "b282e479e10aea057e762de7b9d4ca4b": 526, + "bc59150fdeb41b7e1a9b54712006a96f": 526, + "e86b1d8e27c86eca96e1466462999b13": 526, + "1c92edbad07a372ee382d16cf624dc4b": 527, + "25f183b62b93c288ddd7fd9ce632fa58": 527, + "3f170590d44f17e35d8d3384f6392e52": 527, + "4c5b199af5bd52acff06c346de98cbf0": 527, + "959f4e677160366f356742016427595d": 527, + "9eaaa2135dfa603521392a199439427d": 527, + "a38bdde0d59df2e4ed96fb514c236954": 527, + "30f1d50e5f2bbf65c545b4bebb3e45d5": 528, + "a4078f38dbb47ab22a9c74b725f3e481": 528, + "cda3ebc84f1c80f87939ae474fb8b893": 528, + "6ea428eabf05d2c51ed21b5608c5db21": 5284, + "a3dca1a3167cb855aacdca650c4ce39f": 529, + "1e0b41fbb6f338dc44932625446df20c": 5311, + "7c8e479f4c4e46f406b1da5e786358c0": 5311, + "2ae7ae75669717e299671d26ea883f98": 5312, + "6be741eea41598baeed52e4dd7ddb9f5": 5312, + "de7b630bf1485b5f3427e7c7081ef7db": 5312, + "2e8814e664675572a43b01900bbbb16b": 532, + "784a036ff1aae709e90167186639b75e": 533, + "f99fb545ac65126e9956a7718c30d6a3": 533, + "07930e72d4824bd63827a1a823cc8829": 534, + "650140ccae6e1ab7af44c74986002375": 534, + "b83495cfac1fe94821912beeaa1c8212": 534, + "ebbce58109988b6da61ebb06c7a432d5": 534, + "66900cc9e3051638d89b364150b31acd": 5343, + "b6984ca369145367ab79eb33f2f3480e": 5343, + "14d0771c15676e2b3b75c4c149879586": 535, + "622addba536f937a1c5b66dddb20c8b7": 535, + "e5f3bd0d81e17fbe1f27391af8ecfe83": 5364, + "48f3bc6bf59c34f057bd98b29fd7b848": 5377, + "db7d06d0be0b06c4a73bcf614e81c588": 5377, + "b50707ad72a97b131f4d620483287f95": 5443, + "b8caeb3b81d7d5eb7b6924d5c37df19e": 5443, + "3b03935f605d90962195a95f5718083e": 548, + "60eca5e9057972a76361158cc7ab31b8": 548, + "90875e086a120b79425e56aa80760474": 548, + "c2bfa5c822f33eaed02ad2f94a0414b4": 5501, + "cb1603c3cc3ed8a37f87b3971b0270d5": 5530, + "03beecd053b2ddf56341a6a981c561fc": 5535, + "617b2b2590e2925228dbdb162b05d6f6": 5535, + "7b7a43f3ac4a3facc65aa6b616c0b887": 554, + "f1a1b9742fcd467a531dd4314c4e7d19": 554, + "0ab0992240121f5e8f9a5d75aab79a15": 5563, + "c3c1c125296e28539fad128cea88b06f": 5563, + "e0d9909f402dac923114675ce44d6b48": 5563, + "78ea18b7f5d5b51abaca1565aa81230e": 5564, + "acefebbe5fdf25ae83a386a6d1c09bca": 5564, + "0aa17178edfbd1dea1b3e18826b367b3": 557, + "3fb865c5f142a8fc1f82105bfc6b8935": 557, + "6664b43c51935ea8f06f5b37ce83feca": 557, + "a219b3042eb65899baafa5143c53560c": 557, + "220a6f1b9d8d63e7638248f24dbfa709": 5581, + "2af78edbe244b5de44471368ae2b6f0b": 559, + "3cded5508b03afb52b41dfbe9955628b": 559, + "77acd1ccf746470844003e4bf9890c9f": 559, + "a104896da0047abe8bee2a6e3f4c7290": 559, + "06ed08799b2f163076fe9fc0cfe65a4c": 5619, + "9f1c1202ed1d856c5836cee6818a171e": 568, + "c8b49c53003b8d9a15d91a5a5d5cc91b": 568, + "ff75c62ab690410cc8fca24204d783e9": 568, + "31231965d6a43d935e3629a67e06e0bb": 569, + "6449dc62cdf67c4d4d293febd38dcfda": 569, + "66c0b2e21872f8e9af56292d881c1516": 569, + "f4e3dead5af182598623cf89f9a428f4": 569, + "cce22f4507ceab482392247b74a8b55a": 5690, + "d8b6d1af6d00558c3bb33d81ad18c483": 5705, + "b4863030186e7e1da0a6009dada06cd5": 5710, + "caa2d80d5c14a76d1f482f7589281c22": 5719, + "47fe0fe1ee054ac37e286fb909e49be0": 572, + "b5296cda1c554337e684d880d7573b99": 5720, + "bd64515fa58ec5052ce4d231e6241f23": 5720, + "092721060c0261c13de6ade3e8c87854": 5747, + "365fcf9b239193da45c133d7d0bcd862": 5747, + "36c04fe38ba46cff285b060907db94f6": 5747, + "1854b8c89dc9bf9794cb9eee676325c6": 575, + "62e32a9ccf6c31850041555cb8151440": 575, + "9ff40cf640575211202b7bda5487abbb": 575, + "c55da825e51f653635a2fb12c3fef9ca": 575, + "c39a085bb919a355f26c6a71e20ab1f5": 5764, + "d15c0b9aa1d9d9c28d53bf80dad08ef0": 5764, + "d8ece441a89319d00c36507b3f56b6f6": 5764, + "211f243e032b967e01ff97907b29f56a": 5778, + "3287ca66e5cc285a9fe3a922051e84c6": 580, + "4414d304f1fb205e4f5da5d52c3deff0": 580, + "623bd6af417ed48b5dbbfd19e78a80d9": 580, + "8f289129beefd40717718c7ab8baa447": 580, + "9d0230f0ae979f4520c3721127c85593": 580, + "9edf4f6e19d901d470aa1117cb0372b3": 580, + "51455002b0daa27de8eaa5d9ad1afd6f": 5854, + "9090e1e135ca14862aef4645dfe3abbd": 5854, + "f87a7dc67415d1f4c16cc430fcf98d9d": 5913, + "3b58275a454884b6fa70fa007544c998": 5959, + "42cca53c94c0bb8e5146631945bf0cd9": 5987, + "65a9d554b74e8fbf06f3807e9d103bb8": 6011, + "d7118be078b9a61284a99d3f1f7e972f": 6011, + "8d27b349bca44d938b67f9a28712f6c9": 6083, + "b68445cd4f0044ed1fc2fac8a69bc47a": 6083, + "5f3567dd3487f600dd2962c2fe73844f": 6100, + "25cdcf14f0fce47d9c6c8155774948fa": 6101, + "e429ce307fe06dbcd7724552ff0339d7": 6184, + "509139bb43b0fa487056e6068c46ab70": 6209, + "6caff32286c768d3bf9f7986d535ef7b": 6236, + "ef32f93816b6dbcf788f08faf1e71450": 6236, + "912fc18dff2d5e27fce96665cf563b89": 625, + "9ce73ff9aa1473f250d103c1bdbbd738": 625, + "aa1d5eeffcd5e4577db9ee6d9b1100f9": 625, + "fd94f92c7e5f925458e9d491e5d2bbd0": 625, + "6279166857cea1b52eb93543c6668ff1": 6353, + "c381103f45cba2c5357150292b1be794": 6353, + "07f3b7415eb3779ff11e51a38d0ad3f8": 6407, + "78724b3f7e5de9f1c931d5b196e7f19b": 651, + "d81d39a2400a2651099a6d1aa2a461d5": 651, + "48f5c9500f409dd2e14e297e81aa764c": 6643, + "7914ea9bed5d6936cec9b1c240247bda": 6679, + "21f934f5738b6f975709e46646b83e86": 668, + "5ce8f8bddc68403c99b3db8113b8d332": 668, + "5f91214a7b563c858a94920796817d83": 668, + "605b89b67018abcea91e693a4dd25be3": 668, + "910f6017cdfde8716ca75e63ae6c6489": 668, + "4f1e7c60d4fe54fea13aacb135ab745a": 6738, + "53bfc207dd7320ad7db94e299adca245": 6738, + "9029326a45e051b43e1480d8f1cb9136": 6738, + "9893ecef0083de3f7235359ce29b7a73": 6738, + "8b7a6c21e2619dbfb5064c76d074f582": 6759, + "00d5685405ac972cbf6be8b50ea42f26": 677, + "16f97512b60ed572fb4e5f3d3adc4c42": 677, + "31321db87c763bba42a2fdedf1706386": 677, + "af8b0b175f7ec8914cb87b3161ba1aaa": 677, + "cab5a920f34e73898eea77de5966e8f1": 677, + "ce5c7ba6fbe648e6d65d77030151d6f5": 677, + "e1979f0e8b7c525bf00a27e864a35ea1": 677, + "00e44d439cdef2014c67ffced1cb90d7": 6772, + "6544c0e0b23bb831ddf42895cfc6a528": 6772, + "803ff345f4df60a7f00db44fd25730bc": 6772, + "ae5ee35f0aadf386cb6918a2d83f5a3b": 6834, + "ddfa04a34631c179f897ed7169e782f0": 6956, + "f22148e0a4298808ba05cd386d64d320": 7015, + "327f1553f9c9bc510069d9eaabb0f6fb": 7079, + "b57e44b1f52647510caa08f09cfb8e1b": 7079, + "1cd1d918e2730ac739bf2bcf14373382": 7092, + "282f4032daee65c2cbf421ece93e4a41": 7092, + "434af1b315a2a337313ac82c3de078ff": 7092, + "bbb91114b96a3b57bf40b15edfc12187": 7092, + "f575c8c844ae2ffad9adc7f91c886d54": 7092, + "49aa688745111aaa51076a345f8f18c3": 7095, + "adaaf0951c8479a7b836813fcb7c96c2": 7095, + "f4a655e23638e79eacf44a456faee6a4": 7095, + "1fe0aa775a55230c0cf8236f4376dbe9": 7128, + "beb83cb1e4ecae51a34ec3e99da384b4": 7128, + "e003f4c06ad7f01d50dcdada5075a234": 7132, + "c0dfc8c07f3aba36be5f40edb996f679": 7152, + "280f5320f54ec577d7df53fb9c16b5db": 7158, + "b3a719f647a84f5496c0ad97d5de6370": 7158, + "d325f3b46025ec8df4a3761cb529e7b8": 7159, + "4d7b955b9c19b13d1d776e35ce007f78": 7274, + "c83c580d9ab765af26ca3a3ead0cd518": 7365, + "f14d377341c6afba46d3db0fabf12062": 7365, + "3065e2625e553b24ac7014ccab0c7ee6": 7367, + "bb040b4d930c1fc4be1067b9756a7c44": 7367, + "1e32d754b8a874d279086f98cf523dfd": 744, + "656b49e4db1a3ad6475b29c347a4fefc": 744, + "e7a2792c5913a8420a419f2d01358487": 7442, + "00adbd6a694f009b7754376b505fa23e": 745, + "50a1089600603a94e15ecf287f8d5a1f": 745, + "8ddb166cf79606f116f6bdf3e4bdbbe2": 745, + "b7b0e7a5f8e8bd22ac9f5766d1acef56": 745, + "588203bd9de678a55a9f1707931302f2": 748, + "a0a5bba0ebabef2457ef6e8d3419cf35": 748, + "d501ed3ff2e962d8de816667cced8cf4": 748, + "d73093e3b1ba98f39f5c79ba3649632d": 748, + "df78967cea5f519d6477fe68edbfbb77": 748, + "675c0a97180306b843a639c6a56e1d26": 750, + "b3806462180cda73d1f8f48d72236394": 750, + "c1fb9badf816b6d7836f4990f8119815": 750, + "86a1c5aae8afe04acaf1ae475249e9ba": 751, + "8878b708080a899d7c78363193dd3fa1": 751, + "a1f160ee30ed36edea341a6f1c6a4efc": 751, + "69ce1adb9a8be5c49ca2044c97fa24cb": 752, + "d7f41d490bcb72f0711b070de85a8c8b": 752, + "f577a97d679e669f8063910eb060e864": 752, + "b60abac7fdbf012de5a3c9403ece89e8": 753, + "e47cc42a209ebf639dcdd8cdf375e89a": 753, + "3a74fce97f1ea2b28c2a50ec3df0acee": 754, + "808eda67b17c901e9052f47bdc419e2f": 754, + "09f49996195a3fce6141306f9eeb2944": 756, + "3100fc5a4427a7b0cc20b861134e60f2": 758, + "4e1565aa1f0627c2bf5e51019440cb70": 759, + "e8e8c56f5a7d3d93bb8dd4a80c12f8bd": 759, + "eaec6e4f1192ad24c484b05056e3aa76": 759, + "14dab12e795098988d46b96885170538": 760, + "5d29999685413c4d2bec10d3160f6ee6": 762, + "c74dd5cc3ab6e5d4ac53b1677e1abd69": 763, + "9ed82843cc54876362be56faccb15d75": 764, + "e651a4c87410396117f1324b6437702a": 764, + "7e468cb21551f8fdce31368f53186c83": 7643, + "a26c440065d89f56275644ffa34140ef": 7643, + "89bd27cd7228736d9c00461abd20c208": 766, + "1cdd7f33c9a27061201e1d1ce029a700": 767, + "53d97150443e4449dc1959da641d1a8e": 767, + "d369f791d86a969778d2c3a5278d544c": 768, + "df5efe075b35859529ebf82a4d824458": 769, + "35ae64b0f27e60107c14ab956f6cdf70": 770, + "3b50b9f9e13e271ead33ee5a234650a9": 771, + "4b1a5897d89d9e74ec7f630eefdfd435": 771, + "39f8a42133df444eeb7bf0b2194d6286": 773, + "5c9a6664da79a4893895fd0c380fd020": 773, + "833e55b181ac9b4da56b6341c1f4e09a": 773, + "6fe31df0144759b34ad666badaacc442": 774, + "c1f7ade0ebce39a97c6efcad33661e20": 774, + "a476526adc63d7e287d905eb7251d120": 7760, + "beb99eac85f11113795bbd0f5923a9e4": 7760, + "30ff41b3a469bad7ce39deb6d50f8154": 7767, + "71b00ba406c522d3cec48311bd7bc760": 779, + "a1b8d71fa43915d37b955a2b1a0ed80a": 779, + "0e3ed3a6cc2f201897c58cb31d43a35f": 780, + "1e8c774ba210d1c55113531c7360c737": 780, + "56d29cad9e26f1d7465f803ed1d1426b": 780, + "72f7b2ac41e33f59ba6dc8cbce524a2c": 782, + "92fdd2ece8dade3766a49206af655551": 782, + "b24a17d080a01a404cbf018ba42b9803": 782, + "b3924cc91ef58cce41bb6f2849acd9c7": 782, + "b77b443ca057606d452b4de745aa895c": 782, + "d5e6ffc50aa0cc058af5cd954f8da5bf": 782, + "e03a66040ba78ad322e43fea29bdb78d": 782, + "0728c45a6390b12bd02f0bdc001df5bb": 7825, + "a75cc0c8d8c8aca6ccf1bf3abf7a1c95": 7825, + "182363b0698322e1864ced6e9eed7ead": 783, + "2e29bffe513d03851004fcca30fed1bc": 783, + "4b59ceea0351defb6eb4bad1dcfb38bd": 783, + "55dcbe18e02f7d2934c537508de532b6": 783, + "c0d76fd7a2b656fdec1802d62309c4a7": 783, + "ca264d66f10787b6bdf4b4119e810d46": 783, + "ea369497617655b290dd8270454b86ab": 783, + "0d1e88bdb09ff68adf9877a121325f9c": 784, + "7fcce60c248bea31973406d5d59c2250": 784, + "d3a76f1c92e3044b1a21f1aae84d21ab": 784, + "0168acb0d18c5c14c6bea88ed62ab3ed": 785, + "292f62b5392455b8137b38a230f9b259": 785, + "36eaa1d0f159979b8ec01151b55ac138": 785, + "4efc9b7195ce70b7061f73eb5a7d9f31": 785, + "af5040fc0f579800151ee2a683e2e5b5": 785, + "e535a6ec2eb86d183453037289527a63": 785, + "eb462f708c715309d08fd7968825ae9e": 785, + "9457a51730ada0ea9ccdbaab51d93613": 7854, + "dffc7306234751e18b163fbf3e925f1b": 787, + "fc264c058daeb62f23e1aab77a357ae9": 787, + "612ca9473451fa42b51d1711031ed5f6": 788, + "9d33a02159e018d09073e700e1fd10fd": 788, + "a9335c0c1a61c11910a355fb65cd3d82": 788, + "ba6d0fbff297b8937d3c8e7f2c25fa0f": 789, + "27c9f37193977828f9808f3f76ff8c76": 790, + "3c971ea747a4bbdbd305c6f85c1c99ff": 790, + "3e1b2065b3837c14ffbd03fe205fdfd7": 790, + "496160d0d8bbdd5692470e402470701d": 790, + "4d3d76d92c159abef9705a12cd9c4a84": 790, + "53d1a2027ab49df34a689faa1fb14726": 790, + "61623a55ac0ff4cb97db7c9a78a477ad": 790, + "7088f5789736f6fcedc687b385033003": 790, + "a943a52c790b966be2ed3140f46cd27f": 790, + "c014449536d7d32e5b6a3b91d10c0fe9": 790, + "e0503182a2e699678bcf25a6897a24d6": 790, + "033f4849d9dfe3af62353713a707895c": 791, + "18269d435ed4b8d4a9e706de9f3aa270": 791, + "2e6e9e3b87f99f04a1ac44b01bfa6ecd": 791, + "3c793a77ea0c6064dc9fb040fb0fb377": 791, + "49515946d6e40470f186a83007b7c427": 791, + "5323f95f70f5d4f21bed6ec000332bda": 791, + "5713e3c5b6c51bff0f5ba71ff638cb4d": 791, + "666527a5990e8736b493885b650a1bf9": 791, + "9bc2b765ca6997175fac51e6cdc29089": 791, + "9d816b369343d39b94af9a8b0ce7f63b": 791, + "c59c79d8bfacd27a1c3fafda2bd801d0": 791, + "f34e91399c719812e66e2c828a2e93d7": 791, + "66f4a5a101822a779fdfecf366e73c96": 792, + "a9572991316ac2e105abfec80aaeb02e": 792, + "49ecc8ef1988e7ae81fbda1b4cf71eed": 793, + "6198e2ff8b6cc5ee96704e2f3e44f0e4": 793, + "310498d4b2e3cc44ed69557903c4a54e": 794, + "e0533faf6aa36e3111669574f1c5df92": 794, + "e6b78109c11d82f621db846da70bc30a": 794, + "8d9fbf8bde7941ca97dcba7757d60e81": 796, + "97109a5bdfaf19926135edb84876888e": 796, + "b7236bf34d66ead26ba5b6c1cb16c5f0": 796, + "5fe47355a33e3fabec2a1607af88a404": 800, + "7fd9140d1985df814eb543de6330454a": 800, + "c4f6c86b801e8fb0e92a5050a8d97972": 800, + "2cca01b2f9587ca10b267350488eb3fc": 801, + "2fe6b141cef9eb1bfd2ab08f22a454a5": 801, + "89579f4dfe1ed24a7cd16a6a61a72a17": 801, + "d76d992d936c308b7d1bb70ac71a1c37": 801, + "31c33a781f3a6bd3af3a4497e6d88c3c": 802, + "a2d26dc774cec9a0b47388a5dd727b03": 802, + "556cb40fed913f964a7f149c9cfda266": 808, + "901d68257b8beda85240d55725529fe2": 808, + "91d5986bcb918e636f17e99eb73b923b": 808, + "929f06f714454b66cec42585462db598": 808, + "7d2c4f995b82825aa63fe224733d769b": 8206, + "9397ee8e46cd0357d49af1cff6fd97b3": 8378, + "9a56bc96339193e7c198c20d2ca11afe": 8378, + "22a4e57b85f7413c1973d4bd5a19d5a3": 8398, + "0151bea814bbc3b2e9cc0353f41dff16": 8582, + "627fb1625974c4d04e9e38ced12795ce": 8582, + "ba38712ad91c6c0287298d4c53ad48b1": 8582, + "1a97a68ce320fd9eda568a724ea1bfb4": 8679, + "44b5e18bb226cc98c2fbb0ea5be32484": 9045, + "45f0b97050a666ce7ab4e3960929f47b": 9057, + "ac807e619878b8219240d908bd7d5ed6": 9208, + "2ed1918e1084445c87b7fe10094238b5": 9226, + "821e6ee7197d8b7aac69aea82509e93a": 9226, + "d853b5ffa5ef88605a0823d3b4b2df08": 9226, + "c13785f8c7f0342d4c96c294e600e338": 9284, + "d6f114b4d88f348d85d12f35a544e5f3": 9383, + "f3d168d87d3e2ae25dbec012471cd9b5": 9383, + "24a24025a5e3b15512d4b5858b07c662": 9616, + "9a5a6c940bbf141d8c2838cf7c818080": 9616, + "663bae5c5eb52177530b339441d48baf": 9620, + "75119296de2c0024af1ae9c5542ab80a": 9620, + "ddebbf0f61891b4e26448ae672ccc8e4": 9620, + "e669167a9a053a9d19bf92aa2a2cb2f3": 9620, + "39a754c5e3f4c7624a26e5fa97a2d178": 9664, + "1950bec3827a706bcf603bf27794c270": 9766, + "277a144d9b4392a6c80f23b979c9c8f3": 9815, + "d4fecd09b810dba8a76c5766e713e49f": 9848, + "463515a7c47e716cb66c92b5d8857cf2": 9877 + } +} diff --git a/data/gbc_hascheevos.txt b/data/gbc_hascheevos.txt new file mode 100644 index 0000000..b9b673f --- /dev/null +++ b/data/gbc_hascheevos.txt @@ -0,0 +1,129 @@ +10631:true:"MTV Sports: Skateboarding featuring Andy MacDonald" +10659:true:"Barbie: Ocean Discovery" +11165:true:"Looney Tunes: Carrot Crazy | Bugs Bunny and Lola Bunny: Operation Carrot Patch" +11201:true:"~Hack~ Legend of Zelda: Link's Awakening DX, The - 3 Heart Hack" +11582:true:"Dance Dance Revolution GB3" +11673:true:"Microsoft: The Best of Entertainment Pack" +12399:true:"~Bonus~ Legend of Zelda, The: Oracle of Ages & Oracle of Seasons" +12775:true:"~Homebrew~ Hong Kong 2099" +12804:true:"Detective Conan: The Mechanical Temple Murder Case" +12842:true:"Dance Dance Revolution GB2" +12864:true:"Detective Conan: Legend of the Treasure of Strange Rock Island" +12950:true:"Hollywood Pinball" +13082:true:"Crazy Chicken 3: ... The Chicken Chase! | Moorhen 3: ... The Chicken Chase!" +13389:true:"~Hack~ Crystal Clear" +13829:true:"Turok 2: Seeds of Evil" +1403:true:"Mario Golf" +14166:true:"LEGO Island 2: The Brickster's Revenge" +14747:true:"~Homebrew~ Warp Coin Catastrophe, The" +15738:true:"~Homebrew~ Tobu Tobu Girl Deluxe" +15925:true:"Loppi Puzzle Magazine: Kangaeru Puzzle Soukangou" +15926:true:"Loppi Puzzle Magazine: Kangaeru Puzzle Dai-2-gou" +15927:true:"Loppi Puzzle Magazine: Kangaeru Puzzle Dai-3-gou" +15928:true:"Loppi Puzzle Magazine: Hirameku Puzzle Soukangou" +15929:true:"Loppi Puzzle Magazine: Hirameku Puzzle Dai-2-gou" +15930:true:"Loppi Puzzle Magazine: Hirameku Puzzle Dai-3-gou" +15932:true:"Keitai Denjuu Telefang: Power Version" +16191:true:"~Hack~ Pokemon - Polished Crystal" +16218:true:"Smurfs' Nightmare, The" +16252:true:"~Hack~ Pokemon - Fool's Gold" +16386:true:"~Homebrew~ Piecrust" +16595:true:"~Hack~ Touhoumon - Ordinary Version" +16597:true:"~Prototype~ Pokemon Picross" +2370:true:"~Prototype~ Resident Evil" +2500:true:"Oddworld Adventures II" +2501:true:"Asterix & Obelix" +2547:true:"Harry Potter and the Sorcerer's Stone | Philosopher's Stone" +2581:true:"007: The World Is Not Enough" +2818:true:"Harry Potter and the Chamber of Secrets" +3607:true:"Street Fighter Alpha: Warriors' Dreams" +3608:true:"Dragon Warrior Monsters" +3625:true:"M&M's Minis Madness" +3626:true:"Puzzled" +3632:true:"Dexter's Laboratory: Robot Rampage" +3646:true:"Grinch, The" +3647:true:"MIB: Men in Black - The Series" +3650:true:"Mr. Nutz" +3658:true:"Tiny Toon Adventures: Buster Saves the Day" +3692:true:"Pokemon Trading Card Game 2: The Invasion of Team GR!" +4056:true:"Legend of the River King GBC" +4080:true:"Alfred's Adventure" +4099:true:"Arthur's Absolutely Fun Day!" +4126:true:"WWF Betrayal" +4129:true:"Frogger" +4182:true:"Chicken Run" +4184:true:"Croc" +4193:true:"Monsters, Inc." +4246:true:"Qix Adventure" +4301:true:"Fix and Foxi - Episode 1 Lupo" +4302:true:"Fish Files, The" +4671:true:"Powerpuff Girls, The: Bad Mojo Jojo" +4702:true:"Crazy Chicken | Die Original Moorhuhnjagd" +4836:true:"Dragon Warrior Monsters 2: Cobi's Journey" +4871:true:"Centipede" +4893:true:"Conker's Pocket Tales" +4912:true:"Mega Man Xtreme 2 " +4915:true:"Dragon Warrior Monsters 2: Tara's Adventure" +4919:true:"Quest: Brian's Journey" +4920:true:"Hamtaro: Ham-Hams Unite!" +4922:true:"Warlocked" +4923:true:"Survival Kids" +4933:true:"Shadowgate Classic" +4939:true:"Tetris DX" +4940:true:"Xtreme Sports" +4950:true:"Antz" +4972:true:"Revelations: The Demon Slayer | Megami Tensei Gaiden: Last Bible" +5042:true:"Monster Rancher Explorer" +5043:true:"Mario Tennis" +5067:true:"Pong: The Next Level" +5072:true:"Baby Felix: Halloween" +5108:true:"Bomberman Quest" +5129:true:"Dragon Dance" +5133:true:"Resident Evil: Gaiden" +5143:true:"Harvest Moon 3 GBC" +5151:true:"Harvest Moon GB" +5155:true:"Harvest Moon 2 GBC" +5185:true:"10-Pin Bowling" +520:true:"Metal Gear Solid: Ghost Babel" +5217:true:"Super Breakout" +5369:true:"Game & Watch Gallery 2" +537:true:"Rayman" +5371:true:"Legend of Zelda, The: Link's Awakening DX" +5594:true:"Dragon Ball Z: Legendary Super Warriors" +576:true:"Pokemon - Gold Version" +577:true:"Yu-Gi-Oh! Dark Duel Stories" +6135:true:"Beatmania GB" +6167:true:"Pop 'n Music GB" +6169:true:"Pop 'n Music GB: Animated Melody" +6171:true:"Beatmania GB2: GotchaMix" +6181:true:"Dance Dance Revolution GB: Disney Mix" +6203:true:"Lucky Luke" +6251:true:"~Hack~ Legend of Zelda, The: Hard Awakening DX" +6337:true:"Robopon: Sun Version" +6494:true:"Pocket Bomberman" +6526:true:"Commander Keen" +6531:true:"Flintstones, The: Burgertime in Bedrock" +6533:true:"Game & Watch Gallery 3" +6534:true:"Little Mermaid II, The: Pinball Frenzy" +6539:true:"Mickey's Racing Adventure" +676:true:"Legend of Zelda, The: Oracle of Seasons" +6791:true:"Gex 3: Deep Pocket Gecko" +710:true:"Legend of Zelda, The: Oracle of Ages" +7102:true:"Bomberman Max: Red Challenger " +7107:true:"Bomberman Max: Blue Champion" +713:true:"Mega Man Xtreme" +7130:true:"Dance Dance Revolution GB" +7146:true:"Santa Claus Junior" +722:true:"Pokemon - Silver Version" +725:true:"Pokemon Pinball" +727:true:"Pokemon Trading Card Game" +728:true:"Shantae" +732:true:"Super Mario Bros. Deluxe" +741:true:"Wario Land 3" +7687:true:"Caterpillar Construction Zone" +810:true:"Pokemon - Crystal Version" +8228:true:"~Unlicensed~ Zook Hero Z" +8239:true:"~Unlicensed~ Zook Hero 2" +8667:true:"Ghosts 'n Goblins" +9491:true:"~Hack~ Pokemon - Prism" +9725:true:"Wendy: Every Witch Way" diff --git a/data/gbc_hashlibrary.json b/data/gbc_hashlibrary.json new file mode 100644 index 0000000..61ce3b2 --- /dev/null +++ b/data/gbc_hashlibrary.json @@ -0,0 +1,202 @@ +{ + "Success": true, + "MD5List": { + "54165d2bf7a040aa31d6d0956408d10d": 10631, + "89de435cb69325b42d569015ca09f49f": 10659, + "d5a558f3f63771ac1e40d53976e090ef": 11165, + "77f0693224c8dec44d61800d777b15d7": 11201, + "3ced79ad60ab5195058d5d658550f04f": 11582, + "81433716e1a23aefe5de0fc03ef55519": 11673, + "c576f119cb3ad8ad7b5f18e6755232f3": 11673, + "293d91d53e2c6ce32d55696add7ab8e1": 12399, + "adb108b1872c8701b4cf571665d80cb8": 12399, + "c1dd8c5952ea02286616d3ff0d8c54cb": 12775, + "1689c2205cc7b3bd020e85d2ea73fdf7": 12804, + "3a3e92c106a8674642e0ee3c0c793a9f": 12804, + "7f306f573ca9759fa2f7aa167ca2dd74": 12842, + "09f6430f0847ec793ff95057fdacac1d": 12864, + "f5325eaf1ecbf7cd6e1e561a3b5d77f7": 12864, + "9889afc5b4e72c9f96db8e6b4260f6b7": 12950, + "7e8280463d7ac79662d8be587bb6b766": 13082, + "02aef2b6042393f5e117dd4a4a638100": 13389, + "c57acec27a0318ccf51298b7ea51babf": 13389, + "28d6c613fdf608fe241fb3ce183aaae5": 13829, + "71156f1794556acd255ae256d8195e32": 1403, + "83f791645ce282093a9d59c121ffc49d": 1403, + "c43ce6e1c66e6fcfc259762a9244a63d": 1403, + "1d0ea47375fca723c0f86a5178e545f3": 14166, + "2295f4ef94f9b9a21dfc04259ab6d7bf": 14747, + "c1ef769ab7525ca2b2c3b0eb88b1c49c": 14747, + "d5aef2fb975eebf3b66ea89c469d0d7c": 14747, + "c48f26f5079ad1b411c78fbcb2738d67": 15738, + "41c2515a1dda83aadfd0a134bc62656b": 15925, + "6f5aca1f721a92eb956286809f2af28d": 15926, + "21d547ea7229128618079c792fd94e2a": 15927, + "de3c7f4b7df2d8c95ea1c5c622c332e8": 15928, + "693e77e4cd9c3845693f695a87f4444a": 15929, + "a9ee6c9625c9bd187bc7fd90df3a4fc4": 15929, + "8dbab7618855360b2029bdf2841067ab": 15930, + "e0cb7315349851951532a959fd50eb9d": 15932, + "9d3a3026bc3730cdf5d813b0bfe49697": 16191, + "ac13345fce36013c1ec4a3afbd21ad63": 16191, + "20052c527795a4f332be14aff49d4d4b": 16218, + "4339b53336d999d9c582aef54e217d79": 16252, + "d076ab5be2ec4972376de685c3705ff2": 16386, + "3e19e48ae832620c023f8c5f62129b99": 16595, + "35d2e7924408a3460e5c1a770acf3a8a": 16597, + "c55ce12656ced14bb09bad7e8da4a67e": 16597, + "c3c3932d5471bc0028ade1cd7a102d43": 2370, + "cb0e23b09470002fe33732b1f0e02b06": 2370, + "627c3542307661990802806ebd0acd90": 2500, + "68715e0a2805e3fc019fec35a9cff0d4": 2500, + "6efc4c27d06564f9000667c029ad02a3": 2501, + "ba85a2ae8aa5829c440eef2d5549506c": 2547, + "1f1fb3cf8783f880bc796d667be60231": 2581, + "bc60280596bce42d050b764b647dc39b": 2818, + "6acd649d8ab0ec4f26b8ca3930434264": 3607, + "db1aeaa7135bd5707dbbccc427808cd7": 3607, + "1ca6579359f21d8e27b446f865bf6b83": 3608, + "0bfac235a5bd9cd57d7b3e7e83993458": 3625, + "c7bcdd8ace2dfac5fdce889880472f80": 3625, + "9108d1246f11d0e0f2cec608e79efd65": 3626, + "ccdcb901229a2278d0be673472f411b9": 3626, + "2a147b2d7731ac26a999390c3f5ff2ac": 3632, + "42ad3639f6abf013d5dacd4358abf6ca": 3646, + "b50ef76b1e81615cf079c373b50c0ab9": 3646, + "42ff80b90350d30aafe41ea2c71a79bf": 3647, + "83b67b8a10f704a9e3e7ca3814e5b3ca": 3650, + "9ba7b607ec310589c5ccfb1a8149df59": 3650, + "5a93ecb5781a3338c99e35bd06cc6127": 3658, + "b881fe7a48a4d6deb2e41ffd930712fd": 3692, + "b397066e3cad5ae33a31e4adfff0bff5": 4056, + "cb5fe636114fcb0925d08ceced82dc23": 4056, + "bcc135b000c1c54f12f4ae87c7673b0c": 4080, + "3d630cb2ff52e7fedfca6c938b82fa24": 4099, + "f270519e6357bc32fd07fc6386e14dec": 4126, + "7f1830171eec29ac72ae976d4dfdfc65": 4129, + "d5ebdbeda4156b34e3c0f01d55a4221c": 4129, + "d94e22b4c08ab3c7b1929f5490adcbf2": 4129, + "bda8c4e5e18070924261823e5fca655c": 4182, + "0552078f981c2ef3977f2dfeee19510a": 4184, + "5776965258ee78832e7eabc0db66ff4b": 4193, + "d62e0c703bc1a84e0fce512f4b9c46e7": 4193, + "95b284df7ba2f862406f747b4ca7c380": 4246, + "9f77adbb0a6af7bd85d21a8ef9fdea49": 4301, + "edf021b521a496fe7afc5e15949f5c80": 4302, + "258b7b8e4692d4204df470487ef2fc3d": 4671, + "2382edc04a323a227ea793e33c749c79": 4702, + "f71ac6ac4bb335f59bfd2b594d47ab49": 4836, + "6815ec13f522fd65637be46220371704": 4871, + "d2bde938cb4c7e32ab202eb1b6e5ab9c": 4871, + "fee6336f969c9e72e9b78be53d512c1e": 4893, + "1f64989765f605d05cbd013e7ffcc352": 4912, + "8e79dcdee0e15ef069b3f376a0fee37d": 4915, + "2c86d59922dbf563f3ea0ddfc204731f": 4919, + "93ff3f6b4bfe0a138d8a8897899e8cb0": 4919, + "06157785417d6fe5c73388eb573981dc": 4920, + "48ce279084e1fc7a9136cc211f4fad5d": 4920, + "b5eb859e6ea60a0bd83100a10206d9c9": 4922, + "07d4df7a1c93f5bef617e5a90b9edee2": 4923, + "326f861a8fb3e21f1e9379e62cfb6bea": 4923, + "4c18b5d470b105344ec55d195a05d2de": 4933, + "90280833c156e2ca8e4eaa29adf369b2": 4933, + "9d79034c9b026f448f84f9898c6ccfd6": 4933, + "65973d7a1446346294f8ca9d2d1b7e66": 4939, + "8d7a8117fac260d326f36b724e7d3b74": 4939, + "9e819acd3bff5bd1a965d747fa01fe85": 4939, + "af1d1e17a5c568df796f4004be872649": 4940, + "a4b695325ac28be2e388f5b9186987ba": 4950, + "e4c1111dcc4dc23860ce016daf584dc1": 4950, + "10a424307ed6e7c033a565e4b79b0cb7": 4972, + "86ed74283fe0071f8d3f05923051efab": 4972, + "f55ed9e6a8fece5220e9876fb515e222": 5042, + "50af67f7321d84bd052f0e793ee0613c": 5043, + "a320f9de83767bb1bc1bbbc6fbd96011": 5043, + "d7f63bbb351a95d73d085a58c8e9f449": 5043, + "0a3da06446d9a2c7e1ea8149c9026434": 5067, + "45c4b87d2e3fe86fccc6941ffd724098": 5072, + "ad358f284c3303db01212016ed3944d5": 5108, + "e6f36322946499f2f55b724c3db916cd": 5108, + "0c6a0f2add131ca4afd24763fe3c3a04": 5129, + "0d0f492716005ec56d38a4fde204fe38": 5133, + "3c0c5fceebff4d9730875a9362d26aa1": 5133, + "8a7f483857e251d56a16594ca84d1a7e": 5133, + "0ff9df46aca45161d1dfa7eee8509c1f": 5143, + "498c0a50a5e5cde16127617a97ad6162": 5151, + "c1fe25c0a347903e391fd3d0d584316d": 5151, + "cef633780478127fd5cd3b040e2504fc": 5151, + "121cec82c0c9e7c476060ad2521739d4": 5155, + "2b853ce3d85f790cc101c7bd6f8f1b91": 5155, + "74c9fe928dd97ae193e9f937ce340dcc": 5155, + "a539a7a02639395ad8d7723199c81eae": 5155, + "6b055c6d12e477fbfd7bed1b495d56f7": 5185, + "7971c95ad9745fe20df52e03cd52f636": 520, + "f6dd1b1e5747412b9e5f25376c972d5a": 520, + "9b8869fa36562a32edec76717632875e": 5217, + "cbf4a5b2ff566554b014118e3d0e3e9a": 5369, + "b941941050fc32406eca4733926a3779": 537, + "ea9f362f629124c9423a8d9ba933eced": 537, + "07c211479386825042efb4ad31bb525f": 5371, + "28a0ba6afec465095ca7a4bc82801e05": 5371, + "41f548ae2944f3caffa7c17eaeafdaf3": 5371, + "6e2ced1e3ba8b27ccaf0628f4047fd4f": 5371, + "7351daa3c0a91d8f6fe2fbcca6182478": 5371, + "b64a73a7270fb7c1ff02e358fbd90a96": 5371, + "c3c849962b3272dfed3a185a561aac0d": 5371, + "ccbb56212e3dbaa9007d389a17e9d075": 5371, + "f75874e3654360094fc2b09bd1fed7e8": 5371, + "ac46bc779e1e844674de1d4c13d06f96": 5594, + "c663691b1eca7eeeb501c4d00b4b186f": 5594, + "ffa003fa747731a9fd547260598538cb": 5594, + "a6924ce1f9ad2228e1c6580779b23878": 576, + "c30add585d87114288ff8e3726c5381b": 577, + "e7c022031cb882912e81970eb63d4f61": 6135, + "10e6dcd0a350076e28b9c598c278b6a2": 6167, + "7e6d077d50879c57ff70891aaa312e80": 6169, + "25f20cdc0f6f70d0bc5430a9b0d48742": 6171, + "dbada1fdfaba283bede36852843f5ed8": 6181, + "7cf3670a8f345344e4789e41503d7da6": 6203, + "eb76fda958f100fb791111b928ffe46f": 6203, + "004f82ab432f77c3114644337fdd5b08": 6251, + "64b5b80b005cc6e470c7aa9844ac3f8b": 6251, + "398f7b60ea114b90b24503178f47e8d8": 6337, + "2f6b6379f8c7ce5d66a198162f345eaa": 6494, + "94d2aa3fbda301f9c0d0c16e00743183": 6526, + "50e6d9d88450932743161b7512838ccc": 6531, + "f1bb0127347994b46258adbda0dc0b16": 6533, + "7f8c472f3c7bd1eec56a3bad10a2e94c": 6534, + "f19153c5bc422a2b1b13a4b9ff5d7bd9": 6534, + "221d3b96df7d86291b553a7cb4702dec": 6539, + "4ca44cbdd4e05c9b3c22da96d3de6338": 676, + "f2dc6c4e093e4f8c6cbea80e8dbd62cb": 676, + "91eb6db42e92e2df05cc2b40f0dbc2f0": 6791, + "825de040ea4dff66661693f8712b1bdb": 710, + "a0c1a41e2c3de54705036a1b3f71d79a": 710, + "c4639cc61c049e5a085526bb6cac03bb": 710, + "1757723cf346be2cea58d0fc4ed4cfa9": 7102, + "c987f711dfb9cba8dc1174219877360f": 7107, + "4681f5b931a2e60ca163facd1adf56ed": 713, + "c7cf1e919682b3ee613dd155cc12a15a": 7130, + "5df6d1ec0e9241e1ed8a8ee7ff318631": 7146, + "2ac166169354e84d0e2d7cf4cb40b312": 722, + "852d68f167a5957f5e73954763f36ada": 725, + "fbe20570c2e52c937a9395024069ba3c": 725, + "219b2cc64e5a052003015d4bd4c622cd": 727, + "028c4262dbb49f4fc462a6eb3e514d72": 728, + "4a278dd6cf21a5e50c41c01e76ea1106": 728, + "6745241780ab88a7b035331a3ef1cedd": 728, + "1fd75c2b798c04acd4b99ad2f1006280": 732, + "16bb3fb83e8cbbf2c4c510b9f50cf4ee": 741, + "046af13647ed4777510aa86fcb753bf9": 7687, + "301899b8087289a6436b0a241fbbb474": 810, + "9f2922b235a5eeb78d65594e82ef5dde": 810, + "e0de3c983ef60c8dffea04248c9e6ba9": 8228, + "417c09180a10c47dc212b44a60f06b4c": 8239, + "9b846e9a4eb6b80cdbc8e6c82f2b9e9e": 8667, + "3cd828587eb8d3fe818d57f99b3a3c95": 9491, + "489453e65d1b07a2f04a27135acdc5ba": 9491, + "5de4f04f745c1ab89f08f74f63760991": 9491, + "e72a3532f47fe0c7cf3160cf6f80713d": 9491, + "4e1a5f02cce49842d4717a8b0ce501f5": 9725 + } +} diff --git a/data/mastersystem_hascheevos.txt b/data/mastersystem_hascheevos.txt new file mode 100644 index 0000000..50dbcba --- /dev/null +++ b/data/mastersystem_hascheevos.txt @@ -0,0 +1,68 @@ +10004:true:"Golden Axe Warrior" +10005:true:"Alex Kidd in Shinobi World" +10006:true:"Rescue Mission" +10007:true:"Wonder Boy III: The Dragon's Trap" +10011:true:"Kenseiden" +10012:true:"Rocky" +10013:true:"Land of Illusion starring Mickey Mouse" +10014:true:"Ninja Gaiden" +10015:true:"Vampire: Master of Darkness" +10020:true:"Choplifter" +10025:true:"Fantasy Zone" +10028:true:"Tom and Jerry: The Movie" +10033:true:"Space Harrier" +10034:true:"Shinobi" +10035:true:"Quartet" +10039:true:"Ayrton Senna's Super Monaco GP II" +10042:true:"Out Run" +10044:true:"Alex Kidd: The Lost Stars" +10046:true:"Psycho Fox" +10058:true:"R-Type" +10076:true:"Taz-Mania" +10203:true:"Kung Fu Kid" +10219:true:"Hang-On" +10257:true:"ALF" +10426:true:"Double Dragon" +10427:true:"Vigilante" +10439:true:"Great Volleyball" +10443:true:"Deep Duck Trouble starring Donald Duck" +10554:true:"Castle of Illusion starring Mickey Mouse" +10696:true:"Cyborg Hunter" +10698:true:"Enduro Racer" +10705:true:"Golden Axe" +10745:true:"Aerial Assault" +10747:true:"Alien Syndrome" +10750:true:"Asterix" +10751:true:"Asterix and the Great Rescue" +10755:true:"Baku Baku Animal" +10757:true:"Black Belt" +10770:true:"Maze Hunter 3-D" +10777:true:"Wonder Boy in Monster Land" +10813:true:"Road Rash" +10880:true:"E-SWAT" +10898:true:"Rastan" +11016:true:"Basketball Nightmare" +11534:true:"Jurassic Park" +11612:true:"Snail Maze: Sega Master System BIOS" +11629:true:"Solomon no Kagi: Oujo Rihita no Namida" +11660:true:"Alien 3" +11662:true:"Time Soldiers" +12417:true:"Psychic World" +12653:true:"Legend of Illusion starring Mickey Mouse" +12843:true:"Miracle Warriors: Seal of the Dark Lord" +12897:true:"Flintstones, The" +14174:true:"Xyzolog" +14468:true:"~Homebrew~ Sudoku" +14469:true:"~Homebrew~ Picross" +14622:true:"Streets of Rage" +14672:true:"~Homebrew~ Simpsons Trivia, The" +14673:true:"~Homebrew~ Flip Flap" +14687:true:"~Homebrew~ Flight of Pigarus" +14726:true:"Addams Family, The" +14730:true:"Argos no Juujiken | Rygar" +16057:true:"Sudoku (Tectoy)" +16306:true:"Tangram" +9962:true:"Sonic the Hedgehog" +9997:true:"Sonic the Hedgehog 2" +9998:true:"Alex Kidd in Miracle World" +9999:true:"Phantasy Star" diff --git a/data/mastersystem_hashlibrary.json b/data/mastersystem_hashlibrary.json new file mode 100644 index 0000000..b8fdc45 --- /dev/null +++ b/data/mastersystem_hashlibrary.json @@ -0,0 +1,129 @@ +{ + "Success": true, + "MD5List": { + "d46e40bbb729ba233f171ad7bf6169f5": 10004, + "1f37b9cb35366dec83bf8fe222ee1bdd": 10005, + "295320f6e9f4b98b57ae65b5ff820b96": 10005, + "2bfb7d2e470204390779cd8a2e14d4d2": 10005, + "453e0d6d283377ece3f366616a2c4154": 10005, + "d62b631506913712a2103f54912458a5": 10005, + "717fdf868c8f11a712697260eb7db670": 10006, + "3f780a4b30384578c27157dbf5c21713": 10007, + "56b3436304b8cecfe4e321ca029d5e80": 10007, + "e7f86c049e4bd8b26844ff62bd067d57": 10007, + "e91a4da4f53b214704b3a99c4982f58e": 10007, + "64218d035be5988fb5ef023b70955ac3": 10011, + "6ae8f011701608ae8b765a26eb0b7ce1": 10011, + "93dbdbe850b4a7db2142b861f8005716": 10011, + "f4c3327b0f92e09b21f59e90fd273c2f": 10011, + "582d58d95c9774cd50555366c253a050": 10012, + "e884f9aa4063d0a90666fc3fa509c8bb": 10012, + "07fac1d61bc20cf6eb298f66ec2ffe49": 10013, + "2cd25b3d9a1ced329a551d7fc3c0f01e": 10014, + "8354932a7f20e84a808471b3724a56f8": 10015, + "747a206eaaadf48714695e8b4ccead7e": 10020, + "3a1dfad2cea111d0dbfb4a545bf3f87e": 10025, + "d7d8d2ac9d92e68631e2edc0bf951c98": 10025, + "e4497d344386a9fe0826e6d166e0f2b3": 10025, + "fed8690ee5fb895c09caa8e2b879ebd6": 10025, + "4617cd1b63b489d611fca444ad5d6d5e": 10028, + "81f005120522d42b23ea03152477d20b": 10028, + "965e5576d569794aa27e89048855615f": 10028, + "b2e5047df186af7c02da17f1b285ae4f": 10033, + "3dd2c025185e19ac9bf1ed16b695c629": 10034, + "e567cc12e01c04cdde08e785f37e22b7": 10034, + "63af7fce5106cc3de1e1b116c112095b": 10035, + "04abc524a3b7f7e2e96eb910490e77ec": 10039, + "39e3928058c18dc6c4055d8d240b2e74": 10039, + "029ee92155247f8a282d63b8a6dd23c4": 10042, + "ea50dcdd1241667f32d39d606a9f7083": 10044, + "a9c2facf9ef536d095414ce2e7ce2f4f": 10046, + "61189f69342288aa032c66f6e2a1214d": 10058, + "694ee2b237d266c46e7abe5afdba528a": 10058, + "9e5507d51ac6f24c702a52a7abce0d3c": 10058, + "cfc878f0163933fcfcc89e134fbeb31f": 10076, + "126687037bf172174f697d16cd7e7296": 10203, + "387983a020328f52b42293b308562eb8": 10203, + "3bf349ffa842d46e53149070bdb63344": 10219, + "67849e734a1304799606ba5a22f840d2": 10219, + "bc1360afa99cd89fbab4ea55bef08aae": 10257, + "fe9aa8044951b10f876b15f4456161a9": 10426, + "6deabfc15d9aeb4c8ed1b641fb950de5": 10427, + "03d6e8450a74ac09e47ae9bf210cfe17": 10439, + "382b627efa06c958b8ec5c85e964bf10": 10439, + "05e3071aad9c36b6e18f1656592eeb3d": 10443, + "e9b4b92bc29ca8fbe9978da6720bd1eb": 10554, + "ac90d79743cac1afcd7049f7b4e73bc4": 10696, + "d104f53494a3d5847a1320faf38e8bc5": 10696, + "06779a1a9dbada60efb1f37e37040a5b": 10698, + "25cc787700fd9f1a5abf1c381d1b897b": 10705, + "b4911ad6a9d2ba56497cd5b01da3938a": 10705, + "0713f2e55a1eea0d9e2fb7044740261b": 10745, + "8b603c931418a3680b8723861f55a7b5": 10745, + "732808a44a90b780454a1eb6adbf3957": 10747, + "c352bd773dc9cd909a8c1707ccb54d40": 10747, + "0feb52e9b0a8cd378fb38902eb4b4100": 10750, + "36bd5fe2e4d1620f5a43ea610c458c86": 10751, + "8a94ded3d95aa46dae8800b92e66d3ee": 10755, + "1596aebfc444afbe9d30878b0819caca": 10757, + "16e6b4a1d71960d64bd20aaf7024e8ac": 10757, + "9b4bd478d931af73279863396c837416": 10757, + "dc8dd2e53ab54b88683c9cbad8701dfb": 10757, + "ddd6b56e864a7dfd74a9e04bc4407f41": 10757, + "f0b348ca5d23fcfde830dc7a1ade3c3b": 10757, + "2349ee42a09088a4a590e2c65474cdaf": 10770, + "8f8aaac492de96f2cfddb9d1a57dd979": 10777, + "d649ce52d05d88efdaca81d2ccc57d2d": 10777, + "325575374d2db3755f83bba728990ebe": 10813, + "36a5339cef97d0a5757db4fd81b4abf3": 10880, + "5b3a785de403c311db7f17eae27caae6": 10898, + "0069b1bd9c5b6b88ace6324d7e61539f": 11016, + "b05014defe8d0c3d0ad6f67851ca15d7": 11534, + "4f47e48248f6498bff9018789f26c9f8": 11612, + "840481177270d5642a14ca71ee72844c": 11612, + "ffcb0fedde6b7f8377ca99232c123597": 11612, + "cfa84806075e017e29ffcdd0127fe647": 11629, + "7d6b3351e820b6afa7cf80713dc139e3": 11660, + "dbc9260009dd0838d0e31de51d57d078": 11662, + "1076f6358527d1cec1e1e75143997293": 12417, + "4a69a56a8efff7863feca11f1d6547e3": 12653, + "e0a9cf889c27f3cb14903288f646d183": 12843, + "23a5a42c0a4a4bceffbd1869192f329d": 12897, + "21b563031bb035f117d15dc53f406c2d": 14174, + "5de9ac0bee8b66d590e4ae3503b36053": 14468, + "880815f8e899055e536b3a987c92855e": 14469, + "29a5195d57a82fb1349a7403f1d65d7e": 14622, + "ea829c4a6e9c4f05362979c9b1f3d7be": 14672, + "b636a2f6d538b583bbd48397031dd606": 14673, + "42b79384a1352b47b9ea32d6d3ec6849": 14687, + "09202bc26fcf19ebd3ffcbd80e23ed9d": 14726, + "8e8b04b5a9fe7b6cdb25b6550e7a831e": 14730, + "1ef2a7240551c4666b47a72e4fc6c473": 16057, + "03e1482ad2ee6f77399a1c5c647dba5e": 16306, + "28110d3027da306210a9d1fb41010bbf": 9962, + "287c73df22264483efb3434b7d58908a": 9962, + "624d2e4fb85dc714f34a7c6e80035a7f": 9962, + "dc13a61eafe75c13c15b5ece419ac57b": 9962, + "0ac157b6b7e839953fc8eba7538fb74a": 9997, + "32c109864dbe2c2644b6090def5e82b9": 9997, + "bf3b7a41e7da9de23416473a33c6ac2b": 9997, + "3d9a8d5c2d6d3f8ff63a8f7c77ffa983": 9998, + "50a29e43423cc77564d6f49b289eef1d": 9998, + "6e8e702e1d8a893ee698b93f5807972a": 9998, + "7f542fb090681e3bb3135dbabb03f922": 9998, + "8d3df8d20e5beb5682c44bc2e2da16fa": 9998, + "993463a00284da74b7401af3e8da3b82": 9998, + "a3d2c1d3da71b1e07e4026bb74269c07": 9998, + "ba4e6991da1b864b24089e2ea642cce6": 9998, + "bc6441f06bbaddbca003ba471966fab3": 9998, + "d793ae08d33c99a0e2f14bcdeabf9eb5": 9998, + "e8b26871629b938887757a64798df6dc": 9998, + "f43e74ffec58ddf62f0b8667d31f22c0": 9998, + "f69a7b54835381e7a91333c4d78a51f2": 9998, + "1110938df80f4e44c8213d7f85cfb5e6": 9999, + "1b69716f9f4053e1533f654c091ae410": 9999, + "5ba9114edea5deb5282fd9ad7d4b2d62": 9999, + "5ecb5172f7b1b88da6221fb2f8da6ba6": 9999, + "a0f614f26e99633493e3a3339bc85586": 9999 + } +} diff --git a/data/megadrive_hascheevos.txt b/data/megadrive_hascheevos.txt new file mode 100644 index 0000000..cec7128 --- /dev/null +++ b/data/megadrive_hascheevos.txt @@ -0,0 +1,304 @@ +1:true:"Sonic the Hedgehog" +10:true:"Sonic the Hedgehog 2" +102:true:"X-Men" +10229:true:"Street Fighter II: Special Champion Edition" +103:true:"Ayrton Senna's Super Monaco GP II" +105:true:"Jurassic Park" +10568:true:"Magical Taruruuto-kun" +109:true:"After Burner II" +11:true:"Earthworm Jim" +110:true:"Sunset Riders" +111:true:"Super Monaco GP" +11185:true:"~Hack~ Sonic 3D: Director's Cut" +113:true:"Hellfire" +116:true:"Mega Man: The Wily Wars" +119:true:"Road Rash II" +12:true:"Addams Family, The" +120:true:"Contra: Hard Corps" +124:true:"Beavis and Butt-head" +125:true:"Show do Milhao" +126:true:"Show do Milhao Volume 2" +128:true:"Pit Fighter" +129:true:"Duke Nukem 3D" +13:true:"Aero the Acro-Bat 2" +1352:true:"TaleSpin" +1356:true:"Blaster Master 2" +1360:true:"Flintstones, The" +137:true:"Battletoads" +1373:true:"RoboCop versus Terminator" +13921:true:"~Homebrew~ 30 Years of Nintendon't" +13943:true:"~Homebrew~ Cave Story MD" +14:true:"Alien 3" +140:true:"Wonder Boy in Monster World" +1404:true:"Steel Empire" +142:true:"Fatal Fury 2" +1426:true:"Burning Force" +143:true:"Beyond Oasis" +1432:true:"Monster World IV" +14327:true:"~Homebrew~ L'Abbaye des Morts" +1435:true:"Phantasy Star III: Generations of Doom" +1436:true:"Phantasy Star II" +1437:true:"Jungle Strike" +1438:true:"Crusader of Centy" +1439:true:"Daze Before Christmas" +14403:true:"~Hack~ Yoshi in Sonic the Hedgehog 2" +1443:true:"Vectorman 2" +145:true:"Columns" +14749:true:"~Unlicensed~ LEGO Batman" +148:true:"Mighty Morphin Power Rangers: The Movie" +15:true:"Sonic Spinball" +150:true:"Strider Returns: Journey from Darkness" +15327:true:"~Unlicensed~ Angry Birds in Russia | Angry Birds В России" +154:true:"Doom Troopers" +156:true:"Boogerman: A Pick and Flick Adventure" +157:true:"Double Dragon 3: The Rosetta Stone" +158:true:"Dragon Ball Z: Buyuu Retsuden" +16:true:"Super Hang-On" +160:true:"Mutant League Hockey" +16047:true:"Shadow of the Beast: Mashō no Okite" +162:true:"NBA Jam" +16210:true:"Bare Knuckle III" +16344:true:"~Hack~ Sonic & Ashuro" +165:true:"Flashback: The Quest for Identity" +16518:true:"~Hack~ Sonic 2 Hold Right to Win Edition" +166:true:"Road Rash 3: Tour de Force" +168:true:"Adventures of Batman & Robin, The" +169:true:"Sonic & Knuckles" +17:true:"NHLPA Hockey 93" +170:true:"Columns III" +173:true:"Fatal Fury" +175:true:"Fantasia" +177:true:"Paperboy" +178:true:"Mighty Morphin Power Rangers" +18:true:"Golden Axe" +180:true:"Battletoads and Double Dragon: The Ultimate Team" +181:true:"FIFA Soccer 95" +184:true:"Art of Fighting | Ryuuko no Ken" +188:true:"Eternal Champions" +19:true:"Ghostbusters" +191:true:"Crystal's Pony Tale" +192:true:"Shining in the Darkness" +2:true:"Aladdin" +20:true:"Alex Kidd in the Enchanted Castle" +203:true:"Toy Story" +205:true:"~Hack~ Sonic the Hedgehog: Megamix" +207:true:"Light Crusader" +209:true:"Dr. Robotnik's Mean Bean Machine" +21:true:"Sonic the Hedgehog 3" +211:true:"Alien Storm" +212:true:"Ghouls 'n Ghosts" +2125:true:"Dark Castle" +2157:true:"Warsong" +2166:true:"Thunder Force III" +218:true:"QuackShot starring Donald Duck" +2182:true:"Earthworm Jim 2" +2187:true:"Jimmy White's Whirlwind Snooker" +219:true:"Phantom 2040" +22:true:"ToeJam and Earl" +221:true:"Dynamite Headdy" +222:true:"Simpsons, The: Bart vs. the Space Mutants" +2235:true:"~Hack~ Sonic the Hedgehog: Classic Heroes" +225:true:"Turbo Outrun" +226:true:"Arrow Flash" +2263:true:"Sub-Terrania" +2268:true:"Valis III" +23:true:"Chakan: The Forever Man" +230:true:"Phelios" +233:true:"Taz-Mania" +2348:true:"Super Fantasy Zone" +2367:true:"Valis" +2387:true:"Urban Strike" +239:true:"~Hack~ Pana der Hejhog" +2399:true:"Sparkster: Rocket Knight Adventures 2" +24:true:"Altered Beast" +240:true:"Truxton" +2413:true:"Mazin Saga: Mutant Fighter" +2439:true:"Gaiares" +2448:true:"~Unlicensed~ Super Tank War" +2483:true:"~Hack~ Big's Fishing Derby" +25:true:"Vectorman" +250:true:"Strider" +2516:true:"Donald in Maui Mallard" +2545:true:"Mickey Mania: The Timeless Adventures of Mickey Mouse" +256:true:"Krusty's Super Fun House" +257:true:"Prince of Persia" +258:true:"Dick Tracy" +26:true:"Cool Spot" +262:true:"Wonder Boy III: Monster Lair" +263:true:"Michael Jackson's Moonwalker" +265:true:"Two Crude Dudes" +272:true:"Marvel Land" +276:true:"Street Smart" +278:true:"Cyborg Justice" +282:true:"Teenage Mutant Ninja Turtles: The Hyperstone Heist" +287:true:"Rambo III" +288:true:"~Prototype~ Ninja Gaiden" +289:true:"Last Battle" +290:true:"Captain America and the Avengers" +293:true:"Lightening Force - Quest for the Darkstar | Thunder Force IV" +294:true:"Mega Turrican" +295:true:"Bishoujo Senshi Sailor Moon" +299:true:"Double Dragon II: The Revenge" +3:true:"Streets of Rage 2" +301:true:"~Unlicensed~ Pocket Monster" +302:true:"ESWAT: City Under Siege" +303:true:"Mercs" +305:true:"Toki: Going Ape Spit" +31:true:"Fantastic Dizzy" +310:true:"Twinkle Tale" +3108:true:"Battle Mania Daiginjou" +311:true:"Gain Ground" +312:true:"Galaxy Force II" +313:true:"Immortal, The" +317:true:"Rolling Thunder 2" +3175:true:"King's Bounty: The Conqueror's Quest" +324:true:"Street Racer" +326:true:"Sonic 3D Blast | Sonic 3D: Flickies' Island" +328:true:"Rainbow Islands: The Story of Bubble Bobble 2 - Extra Version" +330:true:"Wings of Wor | Gynoug" +338:true:"DJ Boy" +34:true:"Rocket Knight Adventures" +35:true:"Speedball 2: Brutal Deluxe" +356:true:"Dragon: The Bruce Lee Story" +36:true:"Double Dragon" +3684:true:"Advanced Busterhawk: Gley Lancer" +3714:true:"Blades of Vengeance" +39:true:"Alisia Dragoon" +4:true:"Zero Tolerance" +40:true:"World of Illusion Starring Mickey Mouse and Donald Duck" +41:true:"Tiny Toon Adventures: ACME All-Stars" +4123:true:"Bonanza Bros." +4140:true:"Batman Returns" +4148:true:"Jungle Book, The" +42:true:"Tiny Toon Adventures: Buster's Hidden Treasure" +4222:true:"Dahna: Megami Tanjou" +4228:true:"Devil Crash" +4237:true:"Dragon's Revenge" +4239:true:"DUNE: The Battle For Arrakis" +4247:true:"Elemental Master" +4252:true:"Ex-Mutants" +4264:true:"Fighting Masters" +4267:true:"Final Zone" +4269:true:"Forgotten Worlds" +4270:true:"Frogger" +4274:true:"Garfield: Caught in the Act" +4275:true:"Gauntlet IV" +4285:true:"Granada" +4291:true:"High Seas Havoc | Capt'n Havoc" +4293:true:"Home Alone" +4305:true:"Insector X" +4313:true:"Jewel Master" +4320:true:"Lost World, The: Jurassic Park" +4326:true:"Tougiou King Colossus" +4342:true:"Lethal Enforcers II: Gun Fighters" +4346:true:"Lost Vikings, The" +4347:true:"Lotus Turbo Challenge" +4356:true:"Mick & Mack as the Global Gladiators" +4382:true:"Panorama Cotton" +4386:true:"Pinocchio" +4390:true:"Pocahontas" +4398:true:"Puggsy" +44:true:"Aero Blasters | Air Buster" +4410:true:"Ren & Stimpy Show, The: Stimpy's Invention" +4420:true:"Rolling Thunder 3" +4421:true:"Rolo to the Rescue" +4433:true:"Skitchin'" +4436:true:"Smurfs, The" +4444:true:"Sorcerer's Kingdom" +4450:true:"Spot Goes to Hollywood" +4467:true:"Syd of Valis" +4481:true:"Trampoline Terror!" +4483:true:"True Lies" +45:true:"Batman: The Video Game" +4509:true:"Wiz 'n' Liz" +4513:true:"WWF Royal Rumble" +4514:true:"WWF Super WrestleMania" +4521:true:"Yu Yu Hakusho: Sunset Fighters | Yuu Yuu Hakusho: Makyo Toitsusen" +4523:true:"~Homebrew~ Pringles Game" +46:true:"Atomic Runner" +47:true:"California Games" +4726:true:"Trouble Shooter" +4748:true:"Shadowrun" +480:true:"Alien Soldier" +486:true:"Ariel the Little Mermaid" +4874:true:"Sonic 3 & Knuckles" +491:true:"ATP Tour Championship Tennis" +492:true:"Awesome Possum Kicks Dr. Machino's Butt!" +494:true:"Mega Bomberman" +5:true:"~Homebrew~ Mighty Mighty Missile" +50:true:"Phantasy Star IV: The End of the Millennium" +501:true:"DEcapAttack" +5017:true:"Sensible Soccer: International Edition" +51:true:"Bubsy in Claws Encounters of the Furred Kind" +52:true:"Super Street Fighter II: The New Challengers" +5247:true:"~Hack~ Sonic 3 Complete" +53:true:"Comix Zone" +536:true:"Super Smash TV" +54:true:"Streets of Rage 3" +55:true:"Streets of Rage" +556:true:"Ranger-X" +560:true:"~Homebrew~ Commandos" +561:true:"Landstalker" +565:true:"~Hack~ Metal Sonic Hyperdrive" +571:true:"Midnight Resistance" +574:true:"Punisher, The" +578:true:"Mystic Defender" +583:true:"Snow Bros." +585:true:"Herzog Zwei" +5855:true:"Shadow of the Beast" +587:true:"Zero Wing" +59:true:"Flicky" +5902:true:"Side Pocket" +592:true:"Thunder Fox" +6:true:"Desert Strike: Return to the Gulf" +60:true:"Mortal Kombat II" +602:true:"Virtua Racing" +603:true:"Chiki Chiki Boys" +619:true:"Ultimate Qix" +6196:true:"~Unlicensed~ Pokemon Stadium" +62:true:"OutRun" +6239:true:"Cadash" +63:true:"Animaniacs" +6312:true:"Knuckles the Echidna in Sonic the Hedgehog 2" +64:true:"Shinobi III: Return of the Ninja Master" +644:true:"M.U.S.H.A. - Metallic Uniframe Super Hybrid Armor" +65:true:"Shining Force" +650:true:"PulseMan" +6583:true:"Captain Planet and the Planeteers" +66:true:"Splatterhouse 2" +67:true:"Splatterhouse 3" +6718:true:"Barney's Hide and Seek Game" +6728:true:"Spider-Man vs. The Kingpin" +68:true:"Kid Chameleon" +69:true:"Castlevania: Bloodlines" +7:true:"Gunstar Heroes" +70:true:"Ultimate Mortal Kombat 3" +7133:true:"Shane Warne Cricket" +74:true:"Top Gear 2" +75:true:"Shining Force II" +7674:true:"~Hack~ CrazySonic" +7682:true:"~Homebrew~ CrazyBus" +79:true:"Mortal Kombat" +8:true:"Ecco The Dolphin" +80:true:"X-Men 2: Clone Wars" +807:true:"Jurassic Park: Rampage Edition" +81:true:"Space Harrier II" +82:true:"Road Rash" +83:true:"Ristar" +84:true:"Shaq-Fu" +8496:true:"Lakers versus Celtics and the NBA Playoffs" +8532:true:"NHL Hockey 94" +87:true:"Golden Axe II" +8797:true:"~Hack~ Streets of Rage 2: Syndicate Wars" +88:true:"Golden Axe III" +8963:true:"~Prototype~ Scrabble" +9:true:"Castle of Illusion starring Mickey Mouse" +92:true:"Virtua Fighter 2" +93:true:"Lion King, The" +9396:true:"Mutant League Football" +94:true:"Revenge of Shinobi, The" +9490:true:"Combat Cars" +96:true:"El Viento" +98:true:"Shadow Dancer: The Secret of Shinobi" +99:true:"Fatal Labyrinth" +9933:true:"~Hack~ Sonic: Brother Trouble" diff --git a/data/megadrive_hashlibrary.json b/data/megadrive_hashlibrary.json new file mode 100644 index 0000000..180b117 --- /dev/null +++ b/data/megadrive_hashlibrary.json @@ -0,0 +1,672 @@ +{ + "Success": true, + "MD5List": { + "09dadb5071eb35050067a32462e39c5f": 1, + "1b1d9ac862c387367e904036114c4825": 1, + "1bc674be034e43c96b86487ac69d9293": 1, + "8e2c29a1e65111fe2078359e685e7943": 10, + "9feeb724052c39982d432a7851c98d3e": 10, + "26c49c46b8e2574dde481132bbd34fd4": 102, + "63274bdd105d2abf265aa2d2934635c5": 102, + "94c07e0d90ecb7a7745d5eec376b1d61": 10229, + "a04172760031920dd7c37c1080457fa0": 10229, + "fad33d8300f3af2e1c81d74e2f37b688": 103, + "8e5faa6309e9dd9bc04e86a59a57aa05": 105, + "fee5032759c495abc72e405c63c90e1f": 105, + "f676dfdd836199352f105465905c25de": 10568, + "6616c58d2771feedafedddd39f9c799e": 109, + "75458e38c278f61c06dabacc744b5fe1": 109, + "074dcf012f3fd11a4c7e624474944d81": 11, + "0804e81befedfe0f1589c5d5191521e4": 110, + "19cdf861c543f9c9cd9c8b6b70adeb1c": 110, + "6d926b8ffadac9ecd30a67c70da8a3e8": 110, + "cc60b5cd7295df626d81a3ecd30c4133": 110, + "e9d88f4130e42b20e4fb11b7cdb79f7f": 110, + "0948aa1acc9f21a966b052a8ee385884": 111, + "0dab7e08abd405d36c772be6cc85b95e": 111, + "7c343c0b33f8af9f4719ead8cee7b201": 111, + "868678804d33e96cd0bae20321c09a96": 111, + "c53dbf0f7172556d08a37cc590bddf8a": 111, + "ded2b235f625424f353c13c4d3a2cf89": 111, + "e360bed708473f1de19e300aa8b6fe67": 111, + "198a01af02607b329d7e5c5c7cfbc753": 11185, + "742dd5c98d143ff6716800dee6a25dc5": 11185, + "8c0376d192819330946944eb2aa535b8": 11185, + "1e1950f384b6c2320e6d17c381c39d62": 113, + "26f695adeabca0e2a31eee07ae2057c2": 113, + "dbdc25c40b85e488a1e817557e3e375c": 113, + "3a69e358628e49b6744c9d2c07f874d6": 116, + "4b7c5f85638ecce171637bbb2f1b7b8b": 116, + "71134a51f1a903c9e7e85e98133a8c68": 116, + "8e860e4f7c7ee5febad9134a56766112": 116, + "bb891aec8a7dfe6164033f57af2025bd": 116, + "fe73b14f45c5d35c1fd71958d2432c12": 116, + "062ed2f4e698bd8c61ebb1ee74a08d2b": 119, + "98196408705f4520213ba1e43bef67f2": 119, + "c04a309f607aaf59f55eb8dad6affa73": 119, + "cc4889aa710263e3cffc9009bd64c454": 119, + "eba5f964addea18b70336d292a08698d": 12, + "2bd30479556da5c310d8f2a1fe66e8fa": 120, + "e7dbf0980a0cbbd5fd0eeb90f3f96fea": 120, + "8e4d7397374cb03528f4c886120dc3e9": 124, + "2f87a9302e46a953b0d3afa92ea8ccf4": 125, + "c4412773f166b3d75f14fed985bd2239": 125, + "06942fbf9e1c021bb6ce4787fefd5364": 126, + "935174c0d128fc7b980952b0d5f5ff42": 126, + "bc0ebf28cfb8c477c3c4f36a689b5cb4": 128, + "d3794fd2a601aab217dae8928ef94438": 128, + "5093ad6641abb0c3757d24da094a51e6": 129, + "8eaaa0cd658c6ff29524b758824de07a": 129, + "a3f07b2b70fb8bc1e8a8583bf5142aab": 129, + "a5197857252c9c58fea12b36337d5673": 13, + "2ac0d4208641095358d663b3eb17b397": 1352, + "dd38021ff9cb67cfc24a1ad7447e4e3e": 1356, + "2e083a43e387675cc817282da565dd55": 1360, + "60ea3535c8a939d26ded83bde0f4809d": 1360, + "cdccd5fe37bea01b51a4dc15ade35167": 1360, + "e95d51aa0d45be974c59aa4b16c09d84": 1360, + "216af7457a84ec56100c3f258d9ac6f1": 137, + "f1e299d6eb40e3ecec6460d96e1e4dc9": 137, + "06f90c41aa7cdae56635fdd11da6c0c7": 1373, + "11513b8e13b36e090d783b554ce62a13": 1373, + "7b109318025dee575b64aaad77953072": 1373, + "9d54461f3b0ad92c24dabae0c877cfce": 1373, + "cfc3568cc985f7b73dd5afa69c9f28a4": 1373, + "8eff2078a60dcb22f45ef7fd8dabfd88": 13921, + "65a6fbe178dc11e90f0cd53fee20f012": 13943, + "3189dec0eadd9a36b142ad12fbfe6cf8": 14, + "793b92cd4a66921db6ca4f582a690db5": 14, + "f9e32be60028206b3716f64f2ba0ab00": 14, + "bca76deb410bf8277a0f50225c0912aa": 140, + "ea426ae66f3071e39fc76674d3f063cb": 140, + "edba0bdb192d47712edbe0097f885f40": 140, + "fc0671e09a03e6ca6481f34eb5e2114e": 140, + "9105a05e3e2e0ae261789fdafca676a2": 1404, + "e5a4bbe296224c2d6e71079807dfd183": 142, + "da536d20ac0f0e3a62d9709078690032": 1426, + "2d860cc07bc8a6bbdb0d73a09678c279": 143, + "5a79de198ed6b1ece2518574fe78d962": 143, + "b18d41264fb9041c0cb0079ef756a757": 143, + "c6ab7550100019471896437ab2b94599": 143, + "d4279d3154c235458dd12e928e948291": 143, + "2640c0b879dd52db3e328c14c36095f0": 1432, + "bc2e5590cc0e7b6e863b4275343839d4": 14327, + "82c7bc027685cc8fc6c9e077beb1a75a": 1435, + "0fa38b12cf0ab0163d865600ac731a9a": 1436, + "28e1ef5faa5968449b57d1bea39ea153": 1436, + "2bcb09fb5bd40ba80a80b920e866c10b": 1436, + "591a9e7071a2cf512968bc4e86902083": 1436, + "75ea42b49a65ceb0395480126f426c6a": 1436, + "eb2c679b912f0f0cd838dfb2be7970c6": 1436, + "f2d46a63b34cf6e5a2c8264fb59c06e7": 1436, + "3164c16bab8088a7991857750edaecb6": 1437, + "b4e4b75ee3689850886a0ea82c453587": 1437, + "4ead1c30202dbc10ad3e327f69770570": 1438, + "83cd070ca2c80be6bb57117a19ee203e": 1438, + "c5cd8a2d316ec23b869122920e029c3b": 1438, + "dca77479caf56ced86cee5a670782b74": 1438, + "334d109c48ed477ad00eaaf7e38c6813": 1439, + "c7e0e5c2fa45f5cf0b0c657513b620ec": 14403, + "9666d682cc7c69b26b834b4d8a949277": 1443, + "2ac307fcd67ab5fc1cbd29bb245196a3": 145, + "b92d1477992ca143e02bf90ab2e2a118": 145, + "3642f8eeccdb7db61955b41848253cd4": 14749, + "26fc4c87e79f3c30893012418df74a2d": 148, + "bbf3c7bfad1e2110da1469c711949709": 148, + "cbfaa177451478030f24f0d681c69e66": 148, + "3a12dc6b4f41681e0dc0ae3b2f894b4f": 15, + "800c7c12bc1eae7ddb61186875b29733": 15, + "841e347b30a6e298ee2b0c722f19fe74": 15, + "479ce05afb9d7491702be248d0bd20f3": 150, + "62ccc620d3a721c9040d85aa5d540f86": 150, + "abfd9f0f2f516bf84785b35a9b7a7393": 15327, + "204986c329b28013e05c26920cc93693": 154, + "499ae76fca658f94a856248bb0892a22": 154, + "5641bc53143ece5de5d9dbd4e2083dc7": 154, + "9df621d14008590f0c9aef228abc0aba": 154, + "265a10bf2ea2d1ee30e6cde631d54474": 156, + "783a70fd1a6339d947a2ba8556bd7bba": 157, + "0919254421cdc295c8eccfb4ca9e068b": 158, + "5c44d559bb17408011e99b831104bab1": 158, + "9386f82fc9ab95294ca35961db80d0b9": 158, + "ae9347eeea41c1a02565a187a4bf28f7": 158, + "0e465faecac4fb905a386324c21ffb4f": 16, + "54be8d1aac1163d95b161015d9f64f37": 16, + "9b5d500a7ce1de56fba9c554bbf9a0b2": 16, + "ff59ca57c4f2a6987042d4f53b5a20a4": 16, + "6a685a81ae70e8724c376779e3a812e4": 160, + "9cd4a754fcb6793d7470a6fa63903025": 16047, + "234bf02f7f7b6fdad65890424d3a8a8f": 162, + "0b50b578631749a8d9a5e081abce6898": 16210, + "f1cb9e887bf4bc512d9535c89e420df7": 16210, + "ee257eb43aa9616f94ed885b3f64d67a": 16344, + "111e1694facbe6879640ccf83040cd20": 165, + "327496e143125d286eedb7662bcea03b": 165, + "385e4e66174a76fd4a05639f24b54562": 165, + "484170e3ffafc64549516329fbb4f2a9": 165, + "55977f8786715847ba2061708e49beeb": 165, + "cef0031bd4612df7d4eac6bd71f7648d": 165, + "91883e821feb16ae1a38f39934c42fe8": 16518, + "dce9b99a3d692cb4463f9f35d278659b": 166, + "5b1bcb3793262d2d0282b49e0c2ee053": 168, + "b8f8b29cd48645d09340e4a4cd4b51e0": 168, + "c3f1e034564572b44c78099c0e727ce3": 168, + "d2ba54757b472f75aff05722d043096b": 168, + "4ea493ea4e9f6c9ebfccbdb15110367e": 169, + "b6fb2ce20122b319631af6b697e64082": 17, + "cb3a005adab1cb99f24a7f8b8e420328": 17, + "441b7e9c9811e22458660eb73975569c": 170, + "57f13963c9cfdade16cf8207f8889ee5": 173, + "69c60599bcff0eb53a49dbaf09dbfc02": 175, + "f185e7700fe58f34d1c2968074760cdc": 177, + "cdcfb24231942f535a18d2097ab5b68e": 178, + "04d2c7da9aac3fbeadf6bb8ccd27b560": 18, + "6d2edee97f8613a49e30bd2875fcb904": 18, + "a7dff8cdeaa702b96eb933a8d670aff4": 18, + "e4263c39487f0b55e8f33cbd5acd9b93": 18, + "f846492bf6367e4982ba5ba44575894b": 18, + "78f3ea32bcb4f627e4f9bc9711e017b8": 180, + "7eb2554cbfb7361700476c6822d627c5": 180, + "26ac4f884df64349dcf46344db85812b": 181, + "05dc6075c0fa4dc5779b575b594d2947": 184, + "3b878b854302596cb197602878d0cf07": 184, + "8abfdb51bf11f2aa628a3957a3426e76": 184, + "e81c004b80d1b39690ecf301dc24e0dc": 184, + "275e77a42f481e7e229edff2c53c4662": 188, + "bde8b2396241aa27463ca875e604b8d3": 188, + "c8e1cd8e715e92f19f91e073ca9ffae1": 188, + "15de100cf1d0f8c947af508f03dfda3e": 19, + "270637399377cfe1b926ec5f664471f0": 19, + "920477f6f4455ceb08b4fe3c7bd4f9cb": 19, + "d73f3b9feac4734e9a391aa211a88159": 19, + "35f24197067a98e82a426631a4e0cfe6": 191, + "522b689a1b2f0ea8578fa9d888554b82": 192, + "5bdb8286d071ec744df1ef92529156d5": 192, + "fe83e6ef13b2a2ecd2afc5f506052147": 192, + "a6fc42bd5d19e36e5d8a2d8c4f4e9d23": 2, + "088bdda3f56e794f06c02eeea1c033b6": 20, + "6dee3627fa7a28267efd07c51a467ad6": 20, + "7945e04cf746a8ddfd58446517070272": 20, + "23dc9770c2044a05c7351cf83a139d74": 203, + "6cc568233290abdf3269c1574fc045e4": 205, + "bb2c03d7d7ed17c55ded3597944db294": 205, + "0b373114177fe9ad032a5f5d96e5cde7": 207, + "2869e0d4ad512a1fbd9b79d6937d9446": 207, + "4d6bdac51d2f5969a91496142ea53232": 209, + "661f63a3128f830ebbcd2c4117a37289": 209, + "900edd585f9716cd2f8000791dc2b096": 209, + "62be3de2299c8189252536430260edf5": 21, + "6375deefc64c0bb0171e739ae95a80b0": 21, + "ab74fc7f42ce9b4a8f760d12cae69a2a": 21, + "d724ea4dd417fe330c9dcfd955c596b2": 21, + "b63052973d5d550087d6b36ce8487fb1": 211, + "809f2f43b9ec22a3299cc8ecb42c6421": 212, + "815aab1193bf534063e8f032ec76852a": 212, + "c61ff4bcdf10813c74f36ab57e29f646": 212, + "56965eb7dde9bc22d16ffa72331c0e09": 2125, + "146996a42ef0cca2578f4d56da2c4206": 2157, + "3ab3c23d9856dced1d4d05ab567dee27": 2166, + "3e79ae0a6c33422fa126b2ce1940a52b": 2166, + "64766dae889d039eb391bc5bf2973f5d": 2166, + "3d79d2fcc2038b140f7481b6f64a5038": 218, + "768400efa2ed2eed0cd84b940e812458": 218, + "a184d044b122b73026b8f4f8fb6bc528": 218, + "eb6fcd984ae84668b3818590880fb262": 218, + "2ed39b147fa5fa67d6d0707f54a5a078": 2182, + "2fd970209546fe30bbd798e7c1fcd05a": 2182, + "34a62d63bef2d8078b622888a2fd1248": 2182, + "48ae14e7a771e48513c5ae6f8cd9a56b": 2182, + "fa52bcb320299c6b51c7f47caa303da8": 2182, + "7643bf8341cd0b447da1f5b9284741f7": 2187, + "f2c111cae725e5b31775d04dd4c7b546": 219, + "0a6af20d9c5b3ec4e23c683f083b92cd": 22, + "17bc889f3286ac01728d2745e615ced1": 22, + "72dc91fd2c5528b384f082a38db9ddda": 22, + "e46a4d48532d561bf7da5649d78ddfce": 22, + "d11ec9b230e88403cd75ef186a884c97": 221, + "b87cb990d9238f252a4dd89077aa180e": 222, + "38a99b9f6e5350f4d2da0c985ac000da": 2235, + "4634c397a507053b0e04fc3ce6c49d9a": 2235, + "32fb1f12205e350cfe2bb66616043b59": 225, + "330d380c58052853ebaaa63a1737f6a0": 226, + "7f8f0a581158a00b6799204c9afe646b": 226, + "d3bd3dc31b1903148c0ce92a98a6869a": 2263, + "a50202da29099f2c9d8b1c629653a718": 2268, + "8844a97b65994de94cf398cf4a3217c3": 23, + "6a6dcb5eed29c247bd9b889df5ba58be": 230, + "ab720f3ec45423c794403e9830a00032": 230, + "659550d4c9588ff594a927eb173877d2": 233, + "8b49c73381c0187d24c76417b65b4f5f": 233, + "bd52a3c0097986a473f42dd58279408e": 2348, + "f5683f3b2c24cdd7bc6771ea87efeacf": 2348, + "9511b0a968cc1903944a475570dc071f": 2367, + "da1638baec999b2203ac5e5fec31c744": 2367, + "0f0be2db4084822d5514f8e34a0d1488": 2387, + "b1e7bf60b1a0c53e336aa7572d7d60de": 2387, + "ae1dd63ec1c689de873d8e0918757b97": 239, + "5cc61c87c4da4a232a4ba2cf64423113": 2399, + "d3ddbc9a45653aa790bb922c7b68ce44": 2399, + "1351733931c06014e45f091d25a92e29": 24, + "2ed5293e46abe1e74edeb96da0e7a618": 24, + "75389cf9c8555dac81f386db0d55f020": 24, + "8b6fc08c0e01b4b0c7f3d444bb30733f": 24, + "f7c86af04ad73edfa931f2e35cab3d93": 24, + "75a42b19e5503c72b21018699314db0b": 240, + "f3ae6147d9ad2d40e781a49c7263f746": 2413, + "f978463dca8bc6f44f28c665b59965f6": 2413, + "3429d4f237a3280670164164c1db00a3": 2439, + "47e140ae1e70984e6cd638e6e8f8485f": 2439, + "11382e11a4ed5834e80e30d1d95ca006": 2448, + "62ca0b7e2f7cc31a340e23dd89f91a16": 2448, + "bb68b21fd20b5f255dd2115f16f3e600": 2448, + "3309184f5a9938d01228fd431c742b55": 2483, + "5448efd7bc131e4ca610d863c5751e22": 25, + "8a1e09c9557526ae8bf4965dc031c8f5": 25, + "d7171a867739c8ec325aa65b175b0c49": 25, + "14a3336f31ac377ad4f605b8cc7abb36": 250, + "fcab622a6e56f7e9b1e0907ab5a630df": 250, + "46a37b8927fc9404d054f6b85d620f3f": 2516, + "965536e24760755413ae316d935710b1": 2545, + "b7f2cb46e00e6eeec726646565d850a7": 2545, + "f5bcc0b3fc58ce5df04b7861f2d6eb3b": 2545, + "8bd4d2f51f08380a1ba9ac6cd2070585": 256, + "a942e336b5d2e9f962b289fc08b890c6": 257, + "c26686b07c35bfe08603deffa6a7abce": 257, + "f38cc831257d5e922b7f3c6e4fcb30d0": 257, + "aed96d0a6c77759931d771ef0f6b0778": 258, + "74aeac0e83d75842ebee4cb86a89acd1": 26, + "fe5d4230dde728a3f7e0da5cb6c17bc3": 26, + "17f53791945ce7ccd83a4e812e3705e4": 262, + "73b63cac3f15bfe4a7bad170654878a9": 263, + "7baf9fb775ee130bd7a4a779cb3bb612": 263, + "c85398c1b649d34782dc9e7efa80be5e": 263, + "ee16f5cc74991343e21fcf30ad3f6bdc": 263, + "716c52cde8c209d3c3abd54b9d00d132": 265, + "ac2b187f80174678c8e9941d75f55b52": 272, + "031c69845c6029e7c18c26deee0769f2": 276, + "7a926aaea9e526066a75c253738b633c": 276, + "d2d8c19c67e14a0d509a454bd880bbdd": 278, + "30ede62c8efe3e046e5409758b091eb6": 282, + "3613d116847a35dcd4b1ec989a7121e3": 282, + "42240e0313fda6a10ac864718990d40d": 282, + "5ff6046c2a265ddbad9f244ac393c584": 282, + "6e4a9737392f21414b338574ce2bd485": 282, + "8ceb57cd66031c30e86698975d99893d": 282, + "8d30e09b0988709472e6750bfd1744ee": 282, + "d55083fb5a014db1c8692e1545309fc7": 282, + "a5904e2515d2d0a402a83de41bcb4c26": 287, + "d0140fde92f051cde0b986b854f28e99": 287, + "148e0a46b6214d5228244c1596041a22": 288, + "cf2333d6a7b42c676b3222529027c7d5": 288, + "1164d4b9e1c69c914f68a3f0e126039b": 289, + "606a14c61b8c074e0d36a0d9692981e5": 289, + "dea22bdd950083b814e10370ec78419f": 289, + "f5e327aa603b334fd5713fda10464748": 289, + "fa09ee852c4bd625072a6db684f2ea1b": 289, + "1dc96693afd74e7b0623a6e06fbdcf87": 290, + "64afda2b5c26117f77cae0b9985a144d": 290, + "9afb134b35794b133b0a61cabba16f9d": 290, + "4396ff4078787d79c9d3ade2242f3366": 293, + "66cac77bb663a6951c942b0722232a03": 293, + "bb6b10927e6238206e9a7ba8c7d91a14": 293, + "c0c59e835ca2cfba29f4c0f5293986f6": 293, + "8d73db292f0f4c838e72086fb3d5896b": 294, + "3a4a2518a9a52b91bfbdfaf472083078": 295, + "54a7dbc8748695a90d95d2728f946b9e": 295, + "b5365025a46a2781c63e254345268bf1": 295, + "57169954f90bfef473f4952b9633e57a": 299, + "782c722ecc60d00456869563acba23e9": 3, + "c53faea21ca58de2282a8f1a210527ba": 3, + "cb75d5a6919b61efe917bea5762c1cb7": 3, + "f22b80a555d989119286ab5bc9bd0a24": 3, + "b582a31cdfb8d184f9e52f4de03d6e6f": 301, + "e2be9447b4665f2f9a0683c56615ee5d": 301, + "264d8c7c7b1f476fe6ea98411e3cde35": 302, + "79d155b41da306f95d3dc39f0e8e189c": 302, + "4643f5da530463356ce56fae5c346ddc": 303, + "56ba94382fe6f06d05baf77261644ad4": 305, + "048e7bdefb046f83ea79950bc9f1d718": 31, + "2b3655b2935c727ee6400721fb5b4451": 31, + "8da02c10923cf730d13c3b959a7b3f6f": 31, + "3d2a638bdf18b42621e95788fa9fde9c": 310, + "1ffe5b490cddeb691e3add6947024f83": 3108, + "71f0a30b198d59d802a9f8a081675873": 3108, + "767b38c52e9bf240e1ada0d9cbd3f352": 3108, + "7af2dbffe11b3ec756612a1d64ffa15c": 3108, + "b56ec31b0d80e257bb3b599e857a021e": 3108, + "3b0ad9167e152ed3719ae0d45e50db6a": 311, + "fa43881a792fadf1ab737294fff1bcc3": 311, + "00f475ac5e7a5c2f753bb14ef62a9d98": 312, + "9fa0649fcb53963a432812254ccb4f02": 312, + "469c2c852005972bbcd2b51fdf9d1220": 313, + "3753ae738edf6f37203763f3a8a6e406": 317, + "be1185a2620c2d64d75e8827e00e8b3d": 317, + "1bb8e1e5d41bbeff2e452935bddd9883": 3175, + "c2967c23e72387743911bb28beb6f144": 324, + "50acbea2461d179b2bf11460a1cc6409": 326, + "30682a233a4afba0b0065d0e98b5c6cc": 328, + "d6edab0e66407439a1a145090e8ec12e": 328, + "911ef3d3909b19609f76f0d70a017d85": 330, + "fa0609181242f4b5fd59598273f138ec": 330, + "fa49fa5c1eec5bfae59fb87f310c0852": 330, + "6aef0333e2b1a495c867577ccf037493": 338, + "99334237bb08083ee70120f54f6973ef": 338, + "ad9540bec43c7584508c14ffdd1ce690": 338, + "6ecc894cef24dd2a54a8982d7f37c4f7": 34, + "6f0df6d8e82f0e05be3aec1d43b34b32": 34, + "9c39a6621dcf8485458d57ee6616a7e7": 34, + "baf6d595dcdfd388f57c781e60160997": 34, + "ce0fde21d2c418b24c3d904e57df466e": 34, + "8a9e5724ad9e79b70dca3e7cb81c41ce": 35, + "9abbd5b0eb5998c758ed5dc603420e23": 35, + "ae982c9a1de304ada59b089603c7bd9c": 35, + "94ebb9a19bbb7b5749bf07ab3ce8fbb9": 356, + "a279a2fa2317f9081ba02226cce6b1ed": 356, + "6c34e2fd2b6800194dfad16fadaef820": 36, + "8bd4a97783cda077c342173df0a9b51e": 3684, + "a13ab653a20fb383337fab1e52ddb0df": 3684, + "0ef8cf31e77cf8fab03bd7540a4751c0": 3714, + "95bda8c491d9c67a5a97f00d9062cd08": 3714, + "0028a8f30e471dd14a20bf3e18f7529b": 39, + "77be06102101759f30b416d80872c8da": 39, + "87f6aeedef313d6d9d5126e55514d812": 39, + "54427136beee5a270232445bbfd0341f": 4, + "4d83db7784995f04195567d4c8006db1": 40, + "c2c5a4b990ce72f98b7b7f236e66c022": 40, + "c6ba2aa696d90bbcc21aec786877fcee": 40, + "1def1d7dbe4ab6b9e1fc90093292de6a": 41, + "abddd42b2548e9b708991f689d726c9a": 41, + "dc3847b07cd94a15b1b9e0fb2ff5db11": 4123, + "ae267331cfe46a61f65f3cbd5abcbe72": 4140, + "03a83c6c7392549b47b006c6e9c38fe0": 4148, + "1baa1afb3097bb718e6780244c97591f": 4148, + "2e1c1f784c9463152cd1a772f87677af": 4148, + "dbd256319fa07b7b7ac2f8ddfb41cce4": 4148, + "4831cb1b067887a086467ec51653af48": 42, + "7dd096a7a4122544b0d5da1a2b29ee3c": 42, + "0f1b62e1b8b651409cf3dbae9a6a4c81": 4222, + "23f175cc7686ee7c55a986d5c794e481": 4222, + "3ffcf39a42918301a1b6f7e7d95faab3": 4222, + "731b77ec3acab4aaf3b76cd3c8d82a41": 4222, + "f8f4fb5a927d3e76f31a63a6d783f6fb": 4222, + "f93c0545385edce6ccef288ac767c670": 4228, + "f2b7d96aae4b5fdc6a1eac5a045e66c4": 4237, + "1d664179b18b8497cddd03aa8a697420": 4239, + "d4df66f77d52718798ec07d350d3a3cd": 4239, + "32e1a15161ef1f070b023738353bde51": 4247, + "9b04970a603ace521c7cca2acaf69804": 4247, + "699fdbc714dd0f1c65b91505b6e3c1d4": 4252, + "b6813ec7475012936d017c3c93412282": 4264, + "0cbb16c044d7c8e7366d954b5e844d1a": 4267, + "c4b93e3420db39c312c2b4ba2b2a493f": 4269, + "c526426ebe919d4cd8fbb86157c0293e": 4269, + "a5ef16bf634e12cb959da662858bae94": 4270, + "5f3d1f637b1e51ae0c38d32eb8d58c02": 4274, + "b8591488ca46b51c1d39b6869fa23006": 4274, + "5e8ec4c047ef4af15027e93b5358858f": 4275, + "840f9f6fd4f22686b89cfd9a9ade105a": 4275, + "9aad96cc5364d2289f470b75c59907a5": 4275, + "9e215cea722159b321a2eac544573f0d": 4285, + "5479601228fd14fefbd1d1fd5fceebed": 4291, + "089771a4c22d69f039e5c18bf4b2d84a": 4293, + "5630309302e9b60cfe4206d0b1d6d2c1": 4293, + "77574085187602bf50dd1167da389f60": 4305, + "42ec7e0894625345be8021f9d5f5d52f": 4313, + "cbc5b61a39963d4ce24d874034caaf08": 4313, + "faa6c4be300016843000cbbed8e94553": 4320, + "7c932a29d9943944cda4b37241b17b22": 4326, + "6847fb802bd0cb9500af865a493896df": 4342, + "dcc6c7a80292cfb2ac6700d9f750f77f": 4342, + "89215f8bda92b66bf50f6aeed4dcf3aa": 4346, + "a8dcb5476855a83702e2f49ebd4e2d57": 4346, + "c1ce374e4581e542e004aa52a4548165": 4347, + "c39fe061955784a4625255f4d04084c6": 4356, + "422a285546a9755df77da2840fb2c817": 4382, + "918b399ff6dbd2aa40004aac22fa2b2e": 4382, + "fd989d56cd122df9413541c7831df999": 4382, + "99fa6ab3d399e4cff74bb6ff79727efe": 4386, + "9a016622b1ef6ea4a6c8d26625bea1cf": 4386, + "04d546c82591ce29d7135c0e0fc5fdd2": 4390, + "2a7290076430f4c735feaf8a46d9bfe6": 4398, + "b9239ea4f533f72de496bdd5f4789e29": 4398, + "972f4f683356e33b1a4a832f41a34b87": 44, + "f50133162dad167e273bdb906c11a38b": 4410, + "a1e062e71e091793ebb09edd4511da77": 4420, + "46f0c65ea34800bd53c14712ad57eeff": 4421, + "685facf5f572d2113187ecc40b0341bf": 4421, + "d0c817bcc797b682a930c26e145c7df5": 4421, + "619106321a4317fb38a3baced692d30f": 4433, + "71db11955c089ff4b61ceab4fbe1a85a": 4433, + "4206c52e6e96b6fa301e890e6a9d3337": 4436, + "58baa4246598294644cfb49b2e5c3ebf": 4436, + "587c51be6c60b82514e928f951e730b1": 4444, + "8ab847680c35b89e4f7883cb216efdd6": 4444, + "f3c5a2a9eae5cffbdc9f87c20fb492fc": 4450, + "2cf04c3c4e8504a48136112caf9d51ae": 4467, + "a81d327574d49aab69c2a6fe4cdc893a": 4467, + "efb9679ff56838162330c16fb80d50b0": 4467, + "c4d2c80b3f21748325470667c1caf574": 4481, + "2fee5ef253faebaff73c017a7bda1cff": 4483, + "5ae78355da64cf17755175e9cfe48405": 45, + "c4bc694fcc7ee608bd4b857a5ad49f86": 45, + "e7dcfa220f46e0a1593cfdeda115c9af": 45, + "01c9742b0a83a7c135f9ed6948dc7576": 4509, + "8c0a97a07867e5a9406d45e682d0cde8": 4509, + "8d83131da5dfe5a1e83e4390e7777064": 4513, + "fc412a1d0487cef78c5f9e0fe90faa2b": 4514, + "0178d80a25f00b84f1bf15ae365beae0": 4521, + "2a2165b2be91810f5b97e8d7d2f76ad5": 4521, + "8130283788f82677ec583b7f627dbf0c": 4521, + "43a12bdab31c98cb40c99af623cf9ba4": 4523, + "6ddf32102f20c6f91b0d97bb5da5caad": 46, + "b953ab20d7bd508bd15d369339c67256": 46, + "4039f1545ca00f788030f98ccd5609bd": 47, + "6cb2871511f53a30996963f30839de75": 47, + "97b64e77be0033317d929c2da865977e": 47, + "2857b7730fb7dbc5f7c1ec1a4ba1b0ee": 4726, + "f29c5049a48f37a37b811a22dc731e3c": 4726, + "53090bcd67a0b6262f71ef7c5838c02b": 4748, + "072b12787ae4ad7fefea989ae36fda95": 480, + "32aeea27591d0cb88dc571baa738804e": 480, + "54d06fe70c75bf6828a503bb8ce806b0": 480, + "7be1c29d91e88e1a1fa75029ecc62067": 480, + "fd04c4616bb559e646937effdd343a09": 480, + "4916ade6b213b1f56864239db56fef0d": 486, + "5d3ef6589dfcea277b8f9d0980a47a33": 486, + "c5b1c655c19f462ade0ac4e17a844d10": 4874, + "723db55d679ef169b8210764a5f76c4d": 491, + "3ad4ffc5046a21b6a7d7f5589c39dd76": 492, + "514f6cad98f5f632d680983a050fffc4": 494, + "5a94b1e8792bb3572db92c2019d99377": 494, + "9f194aff7d73925d7f18237074fbd06c": 494, + "e0fd089d9f7db5a99fd7d63809375e84": 5, + "19731c22e7f7b26e47f5d709afdf5059": 50, + "58646828bbe100f37df663ccdc3ace0e": 50, + "84cbd0ff47f3c8e9d21d2c2fc39185fa": 50, + "8e9a282ed591e115b23fb4dacb953970": 50, + "a98b963b51368db77b12cf7ea6547b71": 50, + "d6cae47e928e55d52217dd80904e3ca9": 50, + "283c180cede3352dabec75fff677052e": 501, + "4e78389c53a255bab099762a734fce54": 501, + "403ceb23b4cf27d3d9c8965409960bb4": 5017, + "a603f331d2d8700543a67c60342e38f7": 51, + "4890fe7dbbed12d7db1ef029ca7d930a": 52, + "75950e3aa9357a21715ffe2fa51a454c": 52, + "7ef204b138e02e8663ed2a5b8bff449d": 52, + "825e67797bfcf3c27754d59b4f668493": 52, + "07b35dcc19166dad91e9487031bfac88": 5247, + "153b6d32026993569b16ff89c53197a3": 5247, + "38aff5287c05dba4c5bbd269a268bf22": 53, + "393ac681c66051906cb15fdf12861caf": 53, + "5cc88fa866c76cb24c50ec7019daee7e": 53, + "7078e8018ded17f3ce4c70cc8bf74afc": 53, + "7f121ad5e332cb76e861fd0dfefcc0d8": 53, + "90a9a99f853eb1853be2b725dab758c9": 53, + "afefa6517e8ee35f2a5b5b42964f4295": 53, + "b09f105210f67e01bddaa9c371151f03": 53, + "d92ccdfd14118af824b98997ab639bb7": 53, + "f75ac0929ebdff0c208fe717cc482097": 53, + "6858c543dd27b9f1d5aa260a25ab1b83": 536, + "2d0b0c8f10edf76131708e874e8d1ee4": 54, + "30d46a358e82a37c08fe104c1fa32b7c": 54, + "3ea974f31dc8739aa2624c9cdc9c4416": 54, + "9f2ab201da090f10cf84d584f8b18630": 54, + "e51a80afbbeee734cac5f28fdee6b9cb": 54, + "0235a3c76831543b03e9d02d26a97b73": 55, + "569cfec15813294a8f0cf88cccc8c151": 55, + "59a3b22a1899461dceba50d1ade88d3a": 55, + "7c905436cf2a07d32010d69c5030fd36": 55, + "aa7805261d6105d59939b14782569ee6": 55, + "cfc70b1332d86461680281af9e33cec9": 55, + "4e8a318ba7f70b42816fbdafd2624bef": 556, + "5f78d072f7e67972227d992d966a4879": 556, + "2de1202ed1d50254d4e3c75147ffaa14": 560, + "ed7be5dd9fe36a5e8976f7f4894b2c12": 560, + "04ae2b65f3a11a7504339e60735beed8": 561, + "1c45dadc7587225593c8462146dae978": 565, + "c8d561b39ec6e48976f15e07d4284e74": 565, + "e1c6af705103ae61998dcf7b01e52159": 565, + "809534b635e726f57bf1d95f3e6d7468": 571, + "0711541847d139a7dae88958b68f92ee": 574, + "a2813d0b03f84d0f2ad2448b39438845": 574, + "2a3742ce7a8e5d86bdc52b9d47a82788": 578, + "780baa7dd2f030f0b1c64897b5d4cc10": 578, + "bc5d2dadfa64e26d851af8c294c38436": 583, + "e812002daafb264fc2ab1dff9bd06ac2": 585, + "ba07d4050b453d68cb2bd7e28fc8f74c": 5855, + "5f4f2fb8c7b8c50efbc6eed57ce3dae3": 587, + "9647d8ec9183f3ec9f944d5ea49a99a9": 587, + "b07bcf6eeb5050f76ac70691fe49f1e1": 587, + "1cc0cbc50c890760e970d6e310f8f85c": 59, + "805cc0b3724f041126a57a4d956fd251": 59, + "469e1360eb70879b1039a686be9dfc3a": 5902, + "49c78f9e16ea62931ecb770a32b393dd": 5902, + "138411ecaf3be9dcc78535ad2fe51e42": 592, + "ca6f52b094db8bb2c5a4deaebe6b56ce": 592, + "6f37f036c8de2bf78d11079cd2424370": 6, + "e016f44fc9b2ff8a677a84957b9eeb34": 6, + "00328fce69991cc9759ffef7d547a0b8": 60, + "c8e887ca9cdde7bde85f324f66d34b2d": 60, + "3d4e16e2743d453f206b1c305b12cd27": 602, + "ca12f83dbeb44a134062a1f444e4a90a": 602, + "b89406ff3537d74f77a4f7e5e71b25b7": 603, + "e91cc2771c7801e8669117a0c2e06e40": 603, + "2de20c45e4d643b7eb96cfba59626a04": 619, + "9746b03a917b3e26f054992c8babc940": 619, + "9bbb0854eed833fb3f7bbe34346782fe": 6196, + "2c93e520772d4cdc1cf4ad54d2fcb406": 62, + "66eb83db18506107e3fc8dfeaf7bb031": 62, + "59a06f23ac23ad2b97f3b968966dcd11": 6239, + "c9b85d5f6880e7734112887675115220": 6239, + "6f90aa3114d35ecca11b8b62aae0611a": 63, + "85b4c7b4b839e5b3614ae7b218129e12": 63, + "9aebe4169f54e9596451e1f1fd440139": 63, + "ce0a42a75a9e374cf5092f34bf6927b7": 63, + "3e5e4b18d035775b916a06f2b3dc5031": 6312, + "5a1c504c7812769587ad4e3485c45d38": 6312, + "5a8f7c6437d239690b4a15287d841c26": 64, + "691eeff9c5741724a8751ec0fa9cfbf0": 64, + "6ce59f3e7ee52dc8c6df7b4d8a166826": 64, + "bcedff37eb20ea289bd3b7e4f4de84a6": 64, + "c3dbe1d6d1cf04d87d57277dfc8d2ac9": 64, + "8e147874de78d95634a807f917b270c5": 644, + "d5ced66ba18ec2b8eb69b8b1a6baf0d0": 644, + "4ada3f1cb2306565035a6a6ecbe915d5": 65, + "4b4acbe75ff7aaeb534ab78ed95910d1": 65, + "5111aa25931e6789ce4972bc6bafaa04": 65, + "6ddca3ea05ff5b42a52240020713d5f6": 65, + "6e3009aef9571b914912d2d03884ad27": 65, + "72ab457fd395da1879ed4f6d29b09af1": 65, + "ad89e3b44d370572495d3c716fe70271": 65, + "f8506598fce60a0a7612a39651351296": 65, + "2eb09e92f8b495b8f1c3c57766079e29": 650, + "817db2341ed161c9abc9b9576f11fd31": 650, + "b0952bec44386411651ad944c67cf86c": 650, + "0edcef2bc04f338a5c7362f3007be037": 6583, + "4f95573c08f905466e01cf8e1bc59a73": 6583, + "df959dd29aa9f8cb9f5cfb28e595c6bf": 6583, + "d0d14e031b6a62c733414e1039a51df3": 66, + "e82c84434552a2f4d0db073b23cf669c": 66, + "ef2dc6223949eaf84f14e270874a5fff": 66, + "2716153a88d0b7966150f6f2c04b0d30": 67, + "7277b3202363800a03e6790d3810f362": 67, + "8c2a9b15ba24b611c895efd49c175ebe": 67, + "a2d37bbe0b5d298fb6f0e520c4dcdc74": 67, + "a34059a923f4e3cdd84e85bb236b8bc8": 67, + "d512003a909cc775826c316e7e1bb6d9": 67, + "644dcd9ae972b6b63fce63c17d12620d": 6718, + "084403af61869de5c98cb00f59072abb": 6728, + "756e603b6cf9b3ebbb1b0f79d9447e43": 68, + "0f04fc1b5bf8c9a887abcf14ce96b0cd": 69, + "3fb8a8dfd2cfea48ae3d378918691ee7": 7, + "9a369cfc6355db48677771e345421e0e": 7, + "3dcf09e58870a2cf850f9788078684be": 70, + "5a129779699f8b388e97c9c0d703d503": 70, + "af952d8625ef75ddca524074fd4b772a": 7133, + "73a29e5020e138d18ae0002c5117e83c": 74, + "c1d154862f292bd48114b2b6c3265d7a": 74, + "102230166873a8526250af7fae1cb508": 75, + "3c1aaa89a704a52ebe3cbd3fec22281d": 75, + "6473b1505334ef5620d13191c18251fe": 75, + "7b17318e42b908e90ab20dd795825d73": 75, + "adae02a196f24ceb3049b4fab830cbcc": 75, + "cf1ee97e5e6d4c407d379949ee338dbf": 75, + "b62d2ba2ce1c3d74b4a7599d8518b9b7": 7674, + "4781582b86444aa756c7cbee2193a31d": 7682, + "8329789cf6137cf0dffdfd503c82e1c3": 7682, + "15e015b03111c4c5bd18fd037c9873d8": 79, + "9b590cc0214822068b76191f1d6a0053": 79, + "a1dd8a3e4b8c98dee49d5e90d6b87903": 79, + "b7f19f16b301ff6d53d7027cc01a0812": 79, + "18b49fe6ad55975b6021b40b193035f5": 8, + "74631561069c6b3354b0f141ee8ba18c": 8, + "794949fbb123604f8d7c5dcc9d199aaa": 80, + "b687660446f6e49dfd465cd0ef9f0bc3": 80, + "67c489b34827bb4fae2ba93e8d2a919e": 807, + "2864c05f9bf67f92af830f2fa7de1d61": 81, + "543b64ccb26c18edc6c98c12b1302dc0": 82, + "376f344f8ef5a4f8365867c9e94efb3e": 83, + "62e40b8c8012d02df4fac1c68f10eb16": 83, + "6ae7d401d3b867e356846c0ee50f8218": 83, + "ecf9d0bac130fed7b6a54a67d7b27df7": 83, + "72b5848612f80d14bc51807f8c7e239e": 84, + "1ac2f0fa0dd141bdda30f9b15b8edbae": 8496, + "1c224caf835ad4c19f9477dc5d1e9086": 8496, + "8356b3f0d091b9cc441e2ff8721ad063": 8532, + "2c03b499edcc327b6cb80e41950ac710": 87, + "2cd3573172961fa52f622f14ccff4e1a": 87, + "3cda1e8bf2fc09e9a7595c2f3c32c1d6": 87, + "9376a25def78ef81d5c9dc0e15a1535e": 8797, + "a061d3b953e7ad4d931e8e830364c376": 8797, + "17ae73b8bd1f9bbf2413b15deff83c01": 88, + "7d9f963c9c2e22b542516edd03ada6f6": 88, + "8370d6d10357bc894f9f720ab0e6f0c3": 88, + "932a2ffb998e59d6bf9292566dfc2a63": 88, + "945cf1786cc7b28c02f1a127a0c58209": 88, + "45e8764c5ef9a0fa4d7143007fe376f4": 8963, + "c21b92ef781aa60779dde6e38c474090": 8963, + "24863151abd5baf28c9386d49ffe3c09": 9, + "4995ed01f27b27b650a69390cee33a1b": 9, + "83d37694f53d45c4d8bd740b4b04052f": 9, + "a078a4cb212f2b64e0d0b66a6c3ea10e": 9, + "f08a8009c2b64f03cc3dfe740125cb13": 9, + "61b922208e0518a2e127939d374a43cb": 92, + "ad3fb9946f0bf18c73413d0e4d57ddbf": 92, + "e37bf6813648ec5e8bdbd2f7070010f8": 93, + "4f5f65fe5f8219d791e7ddeb31a635ab": 9396, + "84906f06b302216a6db943ee52a8956c": 94, + "b7eeed1bd8420ce1d895b2ca46a0643a": 94, + "c296021f74ab1192ed7e1865cdebc972": 94, + "d951bf2f27fcfd5641261f82dc3c7c47": 9490, + "6ddf640c2c5f91f12487d813b6257114": 96, + "ca18abf6ccede48681f013db3c43f108": 96, + "1f2a9f322e770be0a3cc2aabdf8bc575": 98, + "5838ccfe7930137c09c2568089ef7b8d": 98, + "d46bb457b8fd20e5bf9991faf7fcfb15": 98, + "4f30ca0bbc44baf3ea688a04ada928a6": 99, + "6e277f8fbd78ecd48ec6a91db9b22cf5": 99, + "f4550e6ca0b6c8a9de2376f85bdc6a8a": 99, + "f6a562042d15dc149831a43cba633ad4": 99, + "8e97a03cfb31917b7c2120405440f820": 9933 + } +} diff --git a/data/msx_hascheevos.txt b/data/msx_hascheevos.txt new file mode 100644 index 0000000..418971c --- /dev/null +++ b/data/msx_hascheevos.txt @@ -0,0 +1,7 @@ +10501:true:"Metal Gear" +10504:true:"Metal Gear 2: Solid Snake" +16395:true:"Picture Puzzle (Karoshi Corporation)" +16506:true:"Sudoku" +16530:true:"Zoom 909" +17024:true:"~Prototype~ ~Homebrew~ Super Mario World" +17069:true:"Oh Shit!" diff --git a/data/msx_hashlibrary.json b/data/msx_hashlibrary.json new file mode 100644 index 0000000..01b3a4c --- /dev/null +++ b/data/msx_hashlibrary.json @@ -0,0 +1,21 @@ +{ + "Success": true, + "MD5List": { + "12e302954fa9b23c11ce7c8f5770b82a": 10501, + "3da994910180808cc03bbe3df973b55c": 10501, + "439ea985617135d70858f0e6f88ba0f9": 10501, + "56a32f310765e54101a10001d28344b6": 10501, + "6e5144f5c8e50fb2f8f00852cbf3d2ca": 10501, + "8473c150867394a0f0de6e8d29c9a50a": 10501, + "01ec86d19248514baf263f0b60df4d0c": 10504, + "614c03a00bfee70c581f759e96cdc099": 10504, + "668217f475619500c87f136949267b6d": 10504, + "9f50d92d35e19d5de37d75a36a410588": 10504, + "c54d3657e78b1ecc7cfe4f641158fbff": 10504, + "6ee570b6fa73fe9a147846078cddc11c": 16395, + "2df142939c9e1147f814099856fd6361": 16506, + "d8e09f622af52e07a83f19ca58aee194": 16530, + "da28da0bb524bd0072e10b2799a88a75": 17024, + "1721862f3f033e74607af9e26688403d": 17069 + } +} diff --git a/data/n64_hascheevos.txt b/data/n64_hascheevos.txt new file mode 100644 index 0000000..851a57c --- /dev/null +++ b/data/n64_hascheevos.txt @@ -0,0 +1,155 @@ +10003:true:"Super Mario 64" +10024:true:"Mario Tennis" +10073:true:"GoldenEye 007" +10075:true:"Donkey Kong 64" +10077:true:"Resident Evil 2" +10078:true:"Mario Kart 64" +10080:true:"Doom 64" +10081:true:"Mystical Ninja starring Goemon" +10082:true:"Super Smash Bros." +10083:true:"Mischief Makers" +10089:true:"Vigilante 8" +10093:true:"Hexen" +10108:true:"Mario Party 3" +10110:true:"Perfect Dark" +10113:true:"Legend of Zelda, The: Ocarina of Time" +10114:true:"Mortal Kombat Trilogy" +10115:true:"Mega Man 64" +10118:true:"Toy Story 2: Buzz Lightyear to the Rescue" +10119:true:"Tsumi to Batsu: Hoshi no Keishousha | Sin and Punishment" +10120:true:"Bomberman 64" +10129:true:"Fighting Force 64" +10133:true:"F-Zero X" +10136:true:"1080°: TenEighty Snowboarding" +10148:true:"Army Men: Sarge's Heroes" +10153:true:"Star Wars: Shadows of the Empire" +10154:true:"Paper Mario" +10155:true:"Pokemon Snap" +10157:true:"Harvest Moon 64" +10158:true:"Destruction Derby 64" +10162:true:"Blast Corps" +10164:true:"Conker's Bad Fur Day" +10173:true:"Yoshi's Story" +10181:true:"Pokemon Stadium" +10182:true:"Turok: Dinosaur Hunter" +10186:true:"Ridge Racer 64" +10198:true:"Goemon's Great Adventure" +10199:true:"Snowboard Kids" +10200:true:"FIFA: Road to World Cup 98" +10202:true:"Diddy Kong Racing" +10206:true:"~Hack~ Super Mario Star Road" +10210:true:"Banjo-Kazooie" +10211:true:"Banjo-Tooie" +10216:true:"Quest 64" +10223:true:"Gex 3: Deep Cover Gecko" +10246:true:"Kirby 64: The Crystal Shards" +10247:true:"Snowboard Kids 2" +10248:true:"Star Fox 64" +10255:true:"Shadow Man" +10256:true:"Mickey's Speedway USA" +10258:true:"Pokemon Stadium 2" +10259:true:"Mario Golf" +10263:true:"Mario Party" +10264:true:"Mario Party 2" +10265:true:"Body Harvest" +10268:true:"Gauntlet Legends" +10269:true:"Rayman 2: The Great Escape (E)" +10270:true:"Pokemon Puzzle League" +10271:true:"Re-Volt" +10272:true:"StarCraft 64" +10276:true:"~Multi~ Banjo-Tooie" +10277:true:"Pilotwings 64" +10283:true:"Chameleon Twist 2" +10285:true:"Bomberman Hero" +10298:true:"Tarzan" +10307:true:"Space Station Silicon Valley" +10309:true:"Glover" +10310:true:"Superman: The New Superman Aventures" +10313:true:"Powerpuff Girls, The: Chemical X-Traction" +10328:true:"South Park" +10329:true:"Rampage 2: Universal Tour" +10330:true:"Bomberman 64: The Second Attack!" +10337:true:"Spider-Man" +10347:true:"Quake 64" +10360:true:"San Francisco Rush: Extreme Racing" +10392:true:"South Park Rally" +10394:true:"Ms. Pac-Man: Maze Madness" +10462:true:"F-1 World Grand Prix" +10486:true:"Mission Impossible" +10489:true:"Namco Museum 64" +10515:true:"Tom and Jerry in Fists of Furry" +10517:true:"Top Gear Rally" +10520:true:"Turok 2: Seeds of Evil" +10546:true:"~Hack~ Super Mario 74" +10547:true:"~Hack~ Super Mario 74 Extreme Edition" +10559:true:"~Hack~ Legend of Banjo-Kazooie, The: The Jiggies of Time" +10574:true:"Custom Robo" +10590:true:"~Bonus~ ~Homebrew~ Pyoro 64" +10607:true:"Chameleon Twist" +10614:true:"Shadowgate 64: Trials of the Four Towers" +10615:true:"Turok 3: Shadow of Oblivion" +10617:true:"Wave Race 64" +10630:true:"~Bonus~ Star Fox 64" +10650:true:"Pocket Monsters Stadium" +10652:true:"~Hack~ Paper Mario: Pro Mode" +10667:true:"Castlevania 64" +10679:true:"Legend of Zelda, The: Majora's Mask" +10781:true:"~Hack~ Super Mario Odyssey 64" +10785:true:"~Hack~ Star Revenge 7: Park of Time" +10811:true:"~Multi~ Donkey Kong 64" +10812:true:"~Hack~ Nimpize Adventure" +10835:true:"Doubutsu no Mori | Animal Forest" +10900:true:"Rocket: Robot on Wheels" +10912:true:"Hot Wheels Turbo Racing" +10926:true:"Mortal Kombat Mythologies: Sub-Zero" +10962:true:"~Bonus~ F-Zero X" +11200:true:"Dr. Mario 64" +11236:true:"~Bonus~ Conker's Bad Fur Day" +11437:true:"~Hack~ Super Mario 64: Halloween Mayhem" +11445:true:"~Multi~ Kirby 64: The Crystal Shards" +11458:true:"~Bonus~ Super Mario 64" +11569:true:"~Hack~ Super Mario 64: Chaos Edition" +11642:true:"~Hack~ Super Mario 64: The Missing Stars" +11646:true:"~Hack~ Star Revenge 7.5: Kedowser's Return" +11647:true:"~Hack~ Super Mario 64: The Green Stars" +12732:true:"~Hack~ Super Mario 64: Sapphire" +12733:true:"~Hack~ Super Mario 64: Last Impact" +12767:true:"~Hack~ Super Mario 64: Ocarina of Time" +12815:true:"California Speed" +14029:true:"~Hack~ Super Mario 64: Shining Stars" +14035:true:"~Multi~ Conker's Bad Fur Day" +14036:true:"~Hack~ Star Revenge 1: Star Takeover" +14117:true:"~Bonus~ Yoshi's Story" +14157:true:"~Hack~ Waluigi's Taco Stand" +14316:true:"~Hack~ Super Mario and the Marvel Adventure" +14331:true:"~Hack~ Super Mario Fallen Stars" +14337:true:"Starshot: Space Circus Fever" +14351:true:"~Hack~ Super Mario Rainbow Road" +14357:true:"~Hack~ Super Donkey Kong 64" +14486:true:"~Hack~ Zelda 64: Dawn & Dusk" +14554:true:"~Homebrew~ Pyoro 64" +14625:true:"~Hack~ Mario's Little Odyssey" +14632:true:"~Hack~ Star Revenge 2: Act 1 - To the Moon" +14658:true:"~Hack~ Super Mario 64 Land" +14663:true:"~Hack~ Super Mario 64 Peach's Memory" +14664:true:"~Hack~ Super Mario and the Cursed Castles" +14684:true:"~Hack~ Star Revenge 3.5: Vacation of Cursed Dreams" +14694:true:"~Hack~ Super Melee Adventure 64" +14721:true:"Rakuga Kids" +14739:true:"~Hack~ Paper Mario: Master Quest" +14740:true:"~Multi~ ~Hack~ Paper Mario Multiplayer" +14897:true:"~Multi~ ~Hack~ Super Mario 64: Splitscreen Multiplayer" +15379:true:"~Hack~ Star Revenge 6.25: Luigi's Adventure DX" +15805:true:"~Prototype~ Tamiya Racing 64" +16215:true:"~Hack~ SimpleFlips' 1st Hacking Competition: Nathaniel Bandy" +16228:true:"~Hack~ SimpleFlips' 8th Hacking Competition: Creepypasta" +16231:true:"Donald Duck: Goin' Quackers | Donald Duck: Quack Attack" +16389:true:"~Hack~ Goldfinger 64" +16489:true:"~Hack~ Sunshine Secret Book 64" +16504:true:"~Hack~ Legend of Zelda, The: The Missing Link" +16509:true:"~Hack~ Legend of Zelda, The: Master of Time" +16529:true:"~Hack~ Thamz in a Wheelchair" +16558:true:"~Hack~ Legend of Zelda, The: Puzzling" +16573:true:"~Hack~ Yoshi Garden, The" +16759:true:"~Hack~ SimpleFlips' 10th Hacking Competition: Halloween 2019" +30:true:"Jet Force Gemini" diff --git a/data/n64_hashlibrary.json b/data/n64_hashlibrary.json new file mode 100644 index 0000000..1d6c1cb --- /dev/null +++ b/data/n64_hashlibrary.json @@ -0,0 +1,464 @@ +{ + "Success": true, + "MD5List": { + "165A9558B7539507E73E7AFECFFB200C": 10003, + "20b854b239203baf6c961b850a4a51a2": 10003, + "2A99DF604B735DBAAA8432A630748F2B": 10003, + "3E79210C475CD690D26416D8307E700F": 10003, + "49fbf9c744c458405f685d42b762a0be": 10003, + "597204EE766B93C1AE33B7FC0739E170": 10003, + "73c72657b1320faf2a6aea0e0a3de45a": 10003, + "85D61F5525AF708C9F1E84DCE6DC10E9": 10003, + "987C3939B2644BBB760D4047223023BB": 10003, + "A76140CFBF98148EC5BCAE1F5DE26B8C": 10003, + "b09b5785d32acb192d283b07594d3ab7": 10003, + "dcfefd52ec2f28f5dcd01bccab8aeee5": 10003, + "E51A6FF9B2DBBD216158CACFF35EB215": 10003, + "759358FAD1ED5AE31DCB2001A07F2FE5": 10024, + "8DFB2FAC888368660B54E390FE9042F4": 10024, + "8EB1C2443D0B2E6EDA52A4EEA66D6C35": 10024, + "C4A2DFC5C9D5041B2D6575DB191BF3F3": 10024, + "FFF9B3E22ABB9B60215DAFB13AD5A4DE": 10024, + "2A56A06A05A9DBF9E693325B503AB5B1": 10073, + "61C5D9CCE563BEE460C97D67FD813F67": 10073, + "63042BC0432FDC1133D7CDC5867717B5": 10073, + "70C525880240C1E838B8B1BE35666C3B": 10073, + "A218A681B0DE82EB3D1A465F0DBCD837": 10073, + "CFF69B70A8AD674A0EFE5558765855C9": 10073, + "34968e3c8f05987e63628f9bc9fe8ed6": 10075, + "9ec41abf2519fc386cadd0731f6e868c": 10075, + "b71a88ba73e141fa2d355a6a72f46f6c": 10075, + "1add2c0217662b307cdfd876b35fbf7a": 10077, + "2C1C2949B4A5F16AE7C6D9B5DB4C034A": 10077, + "02B214F4C1A288DD74E2870723C6FED3": 10078, + "231F0134D2899C08930F6E34682D2C0B": 10078, + "3A67D9986F54EB282924FCA4CD5F6DFF": 10078, + "4172E73D0F2939683214D631F9E4F51E": 10078, + "6C634D0CE7CD99CCCBB4CE8EB837EDB4": 10078, + "190CCCA6526DC4A1F611E3B40F5131C0": 10080, + "1B1378BB9EE819F740550F566745AF73": 10080, + "5A8684BC098428DD2A401F4CDAEE78DF": 10080, + "B67748B64A2CC7EFD2F3AD4504561E0E": 10080, + "643CCE1AB06F97E9590241D27E5C2363": 10081, + "698930C7CCD844673D77FFECCB3DD66E": 10081, + "F2162BE647E4AA59254EC5ED7DB1E94A": 10081, + "1E201F4C469927828BCF3335F2F3C4A3": 10082, + "3C4E65D9B7BF55338496108F04DA7F41": 10082, + "694dea68dbf1c3f06ff0476acf2169e6": 10082, + "9A27D420B43A908ECF4F28F859E1C541": 10082, + "F7C52568A31AADF26E14DC2B6416B2ED": 10082, + "0F4AF851005304993C21D414C8165296": 10083, + "2EE917366F64A06472D7622A2A05990E": 10083, + "495A9BFFD6620BE43225DB7133373FC5": 10083, + "EB3B078A74D4DC827E1E79791004DFBB": 10083, + "AFCE4FF54D26B29BA7BE5BE1B180FEE9": 10089, + "D616ADF6441ACBBD0E6BEF023A8F6031": 10089, + "A5921C00111200257284CE0ABA0904CA": 10093, + "A8531BFD6FFBAD2059EF4F34AABC6282": 10093, + "EB98F1B8C6898AF7417F6882946DA9B3": 10093, + "478261EFD4991F445D23381844DA5002": 10108, + "5B8C0C27F64DEB890FDE54E83B313E26": 10108, + "76A8BBC81BC2060EC99C9645867237CC": 10108, + "8E62EC6FBE3CC9FF6284191C9C88E68F": 10108, + "AC422FB77258336895EE5355F1B2B36D": 10108, + "6F86452863716270C51C4F433AF47534": 10110, + "7F4171B0C8D17815BE37913F535E4E93": 10110, + "E03B088B6AC9E0080440EFED07C1E40F": 10110, + "EAEDD63AE7609C8C795DB93AA2437C4C": 10110, + "F267577A1FAECA4C07F1BB188452CA80": 10110, + "0D6331C2FA062F20272CC1A7F80F7271": 10113, + "2ECB8739EB694133B88BDD2CF4617F24": 10113, + "44E6921A257E913977088B9B6BA9D25B": 10113, + "5BD1FE107BF8106B2AB6650ABECD54D6": 10113, + "6697768A7A7DF2DD27A692A2638EA90B": 10113, + "77BF20D3ECA19EBCFC5FED35F5CF65DC": 10113, + "7FD3BA9B095C244367E84A6E4493349B": 10113, + "86A9550AD8CDDACA13813765045A00EE": 10113, + "9f04c8e68534b870f707c247fa4b50fc": 10113, + "AF27177927468D885E49A0FCD0636768": 10113, + "BDAA297B76B7838319788DBFC0D510DE": 10113, + "F85FC5CE4451C1E9F3EE00B814489A51": 10113, + "116d3ffc3c906620f99b0a5f0b6b1600": 10114, + "11819262F59DBD61F9E6621483CC0245": 10114, + "3DCB15043063BD656A0223C519218CFB": 10114, + "19E60FD08033B4AFC86AA0F2ED39181D": 10115, + "3620674ACB51E436D5150738AC1C0969": 10115, + "B44E9C2D9D2F2DE3AF4793B824CCF936": 10118, + "EEECA2B0130B8C9A11A1FC95110990B0": 10118, + "103e16bf7fcfb4d713d2ebe19dcb5311": 10119, + "3B8638452B46DEBA9EDFFBCD6CDB6966": 10119, + "79BD05A97E50AC63A638E4E90AB9588B": 10119, + "a0657bc99e169153fd46aeccfde748f3": 10119, + "093058ECE14C8CC1A887B2087EB5CFE9": 10120, + "B68F49AA8F6F7499184AC6B7B8570F2B": 10120, + "E52CE4AB747FF37663E93E5C322BE9D2": 10120, + "0035E8205336982E362402AAEA37D147": 10129, + "A3BEC94D91F24DBEA7290FF0DAF92F5C": 10129, + "A47AF0821704B001C3565C0C1D5AFEF1": 10129, + "E7008D17FD71D9C2BDA1362C885388B2": 10129, + "60297B40A16AC569DEE8659062B08B7F": 10133, + "753437D0D8ADA1D12F3F9CF0F0A5171F": 10133, + "7B2D9E24E6535BE213BA036EFE618E31": 10133, + "DEE6EF2CBAAC89846A59983E19A55348": 10133, + "EE79A8FE287B5DCAEA584439363342FC": 10133, + "5CA3A45C21E16EDAFBAFE1BD0491DC8D": 10136, + "632C98CF281CDA776E66685B278A4FA6": 10136, + "F58B3055A2C642FB2F563F11B6B597EA": 10136, + "FA27089C425DBAB99F19245C5C997613": 10136, + "06B9E71B0ACC83F8C75BEFD2EC602B52": 10148, + "53E2872612760133AB7B2CC2E22B847C": 10148, + "7C4EA4747805499059AAD17C209A6E77": 10148, + "B8085C2EDB1C6D23E52ED8C06D92B4F8": 10148, + "591CF8E672C9CC0FE9C871CC56DCC854": 10153, + "5CCE8AD5F86E8A373A7525DC4C7E6705": 10153, + "99B150A2E655D771EE1695CC1DF65B65": 10153, + "C7B40352AAD8D863D88D51672F9A0087": 10153, + "FA635E837275D28FD5A24D5675BA42C8": 10153, + "2b210d3e17bc135730614f0ca5ddea42": 10154, + "7DE64234EE20788B9D74D2FDB3462AED": 10154, + "A722F8161FF489943191330BF8416496": 10154, + "AC6C61E0652075869190E168A838E803": 10154, + "9B10B9D70DAC67AE40953148FBE9CB96": 10155, + "FC3C9329B7CDD67CF7650ABF63B9A580": 10155, + "0A5D1E13B410D209835B43F2A985EF64": 10157, + "6DA848A70D83ECE130D274124760928E": 10157, + "5B9D74019FFCC91B8737CE09C0AF5030": 10158, + "7FCCB47498EEC06E96AE9372247D1E90": 10158, + "BDA717ECC8434F12F313342485828B58": 10158, + "DFFD909E47B4ABC8FB25669C83EEF8AA": 10158, + "5875FC73069077C93E214233B60F0BDC": 10162, + "889d4d337ad11ce94357511c725eab6a": 10162, + "c1cba39e01bb3cd76a1631ae906ebe38": 10162, + "FD169651B23B5424C2D4CB5D9AF81FC3": 10162, + "05194D49C14E52055DF72A54D40791E1": 10164, + "e31ded9c7887ebc07a343b8865a2bf55": 10164, + "27e71da98ce4b7b11bdcc92a6c400679": 10173, + "586A092E22604840973B82DFACEAC77A": 10173, + "D3436319D51DF291BA71A2E512DDB7B5": 10173, + "3a7324ce816d5891dea074055690750a": 10181, + "ED1378BC12115F71209A77844965BA50": 10181, + "039875B92C0E4FEF9797EC1744877B17": 10182, + "0ADBD2C70517AC80ED2430D61D3363AA": 10182, + "13FAA58604597E4EDC608070F8E0AE24": 10182, + "1428572BF7A06CCCB90411BEA697929A": 10182, + "1E09EEEBDAD6527BDE34A9E863AA6809": 10182, + "3D1B3CF1FDE3D730F92FCB4EAEE32311": 10182, + "548FC0E6035B65BC2108255039859934": 10182, + "AE5107EFDD3C210E1EDD4ACD9B3CAC31": 10182, + "E030EFB29598B151EBAAF6B101803D57": 10182, + "F0F687B449A9F4B0BFF08104C35EA08C": 10182, + "87B8428DAC1D275B0E32E42DD5CFDE22": 10186, + "990F97D56456FC23E52BD263E709E21E": 10186, + "29BC5C1A24D3979D376AD421000AC9CB": 10198, + "624742B506DF9FF5C2D86D649EB8F3FB": 10198, + "B31DEBB9007459B0B20D7E73C189CFFB": 10198, + "127AB20EE41ADB54C83DFB5BF5794D27": 10199, + "14B72B59AA3EFABF368779E6EBECDCAB": 10199, + "AB4382E583AE139EEDBAFCE5FA87E4C8": 10199, + "B8D4B92E66A312708626B3216DE07A3A": 10199, + "EB31F4F9C1FE26A3A663F74E9790516E": 10199, + "2a9c172f12cd6acb941911c22fef75c8": 10200, + "2c6d146a8473511cfcfbbe8518f49d71": 10200, + "73AEDBD8AB7FE0AE842F3BD70F77ADC2": 10200, + "422FD8833F865C4A6C17FCAC4450A69E": 10202, + "4F0E07F0EEAC7E5D7CE3A75461888D03": 10202, + "511833A46BE4E00D1B3655C88E278422": 10202, + "94D81D14A2D768DD0EDA3A845AFB25CD": 10202, + "E00C0E6BFB0CE740E3E1C50BA82BC01A": 10202, + "4f79367d5db29a00590377dba46e3b58": 10206, + "5B5396190E4AFBB4D2D358A699522CB0": 10206, + "80E5019C9DD12648F909B3A5715ED580": 10206, + "da2689fb890854138c9390dd8f487cc0": 10206, + "B29599651A13F681C9923D69354BF4A3": 10210, + "40E98FAA24AC3EBE1D25CB5E5DDF49E4": 10211, + "61B5C5C3E5E1A81E5D37072C01B39B76": 10211, + "8B2E56F18421A67BCA861427453A1E19": 10211, + "CA0DF738AE6A16BFB4B46D3860C159D9": 10211, + "949A7017E27D2ED402D2AD709498FD65": 10216, + "EA552E33973468233A0712C251ABDB6B": 10216, + "19B3E60F53AE174321A9C410C076CBB2": 10223, + "3D8FAC8917CE0D2D9F6403860ED2BB8E": 10223, + "6770DDEC84EB21A5E0D0F55DFD52A01A": 10223, + "6E47938FFEB8B202198877C7CB0EFA1D": 10223, + "9F0492A34D7A2D7C4E9F29DC1848A04A": 10223, + "EC10D3D8A602BBB4D7DB942B4B53CD10": 10223, + "1AF046C0638F8E401270976841D1AB58": 10246, + "968A49EA33D35C94A393A770A8117AA3": 10246, + "A44B7A612964A6D6139D0426E569D9C9": 10246, + "B1A67AEBC2BE89A800E5EB60C0DFA968": 10246, + "D33E4254336383A17FF4728360562ADA": 10246, + "08E1152E9D9742E9BBF6C224B6958F2D": 10247, + "DED8648106F16417C01B4CC68986E97B": 10247, + "446D5215C4D34EB8AB0F355F324B8D0E": 10248, + "caf9a78db13ee00002ff63a3c0c5eabb": 10248, + "fecdcbbcd1a178a2f4b29b43facf9f39": 10248, + "09d23066364c5f212731b19dd9b9c87c": 10255, + "b457298b87b85bbf950f24867daa9475": 10255, + "0BF64427CF68E49C70E9EC2C9D815209": 10256, + "99D8FE5ED2F827FB1C43A3EA2B7CA9FD": 10256, + "1561C75D11CEDF356A8DDB1A4A5F9D5D": 10258, + "B26AAFD452C9816E1B7AA0954E75825F": 10258, + "FE05FB7A1E76ADCF8942B24A97748939": 10258, + "4D010AE1AF4B04D6B70B799C56F05993": 10259, + "55634FF90EE997790781F79A5B0097EE": 10259, + "7A5D0D77A462B5A7C372FB19EFDE1A5F": 10259, + "846984C666C35407961C7C069066FC42": 10259, + "903E6929666531D72D05D1E4C522E305": 10259, + "22D2815355F2BE326AA4AB08976EA091": 10263, + "8BC2712139FBF0C56C8EA835802C52DC": 10263, + "04840612A35ECE222AFDB2DFBF926409": 10264, + "A838E03022502B3A0B945286C0496AD1": 10264, + "F107F70EE02DCED2617A5DEDFF72869B": 10264, + "F70112B652B0EE4856AF83F4E8005C31": 10264, + "1F065DB3BAA31487DE47DEFE56DCD374": 10265, + "20113A1AC62660F507B00E541A3AC584": 10265, + "3B8585ED03E8DDB89D7DE456317545E7": 10265, + "B27FA5E9AD0CB47BB3A74FFAC7BC8EDF": 10265, + "9CB963E8B71F18568F78EC1AF120362E": 10268, + "5dbbfd5ace8222fa8fe51be113453c13": 10269, + "8D0B9783B56E4D62D0462A80CB61947C": 10269, + "AFE4CC6F067852B96FEC84CB739B4C99": 10270, + "CCCDA8BDB4C64DE28FA086DE3F8C0BD1": 10270, + "E722576A15182CFED6782379CE4BC8BE": 10270, + "3FC4D3187435443455F8355B2D3F8934": 10271, + "b23b9e8cec8b00507d20464905a0c5c5": 10271, + "559F71B861F639B6376D891E3023414B": 10272, + "FCB1EDE6D4F63DFF012CE8C2E62E95CF": 10272, + "cbbba75b2f2e6aefd2577d43ed793a95": 10276, + "8B346182730CEAFFE5E2CCF6D223C5EF": 10277, + "9E90E82CDA1F83B2BD43B9B19F68E404": 10277, + "C5569227242E04138AAC8457B7F83E6C": 10277, + "00327E0B5DF6DCE6DECC31353F33A3D3": 10283, + "45D1D039AB7926ADC748DE640AFD986A": 10283, + "740AD4DB03952BBE997DB09947A41E62": 10283, + "7A20B97C0B509AAA38E36068ACD217C3": 10283, + "BE134500DA3342CD5DC7922B5E2697B7": 10283, + "7e9aef39dea98b93c6b954fd1732a212": 10285, + "EF2453BFF7AD0C4BFA9AB0BD6324EBF3": 10285, + "EFEFAF4D6DF695651FDA796C9AE8A440": 10285, + "F59261E74B9466AC9F8A2A709CFAE8B7": 10285, + "491CB5649BF3957591EDF9B1E5D765D4": 10298, + "5D82E903F65341487DDC11AF80AD607A": 10298, + "735DC0F52D801D820CCDA651058E43DE": 10298, + "BD1DE2FC1CF31096423563A40ECBF933": 10298, + "DF3CDD959E8C63B45F557FC197CE0E63": 10298, + "EAE7E0EE5328ED9F13B9CF9990189928": 10298, + "FB7D7D58E4E3CBD434DB579AA4EF3F5E": 10298, + "92ee9af3dfeb19a1339f3c75baed1e6b": 10307, + "87aa5740dff79291ee97832da1f86205": 10309, + "A43F68079C8FFF2920137585B39FC73E": 10309, + "3F64B4F72E61225EF3AE93976C9BFC7C": 10310, + "6574373D96FB836E5E0B79DB0F7D10EC": 10310, + "2991bb68eca54813d6b834adbbbacc4c": 10313, + "1730119B0455EF89C4E495DEC8E950A5": 10328, + "2C94A246E701D667BA807DAB6C9771E2": 10328, + "C26EFF29CEE9D8F65D5D3321413400FE": 10328, + "1492806F12D33C3EA0EDB6848D43B1CC": 10329, + "4A118869C2089FDAAD900DC34DF0788B": 10329, + "8113D0EA2008402D4631F241F625D16B": 10329, + "820990A9B6194339B30C4B6D3EA75309": 10329, + "AEC1FDB0F1CAAD86C9F457989A4CE482": 10330, + "CB7F9FAD147F0ADB63A79EDC57237219": 10330, + "7F1991B8861E7E532EC21ECF2AF82191": 10337, + "EA9DD6280A01AB95984CAA1CB82C621E": 10337, + "097605021951024C3ECB2D502C0C2A9F": 10347, + "67C74AB836A9D54FAA4D41B491E3794A": 10360, + "A0DE17A6C2D0FDA85B1FA95493ACAF26": 10360, + "F015FC28E1D62A36B4EBF4C79CA8F285": 10360, + "1C494719032FF99382B167C43FB11762": 10392, + "39D0960F29634E5BB6AA21F00C1044E7": 10392, + "08bea3310e778a6584eb64cd3f15f86e": 10394, + "82DCD2B311352AD9B571089AFF6B6171": 10462, + "a81b1de864df3f4bb0903760be673f21": 10462, + "0405DA489B59895412E60659411FBC49": 10486, + "85E09C5B9C3A6C6E7B8FCE029D5CD50D": 10486, + "EEBDFBD7CB57202D70CFFFCAAF55E93E": 10486, + "D2675B639421FC6EBCE92F0511F5BC5D": 10489, + "E61251D2819E3BF3A9C0B95329F60F70": 10489, + "9DCDFAB5FA65EFE5E18652E59A116E64": 10515, + "a63a9af85be8bb47c1741b8a37115354": 10515, + "105d3fb95998914a3eb7ac9e7631c6d1": 10517, + "6f7030284b6bc84a49e07da864526b52": 10517, + "B50A5815E2FB20E90B834A571F8FD8C9": 10517, + "15877E23F64EEF6F66A616DA7B24D6E2": 10520, + "166221365DB70D446C4206083D422DD1": 10520, + "76557AB6A4D86107EF31603B4822DAE2": 10520, + "FAD4DA8E17CE12F68CDF29180CDD4A90": 10520, + "15D688DE0D23BB437D95C358C635465F": 10546, + "270897F494F0CEDD27C3B65B58C00A27": 10546, + "9151E55F13E30592F9D729835FFF17D5": 10546, + "fe1fe0168c157831b4f61a38e6ecb021": 10546, + "0bc897ffc9cf921918f2e547e7c47ece": 10547, + "77b35aa6875d1a1ffa3e0ee9276e27b4": 10547, + "8c7f1ddead2a7307eec3f2be6200dfdd": 10547, + "ee7673685f78ab9a6990b4f36eea1df3": 10547, + "a748177d26841d450469cf9a27b01532": 10559, + "866E679C48444214D9246BE3885E1F81": 10574, + "A06D2E83CF2628915E8847F609474661": 10574, + "c6eb5357874444fbd832cb63999d6708": 10590, + "1CD90B13B7FD6AFDCB838F801D807826": 10607, + "397BE52D4FB7DF1E26C6275E05425571": 10607, + "443F23EA81C635531AF03B03DD62BB9F": 10607, + "4C8FC1AAF634C3B12AE30D126668EAF7": 10607, + "74520D4064C37C72C2BDEE4AF2520E59": 10607, + "D8A88ACFCD89DF7A59D9A1B050FDA740": 10607, + "EC5604A1573D0A2C08F6EF36BE842154": 10607, + "4be1e1a9c5bc5202108ba0cbaca648db": 10614, + "bcdc05dd4b0f22f640be713916f4a4fd": 10614, + "d616cf79f9b2e213fa2b6383893e4064": 10614, + "dc06a3739be0c9673c97bc29671eeed7": 10614, + "fc4db34ea0c88f5ab72046aa7dbb30d4": 10614, + "0c92616a1e18dbf389378ef2a2c2e957": 10615, + "2048a640c12d1cf2052ba1629937d2ff": 10617, + "4110c7afad95d61880d54b90defee58b": 10630, + "7420d9a92c03dfcf224a1f56d71727d1": 10630, + "7159F1B35AF48EC43236DDFCC2C73B5C": 10650, + "705c25c41897a6e544835411ba62961f": 10652, + "06B58673F7D31C56F8FE8186E86F6BD6": 10667, + "0BBAA6DE2B9CBB822F8B4D85C1D5497B": 10667, + "0BFEBEDF99C1E715ADA7103664BFCC97": 10667, + "1CC5CF3B4D29D8C3ADE957648B529DC1": 10667, + "609B7B72221EE6DC3E25E419752AEDCE": 10667, + "2A0A8ACB61538235BC1094D297FB6556": 10679, + "B0CC37A45BC1B6C76CD7F0B71FE2BB1F": 10679, + "515ed8622915bd22be84f2a0a5f430de": 10781, + "dab22d19ccc17c484a45dcb966d33ca0": 10781, + "1491df5f012df05ee2d92c65b6eca6f2": 10785, + "beadde9c49b1cc768a61537e495bb294": 10811, + "4661B8323F591A1B7C30F83BE64CAE6B": 10812, + "a4f7c57c180297b2e7ba5a5feb44fe0b": 10835, + "53BD4994CB0DFCA0DB955389E96145FA": 10900, + "c2907eb2f9a350793317ece878a3b8e3": 10900, + "3BD7F78AF738FC3D68D855C2CD525C26": 10912, + "4311A1AEF1898678331F7E3486055307": 10912, + "74fbf4979df136e2edfb71948ecdcfa7": 10926, + "deec4faec416f4e02d934c2e42c0caad": 10926, + "58D200D43620007314304F4E6C9E6528": 10962, + "1A7936367413E5D6874ABDA6D623AD32": 11200, + "30EC4F3E1C435ED8B1D1FD3788B6A407": 11200, + "80734de72e29a4ae50a349a8f3ae1ae4": 11236, + "d4b63947b407796147d1ebdd905bf0ce": 11236, + "1a0db745b64db5fb5c839e19cd03ef81": 11437, + "aa618746f240b038bd241867dc2fcc81": 11445, + "2916515602191f78d97533970a04b9cf": 11458, + "e2ca81977b174927f3996289313569ee": 11458, + "4ea2d2ee0500a2f968022323be7adccc": 11569, + "7939c1c9c7d6e1ad9bb1867f4bf3c1fa": 11642, + "05371aeaab97f5a02baa6bb286f5e541": 11646, + "479F1E7ED8DA3DC35256E517360E00A9": 11646, + "DFBE9B84C87F918B6024EE5F22F33FAE": 11647, + "bd329373ca8293f4f879d60a747d3535": 12732, + "70059d4d7ba7ac0f0741b44aec8b44dc": 12733, + "b5490ac87a3467b11baa2b586a310f4d": 12767, + "965ad2fa317f0644e49a89a3219719cb": 12815, + "b165d10fb207ebdb2c73633aab102030": 14029, + "9504d9ce75b2aef8ff6a7d6216884393": 14035, + "9f41d4e7c7022734fbfe3bf3500d74ce": 14035, + "6bbf30e75a6c2fa2b71ae1e9009cbc4e": 14036, + "defb190a6cd011bf052b3a2681403276": 14117, + "f4ed1566f5d1d2e5f5f40bfec50c6380": 14117, + "7df0190dff8f195f59de7b86812d2860": 14157, + "e9013937e0025d305d35dbc259e54de1": 14157, + "3b0fda772f58d5f234dba2192d930f86": 14316, + "2f9d9399f992ddc0511aeecabce7b527": 14331, + "42af1992978229bbb5f560571708e25e": 14337, + "5255c9f757d88188ed3d90faeaff462e": 14337, + "7000a0951b6869635acd2db75a53ff68": 14351, + "732556723f46102eaa62958da4995af4": 14357, + "848d65e7d58492aefc585ce7f201381e": 14486, + "2ac0f88bea02d67896ffeae9e8ec72e7": 14554, + "b9d4fb1265600da46153fe89b113bd6c": 14625, + "f819a10f6b0e966549ea8b04da897ca1": 14632, + "9feee5da895fb2e115bb15d1c4a9f906": 14658, + "aa1502731d411b59af3f96e11499ca2c": 14663, + "c2cc0c75209e5606380ce55902f69d5e": 14664, + "f4ba203179a5c12f4a4bcac88bbce70e": 14684, + "152ffb83c9d8a438ceb67fb02ff805ae": 14694, + "9254ad15ca75a2cf637f7ff4024f9f5e": 14694, + "ca5e37accedf72900a7c6a8b7cf7b599": 14694, + "e00ce18ae7b9cc93ecdbb2fcc0e24b50": 14694, + "fc0e69509dc22c6d160d68e4e6833482": 14694, + "167a3502f06cf0eef56758533f3d0e52": 14721, + "a232866fc439eda98b648047ffb243cb": 14739, + "6a7dda1f30560242fd341c9156a5612f": 14740, + "f0595a36eab6109c5ff2420eb452b6e2": 14897, + "1b61e2d31b6c00fcc4985db449549d7f": 15379, + "cecab8df02c02f38c9cf1bdd57b1da00": 15805, + "0da45298d04aa8678f37c8ea08e8fcb6": 16215, + "0e1b7e8aaabc515a2cae2deac020eb02": 16215, + "389b9cd772a2f289965c4bd34010155a": 16215, + "3f3b194489452cdc964f859956a37689": 16215, + "41722362d8b0736408eac5c0ad4a81cb": 16215, + "4450b9c124b2acef41e533231e71601f": 16215, + "45011153570f79d05adbd5325c8b4408": 16215, + "586a134a9f6db70940761d840d37568f": 16215, + "63ab1ccc87d1ee6efa76997d69314f4c": 16215, + "6b6394d9e1567e4b2569ad8092c5bd60": 16215, + "71dd35d192a86df43ca2c9bfeabc3134": 16215, + "76383fd9805f3b2bc3c45a6b2186932c": 16215, + "7716eef7b4298586b0dd64362d7a4bb1": 16215, + "86d47fdee9c4aff948caa36cb7dfe3be": 16215, + "8df4c20933e210c94ca4e37ad4049c1f": 16215, + "9f2a9801179be35563d6b176cf6b9265": 16215, + "aa1a2926a44a8a82b7f7af90d6d09965": 16215, + "ad2873ac9d98194ffe62669e8365a678": 16215, + "be0454db882168bbf0f70ff87f4ad0b3": 16215, + "d1488dd9c6621d31c890d2ad6d4c4bc7": 16215, + "de233aaacc2394bb36b16f6cad9e7099": 16215, + "de815e72755910aa3b1db632dd439706": 16215, + "12361cf2e1c3a3d0c754c26734974403": 16228, + "326d77a82a7cbb1bd524a02b0fb3acfd": 16228, + "354aa4a45fa4237330c240e878faa998": 16228, + "35d600ca4e4b998b670515bf5e7df269": 16228, + "366a34ede2531a2f228f85db425a2583": 16228, + "3e68c58f89e33cd33c46cfd289e3ce82": 16228, + "51245f9dc0c4b43705f04b269c91f7ae": 16228, + "6105028474aea251a50ac523e2477406": 16228, + "73f58f49a9cc1eda16ff3af5fd1d6dac": 16228, + "74c3ef452478b9718d45aa4e678fa52c": 16228, + "7c43b4e849128bf1478894ac89d8a513": 16228, + "91a75d0d0108b6c29f5db3176e939749": 16228, + "9729128f20c0fbf88cee43bc35be75da": 16228, + "c3299e1f0c41975fea66970031bb3abd": 16228, + "c710fd0dc573437635f345687fa4fbc0": 16228, + "c93875b06c5f3436d77416ab70b2158e": 16228, + "d8fc198ac97da8b2a042e37d4547abab": 16228, + "e5a536310ef9d25a343616168275ba3c": 16228, + "f58431c29651f3e8bfdefb3792398e34": 16228, + "fd2242679f01015cdc9e6d3c3e678578": 16228, + "0e0e920ab13ef13508f5a98cc4cd2ff8": 16231, + "226cfdb297116f29bfb01bd4dec9f064": 16231, + "f2b2d71de20bc16ff9f036d965a2e499": 16231, + "a56b15faf24389dd375e7afb03a7d3c1": 16389, + "d18eb3dcdf403b53c750cc95d5a6beef": 16489, + "6ff84514a871a1bdffd017a5f431d83d": 16504, + "d77d20bdea051ba613723be9b931b4ae": 16504, + "688d9e956cd406fade6cbe21bc033392": 16509, + "621e92d72998d8ab3ad9312e39cefed6": 16529, + "429f5628eea9557417494a1bf5634adc": 16558, + "7e4d24dae3a3dfcd49c5d4814bd3ce6c": 16573, + "0174926a03d2965049a5bb43d90f943b": 16759, + "269dfed8afc0645e2caed1a06467c3d5": 16759, + "36bf506008be2a5252381a2fcc9e66f2": 16759, + "40af13f185da44afcb59f8a27de63f1b": 16759, + "478588303d8314fc011c5eb9417ae7d4": 16759, + "4942df4fb3cbe06a6d012e1ac8cd50c0": 16759, + "6d51da342c2d2948a9c7b124c7b29c2a": 16759, + "81da0fbbeb363f77ce5b9b6301665da7": 16759, + "863adcabd65baef49cfe8ee67fb6ca3e": 16759, + "87104ad54ec2db14860292c9609eef7e": 16759, + "9ba938a01041a22918bd88febb88d68f": 16759, + "9f0e4fdcbca74726abd0ed3ebbb59279": 16759, + "acd8bbfe407d4c9a85703f3d776751c4": 16759, + "b10345aef0198371af70aa798477b358": 16759, + "d12d96252e74af34786449b0eb7d758f": 16759, + "d7ba627a6475b1ee874ac99c399e1600": 16759, + "d87b79ca31a9deebb88d247a8aad7f03": 16759, + "e522b5cca0089538384010d8c5388b5f": 16759, + "fee4ec26cb3eba7fff21feb1df009c35": 16759, + "ff5c6ed0025b957d5ec59b4bd93791ce": 16759, + "0EF01AFDE32E40228C03904E3D884ADD": 30, + "772CC6EAB2620D2D3CDC17BBC26C4F68": 30, + "BAAF237E71AA7526C9B2F01C08B68A53": 30 + } +} diff --git a/data/nes_hascheevos.txt b/data/nes_hascheevos.txt new file mode 100644 index 0000000..b4c4569 --- /dev/null +++ b/data/nes_hascheevos.txt @@ -0,0 +1,627 @@ +10183:true:"~Unlicensed~ Mortal Kombat II (Hummer Team)" +10354:true:"Super Turrican" +10361:true:"~Unlicensed~ Krazy Kreatures" +11075:true:"~Hack~ Roll-chan Evolution SX - Episode I: Roll-chan Gray Zone" +11076:true:"~Prototype~ Thomas the Tank Engine and Friends" +11142:true:"~Homebrew~ Indivisible" +11655:true:"~Hack~ Castlevania: The Holy Relics" +11689:true:"~Hack~ Zelda II: The Nightmare of Ganon" +11831:true:"~Homebrew~ Gruniozerca 2" +11833:true:"~Homebrew~ Super Bat Puncher" +12749:true:"~Prototype~ Bugs Bunny Birthday Bash" +12819:true:"~Homebrew~ Lawn Mower" +12831:true:"~Unlicensed~ Super Angry Birds" +12855:true:"Mysterious Murasame Castle, The" +13326:true:"~Homebrew~ Lan Master" +13345:true:"~Hack~ Super Mario Bros. 3: A New Journey" +13393:true:"~Homebrew~ Cookie Clicker" +13417:true:"~Homebrew~ Nebs 'n Debs" +13420:true:"~Homebrew~ Sudoku: NESWORLD Edition" +13422:true:"~Hack~ Ninja Gaiden: Dragon Scroll" +13428:true:"~Homebrew~ I Wanna Flip the Sky" +13792:true:"~Homebrew~ Bootèe | Bootee" +14017:true:"~Homebrew~ Gruniozerca" +14227:true:"~Unlicensed~ Legend of Zelda, The: Triforce of the Gods" +14319:true:"~Unlicensed~ Sexy Invaders (FDS)" +14336:true:"~Homebrew~ Micro Mages" +1446:true:"Super Mario Bros." +1447:true:"Contra" +1448:true:"Mega Man" +1449:true:"Final Fantasy" +14496:true:"~Hack~ Rockman 4: Burst Chaser X Air Sliding" +1451:true:"Mega Man 2" +1452:true:"River City Ransom" +1453:true:"Zelda II: The Adventure of Link" +1454:true:"Legend of Zelda, The" +1456:true:"Alpha Mission" +1458:true:"Batman: The Video Game" +1459:true:"Blaster Master" +1460:true:"Bubble Bobble" +1461:true:"Castlevania II: Simon's Quest" +1462:true:"Castlevania" +14628:true:"~Hack~ Deadpool" +1463:true:"Chip 'n Dale: Rescue Rangers" +1464:true:"Darkwing Duck" +1465:true:"Donkey Kong Jr." +1466:true:"Donkey Kong" +1467:true:"Double Dragon" +1468:true:"Double Dribble" +1469:true:"Dr. Mario" +14692:true:"~Hack~ Ghostbusters Remastered" +1470:true:"Dragon Warrior II" +1471:true:"Dragon Warrior" +1472:true:"Duck Tales" +1473:true:"Excitebike" +1474:true:"Friday the 13th" +1475:true:"Gyromite" +1476:true:"Gyruss" +1477:true:"Jackal" +1478:true:"Kid Icarus" +1479:true:"Kirby's Adventure" +1480:true:"Kung Fu" +1481:true:"Lode Runner" +1482:true:"Maniac Mansion" +1483:true:"Mega Man 3" +1484:true:"Mega Man 5" +1485:true:"Mega Man 6" +1486:true:"Metal Gear" +1487:true:"Metroid" +1488:true:"Mickey Mousecapade" +1489:true:"Punch-Out!! | Mike Tyson's Punch-Out!!" +1490:true:"Monster Party" +1491:true:"Pac-Man (Namco)" +1492:true:"Pinball Quest" +1493:true:"Pro Wrestling" +1495:true:"Rambo" +1496:true:"R.C. Pro-Am" +1497:true:"RoboCop" +1498:true:"Rygar" +1499:true:"Shadowgate" +1500:true:"Stinger" +1501:true:"Street Fighter 2010: The Final Fight" +1502:true:"Super Pitfall" +1503:true:"Tecmo Bowl" +1504:true:"Tiger-Heli" +1505:true:"Trojan" +1506:true:"Wizards & Warriors" +1509:true:"Battletoads" +1510:true:"~Bonus~ Akumajou Special: Boku Dracula-kun | Kid Dracula" +1511:true:"3-D World Runner" +1512:true:"8 Eyes" +1515:true:"1942" +1516:true:"1943: The Battle of Midway" +1517:true:"Nightmare on Elm Street, A" +1518:true:"Abadox: The Deadly Inner War" +1519:true:"Addams Family, The: Pugsley's Scavenger Hunt" +1520:true:"Addams Family, The" +1524:true:"Adventure Island II" +1525:true:"Adventure Island III" +1526:true:"Adventure Island" +1527:true:"Adventures in the Magic Kingdom" +1528:true:"Adventures of Bayou Billy, The" +1529:true:"Adventures of Dino Riki, The" +1531:true:"Adventures of Lolo 2" +1532:true:"Adventures of Lolo III" +15323:true:"~Unlicensed~ Super Donkey Kong 2" +1533:true:"Adventures of Lolo" +1536:true:"Airwolf" +15367:true:"~Unlicensed~ World Heroes 2" +1540:true:"Amagon" +1542:true:"Anticipation" +1544:true:"Archon" +1545:true:"Arkanoid" +1547:true:"Astyanax" +1551:true:"Back to the Future II and III" +1552:true:"Back to the Future" +1553:true:"Bad Dudes" +1555:true:"Bad Street Brawler" +1556:true:"Balloon Fight" +1564:true:"Baseball" +15647:true:"~Hack~ NES Mario Kart" +1569:true:"Batman Returns" +1571:true:"Battle of Olympus, The" +1573:true:"Battleship" +1574:true:"Battletoads and Double Dragon: The Ultimate Team" +1575:true:"Beetlejuice" +1580:true:"Bionic Commando" +1582:true:"Blades of Steel" +1583:true:"Blue Marlin, The" +1586:true:"Bomberman II" +1590:true:"Boy and His Blob, A: Trouble on Blobolonia" +1591:true:"Bram Stoker's Dracula" +1594:true:"Bubble Bobble: Part 2" +1596:true:"Bugs Bunny Birthday Blowout, The" +15960:true:"~Hack~ Legend of Iowa, The" +1597:true:"Bugs Bunny Crazy Castle, The" +1598:true:"Bump 'n' Jump" +1600:true:"Burger Time" +1601:true:"Cabal" +1602:true:"Caesars Palace" +1603:true:"California Games" +1604:true:"Captain America and the Avengers" +1605:true:"Captain Planet and the Planeteers" +1606:true:"Captain Skyhawk" +1607:true:"Casino Kid 2" +1608:true:"Casino Kid" +1612:true:"Caveman Games" +16120:true:"~Hack~ Ultima: Exodus Remastered" +16125:true:"~Unlicensed~ Shudu" +16126:true:"~Unlicensed~ Sudoku (NiceCode)" +1613:true:"~Bonus~ Darkwing Duck" +1616:true:"Chip 'n Dale: Rescue Rangers 2" +1620:true:"Clash at Demonhead" +1623:true:"Clu Clu Land" +1625:true:"Cobra Triangle" +16253:true:"~Hack~ Color a Ninja" +1626:true:"Code Name: Viper" +1627:true:"Color a Dinosaur" +16276:true:"~Homebrew~ Lizard" +1628:true:"Commando" +1631:true:"Conquest of the Crystal Palace" +1632:true:"Contra Force" +1636:true:"Crystalis" +1642:true:"Day Dreamin' Davey" +1644:true:"Defender II" +1647:true:"Deja Vu: A Nightmare Comes True" +1648:true:"Demon Sword" +1651:true:"Destiny of an Emperor" +16514:true:"~Hack~ Megaman in SMB1" +1652:true:"Dick Tracy" +1654:true:"Dig Dug II: Trouble In Paradise" +1655:true:"Digger: Legend of the Lost City starring Digger T. Rock" +16561:true:"~Bonus~ Super Mario Bros." +1657:true:"Donkey Kong 3" +1659:true:"Donkey Kong Jr. Math" +1661:true:"Double Dragon II: The Revenge" +16612:true:"~Hack~ Super Calm Bros. 3" +1662:true:"Double Dragon III: The Sacred Stones" +1663:true:"Dr. Chaos" +1664:true:"Dr. Jekyll and Mr. Hyde" +1665:true:"Dragon Fighter" +1666:true:"Dragon Spirit: The New Legend" +1667:true:"Dragon Warrior III" +1668:true:"Dragon's Lair" +1669:true:"Duck Hunt" +1670:true:"Duck Tales 2" +1672:true:"Dusty Diamond's All-Star Softball" +1673:true:"Dynowarz: The Destruction of Spondylus" +1674:true:"Elevator Action" +1680:true:"Family Feud" +1682:true:"Faxanadu" +1683:true:"Felix the Cat" +1685:true:"Fester's Quest" +1686:true:"Fire 'n Ice | Solomon's Key 2 " +1692:true:"Flintstones, The: The Rescue of Dino and Hoppy" +1693:true:"Flying Dragon: The Secret Scroll" +1696:true:"Frankenstein: The Monster Returns" +1700:true:"G.I. Joe: A Real American Hero" +1701:true:"Galaga" +1705:true:"Gauntlet" +17054:true:"~Hack~ Super Diego Bros. 1 & 2" +17058:true:"~Hack~ (9)" +17077:true:"~Homebrew~ MiedoW | Cheril's Nightmares" +1708:true:"Ghostbusters II" +1709:true:"Ghostbusters" +1710:true:"Ghosts 'n Goblins" +1711:true:"Ghoul School" +1713:true:"Godzilla 2: War of the Monsters" +1714:true:"Godzilla" +1717:true:"Golf" +1719:true:"Goonies II, The" +1720:true:"Goonies, The" +1722:true:"Gradius" +1723:true:"Great Waldo Search, The" +1725:true:"Gremlins 2: The New Batch" +1726:true:"Guardian Legend, The" +1727:true:"Guerrilla War" +1728:true:"Gun Nac" +1729:true:"Gun.Smoke" +1732:true:"Heavy Barrel" +1733:true:"Heavy Shreddin'" +1734:true:"Hogan's Alley" +1736:true:"Home Alone 2: Lost in New York" +1737:true:"Home Alone" +1738:true:"Hook" +1742:true:"Hydlide" +1743:true:"Ice Climber" +1744:true:"Ice Hockey" +1745:true:"Ikari Warriors II: Victory Road" +1746:true:"Ikari Warriors III: The Rescue" +1747:true:"Ikari Warriors" +1750:true:"Incredible Crash Dummies, The" +1751:true:"Indiana Jones and the Last Crusade (Taito)" +1752:true:"Indiana Jones and the Last Crusade (Ubisoft)" +1756:true:"Isolated Warrior" +1757:true:"Ivan Stewart's Super Off-Road" +1758:true:"Jackie Chan's Action Kung Fu" +1760:true:"Jaws" +1764:true:"Jimmy Connors Tennis" +1768:true:"Journey to Silius" +1769:true:"Joust" +1770:true:"Jungle Book, The" +1771:true:"Jurassic Park" +1772:true:"Kabuki: Quantum Fighter" +1774:true:"Karate Kid, The" +1775:true:"Karnov" +1776:true:"Kick Master" +1777:true:"Kickle Cubicle" +1779:true:"Kid Kool and the Quest for the Seven Wonder Herbs" +1781:true:"King's Knight" +1783:true:"King's Quest V: Absence Makes the Heart Go Yonder!" +1784:true:"Kiwi Kraze: A Bird-Brained Adventure!" +1787:true:"Krion Conquest, The" +1794:true:"Legend of Kage, The" +1795:true:"Legacy of the Wizard" +1798:true:"Lemmings" +1800:true:"Life Force" +1802:true:"Little Mermaid, The" +1803:true:"Little Nemo: The Dream Master" +1805:true:"Little Samson" +1806:true:"Lone Ranger, The" +1808:true:"Low G Man: The Low Gravity Man" +1810:true:"M.C. Kids" +1812:true:"M.U.S.C.L.E. - Tag Team Match" +1813:true:"Mach Rider" +1815:true:"Golgo 13: The Mafat Conspiracy" +1816:true:"Magic Darts" +1818:true:"Magic of Scheherazade, The" +1819:true:"Magician" +1820:true:"Magmax" +1822:true:"Mappy-Land" +1823:true:"Marble Madness" +1824:true:"Mario Bros." +1826:true:"Mario's Time Machine" +1829:true:"Mega Man 4" +1830:true:"Mendel Palace" +1832:true:"Metal Storm" +1834:true:"Mickey's Adventures in Numberland" +1835:true:"Mickey's Safari in Letterland" +1837:true:"Mighty Bomb Jack" +1838:true:"Mighty Final Fight" +1840:true:"Milon's Secret Castle" +1842:true:"Monopoly" +1843:true:"Monster In My Pocket" +1846:true:"Ms. Pac-Man (Namco)" +1847:true:"Ms. Pac-Man (Tengen)" +1848:true:"Muppet Adventure: Chaos at the Carnival" +1851:true:"NARC: No One had the Guts... Until Now" +1852:true:"NES Open Tournament Golf" +1855:true:"Nightshade" +1857:true:"Ninja Gaiden II: The Dark Sword of Chaos" +1858:true:"Ninja Gaiden III: The Ancient Ship of Doom" +1859:true:"Ninja Gaiden" +1861:true:"Nintendo World Cup" +1863:true:"North and South" +1864:true:"Operation Wolf" +1865:true:"~Bonus~ Castlevania" +1868:true:"P.O.W. - Prisoners of War" +1870:true:"Palamedes" +1871:true:"Panic Restaurant" +1873:true:"Paperboy" +1877:true:"Pinball" +1878:true:"Pipe Dream" +1880:true:"Platoon" +1881:true:"Popeye" +1882:true:"Power Blade 2" +1883:true:"Power Blade" +1885:true:"Predator" +1886:true:"Prince of Persia" +1887:true:"Princess Tomato in Salad Kingdom" +1889:true:"Punisher, The" +1890:true:"Puss 'n Boots: Pero's Great Adventure" +1896:true:"R.C. Pro-Am II" +1899:true:"Rad Racer II" +1900:true:"Rad Racer" +1903:true:"Rally Bike" +1904:true:"Rampage" +1906:true:"Remote Control" +1908:true:"Renegade" +1912:true:"RoadBlasters" +1913:true:"Robin Hood: Prince of Thieves" +1914:true:"RoboCop 2" +1915:true:"RoboCop 3" +1920:true:"Rocketeer, The" +1921:true:"Rockin' Kats" +1925:true:"Rollergames" +1929:true:"Rush 'n Attack" +1932:true:"Section-Z" +1933:true:"Seicross" +1940:true:"Shatterhand" +1944:true:"Side Pocket" +1946:true:"Silk Worm" +1947:true:"Silver Surfer" +1949:true:"Simpsons, The: Bart vs. the World" +1952:true:"Skate or Die" +1953:true:"Ski or Die" +1955:true:"Sky Shark" +1956:true:"Slalom" +1957:true:"Smash T.V." +1958:true:"Snake Rattle n Roll" +1959:true:"Metal Gear II: Snake's Revenge" +1961:true:"Snow Bros." +1962:true:"Soccer" +1965:true:"Solstice: The Quest for the Staff of Demnos" +1968:true:"Spelunker" +1969:true:"Spider-Man: Return of the Sinister Six" +1970:true:"Spot: The Video Game" +1971:true:"Spy Hunter" +1973:true:"Sqoon" +1977:true:"Star Force" +1978:true:"Star Soldier" +1980:true:"Star Trek: 25th Anniversary" +1982:true:"Star Wars" +1984:true:"StarTropics II: Zoda's Revenge" +1985:true:"StarTropics" +1988:true:"Strider" +1989:true:"Super C | Probotector II: Return of the Evil Forces" +1991:true:"Super Dodge Ball" +1994:true:"Super Mario Bros. 2" +1995:true:"Super Mario Bros. 3" +1996:true:"Super Spike V'Ball" +2002:true:"Sword Master" +2004:true:"Town & Country Surf Designs: Wood & Water Rage" +2006:true:"Taboo: The Sixth Sense" +2008:true:"Tag Team Wrestling" +2009:true:"Tale Spin" +2016:true:"Teenage Mutant Ninja Turtles" +2017:true:"Tennis" +2018:true:"Terminator 2: Judgment Day" +2022:true:"Tetris (Nintendo)" +2023:true:"Tetris (Tengen)" +2024:true:"Tetris 2" +2028:true:"Time Lord" +2031:true:"Tiny Toon Adventures 2: Trouble in Wackyland" +2032:true:"Tiny Toon Adventures" +2034:true:"Toki" +2035:true:"Tom & Jerry: The Ultimate Game of Cat and Mouse!" +2037:true:"~Unlicensed~ Toobin'" +2039:true:"Top Gun" +2040:true:"Total Recall" +2041:true:"Totally Rad" +2044:true:"Track & Field II" +2045:true:"Track & Field" +2048:true:"Twin Cobra" +2050:true:"Ultima: Exodus" +2051:true:"Ultima: Quest of the Avatar" +2052:true:"Ultima: Warriors of Destiny" +2056:true:"Uninvited" +2058:true:"Urban Champion" +2060:true:"Vice: Project Doom" +2061:true:"Volleyball" +2062:true:"Wacky Races" +2063:true:"Wall Street Kid" +2073:true:"Where's Waldo?" +2074:true:"Who Framed Roger Rabbit" +2075:true:"Whomp 'Em" +2076:true:"Widget" +2077:true:"Wild Gunman" +2078:true:"Willow" +2081:true:"Wizardry: Proving Grounds of the Mad Overlord" +2083:true:"Ironsword: Wizards & Warriors II" +2084:true:"Wizards & Warriors III: Kuros... Visions of Power" +2085:true:"Wolverine" +2087:true:"World Class Track Meet" +2089:true:"Wrath of the Black Manta" +2090:true:"Wrecking Crew" +2093:true:"WWF King of the Ring" +2097:true:"Xevious: The Avenger" +2098:true:"Xexyz" +2099:true:"Yo! Noid" +2101:true:"Yoshi's Cookie" +2103:true:"Zanac" +2104:true:"Zen: Intergalactic Ninja" +2105:true:"Zombie Nation" +2113:true:"Teenage Mutant Ninja Turtles: Tournament Fighters" +2114:true:"Teenage Mutant Ninja Turtles II: The Arcade Game" +2115:true:"Teenage Mutant Ninja Turtles III: The Manhattan Project" +2137:true:"~Unlicensed~ Final Fantasy VII: Advent Children" +2139:true:"Mr. Gimmick" +2140:true:"Splatterhouse: Wanpaku Graffiti" +2142:true:"Crisis Force" +2175:true:"Dig Dug" +2208:true:"Holy Diver" +2221:true:"Castlevania III: Dracula's Curse" +2225:true:"~Unlicensed~ Somari" +2230:true:"Sweet Home" +2238:true:"Pin Bot" +2248:true:"Nuts & Milk" +2360:true:"Bucky O'Hare" +2361:true:"~Unlicensed~ Action 52" +2362:true:"Championship Bowling" +2420:true:"BattleCity" +2432:true:"Gradius 2" +2444:true:"Yie Ar Kung-Fu" +2604:true:"Nintendo World Championships 1990" +2863:true:"Akumajou Special: Boku Dracula-kun | Kid Dracula" +2963:true:"~Unlicensed~ Crystal Mines" +3578:true:"Smurfs, The" +3614:true:"Galaxian" +3814:true:"Mother | Earthbound Beginnings" +4030:true:"Joy Mech Fight" +4031:true:"~Unlicensed~ Donkey Kong Country 4: Jungle Book 2, The" +4034:true:"Elite" +4036:true:"Road Fighter" +4094:true:"Antarctic Adventure" +4105:true:"Transformers, The: Mystery of Convoy" +4122:true:"~Homebrew~ MilioNESy" +4152:true:"Simpsons, The: Bart vs. the Space Mutants" +4185:true:"~Unlicensed~ Magic Jewelry" +4542:true:"~Unlicensed~ Bubble Bath Babes" +4543:true:"~Unlicensed~ Captain Comic: The Adventure" +4544:true:"~Prototype~ Drac's Night Out" +4548:true:"~Unlicensed~ Alien Syndrome" +4551:true:"~Homebrew~ Gotta Protectors: Amazon's Running Diet" +4559:true:"Batman: Return of the Joker " +4568:true:"Bomberman" +4598:true:"~Homebrew~ D-Pad Hero 2" +4599:true:"~Homebrew~ D-Pad Hero" +4605:true:"~Unlicensed~ Dizzy the Adventurer" +4612:true:"Dragon Warrior IV" +4616:true:"~Unlicensed~ Fantastic Adventures of Dizzy, The" +4618:true:"Flintstones, The: The Surprise at Dinosaur Peak!" +4628:true:"~Unlicensed~ Tagin' Dragon" +4629:true:"Hello Kitty World" +4641:true:"Aussie Rules Footy" +4650:true:"~Homebrew~ Zooming Secretary" +4653:true:"~Homebrew~ SplatooD" +4658:true:"Moon Crystal" +4680:true:"Pizza Pop!" +4681:true:"Spartan X 2" +4687:true:"Time Zone" +4694:true:"Bio Miracle: Bokutte Upa" +4720:true:"Shadow of the Ninja" +4755:true:"Gomoku Narabe" +4756:true:"Mappy" +4757:true:"Mahjong" +4762:true:"Popeye no Eigo Asobi" +4764:true:"Astro Robo SASA" +4766:true:"Field Combat" +4767:true:"F-1 Race" +4770:true:"Warpman" +4779:true:"Super Arabian" +4788:true:"Zippy Race" +4792:true:"Atlantis no Nazo" +4793:true:"Ikki" +4804:true:"TwinBee" +4808:true:"Binary Land" +4812:true:"Circus Charlie" +4816:true:"Zunou Senkan Galg" +4818:true:"Spy vs Spy" +4820:true:"Chou Fuyuu Yousai Exed Exes" +4824:true:"Ninja Hattori Kun" +4829:true:"Kyatto Ninden Teyandee | Samurai Pizza Cats" +4838:true:"Chubby Cherub | Obake no Q Tarou: Wanwan Panic" +4839:true:"Kanshakudama Nage Kantarou no Toukaidou Gojuusan Tsugi" +4840:true:"Urusei Yatsura: Lum no Wedding Bell " +4851:true:"~Homebrew~ Lala the Magical" +4858:true:"Doraemon" +4866:true:"Dragon Ball Z III: Ressen Jinzou Ningen" +4876:true:"Hi no Tori Hououhen: Gaou no Bouken" +4902:true:"~Homebrew~ Böbl | Bobl" +4953:true:"Quattro Adventure" +4961:true:"~Bonus~ Kyatto Ninden Teyandee | Samurai Pizza Cats" +4986:true:"Mitsume ga Tooru" +4990:true:"Zombie Hunter" +4993:true:"~Hack~ Zelda Challenge: Outlands" +4997:true:"Getsu Fuuma Den" +5001:true:"Kaiketsu Yancha Maru 3: Taiketsu! Zouringen" +5003:true:"Batsu and Terii: Makyou no Tetsujin Race" +5005:true:"~Unlicensed~ Street Fighter IV" +5051:true:"U-four-ia: The Saga | Hebereke" +5060:true:"Gargoyle's Quest II: The Demon Darkness" +5083:true:"Micro Machines" +5090:true:"~Homebrew~ Battle Kid: Fortress of Peril" +5091:true:"Hokuto no Ken II: Seikimatsu Kyuuseishu Densetsu | Fist of the North Star" +5102:true:"Legendary Wings" +5107:true:"Kid Niki: Radical Ninja | Kaiketsu Yancha Maru" +5136:true:"~Bonus~ Castlevania II: Simon's Quest" +5144:true:"Lupin Sansei: Pandora no Isan" +5168:true:"Attack Animal Gakuen" +5169:true:"Showdown! Takeshi's Castle | Totsugeki! Fuuun Takeshi Jou" +5172:true:"Dragon Ball: Shen Long no Nazo" +5175:true:"~Hack~ Mother: 25th Anniversary Edition" +5183:true:"Super Mario Bros. 2 | Super Mario Bros.: The Lost Levels (FDS)" +5186:true:"~Prototype~ Exerion II: Zorni" +5191:true:"Konami Wai Wai World" +5197:true:"~Unlicensed~ Street Fighter 3" +5202:true:"Wai Wai World 2: SOS!! Paseri Jou" +5218:true:"Over Horizon" +5241:true:"Yume Penguin Monogatari" +5242:true:"~Hack~ RockMan Cross X" +5288:true:"~Hack~ Extra Mario Bros." +5299:true:"~Hack~ Super Mario Bros. 3Mix" +5300:true:"Cocoron" +5319:true:"Starship Hector | Hector '87" +5333:true:"Master Chu and the Drunkard Hu" +5346:true:"~Prototype~ Bio Force Ape" +5347:true:"~Unlicensed~ Super Shinobi, The" +5350:true:"Rescue: The Embassy Mission" +5352:true:"Rod Land" +5375:true:"~Unlicensed~ Escape from Atlantis, The" +5382:true:"~Unlicensed~ Magic Carpet 1001" +5408:true:"Cosmo Police Galivan" +5431:true:"Fire Emblem Gaiden" +5438:true:"Don Doko Don 2" +5468:true:"Wheel of Fortune" +5473:true:"Parodius" +5526:true:"~Unlicensed~ Plants vs. Zombies" +5527:true:"Final Fantasy II (J)" +5539:true:"Dragon Ball: Revival of the Dark Lord" +5550:true:"Smash Ping Pong (FDS)" +5553:true:"Final Fantasy III (J)" +5575:true:"~Unlicensed~ Toy Story" +5590:true:"~Bonus~ Yume Penguin Monogatari" +5608:true:"~Hack~ Tower RE | Mario Tower" +5667:true:"Dragon Ball Z: Kyoushuu! Saiyajin" +5678:true:"~Hack~ Roll-chan Evolution - Episode II: Roll-chan no Constancy" +5759:true:"~Hack~ Roll-chan Evolution S - Episode II: Roll-chan Basic Master" +5777:true:"~Unlicensed~ Pokemon - Yellow | Lei Dian Huang Bi Ka Qiu Chuan Shuo" +5784:true:"~Unlicensed~ Aladdin (Hummer Team)" +5785:true:"Alien 3" +5787:true:"Robocco Wars" +5790:true:"Asterix" +5795:true:"Banana Prince" +5808:true:"Choujin Sentai Jetman" +5821:true:"Downtown Special: Kunio-kun no Jidaigeki da yo Zenin Shugo!" +5830:true:"Crayon Shin-chan: Ora to Poi Poi" +5925:true:"Klax" +5944:true:"Majou Densetsu II: Daimashikyou Galious | Maze of Galious" +5948:true:"~Bonus~ Contra" +5950:true:"Ys III: Wanderers From Ys" +5968:true:"~Prototype~ Aliens (FDS)" +6070:true:"~Homebrew~ 2048" +6096:true:"~Unlicensed~ Kart Fighter" +6119:true:"Akira" +6147:true:"Linus Spacehead's Cosmic Crusade" +6215:true:"New Ghostbusters II" +6254:true:"Kamen no Ninja: Hanamaru" +6370:true:"Ninja Cop Saizou" +6380:true:"~Hack~ Castlevania: Chorus of Mysteries" +6394:true:"Hammerin' Harry" +6398:true:"~Homebrew~ Sir Ababol Remastered" +6421:true:"~Bonus~ Doki! Doki! Yuuenchi: Crazy Land Daisakusen" +6422:true:"Doki! Doki! Yuuenchi: Crazy Land Daisakusen" +6425:true:"Ninja Jajamaru: Ginga Daisakusen" +6428:true:"Taiyou no Yuusha Fighbird" +6429:true:"Takahashi Meijin no Bouken Jima IV | Adventure Island 4" +6729:true:"~Bonus~ Mega Man" +6832:true:"Time Diver Eon Man" +6836:true:"~Multi~ Contra" +6869:true:"~Unlicensed~ Solitaire" +6974:true:"~Unlicensed~ Street Fighter II" +7004:true:"Kung-Fu Heroes" +7013:true:"~Unlicensed~ Bible Adventures" +7057:true:"Moai Kun" +7131:true:"~Hack~ Zelda II: Life Is Meaningless" +7161:true:"Chronicle of the Radia War | Radia Senki: Reimei Hen" +7228:true:"Digital Devil Story: Megami Tensei II" +7242:true:"~Hack~ Rockman 4: Minus Infinity" +7248:true:"~Homebrew~ Battle Kid 2: Mountain of Torment" +7277:true:"~Unlicensed~ Legend of Zelda, The: Link's Awakening | Feng Yin Dao" +7520:true:"~Homebrew~ Streemerz" +7588:true:"Insector X" +7726:true:"~Bonus~ Ghosts 'n Goblins" +8011:true:"~Unlicensed~ Super Mario World" +8036:true:"~Hack~ Mega Man 4 Voyage" +8092:true:"Digital Devil Story: Megami Tensei" +8170:true:"~Homebrew~ Alter Ego" +8182:true:"~Homebrew~ Hot Seat Harry" +8414:true:"~Hack~ Bowser's Jumping Challenge" +8420:true:"Saint Seiya: Ougon Densetsu Kanketsu Hen" +8493:true:"~Hack~ My Little Pony: Dr. Discord's Conquest" +8541:true:"Puyo Puyo" +8617:true:"~Test Kit~ NES Control Deck Test Cartridge" +8631:true:"~Unlicensed~ Robodemons" +8723:true:"~Hack~ Roll-chan Evolution - Episode I: Roll-chan Gaiden" +8751:true:"~Hack~ Roll-chan Evolution S - Episode I: Roll-chan Claw" +8754:true:"~Unlicensed~ Microsoft Windows 98" +8810:true:"~Hack~ Mega Man CX" +8933:true:"~Hack~ Roll-chan Evolution Special: Roll-chan L" +8964:true:"~Prototype~ Star Trek V: The Final Frontier" +9112:true:"~Hack~ Toadette's Christmas Adventure" +9113:true:"~Hack~ Toad's Christmas Adventure" +9380:true:"Kyouryuu Sentai Zyuranger" +9476:true:"~Unlicensed~ Legend of Zelda, The: The Minish Cap" +9597:true:"~Hack~ Metroid: Rogue Dawn" +9645:true:"Mashin Eiyuuden Wataru Gaiden" +9899:true:"~Hack~ Roll-chan Evolution 3rd - Episode I: Roll-chan Claw 2" diff --git a/data/nes_hashlibrary.json b/data/nes_hashlibrary.json new file mode 100644 index 0000000..3625dad --- /dev/null +++ b/data/nes_hashlibrary.json @@ -0,0 +1,2630 @@ +{ + "Success": true, + "MD5List": { + "01befbe6ec42183b017544a6afdd4770": 10183, + "0b01ec73f0c2060fdf4dad86ed2a7bf2": 10183, + "1d607098e257e75eb2987326a119f4a3": 10183, + "3d4cce3185680dd9aaf61da776318af6": 10183, + "8b0b4a791a5065eeca35686c107f4239": 10183, + "9b661ae67629149f2c3b94c29c714a31": 10183, + "dd0ee244355a5f1607d2f70b24da8257": 10183, + "eaf108f829cf64ffa7f944e5ae420676": 10354, + "16f78d8561429fc75f38d726edc57e23": 10361, + "728c53be1c3987b28c81113543a8c88f": 10361, + "786ddbe216cf0202009ba6a255570384": 10361, + "f93c1f246f9d24d1dd7d760c171c9887": 10361, + "ce49d34aa7644f966b6e3d8112f711e3": 11075, + "5545cfd6dd4f8ca1963bf8544ca7f8f4": 11076, + "8095a12c1b6512e547e878d9e0ab3a95": 11076, + "983cb4a2367f8c8413b05045d2f08f6a": 11142, + "cf222e2fdf4df53a115dc8d48a68660a": 11142, + "d58e74252db0e1b4c84c58f2eed61615": 11655, + "c6626d9304e258d379d1260d41988c6c": 11689, + "d0fdcb83836c473cd4ee184a9e2b3679": 11689, + "5331a79e3980f589e706397976e5aad2": 11831, + "ae2859400fb79e6eb9a8f0939e345940": 11831, + "0b83f342ee590ae4e6797c42a3ed0a6f": 11833, + "1d9002b88e7546db017468e3fb151abd": 12749, + "8236a707b796456f4f1ea3d81f81d104": 12749, + "43cda3af8d6c56c8fb909ae9557ddee2": 12819, + "7bb697f710354e1fd9a3a7a91135b461": 12819, + "9eb653a03d880c138a24033509c924ff": 12819, + "9f1819a94b2eb71995efc95e38e53a89": 12819, + "f7ec2767d5fbb8ac389bb4970920f26c": 12819, + "afd08feb5b1cd3594c4f2b7b2e669b61": 12831, + "58377b2babdf06d8cf5557064f32ad92": 12855, + "aa4d8cb4d587b6234387b62e651f2419": 12855, + "e8558b356bb077213b255367c9c5be16": 12855, + "fa04b0b2d99d560e7076198ab72a15d3": 12855, + "3b64e9ea46168e11dfe7bbd6208d7ac9": 13326, + "3eed977595414c3348dd5ceb2bbb7495": 13326, + "079f7296d463ce4f43eab7a1b68efd70": 13345, + "e39647aa8c26eeccc60c31f72eb74d93": 13345, + "b1ba60845163ae84afc3bc5165558202": 13393, + "a22ded54ecf8bcec90af5ecf733a5f7d": 13417, + "616386f9a7ecefc55ec6acc835118c38": 13420, + "9565920ba6b8c7dc5a194f81f0ee7c26": 13420, + "90c412bfbdc5d05cc77a73394f20228f": 13422, + "1ec00d2d30d2e55acfe160f8028c7931": 13428, + "b0ec743ee16b603f9e853174b2cfc7b3": 13792, + "c61bceb39dc83a43c9f57956caefaa54": 13792, + "678c840dd26a65418a56ca0073e6679e": 14017, + "27c2f42fc219e0360e4d3ae448cb0f29": 14227, + "2edf325894eb8d4f746e882d0d7fdff4": 14227, + "cba5237bdd24506d75e7b4a194b3c097": 14227, + "5e435d4fbf4714bba99410e50cfdb372": 14319, + "9124bdf0e1116e649b5daed14853e92b": 14319, + "ff65350d6e949a28b83c65943ecb27a3": 14319, + "d41d114a45fa20eb5519fded279020be": 14336, + "0e2be2324567ecbc373d9ef562dac8b9": 1446, + "293303fe565de2333bc1e4115d38fa3f": 1446, + "8e3630186e35d477231bf8fd50e54cdd": 1446, + "ff02b25112d3a3163db10e332841b02c": 1446, + "5a5c2f4f1cafb1f55a8dc0d5ad4550e5": 1447, + "4de82cfceadbf1a5e693b669b1221107": 1448, + "8d5a61f42d92ee61d05083263a11fca1": 1448, + "e1542de8784b93492fd7686f56f30376": 1448, + "04865335bd8e715c873d69e0aee8de01": 1449, + "049bcc090c19306d5657fceac947a3f0": 1449, + "20790e405a3cd5e0fef997c33f32cc61": 1449, + "24ae5edf8375162f91a6846d3202e3d6": 1449, + "2a3e7fa5170b1b9929a31eda8cc8d7d9": 1449, + "3ba1c398381f311c47c7bcb5a5d35b57": 1449, + "3e162f3968dc3d5de1ebce8456e6e44c": 1449, + "405ea90c2615074ff0fbdda5dcc33ca3": 1449, + "442719ab969e318615f965e60c77ac18": 1449, + "4604ae281c973e43ec7ca3e2a563cb20": 1449, + "4b3342b2c143dade012df596e2b31174": 1449, + "4dd4c6f2ff32da4d75dcd139f75150ec": 1449, + "5c668e519e4573cdeb041fe474f0e920": 1449, + "6e16ce5187c26aed8422519d7d10e559": 1449, + "767bbedf2166310a64fe732bcc0d5cfe": 1449, + "881ecc27f0d3b10ed63dcc68c2b20adc": 1449, + "9e80e027b8602d69e7867b09b7f42dfc": 1449, + "9e8f4065b0c0687cf5c8b4170b005017": 1449, + "afe22cc848201250ea320ad7b4d762a1": 1449, + "b3b22884e6eb8555eb74ed565a8a7a80": 1449, + "ba15efb9ca1a87d9cafc17c04b33edc2": 14496, + "0527a0ee512f69e08b8db6dc97964632": 1451, + "770d55a19ae91dcaa9560d6aa7321737": 1451, + "c812425deedcd5791125d25a1ef0a52e": 1451, + "d76e9a94aebba887a6fcd1da3375f48d": 1451, + "09fe066d66bff18d8100400e29d702f8": 1452, + "0a3ebffa8878f6446dde56d594cd386f": 1452, + "2ce6f27f130df5cad45f08419935df0e": 1452, + "362f3d5f655fc8a5e4a34e38abf82070": 1452, + "439a3420552a300089ddef13b7e83765": 1452, + "5c40e997046e34a4b6b1c8314f313d0f": 1452, + "6d0e5c844ccb5a179d5b529454ed481a": 1452, + "7122423eb6a86106bcb0403f740cae45": 1452, + "8c301b400fb93fe75fec1087dbadc7cc": 1452, + "9b2a93f81816d3f5b342468e2be2f1a6": 1452, + "affc0258fedfc870c047fb5382dc7a1c": 1452, + "d216d801b13c90295993e4c1b5fd4fc9": 1452, + "d8deddcbaa32315458233ccded52fee3": 1452, + "e5a5d85ea7813b25080c5ce55f5e0585": 1452, + "f49e17d54d8c0889687608240cbf4631": 1452, + "000cbbf155e03c0523fab879aee9b679": 1453, + "02040f57721d20b2502f4ff7dc7f0ae4": 1453, + "039256a05556fb689ae3c04503381de4": 1453, + "066e04b9cbc87a3e1a3059651bc68ef3": 1453, + "0e95de76cefcf0cb99421ec95baf4fdd": 1453, + "1397dbd4f3b651353fc9f95522d349cc": 1453, + "1857804c2b8f654e25526ee646a76f94": 1453, + "20de5fbc067da27fb56242aae1515a0b": 1453, + "21b81bd4a613052badcd800237f674c1": 1453, + "34ba9d9912742455780a423c52ddf237": 1453, + "445bebcac5e5538767656fc3cf92a281": 1453, + "4b2d9430bef16749d7948aa0da885883": 1453, + "4d4a0c43be67b3a6a3f0cd04fb2f049e": 1453, + "4fbb654dedd16c472d305967ca70a1b1": 1453, + "75f75eb4274f89323589468cddcbb93f": 1453, + "79efcc636d33f9af534fe81ae5143e18": 1453, + "88c0493fb1146834836c0ff4f3e06e45": 1453, + "9066be34fe650cdc52e8566d524816f5": 1453, + "96afde1deb2f1484c7fdc8fe8aa59aa3": 1453, + "9a18bdc223e591dad8d251e62f755d6e": 1453, + "a206f00624d81499cc0a54908d13c49a": 1453, + "a238c34ffb90023f8f2ae3939e44f9c6": 1453, + "aa86b61c8dbcec521e93cab48cd25386": 1453, + "b59c67d97b6041346b0160cb0a97a39d": 1453, + "bdbdcf5042f668474b35dadf31bcb32c": 1453, + "c10259a9e8c3bc25ce57f01306cd3cc9": 1453, + "cdf846f146d96b408ce0f461c3cb62f9": 1453, + "d80c737033db183881466c4e9460be4f": 1453, + "e332e636ec29b9b547e352860ed3893a": 1453, + "e3e2fcdecbc2715fe02f8c2d42ef8503": 1453, + "f240370ce4f22e3b6df1732c44317cd2": 1453, + "f94648a5e2f0b33a542659d9365338b1": 1453, + "fec192d5071aeb4fdaee8c480ade0e3b": 1453, + "00d79f8a51636b8649df5724553666bb": 1454, + "078fec49cb744846855594e3775dc8ed": 1454, + "0b32851acecf93212b198e074c5e59bc": 1454, + "2b57302585bdae3abe633e696e88b008": 1454, + "48e2e4493149fb481852f9ca9e70315f": 1454, + "51246446cda2cd349f6c2cd425ca0aa9": 1454, + "526494bf529f2324eb5948c5c327055d": 1454, + "581d428729911134214a7e3be917ff64": 1454, + "5a687880b06fdc203be4bd2f03c7e431": 1454, + "5c0785479d5149f18f77d23ddba1df41": 1454, + "5ebdb05acfeaa3d176685805ab9e3341": 1454, + "633497a49b262e5e28ae4901f3c9c1d8": 1454, + "7639ab1979157d70f769e092400b2def": 1454, + "7f2b4d6dbb8bc885906ca6ab4259af9d": 1454, + "902966dd7c48fcd2a7733f35947c88cd": 1454, + "94cc84d11720defb60e8db8ec759712f": 1454, + "a78d58b97eddb7c70647d939e20bef4f": 1454, + "cbeef4c6eea086516bb44d2dbe8300b3": 1454, + "d0531505c47c6a4d5aa33aa06d1196a7": 1454, + "d3f453931146e95b04a31647de80fdab": 1454, + "d7ae014b7f68a775272a771ab881dfbb": 1454, + "d99178a2527a2e168088afdc2248c800": 1454, + "d9a1631d5c32d35594b9484862a26cba": 1454, + "e48fdd5701d310135b555e87338c8ea8": 1454, + "f3a56641d444dd5653db846c518bbfd1": 1454, + "fe7c05763a70e4f22965c939d3db73e4": 1454, + "1dfa56ebc412f33f161d16207ceced06": 1456, + "6307b2766d33a38ae68c639019dc8890": 1456, + "b5e9678ada66593d6a863d46f48dce70": 1456, + "f0fe8c50b0e623e2f7374d398dd41d01": 1456, + "341f6fd28fcdc7e246ded2750dd1c1e9": 1458, + "545d09a7671b0ab846bfd1145e5ebc18": 1458, + "57d74ed7a1404a1a75087668eb821627": 1458, + "5b51b64ae68d2b77aef4923c7d227c09": 1458, + "7a4ffee9265b8af62f9dfcb938b20134": 1458, + "8d62789736881122e00fe876fedc4a4c": 1458, + "8e0968ae988df50b1181c71a2f1d5527": 1458, + "a04066d0847d8ab49969ff3db0f36123": 1458, + "a487974fb9f72c1cdbbd01cbe3037840": 1458, + "f483943a8fee4fb7d9bd636ada925a01": 1458, + "fbf2e70abc9f089765ff1b9a00a0a977": 1458, + "0654418bc6e67d0ac964b34552421935": 1459, + "12b0dbc4f2b22a50d0bb53c4929217f0": 1459, + "2b4788a56c7bc211eeb68e08e6a62454": 1459, + "350eec77cb0ad9c6f7488eb2598721b3": 1459, + "4e748b0f638476809a1f39e7d01ff6c4": 1459, + "c8db311fd88e680d17c1436ce3d1cb6c": 1459, + "cf3aa7de0b25b6093ed4b1196bb24580": 1459, + "d21a0d6f39f8f3a6f7a346b995095af9": 1459, + "db37e37750352fb6c30f9eb714e90e9e": 1459, + "e72f32db5cb6569b4eb0584d2c537030": 1459, + "55a358377cdbf64c3001d990edd9d22e": 1460, + "629fceec5476cdd3faa371891905ea02": 1460, + "6c76acd9c8febc68df96d23d1022b9fc": 1460, + "6eb80ee9895f864cb2ca6df89903e786": 1460, + "8257a5735c0a76a4e78f324ac5770aca": 1460, + "a09dc288b5198808fe1b658447f9444d": 1460, + "b03ec7f338714831c4833cce29ecc92e": 1460, + "baf3633f83d9cda7ae5d0429368349ba": 1460, + "ece91e5f432028b6343fd375305c60b8": 1460, + "3979f4a48b98cc9aaa8d3964d4cf2b8a": 1461, + "755f9086b0567243b3ce25cc8a6dfd17": 1461, + "25c082e1596fede68ea2549eca14dd17": 1462, + "2aa6d0b179db6548fc593fa3926286cc": 1462, + "367f17f119f240a084929cb2f5b04faa": 1462, + "6ac46a50c86f9ce8c2597f21f68fe972": 1462, + "728e05f245ab8b7fe61083f6919dc485": 1462, + "756170ba1e06fa26c60d10114dc6a5ae": 1462, + "890bec4997b385e9cdd4e35e77463c21": 1462, + "90291b44659a7fb44770d198c7713ed0": 1462, + "9c8623ca51f755a7e776e0b9f932f0ab": 1462, + "a2d583070372ac0ef3d32b57b5e4234c": 1462, + "ab930e91eb9bb51e8acbf7bf2187f369": 1462, + "c97174b42e85f492a64801bacd8db655": 1462, + "ec6a1aba3da1412e5045979910eb73f7": 1462, + "f83fbe46ba851a46ab2e64cdfdeb1cff": 1462, + "d36f168e968c8b6eca738f7f41525070": 14628, + "11d1a7e954105317f19cfb113a6314d9": 1463, + "65f51643004c79450dfd33799b370bec": 1463, + "7a3b87b685422a378b876903f658bea8": 1463, + "7ca2b0170d24ae9c984a4412613e4638": 1463, + "99028d118b600f2cb84f70fb1967866e": 1463, + "d4f575a1afdf7c491535ad5088196462": 1463, + "dff20255eca7fbcd47e1d7df5e620cd7": 1463, + "e0691f54f78684fd36a2102830379611": 1463, + "e10bfefdce41220d194a115f159af15d": 1463, + "ea155b486ff4e4ae841e3a103f8a69d0": 1463, + "f0ed8c6d65164f761908bc892c01c65a": 1463, + "1431f96e4f0b4a7d010b6a4246e155b0": 1464, + "2a7a690902cf14527cb9de7b5e7f3696": 1464, + "3d4e03bafa88da1884433cd7ed6e70f4": 1464, + "5315aa068bad403b6090587e06ba43a5": 1464, + "68393e33869f9b49b2f1f7cd1c136534": 1464, + "6cbff582e3babe7803503de941fe26ee": 1464, + "7acf01d7582998a531c7977955dec5f0": 1464, + "b6697a93c76dfa1f0768cecd133643fb": 1464, + "e496959669e1d0ffa064919931fe837f": 1464, + "eb9713d1cac3586601833d8df854114e": 1464, + "ed08dfbb87fdb7523dc29853b1aa6e19": 1464, + "ee7791bae4b1e0ee83a77e7c4dd29180": 1464, + "f2c58e2904a022a25fd018ef973286e7": 1464, + "fadab41421393b6eba137081523b6f5c": 1464, + "1175c8a5aae6a60c7e9ed877388f9d4d": 1465, + "351e9b00ea88a796c2de446148c3f505": 1465, + "6631ceac1aaef8efb063a34da86bacb1": 1465, + "7fe7719330f5a50d4e0f4995ce5649d3": 1465, + "83b25b396d5c1c4bcbcb5998b11c6371": 1465, + "8b7c1e5b55a9e5fa23e895df2d682914": 1465, + "a70a34f0ec2cadd7c9dbd2bc6ae90a62": 1465, + "093aa80bf4baaa489ffa4a7f6985c533": 1466, + "0dd95c3047bb0336823c39fefb7639c3": 1466, + "30771f9f650c0664031aea5d048d0c5c": 1466, + "3dee7010573f43fc9267a402779526ca": 1466, + "5615971a393fba355e043c3383a33a0b": 1466, + "5aca4dd6073e1b87fb1d297763a14136": 1466, + "6d4a94c344463e562344249e18e9b99f": 1466, + "b1263a2dcd14ef308f7b5429873072de": 1466, + "d635fabd227a75f63065f927afef37d8": 1466, + "d67adc0d78f9961fb43b6b6103c56e55": 1466, + "e90309ed34ab4c1433e3fcfdea8323b1": 1466, + "fc4f50c1475f833e738a2c8ef53cca79": 1466, + "3dd5807a007989180b4b6bde1e4f9b48": 1467, + "4a618e0dfc2984fc446a84733a0b6486": 1467, + "4ef4221310288831301d269993e146ec": 1467, + "8ad8e23cf01c54723a7bb15ea4d16ba9": 1467, + "b04c146efff2e1ea87deddb64999c431": 1467, + "b5fd0c7b91661ac245c99d61f1d6f425": 1467, + "bf2e139af3fd27355858cdef4c814d7f": 1467, + "c1086290e0bd52dfac260ed71e779f3d": 1467, + "d3650920bd7f7bd2d3b79a0562abc040": 1467, + "3ccb1f46f9ef36e8eb166940fedd09fb": 1468, + "42194065e8db34701385930381bd7757": 1468, + "9da22a825a0a02f50e1e15d52230480d": 1468, + "a18ad877abc0882d1bb72233b6fa5e99": 1468, + "0d758ebe941cc8d029871177fa7243ff": 1469, + "0f9fb5b5721d5fd69a9df856e23464ab": 1469, + "237352c7f06a1a7737b074eb9cd6ab5f": 1469, + "4e6cbfaebbb2043bf7592922da13ce16": 1469, + "5b401f4ca7e1b12af3f29d8fc758dd2f": 1469, + "9d961a26f2104e461667c6a1cc57ab21": 1469, + "ad9f6790a0e3202b93bb650428d70b45": 1469, + "31c090206a82aedb083b5b20e9e5866f": 14692, + "a60a16cdd7e711400200624177743552": 1470, + "ccdb4563c9004d862dcf3a98c7937c22": 1470, + "1d2ab5ea72e2033b3a4d4103438aafb8": 1471, + "45ff7f5c0960d62b5f2c3c33c6e5ae19": 1471, + "54e4b12f1543b47584c041212a630805": 1471, + "6098d4a49968f27cfd75e93600ea80cd": 1471, + "695e4103ffe96ed9d990860e171cefb1": 1471, + "714156cfc6925ea11008cae0ce82879c": 1471, + "77b5548ac3aa59fe11f8cfac750faede": 1471, + "8483bfdb4e4a5c6188703e66dae82a85": 1471, + "9156da16476d03ebba25535b64ddde1b": 1471, + "ab2c4f66985e2d028d1d5314f36601f8": 1471, + "b05e96da44145defc5ab717c684ee9d6": 1471, + "d2dad21c5c502541bc8b080fc87a0646": 1471, + "e0413c76f69f5aca4a1f5336b86851b6": 1471, + "e8382f82570bc616b0bcc02c843c1b79": 1471, + "e9bdb8adbc6e6eeffd2eb14ef8969e40": 1471, + "b480855fff883b20ba403a2009a7f13c": 1472, + "0ab36632a9451c59b30958efcb785bd1": 1473, + "155cfa3c008b45a47ea439cb982bf409": 1473, + "16c66d6ee6827ff49e3a2efbf4b66c5a": 1473, + "2bf3976d15ec25a756846465a16b064c": 1473, + "30d4409745bec36331c74469b7fdca1b": 1473, + "32583d6426e2be28ae8f6a8add5d9aa3": 1473, + "377e0f6cde4a6640e7d614a2f254ace2": 1473, + "459bcac8eaa75eb2f51470be9f228b1c": 1473, + "4e7d64003ad8e14af828cc488c257536": 1473, + "5c11cea2a098a46a8094a27ed99520a9": 1473, + "61ed8edcb25a4a6485cc861feec82d57": 1473, + "668e1eb0674db11259ba3bfaedea6875": 1473, + "8ac2334ea4e2e95080c43b81df460c0c": 1473, + "9b0727e0adb0a7b4f94e072b7cf28a5a": 1473, + "bad60e736722290ed709a67058986541": 1473, + "11459c91e84a49df825e16c650dd4e8e": 1474, + "7b1f3ead3e05455f14babc5c6e9ff3a4": 1474, + "a7edecc7aadf274b1d534cdc5a0a2e65": 1474, + "d0b672d75d456c99508f55951cb44ed8": 1474, + "ea5a35a248f68cab692f6739303bafdd": 1474, + "5195d1381e082d307fe62aa4d73c488b": 1475, + "7119f886646fd1cbf3bdb36307b534fd": 1475, + "89a9e4d86bec41c4613ff7c9169a0c02": 1475, + "1b994bda62ba9a8bf0893133fa012831": 1476, + "52f5f45d6b67065e0a0695c8e69f90d1": 1476, + "e9bd857461fc3a9dababc6f8fa7a074b": 1476, + "c6c17bf18a51718859f9bd6aacb7ef58": 1477, + "e6b649085123443ad6ca16d27c792c9b": 1477, + "3a2e9774b17aee78d00a1a72b9e18869": 1478, + "5548eb19cfe923e3dd723628cd2a4c33": 1478, + "7af837824530bb7b1545af37ba0792db": 1478, + "8a27c5ab8108efcf3ee21f99daeadd52": 1478, + "8c45f4401cdae82b6079f9740007c8c5": 1478, + "94c22109a8c815a659b08e2159e527ed": 1478, + "ada263949deb4c1d9e2a32c3cc1fb126": 1478, + "09e21386297efe7e4bfd717b9c6a697d": 1479, + "0be3933f1aa23d629002a884d408e3f3": 1479, + "1b355e7a56ef686aa0ceed9caa272133": 1479, + "2fc7000e1781c65649fe649414d00455": 1479, + "36ffa102acba11b5c57427d8ac5ad98e": 1479, + "4d22184ed99efec06bbec5cd7805cc56": 1479, + "6922d5d71ef2ee801e036aa21acf7943": 1479, + "742cd4d3c5f628c82ec5649a4f0eed0d": 1479, + "758744ec2d2fa3d1f2020586401f97e8": 1479, + "80c9012671accdf9e31441ce9c3c0fc3": 1479, + "868635e8bbcc61c73aaa4a56ddbe677c": 1479, + "8733d6ece3da100e118513c0dc4ce360": 1479, + "d4c469b737f113deb8ed0680dd6cd61e": 1479, + "df17a077d596cc2437640dbbdbfe77eb": 1479, + "f397d53818b0697e6a80ee5cc30d2a23": 1479, + "fdf4bbe03b31ae0f5faf376ee0153079": 1479, + "08b21d774b2adaed5480f6a941c576e4": 1480, + "24beeebcd540f08471be5ef1353dd332": 1480, + "2626cde4fb2655a8603c188af3ca7daa": 1480, + "425e1cfe1f407793ec498712766cd099": 1480, + "53fecc4edc1bd267babaf1a2799efbc8": 1480, + "9ce004429a6066999ed272389773f086": 1480, + "ca87a1c5f28654a3f9c0196e63e9391d": 1480, + "d8704df1005d605aac7228691b5ac16c": 1480, + "303a17efd7b6567431f168ce976ca395": 1481, + "3d70afa6affaddb970d3ae20d69279d9": 1481, + "71695b218b946f9f6e8f859b28c26506": 1481, + "9a5d97995c7191d1436281e8dc110867": 1481, + "befd5d05eb33f984994230546c2bcfa3": 1481, + "f5b9a95dd243adf1477b1ea96d3a33d0": 1481, + "2717773e0fe484f15ea0fe679606d03a": 1482, + "3905799e081b80a61d4460b7b733c206": 1482, + "d8d07efcb88f396bee0b402b10c3b1c9": 1482, + "f163cf53f7850e43fb482471e5c52e1a": 1482, + "4a53b6f58067d62c9a43404fe835dd5c": 1483, + "e859a2e133eef9e2b1612508b6acfd58": 1483, + "088558f830fe954a7d5d2d17cd21479d": 1484, + "0d395117c6eb6ba494b59fe2e2cd048b": 1484, + "212d4e0fb68901c68bb6c10ab3effbe0": 1484, + "328f55e3beff0b28a0df4d5ab7cfcd3a": 1484, + "4482fbbbc77e03266b979f5028d4b51d": 1484, + "45e2bbce85717c4b30e04049404ff659": 1484, + "65437358ba00e0e02377a1a67c825b5e": 1484, + "6e621a3b7a902413c0e21f8ddf940290": 1484, + "00f8cbeba7db567d1083053b30a93ada": 1485, + "34b40ea759eca4f759bcfd09171739cc": 1485, + "4f48170b1cdfd091f6c25e9950c891e5": 1485, + "5f7c75797b9fc649029fbffffbfd5dcd": 1485, + "6c9cb073c20f55429cac631b9be72f71": 1485, + "787049d062fafba573169434aca3989c": 1485, + "81d0532731a625c39cff9f17290ef5a0": 1485, + "3481de7a6d662d5bfde2771f487fc135": 1486, + "8d67bbeb5b9a845bfa6cf0b2fcb15522": 1486, + "9ce6af110eeac2eb1ba8db803d15391b": 1486, + "b2d2d9ed68b3e5e0d29053ea525bd37c": 1487, + "f0acb31e9a137c80648fbaec9c46f181": 1487, + "1fd59d969af9352f228aac968636850a": 1488, + "fabb21c50a680d49ec136a7f7c4ab585": 1488, + "0211a76167dad1b86ade4f3ab03462e0": 1489, + "19f824a16edbdd55eb311ab177b8305a": 1489, + "1ddde6a84e43ad524a3f81fbfe22f9fc": 1489, + "26932fb1ea284f5effe1b91bc03637ef": 1489, + "5bc7fac06e58fda15fd981fd03572c34": 1489, + "674d1f31be809615d4f352cb8c5f606b": 1489, + "8b8f11a1a2957e46258c473af539a3d9": 1489, + "8d2e515252566cd8ef051cccb8091679": 1489, + "a5d277a9f7f1582d8bacb2b044932925": 1489, + "bce8e3f4878beaf1315330696c1df808": 1489, + "c1e04aecffbd0e220508653dc4f70bd2": 1489, + "c4c79c99d36c27ea5a5e582f5d3e4750": 1490, + "cef3177d8c006505ae7c90d587847074": 1490, + "ddcdb6aa8270a55ead3e1474cc2fd0de": 1490, + "10a12b5840a13e8f3a61885c44bf3b8d": 1491, + "1f556bd5a9160b905dabf1da378521b6": 1491, + "248e0c5b1fba79055fbbbd2695720515": 1491, + "397164fddfbb1ba87734f6f56887dfab": 1491, + "5f5219add5c5ec15e4fc875d68f40397": 1491, + "64a1a97af37d402f7caef2261fe05691": 1491, + "891dfcaa5075652ed812cdeb54dae1fd": 1491, + "991118f99cde0ad3fb2bf452d038e93b": 1491, + "ab1e1b560cf4abf210011cdf2216d966": 1491, + "c7af093a7336b6138ba97d694742e3e4": 1491, + "ca606bd8a875a396d52735c3bb84fa67": 1491, + "e4cc2e365fe5d0a43bb538981ab37bfd": 1491, + "066127313b2cfdc761d19eb496d8a9b2": 1492, + "131c36c33edac9248730dd8057e1c87d": 1492, + "4d41fb2b7687eaa956d23ec319ee198a": 1492, + "737be18046dd10dffe5b0e3aa7e32e0b": 1492, + "c878bef595fb2af81f4fbf0731092c57": 1492, + "fc5f4c38ed6e847bbdad0cd7b71cd54d": 1492, + "fda10ab3ada2a934b40f55824e793310": 1492, + "1696622370dc54399e55c85ef8605241": 1493, + "9d19a9edfd95f1c240ea4b8f728b59a0": 1493, + "d292d34547c4eacb9ce9f42b8992ee1f": 1493, + "88201d840919eafc47e388740d664237": 1495, + "91f46e0f4f7590f22ee82755eb2d4023": 1495, + "2178cc3772b01c9f3db5b2de328bb992": 1496, + "228314807d6bcf1201e53a06e13c8a0e": 1496, + "6e628438de2d8d4c2f3166461cd441ab": 1496, + "e766eee215c2059d2f4f31ae48558a32": 1496, + "1b349d3dd777edcee79cf9e7af049798": 1497, + "4d95586eac0286d269875ebcf864a1e0": 1497, + "6d7af07156398466e2a606509aa23baf": 1497, + "dfe93bef60d6bb6e8cb52fc3f7fe1e3d": 1497, + "ee24c83dd7c68beda04023b606b07375": 1497, + "50dd77437fafae2ddf89dc6b8967b494": 1498, + "57ec337398877619f11e5553276241c2": 1498, + "98972693babad6f93782cfaffc031c84": 1498, + "d77e12f6f3cabf1b705fb8ecdc1b8c62": 1498, + "e52ba1611eb492bca94d4ceee3b6838b": 1498, + "2a8c78bb5572ff60ee84f290ebbcdd8e": 1499, + "48677e0d53d3562217d77e914c1fd79a": 1499, + "53a427c4334020b05435f58adbdc6d10": 1499, + "61c7f8a80b0c4e8ae4228e94634c4c12": 1499, + "95a9917bf732ea61a10d74f190651878": 1499, + "810937940f2e94a2cd77795b30b5eb06": 1500, + "0050570a82fc31b0cd236f9098f80af9": 1501, + "c69dfa839ac8345ba768429b93e4b624": 1501, + "df3b02573f5e80eeb920082a0e61f8e8": 1501, + "f5e07200389089e9b5b801a9a247dcef": 1501, + "18f70414370a212abc46c604116890fc": 1502, + "63cf61ae66f6ccecdcd9eee764483e04": 1502, + "89af175e32fbd07b70b16ba32b4fab30": 1502, + "0d19f64b4c98b5fc9dcc448d8b7f7a05": 1503, + "3cac0e7b890bb7bec9d8c25dd6d6c509": 1503, + "557c5ec2a89ce908b29309d7cd590eda": 1503, + "5c36369fa26d3ad5ca70fd08838d0f50": 1503, + "7865fe2a4d9379fe7563186d02ac02cc": 1503, + "c937acabb9fb5781363489d8d14f0a70": 1503, + "ed7a1a12f557ff5c6376defc7d4dc637": 1503, + "13eb43b8c551505d6bb0a26335fbb216": 1504, + "1b42d292d81b87e1fe17963b115a3fe2": 1504, + "1e103b3e82f6b5d3aa202c2cc2a6716e": 1504, + "428675b3e3ee6338f1dd37d931b972f2": 1504, + "55fbf65662d16fac0e7add2be833e86e": 1504, + "630f5c2d4ccfd00db2b4cfcf5932155c": 1504, + "9718b8d26d552d298e4f3abf001e7377": 1504, + "a7f714f1d65fe923a37ff886e8fdda2f": 1504, + "07fa4077aa70060f0931004cc1292ada": 1505, + "7a35172f2c7edf08d63d256252c725e5": 1505, + "94c43ab7eba0ade5ba0ebadad055b136": 1505, + "ad7a8e1f8a416f15b21e5b7f4a5a1c40": 1505, + "e4b5ae6c40350d6a6e9ec9a22aaf1210": 1505, + "4b326be45681af67bd37df8ff18d1acd": 1506, + "5be7b2ba22150b1077590d3b15b4c562": 1506, + "6c772338511c4be83fa8df3aadd10cd7": 1506, + "eefac97ac3b85048f3685e1623210efb": 1509, + "1cbb2d6903fc0188426f08bb1c0be925": 1510, + "6334b799a20b0f5cd6dba33d46511fc8": 1510, + "29e5e1a5f8b400773ef9d959044456b2": 1511, + "4f58e64b4b07c03afae083de9c01d99d": 1511, + "ce4d5bda746a72e02fcfd547492551bc": 1511, + "0fb08e852cd02b50f959bb8cd5e55796": 1512, + "22b180b6060d45244a007f73da42d370": 1512, + "2d6868a54354caec934bc60d09a6f922": 1512, + "3f4272b8436df0c160ec7db17c418361": 1512, + "5179407cdabb8ab09d9f023d6018f6ad": 1512, + "b1680d0aa5416fc14cd256907f8add1f": 1512, + "b22ddfdf9f56abb1f4d029b41bf0cd68": 1512, + "ba0b9edb11c570c33c9af94da008aeda": 1512, + "cc912422c759b61d7bc14b1c3f055c3b": 1512, + "ced65cec1caea8e043cfa5fe0f972aa7": 1512, + "e4c062be220d5b00c82371d8f7b9679e": 1512, + "0b66fdf88964235c434daff62837af60": 1515, + "2512ab3896a5c51eccfcc679fd9b16b8": 1515, + "5e1135b9a0504fd551cb11c36cadcad9": 1515, + "8b9373e039e6ea1fc112828ca640b8a8": 1515, + "adb96c73061149e42ea157ade0334da6": 1515, + "190d10a3685f87ba32135ac595283f36": 1516, + "20141e71488c0618809a61b7f14355ad": 1516, + "7e13dde9723d3c9c5f9cd5089642570f": 1516, + "e5a70bf8c412fe3c54b92518b4395c7c": 1516, + "f3a8822ec4ad196348d6c959289d34e1": 1516, + "5f62fab71cf3f8e90ac3af2775c8d630": 1517, + "81afd8b005871c0446038bef867e4a1a": 1517, + "b85ddb9bd9e1cd287f8f614ab1fe2c90": 1517, + "06560c3a50af4bf3873166d29260cefb": 1518, + "3207fc124f914f0b26b43d4b06ecfbf2": 1518, + "36e925b3a11d87b3713144339759a2c8": 1518, + "6129d3ba110cb50496e1f4eff9b1c333": 1518, + "84f06d39c96d4b875ba558654cd1b464": 1518, + "d016fc9c56f1e78ff28aa7c4a37af2f7": 1518, + "d2f0674966acb1309504123226854d3e": 1518, + "ff8bfb207da800321fa3f1e0673e1d21": 1518, + "67d870aaa3fd90109383a52be3887c6e": 1519, + "df7730893499c1f119367404f317daf9": 1519, + "4891ff6840da3f608618c100bc064bba": 1520, + "9627ba5d8a163e89c529794f85b58e05": 1520, + "31b114d7b47732f2e08e7d09e7bc3e22": 1524, + "4ccf65a4f658fd237e774d29addc3a5c": 1524, + "7167236b7b9d6b9907ec35fce660931b": 1524, + "7f5e060c1da004819aa1d1f449cf175f": 1524, + "80b86e92c731ad810c653237bc19dbe7": 1524, + "b35162f96bc75d9c7f2895b8c1cb1daa": 1524, + "b7218e8586e823d511af446f7ffc51ed": 1524, + "5b952af83d8865ddbf91f3e7460380a2": 1525, + "85863eb979c6bb44154d942a69edb09a": 1525, + "96a1b7b680205098c6676fafc6b2c747": 1525, + "bd3ed71615c5785b1be59662a3c04c51": 1525, + "c517ca2fd6199fde0ba4b3847d9bbecf": 1525, + "ec84ac0607b01211f7eb05a670164850": 1525, + "f225fe0764940b3a17df071104f63e1d": 1525, + "248ba1acbfed28be4e6839a858a5c60a": 1526, + "40f6d92e060de6e1bfb74183461ece26": 1526, + "5736da114e288c512824f4a58a51c2c8": 1526, + "74eb229812128cdfdc52736972fb20de": 1526, + "7b927b87d3ef545c168c16cf2bee3a28": 1526, + "879a633cb4594a494997a2ac2d597868": 1526, + "8967992b9eed81e68653aa92c5f8631b": 1526, + "8b82c004ed7429322621e0f745ef802e": 1526, + "9de76d2e5e6b50c9bd1e230d2d44f02b": 1526, + "a543a40c8d82122ee6951e8de10e2f81": 1526, + "d88f530741ff96a9e280461a94d2119a": 1526, + "e57dafd53183a9296077e2c3fc427893": 1526, + "ed0281a6442571c5198079dced915743": 1526, + "098c0725272db9af1a16f2bba1e3adfb": 1527, + "13ad0c02d156a62eb8a05add6a35e0ab": 1527, + "20e917f703dc23c990ed2ad518424eed": 1527, + "54291a0dfbde21d3ed69b81171fb1e7d": 1527, + "c1eda7b38bd8fb314285ddcc766a2458": 1527, + "1c23920f24486210043c074c0150ff6f": 1528, + "bfb9aafcba26436b17f9a046aa4076a6": 1529, + "c3263d7de9fd9aa6bdc416526399314e": 1529, + "2890ab634c5262bd80656b69382b9de0": 1531, + "3841351eaa62547c757e5fce1cd0e67f": 1531, + "6ea5a463d04ddc42e9483dcfef86b0cf": 1531, + "9c1d74f31b66b89fa7852eccb3858397": 1531, + "adc3b395e7613029db78369693d9b79f": 1531, + "de8ad14372e350bd69e79f90d7c02766": 1531, + "df12f097d567cf6b682631e95cf5ecb4": 1531, + "3a908031aa0e30b2122e9468b96ead85": 1532, + "a58eac056a003f352bc9fb01248520cf": 1532, + "b34e53a328a30887d82f25bb6a4d3852": 1532, + "dc79b80fad740bafd7f485dd5d413740": 1532, + "23974aa2e29dee184601be71d2d6c723": 15323, + "2827084cb9be9f464dc2a589d2daf236": 1533, + "48470308703aef28269dc583bcfd5caa": 1533, + "84fc07c72b7f37c1b9a5a957454171c0": 1533, + "bd377b49dcc269c6270ec0ea6336baf5": 1533, + "04228ee488627e75a345d6d82b00b510": 1536, + "1372771e3fb8468099e2f66042e51379": 1536, + "897d8c76da605d233212d01025b3327e": 1536, + "ee1394599010781a079009090d97fc5c": 1536, + "9572d6a5f36d7c62258417c331a7220e": 15367, + "b7536ae7c0befeac3cd012af323d1892": 15367, + "abbceff7684b678dba0a109ac2314bd3": 1540, + "d8bd241e27f2c1812751e4e92c7ec68e": 1540, + "14de068a0ea0b211c697d8795228c282": 1542, + "608692c80be6f94753c06566edb5636d": 1542, + "a51090f9622c4665b82937201c90d261": 1542, + "b6d2c6c3196dca33a689df4f02c9832e": 1542, + "e6f6a99ac2ac889b9d70c0eabf52af69": 1542, + "0f3b320959931b549eab42566aeadb63": 1544, + "ae20571cd276964fdaca9cb2804b5fa2": 1544, + "bddf6593901c5c0cb00f898aa163d0c2": 1544, + "0ccc1a2fe5214354c3fd75a6c81550cc": 1545, + "21201b4a3f10a6c47cd18c4025d35ca2": 1545, + "6b85a405a5d88fc70c8f74e6dd2e2d3b": 1545, + "6d50fb8036b30ac719945742b4dc0ee0": 1545, + "a930f9d4c59d8ab1dee39825db1f5555": 1545, + "d55c2083ddc86ac3da2a7c90c9768bf9": 1545, + "ef031c96ff72ce00fb214e2afb4c184c": 1545, + "f56b8097356ca6ab9ee548a02d4f212a": 1545, + "1416f38ee082df901924ade572fdd8a3": 1547, + "631df04b0dba04e7d469ee5f0e91a3de": 1547, + "716a82b2007289fd3d3baa2c780d43ff": 1547, + "77655d3a646ac2a1859c91f96828e451": 1547, + "8459a8734709dc94a8ffd60612bfca6b": 1547, + "94eafd1d52c7296cd5b9dad6316e5976": 1547, + "fc546c99aa19c25f27b3116541cf3118": 1547, + "8829d7ab1efa5af5e309d4fb2b8574e3": 1551, + "d57cf138a6d189bc9602a4230f5a1d0f": 1551, + "3313c8e9f38ac616af9405b0fdc33944": 1552, + "a14e90da461526694c0620ce040eb169": 1552, + "5299b041d9ab9b690f962d5b68742590": 1553, + "6c9ca0103463eee5fc6180c30acae297": 1553, + "b30a3f09b86f3adab09a36bfe674544c": 1553, + "d67a3ad6ff7c53178f15ea52012a20a8": 1553, + "f2a3f31da718a26747cf487a6d80a6f1": 1553, + "f8fe57c05f67653ad9bef95ce8e43091": 1553, + "feb66c77ad246ab56f79fbfd43957d3c": 1553, + "0c00d53cae957081e1c203ece3549ce9": 1555, + "1457475741846a01399dc663135a60c1": 1556, + "1d8c1ec9e68b5c3582ee52f917aff724": 1556, + "1de8e9bc225fb9fce33f3e1236af15bc": 1556, + "3eb2a56c3c7656b21f29942d24f42c95": 1556, + "4761c866fda2939c56ecd54a41febc49": 1556, + "5afb29bd1bbada1fc5f9c4c5e514d70f": 1556, + "6a1007c559b71eabfe23950265e59849": 1556, + "70c309cb6b9ead20c06d554cf48b3993": 1556, + "764f98edd509a6c758b1d4b882de355c": 1556, + "7917033ec6861e19eb1aade34fca4e3a": 1556, + "9289ccce58df170c92ef96dccad9c93c": 1556, + "931f08537a1041e1ec2849c627bcf534": 1556, + "108fea367dc5ba9a691b3500fc1464b4": 1564, + "3242d0df933082e6bfd192b5e39dbfd0": 1564, + "576ab245b4f04c670ac312ab0d441697": 1564, + "8cd81f8db0d70f177812a132670438bc": 1564, + "9c3adab712dc85876e0daa938d298493": 1564, + "a3af0e6c0530116a9426e490c32933e0": 1564, + "e7ad2eec634820b0ce3fd11bc76e64c4": 1564, + "f826f525be43e859336ef94e5a753a6e": 1564, + "75cff36399bb745c93a60a3a9c4c0b6a": 15647, + "7ab461dec5c3e11c10392005d4c183b1": 15647, + "f9019738468b0e85bd0c6a3194863616": 15647, + "077aef22bae04dbf287ebbc03806da3c": 1569, + "7b0c3f8f1be24e9c2fcc59bd4c61a899": 1569, + "e3b1693b97edf2336722451c250b0792": 1569, + "3a76fe2c2faa6ede7f678df4f9260caa": 1571, + "89a08d3b51f8576c213316d7eabadcb6": 1571, + "abf97d9e3e1c97efd93fb90be6824e89": 1571, + "fd643d07b01072a1376353bd37b1f8c6": 1571, + "231b21863a128ce6115caac30b1c6f6d": 1573, + "6f9f93a96635ca9f8021ed3a8b708003": 1573, + "ebaf268d47a21f47e04863a7d5413972": 1573, + "728a4c80306dd3debb8ba90868376255": 1574, + "9d82467a5c2a3138451f6dfe67f6848c": 1574, + "36f9c268d5152085c914eb732392848e": 1575, + "9b6682f308b357b502626fc9fe3fd83b": 1575, + "83dfd6f1677ae112f98f88ab5a8bd37f": 1580, + "c3fd72580c5ca25bcf5cd73674695e27": 1580, + "cc2e2aa46f56efa41c95ab81de7e05fd": 1580, + "d637a96f17f7593340482f6f2d943739": 1580, + "ee629f5fc76a3a2db00a2809e9670b65": 1580, + "037dc690f70fc8f59504f38eb3b02a1a": 1582, + "da0b83acad263cb5e913033ef33ef4d4": 1582, + "5ecc65025d3c21a001c13775e839caea": 1583, + "66cdb9c9ba8b2f609ce396195ef1c881": 1583, + "74976bc8b5c16b2a4fd6e7648fae1000": 1583, + "dcbe4de20cf9922fbbe13c05e87426ee": 1583, + "3a8982c987a93b2f7c7eb7de2c102192": 1586, + "ffcc592a3f063c1dcc87cb5e0f81c8af": 1586, + "04e847a7efae58635d28c289483b5999": 1590, + "5bc9d55333a5e77b54144a22539b67a9": 1590, + "8156baffe8c779eb60caf31078584ec4": 1590, + "ce1bf3b6b850874c076fc44fcf730890": 1590, + "f182863a759f547e59fe98b2142f1b37": 1590, + "09f1e4c101bbeb9ebebdd44c3046ef61": 1591, + "209ab20f0abea2a7a6bb46c0d0c968ed": 1591, + "9d73a7e6fcf64dd103f27895409d0f3a": 1591, + "d8c7ed973232990fa1b7542e6876bd3c": 1591, + "60454a2425152e7bac6b2411a2386ebf": 1594, + "6f844dc1b4e451449f4b9cc667b9641c": 1594, + "9f469de265bfaae1693d8d0d473192d2": 1594, + "e5e004d9c545bc1b5a9318fd565aeba3": 1594, + "7622e7d6a786eec7b09948e109c3400a": 1596, + "8a2171f4c4083e25e64de909dabdbd41": 1596, + "be32956344169c9dbd489ceb2f1892fa": 1596, + "fda976a991596fc0491f321603f422f5": 15960, + "6a6763329f9e62495ad34a05270aee7b": 1597, + "6bc8f54dc358aa35f6259715e5143b37": 1597, + "4b3a5ad02f50bea244ddfc53a938a49e": 1598, + "8e7811be263cf530adecf3368b9e6012": 1598, + "8f695d286c839897072909549ce06160": 1600, + "9ff8f926f7284b2fa13fa9f5cc26cb23": 1600, + "d2c42603a8ec74f51265c085ae26b9bb": 1600, + "ffd28d2476566b2efbd182f107d9d8e8": 1600, + "bff655ca46622be666e620a69f8ed683": 1601, + "899a8d8a8d05d5809a4e9d948ead32e0": 1602, + "b7cc4102f613d31c6ba5b3a0b105eef1": 1602, + "19a9d66a9d9c1c736316957c344eee95": 1603, + "7c48aba0c9cb43d62f69f19c9589db50": 1603, + "0a6861a53696ca5dc5af099d7a5c3295": 1604, + "3ce6272bae7c1e21bd1683ef80f05f50": 1604, + "4d81ee8f396ae49de28341f80f517a44": 1604, + "c808295c9d46841c49bbb0c9ad52b4c4": 1604, + "f5d6c0ccc98ceba73d680b5fd1de8ab2": 1604, + "fc5d76d0fbb2f9aede2e470c98a2bd87": 1604, + "19b315e613859ea1f860f253aedf6c6d": 1605, + "cb6933da55479c5ba077177dd283c90c": 1605, + "10e8581f578531495dc00ee62528776e": 1606, + "44beb044f7c2df6ed784ce4a60146c3c": 1606, + "b801e0fca499d14231be90216ea96180": 1606, + "11e9d80f217f597c11fbb4ef7a5483f1": 1607, + "366839321b927db9808ba7d13e4fa664": 1608, + "27f010809b4848214642395481e8965f": 1612, + "5042f7646e7cf01a4a44543c13faacff": 1612, + "67acd848c058386d2a4b1e299a62d2f5": 16120, + "6f7a8befb890d27f6ef473c56445ef1a": 16120, + "76564523e76dca34d6c1f8d5976e5908": 16120, + "f6ba0430c28acc0b2ba0ffd395d4343e": 16120, + "0748dab46f144c2f4a49496fdcae93b5": 16125, + "723a293e8a150a713e0eefef178b3685": 16125, + "c023ae6ab7cfae1db9a48db10a31a52b": 16126, + "e9e66aad57c2d5bae9e2cbf3d6efcbd2": 16126, + "54e333194d86eab4377628070f305d96": 1613, + "1c2489c1dfbfd6f9a694683384feb3da": 1616, + "4a500d8989dd238a51a29e1d5eb7d820": 1616, + "68accdb1a970cc826d085c94cded193f": 1616, + "71e7ef754a716ced5b306a1e5b6e93c1": 1616, + "7e69985bb43db4686ba59c08406c716c": 1616, + "7fd042636ed1e6b24151fc1b4fea7052": 1616, + "949a5f70b56860ebe9826831315e17b9": 1616, + "e0c95175eef5ff44bf42b84c705a5576": 1616, + "f339fdaeaff14639d46a947b5018c1b3": 1620, + "fd2677e07cff48d5236a1ddc92dca342": 1620, + "1de41e13a2e691a8cc13b757a46ae3b8": 1623, + "8f03cfbf03707d740c6f734a8cc2b9c3": 1623, + "944d527755c1ed6d127e87ed4e0e81b5": 1623, + "eeba6ef8992074c5ebbdf0ecd9468e10": 1623, + "f865b8c5d8e5937189d7c081a30b748a": 1623, + "f9092833d57939c942f5233d41d8f16a": 1623, + "4d40ce0e6f39220ac87470fa508a3d3a": 1625, + "81e7d9c694e20f75219b7c00ba66a618": 1625, + "9a50840fee49809749e2eb2e09ca039f": 16253, + "05043f92ba4dafdb912422c6751492c4": 1626, + "08f9e08e0fe360c1f485fc5021bc5f65": 1626, + "27111e149d07b2b07374e8c2181ffa7e": 1626, + "4787007b3ccb255d822db474cfcb27de": 1626, + "9f2d0853635a39e49467890ba4c0a14e": 1626, + "eb0e97837dcf162772934fc64a42b2f8": 1626, + "99dd1d23a46e68b7163dbc5bb69b9929": 1627, + "d47e2c42aeb6a9ac5e37a22c371b4915": 16276, + "7667cebf11c3d7a39575af91606bf412": 1628, + "79244280e463f50f4de2ba2ef695c45a": 1628, + "bd3e40868c3aa06d4e3a8c1b290daa95": 1628, + "282297263545f9b9dbbe3316772319f2": 1631, + "28cd4cd685b0f1b58d0aec9a8da325d8": 1631, + "489d8449850b0c5fd17fdf6cf5470688": 1631, + "2f2cb4ec9936d23f370f9991e84cce98": 1632, + "2f36e638ccfa5a3f0e4bcf0d4dc76b79": 1632, + "3b09f1f08059afe6693c21d5e9739dea": 1632, + "43836cfcbc487a0a4e26e8ce667b0a89": 1632, + "62ceacb531aa8c9f3c492f8882474a87": 1632, + "ab2b746427ce0cad9f4965dca4b8e323": 1632, + "f4b83cae35d04bf3eae282642032ce48": 1632, + "4d5594e53a481ab3e0e7e90dc7e42d25": 1636, + "90df5fcda5deb6bbbf26adca17fd67c3": 1636, + "dda34025966a23ae854d7947a3177f57": 1636, + "e44e457b5896aeb1abafe5c83c1aa990": 1636, + "f07f30249b8fcc79762ee07c2b11844c": 1636, + "119c456602da16e91df5c574c929a2f3": 1642, + "e3916eaa532b7f338a5fc74e8820b813": 1642, + "3ce9dffcb21c2c46244f2321a9e5b349": 1644, + "e36bc14876da0e25c4ee2bba193002c4": 1644, + "ed0a5c2ad1b301f1e29bf76223ec1053": 1647, + "1cf7b78b2e7d2a66f8791dcd28093db1": 1648, + "e734ad3125a2dc0d1d1f07becd2b6478": 1648, + "516136715d9e29e889f3c9d7c7d12a42": 1651, + "a08ca7ee067e120d6cab284fc42bf15c": 16514, + "a1945e8e7204ca471e26ba7de8f23278": 1652, + "c730e42bd60ba9bd0bcb196ce1fc3cfe": 1652, + "e0ef13918d297a2045d762f61d2df224": 1652, + "328b2c34d156e1c310495aebb7bf987c": 1654, + "6062b22d2d55e41dee50d29a6650956e": 1654, + "6845f9cf9d980ab563e95d0fd79c9785": 1654, + "9af9e9278a2abeb0fd2e576bed15faec": 1654, + "57eafb0d2ee63e4dbb3a66282d9e1221": 1655, + "aeab719188297fd62fe0227db2161a22": 1655, + "2f6722317f4e047e45b711e2ba6036f8": 16561, + "a2b5bddb4c7a5a39c8fac13e64494c9a": 1657, + "c3942ea9eb1c8b472560c21ee34ea73a": 1657, + "d4cf358ce411c63e84df4a51e32a4cce": 1657, + "00a7d212bcd3039a8888e9da23ab0f02": 1659, + "1ca706896a8d4f2a2b5480d941130a4a": 1659, + "9ce4e7fd812c9259362711c9b507489c": 1659, + "b1867c12adc9b851fe9dbf43a818d291": 1659, + "10e194ef6fd32e86495b0468cc5d2c2e": 1661, + "13d2c9575679ffee0f8a6c1388dc8560": 1661, + "3ded0a0d0d68d68d8d393986c90e411e": 1661, + "5544f4b141a95d0062b08dc4f029cbe6": 1661, + "7e994118c35b576410bf8da7ae3ebdd8": 1661, + "b2f092f2cbb17456109a4df0468fcdd5": 1661, + "b7876cfd30d1830a397834d256f5efab": 1661, + "b9dfe908fbde38d9fd2a7709ed1f7c80": 1661, + "bb4f56f41688cc51710c246f0ea22e1a": 1661, + "d65557c52b486bfe65e993b6098bb772": 1661, + "eee2f54ddf66907ce9cc366f125a74c3": 1661, + "f0470e5ee7daa5e423d4f0fd8e898a6d": 1661, + "f1acfb46daa16c981aa23ad7a00788b1": 1661, + "2adcbf9a5613ad11c85eb1c531aa982b": 16612, + "5a62946927de5ba02741c0527db7ca29": 1662, + "605ee668a12ad95de3b14b592bda5772": 1662, + "785abb3ad131709037671d302c2c130d": 1662, + "a8b66296bd0975283fe9ae5774a925ea": 1662, + "b4dd0856815785a13f8a918e0ab38ddf": 1662, + "bc5f135b34f7fcf06c4eaf72970f654b": 1662, + "bebbebffff971b9a5a3b53e4f2189638": 1662, + "bfd1f83ef7870127e8af1e0f391bac07": 1662, + "dd35f380b365165674fc4daac2a132b0": 1662, + "fed1b9dd7b1c2de69ad2599e23ec0e03": 1662, + "8eef8d42366abc43c0bbbc90bd0453df": 1663, + "2dc1a767535bf0efb6eb37e40e57dd78": 1664, + "50b9ecc2af9f0a3c13917486ac9643dc": 1664, + "99a981c48765d014357f0d88979c71b0": 1664, + "cb5e388f674f9fffa17930214fe3687f": 1664, + "16bd158913f423f1812149951490e1d5": 1665, + "391bb18bc7db6dd9b359d0bebbca4b3d": 1666, + "3d012f801c162c7f0ca97d516c25bcd6": 1666, + "6a3c632ab5e085f81dbfff0ef7f1f2e7": 1666, + "ac742cf2f5446fec114c13f9f2c0388b": 1666, + "c5b761e45c61aa92f0a94460e0af7795": 1666, + "16a03048ce659d3d733026b6b72f2470": 1667, + "53c1b36072390deb0c1f4d435cf2e41f": 1667, + "57bc5e42907f566990514eb57dee296c": 1667, + "5a0c984006b088c26db5a4f454b7a0ef": 1667, + "615931aa63a3392891d4c8e768ee7ada": 1667, + "b4b5416962ac800a77a0cf756bfd3fa0": 1667, + "2c90f2f26e392f9bfddf72c28b8f2938": 1668, + "7bb417bc023f48cf6184d9bc6b7e87f5": 1668, + "a75665556906710c433945d0111f11e6": 1668, + "e310e8e2a625cd71a698540cb529e2bc": 1668, + "f92bd9ade4753cba85e4f5ad6e210446": 1668, + "44dca16afbee7fd947e86c30c1183846": 1669, + "46db3fa928262ab30552aef77bdaf02b": 1669, + "6554b2d79ac9bd0b05cd5d6174503f0a": 1669, + "8a6d2c512d1f848a3f951eb596fbe7ae": 1669, + "f1d71864db620eb73073616f78c11155": 1669, + "fa382374eb4a93a719064ca6c5a4e78c": 1669, + "1871488dadc879cbc2de8e2e6bc8dd24": 1670, + "1c934227cce06d04d68da344e77a1c29": 1670, + "5b33eefa3b6a9b2cf0af0b8f65de52fb": 1670, + "72e105060a3a1ef30694332e1526ae3b": 1670, + "ac438f00a040a92c7bf48cd354d1a8cf": 1670, + "b8592879590cddec02fe077217562d00": 1670, + "e5a2d5737f0337711bdceb1d97f71054": 1670, + "fd8063c49ca47b41df2e0e5017a68c70": 1670, + "668f9649fe89ff30993e8a78313fb130": 1672, + "c6a053caa0ca0e7372979db0e9ccdbe1": 1672, + "9539cd44013c3a2a5fd6982c59e9bba8": 1673, + "c25389ae7d1fb2d1bd60232a61986236": 1673, + "2a0df2f8887c57bbbd64889cc75dd9e0": 1674, + "2acf27bf884101d2eb303f51f3579503": 1674, + "32a28150e8263d4a1b344f82ba30af13": 1674, + "370f5862746b67637087b3b4cd64b163": 1674, + "3b712f9dac7f7ffba96d1eb86f1b53da": 1674, + "c75b52fc9a4bc657c1de7524833bf88b": 1674, + "e2297d6fbd42a09b162e84507acf4c04": 1680, + "1d5aa88015f5dcbc7581c206c4982db4": 1682, + "28eb470f84bcd54320fa890003d26402": 1682, + "b01a5dbe05aef906d65cdd2c0286cb5d": 1682, + "b3bb9296b5e1e0c83e90b6da9e8a41aa": 1682, + "b9c0075700f4949ed981a4ce35723f47": 1682, + "c7e191e16ca84482a1d613de877bb533": 1682, + "da0dae68ce4220d669fd032dbf5937a6": 1682, + "936b0157a2a547235f991aa44d77cf9e": 1683, + "e09af03d1efb03bdbe4acb3affc16296": 1683, + "e25ee2816c4f6fcd28715ddcfbde7788": 1683, + "4f2fb7724e7f69b4a5e651b1e43432ad": 1685, + "5de24cd5374ba0937bd8a8152eaa669d": 1685, + "a2cd57dc3c2b179c2fde1a8b96951aef": 1685, + "a861d24ec9f170d241c6a2cb361e55dc": 1685, + "aadba1c594c5c08fafd6bcc6f466b2b4": 1686, + "c66de610bbc1cb483e5bd9578496f962": 1686, + "cfb8b42ec388f51104e0d0b57f15f75b": 1686, + "d2181fab244df1e472c21acde28bab2f": 1686, + "2a5c4d22312d8151d1582d8abdb9eb5e": 1692, + "3cc1cc72497cbf67aa00482e02d2acac": 1692, + "44473ff82fb3fb859afd611e6880a80b": 1692, + "70a18ffd76da0c22abc9706714d4cbac": 1692, + "83c66a45e6add56cc161f8c721784362": 1692, + "e5e056ea070e1e5ae4a2cf12f6ece746": 1692, + "f2c7d5583b87451825c977ade0ed2b16": 1693, + "c5b8631bc83ffd1f30c85c355ed592ab": 1696, + "f471b927253130adff4b478ceeb1f9a0": 1696, + "1e8a9ebc15adf523ccc704fc11b63ca8": 1700, + "8c995f955f2b016a0fdac8fe37bb30bf": 1700, + "e13c77f5674648f4ffd9ba7e82d3b604": 1700, + "fcb354cbdc180abc990da9317d619629": 1700, + "335a5592bcf4839b2615fdd572fa79b9": 1701, + "338cd4df40185c0e6aaadfcd2c4e5608": 1701, + "52485ad0d6aaca08be2c1bd4c855a080": 1701, + "5b34826f94ae5aadb570696863a31e2b": 1701, + "7810f70fc3c17226a5365ef64283df0d": 1701, + "8b545322345b81a2f28b7dddf79e3b61": 1701, + "9a6ee6b9c46d828e76f7a2beb4726ba4": 1701, + "bcce430f597451dfe66575cbf3277da0": 1701, + "c90d652840d02c8eca799b3799bad6f7": 1701, + "09032dba626f75c6e0f443182ee489bf": 1705, + "6764508784b5277187f573e9c37e3a55": 1705, + "b19a51ff0b791c28ec55c6e3cb392107": 1705, + "c64fe24b4facaaed8900cb632c6b7b1b": 1705, + "fd7321183afd8a0de24cb65b1d6263aa": 1705, + "61bb83f677239f68aa4f5793e1ee0346": 17054, + "685880f3e9f09118afdd57417ac47b8c": 17054, + "13a8ab5f6d85830542f49552ae37383e": 17058, + "a9f1b1f6af56df50877c4fd973707961": 17077, + "34831d40e08da527bc1b32f572c84561": 1708, + "c96adb88609c5bfcd0acd91cdca7f330": 1708, + "d11f5916452e99759f2672cd393398d2": 1708, + "de9027d927334b5fb812c039a1264a08": 1708, + "3d44b833b5d24c043685df38d7f618b5": 1709, + "734c4ff66aa541b202c2b2c51cab4bbb": 1709, + "29cacd2e0a82fc2b4c9d2bf0e0468916": 1710, + "51661e523b00aadf1eef1ad6b2d27258": 1710, + "85c05b54ee935fbb4eb2da2d429a7f12": 1710, + "8c3c9b041392f8ef06f6b0c7432c589c": 1710, + "9346ebec7fb8c5c61f937ca46a096c69": 1710, + "a663ebe567219eb909373df5f2a39206": 1710, + "57de5b9fcc2007f0e8500e25274401a1": 1711, + "7a090281563dc9598cb8b81c6a0a3ea7": 1711, + "4156c20c94c2af1b4346b52f46ba6b5e": 1713, + "a54163ab8b1fe40c0cd81638357cc0d4": 1713, + "21af44d1e8db7c33b66c4f1f4d1efede": 1714, + "936974afe24551ddbd341ac9ce4dfcb6": 1714, + "cad1f1e422a087586afcd1bd4f97c66b": 1714, + "ceed379ad9dbcc75ccae5db3268c3d84": 1714, + "4bc6264669f4254c57a13a31b4d1b1a2": 1717, + "7915989354f8b96e10aa4a6d0e163c55": 1717, + "9e7755aede0e78954d83d03a87274ccd": 1717, + "d2a68b210485fa83a5ffc2c2d63d8dfa": 1717, + "dc34990856ceaae681f93a3ce56eb6b7": 1717, + "f0d94f25db202c935cd8f1cdde10a0aa": 1717, + "00b56614b73b76dea1877808b501d4cb": 1719, + "6ce1f32c9177b0b79b390b5ce6a2db52": 1719, + "3411ce799d241642d8354d642451880f": 1720, + "465dc95c995e70b3a161f06d67c1942d": 1720, + "ae22527e362b9622fbcd4901facee3ea": 1720, + "159c532f3dda86a0ab375bce60131671": 1722, + "1818b8f465615c717e498f2b51763c94": 1722, + "3f9b16a2f35922a93069dbb86bd147ec": 1722, + "40c601ffc9b78ac8bb1b25dc6ed45ef1": 1722, + "49c0ffbd6fca692e7c567b4d72ae0847": 1722, + "74f4a023a84c21fd714e0761f6805c00": 1722, + "913dad9447b6be47eef65405b82ad41a": 1722, + "cd8cf02f03eaf13fd61ed3cef9a7ebd6": 1722, + "daed7217e1d270e78c5799ce01a4b678": 1722, + "dce09b5052897b78ca7f9370568cb0c2": 1722, + "f432f520c89e760689be70eaa3f743eb": 1722, + "f7756dc7aa7d7afaee1198cfe47e0fe3": 1722, + "6c65adcc168c838238b2189db61a2ba9": 1723, + "719dcbfec73796ca202277d82b27ed96": 1723, + "0200ad4e1eb68add630800270bbf179e": 1725, + "22e7d8b0878778a725915418efba5cbe": 1725, + "404a7eedd0b9348eab4a06e412b49ead": 1725, + "46072fab845d1d5e74fb3558ccf62196": 1725, + "845dca95ab1008e045e2eb965e61556c": 1725, + "b740e18e8ed874370caba0458c3cad3c": 1725, + "ebdc427e6d96ce20bc1ad1f74d34e220": 1725, + "3fa50469878212f7feb8fa784404deac": 1726, + "81bfad8f823678c4b595c3605ddcab7b": 1726, + "23009553145f19a77c6e87c31872f902": 1727, + "3811614c17644da048ac5903250a2204": 1727, + "3850ae940d87632d62393d30951e900e": 1727, + "8b71e0a0662bd476a08635fcad1629a5": 1727, + "a3ad52a2fab04cd4ba437a64fbf8007f": 1727, + "c56aad6259d4efdc4951bd9195332430": 1727, + "fa6bc08a528266d453ed2e6e6549acbf": 1727, + "00e8a600804942359512ad1c7004327a": 1728, + "073ed958f161ea9467748ae7e3264b0d": 1728, + "2b5c0dae29650691e67a08ea58f554e2": 1728, + "3a06bf1f3dfabab4eca161d39a0793d8": 1728, + "56cfaafef6ba509ac60fa760215384d6": 1728, + "a9de893d3383c1d911d3d17d73ad130d": 1728, + "d862a4383378954b8ac00de6bd8b276e": 1728, + "0665ae5c8f9897ff2d801dc2f53405ec": 1729, + "20291670aa8d77217fbc0c7dcdc45250": 1729, + "abb0e6602033692774dc2a614f6c3e40": 1729, + "bd10903cf228203338adb8a20de841f2": 1729, + "c942429d7683be1c1144f27c04497ab8": 1729, + "cc42975cfd0f9b48f610196a2654927b": 1729, + "d3b425074ba440c848e8ae2cb57d27e0": 1729, + "e029879900ef71307f0fa59498fb9ab0": 1729, + "f92df93c9d4c9428fe28e410d05c3569": 1729, + "0ae012c45606e0dcd6af51ec4dad20b5": 1732, + "1a2d8eb2766fe80e63895f055a4a5708": 1732, + "2dd755bf4f1802d41206d7252e765e20": 1732, + "2f310da1fbeee828a93f0cd0cce01fec": 1732, + "4a10dd8fb6b575765b28b33faa71a41f": 1732, + "9050d728489a81b4a359f9a2aac62beb": 1732, + "dd20c8e5e291cb32b43e17e67549a2fd": 1732, + "881f7570c7a228fda35f6bcc5ea024bf": 1733, + "b144d81f891a70b3869d019190119987": 1733, + "b2093c89a489681c9ba8744a92f60580": 1734, + "dee8757582e0575c5f729aae60b1dcbb": 1734, + "1befdff1268497c1b78a9b10e9ea1b01": 1736, + "69341dbb2715a3fa3de9a6209b536378": 1736, + "be72dc9a96c9a97a4a19b24a25f0e701": 1736, + "cd8f58035256ec4d29d2417ae65b8b71": 1736, + "a4c7d9fd8c0691644039b9ed3f9701db": 1737, + "a8b496e4630da0585b2e06d1eb4e7806": 1737, + "b1759492f6c18682f43d465e831f1419": 1737, + "ba44e7d7de6cfe2b2c2c0407710f64a6": 1737, + "e1726b9798b959deacd2aa1545e9b316": 1737, + "0a310bbdbc1f4340c31eb25fe1156db6": 1738, + "24e7aa76fd3f0fef9031dd9c8d3e5cea": 1738, + "746684997fa1737f87cbd060be811f4f": 1738, + "a720e2f8e395ff1d51991803e56ad7f2": 1738, + "d91d8883a13d5f13946b731bddd306d5": 1738, + "3df2bfdd6f134d637f6f16f0ae3ffcf7": 1742, + "5ae8d1867f03bc2ec6e69001473127c5": 1742, + "8c812d2d4ac35eb33ab658e9516d5094": 1742, + "c64587d39b007ed2894454cfa2cebe77": 1742, + "1433f7c8c5af626d388b6cb08ebc9626": 1743, + "4ee23ff26589749a39b4aad84da7ade1": 1743, + "605137ec066faf665a3f0635560d2d04": 1743, + "95c579fded6031b73263db5f798a4bf2": 1743, + "a96c1a9c73469808444258c64ab9bca6": 1743, + "c8194a5b8d449c1326fa22d4cd4e38e2": 1743, + "c9b8009166380608308220f213b2965c": 1743, + "c9c94df2ebb19bd6d717b2cfbf977574": 1743, + "ca5f0ab67efadb25f300b4677eb4346d": 1743, + "e58cf06fa05b64671809aad888d47c21": 1743, + "f19cca57b6d350454c64149db8242419": 1743, + "f8f06e3ae2e4314d921b49f67a720e58": 1743, + "51be3c0db685f71f4a69c573345310a2": 1744, + "6566b1abe649fafd0bbea65e038300ab": 1744, + "94edaed6f4a80e27dea80f34d16baf7f": 1745, + "4b9b6fd298aaee1b1eaecd4f379ee8a8": 1746, + "c0a96264b9f8e4b7570c1c4c321cdba7": 1746, + "cd2d78f6fda9ab106e293386bbba2e15": 1746, + "cfbbafbecf01867d270a09a12f607372": 1746, + "3232592db6231541753677077001b9e9": 1747, + "32fdfb48b1e8cee9dce2aa434d032fb8": 1747, + "731b764f201e31c5b250c67acf835fb3": 1747, + "ba3c7743be48ae513fa836c1eba526f9": 1747, + "efef201d1d0719426d38e1f3e1d6b2df": 1747, + "22b8ba79c5267221caaae4e7157f29fb": 1750, + "b9c932f97c2f17034dfa29ff73accbef": 1750, + "2a9e8c3781bc6e37fb1af4ec0c17abda": 1751, + "a323fcf9dc1a581ed33d8e855204642a": 1751, + "3a94851289cf220e18d82fc5d056f7dd": 1752, + "4bc0913e5ccdce15449b722a4cd7083c": 1756, + "82bf8170c1763ba82c54d9c013dd98fb": 1756, + "b69780b6878c050a243b8a5e9bad83b5": 1756, + "c92a4fba5a8d328146e99402ff176735": 1757, + "16b03b365c4d687459b1200bd0040988": 1758, + "3007bceea55445357740e670406cf786": 1758, + "4228196e1d200db26ac7bce4f55cdd5b": 1758, + "5cd766899205e686dc4d06b0da06c999": 1758, + "642b90c5f785470b6ed751e363888163": 1758, + "66e4120446e9a2c6dea9b975d9e70aab": 1758, + "802457d23975a97d9da23a15dbee283a": 1758, + "87ba7231698742a839d013395061b74e": 1758, + "d3fcb1e5646fa55170e41a5656deef53": 1758, + "dbfc7d27fa2a779c62c38eacab12a4ce": 1758, + "ef88486375d7bf7f1ba06da81868bbd6": 1758, + "58719aa75cf961e4a58fddcf2457c455": 1760, + "a7fa5c1420a187e2a25a85e45688d5f6": 1760, + "c6d090097f37ad89184b6f58feb36304": 1760, + "e773464fe5a2337458186e8c2d55a36f": 1760, + "fd0d393f6728e62edd743191793f4cd5": 1760, + "1bddc3b9473d6bd1e5cad34a805845de": 1764, + "9d44dbe3103272095e627722936ffb87": 1764, + "9da70b67f4b8a2bd560a2952fc95da2b": 1764, + "18d99863a85cbcf8bf6244e1385f9d0a": 1768, + "2f9bbf2ef75549339d9008f9405003bd": 1768, + "3710890d9e69098458c8fefe4be225fa": 1768, + "4844ff2dac4a0136050b18ad310a09f9": 1768, + "6316bda0320106e6da5af9f9cafc0dc2": 1768, + "71768589f6a8d4b809a6c20f6093bea9": 1768, + "8bae929738d167b6534e020986d7d48f": 1768, + "a0db48b162176247ddee5b714e5f916e": 1768, + "af3dff7c236d03cbb07fb2171d069edc": 1768, + "b1426d097bee3cda86a137b665e9970f": 1768, + "c158214980b43dc5e232e99d8364fd9c": 1768, + "d7c16c678e468991421330e0a265199f": 1768, + "e8af827b49ea01faf8bd95358bdef837": 1768, + "ec2b65771753d2daddc4077bbdd294ec": 1768, + "f0bffe56fcff18bb1a149a8ff89ed1eb": 1768, + "10dcedd46806998abd5c8cff62c1d7b4": 1769, + "4b53d9b6b49d535ff6b3db512ca5ea9a": 1769, + "54fcf9168a09107cbaaaa6185abf9651": 1769, + "96cfeea23c41f4b2338bfe9eb8cac1dc": 1769, + "ebc1759fecb33d8ea56ce330560eef47": 1769, + "1ec9461b4f01e44aaf2431806c9a4bfd": 1770, + "2ea5d8c354ad815ba6c0e0160ff36d6e": 1770, + "36108cbd6c4bc09aa39f6eb9dc72150a": 1770, + "584d804027ab09d8f5a43692c6421a21": 1770, + "c17a8301feb2a41ff69fae66abaf548b": 1770, + "e06129a966aa07fcdf9b6b03b50b9698": 1770, + "0bda46ab6243a07fb256bc866354e5bd": 1771, + "b7ad9b9236eb92c85ca01aed6f883684": 1771, + "c658f8d98f337d86e23d313d0dcf55e1": 1771, + "d155ac672c30a0fccc30c840214cc27b": 1771, + "e5dbae32202441bf2f52be6924598d7d": 1771, + "05497e9c103519a1a542058ba40331bc": 1772, + "38915a0f29b6d4da9a3a3decb1378fd0": 1772, + "799e73f222351393dc3ee4eeb57447f7": 1772, + "7de9c960328015874a4ce4a1e6136d46": 1772, + "9ace00a705c3adeb041398bf9706e386": 1772, + "d92c14ef6254772c3de34c0947768dd6": 1772, + "f183ca989844c661ce5ac58292efac81": 1772, + "b42fba1197364bab5712d1dea3cd8023": 1774, + "eb15f4501bfca4b391ca0d4f0b36d670": 1774, + "2d16b9c0a3304225ede969461d9554ca": 1775, + "f8827c14d1d0c489a8168a65aa9a19c5": 1775, + "9e727f762feebe4949c91d29fc5e19fa": 1776, + "b167c3d23b3bd2f0759e5901d6ec7ebb": 1776, + "e01efa8b5a543049b87a024211515916": 1776, + "402f24161ebd8899d07474f6d887969b": 1777, + "71a8fdb0f17c36fab3655ab3783b3420": 1777, + "8b8dfb85e94a392fd36fd190ae93a528": 1777, + "b764dcf61b2b9b3bedb4a3e1bf0ebfe7": 1777, + "c7773fe1ba7144be2fd4806d98ee5053": 1777, + "b75b95b9eb8325ae18a84123621c08b2": 1779, + "ca0cc2cafaeeaa394a1a6d8093da7235": 1779, + "1190c4c6a8ad43a1030d9a423a0ed562": 1781, + "2a9e90b76233cfd148fed0e8eb2ebcdc": 1781, + "5ffb06dda41473bf4f72389e8e4b8c18": 1781, + "6bf1f13095cdbe84478223376090cc73": 1781, + "7b1016f649a7f21e6c27f3f69904218d": 1783, + "bbe75360077ed023692be1f8533b6d13": 1783, + "4b01df8b6a653cc46112b6806acff930": 1784, + "5ed2f332b4fea928a62502a49f2d906a": 1784, + "c07bc2117c89fbc2d3e8b8d758914f28": 1784, + "d3403111af29e991400dceaab2f4e1c2": 1784, + "1dff3b96b18bfb635b66c428ae7880f4": 1787, + "3c1a907891b1c7015a52b207ec7b53df": 1787, + "84ee5fd666eadccafab5b2fdfd522dce": 1787, + "edd9f8247e5761963e3eb3fa27fb7507": 1787, + "fa7e76dfaa627528931f9a9804e35d35": 1787, + "16e883f7cb210a48f6632225089df9c7": 1794, + "5106e31a7ca19b19bb60e00ce0121fe8": 1794, + "716ecb8f3af4acd9ab3b6838b1e97a81": 1794, + "cba7adf07ebd00cf95d8f09cc23f5371": 1794, + "3da653f3d141ec1fb0cccbbd9461309a": 1795, + "7f5b89eaf076618cff6bb3132bff6d11": 1795, + "10efb60b347ba59d0003fa35f076dd49": 1798, + "37753f20ceeac389473f4bb5426966a1": 1798, + "731d4fd3aaa69131205bafaea75e9cd1": 1798, + "e6b128e9cfac2560652b993d45114163": 1798, + "094c4bd4016b6bec13a37e77580fa31b": 1800, + "99bfd6d0ff53d78e5126d274a0605d30": 1800, + "209c53ce857e3977637b7b09c6855322": 1802, + "2b0548c776c304c5bba5117a21a4bbd1": 1802, + "725026e6566fe3996e11811fadc0f7d0": 1802, + "7928f21cefba8aa8185ffcf4912696f1": 1802, + "e6b0dd86de08a0ccf168c83e91525914": 1802, + "17011178435d247aba5039141674ec1c": 1803, + "4ca2e97381b3c599298ca76207ba9e59": 1803, + "529a088ba333035a111424329ccf4abd": 1803, + "6e7b9e832408b595a5344ecc4e13d3b0": 1803, + "878bbaf8eccfa867b6dd1502ecdbb707": 1803, + "92341c39f15405b36b1b70b2f7f876ba": 1803, + "9f4bcf0e3e2f67d0e1bd21f22452df34": 1803, + "b8ebecb01b219384ba0a97a210e40ddc": 1803, + "c177b074617ca79f3f174134134327f2": 1803, + "caea65d1f251ff394e8670b60b6c7827": 1803, + "ccf2a598b23c0aaa43949c87192e50d7": 1803, + "eaa13aaccf8a1475aa9ce75fed61933d": 1803, + "011e234c598b282a34a378aa01f871f5": 1805, + "62789564051c6c61edcd4ba237a6a4a2": 1805, + "74220ef478a2e85bed04380ee93ed2f8": 1805, + "89dc61628d31e48497cf2eb72bde44d8": 1805, + "bbc0c856770cb19ecaccd9ce1ccf059b": 1805, + "cee9fdd3d7595f102b74b36fd1de396d": 1805, + "fc6b21f908a817a51740e4d07045f80f": 1805, + "b1e431ac801a23316cb6209f9b77ad6f": 1806, + "bb88f06b99b0598e5d4e9738511d981a": 1806, + "34d59639a79fa576e2e7d86593261fe4": 1808, + "f02f0533e69b981a810b07254764081d": 1808, + "81360f1a8e8ca05b20bf013cfd333771": 1810, + "dcb0189c89afd03faa55fcac485d4029": 1810, + "3a6a9a20a017880eebb71d3f9c93d919": 1812, + "5bd5aeac6a4f3023afd9516d4c8ed050": 1812, + "dcf61928cc6767048925c9fbc48a90de": 1812, + "e196b0d035848e66cc512f390a34ad04": 1812, + "e1b352acdb216f3525be8d835b5a83bf": 1812, + "014259dad5451cbedc750a137a386d94": 1813, + "0256e02693147fad9383190528ff0576": 1813, + "6aed8e56765891b9d4c5bbb766150ddd": 1813, + "70648d346f902e599f943963667f65ce": 1813, + "c92a5b1ca4e496413a27cc91c14ecaad": 1813, + "dd73d9fb62d001aea44ff20f4535fe2e": 1813, + "fbe29379e4c70c9697477ae429347214": 1813, + "05a73f1befd3b8ba211adbeba8d9e20d": 1815, + "508b801098af3f616a639db8c12ee78a": 1815, + "f86a3ad9522f908996c1a9b9b0c51089": 1815, + "ae5a1d9c887ec6c9dcd9225d11bb7dbd": 1816, + "d969b9784155ba24919dbf21568db82e": 1816, + "267e1882db5c6523d6d49cbb5edd470d": 1818, + "f417706736b1ec1614efaf22993c22ca": 1818, + "560d31ce9c7ef5f905e26351df48ee62": 1819, + "b536636a6796298065f8df91eefaa9fd": 1819, + "8ef1b34b31f5ae79e3a62ceaebcf80b5": 1820, + "acd1b9c97b312fe4ea6422a525c72dab": 1820, + "d90680ae48bb41c765f6f64747072b19": 1820, + "e383c672a10287aeacbdf45990376d34": 1820, + "3febc4c455a12db015c5b79d7b0e6a8f": 1822, + "b19cad871c9dfccf40f3e5feb51d5ff5": 1822, + "c6e0793a6053685e2af1934588268bae": 1822, + "5d50d8f9cf3d6d311a2ac7f010d83be0": 1823, + "81706abdae6d1d11b0c8986fc4383ec0": 1823, + "03b39f1259264a9d7f04bfa46e8d5cf2": 1824, + "0769fefbf990b21f529ccdca2b60a7d1": 1824, + "a581833aa015394de219f52888039812": 1824, + "b51085d9ab4267746a9ed6fc609a98d0": 1824, + "bd2ab7c86788cfe3ce1cbd5722d5eeff": 1824, + "d181a2b7d24fedb22f259f44eebca4a4": 1824, + "d25418d0ff888e9ac6c619ff9a063911": 1824, + "d67ee6a0a7af959c417ce894470a49cb": 1824, + "e3d9813187f0bc860d0be506fcf3b4cb": 1824, + "ebe4e0b2bb6194bb3ced8b23b38c896b": 1824, + "f4ec5f6d9e235e76466e1041a9881171": 1824, + "fad7ce18aafd8da059b19c28e3376569": 1824, + "c4fa0cb631092f3830460cba16d81599": 1826, + "fd526b87d79dfbb9be11d9cf9dd979c4": 1826, + "44980a937c66d787182405f0642cae6e": 1829, + "677983dc1df5304bb897f41c858f42b2": 1829, + "9de64e4c39deafcdd2c186b6327e4f61": 1829, + "ab9ad69f29f812cb520dd49b39805491": 1829, + "abe7716351f7b3d2940f98c98d8efa64": 1829, + "b5f2534cea04ca729c9302af9236f760": 1829, + "db45eb9413964295adb8d1da961807cc": 1829, + "ecefabe54f471d87cf6efe2ff3183241": 1829, + "f2df55a4621da5aeb7c089a2662497e4": 1829, + "f349808b9225a72788fbe00c5218460e": 1829, + "3158f8f7fe7ba27eaae0c93c59916c58": 1830, + "57ec3379ec21147239b331e0ce9a1b1b": 1830, + "b7b3bb47d15de9d4a26eb431ee399ae2": 1830, + "c8f37bd24fbed6395eb834daecbdcf50": 1830, + "3dd618bc8c55ac052bd956d68ca112f5": 1832, + "45182c822f8b2977ead7b81e76f2fea8": 1832, + "8fecb44ca7384f6a74a7edd98822e02e": 1832, + "bd7da02aa57f292cfd3902f6a5b73a59": 1832, + "dd820c5f3123271c3b791a5223598807": 1832, + "0c2871619f49701e398135e32e5b2381": 1834, + "ab9bb7f5e79ef096311110d0178de36c": 1834, + "0afb69ecca89adbb0e648d0df7eba4f7": 1835, + "25cec1f9c4b23b2f8fba2552be05301d": 1835, + "afa6d274a86d33cfb519515061704af3": 1837, + "423854f5f4cfa9bdd429e1313eec9bdd": 1838, + "4ce8318596fecd91bf04670c9989507f": 1838, + "9b3d8396010debfde0b0bfdea3993691": 1838, + "b18cecb5eb529d82ea619d1b7594c457": 1838, + "be4670792b17c74eecf3a0e7f37ecfe2": 1838, + "e73a84f4a516be49343299b41c818bdf": 1838, + "e7f675ec26c5b3c74e2a65fc45b837c1": 1838, + "eb996860b55621352ee0fad6fc828687": 1838, + "eff2d999a9a379f1ab52037188ac3404": 1838, + "6f78d10c199ccae30654f7e1c6534527": 1840, + "72dd9077509c00c297dbae88419af323": 1840, + "7bc993229420fbbcce9747e90a4d1651": 1840, + "7f8bd1e9672f46a4963021db30eef623": 1840, + "c2cab313cc367d53c83149ba0df77cb1": 1840, + "2aba26a0dc86e26e83248f83fb9d96e0": 1842, + "7c355892e780655bb1a3dc0f9b07ee10": 1842, + "fe0d9e38b3439d1e2fcf0ac2399a5347": 1842, + "33427756c0c58fe934f13fc408ac7ec2": 1843, + "ac30d59eab5e2240eb5c6c53f41ec49b": 1843, + "ccae61ddcff32cf5ae32d2ce6110243b": 1843, + "e04c6dc190b504517daf36c4c8477459": 1843, + "e8be79b30426822b2e0b32d26b9ad020": 1843, + "1a465e01bef7f5a573eee56f4ea9912f": 1846, + "b7f24e66a7df5d102023977ab887d97e": 1846, + "05a599d5e76c5820f6c18d10e67448e5": 1847, + "431633583970c51c3d378f2399a46ec9": 1847, + "6e1f4ba07536633b170fe32e65b6dd5a": 1848, + "8fe1db994026ede8c0993b6f4b9af408": 1851, + "6c16dd842c54dd18764753da42ef3706": 1852, + "7f8cfaabad4d624ab348807ec84da4d3": 1852, + "49bb27067262b4d5a74e14d806981825": 1855, + "9903087102a9bf59b0e33932d1098548": 1855, + "1bd9b3d68634724d141ecbc3191bcae9": 1857, + "23f623ed4e62ef21f856f47476a88298": 1857, + "260828108cb94fca530b5384239c0291": 1857, + "2ec92e60e033b4d8aa5caa6b1f7838b5": 1857, + "3bddf5bf1fd482744dbaef735e7a4d02": 1857, + "63a2bf787d08cd72886091e630d72582": 1857, + "822b3764c5ae8df44efb73e78a7073f0": 1857, + "86a30345485e2061e7f62a437405d1ae": 1857, + "a0a3ad20b7dc3384b7e9fe55fdad7131": 1857, + "abcc124141622eebdcccdfbe79aecedc": 1857, + "add5cf0dada508dfaee09a368547faa8": 1857, + "b5b5aec4b4c0a1b1de041f4982564e5d": 1857, + "b98b0789e9a88b55ef8be54d613f611c": 1857, + "f277a19ea035eb2ddb9343afd235dfa4": 1857, + "12538aaec4f1b1bf48615afd4e5104a1": 1858, + "3e359dbe7f3dec78ce0e6573fc1e2923": 1858, + "485f01733c2d1d9b3a31ee97097e71d4": 1858, + "8e668e161d7393d8c850429d87aa4f2a": 1858, + "908f1665972b93aa4477c55507c3b0dd": 1858, + "951406812b24e0edb4f8be976e06ee0f": 1858, + "f0378e57ee1c27ba6499ceecac2b6d42": 1858, + "02532f20b31d33fc9f055f764431bd5b": 1859, + "07c1b92ae9b78f209075a8cc6d3eebf0": 1859, + "0b5bf20cf9f1472c4db821e4670ceeba": 1859, + "0f02199282cb9f546f9e7251872e445b": 1859, + "278373248ddef20a2a89a02e29181a6f": 1859, + "2e1f85e394f16a93528250d64b6b9490": 1859, + "39653d18633b5cc8afcbfcdfc6ffbb84": 1859, + "60e2600fa999530ea5b3964d1048e143": 1859, + "6ac9aa62b9662df811d61b4f7566b132": 1859, + "878254ce70f1e47b8cc9e750440af167": 1859, + "9cb73b71ff6fd0c09f8e1e848e06422c": 1859, + "b0430c155e39e89cbba8f3d143027387": 1859, + "c45493db311042ff311c714028c7dc66": 1859, + "d6c91d4619b6836bfc7ca93a93178436": 1859, + "ef16d191e4c731b2f8a763b362347063": 1859, + "fb321fbde64d15463fd106137ff9ec79": 1859, + "17528929488d6c00504b2975546f7ace": 1861, + "193babfd5d74d57a2fcee6c6188aa0f0": 1861, + "32e41cf67a9ca01cee0d3f0db5a0019e": 1861, + "525d0ecd31d5a3427227b2c79c1201bd": 1861, + "8368afd71c486050f8365f44a6f82ece": 1861, + "a5e650b5e443e801a6b1188e5aaba841": 1861, + "b72f944f234d8a6826fdb92d9c35f244": 1861, + "e253a8046a93687a1737b0a92c09299e": 1861, + "e976c80093e5dcb9f83b7b2b3b12eb27": 1861, + "1b33aa2d2abda7aeab09c98f7d7f19f4": 1863, + "3fecae014f8b2841915ae882aea42b1a": 1863, + "20bd86ca2194f3ff2745891afec72f33": 1864, + "37880483d55d77a59082125e887e9486": 1864, + "c94aa18daf65bab9142ef33c1e626b33": 1864, + "e0217323f8cfdf68addf46b66afecf88": 1864, + "18c676ea6195c865b892f8e03ef589e2": 1865, + "3575eb3971ba67970021d94185316416": 1868, + "7287329903b5fa282432a75368cf1004": 1868, + "ef4f716b07b37993cd8f3372a4ed8e0a": 1868, + "f2faf0c53624f486dff1e33ad8d595b5": 1868, + "4c5afae9826997232c735fa865b77c10": 1870, + "7eb2396381a1effe2e1b3af472bf015e": 1870, + "1211006d56182d23565b983481ba4b62": 1871, + "2becf8af763509ccfc9f515dbb503433": 1871, + "32a3a3bed9b32f5ec2a0070fd522f4cc": 1871, + "40d5029b7d1098d04fa1f2f22bb304a0": 1871, + "52085be858455b29d09474e16bca90c2": 1871, + "665f76ef8e56ba31febef94ac3171547": 1871, + "8d61573cfdd5f99c4ea184645ed8360d": 1871, + "b13b88ba50653822b399c8b8a1c40496": 1871, + "e11f2162ecd36bd0717834ae6ce8caae": 1871, + "f18810c4a52386860ad76add0b65ace4": 1871, + "f9fb9f00c9e56862d39fdb5350f5cfb2": 1871, + "cbfa1635927ddc38e1be3ff3e166931d": 1873, + "ed0057504fe693d71a3e8a1a275ff7a2": 1873, + "15feec5556048b0f148cb43ef5756f64": 1877, + "24bb73e4ce91df87b7152759dcca19d0": 1877, + "2f881b682e3e75084081f2b0d179522c": 1877, + "35f89365209e77450855cfaa047ca3d7": 1877, + "4380e5b9edab63b677a6dfa11a39ec71": 1877, + "45a2d24a4d7f65c7504123709083237d": 1877, + "5e6d3386b1d98975de98d2f10538d5d8": 1877, + "7653def5dddbf427e35a2411b1692dab": 1877, + "766925a0be2d7f68ba3d7d78134d3289": 1877, + "ad809323fe92d0e083bf77ccecae462e": 1877, + "b1de9d1cdd647fd1bacc5a3aeb1b947d": 1877, + "bfab5f738adb919f1ba389f5c38deb67": 1877, + "6344e74ac60ca77acc14797c011657a6": 1878, + "6ff5c5da9f7ff2600e18f0f168cd8389": 1878, + "0e1176f7a0a84bed28f56edd34fcee77": 1880, + "46083d271eb2c429ebf2a838f4d250a6": 1880, + "73cb316a8e36ef81d73fbef1c1df8a09": 1880, + "7a14ee33709175e0c62007f218dbb7db": 1880, + "7cc63e45bf43ef396e8b1ea5aeb52e17": 1880, + "170adb71cbbaa754008345d623eb804c": 1881, + "ae32ca8659affeb97c117bb220a0619d": 1881, + "c910907266b762500c7993a7cce2c63d": 1881, + "dc10c341b2c856d3cccde9b89e6c3eee": 1881, + "fe361ff01ceb132fc7a71783a950f3ca": 1881, + "059e85d2a5faa58d850185535c9137d4": 1882, + "329c1026063bcd496714deabe091af91": 1882, + "641b3725073e5ea4afb0fb0939cae3be": 1882, + "81fe0779bb35a869f4504d02d8074c97": 1882, + "a457557a1adc8aeac6131532fe9c8fc1": 1882, + "c243a93847466bca58c6a7c80c595968": 1882, + "1a305be0ef7295d57a13ee9d910d14e4": 1883, + "4d071cae24466381b0f123317c2955e9": 1883, + "94411c05d00adc7f89b440fe5af4e87f": 1883, + "ada30ca82e60d9e6f151a6a1a5429371": 1883, + "d08738f47c22dd84fa6e633eb517c981": 1883, + "108954931a684d040a2297c43c0c79b7": 1885, + "125197e435eee7aca5ce621d72d2388f": 1885, + "263ee1016425f67809d2e99d49e62aac": 1885, + "26fdf8379106900b74333404973d044f": 1885, + "4aee9ad0ab740224fa4b2a624049d596": 1885, + "718a71827ea8fbf8afb2a7f879a0770c": 1885, + "1301601a5dd8685c7c0bc753741c0a60": 1886, + "34bb7924c53d11aa3b5862359920334d": 1886, + "8b4d4c8e6536b5c15c06a7000973c109": 1886, + "c153e769a114e684960533db620f6346": 1886, + "ee517e870585e3610f5416f70a9d4607": 1886, + "cfe4582eea2204633c0cb4f0f11d84b8": 1887, + "4cf403f94afb8fa68b9f7321564b3a16": 1889, + "9bc421bab7047c8aea102b309709109e": 1889, + "ed16df263cce98e723a97b353415d2b5": 1889, + "db9e5037a69c3f8e7c0d15b4c77b4400": 1890, + "9c90901268702b79510b4f742ff9d4c6": 1896, + "d2f59e542a3700ed0cda6dfd0074877a": 1896, + "a4be48d5fb2a27ab0c75c43b83d13cdf": 1899, + "17e658600e2f7fda0a2b4b7efa28b2c7": 1900, + "200c6be5db810895683cacd19b604115": 1900, + "84052a9dd98fe0990e3e99105efecc36": 1900, + "d6428ba10d50305e2c4250a489eed7a0": 1900, + "fa0688fd15c7851878997b0c61b109e9": 1900, + "5a02dd1790b594abded1702a3354bee3": 1903, + "794a862fb312b6c30eb2b326dcabddf9": 1904, + "7ea24bf75fd628a65dc7344de28893e3": 1904, + "b8792cbb03eaa25f9c4ee84d019b0167": 1904, + "2301abaeec1b305f5956e3d7630d943b": 1906, + "d2208aea1c0186403c2a7476762b026d": 1906, + "c7bfecb24884ca7d2599b8de7f39ea68": 1908, + "e2f9958f0f9cdef551c5328fad855d33": 1908, + "4706d5c09acab9b0fe009ccaf4b8bfb6": 1912, + "4a6f495b8138edfe6d91c5fab01981f2": 1913, + "6f1c1a5a92268747be143a3b1cd656ce": 1913, + "7b77b9aaa40d02388609f5cc718a5528": 1913, + "5007642907310ff41bc67ce7f0189a9a": 1914, + "52051021fd095b1383ea0a64da90d884": 1914, + "6fd6286d2566b2855a23bdec4cf2ce1c": 1914, + "7823764734e75e26f6e7d4f7fa74c344": 1914, + "d979e2cf3f5bdbe7e6998e8af1c2b122": 1914, + "7492ea7116258971c1c71c95ebe0d6ca": 1915, + "ee56cb6325a38b4c4269049524e96d1f": 1915, + "24d936b8d2281518258f623a3e10f5f1": 1920, + "0fd3f8063b4985940166a261473a6e3b": 1921, + "2df394988814a75f9a36f5dedb5137dd": 1921, + "3728ba371ff50cc9d76b9eeee162e70c": 1921, + "58aec10f7b8754ee4c09ad78f5e09628": 1921, + "89eed34ca4a758a5e6c1187907638957": 1921, + "bf8c600d677d1885e0b3434305ccfc1b": 1921, + "d25ea57f0dfa04fe0916d6ad74274acf": 1921, + "d90de2e0ec62f16bf1bf7db8a4802fe2": 1921, + "ef9502bbc4b7698603aa8410e3dccf1c": 1921, + "65afb527e85f2fcd054b1fd5cb529e10": 1925, + "752b211a1c94b17583627d3322ee456b": 1925, + "ab43d974b389f92e2f764c93c92a8aaa": 1925, + "fc6a9ae75920ed499ff69587cd091ca5": 1925, + "0b423bf38720009871742388b9414878": 1929, + "3a8e7595277fbecaacea7731817046c6": 1929, + "9b06a7a8fcc6ac399f397e962a947c96": 1929, + "0240c05847a7dbe19068779ad1512ee9": 1932, + "1e24273e31739910afe602515fb22ad8": 1933, + "7bee127000775816d085d547e8679bc6": 1933, + "8516024c8a74b01961ab15d7c4e6ac87": 1933, + "da992a40c38b770085c68ee3f8fcef8a": 1933, + "0b3e17f4dd067a9823d2956d884dfcc7": 1940, + "34320f1e332e3a8bbebd1a904597bfa9": 1940, + "3cc5864cd1aca9a3a6874b8cfb3fbc0a": 1940, + "507d96e2a9a348834862e1508b014850": 1940, + "7cccc9ad7b1097143435fcc6afcdf157": 1940, + "96639d25a41e7563e4b6048984c796c3": 1940, + "d0bdc8e019093bed9c4b928abab07d06": 1940, + "0289c0aae7e3812c0989ae30b0067c85": 1944, + "5f8437b3e2bc25a84d7d520c99c6a599": 1944, + "6bdfae452ac51c8f7118b5789d1fb1b7": 1944, + "b2e9418c80a3561cb182bfcd13174edb": 1944, + "312a1582d43f307cb952513c3093c278": 1946, + "f7aad5e838cb0c9e60f7362e08ba0e51": 1946, + "5553e7b37773888048a1ad080b64c61f": 1947, + "f3595d596860683d9680ff3fc071da02": 1947, + "26dd3339b13f4ea9821aa7f914630494": 1949, + "c510177d6bde87f2aa00dfcc3de9f825": 1949, + "572f83432784a4bc457a69c4976966dc": 1952, + "a82b1190df9106d4f544f90bb6e2a962": 1952, + "baf62f8e6eaae46212a14501877f3cad": 1953, + "c4db8d75ddef199c2497a9b81d48f1ab": 1953, + "e38ca930c8cd0495437aa0ee1af53108": 1955, + "4d9a6662fd870a684b327046d0f13c60": 1956, + "5f3728ec63727c3034114f4af089b5e8": 1956, + "b8d352880e586a779b142d340e17c5e9": 1957, + "f386de9c5ce183827ae443038748971b": 1957, + "429045de0fcfbd8ceb896011be350cf7": 1958, + "55fad3341d6ee8c5216e30b98e1d923e": 1958, + "7b8b76e5688c7d21d40fe3692861ce1e": 1958, + "8207c57e1b700cf4c499dcfca9cc4278": 1958, + "f97da510b23d2778fdb9621ff0d61001": 1958, + "07dd9c8fdeeceac4598226f7ef6e6afc": 1959, + "23b0743d239ae2e3c1f74c57b80e1060": 1959, + "c381ae61ca0f76cbc68f9f6b71afe140": 1959, + "d95bd864cffa3cdb5dbe1c450e799506": 1959, + "3d675e5adfa038f68598b9f4d1a37a80": 1961, + "48c290144b192c3bbbba1fcb4bf9346b": 1961, + "4fdc7aaeca657f99ad7cd99fecf80aec": 1961, + "b4180d139a98ed939e67ab0aae955ca2": 1961, + "c7a7be2231e861b0d142ac67f987cc0c": 1961, + "d05e3af44d6f38a2be83723ad23ff2c7": 1961, + "e84ef96a2fb2891dc9f4c88982b12742": 1961, + "eef165c5b938f907f155de3846c7da77": 1961, + "01e5e40688bdd0e4073f366d4eca9e40": 1962, + "071dca5b3448225edb3497fb5c765b67": 1962, + "0ba0ffbf14c0bf78b9eaca51ba9581df": 1962, + "0d5cbf4cf0987ce1167c23b7ee28b43e": 1962, + "bf40369da6fefb904a087699d2283218": 1962, + "c432b613606c41bafa4a09470d75e75f": 1962, + "e07c072a669e0952e58f8cca20026a3e": 1962, + "e7c82ed7b9e385811ec63babe6f385cc": 1962, + "4808d7cf5d9f20304bde285a7ebf446e": 1965, + "79130862501091b3923e71af3cfc3032": 1965, + "fb0110dc807037d7bc7846e9ec66531a": 1965, + "52e5a421a5d3b922612162fcb169bebd": 1968, + "a22b4ba12212276f4cc2ba735c34bcd3": 1968, + "b8f66b559399e8531b9d651080583e33": 1968, + "b9a4b8023cc2c91c911cbbd343ef4732": 1968, + "d5c3481edf3d8356b28a4d92aedfa969": 1968, + "d77868b4c844c057931aaeaa1d461bac": 1968, + "fa06939555ba9fc56039e1b7a171eb07": 1968, + "a6eba31c39c78d30f34ac452a5904f41": 1969, + "e64cbbdfa61bd37474a95b0da77750e7": 1969, + "44f5b716cf5ee0164c151106d0e68dce": 1970, + "92632ed2bc7e29f4b30993d72359710b": 1971, + "ac55003f1de6b36204f2d0e53d6b8058": 1971, + "06b338db2f3cb88b2161506ef360ab28": 1973, + "2b8b10ffc8d37e56150aa8b28a72f285": 1973, + "96250e185ff5b8c596a210803484322e": 1973, + "d84f9d136bb5d9f1cc651e29407f61fd": 1973, + "658f9a3265128bbd05ddd801c38f1e4f": 1977, + "70d6b9da3194843b542ddc206b9554d6": 1977, + "7dd1e562d4b9691ee2162208bcba6e86": 1977, + "d8c378942f6a52c9d9ba272797a884ef": 1977, + "db9a2c5492bd793d7091cd656c7f28cd": 1977, + "20962b69905fda108245df6c1825f2d2": 1978, + "9e2ce130e8c4eab1d34df021751be407": 1978, + "b7a2a168f93b7e32bd2f5ac02b16c56a": 1978, + "4d1a1fd3802749ff657a780fa7cdfb17": 1980, + "e8db29ba3ddabbcb5361c65ad0f86510": 1980, + "25496df74d7e25bb0daff1adcc40cadc": 1982, + "05ab30ec3a15cdc33dd8e3e6cff4d26c": 1984, + "54a19f2911aa51dd1b084107d0878bd0": 1984, + "042febd56a451acbc44526e79b15a99a": 1985, + "154b53a8d58ed2e7a37d705000d2d7cf": 1985, + "7ce2e88b2a833206df894fe54cc07fe5": 1985, + "b1eddbb71994db079aa1dc16c05e7de5": 1985, + "12fce6abd0531a9f9a4c2bfbcca124fb": 1988, + "09f9031593acd27681562ca016bfd286": 1989, + "0baf0355d043a62b8fbc3ba057cf265d": 1989, + "28a4aa114a869fd6d03d61f2520e67b8": 1989, + "435abf7f8b2a1b276e662297fca1bc13": 1989, + "44d7bf041f64841dd7c1b1e270ea67d8": 1989, + "455eb1a186414fe1961bc794d3ea2ec5": 1989, + "8782ba5a0b02aceb272757667af1066a": 1989, + "cb5dc56adcb2983cab8e9bd07c78796a": 1989, + "f63c9680c2c55ceb6d8f795cf2aad74e": 1989, + "5b8200ee6666b13c397eda533ea30f50": 1991, + "6e44871b462ce90c99d9a9a8fff637a8": 1991, + "084fa5f6db91d32c7fbca3fa0a594ede": 1994, + "1261a0c28b4441d5711db49fed4f7792": 1994, + "25a299edce8f83d7a91afbfbb8929a87": 1994, + "36342b74e49d5f3164b8bac1830f9ec1": 1994, + "5ad5d97414859c81d062a9ec8d0838c4": 1994, + "62c4d65bc93fb7961aae781db2d2e2f9": 1994, + "a64dcbaf95980145d2351850be735461": 1994, + "b1046a4efbb22aae7aa82dda552d8efe": 1994, + "c246b6b49525f7c3614fe84d573c4a34": 1994, + "c2ef21b3f5419f74d4e8cad695dadb10": 1994, + "ccd25b4fa7acddef38d75212ae0e5432": 1994, + "f9889095f91b3a618854732c57d1f5c8": 1994, + "11bde2e78a4c4f9e65899b4ada1b8667": 1995, + "41303108e5ce494c40c3cb6421a2971d": 1995, + "4575d409eb7810f7517c5db29fe692ea": 1995, + "48d7eaf355f82e80439b6c7c6ebb52ca": 1995, + "4cbc42f7959ae8a1a8de6e73a94149bc": 1995, + "527beb3c576275d919eeedf9c6dca332": 1995, + "55b7111567c1709e849c574078699577": 1995, + "57715a7f335801da27e6b3d86b0647a3": 1995, + "7904b3e88add08c769b3c27dde7128c3": 1995, + "8bb1f20b4310e0264564d5fc2355f0c4": 1995, + "92e7ead29c656a21390cf51b3859f089": 1995, + "9f7027374cc40f8b544161fe24d1a4bb": 1995, + "a0ca2d9d518c1ff2ba2a5d73ee758f8c": 1995, + "a13e6b58c3985df6a556f06debd660ea": 1995, + "b76f978ad3076ea67f2b0aca7399c9e9": 1995, + "bb8ab5b5bfd8da09d1872ca684001f4d": 1995, + "c15d6524b60397adfe553b8ea66c4eee": 1995, + "c998f1760dd0a40b90a26e947c8ad140": 1995, + "cc9dbaaa2c893ef4a76ef32d6fe540df": 1995, + "ce13052b0908662d2ac7e3ef7a6ee6fe": 1995, + "daa787c4e6c8222425b214b3e043ddb7": 1995, + "dbe84d5f5b6e5221e7ddc4841d12cf01": 1995, + "e29f3b652e49c3e8ee998dbfc4e89398": 1995, + "e45e96e0ba526491556c786233198492": 1995, + "e9b5a7486f0f63ed27a1535ebb878c77": 1995, + "17c68997fbe55f42a8db4581d82f0949": 1996, + "453cfe56359866d503f5eabcdf149e27": 1996, + "92c5256d35e3c10295a9f0e95685eb47": 1996, + "d3b0887047bfc2e2a6e352495606b0f6": 1996, + "d768a974f2bd07aa08635f66f2b6c376": 1996, + "1f7ffd256654306fb3dc303867e3f9c0": 2002, + "2f04c9315bae74c5a2748b2fec3dcb95": 2002, + "42ebc8410b2bd136d8ec349cc491c906": 2002, + "acbd5bc743b5220cde52060a89f17e49": 2002, + "c4e63defa2fddadf54e1f3ae82f07faf": 2002, + "d1a2eb1c5f6cb93773360474b4492d75": 2002, + "9f97ce5192b42eca6b22180a4e23718a": 2004, + "f820b4cea5dd16e6ed90b8d2522ad1f4": 2004, + "334936fce3f4d7d0e028bc4589e2b81b": 2006, + "4a9f9a808d6d7127a2dd4caa5e6aebb6": 2006, + "e5b6dfb8cb140b8d46319c93dff752ef": 2006, + "f2c370f2437383dfb136589787799ab4": 2006, + "ffa2594c64831e358d49feb27cf3004b": 2006, + "245f4cc0cd19293890d3bc17f15e259e": 2008, + "fa57750ad33815e99c40986f26fc697e": 2008, + "2da79e6e5f040fde7f0f9c1d3724b37b": 2009, + "4c40f7bf4db43052865ed055b6f4765e": 2009, + "504f139efea6f7f2c214feccc5227025": 2009, + "903d070528aa3f3e25ff95cbd3b9aad8": 2009, + "9e03fb6f8f11de1dc894428b01bec989": 2009, + "b1a918fd10db74b1b1db5b60b30611f8": 2009, + "ced3c31404b2f2da3c4c6e6bb090e752": 2009, + "fadfb64e52d3430b2e2ab28bdb19c982": 2009, + "fb8103326c101d798b0b5bd2eb9be4b1": 2009, + "0630bda1224daf02883f124cfcd54862": 2016, + "1a18853b8acd338915cda7e6c59454bb": 2016, + "2b4323fa60e37b9d3ea6c4cd7ae86ca2": 2016, + "2dddc2cae0a7fe890235aef72a9a86ae": 2016, + "5cef928463d637c7e6eb5ba2c6ee49d4": 2016, + "6836588f709ced5c56b963c73325e839": 2016, + "72330bb04275577fb02580a7b0a20f60": 2016, + "8f3a5e02d1b424dbe2393f889215e76b": 2016, + "90c0c424fa240d8fc7405cfc31294234": 2016, + "9fc9b2ca5c28f4124f6a6f863591d450": 2016, + "be6d60e4f0bf188485d2db3f13ccaccb": 2016, + "c80868fc7c0d16c2ed76186e1783ece2": 2016, + "cb32bcb6a9c64c2ba04ffc1822ab59f8": 2016, + "d66cb223977ae79f75ec8ad82e1a6928": 2016, + "d6e6c90a94ffe22d40525137891fd02d": 2016, + "e0b4a09a7fd6867928606ae7f12f2274": 2016, + "32a5e44b320ae588f560196e49ba13c6": 2017, + "492a13fd1cb8e4333bc249f223351d5e": 2017, + "ac3a11b0f4efec95ff0176899717b25f": 2017, + "b5463fb85dc2e05ecdcd0124459e9e2e": 2017, + "bdb291c46ae636734f040e46fd71826f": 2017, + "cbb2c477a37b28517e330d1c562049f8": 2017, + "ebbbe9c3d80230a9b76ea37eb4a76ab6": 2017, + "44445b7f581f1bc30045196ced9db7f4": 2018, + "628b06b94808f1bd4aaf17dc055c0dda": 2018, + "8892bdb5b31073b16d4d4c766cb52a1e": 2018, + "c73bccb30a6efe8cf8c6bbcf3f6309ed": 2018, + "fe78b86e0578748b3671c3aeb4ad3d6b": 2018, + "040215dacbae25afa33785a96102420b": 2022, + "339d790c0c4d7b3e2bf2931b435bec02": 2022, + "342ac4a48c978ef5509dfd754c1ef715": 2022, + "5b0e571558c8c796937b96af469561c6": 2022, + "6d71e52752f98c19699cdc7c4681b8ef": 2022, + "721352d1fbaf64c00b4b23705bf05102": 2022, + "8d5e78b0e8203cfb19b29526c130f455": 2022, + "967b24c67adc6e8aeb3e7699a48f89d3": 2022, + "b90bf4df52d42fb3e429189042fc3157": 2022, + "f13ac8b7fe5ec4aea813a1a876130f15": 2022, + "117c38986584c88263414b7abb98667c": 2023, + "7537901be909c877ab7d1abedae89d94": 2023, + "940de0f2258763abd113924e4cc02e5c": 2023, + "e5d4beec2f2d0ff6e984ba8b347b1429": 2023, + "3b697df25030ec1375d26c6d3985eee3": 2024, + "3ecc5bcdd805d5a3bdf69d9976c77493": 2024, + "491a0ae9248bb18e646fb38111a8e947": 2024, + "c37ef39ead3552a99463ebd34180d510": 2024, + "8b179585fd5d6d7f4ecaa9196381a46d": 2028, + "c6809fa829814a356446ce0b36f60ebf": 2028, + "2ed315e3926884ca82490f5b57080dec": 2031, + "854a46073bf58ba1b54a1cfb44f8a203": 2031, + "8cbd3dd522b0db059bd38cd631b8991b": 2031, + "e8cbd04ab20332d0aef74c71c62899cb": 2031, + "ec0db0f12d557ec105b4a3c3fc93f3ef": 2031, + "02fe27f09829181bf228f80e7a2dbd23": 2032, + "07424592f0c465352b111c41fbe5c1ea": 2032, + "b1170dcab773c74cadc45f92b40adaf2": 2032, + "f570e47b8a9f205add0581bec6744e5f": 2032, + "dd0698c0d5511fc843c54d4c7509d4cd": 2034, + "f104c2121390a87ff619dc30569fe703": 2034, + "198f0a0802cc9a557041bf272cd2e95d": 2035, + "2fdf9f77d74cad0f7712d9f2353f2934": 2035, + "4848331a26542bc1610b4811569ca3c3": 2035, + "6e4a88a9cd7010ad52374e37ab2e8de8": 2035, + "716dd6985bc80a3c547cc84b2c8d75e4": 2035, + "ccf11b06c2641243fb50de09299ab4cd": 2035, + "6d87b3cb41d36eba79e6e5cc3a6666f1": 2037, + "800d7860d8854f466de2067a8f019ef6": 2037, + "019214d25e5b2b340e2270bdeab5b520": 2039, + "52499a94210795df29a452a86766bb22": 2039, + "e8aaac8f5a98e8cbf9a9ec326ca5ab0d": 2039, + "fb40285e00308735c391d11e750db823": 2039, + "ebc2dd139240c6a138eb466e4d88c05d": 2040, + "046e0fc4a03afbb58fc7ed7671698d33": 2041, + "071d692835c28cc1015b53a324b0ad96": 2041, + "41b86cdb730f66b1143e61d1bf03ed11": 2041, + "4531d8445cb2a10e0e251dc72fa3a38e": 2041, + "45fc5deb9f53046324e519eef83e7798": 2041, + "86fcacf4d65b6dc0a8cc74b96b2a659c": 2041, + "bcf1986093a7eb9423e2037bacabf4e1": 2041, + "d3432833b46abd5bb585d3abfe1591d7": 2041, + "e4b41d0b5b5249a624b4fe0e75d87db3": 2041, + "24f1d88f074ee6c90ed1ccffb7cf2c55": 2044, + "36a2cff483228ff0e73f7ee1ed34cf56": 2044, + "3b0a18329c99345e62a2442a4cb102ba": 2044, + "4621bb73db9d6fa48d9edf9e806d7555": 2044, + "ae233a5ff570e664adfbba502c67488e": 2044, + "f69eb97a62155cf70f794c53a684e251": 2044, + "009ac8e03c968c28c8837c7aafef61d5": 2045, + "5a32b0af66646bb908be126363320441": 2045, + "7def939a80cb14d296da855eb40eb722": 2045, + "aa343bbf4386fe14283c46d9ef3ade84": 2045, + "6e801aa41e57c4ce982d79f8e77ea022": 2048, + "70860a6560567621ce5c645ca081d02e": 2048, + "61bb41bb32659344ad7b67073d773dca": 2050, + "a4317a080ea111c8be02ed7c23cc8977": 2050, + "90e1d4c2fb8765a0d97f08dc10522b87": 2051, + "65dd13bba2feeb90e13567be72f8795c": 2052, + "ad67461ba3228bb8f18b77d6bfea7b49": 2052, + "41d9d7f891869048803d1d896828ffee": 2056, + "4d67be4e1e7436c4c46cab0d23952dec": 2056, + "b58849a42ca5e7e980b884b2d8351900": 2056, + "410223cb922a28af012d7317eb992426": 2058, + "cb7f1463c90cdcdf5ef315c125f12fe2": 2058, + "d8b50ad0b2b79a0d36f41b6b1a03c641": 2058, + "f01c0bfc1ff57561982f4619657592f4": 2058, + "16d79fca1ea13e19a12eae72e637289b": 2060, + "7d836d9dfa536db69d929935a1e28bf3": 2060, + "d7a9363e9ea0d91f486235ca649edcee": 2060, + "f4475a0dc3fe8cc0d4c1f6df7da7e6ac": 2060, + "4994c32280eae3ee8f9d5580d1d791a2": 2061, + "7a471ac3e9f2ed9b252c0ee6c5b69f5b": 2061, + "1b76387b966a067fc0aabcc19efce1c3": 2062, + "465672ccdc4c706c44a36cd2496bfca8": 2062, + "9ca3418958e5d58e8e2fbb9abf13be51": 2062, + "d169048a63a751902c191e0ec1b80c99": 2062, + "e950eb647905bddcd7ca6530542e1ba2": 2062, + "9c82ab408b77c29c2a2469879c6384b7": 2063, + "a54e0acfe88fff67cb9dd5a94ac503ff": 2073, + "d19dc9cca181b6a51bb81c45d41e02e3": 2073, + "7e79c4712be2047006738d4bf61fa264": 2074, + "20a282f63aa1323b99710832989bf673": 2075, + "5b554f640e550fd1d1812a818a855e48": 2075, + "7d65f7b3ad4ab20ab92eeb7d720a677a": 2075, + "cc20fdbcf3d6ea9babf8e074412b0285": 2075, + "276a823e7af192bfcb28637404860d4b": 2076, + "309702b297643a8d10029896393e6790": 2077, + "4635d8d82a86e8b99390a0586c96d536": 2077, + "852b58f1f08aaea4d3bcd3d72cd63270": 2077, + "e51d77dee59d45eed02e91171f42fafa": 2077, + "032f20705554bb6202017b4ded7d8639": 2078, + "0eaf7088e4fe152f1299864d9a4e40ad": 2078, + "60d0e538baf2914bb79afb6766020700": 2078, + "831d2e895fd5424ffa0db8ad2a009293": 2078, + "c802b1fc7a9db85ca3a541a8c91d8bdf": 2078, + "c964f8ea5610fa6932b9a4966beb17ed": 2078, + "fd3f766080c1038ccc2c77fe3576e3b2": 2078, + "227672aca26c27def9c0fcf61b3b5f4d": 2081, + "cd28188ca6b0a4d1e7c34fa47285bec9": 2083, + "183133512b214efd6d085f987c7b2fa5": 2084, + "29edebc9ed785d350158639e0c35aead": 2084, + "5ea6bb7f2995a8fc47a105412b88ab76": 2085, + "7b1f4e783d2ac43df77096a8449a890a": 2085, + "f9d205dcabc2a8b8b54e707f7c02384b": 2085, + "30393c881714086dd66c077c08a54178": 2087, + "4252e6c3e8e1ca703e8696974e83b801": 2087, + "bf87ae98878f0acaa07e9d2589380629": 2087, + "cc5b16e64da9048dc5b0a227de6d423b": 2087, + "f03038d887623233c39266a66dcf9868": 2087, + "fa5753cbd1579ece147009dbe3dbb8da": 2087, + "2b8eec37b01c13994bdfad9a1ba0f245": 2089, + "73f9a910a0881764b4662d6738239064": 2089, + "90b61fbb7cdbed8d51f7eceb9c484c56": 2089, + "e170652f8f3bbeae41e12ce86c4b157f": 2089, + "fc433643a7d76ec2121453b0b0df8978": 2089, + "9ca0407683647ad48761c9326f065ddf": 2090, + "d4d1d6dd285f0d51fdbfac1eef76d9dc": 2090, + "e7d7225dad044b624fbad9c9ca96e835": 2090, + "ef84d064ee71e92f589dc49d51fdcb80": 2090, + "48e78c450e315fca32eac4e0730fda58": 2093, + "59d9320a5a97ee0d423d086b6676f192": 2093, + "611220fab4f1ef19c1ef8e76dc82502a": 2093, + "bd816c16307eebf34d0ec07cb539724f": 2093, + "5729506cd87f3abf093c44dd6b5a6619": 2097, + "57fcad22072a14111725c0728129bbdd": 2097, + "7a528fa727623ba7704fdbb519f3419f": 2097, + "8df1706c635f745a10d051e6063b310f": 2097, + "1cc31de6f06b9055b324892072179a75": 2098, + "99fe0e1ad8a3b4bfa9080b2ae01511b1": 2098, + "b37f322f3f1b42f21d0d41483f79f403": 2098, + "c72ef276a6f3f4a93f405e5216ce00cd": 2098, + "107c2ac2d5998d3490db832d5d77a5f4": 2099, + "2e3ce4c3dc7bb3054704e31ff58e112c": 2099, + "37c461427a5ce92e94c9acf991b4bd5a": 2099, + "5e60b026aa40aba6f5bbaba2274f6875": 2099, + "5fa92341da3413b08247e3b3638d6e2f": 2099, + "999a6572941987ab2361d0bf7a63c43d": 2099, + "9f6699315a98a17f953eef92f179992b": 2099, + "1b4cc70c96846c18018a93675c570ff4": 2101, + "653238f02c2b73e1a81357a94403e3d6": 2101, + "6a31cbcc53dc24b02e11d10d1129958a": 2101, + "8bfee9278d3edce7ff1b0686d87be7f9": 2101, + "ca461f3d90d9c38af2f33d79d2ffc52b": 2101, + "ed3dc4465e4053bdfe42cc33e4e6a956": 2101, + "049e3f53884ea5650d1dbf43751ea965": 2103, + "369a6caf642dc432048016f200841ad1": 2104, + "704078666a103ad532974e30ae42b104": 2104, + "7b0c2b223ba18e60629b7e2538c3039c": 2104, + "867d8889e9b5bed60b3e5c000a123951": 2104, + "b1632c2ac1a75882eb0423906d06f0d9": 2104, + "ec0cebca9fd2c95d7bde82a442bc3007": 2104, + "e83eefc4ae17b50c3d6910922eb3e1ed": 2105, + "26f2c5d434a1a2aa2871ad56e73583c4": 2113, + "7ce0b2f638a099560c6c7bef7aabf7aa": 2113, + "893630f0376294e925198476f8ab206a": 2113, + "d52bc57bdc38d2a43406fe6af624241e": 2113, + "31d9a2cf6e9cec8e3bbc214c2d15815f": 2114, + "3efbf58abfaf9a2326120bb2cf00da30": 2114, + "60e0675a75bd7874a6d9409478d10453": 2114, + "8f3790de2a9e0b2f7e914365217f1902": 2114, + "979aaba158aee7d452e05fa144a504f5": 2114, + "ad72b2fe3cacc4a336a405e37ee3c320": 2114, + "b5d84a688d6f9fd38cd49d363e83f330": 2114, + "c935b65ea844691175e518d772380e1c": 2114, + "d39b6d82cd08ccb83f26a66499277ddc": 2114, + "e927929a16c43d53907f63119aabaae0": 2114, + "fad01c4bd408f638d81b60f8726beb5f": 2114, + "29543584082f84b20b383c496c38b1ff": 2115, + "48adf10ae7ad04eea629f4543b8ba321": 2115, + "5c16c4eac36b33c35d876175c1817e27": 2115, + "88eb7a3e392315f2e0601d3c1a6d6bab": 2115, + "965161ae185286b5de759c408cb86c28": 2115, + "9fd8e7b96ba577536aa7af9a442f3da6": 2115, + "a0ede1778a84e1a6c4caf021ae184366": 2115, + "a152e10bdbc89b2a44628ddbf2629c5d": 2115, + "af57c886e9d1292d4e0f84e057a5dae6": 2115, + "c454a2ddab331768fc6f11bddb210509": 2115, + "17a0463d4a297a34ca1dbe0e1f498d78": 2137, + "1e76437ed359236919ca42850648e04a": 2137, + "2176cc92323fe2b457fc6ce30eb4184c": 2137, + "67f77184ef510ead1fdf2c29a83077bf": 2137, + "9ad49f7a07481c367289e442420fa294": 2137, + "d54e5b54d9c4508cf476298a3cf76870": 2137, + "f511506e74943752c2f60844684db63f": 2137, + "592cc41069fc872a625d2703d342a224": 2139, + "6da79d16e353c7bb9f5e6dbcd63d81f3": 2139, + "9faa5d8c9f1060d3e6296ae50c63a6ca": 2139, + "a46b4a632770b57f13d0327b346f4213": 2139, + "10853df8fdae9bc980cc36823b11b1f1": 2140, + "18a919200ab2876a667903b5304e2152": 2140, + "291dc0eed0aacce22a26dd7101424631": 2140, + "344983217736f662273a549919efddb8": 2140, + "40279923f750628a45c87e282354072e": 2140, + "4bacd859c14f72460b4dd1049fed87d8": 2140, + "d48f63a48cf051a1f3261a29549ba173": 2140, + "e3897afe323115daa865cc4e1b68e7e7": 2140, + "79c38be77d1fa7353a468f137b991416": 2142, + "836b1dcd4b31889d0eab3081329b7529": 2142, + "88f73bca080160f748a5e191490a5c4f": 2142, + "a55494e40365355e0fa9f43d77a2829b": 2142, + "df774e49d4ad594daa1b220834b8a5e1": 2142, + "08e05c349be7c4a29ae37816e922251c": 2175, + "6e5a474e52813c353a78d93630c27730": 2175, + "a456d4bbd2ae972bc6e8f88e8e260f95": 2175, + "aef9c5f223f34d04b38412ddc2e96ecb": 2175, + "b0783272d6ef7d9ca5967e606d7f2a8c": 2175, + "6d71d45c282a7b923497fe59813035ec": 2208, + "8d7fea510db146ca74f2d0ce242c96ce": 2208, + "0abe4626e7e141945bf85b07acd4f584": 2221, + "0d34ed9d4e1b24355ac0544c319b43d0": 2221, + "1182edd795da08220421c7a20b759066": 2221, + "1506d09c0099ed8886c0e9d24ea657cc": 2221, + "1ac2a0a1e5f881a9cb2ef6e970410a66": 2221, + "229c5a7367a8a27aa2c600d8581055c8": 2221, + "23a3240a343c460e1ad902108ad85b7f": 2221, + "267480ae89a372eaec654978e4c00b52": 2221, + "2d425fcd9f734ab9faa700b2bbbadca6": 2221, + "2edebd9db94111b100ed2c618f372b93": 2221, + "3b6c9f17ba781d34494a8090e74f8363": 2221, + "482105ae6356e397ebafcd417819c79d": 2221, + "a56d0d24feb93682722853002a11b7d9": 2221, + "b25d59f6da40b6d7657cc9402e664f5e": 2221, + "bfc4d9791d9fe9c181dad794d66def4f": 2221, + "dc384a4bd129b022706bb99b217b15a1": 2221, + "1cc79c31d41adfbde8c531d1f14b3f39": 2225, + "55a6b56cbf201c1eefea7f476ef4892b": 2225, + "fcc573dbfbe1e58c7d4bc7f95756e7c9": 2225, + "55949a592cae09b46393d00d2d8fee40": 2230, + "60db38a6c68a6de3950b1e72da7277fb": 2230, + "6e4710637b033f7dbf3cdf46e70b4cce": 2230, + "c2195553173ad11c978f49c45ecac49c": 2230, + "3aee10e4706ef3515a97b4dfddd619f0": 2238, + "6e5ad2ccba578b7060713512e36fc221": 2238, + "82d60b4a6a80b9c18be959cea1837c57": 2238, + "9a03eed44ed27a231b16f7331ed7d619": 2238, + "143b93abeea246aabd80470eee8ca1cb": 2248, + "2f52cb9f9e960055605f60180eecd6d8": 2248, + "0642d8c0675c2797f3e728e298e881b6": 2360, + "1a7062f4a17bfc859334e98d575558f5": 2360, + "2c14a62966411eef03ecd66b061156d5": 2360, + "528f59b26c8d828ca7db45785de6d7c3": 2360, + "700d6288bf27c3081b2d716cc18726ca": 2360, + "9abb2039f428714b2b93b019bdeed7bf": 2360, + "9c8d4d8bee6fed3645d2323b49f2cbed": 2360, + "ac95583bc80d223782940c67bde31e59": 2360, + "e44bb62f55fca47389e092fc54dfdb9e": 2360, + "233cddd94c3f3d5b9a9f4670a914e74d": 2361, + "ab2187b5c3ab5d951b76dfe0bbe217e4": 2361, + "d9938fe918d560ebdf49d2d0e69c2fd0": 2361, + "f21246c4fd85ccfed0d218ddc5e3a7e1": 2361, + "fb292af0e15cc20298dbce5caa40d075": 2361, + "5d6cee86cd3e21628ab6ccac07f3eec9": 2362, + "64d6c109a571c7f6d582f4dfaec0eeaf": 2362, + "7b2e732f5033c89dff40efba56ed6d76": 2362, + "a41a8a46771160e97ee5967365c07c83": 2420, + "b93eed6f211f4f405c57a42def346f74": 2420, + "148f4d81c1b833fd16f8ea51152ad3a9": 2432, + "7793daebb72b7819ce0d5e20760c409b": 2432, + "cceca23077e535cebfd93f174466c899": 2432, + "3c811b8b45949925cb02cc90befbfa35": 2444, + "4ed575e96bbf3a5aeb4c1eb04216f313": 2444, + "6231ded5bf59fb7a4d88232855f3e1b1": 2444, + "e035b66df685b4c5a59d66e4bc491b3a": 2444, + "fb1d3759f0ed7ff7e5c767039367a1aa": 2444, + "f36cb0729741f92698d42e19f69e690e": 2604, + "2e05b5087d38252b41c20d1e5ff4e9e1": 2863, + "3e2a5957af0c11994069201fd9de324d": 2863, + "46a1ad9cb1d391616342c64a830fb763": 2863, + "5631eae8bc0845bb3b6876ad95832b4f": 2863, + "75e8ebc6200a8afa1d01d96895cb716a": 2863, + "9485ee11a667ceec8689ca02f6f48121": 2863, + "96084e640ed9a02c644b39986c269662": 2863, + "9a0012b3bbfcaba3ef7730a4ca6c8b3d": 2863, + "b1c9aa9bb4bdf25bbb3258099ef44433": 2863, + "c68fa81d7cc3cc8a66c1f6391a385037": 2863, + "d7ea3aec04cee54ccaa32504e69d101c": 2863, + "e0df334203be222ff23a42b42fe1438e": 2863, + "e1cc426a0ef29352a592a79621c6a9a0": 2863, + "2056affd64d0a99490c718344c8bdc4a": 2963, + "6477c54b7340d77c25aa012480c0b321": 2963, + "d1c50e5dac50f740cf81bd4ee41273a3": 3578, + "015e59cde3752fc54a7b9d586721247e": 3614, + "01c1f123f436943527f50eb585025b99": 3614, + "7ea72482234ac1b3754153a559213367": 3614, + "98cc554eb8cff96ea8083de3d275638d": 3614, + "f872ac4342fa9e373bbdf1102520b6ef": 3614, + "195dce1f6c73007356b06e27e0678cdd": 3814, + "230754554fe746e04e92b98141e1310f": 3814, + "270163457e5f18fa20ef38faa1eae378": 3814, + "3733c4b0d5bb80f4ffc1c1d88d176bec": 3814, + "7566deb93e107df478e47125bfd78ee3": 3814, + "84e8fed10d7c339f726d52cb152078e1": 3814, + "9ac0f918120927ad923eb59621614fcc": 3814, + "9beae0e30ecb62290a8051f7af71df2a": 3814, + "a5b5f968edf92813c8ce1366a63bd7f4": 3814, + "abaae93544451a68c54d5dc44dd309fb": 3814, + "19a27b8211feb72685d7225a8a25d35f": 4030, + "1cf9557073a07acab3fb7f9f562c0b1c": 4030, + "660a630095b54691781cae104b5d0f41": 4030, + "8b64c11e50004cdea4c1f00e1675a16f": 4030, + "f2e74d1750836b0dffedc8b5d0dcc672": 4030, + "3d813be4c17f2457a736b3b5b2723943": 4031, + "6d06f4795d27df4e30f2ceb20b4f29ea": 4031, + "6f70f3560f85966763803c5ad08776f0": 4031, + "2c832d9fac3229cb7c32a5fe1dd65ad7": 4034, + "41e83633fd43b35d921927e2e84f1bf8": 4036, + "758f0df801ff6333240d343a10c76ddf": 4036, + "96ed89b1c4a6e91cf51d9d9b4d3631eb": 4036, + "98e6ceaaf5eaf6fec679be36b208318d": 4036, + "a168d84f763e892ed642aae8173cb08e": 4036, + "df2cbe0d2cd8ea00240ff406c6ab3f96": 4036, + "e6148734e0ba00eeb3cc3befeca120b0": 4036, + "efceb99991929decd1bb19fbe1ef4a38": 4036, + "1b3bf0006764070963e206b63dbfa34f": 4094, + "31e504ba213ebff173bf851b45c535c4": 4094, + "45b2890303b6d3c1ccf6c87170d7a778": 4094, + "84edf8ad30a89d677b002d250da8061f": 4094, + "a51e7811fce115764923c445c2d4a95e": 4094, + "b6b3fff0a3cb226294c0cd1f255a2db7": 4094, + "bbd477b940c2aaf1633294cba9c3454d": 4094, + "f01ce625cfce3596d4a9d13ef9f17352": 4094, + "15ae014f3ca3bddf1b58899c7ca950a0": 4105, + "1b493cc76d189e7a2319693101703fdf": 4105, + "555dd82b2e970312c98ab43656fa66dc": 4105, + "8568977cf0238b54fcd29f837aec268c": 4105, + "ccf632b8a8199cacaf66ecb5f3c2f384": 4105, + "ae66e5d870f74c1ded4dd00873ad0b7b": 4122, + "0d7648855b83eeb52072f20cc91ea1cf": 4152, + "0ec694629b30a53c82e861a2370d994b": 4185, + "22126994ade6f5c172fcb159ce3f7904": 4185, + "c06a1ff39d7b3df23f5a5d9d44d1c247": 4185, + "dc377ac820a03200b669e8552f211d10": 4185, + "f2cfa49312bd4de3624ac24618dcd55b": 4185, + "530971f48392bf29fbfd8ba683ab417f": 4542, + "9facecc44cfd8be8ad8f3bab1eb27cb6": 4542, + "2f31d3cedbea46f56466b06ecb6f7eba": 4543, + "3bfcc746d9e825b4f984b9f4c7298e54": 4543, + "bb744b1500da4c97d1588b5fff5ecc86": 4543, + "599c2b45cb828f4b4f70274f4970c400": 4544, + "aea2e13819e1ca82bf4fa6da8c7dc60d": 4544, + "060c331aff7e94158f0205acb04be2d3": 4548, + "66f4d31a0a0d66b2a85a88212ce159fe": 4548, + "a038f3687c56e97f88ed44fffc587b13": 4548, + "b250ec33194effe8a892bbfd5933c2dd": 4548, + "e91b3e0ad255eeae1823d2372a4b21da": 4548, + "47591d79cda1a0ae062a7bb05612bbff": 4551, + "4bb47b3de8dd34a9992e86c592271964": 4551, + "b689e9039927cdea585a69858d802a76": 4551, + "d37fbdfdeaee7b01458e0cef0cc1f174": 4551, + "395a3594a3818f2b4363b5183ef61269": 4559, + "53c78cf68939090e51bf8f7ec01031e5": 4559, + "6f8b376c96e904c2959951cc813ac78b": 4559, + "830111df30b8511562d4faca6aeb792d": 4559, + "b98a6651e2ec7797bd124257217baf1f": 4559, + "be5fe6f0842fa38dfa760ba56b7e28cd": 4559, + "0f9c8d3d3099c70368411f6df9ef49c1": 4568, + "1072e4af28b327a78c8e2893c5a00ce0": 4568, + "38cebb4f39f56297522e03ef9e1e5987": 4568, + "3ae07fd3a5ffa14223e9c4dd3d28a1a3": 4568, + "51db6c9d325cd858093d4af4567ed36f": 4568, + "59759b2dbdbac2d7123424258f537d58": 4568, + "9d4fd1e1e98d0366546ad9194a479034": 4568, + "d218d289a7cf6b3fd13d7d3778bb30b5": 4568, + "f004e8dff14d1e5b388942951b996063": 4568, + "ffc43778476edb62e63ac6b4dcad6295": 4568, + "9910fb596a5d544430d20894b5dfa378": 4598, + "f86ae8bf771b96bc1d6493c387a5fc9b": 4598, + "92378a289ae60b107114c546c3ef7f13": 4599, + "c25991d546991cedbea9eb9efff32e62": 4599, + "22d5c8900a3d02805a566abdfd05bb82": 4605, + "2c842e0a809017ee7467e33024bbe95a": 4605, + "5bbd116dcd2fcf117284532544fc12ab": 4605, + "5d7333dbbdd9a3140c9d060dbdc2b820": 4605, + "192f2997b7f5123ebc81b7b8c469c1ea": 4612, + "80d5683ac95537401f2f003a76379b8e": 4612, + "d8a1d610c93b96ad98e55e09dfcc7533": 4612, + "8c8e0f565257835befb2fd727049b413": 4616, + "56ca85a5e49cafd91050afec60c10713": 4618, + "a477188f2c0d2cbd77309393deebee9d": 4618, + "3e333a4cea884512e3129b6a4379c81d": 4628, + "c4bfc3fdec05be0dffe68beed760dfc0": 4628, + "4b49f04a3d2fef19ee9bb4188f6a8946": 4629, + "745479df3b06f341791c1c51f719d176": 4629, + "783924a53e172029792ceaeabef6093a": 4629, + "8deeec57833ccf4f7917ecaef8971e3e": 4629, + "c8e69282643e4fea69e8f69389436961": 4629, + "df4c7b6b92261d276b9a8019e561c6b6": 4629, + "7318afe3b846aff581961701c91fe7b2": 4641, + "9c283fed43a9103bfdbd41a7ed8619ce": 4641, + "4f1e6f5f517d6678bab16ba95f920547": 4650, + "bed0f7b12673dd762eed665c5c61927b": 4650, + "ce2ce72ec3f43bcd34c40de152253365": 4653, + "e0819b2883f10dce3fa99988e7048930": 4653, + "24caaf1aff203d9d35cbfca025b2a862": 4658, + "6b949c9d6052a0e34f9ddd5825a856ae": 4658, + "7ac10c2821dcf95666ae836bb896cf80": 4658, + "abfdc12c5a576aab1880e6d4c9d13b24": 4658, + "d9ff78d0d8680af5dc8204875be83039": 4658, + "dc3159eb019b4ca99db43d2b2a0e452e": 4658, + "e28986f690e7fef3d72316013e5e9c4d": 4658, + "e8a1313eef2526d274f4396134a50a80": 4658, + "ffec8e159be007853e63acc41f1e17b4": 4658, + "0ba3d131e367a44bb1a6ff416869d4f7": 4680, + "4029bc95b65193d8cdf120535cc4e695": 4680, + "086768f2e40735fdabcd96b68e333b27": 4681, + "493afad9212765c7842aeca593700289": 4681, + "598a6da95a3070e6460bd1d23e8c0dbc": 4681, + "9c460fde3896233ff9cb9b833d2fa78d": 4681, + "af71bab949862b7a2c2ac18c58bddb1c": 4687, + "c1349825b32dac3d657bf66fb291ae45": 4687, + "c582486614fba0f434c8b59e2d9eb575": 4687, + "f421d3c8a6d819f5ebf759cb7d4af3f1": 4687, + "21797b38a17dba461776facce49ff995": 4694, + "42442fbe3a99fbaa25425611f5f4a090": 4694, + "057707584b517b7e551b236ec7b0ee6d": 4720, + "0b3a50ceb150e40bf493c6ab92cda82b": 4720, + "0d9d9adf5f2bba7b68abab21dfe36ce1": 4720, + "4c43fb12c61593f7ec85f3c17166b6f6": 4720, + "4f44965b70d3984ea3ce212aa716fd7d": 4720, + "a700b691d8ed19eab1d14657c0a4cd1f": 4720, + "b742778bed359a0600079767b6b91be4": 4720, + "dd929e09e7ab9a76e69b1d301aef409c": 4720, + "49d4f48f764406a2ad82bd3896f3eba5": 4755, + "b501844dd9cf3364fe376be19be979a1": 4755, + "2aa4dcef811569ad14ea89a8e741d304": 4756, + "87ecd2cc23de21ffd69439db9a1ca778": 4756, + "9927cbec8873a3a6bf6793a892d8ed8f": 4756, + "afbfb5dfe91f6ef10ceee9ed3068ea14": 4756, + "1113a24dc0847837e276df1d3606e467": 4757, + "1bfec0f52e58d5697dc12849ca86bc46": 4757, + "251a9334f4c0d5b44f4cd8be92d059c7": 4757, + "38abeee1b7148a5ff13f8f2ef6ab22e9": 4757, + "6cd5b278f0c7fd67cf696f3072809b36": 4757, + "c74c09ddc190ec9d78d2d43e8492e14c": 4757, + "f6b9542c2aae8627cca92fd82d08ebd6": 4757, + "f8d24ac61186de7c0422d1e431dace29": 4757, + "0ed8840e36611d852f1476a210088e61": 4762, + "8ce3f0ee5cc7ce413af7de3667c1c1cf": 4762, + "9dcdda239291f0f8df5fc779064bc4ff": 4762, + "e2d7d89d0bf5a4bd75434dd05bbd58ba": 4762, + "27a89f079bca542e3aa36108a390a681": 4764, + "6bca9dc999f02806a5b424c59ad1dfcc": 4764, + "8cdd15b58199c088fd73d05bfaa20db4": 4766, + "50f422373a0901d2e9981b4a82e7e9d3": 4767, + "fe6e13d1382f94dc0a5391053c4096bc": 4767, + "75bbeecaf336e30fca7cf043ae056e50": 4770, + "db9057d4e7f632e7f544c52ed67ac51c": 4770, + "ddda8653ebc615881fdc67ef8d82169f": 4770, + "03354a2ce76a1d229a47f25c8227bfb5": 4779, + "50a29fad971f429d605765485f881eee": 4779, + "39752fb01d54c40226a6e5b3495c5406": 4788, + "a814a6cb1857434995ab0078242b66bc": 4788, + "ed2bfe66774c4070a237f1a3405983de": 4788, + "32d9dddc0670fe4a8cda049e1580c452": 4792, + "4e7ce109df6514a3c818306c38ed5fb9": 4792, + "4d26a2af6b8a88b01f982d0afa2317f8": 4793, + "a3180091f4b3465c5057659dc995de35": 4793, + "22fb493a8e19550a82b593982f8db840": 4804, + "634b6ffecfe65684791326ab6f316e85": 4804, + "022aa21ea0b6b1d96a562ddddcf3d501": 4808, + "390a44e15956da7c93df7a1ebbe6a197": 4808, + "5e1bd56993eebd3a465164b6b6eec579": 4808, + "79d9eb5e940f130e092682a517dc9d2b": 4808, + "28988509907b80484173c03adaad863f": 4812, + "67342016dafc69887d0ff24ed2a7aeff": 4812, + "6ab2f63228607bd48d1a350e0807b8f3": 4812, + "88399ce780d6bf32681b62d770d018ef": 4812, + "c125610760edd03f9a002232e5cf4c71": 4812, + "dfafc420a0204ac66adeaff6e0c6e9db": 4812, + "f84871073d3bd839f0b9ba6e800a451c": 4812, + "dad92a6e2f21b6df1d358419f9830758": 4816, + "f5a9605e36ce33f2d6b9160f7d5124ae": 4816, + "5fe496319e7ed35875df71152f9c2593": 4818, + "9f7fa923abb2b4bdb2711f497a4a0ee7": 4818, + "a91947f0c148c49adb9ca27245cc14f3": 4818, + "ca873cb4addab1aaeecfc77a73ceb21b": 4818, + "d93d72070193026031b2d3f3630ee7bb": 4818, + "e14481d175ffaebb244245260a7ed3ea": 4818, + "173f821c93bffdf52e068f84018f15b2": 4820, + "27d2c795c0d4588d7a12f35854ed0b44": 4820, + "1aaaf6f8cacce1f904774deab69ff4ca": 4824, + "2ca6e641336dbc4aa505a4e8eb3c927c": 4824, + "2f09d15bc558fb08f14eb0c071886ce5": 4824, + "9242984ae9b7f6142a19a359f8db6bb7": 4824, + "ffe1d038d7d98a504beef572d7c5da21": 4824, + "13e6ef94e3d1ce8da977b330cd3fafd8": 4829, + "191a061a0c5bef5c164a908521c8c0a1": 4829, + "36a4f0fbcefcedacc39a9175e550869d": 4829, + "4d973473445fe58989e4be82ea269971": 4829, + "563bf1b21940129bfa9f55355bc4a28a": 4829, + "8266ba1dfe94a08c461045a55246e464": 4829, + "89ecd7c4afbc2a3e71a9618b7bf63ca1": 4829, + "a31accd6b315d78a450fe8baf77cc1db": 4829, + "baa6907cfaeeed9f1ba0eb81110921eb": 4829, + "c0368eef19dbe2e60e49e397fd2837dd": 4829, + "d37527a8bac1b1a9838ec6518b8335ca": 4829, + "d49a1dcbde947d650699d7bf6fd20243": 4829, + "d909ecf9d6deb7a35263e6aa6b2f0cfe": 4829, + "da5737c35af85e96bd112bfa982804f9": 4829, + "df8e8a7748bdfb55ca9349a7242ac082": 4829, + "e34ee1be995018e96a6b1462545d730e": 4829, + "0b6422a76bea4f8db99c833aa90baff5": 4838, + "2de0ebcb8221d9e60428866b18ab259e": 4838, + "7ef0da84f416c1ff816f093c9e0798d4": 4838, + "de8eef56849459ceb09874b15b837a83": 4838, + "0a4f31e17adb19566989f805cc199770": 4839, + "92cc9b6f422fe6c0672a1dfe142e0759": 4839, + "c2e4272e1f463a31dbe97ae892e1ff7b": 4839, + "db894ec2b43b2132ef0faf069b6004fc": 4839, + "1845edc3ac659f1decf0ab0f3a5f4bf2": 4840, + "8aff3fcda753debc3ad01d5716320553": 4840, + "9b43bddfceb7cbee58d32b2e1ba753e1": 4840, + "ac77ae3e653c7122893d73243864c799": 4840, + "1e3f9155e5fb43344448e8a67b75ca26": 4851, + "51784ef079bcb2542c50dba1a1ae306a": 4851, + "4c56843db70cddec8bc5e63ba8b8bed4": 4858, + "add4e9f5ed4391a6b3fdfc5f0e300e71": 4858, + "c4d34d9a426296616ceedf47b59bd287": 4858, + "d48c22998173bfeb545e886c1405e233": 4858, + "d9a368069b687fc9bfdd07a167e4fdcd": 4858, + "123b1b024332fa67dbdabc608f74b032": 4866, + "1ebf163530006e775c5bcd0137f6b534": 4866, + "2d2e794366a3c55d8b03741878d18d3b": 4866, + "838b9e45830c15d718fb8c707d9b6c58": 4866, + "897f47fd270dea2b444f4ceff6ec3e30": 4866, + "a4f8b0fb27f5f9b8bfb6d7d9c7c28b16": 4866, + "cc288865438de3d568f8262fd1ae678a": 4866, + "cf856e9241f504985a7936abdf275342": 4866, + "05c817e82c97b20fac161ff5b2ebfb67": 4876, + "c35e66483c337f677e5be5f897fd628a": 4876, + "c7e36c2e8d69bb4a1326425ab9f4a2cd": 4876, + "441374705d35c7a11fc73f4acf645df1": 4902, + "84b5f5805d84c96d28f54f7c9713a476": 4953, + "c4afb62469145c5af016db8cdabf60aa": 4953, + "f7bdf2b7c9973d744340466009257c99": 4953, + "b30bb0b86c030bc7e43e681b4397b58c": 4961, + "c0b7d8b17a487e6391e5fc31c9f34962": 4961, + "29bc1c7c36a0f84f35397083c8b71835": 4986, + "4abf7be0e11aee74ce8f74a460654dc0": 4986, + "78556579dacb7415467d6d341e059ee9": 4986, + "796a7546ac394c86b1f287894b89eaf6": 4986, + "8de831c59c988bd9193e946e90ee8b7d": 4986, + "c48d5890f7fc5c14b436dc4c5dd048fb": 4986, + "d3cdde68ccaca3df234543e9d21b85de": 4986, + "e46b3344a28667be0c8028edff9631ce": 4986, + "6a1169ac43f81e3fc8f9680059ce55ca": 4990, + "c2251c91c153d274ac681b85ebb549c4": 4990, + "c936960fbd3955968675ba6884ebad07": 4990, + "c95c88cc46e9efdc8e4c4e07d7972ccf": 4990, + "88ada57523a6d9f76305a8ffc1cbdafa": 4993, + "1dd21b592b6a3221b276828a75b6f321": 4997, + "3a0d3174bf35e63cb152aa6e7fdd4cb3": 4997, + "3de3bf6e2e92cc33d63b30146951cf27": 4997, + "40fcee09fc58333392c8cc80bfe3be52": 4997, + "5badd328e2564f80ada9187baacb43d1": 4997, + "649ca8fb2eb3ee98ef37cdf6a89ea1bf": 4997, + "b7722d29b8934fa585101922e7547d6d": 4997, + "4e7a2a1b2ec9606a35d77da78890152f": 5001, + "5f629d2c09ddde3ec938bcbbc389523e": 5001, + "808ea290df8c1c3862750d5456716788": 5001, + "9d7b08af2ae54671b2c634db4cbc81af": 5001, + "d26e9dab1a15a6cf6dc4a5316da6cb32": 5001, + "ea287564169b18d13358ebf0fa2ecba9": 5001, + "7a7f5ed7d0c5ecbea77452b7f37d6900": 5003, + "80c2087288cfff241ec38f21051abb6a": 5003, + "fbc46d607ee554c8388d2903138ce7ee": 5003, + "50515b8759793259eb51ae67b74b49c2": 5005, + "ab40cc860c93f827872603a44228f23c": 5005, + "334194ab64ef3912e4f175d4a581e731": 5051, + "47f483766aa1284228791f4443552241": 5051, + "a65e9c06d97fc082fd6f0db5f7939be9": 5051, + "db90dd8c79c6709dd29c9892ba3afc5e": 5051, + "e4f322704a6055a4fae7abe79099b261": 5051, + "f06e8a7895a18a4f15fdc15e698fcc0a": 5051, + "1a5d9c5ecff8015e8d0089bdc6db767d": 5060, + "23db13aa5b926f4491db060967229c04": 5060, + "8645942fbed0a79192543abf3840e508": 5060, + "95a84bf29a9de8db0d36cb62d6fe225d": 5060, + "a8fb853e26eeb3f5fd638df4d206b6ab": 5060, + "1a9dd4d395d4cae369c586bfd4afff82": 5083, + "46a92436a4899fd3adc2f5097cdaa5dd": 5083, + "544d3812ac8510c919552b8ae3ba32f3": 5083, + "5a28fc9c176769d206476416a515d17b": 5083, + "3e66f0771381a31e5b4e93ae8345d281": 5090, + "62fd81dec0d51a01da4ddaf1df8acbc4": 5090, + "d25b120d7eae167a52a98476e92ef13e": 5090, + "4b1d0b67638c81551c111759914a8973": 5091, + "6dc8a3e3125a98b14ad5d5ddddd2e672": 5091, + "e3a0ad4a2ac4f64da129e1f9f0ae5a28": 5091, + "3c42846e7a42b1e2e9774f21a7b1e59a": 5102, + "e64e20f904ac990c584f1b83cb8d531f": 5102, + "119f54174359d9c2ab8e4ec2c1836be2": 5107, + "669faa38f33b875a4f32f3e0dbf77ada": 5107, + "de4d6c5bf0f19b58857fe286d898579a": 5107, + "5f998177c4013e0e5c4811a1cf1af910": 5136, + "b18c329f84c8dbf78f3b8b2f881ab317": 5136, + "03a28de2c892bd258db64271e8a79060": 5144, + "47ff876c401011857f4f34a634e08261": 5144, + "58357d9d6fac462b9fc7fd8194bf0e66": 5144, + "7ec958909a591faac92f3e2aeb3f24b5": 5144, + "96cdc967dd52ab489e66688c23bedeb7": 5144, + "cba6a1a95d28b3aedfc8bebed17cbd17": 5144, + "d351408bad8b21ee8da720cf52c38872": 5144, + "e7f9a9c11bebf13208ebf48114a02ada": 5144, + "0a80884be9815dc9c5a49ba4e6928598": 5168, + "13e451bcf72a98ebbacdc9eee8d95948": 5168, + "038d434ee670d561059c48be87831ddd": 5169, + "f5923693ff4af53655ee13de21c538ea": 5169, + "6144782e3b6ce14a3566504da4995329": 5172, + "72a4ea996dac9679eebf2b6923d76230": 5172, + "74d6d4290ffee69ae7af052ec437f227": 5172, + "8536aad98b3ee2dfa4c4a56098b9650f": 5172, + "baf5c0d941a09605708eb85fcc9f7690": 5172, + "d7047f1a9a63866719b11b39558d2260": 5172, + "ef449ae6c79978d095fa32c900afae20": 5172, + "fd55dd5a796d08e4844c5549a5833257": 5172, + "27d8011f4ea6c186caf262b89da20e02": 5175, + "f4fd2f9b5d02f09905fb125ee76fae37": 5175, + "7f38210a8a2befb8d347523b4ff6ae7c": 5183, + "882bb4e73658d38483078fa227d58183": 5183, + "56f1c8bdcf20fe3342caf622719e14c5": 5186, + "63e6a9cfc0ecf13da9d8c02867a7ec47": 5186, + "17457319a0a93a4a3b86cf9d34a9e5b9": 5191, + "233bfc4b355b8a82d32ced72a7b200ab": 5191, + "36fef6b929d7c0d2c87e8fea3bc41784": 5191, + "587d76251921e32deadcf1c0d3c18ad2": 5191, + "5e3000f49a0161577ae253d2c0348497": 5191, + "81399e4e17afe86f9d1259a237a24c5a": 5191, + "abe8b1315995f2a32cf572696a32895c": 5191, + "db41bfe0f8dd05e88d94bd36d793428a": 5191, + "f1ade0b4c5ef48e27d1e4256e8521709": 5191, + "f99d87eea2d4462c486dafdac3b81352": 5191, + "20308c1e018f6be3b23b3b6b304a2edb": 5197, + "a738051086791de32a14d87788e6da41": 5197, + "2a34bc509950f95c1d80def607390a05": 5202, + "c8b8a02fa6709db70267c0ec6b7015a2": 5202, + "d6965843c8a24fa6b55e52019bdb0458": 5202, + "ec8848db07aa5fd873025fd032a8dfdb": 5202, + "9f8a083b671381ad6dac1e848c6e3781": 5218, + "aa67d215ade8d289941aa896a8acc9a0": 5218, + "b589b0bb8f41bf2936ffd78eeda6b14d": 5218, + "ea0c36da84ce7d5eecc229b7c219221d": 5218, + "09554d52b8ff674a78333701d41e4412": 5241, + "0cef3fd6b10b1c8544d968c39bd4d42a": 5241, + "7f15d4706427403460fc2a0427a22d52": 5241, + "e659890d46a5ac9a347e0b85b352f1d0": 5241, + "3f65a00c15f72fc2cd44b54a63b95dbf": 5242, + "6b989be543b4fbddb507f3a66e522459": 5242, + "82f967d41d40cb259ad13c46b2d35ddc": 5242, + "c12392b0734c8b58ee31f635269b879d": 5242, + "11f0aabac019834b0fe8a73f06c8d703": 5288, + "1c5586297ced6b88343829c006003f14": 5288, + "24b50bb01e6e360fcc49e94bd8e2d459": 5288, + "d4866f129b74626e694f302cb5ceff93": 5288, + "2e3bf5cd08422919a0583566d4cf29b8": 5299, + "6804514cb182357794ce8360d2884be4": 5299, + "68f085d129fa9e830de1f28d82143bae": 5299, + "97643bce37368f7b004d2b602ed54817": 5299, + "618e8f72bd2fd80c67d5ec1e6fa238b2": 5300, + "f753dc8fcbd92c25687dafdcaedc6862": 5300, + "bfacb0221be4b735f1ae3ddb110d0bcc": 5319, + "6abbd01e3546d33daf9d0abdd4f126e6": 5333, + "c8dc2b430a805a4557a584d772c9fe9b": 5333, + "c9d9cd36d050cfcce91fae87a29253f6": 5333, + "ccb846829f8f9871ec9c08b01f52e686": 5333, + "35f35a5e574ccdf6ab75df91114f992f": 5346, + "48e225b4cafdaac76e04debf5d0068a8": 5346, + "0906d34271580811cf52a411aa4c5229": 5347, + "5c6bee47aaae1c76f3b4a5b3e34f10de": 5347, + "0c3052f71a7be0319ba2f4846d310d93": 5350, + "933597119a58989e7ccb77cbd05a8933": 5350, + "0de9520f38cd7b1e59cc285ad57c3852": 5352, + "17f9fd7dc35ae7125da454e8813e0dfb": 5352, + "3fcaa6f48a7979ccba8f45ded50d4fc4": 5375, + "473039c69061a1b5fca5c277c4a0622e": 5375, + "e7dced9ac40c79996e6be7bc8f77f1c3": 5382, + "f159fe8fea5cece7523bf208768a1ba0": 5382, + "175664bd63fde92bdce3249fdc997dc5": 5408, + "ed444ef006119997c44a54889775ad42": 5408, + "f7a63481444f7d9547cf94482d0d8120": 5408, + "f7f9c2b28a6b146c8364f8c48c0bd555": 5408, + "4dbb6f0ec751a0ffb79d0a755cc770ab": 5431, + "6548264e1278f916af20eda700e75e43": 5431, + "80eb5117de63422898c3e80eb8745bac": 5431, + "00f4a5facdb1eef2aaa049a0560d5967": 5438, + "49f48b259bdb3b032dc221780f71e377": 5438, + "4d0df7f290f85d5a6b4f980c37a29f3f": 5438, + "4eef74d1e3d13e7cd0a22be484d7088a": 5438, + "db558c0f42d60a056a210178693792c7": 5438, + "4957f64f5998bb9a6fdc2e3d5cff6d71": 5468, + "102c90284f1502fdecc4f94f505245f2": 5473, + "127e3af4c0897ddd94133987279c324a": 5473, + "828ce0baf9e358527420220c0e4f7631": 5473, + "a22e460e20b840dde98a320726baeacf": 5473, + "c3cc52213ede31a8b3f92aa39c2984dd": 5473, + "f745f39688d026a0376e9854bba1a4a3": 5473, + "8bbba0753c117e4a16dcfe7ac77345d5": 5526, + "bfafe705687733e19425e0945dad3365": 5526, + "374ed97be8bfd628f6b359a720549ecd": 5527, + "4b87add0de08111eddf1acd417f90831": 5527, + "4d259632662a581f8f80ff3dc1c3498e": 5527, + "544541c6b27eff4f0f0f563304bbff41": 5527, + "5928ebbd56a6681fbae6abe585670980": 5527, + "6892ea3d5bd0e0338e8f440831ece6f3": 5527, + "6d1251d4df3077bd20315b0bf131f23e": 5527, + "7b296b7cea328f8f4bac99b397bcc508": 5527, + "9575a87108e34e2472bc6e6a86b9271a": 5527, + "97aef0eb0ba829502bc40a0933438c5c": 5527, + "a0f060d865fae02c82c797806be1fa93": 5527, + "b0704d9e0f91b3bcdac0ed3c90036a74": 5527, + "dd5c58a338875a4dcfd85ce0cff7f501": 5527, + "ec43a575906724158ab74d83a05a15fb": 5527, + "f4c138398e805106dd52674d4f2424d8": 5527, + "44815abfadc2acf1546e1ff5b1c5cf56": 5539, + "0003da33f9b3c54ba95e301a925386c5": 5550, + "609d7cb81e7fe2028ea639e817b84934": 5550, + "b3c535c9d82dbd99677dd4466496e309": 5550, + "f80973d2e06e368e094a243ffb2520d7": 5550, + "03440bd306fb71bdd7603f766624501d": 5553, + "08cb8dee02e371b2659316a78f36a258": 5553, + "14c569e7d65c8f8a2a967f6bbaa5a52c": 5553, + "2e517105c0084e36a8e7d47f941a2c8c": 5553, + "301ce423ffecdb1c4d6c94ce025ceaf1": 5553, + "413c9600bc772410f85af5b034b99a78": 5553, + "45a7d02ed0dc92665a30da1d9b4af35d": 5553, + "928080eca8ebbe744f0cb3b618083d76": 5553, + "94c6a27300859e0c88768690eaf3cf6f": 5553, + "995255f37684fd53b4b1d6466462333d": 5553, + "9d3721774f1423a58a9c9a9e30fb8f94": 5553, + "a86bce72d54407e7e6e6fc952eef49df": 5553, + "b0fba7a0382c67e045d8b9fb70f8e01d": 5553, + "c0f52e4d575244bf1870e128c1e5e613": 5553, + "51a4919ad3e74cef94b0095d5e2b190b": 5575, + "dce1a5168cd69996602b392e2110d62c": 5575, + "a8b5ae6f195a4a3d87f2d5d20f17c46a": 5590, + "aa19b212a86756531a7dc3a02c55b55d": 5590, + "009de00a78f2b496efe392ac4f907793": 5608, + "658837bf9580aeaaebe327a7f6522c41": 5608, + "11172e2291eddfe68e018c999fdddabe": 5667, + "174d285053aab74eb2aa845407a80528": 5667, + "50d43061ae602102445a200f674378e8": 5667, + "6341dd5f8da2d3e857885a14626657e6": 5667, + "7b80830345437c9fa003ab81f8f5d800": 5667, + "939e7bebe89126d0a87fc767b93cc611": 5667, + "9fa850dbf748343e98c66c63c6912964": 5667, + "c779d434401a30f0e28bff416715a55b": 5667, + "eed9ad691c1e180aefe961be529ac0d0": 5667, + "efe4220028f9159b9c751033d0fe983a": 5667, + "b052256d6fabafcfec7b7d527516e188": 5678, + "046b395147cd6f9533d01a7f7c0124a5": 5759, + "27f66db744569ae74cf9698b6ebf24ae": 5759, + "187489cb099905016a16b73b2543ffb8": 5777, + "eae534e06c388ddf75188c75ba321545": 5777, + "4385155974d7abb97776522f72c26230": 5784, + "567640e02a93902bc3db14309c6849a1": 5784, + "685d568aa89604e48f552345224dab72": 5784, + "83e5190f8b986a1e6b67e457e073bdc1": 5784, + "951f4a2d9f1abf37fe959197c2ffa9f8": 5784, + "a5781a20d61b776015a05e27d6f17f57": 5784, + "af7141a5fb6cffa3111ac20f54b6101c": 5784, + "d6bd8c0a3f36b07c0b189f3d5664bf9c": 5784, + "2a461ade876adcd70295c64eb51a772f": 5785, + "39f81fa93546b938c32773bb3c595d0b": 5785, + "55b17c0a92eaf0d63b08b8bb52a5c19b": 5785, + "5621613236b244b7558e6851e305ef85": 5785, + "7209ec7a29818e8bd48ad1c5670acae8": 5785, + "76e7bc449ae572c68a9fc4f397901924": 5785, + "f68d220effda67e83be167f96c2b8345": 5785, + "65ce031aa3f5735e398484f40cac19ad": 5787, + "a2adf92e92add0d0cc3fb17f481896ea": 5787, + "b39d6a0e7129baa7ed693c76f1429edf": 5787, + "c262bdfefc83f5fd5bfab46792c5f6e8": 5787, + "87cf2dbd01609ed6fff6a1a022f41c72": 5790, + "2972b5a73122ce7306b12434961897da": 5795, + "58ff4f7224579101f6e3c52fae9a8897": 5795, + "5a16b55ea933fe0cd1aa5f8ec823152e": 5795, + "6691b94faaae34dc97e42dbafba3a26c": 5795, + "66ecf7c35b7a50b5db2518b49a80cc5a": 5795, + "925d5752870d0f02b38a2f4f5420d1c1": 5795, + "a49676c542899cdd6e2c539829613ae8": 5795, + "aaf653a352e295e8e0df5401b0252663": 5795, + "ad8fe7d202a02463d8a37fb43532d5d7": 5795, + "b12945cef8445515c55b1c77e3b545c2": 5795, + "f16047cdd27fb81571b453a29af0004e": 5795, + "f3e9314662a0c80447294cdbcb6db1c1": 5795, + "0cc67722f98e6a698e8212f666284dd8": 5808, + "0e5ae85fbec99239f4cb7c3a03918dbf": 5808, + "359200b7e616c85c97c0d91d37c70050": 5808, + "475c20faf131c7f28976d9656576d3a8": 5808, + "d9f661e8b3c9123cd7ae0583f911b34e": 5808, + "13e0ec9a142a5d5312bf0887d52214b2": 5821, + "a00e35762f6d8dfacf20a268e8b59237": 5821, + "c8df134ce18a7d2ffad22d265cd70820": 5821, + "e3f0eac861d56454050e1c071b73edd0": 5821, + "309ee82fe7a2b90ff0d984a99cbb5a17": 5830, + "9767bd035125843d31275ba5214a938b": 5830, + "4df1157321fc2aac0a35725b455e56a0": 5925, + "7188ced1ea52f197d589159979659374": 5925, + "ad212f088903849c342f6dafa3289c58": 5925, + "0490289d181e004d5fa0193af893ef96": 5944, + "0fbf6c60a3519b8eccf06e8544f20287": 5944, + "7417e5b1c947f064f35fc5ceb0ece719": 5944, + "9b67e77fecdcc05ee44ef8f0c7ad77de": 5944, + "fc35363788c66d2ed58714705c9bdad2": 5944, + "29942bb8871c3da40386737fc9c9aa5d": 5948, + "26f3c86b8520ea70ee19cd06b2872114": 5950, + "6cc7932a676998747556dbbb6bd86666": 5950, + "296bc8ec6482e70e5d098bb90343a2f8": 5968, + "7363b374069926cca64bb952759cfdf9": 5968, + "b599e51c058548bda6430c033a1fc01f": 6070, + "be1063151f68c58d712138c568c73c8b": 6070, + "ddc8feaac4beface3a99afd2c084a9c3": 6070, + "02c56669255281034378bd07201278af": 6096, + "3e81a6ef7304d17f36bf3a864fd0ea5e": 6096, + "9321f416b47eb1de88d7cb2ebb82a8be": 6096, + "983c51054fb2bbc69e2091924e550c58": 6096, + "ac21d0f7a75d5edbd48cbdc895a51cd4": 6096, + "e05e1a2dd2119924985a87d206729757": 6096, + "f577f2273b677db5d0a172a5872303cd": 6096, + "f65204b80ffc696fdb3b04b7c001718c": 6096, + "0b32122e1525f3ffe8903e01f4c85788": 6119, + "15a6ee7c758e80b0e143f90185fa1b02": 6119, + "3296794f3ceb04638e488adfc0459404": 6119, + "5293c0538d0a4cb9ba74de7a86a7f09b": 6119, + "dab535195d67645ef4b4b355127f9575": 6119, + "ff0229837475ea8e40c3c7b27337a643": 6119, + "2fadc729157eb5e282abc59d1ced75ce": 6147, + "2f45a3bdcb0f77348e7429b19b30815e": 6215, + "4f544268850f91f13734a044f87038cc": 6215, + "5d29d968f0f08c461752debf682f401d": 6215, + "b38b44501106f78ff5e70c0257dee268": 6215, + "c0cf2a9b9cab4bb3a466d85b772eb911": 6215, + "39456ce13c5267f3c6c6fe68b0d699cb": 6254, + "5d922fca145fa7df4c3f66366db6b392": 6370, + "7fa6ecf88c4fe3aabff4de248a9e7435": 6370, + "6a6278ac38da9498351d1837a586c384": 6380, + "059d645d85934b82392fca72574d7b5e": 6394, + "1a395c746c50c8edd8785fc9b7b2e967": 6394, + "45dcac14fff3388ed7813195193b50cd": 6394, + "870b4965bf77b5c097ba889a5ca3b987": 6394, + "3a25fbc8982bcf8324087fb5157e64d7": 6398, + "73ed7348fedd144d53873a8e4d778e49": 6398, + "be1426659fff381054bbf04ca3298664": 6421, + "8844e3d93e6bbe1abd973fe65e1781b6": 6422, + "928a6bba700dba09a363841480613ac5": 6422, + "932fece9cc7c2d70e4e186c5466601cd": 6422, + "c4c4d6bdb82010c7e4624df74fe6306a": 6422, + "1bf2e151f0fc7319d0a29d53983f869a": 6425, + "90ee51da183c058b8ece8f05fdba4465": 6425, + "a54c244b15c9857affc6f4160b4711ee": 6425, + "cefaf1fe547c9005f17bd09e4078f473": 6425, + "25d5c0a88736d90e164bccc828da844a": 6428, + "62688367937c019ae36a64526b19ea51": 6428, + "c2e9326e37e30da8341f356eec51fa7c": 6428, + "ee6db45bdf68c33c14187a701969ba3f": 6428, + "f313449f9d994007e1e66b59762e0dbc": 6428, + "17f974b2180dbc3247787cedd4b82597": 6429, + "4124f150d22ab5859930699a98bfa623": 6429, + "4e7267942c798c7716becae14a2c5338": 6429, + "90975699970604d635c681b6ab8ce341": 6429, + "91f89aba61ee2a4ac710436b156393d8": 6429, + "a5d1192bf7ccae31692e39535294cbb7": 6429, + "adebf8f5085c8572297a61b324c82d44": 6429, + "ce3b6df92fd2f8594fe70d29af939b26": 6429, + "28d0d55b60a9260fdf75fc59e09b9118": 6729, + "2426e0b90e2c1e3c89b8771c29e7ed71": 6832, + "478b2cc0995689562e9d2b3401091259": 6832, + "6c4b3eb385151817caf0d9620c9ea1b4": 6832, + "7297abfae77707fc8982c439e70ffd77": 6832, + "aab67cc4a3776c72c41812b725b26e6a": 6832, + "0c942bf04d72697d68492db043f7f9ba": 6836, + "51d86a8d25beb53a3df7d0176765e018": 6869, + "6efd80a2a1bcd255a22eed9bad936fc5": 6869, + "1c2f25cf5ec4adc858f95b345bf17242": 6974, + "654309d7ff83381fccdc5a1374aa8716": 6974, + "783997587975956bc7944aff7f52052b": 6974, + "7b6750ec8dcd14353c3d8a529054c5df": 6974, + "b508a23ea7732ba0e91537768ae66824": 6974, + "dc66c23560245a8aa5ff0626045cd7c8": 6974, + "ecaa3794786ac45f9ac9dc6ab0c2d211": 6974, + "6acc48763f67b72abb79d30af9dcf988": 7004, + "b616affb0fded77dcfc81a06152287b7": 7004, + "8c103454a8e54e49a4e97615fabfd82f": 7013, + "a73ae8eccd06a5030ac48c4c03bbd774": 7013, + "aa7d0c04976a94b8ad4ae9e26ee42bb8": 7013, + "b55534502e3cf35ed690c1be11ea2573": 7013, + "f45877789d9b3c8d0812f5c8f294a231": 7013, + "f62a480ba4a0b374edaf8ac0373c872b": 7013, + "5dc6f19bee7a713018fe9c747f05c317": 7057, + "64e22eb9ade743dfd60eb6f94b431e9c": 7057, + "93f62c75af7cc8b6a7596ffc87db56e6": 7057, + "b0516c50a0ee6740462e09db8613d4d4": 7057, + "f9c3ed69dc61e18bc9919397ad6627c2": 7057, + "12bcfcf1ebb895ec94a4b0e7cfc13c2c": 7131, + "1d66b701890214aee8637ffec4c2ff6d": 7131, + "06e55e8aa543729a2475bda3cc6ff31b": 7161, + "d8cb72cc00c627b8262d3897bbeea7d6": 7161, + "e3a2f9d119e7cfa2a99a5cff2c329c52": 7161, + "f520d2c3cf075a7421efc134ac3dbaee": 7161, + "2244a03a1a09c99ae551743ebdfc04fa": 7228, + "373465c9a7c97c7887f5c590fd13cc5f": 7228, + "7e071c44b548c28a85080023473af872": 7228, + "7eb8023211754766b039e1720deb8f7c": 7228, + "f065998ee5ff631d9a48b4fdae48ac94": 7228, + "143b2362eea1dcf942672ede220269c5": 7242, + "47b3d20e412275d963f91fb4ee4a6a76": 7242, + "55a235174234b32a9c7a35cc31dcc52d": 7242, + "6c06614142c7d78d1e5d3600af098189": 7242, + "a3b3e9f9d973e854174745743e263413": 7242, + "be5b5bed80b054f3512e5ce30c2787bd": 7242, + "630871a5088f02894a743526231fa6a8": 7248, + "0eb7a04d6a974c0a2a86169525a7eb7a": 7277, + "31115a66085f2ec11ef7d49ae2ac3666": 7520, + "569bc88e7212672d045889526503a8e2": 7588, + "570dd1becbe025853b74278b6a2d8231": 7588, + "763e2fc8ada9a534006dc95e62f78cb2": 7588, + "f09eaddd3e014622c3955574aa3c045d": 7588, + "cc42cf12a9431e8ccf548c8da871f7f9": 7726, + "5870755e1652c3c62bf21c319853fb15": 8011, + "8222d31091c323bebee12d33c6b479c1": 8036, + "65f4e6c7698df12b4185b72e2b147f57": 8092, + "9070a50282df3937a9b90358dc97aa31": 8092, + "a8e3f53d818dcabdc83a9f9eb695e634": 8092, + "ae827178307f96b1d1511b637d4c0340": 8092, + "d99bdc0b1e6d146d593e933f74bbe4d3": 8092, + "32bff38b91f5eb2cb523d4266b74f7b2": 8170, + "3bd2253c661ee695a71752a6ea680c56": 8170, + "a7b7948b4c66d9f8aa8330182770ff8f": 8170, + "d1a11c693007251b1e164d89a97a9257": 8182, + "4816ed6cee88a392e3cf18e86abc3264": 8414, + "8e885bbc7f7e7ae4d78d64713553b0dc": 8414, + "102f54d26d14aa6ffb0772f6cb9614d6": 8420, + "2c85dedefc8dd7b49b80774de9793506": 8420, + "6854f25cb4b9e2878d5bb578e3f69e17": 8420, + "82900fd61899e0ab86732f345d388d8a": 8420, + "f2ead54c1ad2618d83a96d8390e25f7f": 8420, + "21006589e9b020f25d865f36056d7c0a": 8493, + "844c4c9da44b85d10a165c6e570445af": 8493, + "ad39378d171c633f2b20b8de89953299": 8541, + "f79056d88c1d3d3443d9a12f76da60d9": 8541, + "151f25d4296b0546bbaa2f29bdc02356": 8617, + "51d17a6f9eeb0f8ced992de5df979e92": 8617, + "531f4b4fbf208c6b34d44d0de12d2dfd": 8631, + "f2f9c2fd2f81294294fcab0460348857": 8631, + "dff8ff02e55b97497fc95150a7d08a30": 8723, + "f4e98b393d39fb6de1ed27ab6fe641b3": 8751, + "28a398f5ca3451b299d7e0eabcf1877f": 8754, + "4bb42479ad9d6cf94f96bfe590a97310": 8754, + "54608d7b322ccc522e199ba7df47d632": 8810, + "58c80a8a4b5f5b25c7c3088889e417a6": 8810, + "950e50b3d6aea80d579c1f5bdc3c5a77": 8810, + "bf5fa7363c17b9d5c1df8576d447f674": 8810, + "1a38180ce4b7d738598587b4828f5154": 8933, + "802d8cb60a60f91709363de8d807a881": 8933, + "384ea9cf71fbf71d268e2992e05910ea": 8964, + "74bef425c52d9d1828a0d61cc562d4c0": 8964, + "8740a03fa9a89e2d68bc306a48d01080": 9112, + "d1203c2c36a1b39b15f345e9d2c999f3": 9112, + "327e4e79a3c6343064bdd3809ca61570": 9113, + "43c544fc0d646443154642efc42e5680": 9113, + "1b71f8db137d5f2d8068911bd580e2fb": 9380, + "5be1e9803a7cbaf39da02e44f9697274": 9380, + "9cddaedff55670d58589aa2e6fdf329c": 9380, + "b1b657218c5839b83ca89cdd73a9c5ac": 9380, + "2b99330a18a48d103654070f5e1d3b94": 9476, + "b4b8c6a5e17a8e31e9bf40298fb2ab43": 9476, + "b5afe6d43abfce5a4a59d578bd1f9642": 9476, + "6666cecba19f641ff91542fece8b41f6": 9597, + "ae5e7ca617fb34c435cb9157b37c1e7c": 9597, + "b3caf22250200c953adc3387df303b23": 9597, + "bedbcb4a9cc11ff8bdaa51eff4511961": 9597, + "2fd8765df61731e7dc20c693d20d259d": 9645, + "93f21e3b0a89987f7a9b8ce5b83c3d25": 9645, + "d0f36c965ffd1576626b912f6987f195": 9899 + } +} diff --git a/data/ngpc_hascheevos.txt b/data/ngpc_hascheevos.txt new file mode 100644 index 0000000..54c53d8 --- /dev/null +++ b/data/ngpc_hascheevos.txt @@ -0,0 +1,8 @@ +10297:true:"Dark Arms" +10345:true:"Picture Puzzle" +11691:true:"Metal Slug: 1st Mission" +11719:true:"Sonic The Hedgehog - Pocket Adventure" +12895:true:"Rockman - Battle & Fighters" +13167:true:"Faselei!" +13350:true:"Pac-Man" +14624:true:"Puzzle Link 2" diff --git a/data/ngpc_hashlibrary.json b/data/ngpc_hashlibrary.json new file mode 100644 index 0000000..c4397ed --- /dev/null +++ b/data/ngpc_hashlibrary.json @@ -0,0 +1,15 @@ +{ + "Success": true, + "MD5List": { + "fe0e58d34d650ae5174ca03d3efc67b0": 10297, + "81d3c10271ad5b09032dd00321b41aa0": 10345, + "4d3efef436c67d4f4e031951b97d64c8": 11691, + "a7dfee9950d0679cabb4ee6dfc530fb6": 11691, + "b8a899ae2b0f1dfa0db5417de745a51e": 11719, + "62ba425e8a32bb953dcf0dc36cdabbf2": 12895, + "c71af75c76778b8a2d32a0c6f170736e": 12895, + "f580078164dc2b8dffb9f38eeec1035d": 13167, + "ac5ad76d5e6614ae576c2c837f0fab1d": 13350, + "9b30216da76c9de87caea93f13977396": 14624 + } +} diff --git a/data/pcengine_hascheevos.txt b/data/pcengine_hascheevos.txt new file mode 100644 index 0000000..72596ef --- /dev/null +++ b/data/pcengine_hascheevos.txt @@ -0,0 +1,52 @@ +12782:true:"Beyond Shadowgate (CD)" +12821:true:"Die Hard" +12826:true:"Druaga no Tou | Tower of Druaga, The" +13134:true:"Sylphia (CD)" +13184:true:"Buster Bros. (CD)" +14455:true:"Gokuraku! Chuuka Taisen" +14467:true:"~Homebrew~ Tongueman's Logic" +14636:true:"Cho Aniki (CD)" +15684:true:"Final Match Tennis" +2145:true:"R-Type" +2242:true:"Dragon Spirit" +2260:true:"Columns" +2271:true:"Alien Crush" +2274:true:"Blazing Lazers | Gunhed" +2275:true:"Bloody Wolf" +2276:true:"Bomberman" +2279:true:"Bonk's Adventure" +2280:true:"Bonk's Revenge" +2285:true:"China Warrior" +2293:true:"Dragon's Curse" +2301:true:"Keith Courage in Alpha Zones" +2303:true:"Legend of Hero Tonma" +2305:true:"Legendary Axe, The" +2306:true:"Magical Chase" +2307:true:"Military Madness | Nectaris " +2308:true:"Moto Roader" +2309:true:"Neutopia" +2313:true:"Ninja Spirit" +2316:true:"Pac-Land" +2317:true:"Andre Panza: Kickboxing" +2319:true:"Psychosis | Paranoia" +2320:true:"Raiden" +2322:true:"ShockMan" +2326:true:"Soldier Blade" +2327:true:"Space Harrier" +2328:true:"Super Star Soldier" +2339:true:"Vigilante" +4855:true:"Akumajou Dracula X: Chi no Rondo (CD)" +5109:true:"Genji Tsushin Agedama" +5268:true:"Splatterhouse" +5515:true:"Ninja Ryuuken Den | Ninja Gaiden" +6026:true:"Shinobi" +6374:true:"KiKi KaiKai" +6379:true:"Salamander" +6700:true:"Ys: Book I & II (CD)" +8554:true:"Toilet Kids" +8560:true:"Steam Hearts (CD)" +8708:true:"Jackie Chan's Action Kung Fu" +8742:true:"Shiryou Sensen: War of the Dead" +8865:true:"Gradius II: Gofer no Yabou (CD)" +8979:true:"Gradius" +9174:true:"Cotton: Fantastic Night Dreams (CD)" diff --git a/data/pcengine_hashlibrary.json b/data/pcengine_hashlibrary.json new file mode 100644 index 0000000..35e4d22 --- /dev/null +++ b/data/pcengine_hashlibrary.json @@ -0,0 +1,136 @@ +{ + "Success": true, + "MD5List": { + "a9bb49d6cbb338e2195d8735097ccf87": 12782, + "45195abbbdaff8dd8d8c521b84f1698d": 12821, + "487029035f0d6c434cbc412fca951dab": 12821, + "7dd298a6e9f2abce6f85d262ec37f483": 12821, + "9a0de117840a3aa9baf7c7e7eb5546c8": 12821, + "bccc45446bdcc231d8edb4475c4eceb1": 12821, + "8da3885d9c6674f33cf9bac28905d249": 12826, + "d730c92d7ea53fd5b85f012b1ea5ddbe": 12826, + "da7fa7e120ca1d6c0817bd557ec034d2": 12826, + "df4fa7ddc1a4e8cc29dc67e700b2a55a": 12826, + "979c98d2ab744520ba3a8a8d93c0571b": 13134, + "1cb4520e76f34ede3dd46833183a139f": 13184, + "144eb9109d75c8fd1fa09a20bde6a6cd": 14455, + "153353cc3062d510602442f320ed38c1": 14455, + "c0a85b8bbc05b75db448ba76faa16b75": 14455, + "15107f07c3b7a65a7e784add44349961": 14467, + "2480d1a5475973b3032f164ae857c7f1": 14467, + "45fd2a4d3922dd40d3852d42a0140e84": 14636, + "595364eede949021345f1f7735e64355": 15684, + "8f7cac9be3e6d02035b0df0f215172cb": 15684, + "e161b34d6bcdbcfe582f943b2eef5715": 15684, + "f653c0187a38fde5a8d233e905dd92c9": 15684, + "0e0040142b5227f2b85be27364d5ea01": 2145, + "e979d36123dc30282a5421a24aa639ec": 2145, + "1fe13078c7aba4ef0777d5a470d56986": 2242, + "82ed74509cfd2e32dacd2f05d0caf16c": 2242, + "6e0c2c5ebb0caf13a4ba59b653ab55ef": 2260, + "a3a1be9fc3baef5e7bc6554962aea55b": 2260, + "0088d1d20861490677edb147d2de60bd": 2271, + "b79b937168344378a03c58b20c2df304": 2271, + "3878ce81ce2cd9831095a27be0843664": 2274, + "3c2f85fc7898de73a7c789033d22b8f5": 2274, + "f19869d1823a28e8472452baf697cf56": 2275, + "22945308eb41396f39c00444be9f251f": 2276, + "3aa21326050c489ea867de05dd6cb7e5": 2279, + "973d65b9e7318461155bb888bf204a94": 2279, + "4db83789bd1597b9c2e423124ef5d98d": 2280, + "dd97fe7e1572fe65fcb44e2757764b16": 2280, + "60bb0116b706fc30a76840ed0b5da458": 2285, + "97df44641bf65728d1df5cfff39b72e4": 2285, + "1d7fbd0f8aed6c7fe2cd2e66a17973fc": 2293, + "35a1e82ff6b15c20f05fe5f02b8aa0a4": 2293, + "55153240fe1d0076c4f759b82f2d7e3e": 2293, + "e5309b10903ccc3032c2f919e8db7384": 2301, + "e86650c9602267f205e446194d990fd4": 2301, + "adcc100fec026c8b150a9e0d35afa050": 2303, + "cfaa094419809446cabfe739995e22ee": 2303, + "09f944f6c28cf77d17dd668e9cc160f7": 2305, + "0a123d34a3fa9466d35809564c7007aa": 2305, + "aebb01821eea22215eb7ebec67c8fe38": 2305, + "f69b506237ce7d05e7f839d2cc96ab5a": 2305, + "74d9f1bd96ba2690ed4cb989ebaeb948": 2306, + "8490d4d444c5faee7015cf653baccfaf": 2306, + "03d0442df107c97bb04c32de7cb7f5bc": 2307, + "e7f686c6767a2ecdc6f4ffdebcfac8b8": 2307, + "1b10baf9f65c8339a507e382bda5ed44": 2308, + "c4d19abde0fda132c1c4f5dbf20a53e5": 2308, + "08ae173878d8a3783fa35e80c99a5dc4": 2309, + "524d53d8f6fe5c70e92d1c349a353a2e": 2309, + "a45114b563320d13f25cd3a74c4425b1": 2309, + "c7abe50a33a7988f78f68973556a8d82": 2309, + "eb0789088fc70be42b2f994c1b66be21": 2309, + "7ac403ffd11ddf3e81720b86ddf627af": 2313, + "7ed620b8a4a302dde75f074eabd4ead8": 2313, + "adecf9e9d9be8a300818ad2cc09d49fe": 2313, + "ecae850f720be11410dd81542ff22c56": 2313, + "407b7e772f86fbdfd90f1e4ac087c03d": 2316, + "5CC45BFE5DA979C51417E77BFE221A2B": 2316, + "307403e27f10ccd6cf191f9dda26b77a": 2317, + "f9fdabcefa6e69aba547b1a5113a133f": 2317, + "0203c5d45b88a04e8d6c9427b5d61400": 2319, + "a53f17bc3492e89c391e280e32397450": 2319, + "c23ef1ca95a5aa6789c4172ac66d6b5d": 2319, + "f37324d7823329e19eb188dd51213a22": 2319, + "0130cadd63106052088268befff61278": 2320, + "242eb96324769cb4278ff0a6722b55d9": 2320, + "42a5e13cbfab0c54d30f8ca6831f62ed": 2320, + "5d08e419351cf3ee85e6536070cbb94f": 2320, + "57c888f4af792dc4588a2f9dbebea31a": 2322, + "9093143f244b56eb4b93d210c9c80f87": 2322, + "59d23b7af39ea827eceb1d7e2cc363c0": 2326, + "e78e5212d85d614060ae31135e4f4bfe": 2326, + "2c476453f2156c7afe10b5ed1fa60955": 2327, + "91985b2b4da8311db93a24f04478982b": 2327, + "a807e75e2cb7aef491d5359a26426f6e": 2327, + "b87aba8faae39f238a8b2176daec96f4": 2327, + "42eff97f4d1a93135ed9c5be516622e1": 2328, + "bc7d4b0852d04fe49f6e3705b899c5e5": 2328, + "4333192a22a121772356d3821d445a69": 2339, + "589f7ceb0bd851f6442e53858a0dc51c": 2339, + "a436b36f115a8114141862406c610c6b": 2339, + "cc15cb59e9425e28c50a2b7fb7259906": 2339, + "e7f9551698c91b7a3ec3c3d840628940": 2339, + "dc5a0e432c9e8a9ab9f514b729b574f3": 4855, + "4a0cee3266259ccf437181dd37116a5f": 5109, + "e194791e1c3d709c7fff4b8c808b65ab": 5109, + "41fa449dda32a22307cd9e5d02b6160d": 5268, + "c0001e91ba486e0e43d1373e1b54f682": 5268, + "e7fc6d455247c63a7b3fa6a8a090d9b3": 5268, + "ea2eaf7aa11a639d13a6119dd3c3f6dc": 5268, + "ee1fe6d4f2ccf49e5086dada57edf5c2": 5268, + "f6690ec0f440ced641718d6bc52e3fbd": 5268, + "319ec97f9d3ae11e1d76c959421d19bb": 5515, + "80498e6a60d2cd9aa925f45cbefbff83": 5515, + "1659d9fa2ed7628d342fd7c7fbe6d439": 6026, + "7cbb5ad9ff19f1b5c538e09a988b1065": 6026, + "d2f19d15f81de2b1afd90726ca9c8811": 6026, + "0d6de0fee8ef07c96c94275623ce98d1": 6374, + "b345329df7acc1938c291440dd1ed5ad": 6374, + "3c60a87ef4f90b20e149330e26253f4d": 6379, + "a962310295a2abe084acdff41dfaed4c": 6379, + "e9f07a66e2e793bdbf8538ac110bfb7c": 6700, + "7759f9e0a001483ae1fa2ea2a186e4c1": 8554, + "c3b2b9244837ac46206c7b67291edf96": 8554, + "ef73d4d3e1c73f0bdb821c1d1eac53f6": 8554, + "8c6b0f93db82c2de485e8c63cd65570f": 8560, + "3bd2ca1f224368a5df255b97903ef967": 8708, + "5a8c0f70f333ff03c8eb836eeb5f2ff9": 8708, + "730d3d5d8792b0897f534d9a42d9c3a2": 8708, + "1aa52f0ad0abbe914e13edda8bcf5661": 8742, + "5fb0ef737dcea6a7cb8df0fbcd2670b6": 8742, + "c0e606b8ecb1c64b01ddd062e54672b7": 8742, + "cfd7fc43a9664979685b8e4358e4555f": 8742, + "ecbd032873e2b30ed0bc25d20505a8ed": 8742, + "190ac11eb121e8a47b26dc09502cc0f3": 8865, + "16fe78b1630a790bee6755e3c850a366": 8979, + "bff0dffcbc2c3add3bf0b670d2a137b0": 8979, + "1e17a1196f3ba16a35c4dbce71071306": 9174, + "38514d361500c7819cf473eedf9ba89c": 9174, + "5b7f355b3edaad4a86294d718f1c47f5": 9174, + "a302ec6b1d15af16487f2b5266f66fc5": 9174 + } +} diff --git a/data/sega32x_hascheevos.txt b/data/sega32x_hascheevos.txt new file mode 100644 index 0000000..569a649 --- /dev/null +++ b/data/sega32x_hascheevos.txt @@ -0,0 +1 @@ +true:"Knuckles Chaotix" diff --git a/data/sega32x_hashlibrary.json b/data/sega32x_hashlibrary.json new file mode 100644 index 0000000..57d412a --- /dev/null +++ b/data/sega32x_hashlibrary.json @@ -0,0 +1,6 @@ +{ + "Success": true, + "MD5List": { + "47b1095e68b053125cd2cd5b1ac4eb50": 10023 + } +} diff --git a/data/sg-1000_hascheevos.txt b/data/sg-1000_hascheevos.txt new file mode 100644 index 0000000..dda1a56 --- /dev/null +++ b/data/sg-1000_hascheevos.txt @@ -0,0 +1,8 @@ +12363:true:"Girl's Garden" +12408:true:"Ninja Princess" +13951:true:"Dragon Wang" +13991:true:"Gulkave" +13992:true:"Sega-Galaga" +14030:true:"~Unlicensed~ Mo Yu Chuanqi | Knightmare" +14188:true:"~Unlicensed~ Rally-X | Du Du Che" +14474:true:"~Homebrew~ Snake" diff --git a/data/sg-1000_hashlibrary.json b/data/sg-1000_hashlibrary.json new file mode 100644 index 0000000..c1b2b55 --- /dev/null +++ b/data/sg-1000_hashlibrary.json @@ -0,0 +1,15 @@ +{ + "Success": true, + "MD5List": { + "ac95c0655360f667e3ad705e2eb7367a": 12363, + "28d83150c298bcdae6aec51cc2c6975a": 12408, + "0528eed7e7ae46ec8298098f1a22d18f": 13951, + "64d3cc8117292f6d5af8e1aad95bcb90": 13951, + "43c23a134aec3ab424405780ff729d54": 13991, + "e2619cf7c307ac1916c534519f6043d9": 13992, + "7fe0bb81a812667f73a0ef5876cc30ac": 14030, + "e0321cd713ec1b48ff88f7df13e3ce28": 14030, + "3071f939aaa0911fc0907aae5daaa160": 14188, + "3bec2aa3d11a1d1e9b1de9dbef6b513c": 14474 + } +} diff --git a/data/snes_hascheevos.txt b/data/snes_hascheevos.txt new file mode 100644 index 0000000..4eaded0 --- /dev/null +++ b/data/snes_hascheevos.txt @@ -0,0 +1,572 @@ +1000:true:"Looney Tunes B-Ball!" +1002:true:"Lost Vikings II, The" +1003:true:"Lost Vikings, The" +1004:true:"Lufia and The Fortress of Doom" +1005:true:"Lufia II: Rise of the Sinistrals" +1012:true:"Magic Sword" +1013:true:"Mario Paint" +1016:true:"Marvel Super Heroes: War of the Gems" +1021:true:"Mega Man Soccer" +1022:true:"Metal Combat: Falcon's Revenge" +1025:true:"Metal Warriors" +1029:true:"Mickey's Ultimate Challenge" +1032:true:"Mighty Morphin Power Rangers: The Fighting Edition" +1033:true:"Mighty Morphin Power Rangers: The Movie" +1034:true:"Mighty Morphin Power Rangers" +1037:true:"Monopoly" +1038:true:"Mortal Kombat" +1040:true:"Mr. Do!" +1041:true:"Mr. Nutz" +1043:true:"Musya: The Classic Japanese Tale of Horror" +1049:true:"NBA Jam Tournament Edition" +1057:true:"Newman/Haas IndyCar featuring Nigel Mansell" +1069:true:"Nigel Mansell's World Championship Racing" +10701:true:"~Test Kit~ SNES Burn-in Test Cartridge" +1076:true:"Olympic Summer Games" +1077:true:"On the Ball" +1081:true:"Out of This World | Another World" +1082:true:"Out to Lunch" +1089:true:"Pac-Man 2: The New Adventures | Hello! Pac-Man" +1097:true:"Pieces" +1099:true:"Pitfall: The Mayan Adventure" +1101:true:"Plok!" +1102:true:"Pocky and Rocky 2" +11021:true:"Ranma ½: Chounai Gekitou Hen" +1103:true:"Pocky & Rocky" +1104:true:"Populous" +1109:true:"Power Rangers Zeo: Battle Racers" +1110:true:"Prehistorik Man" +1112:true:"Prince of Persia 2: The Shadow and the Flame" +1113:true:"Prince of Persia" +1116:true:"Push-Over" +1127:true:"Revolution X" +1134:true:"RoboCop versus Terminator" +1135:true:"Robotrek" +11428:true:"~Hack~ Super Mario World: Christmas Edition" +1143:true:"R-Type III: The Third Lightning" +1144:true:"S.O.S." +1145:true:"SWAT Kats: The Radical Squadron" +1146:true:"Saturday Night Slam Masters" +1147:true:"Scooby-Doo Mystery" +1149:true:"Shanghai II: Dragon's Eye" +1150:true:"Shaq-Fu" +1151:true:"Shien's Revenge" +1153:true:"Side Pocket" +1154:true:"SimAnt: The Electronic Ant Colony" +1156:true:"SimCity" +1158:true:"Simpsons, The: Bart's Nightmare" +11580:true:"Kamen Rider" +11639:true:"~Unlicensed~ Pokemon Stadium" +1165:true:"Soldiers of Fortune | The Chaos Engine" +1168:true:"Soul Blazer" +1173:true:"Spanky's Quest" +1174:true:"Sparkster" +1175:true:"Todd McFarlane's Spawn: The Video Game" +1179:true:"Spider-Man & Venom: Maximum Carnage" +1180:true:"Venom and Spider-Man: Separation Anxiety" +1181:true:"Spindizzy Worlds" +1185:true:"Star Trek: Starfleet Academy" +1187:true:"Stargate" +1192:true:"Street Fighter II: The World Warrior" +1197:true:"Super Adventure Island II" +1198:true:"Super Adventure Island" +1209:true:"Super Bonk | Super B.C. Kid | Super Genjin" +1210:true:"Super Bowling" +1213:true:"Super Chase H.Q." +1215:true:"Super E.D.F. - Earth Defense Force" +1216:true:"Super Ghouls 'n Ghosts" +1218:true:"Super Godzilla" +1225:true:"Super Pinball: Behind the Mask" +1229:true:"Super R-Type" +1233:true:"Super Smash T.V." +1234:true:"~Homebrew~ New Super Mario Land" +1237:true:"Super Star Wars: Return of the Jedi" +1240:true:"Super Tennis" +1242:true:"Super Turrican 2" +1244:true:"Super Valis IV" +1245:true:"Super Widget" +1248:true:"T2: The Arcade Game" +1250:true:"Tecmo Secret of the Stars" +1256:true:"Teenage Mutant Ninja Turtles: Tournament Fighters" +1261:true:"Thomas the Tank Engine and Friends" +1268:true:"Timon and Pumbaa's Jungle Games" +1270:true:"Tiny Toon Adventures: Buster Busts Loose!" +12729:true:"SD The Great Battle: Aratanaru Chousen" +12736:true:"~Hack~ Super Mario World: Learn 2 Kaizo" +1274:true:"Tom and Jerry" +1277:true:"Top Gear 2" +1278:true:"Top Gear 3000" +12809:true:"~Hack~ Super Metroid: Retroid" +12818:true:"~Bonus~ Lufia II: Rise of the Sinistrals" +12823:true:"~Homebrew~ Super Road Blaster (MSU-1)" +12825:true:"~Hack~ Hyper Street Kart: The Road Warrior" +12828:true:"Ranma ½: Chougi Ranbu Hen" +12832:true:"Undake30 Same Game Daisakusen: Mario Version" +1287:true:"Twisted Tales of Spike McFang, The" +12904:true:"Pac-in-Time" +1293:true:"Uncharted Waters: New Horizons" +1295:true:"Uniracers" +1302:true:"Ys III: Wanderers from Ys" +1305:true:"Wario's Woods" +1309:true:"Wayne's World" +1315:true:"Where in the World is Carmen Sandiego?" +1322:true:"Wing Commander" +13246:true:"~Hack~ Super Mario Bros. 5 Reborn" +1326:true:"Wizardry V: Heart of the Maelstrom" +1327:true:"Wolfchild" +1328:true:"Wolfenstein 3-D" +1332:true:"World Heroes 2" +1333:true:"World Heroes" +1337:true:"WWF Raw" +1338:true:"WWF Royal Rumble" +1339:true:"WWF Super WrestleMania" +1341:true:"X-Zone" +1342:true:"Xardion" +1343:true:"X-Kaliber 2097" +1344:true:"X-Men: Mutant Apocalypse" +1347:true:"Yoshi's Safari" +1353:true:"Pinocchio" +1354:true:"Tiny Toon Adventures: Wacky Sports Challenge | Tiny Toon Adventures: Wild & Wack" +1361:true:"Ghost Sweeper Mikami: Joreishi wa Nice Body" +1366:true:"Bishoujo Senshi Sailor Moon: Another Story" +1374:true:"Super Bomberman 4" +1386:true:"Final Fantasy V" +1391:true:"Trials of Mana | Seiken Densetsu 3" +1392:true:"Star Ocean" +13972:true:"~Hack~ Quest on Full Moon Island" +14013:true:"~Prototype~ Rayman" +14026:true:"~Hack~ SMW2+3: The Essence Star" +1405:true:"Dragon Quest I & II" +1408:true:"Front Mission: Gun Hazard" +1411:true:"Live-A-Live" +1412:true:"Ogre Battle: March of the Black Queen" +14120:true:"~Multi~ ~Hack~ Super Mario World: 2 Player Co-Op Quest" +14128:true:"~Hack~ Quickie World 2" +1418:true:"~Bonus~ Front Mission: Gun Hazard" +1424:true:"Super Star Wars: The Empire Strikes Back" +14313:true:"~Hack~ Hunt for the Chocolate Egg, The" +14342:true:"~Hack~ Super Mario Logic" +1444:true:"Super Bomberman 5: Gold Cartridge" +14476:true:"~Hack~ Climb the Tower" +14485:true:"~Hack~ Super Machok World" +1450:true:"Dragon Ball Z: Super Saiya Densetsu" +14553:true:"~Hack~ Super Diagonal Mario 2: The Ultimate Meme Machine" +14626:true:"~Hack~ Ninja World 2" +14648:true:"~Homebrew~ Super Mario War" +14675:true:"~Hack~ HotHead Heights" +14676:true:"~Hack~ New Super Kaizo Bros." +14708:true:"~Hack~ Super Stacey World" +14757:true:"~Hack~ Just Blob" +14771:true:"~Hack~ Super Baldy Kart" +1508:true:"~Hack~ Super Mario Bros. Enhanced" +15390:true:"~Hack~ Super SpongeBob Kart" +15400:true:"~Hack~ Luigi Kaizo King" +15450:true:"~Hack~ Super NicoNico Kart" +15545:true:"~Hack~ Interesting Kaizo World" +15655:true:"~Hack~ Hack" +16042:true:"~Hack~ Super Sheffy World Deluxe" +16056:true:"~Homebrew~ Super Sudoku" +16113:true:"~Hack~ Super Ryu World" +16121:true:"~Hack~ New Super Mario World 2: Around the World" +16187:true:"~Hack~ 1st Kochobo Dourado Collab | Kochobo Dourado" +16190:true:"~Hack~ Senate, The" +16194:true:"~Hack~ Call of Cthulhu" +16201:true:"~Hack~ Super Swunsh World" +16216:true:"~Hack~ Super Run World" +16223:true:"~Hack~ Xalabaias Adventure | Uma Aventura Xalabaias" +16238:true:"~Hack~ Panic in the Mushroom Kingdom" +16473:true:"~Hack~ Of Jumps and Platforms" +16482:true:"~Hack~ Ninja World 3" +16497:true:"~Hack~ Super Sheffy World 2: The Quest for 5 Shells" +16505:true:"Clue: Parker Brothers' Classic Detective Game" +16545:true:"~Hack~ Super Nova" +16571:true:"~Hack~ Zap Lena World" +16926:true:"~Hack~ Mario & Luigi: Starlight Island Adventure" +16927:true:"~Hack~ Robfather World" +16928:true:"~Hack~ Oops all keys" +17046:true:"~Hack~ Mario is Missing! Done Right" +17079:true:"~Hack~ Super Mario: Christmas Season" +17084:true:"~Hack~ Vanilla: Made to Order" +2132:true:"Doom" +2148:true:"Dragon Quest V" +2156:true:"Umihara Kawase" +2209:true:"Tales of Phantasia" +2219:true:"Daze Before Christmas" +2234:true:"Tetris Battle Gaiden" +2237:true:"Whirlo" +2257:true:"Bahamut Lagoon" +228:true:"Super Mario World" +232:true:"Super Mario Kart" +234:true:"Road Runner's Death Valley Rally" +2345:true:"~Hack~ Legend of Zelda, The: Parallel Worlds" +2347:true:"Bishoujo Senshi Sailor Moon" +236:true:"Super Metroid" +2369:true:"Ganpuru: Gunman's Proof" +237:true:"Rock N' Roll Racing" +2373:true:"Magical Drop 2" +2374:true:"Clock Tower" +238:true:"Goof Troop" +241:true:"Biker Mice From Mars" +242:true:"Terranigma" +2425:true:"Bishoujo Senshi Sailor Moon R" +244:true:"BS Super Aleste" +251:true:"International Superstar Soccer" +252:true:"F-Zero" +253:true:"Super Mario All-Stars" +2546:true:"Smash Tennis" +255:true:"Daffy Duck: The Marvin Missions" +259:true:"Final Fantasy II" +2599:true:"Mystic Ark" +2602:true:"King of Demons | Majuuou" +261:true:"Speedy Gonzales: Los Gatos Bandidos" +2610:true:"Parodius: Non-Sense Fantasy" +2614:true:"Ganbare Goemon 2: Kiteretsu Shougun Magginesu" +2620:true:"Skyblazer | Karuraou" +264:true:"EarthBound" +2641:true:"Amazing Spider-Man, The: Lethal Foes" +267:true:"Pilotwings" +2674:true:"Holy Umbrella: Dondera no Mubo" +268:true:"Toy Story" +269:true:"Batman Returns" +2692:true:"Bishoujo Senshi Sailor Moon S: Jougai Rantou! Shuyaku Soudatsusen" +2695:true:"Bishoujo Senshi Sailor Moon Super S: Fuwa Fuwa Panic" +270:true:"ActRaiser" +273:true:"Alien 3" +2732:true:"Choujikuu Yousai Macross: Scrambled Valkyrie" +274:true:"U.N. Squadron" +2740:true:"Coron Land" +2773:true:"~Hack~ Hack 3" +279:true:"Killer Instinct" +2802:true:"Do-Re-Mi Fantasy: Milon no Dokidoki Daibouken" +2807:true:"Dragon Ball Z: Hyper Dimension" +2808:true:"Dragon Ball Z: Super Butouden" +281:true:"RoboCop 3" +2817:true:"Super Buster Bros. | Super Pang" +283:true:"Nosferatu" +286:true:"International Superstar Soccer Deluxe" +2878:true:"Fire Emblem: Genealogy of the Holy War" +2879:true:"Fire Emblem: Thracia 776" +2886:true:"Flintstones, The" +2889:true:"Frogger" +2895:true:"Front Mission" +2905:true:"Cannon Fodder" +2907:true:"Clay Fighter 2: Judgment Clay" +2911:true:"G.O.D. - Mezameyo to Yobu Koe ga Kikoe" +292:true:"Knights of the Round" +2940:true:"Ghost Chaser Densei" +2945:true:"Go Go Ackman" +2952:true:"Gouketsuji Ichizoku" +2955:true:"Great Battle Gaiden 2, The: Matsuri da Wasshoi" +2956:true:"Great Battle III, The" +2957:true:"Great Battle IV, The" +2958:true:"Great Battle V, The" +296:true:"Mickey to Donald Magical Adventure 3" +2961:true:"~Hack~ Super LSG World" +2965:true:"Violinist of Hamelin, The" +300:true:"Castlevania: Dracula X" +3041:true:"Hyper Iria" +3052:true:"Iron Commando: Koutetsu no Senshi" +3054:true:"~Hack~ Hack 4" +306:true:"Mickey Mania: The Timeless Adventures of Mickey Mouse" +3076:true:"Jerry Boy | Smart Ball" +308:true:"Indiana Jones' Greatest Adventures" +309:true:"Super Street Fighter II: The New Challengers" +3122:true:"Keeper" +3135:true:"Kidou Senshi Gundam F91: Formula Senki 0122" +3146:true:"Kirby no Kirakira Kids | Kirby's Super Star Stacker " +3148:true:"Kishin Douji Zenki: Batoru Raiden" +315:true:"Death and Return of Superman, The" +3158:true:"~Hack~ Songs for a Hero | A Lenda do Herói" +3166:true:"Krusty's Super Fun House" +3180:true:"Last Action Hero" +3183:true:"Great Battle II, The: Last Fighter Twin" +319:true:"Chrono Trigger" +320:true:"Maui Mallard in Cold Shadow" +3208:true:"Magical Pop'n" +3225:true:"Mario & Wario" +3226:true:"Mario is Missing" +3227:true:"Mario's Super Picross | Mario no Super Picross" +3228:true:"Mario's Early Years: Fun With Letters" +3229:true:"Mario's Early Years: Fun With Numbers" +323:true:"Final Fight 3" +3230:true:"Mario's Early Years: Preschool Fun" +3231:true:"Mario's Time Machine" +3234:true:"Mask, The" +3240:true:"Melfand Stories" +3244:true:"Mickey no Tokyo Disneyland Daibouken" +3248:true:"Run Saber" +3254:true:"Miracle Girls" +3282:true:"Nekketsu Tairiku Burning Heroes" +331:true:"Chuck Rock" +3311:true:"O-chan no Oekaki Logic" +3314:true:"Oekaki Logic" +3315:true:"Oekaki Logic 2" +332:true:"Zero the Kamikaze Squirrel" +3322:true:"~Hack~ Hack 2" +333:true:"Sunset Riders" +3346:true:"~Hack~ Hack 5" +3351:true:"Panel de Pon" +336:true:"Incredible Hulk, The" +3362:true:"Picross NP Vol. 1" +3363:true:"Picross NP Vol. 2" +3364:true:"Picross NP Vol. 3" +3365:true:"Picross NP Vol. 4" +3366:true:"Picross NP Vol. 5" +3367:true:"Picross NP Vol. 6" +3368:true:"Picross NP Vol. 7" +3369:true:"Picross NP Vol. 8" +337:true:"Donkey Kong Country" +3374:true:"Pirates of Dark Water, The" +3389:true:"Power Soukoban" +340:true:"Wild Guns" +3404:true:"Psycho Dream" +3408:true:"ActRaiser 2" +3409:true:"Raiden Trad" +341:true:"Final Fantasy VI" +3411:true:"Ranma ½: Akanekodan Teki Hihou" +3414:true:"Ranma ½: Gu Choki Ougi Jaanken" +3418:true:"Rendering Ranger: R2" +342:true:"Gradius III" +3430:true:"Radical Psycho Machine Racing" +3433:true:"Rushing Beat Ran: Fukusei Toshi" +3438:true:"Rockman and Forte" +344:true:"Contra III: The Alien Wars" +3495:true:"Shin Megami Tensei if..." +3496:true:"Shin Megami Tensei II" +350:true:"Teenage Mutant Ninja Turtles IV: Turtles in Time" +351:true:"Star Fox" +352:true:"Final Fight Guy" +3528:true:"Final Fantasy IV" +353:true:"Rushing Beat" +355:true:"Legend of Zelda, The: A Link to the Past" +3558:true:"Spark World" +3584:true:"Super Back to the Future: Part II" +359:true:"7th Saga, The" +3594:true:"Super Bomberman 3" +366:true:"Addams Family Values" +367:true:"Rudra no Hihou" +373:true:"Aero Fighters" +3754:true:"~Bonus~ King of Demons | Majuuou" +379:true:"Aladdin" +3799:true:"Super Scope 6" +380:true:"Alien vs. Predator" +3805:true:"~Unlicensed~ Super 3D Noah's Ark" +3825:true:"Super Pinball II: The Amazing Odyssey" +3834:true:"Super Puyo Puyo 2 Remix" +385:true:"Animaniacs" +3851:true:"Super Tekkyuu Fight!" +386:true:"Midway Presents Arcade's Greatest Hits: The Atari Collection 1" +3870:true:"Sutte Hakkun" +388:true:"Arcana | Card Master" +390:true:"Ardy Lightfoot" +3900:true:"Tenchi Muyo! Game-Hen" +3907:true:"Theme Park" +391:true:"Art of Fighting | Ryuuko no Ken" +3912:true:"Tintin in Tibet" +392:true:"Arkanoid: Doh It Again" +393:true:"Asterix & Obelix" +394:true:"Asterix" +3943:true:"~Hack~ River Song" +3947:true:"Undercover Cops" +395:true:"Axelay" +3950:true:"~Hack~ I HATE YOU" +3968:true:"Wing Commander: The Secret Missions" +399:true:"Super Double Dragon" +400:true:"Secret of Mana | Seiken Densetsu 2" +4002:true:"Ys V: Ushinawareta Suna no Miyako Kefin" +4009:true:"Yuu Yuu Hakusho Final: Makai Saikyou Retsuden" +401:true:"Super Star Wars" +4049:true:"~Hack~ Super Demo World: The Legend Continues" +405:true:"Zombies Ate My Neighbors" +409:true:"Hagane: The Final Conflict" +412:true:"Barbie: Super Model" +418:true:"Batman Forever" +4194:true:"~Hack~ Kaizo Mario World" +421:true:"Battle Clash" +423:true:"Battletoads and Double Dragon: The Ultimate Team" +424:true:"Battletoads in Battlemaniacs" +425:true:"Bazooka Blitzkrieg" +429:true:"Beethoven's 2nd" +434:true:"Bio Metal" +436:true:"Blackthorne" +439:true:"Bobby's World" +440:true:"Bonkers" +441:true:"Boogerman: A Pick and Flick Adventure" +443:true:"Brain Lord" +446:true:"Brandish" +449:true:"Breath of Fire" +450:true:"Breath of Fire II" +457:true:"Bubsy in Claws Encounters of the Furred Kind" +4578:true:"~Hack~ EarthBound: Halloween Hack" +4590:true:"Star Fox: Super Weekend - Competition Edition" +4592:true:"~Hack~ Super Mario Bros: The Hunt for the Magical Key" +460:true:"Bust-A-Move" +464:true:"Final Fight" +465:true:"Equinox" +466:true:"Donkey Kong Country 2: Diddy's Kong Quest" +467:true:"Magical Quest Starring Mickey Mouse, The" +468:true:"Final Fight 2" +469:true:"Mega Man 7" +470:true:"Super Bomberman" +471:true:"Super Mario RPG: Legend of the Seven Stars" +472:true:"Ranma ½: Hard Battle" +4728:true:"Combatribes, The" +473:true:"Donkey Kong Country 3: Dixie Kong's Double Trouble!" +4734:true:"~Hack~ Super Kitiku Mario | Brutal Mario" +4737:true:"Firemen, The" +4942:true:"~Hack~ Super Mario World: VIP and Wall Mix 2 - ASCII Art Edition" +4944:true:"Nightmare Busters" +498:true:"Ninja Gaiden Trilogy" +500:true:"Super Bomberman 2" +502:true:"Top Gear" +5050:true:"~Hack~ Super Metroid: Green Peace" +518:true:"Ninja Warriors" +5209:true:"Star Fox 2" +5211:true:"BS F-Zero Grand Prix 2" +525:true:"Operation Thunderbolt" +5250:true:"~Hack~ Super Mario World: VIP and Wall Mix 1 - ASCII Art Edition" +539:true:"Super Punch-Out!!" +555:true:"Shin Kidou Senki Gundam W: Endless Duel" +558:true:"Super Mario World 2: Yoshi's Island" +562:true:"Super Castlevania IV" +5629:true:"~Unlicensed~ Hong Kong 97 | Hong Kong 1997" +5647:true:"~Hack~ SMW: Bowser's Return" +566:true:"Shadowrun" +573:true:"Great Circus Mystery starring Mickey & Minnie, The" +582:true:"Ultimate Mortal Kombat 3" +5859:true:"~Bonus~ Mega Man X3" +5887:true:"~Bonus~ Mega Man X" +593:true:"NBA Jam" +594:true:"Dragon Ball Z: Super Butouden 2" +5994:true:"~Hack~ Legend of Zelda, The: Goddess of Wisdom" +6013:true:"Dragon Quest VI" +605:true:"Street Fighter Alpha 2" +6092:true:"~Hack~ Sui Mario" +6140:true:"~Hack~ Black Derulo World 2" +6156:true:"~Hack~ Sui Mario 2" +6158:true:"~Hack~ Ippan Mario" +6172:true:"~Hack~ Super Mario Bros. Plus" +6190:true:"~Hack~ Kouhai Mario 2" +6212:true:"~Hack~ Romancing Mario" +6231:true:"Dragon Quest III" +624:true:"Mega Man X3" +627:true:"Dragon: The Bruce Lee Story" +628:true:"Demon's Crest" +629:true:"Mega Man X2" +631:true:"Sengoku Denshou" +633:true:"Fighter's History" +6345:true:"Gekisou Sentai Carranger: Zenkai! Racer Senshi" +637:true:"Mega Man X" +6388:true:"Fire Emblem: Mystery of the Emblem" +645:true:"Captain Commando" +647:true:"Mortal Kombat II" +648:true:"Street Fighter II Turbo" +653:true:"Samurai Shodown" +658:true:"Mortal Kombat 3" +664:true:"Michael Jordan: Chaos in the Windy City" +6644:true:"~Hack~ Hyper Metroid" +6647:true:"~Hack~ 7th Annual Vanilla Level Design Contest, The" +666:true:"Sonic Blast Man II" +6714:true:"~Bonus~ Super Tennis" +6939:true:"~Hack~ Super DGR World" +6997:true:"~Hack~ Mega Man X Hard-Type" +7078:true:"~Hack~ Super Mario Bros. 1X" +7319:true:"~Hack~ Super Mario World: Return to Dinosaur Land" +7465:true:"BS The Legend of Zelda: Ancient Stone Tablets" +7642:true:"~Hack~ JUMP | Janked Up Mario Party" +7701:true:"~Hack~ Captain Toad Treasure Tracker" +7791:true:"~Homebrew~ Christmas Craze" +7886:true:"Kaizou Choujin Shubibinman Zero" +7943:true:"~Hack~ Super Mario RPG: Armageddon" +8021:true:"~Hack~ Super Vanilla World" +8060:true:"~Hack~ Mario Wants His Lemonade" +813:true:"Kirby's Dream Land 3" +814:true:"Kirby Super Star" +815:true:"Tetris Attack" +819:true:"Shin Megami Tensei" +8196:true:"~Hack~ Mega Man X: Zero Playable" +820:true:"~Hack~ Super Metroid: Redesign" +821:true:"Secret of Evermore" +8249:true:"Donkey Kong Country: Competition Edition" +827:true:"~Bonus~ Teenage Mutant Ninja Turtles IV: Turtles in Time" +829:true:"Addams Family, The" +830:true:"Adventures of Batman & Robin, The" +846:true:"Captain Novolin" +8463:true:"~Hack~ Mega Man X3: Zero Project" +8476:true:"~Hack~ Quickie World" +853:true:"Chessmaster, The" +854:true:"Chester Cheetah: Too Cool to Fool" +856:true:"Choplifter III" +857:true:"Clay Fighter" +863:true:"Congo's Caper" +865:true:"Cool World" +867:true:"Cybernator" +8670:true:"Tamori no Picross" +868:true:"Darius Twin" +8696:true:"~Hack~ Cartuchito World" +8702:true:"Strike Gunner S.T.G" +8706:true:"~Bonus~ Mega Man X2" +875:true:"DinoCity" +878:true:"Lion King, The" +8782:true:"~Hack~ Prince of Persia Evolution" +881:true:"Dragon View" +8811:true:"~Hack~ Super Mario World Bros" +8828:true:"Capcom's Soccer Shootout" +8830:true:"~Hack~ Donkey Kong Country 2: The Lost Levels" +885:true:"Test Drive II: The Duel" +8853:true:"~Hack~ Super Mario Bros: The Early Years" +887:true:"E.V.O. - Search for Eden" +888:true:"Earthworm Jim 2" +889:true:"Earthworm Jim" +8969:true:"~Hack~ Super Mario Kart Reversed" +904:true:"Fatal Fury 2" +905:true:"Fatal Fury Special" +906:true:"Fatal Fury" +909:true:"Final Fantasy: Mystic Quest | Mystic Quest Legend" +911:true:"Firepower 2000" +9175:true:"~Hack~ Wario's Adventure" +926:true:"GODS" +927:true:"GP-1: Part II" +930:true:"GunForce: Battle Fire Engulfed Terror Island" +934:true:"Harvest Moon" +9349:true:"~Hack~ Second Reality Project Reloaded, The" +937:true:"Home Alone 2: Lost in New York" +9390:true:"~Bonus~ Super Mario World" +940:true:"Hook" +941:true:"Hunt for Red October, The" +945:true:"Illusion of Gaia" +947:true:"Incantation" +948:true:"Inindo: Way of the Ninja" +9481:true:"~Hack~ Ninja World" +9487:true:"~Hack~ Baby Kaizo World" +949:true:"Inspector Gadget" +9517:true:"~Hack~ Backwards Mario World" +9582:true:"~Hack~ Mega Mario World: Another Universe" +959:true:"Jetsons, The: Invasion of the Planet Pirates" +960:true:"Jim Power: The Lost Dimension in 3-D" +961:true:"Jimmy Connors Pro Tennis Tour" +9627:true:"Ms. Pac-Man" +963:true:"Joe and Mac" +9630:true:"~Hack~ Super Luigi Land" +964:true:"Joe and Mac 2: Lost in the Tropics" +967:true:"Judge Dredd" +968:true:"Jungle Book, The" +970:true:"Jurassic Park 2: The Chaos Continues" +971:true:"Jurassic Park" +972:true:"Justice League Task Force" +9763:true:"~Hack~ Super Moo World" +978:true:"Kendo Rage" +9784:true:"~Hack~ New Super Mario World 1: The Twelve Magic Orbs" +979:true:"Kid Klown in Crazy Chase" +982:true:"King of Dragons, The" +9824:true:"~Hack~ Shell's Retriever" +985:true:"Kirby's Avalanche | Kirby's Ghost Trap" +986:true:"Kirby's Dream Course" +989:true:"Lamborghini American Challenge" +990:true:"Legend of the Mystical Ninja, The" +991:true:"Legend" +9918:true:"~Hack~ Invictus" +993:true:"Lemmings" +995:true:"Lester the Unlikely" +996:true:"Lethal Enforcers" +9965:true:"~Hack~ Chain Reaction" diff --git a/data/snes_hashlibrary.json b/data/snes_hashlibrary.json new file mode 100644 index 0000000..4120f57 --- /dev/null +++ b/data/snes_hashlibrary.json @@ -0,0 +1,1468 @@ +{ + "Success": true, + "MD5List": { + "9cc7336325379139afc58d12a776696a": 1000, + "6808b453828d6a6f228e3225055df4c4": 1002, + "bc627db3e168a9f87c038d530825c994": 1002, + "0113ea2e60f90bf1c79be5545cbd466d": 1003, + "402347c45af9310afa944cd2b88722cd": 1003, + "67e4617fc9c17572b7b27386a3f7e766": 1003, + "7c6990bbacc9e3202ba39c8f37d0bdbf": 1003, + "dbd58a2c35e4cda603b6238cda0dc6a0": 1003, + "ef5177071bba689c0a90d2639854b7a5": 1003, + "4bbaad6abdfc9f05d2d8dde47df8b15d": 1004, + "c909e6fcb5e8214a5aba163761c05d42": 1004, + "0f1353cffeb2aa3e6557a369ef598e74": 1005, + "1e414bc0432792cb5203a11ef37ee17f": 1005, + "6efc477d6203ed2b3b9133c1cd9e9c5d": 1005, + "bf57e03293d2a09ece8a83177dd78a99": 1005, + "d7b17796c17749485feac614a2598344": 1005, + "a5867837a80e91c4b65d9f2b2e801e2d": 1012, + "ad7349eb7afd3d809161ee70bd2c361d": 1012, + "d043ccc5b99bdafcdf26e4fe971ef910": 1012, + "881d3772a3eb37a8a0fb254e940c6767": 1013, + "39390dcffa6ad268a14d40d9ca4ffb2e": 1016, + "44be7a129e29264657b9c33f6820d332": 1016, + "d3c46f884c50f50236639c5f6303eef7": 1016, + "8df2719b0c7c5a66a1e356c78b31652d": 1021, + "9e886f686da276b00c4671967d396a79": 1021, + "44a7735d6dceed9fb4eab61113daa410": 1022, + "d4bc4f3cb46cc09d8db58f0ce0142646": 1022, + "1b1282421d39a473f634958c28dca0d4": 1025, + "589f5449a76c4e8797abb0a663001542": 1025, + "b6630c4fee7a20414c4751bb7eb558c3": 1025, + "37aa5231c5576678b244fe913254f518": 1029, + "bdfcd02f353bc9745dda4556fb7db08a": 1032, + "6312f48f6fd194b7eeb1f948b1ece8c3": 1033, + "6e42f4a35e90d7dbab12a8dc69beaf5d": 1033, + "f184e696c1fb1c984e530f504eebd234": 1033, + "6fc7d9663c350799d8f0b6168691385a": 1034, + "c0a6ae7a3cff034232cb23d765bcb36d": 1034, + "c9b52f5fbd52c36076506c33ebf526cd": 1037, + "f478e1eddc87352ed35205d6cfe017ce": 1037, + "0934878bb5ef33f25c1fcaba18a1105b": 1038, + "33f0b1b8b0663fdb691f9d02c0f3f692": 1038, + "b78b3b12bb835ce4dca5a3c5db0bbc59": 1038, + "bcf52b016559d371eefcd216781f40cd": 1038, + "bf433b35bbf9fdf1373bf6999e09d9a8": 1038, + "8f78bae5a538946277c960f71fed904b": 1040, + "d56a5b300959ab7109e7d854c916fa49": 1040, + "f5889db38b2152fde80258c3a89f6a83": 1041, + "87388c5a9ea98b215a29727dc4294c05": 1043, + "503965fc09952186f79dd89d730d8d7f": 1049, + "4306e1dfa9d4ca381775b10322b6dc5f": 1057, + "af96904815cd2f8811bf25e7841b651a": 1069, + "e3b0efde9da342ea567a0647b162162f": 1069, + "eaeadf3718805132ac2348c6bc093563": 1069, + "0e5f788550ca1fad8d4e5034d9964307": 10701, + "8ab1fe6f37d3c826b01a09be6c36933b": 1076, + "f082072b16e7ed337503ec4df334171f": 1076, + "1603769868776e12bb9876f7fbeb3112": 1077, + "27547be412e441cfc7ac11be3634805a": 1077, + "7a5c2c67bfe548289794ea05d05771ff": 1077, + "8b8acdec1c2345477ddec5516413c2a1": 1081, + "eca6ce2559706e1ddfb23e933818a465": 1081, + "5b795b62c101c12026257644fd813359": 1082, + "630af84d172b4baae8b0e70c1e0ea793": 1082, + "ed318ba5888f6e50851f166fee7023e2": 1089, + "f0da10d1a7311ffdf1270dfb38ca3dbb": 1097, + "02cae4c360567cd228e4dc951be6cb85": 1099, + "4f7dc927180e64c2722eeeb87f3ad8cb": 1099, + "6afd4437a7b62528e0fff7a5bda5ef92": 1099, + "6dc07497523535392d1141812835c1b8": 1099, + "478a2723ff6db38428d9b26cf0d504bf": 1101, + "05d1da17d64cc727e5efaa4ecc72b4b3": 1102, + "3cfa988d8b0bab8c04af70f24fb7ee90": 1102, + "b31405c70bd5113368076fadfa2872b8": 1102, + "31e5dd5d182d4e82455fd0160f5f4017": 11021, + "37453d3e43601bc7c4b3c6fae4cb1397": 1103, + "be3e7907aebc9da95c061b9f45cfab59": 1103, + "e74e067787723bc54093a9c03f290e5d": 1103, + "6f9294b5f83d777def17a801bf02df01": 1104, + "1b92a6e65433de62272d32aa3cf28e52": 1109, + "fbe14d670f28fa5c67c00dc551204838": 1110, + "8eb86c3a88c4faa2cb17e53854f665e2": 1112, + "e16cb90295703d01771a87ea51f29ea0": 1112, + "6f49df735cd2cf9d351d549f1cbfdaa9": 1113, + "8ffc8d34bc75bc049122894b4292eb85": 1113, + "abca51c8ed56d15aa25c8c3eebe5f65c": 1113, + "afb0ac757692243be9fe1725c98141db": 1113, + "a2eaa3a65d1a82ad837274980c105278": 1116, + "b4745109dfb032675c6a0cb83598607f": 1127, + "2ad4d6968d6be1727f198475497e8069": 1134, + "3683319beeba73ad6deb851ef72bf3d3": 1134, + "e85702f5d32e03a7cbae1154ee5083ce": 1135, + "490e911ed23a5c4ef17cd06aadb02111": 11428, + "7135d26a7d25bc0175858347a1eef8dc": 1143, + "cb4a282e8a7bde5e16103c4136f9491e": 1143, + "8390060497fa77efff7c1b2fb2ac1ca4": 1144, + "e49ae43bed71c1f9dc568936c83d28ee": 1144, + "8e9e2d07222dcefa13adf2bab05b1776": 1145, + "59361b30b09dc94163a654616e328185": 1146, + "7985e1aafa853723320aa7fdc143e78a": 1146, + "c8dd52b075e1681f590d2f97ab5b4d7e": 1146, + "db823809ba2853e17aa202ec1a9e57d5": 1146, + "9d180decdc39239518f56c36b4102b21": 1147, + "5ce8eb4f5abcd37c985182e05a26acd9": 1149, + "72ea79d6da4349eefff22e5d990ba368": 1150, + "9ad77707da7c7e4913a1644b3b6cdfd8": 1150, + "d28b7b7270ba79011e7224b979de109f": 1150, + "5c58a7ce84bd3c1b3044563ccad01e58": 1151, + "10e339039df1185206e2b8a236af9248": 1153, + "e2638e350cd789073465f384bb484144": 1153, + "330f18b975341a10ee1d36f7a626330c": 1154, + "23715fc7ef700b3999384d5be20f4db5": 1156, + "2f1c1a70f2268b4c37e2a095a9be0058": 1156, + "4832fba3682437ea96bce0af5c08930d": 1156, + "7190c6764031e2e8a208d47bd0e25caa": 1156, + "d0142f63a3dee58f97c21d939b6dbd60": 1156, + "fbb0966e5f977af9e3f475c3da667526": 1156, + "46f0592d48e056b8008c72d64a3aa8ea": 1158, + "5f8c3fd37130d9b80f1d98d1b7034161": 1158, + "fb992889669c10f98854b1c816b65e9d": 1158, + "d5e83ce15bb7895376ae59eedfa2455d": 11580, + "3e5a2a7d07826140792aad45b7c76acd": 11639, + "f6afe62ee85f004b35c36b8f92944cae": 1165, + "4fee6a2421a55fda96040abb17e147c6": 1168, + "660b8392c9b24bedd94d6c1a9f600c78": 1168, + "83cf41d53a1b94aeea1a645037a24004": 1168, + "ec832df9d0474b26d2a88d9f9c9f10fb": 1168, + "f1eedeb77a77d59476f33847f3275fc9": 1173, + "03b64e37d5b5f8b92e8681940f2e0f75": 1174, + "38bf344adb532b01b9f72786d6babb43": 1174, + "e00ef4c1b9e17d5fa2d8367402d28a08": 1174, + "fa499b552c4c9cccd089802147b5dcd5": 1175, + "c4f2fe9b3ec4fc5c9c5d1b8ae1bd8054": 1179, + "07f817a784c393b381db699a046fa4a9": 1180, + "7d375a622079b12feb42e26ba080e4a6": 1180, + "fda5a7e07a3f67f848b30ab76ae122a9": 1180, + "038ef30004f4d6fc77576878b1743bf8": 1181, + "4c0fce9368b807e09df98f5bbbc047ce": 1181, + "7d33a268efb97562a9b25e3a2cbc65fd": 1185, + "ee04e40432b2e60068eac344e790eea7": 1185, + "8d4249cf09bb6e63a7ef4b80d05da2ad": 1187, + "7ca258cc2ae3712986017777164faf1c": 1192, + "a5adb1ab3daa665a58ad6ad1111d8f5b": 1192, + "be7fc84ac1151b99ad48329327e2aaa7": 1192, + "b4e732b3d742af1791605bcd7aa4a1c4": 1197, + "c9a0d73751e068fa48269728efe027e7": 1197, + "206e6c5c05ac1a83dde21400325a4a7d": 1198, + "947f2b011533f99fe33fd2acffd35875": 1198, + "ba0e1fda3b6a6bdfe788fa85f5a13b8c": 1198, + "3753c4389de6554a00e12a08c4e0035c": 1209, + "8f5daeaf2b698f56e01b52b4e5afafce": 1209, + "50a1a66163020c19cde18685a928a556": 1210, + "8596f1bdbabf96aa39fd29b24917b916": 1213, + "935c5b4e37904435042b3ee17a77950d": 1215, + "96326e88743992d3d7fb71436a55978f": 1215, + "c0e5d653d0bec492117fa4f53cfcb619": 1215, + "13bf9f1963ee0c1c2362d7e9d0806786": 1216, + "18d84019bf24eb0b33221a7236e10d09": 1216, + "19b2d7a555ecef4c453a819e67e61574": 1216, + "2b74444e5a541f90e45e07290331318f": 1216, + "2e64b6c52d7931130231c3261715fffc": 1216, + "4ccd495027bac0a054928c054f1a88f2": 1216, + "fd2b81bb70d82894021de5a08e2b2fb3": 1216, + "403ea414c177884749fe9536d76fdf05": 1218, + "bba4b5494fee0bc353ea691804b4991f": 1225, + "04b0c8978cbb3313112e0647b24336fb": 1229, + "07ed293977b29dffef1b30dd90531cca": 1229, + "cfcd1ff3da5309e5021efaa58012058d": 1229, + "5b5fd4b8df731aaf0e80aa67d8eff420": 1233, + "975074b66b9a993648142e2bcd8a02cf": 1233, + "079ab9c22a0aa40db0b78a04ff954d00": 1234, + "7cb4bf29d8b2ddaec6f070b160da2da0": 1234, + "a43a53a7d737800f0ebfcf29365212a7": 1234, + "ebed74b4e5dde0423c61ae4730a7b6a4": 1234, + "06aa5b85ed1d3bc61d94ece1f96a050e": 1237, + "11bc951a9ac8ac1b073f8d9d55f44639": 1237, + "122ac9afc134df090bfbde77d5377a13": 1240, + "17accf8a0b3d514561cadbdb03715a71": 1240, + "c09b97c956bc42e3b942f9d8a3196686": 1240, + "c9d0fdd7d03a1fdca9f91157a22819c5": 1240, + "635243459310d48bf42e27e5f692e236": 1242, + "578dc3b0205deab136ab5f57d4b4f6ca": 1244, + "84285a12fda6a466df3490a3726724a1": 1244, + "618abbf00946b60da33971199cab5bad": 1245, + "3af126f4b6e5e0af52ecc734fa5d12cf": 1248, + "49a4cf748b491f6e7bdbfc86f2cf4d16": 1248, + "7fd884ca974fe3b86f321ae2d0f9a2c8": 1248, + "d26babb046182e3a564fb1bdddce7e42": 1250, + "1b7851989f649bcfaa3257b78bd3b1a2": 1256, + "7ff74456e38bd6031989891111d5c594": 1256, + "878e95bca6b94b3fa0e72fef1867434c": 1256, + "d34a1d5eb441035da6bc0ebda8dce43b": 1256, + "f009f85c09b421748c8944957f7efeb7": 1256, + "923ec0c22b5083b6e3a32e54f822f4fb": 1261, + "60a86ba313de38d47e17af55a864a626": 1268, + "9b35ccaf117b408d36ff204d4c4955fa": 1268, + "68e83fe143a01ea5a68bbdfc17a34a2d": 1270, + "c1a1e55c83d33b7fe3f4935c7c5af45a": 12729, + "458e8920c1046d37595902b6dce04c17": 12736, + "bc16be2e9c7e170f7cd10da919f3e099": 1274, + "092764f03c61d4f2adc10aff6a1292ed": 1277, + "4704f212be4ff8afb99f2b77ff9fe3cd": 1277, + "5615595c240a5161b531ab30dad96c83": 1277, + "c9fc87528511770db888b28a4c506f46": 1277, + "09387a287def4084571a3f667bef3a41": 1278, + "23eaa07e3f3315fa43f4b4d94ec97a7b": 1278, + "d7daf47df1d1c3f63595968a9ee4b234": 1278, + "67db4f612102c79aa21ffe8d361c7c73": 12809, + "ff4df76cb605ddb4882ffe45bcfe2392": 12809, + "1e5ed4a520339747ba827535dec266e3": 12818, + "5f5d097df9c3501ab05fdcb1f30bb8e5": 12818, + "d088f2e3671e644c1004efb701d3073b": 12823, + "2a025f1fd9404f6128c72c8e527a31fe": 12825, + "55f3c18b1355c09dfaf9dd280193734a": 12825, + "8a9d98d6a25c938fe7144a8f98f3b87d": 12825, + "6c691a426c907211d70e733787db5790": 12828, + "8c7dfc3dc5d13b145fc116dbcb84521b": 12828, + "dc4a45430f1e74c34a440c1882172ae6": 12832, + "f0da6a411d0cf49801e85fe25dbec419": 12832, + "f5fe0c5154a3ecf6ec1d0e279cede468": 12832, + "80d1144dc2d6f7ad5bbbcb1dd448b6cf": 1287, + "1269eeade22c26680798ed6a4262d73c": 12904, + "6fe8db7c73bb14f322ca6045c2fde46a": 1293, + "1066cfd0c6be4dbdfede796751e801c5": 1295, + "02f161518e4b756a5f86e3eb7a0fcef0": 1302, + "c8236962fd9f85f6d1961934166d6bd5": 1302, + "e3b6d00b1ecb0952a6ea63887f464754": 1302, + "f5c1bd28f88529473ab205b3f364def8": 1305, + "45a4bca91f659b9020d9f69faf53ae23": 1309, + "88b5f1a795fcbd1bd5e7eea8f795bf9d": 1309, + "dfccfa0a4411bb0bfb29f777cac53858": 1315, + "19c9a9f9e6835bd2879d8c9bad3830ad": 1322, + "eb0647748e431bca07572cbe13fb2f37": 1322, + "7b11cfe4c1426daf1aa428a88ef3e456": 13246, + "0ffb1c1611f9f23fd646788db607ffce": 1326, + "514b537d3431a1f4a35b48e744d9bc13": 1327, + "7fa59546f74901313958d6eeae4fad12": 1327, + "a7541f6554a7fa1aab250039ce24bcd8": 1327, + "418034d574ebdaea7659b3a90eebef58": 1328, + "44977d39df8c91b4dbbca9b3aac9c027": 1328, + "e807372e95281d5268579283ec3d115f": 1328, + "264be750139cfed8dbe6474842961d88": 1332, + "9000952ad6bc8dda06ba38c9524ae13f": 1332, + "082862713dc4664a53426cd75971079c": 1333, + "8a5ea6e6f32295721f587ae81e965482": 1333, + "6852754ebd4115e1db335b6492586c8b": 1337, + "c9621e6293ab2de3fe03439ba09969a2": 1337, + "7efb87f54aa3ba558230a704a919e076": 1338, + "70eba780bf858588f4d7b58d4f864480": 1339, + "ee3584fc51c6c1de4e5cd796f0652645": 1339, + "a316475dfca41b864b7be021afbcad00": 1341, + "4369249d5f53fb9d70b1915cf533af03": 1342, + "6595db032bf24945df534415fe376625": 1342, + "babbdcd3be4f6b4806e129e0740aefce": 1343, + "0c8d8fd7e695499b86d39cc75e166671": 1344, + "630be0968ab1c7da7ec78725873ea20e": 1344, + "044d6d9860e635d55bbb6192b5cbb121": 1347, + "70db2519602d9d6e6dc6fa0069ed54da": 1347, + "085aef23df7c45e5eab8209345ece4ca": 1353, + "3d946c89e1b62223a505f367babac5da": 1354, + "b4c4d7760020444ae63dbe794e154aa1": 1354, + "388cffcebcd3155cae2f2c5cec1f92c1": 1361, + "1d271a25dee31eed53b71b63330ff20c": 1366, + "3eb474b56cc51b54c004334655b08b9f": 1366, + "9dfa4403d205d4a1f7f09ff597729d5e": 1366, + "d485bf5e99a2fa8f6afef8e1049aab26": 1366, + "aec3e80ae5bc8928d7e758a9e289e01e": 1374, + "df33e261104efee409de8f294d80ad6e": 1374, + "4d8fc9e89befeaa36eb1ee636d6261a7": 1386, + "5245a6ed780d896f416cc8824aa36182": 1386, + "588120dadd3031f02e8ccf8f9a97aa52": 1386, + "9304a04ab5aab54a7b978f8f2658166a": 1386, + "ca3969d5047dba8794e82cf9bd905f79": 1386, + "d69b2115e17d1cf2cb3590d3f75febb9": 1386, + "124efbbc96ed6c987e2e8c46d7c84dea": 1391, + "1ed584f4807ad62948eb82b7b5d5ca0d": 1391, + "2ef86d15f198f18fba109454b1bc1f3c": 1391, + "3ca8d4f59367f906c911b9f76bcb30f9": 1391, + "4de680bc7d4877a27b0f538b456b7994": 1391, + "5a0a3460ed4f02e649dbcd42089f9e03": 1391, + "c9829d76e25f8c4bf459cf77a8306825": 1391, + "d7fff8a9bae88417922419e40c003441": 1391, + "ec876e654a1358d1deb5a0d868680311": 1391, + "fd911993992a685d491440d59be009dc": 1391, + "217a97e694fb916ad26c8a471f6c0e84": 1392, + "3a9127df7780161875769daacf82f118": 1392, + "56dae36934bbd68444f0af7156eb2cab": 1392, + "d686ba6df942084216393ada009126dc": 1392, + "b51e12a9b06245887378332eabea90dc": 13972, + "d613e071ddd175a39d674c07579dcd4d": 14013, + "b5fcbd9ea168bf10d7ea8b7637197dd5": 14026, + "153bf4cd05d8f4bdee2ab734a28b8c7f": 1405, + "1def71b5557cc6bb7402281d888cae80": 1405, + "7dd0c11fedca7ac517c2480533afbecf": 1405, + "b386817a9a69bf97eb52cd589c06f86d": 1408, + "fd473bc0035cadd46b8eebdfa619275f": 1408, + "65884a7aff5949fa171072fd994f29ee": 1411, + "c223de99d22665b62c91e02727963bd4": 1411, + "dc2e53cbf532a14c28f0a3840d65fa57": 1411, + "64a824be35bfbb7797e8cfe6cccc5dec": 1412, + "fc2af7162258233eb9968ab5c0310506": 14120, + "6d21c8d656d526d086d5bca57c7bb005": 14128, + "a8bc41b2b908ab67c923372b29328512": 1418, + "af812672bb012584ab9693b026740cf5": 1418, + "362f44cb1ee4021cf1148a7eeaa81a59": 1424, + "9e9286f8971abe77f34b0fcda8391e8f": 1424, + "e9f47509668889eb21f56c3e3fe3e9f7": 14313, + "bb0fa93ae8cc623a339f484f586a3eed": 14342, + "772ca292857d5bcf1f8776009fa1d280": 1444, + "d130729bd57f4993eabafe3dee78eaed": 14476, + "c0dda0e2f9e731d6fb14b543c2c912ae": 14485, + "0fa7887f1bcde2dd207e20d782092607": 1450, + "108f87638369444ffc2d1c658f523651": 1450, + "7cdde25813be356d186b2e5d750a04b6": 1450, + "95fd0027542f33b84e4548267e2bc297": 1450, + "d8b9a9a2137274a1afd526aaa3fec28e": 1450, + "f303dd6272860a6f4097f2ee20a21e68": 1450, + "130cf2c824fa177aa6c6c7cc64d4cdb2": 14553, + "309c37f76920a13596fb6bd4be569541": 14553, + "c08aaf6fc033c580a53dd98272fa488c": 14626, + "20cb0824ac0614f85d2b48695c32a74e": 14648, + "6f84b80e9f1f85775424175f21ce9395": 14675, + "2249b73becae7796f13bffda0fad1b9e": 14676, + "40f3e4b0150e5c23ca410acb0f4f6e4d": 14708, + "d73a5f78ef1e6adf255fb427a094073c": 14757, + "b03b5ac8afc986a691db08725bdbde7c": 14771, + "9fcf62874594c4db2682d44025b5686b": 1508, + "146eb87e2b10801172e23e0baef432b2": 15390, + "9365e4f357539c7d774d361790c4d7fd": 15390, + "6a0ed6c9587a712503c8aa9a6a1c831c": 15400, + "55494247385e750b4623a7b87debacf7": 15450, + "d03af6698b21402d19c17184eeb78cdf": 15545, + "a4f9367424f896fcc675ed67aa1477a3": 15655, + "4148c19139033f113397846faf52146c": 16042, + "12c29b9324082d273250826b16f5b512": 16056, + "8ca3c70a836aa11ce527dcae923e366e": 16113, + "d4ada8016fa64dfe123d48e9a8a40c3a": 16121, + "c422ea1145352be2fde34b2f01be5b68": 16187, + "50855b025b8684f6e986a6d9cf637108": 16190, + "eab81eff615b4fa1a2f16c8048daf03a": 16194, + "eab4f960d66ae809dbf21186fb85e5b4": 16201, + "863c121ca09121a8f7799ff49f17f715": 16216, + "b0c16ea13d0fa06d7e3f4aae01899a04": 16223, + "81317b808c4365a9df49039e4a133769": 16238, + "360ccb6b72c5f3b79087fb4b4065df72": 16473, + "a9bed25aeab5d2b9530ac10eeebad422": 16482, + "e0ff5e64db4c7ec54e0e7cec0fbc3567": 16497, + "061fb90e60bc8ec8128ae4bb8f5884c8": 16505, + "818b026ad32e33db3b59461baf362b17": 16545, + "eec484f16ebb0e36c3b6fbd9d057c7cc": 16545, + "49a0b5d909d6846b0c6b0fb5683fb271": 16571, + "b153eda959779351a892d59e55a939eb": 16571, + "4e1b1381f50c711b1eeac9dfcec72a49": 16926, + "df95d0b898705af8dc191584b6f61774": 16927, + "348f1d1b30758ea36e100c72b9d98594": 16928, + "292aff880b144a0c48e9952a5e684fa9": 17046, + "920f1de428e78739deaaf605eb6a93f5": 17079, + "f71074be06875a53e73cd95644ec132f": 17084, + "97503ea48f51d65399fe8235155acd7f": 2132, + "e218531fe541b05cf44c2667e101d117": 2132, + "5651c58a1c87c42f6b91519969658a88": 2148, + "a1222de3d989fdafd3311f37d89cd025": 2148, + "d8e95e744e66e7ec30d9591f71dafd0a": 2148, + "5a474de20eca57067104ab00da0ff4c9": 2156, + "abddd496bab9c4fd12007f3125db85cc": 2156, + "ccb3810718ef071ef8d4bdc47d385edb": 2156, + "207cd1c0aaaca29faa389218b800f8fc": 2209, + "3b951e4ae194425d48681dbc45a7fc4d": 2209, + "432ee22993806021da00ec71c11b7036": 2209, + "5ee2aa1282e69f812aa086cfedba759c": 2209, + "8c7439cc0244e22bd27948d65151ae30": 2209, + "9bb90422fcfb32581121a7d8588827b0": 2209, + "b420b8d20f857a891c406a31c1c43d65": 2209, + "cf54bc3ec11e30f2778fe372dcc679c7": 2209, + "eb3a7ef7a7e224ee35b390adc0da45cb": 2209, + "e1e3ce8a9d1b9ccaf059101add37314f": 2219, + "f21e1fefcb3187877060b3fafb53abd2": 2234, + "6a773dc80df7e0ce54540c29cd4fa3a0": 2237, + "496f3f33490a966bb88a4285688988bf": 2257, + "38bb405ba6c6714697b48fb0ad15a2a1": 228, + "679698a7d92e4be3b8019c075e74594d": 228, + "7dfe85f3c7940c40c32731efe0da92ae": 228, + "aa70ce4618fa17069bfd48d4b9928a22": 228, + "b7d331e7ca1b882b281974689b4a47fa": 228, + "c6c455d390ed2b3fe8d07756d82499bc": 228, + "cdd3c8c37322978ca8669b34bc89c804": 228, + "d3f9bd5c50c0273a58e8adf1f2e93487": 228, + "dbe1f3c8f3a0b2db52b7d59417891117": 228, + "e5f63b3802cd0af92e1bf75164038f58": 228, + "1844a58f85cc3a729000fb419275f8c9": 232, + "4f2505b88fbf2f76c75dfe4546c62ad1": 232, + "6c38ed5b0f0c1a759fd8bbba11a978fe": 232, + "7f25ce5a283d902694c52fb1152fa61a": 232, + "ae669ee45742449fdf84bf3348720e22": 232, + "c89ccaadeb22fea8324bef07fef23dfc": 232, + "f0b77632713d84d39153ce26136b9088": 232, + "f7afa112d7ec1d532636703e4b02700a": 232, + "f9fe266e91632e68b558d6b43393eaba": 232, + "18b5e9f9d628fd23cc0ed31ce7089737": 234, + "ef94b014589181d12d566791f8bc8af6": 2345, + "f159d7946d81796e4f2c5b574a1da13a": 2345, + "f43ef6a5ff9b2e4922e76629a701b4dc": 2345, + "faefb815590a2adc786ad1467558e3da": 2345, + "6c6e750e419d6c3db27a708d240d32b1": 2347, + "21f3e98df4780ee1c667b84e57d88675": 236, + "6020d33959b58d33456b56ee70642adf": 236, + "82094ca2db9d6e78c91c88d31d7c0d06": 236, + "8a9749fbc0b0b3c41599096bcd01d77d": 236, + "a0a50cad421c60a4153548c5e44ff112": 236, + "c2e63a2ca2a46411ddbf758ab017f398": 236, + "e23826e57d65c6e4486ba7d5e5dca2d9": 2369, + "ecdf9d31446ba7c1827c96949514a144": 2369, + "0dd6d73652a885c9b90646602b53ac6c": 237, + "1978359063c02ad2badd3c0e993aca14": 237, + "4b01b8c7900ac523351b2cc01870287e": 237, + "ea99d9924329380fe4a0d523caf9d2e2": 237, + "2d24ccefe12fec5e175b6764513cbd1d": 2373, + "064d244986c937a5c4a7aa1cc5496dfa": 2374, + "2fdc765967506940945084ea7f42ecaa": 2374, + "51f8a9e95ec58fa5b9c3ec2da530d598": 2374, + "9247fd94e6909934c5de745c2f3dcb7a": 2374, + "29e2ee08c6b7c1a89a720d7291f76e58": 238, + "615470bfbf276e58d45c7139a6452afd": 238, + "62f678f5679a1daf6da4c72c7e38cd29": 238, + "66688d31555ecfeab50d810bbdc85d0b": 238, + "b1d07a75a113df9c0901573cdd89d2ee": 238, + "bb6a1198e291c8ae58e9581a4296ed4d": 238, + "da639310670e49e75ca3c9610f14dfbd": 238, + "a1f47d45a9e5f93b3f10057d1d0e1469": 241, + "02F21F536CCAD02A316837B4D6A8FB25": 242, + "22913a3a2144007e40b0a87e1565f018": 242, + "249147dae42e78f57d95c87ac884a414": 242, + "2a9f7eaa7defa0acfac3daf0263fcdc2": 242, + "2e6319f2b0697784f87fde4091696d36": 242, + "2ff43498fbb957facf11c598dd8a6299": 242, + "4f3f3c5504a524a0716b965808709118": 242, + "5223853d5edc9856f2bf8a9f04d01d3a": 242, + "5582f830a2833ec20bdb02ec23253ea9": 242, + "5a643ceaa8be44b1dbcc4abebb661b3a": 242, + "5a73738a50e3c60dcd75e9c132c14135": 242, + "5bec2d7ecf3117b479c69cada8ebafa4": 242, + "6CCB32CEEAB9C1A57DC0555F3C4C666F": 242, + "6E06BC4A4F43F0CC69F78A87906F3BBB": 242, + "810c9d84c9b6c5b7be9ebb87860a7851": 242, + "83c9ffc6bba2a297bae9ef4afc3989a8": 242, + "8995FFE9FA821AA54A7C17BFF7647F66": 242, + "8e3c12b70cb0b84e92b4b84f9e822f02": 242, + "988EF692078D136BB1A41737F54CFF50": 242, + "9c243b533b3558c09eb9a48cc504370a": 242, + "af7cf71e77e4acdd59d656dc2aecbc2b": 242, + "b28057b05057d106303910ffa806fe48": 242, + "b77da9e9f59d446dfac0b9e3161ba418": 242, + "d202156549f981f6dafc759575dd6e67": 242, + "d77120ecd774e391d3b974bfb1905246": 242, + "e5ff31229b0b64a3de79f7e1947d8672": 242, + "f6bc236b9e57b09dc464f72ecad07d36": 242, + "ffe82b3201b1116d822eeea25f22fe86": 242, + "39b1e06fae0d6176c6ec4bb98f842eb7": 2425, + "e9edb964870c5435ca45a51c26905612": 2425, + "fe12d164a7607d3f09f14b3c1cf50775": 2425, + "13dc1d8ac79de1a359c857e3c584c340": 244, + "9943b6b85583facb088869db8d6a5f78": 244, + "fbc724d47c0bd7cb7cbc56d42803d1d7": 244, + "c49738f77917e22207568aa69acb20a4": 251, + "13808b9b12b0627f7f1e29c6cb303911": 252, + "15ef4c1cbe9bac8013af65c091c1de2b": 252, + "1632f488d5920d90ed8bf309cd83ecec": 252, + "3d5b0e20d6e9b62078add95ab7e9c5eb": 252, + "40a54730ff47e35dbb4db847f8e0b907": 252, + "6f334790120e1fe1a972ff184d2cfc50": 252, + "93654305e3f24e542a8ad45ff2d704cd": 252, + "9cbcbb4e10469e068b5c5a2db24c65a6": 252, + "a3e3313d6695c7fb93b18c26e31c292a": 252, + "c1e5ba090fe0fe0f62c5f067135110d0": 252, + "11b19c6787212f5cd2c323f60956063e": 253, + "2063c5a948c825bb40d5686b6d7efb7f": 253, + "25310b2b5add818992be3084922abd38": 253, + "53c038150ba00d5f8d8574b4d36283f2": 253, + "669efc8aa7365b5854d3653ab5598dc9": 253, + "91e75245c75c1f498e345cd368309801": 2546, + "b4939c92787efefd6b48aede08973d84": 255, + "27d02a4f03e172e029c9b82ac3db79f7": 259, + "4fa9e542b954dcb954d5ce38188d9d41": 259, + "a63816f5431ebbf51f8463a46f863e7a": 259, + "cd03caa049f8b6fe82d6eb76d73b39a9": 2599, + "3e972724ddbac41dec86035f6ebe9fa5": 2602, + "ae0fbaf3ee9fd66704d9e4f1458114ab": 2602, + "c48199b6996211ac200b8b2daafc18ef": 2602, + "63bbacbf3c899d40bb789f39be3ca1cc": 261, + "78ec0438374b2892bd90692e99501c51": 261, + "a8c26fa9951d764d958fcb1beebe5089": 261, + "b96f969d7a5be96151331f04d7cb36d2": 261, + "186e428570ca0ee7e4f46081416d3326": 2610, + "59146e26b4fd75d74f953037868defa9": 2610, + "4fa977e155ded5192fdf8ea006cf094f": 2614, + "794e91614f4a3c5d6ca53e03eb8d3471": 2614, + "a5dee584b008de1c57745824d379211b": 2614, + "afd06ade29b5270a79199a531b0c7964": 2614, + "5dd2c9f0a933e6a43b7e38e6ef0769ba": 2620, + "037fcf5227a3086cceefe0846bc7e004": 264, + "69777cd39a2372b5fad71d1a05c29d6c": 264, + "6d71ccc8e2afda15d011348291afdf4f": 264, + "a5ee470ad753d22a1c493c7b4bae6779": 264, + "a864b2e5c141d2dec1c4cbed75a42a85": 264, + "d137f359df28265e83456a88fa5ef58d": 264, + "de7327ed6ac91ee655f7fd61ce0f30bd": 264, + "43d5d11a37c66a435fed06aa87dbbdff": 2641, + "628941371d079353adabe00364fb0ef5": 267, + "8dcb216beed58c798b25df55f62218d0": 267, + "b1e59f8246f1ab07670e5f1015189b3a": 267, + "c7bdfa3491633ceac7768b0be923f9a7": 267, + "0f85400d016a5e22764c2d66ff6894d5": 2674, + "11f7218ba5d2d5114cb29c5b6ff2bf72": 268, + "288555a2aafb42b3d44d7b2663d1a00b": 268, + "cce80b0c56d01fd0f5c667155c66b3bc": 268, + "df1d99115ce4a386054b511b62cd5cc6": 268, + "fbce0804aa393ee5b6155b1e7553a5c1": 268, + "fea66a1e992369e8207a217e4c3c817c": 268, + "5ef8e1f3e88c86f149838c569a0c0328": 269, + "672b5c06058ee8d1c28ae36b44eb1d12": 269, + "8eef2ee384dc35849d5dd6a41dcb57c0": 269, + "9f1f54ee804644b2f9c979e5f7ee69e0": 269, + "b5924114c6a1cfdda1a77c93d0de2caf": 269, + "bfac50cdae38c51dff55d15edec85451": 2692, + "1f6b2ff721f8f0d92736d704f922ba37": 2695, + "2e676b7b8f3e6be5f328f460ea25b679": 2695, + "fe5bbd498a173153d5526c5b33979373": 2695, + "079d3e448c3ee99444710c12d903ffb0": 270, + "635d5d7dd2aad4768412fbae4a32fd6e": 270, + "82dbcd513272a5da4e449a58487ec742": 270, + "b6ab4301b160b06750a28d2b6976f164": 270, + "01e6aa7e19f19f0fd48d378edf09d80d": 273, + "09120ba8c0052997481117683b4e70db": 273, + "0f10ec520fbdbb009f97333b59ff8d49": 273, + "69b9d3dd018e52f17f10aa92b7c2fc51": 273, + "7f027688341eb52b84c613d452781f2d": 273, + "fa334afb7485e478ee7471718f8def9b": 273, + "ba6de54bd247cfc74d4ed8e67a6170e4": 2732, + "e11c1d923ea1b2f6a00e5886aa6b6202": 2732, + "affecaf49a6bd32188f62d9ad1f833ea": 274, + "e5156bbd19c27e4000a3371db4dba04b": 274, + "343c90719c67eb68863d9e6f8216b0b9": 2740, + "deae0987acb2bb208952cc1cbea5ce1b": 2773, + "5030f01f9ee63998d75394d85e6e6bf1": 279, + "c9b698cf98f1aede7a87c1e449384632": 279, + "ca82555080c37d8d59aaf60764606489": 279, + "193fbbe49b52fc485981b9f0d0450b8d": 2802, + "19b64f594ffd4c312ffee6af1102ec7d": 2802, + "ca8bb57936611e92596fbf63952d008d": 2802, + "cb5937aca40197fba1e8c4802d0962b0": 2802, + "d6e65b76e6248c1beb45932c7c995f8f": 2802, + "f39faabb923f1688b96a4e8ee4b333ca": 2802, + "13cb6c337b29254fdeae278bc2457234": 2807, + "ed18b3c3b148bcafdbe228e27e89bd2d": 2807, + "a2543e309e1cfa7edfdc13bb30f3d60c": 2808, + "dd909b890fe4c2505d289361368ec22a": 2808, + "cfbd78608d84c42bbc6b7d553dd858a0": 281, + "8a7177724f3e537f7abafedf575776b9": 2817, + "8caab5b80c605461bb961ea508d6da29": 2817, + "cd3b82704652014771ad1b86798676a2": 2817, + "42647bf6fd9c3e28a2542b88c09d2893": 283, + "345ddedcd63412b9373dabb67c11fc05": 286, + "51da200d9c04bb26c3c3e55796d84f0c": 286, + "442ecd86dac68b30ffb0e892aae2ed8f": 2878, + "c5d54f9a75826df2ee41830301227155": 2878, + "d044f97be5fc00bd5e02c935f7e88058": 2878, + "89b5cfee41894d42b5067655b95d38d5": 2879, + "c3fd1cad754256d7a013864d917f47fa": 2879, + "eb8f14b6900a8dbb0599f6fd564efe07": 2879, + "eedd67fdd73a5f6d761da46b9421efdf": 2879, + "c012d50635485789b5a31b1fa0d51af6": 2886, + "b51604def7401af4b71cbaa501b2f00e": 2889, + "7d557d4ee07b3ced3240d636a57b8bd0": 2895, + "e744c9bc5e7eb5715a8a24543eecbc88": 2895, + "8a61ea1d3b53375aae00cc69367dec7e": 2905, + "eb7d8986545e2e54f915e621f088ab31": 2907, + "1967069790f930b0e8b60753058002d2": 2911, + "5927c98cdb4e31d580712223359bdc15": 292, + "6261688f58531544189cb8448e2aaf9e": 292, + "823f3ec75c327c8addb854ff7f646c22": 292, + "e2c47c0754f874b2b16d5f06be3dbe34": 292, + "ef77227b9630cabc3be072ceb6d71312": 2940, + "6145304b25416eb248193eee331207d0": 2945, + "698ec39014f45d1ecea6ecc7d5223664": 2945, + "3f5a432ef53daf9dd40d9e4df49bf2d2": 2952, + "8c19e5107985ed27fac3ad8bd2eb1d70": 2955, + "77a5262c8aa686e8bced2d8ae5f59208": 2956, + "8b3805664f63d955c76291746e361ca1": 2957, + "2f1fe5f94124990c1b292d269916f503": 2958, + "09e06b81b9e203caadfcdfe3d0c9d54a": 296, + "25b6d4da854a9c3dc6ec1f6d0efabaad": 296, + "38855252759a5e7cad8883b06cb32190": 296, + "4b87392aaf03517d3f45ebf06eb2d4bc": 296, + "4d4a09b0db92296cd5f65a08f1f2d95c": 296, + "539a9e7561dda313c0e62486815b4825": 296, + "aa320a1cdf7aba76915cdb812d11a7b3": 296, + "abcd02c28e3318827fec1fdaeae982dd": 296, + "b26254b9c81e97b7398e58096d0c48a6": 296, + "e89351869362e0e8e2c4a1c274fe22f7": 2961, + "5b042f9443d8338e0eb7e2604f9a3363": 2965, + "9a3fbda325a00ffdc28c22393ba2ab32": 2965, + "feeed7666e84d0e23a1c8a4e7401464d": 2965, + "43275cdd632f28f2619854e6f1c5c3b8": 300, + "8633f40194d4ef61458ab8c24c14dbb5": 300, + "b6f4eb1f8ef112982ede66075bc48bfd": 300, + "bef3928cb53e17cb641446f9c3cad22f": 300, + "dc629be2ee515461315cde57210e36c0": 300, + "244e77a77d45d1228363a13b8d6c97cf": 3041, + "32314ad978deecd5fef5ad5e55906d1e": 3041, + "84637fda1475bc7cdcc8f9f351255145": 3041, + "264043e59c24c718c421c0a6b70d568d": 3052, + "c656e7408b5ef8a774ea8b354bf47779": 3052, + "aed218957ef8aee5e6b63ba7220120e3": 3054, + "25079ae8cf72ed2138e6ca781a2210e9": 306, + "4441d7c6dc0b43b769b620ac4dc950e8": 306, + "e3f9cc6d8321fa661a30cabe5dce141a": 306, + "bd6c161e1e23419960561536994a2e1b": 3076, + "59038b900a9b079d2b3a8cab15a62635": 308, + "77c5cb84c9768756c13fa8f956bfb11e": 308, + "81d92bd000f16015c2c031b9aaec0589": 308, + "d25a66477e644b12d8089dc06f19ddb3": 308, + "02c9c7e7914f9808487704e122554d4c": 309, + "0cf58a4e75aec26accf3d27be9b7c61e": 309, + "0e9ac29d22fa4b3faab2b453ca7d369f": 309, + "39fc79b790656e145af9b53cc91a038a": 309, + "3a3ee93db76e2c5ca85df45564f9a9b0": 309, + "68f9192f7d9553327a976662af9c331d": 309, + "e77257db338ff1001c77d753b2605a6f": 309, + "911b6ad146e6bff67f82de466b7521c7": 3122, + "c4b283e04966e9ab9cdc76f51d9969cf": 3135, + "fe37b170c0c868c3aa1d67bdcf9df37f": 3135, + "7bab28c964f9306b161bbef8871e17a7": 3146, + "98498d7844af32050feb2aa452c20e2d": 3146, + "2152cca035b8e3080d9eddb5bea8d94d": 3148, + "9c0e97741d4558578c57e3f79e0adb44": 3148, + "8494f2342d8717c477702cf1c09c91d6": 315, + "d7f8505280eb38ea52c8d1e3712f7c6a": 315, + "dbf576310985b10fa48c6a1c8915b19d": 315, + "e1a4fda6e3f7b704d820aa6a80f261d0": 3158, + "f46eef74bd78ccd64a29028dd5bc4943": 3158, + "1b977c1e3af2666a1d348cc0b9cc4a94": 3166, + "1ea59724da24b4f8cd835ddc60bc957b": 3166, + "46c90dcb8efc0e1c89bcdcdb969146f3": 3166, + "9c4bf518b07a2914e1e12794289eb264": 3166, + "2c22830019d300eef94e52a31f7b9a4a": 3180, + "216de312ea7a62f41e323a7c78815c99": 3183, + "0c249df34bdac1150de2f0db1ffa5569": 319, + "3bdc014de7ed0a7de617a872a13cda70": 319, + "3f0ea63c080a5503bd7dfbe59a1dba00": 319, + "4ac1842287c3db4172148b90aaf90127": 319, + "57ac2f1ae3d9612f2e13f450f88f6170": 319, + "591582b6066dd57e7b0ee3338019f602": 319, + "855dc0f809b2e6b615b3cc705c42dc25": 319, + "9d56fb54af198d43dcd62550767999df": 319, + "a2bc447961e52fd2227baed164f729dc": 319, + "a326a96684e8e96f262eba4a729c16de": 319, + "ba44e14be4455f016e077a66bf126d8c": 319, + "bc55726c265dfff1fa23b4996fd94437": 319, + "d226d3c38d068cfcab552ce5b64b105c": 319, + "d555a230f7fdfaa2518de2edfe6ca726": 319, + "db93cc6dcca87aa46e662338e28fe848": 319, + "dedb5794e3b00473777852a75520278a": 319, + "e5a720b2304e2d30ca85c5ce52a2e765": 319, + "f65b12390ca5c55ba37d2eefbc4f737b": 319, + "4890095da7da5dc90112ad6b7e0976a8": 320, + "5ece56f9a92f4c243ae9311b9e1965f0": 320, + "9e87ec65114c37b4ad6362c80fc28b89": 320, + "18e273ec3a83a25986dd8e7763dc62d9": 3208, + "e47f184fd5d2285bcc4ee07d990f5375": 3208, + "604b3af2b55fb14a61a9c736a4420037": 3225, + "b1774f03700dfc311bfd86411db629c3": 3225, + "2a2152976e503eaacd9815f44c262d73": 3226, + "3253fbf00a560ed8cafb5d603b25e42e": 3226, + "d5217f2137a4f4df63d83264a9a92bcc": 3226, + "34255c940ffdafa25235a7b3c9093186": 3227, + "a38f7575e15258a7dfe2faae7638a2d6": 3227, + "18db415de1a6eaf478852bd1f1f63c3a": 3228, + "d097b8f2871522c7c1d2bbd18e7c9ad4": 3229, + "1288de058352d6f9c3ba146a61581555": 323, + "3561d8252459e3296de17e81f1c00d35": 323, + "488e275f8c35e1393e1a61fe94e02dee": 323, + "4b78f90a4363e63208c3b8d7a1db39db": 323, + "d3345c674dee52c654f6859acde2ed1f": 323, + "d67b06024914bb0ec0bd2f04fba75169": 323, + "f6f08f33e3a5b92f30a5c47db9eda75a": 323, + "32b01a3af01aaaf7c65ba5d193e00050": 3230, + "b3b68501b890b87074e8aa9e4e7adf72": 3231, + "f20ee859055845bffd2b3d1b2e9a4ec6": 3231, + "ab93c401a780abff73c529cf81dd5c7a": 3234, + "b76d8cc24a6965823b42d546f528730f": 3234, + "c918a40bb2b3f44f3468d6a1ba0a5f88": 3234, + "0b3fe2b7c34687107e91497f1aa8705a": 3240, + "3f26c6bfad366d6fc84666d7d5e22c2f": 3244, + "673c149e6c72fc7b258f32e7d981ca6f": 3244, + "bf356060c13d1a841e6b3342d1e9c981": 3248, + "0f7d28c1750dd44cd9da198bd3fe2ea8": 3254, + "a1c9f6e6191d483f33f0369fad43ea22": 3254, + "539a4a95e95fa890ee35b9988f0da888": 3282, + "5b403d2786e96cebdac9ad459855a217": 331, + "b6117d7ae13c9afc785d5b6b0afd8bae": 331, + "d193b7ee202b26c11eaa0ecbce03ba38": 3311, + "1746f6188ced148fcc59b3c31d165496": 3314, + "500f024b10b8af520bd2229c3add874e": 3315, + "7981be58e5eec603c585a0f1a3190840": 332, + "8e3c8f4883c9a523a9a2750ffbdec319": 332, + "b37f2dead6d4c13756bacab8bd0dcbbe": 3322, + "1e1b47d5e5b0d9faa5447273a52fc6ea": 333, + "75e33def568c439803994ef286e2fc3f": 333, + "d3736d23fc0bfb710826c5efa64e163e": 333, + "3883af40b8b5b0696e58451f5c14997c": 3346, + "01ea64bdc27b6e6932e238be1f2d092f": 3351, + "45d7de94c15bd01bc3d02a591469df40": 3351, + "ce9b7f3572867f3c1c6ff889b02a63a4": 3351, + "37d27c5b88e4a25d079c0e02635bb438": 336, + "557a08391bccdc111ddda81d3f950cb7": 336, + "25e9c4f973f67edf48a69e9211e78e28": 3362, + "38de95c1e45b718fa97a8648b0c60993": 3363, + "7ccd3d8fc102f5898f60e85d3a58344c": 3363, + "054ecba340b1e525bf276031c46f5421": 3364, + "55a870d58c2ea285cb9cfcae1cea0a05": 3365, + "6b8b0ead545cbca03a26a3d9dc1b811a": 3366, + "d86f9b3598db6c8f900ac2e12106b705": 3367, + "542d560b32b49dd9b040260e0113a976": 3368, + "728878c15773d06b468dffae11b83e3f": 3369, + "00f0ba49b5b2f140b307afbed33c7997": 337, + "0f1be472a6e438508cacd82e3f714180": 337, + "2e604bc12fb8f9467765c807c24877fa": 337, + "30c5f292ff4cbbfcc00fd8fa96c2de3b": 337, + "323a37ccba32104beef7ff7dfc7ce894": 337, + "5d4890ace4f1ace435cbe9b74b0b16cd": 337, + "8f77b601c1f37033a47dfaa13fb1059a": 337, + "94df8aeb9a270657eb52e9ba30cdaae6": 337, + "9fa0dcc7025ef673dff8b2da0dab5a2a": 337, + "a9b65f074001e139d42e80fa8e8bb023": 337, + "b9f89e1970cb7866b5205f840968f3bf": 337, + "cd502daddcc7ea3fb2e86c1f0f8b93c8": 337, + "e57ff9a6f8a23935a1171f871c0ce68f": 3374, + "eb9174301c3d2ff6871cc5aef8b9eb4a": 3389, + "ed127dcb55f9005e4e496c3cfca3f5b8": 3389, + "f551044f2365e40fd2db476e8224b241": 3389, + "2d8f602d0fd63342ee848eafdc54297e": 340, + "4a84b24f08be0fd67c4cfe3e30fd432d": 340, + "756ee9b9b27a3637467c8726b5213e39": 340, + "810e0bdcd8d3d7aa2f4e26689e994bfb": 340, + "94d30063d9b17567d32079e766251569": 340, + "853f63b03b39f509b726b96af426138c": 3404, + "32cfe65f6dd6e4b58839729a3b1dbd60": 3408, + "5a2d3c77194307b4a8e05030be486c9b": 3408, + "8cb9d2d478be4b4cdf949778fbc88286": 3408, + "9698ac310bc4a2a35999638afd2d23b8": 3408, + "b0eb38111b14367e73649d96674a0266": 3408, + "d670abc190f671e20cc407689ddd78eb": 3408, + "4e3a04e52dddc4e8a676386bea87d3ad": 3409, + "03a7f127f00cfd8252f6ca766e80f6ba": 341, + "0eefeb0b4c5a775a5535b2660b48e365": 341, + "229d423ea8bb85013b7ea45ac57acc72": 341, + "4ef2fb7801670093724b040b58d33766": 341, + "544311e104805e926083acf29ec664da": 341, + "58f2e48a0742216aab1164740afdc38d": 341, + "69652127d7ab832ca93a26a7935dbdfc": 341, + "8060d344e59666b19b389be2051f8f7c": 341, + "8b449c1a94ea898f5c33ccac4cda432d": 341, + "93209b43d48441e90f45e6ba035c7596": 341, + "97bf78e916b80f47cf35edf502be34dc": 341, + "a3cd94522922af8f9d12c042e03c2d35": 341, + "aad61f72f56198a3c982293d0f43b363": 341, + "ac5394c8dba7139bf252b9e1d34c696d": 341, + "c2a6d4eea3cb3081fe6105d47b388841": 341, + "cb1987f005f55832a9607695930fda2f": 341, + "e2728585b65a84c28f340fb6c36a6281": 341, + "ea12d01beeb8bc3376d0a91a80fdc201": 341, + "f1358c9203a76ccedb6d4d0ccf233431": 341, + "f3334df6425f78c34bef9afbc8118150": 341, + "fc2a3e33b29a9a65b7af8cf708bd081a": 341, + "c119885099f7ed59d1f21f61b7578e9c": 3411, + "d6599645c84c1bf43791b947fe28bba7": 3411, + "f43300370c180334d2b118c87eb5319c": 3411, + "afde99960f1b2ec92d0dac97ecf5a5a7": 3414, + "057f03c63b9cdb4b1e7dd340982f2640": 3418, + "a2d374d766f9fa05a79bd8c41ba439d4": 3418, + "059c8d6b72d95edb9fc619bee864ef3e": 342, + "8c70e7de02f2056a646511731b4ecdf4": 342, + "ea30c4f341f6b7a6e290699460ba6c51": 342, + "cb802f27cab677a9b5c1c7fa4258e259": 3430, + "93091900ac3b48f7b348f62026d4d2c7": 3433, + "4eb262177b69764730614671bfeb1e51": 3438, + "55d9cdb05f53a3f7a5e3eacb81b28f09": 3438, + "57f96c09eaea20382a52f55e5d4c7871": 3438, + "5daed13319a6db054c85c8c55f0645f2": 3438, + "7f9fdaca67c11b22a2e72eee0927d843": 3438, + "9239e1c0687d9ea58e7e887f1ef451bf": 3438, + "928363bef92998be478cbe38d6ea9b10": 3438, + "97380a1a0b1246c186c917a14fad312e": 3438, + "c9ddffdd95603bb91f9dc1d772fa059d": 3438, + "d77ee2ef57c593eb4b04e7f4db33a2ef": 3438, + "df58d85e62283c31dbed8d9875e45bb1": 3438, + "01e10d6afdd0c4a3e160ebb7286c18ba": 344, + "063a164fdc7b32713d7e664b0d231aed": 344, + "424748cc6d172de31c477847d8432c39": 344, + "438e5496dc5dc09d0ff3693b2aea2f96": 344, + "4531c7aed14908a432f175351508f8e7": 344, + "9f99aeb900c2e534dc44ff23e4ef9cef": 344, + "ede82658dafdd6febbfbe6a9c9082500": 344, + "0301d2e518d991913f2b087e9e584ed9": 3495, + "22b7b1143798be3c2193c70d9ee8fc31": 3495, + "2d753af166f01039cfefaa3e08f3ac6c": 3496, + "93ab63e78f764c5ebca21cbf706857ba": 3496, + "a4d4948cefa09efcbfe4a288f66e5347": 3496, + "45ec2656d6d074c18f1642e663ed97e7": 350, + "807009d25eb31559974daa3e39eeccd7": 350, + "8b047f05c1cb3d8214d8ccd1a4f0f802": 350, + "d61a2b7f57a1c944d5b6b7deebf90131": 350, + "71e8a70dd4a17b8278d03d74c8372e77": 351, + "9dce6a9dcbe4e304d67b9e8fd8999e7e": 351, + "b325e403db2fc4917248b7528c46b0e0": 351, + "d3f870212889f9ddfc090e88e2e30690": 351, + "def66db12f5e644c0cf00c42cfa7ae7b": 351, + "fd4fe8d98e2f63f20cd60a20a87d3024": 351, + "067ad2453b32cb6fe595fc822b780700": 352, + "36d4aba59259dab4144afa655e44cf25": 352, + "9aeffe095448fb3bfc05b876f7eec3c5": 352, + "b34ef86f2386144fc2b73bdf0f9afadc": 352, + "7981c47e3b3e957be5b352f8508c3f6e": 3528, + "7f2c8d00101bd3ee2f4ef739e499a302": 3528, + "936ce8c534346e61d8e21efba9177184": 3528, + "a2959ad8c1ff5f2719264ab4c7e40464": 3528, + "52a381970b31ba9d8a8e7e5fb660a888": 353, + "56525a387f310dcf6db750cbcfec5926": 353, + "822335a339952dc6f5fa16762db81648": 353, + "0f037336dc9c1f6f5819368ea7601c3c": 355, + "3f4d2b3c92b6308beb1af2ce15c29deb": 355, + "4efe30a6d447c87e59e14528281d0d17": 355, + "57fe0fef7777f18ae67447e8c44e26a2": 355, + "608c22b8ff930c62dc2de54bcd6eba72": 355, + "6f7bf0621e2e8a0a4b65b58a01363239": 355, + "761e274113f51c809e82fb5fb70b8d16": 355, + "7b90d8020b4387141a59fdd0d5d1fcf7": 355, + "7e966335260ee8daacd88d9d5195eb6f": 355, + "bbb8eaa98e03994abc5bf29afc4dad3d": 355, + "d00afb3bfb75e7b3e2dab6736fa05f62": 355, + "0da2ae976f1c4b08243d2419812ab3a4": 3558, + "427fe52b3883ee077bf189476492c2f0": 3584, + "442f5cefd72c20be79d278d57c61fe1d": 3584, + "7b5534c75a19f851b0942f1132ca8d78": 359, + "a42772a0beaf71f9256a8e1998bfe6e3": 359, + "b8bff972c811295db5f32a7d24d76f89": 359, + "681343f71b5fce4f7e960f3091e56026": 3594, + "6eacbf1ecd49cd5cbca6ab5a0f125141": 3594, + "4a34ab48cc89b871d7b3e4c15fedf2b6": 366, + "4d26c7f07ba83b31df193ddc487431e9": 366, + "7e52067e9cb3e6a190272a9d1d75a9af": 366, + "a89681df8060e78bde0dd8340c209649": 366, + "d2ee0f07eb882c6a989eef67a4a6f945": 367, + "e5ffb8ca8331076037a32db94627518c": 367, + "510b850d22a6f3d67ccbfdd979501943": 373, + "6c17982da3e80ab566ad3fbc2112bd1f": 373, + "bf692f974dd4f9760b4ff8f95695263d": 373, + "d4f0a4a246853e1fc6a140d051f68bdc": 373, + "8ae7779dd8107829b272d84007284518": 3754, + "b72ae31b25b7e1c122f3ba92a0038a1e": 3754, + "c991e96ac3ca65ece8058a9be1f137fc": 3754, + "1183ee757a8654b1e5382722eeedc7b9": 379, + "4d426a7ed36cd7ef896e31cdd48ed24e": 379, + "603bc3c8d523db5d58f4f536962e7312": 379, + "61a86aee5792eaf64a04bcb30257d985": 379, + "6b09f8c51e5c989d950f9510f1f73224": 379, + "720bf027b3cf93d58bafcfd8e86ec6c1": 379, + "8e00910312b30663768d907114d301c2": 379, + "9852918c1da7b69fa111f79b4381052c": 379, + "b432e0af61a58c934b702b18ce05650c": 379, + "4bda93614ce9c505af9c0bc22a18590f": 3799, + "a17d52680cc29e46ce41da360e8febe3": 3799, + "1fc2ead45eadcac586d65e218b895912": 380, + "2ead975340211e3f6893fde8dd279689": 380, + "5ab8ab43964decdfc2b15ecd41d50d2a": 380, + "7ac06e83800051995bbd2189d1415063": 3805, + "6b840c23b83c4675f25618acbaf2cb43": 3825, + "0dc4efac96b9e965009e9c613913c6f8": 3834, + "4d82461e69cf47dc958569af58b732cd": 385, + "5201a8e19a029734e5f720bc7a5134e5": 385, + "7bceee05743737b2553803651534402b": 385, + "8e790ce4b9bb34bbdf365e6665eebec8": 385, + "ce41fb926db8fcaad4665774f3731b7a": 385, + "ff08ca993882bfe2ab860865897bfe77": 385, + "96c38a14f55c58b51435e9bdb0235998": 3851, + "778db880d42aa2ba19adb71f69e7067e": 386, + "fbf6512dcb3905a0e1847b397f0f5886": 386, + "0d3595a81c50d5dda714cd2fd66164b2": 3870, + "47a7e4dd19c55da717105e1acdd2d4a1": 3870, + "cefe028852135a1695ed9f6e692bc0ca": 388, + "000c3bb276fd456e0e259553dede9ba4": 390, + "66836fdf6ab04377f8f904996fc70e42": 3900, + "b1a4a4696e579168d5b1b6e2c8ba8440": 3907, + "34d0be52d31ad10c5b8406dc8e238109": 391, + "5a87f18403de943e597f0280a26d4ffe": 391, + "9e379f323acc381163edb6c6a24f9c1a": 391, + "a29c0a3e8a340aaa7672b00b190be396": 391, + "fbb5496aee86f76d287bef9a324f12ba": 391, + "5d6716d6793e9f9c456265d18cf763bc": 3912, + "03d30ca9aaa89738640cf14532ddfe6c": 392, + "77bf37a9a6779a1d7e109bc1a707ecd1": 393, + "b4fc60315646bfb9280d7edc4e59b5cc": 394, + "865773fe1edd5bafb674c397f182228d": 3943, + "1a0bef681793f1f9a57e3935c64c36df": 3947, + "40df440bb2ce415c3f2056d55f809c79": 3947, + "1eb47d9f464f5d96109818eb8528d2c7": 395, + "699bbdffab13c41fa8d4a9b3c25d60e7": 395, + "9daa4a217e94d155e34849b9d1f84966": 395, + "cbff9306a73d40037d872988b3ad3e65": 395, + "d6ddca61a7f31eed247c429b0e528f3c": 395, + "f8196954969a0eaac52022c57763c070": 395, + "ca99957ae4d43880530e362a9fb94257": 3950, + "e55cb77e878115fd5c224134450047c6": 3968, + "38129cf359c7bc93a82358fa305b07ae": 399, + "82582408c84c681385c625cfcf9bdb4f": 399, + "0ebbd7367f16d49ed391555b5855859e": 400, + "10a894199a9adc50ff88815fd9853e19": 400, + "17134de4f12c04dfb07c4d957389840c": 400, + "23f403ab2499d5a9729e5b2d2b433b14": 400, + "35afb723a7a1166d894549519d78622c": 400, + "446e2b99dbc2bf9850de1ce708801ca7": 400, + "980b3b2397835bec7ef81b0d9eb17f1d": 400, + "ef1be0d7bf5974e3fa037af16dbf5c2a": 400, + "fffb4b5e896ba77d03a324294753c8b3": 400, + "b27591ad95c4904e584c5b2523de4b0d": 4002, + "f05e59ae38aed40de271e7aa8e392fe8": 4002, + "f630c6e0f11fd53d112f3dd004ea7184": 4002, + "49812bd8fc347c5c4d0d5207933cfd71": 4009, + "fb112de74fd8ba7e361d9448f0663320": 4009, + "32fcfb6358da10ebcea6bb9fc99e4c8b": 401, + "676638e83ea0fd79ebde24674fcb948e": 401, + "744b9d1a382adfabf0515d6d0e5dfed7": 401, + "7672e7004036a6de6b349e0b6342a058": 401, + "ea840d3722f90dee824f5064e171e510": 401, + "f208e5cd6842a35fb01fee9fe81ced0f": 4049, + "23c2af7897d9384c4791189b68c142eb": 405, + "52f5b606b5757ab8c15a5f8ba87e4047": 405, + "24efe7af3432fde7d765bdf2f06f6c1e": 409, + "36b0ef888d3e7352eeee792e173426dc": 409, + "44cb6bbbb233bc5d602d54fd418232f1": 409, + "e589bc57614b0f70e833a89c15c2bb09": 409, + "fdecc2c3cb3c351dad5d54da7999d3c0": 412, + "20f71930bc6fc4664ec55138aed7b85f": 418, + "3294de2a0353b5dd6d645820fa20362b": 418, + "8e1fdfcf4b3764499006e3677fd67b86": 418, + "9f056180691136a3ca7d4a868ade02b4": 418, + "0d29c866ca032f64e20b0d379c3a5bcc": 4194, + "1c4b9dc36d01f0509618d9769307c58d": 4194, + "6bdedb1493ddc69b7c90b817c1f1ccf6": 4194, + "95cd77ddd5d2d4f846183296226370d8": 4194, + "391c2d0e4e81ca2139bc86080a2c4d2d": 421, + "d9b2a11d20a10fe4f82be4a92481d3d3": 421, + "00015599daa62e3d705ea80a8df39f38": 423, + "083e99faf0df636ddd6893670114852a": 423, + "3126b05549a3730a1be69bdf029f18e2": 423, + "3c433a8aa73986e1361423303e92785b": 423, + "65281925a28959212e32ae99663484b9": 423, + "c4c7e54b8fe38760d56efa929e798d83": 423, + "c69cfc6d8f52631ece2a3041b1de0223": 423, + "de0460f8deece08313ec509b6be192a9": 423, + "e4327313c7ad91cf435b96bcea2d19d4": 423, + "0833f8a2e93efc4ed15202585eef8462": 424, + "2159ccde960702ecfaa76fa979b55a86": 424, + "866b25cc8a348525a6ce344dc37916bf": 424, + "e44b9987e33ef7237b24457a6c997723": 424, + "eb6c366429a928ae6978e6c8a7478a61": 424, + "079eade13305bcc130e09597faeff4f0": 425, + "d741108c2ec64bf52da7a0f70d976654": 425, + "4adfa292778a82285d80554ea6ed3497": 429, + "76fa6fdc5d0e0a52839d8548301644f1": 429, + "43d393d1e6aeae259509dfea907dfb50": 434, + "96b4e98c45b9b77b2641d7f81d77e890": 434, + "0500e7dff0acb5b86e4909b7ddd41a76": 436, + "0832ab17819be1ac7056fb551b9ec5a7": 436, + "30729d81a5b1f83ce26631918062eb82": 436, + "c9be62563253854cbaff00041e8e06c0": 436, + "e292260abd6dad2348975accecfb2395": 436, + "ee33097d436b4901a71f7e4c9a5cb409": 436, + "25ef7365c2dad37357fceef8a5ca1d88": 439, + "6452748e3042c9b7a4ff37dde5e9e69b": 439, + "acbf444f4fdba7d0f09f09c454991203": 439, + "186d7d1585dc6a0e9ad96a5740a1a03a": 440, + "148dbe529816bb0721190b1d4b7af4f4": 441, + "8b37076e92b5c9f7a3055998c67b3807": 441, + "a81880b811f55bd29a086cebe80a414a": 441, + "290ffe44a6d10ac30cea203c026daf31": 443, + "bda740a4574c4c0bdb955d5c57ddb3df": 443, + "90bb70c75f0000492f99725de54c264f": 446, + "953cf128f47276da28fdd7cc4788a20f": 449, + "cdef890e99a0fb62c4d449d867c4244a": 449, + "0ea349408473e47006fa2ad4471f4108": 450, + "299e96968accb96b9e0d9a4154e220a5": 450, + "a18df6ae219a46d957b015ebac23e366": 450, + "e1ff1ed4ad5dbdbe86774920dfb5e9d4": 450, + "6ac508bddbabc699f181d7858ccfcf0f": 457, + "b373b0cc47b3487343ea0a32d97f6384": 457, + "3c9a6079146414790ad6712d48ab31a3": 4578, + "82cbda347e2bdfb18ef8ee088f5ecc3e": 4578, + "edbcdbb13a00b3876b2160dbe7ad47b3": 4578, + "700f0a4b0d161669ea4a7e7385c6c16f": 4590, + "7315e30fd09afd126d917f6358c797c7": 4592, + "89d7890ac87493e63438d973e9280361": 460, + "eb658023bf0146062ed1e157bd12f867": 460, + "2bca7c39496dd6f8d09eb1c8237f35fa": 464, + "85360c27567caad1a33967b513789c45": 464, + "f638224ce95e2101c2948edf7569ac73": 464, + "2aef2ef396e58d2253614eee2a801b51": 465, + "670b523fc13f30128fd27bb571fe5c77": 465, + "cab818ef062547dd0c6fa679435809cc": 465, + "2ae8161cb714f2dad38f845674553a4b": 466, + "6ff526f388a179ec6eba9907eb8e3254": 466, + "83b97937eb3926446589b4ab9ee9c700": 466, + "98458530599b9dff8a7414a7f20b777a": 466, + "9d6a4985c77a132b0e8cdf57dcdf5d03": 466, + "b285148df1712acf50162bdbefdcf1e0": 466, + "d323e6bb4ccc85fd7b416f58350bc1a2": 466, + "deb3ec76b71419a4e793c70b49f105dd": 466, + "f39d026f5bb47b1e8c72b36dca524849": 466, + "f65bde686bda6226aea555858a74bb7d": 466, + "649c377a7479c898b1933962c4badaad": 467, + "c954a0e17237e073de42a2c86d3bef36": 467, + "f57921c59512c5785f5d0ae16e43843e": 467, + "ffa59d36484bffd65c39a0498a8541c6": 467, + "262616f80a6c194527d41e2c72b61aca": 468, + "940fb1d47feb3ced3987ec6dd55ed73f": 468, + "c48173fb44998ae5f6e74575d0b09182": 468, + "c8657560db0885fa4cb51920678b24c8": 468, + "e81e2c9108ad0d23e8cc8cff277b48f6": 468, + "1591463bf4e3c0c6633fd70a1b982c12": 469, + "301d8c4f1b5de2cd10b68686b17b281a": 469, + "6bac1d035e7284b5fba3577e3e88624f": 469, + "4965bf09d25ea9c79a69dbc8f213c9dc": 470, + "b863bddc527e21c26f14479289c8d164": 470, + "cbef5f02304a2b821a0e1642a6307564": 470, + "d83699a009a62480a7e7e9f1bb5bff6e": 470, + "ddee4ddff2f3b6e31b8f73d0cb597ef1": 470, + "13e9da8d0f10133c81588f9b6d4e9ea1": 471, + "39cb0455fa8e9ac8074b385f448e4a2b": 471, + "521c005fd3a8c57af795f96760c0ff29": 471, + "755834770971c77a9c9ab8eed6c7b7a2": 471, + "76e566564716305d114581042e536b15": 471, + "83bc31008f43cea017cbb771a7dac68a": 471, + "960ae5101e63c6eaf8f370c360af7af5": 471, + "ba69f7a7e29b1ac5d05afa61597551be": 471, + "d0b68d68d9efc0558242f5476d1c5b81": 471, + "070582bb3cb2c3501738d91db530e2b8": 472, + "1674da9647562520cc36bb11ec203d71": 472, + "9bd5b32d479983dd2c0b49020e812e69": 4728, + "120abf304f0c40fe059f6a192ed4f947": 473, + "f8dc16289a2aa1c6144b841ad505164c": 473, + "59593829d0ecb98d8c0b5cb5e20a4b36": 4734, + "cb4205a16f799451120ae8f55cd1f374": 4734, + "eeb3c7b0b62bdeb4f38ff3839770c6a8": 4734, + "1f83badc0b3a48e3eea63feb1f1952c7": 4737, + "63ce924c3f1efc3ce167dd1cd3f94c4c": 4737, + "ac995ab6f5667be14eb6471458e491d3": 4737, + "c5888542c2583d3f518e2c6db2140aad": 4737, + "7b1e4990fc3d9c90690262cdb682d22d": 4942, + "b800e6b33df2e94586cdf49651727e8e": 4944, + "23efa445cc013cab7906f34f062577c2": 498, + "a641a33a829154f656ca00ab1ef35500": 498, + "f2ae4374717f4e39df97fc0fd2a2bd92": 498, + "fc4756b9c2f5f6bb73682b0d16c8c64e": 498, + "0990cda295bd51587c6e3f173bdadba8": 500, + "66da9c8252378694c747b0239d5cd36b": 500, + "24504179425a8b89cd8ce3ed2d99b514": 502, + "a072455fa9ad963d09afa353e5c65793": 502, + "b1bdc9caf5bb8191ebaf3f2f42410969": 502, + "d23c747b00b84195d34018f5461eea44": 502, + "e5040a079ff03eb93747424af9be75f4": 502, + "e5a1e8bacc73213087eafdef666e5d0d": 5050, + "3d2bf0696342a31e50f1d81de49721f8": 518, + "a8711c9185c7a6c52b863567b188ce1e": 518, + "c86c99d1454426b908c89fd1caa858dc": 518, + "7d66769f53cb3fb7f5c73044876db240": 5209, + "e7de4068dd0577ec5567783739839a76": 5209, + "8f8283f737b4ff84e309ea6264725641": 5211, + "c1008db81315057be63c2901a39eb1fb": 5211, + "34cb1b1d51723453642ad9a5f5f0f572": 525, + "4ae3041c40b5392e7e03d2b82c20c308": 525, + "6c000b7570beccbcc7306e93e0c7e9eb": 525, + "aa47e31d088a334bbd15154e847900d2": 525, + "be4f6b60a2ce518ba46c9f33e4fa0ff5": 525, + "7a73f2987f8b55d244732ab930abba09": 5250, + "7deefb54e2775b192e69a1141e7312e9": 5250, + "b541901b1fff1cbe79626a30b714051c": 5250, + "38a8aa1000a56b2a591352ebf45aa3cc": 539, + "49d619c689c21a6e41e2b98c31f5838a": 539, + "6e3f02a84e0f2d4f5a110db10928d8d0": 539, + "8867e49127a02de60d3a0bc91c40019d": 539, + "97fe7d7d2a1017f8480e60a365a373f0": 539, + "fed5ffa92081a9fab6acf1da59841c8a": 539, + "3b74c6e1887b1cbf4b5b9ee10e7c2b3c": 555, + "53b2c91892b09c47ac4408beccac5c66": 555, + "ac39bcc1c19813048903098d0c1e4935": 555, + "e2c3cc007c2c1c358bfe50ead5c8b9ac": 555, + "25860c781863e4709483631267636ab6": 558, + "39a55fa140d4966d2cd58cc60b2a0194": 558, + "cb472164c5a71ccd3739963390ec6a50": 558, + "ce1e3e33b6e39d37b43d7de599f9e785": 558, + "f1f6c8b4a853748d7dd0f1b9028bed16": 558, + "094f035993e9724647b61ddcba1e9a7a": 562, + "3470065e780b127323da7bf950306f9e": 562, + "40f855c755b5d340e63134dcac3471a0": 562, + "75e904e769a99fe3c5207cfe13b5f52b": 562, + "dbb77967e6744f9f0b5e690de3c795f8": 562, + "e36878c7d6c7ecbb090de659e5f3893c": 562, + "0c9d4bcf530dc77e07308b7fd201389c": 5629, + "0d2d5175ebf92db250e73b08e7ac4a17": 5629, + "37bbd1eae29b5a98e203a9110dbdb25c": 5629, + "8794aee468e8b32bb6768d087b65d209": 5629, + "8cb1cfe8f847fe073c3609415adc2a19": 5629, + "3648183d46c288f7e56499841b50a04f": 5647, + "5295a7481c96be8fb0d2c487ef91dc0f": 5647, + "694be8df403ee59225c4b6b53c30fb7b": 566, + "123e880bd24bfc9b0fcb014fd617e1a1": 573, + "a4d68c20ac1567834403cde9d590357f": 573, + "b508a7c23920e01fca0f1a5aa5857642": 573, + "0644da71f79d405a22934daa1474cefc": 582, + "6668441d698e928546291ffc01cb1a3a": 582, + "dcced4b3e90725218d4a5eca90528130": 582, + "6c3b5ed7a9943c68d07d580cc945a7ea": 5859, + "e3518a94d6654fd48afe182bb4ee702d": 5887, + "6ee56e3fdfa9543ef7755a08897767ec": 593, + "808b6d01ca9c7e1938541f55eb71f73c": 593, + "81dcfbbaa66f8bed4c0ab0e2b6d3e053": 593, + "36E1391F0B1F29F16EF5D4EB83C3725B": 594, + "580ac21f46a5cb38be9790b9436dbb0c": 594, + "875745a359320734097e0efd522f5592": 594, + "921913f82c2575fccafa55b23560df81": 594, + "E8B616A0F5E2C7F46D6226F62A4EC82C": 594, + "3dcd4155bae3cbe2e15ba6e17191d158": 5994, + "3fab84fedf46adf3870bf572ce5548c7": 5994, + "6a081ae0acae2fae2fb2bdb77bb82c21": 6013, + "ac9955fa4c1aa8ebcc1d09511808c58b": 6013, + "be645f73079d2a6648c0188ad27646fd": 6013, + "ca77c6366e652ec0613aae7827e00e97": 6013, + "aa3c90fa7d89eb3dc3389a9436bd0cf8": 605, + "e1850ef86958efd01b1b16d53fc7b6d3": 605, + "0a03bae717483dc9366691b8b130ff68": 6092, + "7b8d1271d64d231f2f1ff495938b7569": 6092, + "226376fe582bda4ca7371311bcfe791b": 6140, + "68cca59e981652d67ed484a1881091bf": 6140, + "dd674dafb40e7d0162f6dd43cb22af70": 6156, + "ede97e0c8910190b00a8998fe001f489": 6156, + "800f26edb859556ce6dec0dc894ccf80": 6158, + "d6d770497fd9185f9affd01fa87ccb49": 6158, + "0697a2a97b44fc17f768793689461ddc": 6172, + "3d282ff26d47084326ba1e2a9c06bf90": 6172, + "d69848fa0f67e0b80048bec0dba0c563": 6172, + "0eda1bf334c5ae3b76218f0b48a5caf7": 6190, + "ae4bbc5db71b120d773764793b527346": 6190, + "89a60f19daf2ae77aead867ecfd2cab8": 6212, + "c89afb1bb7b71513ea8b247c4c4342ec": 6212, + "140aae376e696a9a72daec371405c4c1": 6231, + "1dff04776bde5aae152835c0db436f37": 6231, + "7c7c7db73b0608a184cc5e1d73d7695b": 6231, + "4abea08c9aadae963de8f4ca142bca99": 624, + "61088a45f3e561d15dd114e27d6d779e": 624, + "97098a55a0f87a2c6a555c0338c10ac4": 624, + "cfe8c11f0dce19e4fa5f3fd75775e47c": 624, + "e81bedd2fc6b013538cdf4bd22fdeff6": 624, + "103152554973d6db6e53013eb10c383f": 627, + "34c791f3e69b7fb8081eea0e8b8ad0b2": 628, + "bc2892e99c34f01c4102996e429e1e9a": 628, + "e990ae600a8326eda25489bdddffca55": 628, + "3aa853b2d4285a3f8d3ff5f052eb1aa6": 629, + "5c7e0d91b60429d0a2e0f3f14a7e53c7": 629, + "67905b989b00046db06df3434ed79f04": 629, + "6b9cd86caf256e2152623704ff633146": 629, + "8a62863bb1f8c2ebcc9da4b25ad09fb6": 629, + "8b6d54622e89685ed7e440a6d47307bc": 629, + "d1c04dc1f7e29ad0e09e2fce39b76138": 629, + "d6d755ade3832aa2d67fd122afddf6cd": 629, + "fc9bfde615cbed7c6a55b9350506c712": 629, + "46b29735c680c494b21caa7d8032ac36": 631, + "33197dcdd3e6ed3396b894a2301d45d8": 633, + "4181e243ae146d471dc5c292dce772ac": 633, + "1a882cd6f4aec52fcd75716eaf93213d": 6345, + "1b7b514d0d10aec6e92d529f5f3ecd62": 6345, + "540b4aefd31867bbe7a242ee97d40d1e": 6345, + "5464d5ab17d2d2a4f5d72ee3c8734c7f": 6345, + "b873640466329a8f61d55a5f96aa41de": 6345, + "0da833104f9ee19c5b052cea1e850b22": 637, + "19bf3ac320754ae21b586ce112b19ec5": 637, + "1d9d56cdf7a1b6654f69063fd7aefe50": 637, + "1e11a6c21b7885512f83844470c87ddf": 637, + "3d2d84be96abc25d63a1a1191a800c57": 637, + "5302b614bdf9fbd6fb8e4e168fc4042c": 637, + "62dab1568bb5e641aafc2fd52cfe0714": 637, + "797fd8e6eab44ea597aed9f44d4e1669": 637, + "7e60e8be9b7b60b2a092db30f85e2929": 637, + "82870d3fd437ae8280a7c6c23874b737": 637, + "972dde5ac59ba3f3b79964c115331aa8": 637, + "a10071fa78554b57538d0b459e00d224": 637, + "df1cc0c8c8c4b61e3b834cc03366611c": 637, + "f2131abb60a91bb5eeaa1daf1c0822bd": 637, + "0cb432dd9d5c1afa5048334b110fddc0": 6388, + "2d674a5b82f7691cdb27702031d0f960": 6388, + "39896c668cede506212e65bbb8a46641": 6388, + "3c55d068feb36707f199c3ebf29aad5f": 6388, + "76e47fbef6fb6e04e3c7b6bfada67db7": 6388, + "806a7000a8edf62234d0cc8c70b04bcd": 6388, + "82365768ebc53eb3278a86ed7630230f": 6388, + "987b014a7be83696ec2ef1b844a8750e": 6388, + "f30bbbd8242bf28140013af2f7ecda52": 6388, + "36f54352e7aba538529913707a734f9e": 645, + "37cfc64a6ea22b7914ea443e2bf2bf0c": 645, + "7090be7db70304cea034bfd77e4d1886": 645, + "fa1aca992a1bbe309651fff64541866f": 645, + "9873c45bf77eb06262e9b8d8c4b841b4": 647, + "a0b9bebbc80958e36292abd9b8fb758e": 647, + "ac0da762c2d05b6b041e55b21a4007ae": 647, + "014863e139f5a9e9fc8ecf59a133223b": 648, + "1992ee0cd0593c7a57d1e7a9e771d70a": 648, + "5309e795ae22d35b04a4491fc027b235": 648, + "6030e02f113ebe6c18e2708bc9d36e2b": 648, + "6443b2d3d9ab2eee52ee487b08506368": 648, + "6deb9c86ddefab0cfce69b363fb08a7f": 648, + "91b3d60164715189aeff28f8a38463de": 648, + "a92b83ff868b8972c3dd12a4f2bd4af3": 648, + "ac63bd5085b0f8f35e2cff59e9c34456": 648, + "cc7e42a7725d18cefb54a26eb5eb7a73": 648, + "282e973c080cd56d4c4979c1091ab333": 653, + "a09ebc96aac1680fd36029b768002d92": 653, + "c985283969727dca2b77dcb51cae1b23": 653, + "f64e2b3eb9ee5b92f267bd420b294efc": 653, + "10365acc8f7c602864f85c3ea295916f": 658, + "afa64dd1c92d2138b2d723d136b1eb76": 658, + "ec6fa27bfc201dd0ef0000f4c65fb57a": 658, + "fcb0efbe5c4b3372a7dc3575979fb8f3": 658, + "1a1bd0a7652a2b7b025e9e5132831a81": 664, + "d484b197aeef6981e49772adc6866990": 664, + "51c91e0372d47207a325e8eca40e0587": 6644, + "723983749f505fff1dd892a6cf841922": 6644, + "a7bcd665da8b839600dfe22c46623ce1": 6647, + "ea2043ff43ddde65466634fca9f9137b": 6647, + "c955c2388aff8d1b888aaff9567b8d04": 666, + "703cb689e846acbd074dfbfb8bcfee3d": 6714, + "29e276190dc921f1a13907ffb00212bb": 6939, + "3c4ef224298ffcfed51a489ce1d9bfa2": 6997, + "41024f8470edcd682702d535db63dd84": 6997, + "c1343e798e6bb0cb15059b5b5bf6db98": 6997, + "e09728d226394f22a6bca489427fbb96": 6997, + "d2a7c6b85423da2b9fb59c45ead71347": 7078, + "8238da8a9175d52d21cae680985fa26b": 7319, + "09746d3e9be9703d09cdbdb3331d20c3": 7465, + "0a0d06a7513fb260b96c6defb8285a9d": 7465, + "1b5082ccc496908f268856ffc3ad7d5a": 7465, + "2abc914f715036b3969d3c4be7e125f0": 7465, + "3d75bf39556509ad57a9bf91d6744fbb": 7465, + "434c89f8f94374f84ceb1088e29fd2e1": 7465, + "43564da4b782612a9c5c02a520c51b4e": 7465, + "57b6fd6915f528e9cbaa3cd860045aad": 7465, + "59cee44354ed6fd664236ba9f6b18a63": 7465, + "660603faabf58fd507c246f5781e1bc4": 7465, + "7de3cf6032b9ba94a41baa4a229cad51": 7465, + "a90f92a606e342b35aa4bc070cfe3f78": 7465, + "b6aa051fe3534d7b9ee72e483bf37e19": 7465, + "c35269ad3657c8b19e3a902ef0882772": 7465, + "ca9223f2f436e7c9ad7e44f7cf8acea6": 7465, + "d5ce2ad741adb7263b4dacc91bc7bae7": 7465, + "da4d548e54a593e635e023bbf7db72b1": 7465, + "e9d7770a1973f2b3ecd331870f7e9018": 7465, + "f203ab9d9720c2ba8ac8453b0c10553c": 7465, + "405644d643e3e8672c2cc801910a0bd6": 7642, + "438b79817c408dba3fed4d9cebd63a28": 7701, + "0829ebfde80e7a9673fe9966a8d47b0f": 7791, + "3f17a37f25266bbd6e37ebfe12108319": 7886, + "db4dd0305051f7d3ca7bd2e114f4f1dd": 7886, + "edcbf9168dddd6cf7c82f176cca88b69": 7886, + "ab39d189dee364b881cd461a3eb8aeb3": 7943, + "dbaaf6de5c76905f652db08b91845069": 7943, + "cee7922a2c1bcbf204df4ad4412fb223": 8021, + "ecb14447919749a91481cd88bc22fdd2": 8060, + "201e7658f6194458a3869dde36bf8ec2": 813, + "83ff848a5793805423eef5f09a09292f": 813, + "566ae8dc85175cf01a44d006437ea7f8": 814, + "5e0be1a462ffaca1351d446b96b25b74": 814, + "cb76ea8ac989e71210c89102d91c6c57": 814, + "44bb94606356f1c0965e12bbc50866b3": 815, + "90854fcf608034c654745ae24411ef7a": 815, + "662d3b4f27ada028dd4a853fc58cc745": 819, + "7590a77f8f6661bb8877d3acdb33c944": 819, + "7770b441b184245f3a2243cf08503282": 819, + "e0450bd7cae39aed72cb8535fc39048c": 819, + "f3f2c71227399931fbcb09e1b4e27f46": 819, + "eb316bdae901459724410b1d7d76f2c7": 8196, + "a21571c7f21e68dee9a4d78bbc1cfd6a": 820, + "1c02824bdd165bacb52597551c3c87c5": 821, + "2dc88f4fde9f3dbc4f6ea61c4152f5ee": 821, + "4c33b3b733b2cbd63295446b14654652": 821, + "6e9c94511d04fac6e0a1e582c170be3a": 821, + "89c712cf078eb8b4ae82010343156406": 821, + "f6516a3b18c262ec00cd4348921c3897": 821, + "fc2b89e02d0d02712a3f918faec671d4": 821, + "45e938a3adde7dc91968793d115c8057": 8249, + "512dcc7abd3001656aacbc7928f27354": 8249, + "44e035c4c3d1f4a9b0dec60586675202": 827, + "278a88adb028a8e4c279b9b468b592ed": 829, + "36a45afe414ef26af7a30e209bee9212": 830, + "49775f5e46be05c1e245b26a70b6f756": 830, + "517a88892164b47c2821c0708ad08b58": 830, + "006fa55e70348b2020d1acf0c4a02c3a": 846, + "1ce6c43e42f611a7d4aaf6a0bf1232bc": 8463, + "5d72eb567d439ea5aac9579035ecdbdf": 8463, + "7d92fa1c34588222cf90262e9d50222f": 8463, + "922d8ac14a2d7bba2304977f75e536a7": 8476, + "3fd137462f559063672f66fcbdc38329": 853, + "b9a3d2c89793e6a6a97010a08b8c05da": 854, + "e084ffec81b78b8962caa8343b66fb34": 856, + "90e90f2aae4770ee98130580a594e2bb": 857, + "5d89e5c48b9f96341bcbe06e910185e0": 863, + "9aea023fde7fb213c95480d6212265d6": 863, + "ab16565f70e427d048a0d8ddab577139": 865, + "58d6f28d4d8af6c473d53648728d0b96": 867, + "8376c1bfac08f6fbbf99f26abaee6da0": 867, + "9f4f827317f507b0ac4702245f161687": 867, + "16c01d30d842496fd8cec31c48cdabff": 8670, + "269d47792f93fb7b8448cd99b08e02ab": 8670, + "7a165aae06e675eb9a569bd1935b4816": 8670, + "9f778366e16e46ed0906c90de76a61f2": 8670, + "07ce711db81bd94433f59c8477320081": 868, + "0e7c6781a6ae15d36a5885a03c132898": 868, + "8aa76a8fb3e47cc0d1d092558c1c667d": 868, + "b03a4ed17026896552d001bda15dd1b6": 868, + "89d33b24d7e0d5b0ab4441b469a3093f": 8696, + "1e436ff6f74aa0beab11b19d3b8163aa": 8702, + "6041d861ae1e590dee99e45a3eeabd49": 8702, + "b427922ff0310f11e5b88efa4d51692e": 8702, + "e53bac43ed9049ed28751477e4cc844d": 8706, + "3623efce83f8c52fb7e2ce173c487288": 875, + "036beed13a2c8c8f7a99f0dbf33ffdc1": 878, + "18c4ea37118850c18084c9993ef93165": 878, + "6a5b2f9bde72f7d72db7dfe9afd0f47a": 878, + "f674143b37cc0f7914d6858d864394b0": 878, + "78290d10d82564be7b073271c6e5310d": 8782, + "b7e4af45f5ee5dabb980e712f3131493": 8782, + "0ddd927709d83149122e5ae1d9a1aa1a": 881, + "31b4a520f22b3b0ef6aa6d08643d7b12": 881, + "870bdef074998c944c11c50b192863c6": 881, + "872c1a1686bb982c4e8f374963c187a7": 8811, + "ba0faa09ccc56c001cfe84a2a885c811": 8811, + "6f805455e3bff392c51c65fc07eed939": 8828, + "0391195ded8d5b2958915f538a952aec": 8830, + "55a4acec09123b39949d2affb9f7c7c2": 885, + "94446e742f5fefd2905c70a2a891b2dc": 885, + "0d286f6adbee71da2154fb2ede35783b": 8853, + "07504ccf489368208e472cd2b61259eb": 887, + "116b082005e47a83d3e87ff97c525530": 887, + "2ffd5027d32f0ec5326981ee1be1ca32": 887, + "62c4bd2072c818f026072049ca114d33": 887, + "04697646ac794edb05dce81eb27a01b4": 888, + "65e27c7058dd251e86b1ea154e497a9b": 888, + "c3ff5fd4e3f46653fec94ba60d70281d": 888, + "25fdebdec0e83132d8f24e9ac5bfc45f": 889, + "34a3d2a256c774a5f412cef5ab4e6370": 889, + "358d35b9e1468706f53b375a3dc6f6ed": 889, + "92a672f453d6b2de0a201fe612c73302": 889, + "b6ee6ebc6847c93f50b6f2e3f4794a89": 889, + "d760b39c318790b3b605e40acedf6dd2": 8969, + "05f8e0cad9ee01a5b2570b6fdd949f95": 904, + "3e52a37d6c408634bad0f0d9b8562eba": 904, + "5fcd3e9663ea54cf9dd7883625f18956": 905, + "906a3da585415529b20bd0708fd91486": 905, + "44a0e420744a8c77a0832d079dd25476": 906, + "795a89089d387f287d9bdbbc1bc4672f": 906, + "acf51d76d7747fb539d1106fbe3d1f85": 906, + "10cfe4f746a8bf3dd54c1e61c67f61d1": 909, + "92461cd3f1a72b8beb32ebab98057b76": 909, + "a5356b9bad50d4a9191bc1fe50316b5b": 909, + "a6cf65a5abee9e9f3a31f001f278a554": 909, + "da08f0559fade06f37d5fdf1b6a6d92e": 909, + "f7faeae5a847c098d677070920769ca2": 909, + "650e587408e8691c511e831de5f606dc": 911, + "55dafef0808956580173fcab24f85003": 9175, + "310eed9404c446d12ba479a158f38beb": 926, + "da9354f321779c7670b562816c97163b": 926, + "f7c3b2a7b3b386ad908c2a3169176400": 927, + "c77b2f22f465bcb8fd1e6c779d21f2e1": 930, + "f026a8e4f069513e74895f3e2b627de1": 930, + "027e0565464fba64b5f30ffdf3630daa": 934, + "284809ffd0c78c4e9706d0e291ad6e44": 934, + "3872001d7ce9dfac1edbe8db724d5c67": 934, + "c9bf36a816b6d54aed79d43a6c45111a": 934, + "ede10052605405ba01d5d208d35069b8": 934, + "cd40f300557491ccecea37228af46a34": 9349, + "b41839190d010ff407bffca3dcb3f716": 937, + "a409a0d29d0e16092b1b610ec0f9f7e7": 9390, + "0ef6c11fea085aac5e313111a8e6ffc8": 940, + "1a0a3a079db7a848ee019161cbdb1788": 940, + "6cdac1c4fd070940ea3050aced5fe4f4": 940, + "7693f2ac4ba870378bbd26935f24afe2": 940, + "c647ead8b0fcab4761182c6f60debab8": 940, + "47d7b7ba3419b894002b0402685a0960": 941, + "45ef39d209af53eb7abccd763445f202": 945, + "a7c7a76b4d6f6df389bd631757b91b76": 945, + "a9d5368f701016d00003118a9616f1ce": 945, + "b2a35f6f99d0cd44b5ca3fa71bd3145c": 945, + "faf4d7c79daf445d2ca286d8b2f81cab": 945, + "7a4845697efd4491fa8f8476af9dc3c2": 947, + "849d26ac8cbbd1cd9ec80ebfec44dd19": 947, + "cd46a61f34f818f23bb23cdc7c7a7e99": 948, + "1edf4db1cc849201db140c5f6a2126fa": 9481, + "526830cb760eb7e82720dfaa20eda75f": 9487, + "78886eea269296cba80272dbe8a3dead": 949, + "8dc92a769fee1c11ba1219d884830f57": 949, + "90e1fddc41a53ef6bd6f2c119e9b6312": 9517, + "318a6ca4b0769360c4d9a13628d3d89f": 9582, + "76d93ffebb00ddaf4cf23222ab28b962": 959, + "15cfcc91489c344d82afe791a3f17261": 960, + "106290995e3295b9d13c888e806a491a": 961, + "7424445c51692ead97568e0a53b3d4a0": 961, + "a9f9eb32292e38598c3e2068a304a482": 9627, + "f62625b0f5b12482d31f2fc5e7097410": 9627, + "0c3875be5d33b7be8216e27d3f466027": 963, + "3a5ade3c906b8329d6f0de16de7b4cc1": 963, + "cc902de2efa54df4d2c27acd7f4a6bf4": 963, + "dca9b3fcc00e3f7b1868c4207dabec7b": 963, + "d2f9e515fc4a0fcaaeee14dc593df26e": 9630, + "1e5fa71516afa912e0db1dd6ff07d2bc": 964, + "b4d347a526c7839bb8136b6c5ffd868c": 967, + "ce0dd38e1ab7752fd736d526788b5bd1": 967, + "fa6de515bac11577ca5f6e3221ed9cc1": 967, + "cf539bef183bcb97c192562bb1cb29ec": 968, + "ea22fd957281c0888c97d34a27cf3fa9": 968, + "64d367e1406fc39281443da9cfd9f015": 970, + "4f7c769289780bfafffdf90a9f9b41e6": 971, + "bb9c2f667ced16a2e605b385c041c744": 971, + "d4f063f065bd06935dc3f75732df9450": 971, + "ebfd33826aca72ce98ac0ed9b293f94d": 971, + "fa583b9d1a2dcc270a8fc91259b89c96": 971, + "2078b064bdf300eb656971946c26430f": 972, + "4e8c8b8b547e20453520d6eec0d5b610": 972, + "6cb5d91ad179815cf736a90e4fc14cd3": 9763, + "ef83866bd12204dcad53fc2ee731edf5": 978, + "5be238082ff8ed1bc489fd9812cc3c0b": 9784, + "572fd9201f8c000abd16c4c84d9ddf98": 979, + "1ca6d04fce9ffde7de781398a18da88c": 982, + "55b7daf3ae2f70c2f768cdde0fe2b4fe": 982, + "57c84653078eae9fec119e05f5b507bd": 982, + "5773848cba599a17e1496da384639d2c": 9824, + "bddd943215857ad77ea48d2a1a138ec8": 985, + "3f2ee922cd23c9c211777be1d26ea2a8": 986, + "b757f3031fb7698925cf9eb8d3b343a1": 986, + "c307ef58ccaccacb479e2662ef2e0841": 986, + "e2e5e990a3b43da416307fba4ccbe4fb": 986, + "08d373c5a350eb7b7f593657e2a5f252": 989, + "29d3a2a6b39c83e464b6e6450c1f70b9": 989, + "57222bf254226e8bb26216c2d064e8f1": 990, + "6c6f2cfe5ba1fbe780fb6bd63d1cb478": 990, + "bf6da6f13729c8925d8725d7dd25b420": 990, + "ec25ba881050baae5261ce82ebad8277": 990, + "0c684458019a60b0e16acb408f1418ea": 991, + "711afe5a0d32b3b1e40afcfaada20fa9": 991, + "56c33658bc878f05b5ae7b8634098066": 9918, + "02a11cc95bf9f62c601a4909e9b22e95": 993, + "283c2e794c1eae82a31dfac608e76222": 993, + "a702074d3315bbc5081eccba932ecad1": 993, + "aff500ae36d63bb253fd36e8300cc812": 993, + "ecf0db12f88db32c4a129ff11af7f73d": 993, + "bb8e9e7429145404f0e4186ad0161fc8": 995, + "928a0d7feeb4edee8d53203a575968e6": 996, + "672cf07438693acd3a90514df0ced274": 9965 + } +} diff --git a/data/vectrex_hascheevos.txt b/data/vectrex_hascheevos.txt new file mode 100644 index 0000000..bdc22c0 --- /dev/null +++ b/data/vectrex_hascheevos.txt @@ -0,0 +1 @@ +true:"Spike" diff --git a/data/vectrex_hashlibrary.json b/data/vectrex_hashlibrary.json new file mode 100644 index 0000000..1b6626f --- /dev/null +++ b/data/vectrex_hashlibrary.json @@ -0,0 +1,6 @@ +{ + "Success": true, + "MD5List": { + "5a90ab748f7b220edaf8c1d67e0bfe89": 6242 + } +} diff --git a/data/virtualboy_hascheevos.txt b/data/virtualboy_hascheevos.txt new file mode 100644 index 0000000..ac1aaca --- /dev/null +++ b/data/virtualboy_hascheevos.txt @@ -0,0 +1,8 @@ +11171:true:"Mario Clash" +11700:true:"Jack Bros." +11702:true:"Galactic Pinball" +11703:true:"Virtual Boy: Wario Land" +12492:true:"Panic Bomber" +12910:true:"Space Invaders: Virtual Collection" +13041:true:"Innsmouth no Yakata | Innsmouth Mansion" +13947:true:"~Homebrew~ Mario Kart: Virtual Cup" diff --git a/data/virtualboy_hashlibrary.json b/data/virtualboy_hashlibrary.json new file mode 100644 index 0000000..6a8360c --- /dev/null +++ b/data/virtualboy_hashlibrary.json @@ -0,0 +1,16 @@ +{ + "Success": true, + "MD5List": { + "B1B3A25CE8FB4F406BF82B8765D307D0": 11171, + "1b177fe2dd12ec1d67f6a43502f8d391": 11700, + "ee873c9969c15e92ca9a0f689c4ce5ea": 11700, + "85260599fdada2e137053a8647aa0d06": 11702, + "fb4dc9f4ebd506702eb49e99a62bd803": 11703, + "467247d5e3383d066005565bf8218436": 12492, + "7607f6f918615263512b17e56797c9aa": 12910, + "bb4aa9566437572802079c89452666e7": 12910, + "1eb964d0eaa3223cfefdcc99a6265c88": 13041, + "4698a0b151d95bbbb833e2a523a12be7": 13041, + "4b8c8b6a7711a005dd896b3ee9b8d0f1": 13947 + } +} diff --git a/data/wonderswan_hascheevos.txt b/data/wonderswan_hascheevos.txt new file mode 100644 index 0000000..3daf754 --- /dev/null +++ b/data/wonderswan_hascheevos.txt @@ -0,0 +1,4 @@ +14594:true:"Judgement Silversword: Rebirth Edition" +14599:true:"Dicing Knight." +14657:true:"Riviera: Yakusoku no Chi Riviera" +14731:true:"O-chan no Oekaki Logic" diff --git a/data/wonderswan_hashlibrary.json b/data/wonderswan_hashlibrary.json new file mode 100644 index 0000000..14db5ae --- /dev/null +++ b/data/wonderswan_hashlibrary.json @@ -0,0 +1,13 @@ +{ + "Success": true, + "MD5List": { + "a6686dc9d258a79b0aa1085d18918e65": 14594, + "b017d367af1ba43171beba3e184d9ee9": 14594, + "098b747bf9d88f651735b45197e393e1": 14599, + "2a4636abe2246598ea819721d48fb3c8": 14599, + "6e8848993a51e0226ba4be18e7bb6b73": 14599, + "7d4ba677a746557366cdc4a753c8862a": 14599, + "3e62a6b6af656fcac225cd02446acb9d": 14657, + "5e92e316ce0998edbec00b31a6f2e112": 14731 + } +} diff --git a/find_roms.sh b/find_roms.sh new file mode 100755 index 0000000..4a8c6fe --- /dev/null +++ b/find_roms.sh @@ -0,0 +1,58 @@ +#!/bin/bash + +sourcedir=$1 +hashfile=$2 +readonly SCRIPT_DIR="$(cd "$(dirname $0)" && pwd)" +systemfolder="$(basename "$2" .hashlist)" +tmpdir="$SCRIPT_DIR"/.tmpdir/ +outputfile="$SCRIPT_DIR"/find_roms.log +outputdir=~/roms.retroachievements.2020/ + +# Ansi color code variables +red="\e[0;91m" +blue="\e[0;94m" +expand_bg="\e[K" +blue_bg="\e[0;104m${expand_bg}" +red_bg="\e[0;101m${expand_bg}" +green_bg="\e[0;102m${expand_bg}" +green="\e[0;92m" +white="\e[0;97m" +bold="\e[1m" +uline="\e[4m" +reset="\e[0m" + +if test -d "$tmpdir"; then + rm -rdf "$tmpdir" + echo "Deleting $tmpdir folder." +fi +if ! test -d "$tmpdir"; then + mkdir -p "$tmpdir" + echo "Create $tmpdir folder." +fi +if test -f "$outputfile"; then + rm "$outputfile" +fi +if ! test -d ${outputdir}"${systemfolder}"; then + mkdir -p ${outputdir}"${systemfolder}" + echo "Create ${outputdir}${systemfolder} folder." +fi + +sleep 1 + +for zipfile in "${sourcedir}"/*.zip; do + gameName="$(basename "$zipfile" .zip)" + echo -e "${red}Extracting ${gameName}...${reset}" + 7z x "${zipfile}" -o${tmpdir}"${gameName}-tmp" > /dev/null + for i in ${tmpdir}"${gameName}-tmp"/*; do + hash=$(md5sum "$i" | grep -E "[0-9a-f]{32}" -Eo) + if grep -q $hash "${hashfile}"; then + echo "${gameName}" >> "${outputfile}" + cp "${zipfile}" ${outputdir}"${systemfolder}"/ -v + fi + done + rm -rdf ${tmpdir}/"${gameName}-tmp" +done + +rm -rdf ${tmpdir} +chmod 755 ${outputdir}"${systemfolder}"/* +echo "$(find "${outputdir}"${systemfolder} -maxdepth 1 -type f | wc -l) files copied out of $(wc -l < $2) hashes" diff --git a/gamelists/apple2.html b/gamelists/apple2.html new file mode 100644 index 0000000..8291caa --- /dev/null +++ b/gamelists/apple2.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games Apple II - RetroAchievements +
+
+ +
+
+ \ No newline at end of file diff --git a/gamelists/apple2/linkedhashes.php?g=13925 b/gamelists/apple2/linkedhashes.php?g=13925 new file mode 100644 index 0000000..dcf00a2 --- /dev/null +++ b/gamelists/apple2/linkedhashes.php?g=13925 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 4f319042ecb13e6a6090456d18b2aef3
  • 7314dbc241b9a21cc004eb428bb7e070
  • d566f78651f70fad171111bf38e2cfca
  • d7c976c61c01f620e7cb1d3a5d432601


+
+
+
+ \ No newline at end of file diff --git a/gamelists/apple2/linkedhashes.php?g=14022 b/gamelists/apple2/linkedhashes.php?g=14022 new file mode 100644 index 0000000..63d863f --- /dev/null +++ b/gamelists/apple2/linkedhashes.php?g=14022 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • daff679b6c57e6a9213212b4c7a79093


+
+
+
+ \ No newline at end of file diff --git a/gamelists/apple2/linkedhashes.php?g=14024 b/gamelists/apple2/linkedhashes.php?g=14024 new file mode 100644 index 0000000..32fe373 --- /dev/null +++ b/gamelists/apple2/linkedhashes.php?g=14024 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1208cc0b1d18d6b6b077164fca770c9b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/apple2/linkedhashes.php?g=14034 b/gamelists/apple2/linkedhashes.php?g=14034 new file mode 100644 index 0000000..6a2223b --- /dev/null +++ b/gamelists/apple2/linkedhashes.php?g=14034 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9b55fc36780dcdc7be8e7149d08af750


+
+
+
+ \ No newline at end of file diff --git a/gamelists/apple2/linkedhashes.php?g=14038 b/gamelists/apple2/linkedhashes.php?g=14038 new file mode 100644 index 0000000..71c3c46 --- /dev/null +++ b/gamelists/apple2/linkedhashes.php?g=14038 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 9771f313dda522e8c65407e94c173fb2
  • fc40e6016f06eb748ead9b072c53b6aa


+
+
+
+ \ No newline at end of file diff --git a/gamelists/apple2/linkedhashes.php?g=14225 b/gamelists/apple2/linkedhashes.php?g=14225 new file mode 100644 index 0000000..e97667b --- /dev/null +++ b/gamelists/apple2/linkedhashes.php?g=14225 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 98ba542f94d25a635fd313710fd758f9
  • b2397861f6b8974134d238ad3ad9c4fc
  • f491b82b944c8d55c7ce82c3056df556


+
+
+
+ \ No newline at end of file diff --git a/gamelists/apple2/linkedhashes.php?g=14231 b/gamelists/apple2/linkedhashes.php?g=14231 new file mode 100644 index 0000000..146850b --- /dev/null +++ b/gamelists/apple2/linkedhashes.php?g=14231 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 235600cb734020deef456a14617225b0
  • c4324ad69ac4ce78c07e4b3bf275e828


+
+
+
+ \ No newline at end of file diff --git a/gamelists/apple2/linkedhashes.php?g=14391 b/gamelists/apple2/linkedhashes.php?g=14391 new file mode 100644 index 0000000..65edc29 --- /dev/null +++ b/gamelists/apple2/linkedhashes.php?g=14391 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 9d3749dceb156e166fea18765263ba92
  • b70feb11a48af379b44300e8a20e47ca


+
+
+
+ \ No newline at end of file diff --git a/gamelists/apple2/linkedhashes.php?g=14398 b/gamelists/apple2/linkedhashes.php?g=14398 new file mode 100644 index 0000000..6021220 --- /dev/null +++ b/gamelists/apple2/linkedhashes.php?g=14398 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 1895ddb08c2068a66f9df3765a29f5bf
  • 6a2bd8ce8b19436d2ce455b751aadb31
  • 92088fe43463ece00e33e0cc150c4a0e
  • ebb389599debac2b554c431bfb0f919c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/apple2/linkedhashes.php?g=14478 b/gamelists/apple2/linkedhashes.php?g=14478 new file mode 100644 index 0000000..e43c528 --- /dev/null +++ b/gamelists/apple2/linkedhashes.php?g=14478 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 10 unique ROM(s) registered for it with the following MD5s:

  • 0d0ef0cace8ccde940c06781efe2fd78
  • 1fddafe19fba7d14af77f358bbcf9174
  • 3493f40aec829f98e4cf6ff739ff0f81
  • 66f82e26d9417757ece6253dc140967c
  • 6af43b5d837688b373529947d3fb04fc
  • 8899ad83dbda2e772393f98abefdc058
  • 89d90b22588fc4217348e334c60c6900
  • 9214fdb0b3a53c5f4160ac681a2002bd
  • a7cea209c45dacf4474753a701b4229d
  • dbcc564fdd15795c4b994af26a01a09e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/apple2/linkedhashes.php?g=14674 b/gamelists/apple2/linkedhashes.php?g=14674 new file mode 100644 index 0000000..9e81056 --- /dev/null +++ b/gamelists/apple2/linkedhashes.php?g=14674 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bd92a051c2098b3090b865365caa3571


+
+
+
+ \ No newline at end of file diff --git a/gamelists/apple2/linkedhashes.php?g=17138 b/gamelists/apple2/linkedhashes.php?g=17138 new file mode 100644 index 0000000..7b1be5f --- /dev/null +++ b/gamelists/apple2/linkedhashes.php?g=17138 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 0fe0171c101d92659530af44be9df553
  • 239f0238141ba3ecb100d015d543ac1f
  • d8549ae7a488ab18289a02c13461d24b
  • da01ed6b55920013f63e2d79fbb15660
  • e077d01f89c5d87fdf1f85890f579ed4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade.html b/gamelists/arcade.html new file mode 100644 index 0000000..00f7420 --- /dev/null +++ b/gamelists/arcade.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games Arcade - RetroAchievements +
+
+
+ +
+

Arcade

TitleAchievementsPointsLeaderboards
42470 (1673)1
48550 (5445)
38343 (2322)1
25215 (1285)1
15143 (325)11
57650 (1652)
27270 (502)
61707 (6723)2
55762 (2997)16
56785 (4142)2
50580 (4263)1
32310 (1507)6
215 (23)1
33320 (798)
34291 (738)1
29270 (542)6
44530 (3652)
54830 (8047)11
48514 (5295)1
25285 (491)
32400 (2200)28
18255 (1318)1
25320 (1173)1
22295 (666)1
22120 (237)1
30465 (1410)
30260 (1288)1
32310 (471)
50850 (6233)3
22450 (986)
52797 (4538)2
96830 (1934)
50435 (1870)
32408 (777)2
27250 (2744)30
23342 (1761)3
17119 (193)
891044 (2431)10
68674 (1864)2
50606 (1115)1
58565 (1078)
96719 (2499)3
112755 (1422)
98761 (3036)3
74560 (1460)1
90625 (1376)1
99650 (1310)1
134780 (3704)1
49437 (3619)1
57530 (1654)10
83758 (3077)
66470 (941)2
23295 (947)1
25298 (1110)
8210 (35)
22280 (977)2
43300 (531)1
70525 (1082)2
112800 (2717)1
91700 (1491)3
60470 (2311)6
24215 (407)1
82600 (1853)
65602 (2593)2
39445 (2932)
37480 (3913)2
32490 (5245)2
22315 (561)1
29295 (1413)
45415 (3016)
25259 (4088)7
25500 (6140)
20275 (805)2
43305 (4209)
60470 (1998)
21225 (789)2
1569 (71)
23300 (967)2
34410 (3122)3
27250 (1264)3
30175 (1018)2
36735 (5585)1
50400 (2663)
60580 (1596)
11190 (511)2
55521 (1209)
77785 (3779)4
26223 (2720)1
34485 (2926)4
30355 (961)1
58400 (865)
54631 (2393)4
55425 (680)3
45400 (1114)1
34213 (433)1
10135 (668)4
71482 (1633)
30342 (929)1
55400 (1338)4
20170 (850)14
49460 (818)
70700 (8133)
23275 (465)1
26400 (560)
25330 (2275)
46375 (4647)1
20150 (180)1
50345 (570)1
20260 (559)
15300 (1683)
30230 (1060)2
31400 (2133)
15230 (798)2
31556 (2922)5
24260 (997)7
42460 (945)
55400 (2027)
28420 (3951)1
24445 (1989)
18241 (5172)2
33310 (888)1
42310 (516)
43380 (656)
Totals: 123 games530152762 (247209)284

+
+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11726 b/gamelists/arcade/linkedhashes.php?g=11726 new file mode 100644 index 0000000..95cd902 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11726 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 33d1f8bc44a414a1f2f76cfe4c197c66
  • af13b049084ba6917ade6d6f01cd33dd
  • b7cf5aa4176917b597eac76d364e449c
  • e37004f9a9251cc5d5921836e14fb5c6
  • f6267c0019e7006bab5875b27be32478
  • f9505345203b7c29fcf0c227a198dfc2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11727 b/gamelists/arcade/linkedhashes.php?g=11727 new file mode 100644 index 0000000..b58b111 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11727 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 946e902aa8b913f8e972a64b5133c522


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11750 b/gamelists/arcade/linkedhashes.php?g=11750 new file mode 100644 index 0000000..05eb1df --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11750 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b43c8b4ec999588c04dad79bb8bcc745


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11751 b/gamelists/arcade/linkedhashes.php?g=11751 new file mode 100644 index 0000000..3314126 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11751 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • edb0c9707493e999cf61ae4e6a335f91


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11752 b/gamelists/arcade/linkedhashes.php?g=11752 new file mode 100644 index 0000000..9e58240 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11752 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 577029dbc6e6bb60afdb832cef943eb1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11753 b/gamelists/arcade/linkedhashes.php?g=11753 new file mode 100644 index 0000000..ee1bd3c --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11753 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5c14f94978dfad8ffb95cd5b405abfd8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11757 b/gamelists/arcade/linkedhashes.php?g=11757 new file mode 100644 index 0000000..ade6a72 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11757 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 13e4ced9b848a542cdee1ec31a150a1a
  • 28bf131945d07b8709e07645ce6bada5
  • a33726f35cbcf7fc44b0fecc2e4c3d2f
  • c0959b94e46f1811952055be7f59cba6
  • f1afe8fcd96d1e72afc826d4a1b4cd62


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11758 b/gamelists/arcade/linkedhashes.php?g=11758 new file mode 100644 index 0000000..3373a53 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11758 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • df4a8b32238c36921a260ed6ab784850


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11759 b/gamelists/arcade/linkedhashes.php?g=11759 new file mode 100644 index 0000000..0845bd2 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11759 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 715b50388fc01b4e356b7227aec29722


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11760 b/gamelists/arcade/linkedhashes.php?g=11760 new file mode 100644 index 0000000..ac82562 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11760 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ad7690ec619673225f1e0f7f265d5fa8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11762 b/gamelists/arcade/linkedhashes.php?g=11762 new file mode 100644 index 0000000..8efcf68 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11762 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 44d6eb63bfac741a7f3c987f75b85bbe


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11763 b/gamelists/arcade/linkedhashes.php?g=11763 new file mode 100644 index 0000000..a19f3bb --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11763 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b246ff693d453c3b1a3049752da2bc75


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11767 b/gamelists/arcade/linkedhashes.php?g=11767 new file mode 100644 index 0000000..de018d6 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11767 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 066ab7af0557bd4280c94dcf1e56d551


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11768 b/gamelists/arcade/linkedhashes.php?g=11768 new file mode 100644 index 0000000..de2ec2b --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11768 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4af54168a800f0ff32f7f9377d5329a9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11769 b/gamelists/arcade/linkedhashes.php?g=11769 new file mode 100644 index 0000000..25fe166 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11769 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 3aec393b257a3e4d30dbc0d5c22fb2cf
  • 4095f20aad3a6f24baa34e5a443d71d5
  • 961e38b5146c0b07d078f53dec9b699a
  • ba2484bf7a03538d3e610aca5c7b5359


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11770 b/gamelists/arcade/linkedhashes.php?g=11770 new file mode 100644 index 0000000..d71ba0d --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11770 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 320a36c48c06dce51438108df9defb90


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11771 b/gamelists/arcade/linkedhashes.php?g=11771 new file mode 100644 index 0000000..3f4f547 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11771 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f69dc77532431c03d1dfbd31835bc4dd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11774 b/gamelists/arcade/linkedhashes.php?g=11774 new file mode 100644 index 0000000..589b639 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11774 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 34c37a308e48622cde50f3da39687796


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11787 b/gamelists/arcade/linkedhashes.php?g=11787 new file mode 100644 index 0000000..317e3c0 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11787 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1a52ed76f4df2f621e235c36a97deed3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11794 b/gamelists/arcade/linkedhashes.php?g=11794 new file mode 100644 index 0000000..5705c63 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11794 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 209b01d5d9b045d8cbcc9311e661e94d
  • 80cf81ba256b82569d3702508d430cb7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11795 b/gamelists/arcade/linkedhashes.php?g=11795 new file mode 100644 index 0000000..1e4e3c6 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11795 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 002180613c2131abce28ae5bd4a8a2fb
  • 7f6640b9ee259b3277c4e7e8733f0245
  • bf02f7b4e9c7b535d368e878566c14a0
  • d38692661c72f0381e82e325c0e55f87
  • e8f7bc4c1fbc62db919f2a59e7953c5f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11796 b/gamelists/arcade/linkedhashes.php?g=11796 new file mode 100644 index 0000000..f329840 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11796 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bb8be21788196f32b3771e2bc0561e60


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11797 b/gamelists/arcade/linkedhashes.php?g=11797 new file mode 100644 index 0000000..e27f6cb --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11797 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b7e62952de4c640b526a79338d631bd6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11798 b/gamelists/arcade/linkedhashes.php?g=11798 new file mode 100644 index 0000000..4518191 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11798 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5270d551afd6753d1268312c96603236


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11805 b/gamelists/arcade/linkedhashes.php?g=11805 new file mode 100644 index 0000000..132bfa1 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11805 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 90bcf1208ffb058a7a83857fe2230a52
  • dad56c492769e5947c01216ab94dfcb3
  • dea3cdbe10c327ec87c6058f8b48cc7b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11806 b/gamelists/arcade/linkedhashes.php?g=11806 new file mode 100644 index 0000000..c0dc68d --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11806 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 7280b613c4597b4a4bbbae6f634bb886
  • 79374b32fb5e0f45c6fb40af7138bdbc
  • b81c3fcde2756cee6d7c0463c6c9ab8c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11808 b/gamelists/arcade/linkedhashes.php?g=11808 new file mode 100644 index 0000000..b75097a --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11808 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a7946d9b269b67f7a6b1148d3f5d8155


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11812 b/gamelists/arcade/linkedhashes.php?g=11812 new file mode 100644 index 0000000..ced552b --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11812 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 40073b2681a50f17ae0b325503a0365c
  • 9d34a5ddda57b3fb20d85cbe9d708919


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11820 b/gamelists/arcade/linkedhashes.php?g=11820 new file mode 100644 index 0000000..d846b96 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11820 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 93e4612854908c374d33bfb5c979f540


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11821 b/gamelists/arcade/linkedhashes.php?g=11821 new file mode 100644 index 0000000..cd72140 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11821 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • da5c580bfa56914ef2e260f2c3483602


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11822 b/gamelists/arcade/linkedhashes.php?g=11822 new file mode 100644 index 0000000..aaa8a53 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11822 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 1c90c082845e4b6a52ef8b5f2a0050a0
  • 86a7de326868fc46d5bb46f724a17792
  • b5e869fdadfee117203293faa33eab00
  • cae38c7d868c8630293449f74f711a4c
  • d674fa80556700a504bf94674a8461b6
  • ed65c4fe38d520f0033858a2847a6060


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11825 b/gamelists/arcade/linkedhashes.php?g=11825 new file mode 100644 index 0000000..a6313e7 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11825 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b1475b391ad385c16feae3a2bfbfc2a0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11836 b/gamelists/arcade/linkedhashes.php?g=11836 new file mode 100644 index 0000000..0fee300 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11836 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 592cec0a3fc4d8cf9b6e57a09bff554b
  • caf87e134d793eec0e589c10f1167f07


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11848 b/gamelists/arcade/linkedhashes.php?g=11848 new file mode 100644 index 0000000..7eae31b --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11848 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 9b519c4dceb4327521e6af1ab03f9ec1
  • d05c0636f31eded00e13a0051db1ed37


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11860 b/gamelists/arcade/linkedhashes.php?g=11860 new file mode 100644 index 0000000..1550644 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11860 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c9a5750db3e5f76e917e153dc097e738


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11895 b/gamelists/arcade/linkedhashes.php?g=11895 new file mode 100644 index 0000000..83b8c5e --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11895 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5a5913127183c47bf3342315fc95e6c3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11896 b/gamelists/arcade/linkedhashes.php?g=11896 new file mode 100644 index 0000000..b27ef58 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11896 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b34175393aacad020560636348ae5611


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11900 b/gamelists/arcade/linkedhashes.php?g=11900 new file mode 100644 index 0000000..4aa442a --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11900 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 523555ae3bd12f5cc3ec406a4c8da0e9
  • 80a0ae02ca0e9905e9baae671be9eea2
  • ccaa26b29d3e946fb6883710873df7fc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11905 b/gamelists/arcade/linkedhashes.php?g=11905 new file mode 100644 index 0000000..ea7bc01 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11905 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c49db6febda650eb59149c52852df9e5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11932 b/gamelists/arcade/linkedhashes.php?g=11932 new file mode 100644 index 0000000..60fcf69 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11932 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 492ea859726d84d6fc94aaed5d07152c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11933 b/gamelists/arcade/linkedhashes.php?g=11933 new file mode 100644 index 0000000..474f5f7 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11933 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 663e35948366c5f5d39b27df6826231a
  • aa1ea007f07aa246732b3c633fc2ad3c
  • cae647ac23b8f5d74b7f2b0aca48506c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11942 b/gamelists/arcade/linkedhashes.php?g=11942 new file mode 100644 index 0000000..70b8eb6 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11942 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • a364a6bcde97a8910c2f3fef4b1e4dfe
  • d822240ddc24863944c78f241ff9a9a9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11943 b/gamelists/arcade/linkedhashes.php?g=11943 new file mode 100644 index 0000000..ddbcfae --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11943 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 02bbe063efc4b8883206c66e6cb775c9
  • 33d8780218ec321c54001d3feb0d4a4e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11944 b/gamelists/arcade/linkedhashes.php?g=11944 new file mode 100644 index 0000000..cb51b6f --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11944 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a6a463493afd575aaed06d73d3f3c390


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11945 b/gamelists/arcade/linkedhashes.php?g=11945 new file mode 100644 index 0000000..288dcd3 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11945 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0011e5155daaed1ab4bc73e24bd5ab8c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11946 b/gamelists/arcade/linkedhashes.php?g=11946 new file mode 100644 index 0000000..cab69a5 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11946 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • de2f15d014d40b93578d255e6221fd60


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11948 b/gamelists/arcade/linkedhashes.php?g=11948 new file mode 100644 index 0000000..c8884b3 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11948 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b616c446de649b69261679c173d78d18


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11951 b/gamelists/arcade/linkedhashes.php?g=11951 new file mode 100644 index 0000000..d02ee2f --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11951 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8b848a152ad86d9fec34c7c291c66858


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11971 b/gamelists/arcade/linkedhashes.php?g=11971 new file mode 100644 index 0000000..c91c444 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11971 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 32d0f9f324c6861605e0f948c2b68be6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11975 b/gamelists/arcade/linkedhashes.php?g=11975 new file mode 100644 index 0000000..8ed7e7c --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11975 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • bc80ce3199cfe7265644e711e7919013
  • ffd3fe067fcc35a30e5ba34415e01507


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11984 b/gamelists/arcade/linkedhashes.php?g=11984 new file mode 100644 index 0000000..2a07635 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11984 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1bf43bfeec4116b50a2789a61abfff59
  • 79cfab624c6f02057146c1cdadff2edf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=11991 b/gamelists/arcade/linkedhashes.php?g=11991 new file mode 100644 index 0000000..6bb4f27 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=11991 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 75d86ead4097fb1123ef54ca07d16f6e
  • 861b05620edba698c6301faa7d56819b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12008 b/gamelists/arcade/linkedhashes.php?g=12008 new file mode 100644 index 0000000..c9c8a68 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12008 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 9e226fab11cfe8f248c9452de02fd9c9
  • d7d1b007629a371d956f49347a60df2e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12026 b/gamelists/arcade/linkedhashes.php?g=12026 new file mode 100644 index 0000000..3f0a00e --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12026 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d5d7199eda7492cd9ee24173357e781b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12027 b/gamelists/arcade/linkedhashes.php?g=12027 new file mode 100644 index 0000000..1caa773 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12027 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 024e350be5736b014d80c32330f03e2a
  • ac81f93f04be5d5a385f8e97ea595dbc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12028 b/gamelists/arcade/linkedhashes.php?g=12028 new file mode 100644 index 0000000..b4dd0b0 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12028 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ed81921e0d069f9a7ead349333a96efa


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12029 b/gamelists/arcade/linkedhashes.php?g=12029 new file mode 100644 index 0000000..24669e4 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12029 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ae9a0b2abd7445537a8cc3cc20cb27a0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12030 b/gamelists/arcade/linkedhashes.php?g=12030 new file mode 100644 index 0000000..6cf6e8f --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12030 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 23438b2c55800e5b4e8ab86f525b379c
  • 3cfc8c16d865610ec01beb115c307874


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12031 b/gamelists/arcade/linkedhashes.php?g=12031 new file mode 100644 index 0000000..f6cff1c --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12031 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 5bf98ad5e7c70133d8e41bdc36172a24
  • 7e950909d250e360570c83052824ffbe
  • 94003f2519edbaf151bfbeed5d6b20ea
  • cc4859439b96cad014423c432484f1fe
  • d464bc738ebbf343810a19f8f7ea04a6
  • de5accc436a9a8fc925aa203d07d6cdd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12032 b/gamelists/arcade/linkedhashes.php?g=12032 new file mode 100644 index 0000000..37555a7 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12032 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1653c67c602403333d94dd921737ce8e
  • 31de2d3eeb556034f322aa06453cf0d1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12033 b/gamelists/arcade/linkedhashes.php?g=12033 new file mode 100644 index 0000000..da9c16c --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12033 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 69fa9fb02b9fe054c98d9dee8729ce92
  • eee9ad69cc7b25a4ce0f0392eaaf2f94


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12034 b/gamelists/arcade/linkedhashes.php?g=12034 new file mode 100644 index 0000000..89fac10 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12034 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 68c49e3c1c365e44323e50ea159a6e6f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12035 b/gamelists/arcade/linkedhashes.php?g=12035 new file mode 100644 index 0000000..86f27e9 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12035 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 45993c7ce69179f7086abc11ca414639
  • bcdeb242322af6d883799bd46d874d62


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12036 b/gamelists/arcade/linkedhashes.php?g=12036 new file mode 100644 index 0000000..7aa6337 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12036 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7a9e2fba2f949c98c0dadbbad7ae09a1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12040 b/gamelists/arcade/linkedhashes.php?g=12040 new file mode 100644 index 0000000..5d34392 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12040 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 99f1459f643a1abb0fd8b1c2e806aaa8
  • a70d170934874ba157ef5d9ba73fe667


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12049 b/gamelists/arcade/linkedhashes.php?g=12049 new file mode 100644 index 0000000..0c42c75 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12049 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 476bcc5adcac540638c9be39f017ffbb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12052 b/gamelists/arcade/linkedhashes.php?g=12052 new file mode 100644 index 0000000..9bdbb8c --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12052 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7007a91dd5b0e797a63ad8527b73f108


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12084 b/gamelists/arcade/linkedhashes.php?g=12084 new file mode 100644 index 0000000..00bc361 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12084 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 85712af9f7cc2ed48da39f14379e7756


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12104 b/gamelists/arcade/linkedhashes.php?g=12104 new file mode 100644 index 0000000..e76a7e8 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12104 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6917407020977114942fec31ab56184d
  • 891118a73716e769ba535e2f59247fbe


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12152 b/gamelists/arcade/linkedhashes.php?g=12152 new file mode 100644 index 0000000..bab2a31 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12152 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 94f40cd22046f82f39831d7ce1572c61


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12154 b/gamelists/arcade/linkedhashes.php?g=12154 new file mode 100644 index 0000000..f9a5a53 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12154 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 8eaf95929427abcecd6d57babe80c643
  • 9ee40dc7f7869a5393f7b049fd81aa11


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12173 b/gamelists/arcade/linkedhashes.php?g=12173 new file mode 100644 index 0000000..f1c7a97 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12173 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0a9374acd05251a6b904092cca0a7554


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12178 b/gamelists/arcade/linkedhashes.php?g=12178 new file mode 100644 index 0000000..a151e70 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12178 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3ddedc5f069dff75065f9ef75e5b8f54


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12183 b/gamelists/arcade/linkedhashes.php?g=12183 new file mode 100644 index 0000000..3553803 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12183 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 5a582ef17d6a088d9cb644e4c1ea3cdd
  • 6a0e8b74ae316ad680a2cc6ba07baee7
  • e3ad3ba2734c6866e7d6903ba113a375


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12192 b/gamelists/arcade/linkedhashes.php?g=12192 new file mode 100644 index 0000000..e2b1602 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12192 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 64d1f88b9b276aece4b0edcc25b7a434
  • 7775842918a8f43b7f3caf433e8327b7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12210 b/gamelists/arcade/linkedhashes.php?g=12210 new file mode 100644 index 0000000..8b86b6a --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12210 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 344f706dd7fa89df2b38166b5f300c48
  • d77085d7b7027441353a78779dd69c17


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12211 b/gamelists/arcade/linkedhashes.php?g=12211 new file mode 100644 index 0000000..95f6967 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12211 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 38e530be656a4e14b31e709c0502e4ec
  • 505481ca77e38c86b36b118433011a39


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12214 b/gamelists/arcade/linkedhashes.php?g=12214 new file mode 100644 index 0000000..33e748f --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12214 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2061bac208c7bdd2665fbf4b7067e468
  • bf8e12d9c01322c7dfc05425f6a10ced


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12230 b/gamelists/arcade/linkedhashes.php?g=12230 new file mode 100644 index 0000000..0e3363b --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12230 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3756f4c9114d3c0af1fdcdcd67bbfa59


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12247 b/gamelists/arcade/linkedhashes.php?g=12247 new file mode 100644 index 0000000..d2dc6c0 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12247 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0bef9fa16cd52606f5c7b4363e726085


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12248 b/gamelists/arcade/linkedhashes.php?g=12248 new file mode 100644 index 0000000..55d276d --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12248 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e0d17d88ad08e13d3a2cd4ef38f7c4d5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12255 b/gamelists/arcade/linkedhashes.php?g=12255 new file mode 100644 index 0000000..6bf1990 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12255 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 22546437e131e9c4c1acd32ee28c5c53
  • 25909c40b4cd53fea6a806bf334bb3f0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12266 b/gamelists/arcade/linkedhashes.php?g=12266 new file mode 100644 index 0000000..6043270 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12266 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0321dd1f8f8113fe4c2a558d67567f0e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12298 b/gamelists/arcade/linkedhashes.php?g=12298 new file mode 100644 index 0000000..aef7c8d --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12298 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2cd218a58638cd4ca02aee6511bdf835
  • fb5485bf674f4b24a2fe84a184ceba9c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12310 b/gamelists/arcade/linkedhashes.php?g=12310 new file mode 100644 index 0000000..0269287 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12310 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 811b4a59b7163b53b663ce7a0209469a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12322 b/gamelists/arcade/linkedhashes.php?g=12322 new file mode 100644 index 0000000..58e666c --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12322 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1380a4e5e4e91a812a86b9f925fa6581


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12323 b/gamelists/arcade/linkedhashes.php?g=12323 new file mode 100644 index 0000000..5045a60 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12323 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 49608f90881c51825b3bd2c414f21fba


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12342 b/gamelists/arcade/linkedhashes.php?g=12342 new file mode 100644 index 0000000..d98f1e5 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12342 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6cf2650032fbe6a5dae3df1825f33540
  • 9ea695f8a32ddd4d0366990a99812bff


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12364 b/gamelists/arcade/linkedhashes.php?g=12364 new file mode 100644 index 0000000..68679f6 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12364 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1a5235c012c18789e81960333a76cd7a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12379 b/gamelists/arcade/linkedhashes.php?g=12379 new file mode 100644 index 0000000..f9b0bec --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12379 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 02f6b54be05c7927e0794b73a942f909


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12431 b/gamelists/arcade/linkedhashes.php?g=12431 new file mode 100644 index 0000000..ab3f183 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12431 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3062538fc1a23d3cf8b1390c18a828bf
  • bd7722a998dbb4cfed80080088f3d4c2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12514 b/gamelists/arcade/linkedhashes.php?g=12514 new file mode 100644 index 0000000..ee6b551 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12514 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cbb42a149068655211736d9274ac519c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12543 b/gamelists/arcade/linkedhashes.php?g=12543 new file mode 100644 index 0000000..88069a3 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12543 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cee8c9264320a0b32eb4efb1496e5c2b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12662 b/gamelists/arcade/linkedhashes.php?g=12662 new file mode 100644 index 0000000..2fedeb7 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12662 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 401fa29e9f7cb9ffb490f9984ba7086b
  • 78883dde65ba8ffb3b7801aab9fefea7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12663 b/gamelists/arcade/linkedhashes.php?g=12663 new file mode 100644 index 0000000..c16f4f7 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12663 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 193e47e4c332a32fada099d99d40f32b
  • d297c3136b7131586b65b63b53e62b91


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12708 b/gamelists/arcade/linkedhashes.php?g=12708 new file mode 100644 index 0000000..40162fd --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12708 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • d32b94ad2780e0de66615bb2effae910
  • d946e070ea1a49ae246c8abc169e6a9c
  • f1170bcbe7bc8fffdb76dc390052aed1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12734 b/gamelists/arcade/linkedhashes.php?g=12734 new file mode 100644 index 0000000..0756dee --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12734 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6a3e4ce1faaf6448cd8b11cfdb930065


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12741 b/gamelists/arcade/linkedhashes.php?g=12741 new file mode 100644 index 0000000..5926726 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12741 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e8d35aa4568a00a9f3b8b03984b1ba38


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12792 b/gamelists/arcade/linkedhashes.php?g=12792 new file mode 100644 index 0000000..e2af572 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12792 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6fce0b952d5398f99ddb040344310f65
  • deff1024b8ce1c7f02c4ea5fe26c95bb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=12816 b/gamelists/arcade/linkedhashes.php?g=12816 new file mode 100644 index 0000000..dd2dbd1 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=12816 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cbba5a255ac88f685bdd8f37248e08cb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=13566 b/gamelists/arcade/linkedhashes.php?g=13566 new file mode 100644 index 0000000..4cb496b --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=13566 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ed6b61fc3c23bab78e12cf3b49f6df9f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=13761 b/gamelists/arcade/linkedhashes.php?g=13761 new file mode 100644 index 0000000..a5c16e4 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=13761 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4af3f971f26f1e78fa672da2312bb861


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=13762 b/gamelists/arcade/linkedhashes.php?g=13762 new file mode 100644 index 0000000..322d85a --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=13762 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 504d6fc6bb4a767eca363474d9bb644d
  • 5d43cd3332f65ceb9f9a9f780408f730
  • 62726b181c25c497d2f2a9f28ed125cc
  • 80252956725fdad94a2133d7b60d977a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=13767 b/gamelists/arcade/linkedhashes.php?g=13767 new file mode 100644 index 0000000..e8f48bc --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=13767 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • db42d9fb2f27e14ea4d97a0bd5aa2c67


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=13770 b/gamelists/arcade/linkedhashes.php?g=13770 new file mode 100644 index 0000000..665ca51 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=13770 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5e38e0ffa34dafe5053110568dc0cd3f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=13784 b/gamelists/arcade/linkedhashes.php?g=13784 new file mode 100644 index 0000000..48be7bc --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=13784 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 057827b74ba1259423d9c00de10b4300
  • f9d2719b2430d598bc155a58b4be0e3c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=13794 b/gamelists/arcade/linkedhashes.php?g=13794 new file mode 100644 index 0000000..63e66a1 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=13794 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3160045ee842fc9ab77b96e32e98fa34


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=13796 b/gamelists/arcade/linkedhashes.php?g=13796 new file mode 100644 index 0000000..dc1ef6f --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=13796 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 86a5e87842b12616c52f467f5693348f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=13799 b/gamelists/arcade/linkedhashes.php?g=13799 new file mode 100644 index 0000000..2a991a0 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=13799 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 247d7dc079da278eceafc4a0569268a1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=13802 b/gamelists/arcade/linkedhashes.php?g=13802 new file mode 100644 index 0000000..455afe4 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=13802 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 71584ce454046d8b5c63ce863e8b6a42
  • f39ab67bb4de0ca120e7ecd5117b2396


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=13808 b/gamelists/arcade/linkedhashes.php?g=13808 new file mode 100644 index 0000000..51a9da2 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=13808 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 13b4d77d6491b9bfb59d7841986d5ea4
  • 4aabbb8e749d640b6d037693ba8c7f33


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=13811 b/gamelists/arcade/linkedhashes.php?g=13811 new file mode 100644 index 0000000..aa61d7e --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=13811 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 39a754c03464c2d58a8dd815cad61962
  • 4c56ad041c708f398cf553591d81caa1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=13812 b/gamelists/arcade/linkedhashes.php?g=13812 new file mode 100644 index 0000000..f7e66d4 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=13812 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cc7d39b1ffe850ce8aa1f7842a6ee1e6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=14880 b/gamelists/arcade/linkedhashes.php?g=14880 new file mode 100644 index 0000000..53266db --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=14880 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5caaadf5adfae76fa3e965ecb4fb4196


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=15003 b/gamelists/arcade/linkedhashes.php?g=15003 new file mode 100644 index 0000000..2bbd1b0 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=15003 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • fc90e8404f7907342d5eaeb7068ac489


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=15086 b/gamelists/arcade/linkedhashes.php?g=15086 new file mode 100644 index 0000000..50cc797 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=15086 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6ad8536215968eb1f3494143392c77bf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=15125 b/gamelists/arcade/linkedhashes.php?g=15125 new file mode 100644 index 0000000..fdaba4b --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=15125 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 14e7c5aef8b731fc89df34e1bf5fb355


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=15207 b/gamelists/arcade/linkedhashes.php?g=15207 new file mode 100644 index 0000000..f3758b8 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=15207 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 3a52b4df8e783220943a54cf31ccde72
  • 71b0dbe1d874e69211596b6c69e49d00
  • 7998964cb9535ea6f1b179d05ce1c818
  • 95d7ba2539c81661b2ac8c5844266b0c
  • b1f28005494c5c2a58ac92b5b78d4eeb
  • d5d9404e6e3dba04bb3f8db697d4ad46
  • f9d39017ba0e348098c2d572c400d349


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=15791 b/gamelists/arcade/linkedhashes.php?g=15791 new file mode 100644 index 0000000..d5aa522 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=15791 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9a18cd4fc9e220a3ff75cf72806d1589


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=15881 b/gamelists/arcade/linkedhashes.php?g=15881 new file mode 100644 index 0000000..dba02ec --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=15881 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7b8ee99d755c0f48c919b2ea1667bc84


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=16492 b/gamelists/arcade/linkedhashes.php?g=16492 new file mode 100644 index 0000000..c319309 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=16492 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b668a7fc1d94493f367431cca54de5ad


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=4845 b/gamelists/arcade/linkedhashes.php?g=4845 new file mode 100644 index 0000000..1f0d222 --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=4845 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1ff635b6dd49c1b03bb02c35c3823cf6
  • 6fea1b51387e327e43e06222b2755b4e
  • d68fed6d32c4252699e598d07c816371


+
+
+
+ \ No newline at end of file diff --git a/gamelists/arcade/linkedhashes.php?g=5645 b/gamelists/arcade/linkedhashes.php?g=5645 new file mode 100644 index 0000000..ba13edb --- /dev/null +++ b/gamelists/arcade/linkedhashes.php?g=5645 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • fa44835d0ed33e8aa3b6b8964ec77bfd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600.html b/gamelists/atari2600.html new file mode 100644 index 0000000..54744ca --- /dev/null +++ b/gamelists/atari2600.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games Atari 2600 - RetroAchievements +
+
+
+ +
+

Atari 2600

TitleAchievementsPointsLeaderboards
1091 (186)
11200 (628)2
13100 (120)1
1275 (169)
43800 (4245)
1875 (98)2
1765 (108)8
1823 (26)
14100 (376)
7200 (543)
1680 (293)6
13105 (135)
1490 (124)1
20275 (1099)1
35480 (1864)1
13375 (615)
26130 (274)4
38313 (1423)
10155 (213)1
11160 (323)
12189 (2369)4
23180 (514)1
20182 (3247)1
10148 (0)3
30108 (468)8
18400 (1000)1
45385 (804)
1068 (96)6
14200 (475)
47500 (7054)12
12150 (236)1
12400 (652)
32400 (876)
2370 (154)2
13200 (5187)2
13190 (267)
15240 (714)
11200 (462)
1120 (20)1
18125 (194)4
15250 (1984)
20340 (944)2
1950 (52)1
15210 (2114)4
21325 (1737)4
14120 (404)16
1240 (43)1
1297 (162)2
28230 (1054)2
17160 (423)6
15186 (296)
8200 (1337)
17305 (806)
20495 (3404)
15100 (212)
16153 (395)8
21250 (2615)2
15200 (267)10
969 (110)
8135 (181)
2575 (107)
14200 (1104)2
28275 (491)
828 (48)
23250 (386)
38400 (5252)4
22111 (170)
30300 (1422)1
1013 (13)
25200 (947)4
13155 (226)1
33195 (969)36
1025 (25)1
14195 (369)1
982 (318)
21175 (954)5
42425 (970)
12120 (510)8
23345 (1749)
1150 (128)1
630 (31)1
822 (22)2
1230 (33)3
11192 (633)5
27317 (627)
635 (38)
13150 (561)1
1135 (36)1
Totals: 88 games157016592 (74330)208

+
+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=11191 b/gamelists/atari2600/linkedhashes.php?g=11191 new file mode 100644 index 0000000..a9a68ef --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=11191 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3E90CF23106F2E08B2781E41299DE556
  • f73d2d0eff548e8fc66996f27acf2b4b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=11439 b/gamelists/atari2600/linkedhashes.php?g=11439 new file mode 100644 index 0000000..c47eb86 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=11439 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 240bfbac5163af4df5ae713985386f92


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=11536 b/gamelists/atari2600/linkedhashes.php?g=11536 new file mode 100644 index 0000000..e816e22 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=11536 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2489359c38551a1d96cbaa4e52d8bb30
  • 3c56c0c5f6f97850ed0aa7bcc2a4e30e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=11611 b/gamelists/atari2600/linkedhashes.php?g=11611 new file mode 100644 index 0000000..7e79b52 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=11611 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 66b92ede655b73b402ecd1f4d8cd9c50
  • fca4a5be1251927027f2c24774a02160


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=11684 b/gamelists/atari2600/linkedhashes.php?g=11684 new file mode 100644 index 0000000..f66c5c8 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=11684 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 72ffbef6504b75e69ee1045af9075f66


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=11685 b/gamelists/atari2600/linkedhashes.php?g=11685 new file mode 100644 index 0000000..21f93a0 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=11685 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • fd4f5536fd80f35c64d365df85873418


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=11687 b/gamelists/atari2600/linkedhashes.php?g=11687 new file mode 100644 index 0000000..976f581 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=11687 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • ccbd36746ed4525821a8083b0d6d2c2c
  • dd7884b4f93cab423ac471aa1935e3df


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=11690 b/gamelists/atari2600/linkedhashes.php?g=11690 new file mode 100644 index 0000000..9118971 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=11690 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5f39353f7c6925779b0169a87ff86f1e
  • a4ff39d513b993159911efe01ac12eba


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=11694 b/gamelists/atari2600/linkedhashes.php?g=11694 new file mode 100644 index 0000000..c42536f --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=11694 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 00ce0bdd43aed84a983bef38fe7f5ee3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=11695 b/gamelists/atari2600/linkedhashes.php?g=11695 new file mode 100644 index 0000000..95cdf8f --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=11695 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 104468e44898b8e9fa4a1500fde8d4cb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=11697 b/gamelists/atari2600/linkedhashes.php?g=11697 new file mode 100644 index 0000000..ca3b071 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=11697 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 212d0b200ed8b45d8795ad899734d7d7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=11699 b/gamelists/atari2600/linkedhashes.php?g=11699 new file mode 100644 index 0000000..aed94cf --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=11699 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 90ccf4f30a5ad8c801090b388ddd5613


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=11710 b/gamelists/atari2600/linkedhashes.php?g=11710 new file mode 100644 index 0000000..8da2e78 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=11710 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 615a3bf251a38eb6638cdc7ffbde5480


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=11715 b/gamelists/atari2600/linkedhashes.php?g=11715 new file mode 100644 index 0000000..0130ef6 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=11715 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d08fccfbebaa531c4a4fa7359393a0a9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=11718 b/gamelists/atari2600/linkedhashes.php?g=11718 new file mode 100644 index 0000000..2009a67 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=11718 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7574480ae2ab0d282c887e9015fdb54c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=11725 b/gamelists/atari2600/linkedhashes.php?g=11725 new file mode 100644 index 0000000..893eb10 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=11725 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5678ebaa09ca3b699516dba4671643ed


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=11776 b/gamelists/atari2600/linkedhashes.php?g=11776 new file mode 100644 index 0000000..bc63c96 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=11776 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4afa7f377eae1cafb4265c68f73f2718


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=11778 b/gamelists/atari2600/linkedhashes.php?g=11778 new file mode 100644 index 0000000..9846344 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=11778 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 157bddb7192754a45372be196797f284
  • 4b27f5397c442d25f0c418ccdacf1926


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=11779 b/gamelists/atari2600/linkedhashes.php?g=11779 new file mode 100644 index 0000000..9303e1b --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=11779 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 470878b9917ea0348d64b5750af149aa


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=11786 b/gamelists/atari2600/linkedhashes.php?g=11786 new file mode 100644 index 0000000..4ffe804 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=11786 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 484b0076816a104875e00467d431c2d2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=11793 b/gamelists/atari2600/linkedhashes.php?g=11793 new file mode 100644 index 0000000..b3f025f --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=11793 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0164f26f6b38a34208cd4a2d0212afc3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=11803 b/gamelists/atari2600/linkedhashes.php?g=11803 new file mode 100644 index 0000000..efdc564 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=11803 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 457b03cd48ff6d895795ef043c6b0f1e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=12722 b/gamelists/atari2600/linkedhashes.php?g=12722 new file mode 100644 index 0000000..04006ac --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=12722 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 58513bae774360b96866a07ca0e8fd8e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=12735 b/gamelists/atari2600/linkedhashes.php?g=12735 new file mode 100644 index 0000000..abc074b --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=12735 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5428cdfada281c569c74c7308c7f2c26


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=12765 b/gamelists/atari2600/linkedhashes.php?g=12765 new file mode 100644 index 0000000..444335b --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=12765 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 97d079315c09796ff6d95a06e4b70171


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=12773 b/gamelists/atari2600/linkedhashes.php?g=12773 new file mode 100644 index 0000000..351e64b --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=12773 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 136f75c4dd02c29283752b7e5799f978


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=12795 b/gamelists/atari2600/linkedhashes.php?g=12795 new file mode 100644 index 0000000..4038441 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=12795 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2d33a44e82f88d05f6c50577218c0cae


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=12813 b/gamelists/atari2600/linkedhashes.php?g=12813 new file mode 100644 index 0000000..f753bbd --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=12813 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c1cb228470a87beb5f36e90ac745da26


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=12900 b/gamelists/atari2600/linkedhashes.php?g=12900 new file mode 100644 index 0000000..72b6535 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=12900 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 94b92a882f6dbaa6993a46e2dcc58402


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=12902 b/gamelists/atari2600/linkedhashes.php?g=12902 new file mode 100644 index 0000000..ab80a10 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=12902 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 17ee23e5da931be82f733917adcb6386


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=12905 b/gamelists/atari2600/linkedhashes.php?g=12905 new file mode 100644 index 0000000..76d4e30 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=12905 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 819aeeb9a2e11deb54e6de334f843894


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=12908 b/gamelists/atari2600/linkedhashes.php?g=12908 new file mode 100644 index 0000000..9e77029 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=12908 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c0d2434348de72fa6edcc6d8e40f28d7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=12912 b/gamelists/atari2600/linkedhashes.php?g=12912 new file mode 100644 index 0000000..12a1a81 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=12912 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 277cca62014fceebb46c549bac25a2e3
  • c3ef5c4653212088eda54dc91d787870


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=12991 b/gamelists/atari2600/linkedhashes.php?g=12991 new file mode 100644 index 0000000..eeb30af --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=12991 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c9b7afad3bfd922e006a6bfc1d4f3fe7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13001 b/gamelists/atari2600/linkedhashes.php?g=13001 new file mode 100644 index 0000000..a2ea612 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13001 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4326edb70ff20d0ee5ba58fa5cb09d60


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13006 b/gamelists/atari2600/linkedhashes.php?g=13006 new file mode 100644 index 0000000..405848a --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13006 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8e0ab801b1705a740b476b7f588c6d16


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13008 b/gamelists/atari2600/linkedhashes.php?g=13008 new file mode 100644 index 0000000..bf1700f --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13008 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3276c777cbe97cdd2b4a63ffc16b7151
  • 640a08e9ca019172d612df22a9190afb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13014 b/gamelists/atari2600/linkedhashes.php?g=13014 new file mode 100644 index 0000000..1e81f95 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13014 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 211774f4c5739042618be8ff67351177


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13023 b/gamelists/atari2600/linkedhashes.php?g=13023 new file mode 100644 index 0000000..18a06f0 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13023 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 24385ba7f5109fbe76aadc0a375de573
  • c6688781f4ab844852f4e3352772289b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13061 b/gamelists/atari2600/linkedhashes.php?g=13061 new file mode 100644 index 0000000..e3e4eab --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13061 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • da732c57697ad7d7af414998fa527e75
  • f1554569321dc933c87981cf5c239c43


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13062 b/gamelists/atari2600/linkedhashes.php?g=13062 new file mode 100644 index 0000000..d61e0fe --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13062 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 107cc025334211e6d29da0b6be46aec7
  • 6e59dd52f88c00d5060eac56c1a0b0d3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13070 b/gamelists/atari2600/linkedhashes.php?g=13070 new file mode 100644 index 0000000..2419648 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13070 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3c8e57a246742fa5d59e517134c0b4e6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13072 b/gamelists/atari2600/linkedhashes.php?g=13072 new file mode 100644 index 0000000..e7825a4 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13072 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2bd00beefdb424fa39931a75e890695d
  • ce5cc62608be2cd3ed8abd844efb8919


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13092 b/gamelists/atari2600/linkedhashes.php?g=13092 new file mode 100644 index 0000000..e6f509b --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13092 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9c6faa4ff7f2ae549bbcb14f582b70e4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13093 b/gamelists/atari2600/linkedhashes.php?g=13093 new file mode 100644 index 0000000..3b2a617 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13093 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5eeb81292992e057b290a5cd196f155d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13094 b/gamelists/atari2600/linkedhashes.php?g=13094 new file mode 100644 index 0000000..7be4664 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13094 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6e372f076fb9586aff416144f5cfe1cb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13095 b/gamelists/atari2600/linkedhashes.php?g=13095 new file mode 100644 index 0000000..45ed005 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13095 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 36b20c427975760cb9cf4a47e41369e4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13097 b/gamelists/atari2600/linkedhashes.php?g=13097 new file mode 100644 index 0000000..d0f7cb9 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13097 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1bf503c724001b09be79c515ecfcbd03
  • aa1c41f86ec44c0a44eb64c332ce08af


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13138 b/gamelists/atari2600/linkedhashes.php?g=13138 new file mode 100644 index 0000000..0f68abc --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13138 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 41f252a66c6301f1e8ab3612c19bc5d4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13140 b/gamelists/atari2600/linkedhashes.php?g=13140 new file mode 100644 index 0000000..dab5b31 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13140 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1b64dbaba6bbc1d428e59f088e8018e7
  • 787a2faebadc670a887a0e2483b8f034


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13141 b/gamelists/atari2600/linkedhashes.php?g=13141 new file mode 100644 index 0000000..a86765d --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13141 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0279a63d922163da5a4fde76397f3fe0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13142 b/gamelists/atari2600/linkedhashes.php?g=13142 new file mode 100644 index 0000000..fddb5c5 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13142 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b76fbadc8ffb1f83e2ca08b6fb4d6c9f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13147 b/gamelists/atari2600/linkedhashes.php?g=13147 new file mode 100644 index 0000000..c9c0412 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13147 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0aa208060d7c140f20571e3341f5a3f8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13151 b/gamelists/atari2600/linkedhashes.php?g=13151 new file mode 100644 index 0000000..e6c74ee --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13151 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6e88da2b704916eb04a998fed9e23a3e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13152 b/gamelists/atari2600/linkedhashes.php?g=13152 new file mode 100644 index 0000000..707153b --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13152 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 16f494f20af5dc803bc35939ef924020


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13154 b/gamelists/atari2600/linkedhashes.php?g=13154 new file mode 100644 index 0000000..b9f03d0 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13154 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9ea8ed9dec03082973244a080941e58a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13170 b/gamelists/atari2600/linkedhashes.php?g=13170 new file mode 100644 index 0000000..f3310da --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13170 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3a2e2d0c6892aa14544083dfb7762782


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13208 b/gamelists/atari2600/linkedhashes.php?g=13208 new file mode 100644 index 0000000..ad78806 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13208 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 525f2dfc8b21b0186cff2568e0509bfc
  • 883258dcd68cefc6cd4d40b1185116dc
  • ede4ab11ca346bd023b2c21d941e0c50


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13211 b/gamelists/atari2600/linkedhashes.php?g=13211 new file mode 100644 index 0000000..ace6664 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13211 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4fbe0f10a6327a76f83f83958c3cbeff
  • be929419902e21bd7830a7a7d746195d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13213 b/gamelists/atari2600/linkedhashes.php?g=13213 new file mode 100644 index 0000000..1353675 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13213 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6d842c96d5a01967be9680080dd5be54


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13214 b/gamelists/atari2600/linkedhashes.php?g=13214 new file mode 100644 index 0000000..75aa720 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13214 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3d1e83afdb4265fa2fb84819c9cfd39c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13222 b/gamelists/atari2600/linkedhashes.php?g=13222 new file mode 100644 index 0000000..56e4b23 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13222 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 318a9d6dda791268df92d72679914ac3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13223 b/gamelists/atari2600/linkedhashes.php?g=13223 new file mode 100644 index 0000000..6e6ca81 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13223 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1cafa9f3f9a2fce4af6e4b85a2bbd254
  • f724d3dd2471ed4cf5f191dbb724b69f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13278 b/gamelists/atari2600/linkedhashes.php?g=13278 new file mode 100644 index 0000000..1b1d750 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13278 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 30516cfbaa1bc3b5335ee53ad811f17a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13327 b/gamelists/atari2600/linkedhashes.php?g=13327 new file mode 100644 index 0000000..18e96a0 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13327 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0db4f4150fecf77e4ce72ca4d04c052f
  • e3600be9eb98146adafdc12d91323d0f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13336 b/gamelists/atari2600/linkedhashes.php?g=13336 new file mode 100644 index 0000000..adb9dfa --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13336 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 05b45ba09c05befa75ac70476829eda0
  • c9f6e521a49a2d15dac56b6ddb3fb4c7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13378 b/gamelists/atari2600/linkedhashes.php?g=13378 new file mode 100644 index 0000000..ec2263f --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13378 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4ca73eb959299471788f0b685c3ba0b5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13456 b/gamelists/atari2600/linkedhashes.php?g=13456 new file mode 100644 index 0000000..78b8be1 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13456 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1f6267db16ffeb90ba48890d5f84ac9e
  • 8debebc61916692e2d66f2edf4bed29c
  • da3f54e89b54b0a2391d0513ab8c9861


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=13457 b/gamelists/atari2600/linkedhashes.php?g=13457 new file mode 100644 index 0000000..e095422 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=13457 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0c72cc3a6658c1abd4b735ef55fa72e4
  • 539f3c42c4e15f450ed93cb96ce93af5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=14260 b/gamelists/atari2600/linkedhashes.php?g=14260 new file mode 100644 index 0000000..694277b --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=14260 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 87e79cd41ce136fd4f72cc6e2c161bee


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=14361 b/gamelists/atari2600/linkedhashes.php?g=14361 new file mode 100644 index 0000000..3b42382 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=14361 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ba257438f8a78862a9e014d831143690


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=14402 b/gamelists/atari2600/linkedhashes.php?g=14402 new file mode 100644 index 0000000..a6480c3 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=14402 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 77057d9d14b99e465ea9e29783af0ae3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=14426 b/gamelists/atari2600/linkedhashes.php?g=14426 new file mode 100644 index 0000000..3ee03ff --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=14426 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7972e5101fa548b952d852db24ad6060


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=14686 b/gamelists/atari2600/linkedhashes.php?g=14686 new file mode 100644 index 0000000..b968782 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=14686 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6a7e6fc102bf7459f89419c548a79e2c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=14693 b/gamelists/atari2600/linkedhashes.php?g=14693 new file mode 100644 index 0000000..4ae1119 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=14693 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5360693f1eb90856176bd1c0a7b17432
  • 91f0a708eeb93c133e9672ad2c8e0429


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=14725 b/gamelists/atari2600/linkedhashes.php?g=14725 new file mode 100644 index 0000000..9a1bbd3 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=14725 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bd81069d0945f26d7ff753767208c305


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=16052 b/gamelists/atari2600/linkedhashes.php?g=16052 new file mode 100644 index 0000000..afbb661 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=16052 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 72a46e0c21f825518b7261c267ab886e
  • dd7598b8bcb81590428900f71b720efb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=16259 b/gamelists/atari2600/linkedhashes.php?g=16259 new file mode 100644 index 0000000..926537e --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=16259 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5d2cc33ca798783dee435eb29debf6d6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=16271 b/gamelists/atari2600/linkedhashes.php?g=16271 new file mode 100644 index 0000000..a054c0f --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=16271 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 20edcc3aa6c189259fa7e2f044a99c49


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=16277 b/gamelists/atari2600/linkedhashes.php?g=16277 new file mode 100644 index 0000000..a5877f5 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=16277 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 35be55426c1fec32dfb503b4f0651572


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=16290 b/gamelists/atari2600/linkedhashes.php?g=16290 new file mode 100644 index 0000000..f03afe4 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=16290 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3b91c347d8e6427edbe942a7a405290d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=16305 b/gamelists/atari2600/linkedhashes.php?g=16305 new file mode 100644 index 0000000..bcde576 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=16305 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e314b42761cd13c03def744b4afc7b1b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=16346 b/gamelists/atari2600/linkedhashes.php?g=16346 new file mode 100644 index 0000000..fc69107 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=16346 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 00b7b4cbec81570642283e7fc1ef17af


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=16348 b/gamelists/atari2600/linkedhashes.php?g=16348 new file mode 100644 index 0000000..49b76d0 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=16348 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f0a6e99f5875891246c3dbecbf2d2cea


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=16352 b/gamelists/atari2600/linkedhashes.php?g=16352 new file mode 100644 index 0000000..13e7f28 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=16352 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5b92a93b23523ff16e2789b820e2a4c5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=16405 b/gamelists/atari2600/linkedhashes.php?g=16405 new file mode 100644 index 0000000..b369f40 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=16405 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 65bd29e8ab1b847309775b0de6b2e4fe


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari2600/linkedhashes.php?g=3948 b/gamelists/atari2600/linkedhashes.php?g=3948 new file mode 100644 index 0000000..9636503 --- /dev/null +++ b/gamelists/atari2600/linkedhashes.php?g=3948 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 79ab4123a83dc11d468fb2108ea09e2e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari7800.html b/gamelists/atari7800.html new file mode 100644 index 0000000..4bc5ba4 --- /dev/null +++ b/gamelists/atari7800.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games Atari 7800 - RetroAchievements +
+
+
+ +
+

Atari 7800

TitleAchievementsPointsLeaderboards
14143 (754)3
57530 (4435)4
18175 (843)1
31485 (3243)
15320 (4716)1
43535 (8932)
Totals: 6 games1782188 (22923)9

+
+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari7800/linkedhashes.php?g=13352 b/gamelists/atari7800/linkedhashes.php?g=13352 new file mode 100644 index 0000000..44b2ecf --- /dev/null +++ b/gamelists/atari7800/linkedhashes.php?g=13352 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 220121f771fc4b98cef97dc040e8d378
  • bb551483d114dcc5bae7aaa892ee856a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari7800/linkedhashes.php?g=13354 b/gamelists/atari7800/linkedhashes.php?g=13354 new file mode 100644 index 0000000..194ea9f --- /dev/null +++ b/gamelists/atari7800/linkedhashes.php?g=13354 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 19f1ee292a23636bd57d408b62de79c7
  • 35eabe5b952a4f733b904f73511f884d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari7800/linkedhashes.php?g=13364 b/gamelists/atari7800/linkedhashes.php?g=13364 new file mode 100644 index 0000000..1f2f988 --- /dev/null +++ b/gamelists/atari7800/linkedhashes.php?g=13364 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6acb6db87bd24ab7eecdbef2f206b384


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari7800/linkedhashes.php?g=13368 b/gamelists/atari7800/linkedhashes.php?g=13368 new file mode 100644 index 0000000..e98bfe7 --- /dev/null +++ b/gamelists/atari7800/linkedhashes.php?g=13368 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 12a6483c57d2060d1d07eed2f4cb63dd
  • fc0ea52a9fac557251b65ee680d951e5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari7800/linkedhashes.php?g=13371 b/gamelists/atari7800/linkedhashes.php?g=13371 new file mode 100644 index 0000000..74dea60 --- /dev/null +++ b/gamelists/atari7800/linkedhashes.php?g=13371 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ac03806cef2558fc795a7d5d8dba7bc0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atari7800/linkedhashes.php?g=13372 b/gamelists/atari7800/linkedhashes.php?g=13372 new file mode 100644 index 0000000..4413a59 --- /dev/null +++ b/gamelists/atari7800/linkedhashes.php?g=13372 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 66ecaafe1b82ae68ffc96267aaf7a4d7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atarijaguar.html b/gamelists/atarijaguar.html new file mode 100644 index 0000000..e9ba2df --- /dev/null +++ b/gamelists/atarijaguar.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games Atari Jaguar - RetroAchievements +
+
+
+ +
+
+
+
+
+
+ \ No newline at end of file diff --git a/gamelists/atarilynx.html b/gamelists/atarilynx.html new file mode 100644 index 0000000..1df1905 --- /dev/null +++ b/gamelists/atarilynx.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games Atari Lynx - RetroAchievements +
+
+
+ +
+

Atari Lynx

TitleAchievementsPointsLeaderboards
18300 (5238)
36400 (2372)2
24400 (1445)2
30405 (883)1
17115 (231)
30400 (2456)
1122 (25)2
Totals: 7 games1662042 (12650)7

+
+
+
+
+ \ No newline at end of file diff --git a/gamelists/atarilynx/linkedhashes.php?g=10596 b/gamelists/atarilynx/linkedhashes.php?g=10596 new file mode 100644 index 0000000..c4eb6d2 --- /dev/null +++ b/gamelists/atarilynx/linkedhashes.php?g=10596 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 24611d1445ebd34ab79fb0ae996ff4e4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atarilynx/linkedhashes.php?g=10598 b/gamelists/atarilynx/linkedhashes.php?g=10598 new file mode 100644 index 0000000..4bc9bd2 --- /dev/null +++ b/gamelists/atarilynx/linkedhashes.php?g=10598 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 192b6b764a3a1c7831e0a785fa4b5453


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atarilynx/linkedhashes.php?g=10997 b/gamelists/atarilynx/linkedhashes.php?g=10997 new file mode 100644 index 0000000..ceb6f21 --- /dev/null +++ b/gamelists/atarilynx/linkedhashes.php?g=10997 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4971dd8b47d3475dc8d31b5325c14459


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atarilynx/linkedhashes.php?g=11473 b/gamelists/atarilynx/linkedhashes.php?g=11473 new file mode 100644 index 0000000..f8857d0 --- /dev/null +++ b/gamelists/atarilynx/linkedhashes.php?g=11473 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ff6fff314446ab70dfecb21e2de4a2f6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atarilynx/linkedhashes.php?g=11492 b/gamelists/atarilynx/linkedhashes.php?g=11492 new file mode 100644 index 0000000..3c51aa8 --- /dev/null +++ b/gamelists/atarilynx/linkedhashes.php?g=11492 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 194a3eeb876d2b74cc480f4d337d79b3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atarilynx/linkedhashes.php?g=12858 b/gamelists/atarilynx/linkedhashes.php?g=12858 new file mode 100644 index 0000000..2946a9f --- /dev/null +++ b/gamelists/atarilynx/linkedhashes.php?g=12858 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 60c1dfbf112bbb2a49cf16eddb191842


+
+
+
+ \ No newline at end of file diff --git a/gamelists/atarilynx/linkedhashes.php?g=13040 b/gamelists/atarilynx/linkedhashes.php?g=13040 new file mode 100644 index 0000000..f841ddf --- /dev/null +++ b/gamelists/atarilynx/linkedhashes.php?g=13040 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 46634eb87e6380d4d10f7b80d177c1ff


+
+
+
+ \ No newline at end of file diff --git a/gamelists/coleco.html b/gamelists/coleco.html new file mode 100644 index 0000000..39ed16b --- /dev/null +++ b/gamelists/coleco.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games ColecoVision - RetroAchievements +
+
+
+ +
+

ColecoVision

TitleAchievementsPointsLeaderboards
50650 (4813)12
26500 (3894)
24240 (298)
Totals: 3 games1001390 (9005)12

+
+
+
+
+ \ No newline at end of file diff --git a/gamelists/coleco/linkedhashes.php?g=12769 b/gamelists/coleco/linkedhashes.php?g=12769 new file mode 100644 index 0000000..2e69b06 --- /dev/null +++ b/gamelists/coleco/linkedhashes.php?g=12769 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 91c7b5d4ea94092f6e18da4775656d4b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/coleco/linkedhashes.php?g=13488 b/gamelists/coleco/linkedhashes.php?g=13488 new file mode 100644 index 0000000..4a8fcb3 --- /dev/null +++ b/gamelists/coleco/linkedhashes.php?g=13488 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ad22023a11a3bcb107610d2af5a6be77


+
+
+
+ \ No newline at end of file diff --git a/gamelists/coleco/linkedhashes.php?g=14471 b/gamelists/coleco/linkedhashes.php?g=14471 new file mode 100644 index 0000000..a1d6722 --- /dev/null +++ b/gamelists/coleco/linkedhashes.php?g=14471 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 94476e431aca0f9590964d6797d5dee9
  • e34e775b40367815197dc4086aab2f89


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear.html b/gamelists/gamegear.html new file mode 100644 index 0000000..3c7e791 --- /dev/null +++ b/gamelists/gamegear.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games Game Gear - RetroAchievements +
+
+
+ +
+

Game Gear

TitleAchievementsPointsLeaderboards
25250 (822)
49295 (566)
24200 (240)
24402 (4312)3
73725 (3383)
45675 (3452)2
72352 (2079)3
85 (5)
87 (7)
50495 (1451)
50495 (1086)
48510 (1319)
16225 (506)
14155 (208)
39540 (984)
29505 (2033)
30439 (688)
29400 (1443)
63840 (1739)30
19100 (193)
15130 (131)
20250 (455)
47450 (1083)
55545 (604)
47470 (582)
55475 (695)
29305 (520)
21120 (267)15
27380 (729)1
31360 (1275)
34400 (1480)
43343 (1360)
45400 (844)1
44435 (754)
46400 (1120)1
24245 (410)7
12140 (150)
40240 (526)
14100 (144)
Totals: 39 games136413803 (39645)63

+
+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=11711 b/gamelists/gamegear/linkedhashes.php?g=11711 new file mode 100644 index 0000000..53d5dd0 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=11711 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 35d3fc09fcf22e35db4bac8cee9967f3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=11712 b/gamelists/gamegear/linkedhashes.php?g=11712 new file mode 100644 index 0000000..9602aa1 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=11712 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 48d741774004eab9c19c1dd43758bf2b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=11743 b/gamelists/gamegear/linkedhashes.php?g=11743 new file mode 100644 index 0000000..31fd160 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=11743 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6951fb3b2d7cb6272e7e305324b5ffbb
  • a8bdb1beed088ff83c725c5af6b85e1f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12385 b/gamelists/gamegear/linkedhashes.php?g=12385 new file mode 100644 index 0000000..bb626f0 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12385 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 21d2e4e7c508e6abbb12bb96c7aac868


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12516 b/gamelists/gamegear/linkedhashes.php?g=12516 new file mode 100644 index 0000000..529c2ec --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12516 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0063255819682649ed682a50a0e8a440


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12517 b/gamelists/gamegear/linkedhashes.php?g=12517 new file mode 100644 index 0000000..770f092 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12517 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2c802c2e6a61509309a76f76e4e947f7
  • 6657230e92f13ed98474523efc29d6b3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12524 b/gamelists/gamegear/linkedhashes.php?g=12524 new file mode 100644 index 0000000..5506409 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12524 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ac7aebc91fc607150ad8dbf286a61e36


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12564 b/gamelists/gamegear/linkedhashes.php?g=12564 new file mode 100644 index 0000000..611014d --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12564 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 917c3e4f4c50d6506e64e2f05b945d9c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12619 b/gamelists/gamegear/linkedhashes.php?g=12619 new file mode 100644 index 0000000..5c0565e --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12619 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 33ca01d639aef0b2fecf2d059175abbe
  • e3f4a587902a5010539a4f86db93c0c2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12622 b/gamelists/gamegear/linkedhashes.php?g=12622 new file mode 100644 index 0000000..ff8951c --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12622 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b45d73e40ce8f6e76dced24ee921871a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12623 b/gamelists/gamegear/linkedhashes.php?g=12623 new file mode 100644 index 0000000..8ce66b6 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12623 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 41d1ede8ab1ce9940b61c8fa1fc6724d
  • 764388b8b5dc2e762fab9badd0eca6ba


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12630 b/gamelists/gamegear/linkedhashes.php?g=12630 new file mode 100644 index 0000000..abc49ee --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12630 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 846d48d0f4024c8094117599d0e1eef1
  • b9b1a0f7d84c6d01fa53c56d87d23d53


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12633 b/gamelists/gamegear/linkedhashes.php?g=12633 new file mode 100644 index 0000000..3de63ef --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12633 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8583950be61ffbaf0f63dde8dded2ab3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12638 b/gamelists/gamegear/linkedhashes.php?g=12638 new file mode 100644 index 0000000..4687188 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12638 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8eafd80d35251b5d3f07d5cae27241c1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12639 b/gamelists/gamegear/linkedhashes.php?g=12639 new file mode 100644 index 0000000..2516f6e --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12639 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0a0fa9cbcc3db467191e907794c8c02b
  • 8857422e565412a59c77cb29550715e4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12640 b/gamelists/gamegear/linkedhashes.php?g=12640 new file mode 100644 index 0000000..b601811 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12640 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 35ef27f6b4b4ddc4a6ad6c78db8c890b
  • abdef9e89d2963c70c5573d37edd9d9d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12645 b/gamelists/gamegear/linkedhashes.php?g=12645 new file mode 100644 index 0000000..fb5862e --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12645 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 895ca34f733c445341e5ca1642527690
  • aac8371d2179295159c73ae2cb92892d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12646 b/gamelists/gamegear/linkedhashes.php?g=12646 new file mode 100644 index 0000000..a2f72af --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12646 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 05f5b6201ccece80facaf99fa7cf5a6e
  • f0f7e4dfe2908f0030e64fd9ed843422


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12647 b/gamelists/gamegear/linkedhashes.php?g=12647 new file mode 100644 index 0000000..47ece38 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12647 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • aa6598585b2cdb92a14476beeb34991b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12651 b/gamelists/gamegear/linkedhashes.php?g=12651 new file mode 100644 index 0000000..3af3ee4 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12651 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8a95b36139206a5ba13a38bb626aee25


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12652 b/gamelists/gamegear/linkedhashes.php?g=12652 new file mode 100644 index 0000000..4fd2dc8 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12652 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9c64846563d8b9a24400471322e53fb5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12673 b/gamelists/gamegear/linkedhashes.php?g=12673 new file mode 100644 index 0000000..b8f8d09 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12673 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0e3fecf6ebb236531743fcef29ed7f64
  • c05b51ea07c8017a6d12badaea9daf29


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12737 b/gamelists/gamegear/linkedhashes.php?g=12737 new file mode 100644 index 0000000..0ff5889 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12737 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 159256f5a372f2e409ecb343a3946001


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12763 b/gamelists/gamegear/linkedhashes.php?g=12763 new file mode 100644 index 0000000..c61a027 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12763 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ffb364bbaf72881cf7571e7ec388490d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12768 b/gamelists/gamegear/linkedhashes.php?g=12768 new file mode 100644 index 0000000..5d350d0 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12768 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8431baccd169025f79c9cbc44e31622d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12835 b/gamelists/gamegear/linkedhashes.php?g=12835 new file mode 100644 index 0000000..3f9f014 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12835 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • aba3b030ca9c78288f74ddd02c7ab5ab


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12846 b/gamelists/gamegear/linkedhashes.php?g=12846 new file mode 100644 index 0000000..0120f39 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12846 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a3158baab261c5ddbcd4328d01e33a94


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12847 b/gamelists/gamegear/linkedhashes.php?g=12847 new file mode 100644 index 0000000..b1c3025 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12847 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 68d9f394bf0dd0382a8052e60b3b8a1b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12884 b/gamelists/gamegear/linkedhashes.php?g=12884 new file mode 100644 index 0000000..63e8400 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12884 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 39aa719b13cd1c50c30232cf5ac80059
  • 54be96ca21885145108f1c02e4d88eba
  • ba091114cbc5a4b3482e6887094070bb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=12907 b/gamelists/gamegear/linkedhashes.php?g=12907 new file mode 100644 index 0000000..ad927ce --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=12907 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c8337c47ed211075b9acf4867d8c0e18


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=13105 b/gamelists/gamegear/linkedhashes.php?g=13105 new file mode 100644 index 0000000..ff4f3ef --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=13105 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4d0d6d25dfef7e1a509d828f157d515f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=13238 b/gamelists/gamegear/linkedhashes.php?g=13238 new file mode 100644 index 0000000..b9d98e6 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=13238 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 86a3221d3d74133c84f658939fd6e928


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=13397 b/gamelists/gamegear/linkedhashes.php?g=13397 new file mode 100644 index 0000000..08c3229 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=13397 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1ab3a94109af90a333a68479a02a5643
  • 258abbcd90fe78e19c53c39ce9150106


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=13407 b/gamelists/gamegear/linkedhashes.php?g=13407 new file mode 100644 index 0000000..42dde8d --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=13407 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0d636c8d86dafd4f2c337e34e94b1e41


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=14330 b/gamelists/gamegear/linkedhashes.php?g=14330 new file mode 100644 index 0000000..fcd9249 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=14330 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e9b45d6455e0753b8e0e825a36458253


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=14723 b/gamelists/gamegear/linkedhashes.php?g=14723 new file mode 100644 index 0000000..3e57152 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=14723 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0336bd86c59096a6b9a069ec0ddd94b2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=15544 b/gamelists/gamegear/linkedhashes.php?g=15544 new file mode 100644 index 0000000..e324053 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=15544 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 153243555c10f79ccfc854945472e5ed


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=17035 b/gamelists/gamegear/linkedhashes.php?g=17035 new file mode 100644 index 0000000..16cee1e --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=17035 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3dbd51ce27c7eeee98aaeccdb96affb6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gamegear/linkedhashes.php?g=17036 b/gamelists/gamegear/linkedhashes.php?g=17036 new file mode 100644 index 0000000..11ab7a5 --- /dev/null +++ b/gamelists/gamegear/linkedhashes.php?g=17036 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 82d3c23cf9617174aa47bed8e76438df


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb.html b/gamelists/gb.html new file mode 100644 index 0000000..56882ba --- /dev/null +++ b/gamelists/gb.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games Game Boy - RetroAchievements +
+
+
+ +
+

Game Boy

TitleAchievementsPointsLeaderboards
15220 (436)1
635 (36)
28295 (779)1
23361 (2690)
980 (159)
21185 (312)
975 (337)
34305 (1127)
23195 (704)
13185 (697)
16120 (230)1
43585 (7118)1
3590 (136)
34270 (650)
1685 (114)
15130 (285)
765 (93)
21160 (169)
13130 (195)1
31250 (529)1
23365 (1005)1
24300 (727)2
1795 (193)
28415 (1873)
985 (144)1
1080 (118)
49312 (525)
23400 (1180)
40220 (455)
44815 (2661)
1385 (104)
49464 (2113)110
51471 (1328)
29214 (780)1
39650 (2406)4
81372 (1123)
81350 (644)
23250 (746)
45515 (3581)1
26450 (5404)
28445 (1860)2
55505 (1031)
530 (35)
32530 (2423)6
1040 (41)
21150 (201)
25270 (355)
14100 (115)8
64465 (3640)26
48253 (583)
28350 (921)
43400 (1027)
1085 (133)
10130 (180)
42390 (769)1
72573 (1676)3
11295 (830)
40320 (930)
32350 (554)
27118 (120)
50500 (971)
40365 (427)
62460 (949)
53410 (677)
1070 (71)
740 (49)
13183 (3119)
32120 (106)
25350 (1238)20
25215 (435)10
19100 (122)
960 (72)
31440 (1563)1
1685 (133)
25256 (263)
47540 (3428)1
10145 (224)
970 (103)
740 (41)
17220 (466)
28457 (1028)
79506 (1291)
27280 (524)
36255 (595)
30145 (325)
17190 (334)2
37450 (1578)
27330 (1204)1
16188 (345)10
20200 (560)
40385 (1619)
30366 (801)
33229 (303)
12100 (147)
16125 (185)
637 (52)
89330 (453)
33670 (1018)
25188 (330)7
30265 (326)
30325 (441)
44411 (743)
43305 (364)
34457 (946)
15330 (1415)
25227 (407)6
27262 (642)
59403 (1883)
25390 (1028)
38320 (849)
20195 (318)
960 (63)
29320 (956)
31340 (448)
33400 (911)
36400 (2967)8
13160 (427)
28196 (496)
47302 (321)
32140 (190)
36425 (1760)
30379 (836)
13145 (195)
19400 (804)
1465 (91)
16125 (240)
14140 (195)
33385 (1853)
17200 (240)
27255 (876)
629 (37)2
29315 (710)
12115 (312)
94784 (3525)3
77468 (843)2
14100 (242)
20165 (244)
18250 (561)1
23190 (311)
28235 (387)
14105 (114)
1178 (226)
16145 (163)
755 (85)
41400 (2436)9
31400 (2180)
19255 (737)
16131 (281)
19400 (1891)1
24125 (146)
19164 (426)
20100 (100)
27225 (340)
37378 (2396)2
28302 (656)33
26345 (906)
1496 (327)
27400 (519)
21260 (1196)
28325 (825)
22230 (1250)
18340 (547)
13177 (521)2
23175 (231)
14110 (198)
33356 (1075)
27215 (1017)
27342 (1434)
1080 (139)
20325 (443)
13150 (248)
32338 (1603)18
1265 (70)
24315 (386)
1080 (128)
17200 (730)5
38400 (1172)
15245 (276)
17151 (164)
33845 (1098)
89330 (370)
38344 (602)
40404 (702)
84374 (658)
21208 (225)
11165 (188)
20299 (579)2
26226 (307)1
24299 (454)2
615 (15)2
20500 (1184)9
19122 (151)
650 (50)
850 (82)1
1050 (84)1
1025 (35)
15200 (426)4
1346 (46)1
20100 (117)
710 (10)
18100 (135)1
15265 (365)
Totals: 202 games541252016 (154347)340

+
+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=10204 b/gamelists/gb/linkedhashes.php?g=10204 new file mode 100644 index 0000000..9971b78 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=10204 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 10fd41703b816fcb2a3d6766574b98f9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=10666 b/gamelists/gb/linkedhashes.php?g=10666 new file mode 100644 index 0000000..9f8729d --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=10666 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ceaedf86193a8708a8a67e0e472b57fb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=11632 b/gamelists/gb/linkedhashes.php?g=11632 new file mode 100644 index 0000000..2c3fcda --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=11632 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 25da61b495309bfb4d45ab54918d6135
  • 6e36ce35a35942e17bf9a2544481d8ce
  • b309021c135c9967bfb2f16911061699
  • b7711b4c6d3d77567951f4689675918b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=12745 b/gamelists/gb/linkedhashes.php?g=12745 new file mode 100644 index 0000000..c36aa1d --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=12745 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 8e509301f6db1f89fee85aead8ebf8d4
  • b791e03946353e8afc0a06975318146f
  • ee3dcac13383404bd4178b4ca34e7e73
  • fd3819f2c0a9bc864c9c7eab107d4c7f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=13410 b/gamelists/gb/linkedhashes.php?g=13410 new file mode 100644 index 0000000..d1c2171 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=13410 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 41ac9bd50237cbd54f13b50abf30973a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=13411 b/gamelists/gb/linkedhashes.php?g=13411 new file mode 100644 index 0000000..808bea8 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=13411 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 48ea776eace6f2582b70dc965cf2df1f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=1394 b/gamelists/gb/linkedhashes.php?g=1394 new file mode 100644 index 0000000..c538548 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=1394 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7e9d69eacd6b4c82527065bcf63e474b
  • c7f41e40a9e5a9141ca80be614e0907b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=1395 b/gamelists/gb/linkedhashes.php?g=1395 new file mode 100644 index 0000000..95fab25 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=1395 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • dca464649ea6a3969ac8ee834d431d44
  • de1572d4d181b265e2cb7d517c0ba04a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=14178 b/gamelists/gb/linkedhashes.php?g=14178 new file mode 100644 index 0000000..066ce68 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=14178 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c6ebf4eb82380e495989ef5f5e62560a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=14179 b/gamelists/gb/linkedhashes.php?g=14179 new file mode 100644 index 0000000..12de1fa --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=14179 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d36f1f89d8b35100168d08daa7746df4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=14223 b/gamelists/gb/linkedhashes.php?g=14223 new file mode 100644 index 0000000..31febc0 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=14223 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 98d8f8ee2569aaecc1e2e5024c234941


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=14338 b/gamelists/gb/linkedhashes.php?g=14338 new file mode 100644 index 0000000..94e696e --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=14338 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4202e3486b95ab9a5718830b2aa9b7f6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=16189 b/gamelists/gb/linkedhashes.php?g=16189 new file mode 100644 index 0000000..78c4d22 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=16189 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c39e609b35ac787ad92404914047d1a1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=16278 b/gamelists/gb/linkedhashes.php?g=16278 new file mode 100644 index 0000000..b6edeea --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=16278 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f7c384e29738c21ef611d45e5d35b4b9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=16366 b/gamelists/gb/linkedhashes.php?g=16366 new file mode 100644 index 0000000..1004514 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=16366 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4d07686c9fda0b9ce82b67d8c5ba90ce


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=16520 b/gamelists/gb/linkedhashes.php?g=16520 new file mode 100644 index 0000000..70ef2b7 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=16520 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 1fe5ddbb6502baf81b9cee0ae7446728
  • 7be1c5d093c55b1240d300c4c08de982
  • 98692ad3453bb80fe4d79a7696c036ff
  • b967638000d61c68bffb97a2107f86c7
  • d41bab8430a6033ff0c286c6b5f7291e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=16548 b/gamelists/gb/linkedhashes.php?g=16548 new file mode 100644 index 0000000..aed0d3d --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=16548 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1ef07bec11e159d0cb8092799c96356a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=17034 b/gamelists/gb/linkedhashes.php?g=17034 new file mode 100644 index 0000000..6877050 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=17034 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2554c7f6365dbf59ec1a73f0124a70b4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=17053 b/gamelists/gb/linkedhashes.php?g=17053 new file mode 100644 index 0000000..d7f6d4e --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=17053 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f5357ab80e3838c58668d9d394962f48


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2118 b/gamelists/gb/linkedhashes.php?g=2118 new file mode 100644 index 0000000..4db3fbc --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2118 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7615154dc9afb1a7d7d2fe63b76c68e4
  • fe8d2f14121cc43c51c83be03e6678ee


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2180 b/gamelists/gb/linkedhashes.php?g=2180 new file mode 100644 index 0000000..91d8163 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2180 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • c46e059a69d9b3b4b0b9d8d303c559b3
  • e0a81dcc3aa0db3896c6f46e0ed3fc80


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2184 b/gamelists/gb/linkedhashes.php?g=2184 new file mode 100644 index 0000000..fd81c5a --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2184 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f70c60ca87714fa9d81be60c9ac93de0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2210 b/gamelists/gb/linkedhashes.php?g=2210 new file mode 100644 index 0000000..88b7e86 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2210 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f59dbce4cf5b51a5241806e1b35301fb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2211 b/gamelists/gb/linkedhashes.php?g=2211 new file mode 100644 index 0000000..9b5ff33 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2211 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6d24c94d3acd89b4b703f7bd2a504833


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2223 b/gamelists/gb/linkedhashes.php?g=2223 new file mode 100644 index 0000000..fc08c8c --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2223 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 7bb6d3420a7df1b9874b5cc7b29386b2
  • cea7920a93f79c0eb32237df1c65c093
  • f4c0bf35939be6786c099e9eb4635919


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2231 b/gamelists/gb/linkedhashes.php?g=2231 new file mode 100644 index 0000000..9456488 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2231 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 24a6b4457a511cc667e9ac25417401ab


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2251 b/gamelists/gb/linkedhashes.php?g=2251 new file mode 100644 index 0000000..b2c8d4c --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2251 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 7fe07271d04ed9e0bc0663dde55a2ae4
  • b9cfee05797beb8ff7e259ee77eaf2fb
  • c05b47df8bdfe770be228e51bc42da84


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2253 b/gamelists/gb/linkedhashes.php?g=2253 new file mode 100644 index 0000000..37f53a0 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2253 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 2c1358474573c9dd38d6a128f4714a86
  • 4ba4398181d98958fa7434ba7716f11a
  • bb2cc6f800ec53b39cc95e75ae05c5da
  • d0b1c550250c859f4563165eb29033d6
  • fed695d2bc3e1801aeeab1c8e573096e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2255 b/gamelists/gb/linkedhashes.php?g=2255 new file mode 100644 index 0000000..b50f070 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2255 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 309fc69d5ab1d2b17d0bbc127faf04c1
  • b53fe06db30ab689153135990354dd5a
  • ceb17d831b410d91aa41bf2819cbed82


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2265 b/gamelists/gb/linkedhashes.php?g=2265 new file mode 100644 index 0000000..61c646c --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2265 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d67e58bf5f39d5fb073fed85c3d9bede


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2384 b/gamelists/gb/linkedhashes.php?g=2384 new file mode 100644 index 0000000..ffd6ed1 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2384 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 4ab78239e79ba059d0d7aa7a629a9474
  • 6fc5f5680e5e1a4d6378d5abb07e683f
  • 7e4c9c3620bea7b633394beb67e9680b
  • d1559e92207a8ef8a8b1e58b50723825


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2403 b/gamelists/gb/linkedhashes.php?g=2403 new file mode 100644 index 0000000..d26b5df --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2403 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 24cd3bdf490ef2e1aa6a8af380eccd78
  • 86e1622632b3f81cd61bff1bae03b8b2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2409 b/gamelists/gb/linkedhashes.php?g=2409 new file mode 100644 index 0000000..7b95d2e --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2409 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 3eade561a44103622a0aff7b176d3207
  • aa9d61a428c592030a88828ae80c8fb2
  • b68c4141b4c4f778bd13100b9a3db82c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2411 b/gamelists/gb/linkedhashes.php?g=2411 new file mode 100644 index 0000000..97fc6e5 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2411 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 63e3f5f4b90f17bdf6d2f2aed515e248


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2436 b/gamelists/gb/linkedhashes.php?g=2436 new file mode 100644 index 0000000..105fe3b --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2436 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 998addfae6aaff3f956b44484d05aa75
  • a60df6aeb6820683805be1717097fca8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2450 b/gamelists/gb/linkedhashes.php?g=2450 new file mode 100644 index 0000000..7377156 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2450 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 1614cae88e570523ac657d64ddfd9659
  • 1a0dbcd37ae54fc071dfd77ea922498b
  • ccaf9331318d4dfe3d1ee681928a74fd
  • defe3559ef5e8d69ca95289edb6f9f6e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2454 b/gamelists/gb/linkedhashes.php?g=2454 new file mode 100644 index 0000000..eabb328 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2454 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 24c5cec170f19493c6013b4ccaee1e35
  • 45b5142059907dbd92aaf3f8d003721b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2455 b/gamelists/gb/linkedhashes.php?g=2455 new file mode 100644 index 0000000..70af483 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2455 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7f26dd90f8e80b52ead8fc0e3609d4f2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2460 b/gamelists/gb/linkedhashes.php?g=2460 new file mode 100644 index 0000000..a48032d --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2460 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3a4bb57e9fbd4ef563c0c7b59a1c82a5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2461 b/gamelists/gb/linkedhashes.php?g=2461 new file mode 100644 index 0000000..7f92b5a --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2461 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ed0a8885341ee6a201873b2038c87582


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2465 b/gamelists/gb/linkedhashes.php?g=2465 new file mode 100644 index 0000000..1fff0c4 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2465 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 37c69c73c81e221189a672938b5f30ab
  • fa91adc7023e03f97ec36f66876a569e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2473 b/gamelists/gb/linkedhashes.php?g=2473 new file mode 100644 index 0000000..7c09dba --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2473 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4ea04ab8fcea4c41f26e44bb4f50d73e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2475 b/gamelists/gb/linkedhashes.php?g=2475 new file mode 100644 index 0000000..a59c7d8 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2475 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6e9dd3c1fb169da79292a1962e95a884
  • beeb3092aec6da08f5a86630207ae87c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2477 b/gamelists/gb/linkedhashes.php?g=2477 new file mode 100644 index 0000000..0881766 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2477 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4ff223851bc7e3d19acdbf8034e4829f
  • f28ade3926852a8ad2e449c274683956


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2478 b/gamelists/gb/linkedhashes.php?g=2478 new file mode 100644 index 0000000..2895886 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2478 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d5c27ff8cb1b69cb56df4ff170e2baf0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2479 b/gamelists/gb/linkedhashes.php?g=2479 new file mode 100644 index 0000000..a0d44b8 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2479 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 2bb0df1b672253aaa5f9caf9aab78224
  • d8d941968ab9fd236f91003b79c82fbf
  • edd6ce2651b74977bbff376233ff4119


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2486 b/gamelists/gb/linkedhashes.php?g=2486 new file mode 100644 index 0000000..58df5d9 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2486 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1337510dc9de85723ff1778524c5007f
  • 84fc4878829fdff7d1c6d92c67ae35ea


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2488 b/gamelists/gb/linkedhashes.php?g=2488 new file mode 100644 index 0000000..8bdce87 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2488 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 322965849b9103a3d6906c9697a19c09


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2494 b/gamelists/gb/linkedhashes.php?g=2494 new file mode 100644 index 0000000..48295e5 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2494 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 84133af3324fc1aaf00c0769e15708c0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2498 b/gamelists/gb/linkedhashes.php?g=2498 new file mode 100644 index 0000000..bd35286 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2498 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1ceb3148a1b68b2ba9eada0393f987fc
  • cbb45188c780ce5bbdf502ceb2b9994a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2548 b/gamelists/gb/linkedhashes.php?g=2548 new file mode 100644 index 0000000..40e090a --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2548 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 521d2aa473f4e740a6938861f70511cc
  • e35a7210ee45896d7721906478d61e3a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2552 b/gamelists/gb/linkedhashes.php?g=2552 new file mode 100644 index 0000000..958b0dd --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2552 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0a96c9c737a07148fd065b3c121dcbb2
  • 6884a31366f565ca25935e1fba52efbc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2558 b/gamelists/gb/linkedhashes.php?g=2558 new file mode 100644 index 0000000..51982a1 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2558 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3d8f6eccc13f3344c8d971b7e141f064
  • 8a06994b2e265244147a4d6d0e80623f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2560 b/gamelists/gb/linkedhashes.php?g=2560 new file mode 100644 index 0000000..9fda156 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2560 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 19058077b12ac22580aae17b3dd1233f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2561 b/gamelists/gb/linkedhashes.php?g=2561 new file mode 100644 index 0000000..c8b37f5 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2561 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 13dd6801246da226b0c2db339df4a246
  • 7f896b5e5e27eda1b08251ebe581c885
  • e12c5c2897ed095f8d26c7578afddfda


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2572 b/gamelists/gb/linkedhashes.php?g=2572 new file mode 100644 index 0000000..c8fe3e7 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2572 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • b83f3c669d22bc74c72743821ae3aaa3
  • cac921f8eec70d5ccd8a2db8f473a084


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=2573 b/gamelists/gb/linkedhashes.php?g=2573 new file mode 100644 index 0000000..f15bc51 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=2573 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 38b65d28ac0bd619f5dee5a45d5fc542


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=3329 b/gamelists/gb/linkedhashes.php?g=3329 new file mode 100644 index 0000000..ecbb532 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=3329 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7e1bedf88581ee7370c8eb86c6863e2c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=3575 b/gamelists/gb/linkedhashes.php?g=3575 new file mode 100644 index 0000000..1d5a38d --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=3575 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0f021462180b18436c21299e923cca91
  • d9bacb4b392a0ce4e8f9d29baa916b0b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=3606 b/gamelists/gb/linkedhashes.php?g=3606 new file mode 100644 index 0000000..356df8e --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=3606 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4120f9c2b32583ff06274c0c2c5dfd8e
  • 4d606ab4ffd5c3d3ecf914a6af1c1f90


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=3609 b/gamelists/gb/linkedhashes.php?g=3609 new file mode 100644 index 0000000..cf2249e --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=3609 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 8fdffb08770609255ec3cd314f79f976
  • d309a915021176cd6a49a815b010da4f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=3615 b/gamelists/gb/linkedhashes.php?g=3615 new file mode 100644 index 0000000..745216d --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=3615 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • c88d94a984afde869426694a3b992894
  • c9edc6cb63e3c2a91889653af8929ff7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=3617 b/gamelists/gb/linkedhashes.php?g=3617 new file mode 100644 index 0000000..181de21 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=3617 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 131993b986f3ba1f682d8d74f050487b
  • d20d4b7e9f7299ac1f59c3130abb6e02


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=3619 b/gamelists/gb/linkedhashes.php?g=3619 new file mode 100644 index 0000000..dd2f163 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=3619 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 0841a527b116a52ad26de023b20b1a42
  • 37e37fd3f17e85bbc4f0ce604b20813c
  • 4067f70f9def39ceb49a258540ce3d66


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=3622 b/gamelists/gb/linkedhashes.php?g=3622 new file mode 100644 index 0000000..ae8b8c9 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=3622 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 10c581e4d5b612831c79724434f93e9f
  • 91ecec5f8d06f18724bd1462b53c4b3d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=3623 b/gamelists/gb/linkedhashes.php?g=3623 new file mode 100644 index 0000000..89978ef --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=3623 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 45260f5a05d34c011baac5cb363491d3
  • 4b4d6e6d4870d36a26e6fe6ad73b0eac
  • f777a4526089a83ca758efbf01007ec1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=3624 b/gamelists/gb/linkedhashes.php?g=3624 new file mode 100644 index 0000000..0b03421 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=3624 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5070aaf41d5ae9ee08f988b9aad26af5
  • 8f6b6ef366a787852f664d945c86eb72


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=3651 b/gamelists/gb/linkedhashes.php?g=3651 new file mode 100644 index 0000000..d463cfc --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=3651 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7db13139bc32e2aadb732d610f4c1604


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=3661 b/gamelists/gb/linkedhashes.php?g=3661 new file mode 100644 index 0000000..c65b30e --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=3661 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 812db832566202610bb1e42e643e2b93
  • c016ae8567a649c17b77171f4fd4dd7f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=3669 b/gamelists/gb/linkedhashes.php?g=3669 new file mode 100644 index 0000000..e90e8a8 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=3669 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 3eb476d0c6347ce9034246f826866a58
  • cd84cc505331f6a1d0702bb4a9667cec
  • dc58a99c6993a511842011722ec57092


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=3678 b/gamelists/gb/linkedhashes.php?g=3678 new file mode 100644 index 0000000..a4373c4 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=3678 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 03c6d84a951be6703b7458478f4277b9
  • c57f351fcae735e76189023a78fc0c91


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=3680 b/gamelists/gb/linkedhashes.php?g=3680 new file mode 100644 index 0000000..5627209 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=3680 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9d94d01d3133165d4469bb27d58f0f6c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=3687 b/gamelists/gb/linkedhashes.php?g=3687 new file mode 100644 index 0000000..7402158 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=3687 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 16bc18ef00088094e9fad502e613be5e
  • 5ee6e81ec8261c94f41f8e689863f6c8
  • 9cd7f210ae2680349078aca844be5354
  • b0195767bf5d839e4cc4c837a4709b54


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=3688 b/gamelists/gb/linkedhashes.php?g=3688 new file mode 100644 index 0000000..efc1c22 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=3688 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e41aac285898754055eb3f0c3f280ea3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=3696 b/gamelists/gb/linkedhashes.php?g=3696 new file mode 100644 index 0000000..b788308 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=3696 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5c837aeba2aa844d4cd34653d4e332ea
  • 7d776329212fa7cc2b00c5a46f06dd92


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=3704 b/gamelists/gb/linkedhashes.php?g=3704 new file mode 100644 index 0000000..6e56e9a --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=3704 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2e3a0305f79b058cc4618565bc2db745


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=3821 b/gamelists/gb/linkedhashes.php?g=3821 new file mode 100644 index 0000000..5a822da --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=3821 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • fd72131f46eaccd71e987489f834c630


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4059 b/gamelists/gb/linkedhashes.php?g=4059 new file mode 100644 index 0000000..ecdfc96 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4059 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8bb31f539e8999d5c4e9449fe1befad6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4065 b/gamelists/gb/linkedhashes.php?g=4065 new file mode 100644 index 0000000..3d7e635 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4065 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4a967a8f1dd6f627e8b72950739c26d4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4069 b/gamelists/gb/linkedhashes.php?g=4069 new file mode 100644 index 0000000..658f223 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4069 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 669e9d712ce5c424077ca2deec46f05a
  • e88eab57ab4614966748280bf3c97f52
  • f3e92d4ac023390145287945b51c8b61


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4089 b/gamelists/gb/linkedhashes.php?g=4089 new file mode 100644 index 0000000..4f089cc --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4089 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b9df0bb1f84333a1e5ab4af563525cdc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4095 b/gamelists/gb/linkedhashes.php?g=4095 new file mode 100644 index 0000000..deb0be9 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4095 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8f160aa0b2f69a019911fd57ac8c5b31


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4149 b/gamelists/gb/linkedhashes.php?g=4149 new file mode 100644 index 0000000..62ed49f --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4149 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f07ed24e96f84ce78787709f248263c8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4150 b/gamelists/gb/linkedhashes.php?g=4150 new file mode 100644 index 0000000..b2db249 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4150 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5e441af514d1bcdaec08c133ceea4e5e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4211 b/gamelists/gb/linkedhashes.php?g=4211 new file mode 100644 index 0000000..fbc0963 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4211 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 64080619789f154ee057f2946a98c61c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4214 b/gamelists/gb/linkedhashes.php?g=4214 new file mode 100644 index 0000000..f3ebd36 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4214 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0b7cbe56d1cf6370e60699e553d091a1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4384 b/gamelists/gb/linkedhashes.php?g=4384 new file mode 100644 index 0000000..4ff323e --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4384 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d4f7ade01af0818a79bc809cf96118bb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4404 b/gamelists/gb/linkedhashes.php?g=4404 new file mode 100644 index 0000000..ada13b4 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4404 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bc1a3848092bdc900c157996c29a7783


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4588 b/gamelists/gb/linkedhashes.php?g=4588 new file mode 100644 index 0000000..479005d --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4588 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ea8d9e89565ff9e931118b9ea4712c29


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4589 b/gamelists/gb/linkedhashes.php?g=4589 new file mode 100644 index 0000000..4903acd --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4589 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 54ef4bb8c3d272af5bb78b4306f37248
  • e3b7b3649e52ee6aa6fd98baf88d50de


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4643 b/gamelists/gb/linkedhashes.php?g=4643 new file mode 100644 index 0000000..93620cb --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4643 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 023a8fd8eacad0656b5110da26dcdd44


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4697 b/gamelists/gb/linkedhashes.php?g=4697 new file mode 100644 index 0000000..04de3e6 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4697 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • d17aa3dd0a52bc3dc03bfe20f27c8b07
  • faa5793986914861a1edeb8719d6fe76


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4714 b/gamelists/gb/linkedhashes.php?g=4714 new file mode 100644 index 0000000..716aa72 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4714 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 93e66350ffd7403827914b80d233c989


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4715 b/gamelists/gb/linkedhashes.php?g=4715 new file mode 100644 index 0000000..7298e9b --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4715 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a2b68b9472bde2d2fee32c2ec87ff017


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4745 b/gamelists/gb/linkedhashes.php?g=4745 new file mode 100644 index 0000000..178afcb --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4745 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 341b155413d2253886d8f188625cc1c3
  • a4627fb86c2b91fc0ace4f628aa607e4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4882 b/gamelists/gb/linkedhashes.php?g=4882 new file mode 100644 index 0000000..1b2fec1 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4882 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 14fe7234ee4bcb14adf20c743f084a35
  • 2cad6ee6df3402aeb8f8ab7921517779
  • d0e079ac28e1d5283bb0150623358713


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4890 b/gamelists/gb/linkedhashes.php?g=4890 new file mode 100644 index 0000000..e2248b5 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4890 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e1d28ce25a61b4f623c3c8013ce55b89


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4917 b/gamelists/gb/linkedhashes.php?g=4917 new file mode 100644 index 0000000..c761a6f --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4917 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9ba2999ef3ecf9e27ac6c88e995c9d7a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4931 b/gamelists/gb/linkedhashes.php?g=4931 new file mode 100644 index 0000000..f696b42 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4931 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 57726c28dc09949029a154f63b891dd0
  • d70c6bf2f5cabd89d5e2f522780b13a2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4934 b/gamelists/gb/linkedhashes.php?g=4934 new file mode 100644 index 0000000..a2c4e56 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4934 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f629f0b6d156bec6acb9e6b9da4ad4e3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4937 b/gamelists/gb/linkedhashes.php?g=4937 new file mode 100644 index 0000000..759972b --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4937 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ba78ac0638f36a89386b690d619f13b1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4938 b/gamelists/gb/linkedhashes.php?g=4938 new file mode 100644 index 0000000..4ec2b14 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4938 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b5c541c765fd3a5767b3fa1cfc821587


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4947 b/gamelists/gb/linkedhashes.php?g=4947 new file mode 100644 index 0000000..55a9c4a --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4947 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b3f3d35f58a0ea3affc0ec6d4ee1183d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4963 b/gamelists/gb/linkedhashes.php?g=4963 new file mode 100644 index 0000000..af7c7eb --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4963 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1a316519500424ae9a2649746c4c83ab


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4967 b/gamelists/gb/linkedhashes.php?g=4967 new file mode 100644 index 0000000..727d84f --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4967 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1c94dccdfaaa0c3e1d6bda5969704885


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=4983 b/gamelists/gb/linkedhashes.php?g=4983 new file mode 100644 index 0000000..3b6f9d2 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=4983 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5ca71cd4ceace3cb6650ff05d679d149
  • 777a2daf393b0c336b7a78e45644c935


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=5013 b/gamelists/gb/linkedhashes.php?g=5013 new file mode 100644 index 0000000..1c06529 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=5013 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7c65e9da405d2225d079f75e56276822


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=5023 b/gamelists/gb/linkedhashes.php?g=5023 new file mode 100644 index 0000000..685d4a7 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=5023 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 4c614f884a07872f12056ad1a421e1f9
  • c22f3efe9048652ef6f798650fce2d2a
  • f155c9c04ef01a99b26478c1121c8069


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=504 b/gamelists/gb/linkedhashes.php?g=504 new file mode 100644 index 0000000..21d591c --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=504 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • b259feb41811c7e4e1dc200167985c84
  • b45f850d25943a636d9999f90a2bbaa8
  • b48161623f12f86fec88320166a21fce
  • c6cfb6cb982ac886faa83a1f0e597dc8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=5045 b/gamelists/gb/linkedhashes.php?g=5045 new file mode 100644 index 0000000..249c3e6 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=5045 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1fd8f7940f3a63012888c0014d5ab014
  • 4ebe14c4c51555908c0e4cabb66dc813
  • 5e477cdea0b3266b505ac5938ddc5e5c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=508 b/gamelists/gb/linkedhashes.php?g=508 new file mode 100644 index 0000000..45b772f --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=508 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 084f1e457749cdec86183189bd88ce69
  • 982ed5d2b12a0377eb14bcdc4123744e
  • d1feeed857f9010980b00bf53f749d61


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=511 b/gamelists/gb/linkedhashes.php?g=511 new file mode 100644 index 0000000..cd7f9fc --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=511 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0edf8501b8c2567371ae4f8747a27d63
  • 545de5c311259b7f7ec313a9d58cf4b4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=5137 b/gamelists/gb/linkedhashes.php?g=5137 new file mode 100644 index 0000000..f9ffbe3 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=5137 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1475824e7262c0d6359f43c287e034a5
  • 6761f77e6daa82120dd7c73adeec777e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=5203 b/gamelists/gb/linkedhashes.php?g=5203 new file mode 100644 index 0000000..0566e49 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=5203 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 50f060cc830b1b5e4e4427987dba4558
  • 7768609b189e788ab08c8aac165b9f4c
  • e6104df1feb1318ff1764c791eb4ce0e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=521 b/gamelists/gb/linkedhashes.php?g=521 new file mode 100644 index 0000000..27fdb76 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=521 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 5fed946c1eea9a5b11ec1cb40e025819
  • 693fabbcb14ebe1ad65d6735adb7133a
  • 9639948ad274fa15281f549e5f9c4d87
  • f005cbcb60f4d9f3e4f6190e809cff1d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=5215 b/gamelists/gb/linkedhashes.php?g=5215 new file mode 100644 index 0000000..c04b461 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=5215 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7ab8eb19c5356f62bcc3fa2a8f1aba1f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=522 b/gamelists/gb/linkedhashes.php?g=522 new file mode 100644 index 0000000..2680202 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=522 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 785441d3d75913393807b10b3194dc48
  • 7c1689ccd53fcc9684e8ab129c03a14b
  • 9057925ed2531251d494f76d3b8bb471
  • ca7a62e5e14aafd813bc806d0cf54117


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=523 b/gamelists/gb/linkedhashes.php?g=523 new file mode 100644 index 0000000..270b7be --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=523 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4f3b84eb325f9162086fac77ac577e7c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=5251 b/gamelists/gb/linkedhashes.php?g=5251 new file mode 100644 index 0000000..e943398 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=5251 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8e76d1ce4b251e3a31056feddda92e9b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=5252 b/gamelists/gb/linkedhashes.php?g=5252 new file mode 100644 index 0000000..2847647 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=5252 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 83bed4ebefeece45748258fd2ef105b3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=5257 b/gamelists/gb/linkedhashes.php?g=5257 new file mode 100644 index 0000000..7905280 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=5257 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1123060cb5177d576c191d774ebe403a
  • 748330449617f7b273a61adec9c70aea
  • f57101bf26e140991a4e2f50a968ce7c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=5378 b/gamelists/gb/linkedhashes.php?g=5378 new file mode 100644 index 0000000..dc74c2b --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=5378 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7173cecc94bcdb7aeb7240ae87491044
  • d11d2dc76c6d743c3cc791104a2bdae2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=5389 b/gamelists/gb/linkedhashes.php?g=5389 new file mode 100644 index 0000000..5b6a686 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=5389 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4c24f644e70f0786d20d8ca9ffcea51c
  • 90cac6057cbd482d77ff0c9854ecb14d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=540 b/gamelists/gb/linkedhashes.php?g=540 new file mode 100644 index 0000000..4573f2f --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=540 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 11 unique ROM(s) registered for it with the following MD5s:

  • 1d2c316f9f32727261328c7a49b22e2c
  • 3321f0cbce3470aa12301e485c452a6b
  • 4bd6e929ec716a5c7fe7dc684860d551
  • 55935b66d1a130967dffc6e911d4e42e
  • 6e75abc7de70eb108e1d1c1500f0dedb
  • 946a4a60bbd5328ca2250d5f9f0606c7
  • 98dab710bdf256c1f1cf92c31d58d632
  • 9b44c70614a43a9320b398de85dd6b39
  • 9efef8cea73bafbaaeb779b97356149f
  • a8413347d5df8c9d14f97f0330d67bce
  • dfed3323300c23a691846291fdefb2b7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=549 b/gamelists/gb/linkedhashes.php?g=549 new file mode 100644 index 0000000..1997470 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=549 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5cb38ca6df6dce2c10631a010105df60
  • e731fa23d9cd0c3d4dec7d5565beef61


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=550 b/gamelists/gb/linkedhashes.php?g=550 new file mode 100644 index 0000000..92cfb00 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=550 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a477ac86be35d1fa70b708ad08dc88b8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=5591 b/gamelists/gb/linkedhashes.php?g=5591 new file mode 100644 index 0000000..3150863 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=5591 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 28a4e2d989d55f654bba6ca6e0c7f047
  • c85e5ba3dad5aa705b96da083cdd1a1c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=5601 b/gamelists/gb/linkedhashes.php?g=5601 new file mode 100644 index 0000000..4158b31 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=5601 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 2eee88360aa199b7adc9d9c6647e0809
  • 665b9ef961ee82edb8db54b3eb5152fd
  • b4e5876c5acedd12b62e25a12973a4ae


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=5603 b/gamelists/gb/linkedhashes.php?g=5603 new file mode 100644 index 0000000..00d3bc3 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=5603 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c9200b1be878f079cee6cbebbeaa27ea


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=5737 b/gamelists/gb/linkedhashes.php?g=5737 new file mode 100644 index 0000000..e44bd38 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=5737 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b83f33f33ab52e0b7ee80715dbb8d415


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=5937 b/gamelists/gb/linkedhashes.php?g=5937 new file mode 100644 index 0000000..9a8a66d --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=5937 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 113d8f894df6b8c3641b2ba1fe60c250


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=5940 b/gamelists/gb/linkedhashes.php?g=5940 new file mode 100644 index 0000000..3925e1b --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=5940 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9d4d9a346158fcda7221c853b13bd19d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=5955 b/gamelists/gb/linkedhashes.php?g=5955 new file mode 100644 index 0000000..77f9d74 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=5955 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2b1221e85b545bba7e2291fede03fd96


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6075 b/gamelists/gb/linkedhashes.php?g=6075 new file mode 100644 index 0000000..d4d45bd --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6075 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c6effb3a51b36056411760d1ffe048f7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6127 b/gamelists/gb/linkedhashes.php?g=6127 new file mode 100644 index 0000000..ab7d0d8 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6127 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7f970d79f06cfb4270dea4b051277098


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6149 b/gamelists/gb/linkedhashes.php?g=6149 new file mode 100644 index 0000000..f1384e6 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6149 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 781f768d5211aba1e4cf383d4585c1bd
  • ed5525a71dda6eaf4bbf8d5601b6b3b9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6263 b/gamelists/gb/linkedhashes.php?g=6263 new file mode 100644 index 0000000..2363f08 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6263 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • eef71c64f1a51f5e32ab4e6e5e2cc5e8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6298 b/gamelists/gb/linkedhashes.php?g=6298 new file mode 100644 index 0000000..aed6bf4 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6298 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e6980267d58310af5ad57570045a95fa


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6316 b/gamelists/gb/linkedhashes.php?g=6316 new file mode 100644 index 0000000..23da631 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6316 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 8ffab7c16a215d3e2cce01fa24fbdf4f
  • dba637d1573394056a89cb97ec78000a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6357 b/gamelists/gb/linkedhashes.php?g=6357 new file mode 100644 index 0000000..5617498 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6357 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 10d92861e262069ce31559e12b927aa0
  • 9cf7725b41ee950f58c33e060718c2cf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6435 b/gamelists/gb/linkedhashes.php?g=6435 new file mode 100644 index 0000000..8c0bab5 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6435 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f89a33de3fa660a13ec29bb323efffa9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6442 b/gamelists/gb/linkedhashes.php?g=6442 new file mode 100644 index 0000000..8d9b6e5 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6442 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 239fd20f424ee53d2f11018dbd942df4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6443 b/gamelists/gb/linkedhashes.php?g=6443 new file mode 100644 index 0000000..d73a24c --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6443 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 308abd707a48ee9d69c287d818469fd6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6445 b/gamelists/gb/linkedhashes.php?g=6445 new file mode 100644 index 0000000..41d076d --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6445 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • dd5aa6e85827a3ce6e4b7500e75a3262


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6447 b/gamelists/gb/linkedhashes.php?g=6447 new file mode 100644 index 0000000..8b27669 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6447 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d97f34c22a179fb4094acbc05616f565


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6460 b/gamelists/gb/linkedhashes.php?g=6460 new file mode 100644 index 0000000..6e29bc7 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6460 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b6da78085d38a8be3ef564b9989c45d0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6481 b/gamelists/gb/linkedhashes.php?g=6481 new file mode 100644 index 0000000..299766f --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6481 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 18fe3526f170f47a277e0fac17d90170


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6484 b/gamelists/gb/linkedhashes.php?g=6484 new file mode 100644 index 0000000..83e41de --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6484 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 8cfce7b63aa070b5bcdc2e1bcb56e18e
  • a4dee5de1b4c3d9083f307d910fa0c3f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6500 b/gamelists/gb/linkedhashes.php?g=6500 new file mode 100644 index 0000000..54d4848 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6500 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0b5127a54cc8581acfabe0413378ca3d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6621 b/gamelists/gb/linkedhashes.php?g=6621 new file mode 100644 index 0000000..dbeeb49 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6621 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 142d1f9f4b868780824cca20010ad4d8
  • 34bc051c58166d7bd1fc2540870edfdb
  • 9cfc6376d04a47c11051411c8519a3bb
  • 9f673fce1b3140108d26f3c3464b8bfc
  • e8c6250592807a674b4235d06fb05357


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6630 b/gamelists/gb/linkedhashes.php?g=6630 new file mode 100644 index 0000000..eabd686 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6630 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 57b192b42b4e1945cc7f20c98f7e1dab


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6640 b/gamelists/gb/linkedhashes.php?g=6640 new file mode 100644 index 0000000..c1e67a9 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6640 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4fcc13db8144687e6b28200387aed25c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6684 b/gamelists/gb/linkedhashes.php?g=6684 new file mode 100644 index 0000000..989a59d --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6684 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a9d98ffd50c82ef6efc8616d0cf67ebe


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=669 b/gamelists/gb/linkedhashes.php?g=669 new file mode 100644 index 0000000..d8e87df --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=669 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 5bc0913d533000522c7c9cac1ef6f97f
  • 69d643bf4e37b3c133518517338b6a1c
  • 8b7af1a8ca96c74301d633e0ce83ba0b
  • ae08c1f73f822116060ef58293b94ed8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6690 b/gamelists/gb/linkedhashes.php?g=6690 new file mode 100644 index 0000000..800a6ee --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6690 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ef5d2d297c1262dc353ac766a2a67f27


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6695 b/gamelists/gb/linkedhashes.php?g=6695 new file mode 100644 index 0000000..a12b6a9 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6695 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5294a5fed7e88a6f76707979c83017d6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6712 b/gamelists/gb/linkedhashes.php?g=6712 new file mode 100644 index 0000000..ac0ef50 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6712 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5b83db9958eefbd72a82c4893e79d9e1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=680 b/gamelists/gb/linkedhashes.php?g=680 new file mode 100644 index 0000000..8907088 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=680 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7727f43d66a77fe0284bf1b8ffede7dd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=682 b/gamelists/gb/linkedhashes.php?g=682 new file mode 100644 index 0000000..94e0200 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=682 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 138c5fea51e0c9b3ab9075370582717c
  • 91128778a332495f77699eaf3a37fe30
  • 981087f288bac171e3ca183fbe2d273b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=689 b/gamelists/gb/linkedhashes.php?g=689 new file mode 100644 index 0000000..16619a5 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=689 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0b4410c6b94d6359dba5609ae9a32909


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=690 b/gamelists/gb/linkedhashes.php?g=690 new file mode 100644 index 0000000..22226bd --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=690 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8d885e185ad2a0cb5c9e3b152bd24583


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=6906 b/gamelists/gb/linkedhashes.php?g=6906 new file mode 100644 index 0000000..60e21c3 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=6906 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 34b3d0f0843b83e5b0e00bc3d0669793


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=692 b/gamelists/gb/linkedhashes.php?g=692 new file mode 100644 index 0000000..4ba5ca2 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=692 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4859ec2b18c4fabf489eb570c1d7d326
  • 60e55697da19bb160316ec290a7a7437


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=693 b/gamelists/gb/linkedhashes.php?g=693 new file mode 100644 index 0000000..d22c732 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=693 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 89bb0d67d5af35c2ebf09d9aef2e34ad


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=694 b/gamelists/gb/linkedhashes.php?g=694 new file mode 100644 index 0000000..5405a53 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=694 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 61e765494826a915948b96570eb1da1f
  • 6e30394fd7ef4a4dc3fe1edd9fc69f72


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=695 b/gamelists/gb/linkedhashes.php?g=695 new file mode 100644 index 0000000..d5568a5 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=695 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 2e46072ce2416feb18f4bd1e9943546c
  • 333444e90c0bfb99c4ff89fdcb920fe4
  • 8c58eac3857dc2278cf7d9c78bf18b02


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=696 b/gamelists/gb/linkedhashes.php?g=696 new file mode 100644 index 0000000..42946d0 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=696 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0281fd8061d82472e242954513805196


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=698 b/gamelists/gb/linkedhashes.php?g=698 new file mode 100644 index 0000000..a7c1495 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=698 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ae4fda03378a0584d45a4735c9d6290e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=700 b/gamelists/gb/linkedhashes.php?g=700 new file mode 100644 index 0000000..5a84e38 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=700 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 31e0b16020d3b7a08a80d4416507d631
  • db156bc96b528996ce1bf771195171af


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=704 b/gamelists/gb/linkedhashes.php?g=704 new file mode 100644 index 0000000..0f4255e --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=704 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 23c7be98ac9a4d3b046ad1be3f0965e4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=7040 b/gamelists/gb/linkedhashes.php?g=7040 new file mode 100644 index 0000000..01e2a1b --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=7040 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0affc9df2e1220ea4573deb6cb2d4b32


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=706 b/gamelists/gb/linkedhashes.php?g=706 new file mode 100644 index 0000000..afca528 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=706 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 995ce81fe91162cff295badd94e366f3
  • a66e4918edcd042ec171a57fe3ce36c3
  • b7963a68f95d644f8adedb269d29666c
  • e1d0ae20278df92dc51618b0fb381539
  • e6af05e6e73a6f0b025f43d8f36fc1e4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=707 b/gamelists/gb/linkedhashes.php?g=707 new file mode 100644 index 0000000..8bae161 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=707 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 28a8263bb19b7ef3ddcac5ee83f62aee
  • ddb5bfae32b0ca39cf8ab6c46880126c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=708 b/gamelists/gb/linkedhashes.php?g=708 new file mode 100644 index 0000000..4fe6e20 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=708 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 13c9ca0f9c4ff72c2ec075f7c2afb9ce
  • a82b4d934c049d6f0cf52f54408e1ab4
  • c2de4b0c726b579012fef2be578b1920
  • f711ed10307d4ea27223fe965595b123


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=7080 b/gamelists/gb/linkedhashes.php?g=7080 new file mode 100644 index 0000000..867a261 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=7080 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 16ee9b10c27c136d2959ae87105a8a2e
  • 5a763c7a8c6f2ee9e6464512ca2d672e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=7119 b/gamelists/gb/linkedhashes.php?g=7119 new file mode 100644 index 0000000..a9b21c5 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=7119 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0631158ead23bfed84cd3a5010eb9295
  • d969f6b0fb85e41ec8b6503b70192ff0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=712 b/gamelists/gb/linkedhashes.php?g=712 new file mode 100644 index 0000000..4bf7a5d --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=712 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 401647ad59208d67507245ac13e3894c
  • 4cefe39910a0c6dcf9290556fbd29184
  • 8a00f627b8902c92327435901c249e19
  • b1a4da0fc96be115b3d5303c9ca1447f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=715 b/gamelists/gb/linkedhashes.php?g=715 new file mode 100644 index 0000000..01edd0a --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=715 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 967473063a55634223f15e4c0a79dc44


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=716 b/gamelists/gb/linkedhashes.php?g=716 new file mode 100644 index 0000000..2e146e6 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=716 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 9f826282732333a4e512dfa7acfbed93
  • b17c839d444f98a4bd7fec2e49cacf12
  • b3474bab3eda25bdb1508ed53765fb30


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=717 b/gamelists/gb/linkedhashes.php?g=717 new file mode 100644 index 0000000..1ae4677 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=717 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ce2927987765182b9c69f26f758656e9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=720 b/gamelists/gb/linkedhashes.php?g=720 new file mode 100644 index 0000000..be65118 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=720 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9c17a77f10f8c8024addc299cfd74b8b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=723 b/gamelists/gb/linkedhashes.php?g=723 new file mode 100644 index 0000000..acf1803 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=723 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d9290db87b1f0a23b89f99ee4469e34b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=724 b/gamelists/gb/linkedhashes.php?g=724 new file mode 100644 index 0000000..e668822 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=724 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 3132056c8f17e4088b95e4264ca59575
  • 3d45c1ee9abd5738df46d2bdda8b57dc
  • 50927e843568814f7ed45ec4f944bd8b
  • 979ba6ee9eddc36a22f1784e2508deee
  • bdc3ee3f2bc84ed8a786bda1e3f9819a
  • cbfa8ac9c2181eeca72ae2c8e6019f88
  • e889a133f8eab1573649f2a4ba3f9985
  • e969d44cef7c07895663a7ff5f8a114d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=729 b/gamelists/gb/linkedhashes.php?g=729 new file mode 100644 index 0000000..6fd8f0c --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=729 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 704cefb5c77dc74631b9acbaa2b19435
  • 7c1ab6fe16bcf564c7f8e13e40f2b87d
  • d32b9da8028d357e20c791b07ded4f86


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=730 b/gamelists/gb/linkedhashes.php?g=730 new file mode 100644 index 0000000..3d90e98 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=730 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2524230d0300f46ebf423ae1b37747eb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=731 b/gamelists/gb/linkedhashes.php?g=731 new file mode 100644 index 0000000..6a0576a --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=731 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2cf83df10495ad163c88698c6c44f1ef
  • c87119b643ff4de3e2614ff10bd0c6ea


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=7317 b/gamelists/gb/linkedhashes.php?g=7317 new file mode 100644 index 0000000..de3da77 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=7317 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 854390c4a18d0a1744fb437037b4a531


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=733 b/gamelists/gb/linkedhashes.php?g=733 new file mode 100644 index 0000000..8b7c120 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=733 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 7138d95583fc38ee7b3cf18de5e09e89
  • 9f2b62d971705e147745dc2bffb99cc1
  • b8de7e1ef842f68d1d33538e621a9248


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=734 b/gamelists/gb/linkedhashes.php?g=734 new file mode 100644 index 0000000..ba5f658 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=734 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • c7920eb4b478c4d7513f2f43b7dbb9cf
  • fdd228f59ee0eb8b162054a330039b0a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=735 b/gamelists/gb/linkedhashes.php?g=735 new file mode 100644 index 0000000..5d47c4f --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=735 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 3172f2d0c417107da132f8437c43763b
  • ad868e84fb6071a3b6a211d16e6cbb66
  • f958281428792f0a84fbf96592ac3388


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=736 b/gamelists/gb/linkedhashes.php?g=736 new file mode 100644 index 0000000..1acce92 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=736 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0221de99d11f50f79430c8ff9b430994


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=739 b/gamelists/gb/linkedhashes.php?g=739 new file mode 100644 index 0000000..84d7fdc --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=739 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • d9d957771484ef846d4e8d241f6f2815
  • edbdceb992155470983868770e4e3f62


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=740 b/gamelists/gb/linkedhashes.php?g=740 new file mode 100644 index 0000000..cd10fbc --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=740 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 2fc94be87a9f05c0f915141486b71c9c
  • 84d4c90476cee4bbe6defb94c5b41c9e
  • e5e8910d436acb9fd218559a216501a3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=743 b/gamelists/gb/linkedhashes.php?g=743 new file mode 100644 index 0000000..e69b507 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=743 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a8804c8514619cc918960c2008ed65d1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=7446 b/gamelists/gb/linkedhashes.php?g=7446 new file mode 100644 index 0000000..a9683d9 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=7446 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b6d1139fb8d57cd47f173faef592c813


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=7456 b/gamelists/gb/linkedhashes.php?g=7456 new file mode 100644 index 0000000..a71ce97 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=7456 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7a3757ce00ed456890f953a8accb3e2a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=7590 b/gamelists/gb/linkedhashes.php?g=7590 new file mode 100644 index 0000000..1beb83d --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=7590 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • fba12762da3e1d92a62acbcee04635c0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=7596 b/gamelists/gb/linkedhashes.php?g=7596 new file mode 100644 index 0000000..c3a8739 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=7596 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 75c4ba84db4048d135fbe622bb975ec9
  • 7d635b6861b35e28cefd433840efe1db


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=7887 b/gamelists/gb/linkedhashes.php?g=7887 new file mode 100644 index 0000000..dd3718b --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=7887 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b37d04b34ac49169788149e3a9018748


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=8361 b/gamelists/gb/linkedhashes.php?g=8361 new file mode 100644 index 0000000..aa6f472 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=8361 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b94eb524347bb0a8a5c151b59ad63cfa


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gb/linkedhashes.php?g=9026 b/gamelists/gb/linkedhashes.php?g=9026 new file mode 100644 index 0000000..303d2b6 --- /dev/null +++ b/gamelists/gb/linkedhashes.php?g=9026 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 28e1605572aec89f7d210775e51cb8da


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba.html b/gamelists/gba.html new file mode 100644 index 0000000..f25b056 --- /dev/null +++ b/gamelists/gba.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games Game Boy Advance - RetroAchievements +
+
+
+ +
+

Game Boy Advance

TitleAchievementsPointsLeaderboards
33424 (3417)34
44520 (1440)
48690 (3202)
92800 (7519)
72540 (1684)
40330 (1591)
2595 (154)2
675 (92)
46450 (919)
66376 (1670)1
23285 (583)3
45520 (984)
111405 (452)32
38601 (2583)
67540 (4740)
56365 (1853)
126776 (1235)
18220 (314)
41354 (629)4
59615 (2169)5
84441 (742)11
34425 (1211)
19220 (468)
64528 (1293)24
57405 (714)
74559 (1730)19
68517 (1150)13
85660 (5466)
82660 (3119)
33385 (1322)
21290 (873)
38235 (355)
32370 (673)
29365 (976)36
80576 (1907)48
27470 (1331)4
31175 (261)
52380 (1632)
38150 (183)
20420 (1163)
20500 (1006)
40440 (1284)
65440 (1019)
59500 (1988)
42317 (517)1
56485 (678)
71558 (2697)
56600 (3342)
22220 (605)4
24270 (720)
11110 (152)
18210 (2)
11115 (292)
10110 (231)
1990 (104)2
37575 (1211)25
75845 (3008)68
41400 (688)48
70800 (2132)
65465 (752)
135503 (1416)
71705 (2500)3
28435 (873)
70735 (2545)
87730 (5406)
73700 (1649)10
67790 (11350)49
44480 (601)
60465 (1039)
83532 (650)
41583 (3765)
54270 (501)
19235 (179)
55400 (1303)
35370 (551)1
24400 (667)
27360 (996)9
54350 (743)8
35460 (2021)
21250 (677)2
770 (91)
1201061 (8949)
28150 (168)
46245 (658)
89689 (1928)
56321 (1606)1
39280 (570)
26290 (440)8
15160 (285)
79418 (583)
64500 (1839)93
69565 (1865)91
55475 (1255)1
67680 (3025)
22340 (438)
45340 (1008)14
54460 (1288)
26320 (938)2
28240 (708)
1095 (130)
86588 (1221)
57400 (833)
26250 (356)
33220 (321)
28300 (423)
70600 (1518)
70556 (4887)
45460 (870)40
63230 (366)30
1195 (102)4
68400 (4058)7
61637 (4791)
34410 (1116)
24200 (569)
34315 (513)
36420 (1266)
36420 (622)
56523 (1017)
38415 (855)
50515 (1975)
63657 (1591)
79694 (2072)
88872 (3532)40
68642 (1558)27
42400 (2579)1
45510 (1308)
51635 (3672)
53705 (2262)7
23330 (1961)
43732 (5907)2
48660 (8896)6
87458 (3923)
100487 (2154)
42515 (6868)31
22215 (360)
14125 (149)
16120 (240)
39600 (7700)
35240 (969)
45440 (1503)
62466 (1447)1
522 (54)
25176 (248)
15210 (246)
64965 (9880)
42361 (899)
42361 (790)
49485 (3204)13
49485 (3088)6
1281350 (17355)
54438 (2319)6
24140 (177)
15195 (821)
1144 (53)
37155 (207)1
60400 (2847)
22400 (3432)2
45315 (880)
42450 (1074)1
33345 (693)
30225 (504)
22300 (802)
30400 (733)10
28139 (230)2
21350 (609)
37395 (1078)
43400 (932)
56490 (1280)
73586 (1439)2
21414 (973)
52429 (974)
90800 (4701)
62733 (2811)
50400 (802)
1155 (144)1
29130 (442)
58560 (5716)
18380 (2974)
69840 (7206)
30430 (1388)34
21335 (2907)
40375 (1733)
60450 (1353)
52435 (1994)
15145 (246)
48315 (569)
1248 (49)
43400 (523)1
59400 (621)
64400 (492)
35285 (430)
39205 (239)
37450 (2142)
81678 (1103)7
62310 (514)1
57546 (3032)
58370 (661)1
68465 (979)
94438 (762)
25330 (1080)
48800 (1235)
48800 (1518)
1001000 (1842)
36200 (222)
103664 (3603)1
25350 (600)
21255 (585)
25400 (586)3
71499 (2516)
18240 (501)
12265 (600)
78525 (1219)
35320 (1766)22
51400 (1948)15
32470 (1547)20
28300 (717)
22225 (1628)
32390 (1650)
28395 (606)5
72620 (1439)
60500 (2734)1
40335 (528)
41395 (1245)
50469 (696)
39330 (549)
66420 (1049)
88970 (3774)36
80486 (899)
79495 (1191)1
50500 (1343)
2150 (155)
24610 (952)
64480 (873)2
83506 (1190)
49400 (598)2
61410 (1983)
870 (87)
139686 (2621)
32345 (455)
99666 (1444)
100400 (881)
74410 (713)
30300 (423)
69420 (1192)
1381216 (11603)
29321 (531)
53310 (353)
55437 (515)
34355 (685)
38180 (407)2
1332 (32)1
515 (16)
20100 (109)
1050 (57)
10 (0)
Totals: 255 games12125107191 (415406)1071

+
+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=10897 b/gamelists/gba/linkedhashes.php?g=10897 new file mode 100644 index 0000000..86f4aa8 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=10897 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e33de4139d69d016394a26119cdeba32


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=12714 b/gamelists/gba/linkedhashes.php?g=12714 new file mode 100644 index 0000000..4cfac16 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=12714 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 423482d9f0a696cb985d8143f574864c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=12748 b/gamelists/gba/linkedhashes.php?g=12748 new file mode 100644 index 0000000..12b3b34 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=12748 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e9385f1a0876c563dc42a0ee9c8700ce


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=12786 b/gamelists/gba/linkedhashes.php?g=12786 new file mode 100644 index 0000000..bdc23e9 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=12786 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e23047fcf278ca962b8e95690490cc1c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=12820 b/gamelists/gba/linkedhashes.php?g=12820 new file mode 100644 index 0000000..7f9a0bb --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=12820 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0cb3d605b15189485ff9689ca099187f
  • e66d2e98947a5bd1068228e4084b06da


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=12899 b/gamelists/gba/linkedhashes.php?g=12899 new file mode 100644 index 0000000..953eead --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=12899 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 52fb89bb89b83611912afd8e2f4c8d89


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=12963 b/gamelists/gba/linkedhashes.php?g=12963 new file mode 100644 index 0000000..b8ece67 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=12963 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a40e7bbd268202da470950335a6793f5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=13110 b/gamelists/gba/linkedhashes.php?g=13110 new file mode 100644 index 0000000..ebad0d8 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=13110 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 37a569f4b2ee0818f89117a5cc958e83


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=13126 b/gamelists/gba/linkedhashes.php?g=13126 new file mode 100644 index 0000000..45ae8f8 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=13126 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1205d76449958f1d204f380499c7cfff
  • 1d15cd3454a3566dc51d9321563d8c12


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=13425 b/gamelists/gba/linkedhashes.php?g=13425 new file mode 100644 index 0000000..f2695a8 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=13425 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • df9bd674970714489629e97a8bcd32f7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=1376 b/gamelists/gba/linkedhashes.php?g=1376 new file mode 100644 index 0000000..4d35fb4 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=1376 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cb14df09ea41694532a9327510bb28c1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=13772 b/gamelists/gba/linkedhashes.php?g=13772 new file mode 100644 index 0000000..4ba498d --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=13772 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b77c57c60fc0dcba3b2ddd3e2f1c5f86


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=1416 b/gamelists/gba/linkedhashes.php?g=1416 new file mode 100644 index 0000000..162e844 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=1416 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2c8ef9cce9f46b55247468ea449aeade
  • b4d933095f1be113f2b64f61e21b4055


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=14362 b/gamelists/gba/linkedhashes.php?g=14362 new file mode 100644 index 0000000..7b28022 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=14362 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5245cfb20d8e2f9c2e5a189c776b8d52


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=14408 b/gamelists/gba/linkedhashes.php?g=14408 new file mode 100644 index 0000000..287f9fa --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=14408 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 08dec67ed4d8305d45c575050b2efd7a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=14466 b/gamelists/gba/linkedhashes.php?g=14466 new file mode 100644 index 0000000..2fe56fb --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=14466 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f8931a1a9a842de8e11e39223350af60


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=14655 b/gamelists/gba/linkedhashes.php?g=14655 new file mode 100644 index 0000000..4482a0c --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=14655 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 45487c50d750d30f4f465f6ed3fb6d31


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=15623 b/gamelists/gba/linkedhashes.php?g=15623 new file mode 100644 index 0000000..5dfb695 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=15623 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1983512180b60115cf8c04b5c1affbec


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=15933 b/gamelists/gba/linkedhashes.php?g=15933 new file mode 100644 index 0000000..f69ea8e --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=15933 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 485740f0f0036d32bdf7369334be13e0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=15988 b/gamelists/gba/linkedhashes.php?g=15988 new file mode 100644 index 0000000..f853177 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=15988 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • acc02c922ab999609c1e50ffdb934df3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=16195 b/gamelists/gba/linkedhashes.php?g=16195 new file mode 100644 index 0000000..18628f2 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=16195 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 51709fdb15ddc75b0023f28502b2db93
  • 6086ead790664a9c21f37b25154a0548
  • 805039fa57c9eda2398c2258cf8bbba5
  • df52f58b944ef96a9a5ed350972c1ca6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=16209 b/gamelists/gba/linkedhashes.php?g=16209 new file mode 100644 index 0000000..deb478d --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=16209 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d5b7c99707098401f12f6e4dfac87c9f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=16307 b/gamelists/gba/linkedhashes.php?g=16307 new file mode 100644 index 0000000..9076deb --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=16307 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2050e27bdf4b7281482ce766a8c3676d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=16683 b/gamelists/gba/linkedhashes.php?g=16683 new file mode 100644 index 0000000..564ee3a --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=16683 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3a1325d0afa9ec59246673fb01878a09


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2138 b/gamelists/gba/linkedhashes.php?g=2138 new file mode 100644 index 0000000..499b7b8 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2138 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 98b3619a09eb08c2c6816c6cd2747527
  • 9f738e440d5a6ebbe5e5dcf8b727bbb3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2155 b/gamelists/gba/linkedhashes.php?g=2155 new file mode 100644 index 0000000..8aec36f --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2155 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 164b2a21afa59d6dedad07117296c8e7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2169 b/gamelists/gba/linkedhashes.php?g=2169 new file mode 100644 index 0000000..2718b08 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2169 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 541c6e3e1b506c7d719e3444f2495ab8
  • 5d8788e5f864d576846c5fbf0a4c827a
  • 6d9c1a92c3b43e833676e7a2fbc0c5fe
  • a5775e9959b79c111a6647303b93e2ae
  • c06fc491a14c54f4eb6d81a3c1345fcf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2171 b/gamelists/gba/linkedhashes.php?g=2171 new file mode 100644 index 0000000..9a7f1b1 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2171 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 928c0bd4cf82b3fd6f34b53d4fd02e69
  • a3658157b02a6f5618866af93c9b771d
  • f6c0a645317d6ed90abc4e04f7b33b46


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2179 b/gamelists/gba/linkedhashes.php?g=2179 new file mode 100644 index 0000000..c5f9f06 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2179 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 88792ae1fbc74f4a5425d0c6f0482023


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2188 b/gamelists/gba/linkedhashes.php?g=2188 new file mode 100644 index 0000000..8a09198 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2188 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 100579ef01225c620560f88e65ca423a
  • 1c694783acdfd013bdd980a4d8f8f546
  • 7194f25da6be4548f7e0c80f73e3f628


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2190 b/gamelists/gba/linkedhashes.php?g=2190 new file mode 100644 index 0000000..852e2d9 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2190 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e1cc21ebf4c3be179738ebbf44f25308


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2203 b/gamelists/gba/linkedhashes.php?g=2203 new file mode 100644 index 0000000..445f4ae --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2203 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 0e24f5e435b0cf651017103de24f4f92
  • 2a83a1d91186c02607cc83e2702b2f86
  • 732073d077f6c149588c597b55901f21
  • 8d5b5381539fcad4df2bc7902a432dee
  • c518725055083f6096f3268cf608acda


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2353 b/gamelists/gba/linkedhashes.php?g=2353 new file mode 100644 index 0000000..bae3c82 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2353 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 2a5ef7708f0debc3c636577dcab43da3
  • e619f9dcd7ef3d4c6851834018b139bd
  • ea589465486d15e91ba94165c8024b55


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2412 b/gamelists/gba/linkedhashes.php?g=2412 new file mode 100644 index 0000000..82180e3 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2412 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1e52d66f5f8a7c4f207d80ba4fccf55e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2424 b/gamelists/gba/linkedhashes.php?g=2424 new file mode 100644 index 0000000..85177b5 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2424 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 0860a674599a5a07df8e7bdc116ee088
  • 3f6b9bce0fde0bf0395b697e5b91b0d8
  • 46e28af8f37e774163677cde4dc60d2e
  • 78672ead9f35f00e467f8c7d308acdfc
  • 7b279ff2f8f00274542386674384b1fc
  • 9c60180ef0c9d29ee36bdd1b57adaae7
  • d3f866c892022ec6fa89b4dbdbcb0efa


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2430 b/gamelists/gba/linkedhashes.php?g=2430 new file mode 100644 index 0000000..eabe25c --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2430 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2132b06357239d4e6a0716d963f46597


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2445 b/gamelists/gba/linkedhashes.php?g=2445 new file mode 100644 index 0000000..98d58e1 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2445 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 08c41541eb69a1d652937ed3f88824be
  • 8f17e802822aa61a8f124a0f7bfd6875


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2481 b/gamelists/gba/linkedhashes.php?g=2481 new file mode 100644 index 0000000..01f96a4 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2481 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • fbd187500572b8af52c505f4f8a4bd9b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2482 b/gamelists/gba/linkedhashes.php?g=2482 new file mode 100644 index 0000000..ecc53c4 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2482 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8f0dad780f01ce002331693f4733f27e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2506 b/gamelists/gba/linkedhashes.php?g=2506 new file mode 100644 index 0000000..a1e2458 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2506 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8748d99189b83242dd2a37777f1702cc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2509 b/gamelists/gba/linkedhashes.php?g=2509 new file mode 100644 index 0000000..d2b2335 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2509 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0b95fb20b9f487eb64431e9db9f75c7f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2527 b/gamelists/gba/linkedhashes.php?g=2527 new file mode 100644 index 0000000..f564021 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2527 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • beab4156e466e97dc7f0b16948d371b7
  • dc99bcca77ec59c109576b867ab2b3ea


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2531 b/gamelists/gba/linkedhashes.php?g=2531 new file mode 100644 index 0000000..1590193 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2531 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • efefee9082a83fc6e49f87510746eac0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2578 b/gamelists/gba/linkedhashes.php?g=2578 new file mode 100644 index 0000000..641e074 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2578 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 25cb3f0bc680ece2d1578a635e831c57


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2585 b/gamelists/gba/linkedhashes.php?g=2585 new file mode 100644 index 0000000..7f11d27 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2585 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 7a36a7486ef2c534111ee417b8acf9b7
  • b9e0b9a3d0b7afbde1aaf9a26a827723
  • dbfc3a4a54d6d41a60efac39639e311e
  • fac044fe59b25ae95471a85c072f716a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2588 b/gamelists/gba/linkedhashes.php?g=2588 new file mode 100644 index 0000000..d3cef3a --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2588 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • abfa372f860d0f10037bf28cc78de409


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2589 b/gamelists/gba/linkedhashes.php?g=2589 new file mode 100644 index 0000000..53e10ef --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2589 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 03eea2d57de9c16b5f10055e8e4e2893
  • 69ea27eb346fe9e70d0110bd2fdafeb8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2591 b/gamelists/gba/linkedhashes.php?g=2591 new file mode 100644 index 0000000..0f4df29 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2591 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 836d614be32cd350de5e05a175db6da7
  • 926bebf30f7fecd6b9fa30cfd353dfee


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2592 b/gamelists/gba/linkedhashes.php?g=2592 new file mode 100644 index 0000000..0b1b7ef --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2592 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 370cc3b832f905a2b5511c1665e4a8bc
  • 8b0fe9b5156781d1686b0add2a31b9b3
  • 8efe8b2aaed97149e897570cd123ff6e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2593 b/gamelists/gba/linkedhashes.php?g=2593 new file mode 100644 index 0000000..7eb5c9c --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2593 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 46599031ef71117c587bd3666c326c07


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2598 b/gamelists/gba/linkedhashes.php?g=2598 new file mode 100644 index 0000000..a3cb1fe --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2598 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ce153a5ce176b608edd035e3b9a27dad


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=2816 b/gamelists/gba/linkedhashes.php?g=2816 new file mode 100644 index 0000000..884d28d --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=2816 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 2100cf6f17e12cd34f1513647dfa506b
  • 5e745fd1932dd5e79c06c4bc1a7d3f07
  • d3fa079587d3f1180491f49b0b6a60c9
  • dd694bf96b08fb92a7450d991aae9afc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=3618 b/gamelists/gba/linkedhashes.php?g=3618 new file mode 100644 index 0000000..f1e6d70 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=3618 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 15e37fb594c2dfe85b8b7ba3b7e565bd
  • 24ef180602e0658bbe38fabc5d09894c
  • 50126d4115f7eba81eb206b13b68d726
  • a9c93a07964aa816a8e226ae0c735a41
  • d62a474cc5635bb4b9e8604eae677444


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=3620 b/gamelists/gba/linkedhashes.php?g=3620 new file mode 100644 index 0000000..2f99c7a --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=3620 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 315175bb0acc7db119ed82fd0b920ef5
  • 66e896522a91ecd1e45fde5e93920bf7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=3653 b/gamelists/gba/linkedhashes.php?g=3653 new file mode 100644 index 0000000..aafcaa6 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=3653 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 31d227735fbc8220de9f1a93da10e199
  • dd311f91e8792544af395c9e3690a478


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=3701 b/gamelists/gba/linkedhashes.php?g=3701 new file mode 100644 index 0000000..3eff87c --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=3701 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 54bc72ab1f56930ddb05c66f118d7608
  • dfca43fb18b5ee86b3ecab2631862d6f
  • f806d204d3fc819d794fb23d3483b475


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=3706 b/gamelists/gba/linkedhashes.php?g=3706 new file mode 100644 index 0000000..b156d03 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=3706 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • a8738f8633a62e10b950ba8ac86df7bf
  • c6af74aeeabfd6d7ee2875e355f49af2
  • d8453317272826159fefcf254f25ada4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=3817 b/gamelists/gba/linkedhashes.php?g=3817 new file mode 100644 index 0000000..10fc397 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=3817 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 1ff49ca009cc8f7215d325aac58791fd
  • 710c820d83e1446e7992cf0c4c32faa9
  • da876c445385e449ed8162a2e5ad5a79
  • f891153d06a4cc8b1e8ff6e5ba972649


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4033 b/gamelists/gba/linkedhashes.php?g=4033 new file mode 100644 index 0000000..ac5d43c --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4033 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 3c29922b367de3f58587a8f92d1280b7
  • 5b2d4704ce570d89ae956025bd1036db
  • 77038d7f833ecf4972367ccf47b1fec1
  • 7d27519962ff61df13f0394912154bd9
  • f81f60fdb2fd774c72a170a1805db52e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4061 b/gamelists/gba/linkedhashes.php?g=4061 new file mode 100644 index 0000000..34f397f --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4061 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7b79ad84814d56986566f49ab9de6423
  • aa4acde4d4147725f74efbd03a1c65e4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4072 b/gamelists/gba/linkedhashes.php?g=4072 new file mode 100644 index 0000000..bd679f0 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4072 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1d55a0e331301a7d36ac326f3d8dc007
  • 3ac5633408cb7ac50247cdba396c5536


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4073 b/gamelists/gba/linkedhashes.php?g=4073 new file mode 100644 index 0000000..79d383f --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4073 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 17dd0e3e76207e30614768482078cc3f
  • 8d76ff1a5411fbd8ba0010dbcd0e5aa2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4092 b/gamelists/gba/linkedhashes.php?g=4092 new file mode 100644 index 0000000..713c4a6 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4092 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 5af6a63f85fa386c7889695308dc32a4
  • 971e4440cb014dc10c4c834efaef5114
  • f2c6cd5ee767f6f623874a54371fbb78


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4106 b/gamelists/gba/linkedhashes.php?g=4106 new file mode 100644 index 0000000..d61e5b4 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4106 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 616f80f482ade86d88021b41587aa600
  • f2391ba88f816726e5a2ce4d321c5abf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4198 b/gamelists/gba/linkedhashes.php?g=4198 new file mode 100644 index 0000000..7c4c795 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4198 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 33d83aec45345690ffe48ad9ed7a4ff8
  • d228b8cfeda28ba875f3c355f04d53e3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4200 b/gamelists/gba/linkedhashes.php?g=4200 new file mode 100644 index 0000000..95fca04 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4200 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3fe499f2a6b141ec2959e2d109e3f321
  • f1ae630f2bc19e46617298406d28961a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4203 b/gamelists/gba/linkedhashes.php?g=4203 new file mode 100644 index 0000000..6a093a7 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4203 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 02ca69d4ca90bc8da7ca48d59bb0035d
  • 76aad0726be3ac24f3c5a7a8e64379d3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4204 b/gamelists/gba/linkedhashes.php?g=4204 new file mode 100644 index 0000000..942ec27 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4204 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 36e7d6e276c0e4f56984a2f8491b9364
  • 4a15b07b4dc292e9003c377c55372287


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4205 b/gamelists/gba/linkedhashes.php?g=4205 new file mode 100644 index 0000000..9f8211a --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4205 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 44faf5ba9c3025ad59f53e82c8243631
  • 6a496546576101291a97a93846f0d9dd
  • 81f57c089f02624aa7d867a9f73ea68c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4206 b/gamelists/gba/linkedhashes.php?g=4206 new file mode 100644 index 0000000..b198632 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4206 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 15a038b656bce4a0d293ad1b47737f9f
  • 1fb4a4b0891ed489183ba487e2f9046e
  • 510e54f22787984e33f61502712a9bc6
  • c7e5d28e7c430454aeff766961095561


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4690 b/gamelists/gba/linkedhashes.php?g=4690 new file mode 100644 index 0000000..4299cc9 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4690 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f88df40fedb9d31a6e59dba4a9be1b2a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4691 b/gamelists/gba/linkedhashes.php?g=4691 new file mode 100644 index 0000000..22c4964 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4691 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 553e8c9a80190617ec13fa2a06487f2d
  • ba5048bbfb02ebe3874b8ce1b6318ce4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4703 b/gamelists/gba/linkedhashes.php?g=4703 new file mode 100644 index 0000000..18bbb68 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4703 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 2b03e12e180aa1d88943576b25abf091
  • 5931b0b58d9da9b9aa1f82d28643e2f2
  • d9b338efe2c15f9493ca0b28714a679b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4707 b/gamelists/gba/linkedhashes.php?g=4707 new file mode 100644 index 0000000..22fcec7 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4707 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 17a986af456ed994f556f23c330666a8
  • 536180ba780a0f9f513b757f0a5ca19b
  • 6a1b056d8a006e069466c08c69de56c0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4710 b/gamelists/gba/linkedhashes.php?g=4710 new file mode 100644 index 0000000..ac71550 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4710 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4f71a4e021f4b9319c9d4443dd710666
  • c06decdf51468503434dcb5e7bbdcca5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4716 b/gamelists/gba/linkedhashes.php?g=4716 new file mode 100644 index 0000000..0d66a9c --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4716 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 0051c7b9d4a3908afea19da18813fcbc
  • 2d434f2b0392f91f7715841a122621c1
  • c1e0aacef97574abf84d9078820a5676


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4723 b/gamelists/gba/linkedhashes.php?g=4723 new file mode 100644 index 0000000..2677961 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4723 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b186a9ba291a156c45640cb3c6b8a710


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4738 b/gamelists/gba/linkedhashes.php?g=4738 new file mode 100644 index 0000000..a230787 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4738 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 0632f298b6484b923c5e01d231ae4aa9
  • 1266f7f9d73252d70b25ebfe966c9a2b
  • 6946574d398ca3ab0056af834bcb2bb3
  • 69d71c0dd697e86af0419fab60f32cdb
  • 8a6038e823e82bd0869b3003246cd729
  • f18631a6e0af3301981848e521f1de9a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4740 b/gamelists/gba/linkedhashes.php?g=4740 new file mode 100644 index 0000000..075f8ac --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4740 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 04244f72a9b8f17ee33e0b5bff2b8b1f
  • 9ab2a55a92f8da17f6d305ac66893f34


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4879 b/gamelists/gba/linkedhashes.php?g=4879 new file mode 100644 index 0000000..d47604d --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4879 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 8643fe7632d4895dcaaca230475e70fb
  • 9fc134a926a9f2fe84a141aba2ba25a9
  • b7852693495694145a8a0afaac73e60d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4881 b/gamelists/gba/linkedhashes.php?g=4881 new file mode 100644 index 0000000..1d6d01f --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4881 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4a28daa8f0c619ad90ca97b3b941353d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4894 b/gamelists/gba/linkedhashes.php?g=4894 new file mode 100644 index 0000000..e78ab83 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4894 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9e3c1af23ea83cc4852c632525bea1c5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4909 b/gamelists/gba/linkedhashes.php?g=4909 new file mode 100644 index 0000000..79dcc6f --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4909 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • d996f6cbb36eb15063b290d8f00ad654
  • e42148c3e79f7d5f7a9f3b63939b68c2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4964 b/gamelists/gba/linkedhashes.php?g=4964 new file mode 100644 index 0000000..ce35278 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4964 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e2cf937901114df0928ea29443525986


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=4969 b/gamelists/gba/linkedhashes.php?g=4969 new file mode 100644 index 0000000..9c28eea --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=4969 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 3a93357fbeb5149ee0ae14e13709e785
  • db39788465999f269354d0b605f511be
  • f877b87f140945ad93cfce50411507c0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5004 b/gamelists/gba/linkedhashes.php?g=5004 new file mode 100644 index 0000000..d10ddc2 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5004 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ec3f000ffde5754cb164a05d2d6f9053


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5007 b/gamelists/gba/linkedhashes.php?g=5007 new file mode 100644 index 0000000..f038c67 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5007 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7b17e51d5a61780f9823203c6254ed8f
  • e71b45bbbe488cc268ef4cfceb92284a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5008 b/gamelists/gba/linkedhashes.php?g=5008 new file mode 100644 index 0000000..57e3c79 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5008 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 054223e916f9a4f543812ae795145cb5
  • 1d8b145985bb38f9de77405c9f1fa60b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=505 b/gamelists/gba/linkedhashes.php?g=505 new file mode 100644 index 0000000..dc19bbc --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=505 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ff6b0c48065389b888c7a78731d4b58d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5057 b/gamelists/gba/linkedhashes.php?g=5057 new file mode 100644 index 0000000..037510d --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5057 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0821eea9bf87804ec1d700ec458a04e5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=506 b/gamelists/gba/linkedhashes.php?g=506 new file mode 100644 index 0000000..5aa76b0 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=506 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 04775a93461d24cf1a7e3346d244e516
  • 27f322f5cd535297ab21bc4a41cbfc12
  • e25ea94aabbf2f2f2eecac0cf4452d68
  • f4c2b2fda444dcec1274844b9a764d64


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5068 b/gamelists/gba/linkedhashes.php?g=5068 new file mode 100644 index 0000000..9d8faaf --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5068 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 18ef4ec828a4bf14b6fd241230bb349a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=507 b/gamelists/gba/linkedhashes.php?g=507 new file mode 100644 index 0000000..66c4f44 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=507 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 305de8bd99599ed38a0c4892ab0f5761
  • 55c14323547aa4f83e5eede98d0417f3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5080 b/gamelists/gba/linkedhashes.php?g=5080 new file mode 100644 index 0000000..93f3d37 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5080 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2de53bf040953ad79cc8135c37b47aa0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5081 b/gamelists/gba/linkedhashes.php?g=5081 new file mode 100644 index 0000000..67ff1f4 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5081 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 4bda2a3e0249dfd09330dabc3aa20978
  • 8ed4304e943b553f8ff3abc1e66ea91e
  • e01626b3c42e03e946e4275b5aad4efa


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5089 b/gamelists/gba/linkedhashes.php?g=5089 new file mode 100644 index 0000000..cf097d0 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5089 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • ade79cc8fac2f433648fb95ca8c51164
  • ffa7898ee8b3bc98e4156f3b5e7cdf63


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=509 b/gamelists/gba/linkedhashes.php?g=509 new file mode 100644 index 0000000..26e50e5 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=509 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 0e3513cffe830cbe5b180ce6252adf62
  • 79aef9bbe1378adfbd688cd66e11a7be
  • a6ec2db8299b370ac44abe0e3d4828b2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5093 b/gamelists/gba/linkedhashes.php?g=5093 new file mode 100644 index 0000000..ee74d8f --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5093 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0acbc949fc02ec0abd9e1825c03b8973
  • 9D0D27345BF88DE8B025AA24D54D6BAD


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=510 b/gamelists/gba/linkedhashes.php?g=510 new file mode 100644 index 0000000..e4f2df9 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=510 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 023deff01a5285d1539d18266903a050
  • 861d080a4f5a69855dc834ecb1486d5b
  • c8a40de27946f6ac53f76f83959376e2
  • e28e5407f7728ea1c64bb9e0460d50ae
  • e336cebcd53e38b9a59c159189c0c1b4
  • e7470df4d241f73060d14437011b90ce


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5106 b/gamelists/gba/linkedhashes.php?g=5106 new file mode 100644 index 0000000..e8f6a71 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5106 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3e18faadb97ea0dc129240fca69f8336
  • 617a3839430fd88dab62265b82dae9d5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5114 b/gamelists/gba/linkedhashes.php?g=5114 new file mode 100644 index 0000000..7449e78 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5114 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6f0f891c1d8e8dcda39eea116f2bd957
  • 8517049ce498d84530c953d6a8b3112e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5116 b/gamelists/gba/linkedhashes.php?g=5116 new file mode 100644 index 0000000..c11d5c6 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5116 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 27f9f0e73752cc2df3b73bc46048e8a2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5117 b/gamelists/gba/linkedhashes.php?g=5117 new file mode 100644 index 0000000..df64cf4 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5117 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0a7c58069d5390165482e88a22158bd2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5127 b/gamelists/gba/linkedhashes.php?g=5127 new file mode 100644 index 0000000..d547dfe --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5127 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 10e701d275bb9b34b4c451bf8a611495
  • 41832956ab0723ca79d6883c4492fe84
  • 9e6ff628db81caa74dca356eaadadac9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5131 b/gamelists/gba/linkedhashes.php?g=5131 new file mode 100644 index 0000000..6f52804 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5131 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 020411d3b08f5639eb8cb878283f84bf
  • b8a7c976b28172995fe9e465d654297a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5139 b/gamelists/gba/linkedhashes.php?g=5139 new file mode 100644 index 0000000..44b4320 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5139 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 25a0842e3db8b40eeb39de83285cc13a
  • 4c56e0d7fd251ab8ebe562c25e0ddfdf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=514 b/gamelists/gba/linkedhashes.php?g=514 new file mode 100644 index 0000000..7dce608 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=514 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 584fa297b632cff5b54c2def93c0de2f
  • 6838eb5df807a0f3299ad76066d59d26
  • 6eb8b130138582dc68e5e280606ec847
  • 7a98d4e8bcdd6fb3d3cda248be382683
  • eecc817eaa0ff2184fe7e1c25956d930
  • f5070f5ab5c6e8228f08fa4e4c68d56d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=515 b/gamelists/gba/linkedhashes.php?g=515 new file mode 100644 index 0000000..b06ddc2 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=515 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 12 unique ROM(s) registered for it with the following MD5s:

  • 21c75cf6ea782231121270606bdd2e76
  • 3135915853aa557889dbb36afb7d08f3
  • 343e0836a081330e5f530e49077c183d
  • 5c5c04fcc3640ef7f8e545d9bdcd2404
  • 69ea9b894e5fae7684129f59c01b94ab
  • 83ca4a8ae42c51c6bc4275413747aa87
  • 9ed8f007c7548716f81ddd0700a6bce7
  • cf90c6c2ac7a98618227e5b43e21d234
  • cfbecda514aee8b964e5e5603e60b925
  • ddf2a7aed9871a68c1ee5792de3ec43f
  • e26ee0d44e809351c8ce2d73c7400cdd
  • e7e95ab0d167ea062a74c2accb299002


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5176 b/gamelists/gba/linkedhashes.php?g=5176 new file mode 100644 index 0000000..e905b5a --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5176 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4e641232755d9c8cf08c7d678bf7c570
  • 7146102bb4d37865198dbe6881d2af9a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5179 b/gamelists/gba/linkedhashes.php?g=5179 new file mode 100644 index 0000000..ed1deb2 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5179 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 29b048b4b36b3fda168850003f2ee844


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=519 b/gamelists/gba/linkedhashes.php?g=519 new file mode 100644 index 0000000..be10bd4 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=519 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 6ea5fc0e4b56a232ac3cbdab4b4a6bcd
  • 760490d2224d727b149eb47617d02a5e
  • cd99cdde3d45554c1b36fbeb8863b7bd
  • d0f860fce2e45b61682434edf75af909


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5234 b/gamelists/gba/linkedhashes.php?g=5234 new file mode 100644 index 0000000..fce1868 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5234 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 2291473ecb6e3406ba888b853c631390
  • 5a0bd0ec784823f2c45fdaa5dd914bea
  • bb09508c782f37934c9519c5f8a7350c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5240 b/gamelists/gba/linkedhashes.php?g=5240 new file mode 100644 index 0000000..3ce1425 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5240 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 22b31aa8f66e7c6528fd4903a09f030f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5245 b/gamelists/gba/linkedhashes.php?g=5245 new file mode 100644 index 0000000..9c0fb77 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5245 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 92262059190c05a5615be6b98612fb14


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=526 b/gamelists/gba/linkedhashes.php?g=526 new file mode 100644 index 0000000..9eb97c6 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=526 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 32d74527bfe723470c2c5406c325fb59
  • b282e479e10aea057e762de7b9d4ca4b
  • bc59150fdeb41b7e1a9b54712006a96f
  • e86b1d8e27c86eca96e1466462999b13


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=527 b/gamelists/gba/linkedhashes.php?g=527 new file mode 100644 index 0000000..8d6e483 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=527 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 1c92edbad07a372ee382d16cf624dc4b
  • 25f183b62b93c288ddd7fd9ce632fa58
  • 3f170590d44f17e35d8d3384f6392e52
  • 4c5b199af5bd52acff06c346de98cbf0
  • 959f4e677160366f356742016427595d
  • 9eaaa2135dfa603521392a199439427d
  • a38bdde0d59df2e4ed96fb514c236954


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=528 b/gamelists/gba/linkedhashes.php?g=528 new file mode 100644 index 0000000..482a3ec --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=528 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 30f1d50e5f2bbf65c545b4bebb3e45d5
  • a4078f38dbb47ab22a9c74b725f3e481
  • cda3ebc84f1c80f87939ae474fb8b893


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5284 b/gamelists/gba/linkedhashes.php?g=5284 new file mode 100644 index 0000000..9a3af6b --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5284 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6ea428eabf05d2c51ed21b5608c5db21


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=529 b/gamelists/gba/linkedhashes.php?g=529 new file mode 100644 index 0000000..aae3a92 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=529 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a3dca1a3167cb855aacdca650c4ce39f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5311 b/gamelists/gba/linkedhashes.php?g=5311 new file mode 100644 index 0000000..25aade5 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5311 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1e0b41fbb6f338dc44932625446df20c
  • 7c8e479f4c4e46f406b1da5e786358c0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5312 b/gamelists/gba/linkedhashes.php?g=5312 new file mode 100644 index 0000000..eeb8412 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5312 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 2ae7ae75669717e299671d26ea883f98
  • 6be741eea41598baeed52e4dd7ddb9f5
  • de7b630bf1485b5f3427e7c7081ef7db


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=532 b/gamelists/gba/linkedhashes.php?g=532 new file mode 100644 index 0000000..afc1d01 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=532 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2e8814e664675572a43b01900bbbb16b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=533 b/gamelists/gba/linkedhashes.php?g=533 new file mode 100644 index 0000000..17dd15a --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=533 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 784a036ff1aae709e90167186639b75e
  • f99fb545ac65126e9956a7718c30d6a3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=534 b/gamelists/gba/linkedhashes.php?g=534 new file mode 100644 index 0000000..41bb246 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=534 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 07930e72d4824bd63827a1a823cc8829
  • 650140ccae6e1ab7af44c74986002375
  • b83495cfac1fe94821912beeaa1c8212
  • ebbce58109988b6da61ebb06c7a432d5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5343 b/gamelists/gba/linkedhashes.php?g=5343 new file mode 100644 index 0000000..0a71396 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5343 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 66900cc9e3051638d89b364150b31acd
  • b6984ca369145367ab79eb33f2f3480e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=535 b/gamelists/gba/linkedhashes.php?g=535 new file mode 100644 index 0000000..f3e98a1 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=535 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 14d0771c15676e2b3b75c4c149879586
  • 622addba536f937a1c5b66dddb20c8b7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5364 b/gamelists/gba/linkedhashes.php?g=5364 new file mode 100644 index 0000000..09eb10e --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5364 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e5f3bd0d81e17fbe1f27391af8ecfe83


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5377 b/gamelists/gba/linkedhashes.php?g=5377 new file mode 100644 index 0000000..cceacaa --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5377 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 48f3bc6bf59c34f057bd98b29fd7b848
  • db7d06d0be0b06c4a73bcf614e81c588


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5443 b/gamelists/gba/linkedhashes.php?g=5443 new file mode 100644 index 0000000..aa4bc83 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5443 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • b50707ad72a97b131f4d620483287f95
  • b8caeb3b81d7d5eb7b6924d5c37df19e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=548 b/gamelists/gba/linkedhashes.php?g=548 new file mode 100644 index 0000000..8e817ce --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=548 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 3b03935f605d90962195a95f5718083e
  • 60eca5e9057972a76361158cc7ab31b8
  • 90875e086a120b79425e56aa80760474


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5501 b/gamelists/gba/linkedhashes.php?g=5501 new file mode 100644 index 0000000..9bc5332 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5501 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c2bfa5c822f33eaed02ad2f94a0414b4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5530 b/gamelists/gba/linkedhashes.php?g=5530 new file mode 100644 index 0000000..e846971 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5530 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cb1603c3cc3ed8a37f87b3971b0270d5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5535 b/gamelists/gba/linkedhashes.php?g=5535 new file mode 100644 index 0000000..471a3eb --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5535 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 03beecd053b2ddf56341a6a981c561fc
  • 617b2b2590e2925228dbdb162b05d6f6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=554 b/gamelists/gba/linkedhashes.php?g=554 new file mode 100644 index 0000000..cd643fd --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=554 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7b7a43f3ac4a3facc65aa6b616c0b887
  • f1a1b9742fcd467a531dd4314c4e7d19


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5563 b/gamelists/gba/linkedhashes.php?g=5563 new file mode 100644 index 0000000..3ac7d42 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5563 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 0ab0992240121f5e8f9a5d75aab79a15
  • c3c1c125296e28539fad128cea88b06f
  • e0d9909f402dac923114675ce44d6b48


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5564 b/gamelists/gba/linkedhashes.php?g=5564 new file mode 100644 index 0000000..53d635f --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5564 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 78ea18b7f5d5b51abaca1565aa81230e
  • acefebbe5fdf25ae83a386a6d1c09bca


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=557 b/gamelists/gba/linkedhashes.php?g=557 new file mode 100644 index 0000000..7688178 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=557 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 0aa17178edfbd1dea1b3e18826b367b3
  • 3fb865c5f142a8fc1f82105bfc6b8935
  • 6664b43c51935ea8f06f5b37ce83feca
  • a219b3042eb65899baafa5143c53560c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5581 b/gamelists/gba/linkedhashes.php?g=5581 new file mode 100644 index 0000000..86f74ce --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5581 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 220a6f1b9d8d63e7638248f24dbfa709


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=559 b/gamelists/gba/linkedhashes.php?g=559 new file mode 100644 index 0000000..663ae6e --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=559 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 2af78edbe244b5de44471368ae2b6f0b
  • 3cded5508b03afb52b41dfbe9955628b
  • 77acd1ccf746470844003e4bf9890c9f
  • a104896da0047abe8bee2a6e3f4c7290


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5619 b/gamelists/gba/linkedhashes.php?g=5619 new file mode 100644 index 0000000..a9ebcd6 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5619 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 06ed08799b2f163076fe9fc0cfe65a4c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=568 b/gamelists/gba/linkedhashes.php?g=568 new file mode 100644 index 0000000..956acf0 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=568 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 9f1c1202ed1d856c5836cee6818a171e
  • c8b49c53003b8d9a15d91a5a5d5cc91b
  • ff75c62ab690410cc8fca24204d783e9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=569 b/gamelists/gba/linkedhashes.php?g=569 new file mode 100644 index 0000000..20566d0 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=569 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 31231965d6a43d935e3629a67e06e0bb
  • 6449dc62cdf67c4d4d293febd38dcfda
  • 66c0b2e21872f8e9af56292d881c1516
  • f4e3dead5af182598623cf89f9a428f4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5690 b/gamelists/gba/linkedhashes.php?g=5690 new file mode 100644 index 0000000..67d4a55 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5690 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cce22f4507ceab482392247b74a8b55a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5705 b/gamelists/gba/linkedhashes.php?g=5705 new file mode 100644 index 0000000..0f4d697 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5705 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d8b6d1af6d00558c3bb33d81ad18c483


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5710 b/gamelists/gba/linkedhashes.php?g=5710 new file mode 100644 index 0000000..e22a2fb --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5710 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b4863030186e7e1da0a6009dada06cd5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5719 b/gamelists/gba/linkedhashes.php?g=5719 new file mode 100644 index 0000000..8db9e4a --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5719 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • caa2d80d5c14a76d1f482f7589281c22


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=572 b/gamelists/gba/linkedhashes.php?g=572 new file mode 100644 index 0000000..081dc23 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=572 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 47fe0fe1ee054ac37e286fb909e49be0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5720 b/gamelists/gba/linkedhashes.php?g=5720 new file mode 100644 index 0000000..f8d8edf --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5720 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • b5296cda1c554337e684d880d7573b99
  • bd64515fa58ec5052ce4d231e6241f23


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5747 b/gamelists/gba/linkedhashes.php?g=5747 new file mode 100644 index 0000000..e39909e --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5747 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 092721060c0261c13de6ade3e8c87854
  • 365fcf9b239193da45c133d7d0bcd862
  • 36c04fe38ba46cff285b060907db94f6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=575 b/gamelists/gba/linkedhashes.php?g=575 new file mode 100644 index 0000000..b66062f --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=575 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 1854b8c89dc9bf9794cb9eee676325c6
  • 62e32a9ccf6c31850041555cb8151440
  • 9ff40cf640575211202b7bda5487abbb
  • c55da825e51f653635a2fb12c3fef9ca


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5764 b/gamelists/gba/linkedhashes.php?g=5764 new file mode 100644 index 0000000..fc1b85e --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5764 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • c39a085bb919a355f26c6a71e20ab1f5
  • d15c0b9aa1d9d9c28d53bf80dad08ef0
  • d8ece441a89319d00c36507b3f56b6f6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5778 b/gamelists/gba/linkedhashes.php?g=5778 new file mode 100644 index 0000000..6c59c1e --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5778 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 211f243e032b967e01ff97907b29f56a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=580 b/gamelists/gba/linkedhashes.php?g=580 new file mode 100644 index 0000000..afb157b --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=580 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 3287ca66e5cc285a9fe3a922051e84c6
  • 4414d304f1fb205e4f5da5d52c3deff0
  • 623bd6af417ed48b5dbbfd19e78a80d9
  • 8f289129beefd40717718c7ab8baa447
  • 9d0230f0ae979f4520c3721127c85593
  • 9edf4f6e19d901d470aa1117cb0372b3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5854 b/gamelists/gba/linkedhashes.php?g=5854 new file mode 100644 index 0000000..5dec2cd --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5854 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 51455002b0daa27de8eaa5d9ad1afd6f
  • 9090e1e135ca14862aef4645dfe3abbd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5913 b/gamelists/gba/linkedhashes.php?g=5913 new file mode 100644 index 0000000..4198ae1 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5913 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f87a7dc67415d1f4c16cc430fcf98d9d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5959 b/gamelists/gba/linkedhashes.php?g=5959 new file mode 100644 index 0000000..e1fea38 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5959 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3b58275a454884b6fa70fa007544c998


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=5987 b/gamelists/gba/linkedhashes.php?g=5987 new file mode 100644 index 0000000..b4a7678 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=5987 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 42cca53c94c0bb8e5146631945bf0cd9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=6011 b/gamelists/gba/linkedhashes.php?g=6011 new file mode 100644 index 0000000..ff06777 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=6011 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 65a9d554b74e8fbf06f3807e9d103bb8
  • d7118be078b9a61284a99d3f1f7e972f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=6083 b/gamelists/gba/linkedhashes.php?g=6083 new file mode 100644 index 0000000..01e32ea --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=6083 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 8d27b349bca44d938b67f9a28712f6c9
  • b68445cd4f0044ed1fc2fac8a69bc47a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=6100 b/gamelists/gba/linkedhashes.php?g=6100 new file mode 100644 index 0000000..8b3d1bb --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=6100 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5f3567dd3487f600dd2962c2fe73844f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=6101 b/gamelists/gba/linkedhashes.php?g=6101 new file mode 100644 index 0000000..0c90ef5 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=6101 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 25cdcf14f0fce47d9c6c8155774948fa


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=6184 b/gamelists/gba/linkedhashes.php?g=6184 new file mode 100644 index 0000000..d1fb738 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=6184 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e429ce307fe06dbcd7724552ff0339d7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=6209 b/gamelists/gba/linkedhashes.php?g=6209 new file mode 100644 index 0000000..68b4bed --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=6209 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 509139bb43b0fa487056e6068c46ab70


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=6236 b/gamelists/gba/linkedhashes.php?g=6236 new file mode 100644 index 0000000..0690550 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=6236 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6caff32286c768d3bf9f7986d535ef7b
  • ef32f93816b6dbcf788f08faf1e71450


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=625 b/gamelists/gba/linkedhashes.php?g=625 new file mode 100644 index 0000000..03a3014 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=625 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 912fc18dff2d5e27fce96665cf563b89
  • 9ce73ff9aa1473f250d103c1bdbbd738
  • aa1d5eeffcd5e4577db9ee6d9b1100f9
  • fd94f92c7e5f925458e9d491e5d2bbd0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=6353 b/gamelists/gba/linkedhashes.php?g=6353 new file mode 100644 index 0000000..b1a51b7 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=6353 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6279166857cea1b52eb93543c6668ff1
  • c381103f45cba2c5357150292b1be794


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=6407 b/gamelists/gba/linkedhashes.php?g=6407 new file mode 100644 index 0000000..4949907 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=6407 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 07f3b7415eb3779ff11e51a38d0ad3f8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=651 b/gamelists/gba/linkedhashes.php?g=651 new file mode 100644 index 0000000..725d8c2 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=651 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 78724b3f7e5de9f1c931d5b196e7f19b
  • d81d39a2400a2651099a6d1aa2a461d5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=6643 b/gamelists/gba/linkedhashes.php?g=6643 new file mode 100644 index 0000000..9d22468 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=6643 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 48f5c9500f409dd2e14e297e81aa764c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=6679 b/gamelists/gba/linkedhashes.php?g=6679 new file mode 100644 index 0000000..df45113 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=6679 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7914ea9bed5d6936cec9b1c240247bda


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=668 b/gamelists/gba/linkedhashes.php?g=668 new file mode 100644 index 0000000..adec485 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=668 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 21f934f5738b6f975709e46646b83e86
  • 5ce8f8bddc68403c99b3db8113b8d332
  • 5f91214a7b563c858a94920796817d83
  • 605b89b67018abcea91e693a4dd25be3
  • 910f6017cdfde8716ca75e63ae6c6489


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=6738 b/gamelists/gba/linkedhashes.php?g=6738 new file mode 100644 index 0000000..44e8ec4 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=6738 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 4f1e7c60d4fe54fea13aacb135ab745a
  • 53bfc207dd7320ad7db94e299adca245
  • 9029326a45e051b43e1480d8f1cb9136
  • 9893ecef0083de3f7235359ce29b7a73


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=6759 b/gamelists/gba/linkedhashes.php?g=6759 new file mode 100644 index 0000000..3d2966b --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=6759 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8b7a6c21e2619dbfb5064c76d074f582


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=677 b/gamelists/gba/linkedhashes.php?g=677 new file mode 100644 index 0000000..a5b36fb --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=677 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 00d5685405ac972cbf6be8b50ea42f26
  • 16f97512b60ed572fb4e5f3d3adc4c42
  • 31321db87c763bba42a2fdedf1706386
  • af8b0b175f7ec8914cb87b3161ba1aaa
  • cab5a920f34e73898eea77de5966e8f1
  • ce5c7ba6fbe648e6d65d77030151d6f5
  • e1979f0e8b7c525bf00a27e864a35ea1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=6772 b/gamelists/gba/linkedhashes.php?g=6772 new file mode 100644 index 0000000..e4da50d --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=6772 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 00e44d439cdef2014c67ffced1cb90d7
  • 6544c0e0b23bb831ddf42895cfc6a528
  • 803ff345f4df60a7f00db44fd25730bc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=6834 b/gamelists/gba/linkedhashes.php?g=6834 new file mode 100644 index 0000000..154bffa --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=6834 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ae5ee35f0aadf386cb6918a2d83f5a3b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=6956 b/gamelists/gba/linkedhashes.php?g=6956 new file mode 100644 index 0000000..7e11a7c --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=6956 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ddfa04a34631c179f897ed7169e782f0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=7015 b/gamelists/gba/linkedhashes.php?g=7015 new file mode 100644 index 0000000..a2d2dad --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=7015 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f22148e0a4298808ba05cd386d64d320


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=7079 b/gamelists/gba/linkedhashes.php?g=7079 new file mode 100644 index 0000000..5163db2 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=7079 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 327f1553f9c9bc510069d9eaabb0f6fb
  • b57e44b1f52647510caa08f09cfb8e1b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=7092 b/gamelists/gba/linkedhashes.php?g=7092 new file mode 100644 index 0000000..9dd6a1f --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=7092 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 1cd1d918e2730ac739bf2bcf14373382
  • 282f4032daee65c2cbf421ece93e4a41
  • 434af1b315a2a337313ac82c3de078ff
  • bbb91114b96a3b57bf40b15edfc12187
  • f575c8c844ae2ffad9adc7f91c886d54


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=7095 b/gamelists/gba/linkedhashes.php?g=7095 new file mode 100644 index 0000000..5150fad --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=7095 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 49aa688745111aaa51076a345f8f18c3
  • adaaf0951c8479a7b836813fcb7c96c2
  • f4a655e23638e79eacf44a456faee6a4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=7128 b/gamelists/gba/linkedhashes.php?g=7128 new file mode 100644 index 0000000..0659938 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=7128 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1fe0aa775a55230c0cf8236f4376dbe9
  • beb83cb1e4ecae51a34ec3e99da384b4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=7132 b/gamelists/gba/linkedhashes.php?g=7132 new file mode 100644 index 0000000..a069cf1 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=7132 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e003f4c06ad7f01d50dcdada5075a234


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=7152 b/gamelists/gba/linkedhashes.php?g=7152 new file mode 100644 index 0000000..32c6840 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=7152 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c0dfc8c07f3aba36be5f40edb996f679


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=7158 b/gamelists/gba/linkedhashes.php?g=7158 new file mode 100644 index 0000000..648d690 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=7158 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 280f5320f54ec577d7df53fb9c16b5db
  • b3a719f647a84f5496c0ad97d5de6370


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=7159 b/gamelists/gba/linkedhashes.php?g=7159 new file mode 100644 index 0000000..ad61e94 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=7159 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d325f3b46025ec8df4a3761cb529e7b8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=7274 b/gamelists/gba/linkedhashes.php?g=7274 new file mode 100644 index 0000000..76b5a83 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=7274 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4d7b955b9c19b13d1d776e35ce007f78


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=7365 b/gamelists/gba/linkedhashes.php?g=7365 new file mode 100644 index 0000000..08197fc --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=7365 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • c83c580d9ab765af26ca3a3ead0cd518
  • f14d377341c6afba46d3db0fabf12062


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=7367 b/gamelists/gba/linkedhashes.php?g=7367 new file mode 100644 index 0000000..7993d43 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=7367 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3065e2625e553b24ac7014ccab0c7ee6
  • bb040b4d930c1fc4be1067b9756a7c44


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=744 b/gamelists/gba/linkedhashes.php?g=744 new file mode 100644 index 0000000..170b2c5 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=744 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1e32d754b8a874d279086f98cf523dfd
  • 656b49e4db1a3ad6475b29c347a4fefc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=7442 b/gamelists/gba/linkedhashes.php?g=7442 new file mode 100644 index 0000000..cb75165 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=7442 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e7a2792c5913a8420a419f2d01358487


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=745 b/gamelists/gba/linkedhashes.php?g=745 new file mode 100644 index 0000000..14e5662 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=745 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 00adbd6a694f009b7754376b505fa23e
  • 50a1089600603a94e15ecf287f8d5a1f
  • 8ddb166cf79606f116f6bdf3e4bdbbe2
  • b7b0e7a5f8e8bd22ac9f5766d1acef56


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=748 b/gamelists/gba/linkedhashes.php?g=748 new file mode 100644 index 0000000..ebcf293 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=748 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 588203bd9de678a55a9f1707931302f2
  • a0a5bba0ebabef2457ef6e8d3419cf35
  • d501ed3ff2e962d8de816667cced8cf4
  • d73093e3b1ba98f39f5c79ba3649632d
  • df78967cea5f519d6477fe68edbfbb77


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=750 b/gamelists/gba/linkedhashes.php?g=750 new file mode 100644 index 0000000..1a18f05 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=750 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 675c0a97180306b843a639c6a56e1d26
  • b3806462180cda73d1f8f48d72236394
  • c1fb9badf816b6d7836f4990f8119815


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=751 b/gamelists/gba/linkedhashes.php?g=751 new file mode 100644 index 0000000..dbf02e0 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=751 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 86a1c5aae8afe04acaf1ae475249e9ba
  • 8878b708080a899d7c78363193dd3fa1
  • a1f160ee30ed36edea341a6f1c6a4efc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=752 b/gamelists/gba/linkedhashes.php?g=752 new file mode 100644 index 0000000..764fa99 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=752 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 69ce1adb9a8be5c49ca2044c97fa24cb
  • d7f41d490bcb72f0711b070de85a8c8b
  • f577a97d679e669f8063910eb060e864


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=753 b/gamelists/gba/linkedhashes.php?g=753 new file mode 100644 index 0000000..f1beb71 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=753 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • b60abac7fdbf012de5a3c9403ece89e8
  • e47cc42a209ebf639dcdd8cdf375e89a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=754 b/gamelists/gba/linkedhashes.php?g=754 new file mode 100644 index 0000000..0c0bf73 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=754 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3a74fce97f1ea2b28c2a50ec3df0acee
  • 808eda67b17c901e9052f47bdc419e2f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=756 b/gamelists/gba/linkedhashes.php?g=756 new file mode 100644 index 0000000..b01f78c --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=756 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 09f49996195a3fce6141306f9eeb2944


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=758 b/gamelists/gba/linkedhashes.php?g=758 new file mode 100644 index 0000000..927ad30 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=758 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3100fc5a4427a7b0cc20b861134e60f2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=759 b/gamelists/gba/linkedhashes.php?g=759 new file mode 100644 index 0000000..7f5a943 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=759 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 4e1565aa1f0627c2bf5e51019440cb70
  • e8e8c56f5a7d3d93bb8dd4a80c12f8bd
  • eaec6e4f1192ad24c484b05056e3aa76


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=760 b/gamelists/gba/linkedhashes.php?g=760 new file mode 100644 index 0000000..ff1e150 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=760 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 14dab12e795098988d46b96885170538


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=762 b/gamelists/gba/linkedhashes.php?g=762 new file mode 100644 index 0000000..b444a94 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=762 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5d29999685413c4d2bec10d3160f6ee6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=763 b/gamelists/gba/linkedhashes.php?g=763 new file mode 100644 index 0000000..8669583 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=763 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c74dd5cc3ab6e5d4ac53b1677e1abd69


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=764 b/gamelists/gba/linkedhashes.php?g=764 new file mode 100644 index 0000000..f511e52 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=764 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 9ed82843cc54876362be56faccb15d75
  • e651a4c87410396117f1324b6437702a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=7643 b/gamelists/gba/linkedhashes.php?g=7643 new file mode 100644 index 0000000..67589c4 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=7643 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7e468cb21551f8fdce31368f53186c83
  • a26c440065d89f56275644ffa34140ef


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=766 b/gamelists/gba/linkedhashes.php?g=766 new file mode 100644 index 0000000..ff31a70 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=766 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 89bd27cd7228736d9c00461abd20c208


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=767 b/gamelists/gba/linkedhashes.php?g=767 new file mode 100644 index 0000000..accf2da --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=767 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1cdd7f33c9a27061201e1d1ce029a700
  • 53d97150443e4449dc1959da641d1a8e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=768 b/gamelists/gba/linkedhashes.php?g=768 new file mode 100644 index 0000000..5f3acc6 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=768 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d369f791d86a969778d2c3a5278d544c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=769 b/gamelists/gba/linkedhashes.php?g=769 new file mode 100644 index 0000000..25b3af0 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=769 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • df5efe075b35859529ebf82a4d824458


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=770 b/gamelists/gba/linkedhashes.php?g=770 new file mode 100644 index 0000000..dcb6e4c --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=770 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 35ae64b0f27e60107c14ab956f6cdf70


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=771 b/gamelists/gba/linkedhashes.php?g=771 new file mode 100644 index 0000000..765addb --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=771 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3b50b9f9e13e271ead33ee5a234650a9
  • 4b1a5897d89d9e74ec7f630eefdfd435


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=773 b/gamelists/gba/linkedhashes.php?g=773 new file mode 100644 index 0000000..3c0b6f1 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=773 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 39f8a42133df444eeb7bf0b2194d6286
  • 5c9a6664da79a4893895fd0c380fd020
  • 833e55b181ac9b4da56b6341c1f4e09a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=774 b/gamelists/gba/linkedhashes.php?g=774 new file mode 100644 index 0000000..874a68e --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=774 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6fe31df0144759b34ad666badaacc442
  • c1f7ade0ebce39a97c6efcad33661e20


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=7760 b/gamelists/gba/linkedhashes.php?g=7760 new file mode 100644 index 0000000..89ff4af --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=7760 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • a476526adc63d7e287d905eb7251d120
  • beb99eac85f11113795bbd0f5923a9e4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=7767 b/gamelists/gba/linkedhashes.php?g=7767 new file mode 100644 index 0000000..497a559 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=7767 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 30ff41b3a469bad7ce39deb6d50f8154


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=779 b/gamelists/gba/linkedhashes.php?g=779 new file mode 100644 index 0000000..d58822a --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=779 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 71b00ba406c522d3cec48311bd7bc760
  • a1b8d71fa43915d37b955a2b1a0ed80a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=780 b/gamelists/gba/linkedhashes.php?g=780 new file mode 100644 index 0000000..cf1f74e --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=780 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 0e3ed3a6cc2f201897c58cb31d43a35f
  • 1e8c774ba210d1c55113531c7360c737
  • 56d29cad9e26f1d7465f803ed1d1426b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=782 b/gamelists/gba/linkedhashes.php?g=782 new file mode 100644 index 0000000..8c716e7 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=782 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 72f7b2ac41e33f59ba6dc8cbce524a2c
  • 92fdd2ece8dade3766a49206af655551
  • b24a17d080a01a404cbf018ba42b9803
  • b3924cc91ef58cce41bb6f2849acd9c7
  • b77b443ca057606d452b4de745aa895c
  • d5e6ffc50aa0cc058af5cd954f8da5bf
  • e03a66040ba78ad322e43fea29bdb78d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=7825 b/gamelists/gba/linkedhashes.php?g=7825 new file mode 100644 index 0000000..a6a53d1 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=7825 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0728c45a6390b12bd02f0bdc001df5bb
  • a75cc0c8d8c8aca6ccf1bf3abf7a1c95


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=783 b/gamelists/gba/linkedhashes.php?g=783 new file mode 100644 index 0000000..4c1e8f5 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=783 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 182363b0698322e1864ced6e9eed7ead
  • 2e29bffe513d03851004fcca30fed1bc
  • 4b59ceea0351defb6eb4bad1dcfb38bd
  • 55dcbe18e02f7d2934c537508de532b6
  • c0d76fd7a2b656fdec1802d62309c4a7
  • ca264d66f10787b6bdf4b4119e810d46
  • ea369497617655b290dd8270454b86ab


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=784 b/gamelists/gba/linkedhashes.php?g=784 new file mode 100644 index 0000000..b4b7c89 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=784 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 0d1e88bdb09ff68adf9877a121325f9c
  • 7fcce60c248bea31973406d5d59c2250
  • d3a76f1c92e3044b1a21f1aae84d21ab


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=785 b/gamelists/gba/linkedhashes.php?g=785 new file mode 100644 index 0000000..1d14a5d --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=785 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 0168acb0d18c5c14c6bea88ed62ab3ed
  • 292f62b5392455b8137b38a230f9b259
  • 36eaa1d0f159979b8ec01151b55ac138
  • 4efc9b7195ce70b7061f73eb5a7d9f31
  • af5040fc0f579800151ee2a683e2e5b5
  • e535a6ec2eb86d183453037289527a63
  • eb462f708c715309d08fd7968825ae9e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=7854 b/gamelists/gba/linkedhashes.php?g=7854 new file mode 100644 index 0000000..6acece5 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=7854 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9457a51730ada0ea9ccdbaab51d93613


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=787 b/gamelists/gba/linkedhashes.php?g=787 new file mode 100644 index 0000000..cab3814 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=787 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • dffc7306234751e18b163fbf3e925f1b
  • fc264c058daeb62f23e1aab77a357ae9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=788 b/gamelists/gba/linkedhashes.php?g=788 new file mode 100644 index 0000000..a06d452 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=788 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 612ca9473451fa42b51d1711031ed5f6
  • 9d33a02159e018d09073e700e1fd10fd
  • a9335c0c1a61c11910a355fb65cd3d82


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=789 b/gamelists/gba/linkedhashes.php?g=789 new file mode 100644 index 0000000..21eec96 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=789 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ba6d0fbff297b8937d3c8e7f2c25fa0f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=790 b/gamelists/gba/linkedhashes.php?g=790 new file mode 100644 index 0000000..645e1bd --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=790 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 11 unique ROM(s) registered for it with the following MD5s:

  • 27c9f37193977828f9808f3f76ff8c76
  • 3c971ea747a4bbdbd305c6f85c1c99ff
  • 3e1b2065b3837c14ffbd03fe205fdfd7
  • 496160d0d8bbdd5692470e402470701d
  • 4d3d76d92c159abef9705a12cd9c4a84
  • 53d1a2027ab49df34a689faa1fb14726
  • 61623a55ac0ff4cb97db7c9a78a477ad
  • 7088f5789736f6fcedc687b385033003
  • a943a52c790b966be2ed3140f46cd27f
  • c014449536d7d32e5b6a3b91d10c0fe9
  • e0503182a2e699678bcf25a6897a24d6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=791 b/gamelists/gba/linkedhashes.php?g=791 new file mode 100644 index 0000000..873d18e --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=791 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 12 unique ROM(s) registered for it with the following MD5s:

  • 033f4849d9dfe3af62353713a707895c
  • 18269d435ed4b8d4a9e706de9f3aa270
  • 2e6e9e3b87f99f04a1ac44b01bfa6ecd
  • 3c793a77ea0c6064dc9fb040fb0fb377
  • 49515946d6e40470f186a83007b7c427
  • 5323f95f70f5d4f21bed6ec000332bda
  • 5713e3c5b6c51bff0f5ba71ff638cb4d
  • 666527a5990e8736b493885b650a1bf9
  • 9bc2b765ca6997175fac51e6cdc29089
  • 9d816b369343d39b94af9a8b0ce7f63b
  • c59c79d8bfacd27a1c3fafda2bd801d0
  • f34e91399c719812e66e2c828a2e93d7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=792 b/gamelists/gba/linkedhashes.php?g=792 new file mode 100644 index 0000000..850ab09 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=792 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 66f4a5a101822a779fdfecf366e73c96
  • a9572991316ac2e105abfec80aaeb02e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=793 b/gamelists/gba/linkedhashes.php?g=793 new file mode 100644 index 0000000..1216f99 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=793 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 49ecc8ef1988e7ae81fbda1b4cf71eed
  • 6198e2ff8b6cc5ee96704e2f3e44f0e4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=794 b/gamelists/gba/linkedhashes.php?g=794 new file mode 100644 index 0000000..6a9978c --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=794 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 310498d4b2e3cc44ed69557903c4a54e
  • e0533faf6aa36e3111669574f1c5df92
  • e6b78109c11d82f621db846da70bc30a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=796 b/gamelists/gba/linkedhashes.php?g=796 new file mode 100644 index 0000000..15994c0 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=796 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 8d9fbf8bde7941ca97dcba7757d60e81
  • 97109a5bdfaf19926135edb84876888e
  • b7236bf34d66ead26ba5b6c1cb16c5f0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=800 b/gamelists/gba/linkedhashes.php?g=800 new file mode 100644 index 0000000..6c6a637 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=800 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 5fe47355a33e3fabec2a1607af88a404
  • 7fd9140d1985df814eb543de6330454a
  • c4f6c86b801e8fb0e92a5050a8d97972


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=801 b/gamelists/gba/linkedhashes.php?g=801 new file mode 100644 index 0000000..1932909 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=801 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 2cca01b2f9587ca10b267350488eb3fc
  • 2fe6b141cef9eb1bfd2ab08f22a454a5
  • 89579f4dfe1ed24a7cd16a6a61a72a17
  • d76d992d936c308b7d1bb70ac71a1c37


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=802 b/gamelists/gba/linkedhashes.php?g=802 new file mode 100644 index 0000000..f0323f4 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=802 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 31c33a781f3a6bd3af3a4497e6d88c3c
  • a2d26dc774cec9a0b47388a5dd727b03


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=808 b/gamelists/gba/linkedhashes.php?g=808 new file mode 100644 index 0000000..9fbb6ed --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=808 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 556cb40fed913f964a7f149c9cfda266
  • 901d68257b8beda85240d55725529fe2
  • 91d5986bcb918e636f17e99eb73b923b
  • 929f06f714454b66cec42585462db598


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=8206 b/gamelists/gba/linkedhashes.php?g=8206 new file mode 100644 index 0000000..939c988 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=8206 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7d2c4f995b82825aa63fe224733d769b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=8378 b/gamelists/gba/linkedhashes.php?g=8378 new file mode 100644 index 0000000..de5a96b --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=8378 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 9397ee8e46cd0357d49af1cff6fd97b3
  • 9a56bc96339193e7c198c20d2ca11afe


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=8398 b/gamelists/gba/linkedhashes.php?g=8398 new file mode 100644 index 0000000..45c98f5 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=8398 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 22a4e57b85f7413c1973d4bd5a19d5a3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=8582 b/gamelists/gba/linkedhashes.php?g=8582 new file mode 100644 index 0000000..0e3e690 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=8582 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 0151bea814bbc3b2e9cc0353f41dff16
  • 627fb1625974c4d04e9e38ced12795ce
  • ba38712ad91c6c0287298d4c53ad48b1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=8679 b/gamelists/gba/linkedhashes.php?g=8679 new file mode 100644 index 0000000..c74885f --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=8679 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1a97a68ce320fd9eda568a724ea1bfb4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=9045 b/gamelists/gba/linkedhashes.php?g=9045 new file mode 100644 index 0000000..9983071 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=9045 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 44b5e18bb226cc98c2fbb0ea5be32484


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=9057 b/gamelists/gba/linkedhashes.php?g=9057 new file mode 100644 index 0000000..d7555d6 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=9057 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 45f0b97050a666ce7ab4e3960929f47b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=9208 b/gamelists/gba/linkedhashes.php?g=9208 new file mode 100644 index 0000000..0ece79a --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=9208 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ac807e619878b8219240d908bd7d5ed6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=9226 b/gamelists/gba/linkedhashes.php?g=9226 new file mode 100644 index 0000000..79173ec --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=9226 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 2ed1918e1084445c87b7fe10094238b5
  • 821e6ee7197d8b7aac69aea82509e93a
  • d853b5ffa5ef88605a0823d3b4b2df08


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=9284 b/gamelists/gba/linkedhashes.php?g=9284 new file mode 100644 index 0000000..1b4b632 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=9284 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c13785f8c7f0342d4c96c294e600e338


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=9383 b/gamelists/gba/linkedhashes.php?g=9383 new file mode 100644 index 0000000..9c87866 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=9383 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • d6f114b4d88f348d85d12f35a544e5f3
  • f3d168d87d3e2ae25dbec012471cd9b5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=9616 b/gamelists/gba/linkedhashes.php?g=9616 new file mode 100644 index 0000000..7dc284f --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=9616 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 24a24025a5e3b15512d4b5858b07c662
  • 9a5a6c940bbf141d8c2838cf7c818080


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=9620 b/gamelists/gba/linkedhashes.php?g=9620 new file mode 100644 index 0000000..6f750e6 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=9620 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 663bae5c5eb52177530b339441d48baf
  • 75119296de2c0024af1ae9c5542ab80a
  • ddebbf0f61891b4e26448ae672ccc8e4
  • e669167a9a053a9d19bf92aa2a2cb2f3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=9664 b/gamelists/gba/linkedhashes.php?g=9664 new file mode 100644 index 0000000..0178885 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=9664 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 39a754c5e3f4c7624a26e5fa97a2d178


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=9766 b/gamelists/gba/linkedhashes.php?g=9766 new file mode 100644 index 0000000..0734beb --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=9766 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1950bec3827a706bcf603bf27794c270


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=9815 b/gamelists/gba/linkedhashes.php?g=9815 new file mode 100644 index 0000000..5ee0f96 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=9815 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 277a144d9b4392a6c80f23b979c9c8f3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=9848 b/gamelists/gba/linkedhashes.php?g=9848 new file mode 100644 index 0000000..457d190 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=9848 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d4fecd09b810dba8a76c5766e713e49f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gba/linkedhashes.php?g=9877 b/gamelists/gba/linkedhashes.php?g=9877 new file mode 100644 index 0000000..fe62139 --- /dev/null +++ b/gamelists/gba/linkedhashes.php?g=9877 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 463515a7c47e716cb66c92b5d8857cf2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc.html b/gamelists/gbc.html new file mode 100644 index 0000000..91cbc2e --- /dev/null +++ b/gamelists/gbc.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games Game Boy Color - RetroAchievements +
+
+
+ +
+

Game Boy Color

TitleAchievementsPointsLeaderboards
880 (186)
885 (297)
1175 (113)
20135 (236)
29120 (137)
1685 (115)
16220 (765)
2169 (69)
70660 (1710)
95550 (1244)
40370 (2182)
40370 (1544)
40350 (838)
15100 (101)
17175 (335)1
1560 (64)
20251 (2446)
21230 (828)
16136 (295)4
12180 (210)2
23115 (171)
70835 (3249)
72905 (6684)
81966 (6767)
61725 (3580)
11125 (144)2
12135 (143)2
26267 (452)1
81585 (1384)
46485 (1133)
64763 (1743)
22290 (341)
36257 (695)
33200 (231)
1270 (96)
27250 (1184)2
12108 (277)
30366 (2253)27
42516 (3283)34
24320 (672)
32363 (915)1
870 (105)
44231 (288)1
72485 (782)8
56400 (1056)
53348 (761)
57425 (2453)
27345 (555)
85955 (2492)7
39355 (536)
57430 (954)46
36426 (1274)
55494 (4253)2
59509 (3714)2
1385 (164)
33462 (1591)2
18150 (244)
860 (110)
860 (86)
860 (107)
1075 (152)
1075 (95)
1075 (127)
27175 (289)
1260 (111)
28315 (526)1
68500 (1390)
44398 (1489)
48451 (851)
59525 (4549)
15175 (764)
27275 (438)15
43111 (294)
31325 (713)
2385 (122)
13185 (744)
49420 (796)
56325 (377)
15190 (352)3
31391 (813)5
29271 (455)3
29271 (418)3
37418 (3633)4
37425 (973)2
76555 (1627)
18100 (132)
123800 (5439)
96500 (1611)20
27245 (1047)
36200 (532)
20220 (388)
24300 (364)
972 (128)
34350 (776)
32380 (698)
22320 (507)
31400 (2482)
33286 (348)
48368 (887)
61396 (952)
30500 (2136)
20200 (370)5
34640 (1994)
39410 (1171)
40537 (2022)3
1155 (56)
24266 (971)
106850 (4169)25
54445 (715)
37450 (1892)
660 (67)
13165 (791)
39320 (580)
25220 (322)
69588 (1692)
15340 (505)
1638 (38)
24290 (365)
65610 (962)
951194 (5666)4
52379 (465)
870 (166)
1236 (36)
28275 (604)12
635 (45)
17390 (588)
19115 (235)
33300 (491)
43400 (899)
Totals: 129 games450441483 (139039)249

+
+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=10631 b/gamelists/gbc/linkedhashes.php?g=10631 new file mode 100644 index 0000000..0cd4acf --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=10631 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 54165d2bf7a040aa31d6d0956408d10d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=10659 b/gamelists/gbc/linkedhashes.php?g=10659 new file mode 100644 index 0000000..c9988e3 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=10659 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 89de435cb69325b42d569015ca09f49f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=11165 b/gamelists/gbc/linkedhashes.php?g=11165 new file mode 100644 index 0000000..8dc08a8 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=11165 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d5a558f3f63771ac1e40d53976e090ef


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=11201 b/gamelists/gbc/linkedhashes.php?g=11201 new file mode 100644 index 0000000..0684517 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=11201 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 77f0693224c8dec44d61800d777b15d7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=11582 b/gamelists/gbc/linkedhashes.php?g=11582 new file mode 100644 index 0000000..05805a5 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=11582 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3ced79ad60ab5195058d5d658550f04f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=11673 b/gamelists/gbc/linkedhashes.php?g=11673 new file mode 100644 index 0000000..ba711ce --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=11673 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 81433716e1a23aefe5de0fc03ef55519
  • c576f119cb3ad8ad7b5f18e6755232f3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=12399 b/gamelists/gbc/linkedhashes.php?g=12399 new file mode 100644 index 0000000..f3dadb2 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=12399 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 293d91d53e2c6ce32d55696add7ab8e1
  • adb108b1872c8701b4cf571665d80cb8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=12775 b/gamelists/gbc/linkedhashes.php?g=12775 new file mode 100644 index 0000000..9380cba --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=12775 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c1dd8c5952ea02286616d3ff0d8c54cb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=12804 b/gamelists/gbc/linkedhashes.php?g=12804 new file mode 100644 index 0000000..c25c281 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=12804 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1689c2205cc7b3bd020e85d2ea73fdf7
  • 3a3e92c106a8674642e0ee3c0c793a9f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=12842 b/gamelists/gbc/linkedhashes.php?g=12842 new file mode 100644 index 0000000..ca2cb27 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=12842 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7f306f573ca9759fa2f7aa167ca2dd74


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=12864 b/gamelists/gbc/linkedhashes.php?g=12864 new file mode 100644 index 0000000..37909b2 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=12864 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 09f6430f0847ec793ff95057fdacac1d
  • f5325eaf1ecbf7cd6e1e561a3b5d77f7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=12950 b/gamelists/gbc/linkedhashes.php?g=12950 new file mode 100644 index 0000000..cd21833 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=12950 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9889afc5b4e72c9f96db8e6b4260f6b7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=13082 b/gamelists/gbc/linkedhashes.php?g=13082 new file mode 100644 index 0000000..ca6f9ff --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=13082 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7e8280463d7ac79662d8be587bb6b766


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=13389 b/gamelists/gbc/linkedhashes.php?g=13389 new file mode 100644 index 0000000..1c201aa --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=13389 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 02aef2b6042393f5e117dd4a4a638100
  • c57acec27a0318ccf51298b7ea51babf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=13829 b/gamelists/gbc/linkedhashes.php?g=13829 new file mode 100644 index 0000000..38e1977 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=13829 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 28d6c613fdf608fe241fb3ce183aaae5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=1403 b/gamelists/gbc/linkedhashes.php?g=1403 new file mode 100644 index 0000000..30d74a2 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=1403 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 71156f1794556acd255ae256d8195e32
  • 83f791645ce282093a9d59c121ffc49d
  • c43ce6e1c66e6fcfc259762a9244a63d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=14166 b/gamelists/gbc/linkedhashes.php?g=14166 new file mode 100644 index 0000000..465a923 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=14166 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1d0ea47375fca723c0f86a5178e545f3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=14747 b/gamelists/gbc/linkedhashes.php?g=14747 new file mode 100644 index 0000000..089eb9d --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=14747 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 2295f4ef94f9b9a21dfc04259ab6d7bf
  • c1ef769ab7525ca2b2c3b0eb88b1c49c
  • d5aef2fb975eebf3b66ea89c469d0d7c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=15738 b/gamelists/gbc/linkedhashes.php?g=15738 new file mode 100644 index 0000000..a01355c --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=15738 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c48f26f5079ad1b411c78fbcb2738d67


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=15925 b/gamelists/gbc/linkedhashes.php?g=15925 new file mode 100644 index 0000000..2d2ce4c --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=15925 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 41c2515a1dda83aadfd0a134bc62656b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=15926 b/gamelists/gbc/linkedhashes.php?g=15926 new file mode 100644 index 0000000..00c7beb --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=15926 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6f5aca1f721a92eb956286809f2af28d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=15927 b/gamelists/gbc/linkedhashes.php?g=15927 new file mode 100644 index 0000000..1663f0c --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=15927 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 21d547ea7229128618079c792fd94e2a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=15928 b/gamelists/gbc/linkedhashes.php?g=15928 new file mode 100644 index 0000000..d9291a3 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=15928 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • de3c7f4b7df2d8c95ea1c5c622c332e8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=15929 b/gamelists/gbc/linkedhashes.php?g=15929 new file mode 100644 index 0000000..55c3880 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=15929 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 693e77e4cd9c3845693f695a87f4444a
  • a9ee6c9625c9bd187bc7fd90df3a4fc4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=15930 b/gamelists/gbc/linkedhashes.php?g=15930 new file mode 100644 index 0000000..0f67bce --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=15930 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8dbab7618855360b2029bdf2841067ab


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=15932 b/gamelists/gbc/linkedhashes.php?g=15932 new file mode 100644 index 0000000..9e25b19 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=15932 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e0cb7315349851951532a959fd50eb9d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=16191 b/gamelists/gbc/linkedhashes.php?g=16191 new file mode 100644 index 0000000..7862b13 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=16191 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 9d3a3026bc3730cdf5d813b0bfe49697
  • ac13345fce36013c1ec4a3afbd21ad63


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=16218 b/gamelists/gbc/linkedhashes.php?g=16218 new file mode 100644 index 0000000..3e1f707 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=16218 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 20052c527795a4f332be14aff49d4d4b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=16252 b/gamelists/gbc/linkedhashes.php?g=16252 new file mode 100644 index 0000000..edddf07 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=16252 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4339b53336d999d9c582aef54e217d79


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=16386 b/gamelists/gbc/linkedhashes.php?g=16386 new file mode 100644 index 0000000..bb73a7b --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=16386 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d076ab5be2ec4972376de685c3705ff2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=16595 b/gamelists/gbc/linkedhashes.php?g=16595 new file mode 100644 index 0000000..cbb5db7 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=16595 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3e19e48ae832620c023f8c5f62129b99


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=16597 b/gamelists/gbc/linkedhashes.php?g=16597 new file mode 100644 index 0000000..a896d04 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=16597 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 35d2e7924408a3460e5c1a770acf3a8a
  • c55ce12656ced14bb09bad7e8da4a67e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=2370 b/gamelists/gbc/linkedhashes.php?g=2370 new file mode 100644 index 0000000..2c03203 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=2370 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • c3c3932d5471bc0028ade1cd7a102d43
  • cb0e23b09470002fe33732b1f0e02b06


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=2500 b/gamelists/gbc/linkedhashes.php?g=2500 new file mode 100644 index 0000000..467e486 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=2500 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 627c3542307661990802806ebd0acd90
  • 68715e0a2805e3fc019fec35a9cff0d4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=2501 b/gamelists/gbc/linkedhashes.php?g=2501 new file mode 100644 index 0000000..da0da8d --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=2501 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6efc4c27d06564f9000667c029ad02a3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=2547 b/gamelists/gbc/linkedhashes.php?g=2547 new file mode 100644 index 0000000..4dbf398 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=2547 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ba85a2ae8aa5829c440eef2d5549506c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=2581 b/gamelists/gbc/linkedhashes.php?g=2581 new file mode 100644 index 0000000..4a23c27 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=2581 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1f1fb3cf8783f880bc796d667be60231


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=2818 b/gamelists/gbc/linkedhashes.php?g=2818 new file mode 100644 index 0000000..85cca71 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=2818 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bc60280596bce42d050b764b647dc39b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=3607 b/gamelists/gbc/linkedhashes.php?g=3607 new file mode 100644 index 0000000..9978aac --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=3607 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6acd649d8ab0ec4f26b8ca3930434264
  • db1aeaa7135bd5707dbbccc427808cd7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=3608 b/gamelists/gbc/linkedhashes.php?g=3608 new file mode 100644 index 0000000..848c3af --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=3608 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1ca6579359f21d8e27b446f865bf6b83


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=3625 b/gamelists/gbc/linkedhashes.php?g=3625 new file mode 100644 index 0000000..983a0f9 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=3625 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0bfac235a5bd9cd57d7b3e7e83993458
  • c7bcdd8ace2dfac5fdce889880472f80


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=3626 b/gamelists/gbc/linkedhashes.php?g=3626 new file mode 100644 index 0000000..076ed78 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=3626 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 9108d1246f11d0e0f2cec608e79efd65
  • ccdcb901229a2278d0be673472f411b9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=3632 b/gamelists/gbc/linkedhashes.php?g=3632 new file mode 100644 index 0000000..1f6f878 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=3632 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2a147b2d7731ac26a999390c3f5ff2ac


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=3646 b/gamelists/gbc/linkedhashes.php?g=3646 new file mode 100644 index 0000000..65d0e5a --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=3646 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 42ad3639f6abf013d5dacd4358abf6ca
  • b50ef76b1e81615cf079c373b50c0ab9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=3647 b/gamelists/gbc/linkedhashes.php?g=3647 new file mode 100644 index 0000000..5527a03 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=3647 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 42ff80b90350d30aafe41ea2c71a79bf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=3650 b/gamelists/gbc/linkedhashes.php?g=3650 new file mode 100644 index 0000000..d194ba1 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=3650 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 83b67b8a10f704a9e3e7ca3814e5b3ca
  • 9ba7b607ec310589c5ccfb1a8149df59


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=3658 b/gamelists/gbc/linkedhashes.php?g=3658 new file mode 100644 index 0000000..511ce1a --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=3658 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5a93ecb5781a3338c99e35bd06cc6127


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=3692 b/gamelists/gbc/linkedhashes.php?g=3692 new file mode 100644 index 0000000..23fa5b2 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=3692 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b881fe7a48a4d6deb2e41ffd930712fd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4056 b/gamelists/gbc/linkedhashes.php?g=4056 new file mode 100644 index 0000000..c2c1768 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4056 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • b397066e3cad5ae33a31e4adfff0bff5
  • cb5fe636114fcb0925d08ceced82dc23


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4080 b/gamelists/gbc/linkedhashes.php?g=4080 new file mode 100644 index 0000000..ff6dec9 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4080 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bcc135b000c1c54f12f4ae87c7673b0c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4099 b/gamelists/gbc/linkedhashes.php?g=4099 new file mode 100644 index 0000000..0e4ec55 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4099 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3d630cb2ff52e7fedfca6c938b82fa24


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4126 b/gamelists/gbc/linkedhashes.php?g=4126 new file mode 100644 index 0000000..bb543a6 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4126 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f270519e6357bc32fd07fc6386e14dec


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4129 b/gamelists/gbc/linkedhashes.php?g=4129 new file mode 100644 index 0000000..185dc2e --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4129 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 7f1830171eec29ac72ae976d4dfdfc65
  • d5ebdbeda4156b34e3c0f01d55a4221c
  • d94e22b4c08ab3c7b1929f5490adcbf2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4182 b/gamelists/gbc/linkedhashes.php?g=4182 new file mode 100644 index 0000000..310ca39 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4182 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bda8c4e5e18070924261823e5fca655c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4184 b/gamelists/gbc/linkedhashes.php?g=4184 new file mode 100644 index 0000000..887ed08 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4184 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0552078f981c2ef3977f2dfeee19510a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4193 b/gamelists/gbc/linkedhashes.php?g=4193 new file mode 100644 index 0000000..e0cdb7d --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4193 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5776965258ee78832e7eabc0db66ff4b
  • d62e0c703bc1a84e0fce512f4b9c46e7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4246 b/gamelists/gbc/linkedhashes.php?g=4246 new file mode 100644 index 0000000..5301758 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4246 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 95b284df7ba2f862406f747b4ca7c380


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4301 b/gamelists/gbc/linkedhashes.php?g=4301 new file mode 100644 index 0000000..09d038f --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4301 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9f77adbb0a6af7bd85d21a8ef9fdea49


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4302 b/gamelists/gbc/linkedhashes.php?g=4302 new file mode 100644 index 0000000..4f110e5 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4302 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • edf021b521a496fe7afc5e15949f5c80


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4671 b/gamelists/gbc/linkedhashes.php?g=4671 new file mode 100644 index 0000000..7e9fc78 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4671 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 258b7b8e4692d4204df470487ef2fc3d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4702 b/gamelists/gbc/linkedhashes.php?g=4702 new file mode 100644 index 0000000..57e1e9f --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4702 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2382edc04a323a227ea793e33c749c79


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4836 b/gamelists/gbc/linkedhashes.php?g=4836 new file mode 100644 index 0000000..aa79347 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4836 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f71ac6ac4bb335f59bfd2b594d47ab49


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4871 b/gamelists/gbc/linkedhashes.php?g=4871 new file mode 100644 index 0000000..2da594d --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4871 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6815ec13f522fd65637be46220371704
  • d2bde938cb4c7e32ab202eb1b6e5ab9c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4893 b/gamelists/gbc/linkedhashes.php?g=4893 new file mode 100644 index 0000000..3f544dc --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4893 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • fee6336f969c9e72e9b78be53d512c1e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4912 b/gamelists/gbc/linkedhashes.php?g=4912 new file mode 100644 index 0000000..c589a09 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4912 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1f64989765f605d05cbd013e7ffcc352


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4915 b/gamelists/gbc/linkedhashes.php?g=4915 new file mode 100644 index 0000000..358b27e --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4915 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8e79dcdee0e15ef069b3f376a0fee37d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4919 b/gamelists/gbc/linkedhashes.php?g=4919 new file mode 100644 index 0000000..accaedb --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4919 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2c86d59922dbf563f3ea0ddfc204731f
  • 93ff3f6b4bfe0a138d8a8897899e8cb0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4920 b/gamelists/gbc/linkedhashes.php?g=4920 new file mode 100644 index 0000000..cc8ccc2 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4920 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 06157785417d6fe5c73388eb573981dc
  • 48ce279084e1fc7a9136cc211f4fad5d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4922 b/gamelists/gbc/linkedhashes.php?g=4922 new file mode 100644 index 0000000..6dd949b --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4922 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b5eb859e6ea60a0bd83100a10206d9c9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4923 b/gamelists/gbc/linkedhashes.php?g=4923 new file mode 100644 index 0000000..79c97b2 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4923 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 07d4df7a1c93f5bef617e5a90b9edee2
  • 326f861a8fb3e21f1e9379e62cfb6bea


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4933 b/gamelists/gbc/linkedhashes.php?g=4933 new file mode 100644 index 0000000..aefeb34 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4933 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 4c18b5d470b105344ec55d195a05d2de
  • 90280833c156e2ca8e4eaa29adf369b2
  • 9d79034c9b026f448f84f9898c6ccfd6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4939 b/gamelists/gbc/linkedhashes.php?g=4939 new file mode 100644 index 0000000..933794c --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4939 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 65973d7a1446346294f8ca9d2d1b7e66
  • 8d7a8117fac260d326f36b724e7d3b74
  • 9e819acd3bff5bd1a965d747fa01fe85


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4940 b/gamelists/gbc/linkedhashes.php?g=4940 new file mode 100644 index 0000000..44760ee --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4940 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • af1d1e17a5c568df796f4004be872649


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4950 b/gamelists/gbc/linkedhashes.php?g=4950 new file mode 100644 index 0000000..03e1ca2 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4950 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • a4b695325ac28be2e388f5b9186987ba
  • e4c1111dcc4dc23860ce016daf584dc1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=4972 b/gamelists/gbc/linkedhashes.php?g=4972 new file mode 100644 index 0000000..3a65ff1 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=4972 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 10a424307ed6e7c033a565e4b79b0cb7
  • 86ed74283fe0071f8d3f05923051efab


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=5042 b/gamelists/gbc/linkedhashes.php?g=5042 new file mode 100644 index 0000000..fdf2a26 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=5042 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f55ed9e6a8fece5220e9876fb515e222


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=5043 b/gamelists/gbc/linkedhashes.php?g=5043 new file mode 100644 index 0000000..c142882 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=5043 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 50af67f7321d84bd052f0e793ee0613c
  • a320f9de83767bb1bc1bbbc6fbd96011
  • d7f63bbb351a95d73d085a58c8e9f449


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=5067 b/gamelists/gbc/linkedhashes.php?g=5067 new file mode 100644 index 0000000..b37659e --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=5067 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0a3da06446d9a2c7e1ea8149c9026434


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=5072 b/gamelists/gbc/linkedhashes.php?g=5072 new file mode 100644 index 0000000..4731988 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=5072 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 45c4b87d2e3fe86fccc6941ffd724098


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=5108 b/gamelists/gbc/linkedhashes.php?g=5108 new file mode 100644 index 0000000..cb251aa --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=5108 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • ad358f284c3303db01212016ed3944d5
  • e6f36322946499f2f55b724c3db916cd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=5129 b/gamelists/gbc/linkedhashes.php?g=5129 new file mode 100644 index 0000000..1794141 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=5129 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0c6a0f2add131ca4afd24763fe3c3a04


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=5133 b/gamelists/gbc/linkedhashes.php?g=5133 new file mode 100644 index 0000000..4c07067 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=5133 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 0d0f492716005ec56d38a4fde204fe38
  • 3c0c5fceebff4d9730875a9362d26aa1
  • 8a7f483857e251d56a16594ca84d1a7e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=5143 b/gamelists/gbc/linkedhashes.php?g=5143 new file mode 100644 index 0000000..69dc775 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=5143 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0ff9df46aca45161d1dfa7eee8509c1f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=5151 b/gamelists/gbc/linkedhashes.php?g=5151 new file mode 100644 index 0000000..33962b8 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=5151 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 498c0a50a5e5cde16127617a97ad6162
  • c1fe25c0a347903e391fd3d0d584316d
  • cef633780478127fd5cd3b040e2504fc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=5155 b/gamelists/gbc/linkedhashes.php?g=5155 new file mode 100644 index 0000000..071d959 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=5155 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 121cec82c0c9e7c476060ad2521739d4
  • 2b853ce3d85f790cc101c7bd6f8f1b91
  • 74c9fe928dd97ae193e9f937ce340dcc
  • a539a7a02639395ad8d7723199c81eae


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=5185 b/gamelists/gbc/linkedhashes.php?g=5185 new file mode 100644 index 0000000..85c6459 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=5185 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6b055c6d12e477fbfd7bed1b495d56f7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=520 b/gamelists/gbc/linkedhashes.php?g=520 new file mode 100644 index 0000000..4d8b706 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=520 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7971c95ad9745fe20df52e03cd52f636
  • f6dd1b1e5747412b9e5f25376c972d5a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=5217 b/gamelists/gbc/linkedhashes.php?g=5217 new file mode 100644 index 0000000..79147dc --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=5217 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9b8869fa36562a32edec76717632875e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=5369 b/gamelists/gbc/linkedhashes.php?g=5369 new file mode 100644 index 0000000..d18b3b8 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=5369 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cbf4a5b2ff566554b014118e3d0e3e9a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=537 b/gamelists/gbc/linkedhashes.php?g=537 new file mode 100644 index 0000000..66f6853 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=537 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • b941941050fc32406eca4733926a3779
  • ea9f362f629124c9423a8d9ba933eced


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=5371 b/gamelists/gbc/linkedhashes.php?g=5371 new file mode 100644 index 0000000..ab0dc33 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=5371 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 9 unique ROM(s) registered for it with the following MD5s:

  • 07c211479386825042efb4ad31bb525f
  • 28a0ba6afec465095ca7a4bc82801e05
  • 41f548ae2944f3caffa7c17eaeafdaf3
  • 6e2ced1e3ba8b27ccaf0628f4047fd4f
  • 7351daa3c0a91d8f6fe2fbcca6182478
  • b64a73a7270fb7c1ff02e358fbd90a96
  • c3c849962b3272dfed3a185a561aac0d
  • ccbb56212e3dbaa9007d389a17e9d075
  • f75874e3654360094fc2b09bd1fed7e8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=5594 b/gamelists/gbc/linkedhashes.php?g=5594 new file mode 100644 index 0000000..e17a333 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=5594 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • ac46bc779e1e844674de1d4c13d06f96
  • c663691b1eca7eeeb501c4d00b4b186f
  • ffa003fa747731a9fd547260598538cb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=576 b/gamelists/gbc/linkedhashes.php?g=576 new file mode 100644 index 0000000..b439fe0 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=576 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a6924ce1f9ad2228e1c6580779b23878


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=577 b/gamelists/gbc/linkedhashes.php?g=577 new file mode 100644 index 0000000..159acb6 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=577 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c30add585d87114288ff8e3726c5381b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=6135 b/gamelists/gbc/linkedhashes.php?g=6135 new file mode 100644 index 0000000..bfbdc67 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=6135 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e7c022031cb882912e81970eb63d4f61


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=6167 b/gamelists/gbc/linkedhashes.php?g=6167 new file mode 100644 index 0000000..51196e4 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=6167 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 10e6dcd0a350076e28b9c598c278b6a2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=6169 b/gamelists/gbc/linkedhashes.php?g=6169 new file mode 100644 index 0000000..c619c1e --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=6169 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7e6d077d50879c57ff70891aaa312e80


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=6171 b/gamelists/gbc/linkedhashes.php?g=6171 new file mode 100644 index 0000000..da53f27 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=6171 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 25f20cdc0f6f70d0bc5430a9b0d48742


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=6181 b/gamelists/gbc/linkedhashes.php?g=6181 new file mode 100644 index 0000000..3c9659a --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=6181 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • dbada1fdfaba283bede36852843f5ed8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=6203 b/gamelists/gbc/linkedhashes.php?g=6203 new file mode 100644 index 0000000..bba6fa0 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=6203 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7cf3670a8f345344e4789e41503d7da6
  • eb76fda958f100fb791111b928ffe46f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=6251 b/gamelists/gbc/linkedhashes.php?g=6251 new file mode 100644 index 0000000..0ef4140 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=6251 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 004f82ab432f77c3114644337fdd5b08
  • 64b5b80b005cc6e470c7aa9844ac3f8b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=6337 b/gamelists/gbc/linkedhashes.php?g=6337 new file mode 100644 index 0000000..67b80ab --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=6337 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 398f7b60ea114b90b24503178f47e8d8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=6494 b/gamelists/gbc/linkedhashes.php?g=6494 new file mode 100644 index 0000000..fc7323d --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=6494 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2f6b6379f8c7ce5d66a198162f345eaa


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=6526 b/gamelists/gbc/linkedhashes.php?g=6526 new file mode 100644 index 0000000..3266ee3 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=6526 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 94d2aa3fbda301f9c0d0c16e00743183


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=6531 b/gamelists/gbc/linkedhashes.php?g=6531 new file mode 100644 index 0000000..0760691 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=6531 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 50e6d9d88450932743161b7512838ccc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=6533 b/gamelists/gbc/linkedhashes.php?g=6533 new file mode 100644 index 0000000..64a0ea5 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=6533 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f1bb0127347994b46258adbda0dc0b16


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=6534 b/gamelists/gbc/linkedhashes.php?g=6534 new file mode 100644 index 0000000..0f50f95 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=6534 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7f8c472f3c7bd1eec56a3bad10a2e94c
  • f19153c5bc422a2b1b13a4b9ff5d7bd9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=6539 b/gamelists/gbc/linkedhashes.php?g=6539 new file mode 100644 index 0000000..47f6a73 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=6539 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 221d3b96df7d86291b553a7cb4702dec


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=676 b/gamelists/gbc/linkedhashes.php?g=676 new file mode 100644 index 0000000..4f294f3 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=676 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4ca44cbdd4e05c9b3c22da96d3de6338
  • f2dc6c4e093e4f8c6cbea80e8dbd62cb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=6791 b/gamelists/gbc/linkedhashes.php?g=6791 new file mode 100644 index 0000000..e1c220a --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=6791 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 91eb6db42e92e2df05cc2b40f0dbc2f0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=710 b/gamelists/gbc/linkedhashes.php?g=710 new file mode 100644 index 0000000..bca120a --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=710 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 825de040ea4dff66661693f8712b1bdb
  • a0c1a41e2c3de54705036a1b3f71d79a
  • c4639cc61c049e5a085526bb6cac03bb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=7102 b/gamelists/gbc/linkedhashes.php?g=7102 new file mode 100644 index 0000000..130cbad --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=7102 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1757723cf346be2cea58d0fc4ed4cfa9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=7107 b/gamelists/gbc/linkedhashes.php?g=7107 new file mode 100644 index 0000000..b26a5bd --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=7107 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c987f711dfb9cba8dc1174219877360f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=713 b/gamelists/gbc/linkedhashes.php?g=713 new file mode 100644 index 0000000..806fa06 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=713 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4681f5b931a2e60ca163facd1adf56ed


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=7130 b/gamelists/gbc/linkedhashes.php?g=7130 new file mode 100644 index 0000000..4708a22 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=7130 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c7cf1e919682b3ee613dd155cc12a15a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=7146 b/gamelists/gbc/linkedhashes.php?g=7146 new file mode 100644 index 0000000..4b97538 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=7146 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5df6d1ec0e9241e1ed8a8ee7ff318631


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=722 b/gamelists/gbc/linkedhashes.php?g=722 new file mode 100644 index 0000000..d17d256 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=722 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2ac166169354e84d0e2d7cf4cb40b312


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=725 b/gamelists/gbc/linkedhashes.php?g=725 new file mode 100644 index 0000000..ea8535b --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=725 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 852d68f167a5957f5e73954763f36ada
  • fbe20570c2e52c937a9395024069ba3c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=727 b/gamelists/gbc/linkedhashes.php?g=727 new file mode 100644 index 0000000..aafc1d6 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=727 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 219b2cc64e5a052003015d4bd4c622cd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=728 b/gamelists/gbc/linkedhashes.php?g=728 new file mode 100644 index 0000000..c1159d4 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=728 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 028c4262dbb49f4fc462a6eb3e514d72
  • 4a278dd6cf21a5e50c41c01e76ea1106
  • 6745241780ab88a7b035331a3ef1cedd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=732 b/gamelists/gbc/linkedhashes.php?g=732 new file mode 100644 index 0000000..bb0b43d --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=732 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1fd75c2b798c04acd4b99ad2f1006280


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=741 b/gamelists/gbc/linkedhashes.php?g=741 new file mode 100644 index 0000000..1bc8baa --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=741 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 16bb3fb83e8cbbf2c4c510b9f50cf4ee


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=7687 b/gamelists/gbc/linkedhashes.php?g=7687 new file mode 100644 index 0000000..6fbf65c --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=7687 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 046af13647ed4777510aa86fcb753bf9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=810 b/gamelists/gbc/linkedhashes.php?g=810 new file mode 100644 index 0000000..2571e6e --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=810 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 301899b8087289a6436b0a241fbbb474
  • 9f2922b235a5eeb78d65594e82ef5dde


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=8228 b/gamelists/gbc/linkedhashes.php?g=8228 new file mode 100644 index 0000000..62ae7b4 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=8228 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e0de3c983ef60c8dffea04248c9e6ba9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=8239 b/gamelists/gbc/linkedhashes.php?g=8239 new file mode 100644 index 0000000..6766d2c --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=8239 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 417c09180a10c47dc212b44a60f06b4c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=8667 b/gamelists/gbc/linkedhashes.php?g=8667 new file mode 100644 index 0000000..46d7250 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=8667 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9b846e9a4eb6b80cdbc8e6c82f2b9e9e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=9491 b/gamelists/gbc/linkedhashes.php?g=9491 new file mode 100644 index 0000000..2d2b818 --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=9491 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 3cd828587eb8d3fe818d57f99b3a3c95
  • 489453e65d1b07a2f04a27135acdc5ba
  • 5de4f04f745c1ab89f08f74f63760991
  • e72a3532f47fe0c7cf3160cf6f80713d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/gbc/linkedhashes.php?g=9725 b/gamelists/gbc/linkedhashes.php?g=9725 new file mode 100644 index 0000000..94f713e --- /dev/null +++ b/gamelists/gbc/linkedhashes.php?g=9725 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4e1a5f02cce49842d4717a8b0ce501f5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem.html b/gamelists/mastersystem.html new file mode 100644 index 0000000..6fcbe0f --- /dev/null +++ b/gamelists/mastersystem.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games Master System - RetroAchievements +
+
+
+ +
+

Master System

TitleAchievementsPointsLeaderboards
26260 (697)
20400 (1355)4
88400 (1610)
42400 (1410)
37560 (2972)
25180 (539)1
29400 (589)
32600 (4735)
25150 (270)2
83468 (1320)1
58403 (867)3
34400 (730)1
33420 (1320)
13150 (192)
26515 (2845)
41460 (1618)2
27435 (4030)1
43555 (4625)
34150 (313)
18225 (361)
26400 (715)1
32340 (1388)22
31320 (1559)2
24400 (2029)1
25500 (936)
55600 (1495)
66265 (386)
30375 (582)
35405 (1844)1
30550 (2006)
22400 (891)
37345 (543)
41270 (747)1
42450 (2424)
36400 (706)
62400 (1647)
16260 (937)1
661135 (4375)
17150 (403)
40450 (2011)
29370 (1794)
31475 (2949)1
23240 (753)1
28520 (2758)
65534 (2389)
24325 (3325)
39650 (4533)
1360 (83)
50465 (2182)48
23270 (1392)3
43380 (1675)22
28525 (7417)2
32325 (1057)
20500 (500)
620 (20)
15130 (174)
33500 (1260)1
20190 (416)
40455 (1692)
1480 (107)1
54430 (1164)
51750 (8591)1
33535 (2131)
15125 (243)2
10100 (137)1
23235 (628)
20205 (231)
985 (99)
Totals: 68 games225825425 (109722)127

+
+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10004 b/gamelists/mastersystem/linkedhashes.php?g=10004 new file mode 100644 index 0000000..7204f44 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10004 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d46e40bbb729ba233f171ad7bf6169f5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10005 b/gamelists/mastersystem/linkedhashes.php?g=10005 new file mode 100644 index 0000000..7756d56 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10005 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 1f37b9cb35366dec83bf8fe222ee1bdd
  • 295320f6e9f4b98b57ae65b5ff820b96
  • 2bfb7d2e470204390779cd8a2e14d4d2
  • 453e0d6d283377ece3f366616a2c4154
  • d62b631506913712a2103f54912458a5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10006 b/gamelists/mastersystem/linkedhashes.php?g=10006 new file mode 100644 index 0000000..6aa3713 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10006 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 717fdf868c8f11a712697260eb7db670


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10007 b/gamelists/mastersystem/linkedhashes.php?g=10007 new file mode 100644 index 0000000..db7097f --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10007 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 3f780a4b30384578c27157dbf5c21713
  • 56b3436304b8cecfe4e321ca029d5e80
  • e7f86c049e4bd8b26844ff62bd067d57
  • e91a4da4f53b214704b3a99c4982f58e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10011 b/gamelists/mastersystem/linkedhashes.php?g=10011 new file mode 100644 index 0000000..aa1420f --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10011 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 64218d035be5988fb5ef023b70955ac3
  • 6ae8f011701608ae8b765a26eb0b7ce1
  • 93dbdbe850b4a7db2142b861f8005716
  • f4c3327b0f92e09b21f59e90fd273c2f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10012 b/gamelists/mastersystem/linkedhashes.php?g=10012 new file mode 100644 index 0000000..1c3ae10 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10012 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 582d58d95c9774cd50555366c253a050
  • e884f9aa4063d0a90666fc3fa509c8bb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10013 b/gamelists/mastersystem/linkedhashes.php?g=10013 new file mode 100644 index 0000000..df3fefe --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10013 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 07fac1d61bc20cf6eb298f66ec2ffe49


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10014 b/gamelists/mastersystem/linkedhashes.php?g=10014 new file mode 100644 index 0000000..7da3cc0 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10014 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2cd25b3d9a1ced329a551d7fc3c0f01e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10015 b/gamelists/mastersystem/linkedhashes.php?g=10015 new file mode 100644 index 0000000..187b809 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10015 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8354932a7f20e84a808471b3724a56f8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10020 b/gamelists/mastersystem/linkedhashes.php?g=10020 new file mode 100644 index 0000000..4bc4ad9 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10020 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 747a206eaaadf48714695e8b4ccead7e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10025 b/gamelists/mastersystem/linkedhashes.php?g=10025 new file mode 100644 index 0000000..e821ba9 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10025 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 3a1dfad2cea111d0dbfb4a545bf3f87e
  • d7d8d2ac9d92e68631e2edc0bf951c98
  • e4497d344386a9fe0826e6d166e0f2b3
  • fed8690ee5fb895c09caa8e2b879ebd6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10028 b/gamelists/mastersystem/linkedhashes.php?g=10028 new file mode 100644 index 0000000..c6986a6 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10028 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 4617cd1b63b489d611fca444ad5d6d5e
  • 81f005120522d42b23ea03152477d20b
  • 965e5576d569794aa27e89048855615f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10033 b/gamelists/mastersystem/linkedhashes.php?g=10033 new file mode 100644 index 0000000..e5969fe --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10033 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b2e5047df186af7c02da17f1b285ae4f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10034 b/gamelists/mastersystem/linkedhashes.php?g=10034 new file mode 100644 index 0000000..9cebf7f --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10034 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3dd2c025185e19ac9bf1ed16b695c629
  • e567cc12e01c04cdde08e785f37e22b7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10035 b/gamelists/mastersystem/linkedhashes.php?g=10035 new file mode 100644 index 0000000..6e99580 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10035 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 63af7fce5106cc3de1e1b116c112095b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10039 b/gamelists/mastersystem/linkedhashes.php?g=10039 new file mode 100644 index 0000000..f7ee44d --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10039 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 04abc524a3b7f7e2e96eb910490e77ec
  • 39e3928058c18dc6c4055d8d240b2e74


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10042 b/gamelists/mastersystem/linkedhashes.php?g=10042 new file mode 100644 index 0000000..5c61f29 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10042 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 029ee92155247f8a282d63b8a6dd23c4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10044 b/gamelists/mastersystem/linkedhashes.php?g=10044 new file mode 100644 index 0000000..3e5e41e --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10044 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ea50dcdd1241667f32d39d606a9f7083


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10046 b/gamelists/mastersystem/linkedhashes.php?g=10046 new file mode 100644 index 0000000..6be0468 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10046 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a9c2facf9ef536d095414ce2e7ce2f4f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10058 b/gamelists/mastersystem/linkedhashes.php?g=10058 new file mode 100644 index 0000000..1643195 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10058 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 61189f69342288aa032c66f6e2a1214d
  • 694ee2b237d266c46e7abe5afdba528a
  • 9e5507d51ac6f24c702a52a7abce0d3c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10076 b/gamelists/mastersystem/linkedhashes.php?g=10076 new file mode 100644 index 0000000..3ee2799 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10076 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cfc878f0163933fcfcc89e134fbeb31f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10203 b/gamelists/mastersystem/linkedhashes.php?g=10203 new file mode 100644 index 0000000..82956f6 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10203 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 126687037bf172174f697d16cd7e7296
  • 387983a020328f52b42293b308562eb8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10219 b/gamelists/mastersystem/linkedhashes.php?g=10219 new file mode 100644 index 0000000..4bde63c --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10219 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3bf349ffa842d46e53149070bdb63344
  • 67849e734a1304799606ba5a22f840d2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10257 b/gamelists/mastersystem/linkedhashes.php?g=10257 new file mode 100644 index 0000000..12090ef --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10257 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bc1360afa99cd89fbab4ea55bef08aae


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10426 b/gamelists/mastersystem/linkedhashes.php?g=10426 new file mode 100644 index 0000000..9110982 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10426 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • fe9aa8044951b10f876b15f4456161a9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10427 b/gamelists/mastersystem/linkedhashes.php?g=10427 new file mode 100644 index 0000000..3a4aa67 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10427 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6deabfc15d9aeb4c8ed1b641fb950de5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10439 b/gamelists/mastersystem/linkedhashes.php?g=10439 new file mode 100644 index 0000000..53eb766 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10439 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 03d6e8450a74ac09e47ae9bf210cfe17
  • 382b627efa06c958b8ec5c85e964bf10


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10443 b/gamelists/mastersystem/linkedhashes.php?g=10443 new file mode 100644 index 0000000..3eaca33 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10443 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 05e3071aad9c36b6e18f1656592eeb3d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10554 b/gamelists/mastersystem/linkedhashes.php?g=10554 new file mode 100644 index 0000000..53795bd --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10554 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e9b4b92bc29ca8fbe9978da6720bd1eb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10696 b/gamelists/mastersystem/linkedhashes.php?g=10696 new file mode 100644 index 0000000..a547a1f --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10696 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • ac90d79743cac1afcd7049f7b4e73bc4
  • d104f53494a3d5847a1320faf38e8bc5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10698 b/gamelists/mastersystem/linkedhashes.php?g=10698 new file mode 100644 index 0000000..62bf72d --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10698 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 06779a1a9dbada60efb1f37e37040a5b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10705 b/gamelists/mastersystem/linkedhashes.php?g=10705 new file mode 100644 index 0000000..baf7b5c --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10705 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 25cc787700fd9f1a5abf1c381d1b897b
  • b4911ad6a9d2ba56497cd5b01da3938a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10745 b/gamelists/mastersystem/linkedhashes.php?g=10745 new file mode 100644 index 0000000..dcbd722 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10745 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0713f2e55a1eea0d9e2fb7044740261b
  • 8b603c931418a3680b8723861f55a7b5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10747 b/gamelists/mastersystem/linkedhashes.php?g=10747 new file mode 100644 index 0000000..7efc243 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10747 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 732808a44a90b780454a1eb6adbf3957
  • c352bd773dc9cd909a8c1707ccb54d40


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10750 b/gamelists/mastersystem/linkedhashes.php?g=10750 new file mode 100644 index 0000000..136fac8 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10750 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0feb52e9b0a8cd378fb38902eb4b4100


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10751 b/gamelists/mastersystem/linkedhashes.php?g=10751 new file mode 100644 index 0000000..a2b756d --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10751 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 36bd5fe2e4d1620f5a43ea610c458c86


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10755 b/gamelists/mastersystem/linkedhashes.php?g=10755 new file mode 100644 index 0000000..a1ed031 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10755 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8a94ded3d95aa46dae8800b92e66d3ee


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10757 b/gamelists/mastersystem/linkedhashes.php?g=10757 new file mode 100644 index 0000000..4587291 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10757 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 1596aebfc444afbe9d30878b0819caca
  • 16e6b4a1d71960d64bd20aaf7024e8ac
  • 9b4bd478d931af73279863396c837416
  • dc8dd2e53ab54b88683c9cbad8701dfb
  • ddd6b56e864a7dfd74a9e04bc4407f41
  • f0b348ca5d23fcfde830dc7a1ade3c3b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10770 b/gamelists/mastersystem/linkedhashes.php?g=10770 new file mode 100644 index 0000000..98f82d9 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10770 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2349ee42a09088a4a590e2c65474cdaf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10777 b/gamelists/mastersystem/linkedhashes.php?g=10777 new file mode 100644 index 0000000..16894c6 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10777 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 8f8aaac492de96f2cfddb9d1a57dd979
  • d649ce52d05d88efdaca81d2ccc57d2d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10813 b/gamelists/mastersystem/linkedhashes.php?g=10813 new file mode 100644 index 0000000..25403eb --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10813 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 325575374d2db3755f83bba728990ebe


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10880 b/gamelists/mastersystem/linkedhashes.php?g=10880 new file mode 100644 index 0000000..ab058b1 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10880 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 36a5339cef97d0a5757db4fd81b4abf3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=10898 b/gamelists/mastersystem/linkedhashes.php?g=10898 new file mode 100644 index 0000000..eb74617 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=10898 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5b3a785de403c311db7f17eae27caae6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=11016 b/gamelists/mastersystem/linkedhashes.php?g=11016 new file mode 100644 index 0000000..f817bd0 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=11016 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0069b1bd9c5b6b88ace6324d7e61539f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=11534 b/gamelists/mastersystem/linkedhashes.php?g=11534 new file mode 100644 index 0000000..8d9f730 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=11534 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b05014defe8d0c3d0ad6f67851ca15d7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=11612 b/gamelists/mastersystem/linkedhashes.php?g=11612 new file mode 100644 index 0000000..27776ea --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=11612 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 4f47e48248f6498bff9018789f26c9f8
  • 840481177270d5642a14ca71ee72844c
  • ffcb0fedde6b7f8377ca99232c123597


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=11629 b/gamelists/mastersystem/linkedhashes.php?g=11629 new file mode 100644 index 0000000..6598b66 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=11629 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cfa84806075e017e29ffcdd0127fe647


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=11660 b/gamelists/mastersystem/linkedhashes.php?g=11660 new file mode 100644 index 0000000..607cfd9 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=11660 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7d6b3351e820b6afa7cf80713dc139e3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=11662 b/gamelists/mastersystem/linkedhashes.php?g=11662 new file mode 100644 index 0000000..ed4dd4c --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=11662 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • dbc9260009dd0838d0e31de51d57d078


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=12417 b/gamelists/mastersystem/linkedhashes.php?g=12417 new file mode 100644 index 0000000..4430097 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=12417 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1076f6358527d1cec1e1e75143997293


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=12653 b/gamelists/mastersystem/linkedhashes.php?g=12653 new file mode 100644 index 0000000..e93a434 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=12653 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4a69a56a8efff7863feca11f1d6547e3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=12843 b/gamelists/mastersystem/linkedhashes.php?g=12843 new file mode 100644 index 0000000..30555af --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=12843 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e0a9cf889c27f3cb14903288f646d183


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=12897 b/gamelists/mastersystem/linkedhashes.php?g=12897 new file mode 100644 index 0000000..eeebcc1 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=12897 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 23a5a42c0a4a4bceffbd1869192f329d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=14174 b/gamelists/mastersystem/linkedhashes.php?g=14174 new file mode 100644 index 0000000..a3f1128 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=14174 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 21b563031bb035f117d15dc53f406c2d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=14468 b/gamelists/mastersystem/linkedhashes.php?g=14468 new file mode 100644 index 0000000..d35c8ca --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=14468 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5de9ac0bee8b66d590e4ae3503b36053


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=14469 b/gamelists/mastersystem/linkedhashes.php?g=14469 new file mode 100644 index 0000000..dc07b55 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=14469 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 880815f8e899055e536b3a987c92855e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=14622 b/gamelists/mastersystem/linkedhashes.php?g=14622 new file mode 100644 index 0000000..33ccbed --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=14622 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 29a5195d57a82fb1349a7403f1d65d7e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=14672 b/gamelists/mastersystem/linkedhashes.php?g=14672 new file mode 100644 index 0000000..c4dcb62 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=14672 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ea829c4a6e9c4f05362979c9b1f3d7be


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=14673 b/gamelists/mastersystem/linkedhashes.php?g=14673 new file mode 100644 index 0000000..d683b32 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=14673 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b636a2f6d538b583bbd48397031dd606


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=14687 b/gamelists/mastersystem/linkedhashes.php?g=14687 new file mode 100644 index 0000000..345d6ab --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=14687 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 42b79384a1352b47b9ea32d6d3ec6849


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=14726 b/gamelists/mastersystem/linkedhashes.php?g=14726 new file mode 100644 index 0000000..c078ffc --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=14726 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 09202bc26fcf19ebd3ffcbd80e23ed9d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=14730 b/gamelists/mastersystem/linkedhashes.php?g=14730 new file mode 100644 index 0000000..68ffa46 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=14730 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8e8b04b5a9fe7b6cdb25b6550e7a831e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=16057 b/gamelists/mastersystem/linkedhashes.php?g=16057 new file mode 100644 index 0000000..068dbc0 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=16057 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1ef2a7240551c4666b47a72e4fc6c473


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=16306 b/gamelists/mastersystem/linkedhashes.php?g=16306 new file mode 100644 index 0000000..ded6970 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=16306 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 03e1482ad2ee6f77399a1c5c647dba5e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=9962 b/gamelists/mastersystem/linkedhashes.php?g=9962 new file mode 100644 index 0000000..6f65fe6 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=9962 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 28110d3027da306210a9d1fb41010bbf
  • 287c73df22264483efb3434b7d58908a
  • 624d2e4fb85dc714f34a7c6e80035a7f
  • dc13a61eafe75c13c15b5ece419ac57b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=9997 b/gamelists/mastersystem/linkedhashes.php?g=9997 new file mode 100644 index 0000000..4e14cf7 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=9997 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 0ac157b6b7e839953fc8eba7538fb74a
  • 32c109864dbe2c2644b6090def5e82b9
  • bf3b7a41e7da9de23416473a33c6ac2b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=9998 b/gamelists/mastersystem/linkedhashes.php?g=9998 new file mode 100644 index 0000000..ef06a63 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=9998 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 13 unique ROM(s) registered for it with the following MD5s:

  • 3d9a8d5c2d6d3f8ff63a8f7c77ffa983
  • 50a29e43423cc77564d6f49b289eef1d
  • 6e8e702e1d8a893ee698b93f5807972a
  • 7f542fb090681e3bb3135dbabb03f922
  • 8d3df8d20e5beb5682c44bc2e2da16fa
  • 993463a00284da74b7401af3e8da3b82
  • a3d2c1d3da71b1e07e4026bb74269c07
  • ba4e6991da1b864b24089e2ea642cce6
  • bc6441f06bbaddbca003ba471966fab3
  • d793ae08d33c99a0e2f14bcdeabf9eb5
  • e8b26871629b938887757a64798df6dc
  • f43e74ffec58ddf62f0b8667d31f22c0
  • f69a7b54835381e7a91333c4d78a51f2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/mastersystem/linkedhashes.php?g=9999 b/gamelists/mastersystem/linkedhashes.php?g=9999 new file mode 100644 index 0000000..08f0a54 --- /dev/null +++ b/gamelists/mastersystem/linkedhashes.php?g=9999 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 1110938df80f4e44c8213d7f85cfb5e6
  • 1b69716f9f4053e1533f654c091ae410
  • 5ba9114edea5deb5282fd9ad7d4b2d62
  • 5ecb5172f7b1b88da6221fb2f8da6ba6
  • a0f614f26e99633493e3a3339bc85586


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive.html b/gamelists/megadrive.html new file mode 100644 index 0000000..c4c6867 --- /dev/null +++ b/gamelists/megadrive.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games Mega Drive - RetroAchievements +
+
+
+ +
+

Mega Drive

TitleAchievementsPointsLeaderboards
69450 (4448)1
44600 (1637)33
13240 (856)1
17200 (950)1
33335 (812)1
25250 (811)
22400 (1193)
17135 (224)
14110 (308)
41323 (1577)7
13160 (438)
24440 (2163)
15277 (714)
36275 (774)
23240 (1740)4
20200 (398)
19400 (606)
8138 (659)
27330 (881)
11100 (475)
37650 (1010)
48510 (2502)40
1770 (96)
24350 (901)1
17245 (779)
35337 (1044)
12310 (888)
12255 (557)
18160 (218)2
34445 (2859)
13135 (218)1
14175 (276)
17215 (599)
28330 (684)
30322 (1066)
20175 (539)
40525 (7046)
20400 (564)
29368 (1491)5
11200 (449)
20200 (66)1
21210 (533)
42638 (3740)
41450 (1329)
30400 (2008)
24417 (4058)3
45451 (1826)
29371 (1836)
27370 (2951)3
81930 (6351)
14185 (679)
59415 (746)
33370 (1816)
30159 (334)
18188 (717)
18124 (340)
27400 (861)1
1101200 (31947)1
27295 (714)
39575 (5539)1
26340 (936)
17273 (907)
32410 (1871)
35517 (1941)
16160 (313)
12100 (140)
13260 (412)
34405 (1889)2
29400 (826)
25377 (3007)1
1165 (100)
17280 (1150)
51491 (1392)3
44700 (13949)
118860 (6609)1
40400 (1191)
41460 (4053)
17152 (264)
44350 (1943)
42650 (3892)
19150 (329)
38453 (3498)
16210 (274)1
13117 (428)
23325 (477)
34335 (1189)
91715 (2915)
32424 (1588)14
22160 (390)
39400 (2214)
42350 (795)
20235 (620)
21270 (712)
36400 (2977)
21223 (733)2
29400 (1770)
29310 (578)
58670 (3100)2
30300 (634)
958 (274)
33500 (4242)
23475 (1550)2
24284 (543)
18360 (686)
23360 (724)
43400 (2613)
55500 (4581)4
9105 (148)
40510 (2263)
27350 (840)
26270 (637)2
19300 (1793)
14140 (245)
29530 (1767)
24400 (45)1
31400 (1833)
93940 (4766)
32400 (1290)
38385 (2700)
24305 (2975)
33400 (676)
26400 (981)
75665 (2654)1
21365 (1611)
50480 (2226)1
30160 (623)
21350 (2512)
44400 (587)
36525 (5861)
24350 (2010)
43608 (2055)
25145 (336)
20400 (757)1
30485 (1876)
22255 (556)
31190 (337)
38400 (1599)
29195 (443)
81692 (1369)
24280 (1063)
22255 (754)
16240 (1327)
28455 (1464)
20300 (1081)
27200 (403)
57245 (477)
23240 (371)
851050 (4770)
41425 (4562)1
35400 (996)
41400 (2764)
40400 (2671)
9150 (403)
34750 (6897)
29315 (412)2
1299 (255)
31600 (10959)
64805 (2053)
9150 (649)
63600 (1308)1
55470 (633)
49470 (909)
28200 (458)
50500 (2735)
37245 (868)3
14135 (276)
10100 (215)
46415 (2814)
52220 (283)
30400 (2913)
30455 (2365)
31400 (1074)
870 (167)
14320 (572)
20365 (1476)
25305 (1371)3
44600 (2720)
29425 (1386)
25300 (797)25
23240 (687)
50369 (1754)5
32400 (1309)
34488 (5468)9
24336 (1132)
69775 (2963)
26400 (965)
26270 (596)6
19390 (1521)
30520 (1938)
42635 (1503)
56500 (1106)
38710 (964)
52245 (1348)
70429 (881)
99700 (1141)1
18235 (319)
49590 (5911)
21113 (122)
1490 (96)
16280 (671)
22124 (849)
46563 (21839)
42400 (1112)
11200 (358)5
20268 (802)
53546 (1953)1
85755 (15111)23
22455 (1039)
24255 (1084)19
32420 (3995)1
29310 (803)
50400 (1993)
31425 (1647)2
35400 (820)2
23450 (3546)
31350 (657)
20400 (1435)
32400 (2086)
50475 (965)
26405 (907)
36325 (1085)
1890 (134)1
21285 (559)
53740 (5064)2
23405 (1403)7
48560 (8837)25
13190 (889)
16330 (953)
31457 (2412)3
15260 (795)
45280 (661)
21330 (1639)4
29400 (653)35
1475 (606)
25320 (725)
1474 (89)
34300 (841)
38450 (772)
25430 (1085)
28430 (1374)1
14125 (592)
39400 (1113)
98600 (2901)
56410 (1842)2
29231 (725)
58650 (4419)
45416 (574)
30310 (456)
30350 (1178)
27424 (1339)
24370 (1250)
31335 (2264)
24325 (863)1
41503 (1356)1
18310 (837)
31270 (737)
49750 (5477)
28300 (456)
27175 (214)
35390 (562)
50400 (1425)
38400 (1676)
13145 (152)
650 (87)6
69605 (1535)
675 (121)
37195 (674)
29525 (4394)
49511 (2182)1
36315 (1924)
30330 (355)
18240 (285)1
32300 (860)
42400 (4201)1
33465 (2326)2
11128 (645)1
34400 (1655)3
14105 (161)1
5251 (55)
28550 (2200)
1460 (71)1
21193 (327)
18125 (155)29
28282 (558)
12100 (203)9
42265 (481)
18400 (813)
14147 (185)
38190 (195)7
49420 (900)
1085 (99)
851045 (8492)27
20200 (575)
1336 (36)
18400 (1287)
26 (6)
22175 (185)
2227 (28)
19130 (107)
15200 (265)
38203 (282)1
16160 (353)
15139 (284)
24200 (235)1
Totals: 304 games9572106885 (519264)427

+
+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=1 b/gamelists/megadrive/linkedhashes.php?g=1 new file mode 100644 index 0000000..489de21 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=1 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 09dadb5071eb35050067a32462e39c5f
  • 1b1d9ac862c387367e904036114c4825
  • 1bc674be034e43c96b86487ac69d9293


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=10 b/gamelists/megadrive/linkedhashes.php?g=10 new file mode 100644 index 0000000..1c5b801 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=10 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 8e2c29a1e65111fe2078359e685e7943
  • 9feeb724052c39982d432a7851c98d3e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=102 b/gamelists/megadrive/linkedhashes.php?g=102 new file mode 100644 index 0000000..4875033 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=102 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 26c49c46b8e2574dde481132bbd34fd4
  • 63274bdd105d2abf265aa2d2934635c5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=10229 b/gamelists/megadrive/linkedhashes.php?g=10229 new file mode 100644 index 0000000..180c0c0 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=10229 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 94c07e0d90ecb7a7745d5eec376b1d61
  • a04172760031920dd7c37c1080457fa0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=103 b/gamelists/megadrive/linkedhashes.php?g=103 new file mode 100644 index 0000000..58f7393 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=103 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • fad33d8300f3af2e1c81d74e2f37b688


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=105 b/gamelists/megadrive/linkedhashes.php?g=105 new file mode 100644 index 0000000..fb9abf1 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=105 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 8e5faa6309e9dd9bc04e86a59a57aa05
  • fee5032759c495abc72e405c63c90e1f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=10568 b/gamelists/megadrive/linkedhashes.php?g=10568 new file mode 100644 index 0000000..9416c11 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=10568 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f676dfdd836199352f105465905c25de


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=109 b/gamelists/megadrive/linkedhashes.php?g=109 new file mode 100644 index 0000000..66a8cba --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=109 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6616c58d2771feedafedddd39f9c799e
  • 75458e38c278f61c06dabacc744b5fe1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=11 b/gamelists/megadrive/linkedhashes.php?g=11 new file mode 100644 index 0000000..a8949b6 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=11 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 074dcf012f3fd11a4c7e624474944d81


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=110 b/gamelists/megadrive/linkedhashes.php?g=110 new file mode 100644 index 0000000..f95ed9d --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=110 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 0804e81befedfe0f1589c5d5191521e4
  • 19cdf861c543f9c9cd9c8b6b70adeb1c
  • 6d926b8ffadac9ecd30a67c70da8a3e8
  • cc60b5cd7295df626d81a3ecd30c4133
  • e9d88f4130e42b20e4fb11b7cdb79f7f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=111 b/gamelists/megadrive/linkedhashes.php?g=111 new file mode 100644 index 0000000..1265896 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=111 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 0948aa1acc9f21a966b052a8ee385884
  • 0dab7e08abd405d36c772be6cc85b95e
  • 7c343c0b33f8af9f4719ead8cee7b201
  • 868678804d33e96cd0bae20321c09a96
  • c53dbf0f7172556d08a37cc590bddf8a
  • ded2b235f625424f353c13c4d3a2cf89
  • e360bed708473f1de19e300aa8b6fe67


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=11185 b/gamelists/megadrive/linkedhashes.php?g=11185 new file mode 100644 index 0000000..ee98bc0 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=11185 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 198a01af02607b329d7e5c5c7cfbc753
  • 742dd5c98d143ff6716800dee6a25dc5
  • 8c0376d192819330946944eb2aa535b8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=113 b/gamelists/megadrive/linkedhashes.php?g=113 new file mode 100644 index 0000000..b7adad7 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=113 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1e1950f384b6c2320e6d17c381c39d62
  • 26f695adeabca0e2a31eee07ae2057c2
  • dbdc25c40b85e488a1e817557e3e375c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=116 b/gamelists/megadrive/linkedhashes.php?g=116 new file mode 100644 index 0000000..1925953 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=116 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 3a69e358628e49b6744c9d2c07f874d6
  • 4b7c5f85638ecce171637bbb2f1b7b8b
  • 71134a51f1a903c9e7e85e98133a8c68
  • 8e860e4f7c7ee5febad9134a56766112
  • bb891aec8a7dfe6164033f57af2025bd
  • fe73b14f45c5d35c1fd71958d2432c12


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=119 b/gamelists/megadrive/linkedhashes.php?g=119 new file mode 100644 index 0000000..9f4e1d3 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=119 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 062ed2f4e698bd8c61ebb1ee74a08d2b
  • 98196408705f4520213ba1e43bef67f2
  • c04a309f607aaf59f55eb8dad6affa73
  • cc4889aa710263e3cffc9009bd64c454


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=12 b/gamelists/megadrive/linkedhashes.php?g=12 new file mode 100644 index 0000000..81f29b6 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=12 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • eba5f964addea18b70336d292a08698d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=120 b/gamelists/megadrive/linkedhashes.php?g=120 new file mode 100644 index 0000000..f6be69e --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=120 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2bd30479556da5c310d8f2a1fe66e8fa
  • e7dbf0980a0cbbd5fd0eeb90f3f96fea


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=124 b/gamelists/megadrive/linkedhashes.php?g=124 new file mode 100644 index 0000000..b3e9bce --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=124 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8e4d7397374cb03528f4c886120dc3e9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=125 b/gamelists/megadrive/linkedhashes.php?g=125 new file mode 100644 index 0000000..f0740ff --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=125 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2f87a9302e46a953b0d3afa92ea8ccf4
  • c4412773f166b3d75f14fed985bd2239


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=126 b/gamelists/megadrive/linkedhashes.php?g=126 new file mode 100644 index 0000000..adcddb8 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=126 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 06942fbf9e1c021bb6ce4787fefd5364
  • 935174c0d128fc7b980952b0d5f5ff42


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=128 b/gamelists/megadrive/linkedhashes.php?g=128 new file mode 100644 index 0000000..dc6eb97 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=128 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • bc0ebf28cfb8c477c3c4f36a689b5cb4
  • d3794fd2a601aab217dae8928ef94438


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=129 b/gamelists/megadrive/linkedhashes.php?g=129 new file mode 100644 index 0000000..0dc7067 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=129 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 5093ad6641abb0c3757d24da094a51e6
  • 8eaaa0cd658c6ff29524b758824de07a
  • a3f07b2b70fb8bc1e8a8583bf5142aab


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=13 b/gamelists/megadrive/linkedhashes.php?g=13 new file mode 100644 index 0000000..43c81f1 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=13 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a5197857252c9c58fea12b36337d5673


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=1352 b/gamelists/megadrive/linkedhashes.php?g=1352 new file mode 100644 index 0000000..2bd3eaf --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=1352 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2ac0d4208641095358d663b3eb17b397


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=1356 b/gamelists/megadrive/linkedhashes.php?g=1356 new file mode 100644 index 0000000..4243efa --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=1356 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • dd38021ff9cb67cfc24a1ad7447e4e3e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=1360 b/gamelists/megadrive/linkedhashes.php?g=1360 new file mode 100644 index 0000000..a134ece --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=1360 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 2e083a43e387675cc817282da565dd55
  • 60ea3535c8a939d26ded83bde0f4809d
  • cdccd5fe37bea01b51a4dc15ade35167
  • e95d51aa0d45be974c59aa4b16c09d84


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=137 b/gamelists/megadrive/linkedhashes.php?g=137 new file mode 100644 index 0000000..b4632eb --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=137 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 216af7457a84ec56100c3f258d9ac6f1
  • f1e299d6eb40e3ecec6460d96e1e4dc9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=1373 b/gamelists/megadrive/linkedhashes.php?g=1373 new file mode 100644 index 0000000..13f8a9c --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=1373 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 06f90c41aa7cdae56635fdd11da6c0c7
  • 11513b8e13b36e090d783b554ce62a13
  • 7b109318025dee575b64aaad77953072
  • 9d54461f3b0ad92c24dabae0c877cfce
  • cfc3568cc985f7b73dd5afa69c9f28a4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=13921 b/gamelists/megadrive/linkedhashes.php?g=13921 new file mode 100644 index 0000000..171b160 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=13921 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8eff2078a60dcb22f45ef7fd8dabfd88


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=13943 b/gamelists/megadrive/linkedhashes.php?g=13943 new file mode 100644 index 0000000..73afee6 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=13943 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 65a6fbe178dc11e90f0cd53fee20f012


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=14 b/gamelists/megadrive/linkedhashes.php?g=14 new file mode 100644 index 0000000..88aa4d8 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=14 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 3189dec0eadd9a36b142ad12fbfe6cf8
  • 793b92cd4a66921db6ca4f582a690db5
  • f9e32be60028206b3716f64f2ba0ab00


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=140 b/gamelists/megadrive/linkedhashes.php?g=140 new file mode 100644 index 0000000..68a79af --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=140 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • bca76deb410bf8277a0f50225c0912aa
  • ea426ae66f3071e39fc76674d3f063cb
  • edba0bdb192d47712edbe0097f885f40
  • fc0671e09a03e6ca6481f34eb5e2114e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=1404 b/gamelists/megadrive/linkedhashes.php?g=1404 new file mode 100644 index 0000000..cc20831 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=1404 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9105a05e3e2e0ae261789fdafca676a2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=142 b/gamelists/megadrive/linkedhashes.php?g=142 new file mode 100644 index 0000000..dd54032 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=142 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e5a4bbe296224c2d6e71079807dfd183


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=1426 b/gamelists/megadrive/linkedhashes.php?g=1426 new file mode 100644 index 0000000..43061ed --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=1426 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • da536d20ac0f0e3a62d9709078690032


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=143 b/gamelists/megadrive/linkedhashes.php?g=143 new file mode 100644 index 0000000..f226275 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=143 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 2d860cc07bc8a6bbdb0d73a09678c279
  • 5a79de198ed6b1ece2518574fe78d962
  • b18d41264fb9041c0cb0079ef756a757
  • c6ab7550100019471896437ab2b94599
  • d4279d3154c235458dd12e928e948291


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=1432 b/gamelists/megadrive/linkedhashes.php?g=1432 new file mode 100644 index 0000000..4fcf063 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=1432 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2640c0b879dd52db3e328c14c36095f0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=14327 b/gamelists/megadrive/linkedhashes.php?g=14327 new file mode 100644 index 0000000..a5609b1 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=14327 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bc2e5590cc0e7b6e863b4275343839d4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=1435 b/gamelists/megadrive/linkedhashes.php?g=1435 new file mode 100644 index 0000000..fbae797 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=1435 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 82c7bc027685cc8fc6c9e077beb1a75a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=1436 b/gamelists/megadrive/linkedhashes.php?g=1436 new file mode 100644 index 0000000..9699c12 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=1436 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 0fa38b12cf0ab0163d865600ac731a9a
  • 28e1ef5faa5968449b57d1bea39ea153
  • 2bcb09fb5bd40ba80a80b920e866c10b
  • 591a9e7071a2cf512968bc4e86902083
  • 75ea42b49a65ceb0395480126f426c6a
  • eb2c679b912f0f0cd838dfb2be7970c6
  • f2d46a63b34cf6e5a2c8264fb59c06e7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=1437 b/gamelists/megadrive/linkedhashes.php?g=1437 new file mode 100644 index 0000000..358071a --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=1437 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3164c16bab8088a7991857750edaecb6
  • b4e4b75ee3689850886a0ea82c453587


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=1438 b/gamelists/megadrive/linkedhashes.php?g=1438 new file mode 100644 index 0000000..d03df05 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=1438 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 4ead1c30202dbc10ad3e327f69770570
  • 83cd070ca2c80be6bb57117a19ee203e
  • c5cd8a2d316ec23b869122920e029c3b
  • dca77479caf56ced86cee5a670782b74


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=1439 b/gamelists/megadrive/linkedhashes.php?g=1439 new file mode 100644 index 0000000..87388a7 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=1439 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 334d109c48ed477ad00eaaf7e38c6813


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=14403 b/gamelists/megadrive/linkedhashes.php?g=14403 new file mode 100644 index 0000000..5b0b32f --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=14403 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c7e0e5c2fa45f5cf0b0c657513b620ec


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=1443 b/gamelists/megadrive/linkedhashes.php?g=1443 new file mode 100644 index 0000000..66e6412 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=1443 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9666d682cc7c69b26b834b4d8a949277


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=145 b/gamelists/megadrive/linkedhashes.php?g=145 new file mode 100644 index 0000000..6ae3119 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=145 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2ac307fcd67ab5fc1cbd29bb245196a3
  • b92d1477992ca143e02bf90ab2e2a118


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=14749 b/gamelists/megadrive/linkedhashes.php?g=14749 new file mode 100644 index 0000000..c25a662 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=14749 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3642f8eeccdb7db61955b41848253cd4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=148 b/gamelists/megadrive/linkedhashes.php?g=148 new file mode 100644 index 0000000..0b36c34 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=148 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 26fc4c87e79f3c30893012418df74a2d
  • bbf3c7bfad1e2110da1469c711949709
  • cbfaa177451478030f24f0d681c69e66


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=15 b/gamelists/megadrive/linkedhashes.php?g=15 new file mode 100644 index 0000000..60d455a --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=15 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 3a12dc6b4f41681e0dc0ae3b2f894b4f
  • 800c7c12bc1eae7ddb61186875b29733
  • 841e347b30a6e298ee2b0c722f19fe74


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=150 b/gamelists/megadrive/linkedhashes.php?g=150 new file mode 100644 index 0000000..7d13b46 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=150 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 479ce05afb9d7491702be248d0bd20f3
  • 62ccc620d3a721c9040d85aa5d540f86


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=15327 b/gamelists/megadrive/linkedhashes.php?g=15327 new file mode 100644 index 0000000..373e910 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=15327 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • abfd9f0f2f516bf84785b35a9b7a7393


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=154 b/gamelists/megadrive/linkedhashes.php?g=154 new file mode 100644 index 0000000..d491275 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=154 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 204986c329b28013e05c26920cc93693
  • 499ae76fca658f94a856248bb0892a22
  • 5641bc53143ece5de5d9dbd4e2083dc7
  • 9df621d14008590f0c9aef228abc0aba


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=156 b/gamelists/megadrive/linkedhashes.php?g=156 new file mode 100644 index 0000000..3f5ed62 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=156 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 265a10bf2ea2d1ee30e6cde631d54474


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=157 b/gamelists/megadrive/linkedhashes.php?g=157 new file mode 100644 index 0000000..b36c424 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=157 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 783a70fd1a6339d947a2ba8556bd7bba


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=158 b/gamelists/megadrive/linkedhashes.php?g=158 new file mode 100644 index 0000000..a243ff2 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=158 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 0919254421cdc295c8eccfb4ca9e068b
  • 5c44d559bb17408011e99b831104bab1
  • 9386f82fc9ab95294ca35961db80d0b9
  • ae9347eeea41c1a02565a187a4bf28f7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=16 b/gamelists/megadrive/linkedhashes.php?g=16 new file mode 100644 index 0000000..24734b4 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=16 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 0e465faecac4fb905a386324c21ffb4f
  • 54be8d1aac1163d95b161015d9f64f37
  • 9b5d500a7ce1de56fba9c554bbf9a0b2
  • ff59ca57c4f2a6987042d4f53b5a20a4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=160 b/gamelists/megadrive/linkedhashes.php?g=160 new file mode 100644 index 0000000..d5ba225 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=160 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6a685a81ae70e8724c376779e3a812e4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=16047 b/gamelists/megadrive/linkedhashes.php?g=16047 new file mode 100644 index 0000000..c91e72d --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=16047 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9cd4a754fcb6793d7470a6fa63903025


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=162 b/gamelists/megadrive/linkedhashes.php?g=162 new file mode 100644 index 0000000..3ddfcdb --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=162 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 234bf02f7f7b6fdad65890424d3a8a8f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=16210 b/gamelists/megadrive/linkedhashes.php?g=16210 new file mode 100644 index 0000000..ff25b31 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=16210 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0b50b578631749a8d9a5e081abce6898
  • f1cb9e887bf4bc512d9535c89e420df7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=16344 b/gamelists/megadrive/linkedhashes.php?g=16344 new file mode 100644 index 0000000..a52c761 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=16344 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ee257eb43aa9616f94ed885b3f64d67a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=165 b/gamelists/megadrive/linkedhashes.php?g=165 new file mode 100644 index 0000000..879e971 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=165 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 111e1694facbe6879640ccf83040cd20
  • 327496e143125d286eedb7662bcea03b
  • 385e4e66174a76fd4a05639f24b54562
  • 484170e3ffafc64549516329fbb4f2a9
  • 55977f8786715847ba2061708e49beeb
  • cef0031bd4612df7d4eac6bd71f7648d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=16518 b/gamelists/megadrive/linkedhashes.php?g=16518 new file mode 100644 index 0000000..99e9842 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=16518 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 91883e821feb16ae1a38f39934c42fe8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=166 b/gamelists/megadrive/linkedhashes.php?g=166 new file mode 100644 index 0000000..85a2af8 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=166 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • dce9b99a3d692cb4463f9f35d278659b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=168 b/gamelists/megadrive/linkedhashes.php?g=168 new file mode 100644 index 0000000..e696974 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=168 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 5b1bcb3793262d2d0282b49e0c2ee053
  • b8f8b29cd48645d09340e4a4cd4b51e0
  • c3f1e034564572b44c78099c0e727ce3
  • d2ba54757b472f75aff05722d043096b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=169 b/gamelists/megadrive/linkedhashes.php?g=169 new file mode 100644 index 0000000..a6e51f5 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=169 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4ea493ea4e9f6c9ebfccbdb15110367e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=17 b/gamelists/megadrive/linkedhashes.php?g=17 new file mode 100644 index 0000000..281b09c --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=17 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • b6fb2ce20122b319631af6b697e64082
  • cb3a005adab1cb99f24a7f8b8e420328


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=170 b/gamelists/megadrive/linkedhashes.php?g=170 new file mode 100644 index 0000000..7021e52 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=170 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 441b7e9c9811e22458660eb73975569c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=173 b/gamelists/megadrive/linkedhashes.php?g=173 new file mode 100644 index 0000000..66205db --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=173 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 57f13963c9cfdade16cf8207f8889ee5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=175 b/gamelists/megadrive/linkedhashes.php?g=175 new file mode 100644 index 0000000..5060b6d --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=175 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 69c60599bcff0eb53a49dbaf09dbfc02


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=177 b/gamelists/megadrive/linkedhashes.php?g=177 new file mode 100644 index 0000000..34279a7 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=177 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f185e7700fe58f34d1c2968074760cdc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=178 b/gamelists/megadrive/linkedhashes.php?g=178 new file mode 100644 index 0000000..d9e7439 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=178 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cdcfb24231942f535a18d2097ab5b68e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=18 b/gamelists/megadrive/linkedhashes.php?g=18 new file mode 100644 index 0000000..027dbde --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=18 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 04d2c7da9aac3fbeadf6bb8ccd27b560
  • 6d2edee97f8613a49e30bd2875fcb904
  • a7dff8cdeaa702b96eb933a8d670aff4
  • e4263c39487f0b55e8f33cbd5acd9b93
  • f846492bf6367e4982ba5ba44575894b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=180 b/gamelists/megadrive/linkedhashes.php?g=180 new file mode 100644 index 0000000..4bbe662 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=180 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 78f3ea32bcb4f627e4f9bc9711e017b8
  • 7eb2554cbfb7361700476c6822d627c5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=181 b/gamelists/megadrive/linkedhashes.php?g=181 new file mode 100644 index 0000000..442cb6c --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=181 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 26ac4f884df64349dcf46344db85812b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=184 b/gamelists/megadrive/linkedhashes.php?g=184 new file mode 100644 index 0000000..7ce863d --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=184 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 05dc6075c0fa4dc5779b575b594d2947
  • 3b878b854302596cb197602878d0cf07
  • 8abfdb51bf11f2aa628a3957a3426e76
  • e81c004b80d1b39690ecf301dc24e0dc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=188 b/gamelists/megadrive/linkedhashes.php?g=188 new file mode 100644 index 0000000..05c7e6c --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=188 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 275e77a42f481e7e229edff2c53c4662
  • bde8b2396241aa27463ca875e604b8d3
  • c8e1cd8e715e92f19f91e073ca9ffae1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=19 b/gamelists/megadrive/linkedhashes.php?g=19 new file mode 100644 index 0000000..6d664c9 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=19 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 15de100cf1d0f8c947af508f03dfda3e
  • 270637399377cfe1b926ec5f664471f0
  • 920477f6f4455ceb08b4fe3c7bd4f9cb
  • d73f3b9feac4734e9a391aa211a88159


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=191 b/gamelists/megadrive/linkedhashes.php?g=191 new file mode 100644 index 0000000..b3584d3 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=191 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 35f24197067a98e82a426631a4e0cfe6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=192 b/gamelists/megadrive/linkedhashes.php?g=192 new file mode 100644 index 0000000..75388fe --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=192 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 522b689a1b2f0ea8578fa9d888554b82
  • 5bdb8286d071ec744df1ef92529156d5
  • fe83e6ef13b2a2ecd2afc5f506052147


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=2 b/gamelists/megadrive/linkedhashes.php?g=2 new file mode 100644 index 0000000..57040f6 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=2 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a6fc42bd5d19e36e5d8a2d8c4f4e9d23


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=20 b/gamelists/megadrive/linkedhashes.php?g=20 new file mode 100644 index 0000000..a9e3963 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=20 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 088bdda3f56e794f06c02eeea1c033b6
  • 6dee3627fa7a28267efd07c51a467ad6
  • 7945e04cf746a8ddfd58446517070272


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=203 b/gamelists/megadrive/linkedhashes.php?g=203 new file mode 100644 index 0000000..55ae600 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=203 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 23dc9770c2044a05c7351cf83a139d74


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=205 b/gamelists/megadrive/linkedhashes.php?g=205 new file mode 100644 index 0000000..f943f62 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=205 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6cc568233290abdf3269c1574fc045e4
  • bb2c03d7d7ed17c55ded3597944db294


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=207 b/gamelists/megadrive/linkedhashes.php?g=207 new file mode 100644 index 0000000..92219c4 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=207 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0b373114177fe9ad032a5f5d96e5cde7
  • 2869e0d4ad512a1fbd9b79d6937d9446


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=209 b/gamelists/megadrive/linkedhashes.php?g=209 new file mode 100644 index 0000000..1e86df8 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=209 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 4d6bdac51d2f5969a91496142ea53232
  • 661f63a3128f830ebbcd2c4117a37289
  • 900edd585f9716cd2f8000791dc2b096


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=21 b/gamelists/megadrive/linkedhashes.php?g=21 new file mode 100644 index 0000000..57b0cd2 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=21 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 62be3de2299c8189252536430260edf5
  • 6375deefc64c0bb0171e739ae95a80b0
  • ab74fc7f42ce9b4a8f760d12cae69a2a
  • d724ea4dd417fe330c9dcfd955c596b2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=211 b/gamelists/megadrive/linkedhashes.php?g=211 new file mode 100644 index 0000000..4599a57 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=211 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b63052973d5d550087d6b36ce8487fb1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=212 b/gamelists/megadrive/linkedhashes.php?g=212 new file mode 100644 index 0000000..1044cdd --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=212 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 809f2f43b9ec22a3299cc8ecb42c6421
  • 815aab1193bf534063e8f032ec76852a
  • c61ff4bcdf10813c74f36ab57e29f646


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=2125 b/gamelists/megadrive/linkedhashes.php?g=2125 new file mode 100644 index 0000000..dd7fb35 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=2125 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 56965eb7dde9bc22d16ffa72331c0e09


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=2157 b/gamelists/megadrive/linkedhashes.php?g=2157 new file mode 100644 index 0000000..8d177ab --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=2157 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 146996a42ef0cca2578f4d56da2c4206


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=2166 b/gamelists/megadrive/linkedhashes.php?g=2166 new file mode 100644 index 0000000..8226978 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=2166 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 3ab3c23d9856dced1d4d05ab567dee27
  • 3e79ae0a6c33422fa126b2ce1940a52b
  • 64766dae889d039eb391bc5bf2973f5d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=218 b/gamelists/megadrive/linkedhashes.php?g=218 new file mode 100644 index 0000000..5c03264 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=218 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 3d79d2fcc2038b140f7481b6f64a5038
  • 768400efa2ed2eed0cd84b940e812458
  • a184d044b122b73026b8f4f8fb6bc528
  • eb6fcd984ae84668b3818590880fb262


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=2182 b/gamelists/megadrive/linkedhashes.php?g=2182 new file mode 100644 index 0000000..9438f70 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=2182 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 2ed39b147fa5fa67d6d0707f54a5a078
  • 2fd970209546fe30bbd798e7c1fcd05a
  • 34a62d63bef2d8078b622888a2fd1248
  • 48ae14e7a771e48513c5ae6f8cd9a56b
  • fa52bcb320299c6b51c7f47caa303da8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=2187 b/gamelists/megadrive/linkedhashes.php?g=2187 new file mode 100644 index 0000000..651a258 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=2187 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7643bf8341cd0b447da1f5b9284741f7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=219 b/gamelists/megadrive/linkedhashes.php?g=219 new file mode 100644 index 0000000..40eb6af --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=219 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f2c111cae725e5b31775d04dd4c7b546


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=22 b/gamelists/megadrive/linkedhashes.php?g=22 new file mode 100644 index 0000000..c0939fb --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=22 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 0a6af20d9c5b3ec4e23c683f083b92cd
  • 17bc889f3286ac01728d2745e615ced1
  • 72dc91fd2c5528b384f082a38db9ddda
  • e46a4d48532d561bf7da5649d78ddfce


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=221 b/gamelists/megadrive/linkedhashes.php?g=221 new file mode 100644 index 0000000..4cd1ecc --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=221 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d11ec9b230e88403cd75ef186a884c97


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=222 b/gamelists/megadrive/linkedhashes.php?g=222 new file mode 100644 index 0000000..3b9f226 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=222 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b87cb990d9238f252a4dd89077aa180e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=2235 b/gamelists/megadrive/linkedhashes.php?g=2235 new file mode 100644 index 0000000..62d5b41 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=2235 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 38a99b9f6e5350f4d2da0c985ac000da
  • 4634c397a507053b0e04fc3ce6c49d9a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=225 b/gamelists/megadrive/linkedhashes.php?g=225 new file mode 100644 index 0000000..d2e3b30 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=225 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 32fb1f12205e350cfe2bb66616043b59


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=226 b/gamelists/megadrive/linkedhashes.php?g=226 new file mode 100644 index 0000000..031b0e7 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=226 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 330d380c58052853ebaaa63a1737f6a0
  • 7f8f0a581158a00b6799204c9afe646b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=2263 b/gamelists/megadrive/linkedhashes.php?g=2263 new file mode 100644 index 0000000..88effb3 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=2263 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d3bd3dc31b1903148c0ce92a98a6869a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=2268 b/gamelists/megadrive/linkedhashes.php?g=2268 new file mode 100644 index 0000000..430e67f --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=2268 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a50202da29099f2c9d8b1c629653a718


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=23 b/gamelists/megadrive/linkedhashes.php?g=23 new file mode 100644 index 0000000..f7175e0 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=23 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8844a97b65994de94cf398cf4a3217c3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=230 b/gamelists/megadrive/linkedhashes.php?g=230 new file mode 100644 index 0000000..291fc7e --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=230 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6a6dcb5eed29c247bd9b889df5ba58be
  • ab720f3ec45423c794403e9830a00032


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=233 b/gamelists/megadrive/linkedhashes.php?g=233 new file mode 100644 index 0000000..772f395 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=233 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 659550d4c9588ff594a927eb173877d2
  • 8b49c73381c0187d24c76417b65b4f5f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=2348 b/gamelists/megadrive/linkedhashes.php?g=2348 new file mode 100644 index 0000000..e5c3065 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=2348 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • bd52a3c0097986a473f42dd58279408e
  • f5683f3b2c24cdd7bc6771ea87efeacf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=2367 b/gamelists/megadrive/linkedhashes.php?g=2367 new file mode 100644 index 0000000..e7b0466 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=2367 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 9511b0a968cc1903944a475570dc071f
  • da1638baec999b2203ac5e5fec31c744


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=2387 b/gamelists/megadrive/linkedhashes.php?g=2387 new file mode 100644 index 0000000..4c1be31 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=2387 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0f0be2db4084822d5514f8e34a0d1488
  • b1e7bf60b1a0c53e336aa7572d7d60de


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=239 b/gamelists/megadrive/linkedhashes.php?g=239 new file mode 100644 index 0000000..0420ce0 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=239 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ae1dd63ec1c689de873d8e0918757b97


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=2399 b/gamelists/megadrive/linkedhashes.php?g=2399 new file mode 100644 index 0000000..a789b77 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=2399 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5cc61c87c4da4a232a4ba2cf64423113
  • d3ddbc9a45653aa790bb922c7b68ce44


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=24 b/gamelists/megadrive/linkedhashes.php?g=24 new file mode 100644 index 0000000..8b3299f --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=24 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 1351733931c06014e45f091d25a92e29
  • 2ed5293e46abe1e74edeb96da0e7a618
  • 75389cf9c8555dac81f386db0d55f020
  • 8b6fc08c0e01b4b0c7f3d444bb30733f
  • f7c86af04ad73edfa931f2e35cab3d93


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=240 b/gamelists/megadrive/linkedhashes.php?g=240 new file mode 100644 index 0000000..4a71517 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=240 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 75a42b19e5503c72b21018699314db0b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=2413 b/gamelists/megadrive/linkedhashes.php?g=2413 new file mode 100644 index 0000000..7d5c350 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=2413 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • f3ae6147d9ad2d40e781a49c7263f746
  • f978463dca8bc6f44f28c665b59965f6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=2439 b/gamelists/megadrive/linkedhashes.php?g=2439 new file mode 100644 index 0000000..59e47bb --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=2439 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3429d4f237a3280670164164c1db00a3
  • 47e140ae1e70984e6cd638e6e8f8485f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=2448 b/gamelists/megadrive/linkedhashes.php?g=2448 new file mode 100644 index 0000000..6bb203e --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=2448 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 11382e11a4ed5834e80e30d1d95ca006
  • 62ca0b7e2f7cc31a340e23dd89f91a16
  • bb68b21fd20b5f255dd2115f16f3e600


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=2483 b/gamelists/megadrive/linkedhashes.php?g=2483 new file mode 100644 index 0000000..a3f8c5d --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=2483 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3309184f5a9938d01228fd431c742b55


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=25 b/gamelists/megadrive/linkedhashes.php?g=25 new file mode 100644 index 0000000..80c3ace --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=25 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 5448efd7bc131e4ca610d863c5751e22
  • 8a1e09c9557526ae8bf4965dc031c8f5
  • d7171a867739c8ec325aa65b175b0c49


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=250 b/gamelists/megadrive/linkedhashes.php?g=250 new file mode 100644 index 0000000..30b21ec --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=250 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 14a3336f31ac377ad4f605b8cc7abb36
  • fcab622a6e56f7e9b1e0907ab5a630df


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=2516 b/gamelists/megadrive/linkedhashes.php?g=2516 new file mode 100644 index 0000000..4e444ca --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=2516 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 46a37b8927fc9404d054f6b85d620f3f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=2545 b/gamelists/megadrive/linkedhashes.php?g=2545 new file mode 100644 index 0000000..1356ebd --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=2545 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 965536e24760755413ae316d935710b1
  • b7f2cb46e00e6eeec726646565d850a7
  • f5bcc0b3fc58ce5df04b7861f2d6eb3b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=256 b/gamelists/megadrive/linkedhashes.php?g=256 new file mode 100644 index 0000000..469883d --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=256 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8bd4d2f51f08380a1ba9ac6cd2070585


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=257 b/gamelists/megadrive/linkedhashes.php?g=257 new file mode 100644 index 0000000..a7b4aa3 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=257 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • a942e336b5d2e9f962b289fc08b890c6
  • c26686b07c35bfe08603deffa6a7abce
  • f38cc831257d5e922b7f3c6e4fcb30d0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=258 b/gamelists/megadrive/linkedhashes.php?g=258 new file mode 100644 index 0000000..7222a95 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=258 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • aed96d0a6c77759931d771ef0f6b0778


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=26 b/gamelists/megadrive/linkedhashes.php?g=26 new file mode 100644 index 0000000..bfdffae --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=26 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 74aeac0e83d75842ebee4cb86a89acd1
  • fe5d4230dde728a3f7e0da5cb6c17bc3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=262 b/gamelists/megadrive/linkedhashes.php?g=262 new file mode 100644 index 0000000..7fc5de1 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=262 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 17f53791945ce7ccd83a4e812e3705e4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=263 b/gamelists/megadrive/linkedhashes.php?g=263 new file mode 100644 index 0000000..1c9879f --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=263 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 73b63cac3f15bfe4a7bad170654878a9
  • 7baf9fb775ee130bd7a4a779cb3bb612
  • c85398c1b649d34782dc9e7efa80be5e
  • ee16f5cc74991343e21fcf30ad3f6bdc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=265 b/gamelists/megadrive/linkedhashes.php?g=265 new file mode 100644 index 0000000..d62ce05 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=265 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 716c52cde8c209d3c3abd54b9d00d132


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=272 b/gamelists/megadrive/linkedhashes.php?g=272 new file mode 100644 index 0000000..486a795 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=272 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ac2b187f80174678c8e9941d75f55b52


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=276 b/gamelists/megadrive/linkedhashes.php?g=276 new file mode 100644 index 0000000..c35ba67 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=276 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 031c69845c6029e7c18c26deee0769f2
  • 7a926aaea9e526066a75c253738b633c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=278 b/gamelists/megadrive/linkedhashes.php?g=278 new file mode 100644 index 0000000..8c5b489 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=278 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d2d8c19c67e14a0d509a454bd880bbdd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=282 b/gamelists/megadrive/linkedhashes.php?g=282 new file mode 100644 index 0000000..1b58c23 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=282 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 30ede62c8efe3e046e5409758b091eb6
  • 3613d116847a35dcd4b1ec989a7121e3
  • 42240e0313fda6a10ac864718990d40d
  • 5ff6046c2a265ddbad9f244ac393c584
  • 6e4a9737392f21414b338574ce2bd485
  • 8ceb57cd66031c30e86698975d99893d
  • 8d30e09b0988709472e6750bfd1744ee
  • d55083fb5a014db1c8692e1545309fc7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=287 b/gamelists/megadrive/linkedhashes.php?g=287 new file mode 100644 index 0000000..4bef916 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=287 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • a5904e2515d2d0a402a83de41bcb4c26
  • d0140fde92f051cde0b986b854f28e99


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=288 b/gamelists/megadrive/linkedhashes.php?g=288 new file mode 100644 index 0000000..77656f2 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=288 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 148e0a46b6214d5228244c1596041a22
  • cf2333d6a7b42c676b3222529027c7d5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=289 b/gamelists/megadrive/linkedhashes.php?g=289 new file mode 100644 index 0000000..34b2c49 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=289 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 1164d4b9e1c69c914f68a3f0e126039b
  • 606a14c61b8c074e0d36a0d9692981e5
  • dea22bdd950083b814e10370ec78419f
  • f5e327aa603b334fd5713fda10464748
  • fa09ee852c4bd625072a6db684f2ea1b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=290 b/gamelists/megadrive/linkedhashes.php?g=290 new file mode 100644 index 0000000..a40e799 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=290 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1dc96693afd74e7b0623a6e06fbdcf87
  • 64afda2b5c26117f77cae0b9985a144d
  • 9afb134b35794b133b0a61cabba16f9d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=293 b/gamelists/megadrive/linkedhashes.php?g=293 new file mode 100644 index 0000000..e0fa695 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=293 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 4396ff4078787d79c9d3ade2242f3366
  • 66cac77bb663a6951c942b0722232a03
  • bb6b10927e6238206e9a7ba8c7d91a14
  • c0c59e835ca2cfba29f4c0f5293986f6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=294 b/gamelists/megadrive/linkedhashes.php?g=294 new file mode 100644 index 0000000..7174202 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=294 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8d73db292f0f4c838e72086fb3d5896b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=295 b/gamelists/megadrive/linkedhashes.php?g=295 new file mode 100644 index 0000000..5e2a7cc --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=295 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 3a4a2518a9a52b91bfbdfaf472083078
  • 54a7dbc8748695a90d95d2728f946b9e
  • b5365025a46a2781c63e254345268bf1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=299 b/gamelists/megadrive/linkedhashes.php?g=299 new file mode 100644 index 0000000..3014e43 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=299 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 57169954f90bfef473f4952b9633e57a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=3 b/gamelists/megadrive/linkedhashes.php?g=3 new file mode 100644 index 0000000..039ae6f --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=3 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 782c722ecc60d00456869563acba23e9
  • c53faea21ca58de2282a8f1a210527ba
  • cb75d5a6919b61efe917bea5762c1cb7
  • f22b80a555d989119286ab5bc9bd0a24


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=301 b/gamelists/megadrive/linkedhashes.php?g=301 new file mode 100644 index 0000000..fc32113 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=301 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • b582a31cdfb8d184f9e52f4de03d6e6f
  • e2be9447b4665f2f9a0683c56615ee5d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=302 b/gamelists/megadrive/linkedhashes.php?g=302 new file mode 100644 index 0000000..2cfcb87 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=302 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 264d8c7c7b1f476fe6ea98411e3cde35
  • 79d155b41da306f95d3dc39f0e8e189c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=303 b/gamelists/megadrive/linkedhashes.php?g=303 new file mode 100644 index 0000000..2dd567c --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=303 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4643f5da530463356ce56fae5c346ddc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=305 b/gamelists/megadrive/linkedhashes.php?g=305 new file mode 100644 index 0000000..164df34 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=305 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 56ba94382fe6f06d05baf77261644ad4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=31 b/gamelists/megadrive/linkedhashes.php?g=31 new file mode 100644 index 0000000..045359e --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=31 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 048e7bdefb046f83ea79950bc9f1d718
  • 2b3655b2935c727ee6400721fb5b4451
  • 8da02c10923cf730d13c3b959a7b3f6f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=310 b/gamelists/megadrive/linkedhashes.php?g=310 new file mode 100644 index 0000000..5e1303a --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=310 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3d2a638bdf18b42621e95788fa9fde9c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=3108 b/gamelists/megadrive/linkedhashes.php?g=3108 new file mode 100644 index 0000000..1a7a201 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=3108 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 1ffe5b490cddeb691e3add6947024f83
  • 71f0a30b198d59d802a9f8a081675873
  • 767b38c52e9bf240e1ada0d9cbd3f352
  • 7af2dbffe11b3ec756612a1d64ffa15c
  • b56ec31b0d80e257bb3b599e857a021e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=311 b/gamelists/megadrive/linkedhashes.php?g=311 new file mode 100644 index 0000000..0012599 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=311 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3b0ad9167e152ed3719ae0d45e50db6a
  • fa43881a792fadf1ab737294fff1bcc3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=312 b/gamelists/megadrive/linkedhashes.php?g=312 new file mode 100644 index 0000000..5ee7ca9 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=312 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 00f475ac5e7a5c2f753bb14ef62a9d98
  • 9fa0649fcb53963a432812254ccb4f02


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=313 b/gamelists/megadrive/linkedhashes.php?g=313 new file mode 100644 index 0000000..703d0e6 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=313 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 469c2c852005972bbcd2b51fdf9d1220


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=317 b/gamelists/megadrive/linkedhashes.php?g=317 new file mode 100644 index 0000000..288efbb --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=317 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3753ae738edf6f37203763f3a8a6e406
  • be1185a2620c2d64d75e8827e00e8b3d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=3175 b/gamelists/megadrive/linkedhashes.php?g=3175 new file mode 100644 index 0000000..408f8a3 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=3175 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1bb8e1e5d41bbeff2e452935bddd9883


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=324 b/gamelists/megadrive/linkedhashes.php?g=324 new file mode 100644 index 0000000..10f5af0 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=324 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c2967c23e72387743911bb28beb6f144


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=326 b/gamelists/megadrive/linkedhashes.php?g=326 new file mode 100644 index 0000000..a59aa91 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=326 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 50acbea2461d179b2bf11460a1cc6409


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=328 b/gamelists/megadrive/linkedhashes.php?g=328 new file mode 100644 index 0000000..ac22028 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=328 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 30682a233a4afba0b0065d0e98b5c6cc
  • d6edab0e66407439a1a145090e8ec12e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=330 b/gamelists/megadrive/linkedhashes.php?g=330 new file mode 100644 index 0000000..ed75c05 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=330 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 911ef3d3909b19609f76f0d70a017d85
  • fa0609181242f4b5fd59598273f138ec
  • fa49fa5c1eec5bfae59fb87f310c0852


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=338 b/gamelists/megadrive/linkedhashes.php?g=338 new file mode 100644 index 0000000..3e548a5 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=338 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 6aef0333e2b1a495c867577ccf037493
  • 99334237bb08083ee70120f54f6973ef
  • ad9540bec43c7584508c14ffdd1ce690


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=34 b/gamelists/megadrive/linkedhashes.php?g=34 new file mode 100644 index 0000000..dc55673 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=34 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 6ecc894cef24dd2a54a8982d7f37c4f7
  • 6f0df6d8e82f0e05be3aec1d43b34b32
  • 9c39a6621dcf8485458d57ee6616a7e7
  • baf6d595dcdfd388f57c781e60160997
  • ce0fde21d2c418b24c3d904e57df466e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=35 b/gamelists/megadrive/linkedhashes.php?g=35 new file mode 100644 index 0000000..b46c1e5 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=35 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 8a9e5724ad9e79b70dca3e7cb81c41ce
  • 9abbd5b0eb5998c758ed5dc603420e23
  • ae982c9a1de304ada59b089603c7bd9c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=356 b/gamelists/megadrive/linkedhashes.php?g=356 new file mode 100644 index 0000000..d7467e7 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=356 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 94ebb9a19bbb7b5749bf07ab3ce8fbb9
  • a279a2fa2317f9081ba02226cce6b1ed


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=36 b/gamelists/megadrive/linkedhashes.php?g=36 new file mode 100644 index 0000000..c77d722 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=36 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6c34e2fd2b6800194dfad16fadaef820


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=3684 b/gamelists/megadrive/linkedhashes.php?g=3684 new file mode 100644 index 0000000..bf54646 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=3684 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 8bd4a97783cda077c342173df0a9b51e
  • a13ab653a20fb383337fab1e52ddb0df


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=3714 b/gamelists/megadrive/linkedhashes.php?g=3714 new file mode 100644 index 0000000..ae7889e --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=3714 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0ef8cf31e77cf8fab03bd7540a4751c0
  • 95bda8c491d9c67a5a97f00d9062cd08


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=39 b/gamelists/megadrive/linkedhashes.php?g=39 new file mode 100644 index 0000000..4cc1228 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=39 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 0028a8f30e471dd14a20bf3e18f7529b
  • 77be06102101759f30b416d80872c8da
  • 87f6aeedef313d6d9d5126e55514d812


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4 b/gamelists/megadrive/linkedhashes.php?g=4 new file mode 100644 index 0000000..9982404 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 54427136beee5a270232445bbfd0341f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=40 b/gamelists/megadrive/linkedhashes.php?g=40 new file mode 100644 index 0000000..8947464 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=40 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 4d83db7784995f04195567d4c8006db1
  • c2c5a4b990ce72f98b7b7f236e66c022
  • c6ba2aa696d90bbcc21aec786877fcee


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=41 b/gamelists/megadrive/linkedhashes.php?g=41 new file mode 100644 index 0000000..90d4fda --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=41 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1def1d7dbe4ab6b9e1fc90093292de6a
  • abddd42b2548e9b708991f689d726c9a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4123 b/gamelists/megadrive/linkedhashes.php?g=4123 new file mode 100644 index 0000000..274e64b --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4123 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • dc3847b07cd94a15b1b9e0fb2ff5db11


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4140 b/gamelists/megadrive/linkedhashes.php?g=4140 new file mode 100644 index 0000000..923a4c2 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4140 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ae267331cfe46a61f65f3cbd5abcbe72


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4148 b/gamelists/megadrive/linkedhashes.php?g=4148 new file mode 100644 index 0000000..423a53d --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4148 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 03a83c6c7392549b47b006c6e9c38fe0
  • 1baa1afb3097bb718e6780244c97591f
  • 2e1c1f784c9463152cd1a772f87677af
  • dbd256319fa07b7b7ac2f8ddfb41cce4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=42 b/gamelists/megadrive/linkedhashes.php?g=42 new file mode 100644 index 0000000..2333890 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=42 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4831cb1b067887a086467ec51653af48
  • 7dd096a7a4122544b0d5da1a2b29ee3c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4222 b/gamelists/megadrive/linkedhashes.php?g=4222 new file mode 100644 index 0000000..02cd55d --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4222 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 0f1b62e1b8b651409cf3dbae9a6a4c81
  • 23f175cc7686ee7c55a986d5c794e481
  • 3ffcf39a42918301a1b6f7e7d95faab3
  • 731b77ec3acab4aaf3b76cd3c8d82a41
  • f8f4fb5a927d3e76f31a63a6d783f6fb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4228 b/gamelists/megadrive/linkedhashes.php?g=4228 new file mode 100644 index 0000000..7a7080f --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4228 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f93c0545385edce6ccef288ac767c670


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4237 b/gamelists/megadrive/linkedhashes.php?g=4237 new file mode 100644 index 0000000..fdb09d4 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4237 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f2b7d96aae4b5fdc6a1eac5a045e66c4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4239 b/gamelists/megadrive/linkedhashes.php?g=4239 new file mode 100644 index 0000000..97b461e --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4239 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1d664179b18b8497cddd03aa8a697420
  • d4df66f77d52718798ec07d350d3a3cd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4247 b/gamelists/megadrive/linkedhashes.php?g=4247 new file mode 100644 index 0000000..044fbf0 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4247 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 32e1a15161ef1f070b023738353bde51
  • 9b04970a603ace521c7cca2acaf69804


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4252 b/gamelists/megadrive/linkedhashes.php?g=4252 new file mode 100644 index 0000000..1116b86 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4252 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 699fdbc714dd0f1c65b91505b6e3c1d4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4264 b/gamelists/megadrive/linkedhashes.php?g=4264 new file mode 100644 index 0000000..5fd500c --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4264 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b6813ec7475012936d017c3c93412282


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4267 b/gamelists/megadrive/linkedhashes.php?g=4267 new file mode 100644 index 0000000..3279cae --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4267 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0cbb16c044d7c8e7366d954b5e844d1a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4269 b/gamelists/megadrive/linkedhashes.php?g=4269 new file mode 100644 index 0000000..8dbda63 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4269 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • c4b93e3420db39c312c2b4ba2b2a493f
  • c526426ebe919d4cd8fbb86157c0293e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4270 b/gamelists/megadrive/linkedhashes.php?g=4270 new file mode 100644 index 0000000..9914ddf --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4270 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a5ef16bf634e12cb959da662858bae94


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4274 b/gamelists/megadrive/linkedhashes.php?g=4274 new file mode 100644 index 0000000..a430f33 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4274 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5f3d1f637b1e51ae0c38d32eb8d58c02
  • b8591488ca46b51c1d39b6869fa23006


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4275 b/gamelists/megadrive/linkedhashes.php?g=4275 new file mode 100644 index 0000000..512f855 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4275 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 5e8ec4c047ef4af15027e93b5358858f
  • 840f9f6fd4f22686b89cfd9a9ade105a
  • 9aad96cc5364d2289f470b75c59907a5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4285 b/gamelists/megadrive/linkedhashes.php?g=4285 new file mode 100644 index 0000000..2f3ac6b --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4285 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9e215cea722159b321a2eac544573f0d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4291 b/gamelists/megadrive/linkedhashes.php?g=4291 new file mode 100644 index 0000000..beb5212 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4291 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5479601228fd14fefbd1d1fd5fceebed


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4293 b/gamelists/megadrive/linkedhashes.php?g=4293 new file mode 100644 index 0000000..22f8ef8 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4293 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 089771a4c22d69f039e5c18bf4b2d84a
  • 5630309302e9b60cfe4206d0b1d6d2c1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4305 b/gamelists/megadrive/linkedhashes.php?g=4305 new file mode 100644 index 0000000..f7b0d18 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4305 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 77574085187602bf50dd1167da389f60


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4313 b/gamelists/megadrive/linkedhashes.php?g=4313 new file mode 100644 index 0000000..fac028c --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4313 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 42ec7e0894625345be8021f9d5f5d52f
  • cbc5b61a39963d4ce24d874034caaf08


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4320 b/gamelists/megadrive/linkedhashes.php?g=4320 new file mode 100644 index 0000000..36a877b --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4320 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • faa6c4be300016843000cbbed8e94553


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4326 b/gamelists/megadrive/linkedhashes.php?g=4326 new file mode 100644 index 0000000..533eb2f --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4326 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7c932a29d9943944cda4b37241b17b22


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4342 b/gamelists/megadrive/linkedhashes.php?g=4342 new file mode 100644 index 0000000..c15f669 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4342 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6847fb802bd0cb9500af865a493896df
  • dcc6c7a80292cfb2ac6700d9f750f77f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4346 b/gamelists/megadrive/linkedhashes.php?g=4346 new file mode 100644 index 0000000..aed1dc7 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4346 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 89215f8bda92b66bf50f6aeed4dcf3aa
  • a8dcb5476855a83702e2f49ebd4e2d57


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4347 b/gamelists/megadrive/linkedhashes.php?g=4347 new file mode 100644 index 0000000..519df65 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4347 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c1ce374e4581e542e004aa52a4548165


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4356 b/gamelists/megadrive/linkedhashes.php?g=4356 new file mode 100644 index 0000000..f70f12f --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4356 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c39fe061955784a4625255f4d04084c6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4382 b/gamelists/megadrive/linkedhashes.php?g=4382 new file mode 100644 index 0000000..9446575 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4382 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 422a285546a9755df77da2840fb2c817
  • 918b399ff6dbd2aa40004aac22fa2b2e
  • fd989d56cd122df9413541c7831df999


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4386 b/gamelists/megadrive/linkedhashes.php?g=4386 new file mode 100644 index 0000000..90c4cc9 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4386 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 99fa6ab3d399e4cff74bb6ff79727efe
  • 9a016622b1ef6ea4a6c8d26625bea1cf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4390 b/gamelists/megadrive/linkedhashes.php?g=4390 new file mode 100644 index 0000000..0c46744 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4390 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 04d546c82591ce29d7135c0e0fc5fdd2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4398 b/gamelists/megadrive/linkedhashes.php?g=4398 new file mode 100644 index 0000000..b959f57 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4398 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2a7290076430f4c735feaf8a46d9bfe6
  • b9239ea4f533f72de496bdd5f4789e29


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=44 b/gamelists/megadrive/linkedhashes.php?g=44 new file mode 100644 index 0000000..ea157eb --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=44 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 972f4f683356e33b1a4a832f41a34b87


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4410 b/gamelists/megadrive/linkedhashes.php?g=4410 new file mode 100644 index 0000000..ddc91f2 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4410 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f50133162dad167e273bdb906c11a38b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4420 b/gamelists/megadrive/linkedhashes.php?g=4420 new file mode 100644 index 0000000..39a19b4 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4420 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a1e062e71e091793ebb09edd4511da77


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4421 b/gamelists/megadrive/linkedhashes.php?g=4421 new file mode 100644 index 0000000..a7e7c09 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4421 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 46f0c65ea34800bd53c14712ad57eeff
  • 685facf5f572d2113187ecc40b0341bf
  • d0c817bcc797b682a930c26e145c7df5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4433 b/gamelists/megadrive/linkedhashes.php?g=4433 new file mode 100644 index 0000000..0521290 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4433 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 619106321a4317fb38a3baced692d30f
  • 71db11955c089ff4b61ceab4fbe1a85a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4436 b/gamelists/megadrive/linkedhashes.php?g=4436 new file mode 100644 index 0000000..7dba3d3 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4436 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4206c52e6e96b6fa301e890e6a9d3337
  • 58baa4246598294644cfb49b2e5c3ebf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4444 b/gamelists/megadrive/linkedhashes.php?g=4444 new file mode 100644 index 0000000..e1cbb85 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4444 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 587c51be6c60b82514e928f951e730b1
  • 8ab847680c35b89e4f7883cb216efdd6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4450 b/gamelists/megadrive/linkedhashes.php?g=4450 new file mode 100644 index 0000000..b8d6403 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4450 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f3c5a2a9eae5cffbdc9f87c20fb492fc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4467 b/gamelists/megadrive/linkedhashes.php?g=4467 new file mode 100644 index 0000000..da8cedd --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4467 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 2cf04c3c4e8504a48136112caf9d51ae
  • a81d327574d49aab69c2a6fe4cdc893a
  • efb9679ff56838162330c16fb80d50b0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4481 b/gamelists/megadrive/linkedhashes.php?g=4481 new file mode 100644 index 0000000..97bf58a --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4481 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c4d2c80b3f21748325470667c1caf574


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4483 b/gamelists/megadrive/linkedhashes.php?g=4483 new file mode 100644 index 0000000..6b4ee98 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4483 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2fee5ef253faebaff73c017a7bda1cff


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=45 b/gamelists/megadrive/linkedhashes.php?g=45 new file mode 100644 index 0000000..af2a1fa --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=45 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 5ae78355da64cf17755175e9cfe48405
  • c4bc694fcc7ee608bd4b857a5ad49f86
  • e7dcfa220f46e0a1593cfdeda115c9af


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4509 b/gamelists/megadrive/linkedhashes.php?g=4509 new file mode 100644 index 0000000..909b071 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4509 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 01c9742b0a83a7c135f9ed6948dc7576
  • 8c0a97a07867e5a9406d45e682d0cde8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4513 b/gamelists/megadrive/linkedhashes.php?g=4513 new file mode 100644 index 0000000..5cbc9a6 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4513 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8d83131da5dfe5a1e83e4390e7777064


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4514 b/gamelists/megadrive/linkedhashes.php?g=4514 new file mode 100644 index 0000000..9c1b29f --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4514 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • fc412a1d0487cef78c5f9e0fe90faa2b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4521 b/gamelists/megadrive/linkedhashes.php?g=4521 new file mode 100644 index 0000000..03771cf --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4521 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 0178d80a25f00b84f1bf15ae365beae0
  • 2a2165b2be91810f5b97e8d7d2f76ad5
  • 8130283788f82677ec583b7f627dbf0c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4523 b/gamelists/megadrive/linkedhashes.php?g=4523 new file mode 100644 index 0000000..c703fed --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4523 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 43a12bdab31c98cb40c99af623cf9ba4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=46 b/gamelists/megadrive/linkedhashes.php?g=46 new file mode 100644 index 0000000..122cfe9 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=46 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6ddf32102f20c6f91b0d97bb5da5caad
  • b953ab20d7bd508bd15d369339c67256


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=47 b/gamelists/megadrive/linkedhashes.php?g=47 new file mode 100644 index 0000000..709701c --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=47 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 4039f1545ca00f788030f98ccd5609bd
  • 6cb2871511f53a30996963f30839de75
  • 97b64e77be0033317d929c2da865977e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4726 b/gamelists/megadrive/linkedhashes.php?g=4726 new file mode 100644 index 0000000..2741627 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4726 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2857b7730fb7dbc5f7c1ec1a4ba1b0ee
  • f29c5049a48f37a37b811a22dc731e3c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4748 b/gamelists/megadrive/linkedhashes.php?g=4748 new file mode 100644 index 0000000..f87651b --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4748 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 53090bcd67a0b6262f71ef7c5838c02b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=480 b/gamelists/megadrive/linkedhashes.php?g=480 new file mode 100644 index 0000000..a61b743 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=480 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 072b12787ae4ad7fefea989ae36fda95
  • 32aeea27591d0cb88dc571baa738804e
  • 54d06fe70c75bf6828a503bb8ce806b0
  • 7be1c29d91e88e1a1fa75029ecc62067
  • fd04c4616bb559e646937effdd343a09


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=486 b/gamelists/megadrive/linkedhashes.php?g=486 new file mode 100644 index 0000000..802ca4c --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=486 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4916ade6b213b1f56864239db56fef0d
  • 5d3ef6589dfcea277b8f9d0980a47a33


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=4874 b/gamelists/megadrive/linkedhashes.php?g=4874 new file mode 100644 index 0000000..55b233d --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=4874 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c5b1c655c19f462ade0ac4e17a844d10


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=491 b/gamelists/megadrive/linkedhashes.php?g=491 new file mode 100644 index 0000000..27dd918 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=491 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 723db55d679ef169b8210764a5f76c4d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=492 b/gamelists/megadrive/linkedhashes.php?g=492 new file mode 100644 index 0000000..16e0881 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=492 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3ad4ffc5046a21b6a7d7f5589c39dd76


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=494 b/gamelists/megadrive/linkedhashes.php?g=494 new file mode 100644 index 0000000..334e492 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=494 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 514f6cad98f5f632d680983a050fffc4
  • 5a94b1e8792bb3572db92c2019d99377
  • 9f194aff7d73925d7f18237074fbd06c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=5 b/gamelists/megadrive/linkedhashes.php?g=5 new file mode 100644 index 0000000..4e3dd93 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=5 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e0fd089d9f7db5a99fd7d63809375e84


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=50 b/gamelists/megadrive/linkedhashes.php?g=50 new file mode 100644 index 0000000..7095400 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=50 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 19731c22e7f7b26e47f5d709afdf5059
  • 58646828bbe100f37df663ccdc3ace0e
  • 84cbd0ff47f3c8e9d21d2c2fc39185fa
  • 8e9a282ed591e115b23fb4dacb953970
  • a98b963b51368db77b12cf7ea6547b71
  • d6cae47e928e55d52217dd80904e3ca9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=501 b/gamelists/megadrive/linkedhashes.php?g=501 new file mode 100644 index 0000000..daf7949 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=501 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 283c180cede3352dabec75fff677052e
  • 4e78389c53a255bab099762a734fce54


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=5017 b/gamelists/megadrive/linkedhashes.php?g=5017 new file mode 100644 index 0000000..6daaf8f --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=5017 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 403ceb23b4cf27d3d9c8965409960bb4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=51 b/gamelists/megadrive/linkedhashes.php?g=51 new file mode 100644 index 0000000..ed0f6a1 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=51 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a603f331d2d8700543a67c60342e38f7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=52 b/gamelists/megadrive/linkedhashes.php?g=52 new file mode 100644 index 0000000..58cb9bc --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=52 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 4890fe7dbbed12d7db1ef029ca7d930a
  • 75950e3aa9357a21715ffe2fa51a454c
  • 7ef204b138e02e8663ed2a5b8bff449d
  • 825e67797bfcf3c27754d59b4f668493


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=5247 b/gamelists/megadrive/linkedhashes.php?g=5247 new file mode 100644 index 0000000..bcd41e4 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=5247 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 07b35dcc19166dad91e9487031bfac88
  • 153b6d32026993569b16ff89c53197a3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=53 b/gamelists/megadrive/linkedhashes.php?g=53 new file mode 100644 index 0000000..cad9105 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=53 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 10 unique ROM(s) registered for it with the following MD5s:

  • 38aff5287c05dba4c5bbd269a268bf22
  • 393ac681c66051906cb15fdf12861caf
  • 5cc88fa866c76cb24c50ec7019daee7e
  • 7078e8018ded17f3ce4c70cc8bf74afc
  • 7f121ad5e332cb76e861fd0dfefcc0d8
  • 90a9a99f853eb1853be2b725dab758c9
  • afefa6517e8ee35f2a5b5b42964f4295
  • b09f105210f67e01bddaa9c371151f03
  • d92ccdfd14118af824b98997ab639bb7
  • f75ac0929ebdff0c208fe717cc482097


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=536 b/gamelists/megadrive/linkedhashes.php?g=536 new file mode 100644 index 0000000..02bc373 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=536 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6858c543dd27b9f1d5aa260a25ab1b83


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=54 b/gamelists/megadrive/linkedhashes.php?g=54 new file mode 100644 index 0000000..c3d3cc5 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=54 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 2d0b0c8f10edf76131708e874e8d1ee4
  • 30d46a358e82a37c08fe104c1fa32b7c
  • 3ea974f31dc8739aa2624c9cdc9c4416
  • 9f2ab201da090f10cf84d584f8b18630
  • e51a80afbbeee734cac5f28fdee6b9cb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=55 b/gamelists/megadrive/linkedhashes.php?g=55 new file mode 100644 index 0000000..d5bc8c9 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=55 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 0235a3c76831543b03e9d02d26a97b73
  • 569cfec15813294a8f0cf88cccc8c151
  • 59a3b22a1899461dceba50d1ade88d3a
  • 7c905436cf2a07d32010d69c5030fd36
  • aa7805261d6105d59939b14782569ee6
  • cfc70b1332d86461680281af9e33cec9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=556 b/gamelists/megadrive/linkedhashes.php?g=556 new file mode 100644 index 0000000..cad1822 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=556 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4e8a318ba7f70b42816fbdafd2624bef
  • 5f78d072f7e67972227d992d966a4879


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=560 b/gamelists/megadrive/linkedhashes.php?g=560 new file mode 100644 index 0000000..e191e94 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=560 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2de1202ed1d50254d4e3c75147ffaa14
  • ed7be5dd9fe36a5e8976f7f4894b2c12


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=561 b/gamelists/megadrive/linkedhashes.php?g=561 new file mode 100644 index 0000000..be21477 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=561 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 04ae2b65f3a11a7504339e60735beed8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=565 b/gamelists/megadrive/linkedhashes.php?g=565 new file mode 100644 index 0000000..df250e7 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=565 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1c45dadc7587225593c8462146dae978
  • c8d561b39ec6e48976f15e07d4284e74
  • e1c6af705103ae61998dcf7b01e52159


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=571 b/gamelists/megadrive/linkedhashes.php?g=571 new file mode 100644 index 0000000..416bd91 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=571 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 809534b635e726f57bf1d95f3e6d7468


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=574 b/gamelists/megadrive/linkedhashes.php?g=574 new file mode 100644 index 0000000..2a92e75 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=574 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0711541847d139a7dae88958b68f92ee
  • a2813d0b03f84d0f2ad2448b39438845


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=578 b/gamelists/megadrive/linkedhashes.php?g=578 new file mode 100644 index 0000000..6d09e34 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=578 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2a3742ce7a8e5d86bdc52b9d47a82788
  • 780baa7dd2f030f0b1c64897b5d4cc10


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=583 b/gamelists/megadrive/linkedhashes.php?g=583 new file mode 100644 index 0000000..3e4e30b --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=583 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bc5d2dadfa64e26d851af8c294c38436


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=585 b/gamelists/megadrive/linkedhashes.php?g=585 new file mode 100644 index 0000000..48cb621 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=585 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e812002daafb264fc2ab1dff9bd06ac2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=5855 b/gamelists/megadrive/linkedhashes.php?g=5855 new file mode 100644 index 0000000..65f15e9 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=5855 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ba07d4050b453d68cb2bd7e28fc8f74c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=587 b/gamelists/megadrive/linkedhashes.php?g=587 new file mode 100644 index 0000000..5cbc155 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=587 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 5f4f2fb8c7b8c50efbc6eed57ce3dae3
  • 9647d8ec9183f3ec9f944d5ea49a99a9
  • b07bcf6eeb5050f76ac70691fe49f1e1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=59 b/gamelists/megadrive/linkedhashes.php?g=59 new file mode 100644 index 0000000..630c93c --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=59 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1cc0cbc50c890760e970d6e310f8f85c
  • 805cc0b3724f041126a57a4d956fd251


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=5902 b/gamelists/megadrive/linkedhashes.php?g=5902 new file mode 100644 index 0000000..3e11bdd --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=5902 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 469e1360eb70879b1039a686be9dfc3a
  • 49c78f9e16ea62931ecb770a32b393dd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=592 b/gamelists/megadrive/linkedhashes.php?g=592 new file mode 100644 index 0000000..fb647bf --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=592 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 138411ecaf3be9dcc78535ad2fe51e42
  • ca6f52b094db8bb2c5a4deaebe6b56ce


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=6 b/gamelists/megadrive/linkedhashes.php?g=6 new file mode 100644 index 0000000..9d317a9 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=6 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6f37f036c8de2bf78d11079cd2424370
  • e016f44fc9b2ff8a677a84957b9eeb34


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=60 b/gamelists/megadrive/linkedhashes.php?g=60 new file mode 100644 index 0000000..4feb19d --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=60 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 00328fce69991cc9759ffef7d547a0b8
  • c8e887ca9cdde7bde85f324f66d34b2d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=602 b/gamelists/megadrive/linkedhashes.php?g=602 new file mode 100644 index 0000000..99439dd --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=602 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3d4e16e2743d453f206b1c305b12cd27
  • ca12f83dbeb44a134062a1f444e4a90a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=603 b/gamelists/megadrive/linkedhashes.php?g=603 new file mode 100644 index 0000000..7231013 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=603 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • b89406ff3537d74f77a4f7e5e71b25b7
  • e91cc2771c7801e8669117a0c2e06e40


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=619 b/gamelists/megadrive/linkedhashes.php?g=619 new file mode 100644 index 0000000..753632a --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=619 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2de20c45e4d643b7eb96cfba59626a04
  • 9746b03a917b3e26f054992c8babc940


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=6196 b/gamelists/megadrive/linkedhashes.php?g=6196 new file mode 100644 index 0000000..9742559 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=6196 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9bbb0854eed833fb3f7bbe34346782fe


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=62 b/gamelists/megadrive/linkedhashes.php?g=62 new file mode 100644 index 0000000..e02ef2b --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=62 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2c93e520772d4cdc1cf4ad54d2fcb406
  • 66eb83db18506107e3fc8dfeaf7bb031


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=6239 b/gamelists/megadrive/linkedhashes.php?g=6239 new file mode 100644 index 0000000..c969706 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=6239 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 59a06f23ac23ad2b97f3b968966dcd11
  • c9b85d5f6880e7734112887675115220


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=63 b/gamelists/megadrive/linkedhashes.php?g=63 new file mode 100644 index 0000000..912a215 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=63 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 6f90aa3114d35ecca11b8b62aae0611a
  • 85b4c7b4b839e5b3614ae7b218129e12
  • 9aebe4169f54e9596451e1f1fd440139
  • ce0a42a75a9e374cf5092f34bf6927b7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=6312 b/gamelists/megadrive/linkedhashes.php?g=6312 new file mode 100644 index 0000000..13bfaf0 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=6312 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3e5e4b18d035775b916a06f2b3dc5031
  • 5a1c504c7812769587ad4e3485c45d38


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=64 b/gamelists/megadrive/linkedhashes.php?g=64 new file mode 100644 index 0000000..7bc54bc --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=64 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 5a8f7c6437d239690b4a15287d841c26
  • 691eeff9c5741724a8751ec0fa9cfbf0
  • 6ce59f3e7ee52dc8c6df7b4d8a166826
  • bcedff37eb20ea289bd3b7e4f4de84a6
  • c3dbe1d6d1cf04d87d57277dfc8d2ac9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=644 b/gamelists/megadrive/linkedhashes.php?g=644 new file mode 100644 index 0000000..cd714f0 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=644 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 8e147874de78d95634a807f917b270c5
  • d5ced66ba18ec2b8eb69b8b1a6baf0d0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=65 b/gamelists/megadrive/linkedhashes.php?g=65 new file mode 100644 index 0000000..201063a --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=65 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 4ada3f1cb2306565035a6a6ecbe915d5
  • 4b4acbe75ff7aaeb534ab78ed95910d1
  • 5111aa25931e6789ce4972bc6bafaa04
  • 6ddca3ea05ff5b42a52240020713d5f6
  • 6e3009aef9571b914912d2d03884ad27
  • 72ab457fd395da1879ed4f6d29b09af1
  • ad89e3b44d370572495d3c716fe70271
  • f8506598fce60a0a7612a39651351296


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=650 b/gamelists/megadrive/linkedhashes.php?g=650 new file mode 100644 index 0000000..b0f9f18 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=650 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 2eb09e92f8b495b8f1c3c57766079e29
  • 817db2341ed161c9abc9b9576f11fd31
  • b0952bec44386411651ad944c67cf86c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=6583 b/gamelists/megadrive/linkedhashes.php?g=6583 new file mode 100644 index 0000000..5c21018 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=6583 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 0edcef2bc04f338a5c7362f3007be037
  • 4f95573c08f905466e01cf8e1bc59a73
  • df959dd29aa9f8cb9f5cfb28e595c6bf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=66 b/gamelists/megadrive/linkedhashes.php?g=66 new file mode 100644 index 0000000..3eee2d8 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=66 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • d0d14e031b6a62c733414e1039a51df3
  • e82c84434552a2f4d0db073b23cf669c
  • ef2dc6223949eaf84f14e270874a5fff


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=67 b/gamelists/megadrive/linkedhashes.php?g=67 new file mode 100644 index 0000000..536cc56 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=67 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 2716153a88d0b7966150f6f2c04b0d30
  • 7277b3202363800a03e6790d3810f362
  • 8c2a9b15ba24b611c895efd49c175ebe
  • a2d37bbe0b5d298fb6f0e520c4dcdc74
  • a34059a923f4e3cdd84e85bb236b8bc8
  • d512003a909cc775826c316e7e1bb6d9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=6718 b/gamelists/megadrive/linkedhashes.php?g=6718 new file mode 100644 index 0000000..6bb2443 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=6718 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 644dcd9ae972b6b63fce63c17d12620d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=6728 b/gamelists/megadrive/linkedhashes.php?g=6728 new file mode 100644 index 0000000..cd205f9 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=6728 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 084403af61869de5c98cb00f59072abb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=68 b/gamelists/megadrive/linkedhashes.php?g=68 new file mode 100644 index 0000000..7271691 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=68 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 756e603b6cf9b3ebbb1b0f79d9447e43


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=69 b/gamelists/megadrive/linkedhashes.php?g=69 new file mode 100644 index 0000000..b9e23d0 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=69 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0f04fc1b5bf8c9a887abcf14ce96b0cd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=7 b/gamelists/megadrive/linkedhashes.php?g=7 new file mode 100644 index 0000000..e1f6b18 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=7 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3fb8a8dfd2cfea48ae3d378918691ee7
  • 9a369cfc6355db48677771e345421e0e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=70 b/gamelists/megadrive/linkedhashes.php?g=70 new file mode 100644 index 0000000..7c51ef0 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=70 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3dcf09e58870a2cf850f9788078684be
  • 5a129779699f8b388e97c9c0d703d503


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=7133 b/gamelists/megadrive/linkedhashes.php?g=7133 new file mode 100644 index 0000000..b017804 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=7133 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • af952d8625ef75ddca524074fd4b772a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=74 b/gamelists/megadrive/linkedhashes.php?g=74 new file mode 100644 index 0000000..3a03b32 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=74 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 73a29e5020e138d18ae0002c5117e83c
  • c1d154862f292bd48114b2b6c3265d7a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=75 b/gamelists/megadrive/linkedhashes.php?g=75 new file mode 100644 index 0000000..e84a338 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=75 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 102230166873a8526250af7fae1cb508
  • 3c1aaa89a704a52ebe3cbd3fec22281d
  • 6473b1505334ef5620d13191c18251fe
  • 7b17318e42b908e90ab20dd795825d73
  • adae02a196f24ceb3049b4fab830cbcc
  • cf1ee97e5e6d4c407d379949ee338dbf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=7674 b/gamelists/megadrive/linkedhashes.php?g=7674 new file mode 100644 index 0000000..cafb0e8 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=7674 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b62d2ba2ce1c3d74b4a7599d8518b9b7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=7682 b/gamelists/megadrive/linkedhashes.php?g=7682 new file mode 100644 index 0000000..c27e176 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=7682 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4781582b86444aa756c7cbee2193a31d
  • 8329789cf6137cf0dffdfd503c82e1c3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=79 b/gamelists/megadrive/linkedhashes.php?g=79 new file mode 100644 index 0000000..dc55f99 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=79 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 15e015b03111c4c5bd18fd037c9873d8
  • 9b590cc0214822068b76191f1d6a0053
  • a1dd8a3e4b8c98dee49d5e90d6b87903
  • b7f19f16b301ff6d53d7027cc01a0812


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=8 b/gamelists/megadrive/linkedhashes.php?g=8 new file mode 100644 index 0000000..efd015c --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=8 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 18b49fe6ad55975b6021b40b193035f5
  • 74631561069c6b3354b0f141ee8ba18c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=80 b/gamelists/megadrive/linkedhashes.php?g=80 new file mode 100644 index 0000000..be771fa --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=80 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 794949fbb123604f8d7c5dcc9d199aaa
  • b687660446f6e49dfd465cd0ef9f0bc3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=807 b/gamelists/megadrive/linkedhashes.php?g=807 new file mode 100644 index 0000000..32a933a --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=807 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 67c489b34827bb4fae2ba93e8d2a919e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=81 b/gamelists/megadrive/linkedhashes.php?g=81 new file mode 100644 index 0000000..9b9285b --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=81 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2864c05f9bf67f92af830f2fa7de1d61


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=82 b/gamelists/megadrive/linkedhashes.php?g=82 new file mode 100644 index 0000000..9147606 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=82 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 543b64ccb26c18edc6c98c12b1302dc0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=83 b/gamelists/megadrive/linkedhashes.php?g=83 new file mode 100644 index 0000000..187b786 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=83 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 376f344f8ef5a4f8365867c9e94efb3e
  • 62e40b8c8012d02df4fac1c68f10eb16
  • 6ae7d401d3b867e356846c0ee50f8218
  • ecf9d0bac130fed7b6a54a67d7b27df7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=84 b/gamelists/megadrive/linkedhashes.php?g=84 new file mode 100644 index 0000000..a636701 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=84 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 72b5848612f80d14bc51807f8c7e239e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=8496 b/gamelists/megadrive/linkedhashes.php?g=8496 new file mode 100644 index 0000000..a847b81 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=8496 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1ac2f0fa0dd141bdda30f9b15b8edbae
  • 1c224caf835ad4c19f9477dc5d1e9086


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=8532 b/gamelists/megadrive/linkedhashes.php?g=8532 new file mode 100644 index 0000000..3c3612f --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=8532 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8356b3f0d091b9cc441e2ff8721ad063


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=87 b/gamelists/megadrive/linkedhashes.php?g=87 new file mode 100644 index 0000000..416b71e --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=87 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 2c03b499edcc327b6cb80e41950ac710
  • 2cd3573172961fa52f622f14ccff4e1a
  • 3cda1e8bf2fc09e9a7595c2f3c32c1d6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=8797 b/gamelists/megadrive/linkedhashes.php?g=8797 new file mode 100644 index 0000000..71df4bf --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=8797 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 9376a25def78ef81d5c9dc0e15a1535e
  • a061d3b953e7ad4d931e8e830364c376


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=88 b/gamelists/megadrive/linkedhashes.php?g=88 new file mode 100644 index 0000000..bf3693e --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=88 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 17ae73b8bd1f9bbf2413b15deff83c01
  • 7d9f963c9c2e22b542516edd03ada6f6
  • 8370d6d10357bc894f9f720ab0e6f0c3
  • 932a2ffb998e59d6bf9292566dfc2a63
  • 945cf1786cc7b28c02f1a127a0c58209


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=8963 b/gamelists/megadrive/linkedhashes.php?g=8963 new file mode 100644 index 0000000..0c3ca89 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=8963 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 45e8764c5ef9a0fa4d7143007fe376f4
  • c21b92ef781aa60779dde6e38c474090


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=9 b/gamelists/megadrive/linkedhashes.php?g=9 new file mode 100644 index 0000000..4f168b1 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=9 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 24863151abd5baf28c9386d49ffe3c09
  • 4995ed01f27b27b650a69390cee33a1b
  • 83d37694f53d45c4d8bd740b4b04052f
  • a078a4cb212f2b64e0d0b66a6c3ea10e
  • f08a8009c2b64f03cc3dfe740125cb13


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=92 b/gamelists/megadrive/linkedhashes.php?g=92 new file mode 100644 index 0000000..9355c17 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=92 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 61b922208e0518a2e127939d374a43cb
  • ad3fb9946f0bf18c73413d0e4d57ddbf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=93 b/gamelists/megadrive/linkedhashes.php?g=93 new file mode 100644 index 0000000..47d258b --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=93 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e37bf6813648ec5e8bdbd2f7070010f8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=9396 b/gamelists/megadrive/linkedhashes.php?g=9396 new file mode 100644 index 0000000..ce976c6 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=9396 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4f5f65fe5f8219d791e7ddeb31a635ab


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=94 b/gamelists/megadrive/linkedhashes.php?g=94 new file mode 100644 index 0000000..676063f --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=94 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 84906f06b302216a6db943ee52a8956c
  • b7eeed1bd8420ce1d895b2ca46a0643a
  • c296021f74ab1192ed7e1865cdebc972


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=9490 b/gamelists/megadrive/linkedhashes.php?g=9490 new file mode 100644 index 0000000..bcf1677 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=9490 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d951bf2f27fcfd5641261f82dc3c7c47


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=96 b/gamelists/megadrive/linkedhashes.php?g=96 new file mode 100644 index 0000000..daed46c --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=96 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6ddf640c2c5f91f12487d813b6257114
  • ca18abf6ccede48681f013db3c43f108


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=98 b/gamelists/megadrive/linkedhashes.php?g=98 new file mode 100644 index 0000000..f6b95ee --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=98 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1f2a9f322e770be0a3cc2aabdf8bc575
  • 5838ccfe7930137c09c2568089ef7b8d
  • d46bb457b8fd20e5bf9991faf7fcfb15


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=99 b/gamelists/megadrive/linkedhashes.php?g=99 new file mode 100644 index 0000000..3bd7828 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=99 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 4f30ca0bbc44baf3ea688a04ada928a6
  • 6e277f8fbd78ecd48ec6a91db9b22cf5
  • f4550e6ca0b6c8a9de2376f85bdc6a8a
  • f6a562042d15dc149831a43cba633ad4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/megadrive/linkedhashes.php?g=9933 b/gamelists/megadrive/linkedhashes.php?g=9933 new file mode 100644 index 0000000..7aac624 --- /dev/null +++ b/gamelists/megadrive/linkedhashes.php?g=9933 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8e97a03cfb31917b7c2120405440f820


+
+
+
+ \ No newline at end of file diff --git a/gamelists/msx.html b/gamelists/msx.html new file mode 100644 index 0000000..8e66465 --- /dev/null +++ b/gamelists/msx.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games MSX - RetroAchievements +
+
+ +
+
+ \ No newline at end of file diff --git a/gamelists/msx/linkedhashes.php?g=10501 b/gamelists/msx/linkedhashes.php?g=10501 new file mode 100644 index 0000000..c30a78f --- /dev/null +++ b/gamelists/msx/linkedhashes.php?g=10501 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 12e302954fa9b23c11ce7c8f5770b82a
  • 3da994910180808cc03bbe3df973b55c
  • 439ea985617135d70858f0e6f88ba0f9
  • 56a32f310765e54101a10001d28344b6
  • 6e5144f5c8e50fb2f8f00852cbf3d2ca
  • 8473c150867394a0f0de6e8d29c9a50a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/msx/linkedhashes.php?g=10504 b/gamelists/msx/linkedhashes.php?g=10504 new file mode 100644 index 0000000..681ecfa --- /dev/null +++ b/gamelists/msx/linkedhashes.php?g=10504 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 01ec86d19248514baf263f0b60df4d0c
  • 614c03a00bfee70c581f759e96cdc099
  • 668217f475619500c87f136949267b6d
  • 9f50d92d35e19d5de37d75a36a410588
  • c54d3657e78b1ecc7cfe4f641158fbff


+
+
+
+ \ No newline at end of file diff --git a/gamelists/msx/linkedhashes.php?g=16395 b/gamelists/msx/linkedhashes.php?g=16395 new file mode 100644 index 0000000..e05a228 --- /dev/null +++ b/gamelists/msx/linkedhashes.php?g=16395 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6ee570b6fa73fe9a147846078cddc11c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/msx/linkedhashes.php?g=16506 b/gamelists/msx/linkedhashes.php?g=16506 new file mode 100644 index 0000000..9207d2c --- /dev/null +++ b/gamelists/msx/linkedhashes.php?g=16506 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2df142939c9e1147f814099856fd6361


+
+
+
+ \ No newline at end of file diff --git a/gamelists/msx/linkedhashes.php?g=16530 b/gamelists/msx/linkedhashes.php?g=16530 new file mode 100644 index 0000000..864b333 --- /dev/null +++ b/gamelists/msx/linkedhashes.php?g=16530 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d8e09f622af52e07a83f19ca58aee194


+
+
+
+ \ No newline at end of file diff --git a/gamelists/msx/linkedhashes.php?g=17024 b/gamelists/msx/linkedhashes.php?g=17024 new file mode 100644 index 0000000..659b51c --- /dev/null +++ b/gamelists/msx/linkedhashes.php?g=17024 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • da28da0bb524bd0072e10b2799a88a75


+
+
+
+ \ No newline at end of file diff --git a/gamelists/msx/linkedhashes.php?g=17069 b/gamelists/msx/linkedhashes.php?g=17069 new file mode 100644 index 0000000..67ee6ea --- /dev/null +++ b/gamelists/msx/linkedhashes.php?g=17069 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1721862f3f033e74607af9e26688403d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64.html b/gamelists/n64.html new file mode 100644 index 0000000..4a71686 --- /dev/null +++ b/gamelists/n64.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games Nintendo 64 - RetroAchievements +
+
+
+ +
+

Nintendo 64

TitleAchievementsPointsLeaderboards
1001000 (1483)
39326 (708)
80330 (9809)
42384 (1044)7
71751 (2862)15
24950 (9743)
65800 (2182)
82719 (1373)
50470 (2137)
43420 (712)13
20225 (297)
36400 (1166)
32365 (848)5
31425 (929)13
64400 (3123)
40350 (547)5
44540 (1170)
47350 (719)47
64277 (334)
59550 (1720)5
88800 (3927)
68880 (4081)4
26375 (2463)8
18110 (177)1
45525 (1724)25
17138 (221)
90760 (5015)
45534 (749)
55500 (1067)
49460 (1833)30
70400 (1974)
1411000 (3641)
80620 (3926)
66400 (954)
55420 (616)
63771 (2016)
38475 (2524)
96525 (2385)14
97600 (1370)14
115800 (4306)3
38625 (2035)17
57546 (1150)7
45535 (1271)13
46525 (1147)11
44410 (2395)2
62545 (3347)4
72585 (6974)21
55800 (1686)52
38278 (511)
56600 (2592)
45455 (1176)
40380 (1582)
44330 (1570)1
64850 (2664)14
66728 (2119)5
130980 (5509)
50750 (3940)
19170 (252)
52400 (1211)
51519 (1338)71
72877 (4395)9
85788 (3665)13
32155 (156)
95710 (3116)
32300 (581)
25345 (1102)
25400 (3532)27
49465 (842)1
145892 (2686)
1201025 (2941)34
40470 (2776)
34450 (670)
51381 (712)
74540 (1461)
42300 (582)
25400 (1041)9
44690 (2708)8
44202 (640)1
62400 (1454)
68650 (1109)
38555 (2179)
51399 (2073)41
45481 (2457)1
69600 (1667)
15170 (289)
131928 (11033)4
60661 (4417)42
50750 (2996)
45745 (3950)12
36265 (326)
52347 (585)
63475 (758)
21400 (1312)
43400 (1435)
38338 (758)
52600 (1947)
36246 (290)
73419 (1412)33
36510 (1041)
60885 (9686)1
15225 (212)
61400 (677)12
24385 (0)
17375 (547)2
39618 (815)8
651034 (1753)
4400 (380)
90690 (3272)
37266 (365)
45450 (645)
12211 (234)
16145 (181)1
1495 (131)3
72888 (1694)
51800 (4385)
75405 (602)4
63200 (294)2
47155 (446)1
52165 (264)1
35336 (465)1
38372 (401)4
35341 (385)2
67560 (615)5
38336 (352)3
37315 (353)2
890 (90)1
29275 (366)3
97840 (2312)33
24201 (218)1
117705 (2106)
8115 (126)
57365 (610)11
39365 (734)2
13136 (144)
51482 (649)2
54467 (575)2
16144 (159)1
57670 (1446)1
2012028 (3742)
57410 (531)
35414 (588)1
18174 (187)
40320 (903)1
37416 (453)
32435 (661)3
12105 (122)5
858 (59)1
1050 (51)4
31190 (264)4
1595 (107)
35398 (1688)4
2282 (99)
50400 (539)
21143 (161)
19160 (182)
28246 (739)
29230 (802)15
855 (59)
Totals: 158 games793474181 (260064)809

+
+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10003 b/gamelists/n64/linkedhashes.php?g=10003 new file mode 100644 index 0000000..7b80df7 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10003 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 13 unique ROM(s) registered for it with the following MD5s:

  • 165A9558B7539507E73E7AFECFFB200C
  • 20b854b239203baf6c961b850a4a51a2
  • 2A99DF604B735DBAAA8432A630748F2B
  • 3E79210C475CD690D26416D8307E700F
  • 49fbf9c744c458405f685d42b762a0be
  • 597204EE766B93C1AE33B7FC0739E170
  • 73c72657b1320faf2a6aea0e0a3de45a
  • 85D61F5525AF708C9F1E84DCE6DC10E9
  • 987C3939B2644BBB760D4047223023BB
  • A76140CFBF98148EC5BCAE1F5DE26B8C
  • b09b5785d32acb192d283b07594d3ab7
  • dcfefd52ec2f28f5dcd01bccab8aeee5
  • E51A6FF9B2DBBD216158CACFF35EB215


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10024 b/gamelists/n64/linkedhashes.php?g=10024 new file mode 100644 index 0000000..5fdc4d6 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10024 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 759358FAD1ED5AE31DCB2001A07F2FE5
  • 8DFB2FAC888368660B54E390FE9042F4
  • 8EB1C2443D0B2E6EDA52A4EEA66D6C35
  • C4A2DFC5C9D5041B2D6575DB191BF3F3
  • FFF9B3E22ABB9B60215DAFB13AD5A4DE


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10073 b/gamelists/n64/linkedhashes.php?g=10073 new file mode 100644 index 0000000..df370f8 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10073 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 2A56A06A05A9DBF9E693325B503AB5B1
  • 61C5D9CCE563BEE460C97D67FD813F67
  • 63042BC0432FDC1133D7CDC5867717B5
  • 70C525880240C1E838B8B1BE35666C3B
  • A218A681B0DE82EB3D1A465F0DBCD837
  • CFF69B70A8AD674A0EFE5558765855C9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10075 b/gamelists/n64/linkedhashes.php?g=10075 new file mode 100644 index 0000000..76578a4 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10075 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 34968e3c8f05987e63628f9bc9fe8ed6
  • 9ec41abf2519fc386cadd0731f6e868c
  • b71a88ba73e141fa2d355a6a72f46f6c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10077 b/gamelists/n64/linkedhashes.php?g=10077 new file mode 100644 index 0000000..5a12c8a --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10077 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1add2c0217662b307cdfd876b35fbf7a
  • 2C1C2949B4A5F16AE7C6D9B5DB4C034A


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10078 b/gamelists/n64/linkedhashes.php?g=10078 new file mode 100644 index 0000000..d61536d --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10078 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 02B214F4C1A288DD74E2870723C6FED3
  • 231F0134D2899C08930F6E34682D2C0B
  • 3A67D9986F54EB282924FCA4CD5F6DFF
  • 4172E73D0F2939683214D631F9E4F51E
  • 6C634D0CE7CD99CCCBB4CE8EB837EDB4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10080 b/gamelists/n64/linkedhashes.php?g=10080 new file mode 100644 index 0000000..42cc3d0 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10080 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 190CCCA6526DC4A1F611E3B40F5131C0
  • 1B1378BB9EE819F740550F566745AF73
  • 5A8684BC098428DD2A401F4CDAEE78DF
  • B67748B64A2CC7EFD2F3AD4504561E0E


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10081 b/gamelists/n64/linkedhashes.php?g=10081 new file mode 100644 index 0000000..b37a51a --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10081 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 643CCE1AB06F97E9590241D27E5C2363
  • 698930C7CCD844673D77FFECCB3DD66E
  • F2162BE647E4AA59254EC5ED7DB1E94A


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10082 b/gamelists/n64/linkedhashes.php?g=10082 new file mode 100644 index 0000000..366bcab --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10082 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 1E201F4C469927828BCF3335F2F3C4A3
  • 3C4E65D9B7BF55338496108F04DA7F41
  • 694dea68dbf1c3f06ff0476acf2169e6
  • 9A27D420B43A908ECF4F28F859E1C541
  • F7C52568A31AADF26E14DC2B6416B2ED


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10083 b/gamelists/n64/linkedhashes.php?g=10083 new file mode 100644 index 0000000..2482787 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10083 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 0F4AF851005304993C21D414C8165296
  • 2EE917366F64A06472D7622A2A05990E
  • 495A9BFFD6620BE43225DB7133373FC5
  • EB3B078A74D4DC827E1E79791004DFBB


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10089 b/gamelists/n64/linkedhashes.php?g=10089 new file mode 100644 index 0000000..97d0979 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10089 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • AFCE4FF54D26B29BA7BE5BE1B180FEE9
  • D616ADF6441ACBBD0E6BEF023A8F6031


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10093 b/gamelists/n64/linkedhashes.php?g=10093 new file mode 100644 index 0000000..784a5b2 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10093 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • A5921C00111200257284CE0ABA0904CA
  • A8531BFD6FFBAD2059EF4F34AABC6282
  • EB98F1B8C6898AF7417F6882946DA9B3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10108 b/gamelists/n64/linkedhashes.php?g=10108 new file mode 100644 index 0000000..1194a25 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10108 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 478261EFD4991F445D23381844DA5002
  • 5B8C0C27F64DEB890FDE54E83B313E26
  • 76A8BBC81BC2060EC99C9645867237CC
  • 8E62EC6FBE3CC9FF6284191C9C88E68F
  • AC422FB77258336895EE5355F1B2B36D


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10110 b/gamelists/n64/linkedhashes.php?g=10110 new file mode 100644 index 0000000..a21081b --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10110 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 6F86452863716270C51C4F433AF47534
  • 7F4171B0C8D17815BE37913F535E4E93
  • E03B088B6AC9E0080440EFED07C1E40F
  • EAEDD63AE7609C8C795DB93AA2437C4C
  • F267577A1FAECA4C07F1BB188452CA80


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10113 b/gamelists/n64/linkedhashes.php?g=10113 new file mode 100644 index 0000000..e259999 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10113 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 12 unique ROM(s) registered for it with the following MD5s:

  • 0D6331C2FA062F20272CC1A7F80F7271
  • 2ECB8739EB694133B88BDD2CF4617F24
  • 44E6921A257E913977088B9B6BA9D25B
  • 5BD1FE107BF8106B2AB6650ABECD54D6
  • 6697768A7A7DF2DD27A692A2638EA90B
  • 77BF20D3ECA19EBCFC5FED35F5CF65DC
  • 7FD3BA9B095C244367E84A6E4493349B
  • 86A9550AD8CDDACA13813765045A00EE
  • 9f04c8e68534b870f707c247fa4b50fc
  • AF27177927468D885E49A0FCD0636768
  • BDAA297B76B7838319788DBFC0D510DE
  • F85FC5CE4451C1E9F3EE00B814489A51


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10114 b/gamelists/n64/linkedhashes.php?g=10114 new file mode 100644 index 0000000..9f2a737 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10114 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 116d3ffc3c906620f99b0a5f0b6b1600
  • 11819262F59DBD61F9E6621483CC0245
  • 3DCB15043063BD656A0223C519218CFB


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10115 b/gamelists/n64/linkedhashes.php?g=10115 new file mode 100644 index 0000000..9607915 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10115 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 19E60FD08033B4AFC86AA0F2ED39181D
  • 3620674ACB51E436D5150738AC1C0969


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10118 b/gamelists/n64/linkedhashes.php?g=10118 new file mode 100644 index 0000000..fe1f2eb --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10118 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • B44E9C2D9D2F2DE3AF4793B824CCF936
  • EEECA2B0130B8C9A11A1FC95110990B0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10119 b/gamelists/n64/linkedhashes.php?g=10119 new file mode 100644 index 0000000..279e959 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10119 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 103e16bf7fcfb4d713d2ebe19dcb5311
  • 3B8638452B46DEBA9EDFFBCD6CDB6966
  • 79BD05A97E50AC63A638E4E90AB9588B
  • a0657bc99e169153fd46aeccfde748f3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10120 b/gamelists/n64/linkedhashes.php?g=10120 new file mode 100644 index 0000000..b925c40 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10120 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 093058ECE14C8CC1A887B2087EB5CFE9
  • B68F49AA8F6F7499184AC6B7B8570F2B
  • E52CE4AB747FF37663E93E5C322BE9D2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10129 b/gamelists/n64/linkedhashes.php?g=10129 new file mode 100644 index 0000000..013cd30 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10129 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 0035E8205336982E362402AAEA37D147
  • A3BEC94D91F24DBEA7290FF0DAF92F5C
  • A47AF0821704B001C3565C0C1D5AFEF1
  • E7008D17FD71D9C2BDA1362C885388B2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10133 b/gamelists/n64/linkedhashes.php?g=10133 new file mode 100644 index 0000000..4200fe0 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10133 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 60297B40A16AC569DEE8659062B08B7F
  • 753437D0D8ADA1D12F3F9CF0F0A5171F
  • 7B2D9E24E6535BE213BA036EFE618E31
  • DEE6EF2CBAAC89846A59983E19A55348
  • EE79A8FE287B5DCAEA584439363342FC


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10136 b/gamelists/n64/linkedhashes.php?g=10136 new file mode 100644 index 0000000..8ee8d45 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10136 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 5CA3A45C21E16EDAFBAFE1BD0491DC8D
  • 632C98CF281CDA776E66685B278A4FA6
  • F58B3055A2C642FB2F563F11B6B597EA
  • FA27089C425DBAB99F19245C5C997613


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10148 b/gamelists/n64/linkedhashes.php?g=10148 new file mode 100644 index 0000000..6ef7fa3 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10148 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 06B9E71B0ACC83F8C75BEFD2EC602B52
  • 53E2872612760133AB7B2CC2E22B847C
  • 7C4EA4747805499059AAD17C209A6E77
  • B8085C2EDB1C6D23E52ED8C06D92B4F8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10153 b/gamelists/n64/linkedhashes.php?g=10153 new file mode 100644 index 0000000..61a1ec5 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10153 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 591CF8E672C9CC0FE9C871CC56DCC854
  • 5CCE8AD5F86E8A373A7525DC4C7E6705
  • 99B150A2E655D771EE1695CC1DF65B65
  • C7B40352AAD8D863D88D51672F9A0087
  • FA635E837275D28FD5A24D5675BA42C8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10154 b/gamelists/n64/linkedhashes.php?g=10154 new file mode 100644 index 0000000..398db08 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10154 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 2b210d3e17bc135730614f0ca5ddea42
  • 7DE64234EE20788B9D74D2FDB3462AED
  • A722F8161FF489943191330BF8416496
  • AC6C61E0652075869190E168A838E803


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10155 b/gamelists/n64/linkedhashes.php?g=10155 new file mode 100644 index 0000000..99de17e --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10155 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 9B10B9D70DAC67AE40953148FBE9CB96
  • FC3C9329B7CDD67CF7650ABF63B9A580


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10157 b/gamelists/n64/linkedhashes.php?g=10157 new file mode 100644 index 0000000..5fd6f60 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10157 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0A5D1E13B410D209835B43F2A985EF64
  • 6DA848A70D83ECE130D274124760928E


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10158 b/gamelists/n64/linkedhashes.php?g=10158 new file mode 100644 index 0000000..217c45f --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10158 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 5B9D74019FFCC91B8737CE09C0AF5030
  • 7FCCB47498EEC06E96AE9372247D1E90
  • BDA717ECC8434F12F313342485828B58
  • DFFD909E47B4ABC8FB25669C83EEF8AA


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10162 b/gamelists/n64/linkedhashes.php?g=10162 new file mode 100644 index 0000000..ed95372 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10162 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 5875FC73069077C93E214233B60F0BDC
  • 889d4d337ad11ce94357511c725eab6a
  • c1cba39e01bb3cd76a1631ae906ebe38
  • FD169651B23B5424C2D4CB5D9AF81FC3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10164 b/gamelists/n64/linkedhashes.php?g=10164 new file mode 100644 index 0000000..1f63bf6 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10164 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 05194D49C14E52055DF72A54D40791E1
  • e31ded9c7887ebc07a343b8865a2bf55


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10173 b/gamelists/n64/linkedhashes.php?g=10173 new file mode 100644 index 0000000..d9cd395 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10173 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 27e71da98ce4b7b11bdcc92a6c400679
  • 586A092E22604840973B82DFACEAC77A
  • D3436319D51DF291BA71A2E512DDB7B5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10181 b/gamelists/n64/linkedhashes.php?g=10181 new file mode 100644 index 0000000..e7b2ac0 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10181 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3a7324ce816d5891dea074055690750a
  • ED1378BC12115F71209A77844965BA50


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10182 b/gamelists/n64/linkedhashes.php?g=10182 new file mode 100644 index 0000000..afe1b14 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10182 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 10 unique ROM(s) registered for it with the following MD5s:

  • 039875B92C0E4FEF9797EC1744877B17
  • 0ADBD2C70517AC80ED2430D61D3363AA
  • 13FAA58604597E4EDC608070F8E0AE24
  • 1428572BF7A06CCCB90411BEA697929A
  • 1E09EEEBDAD6527BDE34A9E863AA6809
  • 3D1B3CF1FDE3D730F92FCB4EAEE32311
  • 548FC0E6035B65BC2108255039859934
  • AE5107EFDD3C210E1EDD4ACD9B3CAC31
  • E030EFB29598B151EBAAF6B101803D57
  • F0F687B449A9F4B0BFF08104C35EA08C


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10186 b/gamelists/n64/linkedhashes.php?g=10186 new file mode 100644 index 0000000..8fc3b1c --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10186 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 87B8428DAC1D275B0E32E42DD5CFDE22
  • 990F97D56456FC23E52BD263E709E21E


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10198 b/gamelists/n64/linkedhashes.php?g=10198 new file mode 100644 index 0000000..bb9fffe --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10198 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 29BC5C1A24D3979D376AD421000AC9CB
  • 624742B506DF9FF5C2D86D649EB8F3FB
  • B31DEBB9007459B0B20D7E73C189CFFB


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10199 b/gamelists/n64/linkedhashes.php?g=10199 new file mode 100644 index 0000000..e7150eb --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10199 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 127AB20EE41ADB54C83DFB5BF5794D27
  • 14B72B59AA3EFABF368779E6EBECDCAB
  • AB4382E583AE139EEDBAFCE5FA87E4C8
  • B8D4B92E66A312708626B3216DE07A3A
  • EB31F4F9C1FE26A3A663F74E9790516E


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10200 b/gamelists/n64/linkedhashes.php?g=10200 new file mode 100644 index 0000000..766a85b --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10200 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 2a9c172f12cd6acb941911c22fef75c8
  • 2c6d146a8473511cfcfbbe8518f49d71
  • 73AEDBD8AB7FE0AE842F3BD70F77ADC2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10202 b/gamelists/n64/linkedhashes.php?g=10202 new file mode 100644 index 0000000..826afb1 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10202 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 422FD8833F865C4A6C17FCAC4450A69E
  • 4F0E07F0EEAC7E5D7CE3A75461888D03
  • 511833A46BE4E00D1B3655C88E278422
  • 94D81D14A2D768DD0EDA3A845AFB25CD
  • E00C0E6BFB0CE740E3E1C50BA82BC01A


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10206 b/gamelists/n64/linkedhashes.php?g=10206 new file mode 100644 index 0000000..ea0da06 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10206 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 4f79367d5db29a00590377dba46e3b58
  • 5B5396190E4AFBB4D2D358A699522CB0
  • 80E5019C9DD12648F909B3A5715ED580
  • da2689fb890854138c9390dd8f487cc0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10210 b/gamelists/n64/linkedhashes.php?g=10210 new file mode 100644 index 0000000..df2c6ec --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10210 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • B29599651A13F681C9923D69354BF4A3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10211 b/gamelists/n64/linkedhashes.php?g=10211 new file mode 100644 index 0000000..fc4b719 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10211 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 40E98FAA24AC3EBE1D25CB5E5DDF49E4
  • 61B5C5C3E5E1A81E5D37072C01B39B76
  • 8B2E56F18421A67BCA861427453A1E19
  • CA0DF738AE6A16BFB4B46D3860C159D9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10216 b/gamelists/n64/linkedhashes.php?g=10216 new file mode 100644 index 0000000..db82ae0 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10216 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 949A7017E27D2ED402D2AD709498FD65
  • EA552E33973468233A0712C251ABDB6B


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10223 b/gamelists/n64/linkedhashes.php?g=10223 new file mode 100644 index 0000000..c40470c --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10223 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 19B3E60F53AE174321A9C410C076CBB2
  • 3D8FAC8917CE0D2D9F6403860ED2BB8E
  • 6770DDEC84EB21A5E0D0F55DFD52A01A
  • 6E47938FFEB8B202198877C7CB0EFA1D
  • 9F0492A34D7A2D7C4E9F29DC1848A04A
  • EC10D3D8A602BBB4D7DB942B4B53CD10


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10246 b/gamelists/n64/linkedhashes.php?g=10246 new file mode 100644 index 0000000..cc231a0 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10246 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 1AF046C0638F8E401270976841D1AB58
  • 968A49EA33D35C94A393A770A8117AA3
  • A44B7A612964A6D6139D0426E569D9C9
  • B1A67AEBC2BE89A800E5EB60C0DFA968
  • D33E4254336383A17FF4728360562ADA


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10247 b/gamelists/n64/linkedhashes.php?g=10247 new file mode 100644 index 0000000..063e716 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10247 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 08E1152E9D9742E9BBF6C224B6958F2D
  • DED8648106F16417C01B4CC68986E97B


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10248 b/gamelists/n64/linkedhashes.php?g=10248 new file mode 100644 index 0000000..218800e --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10248 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 446D5215C4D34EB8AB0F355F324B8D0E
  • caf9a78db13ee00002ff63a3c0c5eabb
  • fecdcbbcd1a178a2f4b29b43facf9f39


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10255 b/gamelists/n64/linkedhashes.php?g=10255 new file mode 100644 index 0000000..555fbe8 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10255 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 09d23066364c5f212731b19dd9b9c87c
  • b457298b87b85bbf950f24867daa9475


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10256 b/gamelists/n64/linkedhashes.php?g=10256 new file mode 100644 index 0000000..a6c6977 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10256 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0BF64427CF68E49C70E9EC2C9D815209
  • 99D8FE5ED2F827FB1C43A3EA2B7CA9FD


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10258 b/gamelists/n64/linkedhashes.php?g=10258 new file mode 100644 index 0000000..fab885b --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10258 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1561C75D11CEDF356A8DDB1A4A5F9D5D
  • B26AAFD452C9816E1B7AA0954E75825F
  • FE05FB7A1E76ADCF8942B24A97748939


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10259 b/gamelists/n64/linkedhashes.php?g=10259 new file mode 100644 index 0000000..c3d040c --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10259 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 4D010AE1AF4B04D6B70B799C56F05993
  • 55634FF90EE997790781F79A5B0097EE
  • 7A5D0D77A462B5A7C372FB19EFDE1A5F
  • 846984C666C35407961C7C069066FC42
  • 903E6929666531D72D05D1E4C522E305


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10263 b/gamelists/n64/linkedhashes.php?g=10263 new file mode 100644 index 0000000..a680d8b --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10263 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 22D2815355F2BE326AA4AB08976EA091
  • 8BC2712139FBF0C56C8EA835802C52DC


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10264 b/gamelists/n64/linkedhashes.php?g=10264 new file mode 100644 index 0000000..97aa1f7 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10264 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 04840612A35ECE222AFDB2DFBF926409
  • A838E03022502B3A0B945286C0496AD1
  • F107F70EE02DCED2617A5DEDFF72869B
  • F70112B652B0EE4856AF83F4E8005C31


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10265 b/gamelists/n64/linkedhashes.php?g=10265 new file mode 100644 index 0000000..69de710 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10265 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 1F065DB3BAA31487DE47DEFE56DCD374
  • 20113A1AC62660F507B00E541A3AC584
  • 3B8585ED03E8DDB89D7DE456317545E7
  • B27FA5E9AD0CB47BB3A74FFAC7BC8EDF


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10268 b/gamelists/n64/linkedhashes.php?g=10268 new file mode 100644 index 0000000..3a575fa --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10268 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9CB963E8B71F18568F78EC1AF120362E


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10269 b/gamelists/n64/linkedhashes.php?g=10269 new file mode 100644 index 0000000..0aa4cc7 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10269 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5dbbfd5ace8222fa8fe51be113453c13
  • 8D0B9783B56E4D62D0462A80CB61947C


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10270 b/gamelists/n64/linkedhashes.php?g=10270 new file mode 100644 index 0000000..372381b --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10270 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • AFE4CC6F067852B96FEC84CB739B4C99
  • CCCDA8BDB4C64DE28FA086DE3F8C0BD1
  • E722576A15182CFED6782379CE4BC8BE


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10271 b/gamelists/n64/linkedhashes.php?g=10271 new file mode 100644 index 0000000..892888f --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10271 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3FC4D3187435443455F8355B2D3F8934
  • b23b9e8cec8b00507d20464905a0c5c5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10272 b/gamelists/n64/linkedhashes.php?g=10272 new file mode 100644 index 0000000..7065083 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10272 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 559F71B861F639B6376D891E3023414B
  • FCB1EDE6D4F63DFF012CE8C2E62E95CF


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10276 b/gamelists/n64/linkedhashes.php?g=10276 new file mode 100644 index 0000000..03a5a38 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10276 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cbbba75b2f2e6aefd2577d43ed793a95


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10277 b/gamelists/n64/linkedhashes.php?g=10277 new file mode 100644 index 0000000..4ea4b28 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10277 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 8B346182730CEAFFE5E2CCF6D223C5EF
  • 9E90E82CDA1F83B2BD43B9B19F68E404
  • C5569227242E04138AAC8457B7F83E6C


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10283 b/gamelists/n64/linkedhashes.php?g=10283 new file mode 100644 index 0000000..dfba24c --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10283 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 00327E0B5DF6DCE6DECC31353F33A3D3
  • 45D1D039AB7926ADC748DE640AFD986A
  • 740AD4DB03952BBE997DB09947A41E62
  • 7A20B97C0B509AAA38E36068ACD217C3
  • BE134500DA3342CD5DC7922B5E2697B7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10285 b/gamelists/n64/linkedhashes.php?g=10285 new file mode 100644 index 0000000..8af11a8 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10285 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 7e9aef39dea98b93c6b954fd1732a212
  • EF2453BFF7AD0C4BFA9AB0BD6324EBF3
  • EFEFAF4D6DF695651FDA796C9AE8A440
  • F59261E74B9466AC9F8A2A709CFAE8B7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10298 b/gamelists/n64/linkedhashes.php?g=10298 new file mode 100644 index 0000000..44c06d5 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10298 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 491CB5649BF3957591EDF9B1E5D765D4
  • 5D82E903F65341487DDC11AF80AD607A
  • 735DC0F52D801D820CCDA651058E43DE
  • BD1DE2FC1CF31096423563A40ECBF933
  • DF3CDD959E8C63B45F557FC197CE0E63
  • EAE7E0EE5328ED9F13B9CF9990189928
  • FB7D7D58E4E3CBD434DB579AA4EF3F5E


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10307 b/gamelists/n64/linkedhashes.php?g=10307 new file mode 100644 index 0000000..51057a9 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10307 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 92ee9af3dfeb19a1339f3c75baed1e6b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10309 b/gamelists/n64/linkedhashes.php?g=10309 new file mode 100644 index 0000000..b95313a --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10309 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 87aa5740dff79291ee97832da1f86205
  • A43F68079C8FFF2920137585B39FC73E


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10310 b/gamelists/n64/linkedhashes.php?g=10310 new file mode 100644 index 0000000..e3ac445 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10310 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3F64B4F72E61225EF3AE93976C9BFC7C
  • 6574373D96FB836E5E0B79DB0F7D10EC


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10313 b/gamelists/n64/linkedhashes.php?g=10313 new file mode 100644 index 0000000..f8cc5db --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10313 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2991bb68eca54813d6b834adbbbacc4c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10328 b/gamelists/n64/linkedhashes.php?g=10328 new file mode 100644 index 0000000..270f90e --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10328 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1730119B0455EF89C4E495DEC8E950A5
  • 2C94A246E701D667BA807DAB6C9771E2
  • C26EFF29CEE9D8F65D5D3321413400FE


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10329 b/gamelists/n64/linkedhashes.php?g=10329 new file mode 100644 index 0000000..171c6fe --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10329 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 1492806F12D33C3EA0EDB6848D43B1CC
  • 4A118869C2089FDAAD900DC34DF0788B
  • 8113D0EA2008402D4631F241F625D16B
  • 820990A9B6194339B30C4B6D3EA75309


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10330 b/gamelists/n64/linkedhashes.php?g=10330 new file mode 100644 index 0000000..d6afdc2 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10330 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • AEC1FDB0F1CAAD86C9F457989A4CE482
  • CB7F9FAD147F0ADB63A79EDC57237219


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10337 b/gamelists/n64/linkedhashes.php?g=10337 new file mode 100644 index 0000000..d3be1f6 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10337 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7F1991B8861E7E532EC21ECF2AF82191
  • EA9DD6280A01AB95984CAA1CB82C621E


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10347 b/gamelists/n64/linkedhashes.php?g=10347 new file mode 100644 index 0000000..7dabcba --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10347 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 097605021951024C3ECB2D502C0C2A9F


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10360 b/gamelists/n64/linkedhashes.php?g=10360 new file mode 100644 index 0000000..7b21b0f --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10360 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 67C74AB836A9D54FAA4D41B491E3794A
  • A0DE17A6C2D0FDA85B1FA95493ACAF26
  • F015FC28E1D62A36B4EBF4C79CA8F285


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10392 b/gamelists/n64/linkedhashes.php?g=10392 new file mode 100644 index 0000000..2d266ec --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10392 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1C494719032FF99382B167C43FB11762
  • 39D0960F29634E5BB6AA21F00C1044E7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10394 b/gamelists/n64/linkedhashes.php?g=10394 new file mode 100644 index 0000000..83ca088 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10394 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 08bea3310e778a6584eb64cd3f15f86e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10462 b/gamelists/n64/linkedhashes.php?g=10462 new file mode 100644 index 0000000..23b13ac --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10462 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 82DCD2B311352AD9B571089AFF6B6171
  • a81b1de864df3f4bb0903760be673f21


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10486 b/gamelists/n64/linkedhashes.php?g=10486 new file mode 100644 index 0000000..866e442 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10486 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 0405DA489B59895412E60659411FBC49
  • 85E09C5B9C3A6C6E7B8FCE029D5CD50D
  • EEBDFBD7CB57202D70CFFFCAAF55E93E


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10489 b/gamelists/n64/linkedhashes.php?g=10489 new file mode 100644 index 0000000..e323f3f --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10489 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • D2675B639421FC6EBCE92F0511F5BC5D
  • E61251D2819E3BF3A9C0B95329F60F70


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10515 b/gamelists/n64/linkedhashes.php?g=10515 new file mode 100644 index 0000000..7fea83a --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10515 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 9DCDFAB5FA65EFE5E18652E59A116E64
  • a63a9af85be8bb47c1741b8a37115354


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10517 b/gamelists/n64/linkedhashes.php?g=10517 new file mode 100644 index 0000000..0c8d871 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10517 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 105d3fb95998914a3eb7ac9e7631c6d1
  • 6f7030284b6bc84a49e07da864526b52
  • B50A5815E2FB20E90B834A571F8FD8C9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10520 b/gamelists/n64/linkedhashes.php?g=10520 new file mode 100644 index 0000000..1e5c4bb --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10520 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 15877E23F64EEF6F66A616DA7B24D6E2
  • 166221365DB70D446C4206083D422DD1
  • 76557AB6A4D86107EF31603B4822DAE2
  • FAD4DA8E17CE12F68CDF29180CDD4A90


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10546 b/gamelists/n64/linkedhashes.php?g=10546 new file mode 100644 index 0000000..f61826f --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10546 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 15D688DE0D23BB437D95C358C635465F
  • 270897F494F0CEDD27C3B65B58C00A27
  • 9151E55F13E30592F9D729835FFF17D5
  • fe1fe0168c157831b4f61a38e6ecb021


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10547 b/gamelists/n64/linkedhashes.php?g=10547 new file mode 100644 index 0000000..a2729a5 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10547 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 0bc897ffc9cf921918f2e547e7c47ece
  • 77b35aa6875d1a1ffa3e0ee9276e27b4
  • 8c7f1ddead2a7307eec3f2be6200dfdd
  • ee7673685f78ab9a6990b4f36eea1df3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10559 b/gamelists/n64/linkedhashes.php?g=10559 new file mode 100644 index 0000000..35b5c38 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10559 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a748177d26841d450469cf9a27b01532


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10574 b/gamelists/n64/linkedhashes.php?g=10574 new file mode 100644 index 0000000..56e196e --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10574 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 866E679C48444214D9246BE3885E1F81
  • A06D2E83CF2628915E8847F609474661


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10590 b/gamelists/n64/linkedhashes.php?g=10590 new file mode 100644 index 0000000..f638393 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10590 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c6eb5357874444fbd832cb63999d6708


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10607 b/gamelists/n64/linkedhashes.php?g=10607 new file mode 100644 index 0000000..f855282 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10607 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 1CD90B13B7FD6AFDCB838F801D807826
  • 397BE52D4FB7DF1E26C6275E05425571
  • 443F23EA81C635531AF03B03DD62BB9F
  • 4C8FC1AAF634C3B12AE30D126668EAF7
  • 74520D4064C37C72C2BDEE4AF2520E59
  • D8A88ACFCD89DF7A59D9A1B050FDA740
  • EC5604A1573D0A2C08F6EF36BE842154


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10614 b/gamelists/n64/linkedhashes.php?g=10614 new file mode 100644 index 0000000..50a6741 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10614 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 4be1e1a9c5bc5202108ba0cbaca648db
  • bcdc05dd4b0f22f640be713916f4a4fd
  • d616cf79f9b2e213fa2b6383893e4064
  • dc06a3739be0c9673c97bc29671eeed7
  • fc4db34ea0c88f5ab72046aa7dbb30d4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10615 b/gamelists/n64/linkedhashes.php?g=10615 new file mode 100644 index 0000000..4432a4d --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10615 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0c92616a1e18dbf389378ef2a2c2e957


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10617 b/gamelists/n64/linkedhashes.php?g=10617 new file mode 100644 index 0000000..c255107 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10617 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2048a640c12d1cf2052ba1629937d2ff


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10630 b/gamelists/n64/linkedhashes.php?g=10630 new file mode 100644 index 0000000..8a2acd3 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10630 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4110c7afad95d61880d54b90defee58b
  • 7420d9a92c03dfcf224a1f56d71727d1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10650 b/gamelists/n64/linkedhashes.php?g=10650 new file mode 100644 index 0000000..4677ac1 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10650 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7159F1B35AF48EC43236DDFCC2C73B5C


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10652 b/gamelists/n64/linkedhashes.php?g=10652 new file mode 100644 index 0000000..18f47b4 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10652 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 705c25c41897a6e544835411ba62961f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10667 b/gamelists/n64/linkedhashes.php?g=10667 new file mode 100644 index 0000000..5575aae --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10667 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 06B58673F7D31C56F8FE8186E86F6BD6
  • 0BBAA6DE2B9CBB822F8B4D85C1D5497B
  • 0BFEBEDF99C1E715ADA7103664BFCC97
  • 1CC5CF3B4D29D8C3ADE957648B529DC1
  • 609B7B72221EE6DC3E25E419752AEDCE


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10679 b/gamelists/n64/linkedhashes.php?g=10679 new file mode 100644 index 0000000..a8c3d1d --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10679 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2A0A8ACB61538235BC1094D297FB6556
  • B0CC37A45BC1B6C76CD7F0B71FE2BB1F


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10781 b/gamelists/n64/linkedhashes.php?g=10781 new file mode 100644 index 0000000..dd4ec20 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10781 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 515ed8622915bd22be84f2a0a5f430de
  • dab22d19ccc17c484a45dcb966d33ca0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10785 b/gamelists/n64/linkedhashes.php?g=10785 new file mode 100644 index 0000000..84160ce --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10785 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1491df5f012df05ee2d92c65b6eca6f2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10811 b/gamelists/n64/linkedhashes.php?g=10811 new file mode 100644 index 0000000..dbc8af0 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10811 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • beadde9c49b1cc768a61537e495bb294


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10812 b/gamelists/n64/linkedhashes.php?g=10812 new file mode 100644 index 0000000..7dc711d --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10812 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4661B8323F591A1B7C30F83BE64CAE6B


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10835 b/gamelists/n64/linkedhashes.php?g=10835 new file mode 100644 index 0000000..017f0dd --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10835 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a4f7c57c180297b2e7ba5a5feb44fe0b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10900 b/gamelists/n64/linkedhashes.php?g=10900 new file mode 100644 index 0000000..82f0524 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10900 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 53BD4994CB0DFCA0DB955389E96145FA
  • c2907eb2f9a350793317ece878a3b8e3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10912 b/gamelists/n64/linkedhashes.php?g=10912 new file mode 100644 index 0000000..2c39c5a --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10912 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3BD7F78AF738FC3D68D855C2CD525C26
  • 4311A1AEF1898678331F7E3486055307


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10926 b/gamelists/n64/linkedhashes.php?g=10926 new file mode 100644 index 0000000..15f30d9 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10926 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 74fbf4979df136e2edfb71948ecdcfa7
  • deec4faec416f4e02d934c2e42c0caad


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=10962 b/gamelists/n64/linkedhashes.php?g=10962 new file mode 100644 index 0000000..7cd590f --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=10962 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 58D200D43620007314304F4E6C9E6528


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=11200 b/gamelists/n64/linkedhashes.php?g=11200 new file mode 100644 index 0000000..0a57913 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=11200 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1A7936367413E5D6874ABDA6D623AD32
  • 30EC4F3E1C435ED8B1D1FD3788B6A407


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=11236 b/gamelists/n64/linkedhashes.php?g=11236 new file mode 100644 index 0000000..b0d9e6b --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=11236 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 80734de72e29a4ae50a349a8f3ae1ae4
  • d4b63947b407796147d1ebdd905bf0ce


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=11437 b/gamelists/n64/linkedhashes.php?g=11437 new file mode 100644 index 0000000..087b507 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=11437 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1a0db745b64db5fb5c839e19cd03ef81


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=11445 b/gamelists/n64/linkedhashes.php?g=11445 new file mode 100644 index 0000000..c996eac --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=11445 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • aa618746f240b038bd241867dc2fcc81


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=11458 b/gamelists/n64/linkedhashes.php?g=11458 new file mode 100644 index 0000000..e2175f8 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=11458 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2916515602191f78d97533970a04b9cf
  • e2ca81977b174927f3996289313569ee


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=11569 b/gamelists/n64/linkedhashes.php?g=11569 new file mode 100644 index 0000000..5f1f6fc --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=11569 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4ea2d2ee0500a2f968022323be7adccc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=11642 b/gamelists/n64/linkedhashes.php?g=11642 new file mode 100644 index 0000000..d8a2280 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=11642 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7939c1c9c7d6e1ad9bb1867f4bf3c1fa


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=11646 b/gamelists/n64/linkedhashes.php?g=11646 new file mode 100644 index 0000000..4d19184 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=11646 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 05371aeaab97f5a02baa6bb286f5e541
  • 479F1E7ED8DA3DC35256E517360E00A9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=11647 b/gamelists/n64/linkedhashes.php?g=11647 new file mode 100644 index 0000000..d8cc31c --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=11647 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • DFBE9B84C87F918B6024EE5F22F33FAE


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=12732 b/gamelists/n64/linkedhashes.php?g=12732 new file mode 100644 index 0000000..232ddc3 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=12732 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bd329373ca8293f4f879d60a747d3535


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=12733 b/gamelists/n64/linkedhashes.php?g=12733 new file mode 100644 index 0000000..3508754 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=12733 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 70059d4d7ba7ac0f0741b44aec8b44dc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=12767 b/gamelists/n64/linkedhashes.php?g=12767 new file mode 100644 index 0000000..2c3fd02 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=12767 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b5490ac87a3467b11baa2b586a310f4d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=12815 b/gamelists/n64/linkedhashes.php?g=12815 new file mode 100644 index 0000000..29decbb --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=12815 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 965ad2fa317f0644e49a89a3219719cb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=14029 b/gamelists/n64/linkedhashes.php?g=14029 new file mode 100644 index 0000000..6aae1e7 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=14029 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b165d10fb207ebdb2c73633aab102030


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=14035 b/gamelists/n64/linkedhashes.php?g=14035 new file mode 100644 index 0000000..78fb6ac --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=14035 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 9504d9ce75b2aef8ff6a7d6216884393
  • 9f41d4e7c7022734fbfe3bf3500d74ce


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=14036 b/gamelists/n64/linkedhashes.php?g=14036 new file mode 100644 index 0000000..a2532fa --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=14036 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6bbf30e75a6c2fa2b71ae1e9009cbc4e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=14117 b/gamelists/n64/linkedhashes.php?g=14117 new file mode 100644 index 0000000..da06e7c --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=14117 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • defb190a6cd011bf052b3a2681403276
  • f4ed1566f5d1d2e5f5f40bfec50c6380


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=14157 b/gamelists/n64/linkedhashes.php?g=14157 new file mode 100644 index 0000000..d4c40de --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=14157 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7df0190dff8f195f59de7b86812d2860
  • e9013937e0025d305d35dbc259e54de1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=14316 b/gamelists/n64/linkedhashes.php?g=14316 new file mode 100644 index 0000000..01f3349 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=14316 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3b0fda772f58d5f234dba2192d930f86


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=14331 b/gamelists/n64/linkedhashes.php?g=14331 new file mode 100644 index 0000000..8ff63e0 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=14331 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2f9d9399f992ddc0511aeecabce7b527


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=14337 b/gamelists/n64/linkedhashes.php?g=14337 new file mode 100644 index 0000000..62bfe30 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=14337 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 42af1992978229bbb5f560571708e25e
  • 5255c9f757d88188ed3d90faeaff462e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=14351 b/gamelists/n64/linkedhashes.php?g=14351 new file mode 100644 index 0000000..ffca822 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=14351 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7000a0951b6869635acd2db75a53ff68


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=14357 b/gamelists/n64/linkedhashes.php?g=14357 new file mode 100644 index 0000000..2894cb3 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=14357 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 732556723f46102eaa62958da4995af4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=14486 b/gamelists/n64/linkedhashes.php?g=14486 new file mode 100644 index 0000000..7e1daff --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=14486 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 848d65e7d58492aefc585ce7f201381e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=14554 b/gamelists/n64/linkedhashes.php?g=14554 new file mode 100644 index 0000000..00ef250 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=14554 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2ac0f88bea02d67896ffeae9e8ec72e7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=14625 b/gamelists/n64/linkedhashes.php?g=14625 new file mode 100644 index 0000000..516a178 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=14625 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b9d4fb1265600da46153fe89b113bd6c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=14632 b/gamelists/n64/linkedhashes.php?g=14632 new file mode 100644 index 0000000..2bac284 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=14632 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f819a10f6b0e966549ea8b04da897ca1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=14658 b/gamelists/n64/linkedhashes.php?g=14658 new file mode 100644 index 0000000..9810809 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=14658 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9feee5da895fb2e115bb15d1c4a9f906


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=14663 b/gamelists/n64/linkedhashes.php?g=14663 new file mode 100644 index 0000000..9c15db9 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=14663 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • aa1502731d411b59af3f96e11499ca2c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=14664 b/gamelists/n64/linkedhashes.php?g=14664 new file mode 100644 index 0000000..a54ee6e --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=14664 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c2cc0c75209e5606380ce55902f69d5e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=14684 b/gamelists/n64/linkedhashes.php?g=14684 new file mode 100644 index 0000000..4d5ea61 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=14684 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f4ba203179a5c12f4a4bcac88bbce70e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=14694 b/gamelists/n64/linkedhashes.php?g=14694 new file mode 100644 index 0000000..7456fe4 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=14694 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 152ffb83c9d8a438ceb67fb02ff805ae
  • 9254ad15ca75a2cf637f7ff4024f9f5e
  • ca5e37accedf72900a7c6a8b7cf7b599
  • e00ce18ae7b9cc93ecdbb2fcc0e24b50
  • fc0e69509dc22c6d160d68e4e6833482


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=14721 b/gamelists/n64/linkedhashes.php?g=14721 new file mode 100644 index 0000000..f1201c8 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=14721 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 167a3502f06cf0eef56758533f3d0e52


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=14739 b/gamelists/n64/linkedhashes.php?g=14739 new file mode 100644 index 0000000..5e4c44e --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=14739 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a232866fc439eda98b648047ffb243cb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=14740 b/gamelists/n64/linkedhashes.php?g=14740 new file mode 100644 index 0000000..8560089 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=14740 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6a7dda1f30560242fd341c9156a5612f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=14897 b/gamelists/n64/linkedhashes.php?g=14897 new file mode 100644 index 0000000..fd175a7 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=14897 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f0595a36eab6109c5ff2420eb452b6e2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=15379 b/gamelists/n64/linkedhashes.php?g=15379 new file mode 100644 index 0000000..bf80af0 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=15379 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1b61e2d31b6c00fcc4985db449549d7f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=15805 b/gamelists/n64/linkedhashes.php?g=15805 new file mode 100644 index 0000000..544afd4 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=15805 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cecab8df02c02f38c9cf1bdd57b1da00


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=16215 b/gamelists/n64/linkedhashes.php?g=16215 new file mode 100644 index 0000000..2b9e4d1 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=16215 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 22 unique ROM(s) registered for it with the following MD5s:

  • 0da45298d04aa8678f37c8ea08e8fcb6
  • 0e1b7e8aaabc515a2cae2deac020eb02
  • 389b9cd772a2f289965c4bd34010155a
  • 3f3b194489452cdc964f859956a37689
  • 41722362d8b0736408eac5c0ad4a81cb
  • 4450b9c124b2acef41e533231e71601f
  • 45011153570f79d05adbd5325c8b4408
  • 586a134a9f6db70940761d840d37568f
  • 63ab1ccc87d1ee6efa76997d69314f4c
  • 6b6394d9e1567e4b2569ad8092c5bd60
  • 71dd35d192a86df43ca2c9bfeabc3134
  • 76383fd9805f3b2bc3c45a6b2186932c
  • 7716eef7b4298586b0dd64362d7a4bb1
  • 86d47fdee9c4aff948caa36cb7dfe3be
  • 8df4c20933e210c94ca4e37ad4049c1f
  • 9f2a9801179be35563d6b176cf6b9265
  • aa1a2926a44a8a82b7f7af90d6d09965
  • ad2873ac9d98194ffe62669e8365a678
  • be0454db882168bbf0f70ff87f4ad0b3
  • d1488dd9c6621d31c890d2ad6d4c4bc7
  • de233aaacc2394bb36b16f6cad9e7099
  • de815e72755910aa3b1db632dd439706


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=16228 b/gamelists/n64/linkedhashes.php?g=16228 new file mode 100644 index 0000000..31ff7e5 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=16228 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 20 unique ROM(s) registered for it with the following MD5s:

  • 12361cf2e1c3a3d0c754c26734974403
  • 326d77a82a7cbb1bd524a02b0fb3acfd
  • 354aa4a45fa4237330c240e878faa998
  • 35d600ca4e4b998b670515bf5e7df269
  • 366a34ede2531a2f228f85db425a2583
  • 3e68c58f89e33cd33c46cfd289e3ce82
  • 51245f9dc0c4b43705f04b269c91f7ae
  • 6105028474aea251a50ac523e2477406
  • 73f58f49a9cc1eda16ff3af5fd1d6dac
  • 74c3ef452478b9718d45aa4e678fa52c
  • 7c43b4e849128bf1478894ac89d8a513
  • 91a75d0d0108b6c29f5db3176e939749
  • 9729128f20c0fbf88cee43bc35be75da
  • c3299e1f0c41975fea66970031bb3abd
  • c710fd0dc573437635f345687fa4fbc0
  • c93875b06c5f3436d77416ab70b2158e
  • d8fc198ac97da8b2a042e37d4547abab
  • e5a536310ef9d25a343616168275ba3c
  • f58431c29651f3e8bfdefb3792398e34
  • fd2242679f01015cdc9e6d3c3e678578


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=16231 b/gamelists/n64/linkedhashes.php?g=16231 new file mode 100644 index 0000000..9b39293 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=16231 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 0e0e920ab13ef13508f5a98cc4cd2ff8
  • 226cfdb297116f29bfb01bd4dec9f064
  • f2b2d71de20bc16ff9f036d965a2e499


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=16389 b/gamelists/n64/linkedhashes.php?g=16389 new file mode 100644 index 0000000..a858843 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=16389 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a56b15faf24389dd375e7afb03a7d3c1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=16489 b/gamelists/n64/linkedhashes.php?g=16489 new file mode 100644 index 0000000..365074b --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=16489 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d18eb3dcdf403b53c750cc95d5a6beef


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=16504 b/gamelists/n64/linkedhashes.php?g=16504 new file mode 100644 index 0000000..31e5ea9 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=16504 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6ff84514a871a1bdffd017a5f431d83d
  • d77d20bdea051ba613723be9b931b4ae


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=16509 b/gamelists/n64/linkedhashes.php?g=16509 new file mode 100644 index 0000000..7522a1f --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=16509 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 688d9e956cd406fade6cbe21bc033392


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=16529 b/gamelists/n64/linkedhashes.php?g=16529 new file mode 100644 index 0000000..6131fcc --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=16529 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 621e92d72998d8ab3ad9312e39cefed6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=16558 b/gamelists/n64/linkedhashes.php?g=16558 new file mode 100644 index 0000000..14a7ca5 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=16558 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 429f5628eea9557417494a1bf5634adc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=16573 b/gamelists/n64/linkedhashes.php?g=16573 new file mode 100644 index 0000000..ed73f48 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=16573 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7e4d24dae3a3dfcd49c5d4814bd3ce6c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=16759 b/gamelists/n64/linkedhashes.php?g=16759 new file mode 100644 index 0000000..a28cb2d --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=16759 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 20 unique ROM(s) registered for it with the following MD5s:

  • 0174926a03d2965049a5bb43d90f943b
  • 269dfed8afc0645e2caed1a06467c3d5
  • 36bf506008be2a5252381a2fcc9e66f2
  • 40af13f185da44afcb59f8a27de63f1b
  • 478588303d8314fc011c5eb9417ae7d4
  • 4942df4fb3cbe06a6d012e1ac8cd50c0
  • 6d51da342c2d2948a9c7b124c7b29c2a
  • 81da0fbbeb363f77ce5b9b6301665da7
  • 863adcabd65baef49cfe8ee67fb6ca3e
  • 87104ad54ec2db14860292c9609eef7e
  • 9ba938a01041a22918bd88febb88d68f
  • 9f0e4fdcbca74726abd0ed3ebbb59279
  • acd8bbfe407d4c9a85703f3d776751c4
  • b10345aef0198371af70aa798477b358
  • d12d96252e74af34786449b0eb7d758f
  • d7ba627a6475b1ee874ac99c399e1600
  • d87b79ca31a9deebb88d247a8aad7f03
  • e522b5cca0089538384010d8c5388b5f
  • fee4ec26cb3eba7fff21feb1df009c35
  • ff5c6ed0025b957d5ec59b4bd93791ce


+
+
+
+ \ No newline at end of file diff --git a/gamelists/n64/linkedhashes.php?g=30 b/gamelists/n64/linkedhashes.php?g=30 new file mode 100644 index 0000000..232bf47 --- /dev/null +++ b/gamelists/n64/linkedhashes.php?g=30 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 0EF01AFDE32E40228C03904E3D884ADD
  • 772CC6EAB2620D2D3CDC17BBC26C4F68
  • BAAF237E71AA7526C9B2F01C08B68A53


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds.html b/gamelists/nds.html new file mode 100644 index 0000000..ae9e2b9 --- /dev/null +++ b/gamelists/nds.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games Nintendo DS - RetroAchievements +
+
+
+ +
+

Nintendo DS

TitleAchievementsPointsLeaderboards
23156 (201)
91563 (271)
75700 (3290)
1961 (65)
74540 (805)
33250 (315)1
55455 (724)10
68625 (1974)
94715 (1779)
881010 (2953)3
16245 (274)
192640 (2420)
80520 (1006)
40410 (809)
12323 (366)
70540 (1650)
33200 (240)
58500 (815)
147915 (1240)
67340 (247)
41460 (1807)1
50540 (2360)
56438 (704)69
70565 (1499)9
931610 (7857)25
18180 (152)
29320 (412)
66730 (2099)64
112831 (1910)30
119766 (1064)
1695 (534)
90990 (1799)
64755 (1159)
69556 (1274)2
62635 (1874)
64910 (4840)2
55543 (745)
24157 (272)
58428 (1442)2
70620 (1845)45
951 (54)
88550 (876)
70510 (616)
80535 (699)
44560 (899)
60550 (870)3
90850 (5277)
1381555 (77277)30
1021187 (8079)13
74700 (2691)5
61910 (3004)
66455 (1898)
42373 (537)
43407 (447)1
28253 (272)
120500 (739)
76520 (3672)14
46460 (1012)6
18420 (797)
35275 (1000)18
48360 (50)
1921077 (3104)39
65520 (1812)18
61445 (948)9
62450 (673)
70490 (2041)15
45516 (992)20
98888 (3030)1
72530 (2079)5
48578 (1104)1
60350 (1381)
37531 (982)40
63295 (400)
19253 (468)
720 (20)2
1176 (94)
612 (12)
735 (39)
15150 (172)
Totals: 79 games483741034 (187209)503

+
+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=1172 b/gamelists/nds/linkedhashes.php?g=1172 new file mode 100644 index 0000000..5057834 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=1172 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e8946b706009b04120c16453c14f77e6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=11729 b/gamelists/nds/linkedhashes.php?g=11729 new file mode 100644 index 0000000..2ae3170 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=11729 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 157223a8b0b6df3c0d0ca85980d3a443


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=11730 b/gamelists/nds/linkedhashes.php?g=11730 new file mode 100644 index 0000000..9170876 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=11730 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9aad4afbb09bc873ae819bb74f238986


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=11732 b/gamelists/nds/linkedhashes.php?g=11732 new file mode 100644 index 0000000..f8092a3 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=11732 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 361e825aa24fc471a317c510130bf4c3
  • 4432098e35a63d0f2ff7bdbc7a848e3c
  • 4aedcacb9789b4835b220d1c71a56c06
  • 691e8ea321378b28415f74a15cd96249
  • d26082d93e5d0a5b9bd12c7dd11f4ab2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=11788 b/gamelists/nds/linkedhashes.php?g=11788 new file mode 100644 index 0000000..57cbde4 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=11788 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c5df0ca879fe7cd10a553e8b6031db79


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=1199 b/gamelists/nds/linkedhashes.php?g=1199 new file mode 100644 index 0000000..8608ce7 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=1199 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e08a2e48488c7370f0dfce6ac7dddc1e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=1200 b/gamelists/nds/linkedhashes.php?g=1200 new file mode 100644 index 0000000..60d3130 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=1200 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 18dfe6193d761ba84c9dd14390597753


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=1226 b/gamelists/nds/linkedhashes.php?g=1226 new file mode 100644 index 0000000..d7553d9 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=1226 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 999654092d72821ef56a7c8de260cc64


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=12711 b/gamelists/nds/linkedhashes.php?g=12711 new file mode 100644 index 0000000..b2dd153 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=12711 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 57afd3c093764002a17a6aa376f1eefe


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=12718 b/gamelists/nds/linkedhashes.php?g=12718 new file mode 100644 index 0000000..0a9cfa9 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=12718 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 76cf05a94a00998e28878ffe3e82a3ba


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=12747 b/gamelists/nds/linkedhashes.php?g=12747 new file mode 100644 index 0000000..b46c3d3 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=12747 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8ce06f66ab81444511bef20b3fe9c632


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=14705 b/gamelists/nds/linkedhashes.php?g=14705 new file mode 100644 index 0000000..32f2332 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=14705 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • a14581bb366934d0ee79d9f56014fcae
  • f218173c055cdf9d798de9d60c295e3a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=14736 b/gamelists/nds/linkedhashes.php?g=14736 new file mode 100644 index 0000000..b427f90 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=14736 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d25ee9071406aa6421b8d16b5b7b2d3d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=14763 b/gamelists/nds/linkedhashes.php?g=14763 new file mode 100644 index 0000000..b89753d --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=14763 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6d77d9f9b34323e4060206b675620b8d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=14770 b/gamelists/nds/linkedhashes.php?g=14770 new file mode 100644 index 0000000..472d4dd --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=14770 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 84eee7609ac2b8bf7abd5ff763f7a7df


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=14782 b/gamelists/nds/linkedhashes.php?g=14782 new file mode 100644 index 0000000..3d5237b --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=14782 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 52e840515c5001e4af1f80619a3d796a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=14786 b/gamelists/nds/linkedhashes.php?g=14786 new file mode 100644 index 0000000..2ff8a2a --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=14786 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c7bbf6af9d6876098272e84ceee2029e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=14787 b/gamelists/nds/linkedhashes.php?g=14787 new file mode 100644 index 0000000..7d90e8e --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=14787 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3d0dc70dd9c7d0250669c4b8eb30d9b8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=14806 b/gamelists/nds/linkedhashes.php?g=14806 new file mode 100644 index 0000000..9a54d72 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=14806 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3cd035c8692ec203a85b52d9e0c1938c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=14823 b/gamelists/nds/linkedhashes.php?g=14823 new file mode 100644 index 0000000..dbd3933 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=14823 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0c130bbb232d33f96db02f4974f6d591


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=14835 b/gamelists/nds/linkedhashes.php?g=14835 new file mode 100644 index 0000000..0bbbce9 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=14835 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e19b7b3ade640ac4b96b529f860f2f0a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=14842 b/gamelists/nds/linkedhashes.php?g=14842 new file mode 100644 index 0000000..94528c7 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=14842 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 483d2cde5544dd146afa0077356b384f
  • 48f25e6aa3d44ce9cc718462fdffaf0b
  • 64a8f664c93bcef5f5487d8e7f59682a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=14845 b/gamelists/nds/linkedhashes.php?g=14845 new file mode 100644 index 0000000..42008b4 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=14845 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 44401d4fca6646cdbcb02b9c29258ff5
  • 6aa053cb058816af3808a78b2172c0c7
  • b989fee12f208a84c0bc788fe9aa7bbb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=14856 b/gamelists/nds/linkedhashes.php?g=14856 new file mode 100644 index 0000000..faa3748 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=14856 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c3b1916756737f2c4117cc95c1d51ac7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=14860 b/gamelists/nds/linkedhashes.php?g=14860 new file mode 100644 index 0000000..479af18 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=14860 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 22d1e61f6bc137b752f8728e31fa3485
  • af30a7e5e52586957e4d9112ea5b8b48


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=14906 b/gamelists/nds/linkedhashes.php?g=14906 new file mode 100644 index 0000000..472d624 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=14906 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 19f1c299901dcd89b912b246d85f3d44


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=14907 b/gamelists/nds/linkedhashes.php?g=14907 new file mode 100644 index 0000000..8c2c11d --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=14907 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ff8f8297d9e03095285fcbc6fad65eb6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=15058 b/gamelists/nds/linkedhashes.php?g=15058 new file mode 100644 index 0000000..034a460 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=15058 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 36143c4b7b36a0220b5dcdf9415f63bd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=15334 b/gamelists/nds/linkedhashes.php?g=15334 new file mode 100644 index 0000000..4f9a4df --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=15334 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a3da5f6eba3abeb91f489a71c4ed1eaa


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=15349 b/gamelists/nds/linkedhashes.php?g=15349 new file mode 100644 index 0000000..70b354e --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=15349 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 212ce2de4bef270dd0a7591ee5b74ff2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=15375 b/gamelists/nds/linkedhashes.php?g=15375 new file mode 100644 index 0000000..f10d327 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=15375 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3f39c39315c8d23e6d55841e3143d320


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=15591 b/gamelists/nds/linkedhashes.php?g=15591 new file mode 100644 index 0000000..acd5f20 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=15591 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • ac7e3f5c5315a7a0370f96524c4c71c9
  • e14e7b2831095a59fcec29d8fa544bcb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=15656 b/gamelists/nds/linkedhashes.php?g=15656 new file mode 100644 index 0000000..e4dd990 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=15656 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2c28461acd2e7bf1722c9e40eee4e732


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=15736 b/gamelists/nds/linkedhashes.php?g=15736 new file mode 100644 index 0000000..b23db7a --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=15736 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2da47dd9b3eb8372d1080fd93cf32228


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=15737 b/gamelists/nds/linkedhashes.php?g=15737 new file mode 100644 index 0000000..324a794 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=15737 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6fc6d6937ead444ed1667c209719472d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=15981 b/gamelists/nds/linkedhashes.php?g=15981 new file mode 100644 index 0000000..cad9479 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=15981 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cd39b46786f48933fc468e8236fe478f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=15987 b/gamelists/nds/linkedhashes.php?g=15987 new file mode 100644 index 0000000..2067450 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=15987 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4181a16ae96d3d503cd24286d5f1b106
  • ffa2ea862b658d9d658c1c33ff9a1603


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=16211 b/gamelists/nds/linkedhashes.php?g=16211 new file mode 100644 index 0000000..a524cb9 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=16211 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5f0f5a0d59f52da2ae03c50736a1dc5d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=16249 b/gamelists/nds/linkedhashes.php?g=16249 new file mode 100644 index 0000000..30442e7 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=16249 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8fed72027fdab469a320acb30ced3426


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=16279 b/gamelists/nds/linkedhashes.php?g=16279 new file mode 100644 index 0000000..e7b330a --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=16279 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 318cf0621b0204b5daae3052177778c3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=16356 b/gamelists/nds/linkedhashes.php?g=16356 new file mode 100644 index 0000000..7264479 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=16356 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 12c91594baff50328ec5503c0e4508ae


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=16502 b/gamelists/nds/linkedhashes.php?g=16502 new file mode 100644 index 0000000..3810f60 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=16502 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0676914a01838bee242aa545baf3e778
  • 65bc567613b4b3b209143d3375c9b9f0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=16656 b/gamelists/nds/linkedhashes.php?g=16656 new file mode 100644 index 0000000..0f3c917 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=16656 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bbcc1c5066fd8b83a2cfb324c3eec2de


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=17066 b/gamelists/nds/linkedhashes.php?g=17066 new file mode 100644 index 0000000..180854a --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=17066 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0fed87589592785966f9fa86dd16f616


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=17155 b/gamelists/nds/linkedhashes.php?g=17155 new file mode 100644 index 0000000..b921d37 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=17155 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • a32d07b1ebd5c7a276355aacd707ffd0
  • e9ba14d5ea3eaaa0ec3846f0c21dbd2b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=2642 b/gamelists/nds/linkedhashes.php?g=2642 new file mode 100644 index 0000000..cea9a96 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=2642 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 590e2a2a37642bc79febcfa20c58cc57
  • b7a295835066be33396583ef4da64af1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=3103 b/gamelists/nds/linkedhashes.php?g=3103 new file mode 100644 index 0000000..977ee31 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=3103 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b1731c9ae7cb1ff05ef9a8ebc361f75c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=3118 b/gamelists/nds/linkedhashes.php?g=3118 new file mode 100644 index 0000000..10545bf --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=3118 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b8a0eb5290c19b5b5603c431f06608c4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=3529 b/gamelists/nds/linkedhashes.php?g=3529 new file mode 100644 index 0000000..e7fb68a --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=3529 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 9ea74998bf715925ea743193ec39fb81
  • f4b27b6a76f54df9c804ff635b57ce95


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=3887 b/gamelists/nds/linkedhashes.php?g=3887 new file mode 100644 index 0000000..1b1aa5b --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=3887 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bd562276c75b98cbd185231c1b1d016e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=4887 b/gamelists/nds/linkedhashes.php?g=4887 new file mode 100644 index 0000000..5b2a017 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=4887 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • e08ab843fe9609f0873c84a8a7678dc6
  • ee94aa18ce94534f8b30a50e0930cf02


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=4911 b/gamelists/nds/linkedhashes.php?g=4911 new file mode 100644 index 0000000..bccd6e6 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=4911 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f58b3448add412176e45e7394cbea223


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=5522 b/gamelists/nds/linkedhashes.php?g=5522 new file mode 100644 index 0000000..d55cffd --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=5522 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 02b82366dce96b554440fd0b39b491d3
  • 9538d811c4628fc7df447945fc8f1f28


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=5626 b/gamelists/nds/linkedhashes.php?g=5626 new file mode 100644 index 0000000..d0bed86 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=5626 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8d54864bf255ab0b2b0513d4213dc76f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=5708 b/gamelists/nds/linkedhashes.php?g=5708 new file mode 100644 index 0000000..d5fc258 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=5708 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c28c2bd017631a063908bb933b12ef5f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=6102 b/gamelists/nds/linkedhashes.php?g=6102 new file mode 100644 index 0000000..d02ea17 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=6102 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 91ea6a181df83c2a2b1b256a6190fb21


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=7010 b/gamelists/nds/linkedhashes.php?g=7010 new file mode 100644 index 0000000..f705573 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=7010 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • deaebf0c01c2a27b3a3f9db7bd2e014b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=7062 b/gamelists/nds/linkedhashes.php?g=7062 new file mode 100644 index 0000000..52c7718 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=7062 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d9e18922e7c60b90c0111a9111a6d054


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=7212 b/gamelists/nds/linkedhashes.php?g=7212 new file mode 100644 index 0000000..f6fcf67 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=7212 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 12 unique ROM(s) registered for it with the following MD5s:

  • 1051ea6f1d599812a8a382b2fa4b02b2
  • 13816087674da5a8a9323aad3c304772
  • 560f12c326c221fbbec8a395d4a62d91
  • 73b5a0fbcffeb7719af184170e057d34
  • 7a78d767cbcfce6262434d25aacd39bf
  • 89ee643f6cd30e5da9eea8b23476dd73
  • 90b23a8fd1970afd923132bd485c3b92
  • c06cdec12d9aeb9a38fe9578638e5d55
  • dfce09d0d107abfd669156f6e867578f
  • e2c6eda71504be7e8ca6f5c77f0d253a
  • e89a1c0c22f57a75a326f94c74044724
  • eaffc2eaf15f9c6705cea3036bb7a3fa


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=8306 b/gamelists/nds/linkedhashes.php?g=8306 new file mode 100644 index 0000000..2e4812b --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=8306 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ba8769d38c5d59a58b9fc011c5ae23f6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=9252 b/gamelists/nds/linkedhashes.php?g=9252 new file mode 100644 index 0000000..5f4ca8e --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=9252 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d68d66fa38112e6ab59518caf2aca179


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=9407 b/gamelists/nds/linkedhashes.php?g=9407 new file mode 100644 index 0000000..68c05ad --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=9407 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9d45cdbb61f211198acce8d2baac379b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=9424 b/gamelists/nds/linkedhashes.php?g=9424 new file mode 100644 index 0000000..2a3ade9 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=9424 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0e22a9f70a23f3b5661eb052f657b557
  • be435c50ad90c6e365b8bcbc18bfdf42


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=9518 b/gamelists/nds/linkedhashes.php?g=9518 new file mode 100644 index 0000000..5410ba4 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=9518 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • e8f6f07eb7138aec4d75492b3511dc03
  • fc519507f2e6f07c1f212ea00744e21a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=9537 b/gamelists/nds/linkedhashes.php?g=9537 new file mode 100644 index 0000000..fd99ed8 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=9537 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 305d9643dd405800b56a4bc0ebcd7081


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=9564 b/gamelists/nds/linkedhashes.php?g=9564 new file mode 100644 index 0000000..d2d2558 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=9564 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 269687b48107a669825c3762f917c301
  • 32e35509e692dff1e3e44c1a1d1c1bb7
  • 39978b9ba19dbe405ebebd60fa1d3f10
  • a0834625548daa8fda9fec64fd220361


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=9617 b/gamelists/nds/linkedhashes.php?g=9617 new file mode 100644 index 0000000..32c1fb1 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=9617 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 56dac8877647e714535ffd399f99aa69
  • 76434a8ed6fa436cd9f214390577fc98
  • d9cf8bce6b9a45d491fc100693c30e25


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=9751 b/gamelists/nds/linkedhashes.php?g=9751 new file mode 100644 index 0000000..5905bf3 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=9751 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • caa30b4682c46779e7239fdc480ea6a6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=9759 b/gamelists/nds/linkedhashes.php?g=9759 new file mode 100644 index 0000000..77548b9 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=9759 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f428d581271cef743f46c6e3726e2af4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=9770 b/gamelists/nds/linkedhashes.php?g=9770 new file mode 100644 index 0000000..4cbde8d --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=9770 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0bfd0fc908b0e7c8479d53e4cad82b28


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=9818 b/gamelists/nds/linkedhashes.php?g=9818 new file mode 100644 index 0000000..a07b198 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=9818 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5810117d6f144b9324a20ef84faa0c66
  • d9ed91562bd7576eb8098a5e9f32e96e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=9831 b/gamelists/nds/linkedhashes.php?g=9831 new file mode 100644 index 0000000..b01d06e --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=9831 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 05468925e9cd2423a05fcc0d3891105e
  • 44ea6af95d182b0ebcb7db8e4587d4fb
  • a927df1d6fd962d8e115de982486f955
  • ca816da2afd8c1c885a8c3c373f1f761
  • f28bde56e92db8e033febeda8508819d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=9898 b/gamelists/nds/linkedhashes.php?g=9898 new file mode 100644 index 0000000..aefd118 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=9898 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7b94041cdde943449d892215873017a9
  • d82d035fe29dcc0b558f421dadfa500e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=9914 b/gamelists/nds/linkedhashes.php?g=9914 new file mode 100644 index 0000000..bbdfa73 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=9914 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 71cbe0d1a0765e01c45b594c6dbe40e6
  • f597552b23cf6f19a4af191cc2686eac


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=9983 b/gamelists/nds/linkedhashes.php?g=9983 new file mode 100644 index 0000000..1a46538 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=9983 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ba3c4052e00c5cc31df5d5534c39de1b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=9985 b/gamelists/nds/linkedhashes.php?g=9985 new file mode 100644 index 0000000..66000f2 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=9985 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 02c0ea90b4ff3e475ec311e2b1da52ba
  • 7d37fbb2cb80729889f2e4459bfcc566
  • 92d27bc2848d5cdf0750c9cbd6a6592a
  • ac1462c2f0516f53776d81c69f3263c4
  • e370f0a12961dd4a5ee30c168bb9ba09


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nds/linkedhashes.php?g=999 b/gamelists/nds/linkedhashes.php?g=999 new file mode 100644 index 0000000..fc5ba44 --- /dev/null +++ b/gamelists/nds/linkedhashes.php?g=999 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 31498d5450bb386f388e450ad1fe8f5a
  • 7ade38ca60377a283d9f99884bc03bdc
  • b3a8515440c1da4b8ff04647a71aaabe


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes.html b/gamelists/nes.html new file mode 100644 index 0000000..31595da --- /dev/null +++ b/gamelists/nes.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games NES - RetroAchievements +
+
+
+ +
+

NES

TitleAchievementsPointsLeaderboards
19140 (375)2
19200 (603)1
30600 (5533)2
42500 (849)
28435 (1583)1
22180 (387)
60415 (1235)1
15275 (608)
35510 (2717)
42425 (1295)1
15262 (638)
50760 (7216)2
20400 (1002)1
24340 (1106)
30445 (1410)
37370 (1344)
25255 (1346)
1362 (125)
52474 (1594)
28400 (880)
24205 (310)
35410 (1031)
20240 (393)7
30310 (608)
37392 (949)
20250 (421)1
61200 (439)
23500 (4238)
17145 (223)
35365 (2025)1
20225 (417)
25300 (1284)
50600 (1934)1
90500 (2409)
30435 (1774)
19250 (608)
27288 (1001)14
82800 (4953)1
39 (10)
26330 (1087)
21310 (705)
44440 (3247)1
34325 (1137)
32325 (590)
18335 (2096)5
28205 (345)
21560 (3331)3
20410 (897)3
15131 (215)
89380 (1467)33
40400 (1817)
41300 (693)
47370 (1885)
26360 (1336)
24365 (1112)
48621 (5466)
35335 (842)
15175 (467)1
921300 (14700)
75650 (8270)4
25475 (3173)
24355 (948)
75380 (1288)
41350 (955)3
27275 (889)
20270 (1964)
55460 (1376)
51253 (304)1
30400 (1371)6
34400 (1216)
15375 (1145)1
15215 (715)
40300 (629)
27250 (337)
40425 (1952)2
44425 (1510)
55626 (3750)
21190 (217)
16128 (294)1
60750 (2815)
48277 (406)
16300 (1425)1
35500 (867)
55550 (704)
23235 (1384)
16195 (743)1
42430 (1617)
26245 (737)
25386 (2296)2
27295 (507)1
39520 (1907)
1919 (19)
33280 (977)
33550 (2724)
40533 (3480)5
32425 (707)
52555 (5954)
27185 (410)
14205 (340)
32256 (527)
57800 (3410)
29300 (1247)
25279 (2769)4
32200 (246)
20225 (345)
1451085 (8311)1
47475 (1684)
30400 (3633)2
26310 (1818)
32400 (5446)
37495 (904)
39435 (714)
40430 (881)
20280 (1336)
25330 (868)3
29470 (3068)2
1375 (96)2
11200 (278)
21525 (4882)
28240 (742)
20200 (339)
34330 (870)
20185 (390)
51510 (1432)
19210 (685)
17220 (1017)
70500 (3925)66
43410 (1552)
53390 (907)
44417 (688)
19221 (726)
36500 (1024)
51650 (3421)2
39325 (541)
75500 (856)
50400 (621)
43360 (483)
15200 (1113)
31300 (864)3
64640 (2569)1
74750 (1323)
32325 (537)
38325 (991)
9100 (412)2
35550 (769)
17260 (1642)20
36600 (6368)3
8100 (174)1
76424 (972)
65300 (484)
17110 (155)
15153 (252)1
26336 (799)13
64450 (729)
77630 (1106)
16400 (1067)153
47480 (834)
23196 (306)
45495 (998)
33355 (2211)
21200 (512)
25385 (2049)
49490 (1756)
16410 (2104)1
21320 (798)1
24415 (1099)
17300 (3096)4
65725 (10981)
29300 (787)
31156 (305)
26445 (3257)
25300 (593)
35500 (1053)
66518 (1124)
18203 (619)2
15150 (684)
685 (115)
38450 (2651)
50692 (1487)2
37433 (1909)1
32280 (416)1
1255 (56)1
18256 (1103)
100700 (2665)
42400 (1642)
24416 (2152)8
16340 (1584)1
46190 (297)
50620 (3368)
38320 (1225)3
31241 (552)
33430 (1238)
870 (104)
63472 (1120)
19315 (568)3
40315 (885)
30450 (3317)
11190 (325)1
28310 (512)
24290 (732)
19205 (327)
34400 (1687)3
21230 (589)
27335 (4528)
35370 (1183)
18400 (1040)
20300 (904)
28350 (694)
17151 (541)
26315 (322)
17155 (196)
67517 (1081)
17145 (477)
32300 (968)8
32350 (944)
24350 (1124)
24355 (1164)1
30295 (1172)
11106 (227)
10100 (302)1
21235 (521)
37445 (815)
22371 (1095)
30330 (518)1
32355 (686)
30305 (458)
27275 (968)
32295 (779)
32370 (726)
26415 (2068)
23415 (3086)107
33340 (3005)1
18200 (720)
21170 (448)1
17360 (1225)
51400 (510)
61502 (3935)
10120 (523)
44700 (6298)
29326 (1090)
14215 (323)
22355 (1436)4
37407 (1672)1
66703 (1991)
37316 (740)
19300 (474)
22275 (639)
69800 (5378)
24385 (650)1
25400 (1749)
45565 (3147)
56420 (2006)
1793 (107)
52589 (2795)
15165 (217)
64400 (1205)
59493 (1214)
27415 (832)1
50435 (2152)
52466 (1918)
23185 (269)2
55485 (2942)
26300 (901)2
27500 (780)
52400 (4538)
21235 (768)
8240 (361)
60435 (2369)
36400 (847)
35400 (1074)2
35220 (563)1
15240 (787)2
21442 (1984)4
56183 (228)1
30225 (316)
20150 (199)
50490 (1597)
84800 (2411)
83740 (2651)
42327 (478)
35300 (419)
37463 (711)
35400 (3898)
97650 (3663)1
78400 (1229)1
31690 (7111)
25353 (1007)8
30400 (776)
1665 (66)
2065 (96)
27280 (1274)
1301136 (17117)2
45346 (593)
34333 (1257)
36318 (519)
24330 (1175)57
51290 (357)2
25230 (443)
34400 (1737)2
32400 (2194)
48430 (745)1
29325 (1342)7
15400 (2120)2
30400 (4566)3
12260 (1052)
26436 (826)
20200 (531)
49646 (4539)6
40400 (997)8
33520 (2904)
53500 (1214)
20230 (292)
36525 (1828)1
39510 (1477)5
37500 (1553)1
35385 (1148)
34325 (1870)
12190 (406)1
30304 (1321)
58420 (1311)
1070 (85)
20265 (440)1
14200 (547)
25352 (1323)1
12200 (663)2
19375 (1734)
28315 (991)8
32420 (2021)1
42380 (3880)2
42405 (1546)1
21375 (2100)
28380 (2837)
33360 (1194)1
950 (61)
24230 (559)
26285 (1417)2
19400 (414)
28500 (1157)
24400 (685)
17160 (245)
33400 (1512)14
52255 (417)
28400 (907)
28441 (3949)14
43444 (3400)
21340 (732)
61200 (469)
16130 (194)
33415 (5262)
24340 (1343)1
20246 (1197)9
29400 (1293)8
16230 (653)
33300 (947)
40225 (392)1
15130 (153)
42480 (3509)
39540 (1376)
48575 (2465)
61400 (2087)2
33281 (997)
24300 (502)
34385 (991)
30400 (2129)1
29400 (580)
23143 (186)
29215 (328)
28375 (1021)
42295 (442)
33490 (1982)
25253 (580)2
22205 (360)
33375 (1314)
44290 (1904)2
19180 (503)
26430 (1224)
42250 (328)
37500 (2647)
12130 (0)
48415 (1988)1
41344 (1076)
30400 (520)2
50500 (2360)
43391 (2472)
27333 (593)6
25300 (941)5
17320 (618)
60535 (2319)27
11105 (127)
25400 (3281)2
26195 (287)
42533 (2178)
23320 (1860)1
26290 (1322)3
41500 (2507)
15140 (266)
42500 (2733)1
15170 (384)
20250 (420)
39236 (607)4
13150 (376)
29400 (1778)
23325 (1143)
33500 (2378)1
20200 (537)
34300 (725)
36292 (913)
20265 (535)
28425 (1958)
31285 (472)
28290 (724)1
27260 (361)
25300 (483)
33319 (1244)
44612 (2231)2
22295 (480)
72757 (6400)34
51463 (2018)
92700 (6091)
51513 (2602)79
22340 (2889)
19290 (458)
26350 (428)2
20150 (192)
17160 (269)
2652 (52)
47377 (1814)
21400 (529)
36405 (864)
40405 (643)
635 (46)
31310 (1078)
54430 (771)
30420 (1207)
57430 (622)
15196 (628)
15170 (584)
37520 (3941)4
51850 (6747)15
27360 (1683)
13160 (361)
28285 (399)
35500 (2766)1
660 (64)
54531 (3217)31
17250 (353)
8110 (214)
43500 (1254)
18336 (2908)1
25250 (707)2
40295 (761)
43439 (3159)
26285 (1311)
40325 (2218)3
27400 (658)
31320 (811)
34520 (1278)1
23420 (1661)2
44235 (519)
70574 (1956)
89640 (843)
85740 (1006)1
37200 (279)
47185 (744)
31305 (696)
23320 (1178)1
18190 (294)
24170 (227)
27255 (427)
17175 (337)1
20400 (1537)1
12135 (161)1
28110 (203)3
33350 (1682)
7185 (234)
41500 (841)
39300 (673)3
59450 (1009)
23192 (288)
90400 (1285)
56424 (1564)2
1188 (140)
1125 (25)4
18250 (399)
67365 (2019)
28340 (367)
50650 (5933)7
42480 (3063)1
22400 (1085)4
19290 (1047)
43505 (6656)2
37455 (816)
41326 (514)6
37575 (2221)
29480 (1182)
42585 (1324)
21270 (765)
49640 (2197)
30390 (1644)1
13172 (697)2
14400 (520)
36460 (1146)2
5190 (209)
3150 (152)2
24560 (641)
20400 (550)
13400 (590)
25395 (487)
21515 (611)
34612 (1017)
23390 (411)
12270 (521)
39680 (2328)
96400 (1256)21
727 (27)
65965 (3209)
31400 (3261)
30300 (570)
34309 (258)
919 (19)
63685 (940)
941000 (2864)
27296 (427)
72400 (2234)
89540 (916)
33296 (1114)
21400 (2355)
34400 (807)
75555 (629)
70900 (2108)
41395 (575)
38405 (528)
60465 (584)
58450 (521)
46500 (612)
56490 (625)
52435 (568)
56480 (698)
32490 (528)
1262 (70)
25335 (506)
27400 (554)
16125 (151)1
2090 (97)2
11100 (157)1
93692 (1331)
28400 (621)
24400 (468)
45400 (950)
13290 (1767)1
31200 (325)
35625 (1016)8
26400 (1831)1
1195 (163)3
9150 (247)
1033 (33)1
1680 (111)
24400 (944)
34710 (6886)
22220 (449)
28312 (1185)
721 (21)
12180 (219)
13120 (225)2
10250 (398)
10100 (112)
21210 (816)
60520 (578)2
66495 (7488)26
1370 (118)
8100 (102)2
24150 (306)4
10102 (115)
925 (25)
15155 (276)5
2075 (79)
22115 (170)
27200 (1836)
54385 (551)3
24325 (638)
975 (96)
10 (0)
23330 (3517)6
21220 (484)
12140 (254)
2142 (42)2
1018 (20)1
1101196 (12888)100
38400 (956)
17400 (757)
33400 (691)
15130 (233)
16115 (319)
43312 (864)
19254 (1084)
22300 (479)
780 (116)
72667 (2576)
82475 (3360)
55400 (1024)
37375 (1101)4
20250 (309)
19172 (357)
44285 (1060)
12115 (167)
25310 (382)
2050 (52)
14140 (202)
14123 (189)1
68398 (1136)
10100 (167)
15172 (214)1
9225 (225)
420 (20)
14255 (453)
30102 (103)
27123 (136)
63400 (1930)
1256 (56)
875 (86)
1262 (72)4
24255 (988)
12120 (158)
862 (83)
69522 (3924)
635 (35)
19177 (258)
Totals: 627 games20600217216 (847241)1220

+
+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=10183 b/gamelists/nes/linkedhashes.php?g=10183 new file mode 100644 index 0000000..03a0ad4 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=10183 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 01befbe6ec42183b017544a6afdd4770
  • 0b01ec73f0c2060fdf4dad86ed2a7bf2
  • 1d607098e257e75eb2987326a119f4a3
  • 3d4cce3185680dd9aaf61da776318af6
  • 8b0b4a791a5065eeca35686c107f4239
  • 9b661ae67629149f2c3b94c29c714a31
  • dd0ee244355a5f1607d2f70b24da8257


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=10354 b/gamelists/nes/linkedhashes.php?g=10354 new file mode 100644 index 0000000..b866d80 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=10354 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • eaf108f829cf64ffa7f944e5ae420676


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=10361 b/gamelists/nes/linkedhashes.php?g=10361 new file mode 100644 index 0000000..80b453f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=10361 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 16f78d8561429fc75f38d726edc57e23
  • 728c53be1c3987b28c81113543a8c88f
  • 786ddbe216cf0202009ba6a255570384
  • f93c1f246f9d24d1dd7d760c171c9887


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=11075 b/gamelists/nes/linkedhashes.php?g=11075 new file mode 100644 index 0000000..19e8cf0 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=11075 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ce49d34aa7644f966b6e3d8112f711e3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=11076 b/gamelists/nes/linkedhashes.php?g=11076 new file mode 100644 index 0000000..b290338 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=11076 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5545cfd6dd4f8ca1963bf8544ca7f8f4
  • 8095a12c1b6512e547e878d9e0ab3a95


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=11142 b/gamelists/nes/linkedhashes.php?g=11142 new file mode 100644 index 0000000..ecf3cb9 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=11142 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 983cb4a2367f8c8413b05045d2f08f6a
  • cf222e2fdf4df53a115dc8d48a68660a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=11655 b/gamelists/nes/linkedhashes.php?g=11655 new file mode 100644 index 0000000..635d09c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=11655 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d58e74252db0e1b4c84c58f2eed61615


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=11689 b/gamelists/nes/linkedhashes.php?g=11689 new file mode 100644 index 0000000..821cfee --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=11689 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • c6626d9304e258d379d1260d41988c6c
  • d0fdcb83836c473cd4ee184a9e2b3679


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=11831 b/gamelists/nes/linkedhashes.php?g=11831 new file mode 100644 index 0000000..840c78b --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=11831 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5331a79e3980f589e706397976e5aad2
  • ae2859400fb79e6eb9a8f0939e345940


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=11833 b/gamelists/nes/linkedhashes.php?g=11833 new file mode 100644 index 0000000..73a3bee --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=11833 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0b83f342ee590ae4e6797c42a3ed0a6f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=12749 b/gamelists/nes/linkedhashes.php?g=12749 new file mode 100644 index 0000000..b7a3fc7 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=12749 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1d9002b88e7546db017468e3fb151abd
  • 8236a707b796456f4f1ea3d81f81d104


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=12819 b/gamelists/nes/linkedhashes.php?g=12819 new file mode 100644 index 0000000..b7d8050 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=12819 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 43cda3af8d6c56c8fb909ae9557ddee2
  • 7bb697f710354e1fd9a3a7a91135b461
  • 9eb653a03d880c138a24033509c924ff
  • 9f1819a94b2eb71995efc95e38e53a89
  • f7ec2767d5fbb8ac389bb4970920f26c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=12831 b/gamelists/nes/linkedhashes.php?g=12831 new file mode 100644 index 0000000..0bb434c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=12831 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • afd08feb5b1cd3594c4f2b7b2e669b61


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=12855 b/gamelists/nes/linkedhashes.php?g=12855 new file mode 100644 index 0000000..c5d96a4 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=12855 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 58377b2babdf06d8cf5557064f32ad92
  • aa4d8cb4d587b6234387b62e651f2419
  • e8558b356bb077213b255367c9c5be16
  • fa04b0b2d99d560e7076198ab72a15d3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=13326 b/gamelists/nes/linkedhashes.php?g=13326 new file mode 100644 index 0000000..4245405 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=13326 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3b64e9ea46168e11dfe7bbd6208d7ac9
  • 3eed977595414c3348dd5ceb2bbb7495


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=13345 b/gamelists/nes/linkedhashes.php?g=13345 new file mode 100644 index 0000000..b37dff3 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=13345 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 079f7296d463ce4f43eab7a1b68efd70
  • e39647aa8c26eeccc60c31f72eb74d93


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=13393 b/gamelists/nes/linkedhashes.php?g=13393 new file mode 100644 index 0000000..be4f565 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=13393 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b1ba60845163ae84afc3bc5165558202


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=13417 b/gamelists/nes/linkedhashes.php?g=13417 new file mode 100644 index 0000000..5d33b28 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=13417 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a22ded54ecf8bcec90af5ecf733a5f7d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=13420 b/gamelists/nes/linkedhashes.php?g=13420 new file mode 100644 index 0000000..49c5a99 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=13420 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 616386f9a7ecefc55ec6acc835118c38
  • 9565920ba6b8c7dc5a194f81f0ee7c26


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=13422 b/gamelists/nes/linkedhashes.php?g=13422 new file mode 100644 index 0000000..7130b40 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=13422 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 90c412bfbdc5d05cc77a73394f20228f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=13428 b/gamelists/nes/linkedhashes.php?g=13428 new file mode 100644 index 0000000..4c63a93 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=13428 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1ec00d2d30d2e55acfe160f8028c7931


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=13792 b/gamelists/nes/linkedhashes.php?g=13792 new file mode 100644 index 0000000..b23fc3f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=13792 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • b0ec743ee16b603f9e853174b2cfc7b3
  • c61bceb39dc83a43c9f57956caefaa54


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=14017 b/gamelists/nes/linkedhashes.php?g=14017 new file mode 100644 index 0000000..e3f4ae6 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=14017 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 678c840dd26a65418a56ca0073e6679e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=14227 b/gamelists/nes/linkedhashes.php?g=14227 new file mode 100644 index 0000000..2abc0e3 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=14227 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 27c2f42fc219e0360e4d3ae448cb0f29
  • 2edf325894eb8d4f746e882d0d7fdff4
  • cba5237bdd24506d75e7b4a194b3c097


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=14319 b/gamelists/nes/linkedhashes.php?g=14319 new file mode 100644 index 0000000..582ab00 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=14319 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 5e435d4fbf4714bba99410e50cfdb372
  • 9124bdf0e1116e649b5daed14853e92b
  • ff65350d6e949a28b83c65943ecb27a3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=14336 b/gamelists/nes/linkedhashes.php?g=14336 new file mode 100644 index 0000000..9ae9a69 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=14336 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d41d114a45fa20eb5519fded279020be


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1446 b/gamelists/nes/linkedhashes.php?g=1446 new file mode 100644 index 0000000..9727ac8 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1446 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 0e2be2324567ecbc373d9ef562dac8b9
  • 293303fe565de2333bc1e4115d38fa3f
  • 8e3630186e35d477231bf8fd50e54cdd
  • ff02b25112d3a3163db10e332841b02c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1447 b/gamelists/nes/linkedhashes.php?g=1447 new file mode 100644 index 0000000..31f898a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1447 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5a5c2f4f1cafb1f55a8dc0d5ad4550e5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1448 b/gamelists/nes/linkedhashes.php?g=1448 new file mode 100644 index 0000000..955f581 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1448 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 4de82cfceadbf1a5e693b669b1221107
  • 8d5a61f42d92ee61d05083263a11fca1
  • e1542de8784b93492fd7686f56f30376


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1449 b/gamelists/nes/linkedhashes.php?g=1449 new file mode 100644 index 0000000..cd81087 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1449 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 20 unique ROM(s) registered for it with the following MD5s:

  • 04865335bd8e715c873d69e0aee8de01
  • 049bcc090c19306d5657fceac947a3f0
  • 20790e405a3cd5e0fef997c33f32cc61
  • 24ae5edf8375162f91a6846d3202e3d6
  • 2a3e7fa5170b1b9929a31eda8cc8d7d9
  • 3ba1c398381f311c47c7bcb5a5d35b57
  • 3e162f3968dc3d5de1ebce8456e6e44c
  • 405ea90c2615074ff0fbdda5dcc33ca3
  • 442719ab969e318615f965e60c77ac18
  • 4604ae281c973e43ec7ca3e2a563cb20
  • 4b3342b2c143dade012df596e2b31174
  • 4dd4c6f2ff32da4d75dcd139f75150ec
  • 5c668e519e4573cdeb041fe474f0e920
  • 6e16ce5187c26aed8422519d7d10e559
  • 767bbedf2166310a64fe732bcc0d5cfe
  • 881ecc27f0d3b10ed63dcc68c2b20adc
  • 9e80e027b8602d69e7867b09b7f42dfc
  • 9e8f4065b0c0687cf5c8b4170b005017
  • afe22cc848201250ea320ad7b4d762a1
  • b3b22884e6eb8555eb74ed565a8a7a80


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=14496 b/gamelists/nes/linkedhashes.php?g=14496 new file mode 100644 index 0000000..cc9b758 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=14496 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ba15efb9ca1a87d9cafc17c04b33edc2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1451 b/gamelists/nes/linkedhashes.php?g=1451 new file mode 100644 index 0000000..6007e8d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1451 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 0527a0ee512f69e08b8db6dc97964632
  • 770d55a19ae91dcaa9560d6aa7321737
  • c812425deedcd5791125d25a1ef0a52e
  • d76e9a94aebba887a6fcd1da3375f48d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1452 b/gamelists/nes/linkedhashes.php?g=1452 new file mode 100644 index 0000000..92768b6 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1452 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 15 unique ROM(s) registered for it with the following MD5s:

  • 09fe066d66bff18d8100400e29d702f8
  • 0a3ebffa8878f6446dde56d594cd386f
  • 2ce6f27f130df5cad45f08419935df0e
  • 362f3d5f655fc8a5e4a34e38abf82070
  • 439a3420552a300089ddef13b7e83765
  • 5c40e997046e34a4b6b1c8314f313d0f
  • 6d0e5c844ccb5a179d5b529454ed481a
  • 7122423eb6a86106bcb0403f740cae45
  • 8c301b400fb93fe75fec1087dbadc7cc
  • 9b2a93f81816d3f5b342468e2be2f1a6
  • affc0258fedfc870c047fb5382dc7a1c
  • d216d801b13c90295993e4c1b5fd4fc9
  • d8deddcbaa32315458233ccded52fee3
  • e5a5d85ea7813b25080c5ce55f5e0585
  • f49e17d54d8c0889687608240cbf4631


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1453 b/gamelists/nes/linkedhashes.php?g=1453 new file mode 100644 index 0000000..7494316 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1453 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 33 unique ROM(s) registered for it with the following MD5s:

  • 000cbbf155e03c0523fab879aee9b679
  • 02040f57721d20b2502f4ff7dc7f0ae4
  • 039256a05556fb689ae3c04503381de4
  • 066e04b9cbc87a3e1a3059651bc68ef3
  • 0e95de76cefcf0cb99421ec95baf4fdd
  • 1397dbd4f3b651353fc9f95522d349cc
  • 1857804c2b8f654e25526ee646a76f94
  • 20de5fbc067da27fb56242aae1515a0b
  • 21b81bd4a613052badcd800237f674c1
  • 34ba9d9912742455780a423c52ddf237
  • 445bebcac5e5538767656fc3cf92a281
  • 4b2d9430bef16749d7948aa0da885883
  • 4d4a0c43be67b3a6a3f0cd04fb2f049e
  • 4fbb654dedd16c472d305967ca70a1b1
  • 75f75eb4274f89323589468cddcbb93f
  • 79efcc636d33f9af534fe81ae5143e18
  • 88c0493fb1146834836c0ff4f3e06e45
  • 9066be34fe650cdc52e8566d524816f5
  • 96afde1deb2f1484c7fdc8fe8aa59aa3
  • 9a18bdc223e591dad8d251e62f755d6e
  • a206f00624d81499cc0a54908d13c49a
  • a238c34ffb90023f8f2ae3939e44f9c6
  • aa86b61c8dbcec521e93cab48cd25386
  • b59c67d97b6041346b0160cb0a97a39d
  • bdbdcf5042f668474b35dadf31bcb32c
  • c10259a9e8c3bc25ce57f01306cd3cc9
  • cdf846f146d96b408ce0f461c3cb62f9
  • d80c737033db183881466c4e9460be4f
  • e332e636ec29b9b547e352860ed3893a
  • e3e2fcdecbc2715fe02f8c2d42ef8503
  • f240370ce4f22e3b6df1732c44317cd2
  • f94648a5e2f0b33a542659d9365338b1
  • fec192d5071aeb4fdaee8c480ade0e3b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1454 b/gamelists/nes/linkedhashes.php?g=1454 new file mode 100644 index 0000000..1e9b062 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1454 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 26 unique ROM(s) registered for it with the following MD5s:

  • 00d79f8a51636b8649df5724553666bb
  • 078fec49cb744846855594e3775dc8ed
  • 0b32851acecf93212b198e074c5e59bc
  • 2b57302585bdae3abe633e696e88b008
  • 48e2e4493149fb481852f9ca9e70315f
  • 51246446cda2cd349f6c2cd425ca0aa9
  • 526494bf529f2324eb5948c5c327055d
  • 581d428729911134214a7e3be917ff64
  • 5a687880b06fdc203be4bd2f03c7e431
  • 5c0785479d5149f18f77d23ddba1df41
  • 5ebdb05acfeaa3d176685805ab9e3341
  • 633497a49b262e5e28ae4901f3c9c1d8
  • 7639ab1979157d70f769e092400b2def
  • 7f2b4d6dbb8bc885906ca6ab4259af9d
  • 902966dd7c48fcd2a7733f35947c88cd
  • 94cc84d11720defb60e8db8ec759712f
  • a78d58b97eddb7c70647d939e20bef4f
  • cbeef4c6eea086516bb44d2dbe8300b3
  • d0531505c47c6a4d5aa33aa06d1196a7
  • d3f453931146e95b04a31647de80fdab
  • d7ae014b7f68a775272a771ab881dfbb
  • d99178a2527a2e168088afdc2248c800
  • d9a1631d5c32d35594b9484862a26cba
  • e48fdd5701d310135b555e87338c8ea8
  • f3a56641d444dd5653db846c518bbfd1
  • fe7c05763a70e4f22965c939d3db73e4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1456 b/gamelists/nes/linkedhashes.php?g=1456 new file mode 100644 index 0000000..1a4e83d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1456 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 1dfa56ebc412f33f161d16207ceced06
  • 6307b2766d33a38ae68c639019dc8890
  • b5e9678ada66593d6a863d46f48dce70
  • f0fe8c50b0e623e2f7374d398dd41d01


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1458 b/gamelists/nes/linkedhashes.php?g=1458 new file mode 100644 index 0000000..d4d8241 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1458 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 11 unique ROM(s) registered for it with the following MD5s:

  • 341f6fd28fcdc7e246ded2750dd1c1e9
  • 545d09a7671b0ab846bfd1145e5ebc18
  • 57d74ed7a1404a1a75087668eb821627
  • 5b51b64ae68d2b77aef4923c7d227c09
  • 7a4ffee9265b8af62f9dfcb938b20134
  • 8d62789736881122e00fe876fedc4a4c
  • 8e0968ae988df50b1181c71a2f1d5527
  • a04066d0847d8ab49969ff3db0f36123
  • a487974fb9f72c1cdbbd01cbe3037840
  • f483943a8fee4fb7d9bd636ada925a01
  • fbf2e70abc9f089765ff1b9a00a0a977


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1459 b/gamelists/nes/linkedhashes.php?g=1459 new file mode 100644 index 0000000..118fe4e --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1459 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 10 unique ROM(s) registered for it with the following MD5s:

  • 0654418bc6e67d0ac964b34552421935
  • 12b0dbc4f2b22a50d0bb53c4929217f0
  • 2b4788a56c7bc211eeb68e08e6a62454
  • 350eec77cb0ad9c6f7488eb2598721b3
  • 4e748b0f638476809a1f39e7d01ff6c4
  • c8db311fd88e680d17c1436ce3d1cb6c
  • cf3aa7de0b25b6093ed4b1196bb24580
  • d21a0d6f39f8f3a6f7a346b995095af9
  • db37e37750352fb6c30f9eb714e90e9e
  • e72f32db5cb6569b4eb0584d2c537030


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1460 b/gamelists/nes/linkedhashes.php?g=1460 new file mode 100644 index 0000000..aefe35c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1460 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 9 unique ROM(s) registered for it with the following MD5s:

  • 55a358377cdbf64c3001d990edd9d22e
  • 629fceec5476cdd3faa371891905ea02
  • 6c76acd9c8febc68df96d23d1022b9fc
  • 6eb80ee9895f864cb2ca6df89903e786
  • 8257a5735c0a76a4e78f324ac5770aca
  • a09dc288b5198808fe1b658447f9444d
  • b03ec7f338714831c4833cce29ecc92e
  • baf3633f83d9cda7ae5d0429368349ba
  • ece91e5f432028b6343fd375305c60b8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1461 b/gamelists/nes/linkedhashes.php?g=1461 new file mode 100644 index 0000000..eefbf25 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1461 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3979f4a48b98cc9aaa8d3964d4cf2b8a
  • 755f9086b0567243b3ce25cc8a6dfd17


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1462 b/gamelists/nes/linkedhashes.php?g=1462 new file mode 100644 index 0000000..ca76b2c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1462 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 14 unique ROM(s) registered for it with the following MD5s:

  • 25c082e1596fede68ea2549eca14dd17
  • 2aa6d0b179db6548fc593fa3926286cc
  • 367f17f119f240a084929cb2f5b04faa
  • 6ac46a50c86f9ce8c2597f21f68fe972
  • 728e05f245ab8b7fe61083f6919dc485
  • 756170ba1e06fa26c60d10114dc6a5ae
  • 890bec4997b385e9cdd4e35e77463c21
  • 90291b44659a7fb44770d198c7713ed0
  • 9c8623ca51f755a7e776e0b9f932f0ab
  • a2d583070372ac0ef3d32b57b5e4234c
  • ab930e91eb9bb51e8acbf7bf2187f369
  • c97174b42e85f492a64801bacd8db655
  • ec6a1aba3da1412e5045979910eb73f7
  • f83fbe46ba851a46ab2e64cdfdeb1cff


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=14628 b/gamelists/nes/linkedhashes.php?g=14628 new file mode 100644 index 0000000..185e0f1 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=14628 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d36f168e968c8b6eca738f7f41525070


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1463 b/gamelists/nes/linkedhashes.php?g=1463 new file mode 100644 index 0000000..d9f52ea --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1463 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 11 unique ROM(s) registered for it with the following MD5s:

  • 11d1a7e954105317f19cfb113a6314d9
  • 65f51643004c79450dfd33799b370bec
  • 7a3b87b685422a378b876903f658bea8
  • 7ca2b0170d24ae9c984a4412613e4638
  • 99028d118b600f2cb84f70fb1967866e
  • d4f575a1afdf7c491535ad5088196462
  • dff20255eca7fbcd47e1d7df5e620cd7
  • e0691f54f78684fd36a2102830379611
  • e10bfefdce41220d194a115f159af15d
  • ea155b486ff4e4ae841e3a103f8a69d0
  • f0ed8c6d65164f761908bc892c01c65a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1464 b/gamelists/nes/linkedhashes.php?g=1464 new file mode 100644 index 0000000..2ceaf3d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1464 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 14 unique ROM(s) registered for it with the following MD5s:

  • 1431f96e4f0b4a7d010b6a4246e155b0
  • 2a7a690902cf14527cb9de7b5e7f3696
  • 3d4e03bafa88da1884433cd7ed6e70f4
  • 5315aa068bad403b6090587e06ba43a5
  • 68393e33869f9b49b2f1f7cd1c136534
  • 6cbff582e3babe7803503de941fe26ee
  • 7acf01d7582998a531c7977955dec5f0
  • b6697a93c76dfa1f0768cecd133643fb
  • e496959669e1d0ffa064919931fe837f
  • eb9713d1cac3586601833d8df854114e
  • ed08dfbb87fdb7523dc29853b1aa6e19
  • ee7791bae4b1e0ee83a77e7c4dd29180
  • f2c58e2904a022a25fd018ef973286e7
  • fadab41421393b6eba137081523b6f5c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1465 b/gamelists/nes/linkedhashes.php?g=1465 new file mode 100644 index 0000000..92763c6 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1465 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 1175c8a5aae6a60c7e9ed877388f9d4d
  • 351e9b00ea88a796c2de446148c3f505
  • 6631ceac1aaef8efb063a34da86bacb1
  • 7fe7719330f5a50d4e0f4995ce5649d3
  • 83b25b396d5c1c4bcbcb5998b11c6371
  • 8b7c1e5b55a9e5fa23e895df2d682914
  • a70a34f0ec2cadd7c9dbd2bc6ae90a62


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1466 b/gamelists/nes/linkedhashes.php?g=1466 new file mode 100644 index 0000000..5b4c207 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1466 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 12 unique ROM(s) registered for it with the following MD5s:

  • 093aa80bf4baaa489ffa4a7f6985c533
  • 0dd95c3047bb0336823c39fefb7639c3
  • 30771f9f650c0664031aea5d048d0c5c
  • 3dee7010573f43fc9267a402779526ca
  • 5615971a393fba355e043c3383a33a0b
  • 5aca4dd6073e1b87fb1d297763a14136
  • 6d4a94c344463e562344249e18e9b99f
  • b1263a2dcd14ef308f7b5429873072de
  • d635fabd227a75f63065f927afef37d8
  • d67adc0d78f9961fb43b6b6103c56e55
  • e90309ed34ab4c1433e3fcfdea8323b1
  • fc4f50c1475f833e738a2c8ef53cca79


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1467 b/gamelists/nes/linkedhashes.php?g=1467 new file mode 100644 index 0000000..be4fa2f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1467 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 9 unique ROM(s) registered for it with the following MD5s:

  • 3dd5807a007989180b4b6bde1e4f9b48
  • 4a618e0dfc2984fc446a84733a0b6486
  • 4ef4221310288831301d269993e146ec
  • 8ad8e23cf01c54723a7bb15ea4d16ba9
  • b04c146efff2e1ea87deddb64999c431
  • b5fd0c7b91661ac245c99d61f1d6f425
  • bf2e139af3fd27355858cdef4c814d7f
  • c1086290e0bd52dfac260ed71e779f3d
  • d3650920bd7f7bd2d3b79a0562abc040


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1468 b/gamelists/nes/linkedhashes.php?g=1468 new file mode 100644 index 0000000..d8ce832 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1468 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 3ccb1f46f9ef36e8eb166940fedd09fb
  • 42194065e8db34701385930381bd7757
  • 9da22a825a0a02f50e1e15d52230480d
  • a18ad877abc0882d1bb72233b6fa5e99


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1469 b/gamelists/nes/linkedhashes.php?g=1469 new file mode 100644 index 0000000..db846ba --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1469 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 0d758ebe941cc8d029871177fa7243ff
  • 0f9fb5b5721d5fd69a9df856e23464ab
  • 237352c7f06a1a7737b074eb9cd6ab5f
  • 4e6cbfaebbb2043bf7592922da13ce16
  • 5b401f4ca7e1b12af3f29d8fc758dd2f
  • 9d961a26f2104e461667c6a1cc57ab21
  • ad9f6790a0e3202b93bb650428d70b45


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=14692 b/gamelists/nes/linkedhashes.php?g=14692 new file mode 100644 index 0000000..9e6c231 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=14692 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 31c090206a82aedb083b5b20e9e5866f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1470 b/gamelists/nes/linkedhashes.php?g=1470 new file mode 100644 index 0000000..018a6bf --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1470 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • a60a16cdd7e711400200624177743552
  • ccdb4563c9004d862dcf3a98c7937c22


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1471 b/gamelists/nes/linkedhashes.php?g=1471 new file mode 100644 index 0000000..fba4776 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1471 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 15 unique ROM(s) registered for it with the following MD5s:

  • 1d2ab5ea72e2033b3a4d4103438aafb8
  • 45ff7f5c0960d62b5f2c3c33c6e5ae19
  • 54e4b12f1543b47584c041212a630805
  • 6098d4a49968f27cfd75e93600ea80cd
  • 695e4103ffe96ed9d990860e171cefb1
  • 714156cfc6925ea11008cae0ce82879c
  • 77b5548ac3aa59fe11f8cfac750faede
  • 8483bfdb4e4a5c6188703e66dae82a85
  • 9156da16476d03ebba25535b64ddde1b
  • ab2c4f66985e2d028d1d5314f36601f8
  • b05e96da44145defc5ab717c684ee9d6
  • d2dad21c5c502541bc8b080fc87a0646
  • e0413c76f69f5aca4a1f5336b86851b6
  • e8382f82570bc616b0bcc02c843c1b79
  • e9bdb8adbc6e6eeffd2eb14ef8969e40


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1472 b/gamelists/nes/linkedhashes.php?g=1472 new file mode 100644 index 0000000..979af1f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1472 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b480855fff883b20ba403a2009a7f13c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1473 b/gamelists/nes/linkedhashes.php?g=1473 new file mode 100644 index 0000000..9c01562 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1473 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 15 unique ROM(s) registered for it with the following MD5s:

  • 0ab36632a9451c59b30958efcb785bd1
  • 155cfa3c008b45a47ea439cb982bf409
  • 16c66d6ee6827ff49e3a2efbf4b66c5a
  • 2bf3976d15ec25a756846465a16b064c
  • 30d4409745bec36331c74469b7fdca1b
  • 32583d6426e2be28ae8f6a8add5d9aa3
  • 377e0f6cde4a6640e7d614a2f254ace2
  • 459bcac8eaa75eb2f51470be9f228b1c
  • 4e7d64003ad8e14af828cc488c257536
  • 5c11cea2a098a46a8094a27ed99520a9
  • 61ed8edcb25a4a6485cc861feec82d57
  • 668e1eb0674db11259ba3bfaedea6875
  • 8ac2334ea4e2e95080c43b81df460c0c
  • 9b0727e0adb0a7b4f94e072b7cf28a5a
  • bad60e736722290ed709a67058986541


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1474 b/gamelists/nes/linkedhashes.php?g=1474 new file mode 100644 index 0000000..3d019e8 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1474 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 11459c91e84a49df825e16c650dd4e8e
  • 7b1f3ead3e05455f14babc5c6e9ff3a4
  • a7edecc7aadf274b1d534cdc5a0a2e65
  • d0b672d75d456c99508f55951cb44ed8
  • ea5a35a248f68cab692f6739303bafdd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1475 b/gamelists/nes/linkedhashes.php?g=1475 new file mode 100644 index 0000000..601b443 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1475 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 5195d1381e082d307fe62aa4d73c488b
  • 7119f886646fd1cbf3bdb36307b534fd
  • 89a9e4d86bec41c4613ff7c9169a0c02


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1476 b/gamelists/nes/linkedhashes.php?g=1476 new file mode 100644 index 0000000..9311adb --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1476 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1b994bda62ba9a8bf0893133fa012831
  • 52f5f45d6b67065e0a0695c8e69f90d1
  • e9bd857461fc3a9dababc6f8fa7a074b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1477 b/gamelists/nes/linkedhashes.php?g=1477 new file mode 100644 index 0000000..a7804f1 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1477 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • c6c17bf18a51718859f9bd6aacb7ef58
  • e6b649085123443ad6ca16d27c792c9b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1478 b/gamelists/nes/linkedhashes.php?g=1478 new file mode 100644 index 0000000..71ffddf --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1478 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 3a2e9774b17aee78d00a1a72b9e18869
  • 5548eb19cfe923e3dd723628cd2a4c33
  • 7af837824530bb7b1545af37ba0792db
  • 8a27c5ab8108efcf3ee21f99daeadd52
  • 8c45f4401cdae82b6079f9740007c8c5
  • 94c22109a8c815a659b08e2159e527ed
  • ada263949deb4c1d9e2a32c3cc1fb126


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1479 b/gamelists/nes/linkedhashes.php?g=1479 new file mode 100644 index 0000000..ae79130 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1479 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 16 unique ROM(s) registered for it with the following MD5s:

  • 09e21386297efe7e4bfd717b9c6a697d
  • 0be3933f1aa23d629002a884d408e3f3
  • 1b355e7a56ef686aa0ceed9caa272133
  • 2fc7000e1781c65649fe649414d00455
  • 36ffa102acba11b5c57427d8ac5ad98e
  • 4d22184ed99efec06bbec5cd7805cc56
  • 6922d5d71ef2ee801e036aa21acf7943
  • 742cd4d3c5f628c82ec5649a4f0eed0d
  • 758744ec2d2fa3d1f2020586401f97e8
  • 80c9012671accdf9e31441ce9c3c0fc3
  • 868635e8bbcc61c73aaa4a56ddbe677c
  • 8733d6ece3da100e118513c0dc4ce360
  • d4c469b737f113deb8ed0680dd6cd61e
  • df17a077d596cc2437640dbbdbfe77eb
  • f397d53818b0697e6a80ee5cc30d2a23
  • fdf4bbe03b31ae0f5faf376ee0153079


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1480 b/gamelists/nes/linkedhashes.php?g=1480 new file mode 100644 index 0000000..6e4f148 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1480 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 08b21d774b2adaed5480f6a941c576e4
  • 24beeebcd540f08471be5ef1353dd332
  • 2626cde4fb2655a8603c188af3ca7daa
  • 425e1cfe1f407793ec498712766cd099
  • 53fecc4edc1bd267babaf1a2799efbc8
  • 9ce004429a6066999ed272389773f086
  • ca87a1c5f28654a3f9c0196e63e9391d
  • d8704df1005d605aac7228691b5ac16c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1481 b/gamelists/nes/linkedhashes.php?g=1481 new file mode 100644 index 0000000..7c619b1 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1481 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 303a17efd7b6567431f168ce976ca395
  • 3d70afa6affaddb970d3ae20d69279d9
  • 71695b218b946f9f6e8f859b28c26506
  • 9a5d97995c7191d1436281e8dc110867
  • befd5d05eb33f984994230546c2bcfa3
  • f5b9a95dd243adf1477b1ea96d3a33d0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1482 b/gamelists/nes/linkedhashes.php?g=1482 new file mode 100644 index 0000000..28ad652 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1482 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 2717773e0fe484f15ea0fe679606d03a
  • 3905799e081b80a61d4460b7b733c206
  • d8d07efcb88f396bee0b402b10c3b1c9
  • f163cf53f7850e43fb482471e5c52e1a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1483 b/gamelists/nes/linkedhashes.php?g=1483 new file mode 100644 index 0000000..e0f6a22 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1483 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4a53b6f58067d62c9a43404fe835dd5c
  • e859a2e133eef9e2b1612508b6acfd58


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1484 b/gamelists/nes/linkedhashes.php?g=1484 new file mode 100644 index 0000000..bdb0638 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1484 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 088558f830fe954a7d5d2d17cd21479d
  • 0d395117c6eb6ba494b59fe2e2cd048b
  • 212d4e0fb68901c68bb6c10ab3effbe0
  • 328f55e3beff0b28a0df4d5ab7cfcd3a
  • 4482fbbbc77e03266b979f5028d4b51d
  • 45e2bbce85717c4b30e04049404ff659
  • 65437358ba00e0e02377a1a67c825b5e
  • 6e621a3b7a902413c0e21f8ddf940290


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1485 b/gamelists/nes/linkedhashes.php?g=1485 new file mode 100644 index 0000000..32c0472 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1485 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 00f8cbeba7db567d1083053b30a93ada
  • 34b40ea759eca4f759bcfd09171739cc
  • 4f48170b1cdfd091f6c25e9950c891e5
  • 5f7c75797b9fc649029fbffffbfd5dcd
  • 6c9cb073c20f55429cac631b9be72f71
  • 787049d062fafba573169434aca3989c
  • 81d0532731a625c39cff9f17290ef5a0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1486 b/gamelists/nes/linkedhashes.php?g=1486 new file mode 100644 index 0000000..0d5bc34 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1486 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 3481de7a6d662d5bfde2771f487fc135
  • 8d67bbeb5b9a845bfa6cf0b2fcb15522
  • 9ce6af110eeac2eb1ba8db803d15391b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1487 b/gamelists/nes/linkedhashes.php?g=1487 new file mode 100644 index 0000000..30e4f6c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1487 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • b2d2d9ed68b3e5e0d29053ea525bd37c
  • f0acb31e9a137c80648fbaec9c46f181


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1488 b/gamelists/nes/linkedhashes.php?g=1488 new file mode 100644 index 0000000..cec87c7 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1488 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1fd59d969af9352f228aac968636850a
  • fabb21c50a680d49ec136a7f7c4ab585


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1489 b/gamelists/nes/linkedhashes.php?g=1489 new file mode 100644 index 0000000..6d1b1a9 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1489 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 11 unique ROM(s) registered for it with the following MD5s:

  • 0211a76167dad1b86ade4f3ab03462e0
  • 19f824a16edbdd55eb311ab177b8305a
  • 1ddde6a84e43ad524a3f81fbfe22f9fc
  • 26932fb1ea284f5effe1b91bc03637ef
  • 5bc7fac06e58fda15fd981fd03572c34
  • 674d1f31be809615d4f352cb8c5f606b
  • 8b8f11a1a2957e46258c473af539a3d9
  • 8d2e515252566cd8ef051cccb8091679
  • a5d277a9f7f1582d8bacb2b044932925
  • bce8e3f4878beaf1315330696c1df808
  • c1e04aecffbd0e220508653dc4f70bd2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1490 b/gamelists/nes/linkedhashes.php?g=1490 new file mode 100644 index 0000000..cdf1611 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1490 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • c4c79c99d36c27ea5a5e582f5d3e4750
  • cef3177d8c006505ae7c90d587847074
  • ddcdb6aa8270a55ead3e1474cc2fd0de


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1491 b/gamelists/nes/linkedhashes.php?g=1491 new file mode 100644 index 0000000..6105da5 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1491 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 12 unique ROM(s) registered for it with the following MD5s:

  • 10a12b5840a13e8f3a61885c44bf3b8d
  • 1f556bd5a9160b905dabf1da378521b6
  • 248e0c5b1fba79055fbbbd2695720515
  • 397164fddfbb1ba87734f6f56887dfab
  • 5f5219add5c5ec15e4fc875d68f40397
  • 64a1a97af37d402f7caef2261fe05691
  • 891dfcaa5075652ed812cdeb54dae1fd
  • 991118f99cde0ad3fb2bf452d038e93b
  • ab1e1b560cf4abf210011cdf2216d966
  • c7af093a7336b6138ba97d694742e3e4
  • ca606bd8a875a396d52735c3bb84fa67
  • e4cc2e365fe5d0a43bb538981ab37bfd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1492 b/gamelists/nes/linkedhashes.php?g=1492 new file mode 100644 index 0000000..5ed2259 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1492 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 066127313b2cfdc761d19eb496d8a9b2
  • 131c36c33edac9248730dd8057e1c87d
  • 4d41fb2b7687eaa956d23ec319ee198a
  • 737be18046dd10dffe5b0e3aa7e32e0b
  • c878bef595fb2af81f4fbf0731092c57
  • fc5f4c38ed6e847bbdad0cd7b71cd54d
  • fda10ab3ada2a934b40f55824e793310


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1493 b/gamelists/nes/linkedhashes.php?g=1493 new file mode 100644 index 0000000..e70a818 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1493 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1696622370dc54399e55c85ef8605241
  • 9d19a9edfd95f1c240ea4b8f728b59a0
  • d292d34547c4eacb9ce9f42b8992ee1f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1495 b/gamelists/nes/linkedhashes.php?g=1495 new file mode 100644 index 0000000..ef9d979 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1495 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 88201d840919eafc47e388740d664237
  • 91f46e0f4f7590f22ee82755eb2d4023


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1496 b/gamelists/nes/linkedhashes.php?g=1496 new file mode 100644 index 0000000..fa7765e --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1496 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 2178cc3772b01c9f3db5b2de328bb992
  • 228314807d6bcf1201e53a06e13c8a0e
  • 6e628438de2d8d4c2f3166461cd441ab
  • e766eee215c2059d2f4f31ae48558a32


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1497 b/gamelists/nes/linkedhashes.php?g=1497 new file mode 100644 index 0000000..246c349 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1497 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 1b349d3dd777edcee79cf9e7af049798
  • 4d95586eac0286d269875ebcf864a1e0
  • 6d7af07156398466e2a606509aa23baf
  • dfe93bef60d6bb6e8cb52fc3f7fe1e3d
  • ee24c83dd7c68beda04023b606b07375


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1498 b/gamelists/nes/linkedhashes.php?g=1498 new file mode 100644 index 0000000..b52a972 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1498 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 50dd77437fafae2ddf89dc6b8967b494
  • 57ec337398877619f11e5553276241c2
  • 98972693babad6f93782cfaffc031c84
  • d77e12f6f3cabf1b705fb8ecdc1b8c62
  • e52ba1611eb492bca94d4ceee3b6838b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1499 b/gamelists/nes/linkedhashes.php?g=1499 new file mode 100644 index 0000000..546751d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1499 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 2a8c78bb5572ff60ee84f290ebbcdd8e
  • 48677e0d53d3562217d77e914c1fd79a
  • 53a427c4334020b05435f58adbdc6d10
  • 61c7f8a80b0c4e8ae4228e94634c4c12
  • 95a9917bf732ea61a10d74f190651878


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1500 b/gamelists/nes/linkedhashes.php?g=1500 new file mode 100644 index 0000000..d091708 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1500 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 810937940f2e94a2cd77795b30b5eb06


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1501 b/gamelists/nes/linkedhashes.php?g=1501 new file mode 100644 index 0000000..5f8bc56 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1501 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 0050570a82fc31b0cd236f9098f80af9
  • c69dfa839ac8345ba768429b93e4b624
  • df3b02573f5e80eeb920082a0e61f8e8
  • f5e07200389089e9b5b801a9a247dcef


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1502 b/gamelists/nes/linkedhashes.php?g=1502 new file mode 100644 index 0000000..df36b99 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1502 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 18f70414370a212abc46c604116890fc
  • 63cf61ae66f6ccecdcd9eee764483e04
  • 89af175e32fbd07b70b16ba32b4fab30


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1503 b/gamelists/nes/linkedhashes.php?g=1503 new file mode 100644 index 0000000..8a2bada --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1503 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 0d19f64b4c98b5fc9dcc448d8b7f7a05
  • 3cac0e7b890bb7bec9d8c25dd6d6c509
  • 557c5ec2a89ce908b29309d7cd590eda
  • 5c36369fa26d3ad5ca70fd08838d0f50
  • 7865fe2a4d9379fe7563186d02ac02cc
  • c937acabb9fb5781363489d8d14f0a70
  • ed7a1a12f557ff5c6376defc7d4dc637


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1504 b/gamelists/nes/linkedhashes.php?g=1504 new file mode 100644 index 0000000..1310691 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1504 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 13eb43b8c551505d6bb0a26335fbb216
  • 1b42d292d81b87e1fe17963b115a3fe2
  • 1e103b3e82f6b5d3aa202c2cc2a6716e
  • 428675b3e3ee6338f1dd37d931b972f2
  • 55fbf65662d16fac0e7add2be833e86e
  • 630f5c2d4ccfd00db2b4cfcf5932155c
  • 9718b8d26d552d298e4f3abf001e7377
  • a7f714f1d65fe923a37ff886e8fdda2f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1505 b/gamelists/nes/linkedhashes.php?g=1505 new file mode 100644 index 0000000..99def6c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1505 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 07fa4077aa70060f0931004cc1292ada
  • 7a35172f2c7edf08d63d256252c725e5
  • 94c43ab7eba0ade5ba0ebadad055b136
  • ad7a8e1f8a416f15b21e5b7f4a5a1c40
  • e4b5ae6c40350d6a6e9ec9a22aaf1210


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1506 b/gamelists/nes/linkedhashes.php?g=1506 new file mode 100644 index 0000000..5651568 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1506 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 4b326be45681af67bd37df8ff18d1acd
  • 5be7b2ba22150b1077590d3b15b4c562
  • 6c772338511c4be83fa8df3aadd10cd7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1509 b/gamelists/nes/linkedhashes.php?g=1509 new file mode 100644 index 0000000..b3e4e05 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1509 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • eefac97ac3b85048f3685e1623210efb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1510 b/gamelists/nes/linkedhashes.php?g=1510 new file mode 100644 index 0000000..9dfbf93 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1510 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1cbb2d6903fc0188426f08bb1c0be925
  • 6334b799a20b0f5cd6dba33d46511fc8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1511 b/gamelists/nes/linkedhashes.php?g=1511 new file mode 100644 index 0000000..322cd7d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1511 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 29e5e1a5f8b400773ef9d959044456b2
  • 4f58e64b4b07c03afae083de9c01d99d
  • ce4d5bda746a72e02fcfd547492551bc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1512 b/gamelists/nes/linkedhashes.php?g=1512 new file mode 100644 index 0000000..fd9ea3d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1512 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 11 unique ROM(s) registered for it with the following MD5s:

  • 0fb08e852cd02b50f959bb8cd5e55796
  • 22b180b6060d45244a007f73da42d370
  • 2d6868a54354caec934bc60d09a6f922
  • 3f4272b8436df0c160ec7db17c418361
  • 5179407cdabb8ab09d9f023d6018f6ad
  • b1680d0aa5416fc14cd256907f8add1f
  • b22ddfdf9f56abb1f4d029b41bf0cd68
  • ba0b9edb11c570c33c9af94da008aeda
  • cc912422c759b61d7bc14b1c3f055c3b
  • ced65cec1caea8e043cfa5fe0f972aa7
  • e4c062be220d5b00c82371d8f7b9679e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1515 b/gamelists/nes/linkedhashes.php?g=1515 new file mode 100644 index 0000000..0f15b31 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1515 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 0b66fdf88964235c434daff62837af60
  • 2512ab3896a5c51eccfcc679fd9b16b8
  • 5e1135b9a0504fd551cb11c36cadcad9
  • 8b9373e039e6ea1fc112828ca640b8a8
  • adb96c73061149e42ea157ade0334da6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1516 b/gamelists/nes/linkedhashes.php?g=1516 new file mode 100644 index 0000000..3455cad --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1516 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 190d10a3685f87ba32135ac595283f36
  • 20141e71488c0618809a61b7f14355ad
  • 7e13dde9723d3c9c5f9cd5089642570f
  • e5a70bf8c412fe3c54b92518b4395c7c
  • f3a8822ec4ad196348d6c959289d34e1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1517 b/gamelists/nes/linkedhashes.php?g=1517 new file mode 100644 index 0000000..1dba62f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1517 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 5f62fab71cf3f8e90ac3af2775c8d630
  • 81afd8b005871c0446038bef867e4a1a
  • b85ddb9bd9e1cd287f8f614ab1fe2c90


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1518 b/gamelists/nes/linkedhashes.php?g=1518 new file mode 100644 index 0000000..70f15cd --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1518 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 06560c3a50af4bf3873166d29260cefb
  • 3207fc124f914f0b26b43d4b06ecfbf2
  • 36e925b3a11d87b3713144339759a2c8
  • 6129d3ba110cb50496e1f4eff9b1c333
  • 84f06d39c96d4b875ba558654cd1b464
  • d016fc9c56f1e78ff28aa7c4a37af2f7
  • d2f0674966acb1309504123226854d3e
  • ff8bfb207da800321fa3f1e0673e1d21


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1519 b/gamelists/nes/linkedhashes.php?g=1519 new file mode 100644 index 0000000..631aa77 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1519 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 67d870aaa3fd90109383a52be3887c6e
  • df7730893499c1f119367404f317daf9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1520 b/gamelists/nes/linkedhashes.php?g=1520 new file mode 100644 index 0000000..bf3bcc3 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1520 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4891ff6840da3f608618c100bc064bba
  • 9627ba5d8a163e89c529794f85b58e05


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1524 b/gamelists/nes/linkedhashes.php?g=1524 new file mode 100644 index 0000000..37d4928 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1524 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 31b114d7b47732f2e08e7d09e7bc3e22
  • 4ccf65a4f658fd237e774d29addc3a5c
  • 7167236b7b9d6b9907ec35fce660931b
  • 7f5e060c1da004819aa1d1f449cf175f
  • 80b86e92c731ad810c653237bc19dbe7
  • b35162f96bc75d9c7f2895b8c1cb1daa
  • b7218e8586e823d511af446f7ffc51ed


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1525 b/gamelists/nes/linkedhashes.php?g=1525 new file mode 100644 index 0000000..195ddbe --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1525 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 5b952af83d8865ddbf91f3e7460380a2
  • 85863eb979c6bb44154d942a69edb09a
  • 96a1b7b680205098c6676fafc6b2c747
  • bd3ed71615c5785b1be59662a3c04c51
  • c517ca2fd6199fde0ba4b3847d9bbecf
  • ec84ac0607b01211f7eb05a670164850
  • f225fe0764940b3a17df071104f63e1d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1526 b/gamelists/nes/linkedhashes.php?g=1526 new file mode 100644 index 0000000..229c71f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1526 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 13 unique ROM(s) registered for it with the following MD5s:

  • 248ba1acbfed28be4e6839a858a5c60a
  • 40f6d92e060de6e1bfb74183461ece26
  • 5736da114e288c512824f4a58a51c2c8
  • 74eb229812128cdfdc52736972fb20de
  • 7b927b87d3ef545c168c16cf2bee3a28
  • 879a633cb4594a494997a2ac2d597868
  • 8967992b9eed81e68653aa92c5f8631b
  • 8b82c004ed7429322621e0f745ef802e
  • 9de76d2e5e6b50c9bd1e230d2d44f02b
  • a543a40c8d82122ee6951e8de10e2f81
  • d88f530741ff96a9e280461a94d2119a
  • e57dafd53183a9296077e2c3fc427893
  • ed0281a6442571c5198079dced915743


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1527 b/gamelists/nes/linkedhashes.php?g=1527 new file mode 100644 index 0000000..9094b06 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1527 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 098c0725272db9af1a16f2bba1e3adfb
  • 13ad0c02d156a62eb8a05add6a35e0ab
  • 20e917f703dc23c990ed2ad518424eed
  • 54291a0dfbde21d3ed69b81171fb1e7d
  • c1eda7b38bd8fb314285ddcc766a2458


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1528 b/gamelists/nes/linkedhashes.php?g=1528 new file mode 100644 index 0000000..cbfacff --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1528 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1c23920f24486210043c074c0150ff6f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1529 b/gamelists/nes/linkedhashes.php?g=1529 new file mode 100644 index 0000000..a221de5 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1529 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • bfb9aafcba26436b17f9a046aa4076a6
  • c3263d7de9fd9aa6bdc416526399314e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1531 b/gamelists/nes/linkedhashes.php?g=1531 new file mode 100644 index 0000000..f4d4be4 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1531 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 2890ab634c5262bd80656b69382b9de0
  • 3841351eaa62547c757e5fce1cd0e67f
  • 6ea5a463d04ddc42e9483dcfef86b0cf
  • 9c1d74f31b66b89fa7852eccb3858397
  • adc3b395e7613029db78369693d9b79f
  • de8ad14372e350bd69e79f90d7c02766
  • df12f097d567cf6b682631e95cf5ecb4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1532 b/gamelists/nes/linkedhashes.php?g=1532 new file mode 100644 index 0000000..9a5ec5d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1532 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 3a908031aa0e30b2122e9468b96ead85
  • a58eac056a003f352bc9fb01248520cf
  • b34e53a328a30887d82f25bb6a4d3852
  • dc79b80fad740bafd7f485dd5d413740


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=15323 b/gamelists/nes/linkedhashes.php?g=15323 new file mode 100644 index 0000000..4f7e408 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=15323 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 23974aa2e29dee184601be71d2d6c723


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1533 b/gamelists/nes/linkedhashes.php?g=1533 new file mode 100644 index 0000000..7808b5c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1533 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 2827084cb9be9f464dc2a589d2daf236
  • 48470308703aef28269dc583bcfd5caa
  • 84fc07c72b7f37c1b9a5a957454171c0
  • bd377b49dcc269c6270ec0ea6336baf5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1536 b/gamelists/nes/linkedhashes.php?g=1536 new file mode 100644 index 0000000..bab8b14 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1536 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 04228ee488627e75a345d6d82b00b510
  • 1372771e3fb8468099e2f66042e51379
  • 897d8c76da605d233212d01025b3327e
  • ee1394599010781a079009090d97fc5c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=15367 b/gamelists/nes/linkedhashes.php?g=15367 new file mode 100644 index 0000000..e662563 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=15367 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 9572d6a5f36d7c62258417c331a7220e
  • b7536ae7c0befeac3cd012af323d1892


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1540 b/gamelists/nes/linkedhashes.php?g=1540 new file mode 100644 index 0000000..1764cd1 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1540 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • abbceff7684b678dba0a109ac2314bd3
  • d8bd241e27f2c1812751e4e92c7ec68e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1542 b/gamelists/nes/linkedhashes.php?g=1542 new file mode 100644 index 0000000..6963f82 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1542 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 14de068a0ea0b211c697d8795228c282
  • 608692c80be6f94753c06566edb5636d
  • a51090f9622c4665b82937201c90d261
  • b6d2c6c3196dca33a689df4f02c9832e
  • e6f6a99ac2ac889b9d70c0eabf52af69


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1544 b/gamelists/nes/linkedhashes.php?g=1544 new file mode 100644 index 0000000..3c5a1d2 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1544 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 0f3b320959931b549eab42566aeadb63
  • ae20571cd276964fdaca9cb2804b5fa2
  • bddf6593901c5c0cb00f898aa163d0c2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1545 b/gamelists/nes/linkedhashes.php?g=1545 new file mode 100644 index 0000000..e87029e --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1545 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 0ccc1a2fe5214354c3fd75a6c81550cc
  • 21201b4a3f10a6c47cd18c4025d35ca2
  • 6b85a405a5d88fc70c8f74e6dd2e2d3b
  • 6d50fb8036b30ac719945742b4dc0ee0
  • a930f9d4c59d8ab1dee39825db1f5555
  • d55c2083ddc86ac3da2a7c90c9768bf9
  • ef031c96ff72ce00fb214e2afb4c184c
  • f56b8097356ca6ab9ee548a02d4f212a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1547 b/gamelists/nes/linkedhashes.php?g=1547 new file mode 100644 index 0000000..8314441 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1547 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 1416f38ee082df901924ade572fdd8a3
  • 631df04b0dba04e7d469ee5f0e91a3de
  • 716a82b2007289fd3d3baa2c780d43ff
  • 77655d3a646ac2a1859c91f96828e451
  • 8459a8734709dc94a8ffd60612bfca6b
  • 94eafd1d52c7296cd5b9dad6316e5976
  • fc546c99aa19c25f27b3116541cf3118


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1551 b/gamelists/nes/linkedhashes.php?g=1551 new file mode 100644 index 0000000..7a87343 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1551 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 8829d7ab1efa5af5e309d4fb2b8574e3
  • d57cf138a6d189bc9602a4230f5a1d0f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1552 b/gamelists/nes/linkedhashes.php?g=1552 new file mode 100644 index 0000000..0dd89ad --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1552 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3313c8e9f38ac616af9405b0fdc33944
  • a14e90da461526694c0620ce040eb169


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1553 b/gamelists/nes/linkedhashes.php?g=1553 new file mode 100644 index 0000000..6572d6a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1553 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 5299b041d9ab9b690f962d5b68742590
  • 6c9ca0103463eee5fc6180c30acae297
  • b30a3f09b86f3adab09a36bfe674544c
  • d67a3ad6ff7c53178f15ea52012a20a8
  • f2a3f31da718a26747cf487a6d80a6f1
  • f8fe57c05f67653ad9bef95ce8e43091
  • feb66c77ad246ab56f79fbfd43957d3c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1555 b/gamelists/nes/linkedhashes.php?g=1555 new file mode 100644 index 0000000..2ceeb16 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1555 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0c00d53cae957081e1c203ece3549ce9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1556 b/gamelists/nes/linkedhashes.php?g=1556 new file mode 100644 index 0000000..45277ca --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1556 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 12 unique ROM(s) registered for it with the following MD5s:

  • 1457475741846a01399dc663135a60c1
  • 1d8c1ec9e68b5c3582ee52f917aff724
  • 1de8e9bc225fb9fce33f3e1236af15bc
  • 3eb2a56c3c7656b21f29942d24f42c95
  • 4761c866fda2939c56ecd54a41febc49
  • 5afb29bd1bbada1fc5f9c4c5e514d70f
  • 6a1007c559b71eabfe23950265e59849
  • 70c309cb6b9ead20c06d554cf48b3993
  • 764f98edd509a6c758b1d4b882de355c
  • 7917033ec6861e19eb1aade34fca4e3a
  • 9289ccce58df170c92ef96dccad9c93c
  • 931f08537a1041e1ec2849c627bcf534


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1564 b/gamelists/nes/linkedhashes.php?g=1564 new file mode 100644 index 0000000..357f7d5 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1564 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 108fea367dc5ba9a691b3500fc1464b4
  • 3242d0df933082e6bfd192b5e39dbfd0
  • 576ab245b4f04c670ac312ab0d441697
  • 8cd81f8db0d70f177812a132670438bc
  • 9c3adab712dc85876e0daa938d298493
  • a3af0e6c0530116a9426e490c32933e0
  • e7ad2eec634820b0ce3fd11bc76e64c4
  • f826f525be43e859336ef94e5a753a6e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=15647 b/gamelists/nes/linkedhashes.php?g=15647 new file mode 100644 index 0000000..aa11f76 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=15647 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 75cff36399bb745c93a60a3a9c4c0b6a
  • 7ab461dec5c3e11c10392005d4c183b1
  • f9019738468b0e85bd0c6a3194863616


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1569 b/gamelists/nes/linkedhashes.php?g=1569 new file mode 100644 index 0000000..c6c8887 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1569 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 077aef22bae04dbf287ebbc03806da3c
  • 7b0c3f8f1be24e9c2fcc59bd4c61a899
  • e3b1693b97edf2336722451c250b0792


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1571 b/gamelists/nes/linkedhashes.php?g=1571 new file mode 100644 index 0000000..2c13e61 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1571 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 3a76fe2c2faa6ede7f678df4f9260caa
  • 89a08d3b51f8576c213316d7eabadcb6
  • abf97d9e3e1c97efd93fb90be6824e89
  • fd643d07b01072a1376353bd37b1f8c6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1573 b/gamelists/nes/linkedhashes.php?g=1573 new file mode 100644 index 0000000..1fe1ca7 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1573 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 231b21863a128ce6115caac30b1c6f6d
  • 6f9f93a96635ca9f8021ed3a8b708003
  • ebaf268d47a21f47e04863a7d5413972


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1574 b/gamelists/nes/linkedhashes.php?g=1574 new file mode 100644 index 0000000..8b9410b --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1574 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 728a4c80306dd3debb8ba90868376255
  • 9d82467a5c2a3138451f6dfe67f6848c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1575 b/gamelists/nes/linkedhashes.php?g=1575 new file mode 100644 index 0000000..cf695ae --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1575 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 36f9c268d5152085c914eb732392848e
  • 9b6682f308b357b502626fc9fe3fd83b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1580 b/gamelists/nes/linkedhashes.php?g=1580 new file mode 100644 index 0000000..df4ce1e --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1580 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 83dfd6f1677ae112f98f88ab5a8bd37f
  • c3fd72580c5ca25bcf5cd73674695e27
  • cc2e2aa46f56efa41c95ab81de7e05fd
  • d637a96f17f7593340482f6f2d943739
  • ee629f5fc76a3a2db00a2809e9670b65


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1582 b/gamelists/nes/linkedhashes.php?g=1582 new file mode 100644 index 0000000..631a246 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1582 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 037dc690f70fc8f59504f38eb3b02a1a
  • da0b83acad263cb5e913033ef33ef4d4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1583 b/gamelists/nes/linkedhashes.php?g=1583 new file mode 100644 index 0000000..e30ff8d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1583 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 5ecc65025d3c21a001c13775e839caea
  • 66cdb9c9ba8b2f609ce396195ef1c881
  • 74976bc8b5c16b2a4fd6e7648fae1000
  • dcbe4de20cf9922fbbe13c05e87426ee


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1586 b/gamelists/nes/linkedhashes.php?g=1586 new file mode 100644 index 0000000..613a73a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1586 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3a8982c987a93b2f7c7eb7de2c102192
  • ffcc592a3f063c1dcc87cb5e0f81c8af


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1590 b/gamelists/nes/linkedhashes.php?g=1590 new file mode 100644 index 0000000..f2e9443 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1590 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 04e847a7efae58635d28c289483b5999
  • 5bc9d55333a5e77b54144a22539b67a9
  • 8156baffe8c779eb60caf31078584ec4
  • ce1bf3b6b850874c076fc44fcf730890
  • f182863a759f547e59fe98b2142f1b37


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1591 b/gamelists/nes/linkedhashes.php?g=1591 new file mode 100644 index 0000000..1283c34 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1591 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 09f1e4c101bbeb9ebebdd44c3046ef61
  • 209ab20f0abea2a7a6bb46c0d0c968ed
  • 9d73a7e6fcf64dd103f27895409d0f3a
  • d8c7ed973232990fa1b7542e6876bd3c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1594 b/gamelists/nes/linkedhashes.php?g=1594 new file mode 100644 index 0000000..125d8c1 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1594 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 60454a2425152e7bac6b2411a2386ebf
  • 6f844dc1b4e451449f4b9cc667b9641c
  • 9f469de265bfaae1693d8d0d473192d2
  • e5e004d9c545bc1b5a9318fd565aeba3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1596 b/gamelists/nes/linkedhashes.php?g=1596 new file mode 100644 index 0000000..7770d2d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1596 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 7622e7d6a786eec7b09948e109c3400a
  • 8a2171f4c4083e25e64de909dabdbd41
  • be32956344169c9dbd489ceb2f1892fa


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=15960 b/gamelists/nes/linkedhashes.php?g=15960 new file mode 100644 index 0000000..4aba98c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=15960 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • fda976a991596fc0491f321603f422f5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1597 b/gamelists/nes/linkedhashes.php?g=1597 new file mode 100644 index 0000000..ee85521 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1597 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6a6763329f9e62495ad34a05270aee7b
  • 6bc8f54dc358aa35f6259715e5143b37


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1598 b/gamelists/nes/linkedhashes.php?g=1598 new file mode 100644 index 0000000..87951d7 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1598 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4b3a5ad02f50bea244ddfc53a938a49e
  • 8e7811be263cf530adecf3368b9e6012


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1600 b/gamelists/nes/linkedhashes.php?g=1600 new file mode 100644 index 0000000..52bae5d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1600 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 8f695d286c839897072909549ce06160
  • 9ff8f926f7284b2fa13fa9f5cc26cb23
  • d2c42603a8ec74f51265c085ae26b9bb
  • ffd28d2476566b2efbd182f107d9d8e8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1601 b/gamelists/nes/linkedhashes.php?g=1601 new file mode 100644 index 0000000..d131c29 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1601 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bff655ca46622be666e620a69f8ed683


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1602 b/gamelists/nes/linkedhashes.php?g=1602 new file mode 100644 index 0000000..135443a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1602 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 899a8d8a8d05d5809a4e9d948ead32e0
  • b7cc4102f613d31c6ba5b3a0b105eef1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1603 b/gamelists/nes/linkedhashes.php?g=1603 new file mode 100644 index 0000000..45bea5e --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1603 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 19a9d66a9d9c1c736316957c344eee95
  • 7c48aba0c9cb43d62f69f19c9589db50


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1604 b/gamelists/nes/linkedhashes.php?g=1604 new file mode 100644 index 0000000..2ac9b3c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1604 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 0a6861a53696ca5dc5af099d7a5c3295
  • 3ce6272bae7c1e21bd1683ef80f05f50
  • 4d81ee8f396ae49de28341f80f517a44
  • c808295c9d46841c49bbb0c9ad52b4c4
  • f5d6c0ccc98ceba73d680b5fd1de8ab2
  • fc5d76d0fbb2f9aede2e470c98a2bd87


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1605 b/gamelists/nes/linkedhashes.php?g=1605 new file mode 100644 index 0000000..57d6cb9 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1605 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 19b315e613859ea1f860f253aedf6c6d
  • cb6933da55479c5ba077177dd283c90c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1606 b/gamelists/nes/linkedhashes.php?g=1606 new file mode 100644 index 0000000..573aaae --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1606 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 10e8581f578531495dc00ee62528776e
  • 44beb044f7c2df6ed784ce4a60146c3c
  • b801e0fca499d14231be90216ea96180


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1607 b/gamelists/nes/linkedhashes.php?g=1607 new file mode 100644 index 0000000..7ebf98a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1607 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 11e9d80f217f597c11fbb4ef7a5483f1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1608 b/gamelists/nes/linkedhashes.php?g=1608 new file mode 100644 index 0000000..7005788 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1608 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 366839321b927db9808ba7d13e4fa664


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1612 b/gamelists/nes/linkedhashes.php?g=1612 new file mode 100644 index 0000000..6254c28 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1612 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 27f010809b4848214642395481e8965f
  • 5042f7646e7cf01a4a44543c13faacff


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=16120 b/gamelists/nes/linkedhashes.php?g=16120 new file mode 100644 index 0000000..7ddb1e5 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=16120 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 67acd848c058386d2a4b1e299a62d2f5
  • 6f7a8befb890d27f6ef473c56445ef1a
  • 76564523e76dca34d6c1f8d5976e5908
  • f6ba0430c28acc0b2ba0ffd395d4343e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=16125 b/gamelists/nes/linkedhashes.php?g=16125 new file mode 100644 index 0000000..645afa9 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=16125 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0748dab46f144c2f4a49496fdcae93b5
  • 723a293e8a150a713e0eefef178b3685


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=16126 b/gamelists/nes/linkedhashes.php?g=16126 new file mode 100644 index 0000000..c52e900 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=16126 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • c023ae6ab7cfae1db9a48db10a31a52b
  • e9e66aad57c2d5bae9e2cbf3d6efcbd2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1613 b/gamelists/nes/linkedhashes.php?g=1613 new file mode 100644 index 0000000..69e0b96 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1613 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 54e333194d86eab4377628070f305d96


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1616 b/gamelists/nes/linkedhashes.php?g=1616 new file mode 100644 index 0000000..5aa1e14 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1616 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 1c2489c1dfbfd6f9a694683384feb3da
  • 4a500d8989dd238a51a29e1d5eb7d820
  • 68accdb1a970cc826d085c94cded193f
  • 71e7ef754a716ced5b306a1e5b6e93c1
  • 7e69985bb43db4686ba59c08406c716c
  • 7fd042636ed1e6b24151fc1b4fea7052
  • 949a5f70b56860ebe9826831315e17b9
  • e0c95175eef5ff44bf42b84c705a5576


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1620 b/gamelists/nes/linkedhashes.php?g=1620 new file mode 100644 index 0000000..ee0b05e --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1620 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • f339fdaeaff14639d46a947b5018c1b3
  • fd2677e07cff48d5236a1ddc92dca342


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1623 b/gamelists/nes/linkedhashes.php?g=1623 new file mode 100644 index 0000000..02a4597 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1623 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 1de41e13a2e691a8cc13b757a46ae3b8
  • 8f03cfbf03707d740c6f734a8cc2b9c3
  • 944d527755c1ed6d127e87ed4e0e81b5
  • eeba6ef8992074c5ebbdf0ecd9468e10
  • f865b8c5d8e5937189d7c081a30b748a
  • f9092833d57939c942f5233d41d8f16a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1625 b/gamelists/nes/linkedhashes.php?g=1625 new file mode 100644 index 0000000..3b80a61 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1625 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4d40ce0e6f39220ac87470fa508a3d3a
  • 81e7d9c694e20f75219b7c00ba66a618


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=16253 b/gamelists/nes/linkedhashes.php?g=16253 new file mode 100644 index 0000000..6827832 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=16253 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9a50840fee49809749e2eb2e09ca039f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1626 b/gamelists/nes/linkedhashes.php?g=1626 new file mode 100644 index 0000000..82f0ffd --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1626 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 05043f92ba4dafdb912422c6751492c4
  • 08f9e08e0fe360c1f485fc5021bc5f65
  • 27111e149d07b2b07374e8c2181ffa7e
  • 4787007b3ccb255d822db474cfcb27de
  • 9f2d0853635a39e49467890ba4c0a14e
  • eb0e97837dcf162772934fc64a42b2f8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1627 b/gamelists/nes/linkedhashes.php?g=1627 new file mode 100644 index 0000000..b13c44a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1627 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 99dd1d23a46e68b7163dbc5bb69b9929


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=16276 b/gamelists/nes/linkedhashes.php?g=16276 new file mode 100644 index 0000000..6b9b0fb --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=16276 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d47e2c42aeb6a9ac5e37a22c371b4915


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1628 b/gamelists/nes/linkedhashes.php?g=1628 new file mode 100644 index 0000000..ccce275 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1628 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 7667cebf11c3d7a39575af91606bf412
  • 79244280e463f50f4de2ba2ef695c45a
  • bd3e40868c3aa06d4e3a8c1b290daa95


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1631 b/gamelists/nes/linkedhashes.php?g=1631 new file mode 100644 index 0000000..6e1ac20 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1631 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 282297263545f9b9dbbe3316772319f2
  • 28cd4cd685b0f1b58d0aec9a8da325d8
  • 489d8449850b0c5fd17fdf6cf5470688


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1632 b/gamelists/nes/linkedhashes.php?g=1632 new file mode 100644 index 0000000..05f6491 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1632 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 2f2cb4ec9936d23f370f9991e84cce98
  • 2f36e638ccfa5a3f0e4bcf0d4dc76b79
  • 3b09f1f08059afe6693c21d5e9739dea
  • 43836cfcbc487a0a4e26e8ce667b0a89
  • 62ceacb531aa8c9f3c492f8882474a87
  • ab2b746427ce0cad9f4965dca4b8e323
  • f4b83cae35d04bf3eae282642032ce48


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1636 b/gamelists/nes/linkedhashes.php?g=1636 new file mode 100644 index 0000000..c058ac9 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1636 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 4d5594e53a481ab3e0e7e90dc7e42d25
  • 90df5fcda5deb6bbbf26adca17fd67c3
  • dda34025966a23ae854d7947a3177f57
  • e44e457b5896aeb1abafe5c83c1aa990
  • f07f30249b8fcc79762ee07c2b11844c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1642 b/gamelists/nes/linkedhashes.php?g=1642 new file mode 100644 index 0000000..98c9aac --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1642 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 119c456602da16e91df5c574c929a2f3
  • e3916eaa532b7f338a5fc74e8820b813


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1644 b/gamelists/nes/linkedhashes.php?g=1644 new file mode 100644 index 0000000..1369003 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1644 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3ce9dffcb21c2c46244f2321a9e5b349
  • e36bc14876da0e25c4ee2bba193002c4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1647 b/gamelists/nes/linkedhashes.php?g=1647 new file mode 100644 index 0000000..1e8bc3f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1647 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ed0a5c2ad1b301f1e29bf76223ec1053


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1648 b/gamelists/nes/linkedhashes.php?g=1648 new file mode 100644 index 0000000..fd9f094 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1648 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1cf7b78b2e7d2a66f8791dcd28093db1
  • e734ad3125a2dc0d1d1f07becd2b6478


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1651 b/gamelists/nes/linkedhashes.php?g=1651 new file mode 100644 index 0000000..94fcc1c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1651 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 516136715d9e29e889f3c9d7c7d12a42


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=16514 b/gamelists/nes/linkedhashes.php?g=16514 new file mode 100644 index 0000000..0abcef8 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=16514 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a08ca7ee067e120d6cab284fc42bf15c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1652 b/gamelists/nes/linkedhashes.php?g=1652 new file mode 100644 index 0000000..1a0283a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1652 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • a1945e8e7204ca471e26ba7de8f23278
  • c730e42bd60ba9bd0bcb196ce1fc3cfe
  • e0ef13918d297a2045d762f61d2df224


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1654 b/gamelists/nes/linkedhashes.php?g=1654 new file mode 100644 index 0000000..767a786 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1654 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 328b2c34d156e1c310495aebb7bf987c
  • 6062b22d2d55e41dee50d29a6650956e
  • 6845f9cf9d980ab563e95d0fd79c9785
  • 9af9e9278a2abeb0fd2e576bed15faec


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1655 b/gamelists/nes/linkedhashes.php?g=1655 new file mode 100644 index 0000000..d07da52 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1655 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 57eafb0d2ee63e4dbb3a66282d9e1221
  • aeab719188297fd62fe0227db2161a22


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=16561 b/gamelists/nes/linkedhashes.php?g=16561 new file mode 100644 index 0000000..4d6c791 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=16561 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2f6722317f4e047e45b711e2ba6036f8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1657 b/gamelists/nes/linkedhashes.php?g=1657 new file mode 100644 index 0000000..04ab441 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1657 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • a2b5bddb4c7a5a39c8fac13e64494c9a
  • c3942ea9eb1c8b472560c21ee34ea73a
  • d4cf358ce411c63e84df4a51e32a4cce


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1659 b/gamelists/nes/linkedhashes.php?g=1659 new file mode 100644 index 0000000..42b6899 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1659 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 00a7d212bcd3039a8888e9da23ab0f02
  • 1ca706896a8d4f2a2b5480d941130a4a
  • 9ce4e7fd812c9259362711c9b507489c
  • b1867c12adc9b851fe9dbf43a818d291


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1661 b/gamelists/nes/linkedhashes.php?g=1661 new file mode 100644 index 0000000..7c75764 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1661 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 13 unique ROM(s) registered for it with the following MD5s:

  • 10e194ef6fd32e86495b0468cc5d2c2e
  • 13d2c9575679ffee0f8a6c1388dc8560
  • 3ded0a0d0d68d68d8d393986c90e411e
  • 5544f4b141a95d0062b08dc4f029cbe6
  • 7e994118c35b576410bf8da7ae3ebdd8
  • b2f092f2cbb17456109a4df0468fcdd5
  • b7876cfd30d1830a397834d256f5efab
  • b9dfe908fbde38d9fd2a7709ed1f7c80
  • bb4f56f41688cc51710c246f0ea22e1a
  • d65557c52b486bfe65e993b6098bb772
  • eee2f54ddf66907ce9cc366f125a74c3
  • f0470e5ee7daa5e423d4f0fd8e898a6d
  • f1acfb46daa16c981aa23ad7a00788b1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=16612 b/gamelists/nes/linkedhashes.php?g=16612 new file mode 100644 index 0000000..0a42865 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=16612 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2adcbf9a5613ad11c85eb1c531aa982b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1662 b/gamelists/nes/linkedhashes.php?g=1662 new file mode 100644 index 0000000..618800f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1662 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 10 unique ROM(s) registered for it with the following MD5s:

  • 5a62946927de5ba02741c0527db7ca29
  • 605ee668a12ad95de3b14b592bda5772
  • 785abb3ad131709037671d302c2c130d
  • a8b66296bd0975283fe9ae5774a925ea
  • b4dd0856815785a13f8a918e0ab38ddf
  • bc5f135b34f7fcf06c4eaf72970f654b
  • bebbebffff971b9a5a3b53e4f2189638
  • bfd1f83ef7870127e8af1e0f391bac07
  • dd35f380b365165674fc4daac2a132b0
  • fed1b9dd7b1c2de69ad2599e23ec0e03


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1663 b/gamelists/nes/linkedhashes.php?g=1663 new file mode 100644 index 0000000..4160fbb --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1663 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8eef8d42366abc43c0bbbc90bd0453df


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1664 b/gamelists/nes/linkedhashes.php?g=1664 new file mode 100644 index 0000000..4e5f0a6 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1664 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 2dc1a767535bf0efb6eb37e40e57dd78
  • 50b9ecc2af9f0a3c13917486ac9643dc
  • 99a981c48765d014357f0d88979c71b0
  • cb5e388f674f9fffa17930214fe3687f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1665 b/gamelists/nes/linkedhashes.php?g=1665 new file mode 100644 index 0000000..a25a312 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1665 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 16bd158913f423f1812149951490e1d5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1666 b/gamelists/nes/linkedhashes.php?g=1666 new file mode 100644 index 0000000..5e0fe28 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1666 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 391bb18bc7db6dd9b359d0bebbca4b3d
  • 3d012f801c162c7f0ca97d516c25bcd6
  • 6a3c632ab5e085f81dbfff0ef7f1f2e7
  • ac742cf2f5446fec114c13f9f2c0388b
  • c5b761e45c61aa92f0a94460e0af7795


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1667 b/gamelists/nes/linkedhashes.php?g=1667 new file mode 100644 index 0000000..9627be8 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1667 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 16a03048ce659d3d733026b6b72f2470
  • 53c1b36072390deb0c1f4d435cf2e41f
  • 57bc5e42907f566990514eb57dee296c
  • 5a0c984006b088c26db5a4f454b7a0ef
  • 615931aa63a3392891d4c8e768ee7ada
  • b4b5416962ac800a77a0cf756bfd3fa0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1668 b/gamelists/nes/linkedhashes.php?g=1668 new file mode 100644 index 0000000..4655c7e --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1668 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 2c90f2f26e392f9bfddf72c28b8f2938
  • 7bb417bc023f48cf6184d9bc6b7e87f5
  • a75665556906710c433945d0111f11e6
  • e310e8e2a625cd71a698540cb529e2bc
  • f92bd9ade4753cba85e4f5ad6e210446


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1669 b/gamelists/nes/linkedhashes.php?g=1669 new file mode 100644 index 0000000..7dc94b1 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1669 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 44dca16afbee7fd947e86c30c1183846
  • 46db3fa928262ab30552aef77bdaf02b
  • 6554b2d79ac9bd0b05cd5d6174503f0a
  • 8a6d2c512d1f848a3f951eb596fbe7ae
  • f1d71864db620eb73073616f78c11155
  • fa382374eb4a93a719064ca6c5a4e78c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1670 b/gamelists/nes/linkedhashes.php?g=1670 new file mode 100644 index 0000000..489115b --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1670 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 1871488dadc879cbc2de8e2e6bc8dd24
  • 1c934227cce06d04d68da344e77a1c29
  • 5b33eefa3b6a9b2cf0af0b8f65de52fb
  • 72e105060a3a1ef30694332e1526ae3b
  • ac438f00a040a92c7bf48cd354d1a8cf
  • b8592879590cddec02fe077217562d00
  • e5a2d5737f0337711bdceb1d97f71054
  • fd8063c49ca47b41df2e0e5017a68c70


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1672 b/gamelists/nes/linkedhashes.php?g=1672 new file mode 100644 index 0000000..4230ffa --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1672 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 668f9649fe89ff30993e8a78313fb130
  • c6a053caa0ca0e7372979db0e9ccdbe1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1673 b/gamelists/nes/linkedhashes.php?g=1673 new file mode 100644 index 0000000..702eee1 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1673 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 9539cd44013c3a2a5fd6982c59e9bba8
  • c25389ae7d1fb2d1bd60232a61986236


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1674 b/gamelists/nes/linkedhashes.php?g=1674 new file mode 100644 index 0000000..66520dd --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1674 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 2a0df2f8887c57bbbd64889cc75dd9e0
  • 2acf27bf884101d2eb303f51f3579503
  • 32a28150e8263d4a1b344f82ba30af13
  • 370f5862746b67637087b3b4cd64b163
  • 3b712f9dac7f7ffba96d1eb86f1b53da
  • c75b52fc9a4bc657c1de7524833bf88b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1680 b/gamelists/nes/linkedhashes.php?g=1680 new file mode 100644 index 0000000..ab1fcd9 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1680 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e2297d6fbd42a09b162e84507acf4c04


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1682 b/gamelists/nes/linkedhashes.php?g=1682 new file mode 100644 index 0000000..f4bf75d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1682 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 1d5aa88015f5dcbc7581c206c4982db4
  • 28eb470f84bcd54320fa890003d26402
  • b01a5dbe05aef906d65cdd2c0286cb5d
  • b3bb9296b5e1e0c83e90b6da9e8a41aa
  • b9c0075700f4949ed981a4ce35723f47
  • c7e191e16ca84482a1d613de877bb533
  • da0dae68ce4220d669fd032dbf5937a6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1683 b/gamelists/nes/linkedhashes.php?g=1683 new file mode 100644 index 0000000..959321c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1683 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 936b0157a2a547235f991aa44d77cf9e
  • e09af03d1efb03bdbe4acb3affc16296
  • e25ee2816c4f6fcd28715ddcfbde7788


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1685 b/gamelists/nes/linkedhashes.php?g=1685 new file mode 100644 index 0000000..8053d87 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1685 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 4f2fb7724e7f69b4a5e651b1e43432ad
  • 5de24cd5374ba0937bd8a8152eaa669d
  • a2cd57dc3c2b179c2fde1a8b96951aef
  • a861d24ec9f170d241c6a2cb361e55dc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1686 b/gamelists/nes/linkedhashes.php?g=1686 new file mode 100644 index 0000000..24cc279 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1686 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • aadba1c594c5c08fafd6bcc6f466b2b4
  • c66de610bbc1cb483e5bd9578496f962
  • cfb8b42ec388f51104e0d0b57f15f75b
  • d2181fab244df1e472c21acde28bab2f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1692 b/gamelists/nes/linkedhashes.php?g=1692 new file mode 100644 index 0000000..bbd2989 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1692 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 2a5c4d22312d8151d1582d8abdb9eb5e
  • 3cc1cc72497cbf67aa00482e02d2acac
  • 44473ff82fb3fb859afd611e6880a80b
  • 70a18ffd76da0c22abc9706714d4cbac
  • 83c66a45e6add56cc161f8c721784362
  • e5e056ea070e1e5ae4a2cf12f6ece746


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1693 b/gamelists/nes/linkedhashes.php?g=1693 new file mode 100644 index 0000000..d7d62dd --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1693 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f2c7d5583b87451825c977ade0ed2b16


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1696 b/gamelists/nes/linkedhashes.php?g=1696 new file mode 100644 index 0000000..ccc8682 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1696 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • c5b8631bc83ffd1f30c85c355ed592ab
  • f471b927253130adff4b478ceeb1f9a0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1700 b/gamelists/nes/linkedhashes.php?g=1700 new file mode 100644 index 0000000..5f1bc51 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1700 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 1e8a9ebc15adf523ccc704fc11b63ca8
  • 8c995f955f2b016a0fdac8fe37bb30bf
  • e13c77f5674648f4ffd9ba7e82d3b604
  • fcb354cbdc180abc990da9317d619629


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1701 b/gamelists/nes/linkedhashes.php?g=1701 new file mode 100644 index 0000000..ac46644 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1701 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 9 unique ROM(s) registered for it with the following MD5s:

  • 335a5592bcf4839b2615fdd572fa79b9
  • 338cd4df40185c0e6aaadfcd2c4e5608
  • 52485ad0d6aaca08be2c1bd4c855a080
  • 5b34826f94ae5aadb570696863a31e2b
  • 7810f70fc3c17226a5365ef64283df0d
  • 8b545322345b81a2f28b7dddf79e3b61
  • 9a6ee6b9c46d828e76f7a2beb4726ba4
  • bcce430f597451dfe66575cbf3277da0
  • c90d652840d02c8eca799b3799bad6f7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1705 b/gamelists/nes/linkedhashes.php?g=1705 new file mode 100644 index 0000000..1704ad3 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1705 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 09032dba626f75c6e0f443182ee489bf
  • 6764508784b5277187f573e9c37e3a55
  • b19a51ff0b791c28ec55c6e3cb392107
  • c64fe24b4facaaed8900cb632c6b7b1b
  • fd7321183afd8a0de24cb65b1d6263aa


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=17054 b/gamelists/nes/linkedhashes.php?g=17054 new file mode 100644 index 0000000..090144d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=17054 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 61bb83f677239f68aa4f5793e1ee0346
  • 685880f3e9f09118afdd57417ac47b8c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=17058 b/gamelists/nes/linkedhashes.php?g=17058 new file mode 100644 index 0000000..0b6bdd0 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=17058 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 13a8ab5f6d85830542f49552ae37383e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=17077 b/gamelists/nes/linkedhashes.php?g=17077 new file mode 100644 index 0000000..130514c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=17077 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a9f1b1f6af56df50877c4fd973707961


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1708 b/gamelists/nes/linkedhashes.php?g=1708 new file mode 100644 index 0000000..cfb71c4 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1708 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 34831d40e08da527bc1b32f572c84561
  • c96adb88609c5bfcd0acd91cdca7f330
  • d11f5916452e99759f2672cd393398d2
  • de9027d927334b5fb812c039a1264a08


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1709 b/gamelists/nes/linkedhashes.php?g=1709 new file mode 100644 index 0000000..ea6eecc --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1709 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3d44b833b5d24c043685df38d7f618b5
  • 734c4ff66aa541b202c2b2c51cab4bbb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1710 b/gamelists/nes/linkedhashes.php?g=1710 new file mode 100644 index 0000000..14a2581 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1710 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 29cacd2e0a82fc2b4c9d2bf0e0468916
  • 51661e523b00aadf1eef1ad6b2d27258
  • 85c05b54ee935fbb4eb2da2d429a7f12
  • 8c3c9b041392f8ef06f6b0c7432c589c
  • 9346ebec7fb8c5c61f937ca46a096c69
  • a663ebe567219eb909373df5f2a39206


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1711 b/gamelists/nes/linkedhashes.php?g=1711 new file mode 100644 index 0000000..7dcd0dd --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1711 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 57de5b9fcc2007f0e8500e25274401a1
  • 7a090281563dc9598cb8b81c6a0a3ea7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1713 b/gamelists/nes/linkedhashes.php?g=1713 new file mode 100644 index 0000000..9557232 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1713 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4156c20c94c2af1b4346b52f46ba6b5e
  • a54163ab8b1fe40c0cd81638357cc0d4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1714 b/gamelists/nes/linkedhashes.php?g=1714 new file mode 100644 index 0000000..2f3f6ea --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1714 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 21af44d1e8db7c33b66c4f1f4d1efede
  • 936974afe24551ddbd341ac9ce4dfcb6
  • cad1f1e422a087586afcd1bd4f97c66b
  • ceed379ad9dbcc75ccae5db3268c3d84


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1717 b/gamelists/nes/linkedhashes.php?g=1717 new file mode 100644 index 0000000..ef8b7f8 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1717 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 4bc6264669f4254c57a13a31b4d1b1a2
  • 7915989354f8b96e10aa4a6d0e163c55
  • 9e7755aede0e78954d83d03a87274ccd
  • d2a68b210485fa83a5ffc2c2d63d8dfa
  • dc34990856ceaae681f93a3ce56eb6b7
  • f0d94f25db202c935cd8f1cdde10a0aa


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1719 b/gamelists/nes/linkedhashes.php?g=1719 new file mode 100644 index 0000000..698f72e --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1719 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 00b56614b73b76dea1877808b501d4cb
  • 6ce1f32c9177b0b79b390b5ce6a2db52


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1720 b/gamelists/nes/linkedhashes.php?g=1720 new file mode 100644 index 0000000..4a735db --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1720 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 3411ce799d241642d8354d642451880f
  • 465dc95c995e70b3a161f06d67c1942d
  • ae22527e362b9622fbcd4901facee3ea


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1722 b/gamelists/nes/linkedhashes.php?g=1722 new file mode 100644 index 0000000..53c697f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1722 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 12 unique ROM(s) registered for it with the following MD5s:

  • 159c532f3dda86a0ab375bce60131671
  • 1818b8f465615c717e498f2b51763c94
  • 3f9b16a2f35922a93069dbb86bd147ec
  • 40c601ffc9b78ac8bb1b25dc6ed45ef1
  • 49c0ffbd6fca692e7c567b4d72ae0847
  • 74f4a023a84c21fd714e0761f6805c00
  • 913dad9447b6be47eef65405b82ad41a
  • cd8cf02f03eaf13fd61ed3cef9a7ebd6
  • daed7217e1d270e78c5799ce01a4b678
  • dce09b5052897b78ca7f9370568cb0c2
  • f432f520c89e760689be70eaa3f743eb
  • f7756dc7aa7d7afaee1198cfe47e0fe3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1723 b/gamelists/nes/linkedhashes.php?g=1723 new file mode 100644 index 0000000..fe6eacb --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1723 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6c65adcc168c838238b2189db61a2ba9
  • 719dcbfec73796ca202277d82b27ed96


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1725 b/gamelists/nes/linkedhashes.php?g=1725 new file mode 100644 index 0000000..e28eeca --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1725 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 0200ad4e1eb68add630800270bbf179e
  • 22e7d8b0878778a725915418efba5cbe
  • 404a7eedd0b9348eab4a06e412b49ead
  • 46072fab845d1d5e74fb3558ccf62196
  • 845dca95ab1008e045e2eb965e61556c
  • b740e18e8ed874370caba0458c3cad3c
  • ebdc427e6d96ce20bc1ad1f74d34e220


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1726 b/gamelists/nes/linkedhashes.php?g=1726 new file mode 100644 index 0000000..c0e9125 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1726 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3fa50469878212f7feb8fa784404deac
  • 81bfad8f823678c4b595c3605ddcab7b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1727 b/gamelists/nes/linkedhashes.php?g=1727 new file mode 100644 index 0000000..b2fc5e1 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1727 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 23009553145f19a77c6e87c31872f902
  • 3811614c17644da048ac5903250a2204
  • 3850ae940d87632d62393d30951e900e
  • 8b71e0a0662bd476a08635fcad1629a5
  • a3ad52a2fab04cd4ba437a64fbf8007f
  • c56aad6259d4efdc4951bd9195332430
  • fa6bc08a528266d453ed2e6e6549acbf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1728 b/gamelists/nes/linkedhashes.php?g=1728 new file mode 100644 index 0000000..cbbad22 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1728 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 00e8a600804942359512ad1c7004327a
  • 073ed958f161ea9467748ae7e3264b0d
  • 2b5c0dae29650691e67a08ea58f554e2
  • 3a06bf1f3dfabab4eca161d39a0793d8
  • 56cfaafef6ba509ac60fa760215384d6
  • a9de893d3383c1d911d3d17d73ad130d
  • d862a4383378954b8ac00de6bd8b276e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1729 b/gamelists/nes/linkedhashes.php?g=1729 new file mode 100644 index 0000000..4bf880f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1729 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 9 unique ROM(s) registered for it with the following MD5s:

  • 0665ae5c8f9897ff2d801dc2f53405ec
  • 20291670aa8d77217fbc0c7dcdc45250
  • abb0e6602033692774dc2a614f6c3e40
  • bd10903cf228203338adb8a20de841f2
  • c942429d7683be1c1144f27c04497ab8
  • cc42975cfd0f9b48f610196a2654927b
  • d3b425074ba440c848e8ae2cb57d27e0
  • e029879900ef71307f0fa59498fb9ab0
  • f92df93c9d4c9428fe28e410d05c3569


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1732 b/gamelists/nes/linkedhashes.php?g=1732 new file mode 100644 index 0000000..5950fd6 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1732 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 0ae012c45606e0dcd6af51ec4dad20b5
  • 1a2d8eb2766fe80e63895f055a4a5708
  • 2dd755bf4f1802d41206d7252e765e20
  • 2f310da1fbeee828a93f0cd0cce01fec
  • 4a10dd8fb6b575765b28b33faa71a41f
  • 9050d728489a81b4a359f9a2aac62beb
  • dd20c8e5e291cb32b43e17e67549a2fd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1733 b/gamelists/nes/linkedhashes.php?g=1733 new file mode 100644 index 0000000..922563d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1733 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 881f7570c7a228fda35f6bcc5ea024bf
  • b144d81f891a70b3869d019190119987


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1734 b/gamelists/nes/linkedhashes.php?g=1734 new file mode 100644 index 0000000..dcc9c69 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1734 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • b2093c89a489681c9ba8744a92f60580
  • dee8757582e0575c5f729aae60b1dcbb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1736 b/gamelists/nes/linkedhashes.php?g=1736 new file mode 100644 index 0000000..7f741eb --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1736 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 1befdff1268497c1b78a9b10e9ea1b01
  • 69341dbb2715a3fa3de9a6209b536378
  • be72dc9a96c9a97a4a19b24a25f0e701
  • cd8f58035256ec4d29d2417ae65b8b71


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1737 b/gamelists/nes/linkedhashes.php?g=1737 new file mode 100644 index 0000000..b737fd8 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1737 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • a4c7d9fd8c0691644039b9ed3f9701db
  • a8b496e4630da0585b2e06d1eb4e7806
  • b1759492f6c18682f43d465e831f1419
  • ba44e7d7de6cfe2b2c2c0407710f64a6
  • e1726b9798b959deacd2aa1545e9b316


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1738 b/gamelists/nes/linkedhashes.php?g=1738 new file mode 100644 index 0000000..af07f2a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1738 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 0a310bbdbc1f4340c31eb25fe1156db6
  • 24e7aa76fd3f0fef9031dd9c8d3e5cea
  • 746684997fa1737f87cbd060be811f4f
  • a720e2f8e395ff1d51991803e56ad7f2
  • d91d8883a13d5f13946b731bddd306d5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1742 b/gamelists/nes/linkedhashes.php?g=1742 new file mode 100644 index 0000000..1027a5d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1742 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 3df2bfdd6f134d637f6f16f0ae3ffcf7
  • 5ae8d1867f03bc2ec6e69001473127c5
  • 8c812d2d4ac35eb33ab658e9516d5094
  • c64587d39b007ed2894454cfa2cebe77


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1743 b/gamelists/nes/linkedhashes.php?g=1743 new file mode 100644 index 0000000..71e5e15 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1743 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 12 unique ROM(s) registered for it with the following MD5s:

  • 1433f7c8c5af626d388b6cb08ebc9626
  • 4ee23ff26589749a39b4aad84da7ade1
  • 605137ec066faf665a3f0635560d2d04
  • 95c579fded6031b73263db5f798a4bf2
  • a96c1a9c73469808444258c64ab9bca6
  • c8194a5b8d449c1326fa22d4cd4e38e2
  • c9b8009166380608308220f213b2965c
  • c9c94df2ebb19bd6d717b2cfbf977574
  • ca5f0ab67efadb25f300b4677eb4346d
  • e58cf06fa05b64671809aad888d47c21
  • f19cca57b6d350454c64149db8242419
  • f8f06e3ae2e4314d921b49f67a720e58


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1744 b/gamelists/nes/linkedhashes.php?g=1744 new file mode 100644 index 0000000..26dce30 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1744 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 51be3c0db685f71f4a69c573345310a2
  • 6566b1abe649fafd0bbea65e038300ab


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1745 b/gamelists/nes/linkedhashes.php?g=1745 new file mode 100644 index 0000000..c3471be --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1745 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 94edaed6f4a80e27dea80f34d16baf7f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1746 b/gamelists/nes/linkedhashes.php?g=1746 new file mode 100644 index 0000000..d7acd81 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1746 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 4b9b6fd298aaee1b1eaecd4f379ee8a8
  • c0a96264b9f8e4b7570c1c4c321cdba7
  • cd2d78f6fda9ab106e293386bbba2e15
  • cfbbafbecf01867d270a09a12f607372


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1747 b/gamelists/nes/linkedhashes.php?g=1747 new file mode 100644 index 0000000..281bf6e --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1747 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 3232592db6231541753677077001b9e9
  • 32fdfb48b1e8cee9dce2aa434d032fb8
  • 731b764f201e31c5b250c67acf835fb3
  • ba3c7743be48ae513fa836c1eba526f9
  • efef201d1d0719426d38e1f3e1d6b2df


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1750 b/gamelists/nes/linkedhashes.php?g=1750 new file mode 100644 index 0000000..b5a91f1 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1750 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 22b8ba79c5267221caaae4e7157f29fb
  • b9c932f97c2f17034dfa29ff73accbef


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1751 b/gamelists/nes/linkedhashes.php?g=1751 new file mode 100644 index 0000000..8e61156 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1751 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2a9e8c3781bc6e37fb1af4ec0c17abda
  • a323fcf9dc1a581ed33d8e855204642a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1752 b/gamelists/nes/linkedhashes.php?g=1752 new file mode 100644 index 0000000..416850b --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1752 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3a94851289cf220e18d82fc5d056f7dd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1756 b/gamelists/nes/linkedhashes.php?g=1756 new file mode 100644 index 0000000..3b6e29f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1756 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 4bc0913e5ccdce15449b722a4cd7083c
  • 82bf8170c1763ba82c54d9c013dd98fb
  • b69780b6878c050a243b8a5e9bad83b5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1757 b/gamelists/nes/linkedhashes.php?g=1757 new file mode 100644 index 0000000..057e92d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1757 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c92a4fba5a8d328146e99402ff176735


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1758 b/gamelists/nes/linkedhashes.php?g=1758 new file mode 100644 index 0000000..b0b996f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1758 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 11 unique ROM(s) registered for it with the following MD5s:

  • 16b03b365c4d687459b1200bd0040988
  • 3007bceea55445357740e670406cf786
  • 4228196e1d200db26ac7bce4f55cdd5b
  • 5cd766899205e686dc4d06b0da06c999
  • 642b90c5f785470b6ed751e363888163
  • 66e4120446e9a2c6dea9b975d9e70aab
  • 802457d23975a97d9da23a15dbee283a
  • 87ba7231698742a839d013395061b74e
  • d3fcb1e5646fa55170e41a5656deef53
  • dbfc7d27fa2a779c62c38eacab12a4ce
  • ef88486375d7bf7f1ba06da81868bbd6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1760 b/gamelists/nes/linkedhashes.php?g=1760 new file mode 100644 index 0000000..b5b620c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1760 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 58719aa75cf961e4a58fddcf2457c455
  • a7fa5c1420a187e2a25a85e45688d5f6
  • c6d090097f37ad89184b6f58feb36304
  • e773464fe5a2337458186e8c2d55a36f
  • fd0d393f6728e62edd743191793f4cd5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1764 b/gamelists/nes/linkedhashes.php?g=1764 new file mode 100644 index 0000000..80878c7 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1764 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1bddc3b9473d6bd1e5cad34a805845de
  • 9d44dbe3103272095e627722936ffb87
  • 9da70b67f4b8a2bd560a2952fc95da2b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1768 b/gamelists/nes/linkedhashes.php?g=1768 new file mode 100644 index 0000000..2dfb411 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1768 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 15 unique ROM(s) registered for it with the following MD5s:

  • 18d99863a85cbcf8bf6244e1385f9d0a
  • 2f9bbf2ef75549339d9008f9405003bd
  • 3710890d9e69098458c8fefe4be225fa
  • 4844ff2dac4a0136050b18ad310a09f9
  • 6316bda0320106e6da5af9f9cafc0dc2
  • 71768589f6a8d4b809a6c20f6093bea9
  • 8bae929738d167b6534e020986d7d48f
  • a0db48b162176247ddee5b714e5f916e
  • af3dff7c236d03cbb07fb2171d069edc
  • b1426d097bee3cda86a137b665e9970f
  • c158214980b43dc5e232e99d8364fd9c
  • d7c16c678e468991421330e0a265199f
  • e8af827b49ea01faf8bd95358bdef837
  • ec2b65771753d2daddc4077bbdd294ec
  • f0bffe56fcff18bb1a149a8ff89ed1eb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1769 b/gamelists/nes/linkedhashes.php?g=1769 new file mode 100644 index 0000000..e474dc7 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1769 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 10dcedd46806998abd5c8cff62c1d7b4
  • 4b53d9b6b49d535ff6b3db512ca5ea9a
  • 54fcf9168a09107cbaaaa6185abf9651
  • 96cfeea23c41f4b2338bfe9eb8cac1dc
  • ebc1759fecb33d8ea56ce330560eef47


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1770 b/gamelists/nes/linkedhashes.php?g=1770 new file mode 100644 index 0000000..513ceea --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1770 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 1ec9461b4f01e44aaf2431806c9a4bfd
  • 2ea5d8c354ad815ba6c0e0160ff36d6e
  • 36108cbd6c4bc09aa39f6eb9dc72150a
  • 584d804027ab09d8f5a43692c6421a21
  • c17a8301feb2a41ff69fae66abaf548b
  • e06129a966aa07fcdf9b6b03b50b9698


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1771 b/gamelists/nes/linkedhashes.php?g=1771 new file mode 100644 index 0000000..58632fa --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1771 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 0bda46ab6243a07fb256bc866354e5bd
  • b7ad9b9236eb92c85ca01aed6f883684
  • c658f8d98f337d86e23d313d0dcf55e1
  • d155ac672c30a0fccc30c840214cc27b
  • e5dbae32202441bf2f52be6924598d7d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1772 b/gamelists/nes/linkedhashes.php?g=1772 new file mode 100644 index 0000000..fa38278 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1772 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 05497e9c103519a1a542058ba40331bc
  • 38915a0f29b6d4da9a3a3decb1378fd0
  • 799e73f222351393dc3ee4eeb57447f7
  • 7de9c960328015874a4ce4a1e6136d46
  • 9ace00a705c3adeb041398bf9706e386
  • d92c14ef6254772c3de34c0947768dd6
  • f183ca989844c661ce5ac58292efac81


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1774 b/gamelists/nes/linkedhashes.php?g=1774 new file mode 100644 index 0000000..2eba695 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1774 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • b42fba1197364bab5712d1dea3cd8023
  • eb15f4501bfca4b391ca0d4f0b36d670


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1775 b/gamelists/nes/linkedhashes.php?g=1775 new file mode 100644 index 0000000..1d77584 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1775 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2d16b9c0a3304225ede969461d9554ca
  • f8827c14d1d0c489a8168a65aa9a19c5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1776 b/gamelists/nes/linkedhashes.php?g=1776 new file mode 100644 index 0000000..559861e --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1776 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 9e727f762feebe4949c91d29fc5e19fa
  • b167c3d23b3bd2f0759e5901d6ec7ebb
  • e01efa8b5a543049b87a024211515916


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1777 b/gamelists/nes/linkedhashes.php?g=1777 new file mode 100644 index 0000000..2742f45 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1777 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 402f24161ebd8899d07474f6d887969b
  • 71a8fdb0f17c36fab3655ab3783b3420
  • 8b8dfb85e94a392fd36fd190ae93a528
  • b764dcf61b2b9b3bedb4a3e1bf0ebfe7
  • c7773fe1ba7144be2fd4806d98ee5053


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1779 b/gamelists/nes/linkedhashes.php?g=1779 new file mode 100644 index 0000000..4a31c41 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1779 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • b75b95b9eb8325ae18a84123621c08b2
  • ca0cc2cafaeeaa394a1a6d8093da7235


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1781 b/gamelists/nes/linkedhashes.php?g=1781 new file mode 100644 index 0000000..daa534e --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1781 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 1190c4c6a8ad43a1030d9a423a0ed562
  • 2a9e90b76233cfd148fed0e8eb2ebcdc
  • 5ffb06dda41473bf4f72389e8e4b8c18
  • 6bf1f13095cdbe84478223376090cc73


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1783 b/gamelists/nes/linkedhashes.php?g=1783 new file mode 100644 index 0000000..5cc8b30 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1783 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7b1016f649a7f21e6c27f3f69904218d
  • bbe75360077ed023692be1f8533b6d13


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1784 b/gamelists/nes/linkedhashes.php?g=1784 new file mode 100644 index 0000000..a057304 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1784 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 4b01df8b6a653cc46112b6806acff930
  • 5ed2f332b4fea928a62502a49f2d906a
  • c07bc2117c89fbc2d3e8b8d758914f28
  • d3403111af29e991400dceaab2f4e1c2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1787 b/gamelists/nes/linkedhashes.php?g=1787 new file mode 100644 index 0000000..dcabafb --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1787 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 1dff3b96b18bfb635b66c428ae7880f4
  • 3c1a907891b1c7015a52b207ec7b53df
  • 84ee5fd666eadccafab5b2fdfd522dce
  • edd9f8247e5761963e3eb3fa27fb7507
  • fa7e76dfaa627528931f9a9804e35d35


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1794 b/gamelists/nes/linkedhashes.php?g=1794 new file mode 100644 index 0000000..4aa43e8 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1794 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 16e883f7cb210a48f6632225089df9c7
  • 5106e31a7ca19b19bb60e00ce0121fe8
  • 716ecb8f3af4acd9ab3b6838b1e97a81
  • cba7adf07ebd00cf95d8f09cc23f5371


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1795 b/gamelists/nes/linkedhashes.php?g=1795 new file mode 100644 index 0000000..6058580 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1795 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3da653f3d141ec1fb0cccbbd9461309a
  • 7f5b89eaf076618cff6bb3132bff6d11


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1798 b/gamelists/nes/linkedhashes.php?g=1798 new file mode 100644 index 0000000..a96e98d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1798 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 10efb60b347ba59d0003fa35f076dd49
  • 37753f20ceeac389473f4bb5426966a1
  • 731d4fd3aaa69131205bafaea75e9cd1
  • e6b128e9cfac2560652b993d45114163


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1800 b/gamelists/nes/linkedhashes.php?g=1800 new file mode 100644 index 0000000..071c73b --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1800 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 094c4bd4016b6bec13a37e77580fa31b
  • 99bfd6d0ff53d78e5126d274a0605d30


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1802 b/gamelists/nes/linkedhashes.php?g=1802 new file mode 100644 index 0000000..690ce45 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1802 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 209c53ce857e3977637b7b09c6855322
  • 2b0548c776c304c5bba5117a21a4bbd1
  • 725026e6566fe3996e11811fadc0f7d0
  • 7928f21cefba8aa8185ffcf4912696f1
  • e6b0dd86de08a0ccf168c83e91525914


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1803 b/gamelists/nes/linkedhashes.php?g=1803 new file mode 100644 index 0000000..23675c6 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1803 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 12 unique ROM(s) registered for it with the following MD5s:

  • 17011178435d247aba5039141674ec1c
  • 4ca2e97381b3c599298ca76207ba9e59
  • 529a088ba333035a111424329ccf4abd
  • 6e7b9e832408b595a5344ecc4e13d3b0
  • 878bbaf8eccfa867b6dd1502ecdbb707
  • 92341c39f15405b36b1b70b2f7f876ba
  • 9f4bcf0e3e2f67d0e1bd21f22452df34
  • b8ebecb01b219384ba0a97a210e40ddc
  • c177b074617ca79f3f174134134327f2
  • caea65d1f251ff394e8670b60b6c7827
  • ccf2a598b23c0aaa43949c87192e50d7
  • eaa13aaccf8a1475aa9ce75fed61933d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1805 b/gamelists/nes/linkedhashes.php?g=1805 new file mode 100644 index 0000000..6e679a4 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1805 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 011e234c598b282a34a378aa01f871f5
  • 62789564051c6c61edcd4ba237a6a4a2
  • 74220ef478a2e85bed04380ee93ed2f8
  • 89dc61628d31e48497cf2eb72bde44d8
  • bbc0c856770cb19ecaccd9ce1ccf059b
  • cee9fdd3d7595f102b74b36fd1de396d
  • fc6b21f908a817a51740e4d07045f80f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1806 b/gamelists/nes/linkedhashes.php?g=1806 new file mode 100644 index 0000000..b47482c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1806 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • b1e431ac801a23316cb6209f9b77ad6f
  • bb88f06b99b0598e5d4e9738511d981a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1808 b/gamelists/nes/linkedhashes.php?g=1808 new file mode 100644 index 0000000..22faeda --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1808 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 34d59639a79fa576e2e7d86593261fe4
  • f02f0533e69b981a810b07254764081d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1810 b/gamelists/nes/linkedhashes.php?g=1810 new file mode 100644 index 0000000..3e82136 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1810 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 81360f1a8e8ca05b20bf013cfd333771
  • dcb0189c89afd03faa55fcac485d4029


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1812 b/gamelists/nes/linkedhashes.php?g=1812 new file mode 100644 index 0000000..3515cf6 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1812 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 3a6a9a20a017880eebb71d3f9c93d919
  • 5bd5aeac6a4f3023afd9516d4c8ed050
  • dcf61928cc6767048925c9fbc48a90de
  • e196b0d035848e66cc512f390a34ad04
  • e1b352acdb216f3525be8d835b5a83bf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1813 b/gamelists/nes/linkedhashes.php?g=1813 new file mode 100644 index 0000000..8a3de59 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1813 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 014259dad5451cbedc750a137a386d94
  • 0256e02693147fad9383190528ff0576
  • 6aed8e56765891b9d4c5bbb766150ddd
  • 70648d346f902e599f943963667f65ce
  • c92a5b1ca4e496413a27cc91c14ecaad
  • dd73d9fb62d001aea44ff20f4535fe2e
  • fbe29379e4c70c9697477ae429347214


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1815 b/gamelists/nes/linkedhashes.php?g=1815 new file mode 100644 index 0000000..1a90098 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1815 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 05a73f1befd3b8ba211adbeba8d9e20d
  • 508b801098af3f616a639db8c12ee78a
  • f86a3ad9522f908996c1a9b9b0c51089


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1816 b/gamelists/nes/linkedhashes.php?g=1816 new file mode 100644 index 0000000..acaf000 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1816 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • ae5a1d9c887ec6c9dcd9225d11bb7dbd
  • d969b9784155ba24919dbf21568db82e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1818 b/gamelists/nes/linkedhashes.php?g=1818 new file mode 100644 index 0000000..166e269 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1818 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 267e1882db5c6523d6d49cbb5edd470d
  • f417706736b1ec1614efaf22993c22ca


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1819 b/gamelists/nes/linkedhashes.php?g=1819 new file mode 100644 index 0000000..8b13a89 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1819 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 560d31ce9c7ef5f905e26351df48ee62
  • b536636a6796298065f8df91eefaa9fd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1820 b/gamelists/nes/linkedhashes.php?g=1820 new file mode 100644 index 0000000..bd1242c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1820 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 8ef1b34b31f5ae79e3a62ceaebcf80b5
  • acd1b9c97b312fe4ea6422a525c72dab
  • d90680ae48bb41c765f6f64747072b19
  • e383c672a10287aeacbdf45990376d34


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1822 b/gamelists/nes/linkedhashes.php?g=1822 new file mode 100644 index 0000000..e68a7c9 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1822 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 3febc4c455a12db015c5b79d7b0e6a8f
  • b19cad871c9dfccf40f3e5feb51d5ff5
  • c6e0793a6053685e2af1934588268bae


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1823 b/gamelists/nes/linkedhashes.php?g=1823 new file mode 100644 index 0000000..a838cf1 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1823 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5d50d8f9cf3d6d311a2ac7f010d83be0
  • 81706abdae6d1d11b0c8986fc4383ec0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1824 b/gamelists/nes/linkedhashes.php?g=1824 new file mode 100644 index 0000000..2872b6a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1824 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 12 unique ROM(s) registered for it with the following MD5s:

  • 03b39f1259264a9d7f04bfa46e8d5cf2
  • 0769fefbf990b21f529ccdca2b60a7d1
  • a581833aa015394de219f52888039812
  • b51085d9ab4267746a9ed6fc609a98d0
  • bd2ab7c86788cfe3ce1cbd5722d5eeff
  • d181a2b7d24fedb22f259f44eebca4a4
  • d25418d0ff888e9ac6c619ff9a063911
  • d67ee6a0a7af959c417ce894470a49cb
  • e3d9813187f0bc860d0be506fcf3b4cb
  • ebe4e0b2bb6194bb3ced8b23b38c896b
  • f4ec5f6d9e235e76466e1041a9881171
  • fad7ce18aafd8da059b19c28e3376569


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1826 b/gamelists/nes/linkedhashes.php?g=1826 new file mode 100644 index 0000000..1163608 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1826 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • c4fa0cb631092f3830460cba16d81599
  • fd526b87d79dfbb9be11d9cf9dd979c4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1829 b/gamelists/nes/linkedhashes.php?g=1829 new file mode 100644 index 0000000..b4f77d0 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1829 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 10 unique ROM(s) registered for it with the following MD5s:

  • 44980a937c66d787182405f0642cae6e
  • 677983dc1df5304bb897f41c858f42b2
  • 9de64e4c39deafcdd2c186b6327e4f61
  • ab9ad69f29f812cb520dd49b39805491
  • abe7716351f7b3d2940f98c98d8efa64
  • b5f2534cea04ca729c9302af9236f760
  • db45eb9413964295adb8d1da961807cc
  • ecefabe54f471d87cf6efe2ff3183241
  • f2df55a4621da5aeb7c089a2662497e4
  • f349808b9225a72788fbe00c5218460e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1830 b/gamelists/nes/linkedhashes.php?g=1830 new file mode 100644 index 0000000..b457017 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1830 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 3158f8f7fe7ba27eaae0c93c59916c58
  • 57ec3379ec21147239b331e0ce9a1b1b
  • b7b3bb47d15de9d4a26eb431ee399ae2
  • c8f37bd24fbed6395eb834daecbdcf50


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1832 b/gamelists/nes/linkedhashes.php?g=1832 new file mode 100644 index 0000000..aee4b17 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1832 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 3dd618bc8c55ac052bd956d68ca112f5
  • 45182c822f8b2977ead7b81e76f2fea8
  • 8fecb44ca7384f6a74a7edd98822e02e
  • bd7da02aa57f292cfd3902f6a5b73a59
  • dd820c5f3123271c3b791a5223598807


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1834 b/gamelists/nes/linkedhashes.php?g=1834 new file mode 100644 index 0000000..03eac17 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1834 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0c2871619f49701e398135e32e5b2381
  • ab9bb7f5e79ef096311110d0178de36c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1835 b/gamelists/nes/linkedhashes.php?g=1835 new file mode 100644 index 0000000..ea45961 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1835 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0afb69ecca89adbb0e648d0df7eba4f7
  • 25cec1f9c4b23b2f8fba2552be05301d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1837 b/gamelists/nes/linkedhashes.php?g=1837 new file mode 100644 index 0000000..9f1c6ff --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1837 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • afa6d274a86d33cfb519515061704af3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1838 b/gamelists/nes/linkedhashes.php?g=1838 new file mode 100644 index 0000000..06c56ee --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1838 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 9 unique ROM(s) registered for it with the following MD5s:

  • 423854f5f4cfa9bdd429e1313eec9bdd
  • 4ce8318596fecd91bf04670c9989507f
  • 9b3d8396010debfde0b0bfdea3993691
  • b18cecb5eb529d82ea619d1b7594c457
  • be4670792b17c74eecf3a0e7f37ecfe2
  • e73a84f4a516be49343299b41c818bdf
  • e7f675ec26c5b3c74e2a65fc45b837c1
  • eb996860b55621352ee0fad6fc828687
  • eff2d999a9a379f1ab52037188ac3404


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1840 b/gamelists/nes/linkedhashes.php?g=1840 new file mode 100644 index 0000000..b7cd6bf --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1840 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 6f78d10c199ccae30654f7e1c6534527
  • 72dd9077509c00c297dbae88419af323
  • 7bc993229420fbbcce9747e90a4d1651
  • 7f8bd1e9672f46a4963021db30eef623
  • c2cab313cc367d53c83149ba0df77cb1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1842 b/gamelists/nes/linkedhashes.php?g=1842 new file mode 100644 index 0000000..1f51e84 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1842 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 2aba26a0dc86e26e83248f83fb9d96e0
  • 7c355892e780655bb1a3dc0f9b07ee10
  • fe0d9e38b3439d1e2fcf0ac2399a5347


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1843 b/gamelists/nes/linkedhashes.php?g=1843 new file mode 100644 index 0000000..eeab755 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1843 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 33427756c0c58fe934f13fc408ac7ec2
  • ac30d59eab5e2240eb5c6c53f41ec49b
  • ccae61ddcff32cf5ae32d2ce6110243b
  • e04c6dc190b504517daf36c4c8477459
  • e8be79b30426822b2e0b32d26b9ad020


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1846 b/gamelists/nes/linkedhashes.php?g=1846 new file mode 100644 index 0000000..aacf261 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1846 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1a465e01bef7f5a573eee56f4ea9912f
  • b7f24e66a7df5d102023977ab887d97e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1847 b/gamelists/nes/linkedhashes.php?g=1847 new file mode 100644 index 0000000..df0381e --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1847 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 05a599d5e76c5820f6c18d10e67448e5
  • 431633583970c51c3d378f2399a46ec9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1848 b/gamelists/nes/linkedhashes.php?g=1848 new file mode 100644 index 0000000..6f2fe40 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1848 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6e1f4ba07536633b170fe32e65b6dd5a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1851 b/gamelists/nes/linkedhashes.php?g=1851 new file mode 100644 index 0000000..0937d29 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1851 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8fe1db994026ede8c0993b6f4b9af408


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1852 b/gamelists/nes/linkedhashes.php?g=1852 new file mode 100644 index 0000000..89515c6 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1852 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6c16dd842c54dd18764753da42ef3706
  • 7f8cfaabad4d624ab348807ec84da4d3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1855 b/gamelists/nes/linkedhashes.php?g=1855 new file mode 100644 index 0000000..4c1a1ec --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1855 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 49bb27067262b4d5a74e14d806981825
  • 9903087102a9bf59b0e33932d1098548


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1857 b/gamelists/nes/linkedhashes.php?g=1857 new file mode 100644 index 0000000..fd2bf25 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1857 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 14 unique ROM(s) registered for it with the following MD5s:

  • 1bd9b3d68634724d141ecbc3191bcae9
  • 23f623ed4e62ef21f856f47476a88298
  • 260828108cb94fca530b5384239c0291
  • 2ec92e60e033b4d8aa5caa6b1f7838b5
  • 3bddf5bf1fd482744dbaef735e7a4d02
  • 63a2bf787d08cd72886091e630d72582
  • 822b3764c5ae8df44efb73e78a7073f0
  • 86a30345485e2061e7f62a437405d1ae
  • a0a3ad20b7dc3384b7e9fe55fdad7131
  • abcc124141622eebdcccdfbe79aecedc
  • add5cf0dada508dfaee09a368547faa8
  • b5b5aec4b4c0a1b1de041f4982564e5d
  • b98b0789e9a88b55ef8be54d613f611c
  • f277a19ea035eb2ddb9343afd235dfa4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1858 b/gamelists/nes/linkedhashes.php?g=1858 new file mode 100644 index 0000000..f934472 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1858 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 12538aaec4f1b1bf48615afd4e5104a1
  • 3e359dbe7f3dec78ce0e6573fc1e2923
  • 485f01733c2d1d9b3a31ee97097e71d4
  • 8e668e161d7393d8c850429d87aa4f2a
  • 908f1665972b93aa4477c55507c3b0dd
  • 951406812b24e0edb4f8be976e06ee0f
  • f0378e57ee1c27ba6499ceecac2b6d42


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1859 b/gamelists/nes/linkedhashes.php?g=1859 new file mode 100644 index 0000000..bbd434f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1859 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 16 unique ROM(s) registered for it with the following MD5s:

  • 02532f20b31d33fc9f055f764431bd5b
  • 07c1b92ae9b78f209075a8cc6d3eebf0
  • 0b5bf20cf9f1472c4db821e4670ceeba
  • 0f02199282cb9f546f9e7251872e445b
  • 278373248ddef20a2a89a02e29181a6f
  • 2e1f85e394f16a93528250d64b6b9490
  • 39653d18633b5cc8afcbfcdfc6ffbb84
  • 60e2600fa999530ea5b3964d1048e143
  • 6ac9aa62b9662df811d61b4f7566b132
  • 878254ce70f1e47b8cc9e750440af167
  • 9cb73b71ff6fd0c09f8e1e848e06422c
  • b0430c155e39e89cbba8f3d143027387
  • c45493db311042ff311c714028c7dc66
  • d6c91d4619b6836bfc7ca93a93178436
  • ef16d191e4c731b2f8a763b362347063
  • fb321fbde64d15463fd106137ff9ec79


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1861 b/gamelists/nes/linkedhashes.php?g=1861 new file mode 100644 index 0000000..14b0284 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1861 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 9 unique ROM(s) registered for it with the following MD5s:

  • 17528929488d6c00504b2975546f7ace
  • 193babfd5d74d57a2fcee6c6188aa0f0
  • 32e41cf67a9ca01cee0d3f0db5a0019e
  • 525d0ecd31d5a3427227b2c79c1201bd
  • 8368afd71c486050f8365f44a6f82ece
  • a5e650b5e443e801a6b1188e5aaba841
  • b72f944f234d8a6826fdb92d9c35f244
  • e253a8046a93687a1737b0a92c09299e
  • e976c80093e5dcb9f83b7b2b3b12eb27


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1863 b/gamelists/nes/linkedhashes.php?g=1863 new file mode 100644 index 0000000..0138c11 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1863 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1b33aa2d2abda7aeab09c98f7d7f19f4
  • 3fecae014f8b2841915ae882aea42b1a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1864 b/gamelists/nes/linkedhashes.php?g=1864 new file mode 100644 index 0000000..2e47a70 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1864 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 20bd86ca2194f3ff2745891afec72f33
  • 37880483d55d77a59082125e887e9486
  • c94aa18daf65bab9142ef33c1e626b33
  • e0217323f8cfdf68addf46b66afecf88


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1865 b/gamelists/nes/linkedhashes.php?g=1865 new file mode 100644 index 0000000..53fe306 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1865 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 18c676ea6195c865b892f8e03ef589e2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1868 b/gamelists/nes/linkedhashes.php?g=1868 new file mode 100644 index 0000000..9df53c5 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1868 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 3575eb3971ba67970021d94185316416
  • 7287329903b5fa282432a75368cf1004
  • ef4f716b07b37993cd8f3372a4ed8e0a
  • f2faf0c53624f486dff1e33ad8d595b5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1870 b/gamelists/nes/linkedhashes.php?g=1870 new file mode 100644 index 0000000..2eb09aa --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1870 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4c5afae9826997232c735fa865b77c10
  • 7eb2396381a1effe2e1b3af472bf015e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1871 b/gamelists/nes/linkedhashes.php?g=1871 new file mode 100644 index 0000000..c09661f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1871 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 11 unique ROM(s) registered for it with the following MD5s:

  • 1211006d56182d23565b983481ba4b62
  • 2becf8af763509ccfc9f515dbb503433
  • 32a3a3bed9b32f5ec2a0070fd522f4cc
  • 40d5029b7d1098d04fa1f2f22bb304a0
  • 52085be858455b29d09474e16bca90c2
  • 665f76ef8e56ba31febef94ac3171547
  • 8d61573cfdd5f99c4ea184645ed8360d
  • b13b88ba50653822b399c8b8a1c40496
  • e11f2162ecd36bd0717834ae6ce8caae
  • f18810c4a52386860ad76add0b65ace4
  • f9fb9f00c9e56862d39fdb5350f5cfb2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1873 b/gamelists/nes/linkedhashes.php?g=1873 new file mode 100644 index 0000000..b4c060e --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1873 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • cbfa1635927ddc38e1be3ff3e166931d
  • ed0057504fe693d71a3e8a1a275ff7a2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1877 b/gamelists/nes/linkedhashes.php?g=1877 new file mode 100644 index 0000000..02522fc --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1877 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 12 unique ROM(s) registered for it with the following MD5s:

  • 15feec5556048b0f148cb43ef5756f64
  • 24bb73e4ce91df87b7152759dcca19d0
  • 2f881b682e3e75084081f2b0d179522c
  • 35f89365209e77450855cfaa047ca3d7
  • 4380e5b9edab63b677a6dfa11a39ec71
  • 45a2d24a4d7f65c7504123709083237d
  • 5e6d3386b1d98975de98d2f10538d5d8
  • 7653def5dddbf427e35a2411b1692dab
  • 766925a0be2d7f68ba3d7d78134d3289
  • ad809323fe92d0e083bf77ccecae462e
  • b1de9d1cdd647fd1bacc5a3aeb1b947d
  • bfab5f738adb919f1ba389f5c38deb67


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1878 b/gamelists/nes/linkedhashes.php?g=1878 new file mode 100644 index 0000000..2bd7345 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1878 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6344e74ac60ca77acc14797c011657a6
  • 6ff5c5da9f7ff2600e18f0f168cd8389


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1880 b/gamelists/nes/linkedhashes.php?g=1880 new file mode 100644 index 0000000..ce7d7a1 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1880 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 0e1176f7a0a84bed28f56edd34fcee77
  • 46083d271eb2c429ebf2a838f4d250a6
  • 73cb316a8e36ef81d73fbef1c1df8a09
  • 7a14ee33709175e0c62007f218dbb7db
  • 7cc63e45bf43ef396e8b1ea5aeb52e17


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1881 b/gamelists/nes/linkedhashes.php?g=1881 new file mode 100644 index 0000000..964f27a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1881 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 170adb71cbbaa754008345d623eb804c
  • ae32ca8659affeb97c117bb220a0619d
  • c910907266b762500c7993a7cce2c63d
  • dc10c341b2c856d3cccde9b89e6c3eee
  • fe361ff01ceb132fc7a71783a950f3ca


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1882 b/gamelists/nes/linkedhashes.php?g=1882 new file mode 100644 index 0000000..40cce71 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1882 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 059e85d2a5faa58d850185535c9137d4
  • 329c1026063bcd496714deabe091af91
  • 641b3725073e5ea4afb0fb0939cae3be
  • 81fe0779bb35a869f4504d02d8074c97
  • a457557a1adc8aeac6131532fe9c8fc1
  • c243a93847466bca58c6a7c80c595968


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1883 b/gamelists/nes/linkedhashes.php?g=1883 new file mode 100644 index 0000000..449f69f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1883 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 1a305be0ef7295d57a13ee9d910d14e4
  • 4d071cae24466381b0f123317c2955e9
  • 94411c05d00adc7f89b440fe5af4e87f
  • ada30ca82e60d9e6f151a6a1a5429371
  • d08738f47c22dd84fa6e633eb517c981


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1885 b/gamelists/nes/linkedhashes.php?g=1885 new file mode 100644 index 0000000..fd8f3a4 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1885 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 108954931a684d040a2297c43c0c79b7
  • 125197e435eee7aca5ce621d72d2388f
  • 263ee1016425f67809d2e99d49e62aac
  • 26fdf8379106900b74333404973d044f
  • 4aee9ad0ab740224fa4b2a624049d596
  • 718a71827ea8fbf8afb2a7f879a0770c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1886 b/gamelists/nes/linkedhashes.php?g=1886 new file mode 100644 index 0000000..29414ca --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1886 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 1301601a5dd8685c7c0bc753741c0a60
  • 34bb7924c53d11aa3b5862359920334d
  • 8b4d4c8e6536b5c15c06a7000973c109
  • c153e769a114e684960533db620f6346
  • ee517e870585e3610f5416f70a9d4607


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1887 b/gamelists/nes/linkedhashes.php?g=1887 new file mode 100644 index 0000000..17e4c91 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1887 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cfe4582eea2204633c0cb4f0f11d84b8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1889 b/gamelists/nes/linkedhashes.php?g=1889 new file mode 100644 index 0000000..ebee178 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1889 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 4cf403f94afb8fa68b9f7321564b3a16
  • 9bc421bab7047c8aea102b309709109e
  • ed16df263cce98e723a97b353415d2b5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1890 b/gamelists/nes/linkedhashes.php?g=1890 new file mode 100644 index 0000000..2415b6f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1890 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • db9e5037a69c3f8e7c0d15b4c77b4400


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1896 b/gamelists/nes/linkedhashes.php?g=1896 new file mode 100644 index 0000000..2908854 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1896 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 9c90901268702b79510b4f742ff9d4c6
  • d2f59e542a3700ed0cda6dfd0074877a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1899 b/gamelists/nes/linkedhashes.php?g=1899 new file mode 100644 index 0000000..6c72018 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1899 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a4be48d5fb2a27ab0c75c43b83d13cdf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1900 b/gamelists/nes/linkedhashes.php?g=1900 new file mode 100644 index 0000000..ed670ab --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1900 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 17e658600e2f7fda0a2b4b7efa28b2c7
  • 200c6be5db810895683cacd19b604115
  • 84052a9dd98fe0990e3e99105efecc36
  • d6428ba10d50305e2c4250a489eed7a0
  • fa0688fd15c7851878997b0c61b109e9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1903 b/gamelists/nes/linkedhashes.php?g=1903 new file mode 100644 index 0000000..26fe6bb --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1903 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5a02dd1790b594abded1702a3354bee3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1904 b/gamelists/nes/linkedhashes.php?g=1904 new file mode 100644 index 0000000..309232f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1904 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 794a862fb312b6c30eb2b326dcabddf9
  • 7ea24bf75fd628a65dc7344de28893e3
  • b8792cbb03eaa25f9c4ee84d019b0167


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1906 b/gamelists/nes/linkedhashes.php?g=1906 new file mode 100644 index 0000000..7d3d40a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1906 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2301abaeec1b305f5956e3d7630d943b
  • d2208aea1c0186403c2a7476762b026d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1908 b/gamelists/nes/linkedhashes.php?g=1908 new file mode 100644 index 0000000..6a86721 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1908 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • c7bfecb24884ca7d2599b8de7f39ea68
  • e2f9958f0f9cdef551c5328fad855d33


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1912 b/gamelists/nes/linkedhashes.php?g=1912 new file mode 100644 index 0000000..64d3361 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1912 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4706d5c09acab9b0fe009ccaf4b8bfb6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1913 b/gamelists/nes/linkedhashes.php?g=1913 new file mode 100644 index 0000000..31301cc --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1913 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 4a6f495b8138edfe6d91c5fab01981f2
  • 6f1c1a5a92268747be143a3b1cd656ce
  • 7b77b9aaa40d02388609f5cc718a5528


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1914 b/gamelists/nes/linkedhashes.php?g=1914 new file mode 100644 index 0000000..744cab6 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1914 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 5007642907310ff41bc67ce7f0189a9a
  • 52051021fd095b1383ea0a64da90d884
  • 6fd6286d2566b2855a23bdec4cf2ce1c
  • 7823764734e75e26f6e7d4f7fa74c344
  • d979e2cf3f5bdbe7e6998e8af1c2b122


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1915 b/gamelists/nes/linkedhashes.php?g=1915 new file mode 100644 index 0000000..3e918f4 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1915 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7492ea7116258971c1c71c95ebe0d6ca
  • ee56cb6325a38b4c4269049524e96d1f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1920 b/gamelists/nes/linkedhashes.php?g=1920 new file mode 100644 index 0000000..2e8dbaf --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1920 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 24d936b8d2281518258f623a3e10f5f1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1921 b/gamelists/nes/linkedhashes.php?g=1921 new file mode 100644 index 0000000..f6a116f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1921 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 9 unique ROM(s) registered for it with the following MD5s:

  • 0fd3f8063b4985940166a261473a6e3b
  • 2df394988814a75f9a36f5dedb5137dd
  • 3728ba371ff50cc9d76b9eeee162e70c
  • 58aec10f7b8754ee4c09ad78f5e09628
  • 89eed34ca4a758a5e6c1187907638957
  • bf8c600d677d1885e0b3434305ccfc1b
  • d25ea57f0dfa04fe0916d6ad74274acf
  • d90de2e0ec62f16bf1bf7db8a4802fe2
  • ef9502bbc4b7698603aa8410e3dccf1c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1925 b/gamelists/nes/linkedhashes.php?g=1925 new file mode 100644 index 0000000..5b0ee06 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1925 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 65afb527e85f2fcd054b1fd5cb529e10
  • 752b211a1c94b17583627d3322ee456b
  • ab43d974b389f92e2f764c93c92a8aaa
  • fc6a9ae75920ed499ff69587cd091ca5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1929 b/gamelists/nes/linkedhashes.php?g=1929 new file mode 100644 index 0000000..7d6ea18 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1929 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 0b423bf38720009871742388b9414878
  • 3a8e7595277fbecaacea7731817046c6
  • 9b06a7a8fcc6ac399f397e962a947c96


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1932 b/gamelists/nes/linkedhashes.php?g=1932 new file mode 100644 index 0000000..b79c387 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1932 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0240c05847a7dbe19068779ad1512ee9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1933 b/gamelists/nes/linkedhashes.php?g=1933 new file mode 100644 index 0000000..bb6e7fc --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1933 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 1e24273e31739910afe602515fb22ad8
  • 7bee127000775816d085d547e8679bc6
  • 8516024c8a74b01961ab15d7c4e6ac87
  • da992a40c38b770085c68ee3f8fcef8a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1940 b/gamelists/nes/linkedhashes.php?g=1940 new file mode 100644 index 0000000..f58e816 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1940 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 0b3e17f4dd067a9823d2956d884dfcc7
  • 34320f1e332e3a8bbebd1a904597bfa9
  • 3cc5864cd1aca9a3a6874b8cfb3fbc0a
  • 507d96e2a9a348834862e1508b014850
  • 7cccc9ad7b1097143435fcc6afcdf157
  • 96639d25a41e7563e4b6048984c796c3
  • d0bdc8e019093bed9c4b928abab07d06


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1944 b/gamelists/nes/linkedhashes.php?g=1944 new file mode 100644 index 0000000..42952af --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1944 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 0289c0aae7e3812c0989ae30b0067c85
  • 5f8437b3e2bc25a84d7d520c99c6a599
  • 6bdfae452ac51c8f7118b5789d1fb1b7
  • b2e9418c80a3561cb182bfcd13174edb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1946 b/gamelists/nes/linkedhashes.php?g=1946 new file mode 100644 index 0000000..f000ef6 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1946 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 312a1582d43f307cb952513c3093c278
  • f7aad5e838cb0c9e60f7362e08ba0e51


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1947 b/gamelists/nes/linkedhashes.php?g=1947 new file mode 100644 index 0000000..82a2a92 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1947 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5553e7b37773888048a1ad080b64c61f
  • f3595d596860683d9680ff3fc071da02


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1949 b/gamelists/nes/linkedhashes.php?g=1949 new file mode 100644 index 0000000..5f0d898 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1949 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 26dd3339b13f4ea9821aa7f914630494
  • c510177d6bde87f2aa00dfcc3de9f825


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1952 b/gamelists/nes/linkedhashes.php?g=1952 new file mode 100644 index 0000000..b6006aa --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1952 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 572f83432784a4bc457a69c4976966dc
  • a82b1190df9106d4f544f90bb6e2a962


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1953 b/gamelists/nes/linkedhashes.php?g=1953 new file mode 100644 index 0000000..9544b8c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1953 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • baf62f8e6eaae46212a14501877f3cad
  • c4db8d75ddef199c2497a9b81d48f1ab


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1955 b/gamelists/nes/linkedhashes.php?g=1955 new file mode 100644 index 0000000..c1cc6cf --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1955 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e38ca930c8cd0495437aa0ee1af53108


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1956 b/gamelists/nes/linkedhashes.php?g=1956 new file mode 100644 index 0000000..90531b2 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1956 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4d9a6662fd870a684b327046d0f13c60
  • 5f3728ec63727c3034114f4af089b5e8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1957 b/gamelists/nes/linkedhashes.php?g=1957 new file mode 100644 index 0000000..9ca5106 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1957 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • b8d352880e586a779b142d340e17c5e9
  • f386de9c5ce183827ae443038748971b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1958 b/gamelists/nes/linkedhashes.php?g=1958 new file mode 100644 index 0000000..9fc10d0 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1958 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 429045de0fcfbd8ceb896011be350cf7
  • 55fad3341d6ee8c5216e30b98e1d923e
  • 7b8b76e5688c7d21d40fe3692861ce1e
  • 8207c57e1b700cf4c499dcfca9cc4278
  • f97da510b23d2778fdb9621ff0d61001


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1959 b/gamelists/nes/linkedhashes.php?g=1959 new file mode 100644 index 0000000..44d52b3 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1959 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 07dd9c8fdeeceac4598226f7ef6e6afc
  • 23b0743d239ae2e3c1f74c57b80e1060
  • c381ae61ca0f76cbc68f9f6b71afe140
  • d95bd864cffa3cdb5dbe1c450e799506


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1961 b/gamelists/nes/linkedhashes.php?g=1961 new file mode 100644 index 0000000..2f14d31 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1961 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 3d675e5adfa038f68598b9f4d1a37a80
  • 48c290144b192c3bbbba1fcb4bf9346b
  • 4fdc7aaeca657f99ad7cd99fecf80aec
  • b4180d139a98ed939e67ab0aae955ca2
  • c7a7be2231e861b0d142ac67f987cc0c
  • d05e3af44d6f38a2be83723ad23ff2c7
  • e84ef96a2fb2891dc9f4c88982b12742
  • eef165c5b938f907f155de3846c7da77


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1962 b/gamelists/nes/linkedhashes.php?g=1962 new file mode 100644 index 0000000..b91358a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1962 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 01e5e40688bdd0e4073f366d4eca9e40
  • 071dca5b3448225edb3497fb5c765b67
  • 0ba0ffbf14c0bf78b9eaca51ba9581df
  • 0d5cbf4cf0987ce1167c23b7ee28b43e
  • bf40369da6fefb904a087699d2283218
  • c432b613606c41bafa4a09470d75e75f
  • e07c072a669e0952e58f8cca20026a3e
  • e7c82ed7b9e385811ec63babe6f385cc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1965 b/gamelists/nes/linkedhashes.php?g=1965 new file mode 100644 index 0000000..99a2df4 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1965 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 4808d7cf5d9f20304bde285a7ebf446e
  • 79130862501091b3923e71af3cfc3032
  • fb0110dc807037d7bc7846e9ec66531a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1968 b/gamelists/nes/linkedhashes.php?g=1968 new file mode 100644 index 0000000..c525ce1 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1968 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 52e5a421a5d3b922612162fcb169bebd
  • a22b4ba12212276f4cc2ba735c34bcd3
  • b8f66b559399e8531b9d651080583e33
  • b9a4b8023cc2c91c911cbbd343ef4732
  • d5c3481edf3d8356b28a4d92aedfa969
  • d77868b4c844c057931aaeaa1d461bac
  • fa06939555ba9fc56039e1b7a171eb07


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1969 b/gamelists/nes/linkedhashes.php?g=1969 new file mode 100644 index 0000000..77f2736 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1969 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • a6eba31c39c78d30f34ac452a5904f41
  • e64cbbdfa61bd37474a95b0da77750e7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1970 b/gamelists/nes/linkedhashes.php?g=1970 new file mode 100644 index 0000000..c84fc30 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1970 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 44f5b716cf5ee0164c151106d0e68dce


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1971 b/gamelists/nes/linkedhashes.php?g=1971 new file mode 100644 index 0000000..c3b2a40 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1971 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 92632ed2bc7e29f4b30993d72359710b
  • ac55003f1de6b36204f2d0e53d6b8058


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1973 b/gamelists/nes/linkedhashes.php?g=1973 new file mode 100644 index 0000000..3f8ad86 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1973 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 06b338db2f3cb88b2161506ef360ab28
  • 2b8b10ffc8d37e56150aa8b28a72f285
  • 96250e185ff5b8c596a210803484322e
  • d84f9d136bb5d9f1cc651e29407f61fd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1977 b/gamelists/nes/linkedhashes.php?g=1977 new file mode 100644 index 0000000..c9a1edf --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1977 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 658f9a3265128bbd05ddd801c38f1e4f
  • 70d6b9da3194843b542ddc206b9554d6
  • 7dd1e562d4b9691ee2162208bcba6e86
  • d8c378942f6a52c9d9ba272797a884ef
  • db9a2c5492bd793d7091cd656c7f28cd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1978 b/gamelists/nes/linkedhashes.php?g=1978 new file mode 100644 index 0000000..0044d4a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1978 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 20962b69905fda108245df6c1825f2d2
  • 9e2ce130e8c4eab1d34df021751be407
  • b7a2a168f93b7e32bd2f5ac02b16c56a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1980 b/gamelists/nes/linkedhashes.php?g=1980 new file mode 100644 index 0000000..ee0b90b --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1980 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4d1a1fd3802749ff657a780fa7cdfb17
  • e8db29ba3ddabbcb5361c65ad0f86510


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1982 b/gamelists/nes/linkedhashes.php?g=1982 new file mode 100644 index 0000000..d9a6f7d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1982 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 25496df74d7e25bb0daff1adcc40cadc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1984 b/gamelists/nes/linkedhashes.php?g=1984 new file mode 100644 index 0000000..5339636 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1984 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 05ab30ec3a15cdc33dd8e3e6cff4d26c
  • 54a19f2911aa51dd1b084107d0878bd0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1985 b/gamelists/nes/linkedhashes.php?g=1985 new file mode 100644 index 0000000..1ac6cb3 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1985 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 042febd56a451acbc44526e79b15a99a
  • 154b53a8d58ed2e7a37d705000d2d7cf
  • 7ce2e88b2a833206df894fe54cc07fe5
  • b1eddbb71994db079aa1dc16c05e7de5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1988 b/gamelists/nes/linkedhashes.php?g=1988 new file mode 100644 index 0000000..a07895c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1988 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 12fce6abd0531a9f9a4c2bfbcca124fb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1989 b/gamelists/nes/linkedhashes.php?g=1989 new file mode 100644 index 0000000..23ccb0d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1989 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 9 unique ROM(s) registered for it with the following MD5s:

  • 09f9031593acd27681562ca016bfd286
  • 0baf0355d043a62b8fbc3ba057cf265d
  • 28a4aa114a869fd6d03d61f2520e67b8
  • 435abf7f8b2a1b276e662297fca1bc13
  • 44d7bf041f64841dd7c1b1e270ea67d8
  • 455eb1a186414fe1961bc794d3ea2ec5
  • 8782ba5a0b02aceb272757667af1066a
  • cb5dc56adcb2983cab8e9bd07c78796a
  • f63c9680c2c55ceb6d8f795cf2aad74e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1991 b/gamelists/nes/linkedhashes.php?g=1991 new file mode 100644 index 0000000..40c4ca8 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1991 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5b8200ee6666b13c397eda533ea30f50
  • 6e44871b462ce90c99d9a9a8fff637a8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1994 b/gamelists/nes/linkedhashes.php?g=1994 new file mode 100644 index 0000000..877595f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1994 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 12 unique ROM(s) registered for it with the following MD5s:

  • 084fa5f6db91d32c7fbca3fa0a594ede
  • 1261a0c28b4441d5711db49fed4f7792
  • 25a299edce8f83d7a91afbfbb8929a87
  • 36342b74e49d5f3164b8bac1830f9ec1
  • 5ad5d97414859c81d062a9ec8d0838c4
  • 62c4d65bc93fb7961aae781db2d2e2f9
  • a64dcbaf95980145d2351850be735461
  • b1046a4efbb22aae7aa82dda552d8efe
  • c246b6b49525f7c3614fe84d573c4a34
  • c2ef21b3f5419f74d4e8cad695dadb10
  • ccd25b4fa7acddef38d75212ae0e5432
  • f9889095f91b3a618854732c57d1f5c8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1995 b/gamelists/nes/linkedhashes.php?g=1995 new file mode 100644 index 0000000..6a1fb99 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1995 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 25 unique ROM(s) registered for it with the following MD5s:

  • 11bde2e78a4c4f9e65899b4ada1b8667
  • 41303108e5ce494c40c3cb6421a2971d
  • 4575d409eb7810f7517c5db29fe692ea
  • 48d7eaf355f82e80439b6c7c6ebb52ca
  • 4cbc42f7959ae8a1a8de6e73a94149bc
  • 527beb3c576275d919eeedf9c6dca332
  • 55b7111567c1709e849c574078699577
  • 57715a7f335801da27e6b3d86b0647a3
  • 7904b3e88add08c769b3c27dde7128c3
  • 8bb1f20b4310e0264564d5fc2355f0c4
  • 92e7ead29c656a21390cf51b3859f089
  • 9f7027374cc40f8b544161fe24d1a4bb
  • a0ca2d9d518c1ff2ba2a5d73ee758f8c
  • a13e6b58c3985df6a556f06debd660ea
  • b76f978ad3076ea67f2b0aca7399c9e9
  • bb8ab5b5bfd8da09d1872ca684001f4d
  • c15d6524b60397adfe553b8ea66c4eee
  • c998f1760dd0a40b90a26e947c8ad140
  • cc9dbaaa2c893ef4a76ef32d6fe540df
  • ce13052b0908662d2ac7e3ef7a6ee6fe
  • daa787c4e6c8222425b214b3e043ddb7
  • dbe84d5f5b6e5221e7ddc4841d12cf01
  • e29f3b652e49c3e8ee998dbfc4e89398
  • e45e96e0ba526491556c786233198492
  • e9b5a7486f0f63ed27a1535ebb878c77


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=1996 b/gamelists/nes/linkedhashes.php?g=1996 new file mode 100644 index 0000000..eb76024 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=1996 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 17c68997fbe55f42a8db4581d82f0949
  • 453cfe56359866d503f5eabcdf149e27
  • 92c5256d35e3c10295a9f0e95685eb47
  • d3b0887047bfc2e2a6e352495606b0f6
  • d768a974f2bd07aa08635f66f2b6c376


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2002 b/gamelists/nes/linkedhashes.php?g=2002 new file mode 100644 index 0000000..54538f2 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2002 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 1f7ffd256654306fb3dc303867e3f9c0
  • 2f04c9315bae74c5a2748b2fec3dcb95
  • 42ebc8410b2bd136d8ec349cc491c906
  • acbd5bc743b5220cde52060a89f17e49
  • c4e63defa2fddadf54e1f3ae82f07faf
  • d1a2eb1c5f6cb93773360474b4492d75


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2004 b/gamelists/nes/linkedhashes.php?g=2004 new file mode 100644 index 0000000..005c7c0 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2004 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 9f97ce5192b42eca6b22180a4e23718a
  • f820b4cea5dd16e6ed90b8d2522ad1f4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2006 b/gamelists/nes/linkedhashes.php?g=2006 new file mode 100644 index 0000000..ea41840 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2006 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 334936fce3f4d7d0e028bc4589e2b81b
  • 4a9f9a808d6d7127a2dd4caa5e6aebb6
  • e5b6dfb8cb140b8d46319c93dff752ef
  • f2c370f2437383dfb136589787799ab4
  • ffa2594c64831e358d49feb27cf3004b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2008 b/gamelists/nes/linkedhashes.php?g=2008 new file mode 100644 index 0000000..16ccf27 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2008 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 245f4cc0cd19293890d3bc17f15e259e
  • fa57750ad33815e99c40986f26fc697e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2009 b/gamelists/nes/linkedhashes.php?g=2009 new file mode 100644 index 0000000..7c6c53c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2009 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 9 unique ROM(s) registered for it with the following MD5s:

  • 2da79e6e5f040fde7f0f9c1d3724b37b
  • 4c40f7bf4db43052865ed055b6f4765e
  • 504f139efea6f7f2c214feccc5227025
  • 903d070528aa3f3e25ff95cbd3b9aad8
  • 9e03fb6f8f11de1dc894428b01bec989
  • b1a918fd10db74b1b1db5b60b30611f8
  • ced3c31404b2f2da3c4c6e6bb090e752
  • fadfb64e52d3430b2e2ab28bdb19c982
  • fb8103326c101d798b0b5bd2eb9be4b1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2016 b/gamelists/nes/linkedhashes.php?g=2016 new file mode 100644 index 0000000..cb0ccc6 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2016 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 16 unique ROM(s) registered for it with the following MD5s:

  • 0630bda1224daf02883f124cfcd54862
  • 1a18853b8acd338915cda7e6c59454bb
  • 2b4323fa60e37b9d3ea6c4cd7ae86ca2
  • 2dddc2cae0a7fe890235aef72a9a86ae
  • 5cef928463d637c7e6eb5ba2c6ee49d4
  • 6836588f709ced5c56b963c73325e839
  • 72330bb04275577fb02580a7b0a20f60
  • 8f3a5e02d1b424dbe2393f889215e76b
  • 90c0c424fa240d8fc7405cfc31294234
  • 9fc9b2ca5c28f4124f6a6f863591d450
  • be6d60e4f0bf188485d2db3f13ccaccb
  • c80868fc7c0d16c2ed76186e1783ece2
  • cb32bcb6a9c64c2ba04ffc1822ab59f8
  • d66cb223977ae79f75ec8ad82e1a6928
  • d6e6c90a94ffe22d40525137891fd02d
  • e0b4a09a7fd6867928606ae7f12f2274


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2017 b/gamelists/nes/linkedhashes.php?g=2017 new file mode 100644 index 0000000..85e8bdc --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2017 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 32a5e44b320ae588f560196e49ba13c6
  • 492a13fd1cb8e4333bc249f223351d5e
  • ac3a11b0f4efec95ff0176899717b25f
  • b5463fb85dc2e05ecdcd0124459e9e2e
  • bdb291c46ae636734f040e46fd71826f
  • cbb2c477a37b28517e330d1c562049f8
  • ebbbe9c3d80230a9b76ea37eb4a76ab6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2018 b/gamelists/nes/linkedhashes.php?g=2018 new file mode 100644 index 0000000..a7b2cd2 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2018 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 44445b7f581f1bc30045196ced9db7f4
  • 628b06b94808f1bd4aaf17dc055c0dda
  • 8892bdb5b31073b16d4d4c766cb52a1e
  • c73bccb30a6efe8cf8c6bbcf3f6309ed
  • fe78b86e0578748b3671c3aeb4ad3d6b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2022 b/gamelists/nes/linkedhashes.php?g=2022 new file mode 100644 index 0000000..f0b1703 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2022 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 10 unique ROM(s) registered for it with the following MD5s:

  • 040215dacbae25afa33785a96102420b
  • 339d790c0c4d7b3e2bf2931b435bec02
  • 342ac4a48c978ef5509dfd754c1ef715
  • 5b0e571558c8c796937b96af469561c6
  • 6d71e52752f98c19699cdc7c4681b8ef
  • 721352d1fbaf64c00b4b23705bf05102
  • 8d5e78b0e8203cfb19b29526c130f455
  • 967b24c67adc6e8aeb3e7699a48f89d3
  • b90bf4df52d42fb3e429189042fc3157
  • f13ac8b7fe5ec4aea813a1a876130f15


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2023 b/gamelists/nes/linkedhashes.php?g=2023 new file mode 100644 index 0000000..6abd7e8 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2023 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 117c38986584c88263414b7abb98667c
  • 7537901be909c877ab7d1abedae89d94
  • 940de0f2258763abd113924e4cc02e5c
  • e5d4beec2f2d0ff6e984ba8b347b1429


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2024 b/gamelists/nes/linkedhashes.php?g=2024 new file mode 100644 index 0000000..48858a1 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2024 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 3b697df25030ec1375d26c6d3985eee3
  • 3ecc5bcdd805d5a3bdf69d9976c77493
  • 491a0ae9248bb18e646fb38111a8e947
  • c37ef39ead3552a99463ebd34180d510


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2028 b/gamelists/nes/linkedhashes.php?g=2028 new file mode 100644 index 0000000..aafa57b --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2028 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 8b179585fd5d6d7f4ecaa9196381a46d
  • c6809fa829814a356446ce0b36f60ebf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2031 b/gamelists/nes/linkedhashes.php?g=2031 new file mode 100644 index 0000000..9280a48 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2031 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 2ed315e3926884ca82490f5b57080dec
  • 854a46073bf58ba1b54a1cfb44f8a203
  • 8cbd3dd522b0db059bd38cd631b8991b
  • e8cbd04ab20332d0aef74c71c62899cb
  • ec0db0f12d557ec105b4a3c3fc93f3ef


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2032 b/gamelists/nes/linkedhashes.php?g=2032 new file mode 100644 index 0000000..c86b44c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2032 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 02fe27f09829181bf228f80e7a2dbd23
  • 07424592f0c465352b111c41fbe5c1ea
  • b1170dcab773c74cadc45f92b40adaf2
  • f570e47b8a9f205add0581bec6744e5f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2034 b/gamelists/nes/linkedhashes.php?g=2034 new file mode 100644 index 0000000..5fa295d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2034 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • dd0698c0d5511fc843c54d4c7509d4cd
  • f104c2121390a87ff619dc30569fe703


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2035 b/gamelists/nes/linkedhashes.php?g=2035 new file mode 100644 index 0000000..a9aa20a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2035 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 198f0a0802cc9a557041bf272cd2e95d
  • 2fdf9f77d74cad0f7712d9f2353f2934
  • 4848331a26542bc1610b4811569ca3c3
  • 6e4a88a9cd7010ad52374e37ab2e8de8
  • 716dd6985bc80a3c547cc84b2c8d75e4
  • ccf11b06c2641243fb50de09299ab4cd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2037 b/gamelists/nes/linkedhashes.php?g=2037 new file mode 100644 index 0000000..b9224f8 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2037 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6d87b3cb41d36eba79e6e5cc3a6666f1
  • 800d7860d8854f466de2067a8f019ef6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2039 b/gamelists/nes/linkedhashes.php?g=2039 new file mode 100644 index 0000000..5ae3721 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2039 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 019214d25e5b2b340e2270bdeab5b520
  • 52499a94210795df29a452a86766bb22
  • e8aaac8f5a98e8cbf9a9ec326ca5ab0d
  • fb40285e00308735c391d11e750db823


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2040 b/gamelists/nes/linkedhashes.php?g=2040 new file mode 100644 index 0000000..1b9bb72 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2040 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ebc2dd139240c6a138eb466e4d88c05d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2041 b/gamelists/nes/linkedhashes.php?g=2041 new file mode 100644 index 0000000..8021a67 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2041 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 9 unique ROM(s) registered for it with the following MD5s:

  • 046e0fc4a03afbb58fc7ed7671698d33
  • 071d692835c28cc1015b53a324b0ad96
  • 41b86cdb730f66b1143e61d1bf03ed11
  • 4531d8445cb2a10e0e251dc72fa3a38e
  • 45fc5deb9f53046324e519eef83e7798
  • 86fcacf4d65b6dc0a8cc74b96b2a659c
  • bcf1986093a7eb9423e2037bacabf4e1
  • d3432833b46abd5bb585d3abfe1591d7
  • e4b41d0b5b5249a624b4fe0e75d87db3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2044 b/gamelists/nes/linkedhashes.php?g=2044 new file mode 100644 index 0000000..bab60fb --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2044 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 24f1d88f074ee6c90ed1ccffb7cf2c55
  • 36a2cff483228ff0e73f7ee1ed34cf56
  • 3b0a18329c99345e62a2442a4cb102ba
  • 4621bb73db9d6fa48d9edf9e806d7555
  • ae233a5ff570e664adfbba502c67488e
  • f69eb97a62155cf70f794c53a684e251


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2045 b/gamelists/nes/linkedhashes.php?g=2045 new file mode 100644 index 0000000..b4a4e2d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2045 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 009ac8e03c968c28c8837c7aafef61d5
  • 5a32b0af66646bb908be126363320441
  • 7def939a80cb14d296da855eb40eb722
  • aa343bbf4386fe14283c46d9ef3ade84


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2048 b/gamelists/nes/linkedhashes.php?g=2048 new file mode 100644 index 0000000..553e81d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2048 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6e801aa41e57c4ce982d79f8e77ea022
  • 70860a6560567621ce5c645ca081d02e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2050 b/gamelists/nes/linkedhashes.php?g=2050 new file mode 100644 index 0000000..c56a67b --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2050 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 61bb41bb32659344ad7b67073d773dca
  • a4317a080ea111c8be02ed7c23cc8977


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2051 b/gamelists/nes/linkedhashes.php?g=2051 new file mode 100644 index 0000000..4425231 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2051 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 90e1d4c2fb8765a0d97f08dc10522b87


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2052 b/gamelists/nes/linkedhashes.php?g=2052 new file mode 100644 index 0000000..5f3a89d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2052 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 65dd13bba2feeb90e13567be72f8795c
  • ad67461ba3228bb8f18b77d6bfea7b49


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2056 b/gamelists/nes/linkedhashes.php?g=2056 new file mode 100644 index 0000000..287c0b2 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2056 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 41d9d7f891869048803d1d896828ffee
  • 4d67be4e1e7436c4c46cab0d23952dec
  • b58849a42ca5e7e980b884b2d8351900


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2058 b/gamelists/nes/linkedhashes.php?g=2058 new file mode 100644 index 0000000..f3efdc8 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2058 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 410223cb922a28af012d7317eb992426
  • cb7f1463c90cdcdf5ef315c125f12fe2
  • d8b50ad0b2b79a0d36f41b6b1a03c641
  • f01c0bfc1ff57561982f4619657592f4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2060 b/gamelists/nes/linkedhashes.php?g=2060 new file mode 100644 index 0000000..a947f78 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2060 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 16d79fca1ea13e19a12eae72e637289b
  • 7d836d9dfa536db69d929935a1e28bf3
  • d7a9363e9ea0d91f486235ca649edcee
  • f4475a0dc3fe8cc0d4c1f6df7da7e6ac


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2061 b/gamelists/nes/linkedhashes.php?g=2061 new file mode 100644 index 0000000..14ab232 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2061 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4994c32280eae3ee8f9d5580d1d791a2
  • 7a471ac3e9f2ed9b252c0ee6c5b69f5b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2062 b/gamelists/nes/linkedhashes.php?g=2062 new file mode 100644 index 0000000..04c4d1c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2062 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 1b76387b966a067fc0aabcc19efce1c3
  • 465672ccdc4c706c44a36cd2496bfca8
  • 9ca3418958e5d58e8e2fbb9abf13be51
  • d169048a63a751902c191e0ec1b80c99
  • e950eb647905bddcd7ca6530542e1ba2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2063 b/gamelists/nes/linkedhashes.php?g=2063 new file mode 100644 index 0000000..e8ee777 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2063 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9c82ab408b77c29c2a2469879c6384b7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2073 b/gamelists/nes/linkedhashes.php?g=2073 new file mode 100644 index 0000000..d0d3c51 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2073 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • a54e0acfe88fff67cb9dd5a94ac503ff
  • d19dc9cca181b6a51bb81c45d41e02e3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2074 b/gamelists/nes/linkedhashes.php?g=2074 new file mode 100644 index 0000000..7b1ba50 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2074 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7e79c4712be2047006738d4bf61fa264


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2075 b/gamelists/nes/linkedhashes.php?g=2075 new file mode 100644 index 0000000..a0d2deb --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2075 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 20a282f63aa1323b99710832989bf673
  • 5b554f640e550fd1d1812a818a855e48
  • 7d65f7b3ad4ab20ab92eeb7d720a677a
  • cc20fdbcf3d6ea9babf8e074412b0285


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2076 b/gamelists/nes/linkedhashes.php?g=2076 new file mode 100644 index 0000000..60600f2 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2076 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 276a823e7af192bfcb28637404860d4b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2077 b/gamelists/nes/linkedhashes.php?g=2077 new file mode 100644 index 0000000..5f3b16e --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2077 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 309702b297643a8d10029896393e6790
  • 4635d8d82a86e8b99390a0586c96d536
  • 852b58f1f08aaea4d3bcd3d72cd63270
  • e51d77dee59d45eed02e91171f42fafa


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2078 b/gamelists/nes/linkedhashes.php?g=2078 new file mode 100644 index 0000000..b0a1306 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2078 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 032f20705554bb6202017b4ded7d8639
  • 0eaf7088e4fe152f1299864d9a4e40ad
  • 60d0e538baf2914bb79afb6766020700
  • 831d2e895fd5424ffa0db8ad2a009293
  • c802b1fc7a9db85ca3a541a8c91d8bdf
  • c964f8ea5610fa6932b9a4966beb17ed
  • fd3f766080c1038ccc2c77fe3576e3b2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2081 b/gamelists/nes/linkedhashes.php?g=2081 new file mode 100644 index 0000000..eecc88c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2081 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 227672aca26c27def9c0fcf61b3b5f4d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2083 b/gamelists/nes/linkedhashes.php?g=2083 new file mode 100644 index 0000000..f1c4ea4 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2083 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cd28188ca6b0a4d1e7c34fa47285bec9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2084 b/gamelists/nes/linkedhashes.php?g=2084 new file mode 100644 index 0000000..5ad2342 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2084 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 183133512b214efd6d085f987c7b2fa5
  • 29edebc9ed785d350158639e0c35aead


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2085 b/gamelists/nes/linkedhashes.php?g=2085 new file mode 100644 index 0000000..82f7e59 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2085 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 5ea6bb7f2995a8fc47a105412b88ab76
  • 7b1f4e783d2ac43df77096a8449a890a
  • f9d205dcabc2a8b8b54e707f7c02384b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2087 b/gamelists/nes/linkedhashes.php?g=2087 new file mode 100644 index 0000000..c2d2ade --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2087 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 30393c881714086dd66c077c08a54178
  • 4252e6c3e8e1ca703e8696974e83b801
  • bf87ae98878f0acaa07e9d2589380629
  • cc5b16e64da9048dc5b0a227de6d423b
  • f03038d887623233c39266a66dcf9868
  • fa5753cbd1579ece147009dbe3dbb8da


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2089 b/gamelists/nes/linkedhashes.php?g=2089 new file mode 100644 index 0000000..642dbcb --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2089 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 2b8eec37b01c13994bdfad9a1ba0f245
  • 73f9a910a0881764b4662d6738239064
  • 90b61fbb7cdbed8d51f7eceb9c484c56
  • e170652f8f3bbeae41e12ce86c4b157f
  • fc433643a7d76ec2121453b0b0df8978


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2090 b/gamelists/nes/linkedhashes.php?g=2090 new file mode 100644 index 0000000..eed9cbc --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2090 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 9ca0407683647ad48761c9326f065ddf
  • d4d1d6dd285f0d51fdbfac1eef76d9dc
  • e7d7225dad044b624fbad9c9ca96e835
  • ef84d064ee71e92f589dc49d51fdcb80


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2093 b/gamelists/nes/linkedhashes.php?g=2093 new file mode 100644 index 0000000..3d0b03b --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2093 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 48e78c450e315fca32eac4e0730fda58
  • 59d9320a5a97ee0d423d086b6676f192
  • 611220fab4f1ef19c1ef8e76dc82502a
  • bd816c16307eebf34d0ec07cb539724f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2097 b/gamelists/nes/linkedhashes.php?g=2097 new file mode 100644 index 0000000..b8bf4c7 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2097 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 5729506cd87f3abf093c44dd6b5a6619
  • 57fcad22072a14111725c0728129bbdd
  • 7a528fa727623ba7704fdbb519f3419f
  • 8df1706c635f745a10d051e6063b310f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2098 b/gamelists/nes/linkedhashes.php?g=2098 new file mode 100644 index 0000000..8afd4ee --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2098 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 1cc31de6f06b9055b324892072179a75
  • 99fe0e1ad8a3b4bfa9080b2ae01511b1
  • b37f322f3f1b42f21d0d41483f79f403
  • c72ef276a6f3f4a93f405e5216ce00cd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2099 b/gamelists/nes/linkedhashes.php?g=2099 new file mode 100644 index 0000000..7d47103 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2099 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 107c2ac2d5998d3490db832d5d77a5f4
  • 2e3ce4c3dc7bb3054704e31ff58e112c
  • 37c461427a5ce92e94c9acf991b4bd5a
  • 5e60b026aa40aba6f5bbaba2274f6875
  • 5fa92341da3413b08247e3b3638d6e2f
  • 999a6572941987ab2361d0bf7a63c43d
  • 9f6699315a98a17f953eef92f179992b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2101 b/gamelists/nes/linkedhashes.php?g=2101 new file mode 100644 index 0000000..192eeec --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2101 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 1b4cc70c96846c18018a93675c570ff4
  • 653238f02c2b73e1a81357a94403e3d6
  • 6a31cbcc53dc24b02e11d10d1129958a
  • 8bfee9278d3edce7ff1b0686d87be7f9
  • ca461f3d90d9c38af2f33d79d2ffc52b
  • ed3dc4465e4053bdfe42cc33e4e6a956


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2103 b/gamelists/nes/linkedhashes.php?g=2103 new file mode 100644 index 0000000..2994980 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2103 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 049e3f53884ea5650d1dbf43751ea965


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2104 b/gamelists/nes/linkedhashes.php?g=2104 new file mode 100644 index 0000000..541193a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2104 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 369a6caf642dc432048016f200841ad1
  • 704078666a103ad532974e30ae42b104
  • 7b0c2b223ba18e60629b7e2538c3039c
  • 867d8889e9b5bed60b3e5c000a123951
  • b1632c2ac1a75882eb0423906d06f0d9
  • ec0cebca9fd2c95d7bde82a442bc3007


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2105 b/gamelists/nes/linkedhashes.php?g=2105 new file mode 100644 index 0000000..79cae0a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2105 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e83eefc4ae17b50c3d6910922eb3e1ed


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2113 b/gamelists/nes/linkedhashes.php?g=2113 new file mode 100644 index 0000000..e0a948f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2113 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 26f2c5d434a1a2aa2871ad56e73583c4
  • 7ce0b2f638a099560c6c7bef7aabf7aa
  • 893630f0376294e925198476f8ab206a
  • d52bc57bdc38d2a43406fe6af624241e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2114 b/gamelists/nes/linkedhashes.php?g=2114 new file mode 100644 index 0000000..5c30cac --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2114 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 11 unique ROM(s) registered for it with the following MD5s:

  • 31d9a2cf6e9cec8e3bbc214c2d15815f
  • 3efbf58abfaf9a2326120bb2cf00da30
  • 60e0675a75bd7874a6d9409478d10453
  • 8f3790de2a9e0b2f7e914365217f1902
  • 979aaba158aee7d452e05fa144a504f5
  • ad72b2fe3cacc4a336a405e37ee3c320
  • b5d84a688d6f9fd38cd49d363e83f330
  • c935b65ea844691175e518d772380e1c
  • d39b6d82cd08ccb83f26a66499277ddc
  • e927929a16c43d53907f63119aabaae0
  • fad01c4bd408f638d81b60f8726beb5f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2115 b/gamelists/nes/linkedhashes.php?g=2115 new file mode 100644 index 0000000..89cb462 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2115 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 10 unique ROM(s) registered for it with the following MD5s:

  • 29543584082f84b20b383c496c38b1ff
  • 48adf10ae7ad04eea629f4543b8ba321
  • 5c16c4eac36b33c35d876175c1817e27
  • 88eb7a3e392315f2e0601d3c1a6d6bab
  • 965161ae185286b5de759c408cb86c28
  • 9fd8e7b96ba577536aa7af9a442f3da6
  • a0ede1778a84e1a6c4caf021ae184366
  • a152e10bdbc89b2a44628ddbf2629c5d
  • af57c886e9d1292d4e0f84e057a5dae6
  • c454a2ddab331768fc6f11bddb210509


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2137 b/gamelists/nes/linkedhashes.php?g=2137 new file mode 100644 index 0000000..9e71049 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2137 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 17a0463d4a297a34ca1dbe0e1f498d78
  • 1e76437ed359236919ca42850648e04a
  • 2176cc92323fe2b457fc6ce30eb4184c
  • 67f77184ef510ead1fdf2c29a83077bf
  • 9ad49f7a07481c367289e442420fa294
  • d54e5b54d9c4508cf476298a3cf76870
  • f511506e74943752c2f60844684db63f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2139 b/gamelists/nes/linkedhashes.php?g=2139 new file mode 100644 index 0000000..c55a6b0 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2139 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 592cc41069fc872a625d2703d342a224
  • 6da79d16e353c7bb9f5e6dbcd63d81f3
  • 9faa5d8c9f1060d3e6296ae50c63a6ca
  • a46b4a632770b57f13d0327b346f4213


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2140 b/gamelists/nes/linkedhashes.php?g=2140 new file mode 100644 index 0000000..e4d31b9 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2140 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 10853df8fdae9bc980cc36823b11b1f1
  • 18a919200ab2876a667903b5304e2152
  • 291dc0eed0aacce22a26dd7101424631
  • 344983217736f662273a549919efddb8
  • 40279923f750628a45c87e282354072e
  • 4bacd859c14f72460b4dd1049fed87d8
  • d48f63a48cf051a1f3261a29549ba173
  • e3897afe323115daa865cc4e1b68e7e7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2142 b/gamelists/nes/linkedhashes.php?g=2142 new file mode 100644 index 0000000..bcd1f8b --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2142 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 79c38be77d1fa7353a468f137b991416
  • 836b1dcd4b31889d0eab3081329b7529
  • 88f73bca080160f748a5e191490a5c4f
  • a55494e40365355e0fa9f43d77a2829b
  • df774e49d4ad594daa1b220834b8a5e1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2175 b/gamelists/nes/linkedhashes.php?g=2175 new file mode 100644 index 0000000..f3b18a5 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2175 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 08e05c349be7c4a29ae37816e922251c
  • 6e5a474e52813c353a78d93630c27730
  • a456d4bbd2ae972bc6e8f88e8e260f95
  • aef9c5f223f34d04b38412ddc2e96ecb
  • b0783272d6ef7d9ca5967e606d7f2a8c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2208 b/gamelists/nes/linkedhashes.php?g=2208 new file mode 100644 index 0000000..3e11bec --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2208 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6d71d45c282a7b923497fe59813035ec
  • 8d7fea510db146ca74f2d0ce242c96ce


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2221 b/gamelists/nes/linkedhashes.php?g=2221 new file mode 100644 index 0000000..8ce4b5d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2221 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 16 unique ROM(s) registered for it with the following MD5s:

  • 0abe4626e7e141945bf85b07acd4f584
  • 0d34ed9d4e1b24355ac0544c319b43d0
  • 1182edd795da08220421c7a20b759066
  • 1506d09c0099ed8886c0e9d24ea657cc
  • 1ac2a0a1e5f881a9cb2ef6e970410a66
  • 229c5a7367a8a27aa2c600d8581055c8
  • 23a3240a343c460e1ad902108ad85b7f
  • 267480ae89a372eaec654978e4c00b52
  • 2d425fcd9f734ab9faa700b2bbbadca6
  • 2edebd9db94111b100ed2c618f372b93
  • 3b6c9f17ba781d34494a8090e74f8363
  • 482105ae6356e397ebafcd417819c79d
  • a56d0d24feb93682722853002a11b7d9
  • b25d59f6da40b6d7657cc9402e664f5e
  • bfc4d9791d9fe9c181dad794d66def4f
  • dc384a4bd129b022706bb99b217b15a1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2225 b/gamelists/nes/linkedhashes.php?g=2225 new file mode 100644 index 0000000..3439bd5 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2225 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1cc79c31d41adfbde8c531d1f14b3f39
  • 55a6b56cbf201c1eefea7f476ef4892b
  • fcc573dbfbe1e58c7d4bc7f95756e7c9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2230 b/gamelists/nes/linkedhashes.php?g=2230 new file mode 100644 index 0000000..cbfcfd0 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2230 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 55949a592cae09b46393d00d2d8fee40
  • 60db38a6c68a6de3950b1e72da7277fb
  • 6e4710637b033f7dbf3cdf46e70b4cce
  • c2195553173ad11c978f49c45ecac49c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2238 b/gamelists/nes/linkedhashes.php?g=2238 new file mode 100644 index 0000000..cc131ba --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2238 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 3aee10e4706ef3515a97b4dfddd619f0
  • 6e5ad2ccba578b7060713512e36fc221
  • 82d60b4a6a80b9c18be959cea1837c57
  • 9a03eed44ed27a231b16f7331ed7d619


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2248 b/gamelists/nes/linkedhashes.php?g=2248 new file mode 100644 index 0000000..74762a4 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2248 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 143b93abeea246aabd80470eee8ca1cb
  • 2f52cb9f9e960055605f60180eecd6d8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2360 b/gamelists/nes/linkedhashes.php?g=2360 new file mode 100644 index 0000000..38597e2 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2360 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 9 unique ROM(s) registered for it with the following MD5s:

  • 0642d8c0675c2797f3e728e298e881b6
  • 1a7062f4a17bfc859334e98d575558f5
  • 2c14a62966411eef03ecd66b061156d5
  • 528f59b26c8d828ca7db45785de6d7c3
  • 700d6288bf27c3081b2d716cc18726ca
  • 9abb2039f428714b2b93b019bdeed7bf
  • 9c8d4d8bee6fed3645d2323b49f2cbed
  • ac95583bc80d223782940c67bde31e59
  • e44bb62f55fca47389e092fc54dfdb9e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2361 b/gamelists/nes/linkedhashes.php?g=2361 new file mode 100644 index 0000000..9f59489 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2361 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 233cddd94c3f3d5b9a9f4670a914e74d
  • ab2187b5c3ab5d951b76dfe0bbe217e4
  • d9938fe918d560ebdf49d2d0e69c2fd0
  • f21246c4fd85ccfed0d218ddc5e3a7e1
  • fb292af0e15cc20298dbce5caa40d075


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2362 b/gamelists/nes/linkedhashes.php?g=2362 new file mode 100644 index 0000000..717ca2c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2362 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 5d6cee86cd3e21628ab6ccac07f3eec9
  • 64d6c109a571c7f6d582f4dfaec0eeaf
  • 7b2e732f5033c89dff40efba56ed6d76


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2420 b/gamelists/nes/linkedhashes.php?g=2420 new file mode 100644 index 0000000..e0f6f2e --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2420 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • a41a8a46771160e97ee5967365c07c83
  • b93eed6f211f4f405c57a42def346f74


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2432 b/gamelists/nes/linkedhashes.php?g=2432 new file mode 100644 index 0000000..fa552f7 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2432 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 148f4d81c1b833fd16f8ea51152ad3a9
  • 7793daebb72b7819ce0d5e20760c409b
  • cceca23077e535cebfd93f174466c899


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2444 b/gamelists/nes/linkedhashes.php?g=2444 new file mode 100644 index 0000000..a96d871 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2444 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 3c811b8b45949925cb02cc90befbfa35
  • 4ed575e96bbf3a5aeb4c1eb04216f313
  • 6231ded5bf59fb7a4d88232855f3e1b1
  • e035b66df685b4c5a59d66e4bc491b3a
  • fb1d3759f0ed7ff7e5c767039367a1aa


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2604 b/gamelists/nes/linkedhashes.php?g=2604 new file mode 100644 index 0000000..0e8d720 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2604 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f36cb0729741f92698d42e19f69e690e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2863 b/gamelists/nes/linkedhashes.php?g=2863 new file mode 100644 index 0000000..465679e --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2863 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 13 unique ROM(s) registered for it with the following MD5s:

  • 2e05b5087d38252b41c20d1e5ff4e9e1
  • 3e2a5957af0c11994069201fd9de324d
  • 46a1ad9cb1d391616342c64a830fb763
  • 5631eae8bc0845bb3b6876ad95832b4f
  • 75e8ebc6200a8afa1d01d96895cb716a
  • 9485ee11a667ceec8689ca02f6f48121
  • 96084e640ed9a02c644b39986c269662
  • 9a0012b3bbfcaba3ef7730a4ca6c8b3d
  • b1c9aa9bb4bdf25bbb3258099ef44433
  • c68fa81d7cc3cc8a66c1f6391a385037
  • d7ea3aec04cee54ccaa32504e69d101c
  • e0df334203be222ff23a42b42fe1438e
  • e1cc426a0ef29352a592a79621c6a9a0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=2963 b/gamelists/nes/linkedhashes.php?g=2963 new file mode 100644 index 0000000..12db41b --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=2963 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2056affd64d0a99490c718344c8bdc4a
  • 6477c54b7340d77c25aa012480c0b321


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=3578 b/gamelists/nes/linkedhashes.php?g=3578 new file mode 100644 index 0000000..3f8ec60 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=3578 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d1c50e5dac50f740cf81bd4ee41273a3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=3614 b/gamelists/nes/linkedhashes.php?g=3614 new file mode 100644 index 0000000..f1633ba --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=3614 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 015e59cde3752fc54a7b9d586721247e
  • 01c1f123f436943527f50eb585025b99
  • 7ea72482234ac1b3754153a559213367
  • 98cc554eb8cff96ea8083de3d275638d
  • f872ac4342fa9e373bbdf1102520b6ef


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=3814 b/gamelists/nes/linkedhashes.php?g=3814 new file mode 100644 index 0000000..60c7099 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=3814 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 10 unique ROM(s) registered for it with the following MD5s:

  • 195dce1f6c73007356b06e27e0678cdd
  • 230754554fe746e04e92b98141e1310f
  • 270163457e5f18fa20ef38faa1eae378
  • 3733c4b0d5bb80f4ffc1c1d88d176bec
  • 7566deb93e107df478e47125bfd78ee3
  • 84e8fed10d7c339f726d52cb152078e1
  • 9ac0f918120927ad923eb59621614fcc
  • 9beae0e30ecb62290a8051f7af71df2a
  • a5b5f968edf92813c8ce1366a63bd7f4
  • abaae93544451a68c54d5dc44dd309fb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4030 b/gamelists/nes/linkedhashes.php?g=4030 new file mode 100644 index 0000000..db99d5c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4030 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 19a27b8211feb72685d7225a8a25d35f
  • 1cf9557073a07acab3fb7f9f562c0b1c
  • 660a630095b54691781cae104b5d0f41
  • 8b64c11e50004cdea4c1f00e1675a16f
  • f2e74d1750836b0dffedc8b5d0dcc672


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4031 b/gamelists/nes/linkedhashes.php?g=4031 new file mode 100644 index 0000000..4d95810 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4031 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 3d813be4c17f2457a736b3b5b2723943
  • 6d06f4795d27df4e30f2ceb20b4f29ea
  • 6f70f3560f85966763803c5ad08776f0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4034 b/gamelists/nes/linkedhashes.php?g=4034 new file mode 100644 index 0000000..c2761b6 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4034 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2c832d9fac3229cb7c32a5fe1dd65ad7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4036 b/gamelists/nes/linkedhashes.php?g=4036 new file mode 100644 index 0000000..2799fc9 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4036 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 41e83633fd43b35d921927e2e84f1bf8
  • 758f0df801ff6333240d343a10c76ddf
  • 96ed89b1c4a6e91cf51d9d9b4d3631eb
  • 98e6ceaaf5eaf6fec679be36b208318d
  • a168d84f763e892ed642aae8173cb08e
  • df2cbe0d2cd8ea00240ff406c6ab3f96
  • e6148734e0ba00eeb3cc3befeca120b0
  • efceb99991929decd1bb19fbe1ef4a38


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4094 b/gamelists/nes/linkedhashes.php?g=4094 new file mode 100644 index 0000000..dcf39fd --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4094 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 1b3bf0006764070963e206b63dbfa34f
  • 31e504ba213ebff173bf851b45c535c4
  • 45b2890303b6d3c1ccf6c87170d7a778
  • 84edf8ad30a89d677b002d250da8061f
  • a51e7811fce115764923c445c2d4a95e
  • b6b3fff0a3cb226294c0cd1f255a2db7
  • bbd477b940c2aaf1633294cba9c3454d
  • f01ce625cfce3596d4a9d13ef9f17352


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4105 b/gamelists/nes/linkedhashes.php?g=4105 new file mode 100644 index 0000000..253cdf6 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4105 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 15ae014f3ca3bddf1b58899c7ca950a0
  • 1b493cc76d189e7a2319693101703fdf
  • 555dd82b2e970312c98ab43656fa66dc
  • 8568977cf0238b54fcd29f837aec268c
  • ccf632b8a8199cacaf66ecb5f3c2f384


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4122 b/gamelists/nes/linkedhashes.php?g=4122 new file mode 100644 index 0000000..8661c5c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4122 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ae66e5d870f74c1ded4dd00873ad0b7b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4152 b/gamelists/nes/linkedhashes.php?g=4152 new file mode 100644 index 0000000..4f4b851 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4152 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0d7648855b83eeb52072f20cc91ea1cf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4185 b/gamelists/nes/linkedhashes.php?g=4185 new file mode 100644 index 0000000..81d0464 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4185 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 0ec694629b30a53c82e861a2370d994b
  • 22126994ade6f5c172fcb159ce3f7904
  • c06a1ff39d7b3df23f5a5d9d44d1c247
  • dc377ac820a03200b669e8552f211d10
  • f2cfa49312bd4de3624ac24618dcd55b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4542 b/gamelists/nes/linkedhashes.php?g=4542 new file mode 100644 index 0000000..086921d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4542 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 530971f48392bf29fbfd8ba683ab417f
  • 9facecc44cfd8be8ad8f3bab1eb27cb6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4543 b/gamelists/nes/linkedhashes.php?g=4543 new file mode 100644 index 0000000..2d85d19 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4543 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 2f31d3cedbea46f56466b06ecb6f7eba
  • 3bfcc746d9e825b4f984b9f4c7298e54
  • bb744b1500da4c97d1588b5fff5ecc86


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4544 b/gamelists/nes/linkedhashes.php?g=4544 new file mode 100644 index 0000000..4861d86 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4544 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 599c2b45cb828f4b4f70274f4970c400
  • aea2e13819e1ca82bf4fa6da8c7dc60d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4548 b/gamelists/nes/linkedhashes.php?g=4548 new file mode 100644 index 0000000..164d1e2 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4548 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 060c331aff7e94158f0205acb04be2d3
  • 66f4d31a0a0d66b2a85a88212ce159fe
  • a038f3687c56e97f88ed44fffc587b13
  • b250ec33194effe8a892bbfd5933c2dd
  • e91b3e0ad255eeae1823d2372a4b21da


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4551 b/gamelists/nes/linkedhashes.php?g=4551 new file mode 100644 index 0000000..f6fa270 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4551 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 47591d79cda1a0ae062a7bb05612bbff
  • 4bb47b3de8dd34a9992e86c592271964
  • b689e9039927cdea585a69858d802a76
  • d37fbdfdeaee7b01458e0cef0cc1f174


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4559 b/gamelists/nes/linkedhashes.php?g=4559 new file mode 100644 index 0000000..2ede154 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4559 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 395a3594a3818f2b4363b5183ef61269
  • 53c78cf68939090e51bf8f7ec01031e5
  • 6f8b376c96e904c2959951cc813ac78b
  • 830111df30b8511562d4faca6aeb792d
  • b98a6651e2ec7797bd124257217baf1f
  • be5fe6f0842fa38dfa760ba56b7e28cd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4568 b/gamelists/nes/linkedhashes.php?g=4568 new file mode 100644 index 0000000..4ddbd6d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4568 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 10 unique ROM(s) registered for it with the following MD5s:

  • 0f9c8d3d3099c70368411f6df9ef49c1
  • 1072e4af28b327a78c8e2893c5a00ce0
  • 38cebb4f39f56297522e03ef9e1e5987
  • 3ae07fd3a5ffa14223e9c4dd3d28a1a3
  • 51db6c9d325cd858093d4af4567ed36f
  • 59759b2dbdbac2d7123424258f537d58
  • 9d4fd1e1e98d0366546ad9194a479034
  • d218d289a7cf6b3fd13d7d3778bb30b5
  • f004e8dff14d1e5b388942951b996063
  • ffc43778476edb62e63ac6b4dcad6295


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4598 b/gamelists/nes/linkedhashes.php?g=4598 new file mode 100644 index 0000000..bbdb50a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4598 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 9910fb596a5d544430d20894b5dfa378
  • f86ae8bf771b96bc1d6493c387a5fc9b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4599 b/gamelists/nes/linkedhashes.php?g=4599 new file mode 100644 index 0000000..33bece4 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4599 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 92378a289ae60b107114c546c3ef7f13
  • c25991d546991cedbea9eb9efff32e62


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4605 b/gamelists/nes/linkedhashes.php?g=4605 new file mode 100644 index 0000000..855efd8 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4605 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 22d5c8900a3d02805a566abdfd05bb82
  • 2c842e0a809017ee7467e33024bbe95a
  • 5bbd116dcd2fcf117284532544fc12ab
  • 5d7333dbbdd9a3140c9d060dbdc2b820


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4612 b/gamelists/nes/linkedhashes.php?g=4612 new file mode 100644 index 0000000..4b3be92 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4612 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 192f2997b7f5123ebc81b7b8c469c1ea
  • 80d5683ac95537401f2f003a76379b8e
  • d8a1d610c93b96ad98e55e09dfcc7533


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4616 b/gamelists/nes/linkedhashes.php?g=4616 new file mode 100644 index 0000000..7967509 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4616 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8c8e0f565257835befb2fd727049b413


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4618 b/gamelists/nes/linkedhashes.php?g=4618 new file mode 100644 index 0000000..60f38a4 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4618 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 56ca85a5e49cafd91050afec60c10713
  • a477188f2c0d2cbd77309393deebee9d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4628 b/gamelists/nes/linkedhashes.php?g=4628 new file mode 100644 index 0000000..5b3f99a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4628 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3e333a4cea884512e3129b6a4379c81d
  • c4bfc3fdec05be0dffe68beed760dfc0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4629 b/gamelists/nes/linkedhashes.php?g=4629 new file mode 100644 index 0000000..5223027 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4629 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 4b49f04a3d2fef19ee9bb4188f6a8946
  • 745479df3b06f341791c1c51f719d176
  • 783924a53e172029792ceaeabef6093a
  • 8deeec57833ccf4f7917ecaef8971e3e
  • c8e69282643e4fea69e8f69389436961
  • df4c7b6b92261d276b9a8019e561c6b6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4641 b/gamelists/nes/linkedhashes.php?g=4641 new file mode 100644 index 0000000..2407c90 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4641 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7318afe3b846aff581961701c91fe7b2
  • 9c283fed43a9103bfdbd41a7ed8619ce


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4650 b/gamelists/nes/linkedhashes.php?g=4650 new file mode 100644 index 0000000..2e46b2a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4650 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4f1e6f5f517d6678bab16ba95f920547
  • bed0f7b12673dd762eed665c5c61927b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4653 b/gamelists/nes/linkedhashes.php?g=4653 new file mode 100644 index 0000000..f650bc2 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4653 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • ce2ce72ec3f43bcd34c40de152253365
  • e0819b2883f10dce3fa99988e7048930


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4658 b/gamelists/nes/linkedhashes.php?g=4658 new file mode 100644 index 0000000..ac99ad5 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4658 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 9 unique ROM(s) registered for it with the following MD5s:

  • 24caaf1aff203d9d35cbfca025b2a862
  • 6b949c9d6052a0e34f9ddd5825a856ae
  • 7ac10c2821dcf95666ae836bb896cf80
  • abfdc12c5a576aab1880e6d4c9d13b24
  • d9ff78d0d8680af5dc8204875be83039
  • dc3159eb019b4ca99db43d2b2a0e452e
  • e28986f690e7fef3d72316013e5e9c4d
  • e8a1313eef2526d274f4396134a50a80
  • ffec8e159be007853e63acc41f1e17b4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4680 b/gamelists/nes/linkedhashes.php?g=4680 new file mode 100644 index 0000000..49f9947 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4680 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0ba3d131e367a44bb1a6ff416869d4f7
  • 4029bc95b65193d8cdf120535cc4e695


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4681 b/gamelists/nes/linkedhashes.php?g=4681 new file mode 100644 index 0000000..57d2370 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4681 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 086768f2e40735fdabcd96b68e333b27
  • 493afad9212765c7842aeca593700289
  • 598a6da95a3070e6460bd1d23e8c0dbc
  • 9c460fde3896233ff9cb9b833d2fa78d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4687 b/gamelists/nes/linkedhashes.php?g=4687 new file mode 100644 index 0000000..db73f78 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4687 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • af71bab949862b7a2c2ac18c58bddb1c
  • c1349825b32dac3d657bf66fb291ae45
  • c582486614fba0f434c8b59e2d9eb575
  • f421d3c8a6d819f5ebf759cb7d4af3f1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4694 b/gamelists/nes/linkedhashes.php?g=4694 new file mode 100644 index 0000000..b3d27f3 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4694 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 21797b38a17dba461776facce49ff995
  • 42442fbe3a99fbaa25425611f5f4a090


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4720 b/gamelists/nes/linkedhashes.php?g=4720 new file mode 100644 index 0000000..502f996 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4720 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 057707584b517b7e551b236ec7b0ee6d
  • 0b3a50ceb150e40bf493c6ab92cda82b
  • 0d9d9adf5f2bba7b68abab21dfe36ce1
  • 4c43fb12c61593f7ec85f3c17166b6f6
  • 4f44965b70d3984ea3ce212aa716fd7d
  • a700b691d8ed19eab1d14657c0a4cd1f
  • b742778bed359a0600079767b6b91be4
  • dd929e09e7ab9a76e69b1d301aef409c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4755 b/gamelists/nes/linkedhashes.php?g=4755 new file mode 100644 index 0000000..977fef8 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4755 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 49d4f48f764406a2ad82bd3896f3eba5
  • b501844dd9cf3364fe376be19be979a1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4756 b/gamelists/nes/linkedhashes.php?g=4756 new file mode 100644 index 0000000..37f5324 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4756 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 2aa4dcef811569ad14ea89a8e741d304
  • 87ecd2cc23de21ffd69439db9a1ca778
  • 9927cbec8873a3a6bf6793a892d8ed8f
  • afbfb5dfe91f6ef10ceee9ed3068ea14


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4757 b/gamelists/nes/linkedhashes.php?g=4757 new file mode 100644 index 0000000..a0e7e21 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4757 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 1113a24dc0847837e276df1d3606e467
  • 1bfec0f52e58d5697dc12849ca86bc46
  • 251a9334f4c0d5b44f4cd8be92d059c7
  • 38abeee1b7148a5ff13f8f2ef6ab22e9
  • 6cd5b278f0c7fd67cf696f3072809b36
  • c74c09ddc190ec9d78d2d43e8492e14c
  • f6b9542c2aae8627cca92fd82d08ebd6
  • f8d24ac61186de7c0422d1e431dace29


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4762 b/gamelists/nes/linkedhashes.php?g=4762 new file mode 100644 index 0000000..a209c8a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4762 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 0ed8840e36611d852f1476a210088e61
  • 8ce3f0ee5cc7ce413af7de3667c1c1cf
  • 9dcdda239291f0f8df5fc779064bc4ff
  • e2d7d89d0bf5a4bd75434dd05bbd58ba


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4764 b/gamelists/nes/linkedhashes.php?g=4764 new file mode 100644 index 0000000..c8d69db --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4764 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 27a89f079bca542e3aa36108a390a681
  • 6bca9dc999f02806a5b424c59ad1dfcc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4766 b/gamelists/nes/linkedhashes.php?g=4766 new file mode 100644 index 0000000..8fa3ee7 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4766 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8cdd15b58199c088fd73d05bfaa20db4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4767 b/gamelists/nes/linkedhashes.php?g=4767 new file mode 100644 index 0000000..309add4 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4767 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 50f422373a0901d2e9981b4a82e7e9d3
  • fe6e13d1382f94dc0a5391053c4096bc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4770 b/gamelists/nes/linkedhashes.php?g=4770 new file mode 100644 index 0000000..18410fe --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4770 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 75bbeecaf336e30fca7cf043ae056e50
  • db9057d4e7f632e7f544c52ed67ac51c
  • ddda8653ebc615881fdc67ef8d82169f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4779 b/gamelists/nes/linkedhashes.php?g=4779 new file mode 100644 index 0000000..391d616 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4779 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 03354a2ce76a1d229a47f25c8227bfb5
  • 50a29fad971f429d605765485f881eee


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4788 b/gamelists/nes/linkedhashes.php?g=4788 new file mode 100644 index 0000000..dd99723 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4788 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 39752fb01d54c40226a6e5b3495c5406
  • a814a6cb1857434995ab0078242b66bc
  • ed2bfe66774c4070a237f1a3405983de


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4792 b/gamelists/nes/linkedhashes.php?g=4792 new file mode 100644 index 0000000..1dee3c8 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4792 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 32d9dddc0670fe4a8cda049e1580c452
  • 4e7ce109df6514a3c818306c38ed5fb9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4793 b/gamelists/nes/linkedhashes.php?g=4793 new file mode 100644 index 0000000..e913f3d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4793 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4d26a2af6b8a88b01f982d0afa2317f8
  • a3180091f4b3465c5057659dc995de35


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4804 b/gamelists/nes/linkedhashes.php?g=4804 new file mode 100644 index 0000000..6a0d0a8 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4804 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 22fb493a8e19550a82b593982f8db840
  • 634b6ffecfe65684791326ab6f316e85


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4808 b/gamelists/nes/linkedhashes.php?g=4808 new file mode 100644 index 0000000..4434858 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4808 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 022aa21ea0b6b1d96a562ddddcf3d501
  • 390a44e15956da7c93df7a1ebbe6a197
  • 5e1bd56993eebd3a465164b6b6eec579
  • 79d9eb5e940f130e092682a517dc9d2b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4812 b/gamelists/nes/linkedhashes.php?g=4812 new file mode 100644 index 0000000..374edb3 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4812 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 28988509907b80484173c03adaad863f
  • 67342016dafc69887d0ff24ed2a7aeff
  • 6ab2f63228607bd48d1a350e0807b8f3
  • 88399ce780d6bf32681b62d770d018ef
  • c125610760edd03f9a002232e5cf4c71
  • dfafc420a0204ac66adeaff6e0c6e9db
  • f84871073d3bd839f0b9ba6e800a451c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4816 b/gamelists/nes/linkedhashes.php?g=4816 new file mode 100644 index 0000000..c96f6d1 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4816 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • dad92a6e2f21b6df1d358419f9830758
  • f5a9605e36ce33f2d6b9160f7d5124ae


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4818 b/gamelists/nes/linkedhashes.php?g=4818 new file mode 100644 index 0000000..be2d4a2 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4818 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 5fe496319e7ed35875df71152f9c2593
  • 9f7fa923abb2b4bdb2711f497a4a0ee7
  • a91947f0c148c49adb9ca27245cc14f3
  • ca873cb4addab1aaeecfc77a73ceb21b
  • d93d72070193026031b2d3f3630ee7bb
  • e14481d175ffaebb244245260a7ed3ea


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4820 b/gamelists/nes/linkedhashes.php?g=4820 new file mode 100644 index 0000000..01d18f9 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4820 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 173f821c93bffdf52e068f84018f15b2
  • 27d2c795c0d4588d7a12f35854ed0b44


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4824 b/gamelists/nes/linkedhashes.php?g=4824 new file mode 100644 index 0000000..79fd12f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4824 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 1aaaf6f8cacce1f904774deab69ff4ca
  • 2ca6e641336dbc4aa505a4e8eb3c927c
  • 2f09d15bc558fb08f14eb0c071886ce5
  • 9242984ae9b7f6142a19a359f8db6bb7
  • ffe1d038d7d98a504beef572d7c5da21


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4829 b/gamelists/nes/linkedhashes.php?g=4829 new file mode 100644 index 0000000..9d9f199 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4829 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 16 unique ROM(s) registered for it with the following MD5s:

  • 13e6ef94e3d1ce8da977b330cd3fafd8
  • 191a061a0c5bef5c164a908521c8c0a1
  • 36a4f0fbcefcedacc39a9175e550869d
  • 4d973473445fe58989e4be82ea269971
  • 563bf1b21940129bfa9f55355bc4a28a
  • 8266ba1dfe94a08c461045a55246e464
  • 89ecd7c4afbc2a3e71a9618b7bf63ca1
  • a31accd6b315d78a450fe8baf77cc1db
  • baa6907cfaeeed9f1ba0eb81110921eb
  • c0368eef19dbe2e60e49e397fd2837dd
  • d37527a8bac1b1a9838ec6518b8335ca
  • d49a1dcbde947d650699d7bf6fd20243
  • d909ecf9d6deb7a35263e6aa6b2f0cfe
  • da5737c35af85e96bd112bfa982804f9
  • df8e8a7748bdfb55ca9349a7242ac082
  • e34ee1be995018e96a6b1462545d730e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4838 b/gamelists/nes/linkedhashes.php?g=4838 new file mode 100644 index 0000000..5a55042 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4838 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 0b6422a76bea4f8db99c833aa90baff5
  • 2de0ebcb8221d9e60428866b18ab259e
  • 7ef0da84f416c1ff816f093c9e0798d4
  • de8eef56849459ceb09874b15b837a83


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4839 b/gamelists/nes/linkedhashes.php?g=4839 new file mode 100644 index 0000000..8aeecd4 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4839 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 0a4f31e17adb19566989f805cc199770
  • 92cc9b6f422fe6c0672a1dfe142e0759
  • c2e4272e1f463a31dbe97ae892e1ff7b
  • db894ec2b43b2132ef0faf069b6004fc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4840 b/gamelists/nes/linkedhashes.php?g=4840 new file mode 100644 index 0000000..243f62a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4840 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 1845edc3ac659f1decf0ab0f3a5f4bf2
  • 8aff3fcda753debc3ad01d5716320553
  • 9b43bddfceb7cbee58d32b2e1ba753e1
  • ac77ae3e653c7122893d73243864c799


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4851 b/gamelists/nes/linkedhashes.php?g=4851 new file mode 100644 index 0000000..e5cd84c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4851 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1e3f9155e5fb43344448e8a67b75ca26
  • 51784ef079bcb2542c50dba1a1ae306a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4858 b/gamelists/nes/linkedhashes.php?g=4858 new file mode 100644 index 0000000..aa874a6 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4858 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 4c56843db70cddec8bc5e63ba8b8bed4
  • add4e9f5ed4391a6b3fdfc5f0e300e71
  • c4d34d9a426296616ceedf47b59bd287
  • d48c22998173bfeb545e886c1405e233
  • d9a368069b687fc9bfdd07a167e4fdcd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4866 b/gamelists/nes/linkedhashes.php?g=4866 new file mode 100644 index 0000000..e0473f2 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4866 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 123b1b024332fa67dbdabc608f74b032
  • 1ebf163530006e775c5bcd0137f6b534
  • 2d2e794366a3c55d8b03741878d18d3b
  • 838b9e45830c15d718fb8c707d9b6c58
  • 897f47fd270dea2b444f4ceff6ec3e30
  • a4f8b0fb27f5f9b8bfb6d7d9c7c28b16
  • cc288865438de3d568f8262fd1ae678a
  • cf856e9241f504985a7936abdf275342


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4876 b/gamelists/nes/linkedhashes.php?g=4876 new file mode 100644 index 0000000..107da7d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4876 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 05c817e82c97b20fac161ff5b2ebfb67
  • c35e66483c337f677e5be5f897fd628a
  • c7e36c2e8d69bb4a1326425ab9f4a2cd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4902 b/gamelists/nes/linkedhashes.php?g=4902 new file mode 100644 index 0000000..7c7add5 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4902 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 441374705d35c7a11fc73f4acf645df1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4953 b/gamelists/nes/linkedhashes.php?g=4953 new file mode 100644 index 0000000..a05111b --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4953 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 84b5f5805d84c96d28f54f7c9713a476
  • c4afb62469145c5af016db8cdabf60aa
  • f7bdf2b7c9973d744340466009257c99


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4961 b/gamelists/nes/linkedhashes.php?g=4961 new file mode 100644 index 0000000..b2e7c9d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4961 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • b30bb0b86c030bc7e43e681b4397b58c
  • c0b7d8b17a487e6391e5fc31c9f34962


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4986 b/gamelists/nes/linkedhashes.php?g=4986 new file mode 100644 index 0000000..42339b3 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4986 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 29bc1c7c36a0f84f35397083c8b71835
  • 4abf7be0e11aee74ce8f74a460654dc0
  • 78556579dacb7415467d6d341e059ee9
  • 796a7546ac394c86b1f287894b89eaf6
  • 8de831c59c988bd9193e946e90ee8b7d
  • c48d5890f7fc5c14b436dc4c5dd048fb
  • d3cdde68ccaca3df234543e9d21b85de
  • e46b3344a28667be0c8028edff9631ce


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4990 b/gamelists/nes/linkedhashes.php?g=4990 new file mode 100644 index 0000000..5f0508e --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4990 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 6a1169ac43f81e3fc8f9680059ce55ca
  • c2251c91c153d274ac681b85ebb549c4
  • c936960fbd3955968675ba6884ebad07
  • c95c88cc46e9efdc8e4c4e07d7972ccf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4993 b/gamelists/nes/linkedhashes.php?g=4993 new file mode 100644 index 0000000..197ec1a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4993 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 88ada57523a6d9f76305a8ffc1cbdafa


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=4997 b/gamelists/nes/linkedhashes.php?g=4997 new file mode 100644 index 0000000..cfd0762 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=4997 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 1dd21b592b6a3221b276828a75b6f321
  • 3a0d3174bf35e63cb152aa6e7fdd4cb3
  • 3de3bf6e2e92cc33d63b30146951cf27
  • 40fcee09fc58333392c8cc80bfe3be52
  • 5badd328e2564f80ada9187baacb43d1
  • 649ca8fb2eb3ee98ef37cdf6a89ea1bf
  • b7722d29b8934fa585101922e7547d6d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5001 b/gamelists/nes/linkedhashes.php?g=5001 new file mode 100644 index 0000000..9223f1a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5001 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 4e7a2a1b2ec9606a35d77da78890152f
  • 5f629d2c09ddde3ec938bcbbc389523e
  • 808ea290df8c1c3862750d5456716788
  • 9d7b08af2ae54671b2c634db4cbc81af
  • d26e9dab1a15a6cf6dc4a5316da6cb32
  • ea287564169b18d13358ebf0fa2ecba9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5003 b/gamelists/nes/linkedhashes.php?g=5003 new file mode 100644 index 0000000..a04fe0d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5003 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 7a7f5ed7d0c5ecbea77452b7f37d6900
  • 80c2087288cfff241ec38f21051abb6a
  • fbc46d607ee554c8388d2903138ce7ee


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5005 b/gamelists/nes/linkedhashes.php?g=5005 new file mode 100644 index 0000000..1fa0ea9 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5005 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 50515b8759793259eb51ae67b74b49c2
  • ab40cc860c93f827872603a44228f23c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5051 b/gamelists/nes/linkedhashes.php?g=5051 new file mode 100644 index 0000000..7a54ac2 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5051 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 334194ab64ef3912e4f175d4a581e731
  • 47f483766aa1284228791f4443552241
  • a65e9c06d97fc082fd6f0db5f7939be9
  • db90dd8c79c6709dd29c9892ba3afc5e
  • e4f322704a6055a4fae7abe79099b261
  • f06e8a7895a18a4f15fdc15e698fcc0a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5060 b/gamelists/nes/linkedhashes.php?g=5060 new file mode 100644 index 0000000..a617ccd --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5060 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 1a5d9c5ecff8015e8d0089bdc6db767d
  • 23db13aa5b926f4491db060967229c04
  • 8645942fbed0a79192543abf3840e508
  • 95a84bf29a9de8db0d36cb62d6fe225d
  • a8fb853e26eeb3f5fd638df4d206b6ab


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5083 b/gamelists/nes/linkedhashes.php?g=5083 new file mode 100644 index 0000000..a134ad0 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5083 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 1a9dd4d395d4cae369c586bfd4afff82
  • 46a92436a4899fd3adc2f5097cdaa5dd
  • 544d3812ac8510c919552b8ae3ba32f3
  • 5a28fc9c176769d206476416a515d17b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5090 b/gamelists/nes/linkedhashes.php?g=5090 new file mode 100644 index 0000000..d9f7a3d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5090 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 3e66f0771381a31e5b4e93ae8345d281
  • 62fd81dec0d51a01da4ddaf1df8acbc4
  • d25b120d7eae167a52a98476e92ef13e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5091 b/gamelists/nes/linkedhashes.php?g=5091 new file mode 100644 index 0000000..4f10bf0 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5091 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 4b1d0b67638c81551c111759914a8973
  • 6dc8a3e3125a98b14ad5d5ddddd2e672
  • e3a0ad4a2ac4f64da129e1f9f0ae5a28


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5102 b/gamelists/nes/linkedhashes.php?g=5102 new file mode 100644 index 0000000..026fc56 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5102 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3c42846e7a42b1e2e9774f21a7b1e59a
  • e64e20f904ac990c584f1b83cb8d531f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5107 b/gamelists/nes/linkedhashes.php?g=5107 new file mode 100644 index 0000000..35f7261 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5107 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 119f54174359d9c2ab8e4ec2c1836be2
  • 669faa38f33b875a4f32f3e0dbf77ada
  • de4d6c5bf0f19b58857fe286d898579a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5136 b/gamelists/nes/linkedhashes.php?g=5136 new file mode 100644 index 0000000..4bbdfaa --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5136 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5f998177c4013e0e5c4811a1cf1af910
  • b18c329f84c8dbf78f3b8b2f881ab317


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5144 b/gamelists/nes/linkedhashes.php?g=5144 new file mode 100644 index 0000000..4fa3e65 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5144 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 03a28de2c892bd258db64271e8a79060
  • 47ff876c401011857f4f34a634e08261
  • 58357d9d6fac462b9fc7fd8194bf0e66
  • 7ec958909a591faac92f3e2aeb3f24b5
  • 96cdc967dd52ab489e66688c23bedeb7
  • cba6a1a95d28b3aedfc8bebed17cbd17
  • d351408bad8b21ee8da720cf52c38872
  • e7f9a9c11bebf13208ebf48114a02ada


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5168 b/gamelists/nes/linkedhashes.php?g=5168 new file mode 100644 index 0000000..9a353ea --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5168 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0a80884be9815dc9c5a49ba4e6928598
  • 13e451bcf72a98ebbacdc9eee8d95948


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5169 b/gamelists/nes/linkedhashes.php?g=5169 new file mode 100644 index 0000000..441d9a7 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5169 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 038d434ee670d561059c48be87831ddd
  • f5923693ff4af53655ee13de21c538ea


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5172 b/gamelists/nes/linkedhashes.php?g=5172 new file mode 100644 index 0000000..ffb2ab9 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5172 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 6144782e3b6ce14a3566504da4995329
  • 72a4ea996dac9679eebf2b6923d76230
  • 74d6d4290ffee69ae7af052ec437f227
  • 8536aad98b3ee2dfa4c4a56098b9650f
  • baf5c0d941a09605708eb85fcc9f7690
  • d7047f1a9a63866719b11b39558d2260
  • ef449ae6c79978d095fa32c900afae20
  • fd55dd5a796d08e4844c5549a5833257


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5175 b/gamelists/nes/linkedhashes.php?g=5175 new file mode 100644 index 0000000..8bbfc83 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5175 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 27d8011f4ea6c186caf262b89da20e02
  • f4fd2f9b5d02f09905fb125ee76fae37


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5183 b/gamelists/nes/linkedhashes.php?g=5183 new file mode 100644 index 0000000..bbff7c1 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5183 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7f38210a8a2befb8d347523b4ff6ae7c
  • 882bb4e73658d38483078fa227d58183


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5186 b/gamelists/nes/linkedhashes.php?g=5186 new file mode 100644 index 0000000..e284410 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5186 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 56f1c8bdcf20fe3342caf622719e14c5
  • 63e6a9cfc0ecf13da9d8c02867a7ec47


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5191 b/gamelists/nes/linkedhashes.php?g=5191 new file mode 100644 index 0000000..53223d4 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5191 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 10 unique ROM(s) registered for it with the following MD5s:

  • 17457319a0a93a4a3b86cf9d34a9e5b9
  • 233bfc4b355b8a82d32ced72a7b200ab
  • 36fef6b929d7c0d2c87e8fea3bc41784
  • 587d76251921e32deadcf1c0d3c18ad2
  • 5e3000f49a0161577ae253d2c0348497
  • 81399e4e17afe86f9d1259a237a24c5a
  • abe8b1315995f2a32cf572696a32895c
  • db41bfe0f8dd05e88d94bd36d793428a
  • f1ade0b4c5ef48e27d1e4256e8521709
  • f99d87eea2d4462c486dafdac3b81352


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5197 b/gamelists/nes/linkedhashes.php?g=5197 new file mode 100644 index 0000000..8697a41 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5197 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 20308c1e018f6be3b23b3b6b304a2edb
  • a738051086791de32a14d87788e6da41


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5202 b/gamelists/nes/linkedhashes.php?g=5202 new file mode 100644 index 0000000..f06dab0 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5202 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 2a34bc509950f95c1d80def607390a05
  • c8b8a02fa6709db70267c0ec6b7015a2
  • d6965843c8a24fa6b55e52019bdb0458
  • ec8848db07aa5fd873025fd032a8dfdb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5218 b/gamelists/nes/linkedhashes.php?g=5218 new file mode 100644 index 0000000..c0e625f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5218 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 9f8a083b671381ad6dac1e848c6e3781
  • aa67d215ade8d289941aa896a8acc9a0
  • b589b0bb8f41bf2936ffd78eeda6b14d
  • ea0c36da84ce7d5eecc229b7c219221d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5241 b/gamelists/nes/linkedhashes.php?g=5241 new file mode 100644 index 0000000..cafa00f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5241 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 09554d52b8ff674a78333701d41e4412
  • 0cef3fd6b10b1c8544d968c39bd4d42a
  • 7f15d4706427403460fc2a0427a22d52
  • e659890d46a5ac9a347e0b85b352f1d0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5242 b/gamelists/nes/linkedhashes.php?g=5242 new file mode 100644 index 0000000..68557f7 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5242 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 3f65a00c15f72fc2cd44b54a63b95dbf
  • 6b989be543b4fbddb507f3a66e522459
  • 82f967d41d40cb259ad13c46b2d35ddc
  • c12392b0734c8b58ee31f635269b879d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5288 b/gamelists/nes/linkedhashes.php?g=5288 new file mode 100644 index 0000000..9336f1d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5288 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 11f0aabac019834b0fe8a73f06c8d703
  • 1c5586297ced6b88343829c006003f14
  • 24b50bb01e6e360fcc49e94bd8e2d459
  • d4866f129b74626e694f302cb5ceff93


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5299 b/gamelists/nes/linkedhashes.php?g=5299 new file mode 100644 index 0000000..2699679 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5299 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 2e3bf5cd08422919a0583566d4cf29b8
  • 6804514cb182357794ce8360d2884be4
  • 68f085d129fa9e830de1f28d82143bae
  • 97643bce37368f7b004d2b602ed54817


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5300 b/gamelists/nes/linkedhashes.php?g=5300 new file mode 100644 index 0000000..82aa4f8 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5300 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 618e8f72bd2fd80c67d5ec1e6fa238b2
  • f753dc8fcbd92c25687dafdcaedc6862


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5319 b/gamelists/nes/linkedhashes.php?g=5319 new file mode 100644 index 0000000..3ec935a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5319 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bfacb0221be4b735f1ae3ddb110d0bcc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5333 b/gamelists/nes/linkedhashes.php?g=5333 new file mode 100644 index 0000000..d0c1186 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5333 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 6abbd01e3546d33daf9d0abdd4f126e6
  • c8dc2b430a805a4557a584d772c9fe9b
  • c9d9cd36d050cfcce91fae87a29253f6
  • ccb846829f8f9871ec9c08b01f52e686


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5346 b/gamelists/nes/linkedhashes.php?g=5346 new file mode 100644 index 0000000..12695fa --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5346 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 35f35a5e574ccdf6ab75df91114f992f
  • 48e225b4cafdaac76e04debf5d0068a8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5347 b/gamelists/nes/linkedhashes.php?g=5347 new file mode 100644 index 0000000..33bf2ff --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5347 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0906d34271580811cf52a411aa4c5229
  • 5c6bee47aaae1c76f3b4a5b3e34f10de


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5350 b/gamelists/nes/linkedhashes.php?g=5350 new file mode 100644 index 0000000..2cc08e1 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5350 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0c3052f71a7be0319ba2f4846d310d93
  • 933597119a58989e7ccb77cbd05a8933


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5352 b/gamelists/nes/linkedhashes.php?g=5352 new file mode 100644 index 0000000..1af3e53 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5352 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0de9520f38cd7b1e59cc285ad57c3852
  • 17f9fd7dc35ae7125da454e8813e0dfb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5375 b/gamelists/nes/linkedhashes.php?g=5375 new file mode 100644 index 0000000..bdfb335 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5375 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3fcaa6f48a7979ccba8f45ded50d4fc4
  • 473039c69061a1b5fca5c277c4a0622e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5382 b/gamelists/nes/linkedhashes.php?g=5382 new file mode 100644 index 0000000..9865f02 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5382 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • e7dced9ac40c79996e6be7bc8f77f1c3
  • f159fe8fea5cece7523bf208768a1ba0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5408 b/gamelists/nes/linkedhashes.php?g=5408 new file mode 100644 index 0000000..81850be --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5408 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 175664bd63fde92bdce3249fdc997dc5
  • ed444ef006119997c44a54889775ad42
  • f7a63481444f7d9547cf94482d0d8120
  • f7f9c2b28a6b146c8364f8c48c0bd555


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5431 b/gamelists/nes/linkedhashes.php?g=5431 new file mode 100644 index 0000000..e131086 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5431 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 4dbb6f0ec751a0ffb79d0a755cc770ab
  • 6548264e1278f916af20eda700e75e43
  • 80eb5117de63422898c3e80eb8745bac


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5438 b/gamelists/nes/linkedhashes.php?g=5438 new file mode 100644 index 0000000..6cbe7ab --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5438 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 00f4a5facdb1eef2aaa049a0560d5967
  • 49f48b259bdb3b032dc221780f71e377
  • 4d0df7f290f85d5a6b4f980c37a29f3f
  • 4eef74d1e3d13e7cd0a22be484d7088a
  • db558c0f42d60a056a210178693792c7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5468 b/gamelists/nes/linkedhashes.php?g=5468 new file mode 100644 index 0000000..e5b75ff --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5468 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4957f64f5998bb9a6fdc2e3d5cff6d71


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5473 b/gamelists/nes/linkedhashes.php?g=5473 new file mode 100644 index 0000000..dba3af9 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5473 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 102c90284f1502fdecc4f94f505245f2
  • 127e3af4c0897ddd94133987279c324a
  • 828ce0baf9e358527420220c0e4f7631
  • a22e460e20b840dde98a320726baeacf
  • c3cc52213ede31a8b3f92aa39c2984dd
  • f745f39688d026a0376e9854bba1a4a3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5526 b/gamelists/nes/linkedhashes.php?g=5526 new file mode 100644 index 0000000..02af9d4 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5526 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 8bbba0753c117e4a16dcfe7ac77345d5
  • bfafe705687733e19425e0945dad3365


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5527 b/gamelists/nes/linkedhashes.php?g=5527 new file mode 100644 index 0000000..da0e3a9 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5527 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 15 unique ROM(s) registered for it with the following MD5s:

  • 374ed97be8bfd628f6b359a720549ecd
  • 4b87add0de08111eddf1acd417f90831
  • 4d259632662a581f8f80ff3dc1c3498e
  • 544541c6b27eff4f0f0f563304bbff41
  • 5928ebbd56a6681fbae6abe585670980
  • 6892ea3d5bd0e0338e8f440831ece6f3
  • 6d1251d4df3077bd20315b0bf131f23e
  • 7b296b7cea328f8f4bac99b397bcc508
  • 9575a87108e34e2472bc6e6a86b9271a
  • 97aef0eb0ba829502bc40a0933438c5c
  • a0f060d865fae02c82c797806be1fa93
  • b0704d9e0f91b3bcdac0ed3c90036a74
  • dd5c58a338875a4dcfd85ce0cff7f501
  • ec43a575906724158ab74d83a05a15fb
  • f4c138398e805106dd52674d4f2424d8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5539 b/gamelists/nes/linkedhashes.php?g=5539 new file mode 100644 index 0000000..82834d6 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5539 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 44815abfadc2acf1546e1ff5b1c5cf56


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5550 b/gamelists/nes/linkedhashes.php?g=5550 new file mode 100644 index 0000000..db96dff --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5550 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 0003da33f9b3c54ba95e301a925386c5
  • 609d7cb81e7fe2028ea639e817b84934
  • b3c535c9d82dbd99677dd4466496e309
  • f80973d2e06e368e094a243ffb2520d7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5553 b/gamelists/nes/linkedhashes.php?g=5553 new file mode 100644 index 0000000..b251331 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5553 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 14 unique ROM(s) registered for it with the following MD5s:

  • 03440bd306fb71bdd7603f766624501d
  • 08cb8dee02e371b2659316a78f36a258
  • 14c569e7d65c8f8a2a967f6bbaa5a52c
  • 2e517105c0084e36a8e7d47f941a2c8c
  • 301ce423ffecdb1c4d6c94ce025ceaf1
  • 413c9600bc772410f85af5b034b99a78
  • 45a7d02ed0dc92665a30da1d9b4af35d
  • 928080eca8ebbe744f0cb3b618083d76
  • 94c6a27300859e0c88768690eaf3cf6f
  • 995255f37684fd53b4b1d6466462333d
  • 9d3721774f1423a58a9c9a9e30fb8f94
  • a86bce72d54407e7e6e6fc952eef49df
  • b0fba7a0382c67e045d8b9fb70f8e01d
  • c0f52e4d575244bf1870e128c1e5e613


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5575 b/gamelists/nes/linkedhashes.php?g=5575 new file mode 100644 index 0000000..1d3ed98 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5575 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 51a4919ad3e74cef94b0095d5e2b190b
  • dce1a5168cd69996602b392e2110d62c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5590 b/gamelists/nes/linkedhashes.php?g=5590 new file mode 100644 index 0000000..06998a4 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5590 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • a8b5ae6f195a4a3d87f2d5d20f17c46a
  • aa19b212a86756531a7dc3a02c55b55d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5608 b/gamelists/nes/linkedhashes.php?g=5608 new file mode 100644 index 0000000..870b7d4 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5608 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 009de00a78f2b496efe392ac4f907793
  • 658837bf9580aeaaebe327a7f6522c41


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5667 b/gamelists/nes/linkedhashes.php?g=5667 new file mode 100644 index 0000000..0317282 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5667 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 10 unique ROM(s) registered for it with the following MD5s:

  • 11172e2291eddfe68e018c999fdddabe
  • 174d285053aab74eb2aa845407a80528
  • 50d43061ae602102445a200f674378e8
  • 6341dd5f8da2d3e857885a14626657e6
  • 7b80830345437c9fa003ab81f8f5d800
  • 939e7bebe89126d0a87fc767b93cc611
  • 9fa850dbf748343e98c66c63c6912964
  • c779d434401a30f0e28bff416715a55b
  • eed9ad691c1e180aefe961be529ac0d0
  • efe4220028f9159b9c751033d0fe983a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5678 b/gamelists/nes/linkedhashes.php?g=5678 new file mode 100644 index 0000000..babe255 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5678 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b052256d6fabafcfec7b7d527516e188


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5759 b/gamelists/nes/linkedhashes.php?g=5759 new file mode 100644 index 0000000..9e930e8 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5759 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 046b395147cd6f9533d01a7f7c0124a5
  • 27f66db744569ae74cf9698b6ebf24ae


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5777 b/gamelists/nes/linkedhashes.php?g=5777 new file mode 100644 index 0000000..99a7999 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5777 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 187489cb099905016a16b73b2543ffb8
  • eae534e06c388ddf75188c75ba321545


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5784 b/gamelists/nes/linkedhashes.php?g=5784 new file mode 100644 index 0000000..4ce6b2c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5784 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 4385155974d7abb97776522f72c26230
  • 567640e02a93902bc3db14309c6849a1
  • 685d568aa89604e48f552345224dab72
  • 83e5190f8b986a1e6b67e457e073bdc1
  • 951f4a2d9f1abf37fe959197c2ffa9f8
  • a5781a20d61b776015a05e27d6f17f57
  • af7141a5fb6cffa3111ac20f54b6101c
  • d6bd8c0a3f36b07c0b189f3d5664bf9c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5785 b/gamelists/nes/linkedhashes.php?g=5785 new file mode 100644 index 0000000..97e394c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5785 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 2a461ade876adcd70295c64eb51a772f
  • 39f81fa93546b938c32773bb3c595d0b
  • 55b17c0a92eaf0d63b08b8bb52a5c19b
  • 5621613236b244b7558e6851e305ef85
  • 7209ec7a29818e8bd48ad1c5670acae8
  • 76e7bc449ae572c68a9fc4f397901924
  • f68d220effda67e83be167f96c2b8345


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5787 b/gamelists/nes/linkedhashes.php?g=5787 new file mode 100644 index 0000000..c4081fd --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5787 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 65ce031aa3f5735e398484f40cac19ad
  • a2adf92e92add0d0cc3fb17f481896ea
  • b39d6a0e7129baa7ed693c76f1429edf
  • c262bdfefc83f5fd5bfab46792c5f6e8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5790 b/gamelists/nes/linkedhashes.php?g=5790 new file mode 100644 index 0000000..5b332fa --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5790 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 87cf2dbd01609ed6fff6a1a022f41c72


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5795 b/gamelists/nes/linkedhashes.php?g=5795 new file mode 100644 index 0000000..2d0f6e3 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5795 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 12 unique ROM(s) registered for it with the following MD5s:

  • 2972b5a73122ce7306b12434961897da
  • 58ff4f7224579101f6e3c52fae9a8897
  • 5a16b55ea933fe0cd1aa5f8ec823152e
  • 6691b94faaae34dc97e42dbafba3a26c
  • 66ecf7c35b7a50b5db2518b49a80cc5a
  • 925d5752870d0f02b38a2f4f5420d1c1
  • a49676c542899cdd6e2c539829613ae8
  • aaf653a352e295e8e0df5401b0252663
  • ad8fe7d202a02463d8a37fb43532d5d7
  • b12945cef8445515c55b1c77e3b545c2
  • f16047cdd27fb81571b453a29af0004e
  • f3e9314662a0c80447294cdbcb6db1c1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5808 b/gamelists/nes/linkedhashes.php?g=5808 new file mode 100644 index 0000000..9cb6755 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5808 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 0cc67722f98e6a698e8212f666284dd8
  • 0e5ae85fbec99239f4cb7c3a03918dbf
  • 359200b7e616c85c97c0d91d37c70050
  • 475c20faf131c7f28976d9656576d3a8
  • d9f661e8b3c9123cd7ae0583f911b34e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5821 b/gamelists/nes/linkedhashes.php?g=5821 new file mode 100644 index 0000000..b122156 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5821 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 13e0ec9a142a5d5312bf0887d52214b2
  • a00e35762f6d8dfacf20a268e8b59237
  • c8df134ce18a7d2ffad22d265cd70820
  • e3f0eac861d56454050e1c071b73edd0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5830 b/gamelists/nes/linkedhashes.php?g=5830 new file mode 100644 index 0000000..252724f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5830 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 309ee82fe7a2b90ff0d984a99cbb5a17
  • 9767bd035125843d31275ba5214a938b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5925 b/gamelists/nes/linkedhashes.php?g=5925 new file mode 100644 index 0000000..e840ebf --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5925 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 4df1157321fc2aac0a35725b455e56a0
  • 7188ced1ea52f197d589159979659374
  • ad212f088903849c342f6dafa3289c58


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5944 b/gamelists/nes/linkedhashes.php?g=5944 new file mode 100644 index 0000000..b42fbe1 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5944 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 0490289d181e004d5fa0193af893ef96
  • 0fbf6c60a3519b8eccf06e8544f20287
  • 7417e5b1c947f064f35fc5ceb0ece719
  • 9b67e77fecdcc05ee44ef8f0c7ad77de
  • fc35363788c66d2ed58714705c9bdad2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5948 b/gamelists/nes/linkedhashes.php?g=5948 new file mode 100644 index 0000000..d709214 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5948 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 29942bb8871c3da40386737fc9c9aa5d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5950 b/gamelists/nes/linkedhashes.php?g=5950 new file mode 100644 index 0000000..97e4726 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5950 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 26f3c86b8520ea70ee19cd06b2872114
  • 6cc7932a676998747556dbbb6bd86666


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=5968 b/gamelists/nes/linkedhashes.php?g=5968 new file mode 100644 index 0000000..6a9bdec --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=5968 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 296bc8ec6482e70e5d098bb90343a2f8
  • 7363b374069926cca64bb952759cfdf9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=6070 b/gamelists/nes/linkedhashes.php?g=6070 new file mode 100644 index 0000000..3a9d26c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=6070 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • b599e51c058548bda6430c033a1fc01f
  • be1063151f68c58d712138c568c73c8b
  • ddc8feaac4beface3a99afd2c084a9c3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=6096 b/gamelists/nes/linkedhashes.php?g=6096 new file mode 100644 index 0000000..59938da --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=6096 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 02c56669255281034378bd07201278af
  • 3e81a6ef7304d17f36bf3a864fd0ea5e
  • 9321f416b47eb1de88d7cb2ebb82a8be
  • 983c51054fb2bbc69e2091924e550c58
  • ac21d0f7a75d5edbd48cbdc895a51cd4
  • e05e1a2dd2119924985a87d206729757
  • f577f2273b677db5d0a172a5872303cd
  • f65204b80ffc696fdb3b04b7c001718c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=6119 b/gamelists/nes/linkedhashes.php?g=6119 new file mode 100644 index 0000000..553b68b --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=6119 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 0b32122e1525f3ffe8903e01f4c85788
  • 15a6ee7c758e80b0e143f90185fa1b02
  • 3296794f3ceb04638e488adfc0459404
  • 5293c0538d0a4cb9ba74de7a86a7f09b
  • dab535195d67645ef4b4b355127f9575
  • ff0229837475ea8e40c3c7b27337a643


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=6147 b/gamelists/nes/linkedhashes.php?g=6147 new file mode 100644 index 0000000..eb2646f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=6147 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2fadc729157eb5e282abc59d1ced75ce


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=6215 b/gamelists/nes/linkedhashes.php?g=6215 new file mode 100644 index 0000000..9a0efd1 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=6215 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 2f45a3bdcb0f77348e7429b19b30815e
  • 4f544268850f91f13734a044f87038cc
  • 5d29d968f0f08c461752debf682f401d
  • b38b44501106f78ff5e70c0257dee268
  • c0cf2a9b9cab4bb3a466d85b772eb911


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=6254 b/gamelists/nes/linkedhashes.php?g=6254 new file mode 100644 index 0000000..5165273 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=6254 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 39456ce13c5267f3c6c6fe68b0d699cb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=6370 b/gamelists/nes/linkedhashes.php?g=6370 new file mode 100644 index 0000000..51ab73f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=6370 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5d922fca145fa7df4c3f66366db6b392
  • 7fa6ecf88c4fe3aabff4de248a9e7435


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=6380 b/gamelists/nes/linkedhashes.php?g=6380 new file mode 100644 index 0000000..8dbf861 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=6380 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6a6278ac38da9498351d1837a586c384


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=6394 b/gamelists/nes/linkedhashes.php?g=6394 new file mode 100644 index 0000000..f3d17b4 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=6394 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 059d645d85934b82392fca72574d7b5e
  • 1a395c746c50c8edd8785fc9b7b2e967
  • 45dcac14fff3388ed7813195193b50cd
  • 870b4965bf77b5c097ba889a5ca3b987


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=6398 b/gamelists/nes/linkedhashes.php?g=6398 new file mode 100644 index 0000000..f5af199 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=6398 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3a25fbc8982bcf8324087fb5157e64d7
  • 73ed7348fedd144d53873a8e4d778e49


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=6421 b/gamelists/nes/linkedhashes.php?g=6421 new file mode 100644 index 0000000..7883b74 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=6421 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • be1426659fff381054bbf04ca3298664


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=6422 b/gamelists/nes/linkedhashes.php?g=6422 new file mode 100644 index 0000000..ac15150 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=6422 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 8844e3d93e6bbe1abd973fe65e1781b6
  • 928a6bba700dba09a363841480613ac5
  • 932fece9cc7c2d70e4e186c5466601cd
  • c4c4d6bdb82010c7e4624df74fe6306a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=6425 b/gamelists/nes/linkedhashes.php?g=6425 new file mode 100644 index 0000000..ad044b1 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=6425 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 1bf2e151f0fc7319d0a29d53983f869a
  • 90ee51da183c058b8ece8f05fdba4465
  • a54c244b15c9857affc6f4160b4711ee
  • cefaf1fe547c9005f17bd09e4078f473


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=6428 b/gamelists/nes/linkedhashes.php?g=6428 new file mode 100644 index 0000000..650bfdf --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=6428 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 25d5c0a88736d90e164bccc828da844a
  • 62688367937c019ae36a64526b19ea51
  • c2e9326e37e30da8341f356eec51fa7c
  • ee6db45bdf68c33c14187a701969ba3f
  • f313449f9d994007e1e66b59762e0dbc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=6429 b/gamelists/nes/linkedhashes.php?g=6429 new file mode 100644 index 0000000..2b7717a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=6429 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 17f974b2180dbc3247787cedd4b82597
  • 4124f150d22ab5859930699a98bfa623
  • 4e7267942c798c7716becae14a2c5338
  • 90975699970604d635c681b6ab8ce341
  • 91f89aba61ee2a4ac710436b156393d8
  • a5d1192bf7ccae31692e39535294cbb7
  • adebf8f5085c8572297a61b324c82d44
  • ce3b6df92fd2f8594fe70d29af939b26


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=6729 b/gamelists/nes/linkedhashes.php?g=6729 new file mode 100644 index 0000000..2fc7fe9 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=6729 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 28d0d55b60a9260fdf75fc59e09b9118


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=6832 b/gamelists/nes/linkedhashes.php?g=6832 new file mode 100644 index 0000000..29eab6e --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=6832 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 2426e0b90e2c1e3c89b8771c29e7ed71
  • 478b2cc0995689562e9d2b3401091259
  • 6c4b3eb385151817caf0d9620c9ea1b4
  • 7297abfae77707fc8982c439e70ffd77
  • aab67cc4a3776c72c41812b725b26e6a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=6836 b/gamelists/nes/linkedhashes.php?g=6836 new file mode 100644 index 0000000..d5533db --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=6836 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0c942bf04d72697d68492db043f7f9ba


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=6869 b/gamelists/nes/linkedhashes.php?g=6869 new file mode 100644 index 0000000..5337290 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=6869 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 51d86a8d25beb53a3df7d0176765e018
  • 6efd80a2a1bcd255a22eed9bad936fc5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=6974 b/gamelists/nes/linkedhashes.php?g=6974 new file mode 100644 index 0000000..07f96c9 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=6974 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 1c2f25cf5ec4adc858f95b345bf17242
  • 654309d7ff83381fccdc5a1374aa8716
  • 783997587975956bc7944aff7f52052b
  • 7b6750ec8dcd14353c3d8a529054c5df
  • b508a23ea7732ba0e91537768ae66824
  • dc66c23560245a8aa5ff0626045cd7c8
  • ecaa3794786ac45f9ac9dc6ab0c2d211


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=7004 b/gamelists/nes/linkedhashes.php?g=7004 new file mode 100644 index 0000000..4060a55 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=7004 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6acc48763f67b72abb79d30af9dcf988
  • b616affb0fded77dcfc81a06152287b7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=7013 b/gamelists/nes/linkedhashes.php?g=7013 new file mode 100644 index 0000000..06f8908 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=7013 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 8c103454a8e54e49a4e97615fabfd82f
  • a73ae8eccd06a5030ac48c4c03bbd774
  • aa7d0c04976a94b8ad4ae9e26ee42bb8
  • b55534502e3cf35ed690c1be11ea2573
  • f45877789d9b3c8d0812f5c8f294a231
  • f62a480ba4a0b374edaf8ac0373c872b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=7057 b/gamelists/nes/linkedhashes.php?g=7057 new file mode 100644 index 0000000..5785f3a --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=7057 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 5dc6f19bee7a713018fe9c747f05c317
  • 64e22eb9ade743dfd60eb6f94b431e9c
  • 93f62c75af7cc8b6a7596ffc87db56e6
  • b0516c50a0ee6740462e09db8613d4d4
  • f9c3ed69dc61e18bc9919397ad6627c2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=7131 b/gamelists/nes/linkedhashes.php?g=7131 new file mode 100644 index 0000000..e3d8f2b --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=7131 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 12bcfcf1ebb895ec94a4b0e7cfc13c2c
  • 1d66b701890214aee8637ffec4c2ff6d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=7161 b/gamelists/nes/linkedhashes.php?g=7161 new file mode 100644 index 0000000..8847cb8 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=7161 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 06e55e8aa543729a2475bda3cc6ff31b
  • d8cb72cc00c627b8262d3897bbeea7d6
  • e3a2f9d119e7cfa2a99a5cff2c329c52
  • f520d2c3cf075a7421efc134ac3dbaee


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=7228 b/gamelists/nes/linkedhashes.php?g=7228 new file mode 100644 index 0000000..2ba649b --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=7228 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 2244a03a1a09c99ae551743ebdfc04fa
  • 373465c9a7c97c7887f5c590fd13cc5f
  • 7e071c44b548c28a85080023473af872
  • 7eb8023211754766b039e1720deb8f7c
  • f065998ee5ff631d9a48b4fdae48ac94


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=7242 b/gamelists/nes/linkedhashes.php?g=7242 new file mode 100644 index 0000000..6ca5652 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=7242 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 143b2362eea1dcf942672ede220269c5
  • 47b3d20e412275d963f91fb4ee4a6a76
  • 55a235174234b32a9c7a35cc31dcc52d
  • 6c06614142c7d78d1e5d3600af098189
  • a3b3e9f9d973e854174745743e263413
  • be5b5bed80b054f3512e5ce30c2787bd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=7248 b/gamelists/nes/linkedhashes.php?g=7248 new file mode 100644 index 0000000..44301bd --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=7248 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 630871a5088f02894a743526231fa6a8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=7277 b/gamelists/nes/linkedhashes.php?g=7277 new file mode 100644 index 0000000..04b06ab --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=7277 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0eb7a04d6a974c0a2a86169525a7eb7a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=7520 b/gamelists/nes/linkedhashes.php?g=7520 new file mode 100644 index 0000000..ab63568 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=7520 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 31115a66085f2ec11ef7d49ae2ac3666


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=7588 b/gamelists/nes/linkedhashes.php?g=7588 new file mode 100644 index 0000000..41cd89d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=7588 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 569bc88e7212672d045889526503a8e2
  • 570dd1becbe025853b74278b6a2d8231
  • 763e2fc8ada9a534006dc95e62f78cb2
  • f09eaddd3e014622c3955574aa3c045d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=7726 b/gamelists/nes/linkedhashes.php?g=7726 new file mode 100644 index 0000000..62c211d --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=7726 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cc42cf12a9431e8ccf548c8da871f7f9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=8011 b/gamelists/nes/linkedhashes.php?g=8011 new file mode 100644 index 0000000..eefbb1b --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=8011 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5870755e1652c3c62bf21c319853fb15


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=8036 b/gamelists/nes/linkedhashes.php?g=8036 new file mode 100644 index 0000000..352853c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=8036 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8222d31091c323bebee12d33c6b479c1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=8092 b/gamelists/nes/linkedhashes.php?g=8092 new file mode 100644 index 0000000..68ee3ea --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=8092 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 65f4e6c7698df12b4185b72e2b147f57
  • 9070a50282df3937a9b90358dc97aa31
  • a8e3f53d818dcabdc83a9f9eb695e634
  • ae827178307f96b1d1511b637d4c0340
  • d99bdc0b1e6d146d593e933f74bbe4d3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=8170 b/gamelists/nes/linkedhashes.php?g=8170 new file mode 100644 index 0000000..1f7361c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=8170 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 32bff38b91f5eb2cb523d4266b74f7b2
  • 3bd2253c661ee695a71752a6ea680c56
  • a7b7948b4c66d9f8aa8330182770ff8f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=8182 b/gamelists/nes/linkedhashes.php?g=8182 new file mode 100644 index 0000000..30700af --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=8182 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d1a11c693007251b1e164d89a97a9257


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=8414 b/gamelists/nes/linkedhashes.php?g=8414 new file mode 100644 index 0000000..6d2bf04 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=8414 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4816ed6cee88a392e3cf18e86abc3264
  • 8e885bbc7f7e7ae4d78d64713553b0dc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=8420 b/gamelists/nes/linkedhashes.php?g=8420 new file mode 100644 index 0000000..ae03e39 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=8420 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 102f54d26d14aa6ffb0772f6cb9614d6
  • 2c85dedefc8dd7b49b80774de9793506
  • 6854f25cb4b9e2878d5bb578e3f69e17
  • 82900fd61899e0ab86732f345d388d8a
  • f2ead54c1ad2618d83a96d8390e25f7f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=8493 b/gamelists/nes/linkedhashes.php?g=8493 new file mode 100644 index 0000000..66553b8 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=8493 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 21006589e9b020f25d865f36056d7c0a
  • 844c4c9da44b85d10a165c6e570445af


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=8541 b/gamelists/nes/linkedhashes.php?g=8541 new file mode 100644 index 0000000..5f80a78 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=8541 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • ad39378d171c633f2b20b8de89953299
  • f79056d88c1d3d3443d9a12f76da60d9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=8617 b/gamelists/nes/linkedhashes.php?g=8617 new file mode 100644 index 0000000..94a51f3 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=8617 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 151f25d4296b0546bbaa2f29bdc02356
  • 51d17a6f9eeb0f8ced992de5df979e92


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=8631 b/gamelists/nes/linkedhashes.php?g=8631 new file mode 100644 index 0000000..e929711 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=8631 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 531f4b4fbf208c6b34d44d0de12d2dfd
  • f2f9c2fd2f81294294fcab0460348857


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=8723 b/gamelists/nes/linkedhashes.php?g=8723 new file mode 100644 index 0000000..1c38dca --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=8723 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • dff8ff02e55b97497fc95150a7d08a30


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=8751 b/gamelists/nes/linkedhashes.php?g=8751 new file mode 100644 index 0000000..6a6059b --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=8751 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f4e98b393d39fb6de1ed27ab6fe641b3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=8754 b/gamelists/nes/linkedhashes.php?g=8754 new file mode 100644 index 0000000..5e540ce --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=8754 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 28a398f5ca3451b299d7e0eabcf1877f
  • 4bb42479ad9d6cf94f96bfe590a97310


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=8810 b/gamelists/nes/linkedhashes.php?g=8810 new file mode 100644 index 0000000..ad33f0c --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=8810 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 54608d7b322ccc522e199ba7df47d632
  • 58c80a8a4b5f5b25c7c3088889e417a6
  • 950e50b3d6aea80d579c1f5bdc3c5a77
  • bf5fa7363c17b9d5c1df8576d447f674


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=8933 b/gamelists/nes/linkedhashes.php?g=8933 new file mode 100644 index 0000000..ddc1cda --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=8933 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1a38180ce4b7d738598587b4828f5154
  • 802d8cb60a60f91709363de8d807a881


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=8964 b/gamelists/nes/linkedhashes.php?g=8964 new file mode 100644 index 0000000..8c8b280 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=8964 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 384ea9cf71fbf71d268e2992e05910ea
  • 74bef425c52d9d1828a0d61cc562d4c0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=9112 b/gamelists/nes/linkedhashes.php?g=9112 new file mode 100644 index 0000000..bae470f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=9112 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 8740a03fa9a89e2d68bc306a48d01080
  • d1203c2c36a1b39b15f345e9d2c999f3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=9113 b/gamelists/nes/linkedhashes.php?g=9113 new file mode 100644 index 0000000..ca90f0f --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=9113 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 327e4e79a3c6343064bdd3809ca61570
  • 43c544fc0d646443154642efc42e5680


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=9380 b/gamelists/nes/linkedhashes.php?g=9380 new file mode 100644 index 0000000..50610cf --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=9380 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 1b71f8db137d5f2d8068911bd580e2fb
  • 5be1e9803a7cbaf39da02e44f9697274
  • 9cddaedff55670d58589aa2e6fdf329c
  • b1b657218c5839b83ca89cdd73a9c5ac


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=9476 b/gamelists/nes/linkedhashes.php?g=9476 new file mode 100644 index 0000000..b5f59a8 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=9476 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 2b99330a18a48d103654070f5e1d3b94
  • b4b8c6a5e17a8e31e9bf40298fb2ab43
  • b5afe6d43abfce5a4a59d578bd1f9642


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=9597 b/gamelists/nes/linkedhashes.php?g=9597 new file mode 100644 index 0000000..be814fb --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=9597 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 6666cecba19f641ff91542fece8b41f6
  • ae5e7ca617fb34c435cb9157b37c1e7c
  • b3caf22250200c953adc3387df303b23
  • bedbcb4a9cc11ff8bdaa51eff4511961


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=9645 b/gamelists/nes/linkedhashes.php?g=9645 new file mode 100644 index 0000000..a9ac826 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=9645 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2fd8765df61731e7dc20c693d20d259d
  • 93f21e3b0a89987f7a9b8ce5b83c3d25


+
+
+
+ \ No newline at end of file diff --git a/gamelists/nes/linkedhashes.php?g=9899 b/gamelists/nes/linkedhashes.php?g=9899 new file mode 100644 index 0000000..0d58199 --- /dev/null +++ b/gamelists/nes/linkedhashes.php?g=9899 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d0f36c965ffd1576626b912f6987f195


+
+
+
+ \ No newline at end of file diff --git a/gamelists/ngpc.html b/gamelists/ngpc.html new file mode 100644 index 0000000..133ae00 --- /dev/null +++ b/gamelists/ngpc.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games Neo Geo Pocket - RetroAchievements +
+
+
+ + +
+
+
+ \ No newline at end of file diff --git a/gamelists/ngpc/linkedhashes.php?g=10297 b/gamelists/ngpc/linkedhashes.php?g=10297 new file mode 100644 index 0000000..53383cf --- /dev/null +++ b/gamelists/ngpc/linkedhashes.php?g=10297 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • fe0e58d34d650ae5174ca03d3efc67b0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/ngpc/linkedhashes.php?g=10345 b/gamelists/ngpc/linkedhashes.php?g=10345 new file mode 100644 index 0000000..a2b6cd7 --- /dev/null +++ b/gamelists/ngpc/linkedhashes.php?g=10345 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 81d3c10271ad5b09032dd00321b41aa0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/ngpc/linkedhashes.php?g=11691 b/gamelists/ngpc/linkedhashes.php?g=11691 new file mode 100644 index 0000000..ffd07ba --- /dev/null +++ b/gamelists/ngpc/linkedhashes.php?g=11691 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4d3efef436c67d4f4e031951b97d64c8
  • a7dfee9950d0679cabb4ee6dfc530fb6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/ngpc/linkedhashes.php?g=11719 b/gamelists/ngpc/linkedhashes.php?g=11719 new file mode 100644 index 0000000..4f03468 --- /dev/null +++ b/gamelists/ngpc/linkedhashes.php?g=11719 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b8a899ae2b0f1dfa0db5417de745a51e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/ngpc/linkedhashes.php?g=12895 b/gamelists/ngpc/linkedhashes.php?g=12895 new file mode 100644 index 0000000..e069d25 --- /dev/null +++ b/gamelists/ngpc/linkedhashes.php?g=12895 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 62ba425e8a32bb953dcf0dc36cdabbf2
  • c71af75c76778b8a2d32a0c6f170736e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/ngpc/linkedhashes.php?g=13167 b/gamelists/ngpc/linkedhashes.php?g=13167 new file mode 100644 index 0000000..aa5e0e5 --- /dev/null +++ b/gamelists/ngpc/linkedhashes.php?g=13167 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f580078164dc2b8dffb9f38eeec1035d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/ngpc/linkedhashes.php?g=13350 b/gamelists/ngpc/linkedhashes.php?g=13350 new file mode 100644 index 0000000..1c3c33f --- /dev/null +++ b/gamelists/ngpc/linkedhashes.php?g=13350 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ac5ad76d5e6614ae576c2c837f0fab1d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/ngpc/linkedhashes.php?g=14624 b/gamelists/ngpc/linkedhashes.php?g=14624 new file mode 100644 index 0000000..59dceed --- /dev/null +++ b/gamelists/ngpc/linkedhashes.php?g=14624 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9b30216da76c9de87caea93f13977396


+
+
+
+ \ No newline at end of file diff --git a/gamelists/panasonic3do.html b/gamelists/panasonic3do.html new file mode 100644 index 0000000..7e346ee --- /dev/null +++ b/gamelists/panasonic3do.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games 3DO Interactive Multiplayer - RetroAchievements +
+
+
+ + +
+
+
+ \ No newline at end of file diff --git a/gamelists/panasonic3do/linkedhashes.php?g=16397 b/gamelists/panasonic3do/linkedhashes.php?g=16397 new file mode 100644 index 0000000..0d9b2e4 --- /dev/null +++ b/gamelists/panasonic3do/linkedhashes.php?g=16397 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4570e692ac07d2242ab9141f1bb9000d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/panasonic3do/linkedhashes.php?g=16407 b/gamelists/panasonic3do/linkedhashes.php?g=16407 new file mode 100644 index 0000000..f333ea9 --- /dev/null +++ b/gamelists/panasonic3do/linkedhashes.php?g=16407 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9a14a399c139faccfe4a356d5384d0a0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/panasonic3do/linkedhashes.php?g=16412 b/gamelists/panasonic3do/linkedhashes.php?g=16412 new file mode 100644 index 0000000..1442db2 --- /dev/null +++ b/gamelists/panasonic3do/linkedhashes.php?g=16412 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f148536a4e707a4418aad19ba80a9515


+
+
+
+ \ No newline at end of file diff --git a/gamelists/panasonic3do/linkedhashes.php?g=16508 b/gamelists/panasonic3do/linkedhashes.php?g=16508 new file mode 100644 index 0000000..da97e95 --- /dev/null +++ b/gamelists/panasonic3do/linkedhashes.php?g=16508 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8657b3440b4c177edf2e6e9607b0c319


+
+
+
+ \ No newline at end of file diff --git a/gamelists/panasonic3do/linkedhashes.php?g=16528 b/gamelists/panasonic3do/linkedhashes.php?g=16528 new file mode 100644 index 0000000..69cde1a --- /dev/null +++ b/gamelists/panasonic3do/linkedhashes.php?g=16528 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c2a97a18e2db5297518bd25fdf047c85


+
+
+
+ \ No newline at end of file diff --git a/gamelists/panasonic3do/linkedhashes.php?g=16839 b/gamelists/panasonic3do/linkedhashes.php?g=16839 new file mode 100644 index 0000000..669be01 --- /dev/null +++ b/gamelists/panasonic3do/linkedhashes.php?g=16839 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e3254945201de3d713abe8ba9338efae


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pc8000.html b/gamelists/pc8000.html new file mode 100644 index 0000000..ded950d --- /dev/null +++ b/gamelists/pc8000.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games PC-8000/8800 - RetroAchievements +
+
+
+ +
+

PC-8000/8800

TitleAchievementsPointsLeaderboards
22500 (808)
73990 (2148)
29400 (195)
766 (99)
19125 (297)
67850 (827)
48660 (561)
11150 (226)3
21400 (477)
10200 (256)1
10120 (173)4
42475 (612)
14150 (216)
22405 (1010)
1620 (20)
26450 (584)
66400 (1944)
30430 (683)
30460 (630)
Totals: 19 games5637251 (11766)8

+
+
+
+
+ \ No newline at end of file diff --git a/gamelists/pc8000/linkedhashes.php?g=13682 b/gamelists/pc8000/linkedhashes.php?g=13682 new file mode 100644 index 0000000..f2ad266 --- /dev/null +++ b/gamelists/pc8000/linkedhashes.php?g=13682 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 734fe755f206208b2de2fdf9a4c60ca4
  • 8be6d4d610808cc192b53103f72a40f5
  • b838e8767516ffaa5b469bb9e319f5a5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pc8000/linkedhashes.php?g=13684 b/gamelists/pc8000/linkedhashes.php?g=13684 new file mode 100644 index 0000000..6217594 --- /dev/null +++ b/gamelists/pc8000/linkedhashes.php?g=13684 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • a62b04973732fed5038989c61b61bbbe
  • fdc4c5dea519d885f8fd635b996c472b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pc8000/linkedhashes.php?g=13685 b/gamelists/pc8000/linkedhashes.php?g=13685 new file mode 100644 index 0000000..fd935d8 --- /dev/null +++ b/gamelists/pc8000/linkedhashes.php?g=13685 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • ae02fab35b9e4374353d927435e64693
  • b91d5929e5d62ac34b0f7732236cb492


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pc8000/linkedhashes.php?g=13705 b/gamelists/pc8000/linkedhashes.php?g=13705 new file mode 100644 index 0000000..d7905e4 --- /dev/null +++ b/gamelists/pc8000/linkedhashes.php?g=13705 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8086bfe5e0a905e77ffef517aca77da1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pc8000/linkedhashes.php?g=13707 b/gamelists/pc8000/linkedhashes.php?g=13707 new file mode 100644 index 0000000..7c243f0 --- /dev/null +++ b/gamelists/pc8000/linkedhashes.php?g=13707 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e1643a1d839f652978818f4bd281d5c5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pc8000/linkedhashes.php?g=13747 b/gamelists/pc8000/linkedhashes.php?g=13747 new file mode 100644 index 0000000..db17a76 --- /dev/null +++ b/gamelists/pc8000/linkedhashes.php?g=13747 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bbfdb481c69c5f58a227da667adbcd16


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pc8000/linkedhashes.php?g=13754 b/gamelists/pc8000/linkedhashes.php?g=13754 new file mode 100644 index 0000000..65dcf76 --- /dev/null +++ b/gamelists/pc8000/linkedhashes.php?g=13754 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3cb80a87a6f236821f1c4fee0a6d83e8
  • f968098a13aa41884916e99f081f4a6d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pc8000/linkedhashes.php?g=13787 b/gamelists/pc8000/linkedhashes.php?g=13787 new file mode 100644 index 0000000..2a70c59 --- /dev/null +++ b/gamelists/pc8000/linkedhashes.php?g=13787 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 05f2a5bdc7ab885b5da760276154a6ce
  • 806ac9c875076375f63de1cb0aad2d34
  • d2aff22e02df81eea501e13d75a3da28


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pc8000/linkedhashes.php?g=13855 b/gamelists/pc8000/linkedhashes.php?g=13855 new file mode 100644 index 0000000..328b868 --- /dev/null +++ b/gamelists/pc8000/linkedhashes.php?g=13855 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 9 unique ROM(s) registered for it with the following MD5s:

  • 09a2d928953001f81a16d189e97e45e8
  • 09af339f48e5f8c70e3967d8eb0645e2
  • 333568562d78f8e9a849776f02454f27
  • 919be8d2df68cade81afc8d7371042ee
  • 91f88b9e8db38509dd6cb0751a0535c9
  • a9db6619c2336b3a8036848771b3e441
  • c085bdfbb700c0f9e93ee39bc522163e
  • d4646d4e1fd57dc998f87b679719bc36
  • fe6b11cc7ee1814cbf5cd3845a32a285


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pc8000/linkedhashes.php?g=13937 b/gamelists/pc8000/linkedhashes.php?g=13937 new file mode 100644 index 0000000..fb13a26 --- /dev/null +++ b/gamelists/pc8000/linkedhashes.php?g=13937 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 17c0cc341d1ed3bffeeb718ee82ee44e
  • b3096d44da362c99fdcd5c7aafb260bf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pc8000/linkedhashes.php?g=13942 b/gamelists/pc8000/linkedhashes.php?g=13942 new file mode 100644 index 0000000..c989ec4 --- /dev/null +++ b/gamelists/pc8000/linkedhashes.php?g=13942 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 05c20126e9d4dbdae4c1e8627a8b1d9f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pc8000/linkedhashes.php?g=13973 b/gamelists/pc8000/linkedhashes.php?g=13973 new file mode 100644 index 0000000..ae10c12 --- /dev/null +++ b/gamelists/pc8000/linkedhashes.php?g=13973 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 6d88a725bf097c4a7ffbc3817936a757
  • 8dab8eb445c9b7d4dd143b1df75017a6
  • b170f9e16671c8c3e14345b75d80b9a5
  • ef20128a5f6431115903a5ec455f48ad


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pc8000/linkedhashes.php?g=13982 b/gamelists/pc8000/linkedhashes.php?g=13982 new file mode 100644 index 0000000..d27536d --- /dev/null +++ b/gamelists/pc8000/linkedhashes.php?g=13982 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 28c2e77e4d80b869604d243527d3a9f5
  • 9624e437532e6ea60f7a55f5aa0c04f3
  • a3b7b1f53b7e075cc9ac05a0f5f04c25
  • b8a8b191f89bf70e8539843321a69cf1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pc8000/linkedhashes.php?g=14020 b/gamelists/pc8000/linkedhashes.php?g=14020 new file mode 100644 index 0000000..3cf33cf --- /dev/null +++ b/gamelists/pc8000/linkedhashes.php?g=14020 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1ae481ca1e2b383d077709949eda169d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pc8000/linkedhashes.php?g=14107 b/gamelists/pc8000/linkedhashes.php?g=14107 new file mode 100644 index 0000000..d96e708 --- /dev/null +++ b/gamelists/pc8000/linkedhashes.php?g=14107 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c3fd72c922d4f9fd581d41b19b65772c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pc8000/linkedhashes.php?g=14121 b/gamelists/pc8000/linkedhashes.php?g=14121 new file mode 100644 index 0000000..9118c3c --- /dev/null +++ b/gamelists/pc8000/linkedhashes.php?g=14121 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 64b282b08e51eed92b6cdd386a5d2fd0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pc8000/linkedhashes.php?g=14152 b/gamelists/pc8000/linkedhashes.php?g=14152 new file mode 100644 index 0000000..e86aacf --- /dev/null +++ b/gamelists/pc8000/linkedhashes.php?g=14152 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 87417127a5ba7ac8dd9a67bb9f83ef6c
  • eb3f1bb0e4e3755202ae974c147f29a5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pc8000/linkedhashes.php?g=14661 b/gamelists/pc8000/linkedhashes.php?g=14661 new file mode 100644 index 0000000..a8cb3c7 --- /dev/null +++ b/gamelists/pc8000/linkedhashes.php?g=14661 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9b4f106d60e8fa4240f2582cb5df7a4b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pc8000/linkedhashes.php?g=14665 b/gamelists/pc8000/linkedhashes.php?g=14665 new file mode 100644 index 0000000..858ef8b --- /dev/null +++ b/gamelists/pc8000/linkedhashes.php?g=14665 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • a827214e2ce7c82ec619d9d647f1f383
  • e058325be20be75f90f40d2c7ed623d1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine.html b/gamelists/pcengine.html new file mode 100644 index 0000000..6819b7b --- /dev/null +++ b/gamelists/pcengine.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games PC Engine - RetroAchievements +
+
+
+ +
+

PC Engine

TitleAchievementsPointsLeaderboards
49465 (2657)1
41585 (12882)4
12195 (458)
44250 (565)
741000 (8376)2
55500 (1609)
112583 (987)1
42310 (4367)1
45321 (1616)6
42650 (4816)2
22381 (4499)
45600 (4649)
15218 (963)6
45470 (1420)
48755 (2840)1
30300 (2366)
15230 (525)
44430 (1219)
38600 (3645)
35450 (1342)
29225 (1120)
10185 (642)6
45475 (4831)1
41435 (2160)1
34343 (2842)
54675 (9020)
12185 (842)
15150 (225)
42600 (7959)
50550 (2689)
59550 (5028)
68387 (2861)
55450 (3672)
80400 (3574)22
21410 (1516)
19400 (1906)
15210 (830)1
38705 (19090)
25240 (1699)16
39400 (3948)1
36316 (1306)1
55500 (962)
19205 (1502)
24521 (6439)
22171 (1188)
46600 (4591)
36395 (1362)
24400 (1681)
60650 (1962)
18245 (446)
13120 (228)
84600 (1888)
21217 (438)
Totals: 53 games206222208 (162248)73

+
+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=12782 b/gamelists/pcengine/linkedhashes.php?g=12782 new file mode 100644 index 0000000..55e16e6 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=12782 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a9bb49d6cbb338e2195d8735097ccf87


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=12821 b/gamelists/pcengine/linkedhashes.php?g=12821 new file mode 100644 index 0000000..f004460 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=12821 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 45195abbbdaff8dd8d8c521b84f1698d
  • 487029035f0d6c434cbc412fca951dab
  • 7dd298a6e9f2abce6f85d262ec37f483
  • 9a0de117840a3aa9baf7c7e7eb5546c8
  • bccc45446bdcc231d8edb4475c4eceb1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=12826 b/gamelists/pcengine/linkedhashes.php?g=12826 new file mode 100644 index 0000000..307c0ab --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=12826 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 8da3885d9c6674f33cf9bac28905d249
  • d730c92d7ea53fd5b85f012b1ea5ddbe
  • da7fa7e120ca1d6c0817bd557ec034d2
  • df4fa7ddc1a4e8cc29dc67e700b2a55a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=13134 b/gamelists/pcengine/linkedhashes.php?g=13134 new file mode 100644 index 0000000..a926c42 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=13134 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 979c98d2ab744520ba3a8a8d93c0571b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=13184 b/gamelists/pcengine/linkedhashes.php?g=13184 new file mode 100644 index 0000000..f9d06a1 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=13184 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1cb4520e76f34ede3dd46833183a139f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=14455 b/gamelists/pcengine/linkedhashes.php?g=14455 new file mode 100644 index 0000000..9afcca8 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=14455 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 144eb9109d75c8fd1fa09a20bde6a6cd
  • 153353cc3062d510602442f320ed38c1
  • c0a85b8bbc05b75db448ba76faa16b75


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=14467 b/gamelists/pcengine/linkedhashes.php?g=14467 new file mode 100644 index 0000000..759a05d --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=14467 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 15107f07c3b7a65a7e784add44349961
  • 2480d1a5475973b3032f164ae857c7f1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=14636 b/gamelists/pcengine/linkedhashes.php?g=14636 new file mode 100644 index 0000000..ec7753f --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=14636 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 45fd2a4d3922dd40d3852d42a0140e84


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=15684 b/gamelists/pcengine/linkedhashes.php?g=15684 new file mode 100644 index 0000000..aab821d --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=15684 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 595364eede949021345f1f7735e64355
  • 8f7cac9be3e6d02035b0df0f215172cb
  • e161b34d6bcdbcfe582f943b2eef5715
  • f653c0187a38fde5a8d233e905dd92c9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2145 b/gamelists/pcengine/linkedhashes.php?g=2145 new file mode 100644 index 0000000..57eba53 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2145 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0e0040142b5227f2b85be27364d5ea01
  • e979d36123dc30282a5421a24aa639ec


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2242 b/gamelists/pcengine/linkedhashes.php?g=2242 new file mode 100644 index 0000000..be77fd9 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2242 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1fe13078c7aba4ef0777d5a470d56986
  • 82ed74509cfd2e32dacd2f05d0caf16c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2260 b/gamelists/pcengine/linkedhashes.php?g=2260 new file mode 100644 index 0000000..5fde0aa --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2260 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6e0c2c5ebb0caf13a4ba59b653ab55ef
  • a3a1be9fc3baef5e7bc6554962aea55b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2271 b/gamelists/pcengine/linkedhashes.php?g=2271 new file mode 100644 index 0000000..fda151c --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2271 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0088d1d20861490677edb147d2de60bd
  • b79b937168344378a03c58b20c2df304


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2274 b/gamelists/pcengine/linkedhashes.php?g=2274 new file mode 100644 index 0000000..8133e9b --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2274 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3878ce81ce2cd9831095a27be0843664
  • 3c2f85fc7898de73a7c789033d22b8f5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2275 b/gamelists/pcengine/linkedhashes.php?g=2275 new file mode 100644 index 0000000..774373d --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2275 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f19869d1823a28e8472452baf697cf56


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2276 b/gamelists/pcengine/linkedhashes.php?g=2276 new file mode 100644 index 0000000..855cc63 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2276 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 22945308eb41396f39c00444be9f251f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2279 b/gamelists/pcengine/linkedhashes.php?g=2279 new file mode 100644 index 0000000..6236a9d --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2279 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3aa21326050c489ea867de05dd6cb7e5
  • 973d65b9e7318461155bb888bf204a94


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2280 b/gamelists/pcengine/linkedhashes.php?g=2280 new file mode 100644 index 0000000..d697c3e --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2280 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4db83789bd1597b9c2e423124ef5d98d
  • dd97fe7e1572fe65fcb44e2757764b16


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2285 b/gamelists/pcengine/linkedhashes.php?g=2285 new file mode 100644 index 0000000..0bb7010 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2285 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 60bb0116b706fc30a76840ed0b5da458
  • 97df44641bf65728d1df5cfff39b72e4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2293 b/gamelists/pcengine/linkedhashes.php?g=2293 new file mode 100644 index 0000000..51aa3d8 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2293 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1d7fbd0f8aed6c7fe2cd2e66a17973fc
  • 35a1e82ff6b15c20f05fe5f02b8aa0a4
  • 55153240fe1d0076c4f759b82f2d7e3e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2301 b/gamelists/pcengine/linkedhashes.php?g=2301 new file mode 100644 index 0000000..7e9707d --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2301 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • e5309b10903ccc3032c2f919e8db7384
  • e86650c9602267f205e446194d990fd4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2303 b/gamelists/pcengine/linkedhashes.php?g=2303 new file mode 100644 index 0000000..4fc051a --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2303 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • adcc100fec026c8b150a9e0d35afa050
  • cfaa094419809446cabfe739995e22ee


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2305 b/gamelists/pcengine/linkedhashes.php?g=2305 new file mode 100644 index 0000000..4e3cf7e --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2305 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 09f944f6c28cf77d17dd668e9cc160f7
  • 0a123d34a3fa9466d35809564c7007aa
  • aebb01821eea22215eb7ebec67c8fe38
  • f69b506237ce7d05e7f839d2cc96ab5a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2306 b/gamelists/pcengine/linkedhashes.php?g=2306 new file mode 100644 index 0000000..9137be6 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2306 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 74d9f1bd96ba2690ed4cb989ebaeb948
  • 8490d4d444c5faee7015cf653baccfaf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2307 b/gamelists/pcengine/linkedhashes.php?g=2307 new file mode 100644 index 0000000..92a134d --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2307 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 03d0442df107c97bb04c32de7cb7f5bc
  • e7f686c6767a2ecdc6f4ffdebcfac8b8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2308 b/gamelists/pcengine/linkedhashes.php?g=2308 new file mode 100644 index 0000000..c68692b --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2308 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1b10baf9f65c8339a507e382bda5ed44
  • c4d19abde0fda132c1c4f5dbf20a53e5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2309 b/gamelists/pcengine/linkedhashes.php?g=2309 new file mode 100644 index 0000000..d9f0758 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2309 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 08ae173878d8a3783fa35e80c99a5dc4
  • 524d53d8f6fe5c70e92d1c349a353a2e
  • a45114b563320d13f25cd3a74c4425b1
  • c7abe50a33a7988f78f68973556a8d82
  • eb0789088fc70be42b2f994c1b66be21


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2313 b/gamelists/pcengine/linkedhashes.php?g=2313 new file mode 100644 index 0000000..936ce13 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2313 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 7ac403ffd11ddf3e81720b86ddf627af
  • 7ed620b8a4a302dde75f074eabd4ead8
  • adecf9e9d9be8a300818ad2cc09d49fe
  • ecae850f720be11410dd81542ff22c56


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2316 b/gamelists/pcengine/linkedhashes.php?g=2316 new file mode 100644 index 0000000..e0707a7 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2316 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 407b7e772f86fbdfd90f1e4ac087c03d
  • 5CC45BFE5DA979C51417E77BFE221A2B


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2317 b/gamelists/pcengine/linkedhashes.php?g=2317 new file mode 100644 index 0000000..91445bd --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2317 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 307403e27f10ccd6cf191f9dda26b77a
  • f9fdabcefa6e69aba547b1a5113a133f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2319 b/gamelists/pcengine/linkedhashes.php?g=2319 new file mode 100644 index 0000000..3170ab5 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2319 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 0203c5d45b88a04e8d6c9427b5d61400
  • a53f17bc3492e89c391e280e32397450
  • c23ef1ca95a5aa6789c4172ac66d6b5d
  • f37324d7823329e19eb188dd51213a22


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2320 b/gamelists/pcengine/linkedhashes.php?g=2320 new file mode 100644 index 0000000..4d0a8f9 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2320 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 0130cadd63106052088268befff61278
  • 242eb96324769cb4278ff0a6722b55d9
  • 42a5e13cbfab0c54d30f8ca6831f62ed
  • 5d08e419351cf3ee85e6536070cbb94f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2322 b/gamelists/pcengine/linkedhashes.php?g=2322 new file mode 100644 index 0000000..a83d8ec --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2322 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 57c888f4af792dc4588a2f9dbebea31a
  • 9093143f244b56eb4b93d210c9c80f87


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2326 b/gamelists/pcengine/linkedhashes.php?g=2326 new file mode 100644 index 0000000..2e0940d --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2326 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 59d23b7af39ea827eceb1d7e2cc363c0
  • e78e5212d85d614060ae31135e4f4bfe


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2327 b/gamelists/pcengine/linkedhashes.php?g=2327 new file mode 100644 index 0000000..4b4b62b --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2327 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 2c476453f2156c7afe10b5ed1fa60955
  • 91985b2b4da8311db93a24f04478982b
  • a807e75e2cb7aef491d5359a26426f6e
  • b87aba8faae39f238a8b2176daec96f4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2328 b/gamelists/pcengine/linkedhashes.php?g=2328 new file mode 100644 index 0000000..5965b32 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2328 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 42eff97f4d1a93135ed9c5be516622e1
  • bc7d4b0852d04fe49f6e3705b899c5e5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=2339 b/gamelists/pcengine/linkedhashes.php?g=2339 new file mode 100644 index 0000000..c65d63c --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=2339 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 4333192a22a121772356d3821d445a69
  • 589f7ceb0bd851f6442e53858a0dc51c
  • a436b36f115a8114141862406c610c6b
  • cc15cb59e9425e28c50a2b7fb7259906
  • e7f9551698c91b7a3ec3c3d840628940


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=4855 b/gamelists/pcengine/linkedhashes.php?g=4855 new file mode 100644 index 0000000..6bc3b2e --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=4855 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • dc5a0e432c9e8a9ab9f514b729b574f3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=5109 b/gamelists/pcengine/linkedhashes.php?g=5109 new file mode 100644 index 0000000..fa38476 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=5109 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4a0cee3266259ccf437181dd37116a5f
  • e194791e1c3d709c7fff4b8c808b65ab


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=5268 b/gamelists/pcengine/linkedhashes.php?g=5268 new file mode 100644 index 0000000..1108b3d --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=5268 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 41fa449dda32a22307cd9e5d02b6160d
  • c0001e91ba486e0e43d1373e1b54f682
  • e7fc6d455247c63a7b3fa6a8a090d9b3
  • ea2eaf7aa11a639d13a6119dd3c3f6dc
  • ee1fe6d4f2ccf49e5086dada57edf5c2
  • f6690ec0f440ced641718d6bc52e3fbd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=5515 b/gamelists/pcengine/linkedhashes.php?g=5515 new file mode 100644 index 0000000..59d1dd4 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=5515 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 319ec97f9d3ae11e1d76c959421d19bb
  • 80498e6a60d2cd9aa925f45cbefbff83


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=6026 b/gamelists/pcengine/linkedhashes.php?g=6026 new file mode 100644 index 0000000..c42ac11 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=6026 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1659d9fa2ed7628d342fd7c7fbe6d439
  • 7cbb5ad9ff19f1b5c538e09a988b1065
  • d2f19d15f81de2b1afd90726ca9c8811


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=6374 b/gamelists/pcengine/linkedhashes.php?g=6374 new file mode 100644 index 0000000..55c24e7 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=6374 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0d6de0fee8ef07c96c94275623ce98d1
  • b345329df7acc1938c291440dd1ed5ad


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=6379 b/gamelists/pcengine/linkedhashes.php?g=6379 new file mode 100644 index 0000000..c84ec54 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=6379 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3c60a87ef4f90b20e149330e26253f4d
  • a962310295a2abe084acdff41dfaed4c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=6700 b/gamelists/pcengine/linkedhashes.php?g=6700 new file mode 100644 index 0000000..5b187e5 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=6700 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e9f07a66e2e793bdbf8538ac110bfb7c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=8554 b/gamelists/pcengine/linkedhashes.php?g=8554 new file mode 100644 index 0000000..443978d --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=8554 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 7759f9e0a001483ae1fa2ea2a186e4c1
  • c3b2b9244837ac46206c7b67291edf96
  • ef73d4d3e1c73f0bdb821c1d1eac53f6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=8560 b/gamelists/pcengine/linkedhashes.php?g=8560 new file mode 100644 index 0000000..aacfa90 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=8560 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8c6b0f93db82c2de485e8c63cd65570f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=8708 b/gamelists/pcengine/linkedhashes.php?g=8708 new file mode 100644 index 0000000..1be8d33 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=8708 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 3bd2ca1f224368a5df255b97903ef967
  • 5a8c0f70f333ff03c8eb836eeb5f2ff9
  • 730d3d5d8792b0897f534d9a42d9c3a2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=8742 b/gamelists/pcengine/linkedhashes.php?g=8742 new file mode 100644 index 0000000..78aefe2 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=8742 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 1aa52f0ad0abbe914e13edda8bcf5661
  • 5fb0ef737dcea6a7cb8df0fbcd2670b6
  • c0e606b8ecb1c64b01ddd062e54672b7
  • cfd7fc43a9664979685b8e4358e4555f
  • ecbd032873e2b30ed0bc25d20505a8ed


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=8865 b/gamelists/pcengine/linkedhashes.php?g=8865 new file mode 100644 index 0000000..4fb6787 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=8865 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 190ac11eb121e8a47b26dc09502cc0f3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=8979 b/gamelists/pcengine/linkedhashes.php?g=8979 new file mode 100644 index 0000000..07b7001 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=8979 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 16fe78b1630a790bee6755e3c850a366
  • bff0dffcbc2c3add3bf0b670d2a137b0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcengine/linkedhashes.php?g=9174 b/gamelists/pcengine/linkedhashes.php?g=9174 new file mode 100644 index 0000000..1f0d887 --- /dev/null +++ b/gamelists/pcengine/linkedhashes.php?g=9174 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 1e17a1196f3ba16a35c4dbce71071306
  • 38514d361500c7819cf473eedf9ba89c
  • 5b7f355b3edaad4a86294d718f1c47f5
  • a302ec6b1d15af16487f2b5266f66fc5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pcfx.html b/gamelists/pcfx.html new file mode 100644 index 0000000..cf1e530 --- /dev/null +++ b/gamelists/pcfx.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games PC-FX - RetroAchievements +
+
+
+ +
+
+
+
+
+
+ \ No newline at end of file diff --git a/gamelists/pokemonmini.html b/gamelists/pokemonmini.html new file mode 100644 index 0000000..f97d113 --- /dev/null +++ b/gamelists/pokemonmini.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games Pokemon Mini - RetroAchievements +
+
+ +
+
+ \ No newline at end of file diff --git a/gamelists/pokemonmini/linkedhashes.php?g=11781 b/gamelists/pokemonmini/linkedhashes.php?g=11781 new file mode 100644 index 0000000..e60cf1b --- /dev/null +++ b/gamelists/pokemonmini/linkedhashes.php?g=11781 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 0823b8d49dc88033659f0d4eae114907
  • 199aaed9afb5851c4d39ef78c29b86d1
  • 4266d987e4203c3da2a2da1b3c2e2d39
  • 96f6a0cedc7471a0357271dc799ed342
  • E0A064E6D758F958752A49C0CE798388


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pokemonmini/linkedhashes.php?g=11789 b/gamelists/pokemonmini/linkedhashes.php?g=11789 new file mode 100644 index 0000000..5afcc27 --- /dev/null +++ b/gamelists/pokemonmini/linkedhashes.php?g=11789 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0eb5e7e191ce056f3ee2c6572bc61906
  • 0f78ee2c193fc8d0c129f051f262dcdf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pokemonmini/linkedhashes.php?g=14701 b/gamelists/pokemonmini/linkedhashes.php?g=14701 new file mode 100644 index 0000000..8586308 --- /dev/null +++ b/gamelists/pokemonmini/linkedhashes.php?g=14701 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • a4eb2facaa5beb947f306ced2bf5cd15
  • cac3842f010dba9e4155e459111b6ebd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pokemonmini/linkedhashes.php?g=14703 b/gamelists/pokemonmini/linkedhashes.php?g=14703 new file mode 100644 index 0000000..1c1f573 --- /dev/null +++ b/gamelists/pokemonmini/linkedhashes.php?g=14703 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1bb47758e8ea1c5ba39acf4a1d10c78e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pokemonmini/linkedhashes.php?g=14707 b/gamelists/pokemonmini/linkedhashes.php?g=14707 new file mode 100644 index 0000000..abd4174 --- /dev/null +++ b/gamelists/pokemonmini/linkedhashes.php?g=14707 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 302c418edc3e9d4ff8430b9662a11d1b
  • 66809741517a2f0809cacd6acdd77b27


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pokemonmini/linkedhashes.php?g=14714 b/gamelists/pokemonmini/linkedhashes.php?g=14714 new file mode 100644 index 0000000..17f7687 --- /dev/null +++ b/gamelists/pokemonmini/linkedhashes.php?g=14714 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 8a7ef76eacdeec95cee4f5e5939ccd17
  • a587b6f5aa51fc8506ae818127e5d1b3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pokemonmini/linkedhashes.php?g=14715 b/gamelists/pokemonmini/linkedhashes.php?g=14715 new file mode 100644 index 0000000..fda76ac --- /dev/null +++ b/gamelists/pokemonmini/linkedhashes.php?g=14715 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 086ec88930aa624a09d470858ccc9911
  • 842551cdd9e0cafdf2a6a57159d5bbc8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pokemonmini/linkedhashes.php?g=14716 b/gamelists/pokemonmini/linkedhashes.php?g=14716 new file mode 100644 index 0000000..881c447 --- /dev/null +++ b/gamelists/pokemonmini/linkedhashes.php?g=14716 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1ee515c92cda64696b5085f19c752b57
  • 8b50be4cf91a6a3268f5be5e67120056


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pokemonmini/linkedhashes.php?g=14717 b/gamelists/pokemonmini/linkedhashes.php?g=14717 new file mode 100644 index 0000000..cc84553 --- /dev/null +++ b/gamelists/pokemonmini/linkedhashes.php?g=14717 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f100caf74574aeabe5084f3b5c9e03d2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pokemonmini/linkedhashes.php?g=15723 b/gamelists/pokemonmini/linkedhashes.php?g=15723 new file mode 100644 index 0000000..78c7d4c --- /dev/null +++ b/gamelists/pokemonmini/linkedhashes.php?g=15723 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 473b191bc7833fb62388e1d9f21a241c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/pokemonmini/linkedhashes.php?g=15728 b/gamelists/pokemonmini/linkedhashes.php?g=15728 new file mode 100644 index 0000000..3301772 --- /dev/null +++ b/gamelists/pokemonmini/linkedhashes.php?g=15728 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2586b3aa4989969c0b200a57c13f5aae
  • 6048dce48222e4d75e8fdce9c2f55c39


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx.html b/gamelists/psx.html new file mode 100644 index 0000000..04472b9 --- /dev/null +++ b/gamelists/psx.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games PlayStation - RetroAchievements +
+
+
+ +
+

PlayStation

TitleAchievementsPointsLeaderboards
36300 (1010)
44303 (943)
95580 (1215)
26175 (241)
47585 (2553)
2566 (72)
2566 (66)
68600 (1739)
55455 (2054)
56800 (2962)
2566 (70)
75900 (2678)17
90666 (6314)
46480 (566)
52510 (806)8
100850 (2508)
1291015 (2692)45
120650 (1027)
33182 (210)
56507 (1116)
24350 (780)
69600 (1121)
60600 (7489)8
106800 (6187)6
49372 (766)
138965 (2996)
104436 (2023)52
144584 (2191)117
50668 (2109)
60737 (228)
60904 (10)
42485 (2827)20
44450 (1420)
75830 (1411)
80540 (942)
48465 (1223)28
72640 (1625)18
16275 (352)
98900 (3762)
66534 (1847)36
2566 (66)
2566 (92)
61414 (1288)
45532 (1216)
104620 (5660)33
2566 (66)
80805 (2065)2
55550 (954)3
2201500 (5044)
111991 (2162)
1371157 (2536)
65565 (2068)5
48430 (1153)
2566 (66)
52410 (1397)
65278 (321)
2161645 (10227)
50400 (490)
30380 (1257)
44570 (1227)
80800 (1867)
50380 (1087)
58400 (792)4
54370 (2741)
26440 (619)
150631 (70)
100990 (1354)
66510 (1022)
100982 (2309)6
121842 (2771)
98570 (1449)9
95745 (1890)1
25250 (278)
31375 (1269)33
50224 (508)
411000 (268)
22195 (275)2
42250 (1332)
60430 (1752)
895 (110)
2566 (71)
79300 (302)
68585 (3090)48
124935 (4374)1
121782 (10035)
1601250 (3078)
37450 (1269)11
65555 (974)
52399 (1453)
21185 (301)
44385 (3442)
2566 (66)
40250 (1330)
881270 (2622)
2566 (66)
10147 (182)
50442 (1868)11
65591 (2283)
73822 (1194)
90600 (2839)
40415 (1910)3
105430 (738)1
177550 (2055)2
216600 (1088)3
36455 (1293)
47519 (2362)10
50350 (833)
108857 (2441)
2566 (66)
2566 (66)
2566 (72)
2566 (66)
51415 (606)4
44325 (915)
2566 (70)
75575 (861)1
42480 (961)
50400 (862)
56445 (754)
31362 (682)
56435 (4518)7
97731 (5640)7
58410 (696)
53900 (2570)6
651000 (2279)7
1131000 (8314)
1251100 (3465)
2291150 (2551)
28240 (849)1
27250 (350)
13135 (275)5
56600 (2323)
129831 (8279)
38350 (932)
2566 (72)
47510 (680)
34385 (389)
117580 (2623)
50335 (547)8
50400 (3636)10
28376 (946)
2566 (76)
57425 (787)25
20328 (712)
60934 (1065)
751006 (56)
60722 (25)
84657 (1321)4
50650 (3197)
27440 (5592)6
69700 (1968)
77715 (1744)
51420 (2674)
65775 (5188)1
86738 (4021)
33285 (338)
2235 (37)
55505 (814)
25475 (3227)
34345 (523)
30275 (20)
32655 (1072)
581135 (784)
49685 (2355)3
60540 (2747)
55525 (825)
43590 (5227)1
83750 (2688)4
1301250 (3061)
1101355 (3147)
1131065 (2300)
42320 (375)
38665 (2574)8
20270 (465)
59495 (1116)
102775 (3900)39
23390 (687)13
2461234 (3412)258
35415 (627)
137678 (3650)1
66666 (4341)
37355 (505)2
19275 (469)
50500 (614)
60500 (1682)23
66600 (968)8
45445 (1330)
54493 (628)5
51468 (639)7
67574 (745)2
63453 (625)
66550 (1097)
24150 (780)2
45280 (290)
92800 (1467)
1131000 (2255)
850 (121)
850 (20)
411000 (4333)
20263 (357)
100668 (2993)
40272 (449)
40290 (462)
40290 (234)
40298 (303)
20150 (189)
28293 (367)
40200 (443)
33165 (206)
33165 (182)
40200 (233)
82930 (655)
2566 (66)
50430 (1591)8
63700 (1023)21
94720 (1219)38
80590 (1306)
43635 (1714)5
93781 (1811)2
81907 (3767)3
1541400 (3189)
1201100 (2909)
32450 (4143)1
37232 (780)
26300 (1237)3
30270 (1167)
86600 (1375)34
109720 (1149)19
53417 (1110)2
45604 (1095)
56476 (1355)
32500 (1137)6
85610 (1929)9
90777 (2064)
1261272 (2100)
2566 (67)
43500 (2560)
43535 (1660)
37335 (954)
68465 (1426)18
34300 (678)8
55660 (1250)25
2001290 (10890)38
1741430 (4526)
98503 (1554)
24205 (336)
40300 (365)10
30300 (330)13
53622 (2742)
1561075 (1991)
2201304 (2213)
85800 (2891)
73700 (148)
2566 (68)
1121359 (6779)
50350 (883)
82670 (3363)5
2011107 (2513)
851160 (2941)
301095 (1394)
960 (82)1
15120 (215)
753 (57)
940 (43)
Totals: 264 games16985143027 (445277)1280

+
+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=10275 b/gamelists/psx/linkedhashes.php?g=10275 new file mode 100644 index 0000000..1239101 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=10275 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 77b363db6722e4c6201db7c22c6bd1c9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=10291 b/gamelists/psx/linkedhashes.php?g=10291 new file mode 100644 index 0000000..cbefe05 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=10291 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f3618287eb1be75e7c07694f747eb761


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=10432 b/gamelists/psx/linkedhashes.php?g=10432 new file mode 100644 index 0000000..532a2c5 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=10432 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ba4f186dfc511de240826fb47affff6e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=10433 b/gamelists/psx/linkedhashes.php?g=10433 new file mode 100644 index 0000000..2512539 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=10433 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 6d61d7827e37d42ea32df3afbe508a4b
  • 8209150e48e8f9f0e727347472c7e123
  • 83cd4d6d9b74c601a55d11d746f10d54


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=10434 b/gamelists/psx/linkedhashes.php?g=10434 new file mode 100644 index 0000000..6cab560 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=10434 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 35386fd0891e594c9b6d8a4a5baa0027


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=10437 b/gamelists/psx/linkedhashes.php?g=10437 new file mode 100644 index 0000000..379f056 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=10437 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c39f4c56d4f9c6a1bdf746f5b2309ebf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=10438 b/gamelists/psx/linkedhashes.php?g=10438 new file mode 100644 index 0000000..c9611f9 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=10438 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e5e13057a965c79ba7fc2334993baec2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=10675 b/gamelists/psx/linkedhashes.php?g=10675 new file mode 100644 index 0000000..2c796f9 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=10675 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • b23c85c9182355e2efbf0b3e71087662
  • ce2451640470892d27cb2fb6abf8d302


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=10907 b/gamelists/psx/linkedhashes.php?g=10907 new file mode 100644 index 0000000..eb0a7b9 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=10907 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1bcf6824547b02ba5138d1a540dbeb0a
  • c051dfe204ea27051f661ba5fb8fe7d7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11147 b/gamelists/psx/linkedhashes.php?g=11147 new file mode 100644 index 0000000..6a0ec8c --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11147 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 591899d08dced5210aa33b4810408a8a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11163 b/gamelists/psx/linkedhashes.php?g=11163 new file mode 100644 index 0000000..cc0ff3a --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11163 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8f06b320f625e18eb7290f483e4aac3a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11240 b/gamelists/psx/linkedhashes.php?g=11240 new file mode 100644 index 0000000..8387d11 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11240 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bf7e0e90d8e8d5738c7332bc6af666da


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11241 b/gamelists/psx/linkedhashes.php?g=11241 new file mode 100644 index 0000000..0c5eecc --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11241 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • f09a3f68879df3348807dc495bb91a5f
  • f4f6d00bbc7148ba34c854cca1ad59d9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11242 b/gamelists/psx/linkedhashes.php?g=11242 new file mode 100644 index 0000000..b4bf790 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11242 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 12d8b9270b6fef6d957aeb5c1371815e
  • 22e745953a67496b8d2f41e091de3811
  • 25a4f8c799d1d8c815c6230e4cc03a17
  • 51ae3f915d9a24d8cea47b600399627c
  • 665933b4dbbdfa04b328a2deccea2a30
  • f0bab44902aa941830a686bb11f85356


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11244 b/gamelists/psx/linkedhashes.php?g=11244 new file mode 100644 index 0000000..b19cb79 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11244 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 16 unique ROM(s) registered for it with the following MD5s:

  • 0b0a1d4bd3eb3f009736321ab8349e33
  • 2aedebf6ec87a4cdc7d4ef25fd50dda7
  • 2d58f42dce576a5ad247f52f0563dd36
  • 401d62c5dc6fb4de53b5badaae93e045
  • 4b675210328045127c8f3d792d7bd5db
  • 50615d85e18303f3d892a0eb06581d54
  • 5812b71295ee8c364c76070573d556a4
  • 5a7b95ebc832bbfc094bc879a6aebefe
  • 5dfa249c6e70096c79ad77a74e3a2019
  • 8c8db8c41e2a4c7d0ef7fc1c2f74ef7a
  • 9640dd425491fda1c3f98ef2d22c13e4
  • abfcfb2c883edc59fae065f8ab040958
  • aeb021d3b02b759469dd09541b936ac1
  • e2ec107bfa8e2d6a8c4c85f8391e06c3
  • e4b3bc4a5b3ce6df943f97f6663526d7
  • efffcf2f30383fded020cd6611fbe47d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11245 b/gamelists/psx/linkedhashes.php?g=11245 new file mode 100644 index 0000000..9643a9e --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11245 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2e78f5817db6bb9dfb0208068d0801ce
  • 33df147cc40901c4f96e4e9328cc9218


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11246 b/gamelists/psx/linkedhashes.php?g=11246 new file mode 100644 index 0000000..d63919e --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11246 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4af22b114a64db19e3e707b28ebb6e68


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11247 b/gamelists/psx/linkedhashes.php?g=11247 new file mode 100644 index 0000000..d9e1f8c --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11247 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 1fe564ab22981a9f4a90da91e75d2156
  • 4ce1b8fde3b3c89d43e5ffa3aa126703
  • 5f600c1ce3adf2f3d9962af655734a57
  • fb8dfe0d788eaacd3047c446f98ae1e8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11248 b/gamelists/psx/linkedhashes.php?g=11248 new file mode 100644 index 0000000..343b27c --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11248 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 02ba8ee8c226923babe876bdf3a8f401
  • 1bde22c83a069c43cb32b8521bfdf7ae
  • 6d7467d0212b12e3d11ec163a1bf63bf
  • 781475361fb1aeed58c06a26c131b4b6
  • 8f7e7f7bcc075fff91cc46aabff4c42a
  • 91e42f4a4209a1f66d65bcd791e3d6d4
  • c61c11b6d3008f3d60f3369df56e1ab2
  • dee7f33027da63dea9be3c1e5f8321e9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11249 b/gamelists/psx/linkedhashes.php?g=11249 new file mode 100644 index 0000000..9228983 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11249 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 329df415314192e1a70a327a7366366f
  • f5cdb19efc4b1a288933148ac903ccbd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11252 b/gamelists/psx/linkedhashes.php?g=11252 new file mode 100644 index 0000000..90a0c48 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11252 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 469d5cf1428d3f6f2234aa5be058f3ec


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11255 b/gamelists/psx/linkedhashes.php?g=11255 new file mode 100644 index 0000000..1441d9a --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11255 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 18b43be49e69cd9de1891c5afae48c62
  • 1cf50cc263c064757698569ff51c4e7e
  • 3544359ecdc0d4037e47f523bfb468cf
  • 3a9d602530b5073574b153886dc516ec
  • ef046ead448119490ce4c0640cdcb393


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11256 b/gamelists/psx/linkedhashes.php?g=11256 new file mode 100644 index 0000000..8eaab27 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11256 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e48bc1ffd56f43adddf7be719d68d288


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11258 b/gamelists/psx/linkedhashes.php?g=11258 new file mode 100644 index 0000000..1191d66 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11258 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 3e4bbb093dc7a0de8120c3136cd9b808
  • 6f89a01fd2a2ddbc04e23e836f808a2e
  • 7af3815e2d153fcc0447230f5d64e2ae
  • f1a039e053930537af3bf7970c1e551b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11259 b/gamelists/psx/linkedhashes.php?g=11259 new file mode 100644 index 0000000..139e1fc --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11259 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5b0009044c8d7724518ff57e35c61af6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11260 b/gamelists/psx/linkedhashes.php?g=11260 new file mode 100644 index 0000000..9aaac89 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11260 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 194043cd0a402e3ce588ebcbd14086a2
  • 5c63af54f937ccd06dcacbfbb1457456
  • 60adcf248b6fb7408658498ad95c233a
  • 6cf4fe05b40ad2d1764e872b794fe11c
  • c641079f01b56e538e5e90ac79f9144c
  • faf14c9f3d9dbcde6d97452d306d848c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11261 b/gamelists/psx/linkedhashes.php?g=11261 new file mode 100644 index 0000000..1cf0f9d --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11261 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d32b1c377c9ca6454e64063c84f03f5f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11262 b/gamelists/psx/linkedhashes.php?g=11262 new file mode 100644 index 0000000..7e53193 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11262 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • af3d2ed9555d1a83b43332ae42f7f841


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11264 b/gamelists/psx/linkedhashes.php?g=11264 new file mode 100644 index 0000000..896ebdc --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11264 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 58b2b8f4c62c1d31346802f60e9b415f
  • 660f0c48ff032ce37a4448d34db2c190
  • d3a995bce5c6611ed84f5bff98cbfb00
  • d759ac59e5f7bd34d4d6bc8e3a281ba5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11265 b/gamelists/psx/linkedhashes.php?g=11265 new file mode 100644 index 0000000..1f21d55 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11265 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4f8ab98c545757c65978d595f42826e4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11267 b/gamelists/psx/linkedhashes.php?g=11267 new file mode 100644 index 0000000..1838168 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11267 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 264a40d49090331f3afda00b55f749b2
  • 76ec3fcdd569038870655d61054ae068
  • e97c7495a6009a8e0094a7b3798d0e37
  • ea3bae71cb42cdb83fa9fa46c627fb32


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11268 b/gamelists/psx/linkedhashes.php?g=11268 new file mode 100644 index 0000000..95346b5 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11268 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • fef5c16e4aed84e0402807c8b4217b9b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11269 b/gamelists/psx/linkedhashes.php?g=11269 new file mode 100644 index 0000000..bd20333 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11269 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2f598d7acd95c461ffe66b7faeceb7c7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11270 b/gamelists/psx/linkedhashes.php?g=11270 new file mode 100644 index 0000000..7745f2f --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11270 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 307ea659918b9e485a964221f1c02893
  • b036f05b8cd8c31a2a909dc1758e876a
  • d8fe1ddc1e4cc6621ad58a30a4d16a47
  • ddaaf6a0ab57c7898e62a528112ab4c5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11275 b/gamelists/psx/linkedhashes.php?g=11275 new file mode 100644 index 0000000..63443b8 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11275 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 11bd9ae14acbfc7d0c700710086b412d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11276 b/gamelists/psx/linkedhashes.php?g=11276 new file mode 100644 index 0000000..f8c43b6 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11276 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 2bb305853c8619295c24d08d7122e05e
  • 41c8d48aada42248283b1474f63aa9c4
  • 9fc5f915f6b234880cc8ab9cd7f1c9f8
  • ac4432185c8570d033f8137a9bcf0200


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11277 b/gamelists/psx/linkedhashes.php?g=11277 new file mode 100644 index 0000000..186a7d7 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11277 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 69562c06a66906577c780fefcb7af204
  • a5fcf895126e392c5696bbb717c7165c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11278 b/gamelists/psx/linkedhashes.php?g=11278 new file mode 100644 index 0000000..7adb59a --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11278 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4ea57dce50b86a32f0d5034479c1bc48


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11279 b/gamelists/psx/linkedhashes.php?g=11279 new file mode 100644 index 0000000..3054b06 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11279 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 22ea62a64743559272479a3c4b99b2b1
  • 3e9eb765a7b2912e60c30f363f0a3574
  • 920f473f3a654af8a7d1970a4cc215af
  • c34d0d04488fa2ea7f1abf1d4c4e92e8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11280 b/gamelists/psx/linkedhashes.php?g=11280 new file mode 100644 index 0000000..7245931 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11280 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 44fc233b415c466986b8ab3de5c0cf1d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11281 b/gamelists/psx/linkedhashes.php?g=11281 new file mode 100644 index 0000000..6124563 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11281 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 9a063d46085d082398ba3fbd660b3a70
  • caf77d56d77ad8d55205c3002f56b436


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11282 b/gamelists/psx/linkedhashes.php?g=11282 new file mode 100644 index 0000000..e9c4146 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11282 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0177acaee3e0841ebda8dca1eab81bd0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11283 b/gamelists/psx/linkedhashes.php?g=11283 new file mode 100644 index 0000000..18654a3 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11283 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 113a06fdb9815c4bc6177d2950e28946


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11286 b/gamelists/psx/linkedhashes.php?g=11286 new file mode 100644 index 0000000..036b0b2 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11286 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0aef6b731c7bf1cae116c949e2bd5012
  • 28c1cfa0c73fd831fd305283e94bb474


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11289 b/gamelists/psx/linkedhashes.php?g=11289 new file mode 100644 index 0000000..af6e5ee --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11289 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 53aea21ec24c5d70abd48dee9527c47d
  • 8b4fba614a9debf9496195c435072eea


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11291 b/gamelists/psx/linkedhashes.php?g=11291 new file mode 100644 index 0000000..ffca3bc --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11291 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • fd5de281f86381a15bf9927c2a290ecd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11292 b/gamelists/psx/linkedhashes.php?g=11292 new file mode 100644 index 0000000..1cdbef5 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11292 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 118dc6b29c2fc5644f0bcee40c39a382


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11293 b/gamelists/psx/linkedhashes.php?g=11293 new file mode 100644 index 0000000..4a6941c --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11293 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 06a3141395584aae0d3bb974531b971e
  • 3352adf57be0d2a44390df67f846cc56
  • 80c238d9194fbac08c4bccb830d98b5e
  • aeb09f9e7e3dc939628aadaf5562f054
  • d8707b1006452f8b23d04cb6c825680a
  • fefa5c34269474d0d638e3961f4c4244


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11295 b/gamelists/psx/linkedhashes.php?g=11295 new file mode 100644 index 0000000..ade1b3d --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11295 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 08cf1306840cdba6ff90178b5372d158


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11296 b/gamelists/psx/linkedhashes.php?g=11296 new file mode 100644 index 0000000..2db86fe --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11296 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c467677922c695df86abe6c3bb48cca6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11297 b/gamelists/psx/linkedhashes.php?g=11297 new file mode 100644 index 0000000..d9c8f1c --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11297 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e4558ec2f5bf1d75938a9015501e38ed


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11298 b/gamelists/psx/linkedhashes.php?g=11298 new file mode 100644 index 0000000..c02d47c --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11298 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5540142e67608a050cd8059a885bd20b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11300 b/gamelists/psx/linkedhashes.php?g=11300 new file mode 100644 index 0000000..7fadcf6 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11300 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0c978fdf6aef75e7d22c377d73dbe269
  • f3adc8f6fa7d8231cf52831ba94eb43c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11302 b/gamelists/psx/linkedhashes.php?g=11302 new file mode 100644 index 0000000..d4747fa --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11302 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • edbf03cc28fc00ab4108915f82e3f777


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11303 b/gamelists/psx/linkedhashes.php?g=11303 new file mode 100644 index 0000000..6a79ff5 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11303 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 88d8f814e469494433917cdfd9f0badc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11306 b/gamelists/psx/linkedhashes.php?g=11306 new file mode 100644 index 0000000..8bd848f --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11306 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 2b6bb4cb803acc805e2bf7e68a669f16
  • 7b3a17821458f4ee7bc54d0d1391c960
  • b7487fe18372993390c4b57d13fcd469
  • c5612f687ce6df98e8ab1212f51d2f25
  • f62fdbeb682d377eaaeebf9f4a2c1c9f
  • f972bd82f53e235ba67a142887ea6751
  • fa80dce7f771846cdc13e5f2f074147d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11309 b/gamelists/psx/linkedhashes.php?g=11309 new file mode 100644 index 0000000..7aaaedc --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11309 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 813cc94b6570b8072746d762e27d4899
  • 82a4a22c0a6cfd14f38e77410d0a12d2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11310 b/gamelists/psx/linkedhashes.php?g=11310 new file mode 100644 index 0000000..fba4f42 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11310 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cabd8ca484976cbb35650b8031a1362c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11311 b/gamelists/psx/linkedhashes.php?g=11311 new file mode 100644 index 0000000..96010dc --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11311 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9f80389b157a7b8da1c28f92ab223965


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11313 b/gamelists/psx/linkedhashes.php?g=11313 new file mode 100644 index 0000000..21e4a73 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11313 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0097047ac25a35980511bb008364a7f8
  • 27b684b8e510eab37747049dce8cb839


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11314 b/gamelists/psx/linkedhashes.php?g=11314 new file mode 100644 index 0000000..9fb63e4 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11314 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8a5192caca0d729cb8b4e077cc1571a4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11316 b/gamelists/psx/linkedhashes.php?g=11316 new file mode 100644 index 0000000..ae7eeb7 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11316 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7584a59de3f04c42998246ab44d9cec7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11317 b/gamelists/psx/linkedhashes.php?g=11317 new file mode 100644 index 0000000..49064c9 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11317 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 270c740d1c4192423152df2376cf7ced


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11318 b/gamelists/psx/linkedhashes.php?g=11318 new file mode 100644 index 0000000..78e0f4e --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11318 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a594e06a07a00075c76dacf25a17d0cb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11319 b/gamelists/psx/linkedhashes.php?g=11319 new file mode 100644 index 0000000..de214fd --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11319 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e720c1c756a8d5c701e78905484cc926


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11320 b/gamelists/psx/linkedhashes.php?g=11320 new file mode 100644 index 0000000..7b112c3 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11320 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 13e08c49ab6e0a39d738913c68a971af
  • 9e6b1472d13cccc60945ae1276360667


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11321 b/gamelists/psx/linkedhashes.php?g=11321 new file mode 100644 index 0000000..ce9dcbf --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11321 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 363df9d41e8dae02f5d6d84617fb5b96


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11322 b/gamelists/psx/linkedhashes.php?g=11322 new file mode 100644 index 0000000..007da26 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11322 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 951d3fa46d5e45f0e65cc86e82eddd27


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11325 b/gamelists/psx/linkedhashes.php?g=11325 new file mode 100644 index 0000000..ac7872b --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11325 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 91ba15ec39b445b2220b125c907d97fd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11327 b/gamelists/psx/linkedhashes.php?g=11327 new file mode 100644 index 0000000..b11eea9 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11327 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8bc2620ebf5b44d0cc96ae1e5b2dc66a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11328 b/gamelists/psx/linkedhashes.php?g=11328 new file mode 100644 index 0000000..f2d8f60 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11328 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • edacecc75882feead9a67fdd9a8910ca


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11330 b/gamelists/psx/linkedhashes.php?g=11330 new file mode 100644 index 0000000..1643c16 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11330 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3dbd702934b12a2c6b842e4c7e060a67


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11331 b/gamelists/psx/linkedhashes.php?g=11331 new file mode 100644 index 0000000..57ce392 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11331 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3687e8925ab38a2ccf9d965df280c432


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11333 b/gamelists/psx/linkedhashes.php?g=11333 new file mode 100644 index 0000000..9f96283 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11333 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 39a1dc8c3a5455ac937593fec84856de


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11334 b/gamelists/psx/linkedhashes.php?g=11334 new file mode 100644 index 0000000..69f0a19 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11334 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ed764ac58e32ede09ca4d046c6e41d92


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11335 b/gamelists/psx/linkedhashes.php?g=11335 new file mode 100644 index 0000000..2b10fcb --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11335 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e587ff4a17ca07291a0deb17a6ea4640


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11337 b/gamelists/psx/linkedhashes.php?g=11337 new file mode 100644 index 0000000..0d874f4 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11337 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 260665cc4567f21be361f6f1807de0a3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11338 b/gamelists/psx/linkedhashes.php?g=11338 new file mode 100644 index 0000000..92bae13 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11338 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d83eb045c9b2158fe6b913ee199b6fe7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11341 b/gamelists/psx/linkedhashes.php?g=11341 new file mode 100644 index 0000000..b1abce7 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11341 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 28dd33bf9d2faa0e52e2315de16e41fd
  • 466f75a92104129b3a090fa2169175bf
  • 53b1f9163f4b2d9a064c10859e02fa6e
  • b036ae9f9efd019e8a33897852b18dd0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11342 b/gamelists/psx/linkedhashes.php?g=11342 new file mode 100644 index 0000000..1627b51 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11342 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e7c31ca00a6148a816a904a86e224717


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11344 b/gamelists/psx/linkedhashes.php?g=11344 new file mode 100644 index 0000000..c4923c7 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11344 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a796211aa32c1a53ba998c93eae8820f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11345 b/gamelists/psx/linkedhashes.php?g=11345 new file mode 100644 index 0000000..74427dc --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11345 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2b9120e614da71f97234ab2e18061711


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11346 b/gamelists/psx/linkedhashes.php?g=11346 new file mode 100644 index 0000000..f02386d --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11346 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c6ff8745d23b4c666622b26ba2022e1f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11352 b/gamelists/psx/linkedhashes.php?g=11352 new file mode 100644 index 0000000..88664b4 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11352 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • dbddd86cda9d33ad59ac62955d1b7871


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11353 b/gamelists/psx/linkedhashes.php?g=11353 new file mode 100644 index 0000000..3b5287f --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11353 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ec82c408a42604ab734ada1524c0be20


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11354 b/gamelists/psx/linkedhashes.php?g=11354 new file mode 100644 index 0000000..4f241be --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11354 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b4de55870a0bf555e4c17569c47aff8e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11355 b/gamelists/psx/linkedhashes.php?g=11355 new file mode 100644 index 0000000..e526585 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11355 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1052168c5462df4ead8c7040bc9f5ff9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11359 b/gamelists/psx/linkedhashes.php?g=11359 new file mode 100644 index 0000000..afbe0b5 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11359 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2b243ca01044b1abc542305fd135fec1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11360 b/gamelists/psx/linkedhashes.php?g=11360 new file mode 100644 index 0000000..336a07b --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11360 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7672085f9aec0ee8f40341c402e5322a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11361 b/gamelists/psx/linkedhashes.php?g=11361 new file mode 100644 index 0000000..58e1a36 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11361 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3b94a886a091795904906aa6894280eb
  • 441fad646af643df4be6f34cd3aa721d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11362 b/gamelists/psx/linkedhashes.php?g=11362 new file mode 100644 index 0000000..9cdbae7 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11362 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • ae5dc2af2ade45f220a75270c9e98bd8
  • dc220fcc6a30f3b7a2a1b64395f17e5d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11364 b/gamelists/psx/linkedhashes.php?g=11364 new file mode 100644 index 0000000..c699996 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11364 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2179b75dda735509ab4f34da438c372b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11365 b/gamelists/psx/linkedhashes.php?g=11365 new file mode 100644 index 0000000..d91dc86 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11365 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 56e1638cce2742e679578cb75406b772


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11367 b/gamelists/psx/linkedhashes.php?g=11367 new file mode 100644 index 0000000..7b20a5e --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11367 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 025489a1b1a708b2aae0a763c019eecf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11368 b/gamelists/psx/linkedhashes.php?g=11368 new file mode 100644 index 0000000..ead2afd --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11368 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d3d2570a85173eecf2a4f4b584d49a5e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11370 b/gamelists/psx/linkedhashes.php?g=11370 new file mode 100644 index 0000000..006457f --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11370 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 048a9dfb67acb7198831f1141dc8b56d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11374 b/gamelists/psx/linkedhashes.php?g=11374 new file mode 100644 index 0000000..4e94e94 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11374 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 85d0d1540ea1871ab1e7ac6fd81a0cd1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11379 b/gamelists/psx/linkedhashes.php?g=11379 new file mode 100644 index 0000000..8f0600b --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11379 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 070aad9da87f3665ba95900b91c292be


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11382 b/gamelists/psx/linkedhashes.php?g=11382 new file mode 100644 index 0000000..50a47aa --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11382 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ea7528bc734bf39a4c89b8d8cf16e330


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11383 b/gamelists/psx/linkedhashes.php?g=11383 new file mode 100644 index 0000000..ab80627 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11383 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7c52dd9ab953a9592b64ae86aa6c8022


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11387 b/gamelists/psx/linkedhashes.php?g=11387 new file mode 100644 index 0000000..bc98148 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11387 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6f67480ab32de9471c39d40c7809449a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11388 b/gamelists/psx/linkedhashes.php?g=11388 new file mode 100644 index 0000000..7e22d15 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11388 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b181396315dc9dd3656d5910ea65239b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11389 b/gamelists/psx/linkedhashes.php?g=11389 new file mode 100644 index 0000000..0c3bd48 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11389 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a685c65da138f5cda1bbcd80345e69a6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11391 b/gamelists/psx/linkedhashes.php?g=11391 new file mode 100644 index 0000000..5f3f476 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11391 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 96be802f3f536946b5906f06029766f1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11396 b/gamelists/psx/linkedhashes.php?g=11396 new file mode 100644 index 0000000..1046071 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11396 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 64baa8b57783d9dfca7e5780dd141782


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11397 b/gamelists/psx/linkedhashes.php?g=11397 new file mode 100644 index 0000000..53aabad --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11397 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e955fbca360846a8ef5ccf5db5691220


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11399 b/gamelists/psx/linkedhashes.php?g=11399 new file mode 100644 index 0000000..d0171cd --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11399 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2e6e6254bc4c98d81ac4383767d9d39a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11401 b/gamelists/psx/linkedhashes.php?g=11401 new file mode 100644 index 0000000..9c7fcce --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11401 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 138a1ee7a95f5733fc6039723a170381


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11408 b/gamelists/psx/linkedhashes.php?g=11408 new file mode 100644 index 0000000..db16771 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11408 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ecb917ffc22d7c0bc076fed2a393536b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11409 b/gamelists/psx/linkedhashes.php?g=11409 new file mode 100644 index 0000000..bf06ad8 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11409 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 69a540b2455f5d43702b86fb1afde5f2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11412 b/gamelists/psx/linkedhashes.php?g=11412 new file mode 100644 index 0000000..6b2de93 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11412 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a6524e10093b29a9267b1befc5cd116a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11416 b/gamelists/psx/linkedhashes.php?g=11416 new file mode 100644 index 0000000..0075e53 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11416 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 924c0404484d1604a834cbf8b7d2e362
  • 95f1fb0af5234175ec1c1c25bdc1815e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11418 b/gamelists/psx/linkedhashes.php?g=11418 new file mode 100644 index 0000000..7183cf1 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11418 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c87a119f86093c836934fcfb9fdfb4b8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11419 b/gamelists/psx/linkedhashes.php?g=11419 new file mode 100644 index 0000000..104d59a --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11419 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7f009ee09a398be094220e3e943ac458


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11421 b/gamelists/psx/linkedhashes.php?g=11421 new file mode 100644 index 0000000..6dd19e0 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11421 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a8f026f3c2e0c7f871f6cde07ac16144


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11422 b/gamelists/psx/linkedhashes.php?g=11422 new file mode 100644 index 0000000..ca48ffc --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11422 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a007606dad987e332170924a214f3d7b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11424 b/gamelists/psx/linkedhashes.php?g=11424 new file mode 100644 index 0000000..18ef72c --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11424 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 84904852526e5bb1d342e352de7d7a55


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11561 b/gamelists/psx/linkedhashes.php?g=11561 new file mode 100644 index 0000000..d5d31d2 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11561 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • dbdd64df89083681f6b985a5cc3d72d6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=11588 b/gamelists/psx/linkedhashes.php?g=11588 new file mode 100644 index 0000000..73f5b21 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=11588 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 2b499528873637d509226a17e45de687
  • 917bf6ee457d21754e8ef709ed9ada54
  • 9b133e8c0973d1170f47b7ccdf66c45c
  • cec48086a5191822475bcbdbf7702e2f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=1159 b/gamelists/psx/linkedhashes.php?g=1159 new file mode 100644 index 0000000..1c448be --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=1159 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e5eae6081ef79b5ffe5029872bb7a09f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=12575 b/gamelists/psx/linkedhashes.php?g=12575 new file mode 100644 index 0000000..ea30538 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=12575 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 52b9077fecad27ca2994548c19d73a6f
  • c287af2c921d04384c3e89cd64212533


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=13431 b/gamelists/psx/linkedhashes.php?g=13431 new file mode 100644 index 0000000..5a467e3 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=13431 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7e18f785eba16cd5cebf54e01101fce0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=13441 b/gamelists/psx/linkedhashes.php?g=13441 new file mode 100644 index 0000000..e345f9c --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=13441 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 31959cc4ba440f660ab27208e3e8950a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=13443 b/gamelists/psx/linkedhashes.php?g=13443 new file mode 100644 index 0000000..95eab54 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=13443 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ed34198dfb6596da6d7a94987bea21c8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=13444 b/gamelists/psx/linkedhashes.php?g=13444 new file mode 100644 index 0000000..b012a42 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=13444 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5eb4afb7a9a38e399169b1df5c4cb68f
  • e2dfc0f35f3684145e539964995c72c7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=13891 b/gamelists/psx/linkedhashes.php?g=13891 new file mode 100644 index 0000000..99c96e7 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=13891 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 26eaf6f79c4334d069ae0819309e5493


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=13892 b/gamelists/psx/linkedhashes.php?g=13892 new file mode 100644 index 0000000..e447ca9 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=13892 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 34d513ea46aa7c64728a055b6145f417


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=13900 b/gamelists/psx/linkedhashes.php?g=13900 new file mode 100644 index 0000000..a653f71 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=13900 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8f65b241ea2379b53f6bf3c10a179a65


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=13904 b/gamelists/psx/linkedhashes.php?g=13904 new file mode 100644 index 0000000..9af492a --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=13904 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5b04b02da9e69899698d01c5e577f2a4
  • 7eb6cc903659daa8b3f944743d653d37


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=13906 b/gamelists/psx/linkedhashes.php?g=13906 new file mode 100644 index 0000000..f0e739b --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=13906 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3ee697082b61cfc85612e532a02c0a41


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=13908 b/gamelists/psx/linkedhashes.php?g=13908 new file mode 100644 index 0000000..64e7bd5 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=13908 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e8a7e0e5156e960a846bc9847b8c38f2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=13909 b/gamelists/psx/linkedhashes.php?g=13909 new file mode 100644 index 0000000..8d353e5 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=13909 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 44aa4cd1760699c931772f7cc1010ce4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=13910 b/gamelists/psx/linkedhashes.php?g=13910 new file mode 100644 index 0000000..c92dfaa --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=13910 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 1c8859bf6a42d8d1c3266165d74c486b
  • 7a32fba6895164cdf18c4505d6796421
  • 9b0644909e4946ef7e807b1189d49274
  • b153e734f6fb8fd15e858619b602a684
  • b47c14cb18860634dc070ea345906252
  • f4311bfbaeb9f24ed011e9f2e571f9f7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=13911 b/gamelists/psx/linkedhashes.php?g=13911 new file mode 100644 index 0000000..db4d0e6 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=13911 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e6fb8cf49f85de9defeb9cbc4a961ee6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=13918 b/gamelists/psx/linkedhashes.php?g=13918 new file mode 100644 index 0000000..40e8556 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=13918 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cac39e00b80a31f3fe1498a7df72cd57


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14050 b/gamelists/psx/linkedhashes.php?g=14050 new file mode 100644 index 0000000..6a7372c --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14050 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 54efd85dda05c355545492ef7b69d51a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14370 b/gamelists/psx/linkedhashes.php?g=14370 new file mode 100644 index 0000000..52189ad --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14370 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 11652ec99bad8371efeb8df13b7ec1b0
  • 40a3d237076ce9eb936e838f491cc26a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14371 b/gamelists/psx/linkedhashes.php?g=14371 new file mode 100644 index 0000000..3677496 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14371 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6749928628ecb5aca24d52a9c47012b7
  • e41d75d61cbe528c2eeab63b64238a42


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14377 b/gamelists/psx/linkedhashes.php?g=14377 new file mode 100644 index 0000000..d1ddde5 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14377 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 54e0368be5fdb392d6fd0c39cf8489d3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14379 b/gamelists/psx/linkedhashes.php?g=14379 new file mode 100644 index 0000000..9fb1e2f --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14379 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e99797f3f5967a7edff4b85fc8e0a43a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14414 b/gamelists/psx/linkedhashes.php?g=14414 new file mode 100644 index 0000000..4c66f39 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14414 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b4879033e6c8bf5f1bede04e1377dfaa


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14415 b/gamelists/psx/linkedhashes.php?g=14415 new file mode 100644 index 0000000..7d5cd83 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14415 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 13e700198b31d89f924f44cae2d0b05f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14416 b/gamelists/psx/linkedhashes.php?g=14416 new file mode 100644 index 0000000..1559e0e --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14416 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 2268749599891de068a5aba0bf68c289
  • 42c4d95f128cbd162cef987a60493f28
  • 56b51ed5c62a82fdbd4534b5988f1471
  • c7d956f5cc57efa0d7cbd954d16f7f19
  • c8625f30ef75bd54353a76da276001d9
  • e3d0e9a0959fd3377274ed0e8491160c
  • fd334daa5dacba5b55f186899f903dce


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14417 b/gamelists/psx/linkedhashes.php?g=14417 new file mode 100644 index 0000000..39ee007 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14417 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 01db9b5900e78e5625d452e6aecb7088


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14420 b/gamelists/psx/linkedhashes.php?g=14420 new file mode 100644 index 0000000..e094b80 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14420 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1b5b7802b3640b41542bb390c29b194b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14421 b/gamelists/psx/linkedhashes.php?g=14421 new file mode 100644 index 0000000..16cbd5f --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14421 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 56d7241a5664d714495fb791d657d370


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14422 b/gamelists/psx/linkedhashes.php?g=14422 new file mode 100644 index 0000000..2d82f32 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14422 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4d47e0c2cb948135a0ef2a6dd2cd2396


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14427 b/gamelists/psx/linkedhashes.php?g=14427 new file mode 100644 index 0000000..1d17f60 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14427 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f2c7433cb071ce238884532284aec618


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14433 b/gamelists/psx/linkedhashes.php?g=14433 new file mode 100644 index 0000000..20df23b --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14433 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c117dfd7dfa38f018b31845e96aae331


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14436 b/gamelists/psx/linkedhashes.php?g=14436 new file mode 100644 index 0000000..b9cc8f5 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14436 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cc522cc6c437a4ec707b87f0958ded07


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14439 b/gamelists/psx/linkedhashes.php?g=14439 new file mode 100644 index 0000000..db3bf0f --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14439 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e8a9d777e317bd28a65767f6185892a4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14440 b/gamelists/psx/linkedhashes.php?g=14440 new file mode 100644 index 0000000..970b934 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14440 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9a0c53b12f3583b14b669cc0e4da4a21


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14441 b/gamelists/psx/linkedhashes.php?g=14441 new file mode 100644 index 0000000..2b5ade1 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14441 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a366f0ab040079ddedbc601a8d575bd7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14443 b/gamelists/psx/linkedhashes.php?g=14443 new file mode 100644 index 0000000..bef74c2 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14443 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 42ca8fc76182fdd0920b2a921c3475e1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14449 b/gamelists/psx/linkedhashes.php?g=14449 new file mode 100644 index 0000000..3d64c4b --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14449 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a1f4aea77cea8454943dab0d28f30ce4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14470 b/gamelists/psx/linkedhashes.php?g=14470 new file mode 100644 index 0000000..f3c7ede --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14470 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c49cb36229ef7d8e0c5905f54d1eb182


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14481 b/gamelists/psx/linkedhashes.php?g=14481 new file mode 100644 index 0000000..52b2e13 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14481 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ac487bd2175dc3d63077cb6be1afab26


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14518 b/gamelists/psx/linkedhashes.php?g=14518 new file mode 100644 index 0000000..bf97d6b --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14518 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 8 unique ROM(s) registered for it with the following MD5s:

  • 053a10177862ebe7f049e1ced6c98918
  • 6201b047215e570c73a6cae20a484d32
  • beff00068add9aa67f2459f25d02e796
  • ca73458db74c710902c605ff8620ddff
  • cccf8b0a2e436188d07517f715b99b34
  • ccdc4924c37cab9cac37cb1a280ba458
  • ebc360b45722c0ea338b3b5c9e4c5cb3
  • f12f081a623cf434ef9abe76d65b0322


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14586 b/gamelists/psx/linkedhashes.php?g=14586 new file mode 100644 index 0000000..a0e536b --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14586 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 75ff44ef29d008a6855e1271322c51ab


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14587 b/gamelists/psx/linkedhashes.php?g=14587 new file mode 100644 index 0000000..641c456 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14587 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5a4181e59095a6dcfa32c9bc538e160a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14588 b/gamelists/psx/linkedhashes.php?g=14588 new file mode 100644 index 0000000..c5c776f --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14588 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f7a0a3763930f0c2efcdb32675e24e4a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14589 b/gamelists/psx/linkedhashes.php?g=14589 new file mode 100644 index 0000000..631e54d --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14589 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • fcdfb02f6abb5295f3ad22cb2dee8b86


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14590 b/gamelists/psx/linkedhashes.php?g=14590 new file mode 100644 index 0000000..2578e3b --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14590 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c9a83658d39f5985805915c07933ffa5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14591 b/gamelists/psx/linkedhashes.php?g=14591 new file mode 100644 index 0000000..b394170 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14591 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2928fc1deaf32fa04e71dfe3685291b5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14615 b/gamelists/psx/linkedhashes.php?g=14615 new file mode 100644 index 0000000..7b9717e --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14615 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 42db88df74ef4ea07ef0c575960a0934


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14630 b/gamelists/psx/linkedhashes.php?g=14630 new file mode 100644 index 0000000..d8483cd --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14630 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 467e111f6d3c68bd2f709b585b9d2a01


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14631 b/gamelists/psx/linkedhashes.php?g=14631 new file mode 100644 index 0000000..23f06aa --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14631 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 92a7171a0322ca07e2529575e3692e12


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14634 b/gamelists/psx/linkedhashes.php?g=14634 new file mode 100644 index 0000000..5baf687 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14634 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d108d3baeec3ddcdf20c80ebad37d7cc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14635 b/gamelists/psx/linkedhashes.php?g=14635 new file mode 100644 index 0000000..8c6d884 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14635 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c16749370c5090e31f58f52bbbed2408


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14644 b/gamelists/psx/linkedhashes.php?g=14644 new file mode 100644 index 0000000..08df404 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14644 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • e209c10124e22350562387ea3eb94c9b
  • eb91db3dba93cc255cc88f8a48c8b7f7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14649 b/gamelists/psx/linkedhashes.php?g=14649 new file mode 100644 index 0000000..bfb7a38 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14649 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 19fc84920bbe1e8b2364cbd6f5695021
  • 6405368805d1ad1a6ef28a92d98ba5eb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14681 b/gamelists/psx/linkedhashes.php?g=14681 new file mode 100644 index 0000000..4871ea7 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14681 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f882f8b6a3cd866dcfc73a5b8ad68c2f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14683 b/gamelists/psx/linkedhashes.php?g=14683 new file mode 100644 index 0000000..8fdff5d --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14683 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3620a316e7ce463e604d91540840df62


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14688 b/gamelists/psx/linkedhashes.php?g=14688 new file mode 100644 index 0000000..49aaff7 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14688 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f97b30a660b7d8f314c807ec30a9eee0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14691 b/gamelists/psx/linkedhashes.php?g=14691 new file mode 100644 index 0000000..48602cf --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14691 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 94e733cd4fbf9f5e520092a9e5b03605


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14697 b/gamelists/psx/linkedhashes.php?g=14697 new file mode 100644 index 0000000..37f184c --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14697 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f9f51a666e0675ce6dbc35b8f292ed59


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14702 b/gamelists/psx/linkedhashes.php?g=14702 new file mode 100644 index 0000000..30efe10 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14702 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ec7f1de6e4dcfc4cb3d2cbd42455e5ed


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14712 b/gamelists/psx/linkedhashes.php?g=14712 new file mode 100644 index 0000000..56469b7 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14712 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6a8a26aacc21a800816b8ed706c85a5e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14744 b/gamelists/psx/linkedhashes.php?g=14744 new file mode 100644 index 0000000..db35383 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14744 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b46358e11d0ce90d68cb9b47164a46db


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14745 b/gamelists/psx/linkedhashes.php?g=14745 new file mode 100644 index 0000000..cd02bdf --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14745 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cb7813a32c27d62146825a461554daf4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=14746 b/gamelists/psx/linkedhashes.php?g=14746 new file mode 100644 index 0000000..ff541b2 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=14746 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ba1b387555f32f07eb3aaee7290320bc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=15616 b/gamelists/psx/linkedhashes.php?g=15616 new file mode 100644 index 0000000..a30ce5b --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=15616 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1014767c52abf661a12cec88a70ac7e4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=15634 b/gamelists/psx/linkedhashes.php?g=15634 new file mode 100644 index 0000000..d13d5ef --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=15634 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 79c653243266254c78a935cbaf43ad73


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=15645 b/gamelists/psx/linkedhashes.php?g=15645 new file mode 100644 index 0000000..65cdb41 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=15645 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 71ca9b37fa2bd9a328fb60cae9881346


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=15691 b/gamelists/psx/linkedhashes.php?g=15691 new file mode 100644 index 0000000..1ae299f --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=15691 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 217834036a1e44dfbbb6bbd135717692


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=15717 b/gamelists/psx/linkedhashes.php?g=15717 new file mode 100644 index 0000000..712205f --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=15717 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 855ee5806cacf8cf8dabf3a43b7b3e1a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=15919 b/gamelists/psx/linkedhashes.php?g=15919 new file mode 100644 index 0000000..12a99a9 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=15919 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a6787f2f6de9c8719ac8fa159858c520


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=15924 b/gamelists/psx/linkedhashes.php?g=15924 new file mode 100644 index 0000000..ad19df1 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=15924 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3253bc61b5fa3cf26335ceb201cba9a0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=15934 b/gamelists/psx/linkedhashes.php?g=15934 new file mode 100644 index 0000000..4e25f9b --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=15934 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 67e243f7ed5d20c45cf87dfc593ff4d0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=15973 b/gamelists/psx/linkedhashes.php?g=15973 new file mode 100644 index 0000000..538a187 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=15973 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 20dd7c902595f57649bf89270f661b2c
  • fd09a47e4d7098a8e0b8db76aeeb0e27


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=15975 b/gamelists/psx/linkedhashes.php?g=15975 new file mode 100644 index 0000000..0a1c06e --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=15975 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • fe683044d0bed45aa3a0c5d0e20cb672


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=15976 b/gamelists/psx/linkedhashes.php?g=15976 new file mode 100644 index 0000000..70829a4 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=15976 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f7b234f68ed6d3a636b9d8f08910e00a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=15982 b/gamelists/psx/linkedhashes.php?g=15982 new file mode 100644 index 0000000..4c9e530 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=15982 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 474a52fa720f888c5d4a245f2a368e10


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=15985 b/gamelists/psx/linkedhashes.php?g=15985 new file mode 100644 index 0000000..2f114e5 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=15985 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 74447450c0658ec8a499b4dfde93a2dd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16072 b/gamelists/psx/linkedhashes.php?g=16072 new file mode 100644 index 0000000..3610b53 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16072 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c15b5434fe99dd753d9aced83a60aace


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16073 b/gamelists/psx/linkedhashes.php?g=16073 new file mode 100644 index 0000000..95c2f4b --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16073 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c36da7ccadfed7c2906751c37730fad3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16074 b/gamelists/psx/linkedhashes.php?g=16074 new file mode 100644 index 0000000..64d98a4 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16074 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c761af0e56ad51467b485a75f69803e1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16075 b/gamelists/psx/linkedhashes.php?g=16075 new file mode 100644 index 0000000..4d51a2f --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16075 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • dbaf1d45f56a80725c44b69caf90c0b9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16076 b/gamelists/psx/linkedhashes.php?g=16076 new file mode 100644 index 0000000..c9c25fe --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16076 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 976a954a6c946fe7da48e333d3919943


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16077 b/gamelists/psx/linkedhashes.php?g=16077 new file mode 100644 index 0000000..8fbabfa --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16077 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 63fbe76c966ff535c1aa30afcf139940


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16078 b/gamelists/psx/linkedhashes.php?g=16078 new file mode 100644 index 0000000..eee6fe0 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16078 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 298d6fdb1c424eff2b2b677a67e420bb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16079 b/gamelists/psx/linkedhashes.php?g=16079 new file mode 100644 index 0000000..0c1583d --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16079 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • fa570d102f0b4cf0c47ea838dd51c03e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16123 b/gamelists/psx/linkedhashes.php?g=16123 new file mode 100644 index 0000000..a421552 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16123 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 626fcae1b33eb278b0039001da230da4
  • a01cbe5410b71c90fb10273022436021


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16124 b/gamelists/psx/linkedhashes.php?g=16124 new file mode 100644 index 0000000..9c06b69 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16124 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e16136324fd14ca2f9edd81fb4ee6441


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16192 b/gamelists/psx/linkedhashes.php?g=16192 new file mode 100644 index 0000000..4a05486 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16192 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ecfb08e6dc428ce81e02a1b757021aff


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16221 b/gamelists/psx/linkedhashes.php?g=16221 new file mode 100644 index 0000000..2257f66 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16221 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • fc8b8a7d026ceb039849d24233f48a32


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16225 b/gamelists/psx/linkedhashes.php?g=16225 new file mode 100644 index 0000000..c3a9cf1 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16225 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • eb383aa6b826e482b79821759e4b238e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16230 b/gamelists/psx/linkedhashes.php?g=16230 new file mode 100644 index 0000000..5e55f8f --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16230 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3dc5cbddfddfc05e6f6d39598a287371


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16246 b/gamelists/psx/linkedhashes.php?g=16246 new file mode 100644 index 0000000..9cc4f1d --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16246 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0dee6719816698891fc0decf9bde0c6c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16257 b/gamelists/psx/linkedhashes.php?g=16257 new file mode 100644 index 0000000..8a89fb8 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16257 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ced0018e86ab4286c1b902499b364410


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16327 b/gamelists/psx/linkedhashes.php?g=16327 new file mode 100644 index 0000000..5fc27bb --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16327 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 621e3af075ae7fdf60c44f58b2586f1f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16378 b/gamelists/psx/linkedhashes.php?g=16378 new file mode 100644 index 0000000..0256621 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16378 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cb6a4d34a3801f12ff8c0ea82ff1476a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16379 b/gamelists/psx/linkedhashes.php?g=16379 new file mode 100644 index 0000000..1de2555 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16379 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 17e635e4f67d2d37409fb2190d506bb7
  • 1b97c981899f6a3a998e41cefdc57027


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16511 b/gamelists/psx/linkedhashes.php?g=16511 new file mode 100644 index 0000000..dcad75d --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16511 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7481ec493119e18c1ece30132d00aef7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16519 b/gamelists/psx/linkedhashes.php?g=16519 new file mode 100644 index 0000000..fc129c0 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16519 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2470c061c1333c42a0d8d1467f7ef75c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16544 b/gamelists/psx/linkedhashes.php?g=16544 new file mode 100644 index 0000000..2f52286 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16544 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6ce1458f5aecbe5af7906c0311dc75dc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16557 b/gamelists/psx/linkedhashes.php?g=16557 new file mode 100644 index 0000000..d9a0e32 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16557 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • aaf7dcfa2bddb90dd7948f0b96cb5a4d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16559 b/gamelists/psx/linkedhashes.php?g=16559 new file mode 100644 index 0000000..05e4efd --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16559 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5c7536dd77e4a4ec2c35f895ab261811
  • 9d140ac4b06b09241729ba48ee0e2988


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16563 b/gamelists/psx/linkedhashes.php?g=16563 new file mode 100644 index 0000000..015d4c0 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16563 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6342ae70849fc9be2bf7f6529ddceec9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=16671 b/gamelists/psx/linkedhashes.php?g=16671 new file mode 100644 index 0000000..059466b --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=16671 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bab2493e313554ad374250d6571e7595


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=17073 b/gamelists/psx/linkedhashes.php?g=17073 new file mode 100644 index 0000000..4647405 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=17073 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 3c49bf7386d2c16dc13e04fd87324c20
  • 53e31e5752a951424edfe8ddd2d3e559
  • 5725a8d150de8a79d9d84682d417e9a5
  • 71e61ac890e41fdaaaeb329be9654e33
  • 8d0bca4533c10ddcecaa00bde897f45e
  • fa7ec3b370b14f82d4ba7805d83f7ab9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=17074 b/gamelists/psx/linkedhashes.php?g=17074 new file mode 100644 index 0000000..712598e --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=17074 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 12 unique ROM(s) registered for it with the following MD5s:

  • 252b31b43433aeef4cdfa8c54295a898
  • 352e0afb3bb6f51120e76b712a73d771
  • 56630effc7214d1165c2847776847c79
  • 8afa9b551bb84c92437d4249f8090ea0
  • 8cfe28cb3b652b86a33a3c1b8d509985
  • 98fab05dec2a204009c1aafabaf3be3b
  • a9859bfabe58ac798afd355eedb60631
  • b9716ea8dd601d84c0feb798583e73c4
  • bf5e86289c73ae40961f929d739e660a
  • cbf97b67f8c228257be0b03dcc68e90a
  • dc0fdcdb7894287f9778ed3e9ef10ac8
  • f4ecea185671315836d37313c57db1d8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=2163 b/gamelists/psx/linkedhashes.php?g=2163 new file mode 100644 index 0000000..bd03e86 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=2163 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3e47e2702013703f52ca82f3cb302a00


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=2690 b/gamelists/psx/linkedhashes.php?g=2690 new file mode 100644 index 0000000..26fcdb5 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=2690 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 371782d4f3344a507038b899f5c47f39
  • 46e4bd16c0279158c94700c3163c106d
  • 6be82ef8cc2865197ae0a4804111a241
  • f9c8b4bb2d2125a38887b4b1ed4ee10c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=2703 b/gamelists/psx/linkedhashes.php?g=2703 new file mode 100644 index 0000000..5d697c7 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=2703 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 0d44dd2dd5b93df58d6a2d4aefd3138b
  • 154e3396e0a5a1b81f31b1325341fb84
  • 37fa2089f409caceadc86873b4f9f99f
  • e19b0fbc7143df3d8191505509cc0135


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=2873 b/gamelists/psx/linkedhashes.php?g=2873 new file mode 100644 index 0000000..cf62521 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=2873 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1d3ea7b437bea2420cb6e1b9462ea345


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=3051 b/gamelists/psx/linkedhashes.php?g=3051 new file mode 100644 index 0000000..2444277 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=3051 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 123df1e98a3a48a4a8bbe605d44b66d7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=3145 b/gamelists/psx/linkedhashes.php?g=3145 new file mode 100644 index 0000000..b3b3905 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=3145 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f1351e7e4bd0f9ee2c921826e2107a91


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=3481 b/gamelists/psx/linkedhashes.php?g=3481 new file mode 100644 index 0000000..f5737f6 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=3481 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d2ebeb76bc0c162cd5febfd614d636a2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=3595 b/gamelists/psx/linkedhashes.php?g=3595 new file mode 100644 index 0000000..d37b56a --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=3595 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f0cdc9dff95d72fec777a86dd255c690


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=3941 b/gamelists/psx/linkedhashes.php?g=3941 new file mode 100644 index 0000000..124ee03 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=3941 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 318fd7d2a938fd77ec2e89fe15f3efb4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=5332 b/gamelists/psx/linkedhashes.php?g=5332 new file mode 100644 index 0000000..8f34807 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=5332 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 309e3f318b930369594fa43cbf6e1b19


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=5721 b/gamelists/psx/linkedhashes.php?g=5721 new file mode 100644 index 0000000..e467558 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=5721 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c3a6487a0475c96ae5293233dfcd05ba


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=5927 b/gamelists/psx/linkedhashes.php?g=5927 new file mode 100644 index 0000000..2c6a8c5 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=5927 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 94e9de993eeda66641a9fea738a07d7f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=6294 b/gamelists/psx/linkedhashes.php?g=6294 new file mode 100644 index 0000000..b0bac46 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=6294 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 36fa87f9779d09de561af1cfd8d0f9b8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=6766 b/gamelists/psx/linkedhashes.php?g=6766 new file mode 100644 index 0000000..059a8ab --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=6766 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5dea2e44ddbaade3b3858c14cf887287
  • 839a7345eb9b1c7606426603ed43084d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=6808 b/gamelists/psx/linkedhashes.php?g=6808 new file mode 100644 index 0000000..0db5569 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=6808 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c2814b741f8ec561fd344e1523b29960


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=7364 b/gamelists/psx/linkedhashes.php?g=7364 new file mode 100644 index 0000000..b352cfc --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=7364 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e7dd7da9fe1b8db6370ef88b3cba3afe


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=823 b/gamelists/psx/linkedhashes.php?g=823 new file mode 100644 index 0000000..a1209f4 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=823 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c2c5e81becdb0c93e96456efae8d95e9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=824 b/gamelists/psx/linkedhashes.php?g=824 new file mode 100644 index 0000000..e80a748 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=824 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 186c0d11694167c739cbbbe0df33669f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=826 b/gamelists/psx/linkedhashes.php?g=826 new file mode 100644 index 0000000..1ce2f29 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=826 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 00b93b848effbecf9c519ffec3bdf0e3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=8288 b/gamelists/psx/linkedhashes.php?g=8288 new file mode 100644 index 0000000..e1337e5 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=8288 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e1ff775a5a5ec3d49eda5a28c9c63421


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=836 b/gamelists/psx/linkedhashes.php?g=836 new file mode 100644 index 0000000..086269f --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=836 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 47c0e60ca708412509d1bd36656ea6f9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=8422 b/gamelists/psx/linkedhashes.php?g=8422 new file mode 100644 index 0000000..e14e69b --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=8422 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d382d80f73cdd6518816427f2965a4b9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=8611 b/gamelists/psx/linkedhashes.php?g=8611 new file mode 100644 index 0000000..836f3ea --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=8611 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7bf33002d9614795686ea72e8f66f395


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=8876 b/gamelists/psx/linkedhashes.php?g=8876 new file mode 100644 index 0000000..e4810dc --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=8876 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 13d1301bf01065b8cc584a4b42982de7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=9121 b/gamelists/psx/linkedhashes.php?g=9121 new file mode 100644 index 0000000..7b5cb92 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=9121 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ac66e45e5d22bd1ae6b037141c270bf2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=9123 b/gamelists/psx/linkedhashes.php?g=9123 new file mode 100644 index 0000000..9992976 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=9123 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a041f7b95190535bb2719036bed6b252


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=9241 b/gamelists/psx/linkedhashes.php?g=9241 new file mode 100644 index 0000000..2ebd916 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=9241 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a310ddd1a4517a74de8f05cf9e8cd50f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=9272 b/gamelists/psx/linkedhashes.php?g=9272 new file mode 100644 index 0000000..2ba4558 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=9272 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bd484a01ccd716bb5ce756da0b3edd31


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=9279 b/gamelists/psx/linkedhashes.php?g=9279 new file mode 100644 index 0000000..07f9146 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=9279 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 47ca165a6cc64759935847d5954c2458


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=9409 b/gamelists/psx/linkedhashes.php?g=9409 new file mode 100644 index 0000000..64465f3 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=9409 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 17be226a480083975836b848cbc0cda3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=9420 b/gamelists/psx/linkedhashes.php?g=9420 new file mode 100644 index 0000000..7ef2432 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=9420 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1ab68c23886379fdeead9dc85aa9edfd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=9427 b/gamelists/psx/linkedhashes.php?g=9427 new file mode 100644 index 0000000..20a8318 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=9427 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 286ced21529d4057b34102880569e2ab


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=9560 b/gamelists/psx/linkedhashes.php?g=9560 new file mode 100644 index 0000000..72d0abe --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=9560 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ef1fcf4f07a26200624ab9c320b8bb0b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=9691 b/gamelists/psx/linkedhashes.php?g=9691 new file mode 100644 index 0000000..b51eae0 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=9691 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • deae8f7792dbd07867cb5bf2b25173a6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=9733 b/gamelists/psx/linkedhashes.php?g=9733 new file mode 100644 index 0000000..27e426d --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=9733 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b8a5769a2cebce2c410220b829b7f901


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=9873 b/gamelists/psx/linkedhashes.php?g=9873 new file mode 100644 index 0000000..3aa6601 --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=9873 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7048d7c70f31123f14dc1fe245a19852


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=9875 b/gamelists/psx/linkedhashes.php?g=9875 new file mode 100644 index 0000000..0e632ab --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=9875 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c1ade5468b238380c981bc5a0f618609


+
+
+
+ \ No newline at end of file diff --git a/gamelists/psx/linkedhashes.php?g=9926 b/gamelists/psx/linkedhashes.php?g=9926 new file mode 100644 index 0000000..f61126b --- /dev/null +++ b/gamelists/psx/linkedhashes.php?g=9926 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • dbfa047bf4b21285e8afc5b0db715464


+
+
+
+ \ No newline at end of file diff --git a/gamelists/sega32x.html b/gamelists/sega32x.html new file mode 100644 index 0000000..fa4fb7e --- /dev/null +++ b/gamelists/sega32x.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games 32X - RetroAchievements +
+
+
+ +
+

32X

TitleAchievementsPointsLeaderboards
19270 (897)
Totals: 1 games19270 (897)0

+
+
+
+
+ \ No newline at end of file diff --git a/gamelists/sega32x/linkedhashes.php?g=10023 b/gamelists/sega32x/linkedhashes.php?g=10023 new file mode 100644 index 0000000..8ef79d0 --- /dev/null +++ b/gamelists/sega32x/linkedhashes.php?g=10023 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 47b1095e68b053125cd2cd5b1ac4eb50


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segacd.html b/gamelists/segacd.html new file mode 100644 index 0000000..deb20b8 --- /dev/null +++ b/gamelists/segacd.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games Sega CD - RetroAchievements +
+
+ +
+
+ \ No newline at end of file diff --git a/gamelists/segacd/linkedhashes.php?g=10061 b/gamelists/segacd/linkedhashes.php?g=10061 new file mode 100644 index 0000000..c1dc175 --- /dev/null +++ b/gamelists/segacd/linkedhashes.php?g=10061 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 8ed2c4e438e1ce4019e186120aa77840
  • e2e318720feab6ea25aec8d782e59985


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segacd/linkedhashes.php?g=10062 b/gamelists/segacd/linkedhashes.php?g=10062 new file mode 100644 index 0000000..e8306c4 --- /dev/null +++ b/gamelists/segacd/linkedhashes.php?g=10062 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 204f8d81ecf13aa7dc75cbafaf4c4ca3
  • 9098e511e738cc6492989342562d36b6
  • a17215f3dafcc420ef25a1d1fc65c2e8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segacd/linkedhashes.php?g=10067 b/gamelists/segacd/linkedhashes.php?g=10067 new file mode 100644 index 0000000..2c22dbe --- /dev/null +++ b/gamelists/segacd/linkedhashes.php?g=10067 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 38318ed1f6f7732a3fa2495288f6da24


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segacd/linkedhashes.php?g=10084 b/gamelists/segacd/linkedhashes.php?g=10084 new file mode 100644 index 0000000..15f8fa5 --- /dev/null +++ b/gamelists/segacd/linkedhashes.php?g=10084 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9e155928a45983bb845f800ba6908f96


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segacd/linkedhashes.php?g=10096 b/gamelists/segacd/linkedhashes.php?g=10096 new file mode 100644 index 0000000..b79a226 --- /dev/null +++ b/gamelists/segacd/linkedhashes.php?g=10096 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3366c149ddd7b8266deb4a729e804118
  • b27c343ec2d3baba714a3667017c290c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segacd/linkedhashes.php?g=10569 b/gamelists/segacd/linkedhashes.php?g=10569 new file mode 100644 index 0000000..a0ba4cd --- /dev/null +++ b/gamelists/segacd/linkedhashes.php?g=10569 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3d13caa66daad4cc3fffa47f066710a5
  • bcaf0c9c6d7a05d3b933e1ba2f90a795


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segacd/linkedhashes.php?g=10583 b/gamelists/segacd/linkedhashes.php?g=10583 new file mode 100644 index 0000000..ca1369f --- /dev/null +++ b/gamelists/segacd/linkedhashes.php?g=10583 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e3e0b93a9e1a945fad7b99a520cd0cbd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segacd/linkedhashes.php?g=12872 b/gamelists/segacd/linkedhashes.php?g=12872 new file mode 100644 index 0000000..f191f06 --- /dev/null +++ b/gamelists/segacd/linkedhashes.php?g=12872 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 260a58e3f33816178e0a9a632af9d188


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segacd/linkedhashes.php?g=12875 b/gamelists/segacd/linkedhashes.php?g=12875 new file mode 100644 index 0000000..f9da380 --- /dev/null +++ b/gamelists/segacd/linkedhashes.php?g=12875 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5f51a8eb2e5d1aa016d7b995e964d84f
  • b19158cea7aa429b4a2fba9832050954


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segacd/linkedhashes.php?g=14706 b/gamelists/segacd/linkedhashes.php?g=14706 new file mode 100644 index 0000000..736a494 --- /dev/null +++ b/gamelists/segacd/linkedhashes.php?g=14706 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e6f4bda45b2e75f6d860ba9e7a8f5531


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segacd/linkedhashes.php?g=14768 b/gamelists/segacd/linkedhashes.php?g=14768 new file mode 100644 index 0000000..246e308 --- /dev/null +++ b/gamelists/segacd/linkedhashes.php?g=14768 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 85c428698e2155b5c27d33726a829253


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segacd/linkedhashes.php?g=14852 b/gamelists/segacd/linkedhashes.php?g=14852 new file mode 100644 index 0000000..5dcc11f --- /dev/null +++ b/gamelists/segacd/linkedhashes.php?g=14852 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 03cc7766d9738f00820f52b7563a8dd5
  • 2ffdb88d60ddd792cb3469b87419e0ff
  • dde3d8f861c8e1a65c737ab454d13be4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segacd/linkedhashes.php?g=15564 b/gamelists/segacd/linkedhashes.php?g=15564 new file mode 100644 index 0000000..65e47bf --- /dev/null +++ b/gamelists/segacd/linkedhashes.php?g=15564 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 211ade60b28992129345fa065dd869c1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segacd/linkedhashes.php?g=15705 b/gamelists/segacd/linkedhashes.php?g=15705 new file mode 100644 index 0000000..319f6e3 --- /dev/null +++ b/gamelists/segacd/linkedhashes.php?g=15705 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 04521eb3a053f158715230281083e812
  • a4b82ee01e942c71bd45c890063fe808


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segacd/linkedhashes.php?g=16006 b/gamelists/segacd/linkedhashes.php?g=16006 new file mode 100644 index 0000000..6391090 --- /dev/null +++ b/gamelists/segacd/linkedhashes.php?g=16006 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 88e929c3c9db840c2f784d16398651d8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segacd/linkedhashes.php?g=17075 b/gamelists/segacd/linkedhashes.php?g=17075 new file mode 100644 index 0000000..ac7b146 --- /dev/null +++ b/gamelists/segacd/linkedhashes.php?g=17075 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 11ed30d2074ccd20ac6187d8271ca6e8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segasaturn.html b/gamelists/segasaturn.html new file mode 100644 index 0000000..ffd4bb8 --- /dev/null +++ b/gamelists/segasaturn.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games Saturn - RetroAchievements +
+
+ +
+
+ \ No newline at end of file diff --git a/gamelists/segasaturn/linkedhashes.php?g=10234 b/gamelists/segasaturn/linkedhashes.php?g=10234 new file mode 100644 index 0000000..0f6812b --- /dev/null +++ b/gamelists/segasaturn/linkedhashes.php?g=10234 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • dad4e684cd0c37efd0929e42f505415d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segasaturn/linkedhashes.php?g=14504 b/gamelists/segasaturn/linkedhashes.php?g=14504 new file mode 100644 index 0000000..ac80198 --- /dev/null +++ b/gamelists/segasaturn/linkedhashes.php?g=14504 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cb922187592d676e4905af171b6598f2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segasaturn/linkedhashes.php?g=14505 b/gamelists/segasaturn/linkedhashes.php?g=14505 new file mode 100644 index 0000000..aa9f72d --- /dev/null +++ b/gamelists/segasaturn/linkedhashes.php?g=14505 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e1a69311509e6afaace2575eb2fe0fe9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segasaturn/linkedhashes.php?g=14506 b/gamelists/segasaturn/linkedhashes.php?g=14506 new file mode 100644 index 0000000..c01fcf5 --- /dev/null +++ b/gamelists/segasaturn/linkedhashes.php?g=14506 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 666d189c39e1a2ebc3f7261b330e67d3
  • 669e1e85e6c8d8fb7f6b0529dede4192
  • b88d6fbea9087b57afa77502ed03a1bf
  • ce8b703005d83989e9e4db2c2508411f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segasaturn/linkedhashes.php?g=14509 b/gamelists/segasaturn/linkedhashes.php?g=14509 new file mode 100644 index 0000000..732511a --- /dev/null +++ b/gamelists/segasaturn/linkedhashes.php?g=14509 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 96fb18cbfed4447c30fb1ff3ff64557b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segasaturn/linkedhashes.php?g=14510 b/gamelists/segasaturn/linkedhashes.php?g=14510 new file mode 100644 index 0000000..8cc1f6f --- /dev/null +++ b/gamelists/segasaturn/linkedhashes.php?g=14510 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f0f679839738044dcaebc3bde3e28925


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segasaturn/linkedhashes.php?g=14514 b/gamelists/segasaturn/linkedhashes.php?g=14514 new file mode 100644 index 0000000..97c9f71 --- /dev/null +++ b/gamelists/segasaturn/linkedhashes.php?g=14514 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b38060f45ab282ea629c91d630f81422


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segasaturn/linkedhashes.php?g=14541 b/gamelists/segasaturn/linkedhashes.php?g=14541 new file mode 100644 index 0000000..31d1aac --- /dev/null +++ b/gamelists/segasaturn/linkedhashes.php?g=14541 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 10 unique ROM(s) registered for it with the following MD5s:

  • 0edd2b16ecf8f7440eb88821872096b4
  • 124c3472536ac3992eae135810c41f83
  • 4eeaffbd2f50b15c43b0888191f5cdd0
  • 52bc1202beb1c29434ab248b56aaefd6
  • 7a1e6c35721bcdac33b147b0213c1f0d
  • 91ed28554cae7e90d6d3582e9f878ebd
  • 9853f18eba1fe90b2192587e89581e42
  • b4d3f8bc672827c63bb1d8ade52b26f3
  • bbd7eab9a04a9a3534e8eb87d5ff55a6
  • c26514068bb3eb9f0cd11d1444bad004


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segasaturn/linkedhashes.php?g=14544 b/gamelists/segasaturn/linkedhashes.php?g=14544 new file mode 100644 index 0000000..f78521d --- /dev/null +++ b/gamelists/segasaturn/linkedhashes.php?g=14544 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 5a522978f5d362e7e51a55c0981d5f01
  • afc8caec31ce643c35b938135746f9d7
  • c0d0efd675b0e77731b38a66f5425a66


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segasaturn/linkedhashes.php?g=14545 b/gamelists/segasaturn/linkedhashes.php?g=14545 new file mode 100644 index 0000000..af91533 --- /dev/null +++ b/gamelists/segasaturn/linkedhashes.php?g=14545 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 07c3e8ef54fb3279b52945c9888e7444
  • 909e18d343d9564da0318c4fb66695ed
  • 91616ea99bd661ef9a785694de2f7d68


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segasaturn/linkedhashes.php?g=14548 b/gamelists/segasaturn/linkedhashes.php?g=14548 new file mode 100644 index 0000000..fd12273 --- /dev/null +++ b/gamelists/segasaturn/linkedhashes.php?g=14548 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4cc79d222e326fe2ba906930673c7466
  • 9b4fffb94f0b07db06ab778b41506a8a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segasaturn/linkedhashes.php?g=14549 b/gamelists/segasaturn/linkedhashes.php?g=14549 new file mode 100644 index 0000000..95cc48c --- /dev/null +++ b/gamelists/segasaturn/linkedhashes.php?g=14549 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1ce911e19fedb4565fe29d1ea2005a26


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segasaturn/linkedhashes.php?g=14734 b/gamelists/segasaturn/linkedhashes.php?g=14734 new file mode 100644 index 0000000..ec98181 --- /dev/null +++ b/gamelists/segasaturn/linkedhashes.php?g=14734 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • eb2f9a20fb7fd30fae00ba9fe1592fd2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segasaturn/linkedhashes.php?g=14737 b/gamelists/segasaturn/linkedhashes.php?g=14737 new file mode 100644 index 0000000..85015bc --- /dev/null +++ b/gamelists/segasaturn/linkedhashes.php?g=14737 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3ce75a6ce82eab3c26f856a978be7896


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segasaturn/linkedhashes.php?g=14858 b/gamelists/segasaturn/linkedhashes.php?g=14858 new file mode 100644 index 0000000..9560d29 --- /dev/null +++ b/gamelists/segasaturn/linkedhashes.php?g=14858 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f7ddb753673e55b6b952da7f729e8e8c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segasaturn/linkedhashes.php?g=14859 b/gamelists/segasaturn/linkedhashes.php?g=14859 new file mode 100644 index 0000000..adab846 --- /dev/null +++ b/gamelists/segasaturn/linkedhashes.php?g=14859 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d8ad98ff399147de3e62ffff20a2bb13


+
+
+
+ \ No newline at end of file diff --git a/gamelists/segasaturn/linkedhashes.php?g=6122 b/gamelists/segasaturn/linkedhashes.php?g=6122 new file mode 100644 index 0000000..1a7ff42 --- /dev/null +++ b/gamelists/segasaturn/linkedhashes.php?g=6122 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c571e8b0d34cc86e24fb819e9908c95c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/sg1000.html b/gamelists/sg1000.html new file mode 100644 index 0000000..ae26983 --- /dev/null +++ b/gamelists/sg1000.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games SG-1000 - RetroAchievements +
+
+
+ + +
+
+
+ \ No newline at end of file diff --git a/gamelists/sg1000/linkedhashes.php?g=12363 b/gamelists/sg1000/linkedhashes.php?g=12363 new file mode 100644 index 0000000..17bfed9 --- /dev/null +++ b/gamelists/sg1000/linkedhashes.php?g=12363 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ac95c0655360f667e3ad705e2eb7367a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/sg1000/linkedhashes.php?g=12408 b/gamelists/sg1000/linkedhashes.php?g=12408 new file mode 100644 index 0000000..a98bea5 --- /dev/null +++ b/gamelists/sg1000/linkedhashes.php?g=12408 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 28d83150c298bcdae6aec51cc2c6975a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/sg1000/linkedhashes.php?g=13951 b/gamelists/sg1000/linkedhashes.php?g=13951 new file mode 100644 index 0000000..8fef97f --- /dev/null +++ b/gamelists/sg1000/linkedhashes.php?g=13951 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0528eed7e7ae46ec8298098f1a22d18f
  • 64d3cc8117292f6d5af8e1aad95bcb90


+
+
+
+ \ No newline at end of file diff --git a/gamelists/sg1000/linkedhashes.php?g=13991 b/gamelists/sg1000/linkedhashes.php?g=13991 new file mode 100644 index 0000000..34ae96d --- /dev/null +++ b/gamelists/sg1000/linkedhashes.php?g=13991 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 43c23a134aec3ab424405780ff729d54


+
+
+
+ \ No newline at end of file diff --git a/gamelists/sg1000/linkedhashes.php?g=13992 b/gamelists/sg1000/linkedhashes.php?g=13992 new file mode 100644 index 0000000..7405fc7 --- /dev/null +++ b/gamelists/sg1000/linkedhashes.php?g=13992 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e2619cf7c307ac1916c534519f6043d9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/sg1000/linkedhashes.php?g=14030 b/gamelists/sg1000/linkedhashes.php?g=14030 new file mode 100644 index 0000000..c9e1259 --- /dev/null +++ b/gamelists/sg1000/linkedhashes.php?g=14030 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7fe0bb81a812667f73a0ef5876cc30ac
  • e0321cd713ec1b48ff88f7df13e3ce28


+
+
+
+ \ No newline at end of file diff --git a/gamelists/sg1000/linkedhashes.php?g=14188 b/gamelists/sg1000/linkedhashes.php?g=14188 new file mode 100644 index 0000000..ade8b25 --- /dev/null +++ b/gamelists/sg1000/linkedhashes.php?g=14188 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3071f939aaa0911fc0907aae5daaa160


+
+
+
+ \ No newline at end of file diff --git a/gamelists/sg1000/linkedhashes.php?g=14474 b/gamelists/sg1000/linkedhashes.php?g=14474 new file mode 100644 index 0000000..de69585 --- /dev/null +++ b/gamelists/sg1000/linkedhashes.php?g=14474 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3bec2aa3d11a1d1e9b1de9dbef6b513c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes.html b/gamelists/snes.html new file mode 100644 index 0000000..48fbb3a --- /dev/null +++ b/gamelists/snes.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games SNES - RetroAchievements +
+
+
+ +
+

SNES

TitleAchievementsPointsLeaderboards
20220 (481)
34465 (1529)8
46415 (683)
57400 (1563)
46410 (1820)
27435 (4327)
18350 (781)12
40413 (1151)
42400 (675)
23310 (1018)
26345 (960)3
98650 (3595)
34400 (889)
45400 (1247)
60640 (4552)3
1690 (94)
8150 (539)
42310 (1375)
46770 (3285)
1501070 (1953)
771 (127)
45515 (3557)
15290 (794)
24120 (132)
22451 (1733)
23530 (3342)4
24320 (437)1
1070 (204)
40525 (1697)30
22350 (1020)4
18365 (736)5
16320 (885)
4989 (89)
29400 (1492)
40500 (970)1
26300 (1076)
19120 (141)
21220 (617)
17145 (335)
50425 (958)
61433 (568)
63625 (1294)
91550 (1008)
8130 (181)5
86875 (2607)2
57355 (950)4
31500 (2052)
27285 (734)1
52447 (2344)
30400 (1901)
20300 (902)
30400 (1285)
30540 (3619)1
1370 (133)
19125 (226)
36535 (4462)1
46500 (4437)3
77600 (2528)2
13398 (746)
23315 (531)
45390 (1856)3
38358 (914)
19215 (343)
10100 (272)
14220 (309)
30665 (5802)
34465 (1176)
26400 (1112)
28535 (11268)
655 (94)
56710 (5060)
18300 (593)
1060 (87)
42560 (3781)
40350 (596)1
33325 (938)
38446 (1776)6
46506 (2193)2
34540 (1554)4
38400 (3113)35
57550 (4971)
26425 (961)1
30400 (686)
39365 (596)
61400 (540)
68700 (1497)
100679 (1147)
70410 (667)
84490 (1288)
25400 (1928)
38560 (2218)2
59420 (2590)
87645 (2526)
36400 (7030)
47400 (3057)
33300 (971)
14285 (3531)15
19300 (497)
20380 (562)
38445 (654)
20400 (633)
21240 (317)2
130850 (1185)2
119825 (2010)2
101769 (5082)4
94356 (475)2
42511 (3135)
45651 (2186)3
59750 (5558)2
27388 (1532)
76565 (1826)12
112900 (4012)
1101063 (857)
16470 (6525)
34425 (1818)16
43428 (2159)12
13340 (1275)
1175 (191)
112910 (2555)
116900 (1470)1
31400 (1454)
64658 (5281)12
28150 (181)
33455 (1903)2
19115 (170)
42470 (2411)
32450 (5804)
28440 (1453)5
16170 (198)
64372 (722)
56700 (6094)5
66680 (1909)
45460 (1474)
50553 (1736)
53537 (3484)
80750 (2336)
53435 (946)
18120 (203)
36415 (5809)
83542 (4740)
71700 (3236)
30400 (2351)
21190 (291)
17270 (2215)
25387 (1048)5
46581 (2235)
33500 (3346)
655 (84)
12250 (564)
30400 (544)
775 (166)
26310 (698)
69583 (6367)
37525 (1477)2
28400 (578)2
1090 (224)
30460 (889)
35400 (3398)
37425 (2244)
16180 (495)
44435 (5211)1
21200 (1894)
25400 (516)
37400 (710)
21485 (599)
21200 (288)
17317 (954)
16150 (405)2
22350 (1719)
17109 (560)
30450 (1625)
531126 (12193)
46467 (1388)
56525 (2206)3
37400 (1004)
58440 (2558)5
26365 (738)
50577 (9235)1
32377 (3288)1
33420 (1850)
25440 (2499)
82420 (3082)
76400 (2417)
15270 (532)
27420 (1713)1
30230 (649)
55435 (1197)12
93400 (935)
29160 (430)1
20300 (674)
35444 (1893)
103587 (1274)
20175 (203)
25400 (1035)
24250 (526)
30300 (711)
64550 (2987)
57400 (1998)
22248 (494)2
71565 (3152)
38420 (882)
120385 (2266)4
36224 (312)
1660 (73)1
1749 (49)
1454 (54)
6150 (51)
77473 (865)
37128 (155)
84700 (1799)
26460 (2818)9
61642 (18005)7
45390 (965)
42440 (865)
56536 (1678)
54505 (938)
61435 (933)
36400 (1895)
31365 (424)
25320 (1660)
36475 (3425)
20245 (654)
40515 (1717)2
38382 (874)
33234 (613)
14280 (568)
21310 (881)1
33200 (278)
29406 (928)
56572 (1381)
29435 (685)2
33485 (863)
301100 (3442)
42650 (1259)
20140 (216)
34395 (957)
24340 (2284)
19225 (318)
89790 (1061)
31399 (5640)
53404 (2756)
100980 (1486)
85400 (2546)
73400 (1952)32
541255 (7621)
23470 (2005)
35450 (2365)
16310 (1022)
30500 (641)
31325 (427)
32550 (661)
93725 (4608)
22392 (1239)
39475 (3459)100
11135 (243)
8100 (163)
26390 (1379)
63660 (2040)1
70855 (9116)
15385 (647)
881000 (9973)14
27174 (235)
27174 (196)
27174 (181)
27174 (178)
27174 (181)1
27174 (182)
27174 (186)
27174 (200)
80400 (1046)
31360 (2677)1
37245 (2189)3
21365 (667)
58400 (6507)
52400 (2361)4
32462 (2542)13
85740 (1693)
39380 (753)1
18281 (1268)
24230 (249)
55402 (892)1
40480 (2361)
30290 (1132)
30410 (1240)
10135 (352)
19235 (662)
43400 (2317)129
64400 (2635)39
73740 (1231)
46415 (502)
25430 (924)
31445 (1174)6
1045 (46)
34425 (1573)
13115 (278)
555 (62)
555 (81)
26427 (1765)2
120900 (2016)
35520 (2705)
37449 (1261)
80400 (856)
22426 (1501)
28400 (654)
14330 (558)
42547 (8632)
22540 (2230)2
39400 (1383)
90500 (1454)
55415 (839)1
47535 (2592)
85650 (2470)
28340 (502)
75600 (1554)1
26400 (447)
31369 (2423)
17300 (1685)
25355 (954)
69600 (3072)
89750 (7852)
71600 (2659)
38452 (2684)
21150 (231)
34400 (2112)3
26425 (1465)
46405 (4149)
38490 (16841)
29305 (1639)
10210 (596)
81550 (1238)
67435 (1011)
28232 (283)
40680 (7003)
1211000 (5265)22
40615 (5685)
30270 (1262)
39460 (2601)
44535 (4279)6
11100 (144)1
67600 (2852)
35355 (785)
31413 (1881)
97612 (4986)
16370 (1924)1
31450 (1196)
21445 (1469)8
41590 (3690)
13400 (2592)
49345 (486)
68700 (11491)
36425 (1697)1
26280 (372)
32405 (795)
45445 (1803)
46415 (1042)
23240 (970)
20278 (2811)
28315 (698)
37570 (4163)2
28482 (7160)2
14280 (711)
29510 (1976)1
50610 (2944)35
40500 (1712)7
106919 (4892)
47570 (3699)20
63563 (2085)5
67681 (9507)8
33435 (1416)
52487 (2052)5
37500 (2037)3
37410 (1575)6
26510 (2056)36
39400 (3627)
40725 (3856)4
56660 (2150)
22305 (3066)
31400 (3258)
34400 (2349)
46425 (4457)
36620 (2351)
49600 (1658)
45400 (8811)
24350 (1577)
26450 (1467)
101896 (4998)24
28400 (1385)205
35415 (2944)
29335 (1184)
76625 (1767)
15177 (207)
80615 (923)
23420 (1782)3
15165 (184)
70700 (1954)2
99483 (1064)4
39299 (4759)
50425 (1010)2
23400 (951)
73400 (1118)
820 (20)
26390 (2645)
34400 (1221)
24450 (1272)
59400 (3948)
30400 (2210)
33445 (1264)
46420 (2382)32
70416 (871)16
40425 (991)47
31280 (952)
100675 (1945)1
46200 (345)
28465 (956)
45400 (11262)
67838 (7142)50
143750 (1713)
13185 (260)1
24320 (1029)
24357 (2885)
50565 (1513)
41379 (2902)
17205 (779)
16400 (2628)
13140 (238)
51700 (1976)
87560 (2241)3
45500 (914)
35400 (615)
61600 (6873)
43360 (2344)2
50713 (4240)
1255 (55)
22250 (297)
45380 (481)4
26400 (439)
1680 (86)
770 (100)
28430 (820)
21300 (484)
39215 (948)
25205 (306)
46370 (568)
39500 (1426)
32475 (1663)
765 (118)
73500 (3973)1
22440 (308)
15600 (701)
50400 (637)
23570 (741)1
35635 (761)
23400 (495)1
851365 (41009)
7325 (445)
19455 (827)
36216 (236)
80394 (655)
50455 (602)5
21150 (163)
30395 (759)
13315 (615)
51400 (830)
42330 (541)
18295 (343)
19150 (152)
28550 (1403)
1275 (88)
20111 (113)
33271 (284)
27285 (323)
15160 (183)
32310 (355)
9130 (145)
16135 (163)
52528 (1048)
44335 (908)21
610 (10)
33293 (331)
33445 (697)
22395 (679)
79822 (2296)
91599 (1377)
17125 (139)
24365 (918)
21395 (682)
41400 (795)
82815 (12146)
16186 (217)
20200 (229)
32195 (244)
31251 (314)
46400 (710)
38540 (750)
881077 (1398)
39440 (1710)
25320 (361)
58512 (2014)
45389 (812)
21245 (254)
21315 (320)
14150 (151)
886 (87)
7500 (525)
34340 (431)
30385 (653)
45410 (593)32
30550 (887)
50400 (499)
24240 (247)
29187 (187)
29395 (806)
77603 (1473)
38330 (533)
13150 (167)
83485 (752)
42360 (488)
26200 (294)1
26395 (975)
27400 (589)
46320 (406)21
33395 (1134)
44458 (543)3
35188 (241)
40680 (2772)
19240 (268)
34332 (517)
16220 (258)11
58466 (629)1
30215 (260)
49425 (687)
34400 (740)
37460 (659)
61695 (1480)
38400 (1011)
21160 (604)
73400 (967)
39195 (197)
23240 (280)
76350 (526)7
57373 (562)
31400 (1260)
22390 (604)
727 (28)
825 (27)
71666 (5504)
27405 (602)
41266 (283)
441000 (3735)20
22235 (243)
24290 (311)
15150 (154)
231000 (1431)5
18280 (309)
46400 (575)1
16182 (184)
13355 (512)
14162 (169)
15105 (107)
54400 (1703)
22215 (242)
13145 (146)
1050 (62)
20125 (217)4
1060 (165)
16200 (547)
40400 (610)
17115 (182)
1120 (20)1
1010 (10)
16187 (371)
1575 (77)
27420 (1139)
Totals: 573 games22352231041 (1014172)1364

+
+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1000 b/gamelists/snes/linkedhashes.php?g=1000 new file mode 100644 index 0000000..8046893 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1000 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9cc7336325379139afc58d12a776696a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1002 b/gamelists/snes/linkedhashes.php?g=1002 new file mode 100644 index 0000000..efeac78 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1002 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6808b453828d6a6f228e3225055df4c4
  • bc627db3e168a9f87c038d530825c994


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1003 b/gamelists/snes/linkedhashes.php?g=1003 new file mode 100644 index 0000000..3b6cc20 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1003 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 0113ea2e60f90bf1c79be5545cbd466d
  • 402347c45af9310afa944cd2b88722cd
  • 67e4617fc9c17572b7b27386a3f7e766
  • 7c6990bbacc9e3202ba39c8f37d0bdbf
  • dbd58a2c35e4cda603b6238cda0dc6a0
  • ef5177071bba689c0a90d2639854b7a5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1004 b/gamelists/snes/linkedhashes.php?g=1004 new file mode 100644 index 0000000..ccb0e6f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1004 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4bbaad6abdfc9f05d2d8dde47df8b15d
  • c909e6fcb5e8214a5aba163761c05d42


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1005 b/gamelists/snes/linkedhashes.php?g=1005 new file mode 100644 index 0000000..9114e96 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1005 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 0f1353cffeb2aa3e6557a369ef598e74
  • 1e414bc0432792cb5203a11ef37ee17f
  • 6efc477d6203ed2b3b9133c1cd9e9c5d
  • bf57e03293d2a09ece8a83177dd78a99
  • d7b17796c17749485feac614a2598344


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1012 b/gamelists/snes/linkedhashes.php?g=1012 new file mode 100644 index 0000000..45ff312 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1012 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • a5867837a80e91c4b65d9f2b2e801e2d
  • ad7349eb7afd3d809161ee70bd2c361d
  • d043ccc5b99bdafcdf26e4fe971ef910


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1013 b/gamelists/snes/linkedhashes.php?g=1013 new file mode 100644 index 0000000..409cff1 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1013 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 881d3772a3eb37a8a0fb254e940c6767


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1016 b/gamelists/snes/linkedhashes.php?g=1016 new file mode 100644 index 0000000..f891b45 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1016 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 39390dcffa6ad268a14d40d9ca4ffb2e
  • 44be7a129e29264657b9c33f6820d332
  • d3c46f884c50f50236639c5f6303eef7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1021 b/gamelists/snes/linkedhashes.php?g=1021 new file mode 100644 index 0000000..1a34565 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1021 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 8df2719b0c7c5a66a1e356c78b31652d
  • 9e886f686da276b00c4671967d396a79


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1022 b/gamelists/snes/linkedhashes.php?g=1022 new file mode 100644 index 0000000..0ab10a6 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1022 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 44a7735d6dceed9fb4eab61113daa410
  • d4bc4f3cb46cc09d8db58f0ce0142646


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1025 b/gamelists/snes/linkedhashes.php?g=1025 new file mode 100644 index 0000000..6f20084 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1025 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1b1282421d39a473f634958c28dca0d4
  • 589f5449a76c4e8797abb0a663001542
  • b6630c4fee7a20414c4751bb7eb558c3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1029 b/gamelists/snes/linkedhashes.php?g=1029 new file mode 100644 index 0000000..5c6bec2 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1029 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 37aa5231c5576678b244fe913254f518


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1032 b/gamelists/snes/linkedhashes.php?g=1032 new file mode 100644 index 0000000..3566328 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1032 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bdfcd02f353bc9745dda4556fb7db08a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1033 b/gamelists/snes/linkedhashes.php?g=1033 new file mode 100644 index 0000000..96dbae4 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1033 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 6312f48f6fd194b7eeb1f948b1ece8c3
  • 6e42f4a35e90d7dbab12a8dc69beaf5d
  • f184e696c1fb1c984e530f504eebd234


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1034 b/gamelists/snes/linkedhashes.php?g=1034 new file mode 100644 index 0000000..dc534d4 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1034 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6fc7d9663c350799d8f0b6168691385a
  • c0a6ae7a3cff034232cb23d765bcb36d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1037 b/gamelists/snes/linkedhashes.php?g=1037 new file mode 100644 index 0000000..30b884e --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1037 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • c9b52f5fbd52c36076506c33ebf526cd
  • f478e1eddc87352ed35205d6cfe017ce


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1038 b/gamelists/snes/linkedhashes.php?g=1038 new file mode 100644 index 0000000..bbb1f29 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1038 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 0934878bb5ef33f25c1fcaba18a1105b
  • 33f0b1b8b0663fdb691f9d02c0f3f692
  • b78b3b12bb835ce4dca5a3c5db0bbc59
  • bcf52b016559d371eefcd216781f40cd
  • bf433b35bbf9fdf1373bf6999e09d9a8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1040 b/gamelists/snes/linkedhashes.php?g=1040 new file mode 100644 index 0000000..b8c5d31 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1040 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 8f78bae5a538946277c960f71fed904b
  • d56a5b300959ab7109e7d854c916fa49


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1041 b/gamelists/snes/linkedhashes.php?g=1041 new file mode 100644 index 0000000..4ac051a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1041 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f5889db38b2152fde80258c3a89f6a83


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1043 b/gamelists/snes/linkedhashes.php?g=1043 new file mode 100644 index 0000000..0bcb64b --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1043 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 87388c5a9ea98b215a29727dc4294c05


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1049 b/gamelists/snes/linkedhashes.php?g=1049 new file mode 100644 index 0000000..774d295 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1049 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 503965fc09952186f79dd89d730d8d7f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1057 b/gamelists/snes/linkedhashes.php?g=1057 new file mode 100644 index 0000000..d39eb7e --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1057 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4306e1dfa9d4ca381775b10322b6dc5f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1069 b/gamelists/snes/linkedhashes.php?g=1069 new file mode 100644 index 0000000..0b9058a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1069 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • af96904815cd2f8811bf25e7841b651a
  • e3b0efde9da342ea567a0647b162162f
  • eaeadf3718805132ac2348c6bc093563


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=10701 b/gamelists/snes/linkedhashes.php?g=10701 new file mode 100644 index 0000000..8df4200 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=10701 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0e5f788550ca1fad8d4e5034d9964307


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1076 b/gamelists/snes/linkedhashes.php?g=1076 new file mode 100644 index 0000000..60d57d8 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1076 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 8ab1fe6f37d3c826b01a09be6c36933b
  • f082072b16e7ed337503ec4df334171f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1077 b/gamelists/snes/linkedhashes.php?g=1077 new file mode 100644 index 0000000..5f2109d --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1077 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1603769868776e12bb9876f7fbeb3112
  • 27547be412e441cfc7ac11be3634805a
  • 7a5c2c67bfe548289794ea05d05771ff


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1081 b/gamelists/snes/linkedhashes.php?g=1081 new file mode 100644 index 0000000..eed7f9f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1081 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 8b8acdec1c2345477ddec5516413c2a1
  • eca6ce2559706e1ddfb23e933818a465


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1082 b/gamelists/snes/linkedhashes.php?g=1082 new file mode 100644 index 0000000..279b247 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1082 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5b795b62c101c12026257644fd813359
  • 630af84d172b4baae8b0e70c1e0ea793


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1089 b/gamelists/snes/linkedhashes.php?g=1089 new file mode 100644 index 0000000..de88562 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1089 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ed318ba5888f6e50851f166fee7023e2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1097 b/gamelists/snes/linkedhashes.php?g=1097 new file mode 100644 index 0000000..e32e563 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1097 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f0da10d1a7311ffdf1270dfb38ca3dbb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1099 b/gamelists/snes/linkedhashes.php?g=1099 new file mode 100644 index 0000000..b201d10 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1099 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 02cae4c360567cd228e4dc951be6cb85
  • 4f7dc927180e64c2722eeeb87f3ad8cb
  • 6afd4437a7b62528e0fff7a5bda5ef92
  • 6dc07497523535392d1141812835c1b8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1101 b/gamelists/snes/linkedhashes.php?g=1101 new file mode 100644 index 0000000..cf4f555 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1101 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 478a2723ff6db38428d9b26cf0d504bf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1102 b/gamelists/snes/linkedhashes.php?g=1102 new file mode 100644 index 0000000..c47aa4e --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1102 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 05d1da17d64cc727e5efaa4ecc72b4b3
  • 3cfa988d8b0bab8c04af70f24fb7ee90
  • b31405c70bd5113368076fadfa2872b8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=11021 b/gamelists/snes/linkedhashes.php?g=11021 new file mode 100644 index 0000000..df24f2d --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=11021 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 31e5dd5d182d4e82455fd0160f5f4017


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1103 b/gamelists/snes/linkedhashes.php?g=1103 new file mode 100644 index 0000000..b4c3121 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1103 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 37453d3e43601bc7c4b3c6fae4cb1397
  • be3e7907aebc9da95c061b9f45cfab59
  • e74e067787723bc54093a9c03f290e5d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1104 b/gamelists/snes/linkedhashes.php?g=1104 new file mode 100644 index 0000000..b83950c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1104 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6f9294b5f83d777def17a801bf02df01


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1109 b/gamelists/snes/linkedhashes.php?g=1109 new file mode 100644 index 0000000..9c251ea --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1109 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1b92a6e65433de62272d32aa3cf28e52


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1110 b/gamelists/snes/linkedhashes.php?g=1110 new file mode 100644 index 0000000..9fb61e5 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1110 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • fbe14d670f28fa5c67c00dc551204838


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1112 b/gamelists/snes/linkedhashes.php?g=1112 new file mode 100644 index 0000000..8753ffc --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1112 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 8eb86c3a88c4faa2cb17e53854f665e2
  • e16cb90295703d01771a87ea51f29ea0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1113 b/gamelists/snes/linkedhashes.php?g=1113 new file mode 100644 index 0000000..d9d15ae --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1113 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 6f49df735cd2cf9d351d549f1cbfdaa9
  • 8ffc8d34bc75bc049122894b4292eb85
  • abca51c8ed56d15aa25c8c3eebe5f65c
  • afb0ac757692243be9fe1725c98141db


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1116 b/gamelists/snes/linkedhashes.php?g=1116 new file mode 100644 index 0000000..3c09a1b --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1116 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a2eaa3a65d1a82ad837274980c105278


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1127 b/gamelists/snes/linkedhashes.php?g=1127 new file mode 100644 index 0000000..2cc4fc2 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1127 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b4745109dfb032675c6a0cb83598607f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1134 b/gamelists/snes/linkedhashes.php?g=1134 new file mode 100644 index 0000000..fbade49 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1134 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2ad4d6968d6be1727f198475497e8069
  • 3683319beeba73ad6deb851ef72bf3d3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1135 b/gamelists/snes/linkedhashes.php?g=1135 new file mode 100644 index 0000000..5364319 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1135 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e85702f5d32e03a7cbae1154ee5083ce


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=11428 b/gamelists/snes/linkedhashes.php?g=11428 new file mode 100644 index 0000000..ce4bb54 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=11428 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 490e911ed23a5c4ef17cd06aadb02111


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1143 b/gamelists/snes/linkedhashes.php?g=1143 new file mode 100644 index 0000000..4723969 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1143 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7135d26a7d25bc0175858347a1eef8dc
  • cb4a282e8a7bde5e16103c4136f9491e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1144 b/gamelists/snes/linkedhashes.php?g=1144 new file mode 100644 index 0000000..3831442 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1144 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 8390060497fa77efff7c1b2fb2ac1ca4
  • e49ae43bed71c1f9dc568936c83d28ee


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1145 b/gamelists/snes/linkedhashes.php?g=1145 new file mode 100644 index 0000000..fa3835f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1145 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8e9e2d07222dcefa13adf2bab05b1776


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1146 b/gamelists/snes/linkedhashes.php?g=1146 new file mode 100644 index 0000000..09bd797 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1146 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 59361b30b09dc94163a654616e328185
  • 7985e1aafa853723320aa7fdc143e78a
  • c8dd52b075e1681f590d2f97ab5b4d7e
  • db823809ba2853e17aa202ec1a9e57d5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1147 b/gamelists/snes/linkedhashes.php?g=1147 new file mode 100644 index 0000000..a9a6e03 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1147 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9d180decdc39239518f56c36b4102b21


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1149 b/gamelists/snes/linkedhashes.php?g=1149 new file mode 100644 index 0000000..040e4c3 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1149 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5ce8eb4f5abcd37c985182e05a26acd9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1150 b/gamelists/snes/linkedhashes.php?g=1150 new file mode 100644 index 0000000..157a4c0 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1150 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 72ea79d6da4349eefff22e5d990ba368
  • 9ad77707da7c7e4913a1644b3b6cdfd8
  • d28b7b7270ba79011e7224b979de109f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1151 b/gamelists/snes/linkedhashes.php?g=1151 new file mode 100644 index 0000000..dde4760 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1151 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5c58a7ce84bd3c1b3044563ccad01e58


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1153 b/gamelists/snes/linkedhashes.php?g=1153 new file mode 100644 index 0000000..decbb8f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1153 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 10e339039df1185206e2b8a236af9248
  • e2638e350cd789073465f384bb484144


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1154 b/gamelists/snes/linkedhashes.php?g=1154 new file mode 100644 index 0000000..a165b6e --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1154 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 330f18b975341a10ee1d36f7a626330c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1156 b/gamelists/snes/linkedhashes.php?g=1156 new file mode 100644 index 0000000..36b2cd7 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1156 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 23715fc7ef700b3999384d5be20f4db5
  • 2f1c1a70f2268b4c37e2a095a9be0058
  • 4832fba3682437ea96bce0af5c08930d
  • 7190c6764031e2e8a208d47bd0e25caa
  • d0142f63a3dee58f97c21d939b6dbd60
  • fbb0966e5f977af9e3f475c3da667526


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1158 b/gamelists/snes/linkedhashes.php?g=1158 new file mode 100644 index 0000000..194ba7c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1158 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 46f0592d48e056b8008c72d64a3aa8ea
  • 5f8c3fd37130d9b80f1d98d1b7034161
  • fb992889669c10f98854b1c816b65e9d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=11580 b/gamelists/snes/linkedhashes.php?g=11580 new file mode 100644 index 0000000..95661f8 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=11580 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d5e83ce15bb7895376ae59eedfa2455d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=11639 b/gamelists/snes/linkedhashes.php?g=11639 new file mode 100644 index 0000000..fe65162 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=11639 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3e5a2a7d07826140792aad45b7c76acd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1165 b/gamelists/snes/linkedhashes.php?g=1165 new file mode 100644 index 0000000..740a8b0 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1165 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f6afe62ee85f004b35c36b8f92944cae


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1168 b/gamelists/snes/linkedhashes.php?g=1168 new file mode 100644 index 0000000..58b5cc2 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1168 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 4fee6a2421a55fda96040abb17e147c6
  • 660b8392c9b24bedd94d6c1a9f600c78
  • 83cf41d53a1b94aeea1a645037a24004
  • ec832df9d0474b26d2a88d9f9c9f10fb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1173 b/gamelists/snes/linkedhashes.php?g=1173 new file mode 100644 index 0000000..156a96a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1173 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f1eedeb77a77d59476f33847f3275fc9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1174 b/gamelists/snes/linkedhashes.php?g=1174 new file mode 100644 index 0000000..1a908c5 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1174 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 03b64e37d5b5f8b92e8681940f2e0f75
  • 38bf344adb532b01b9f72786d6babb43
  • e00ef4c1b9e17d5fa2d8367402d28a08


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1175 b/gamelists/snes/linkedhashes.php?g=1175 new file mode 100644 index 0000000..faa2ffc --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1175 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • fa499b552c4c9cccd089802147b5dcd5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1179 b/gamelists/snes/linkedhashes.php?g=1179 new file mode 100644 index 0000000..a5d3189 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1179 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c4f2fe9b3ec4fc5c9c5d1b8ae1bd8054


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1180 b/gamelists/snes/linkedhashes.php?g=1180 new file mode 100644 index 0000000..d24b558 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1180 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 07f817a784c393b381db699a046fa4a9
  • 7d375a622079b12feb42e26ba080e4a6
  • fda5a7e07a3f67f848b30ab76ae122a9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1181 b/gamelists/snes/linkedhashes.php?g=1181 new file mode 100644 index 0000000..e0d47f9 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1181 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 038ef30004f4d6fc77576878b1743bf8
  • 4c0fce9368b807e09df98f5bbbc047ce


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1185 b/gamelists/snes/linkedhashes.php?g=1185 new file mode 100644 index 0000000..c0054b6 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1185 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7d33a268efb97562a9b25e3a2cbc65fd
  • ee04e40432b2e60068eac344e790eea7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1187 b/gamelists/snes/linkedhashes.php?g=1187 new file mode 100644 index 0000000..aba91a7 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1187 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8d4249cf09bb6e63a7ef4b80d05da2ad


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1192 b/gamelists/snes/linkedhashes.php?g=1192 new file mode 100644 index 0000000..27b12ca --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1192 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 7ca258cc2ae3712986017777164faf1c
  • a5adb1ab3daa665a58ad6ad1111d8f5b
  • be7fc84ac1151b99ad48329327e2aaa7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1197 b/gamelists/snes/linkedhashes.php?g=1197 new file mode 100644 index 0000000..e39285c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1197 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • b4e732b3d742af1791605bcd7aa4a1c4
  • c9a0d73751e068fa48269728efe027e7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1198 b/gamelists/snes/linkedhashes.php?g=1198 new file mode 100644 index 0000000..d59b894 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1198 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 206e6c5c05ac1a83dde21400325a4a7d
  • 947f2b011533f99fe33fd2acffd35875
  • ba0e1fda3b6a6bdfe788fa85f5a13b8c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1209 b/gamelists/snes/linkedhashes.php?g=1209 new file mode 100644 index 0000000..8f33591 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1209 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3753c4389de6554a00e12a08c4e0035c
  • 8f5daeaf2b698f56e01b52b4e5afafce


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1210 b/gamelists/snes/linkedhashes.php?g=1210 new file mode 100644 index 0000000..3816765 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1210 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 50a1a66163020c19cde18685a928a556


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1213 b/gamelists/snes/linkedhashes.php?g=1213 new file mode 100644 index 0000000..1be6160 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1213 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8596f1bdbabf96aa39fd29b24917b916


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1215 b/gamelists/snes/linkedhashes.php?g=1215 new file mode 100644 index 0000000..335fba2 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1215 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 935c5b4e37904435042b3ee17a77950d
  • 96326e88743992d3d7fb71436a55978f
  • c0e5d653d0bec492117fa4f53cfcb619


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1216 b/gamelists/snes/linkedhashes.php?g=1216 new file mode 100644 index 0000000..565abd6 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1216 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 13bf9f1963ee0c1c2362d7e9d0806786
  • 18d84019bf24eb0b33221a7236e10d09
  • 19b2d7a555ecef4c453a819e67e61574
  • 2b74444e5a541f90e45e07290331318f
  • 2e64b6c52d7931130231c3261715fffc
  • 4ccd495027bac0a054928c054f1a88f2
  • fd2b81bb70d82894021de5a08e2b2fb3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1218 b/gamelists/snes/linkedhashes.php?g=1218 new file mode 100644 index 0000000..aea7646 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1218 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 403ea414c177884749fe9536d76fdf05


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1225 b/gamelists/snes/linkedhashes.php?g=1225 new file mode 100644 index 0000000..6dd4a27 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1225 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bba4b5494fee0bc353ea691804b4991f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1229 b/gamelists/snes/linkedhashes.php?g=1229 new file mode 100644 index 0000000..9face93 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1229 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 04b0c8978cbb3313112e0647b24336fb
  • 07ed293977b29dffef1b30dd90531cca
  • cfcd1ff3da5309e5021efaa58012058d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1233 b/gamelists/snes/linkedhashes.php?g=1233 new file mode 100644 index 0000000..2d222c1 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1233 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5b5fd4b8df731aaf0e80aa67d8eff420
  • 975074b66b9a993648142e2bcd8a02cf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1234 b/gamelists/snes/linkedhashes.php?g=1234 new file mode 100644 index 0000000..ea5c9f6 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1234 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 079ab9c22a0aa40db0b78a04ff954d00
  • 7cb4bf29d8b2ddaec6f070b160da2da0
  • a43a53a7d737800f0ebfcf29365212a7
  • ebed74b4e5dde0423c61ae4730a7b6a4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1237 b/gamelists/snes/linkedhashes.php?g=1237 new file mode 100644 index 0000000..e46690c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1237 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 06aa5b85ed1d3bc61d94ece1f96a050e
  • 11bc951a9ac8ac1b073f8d9d55f44639


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1240 b/gamelists/snes/linkedhashes.php?g=1240 new file mode 100644 index 0000000..0f303bf --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1240 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 122ac9afc134df090bfbde77d5377a13
  • 17accf8a0b3d514561cadbdb03715a71
  • c09b97c956bc42e3b942f9d8a3196686
  • c9d0fdd7d03a1fdca9f91157a22819c5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1242 b/gamelists/snes/linkedhashes.php?g=1242 new file mode 100644 index 0000000..cf4c71d --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1242 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 635243459310d48bf42e27e5f692e236


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1244 b/gamelists/snes/linkedhashes.php?g=1244 new file mode 100644 index 0000000..4d1d5b6 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1244 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 578dc3b0205deab136ab5f57d4b4f6ca
  • 84285a12fda6a466df3490a3726724a1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1245 b/gamelists/snes/linkedhashes.php?g=1245 new file mode 100644 index 0000000..91a813b --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1245 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 618abbf00946b60da33971199cab5bad


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1248 b/gamelists/snes/linkedhashes.php?g=1248 new file mode 100644 index 0000000..8e57ffa --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1248 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 3af126f4b6e5e0af52ecc734fa5d12cf
  • 49a4cf748b491f6e7bdbfc86f2cf4d16
  • 7fd884ca974fe3b86f321ae2d0f9a2c8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1250 b/gamelists/snes/linkedhashes.php?g=1250 new file mode 100644 index 0000000..a282779 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1250 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d26babb046182e3a564fb1bdddce7e42


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1256 b/gamelists/snes/linkedhashes.php?g=1256 new file mode 100644 index 0000000..5c193bb --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1256 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 1b7851989f649bcfaa3257b78bd3b1a2
  • 7ff74456e38bd6031989891111d5c594
  • 878e95bca6b94b3fa0e72fef1867434c
  • d34a1d5eb441035da6bc0ebda8dce43b
  • f009f85c09b421748c8944957f7efeb7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1261 b/gamelists/snes/linkedhashes.php?g=1261 new file mode 100644 index 0000000..887e60d --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1261 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 923ec0c22b5083b6e3a32e54f822f4fb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1268 b/gamelists/snes/linkedhashes.php?g=1268 new file mode 100644 index 0000000..62c5a82 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1268 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 60a86ba313de38d47e17af55a864a626
  • 9b35ccaf117b408d36ff204d4c4955fa


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1270 b/gamelists/snes/linkedhashes.php?g=1270 new file mode 100644 index 0000000..e6ba9d8 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1270 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 68e83fe143a01ea5a68bbdfc17a34a2d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=12729 b/gamelists/snes/linkedhashes.php?g=12729 new file mode 100644 index 0000000..f8207ce --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=12729 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c1a1e55c83d33b7fe3f4935c7c5af45a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=12736 b/gamelists/snes/linkedhashes.php?g=12736 new file mode 100644 index 0000000..24392cb --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=12736 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 458e8920c1046d37595902b6dce04c17


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1274 b/gamelists/snes/linkedhashes.php?g=1274 new file mode 100644 index 0000000..6821c6d --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1274 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bc16be2e9c7e170f7cd10da919f3e099


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1277 b/gamelists/snes/linkedhashes.php?g=1277 new file mode 100644 index 0000000..60764c6 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1277 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 092764f03c61d4f2adc10aff6a1292ed
  • 4704f212be4ff8afb99f2b77ff9fe3cd
  • 5615595c240a5161b531ab30dad96c83
  • c9fc87528511770db888b28a4c506f46


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1278 b/gamelists/snes/linkedhashes.php?g=1278 new file mode 100644 index 0000000..aa15640 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1278 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 09387a287def4084571a3f667bef3a41
  • 23eaa07e3f3315fa43f4b4d94ec97a7b
  • d7daf47df1d1c3f63595968a9ee4b234


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=12809 b/gamelists/snes/linkedhashes.php?g=12809 new file mode 100644 index 0000000..93ff7bb --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=12809 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 67db4f612102c79aa21ffe8d361c7c73
  • ff4df76cb605ddb4882ffe45bcfe2392


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=12818 b/gamelists/snes/linkedhashes.php?g=12818 new file mode 100644 index 0000000..65be23c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=12818 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1e5ed4a520339747ba827535dec266e3
  • 5f5d097df9c3501ab05fdcb1f30bb8e5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=12823 b/gamelists/snes/linkedhashes.php?g=12823 new file mode 100644 index 0000000..d5090b9 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=12823 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d088f2e3671e644c1004efb701d3073b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=12825 b/gamelists/snes/linkedhashes.php?g=12825 new file mode 100644 index 0000000..8af9176 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=12825 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 2a025f1fd9404f6128c72c8e527a31fe
  • 55f3c18b1355c09dfaf9dd280193734a
  • 8a9d98d6a25c938fe7144a8f98f3b87d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=12828 b/gamelists/snes/linkedhashes.php?g=12828 new file mode 100644 index 0000000..b866412 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=12828 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6c691a426c907211d70e733787db5790
  • 8c7dfc3dc5d13b145fc116dbcb84521b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=12832 b/gamelists/snes/linkedhashes.php?g=12832 new file mode 100644 index 0000000..560c838 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=12832 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • dc4a45430f1e74c34a440c1882172ae6
  • f0da6a411d0cf49801e85fe25dbec419
  • f5fe0c5154a3ecf6ec1d0e279cede468


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1287 b/gamelists/snes/linkedhashes.php?g=1287 new file mode 100644 index 0000000..3465d97 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1287 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 80d1144dc2d6f7ad5bbbcb1dd448b6cf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=12904 b/gamelists/snes/linkedhashes.php?g=12904 new file mode 100644 index 0000000..fb93393 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=12904 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1269eeade22c26680798ed6a4262d73c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1293 b/gamelists/snes/linkedhashes.php?g=1293 new file mode 100644 index 0000000..9e7bfe1 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1293 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6fe8db7c73bb14f322ca6045c2fde46a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1295 b/gamelists/snes/linkedhashes.php?g=1295 new file mode 100644 index 0000000..5f2094f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1295 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1066cfd0c6be4dbdfede796751e801c5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1302 b/gamelists/snes/linkedhashes.php?g=1302 new file mode 100644 index 0000000..8deadea --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1302 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 02f161518e4b756a5f86e3eb7a0fcef0
  • c8236962fd9f85f6d1961934166d6bd5
  • e3b6d00b1ecb0952a6ea63887f464754


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1305 b/gamelists/snes/linkedhashes.php?g=1305 new file mode 100644 index 0000000..3d2f795 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1305 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f5c1bd28f88529473ab205b3f364def8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1309 b/gamelists/snes/linkedhashes.php?g=1309 new file mode 100644 index 0000000..23d5daa --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1309 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 45a4bca91f659b9020d9f69faf53ae23
  • 88b5f1a795fcbd1bd5e7eea8f795bf9d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1315 b/gamelists/snes/linkedhashes.php?g=1315 new file mode 100644 index 0000000..6e381d6 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1315 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • dfccfa0a4411bb0bfb29f777cac53858


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1322 b/gamelists/snes/linkedhashes.php?g=1322 new file mode 100644 index 0000000..ba0a1da --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1322 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 19c9a9f9e6835bd2879d8c9bad3830ad
  • eb0647748e431bca07572cbe13fb2f37


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=13246 b/gamelists/snes/linkedhashes.php?g=13246 new file mode 100644 index 0000000..85e664a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=13246 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7b11cfe4c1426daf1aa428a88ef3e456


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1326 b/gamelists/snes/linkedhashes.php?g=1326 new file mode 100644 index 0000000..b582324 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1326 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0ffb1c1611f9f23fd646788db607ffce


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1327 b/gamelists/snes/linkedhashes.php?g=1327 new file mode 100644 index 0000000..0286bed --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1327 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 514b537d3431a1f4a35b48e744d9bc13
  • 7fa59546f74901313958d6eeae4fad12
  • a7541f6554a7fa1aab250039ce24bcd8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1328 b/gamelists/snes/linkedhashes.php?g=1328 new file mode 100644 index 0000000..d5fb251 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1328 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 418034d574ebdaea7659b3a90eebef58
  • 44977d39df8c91b4dbbca9b3aac9c027
  • e807372e95281d5268579283ec3d115f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1332 b/gamelists/snes/linkedhashes.php?g=1332 new file mode 100644 index 0000000..c025674 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1332 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 264be750139cfed8dbe6474842961d88
  • 9000952ad6bc8dda06ba38c9524ae13f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1333 b/gamelists/snes/linkedhashes.php?g=1333 new file mode 100644 index 0000000..9486f26 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1333 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 082862713dc4664a53426cd75971079c
  • 8a5ea6e6f32295721f587ae81e965482


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1337 b/gamelists/snes/linkedhashes.php?g=1337 new file mode 100644 index 0000000..17cd03c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1337 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6852754ebd4115e1db335b6492586c8b
  • c9621e6293ab2de3fe03439ba09969a2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1338 b/gamelists/snes/linkedhashes.php?g=1338 new file mode 100644 index 0000000..d2c2e0b --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1338 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7efb87f54aa3ba558230a704a919e076


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1339 b/gamelists/snes/linkedhashes.php?g=1339 new file mode 100644 index 0000000..5fb99e4 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1339 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 70eba780bf858588f4d7b58d4f864480
  • ee3584fc51c6c1de4e5cd796f0652645


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1341 b/gamelists/snes/linkedhashes.php?g=1341 new file mode 100644 index 0000000..d003754 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1341 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a316475dfca41b864b7be021afbcad00


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1342 b/gamelists/snes/linkedhashes.php?g=1342 new file mode 100644 index 0000000..0fec76f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1342 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4369249d5f53fb9d70b1915cf533af03
  • 6595db032bf24945df534415fe376625


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1343 b/gamelists/snes/linkedhashes.php?g=1343 new file mode 100644 index 0000000..b0bee2e --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1343 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • babbdcd3be4f6b4806e129e0740aefce


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1344 b/gamelists/snes/linkedhashes.php?g=1344 new file mode 100644 index 0000000..301af12 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1344 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0c8d8fd7e695499b86d39cc75e166671
  • 630be0968ab1c7da7ec78725873ea20e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1347 b/gamelists/snes/linkedhashes.php?g=1347 new file mode 100644 index 0000000..bbc3202 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1347 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 044d6d9860e635d55bbb6192b5cbb121
  • 70db2519602d9d6e6dc6fa0069ed54da


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1353 b/gamelists/snes/linkedhashes.php?g=1353 new file mode 100644 index 0000000..f73b146 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1353 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 085aef23df7c45e5eab8209345ece4ca


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1354 b/gamelists/snes/linkedhashes.php?g=1354 new file mode 100644 index 0000000..263ca7a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1354 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3d946c89e1b62223a505f367babac5da
  • b4c4d7760020444ae63dbe794e154aa1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1361 b/gamelists/snes/linkedhashes.php?g=1361 new file mode 100644 index 0000000..0d5ea27 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1361 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 388cffcebcd3155cae2f2c5cec1f92c1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1366 b/gamelists/snes/linkedhashes.php?g=1366 new file mode 100644 index 0000000..7e938b0 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1366 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 1d271a25dee31eed53b71b63330ff20c
  • 3eb474b56cc51b54c004334655b08b9f
  • 9dfa4403d205d4a1f7f09ff597729d5e
  • d485bf5e99a2fa8f6afef8e1049aab26


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1374 b/gamelists/snes/linkedhashes.php?g=1374 new file mode 100644 index 0000000..f69c69a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1374 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • aec3e80ae5bc8928d7e758a9e289e01e
  • df33e261104efee409de8f294d80ad6e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1386 b/gamelists/snes/linkedhashes.php?g=1386 new file mode 100644 index 0000000..3d27bb2 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1386 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 4d8fc9e89befeaa36eb1ee636d6261a7
  • 5245a6ed780d896f416cc8824aa36182
  • 588120dadd3031f02e8ccf8f9a97aa52
  • 9304a04ab5aab54a7b978f8f2658166a
  • ca3969d5047dba8794e82cf9bd905f79
  • d69b2115e17d1cf2cb3590d3f75febb9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1391 b/gamelists/snes/linkedhashes.php?g=1391 new file mode 100644 index 0000000..bfd4263 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1391 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 10 unique ROM(s) registered for it with the following MD5s:

  • 124efbbc96ed6c987e2e8c46d7c84dea
  • 1ed584f4807ad62948eb82b7b5d5ca0d
  • 2ef86d15f198f18fba109454b1bc1f3c
  • 3ca8d4f59367f906c911b9f76bcb30f9
  • 4de680bc7d4877a27b0f538b456b7994
  • 5a0a3460ed4f02e649dbcd42089f9e03
  • c9829d76e25f8c4bf459cf77a8306825
  • d7fff8a9bae88417922419e40c003441
  • ec876e654a1358d1deb5a0d868680311
  • fd911993992a685d491440d59be009dc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1392 b/gamelists/snes/linkedhashes.php?g=1392 new file mode 100644 index 0000000..760839b --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1392 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 217a97e694fb916ad26c8a471f6c0e84
  • 3a9127df7780161875769daacf82f118
  • 56dae36934bbd68444f0af7156eb2cab
  • d686ba6df942084216393ada009126dc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=13972 b/gamelists/snes/linkedhashes.php?g=13972 new file mode 100644 index 0000000..1e424e9 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=13972 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b51e12a9b06245887378332eabea90dc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=14013 b/gamelists/snes/linkedhashes.php?g=14013 new file mode 100644 index 0000000..a7777c6 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=14013 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d613e071ddd175a39d674c07579dcd4d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=14026 b/gamelists/snes/linkedhashes.php?g=14026 new file mode 100644 index 0000000..5730b98 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=14026 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b5fcbd9ea168bf10d7ea8b7637197dd5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1405 b/gamelists/snes/linkedhashes.php?g=1405 new file mode 100644 index 0000000..1989600 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1405 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 153bf4cd05d8f4bdee2ab734a28b8c7f
  • 1def71b5557cc6bb7402281d888cae80
  • 7dd0c11fedca7ac517c2480533afbecf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1408 b/gamelists/snes/linkedhashes.php?g=1408 new file mode 100644 index 0000000..f219115 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1408 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • b386817a9a69bf97eb52cd589c06f86d
  • fd473bc0035cadd46b8eebdfa619275f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1411 b/gamelists/snes/linkedhashes.php?g=1411 new file mode 100644 index 0000000..6340604 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1411 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 65884a7aff5949fa171072fd994f29ee
  • c223de99d22665b62c91e02727963bd4
  • dc2e53cbf532a14c28f0a3840d65fa57


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1412 b/gamelists/snes/linkedhashes.php?g=1412 new file mode 100644 index 0000000..f00ce2d --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1412 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 64a824be35bfbb7797e8cfe6cccc5dec


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=14120 b/gamelists/snes/linkedhashes.php?g=14120 new file mode 100644 index 0000000..2b9fc6b --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=14120 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • fc2af7162258233eb9968ab5c0310506


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=14128 b/gamelists/snes/linkedhashes.php?g=14128 new file mode 100644 index 0000000..129f5e3 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=14128 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6d21c8d656d526d086d5bca57c7bb005


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1418 b/gamelists/snes/linkedhashes.php?g=1418 new file mode 100644 index 0000000..198bd1b --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1418 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • a8bc41b2b908ab67c923372b29328512
  • af812672bb012584ab9693b026740cf5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1424 b/gamelists/snes/linkedhashes.php?g=1424 new file mode 100644 index 0000000..0150b0f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1424 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 362f44cb1ee4021cf1148a7eeaa81a59
  • 9e9286f8971abe77f34b0fcda8391e8f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=14313 b/gamelists/snes/linkedhashes.php?g=14313 new file mode 100644 index 0000000..754acc6 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=14313 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e9f47509668889eb21f56c3e3fe3e9f7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=14342 b/gamelists/snes/linkedhashes.php?g=14342 new file mode 100644 index 0000000..426e914 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=14342 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bb0fa93ae8cc623a339f484f586a3eed


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1444 b/gamelists/snes/linkedhashes.php?g=1444 new file mode 100644 index 0000000..ca1a383 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1444 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 772ca292857d5bcf1f8776009fa1d280


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=14476 b/gamelists/snes/linkedhashes.php?g=14476 new file mode 100644 index 0000000..cb29860 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=14476 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d130729bd57f4993eabafe3dee78eaed


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=14485 b/gamelists/snes/linkedhashes.php?g=14485 new file mode 100644 index 0000000..a47dbee --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=14485 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c0dda0e2f9e731d6fb14b543c2c912ae


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1450 b/gamelists/snes/linkedhashes.php?g=1450 new file mode 100644 index 0000000..ba7ad57 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1450 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 0fa7887f1bcde2dd207e20d782092607
  • 108f87638369444ffc2d1c658f523651
  • 7cdde25813be356d186b2e5d750a04b6
  • 95fd0027542f33b84e4548267e2bc297
  • d8b9a9a2137274a1afd526aaa3fec28e
  • f303dd6272860a6f4097f2ee20a21e68


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=14553 b/gamelists/snes/linkedhashes.php?g=14553 new file mode 100644 index 0000000..2c5c763 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=14553 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 130cf2c824fa177aa6c6c7cc64d4cdb2
  • 309c37f76920a13596fb6bd4be569541


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=14626 b/gamelists/snes/linkedhashes.php?g=14626 new file mode 100644 index 0000000..8414d59 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=14626 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c08aaf6fc033c580a53dd98272fa488c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=14648 b/gamelists/snes/linkedhashes.php?g=14648 new file mode 100644 index 0000000..11cdc49 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=14648 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 20cb0824ac0614f85d2b48695c32a74e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=14675 b/gamelists/snes/linkedhashes.php?g=14675 new file mode 100644 index 0000000..e65cedb --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=14675 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6f84b80e9f1f85775424175f21ce9395


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=14676 b/gamelists/snes/linkedhashes.php?g=14676 new file mode 100644 index 0000000..6c33282 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=14676 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2249b73becae7796f13bffda0fad1b9e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=14708 b/gamelists/snes/linkedhashes.php?g=14708 new file mode 100644 index 0000000..03c9fe5 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=14708 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 40f3e4b0150e5c23ca410acb0f4f6e4d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=14757 b/gamelists/snes/linkedhashes.php?g=14757 new file mode 100644 index 0000000..43a09a7 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=14757 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d73a5f78ef1e6adf255fb427a094073c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=14771 b/gamelists/snes/linkedhashes.php?g=14771 new file mode 100644 index 0000000..4ca4704 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=14771 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b03b5ac8afc986a691db08725bdbde7c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=1508 b/gamelists/snes/linkedhashes.php?g=1508 new file mode 100644 index 0000000..de99df4 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=1508 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9fcf62874594c4db2682d44025b5686b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=15390 b/gamelists/snes/linkedhashes.php?g=15390 new file mode 100644 index 0000000..af94cb2 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=15390 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 146eb87e2b10801172e23e0baef432b2
  • 9365e4f357539c7d774d361790c4d7fd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=15400 b/gamelists/snes/linkedhashes.php?g=15400 new file mode 100644 index 0000000..68ffe2d --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=15400 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6a0ed6c9587a712503c8aa9a6a1c831c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=15450 b/gamelists/snes/linkedhashes.php?g=15450 new file mode 100644 index 0000000..c02a427 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=15450 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 55494247385e750b4623a7b87debacf7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=15545 b/gamelists/snes/linkedhashes.php?g=15545 new file mode 100644 index 0000000..f7dfc4a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=15545 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d03af6698b21402d19c17184eeb78cdf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=15655 b/gamelists/snes/linkedhashes.php?g=15655 new file mode 100644 index 0000000..4d85ac4 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=15655 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a4f9367424f896fcc675ed67aa1477a3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=16042 b/gamelists/snes/linkedhashes.php?g=16042 new file mode 100644 index 0000000..5249156 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=16042 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4148c19139033f113397846faf52146c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=16056 b/gamelists/snes/linkedhashes.php?g=16056 new file mode 100644 index 0000000..47d22a7 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=16056 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 12c29b9324082d273250826b16f5b512


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=16113 b/gamelists/snes/linkedhashes.php?g=16113 new file mode 100644 index 0000000..966f4ab --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=16113 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8ca3c70a836aa11ce527dcae923e366e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=16121 b/gamelists/snes/linkedhashes.php?g=16121 new file mode 100644 index 0000000..4b264c9 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=16121 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d4ada8016fa64dfe123d48e9a8a40c3a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=16187 b/gamelists/snes/linkedhashes.php?g=16187 new file mode 100644 index 0000000..d57d40c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=16187 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c422ea1145352be2fde34b2f01be5b68


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=16190 b/gamelists/snes/linkedhashes.php?g=16190 new file mode 100644 index 0000000..0dcde5a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=16190 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 50855b025b8684f6e986a6d9cf637108


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=16194 b/gamelists/snes/linkedhashes.php?g=16194 new file mode 100644 index 0000000..1ea442c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=16194 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • eab81eff615b4fa1a2f16c8048daf03a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=16201 b/gamelists/snes/linkedhashes.php?g=16201 new file mode 100644 index 0000000..763d096 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=16201 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • eab4f960d66ae809dbf21186fb85e5b4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=16216 b/gamelists/snes/linkedhashes.php?g=16216 new file mode 100644 index 0000000..91d0475 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=16216 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 863c121ca09121a8f7799ff49f17f715


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=16223 b/gamelists/snes/linkedhashes.php?g=16223 new file mode 100644 index 0000000..f2812cd --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=16223 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b0c16ea13d0fa06d7e3f4aae01899a04


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=16238 b/gamelists/snes/linkedhashes.php?g=16238 new file mode 100644 index 0000000..1cd3af7 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=16238 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 81317b808c4365a9df49039e4a133769


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=16473 b/gamelists/snes/linkedhashes.php?g=16473 new file mode 100644 index 0000000..907306a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=16473 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 360ccb6b72c5f3b79087fb4b4065df72


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=16482 b/gamelists/snes/linkedhashes.php?g=16482 new file mode 100644 index 0000000..c47877f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=16482 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a9bed25aeab5d2b9530ac10eeebad422


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=16497 b/gamelists/snes/linkedhashes.php?g=16497 new file mode 100644 index 0000000..8d61582 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=16497 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e0ff5e64db4c7ec54e0e7cec0fbc3567


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=16505 b/gamelists/snes/linkedhashes.php?g=16505 new file mode 100644 index 0000000..cf2fbee --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=16505 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 061fb90e60bc8ec8128ae4bb8f5884c8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=16545 b/gamelists/snes/linkedhashes.php?g=16545 new file mode 100644 index 0000000..14d4c03 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=16545 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 818b026ad32e33db3b59461baf362b17
  • eec484f16ebb0e36c3b6fbd9d057c7cc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=16571 b/gamelists/snes/linkedhashes.php?g=16571 new file mode 100644 index 0000000..e75f455 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=16571 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 49a0b5d909d6846b0c6b0fb5683fb271
  • b153eda959779351a892d59e55a939eb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=16926 b/gamelists/snes/linkedhashes.php?g=16926 new file mode 100644 index 0000000..e78e2a2 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=16926 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4e1b1381f50c711b1eeac9dfcec72a49


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=16927 b/gamelists/snes/linkedhashes.php?g=16927 new file mode 100644 index 0000000..0a1666a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=16927 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • df95d0b898705af8dc191584b6f61774


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=16928 b/gamelists/snes/linkedhashes.php?g=16928 new file mode 100644 index 0000000..d97cc0c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=16928 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 348f1d1b30758ea36e100c72b9d98594


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=17046 b/gamelists/snes/linkedhashes.php?g=17046 new file mode 100644 index 0000000..38e52ac --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=17046 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 292aff880b144a0c48e9952a5e684fa9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=17079 b/gamelists/snes/linkedhashes.php?g=17079 new file mode 100644 index 0000000..68763b7 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=17079 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 920f1de428e78739deaaf605eb6a93f5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=17084 b/gamelists/snes/linkedhashes.php?g=17084 new file mode 100644 index 0000000..a6dac59 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=17084 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f71074be06875a53e73cd95644ec132f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2132 b/gamelists/snes/linkedhashes.php?g=2132 new file mode 100644 index 0000000..aac099b --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2132 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 97503ea48f51d65399fe8235155acd7f
  • e218531fe541b05cf44c2667e101d117


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2148 b/gamelists/snes/linkedhashes.php?g=2148 new file mode 100644 index 0000000..58ce579 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2148 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 5651c58a1c87c42f6b91519969658a88
  • a1222de3d989fdafd3311f37d89cd025
  • d8e95e744e66e7ec30d9591f71dafd0a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2156 b/gamelists/snes/linkedhashes.php?g=2156 new file mode 100644 index 0000000..9eb190d --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2156 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 5a474de20eca57067104ab00da0ff4c9
  • abddd496bab9c4fd12007f3125db85cc
  • ccb3810718ef071ef8d4bdc47d385edb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2209 b/gamelists/snes/linkedhashes.php?g=2209 new file mode 100644 index 0000000..f690a14 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2209 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 9 unique ROM(s) registered for it with the following MD5s:

  • 207cd1c0aaaca29faa389218b800f8fc
  • 3b951e4ae194425d48681dbc45a7fc4d
  • 432ee22993806021da00ec71c11b7036
  • 5ee2aa1282e69f812aa086cfedba759c
  • 8c7439cc0244e22bd27948d65151ae30
  • 9bb90422fcfb32581121a7d8588827b0
  • b420b8d20f857a891c406a31c1c43d65
  • cf54bc3ec11e30f2778fe372dcc679c7
  • eb3a7ef7a7e224ee35b390adc0da45cb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2219 b/gamelists/snes/linkedhashes.php?g=2219 new file mode 100644 index 0000000..df8e080 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2219 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e1e3ce8a9d1b9ccaf059101add37314f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2234 b/gamelists/snes/linkedhashes.php?g=2234 new file mode 100644 index 0000000..5a84597 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2234 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f21e1fefcb3187877060b3fafb53abd2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2237 b/gamelists/snes/linkedhashes.php?g=2237 new file mode 100644 index 0000000..1d2286a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2237 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6a773dc80df7e0ce54540c29cd4fa3a0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2257 b/gamelists/snes/linkedhashes.php?g=2257 new file mode 100644 index 0000000..b6e41c7 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2257 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 496f3f33490a966bb88a4285688988bf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=228 b/gamelists/snes/linkedhashes.php?g=228 new file mode 100644 index 0000000..29fa936 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=228 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 10 unique ROM(s) registered for it with the following MD5s:

  • 38bb405ba6c6714697b48fb0ad15a2a1
  • 679698a7d92e4be3b8019c075e74594d
  • 7dfe85f3c7940c40c32731efe0da92ae
  • aa70ce4618fa17069bfd48d4b9928a22
  • b7d331e7ca1b882b281974689b4a47fa
  • c6c455d390ed2b3fe8d07756d82499bc
  • cdd3c8c37322978ca8669b34bc89c804
  • d3f9bd5c50c0273a58e8adf1f2e93487
  • dbe1f3c8f3a0b2db52b7d59417891117
  • e5f63b3802cd0af92e1bf75164038f58


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=232 b/gamelists/snes/linkedhashes.php?g=232 new file mode 100644 index 0000000..5e41f93 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=232 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 9 unique ROM(s) registered for it with the following MD5s:

  • 1844a58f85cc3a729000fb419275f8c9
  • 4f2505b88fbf2f76c75dfe4546c62ad1
  • 6c38ed5b0f0c1a759fd8bbba11a978fe
  • 7f25ce5a283d902694c52fb1152fa61a
  • ae669ee45742449fdf84bf3348720e22
  • c89ccaadeb22fea8324bef07fef23dfc
  • f0b77632713d84d39153ce26136b9088
  • f7afa112d7ec1d532636703e4b02700a
  • f9fe266e91632e68b558d6b43393eaba


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=234 b/gamelists/snes/linkedhashes.php?g=234 new file mode 100644 index 0000000..cb09378 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=234 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 18b5e9f9d628fd23cc0ed31ce7089737


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2345 b/gamelists/snes/linkedhashes.php?g=2345 new file mode 100644 index 0000000..9618ea4 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2345 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • ef94b014589181d12d566791f8bc8af6
  • f159d7946d81796e4f2c5b574a1da13a
  • f43ef6a5ff9b2e4922e76629a701b4dc
  • faefb815590a2adc786ad1467558e3da


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2347 b/gamelists/snes/linkedhashes.php?g=2347 new file mode 100644 index 0000000..56ed9ee --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2347 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6c6e750e419d6c3db27a708d240d32b1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=236 b/gamelists/snes/linkedhashes.php?g=236 new file mode 100644 index 0000000..bd2b338 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=236 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 21f3e98df4780ee1c667b84e57d88675
  • 6020d33959b58d33456b56ee70642adf
  • 82094ca2db9d6e78c91c88d31d7c0d06
  • 8a9749fbc0b0b3c41599096bcd01d77d
  • a0a50cad421c60a4153548c5e44ff112
  • c2e63a2ca2a46411ddbf758ab017f398


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2369 b/gamelists/snes/linkedhashes.php?g=2369 new file mode 100644 index 0000000..ba4a2ea --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2369 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • e23826e57d65c6e4486ba7d5e5dca2d9
  • ecdf9d31446ba7c1827c96949514a144


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=237 b/gamelists/snes/linkedhashes.php?g=237 new file mode 100644 index 0000000..5a149af --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=237 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 0dd6d73652a885c9b90646602b53ac6c
  • 1978359063c02ad2badd3c0e993aca14
  • 4b01b8c7900ac523351b2cc01870287e
  • ea99d9924329380fe4a0d523caf9d2e2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2373 b/gamelists/snes/linkedhashes.php?g=2373 new file mode 100644 index 0000000..459848a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2373 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2d24ccefe12fec5e175b6764513cbd1d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2374 b/gamelists/snes/linkedhashes.php?g=2374 new file mode 100644 index 0000000..245ee13 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2374 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 064d244986c937a5c4a7aa1cc5496dfa
  • 2fdc765967506940945084ea7f42ecaa
  • 51f8a9e95ec58fa5b9c3ec2da530d598
  • 9247fd94e6909934c5de745c2f3dcb7a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=238 b/gamelists/snes/linkedhashes.php?g=238 new file mode 100644 index 0000000..3887ae4 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=238 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 29e2ee08c6b7c1a89a720d7291f76e58
  • 615470bfbf276e58d45c7139a6452afd
  • 62f678f5679a1daf6da4c72c7e38cd29
  • 66688d31555ecfeab50d810bbdc85d0b
  • b1d07a75a113df9c0901573cdd89d2ee
  • bb6a1198e291c8ae58e9581a4296ed4d
  • da639310670e49e75ca3c9610f14dfbd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=241 b/gamelists/snes/linkedhashes.php?g=241 new file mode 100644 index 0000000..2554f1a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=241 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a1f47d45a9e5f93b3f10057d1d0e1469


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=242 b/gamelists/snes/linkedhashes.php?g=242 new file mode 100644 index 0000000..283e483 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=242 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 28 unique ROM(s) registered for it with the following MD5s:

  • 02F21F536CCAD02A316837B4D6A8FB25
  • 22913a3a2144007e40b0a87e1565f018
  • 249147dae42e78f57d95c87ac884a414
  • 2a9f7eaa7defa0acfac3daf0263fcdc2
  • 2e6319f2b0697784f87fde4091696d36
  • 2ff43498fbb957facf11c598dd8a6299
  • 4f3f3c5504a524a0716b965808709118
  • 5223853d5edc9856f2bf8a9f04d01d3a
  • 5582f830a2833ec20bdb02ec23253ea9
  • 5a643ceaa8be44b1dbcc4abebb661b3a
  • 5a73738a50e3c60dcd75e9c132c14135
  • 5bec2d7ecf3117b479c69cada8ebafa4
  • 6CCB32CEEAB9C1A57DC0555F3C4C666F
  • 6E06BC4A4F43F0CC69F78A87906F3BBB
  • 810c9d84c9b6c5b7be9ebb87860a7851
  • 83c9ffc6bba2a297bae9ef4afc3989a8
  • 8995FFE9FA821AA54A7C17BFF7647F66
  • 8e3c12b70cb0b84e92b4b84f9e822f02
  • 988EF692078D136BB1A41737F54CFF50
  • 9c243b533b3558c09eb9a48cc504370a
  • af7cf71e77e4acdd59d656dc2aecbc2b
  • b28057b05057d106303910ffa806fe48
  • b77da9e9f59d446dfac0b9e3161ba418
  • d202156549f981f6dafc759575dd6e67
  • d77120ecd774e391d3b974bfb1905246
  • e5ff31229b0b64a3de79f7e1947d8672
  • f6bc236b9e57b09dc464f72ecad07d36
  • ffe82b3201b1116d822eeea25f22fe86


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2425 b/gamelists/snes/linkedhashes.php?g=2425 new file mode 100644 index 0000000..3be1901 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2425 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 39b1e06fae0d6176c6ec4bb98f842eb7
  • e9edb964870c5435ca45a51c26905612
  • fe12d164a7607d3f09f14b3c1cf50775


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=244 b/gamelists/snes/linkedhashes.php?g=244 new file mode 100644 index 0000000..7c55125 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=244 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 13dc1d8ac79de1a359c857e3c584c340
  • 9943b6b85583facb088869db8d6a5f78
  • fbc724d47c0bd7cb7cbc56d42803d1d7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=251 b/gamelists/snes/linkedhashes.php?g=251 new file mode 100644 index 0000000..aec77df --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=251 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c49738f77917e22207568aa69acb20a4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=252 b/gamelists/snes/linkedhashes.php?g=252 new file mode 100644 index 0000000..816a325 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=252 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 10 unique ROM(s) registered for it with the following MD5s:

  • 13808b9b12b0627f7f1e29c6cb303911
  • 15ef4c1cbe9bac8013af65c091c1de2b
  • 1632f488d5920d90ed8bf309cd83ecec
  • 3d5b0e20d6e9b62078add95ab7e9c5eb
  • 40a54730ff47e35dbb4db847f8e0b907
  • 6f334790120e1fe1a972ff184d2cfc50
  • 93654305e3f24e542a8ad45ff2d704cd
  • 9cbcbb4e10469e068b5c5a2db24c65a6
  • a3e3313d6695c7fb93b18c26e31c292a
  • c1e5ba090fe0fe0f62c5f067135110d0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=253 b/gamelists/snes/linkedhashes.php?g=253 new file mode 100644 index 0000000..fb4ecf9 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=253 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 11b19c6787212f5cd2c323f60956063e
  • 2063c5a948c825bb40d5686b6d7efb7f
  • 25310b2b5add818992be3084922abd38
  • 53c038150ba00d5f8d8574b4d36283f2
  • 669efc8aa7365b5854d3653ab5598dc9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2546 b/gamelists/snes/linkedhashes.php?g=2546 new file mode 100644 index 0000000..bfeedd8 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2546 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 91e75245c75c1f498e345cd368309801


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=255 b/gamelists/snes/linkedhashes.php?g=255 new file mode 100644 index 0000000..8e69297 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=255 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b4939c92787efefd6b48aede08973d84


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=259 b/gamelists/snes/linkedhashes.php?g=259 new file mode 100644 index 0000000..ab21997 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=259 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 27d02a4f03e172e029c9b82ac3db79f7
  • 4fa9e542b954dcb954d5ce38188d9d41
  • a63816f5431ebbf51f8463a46f863e7a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2599 b/gamelists/snes/linkedhashes.php?g=2599 new file mode 100644 index 0000000..d2356d6 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2599 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cd03caa049f8b6fe82d6eb76d73b39a9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2602 b/gamelists/snes/linkedhashes.php?g=2602 new file mode 100644 index 0000000..5c3adb7 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2602 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 3e972724ddbac41dec86035f6ebe9fa5
  • ae0fbaf3ee9fd66704d9e4f1458114ab
  • c48199b6996211ac200b8b2daafc18ef


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=261 b/gamelists/snes/linkedhashes.php?g=261 new file mode 100644 index 0000000..9d0aca3 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=261 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 63bbacbf3c899d40bb789f39be3ca1cc
  • 78ec0438374b2892bd90692e99501c51
  • a8c26fa9951d764d958fcb1beebe5089
  • b96f969d7a5be96151331f04d7cb36d2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2610 b/gamelists/snes/linkedhashes.php?g=2610 new file mode 100644 index 0000000..6e26e83 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2610 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 186e428570ca0ee7e4f46081416d3326
  • 59146e26b4fd75d74f953037868defa9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2614 b/gamelists/snes/linkedhashes.php?g=2614 new file mode 100644 index 0000000..39c03b0 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2614 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 4fa977e155ded5192fdf8ea006cf094f
  • 794e91614f4a3c5d6ca53e03eb8d3471
  • a5dee584b008de1c57745824d379211b
  • afd06ade29b5270a79199a531b0c7964


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2620 b/gamelists/snes/linkedhashes.php?g=2620 new file mode 100644 index 0000000..e3cc7cc --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2620 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5dd2c9f0a933e6a43b7e38e6ef0769ba


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=264 b/gamelists/snes/linkedhashes.php?g=264 new file mode 100644 index 0000000..fb4ecf4 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=264 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 037fcf5227a3086cceefe0846bc7e004
  • 69777cd39a2372b5fad71d1a05c29d6c
  • 6d71ccc8e2afda15d011348291afdf4f
  • a5ee470ad753d22a1c493c7b4bae6779
  • a864b2e5c141d2dec1c4cbed75a42a85
  • d137f359df28265e83456a88fa5ef58d
  • de7327ed6ac91ee655f7fd61ce0f30bd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2641 b/gamelists/snes/linkedhashes.php?g=2641 new file mode 100644 index 0000000..a5ce3f8 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2641 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 43d5d11a37c66a435fed06aa87dbbdff


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=267 b/gamelists/snes/linkedhashes.php?g=267 new file mode 100644 index 0000000..1ae2e66 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=267 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 628941371d079353adabe00364fb0ef5
  • 8dcb216beed58c798b25df55f62218d0
  • b1e59f8246f1ab07670e5f1015189b3a
  • c7bdfa3491633ceac7768b0be923f9a7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2674 b/gamelists/snes/linkedhashes.php?g=2674 new file mode 100644 index 0000000..3b91d8c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2674 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0f85400d016a5e22764c2d66ff6894d5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=268 b/gamelists/snes/linkedhashes.php?g=268 new file mode 100644 index 0000000..844683c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=268 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 11f7218ba5d2d5114cb29c5b6ff2bf72
  • 288555a2aafb42b3d44d7b2663d1a00b
  • cce80b0c56d01fd0f5c667155c66b3bc
  • df1d99115ce4a386054b511b62cd5cc6
  • fbce0804aa393ee5b6155b1e7553a5c1
  • fea66a1e992369e8207a217e4c3c817c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=269 b/gamelists/snes/linkedhashes.php?g=269 new file mode 100644 index 0000000..209873f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=269 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 5ef8e1f3e88c86f149838c569a0c0328
  • 672b5c06058ee8d1c28ae36b44eb1d12
  • 8eef2ee384dc35849d5dd6a41dcb57c0
  • 9f1f54ee804644b2f9c979e5f7ee69e0
  • b5924114c6a1cfdda1a77c93d0de2caf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2692 b/gamelists/snes/linkedhashes.php?g=2692 new file mode 100644 index 0000000..4a354cc --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2692 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bfac50cdae38c51dff55d15edec85451


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2695 b/gamelists/snes/linkedhashes.php?g=2695 new file mode 100644 index 0000000..9856a82 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2695 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1f6b2ff721f8f0d92736d704f922ba37
  • 2e676b7b8f3e6be5f328f460ea25b679
  • fe5bbd498a173153d5526c5b33979373


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=270 b/gamelists/snes/linkedhashes.php?g=270 new file mode 100644 index 0000000..50e7089 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=270 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 079d3e448c3ee99444710c12d903ffb0
  • 635d5d7dd2aad4768412fbae4a32fd6e
  • 82dbcd513272a5da4e449a58487ec742
  • b6ab4301b160b06750a28d2b6976f164


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=273 b/gamelists/snes/linkedhashes.php?g=273 new file mode 100644 index 0000000..b7b8fab --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=273 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 01e6aa7e19f19f0fd48d378edf09d80d
  • 09120ba8c0052997481117683b4e70db
  • 0f10ec520fbdbb009f97333b59ff8d49
  • 69b9d3dd018e52f17f10aa92b7c2fc51
  • 7f027688341eb52b84c613d452781f2d
  • fa334afb7485e478ee7471718f8def9b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2732 b/gamelists/snes/linkedhashes.php?g=2732 new file mode 100644 index 0000000..f5a2197 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2732 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • ba6de54bd247cfc74d4ed8e67a6170e4
  • e11c1d923ea1b2f6a00e5886aa6b6202


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=274 b/gamelists/snes/linkedhashes.php?g=274 new file mode 100644 index 0000000..ad852e8 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=274 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • affecaf49a6bd32188f62d9ad1f833ea
  • e5156bbd19c27e4000a3371db4dba04b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2740 b/gamelists/snes/linkedhashes.php?g=2740 new file mode 100644 index 0000000..8133b36 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2740 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 343c90719c67eb68863d9e6f8216b0b9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2773 b/gamelists/snes/linkedhashes.php?g=2773 new file mode 100644 index 0000000..cfec6c9 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2773 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • deae0987acb2bb208952cc1cbea5ce1b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=279 b/gamelists/snes/linkedhashes.php?g=279 new file mode 100644 index 0000000..d60c28e --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=279 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 5030f01f9ee63998d75394d85e6e6bf1
  • c9b698cf98f1aede7a87c1e449384632
  • ca82555080c37d8d59aaf60764606489


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2802 b/gamelists/snes/linkedhashes.php?g=2802 new file mode 100644 index 0000000..8798120 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2802 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 193fbbe49b52fc485981b9f0d0450b8d
  • 19b64f594ffd4c312ffee6af1102ec7d
  • ca8bb57936611e92596fbf63952d008d
  • cb5937aca40197fba1e8c4802d0962b0
  • d6e65b76e6248c1beb45932c7c995f8f
  • f39faabb923f1688b96a4e8ee4b333ca


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2807 b/gamelists/snes/linkedhashes.php?g=2807 new file mode 100644 index 0000000..1066238 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2807 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 13cb6c337b29254fdeae278bc2457234
  • ed18b3c3b148bcafdbe228e27e89bd2d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2808 b/gamelists/snes/linkedhashes.php?g=2808 new file mode 100644 index 0000000..b0f5961 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2808 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • a2543e309e1cfa7edfdc13bb30f3d60c
  • dd909b890fe4c2505d289361368ec22a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=281 b/gamelists/snes/linkedhashes.php?g=281 new file mode 100644 index 0000000..adb7e00 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=281 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cfbd78608d84c42bbc6b7d553dd858a0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2817 b/gamelists/snes/linkedhashes.php?g=2817 new file mode 100644 index 0000000..ebd57c4 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2817 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 8a7177724f3e537f7abafedf575776b9
  • 8caab5b80c605461bb961ea508d6da29
  • cd3b82704652014771ad1b86798676a2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=283 b/gamelists/snes/linkedhashes.php?g=283 new file mode 100644 index 0000000..2b43d6a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=283 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 42647bf6fd9c3e28a2542b88c09d2893


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=286 b/gamelists/snes/linkedhashes.php?g=286 new file mode 100644 index 0000000..bca18e2 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=286 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 345ddedcd63412b9373dabb67c11fc05
  • 51da200d9c04bb26c3c3e55796d84f0c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2878 b/gamelists/snes/linkedhashes.php?g=2878 new file mode 100644 index 0000000..97b0e20 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2878 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 442ecd86dac68b30ffb0e892aae2ed8f
  • c5d54f9a75826df2ee41830301227155
  • d044f97be5fc00bd5e02c935f7e88058


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2879 b/gamelists/snes/linkedhashes.php?g=2879 new file mode 100644 index 0000000..6b1bb57 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2879 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 89b5cfee41894d42b5067655b95d38d5
  • c3fd1cad754256d7a013864d917f47fa
  • eb8f14b6900a8dbb0599f6fd564efe07
  • eedd67fdd73a5f6d761da46b9421efdf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2886 b/gamelists/snes/linkedhashes.php?g=2886 new file mode 100644 index 0000000..e6d1f1c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2886 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c012d50635485789b5a31b1fa0d51af6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2889 b/gamelists/snes/linkedhashes.php?g=2889 new file mode 100644 index 0000000..10a5772 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2889 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b51604def7401af4b71cbaa501b2f00e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2895 b/gamelists/snes/linkedhashes.php?g=2895 new file mode 100644 index 0000000..539109c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2895 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7d557d4ee07b3ced3240d636a57b8bd0
  • e744c9bc5e7eb5715a8a24543eecbc88


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2905 b/gamelists/snes/linkedhashes.php?g=2905 new file mode 100644 index 0000000..623848a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2905 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8a61ea1d3b53375aae00cc69367dec7e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2907 b/gamelists/snes/linkedhashes.php?g=2907 new file mode 100644 index 0000000..3e1d6d9 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2907 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • eb7d8986545e2e54f915e621f088ab31


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2911 b/gamelists/snes/linkedhashes.php?g=2911 new file mode 100644 index 0000000..67fe309 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2911 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1967069790f930b0e8b60753058002d2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=292 b/gamelists/snes/linkedhashes.php?g=292 new file mode 100644 index 0000000..10bcf3b --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=292 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 5927c98cdb4e31d580712223359bdc15
  • 6261688f58531544189cb8448e2aaf9e
  • 823f3ec75c327c8addb854ff7f646c22
  • e2c47c0754f874b2b16d5f06be3dbe34


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2940 b/gamelists/snes/linkedhashes.php?g=2940 new file mode 100644 index 0000000..63ab5c3 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2940 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ef77227b9630cabc3be072ceb6d71312


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2945 b/gamelists/snes/linkedhashes.php?g=2945 new file mode 100644 index 0000000..973dc78 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2945 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6145304b25416eb248193eee331207d0
  • 698ec39014f45d1ecea6ecc7d5223664


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2952 b/gamelists/snes/linkedhashes.php?g=2952 new file mode 100644 index 0000000..0287ff6 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2952 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3f5a432ef53daf9dd40d9e4df49bf2d2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2955 b/gamelists/snes/linkedhashes.php?g=2955 new file mode 100644 index 0000000..ad66832 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2955 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8c19e5107985ed27fac3ad8bd2eb1d70


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2956 b/gamelists/snes/linkedhashes.php?g=2956 new file mode 100644 index 0000000..08b48cd --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2956 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 77a5262c8aa686e8bced2d8ae5f59208


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2957 b/gamelists/snes/linkedhashes.php?g=2957 new file mode 100644 index 0000000..f58b70c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2957 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8b3805664f63d955c76291746e361ca1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2958 b/gamelists/snes/linkedhashes.php?g=2958 new file mode 100644 index 0000000..695d361 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2958 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2f1fe5f94124990c1b292d269916f503


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=296 b/gamelists/snes/linkedhashes.php?g=296 new file mode 100644 index 0000000..c5145cb --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=296 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 9 unique ROM(s) registered for it with the following MD5s:

  • 09e06b81b9e203caadfcdfe3d0c9d54a
  • 25b6d4da854a9c3dc6ec1f6d0efabaad
  • 38855252759a5e7cad8883b06cb32190
  • 4b87392aaf03517d3f45ebf06eb2d4bc
  • 4d4a09b0db92296cd5f65a08f1f2d95c
  • 539a9e7561dda313c0e62486815b4825
  • aa320a1cdf7aba76915cdb812d11a7b3
  • abcd02c28e3318827fec1fdaeae982dd
  • b26254b9c81e97b7398e58096d0c48a6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2961 b/gamelists/snes/linkedhashes.php?g=2961 new file mode 100644 index 0000000..6b6a6b8 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2961 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e89351869362e0e8e2c4a1c274fe22f7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=2965 b/gamelists/snes/linkedhashes.php?g=2965 new file mode 100644 index 0000000..138b750 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=2965 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 5b042f9443d8338e0eb7e2604f9a3363
  • 9a3fbda325a00ffdc28c22393ba2ab32
  • feeed7666e84d0e23a1c8a4e7401464d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=300 b/gamelists/snes/linkedhashes.php?g=300 new file mode 100644 index 0000000..e18e47c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=300 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 43275cdd632f28f2619854e6f1c5c3b8
  • 8633f40194d4ef61458ab8c24c14dbb5
  • b6f4eb1f8ef112982ede66075bc48bfd
  • bef3928cb53e17cb641446f9c3cad22f
  • dc629be2ee515461315cde57210e36c0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3041 b/gamelists/snes/linkedhashes.php?g=3041 new file mode 100644 index 0000000..00d692a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3041 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 244e77a77d45d1228363a13b8d6c97cf
  • 32314ad978deecd5fef5ad5e55906d1e
  • 84637fda1475bc7cdcc8f9f351255145


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3052 b/gamelists/snes/linkedhashes.php?g=3052 new file mode 100644 index 0000000..517ead5 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3052 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 264043e59c24c718c421c0a6b70d568d
  • c656e7408b5ef8a774ea8b354bf47779


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3054 b/gamelists/snes/linkedhashes.php?g=3054 new file mode 100644 index 0000000..abfae56 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3054 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • aed218957ef8aee5e6b63ba7220120e3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=306 b/gamelists/snes/linkedhashes.php?g=306 new file mode 100644 index 0000000..9503179 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=306 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 25079ae8cf72ed2138e6ca781a2210e9
  • 4441d7c6dc0b43b769b620ac4dc950e8
  • e3f9cc6d8321fa661a30cabe5dce141a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3076 b/gamelists/snes/linkedhashes.php?g=3076 new file mode 100644 index 0000000..551168f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3076 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bd6c161e1e23419960561536994a2e1b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=308 b/gamelists/snes/linkedhashes.php?g=308 new file mode 100644 index 0000000..7d57668 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=308 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 59038b900a9b079d2b3a8cab15a62635
  • 77c5cb84c9768756c13fa8f956bfb11e
  • 81d92bd000f16015c2c031b9aaec0589
  • d25a66477e644b12d8089dc06f19ddb3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=309 b/gamelists/snes/linkedhashes.php?g=309 new file mode 100644 index 0000000..7725688 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=309 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 02c9c7e7914f9808487704e122554d4c
  • 0cf58a4e75aec26accf3d27be9b7c61e
  • 0e9ac29d22fa4b3faab2b453ca7d369f
  • 39fc79b790656e145af9b53cc91a038a
  • 3a3ee93db76e2c5ca85df45564f9a9b0
  • 68f9192f7d9553327a976662af9c331d
  • e77257db338ff1001c77d753b2605a6f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3122 b/gamelists/snes/linkedhashes.php?g=3122 new file mode 100644 index 0000000..e3aab48 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3122 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 911b6ad146e6bff67f82de466b7521c7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3135 b/gamelists/snes/linkedhashes.php?g=3135 new file mode 100644 index 0000000..1e9b958 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3135 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • c4b283e04966e9ab9cdc76f51d9969cf
  • fe37b170c0c868c3aa1d67bdcf9df37f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3146 b/gamelists/snes/linkedhashes.php?g=3146 new file mode 100644 index 0000000..294cbfa --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3146 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7bab28c964f9306b161bbef8871e17a7
  • 98498d7844af32050feb2aa452c20e2d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3148 b/gamelists/snes/linkedhashes.php?g=3148 new file mode 100644 index 0000000..3286704 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3148 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2152cca035b8e3080d9eddb5bea8d94d
  • 9c0e97741d4558578c57e3f79e0adb44


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=315 b/gamelists/snes/linkedhashes.php?g=315 new file mode 100644 index 0000000..564219a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=315 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 8494f2342d8717c477702cf1c09c91d6
  • d7f8505280eb38ea52c8d1e3712f7c6a
  • dbf576310985b10fa48c6a1c8915b19d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3158 b/gamelists/snes/linkedhashes.php?g=3158 new file mode 100644 index 0000000..772104e --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3158 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • e1a4fda6e3f7b704d820aa6a80f261d0
  • f46eef74bd78ccd64a29028dd5bc4943


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3166 b/gamelists/snes/linkedhashes.php?g=3166 new file mode 100644 index 0000000..e2a5498 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3166 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 1b977c1e3af2666a1d348cc0b9cc4a94
  • 1ea59724da24b4f8cd835ddc60bc957b
  • 46c90dcb8efc0e1c89bcdcdb969146f3
  • 9c4bf518b07a2914e1e12794289eb264


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3180 b/gamelists/snes/linkedhashes.php?g=3180 new file mode 100644 index 0000000..72b904c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3180 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 2c22830019d300eef94e52a31f7b9a4a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3183 b/gamelists/snes/linkedhashes.php?g=3183 new file mode 100644 index 0000000..f4ab20c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3183 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 216de312ea7a62f41e323a7c78815c99


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=319 b/gamelists/snes/linkedhashes.php?g=319 new file mode 100644 index 0000000..27eb054 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=319 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 18 unique ROM(s) registered for it with the following MD5s:

  • 0c249df34bdac1150de2f0db1ffa5569
  • 3bdc014de7ed0a7de617a872a13cda70
  • 3f0ea63c080a5503bd7dfbe59a1dba00
  • 4ac1842287c3db4172148b90aaf90127
  • 57ac2f1ae3d9612f2e13f450f88f6170
  • 591582b6066dd57e7b0ee3338019f602
  • 855dc0f809b2e6b615b3cc705c42dc25
  • 9d56fb54af198d43dcd62550767999df
  • a2bc447961e52fd2227baed164f729dc
  • a326a96684e8e96f262eba4a729c16de
  • ba44e14be4455f016e077a66bf126d8c
  • bc55726c265dfff1fa23b4996fd94437
  • d226d3c38d068cfcab552ce5b64b105c
  • d555a230f7fdfaa2518de2edfe6ca726
  • db93cc6dcca87aa46e662338e28fe848
  • dedb5794e3b00473777852a75520278a
  • e5a720b2304e2d30ca85c5ce52a2e765
  • f65b12390ca5c55ba37d2eefbc4f737b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=320 b/gamelists/snes/linkedhashes.php?g=320 new file mode 100644 index 0000000..4101e25 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=320 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 4890095da7da5dc90112ad6b7e0976a8
  • 5ece56f9a92f4c243ae9311b9e1965f0
  • 9e87ec65114c37b4ad6362c80fc28b89


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3208 b/gamelists/snes/linkedhashes.php?g=3208 new file mode 100644 index 0000000..102bdba --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3208 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 18e273ec3a83a25986dd8e7763dc62d9
  • e47f184fd5d2285bcc4ee07d990f5375


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3225 b/gamelists/snes/linkedhashes.php?g=3225 new file mode 100644 index 0000000..6998203 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3225 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 604b3af2b55fb14a61a9c736a4420037
  • b1774f03700dfc311bfd86411db629c3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3226 b/gamelists/snes/linkedhashes.php?g=3226 new file mode 100644 index 0000000..60a1d64 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3226 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 2a2152976e503eaacd9815f44c262d73
  • 3253fbf00a560ed8cafb5d603b25e42e
  • d5217f2137a4f4df63d83264a9a92bcc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3227 b/gamelists/snes/linkedhashes.php?g=3227 new file mode 100644 index 0000000..2f31db9 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3227 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 34255c940ffdafa25235a7b3c9093186
  • a38f7575e15258a7dfe2faae7638a2d6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3228 b/gamelists/snes/linkedhashes.php?g=3228 new file mode 100644 index 0000000..b6e1c50 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3228 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 18db415de1a6eaf478852bd1f1f63c3a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3229 b/gamelists/snes/linkedhashes.php?g=3229 new file mode 100644 index 0000000..8cc9edb --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3229 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d097b8f2871522c7c1d2bbd18e7c9ad4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=323 b/gamelists/snes/linkedhashes.php?g=323 new file mode 100644 index 0000000..f18f60b --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=323 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 1288de058352d6f9c3ba146a61581555
  • 3561d8252459e3296de17e81f1c00d35
  • 488e275f8c35e1393e1a61fe94e02dee
  • 4b78f90a4363e63208c3b8d7a1db39db
  • d3345c674dee52c654f6859acde2ed1f
  • d67b06024914bb0ec0bd2f04fba75169
  • f6f08f33e3a5b92f30a5c47db9eda75a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3230 b/gamelists/snes/linkedhashes.php?g=3230 new file mode 100644 index 0000000..f032d07 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3230 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 32b01a3af01aaaf7c65ba5d193e00050


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3231 b/gamelists/snes/linkedhashes.php?g=3231 new file mode 100644 index 0000000..74e416b --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3231 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • b3b68501b890b87074e8aa9e4e7adf72
  • f20ee859055845bffd2b3d1b2e9a4ec6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3234 b/gamelists/snes/linkedhashes.php?g=3234 new file mode 100644 index 0000000..0393784 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3234 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • ab93c401a780abff73c529cf81dd5c7a
  • b76d8cc24a6965823b42d546f528730f
  • c918a40bb2b3f44f3468d6a1ba0a5f88


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3240 b/gamelists/snes/linkedhashes.php?g=3240 new file mode 100644 index 0000000..60f1645 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3240 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0b3fe2b7c34687107e91497f1aa8705a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3244 b/gamelists/snes/linkedhashes.php?g=3244 new file mode 100644 index 0000000..3d0a38f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3244 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3f26c6bfad366d6fc84666d7d5e22c2f
  • 673c149e6c72fc7b258f32e7d981ca6f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3248 b/gamelists/snes/linkedhashes.php?g=3248 new file mode 100644 index 0000000..6415c4b --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3248 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bf356060c13d1a841e6b3342d1e9c981


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3254 b/gamelists/snes/linkedhashes.php?g=3254 new file mode 100644 index 0000000..bd13614 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3254 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0f7d28c1750dd44cd9da198bd3fe2ea8
  • a1c9f6e6191d483f33f0369fad43ea22


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3282 b/gamelists/snes/linkedhashes.php?g=3282 new file mode 100644 index 0000000..60413bd --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3282 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 539a4a95e95fa890ee35b9988f0da888


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=331 b/gamelists/snes/linkedhashes.php?g=331 new file mode 100644 index 0000000..ebcee50 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=331 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5b403d2786e96cebdac9ad459855a217
  • b6117d7ae13c9afc785d5b6b0afd8bae


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3311 b/gamelists/snes/linkedhashes.php?g=3311 new file mode 100644 index 0000000..4ba04ad --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3311 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d193b7ee202b26c11eaa0ecbce03ba38


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3314 b/gamelists/snes/linkedhashes.php?g=3314 new file mode 100644 index 0000000..b994c3c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3314 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1746f6188ced148fcc59b3c31d165496


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3315 b/gamelists/snes/linkedhashes.php?g=3315 new file mode 100644 index 0000000..f889290 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3315 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 500f024b10b8af520bd2229c3add874e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=332 b/gamelists/snes/linkedhashes.php?g=332 new file mode 100644 index 0000000..d6d2414 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=332 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7981be58e5eec603c585a0f1a3190840
  • 8e3c8f4883c9a523a9a2750ffbdec319


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3322 b/gamelists/snes/linkedhashes.php?g=3322 new file mode 100644 index 0000000..7736515 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3322 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b37f2dead6d4c13756bacab8bd0dcbbe


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=333 b/gamelists/snes/linkedhashes.php?g=333 new file mode 100644 index 0000000..f6707bc --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=333 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1e1b47d5e5b0d9faa5447273a52fc6ea
  • 75e33def568c439803994ef286e2fc3f
  • d3736d23fc0bfb710826c5efa64e163e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3346 b/gamelists/snes/linkedhashes.php?g=3346 new file mode 100644 index 0000000..f17ead9 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3346 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3883af40b8b5b0696e58451f5c14997c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3351 b/gamelists/snes/linkedhashes.php?g=3351 new file mode 100644 index 0000000..ca0eb82 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3351 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 01ea64bdc27b6e6932e238be1f2d092f
  • 45d7de94c15bd01bc3d02a591469df40
  • ce9b7f3572867f3c1c6ff889b02a63a4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=336 b/gamelists/snes/linkedhashes.php?g=336 new file mode 100644 index 0000000..77dcf9b --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=336 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 37d27c5b88e4a25d079c0e02635bb438
  • 557a08391bccdc111ddda81d3f950cb7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3362 b/gamelists/snes/linkedhashes.php?g=3362 new file mode 100644 index 0000000..963a546 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3362 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 25e9c4f973f67edf48a69e9211e78e28


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3363 b/gamelists/snes/linkedhashes.php?g=3363 new file mode 100644 index 0000000..9965183 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3363 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 38de95c1e45b718fa97a8648b0c60993
  • 7ccd3d8fc102f5898f60e85d3a58344c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3364 b/gamelists/snes/linkedhashes.php?g=3364 new file mode 100644 index 0000000..92eb401 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3364 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 054ecba340b1e525bf276031c46f5421


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3365 b/gamelists/snes/linkedhashes.php?g=3365 new file mode 100644 index 0000000..661c9b6 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3365 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 55a870d58c2ea285cb9cfcae1cea0a05


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3366 b/gamelists/snes/linkedhashes.php?g=3366 new file mode 100644 index 0000000..06eedfd --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3366 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6b8b0ead545cbca03a26a3d9dc1b811a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3367 b/gamelists/snes/linkedhashes.php?g=3367 new file mode 100644 index 0000000..f658500 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3367 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d86f9b3598db6c8f900ac2e12106b705


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3368 b/gamelists/snes/linkedhashes.php?g=3368 new file mode 100644 index 0000000..512ce7d --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3368 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 542d560b32b49dd9b040260e0113a976


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3369 b/gamelists/snes/linkedhashes.php?g=3369 new file mode 100644 index 0000000..d185b57 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3369 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 728878c15773d06b468dffae11b83e3f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=337 b/gamelists/snes/linkedhashes.php?g=337 new file mode 100644 index 0000000..88736fd --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=337 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 12 unique ROM(s) registered for it with the following MD5s:

  • 00f0ba49b5b2f140b307afbed33c7997
  • 0f1be472a6e438508cacd82e3f714180
  • 2e604bc12fb8f9467765c807c24877fa
  • 30c5f292ff4cbbfcc00fd8fa96c2de3b
  • 323a37ccba32104beef7ff7dfc7ce894
  • 5d4890ace4f1ace435cbe9b74b0b16cd
  • 8f77b601c1f37033a47dfaa13fb1059a
  • 94df8aeb9a270657eb52e9ba30cdaae6
  • 9fa0dcc7025ef673dff8b2da0dab5a2a
  • a9b65f074001e139d42e80fa8e8bb023
  • b9f89e1970cb7866b5205f840968f3bf
  • cd502daddcc7ea3fb2e86c1f0f8b93c8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3374 b/gamelists/snes/linkedhashes.php?g=3374 new file mode 100644 index 0000000..121795c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3374 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e57ff9a6f8a23935a1171f871c0ce68f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3389 b/gamelists/snes/linkedhashes.php?g=3389 new file mode 100644 index 0000000..20b6bcf --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3389 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • eb9174301c3d2ff6871cc5aef8b9eb4a
  • ed127dcb55f9005e4e496c3cfca3f5b8
  • f551044f2365e40fd2db476e8224b241


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=340 b/gamelists/snes/linkedhashes.php?g=340 new file mode 100644 index 0000000..f2500e3 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=340 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 2d8f602d0fd63342ee848eafdc54297e
  • 4a84b24f08be0fd67c4cfe3e30fd432d
  • 756ee9b9b27a3637467c8726b5213e39
  • 810e0bdcd8d3d7aa2f4e26689e994bfb
  • 94d30063d9b17567d32079e766251569


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3404 b/gamelists/snes/linkedhashes.php?g=3404 new file mode 100644 index 0000000..1e5165c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3404 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 853f63b03b39f509b726b96af426138c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3408 b/gamelists/snes/linkedhashes.php?g=3408 new file mode 100644 index 0000000..94b2a9f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3408 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 32cfe65f6dd6e4b58839729a3b1dbd60
  • 5a2d3c77194307b4a8e05030be486c9b
  • 8cb9d2d478be4b4cdf949778fbc88286
  • 9698ac310bc4a2a35999638afd2d23b8
  • b0eb38111b14367e73649d96674a0266
  • d670abc190f671e20cc407689ddd78eb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3409 b/gamelists/snes/linkedhashes.php?g=3409 new file mode 100644 index 0000000..46a9167 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3409 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4e3a04e52dddc4e8a676386bea87d3ad


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=341 b/gamelists/snes/linkedhashes.php?g=341 new file mode 100644 index 0000000..fc68a6a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=341 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 21 unique ROM(s) registered for it with the following MD5s:

  • 03a7f127f00cfd8252f6ca766e80f6ba
  • 0eefeb0b4c5a775a5535b2660b48e365
  • 229d423ea8bb85013b7ea45ac57acc72
  • 4ef2fb7801670093724b040b58d33766
  • 544311e104805e926083acf29ec664da
  • 58f2e48a0742216aab1164740afdc38d
  • 69652127d7ab832ca93a26a7935dbdfc
  • 8060d344e59666b19b389be2051f8f7c
  • 8b449c1a94ea898f5c33ccac4cda432d
  • 93209b43d48441e90f45e6ba035c7596
  • 97bf78e916b80f47cf35edf502be34dc
  • a3cd94522922af8f9d12c042e03c2d35
  • aad61f72f56198a3c982293d0f43b363
  • ac5394c8dba7139bf252b9e1d34c696d
  • c2a6d4eea3cb3081fe6105d47b388841
  • cb1987f005f55832a9607695930fda2f
  • e2728585b65a84c28f340fb6c36a6281
  • ea12d01beeb8bc3376d0a91a80fdc201
  • f1358c9203a76ccedb6d4d0ccf233431
  • f3334df6425f78c34bef9afbc8118150
  • fc2a3e33b29a9a65b7af8cf708bd081a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3411 b/gamelists/snes/linkedhashes.php?g=3411 new file mode 100644 index 0000000..ee95052 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3411 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • c119885099f7ed59d1f21f61b7578e9c
  • d6599645c84c1bf43791b947fe28bba7
  • f43300370c180334d2b118c87eb5319c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3414 b/gamelists/snes/linkedhashes.php?g=3414 new file mode 100644 index 0000000..c65866f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3414 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • afde99960f1b2ec92d0dac97ecf5a5a7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3418 b/gamelists/snes/linkedhashes.php?g=3418 new file mode 100644 index 0000000..cb2dc08 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3418 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 057f03c63b9cdb4b1e7dd340982f2640
  • a2d374d766f9fa05a79bd8c41ba439d4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=342 b/gamelists/snes/linkedhashes.php?g=342 new file mode 100644 index 0000000..84131d2 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=342 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 059c8d6b72d95edb9fc619bee864ef3e
  • 8c70e7de02f2056a646511731b4ecdf4
  • ea30c4f341f6b7a6e290699460ba6c51


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3430 b/gamelists/snes/linkedhashes.php?g=3430 new file mode 100644 index 0000000..37abefd --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3430 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cb802f27cab677a9b5c1c7fa4258e259


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3433 b/gamelists/snes/linkedhashes.php?g=3433 new file mode 100644 index 0000000..9756bff --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3433 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 93091900ac3b48f7b348f62026d4d2c7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3438 b/gamelists/snes/linkedhashes.php?g=3438 new file mode 100644 index 0000000..54663ae --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3438 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 11 unique ROM(s) registered for it with the following MD5s:

  • 4eb262177b69764730614671bfeb1e51
  • 55d9cdb05f53a3f7a5e3eacb81b28f09
  • 57f96c09eaea20382a52f55e5d4c7871
  • 5daed13319a6db054c85c8c55f0645f2
  • 7f9fdaca67c11b22a2e72eee0927d843
  • 9239e1c0687d9ea58e7e887f1ef451bf
  • 928363bef92998be478cbe38d6ea9b10
  • 97380a1a0b1246c186c917a14fad312e
  • c9ddffdd95603bb91f9dc1d772fa059d
  • d77ee2ef57c593eb4b04e7f4db33a2ef
  • df58d85e62283c31dbed8d9875e45bb1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=344 b/gamelists/snes/linkedhashes.php?g=344 new file mode 100644 index 0000000..c614d73 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=344 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 01e10d6afdd0c4a3e160ebb7286c18ba
  • 063a164fdc7b32713d7e664b0d231aed
  • 424748cc6d172de31c477847d8432c39
  • 438e5496dc5dc09d0ff3693b2aea2f96
  • 4531c7aed14908a432f175351508f8e7
  • 9f99aeb900c2e534dc44ff23e4ef9cef
  • ede82658dafdd6febbfbe6a9c9082500


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3495 b/gamelists/snes/linkedhashes.php?g=3495 new file mode 100644 index 0000000..46a518b --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3495 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0301d2e518d991913f2b087e9e584ed9
  • 22b7b1143798be3c2193c70d9ee8fc31


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3496 b/gamelists/snes/linkedhashes.php?g=3496 new file mode 100644 index 0000000..7786fbc --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3496 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 2d753af166f01039cfefaa3e08f3ac6c
  • 93ab63e78f764c5ebca21cbf706857ba
  • a4d4948cefa09efcbfe4a288f66e5347


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=350 b/gamelists/snes/linkedhashes.php?g=350 new file mode 100644 index 0000000..6600d15 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=350 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 45ec2656d6d074c18f1642e663ed97e7
  • 807009d25eb31559974daa3e39eeccd7
  • 8b047f05c1cb3d8214d8ccd1a4f0f802
  • d61a2b7f57a1c944d5b6b7deebf90131


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=351 b/gamelists/snes/linkedhashes.php?g=351 new file mode 100644 index 0000000..c837487 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=351 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 71e8a70dd4a17b8278d03d74c8372e77
  • 9dce6a9dcbe4e304d67b9e8fd8999e7e
  • b325e403db2fc4917248b7528c46b0e0
  • d3f870212889f9ddfc090e88e2e30690
  • def66db12f5e644c0cf00c42cfa7ae7b
  • fd4fe8d98e2f63f20cd60a20a87d3024


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=352 b/gamelists/snes/linkedhashes.php?g=352 new file mode 100644 index 0000000..7871e18 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=352 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 067ad2453b32cb6fe595fc822b780700
  • 36d4aba59259dab4144afa655e44cf25
  • 9aeffe095448fb3bfc05b876f7eec3c5
  • b34ef86f2386144fc2b73bdf0f9afadc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3528 b/gamelists/snes/linkedhashes.php?g=3528 new file mode 100644 index 0000000..4d7f2a5 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3528 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 7981c47e3b3e957be5b352f8508c3f6e
  • 7f2c8d00101bd3ee2f4ef739e499a302
  • 936ce8c534346e61d8e21efba9177184
  • a2959ad8c1ff5f2719264ab4c7e40464


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=353 b/gamelists/snes/linkedhashes.php?g=353 new file mode 100644 index 0000000..6705389 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=353 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 52a381970b31ba9d8a8e7e5fb660a888
  • 56525a387f310dcf6db750cbcfec5926
  • 822335a339952dc6f5fa16762db81648


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=355 b/gamelists/snes/linkedhashes.php?g=355 new file mode 100644 index 0000000..45032b3 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=355 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 11 unique ROM(s) registered for it with the following MD5s:

  • 0f037336dc9c1f6f5819368ea7601c3c
  • 3f4d2b3c92b6308beb1af2ce15c29deb
  • 4efe30a6d447c87e59e14528281d0d17
  • 57fe0fef7777f18ae67447e8c44e26a2
  • 608c22b8ff930c62dc2de54bcd6eba72
  • 6f7bf0621e2e8a0a4b65b58a01363239
  • 761e274113f51c809e82fb5fb70b8d16
  • 7b90d8020b4387141a59fdd0d5d1fcf7
  • 7e966335260ee8daacd88d9d5195eb6f
  • bbb8eaa98e03994abc5bf29afc4dad3d
  • d00afb3bfb75e7b3e2dab6736fa05f62


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3558 b/gamelists/snes/linkedhashes.php?g=3558 new file mode 100644 index 0000000..bbfd861 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3558 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0da2ae976f1c4b08243d2419812ab3a4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3584 b/gamelists/snes/linkedhashes.php?g=3584 new file mode 100644 index 0000000..ce8e99f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3584 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 427fe52b3883ee077bf189476492c2f0
  • 442f5cefd72c20be79d278d57c61fe1d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=359 b/gamelists/snes/linkedhashes.php?g=359 new file mode 100644 index 0000000..1ada45f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=359 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 7b5534c75a19f851b0942f1132ca8d78
  • a42772a0beaf71f9256a8e1998bfe6e3
  • b8bff972c811295db5f32a7d24d76f89


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3594 b/gamelists/snes/linkedhashes.php?g=3594 new file mode 100644 index 0000000..77409f1 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3594 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 681343f71b5fce4f7e960f3091e56026
  • 6eacbf1ecd49cd5cbca6ab5a0f125141


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=366 b/gamelists/snes/linkedhashes.php?g=366 new file mode 100644 index 0000000..52a0024 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=366 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 4a34ab48cc89b871d7b3e4c15fedf2b6
  • 4d26c7f07ba83b31df193ddc487431e9
  • 7e52067e9cb3e6a190272a9d1d75a9af
  • a89681df8060e78bde0dd8340c209649


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=367 b/gamelists/snes/linkedhashes.php?g=367 new file mode 100644 index 0000000..4b4bd81 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=367 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • d2ee0f07eb882c6a989eef67a4a6f945
  • e5ffb8ca8331076037a32db94627518c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=373 b/gamelists/snes/linkedhashes.php?g=373 new file mode 100644 index 0000000..76d29ef --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=373 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 510b850d22a6f3d67ccbfdd979501943
  • 6c17982da3e80ab566ad3fbc2112bd1f
  • bf692f974dd4f9760b4ff8f95695263d
  • d4f0a4a246853e1fc6a140d051f68bdc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3754 b/gamelists/snes/linkedhashes.php?g=3754 new file mode 100644 index 0000000..e6dfcb0 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3754 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 8ae7779dd8107829b272d84007284518
  • b72ae31b25b7e1c122f3ba92a0038a1e
  • c991e96ac3ca65ece8058a9be1f137fc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=379 b/gamelists/snes/linkedhashes.php?g=379 new file mode 100644 index 0000000..6f48859 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=379 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 9 unique ROM(s) registered for it with the following MD5s:

  • 1183ee757a8654b1e5382722eeedc7b9
  • 4d426a7ed36cd7ef896e31cdd48ed24e
  • 603bc3c8d523db5d58f4f536962e7312
  • 61a86aee5792eaf64a04bcb30257d985
  • 6b09f8c51e5c989d950f9510f1f73224
  • 720bf027b3cf93d58bafcfd8e86ec6c1
  • 8e00910312b30663768d907114d301c2
  • 9852918c1da7b69fa111f79b4381052c
  • b432e0af61a58c934b702b18ce05650c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3799 b/gamelists/snes/linkedhashes.php?g=3799 new file mode 100644 index 0000000..7c307d1 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3799 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4bda93614ce9c505af9c0bc22a18590f
  • a17d52680cc29e46ce41da360e8febe3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=380 b/gamelists/snes/linkedhashes.php?g=380 new file mode 100644 index 0000000..2dbef75 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=380 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1fc2ead45eadcac586d65e218b895912
  • 2ead975340211e3f6893fde8dd279689
  • 5ab8ab43964decdfc2b15ecd41d50d2a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3805 b/gamelists/snes/linkedhashes.php?g=3805 new file mode 100644 index 0000000..8a42b7f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3805 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7ac06e83800051995bbd2189d1415063


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3825 b/gamelists/snes/linkedhashes.php?g=3825 new file mode 100644 index 0000000..f78e58d --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3825 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6b840c23b83c4675f25618acbaf2cb43


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3834 b/gamelists/snes/linkedhashes.php?g=3834 new file mode 100644 index 0000000..ad31478 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3834 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0dc4efac96b9e965009e9c613913c6f8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=385 b/gamelists/snes/linkedhashes.php?g=385 new file mode 100644 index 0000000..965f81e --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=385 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 4d82461e69cf47dc958569af58b732cd
  • 5201a8e19a029734e5f720bc7a5134e5
  • 7bceee05743737b2553803651534402b
  • 8e790ce4b9bb34bbdf365e6665eebec8
  • ce41fb926db8fcaad4665774f3731b7a
  • ff08ca993882bfe2ab860865897bfe77


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3851 b/gamelists/snes/linkedhashes.php?g=3851 new file mode 100644 index 0000000..38476e2 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3851 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 96c38a14f55c58b51435e9bdb0235998


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=386 b/gamelists/snes/linkedhashes.php?g=386 new file mode 100644 index 0000000..70b8ca6 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=386 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 778db880d42aa2ba19adb71f69e7067e
  • fbf6512dcb3905a0e1847b397f0f5886


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3870 b/gamelists/snes/linkedhashes.php?g=3870 new file mode 100644 index 0000000..3b59533 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3870 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0d3595a81c50d5dda714cd2fd66164b2
  • 47a7e4dd19c55da717105e1acdd2d4a1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=388 b/gamelists/snes/linkedhashes.php?g=388 new file mode 100644 index 0000000..580c0e6 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=388 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cefe028852135a1695ed9f6e692bc0ca


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=390 b/gamelists/snes/linkedhashes.php?g=390 new file mode 100644 index 0000000..2e238fd --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=390 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 000c3bb276fd456e0e259553dede9ba4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3900 b/gamelists/snes/linkedhashes.php?g=3900 new file mode 100644 index 0000000..861ee2a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3900 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 66836fdf6ab04377f8f904996fc70e42


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3907 b/gamelists/snes/linkedhashes.php?g=3907 new file mode 100644 index 0000000..3471019 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3907 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b1a4a4696e579168d5b1b6e2c8ba8440


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=391 b/gamelists/snes/linkedhashes.php?g=391 new file mode 100644 index 0000000..243a3da --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=391 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 34d0be52d31ad10c5b8406dc8e238109
  • 5a87f18403de943e597f0280a26d4ffe
  • 9e379f323acc381163edb6c6a24f9c1a
  • a29c0a3e8a340aaa7672b00b190be396
  • fbb5496aee86f76d287bef9a324f12ba


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3912 b/gamelists/snes/linkedhashes.php?g=3912 new file mode 100644 index 0000000..7a3482c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3912 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5d6716d6793e9f9c456265d18cf763bc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=392 b/gamelists/snes/linkedhashes.php?g=392 new file mode 100644 index 0000000..635eb17 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=392 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 03d30ca9aaa89738640cf14532ddfe6c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=393 b/gamelists/snes/linkedhashes.php?g=393 new file mode 100644 index 0000000..4ddfba3 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=393 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 77bf37a9a6779a1d7e109bc1a707ecd1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=394 b/gamelists/snes/linkedhashes.php?g=394 new file mode 100644 index 0000000..9d2c819 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=394 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b4fc60315646bfb9280d7edc4e59b5cc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3943 b/gamelists/snes/linkedhashes.php?g=3943 new file mode 100644 index 0000000..546de53 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3943 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 865773fe1edd5bafb674c397f182228d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3947 b/gamelists/snes/linkedhashes.php?g=3947 new file mode 100644 index 0000000..68f49e0 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3947 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1a0bef681793f1f9a57e3935c64c36df
  • 40df440bb2ce415c3f2056d55f809c79


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=395 b/gamelists/snes/linkedhashes.php?g=395 new file mode 100644 index 0000000..e2b6084 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=395 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 1eb47d9f464f5d96109818eb8528d2c7
  • 699bbdffab13c41fa8d4a9b3c25d60e7
  • 9daa4a217e94d155e34849b9d1f84966
  • cbff9306a73d40037d872988b3ad3e65
  • d6ddca61a7f31eed247c429b0e528f3c
  • f8196954969a0eaac52022c57763c070


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3950 b/gamelists/snes/linkedhashes.php?g=3950 new file mode 100644 index 0000000..3ce5808 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3950 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ca99957ae4d43880530e362a9fb94257


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=3968 b/gamelists/snes/linkedhashes.php?g=3968 new file mode 100644 index 0000000..f336b11 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=3968 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e55cb77e878115fd5c224134450047c6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=399 b/gamelists/snes/linkedhashes.php?g=399 new file mode 100644 index 0000000..5b2e5b8 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=399 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 38129cf359c7bc93a82358fa305b07ae
  • 82582408c84c681385c625cfcf9bdb4f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=400 b/gamelists/snes/linkedhashes.php?g=400 new file mode 100644 index 0000000..414b004 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=400 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 9 unique ROM(s) registered for it with the following MD5s:

  • 0ebbd7367f16d49ed391555b5855859e
  • 10a894199a9adc50ff88815fd9853e19
  • 17134de4f12c04dfb07c4d957389840c
  • 23f403ab2499d5a9729e5b2d2b433b14
  • 35afb723a7a1166d894549519d78622c
  • 446e2b99dbc2bf9850de1ce708801ca7
  • 980b3b2397835bec7ef81b0d9eb17f1d
  • ef1be0d7bf5974e3fa037af16dbf5c2a
  • fffb4b5e896ba77d03a324294753c8b3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=4002 b/gamelists/snes/linkedhashes.php?g=4002 new file mode 100644 index 0000000..6ae7ad5 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=4002 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • b27591ad95c4904e584c5b2523de4b0d
  • f05e59ae38aed40de271e7aa8e392fe8
  • f630c6e0f11fd53d112f3dd004ea7184


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=4009 b/gamelists/snes/linkedhashes.php?g=4009 new file mode 100644 index 0000000..bb6e0f6 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=4009 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 49812bd8fc347c5c4d0d5207933cfd71
  • fb112de74fd8ba7e361d9448f0663320


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=401 b/gamelists/snes/linkedhashes.php?g=401 new file mode 100644 index 0000000..e3ec02f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=401 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 32fcfb6358da10ebcea6bb9fc99e4c8b
  • 676638e83ea0fd79ebde24674fcb948e
  • 744b9d1a382adfabf0515d6d0e5dfed7
  • 7672e7004036a6de6b349e0b6342a058
  • ea840d3722f90dee824f5064e171e510


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=4049 b/gamelists/snes/linkedhashes.php?g=4049 new file mode 100644 index 0000000..af824b8 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=4049 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f208e5cd6842a35fb01fee9fe81ced0f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=405 b/gamelists/snes/linkedhashes.php?g=405 new file mode 100644 index 0000000..f148057 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=405 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 23c2af7897d9384c4791189b68c142eb
  • 52f5b606b5757ab8c15a5f8ba87e4047


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=409 b/gamelists/snes/linkedhashes.php?g=409 new file mode 100644 index 0000000..c4e53c0 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=409 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 24efe7af3432fde7d765bdf2f06f6c1e
  • 36b0ef888d3e7352eeee792e173426dc
  • 44cb6bbbb233bc5d602d54fd418232f1
  • e589bc57614b0f70e833a89c15c2bb09


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=412 b/gamelists/snes/linkedhashes.php?g=412 new file mode 100644 index 0000000..df1cb15 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=412 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • fdecc2c3cb3c351dad5d54da7999d3c0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=418 b/gamelists/snes/linkedhashes.php?g=418 new file mode 100644 index 0000000..ad2e4ee --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=418 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 20f71930bc6fc4664ec55138aed7b85f
  • 3294de2a0353b5dd6d645820fa20362b
  • 8e1fdfcf4b3764499006e3677fd67b86
  • 9f056180691136a3ca7d4a868ade02b4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=4194 b/gamelists/snes/linkedhashes.php?g=4194 new file mode 100644 index 0000000..c2d77a6 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=4194 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 0d29c866ca032f64e20b0d379c3a5bcc
  • 1c4b9dc36d01f0509618d9769307c58d
  • 6bdedb1493ddc69b7c90b817c1f1ccf6
  • 95cd77ddd5d2d4f846183296226370d8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=421 b/gamelists/snes/linkedhashes.php?g=421 new file mode 100644 index 0000000..c27ec71 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=421 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 391c2d0e4e81ca2139bc86080a2c4d2d
  • d9b2a11d20a10fe4f82be4a92481d3d3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=423 b/gamelists/snes/linkedhashes.php?g=423 new file mode 100644 index 0000000..71d46f1 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=423 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 9 unique ROM(s) registered for it with the following MD5s:

  • 00015599daa62e3d705ea80a8df39f38
  • 083e99faf0df636ddd6893670114852a
  • 3126b05549a3730a1be69bdf029f18e2
  • 3c433a8aa73986e1361423303e92785b
  • 65281925a28959212e32ae99663484b9
  • c4c7e54b8fe38760d56efa929e798d83
  • c69cfc6d8f52631ece2a3041b1de0223
  • de0460f8deece08313ec509b6be192a9
  • e4327313c7ad91cf435b96bcea2d19d4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=424 b/gamelists/snes/linkedhashes.php?g=424 new file mode 100644 index 0000000..439f763 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=424 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 0833f8a2e93efc4ed15202585eef8462
  • 2159ccde960702ecfaa76fa979b55a86
  • 866b25cc8a348525a6ce344dc37916bf
  • e44b9987e33ef7237b24457a6c997723
  • eb6c366429a928ae6978e6c8a7478a61


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=425 b/gamelists/snes/linkedhashes.php?g=425 new file mode 100644 index 0000000..e6ffbd4 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=425 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 079eade13305bcc130e09597faeff4f0
  • d741108c2ec64bf52da7a0f70d976654


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=429 b/gamelists/snes/linkedhashes.php?g=429 new file mode 100644 index 0000000..b2473ea --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=429 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 4adfa292778a82285d80554ea6ed3497
  • 76fa6fdc5d0e0a52839d8548301644f1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=434 b/gamelists/snes/linkedhashes.php?g=434 new file mode 100644 index 0000000..eadc11d --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=434 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 43d393d1e6aeae259509dfea907dfb50
  • 96b4e98c45b9b77b2641d7f81d77e890


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=436 b/gamelists/snes/linkedhashes.php?g=436 new file mode 100644 index 0000000..0b2bbb8 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=436 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 0500e7dff0acb5b86e4909b7ddd41a76
  • 0832ab17819be1ac7056fb551b9ec5a7
  • 30729d81a5b1f83ce26631918062eb82
  • c9be62563253854cbaff00041e8e06c0
  • e292260abd6dad2348975accecfb2395
  • ee33097d436b4901a71f7e4c9a5cb409


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=439 b/gamelists/snes/linkedhashes.php?g=439 new file mode 100644 index 0000000..4cd029a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=439 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 25ef7365c2dad37357fceef8a5ca1d88
  • 6452748e3042c9b7a4ff37dde5e9e69b
  • acbf444f4fdba7d0f09f09c454991203


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=440 b/gamelists/snes/linkedhashes.php?g=440 new file mode 100644 index 0000000..789c911 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=440 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 186d7d1585dc6a0e9ad96a5740a1a03a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=441 b/gamelists/snes/linkedhashes.php?g=441 new file mode 100644 index 0000000..179f7d8 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=441 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 148dbe529816bb0721190b1d4b7af4f4
  • 8b37076e92b5c9f7a3055998c67b3807
  • a81880b811f55bd29a086cebe80a414a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=443 b/gamelists/snes/linkedhashes.php?g=443 new file mode 100644 index 0000000..a598d49 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=443 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 290ffe44a6d10ac30cea203c026daf31
  • bda740a4574c4c0bdb955d5c57ddb3df


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=446 b/gamelists/snes/linkedhashes.php?g=446 new file mode 100644 index 0000000..e964df7 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=446 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 90bb70c75f0000492f99725de54c264f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=449 b/gamelists/snes/linkedhashes.php?g=449 new file mode 100644 index 0000000..878dec0 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=449 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 953cf128f47276da28fdd7cc4788a20f
  • cdef890e99a0fb62c4d449d867c4244a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=450 b/gamelists/snes/linkedhashes.php?g=450 new file mode 100644 index 0000000..e3bbfd8 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=450 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 0ea349408473e47006fa2ad4471f4108
  • 299e96968accb96b9e0d9a4154e220a5
  • a18df6ae219a46d957b015ebac23e366
  • e1ff1ed4ad5dbdbe86774920dfb5e9d4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=457 b/gamelists/snes/linkedhashes.php?g=457 new file mode 100644 index 0000000..f7ad58c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=457 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 6ac508bddbabc699f181d7858ccfcf0f
  • b373b0cc47b3487343ea0a32d97f6384


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=4578 b/gamelists/snes/linkedhashes.php?g=4578 new file mode 100644 index 0000000..dd895d8 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=4578 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 3c9a6079146414790ad6712d48ab31a3
  • 82cbda347e2bdfb18ef8ee088f5ecc3e
  • edbcdbb13a00b3876b2160dbe7ad47b3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=4590 b/gamelists/snes/linkedhashes.php?g=4590 new file mode 100644 index 0000000..6c47804 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=4590 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 700f0a4b0d161669ea4a7e7385c6c16f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=4592 b/gamelists/snes/linkedhashes.php?g=4592 new file mode 100644 index 0000000..98508e4 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=4592 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7315e30fd09afd126d917f6358c797c7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=460 b/gamelists/snes/linkedhashes.php?g=460 new file mode 100644 index 0000000..146b907 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=460 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 89d7890ac87493e63438d973e9280361
  • eb658023bf0146062ed1e157bd12f867


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=464 b/gamelists/snes/linkedhashes.php?g=464 new file mode 100644 index 0000000..d8cae0d --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=464 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 2bca7c39496dd6f8d09eb1c8237f35fa
  • 85360c27567caad1a33967b513789c45
  • f638224ce95e2101c2948edf7569ac73


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=465 b/gamelists/snes/linkedhashes.php?g=465 new file mode 100644 index 0000000..52d2c25 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=465 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 2aef2ef396e58d2253614eee2a801b51
  • 670b523fc13f30128fd27bb571fe5c77
  • cab818ef062547dd0c6fa679435809cc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=466 b/gamelists/snes/linkedhashes.php?g=466 new file mode 100644 index 0000000..6b5a8db --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=466 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 10 unique ROM(s) registered for it with the following MD5s:

  • 2ae8161cb714f2dad38f845674553a4b
  • 6ff526f388a179ec6eba9907eb8e3254
  • 83b97937eb3926446589b4ab9ee9c700
  • 98458530599b9dff8a7414a7f20b777a
  • 9d6a4985c77a132b0e8cdf57dcdf5d03
  • b285148df1712acf50162bdbefdcf1e0
  • d323e6bb4ccc85fd7b416f58350bc1a2
  • deb3ec76b71419a4e793c70b49f105dd
  • f39d026f5bb47b1e8c72b36dca524849
  • f65bde686bda6226aea555858a74bb7d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=467 b/gamelists/snes/linkedhashes.php?g=467 new file mode 100644 index 0000000..7e0dead --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=467 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 649c377a7479c898b1933962c4badaad
  • c954a0e17237e073de42a2c86d3bef36
  • f57921c59512c5785f5d0ae16e43843e
  • ffa59d36484bffd65c39a0498a8541c6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=468 b/gamelists/snes/linkedhashes.php?g=468 new file mode 100644 index 0000000..1a576f0 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=468 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 262616f80a6c194527d41e2c72b61aca
  • 940fb1d47feb3ced3987ec6dd55ed73f
  • c48173fb44998ae5f6e74575d0b09182
  • c8657560db0885fa4cb51920678b24c8
  • e81e2c9108ad0d23e8cc8cff277b48f6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=469 b/gamelists/snes/linkedhashes.php?g=469 new file mode 100644 index 0000000..e691492 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=469 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1591463bf4e3c0c6633fd70a1b982c12
  • 301d8c4f1b5de2cd10b68686b17b281a
  • 6bac1d035e7284b5fba3577e3e88624f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=470 b/gamelists/snes/linkedhashes.php?g=470 new file mode 100644 index 0000000..9f0994e --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=470 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 4965bf09d25ea9c79a69dbc8f213c9dc
  • b863bddc527e21c26f14479289c8d164
  • cbef5f02304a2b821a0e1642a6307564
  • d83699a009a62480a7e7e9f1bb5bff6e
  • ddee4ddff2f3b6e31b8f73d0cb597ef1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=471 b/gamelists/snes/linkedhashes.php?g=471 new file mode 100644 index 0000000..3eefc4b --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=471 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 9 unique ROM(s) registered for it with the following MD5s:

  • 13e9da8d0f10133c81588f9b6d4e9ea1
  • 39cb0455fa8e9ac8074b385f448e4a2b
  • 521c005fd3a8c57af795f96760c0ff29
  • 755834770971c77a9c9ab8eed6c7b7a2
  • 76e566564716305d114581042e536b15
  • 83bc31008f43cea017cbb771a7dac68a
  • 960ae5101e63c6eaf8f370c360af7af5
  • ba69f7a7e29b1ac5d05afa61597551be
  • d0b68d68d9efc0558242f5476d1c5b81


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=472 b/gamelists/snes/linkedhashes.php?g=472 new file mode 100644 index 0000000..9daefb7 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=472 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 070582bb3cb2c3501738d91db530e2b8
  • 1674da9647562520cc36bb11ec203d71


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=4728 b/gamelists/snes/linkedhashes.php?g=4728 new file mode 100644 index 0000000..e9a2b3b --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=4728 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 9bd5b32d479983dd2c0b49020e812e69


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=473 b/gamelists/snes/linkedhashes.php?g=473 new file mode 100644 index 0000000..a91f051 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=473 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 120abf304f0c40fe059f6a192ed4f947
  • f8dc16289a2aa1c6144b841ad505164c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=4734 b/gamelists/snes/linkedhashes.php?g=4734 new file mode 100644 index 0000000..ff4815f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=4734 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 59593829d0ecb98d8c0b5cb5e20a4b36
  • cb4205a16f799451120ae8f55cd1f374
  • eeb3c7b0b62bdeb4f38ff3839770c6a8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=4737 b/gamelists/snes/linkedhashes.php?g=4737 new file mode 100644 index 0000000..59587a8 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=4737 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 1f83badc0b3a48e3eea63feb1f1952c7
  • 63ce924c3f1efc3ce167dd1cd3f94c4c
  • ac995ab6f5667be14eb6471458e491d3
  • c5888542c2583d3f518e2c6db2140aad


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=4942 b/gamelists/snes/linkedhashes.php?g=4942 new file mode 100644 index 0000000..8d188f3 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=4942 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 7b1e4990fc3d9c90690262cdb682d22d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=4944 b/gamelists/snes/linkedhashes.php?g=4944 new file mode 100644 index 0000000..39e906a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=4944 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b800e6b33df2e94586cdf49651727e8e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=498 b/gamelists/snes/linkedhashes.php?g=498 new file mode 100644 index 0000000..5ec6a4f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=498 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 23efa445cc013cab7906f34f062577c2
  • a641a33a829154f656ca00ab1ef35500
  • f2ae4374717f4e39df97fc0fd2a2bd92
  • fc4756b9c2f5f6bb73682b0d16c8c64e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=500 b/gamelists/snes/linkedhashes.php?g=500 new file mode 100644 index 0000000..8c4a6a9 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=500 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0990cda295bd51587c6e3f173bdadba8
  • 66da9c8252378694c747b0239d5cd36b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=502 b/gamelists/snes/linkedhashes.php?g=502 new file mode 100644 index 0000000..ed85c58 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=502 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 24504179425a8b89cd8ce3ed2d99b514
  • a072455fa9ad963d09afa353e5c65793
  • b1bdc9caf5bb8191ebaf3f2f42410969
  • d23c747b00b84195d34018f5461eea44
  • e5040a079ff03eb93747424af9be75f4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=5050 b/gamelists/snes/linkedhashes.php?g=5050 new file mode 100644 index 0000000..758c990 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=5050 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e5a1e8bacc73213087eafdef666e5d0d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=518 b/gamelists/snes/linkedhashes.php?g=518 new file mode 100644 index 0000000..f54966f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=518 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 3d2bf0696342a31e50f1d81de49721f8
  • a8711c9185c7a6c52b863567b188ce1e
  • c86c99d1454426b908c89fd1caa858dc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=5209 b/gamelists/snes/linkedhashes.php?g=5209 new file mode 100644 index 0000000..6eb0702 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=5209 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7d66769f53cb3fb7f5c73044876db240
  • e7de4068dd0577ec5567783739839a76


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=5211 b/gamelists/snes/linkedhashes.php?g=5211 new file mode 100644 index 0000000..fd02176 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=5211 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 8f8283f737b4ff84e309ea6264725641
  • c1008db81315057be63c2901a39eb1fb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=525 b/gamelists/snes/linkedhashes.php?g=525 new file mode 100644 index 0000000..ea0c28a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=525 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 34cb1b1d51723453642ad9a5f5f0f572
  • 4ae3041c40b5392e7e03d2b82c20c308
  • 6c000b7570beccbcc7306e93e0c7e9eb
  • aa47e31d088a334bbd15154e847900d2
  • be4f6b60a2ce518ba46c9f33e4fa0ff5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=5250 b/gamelists/snes/linkedhashes.php?g=5250 new file mode 100644 index 0000000..df78072 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=5250 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 7a73f2987f8b55d244732ab930abba09
  • 7deefb54e2775b192e69a1141e7312e9
  • b541901b1fff1cbe79626a30b714051c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=539 b/gamelists/snes/linkedhashes.php?g=539 new file mode 100644 index 0000000..995ea85 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=539 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 38a8aa1000a56b2a591352ebf45aa3cc
  • 49d619c689c21a6e41e2b98c31f5838a
  • 6e3f02a84e0f2d4f5a110db10928d8d0
  • 8867e49127a02de60d3a0bc91c40019d
  • 97fe7d7d2a1017f8480e60a365a373f0
  • fed5ffa92081a9fab6acf1da59841c8a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=555 b/gamelists/snes/linkedhashes.php?g=555 new file mode 100644 index 0000000..4ca8571 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=555 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 3b74c6e1887b1cbf4b5b9ee10e7c2b3c
  • 53b2c91892b09c47ac4408beccac5c66
  • ac39bcc1c19813048903098d0c1e4935
  • e2c3cc007c2c1c358bfe50ead5c8b9ac


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=558 b/gamelists/snes/linkedhashes.php?g=558 new file mode 100644 index 0000000..2459a5c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=558 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 25860c781863e4709483631267636ab6
  • 39a55fa140d4966d2cd58cc60b2a0194
  • cb472164c5a71ccd3739963390ec6a50
  • ce1e3e33b6e39d37b43d7de599f9e785
  • f1f6c8b4a853748d7dd0f1b9028bed16


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=562 b/gamelists/snes/linkedhashes.php?g=562 new file mode 100644 index 0000000..7cc11e7 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=562 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 094f035993e9724647b61ddcba1e9a7a
  • 3470065e780b127323da7bf950306f9e
  • 40f855c755b5d340e63134dcac3471a0
  • 75e904e769a99fe3c5207cfe13b5f52b
  • dbb77967e6744f9f0b5e690de3c795f8
  • e36878c7d6c7ecbb090de659e5f3893c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=5629 b/gamelists/snes/linkedhashes.php?g=5629 new file mode 100644 index 0000000..74ffe20 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=5629 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 0c9d4bcf530dc77e07308b7fd201389c
  • 0d2d5175ebf92db250e73b08e7ac4a17
  • 37bbd1eae29b5a98e203a9110dbdb25c
  • 8794aee468e8b32bb6768d087b65d209
  • 8cb1cfe8f847fe073c3609415adc2a19


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=5647 b/gamelists/snes/linkedhashes.php?g=5647 new file mode 100644 index 0000000..b616ed0 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=5647 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3648183d46c288f7e56499841b50a04f
  • 5295a7481c96be8fb0d2c487ef91dc0f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=566 b/gamelists/snes/linkedhashes.php?g=566 new file mode 100644 index 0000000..c170184 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=566 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 694be8df403ee59225c4b6b53c30fb7b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=573 b/gamelists/snes/linkedhashes.php?g=573 new file mode 100644 index 0000000..5c9458d --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=573 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 123e880bd24bfc9b0fcb014fd617e1a1
  • a4d68c20ac1567834403cde9d590357f
  • b508a7c23920e01fca0f1a5aa5857642


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=582 b/gamelists/snes/linkedhashes.php?g=582 new file mode 100644 index 0000000..e9d64a5 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=582 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 0644da71f79d405a22934daa1474cefc
  • 6668441d698e928546291ffc01cb1a3a
  • dcced4b3e90725218d4a5eca90528130


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=5859 b/gamelists/snes/linkedhashes.php?g=5859 new file mode 100644 index 0000000..d490a08 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=5859 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6c3b5ed7a9943c68d07d580cc945a7ea


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=5887 b/gamelists/snes/linkedhashes.php?g=5887 new file mode 100644 index 0000000..3f23e5b --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=5887 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e3518a94d6654fd48afe182bb4ee702d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=593 b/gamelists/snes/linkedhashes.php?g=593 new file mode 100644 index 0000000..89a86c1 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=593 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 6ee56e3fdfa9543ef7755a08897767ec
  • 808b6d01ca9c7e1938541f55eb71f73c
  • 81dcfbbaa66f8bed4c0ab0e2b6d3e053


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=594 b/gamelists/snes/linkedhashes.php?g=594 new file mode 100644 index 0000000..1f86f0c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=594 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 36E1391F0B1F29F16EF5D4EB83C3725B
  • 580ac21f46a5cb38be9790b9436dbb0c
  • 875745a359320734097e0efd522f5592
  • 921913f82c2575fccafa55b23560df81
  • E8B616A0F5E2C7F46D6226F62A4EC82C


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=5994 b/gamelists/snes/linkedhashes.php?g=5994 new file mode 100644 index 0000000..de72d71 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=5994 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 3dcd4155bae3cbe2e15ba6e17191d158
  • 3fab84fedf46adf3870bf572ce5548c7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=6013 b/gamelists/snes/linkedhashes.php?g=6013 new file mode 100644 index 0000000..9a61662 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=6013 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 6a081ae0acae2fae2fb2bdb77bb82c21
  • ac9955fa4c1aa8ebcc1d09511808c58b
  • be645f73079d2a6648c0188ad27646fd
  • ca77c6366e652ec0613aae7827e00e97


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=605 b/gamelists/snes/linkedhashes.php?g=605 new file mode 100644 index 0000000..968c3e2 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=605 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • aa3c90fa7d89eb3dc3389a9436bd0cf8
  • e1850ef86958efd01b1b16d53fc7b6d3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=6092 b/gamelists/snes/linkedhashes.php?g=6092 new file mode 100644 index 0000000..ea785fa --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=6092 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0a03bae717483dc9366691b8b130ff68
  • 7b8d1271d64d231f2f1ff495938b7569


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=6140 b/gamelists/snes/linkedhashes.php?g=6140 new file mode 100644 index 0000000..9b9b35f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=6140 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 226376fe582bda4ca7371311bcfe791b
  • 68cca59e981652d67ed484a1881091bf


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=6156 b/gamelists/snes/linkedhashes.php?g=6156 new file mode 100644 index 0000000..9c8b57d --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=6156 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • dd674dafb40e7d0162f6dd43cb22af70
  • ede97e0c8910190b00a8998fe001f489


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=6158 b/gamelists/snes/linkedhashes.php?g=6158 new file mode 100644 index 0000000..7461e4b --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=6158 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 800f26edb859556ce6dec0dc894ccf80
  • d6d770497fd9185f9affd01fa87ccb49


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=6172 b/gamelists/snes/linkedhashes.php?g=6172 new file mode 100644 index 0000000..9cb068b --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=6172 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 0697a2a97b44fc17f768793689461ddc
  • 3d282ff26d47084326ba1e2a9c06bf90
  • d69848fa0f67e0b80048bec0dba0c563


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=6190 b/gamelists/snes/linkedhashes.php?g=6190 new file mode 100644 index 0000000..6a4a370 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=6190 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0eda1bf334c5ae3b76218f0b48a5caf7
  • ae4bbc5db71b120d773764793b527346


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=6212 b/gamelists/snes/linkedhashes.php?g=6212 new file mode 100644 index 0000000..9436fa9 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=6212 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 89a60f19daf2ae77aead867ecfd2cab8
  • c89afb1bb7b71513ea8b247c4c4342ec


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=6231 b/gamelists/snes/linkedhashes.php?g=6231 new file mode 100644 index 0000000..00e0b2d --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=6231 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 140aae376e696a9a72daec371405c4c1
  • 1dff04776bde5aae152835c0db436f37
  • 7c7c7db73b0608a184cc5e1d73d7695b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=624 b/gamelists/snes/linkedhashes.php?g=624 new file mode 100644 index 0000000..993cb43 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=624 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 4abea08c9aadae963de8f4ca142bca99
  • 61088a45f3e561d15dd114e27d6d779e
  • 97098a55a0f87a2c6a555c0338c10ac4
  • cfe8c11f0dce19e4fa5f3fd75775e47c
  • e81bedd2fc6b013538cdf4bd22fdeff6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=627 b/gamelists/snes/linkedhashes.php?g=627 new file mode 100644 index 0000000..f830d7d --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=627 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 103152554973d6db6e53013eb10c383f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=628 b/gamelists/snes/linkedhashes.php?g=628 new file mode 100644 index 0000000..db584f9 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=628 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 34c791f3e69b7fb8081eea0e8b8ad0b2
  • bc2892e99c34f01c4102996e429e1e9a
  • e990ae600a8326eda25489bdddffca55


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=629 b/gamelists/snes/linkedhashes.php?g=629 new file mode 100644 index 0000000..fbde082 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=629 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 9 unique ROM(s) registered for it with the following MD5s:

  • 3aa853b2d4285a3f8d3ff5f052eb1aa6
  • 5c7e0d91b60429d0a2e0f3f14a7e53c7
  • 67905b989b00046db06df3434ed79f04
  • 6b9cd86caf256e2152623704ff633146
  • 8a62863bb1f8c2ebcc9da4b25ad09fb6
  • 8b6d54622e89685ed7e440a6d47307bc
  • d1c04dc1f7e29ad0e09e2fce39b76138
  • d6d755ade3832aa2d67fd122afddf6cd
  • fc9bfde615cbed7c6a55b9350506c712


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=631 b/gamelists/snes/linkedhashes.php?g=631 new file mode 100644 index 0000000..a77b1a6 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=631 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 46b29735c680c494b21caa7d8032ac36


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=633 b/gamelists/snes/linkedhashes.php?g=633 new file mode 100644 index 0000000..39ce341 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=633 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 33197dcdd3e6ed3396b894a2301d45d8
  • 4181e243ae146d471dc5c292dce772ac


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=6345 b/gamelists/snes/linkedhashes.php?g=6345 new file mode 100644 index 0000000..5ab024d --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=6345 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 1a882cd6f4aec52fcd75716eaf93213d
  • 1b7b514d0d10aec6e92d529f5f3ecd62
  • 540b4aefd31867bbe7a242ee97d40d1e
  • 5464d5ab17d2d2a4f5d72ee3c8734c7f
  • b873640466329a8f61d55a5f96aa41de


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=637 b/gamelists/snes/linkedhashes.php?g=637 new file mode 100644 index 0000000..2db7eb7 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=637 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 14 unique ROM(s) registered for it with the following MD5s:

  • 0da833104f9ee19c5b052cea1e850b22
  • 19bf3ac320754ae21b586ce112b19ec5
  • 1d9d56cdf7a1b6654f69063fd7aefe50
  • 1e11a6c21b7885512f83844470c87ddf
  • 3d2d84be96abc25d63a1a1191a800c57
  • 5302b614bdf9fbd6fb8e4e168fc4042c
  • 62dab1568bb5e641aafc2fd52cfe0714
  • 797fd8e6eab44ea597aed9f44d4e1669
  • 7e60e8be9b7b60b2a092db30f85e2929
  • 82870d3fd437ae8280a7c6c23874b737
  • 972dde5ac59ba3f3b79964c115331aa8
  • a10071fa78554b57538d0b459e00d224
  • df1cc0c8c8c4b61e3b834cc03366611c
  • f2131abb60a91bb5eeaa1daf1c0822bd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=6388 b/gamelists/snes/linkedhashes.php?g=6388 new file mode 100644 index 0000000..1fd062e --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=6388 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 9 unique ROM(s) registered for it with the following MD5s:

  • 0cb432dd9d5c1afa5048334b110fddc0
  • 2d674a5b82f7691cdb27702031d0f960
  • 39896c668cede506212e65bbb8a46641
  • 3c55d068feb36707f199c3ebf29aad5f
  • 76e47fbef6fb6e04e3c7b6bfada67db7
  • 806a7000a8edf62234d0cc8c70b04bcd
  • 82365768ebc53eb3278a86ed7630230f
  • 987b014a7be83696ec2ef1b844a8750e
  • f30bbbd8242bf28140013af2f7ecda52


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=645 b/gamelists/snes/linkedhashes.php?g=645 new file mode 100644 index 0000000..423dd94 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=645 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 36f54352e7aba538529913707a734f9e
  • 37cfc64a6ea22b7914ea443e2bf2bf0c
  • 7090be7db70304cea034bfd77e4d1886
  • fa1aca992a1bbe309651fff64541866f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=647 b/gamelists/snes/linkedhashes.php?g=647 new file mode 100644 index 0000000..99f1680 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=647 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 9873c45bf77eb06262e9b8d8c4b841b4
  • a0b9bebbc80958e36292abd9b8fb758e
  • ac0da762c2d05b6b041e55b21a4007ae


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=648 b/gamelists/snes/linkedhashes.php?g=648 new file mode 100644 index 0000000..b5047db --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=648 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 10 unique ROM(s) registered for it with the following MD5s:

  • 014863e139f5a9e9fc8ecf59a133223b
  • 1992ee0cd0593c7a57d1e7a9e771d70a
  • 5309e795ae22d35b04a4491fc027b235
  • 6030e02f113ebe6c18e2708bc9d36e2b
  • 6443b2d3d9ab2eee52ee487b08506368
  • 6deb9c86ddefab0cfce69b363fb08a7f
  • 91b3d60164715189aeff28f8a38463de
  • a92b83ff868b8972c3dd12a4f2bd4af3
  • ac63bd5085b0f8f35e2cff59e9c34456
  • cc7e42a7725d18cefb54a26eb5eb7a73


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=653 b/gamelists/snes/linkedhashes.php?g=653 new file mode 100644 index 0000000..3ea7375 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=653 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 282e973c080cd56d4c4979c1091ab333
  • a09ebc96aac1680fd36029b768002d92
  • c985283969727dca2b77dcb51cae1b23
  • f64e2b3eb9ee5b92f267bd420b294efc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=658 b/gamelists/snes/linkedhashes.php?g=658 new file mode 100644 index 0000000..f65eed4 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=658 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 10365acc8f7c602864f85c3ea295916f
  • afa64dd1c92d2138b2d723d136b1eb76
  • ec6fa27bfc201dd0ef0000f4c65fb57a
  • fcb0efbe5c4b3372a7dc3575979fb8f3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=664 b/gamelists/snes/linkedhashes.php?g=664 new file mode 100644 index 0000000..ca85dec --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=664 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1a1bd0a7652a2b7b025e9e5132831a81
  • d484b197aeef6981e49772adc6866990


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=6644 b/gamelists/snes/linkedhashes.php?g=6644 new file mode 100644 index 0000000..9b0993a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=6644 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 51c91e0372d47207a325e8eca40e0587
  • 723983749f505fff1dd892a6cf841922


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=6647 b/gamelists/snes/linkedhashes.php?g=6647 new file mode 100644 index 0000000..6fd5e1c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=6647 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • a7bcd665da8b839600dfe22c46623ce1
  • ea2043ff43ddde65466634fca9f9137b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=666 b/gamelists/snes/linkedhashes.php?g=666 new file mode 100644 index 0000000..43199ef --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=666 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • c955c2388aff8d1b888aaff9567b8d04


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=6714 b/gamelists/snes/linkedhashes.php?g=6714 new file mode 100644 index 0000000..df147be --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=6714 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 703cb689e846acbd074dfbfb8bcfee3d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=6939 b/gamelists/snes/linkedhashes.php?g=6939 new file mode 100644 index 0000000..5408a9c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=6939 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 29e276190dc921f1a13907ffb00212bb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=6997 b/gamelists/snes/linkedhashes.php?g=6997 new file mode 100644 index 0000000..17b1216 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=6997 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 3c4ef224298ffcfed51a489ce1d9bfa2
  • 41024f8470edcd682702d535db63dd84
  • c1343e798e6bb0cb15059b5b5bf6db98
  • e09728d226394f22a6bca489427fbb96


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=7078 b/gamelists/snes/linkedhashes.php?g=7078 new file mode 100644 index 0000000..5433e18 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=7078 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d2a7c6b85423da2b9fb59c45ead71347


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=7319 b/gamelists/snes/linkedhashes.php?g=7319 new file mode 100644 index 0000000..175e860 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=7319 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 8238da8a9175d52d21cae680985fa26b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=7465 b/gamelists/snes/linkedhashes.php?g=7465 new file mode 100644 index 0000000..06d8aa7 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=7465 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 19 unique ROM(s) registered for it with the following MD5s:

  • 09746d3e9be9703d09cdbdb3331d20c3
  • 0a0d06a7513fb260b96c6defb8285a9d
  • 1b5082ccc496908f268856ffc3ad7d5a
  • 2abc914f715036b3969d3c4be7e125f0
  • 3d75bf39556509ad57a9bf91d6744fbb
  • 434c89f8f94374f84ceb1088e29fd2e1
  • 43564da4b782612a9c5c02a520c51b4e
  • 57b6fd6915f528e9cbaa3cd860045aad
  • 59cee44354ed6fd664236ba9f6b18a63
  • 660603faabf58fd507c246f5781e1bc4
  • 7de3cf6032b9ba94a41baa4a229cad51
  • a90f92a606e342b35aa4bc070cfe3f78
  • b6aa051fe3534d7b9ee72e483bf37e19
  • c35269ad3657c8b19e3a902ef0882772
  • ca9223f2f436e7c9ad7e44f7cf8acea6
  • d5ce2ad741adb7263b4dacc91bc7bae7
  • da4d548e54a593e635e023bbf7db72b1
  • e9d7770a1973f2b3ecd331870f7e9018
  • f203ab9d9720c2ba8ac8453b0c10553c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=7642 b/gamelists/snes/linkedhashes.php?g=7642 new file mode 100644 index 0000000..f0f409f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=7642 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 405644d643e3e8672c2cc801910a0bd6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=7701 b/gamelists/snes/linkedhashes.php?g=7701 new file mode 100644 index 0000000..7194e1f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=7701 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 438b79817c408dba3fed4d9cebd63a28


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=7791 b/gamelists/snes/linkedhashes.php?g=7791 new file mode 100644 index 0000000..9c0d735 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=7791 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0829ebfde80e7a9673fe9966a8d47b0f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=7886 b/gamelists/snes/linkedhashes.php?g=7886 new file mode 100644 index 0000000..efc23e9 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=7886 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 3f17a37f25266bbd6e37ebfe12108319
  • db4dd0305051f7d3ca7bd2e114f4f1dd
  • edcbf9168dddd6cf7c82f176cca88b69


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=7943 b/gamelists/snes/linkedhashes.php?g=7943 new file mode 100644 index 0000000..3f27e55 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=7943 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • ab39d189dee364b881cd461a3eb8aeb3
  • dbaaf6de5c76905f652db08b91845069


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=8021 b/gamelists/snes/linkedhashes.php?g=8021 new file mode 100644 index 0000000..d9a44a4 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=8021 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cee7922a2c1bcbf204df4ad4412fb223


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=8060 b/gamelists/snes/linkedhashes.php?g=8060 new file mode 100644 index 0000000..9323612 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=8060 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ecb14447919749a91481cd88bc22fdd2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=813 b/gamelists/snes/linkedhashes.php?g=813 new file mode 100644 index 0000000..83c85aa --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=813 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 201e7658f6194458a3869dde36bf8ec2
  • 83ff848a5793805423eef5f09a09292f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=814 b/gamelists/snes/linkedhashes.php?g=814 new file mode 100644 index 0000000..095c490 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=814 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 566ae8dc85175cf01a44d006437ea7f8
  • 5e0be1a462ffaca1351d446b96b25b74
  • cb76ea8ac989e71210c89102d91c6c57


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=815 b/gamelists/snes/linkedhashes.php?g=815 new file mode 100644 index 0000000..de9960a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=815 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 44bb94606356f1c0965e12bbc50866b3
  • 90854fcf608034c654745ae24411ef7a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=819 b/gamelists/snes/linkedhashes.php?g=819 new file mode 100644 index 0000000..c9fa35f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=819 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 662d3b4f27ada028dd4a853fc58cc745
  • 7590a77f8f6661bb8877d3acdb33c944
  • 7770b441b184245f3a2243cf08503282
  • e0450bd7cae39aed72cb8535fc39048c
  • f3f2c71227399931fbcb09e1b4e27f46


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=8196 b/gamelists/snes/linkedhashes.php?g=8196 new file mode 100644 index 0000000..7525731 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=8196 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • eb316bdae901459724410b1d7d76f2c7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=820 b/gamelists/snes/linkedhashes.php?g=820 new file mode 100644 index 0000000..39c5fe2 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=820 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a21571c7f21e68dee9a4d78bbc1cfd6a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=821 b/gamelists/snes/linkedhashes.php?g=821 new file mode 100644 index 0000000..178defc --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=821 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 7 unique ROM(s) registered for it with the following MD5s:

  • 1c02824bdd165bacb52597551c3c87c5
  • 2dc88f4fde9f3dbc4f6ea61c4152f5ee
  • 4c33b3b733b2cbd63295446b14654652
  • 6e9c94511d04fac6e0a1e582c170be3a
  • 89c712cf078eb8b4ae82010343156406
  • f6516a3b18c262ec00cd4348921c3897
  • fc2b89e02d0d02712a3f918faec671d4


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=8249 b/gamelists/snes/linkedhashes.php?g=8249 new file mode 100644 index 0000000..4670c0a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=8249 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 45e938a3adde7dc91968793d115c8057
  • 512dcc7abd3001656aacbc7928f27354


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=827 b/gamelists/snes/linkedhashes.php?g=827 new file mode 100644 index 0000000..62ec13a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=827 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 44e035c4c3d1f4a9b0dec60586675202


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=829 b/gamelists/snes/linkedhashes.php?g=829 new file mode 100644 index 0000000..71c4575 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=829 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 278a88adb028a8e4c279b9b468b592ed


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=830 b/gamelists/snes/linkedhashes.php?g=830 new file mode 100644 index 0000000..a2c268d --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=830 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 36a45afe414ef26af7a30e209bee9212
  • 49775f5e46be05c1e245b26a70b6f756
  • 517a88892164b47c2821c0708ad08b58


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=846 b/gamelists/snes/linkedhashes.php?g=846 new file mode 100644 index 0000000..bf8aef8 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=846 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 006fa55e70348b2020d1acf0c4a02c3a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=8463 b/gamelists/snes/linkedhashes.php?g=8463 new file mode 100644 index 0000000..9bfa5a8 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=8463 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1ce6c43e42f611a7d4aaf6a0bf1232bc
  • 5d72eb567d439ea5aac9579035ecdbdf
  • 7d92fa1c34588222cf90262e9d50222f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=8476 b/gamelists/snes/linkedhashes.php?g=8476 new file mode 100644 index 0000000..3d050d8 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=8476 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 922d8ac14a2d7bba2304977f75e536a7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=853 b/gamelists/snes/linkedhashes.php?g=853 new file mode 100644 index 0000000..7569eaa --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=853 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3fd137462f559063672f66fcbdc38329


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=854 b/gamelists/snes/linkedhashes.php?g=854 new file mode 100644 index 0000000..5e70f00 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=854 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b9a3d2c89793e6a6a97010a08b8c05da


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=856 b/gamelists/snes/linkedhashes.php?g=856 new file mode 100644 index 0000000..81821b7 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=856 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e084ffec81b78b8962caa8343b66fb34


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=857 b/gamelists/snes/linkedhashes.php?g=857 new file mode 100644 index 0000000..3b54c76 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=857 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 90e90f2aae4770ee98130580a594e2bb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=863 b/gamelists/snes/linkedhashes.php?g=863 new file mode 100644 index 0000000..82bc30e --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=863 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5d89e5c48b9f96341bcbe06e910185e0
  • 9aea023fde7fb213c95480d6212265d6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=865 b/gamelists/snes/linkedhashes.php?g=865 new file mode 100644 index 0000000..4e1bdda --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=865 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ab16565f70e427d048a0d8ddab577139


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=867 b/gamelists/snes/linkedhashes.php?g=867 new file mode 100644 index 0000000..7e1b572 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=867 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 58d6f28d4d8af6c473d53648728d0b96
  • 8376c1bfac08f6fbbf99f26abaee6da0
  • 9f4f827317f507b0ac4702245f161687


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=8670 b/gamelists/snes/linkedhashes.php?g=8670 new file mode 100644 index 0000000..b1b0907 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=8670 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 16c01d30d842496fd8cec31c48cdabff
  • 269d47792f93fb7b8448cd99b08e02ab
  • 7a165aae06e675eb9a569bd1935b4816
  • 9f778366e16e46ed0906c90de76a61f2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=868 b/gamelists/snes/linkedhashes.php?g=868 new file mode 100644 index 0000000..6559cf3 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=868 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 07ce711db81bd94433f59c8477320081
  • 0e7c6781a6ae15d36a5885a03c132898
  • 8aa76a8fb3e47cc0d1d092558c1c667d
  • b03a4ed17026896552d001bda15dd1b6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=8696 b/gamelists/snes/linkedhashes.php?g=8696 new file mode 100644 index 0000000..d69a5b7 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=8696 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 89d33b24d7e0d5b0ab4441b469a3093f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=8702 b/gamelists/snes/linkedhashes.php?g=8702 new file mode 100644 index 0000000..b07b116 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=8702 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1e436ff6f74aa0beab11b19d3b8163aa
  • 6041d861ae1e590dee99e45a3eeabd49
  • b427922ff0310f11e5b88efa4d51692e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=8706 b/gamelists/snes/linkedhashes.php?g=8706 new file mode 100644 index 0000000..8ae1853 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=8706 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • e53bac43ed9049ed28751477e4cc844d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=875 b/gamelists/snes/linkedhashes.php?g=875 new file mode 100644 index 0000000..346a140 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=875 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3623efce83f8c52fb7e2ce173c487288


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=878 b/gamelists/snes/linkedhashes.php?g=878 new file mode 100644 index 0000000..ae5b4d7 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=878 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 036beed13a2c8c8f7a99f0dbf33ffdc1
  • 18c4ea37118850c18084c9993ef93165
  • 6a5b2f9bde72f7d72db7dfe9afd0f47a
  • f674143b37cc0f7914d6858d864394b0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=8782 b/gamelists/snes/linkedhashes.php?g=8782 new file mode 100644 index 0000000..28814db --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=8782 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 78290d10d82564be7b073271c6e5310d
  • b7e4af45f5ee5dabb980e712f3131493


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=881 b/gamelists/snes/linkedhashes.php?g=881 new file mode 100644 index 0000000..416a8d8 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=881 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 0ddd927709d83149122e5ae1d9a1aa1a
  • 31b4a520f22b3b0ef6aa6d08643d7b12
  • 870bdef074998c944c11c50b192863c6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=8811 b/gamelists/snes/linkedhashes.php?g=8811 new file mode 100644 index 0000000..2aa4810 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=8811 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 872c1a1686bb982c4e8f374963c187a7
  • ba0faa09ccc56c001cfe84a2a885c811


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=8828 b/gamelists/snes/linkedhashes.php?g=8828 new file mode 100644 index 0000000..376724d --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=8828 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6f805455e3bff392c51c65fc07eed939


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=8830 b/gamelists/snes/linkedhashes.php?g=8830 new file mode 100644 index 0000000..0de88c1 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=8830 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0391195ded8d5b2958915f538a952aec


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=885 b/gamelists/snes/linkedhashes.php?g=885 new file mode 100644 index 0000000..77cabae --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=885 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 55a4acec09123b39949d2affb9f7c7c2
  • 94446e742f5fefd2905c70a2a891b2dc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=8853 b/gamelists/snes/linkedhashes.php?g=8853 new file mode 100644 index 0000000..9a46d98 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=8853 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 0d286f6adbee71da2154fb2ede35783b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=887 b/gamelists/snes/linkedhashes.php?g=887 new file mode 100644 index 0000000..333b4a5 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=887 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 07504ccf489368208e472cd2b61259eb
  • 116b082005e47a83d3e87ff97c525530
  • 2ffd5027d32f0ec5326981ee1be1ca32
  • 62c4bd2072c818f026072049ca114d33


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=888 b/gamelists/snes/linkedhashes.php?g=888 new file mode 100644 index 0000000..60fb3be --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=888 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 04697646ac794edb05dce81eb27a01b4
  • 65e27c7058dd251e86b1ea154e497a9b
  • c3ff5fd4e3f46653fec94ba60d70281d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=889 b/gamelists/snes/linkedhashes.php?g=889 new file mode 100644 index 0000000..31c3155 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=889 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 25fdebdec0e83132d8f24e9ac5bfc45f
  • 34a3d2a256c774a5f412cef5ab4e6370
  • 358d35b9e1468706f53b375a3dc6f6ed
  • 92a672f453d6b2de0a201fe612c73302
  • b6ee6ebc6847c93f50b6f2e3f4794a89


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=8969 b/gamelists/snes/linkedhashes.php?g=8969 new file mode 100644 index 0000000..98d60fd --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=8969 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d760b39c318790b3b605e40acedf6dd2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=904 b/gamelists/snes/linkedhashes.php?g=904 new file mode 100644 index 0000000..e2b21b1 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=904 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 05f8e0cad9ee01a5b2570b6fdd949f95
  • 3e52a37d6c408634bad0f0d9b8562eba


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=905 b/gamelists/snes/linkedhashes.php?g=905 new file mode 100644 index 0000000..f658588 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=905 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 5fcd3e9663ea54cf9dd7883625f18956
  • 906a3da585415529b20bd0708fd91486


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=906 b/gamelists/snes/linkedhashes.php?g=906 new file mode 100644 index 0000000..6d4ddef --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=906 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 44a0e420744a8c77a0832d079dd25476
  • 795a89089d387f287d9bdbbc1bc4672f
  • acf51d76d7747fb539d1106fbe3d1f85


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=909 b/gamelists/snes/linkedhashes.php?g=909 new file mode 100644 index 0000000..39d476a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=909 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 6 unique ROM(s) registered for it with the following MD5s:

  • 10cfe4f746a8bf3dd54c1e61c67f61d1
  • 92461cd3f1a72b8beb32ebab98057b76
  • a5356b9bad50d4a9191bc1fe50316b5b
  • a6cf65a5abee9e9f3a31f001f278a554
  • da08f0559fade06f37d5fdf1b6a6d92e
  • f7faeae5a847c098d677070920769ca2


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=911 b/gamelists/snes/linkedhashes.php?g=911 new file mode 100644 index 0000000..cd2f78b --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=911 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 650e587408e8691c511e831de5f606dc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=9175 b/gamelists/snes/linkedhashes.php?g=9175 new file mode 100644 index 0000000..bae31ec --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=9175 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 55dafef0808956580173fcab24f85003


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=926 b/gamelists/snes/linkedhashes.php?g=926 new file mode 100644 index 0000000..bf6ade4 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=926 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 310eed9404c446d12ba479a158f38beb
  • da9354f321779c7670b562816c97163b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=927 b/gamelists/snes/linkedhashes.php?g=927 new file mode 100644 index 0000000..3fcc6f4 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=927 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • f7c3b2a7b3b386ad908c2a3169176400


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=930 b/gamelists/snes/linkedhashes.php?g=930 new file mode 100644 index 0000000..7829bf0 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=930 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • c77b2f22f465bcb8fd1e6c779d21f2e1
  • f026a8e4f069513e74895f3e2b627de1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=934 b/gamelists/snes/linkedhashes.php?g=934 new file mode 100644 index 0000000..1f31ef7 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=934 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 027e0565464fba64b5f30ffdf3630daa
  • 284809ffd0c78c4e9706d0e291ad6e44
  • 3872001d7ce9dfac1edbe8db724d5c67
  • c9bf36a816b6d54aed79d43a6c45111a
  • ede10052605405ba01d5d208d35069b8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=9349 b/gamelists/snes/linkedhashes.php?g=9349 new file mode 100644 index 0000000..743ab75 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=9349 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cd40f300557491ccecea37228af46a34


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=937 b/gamelists/snes/linkedhashes.php?g=937 new file mode 100644 index 0000000..b856e63 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=937 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • b41839190d010ff407bffca3dcb3f716


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=9390 b/gamelists/snes/linkedhashes.php?g=9390 new file mode 100644 index 0000000..87db751 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=9390 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • a409a0d29d0e16092b1b610ec0f9f7e7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=940 b/gamelists/snes/linkedhashes.php?g=940 new file mode 100644 index 0000000..14b210d --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=940 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 0ef6c11fea085aac5e313111a8e6ffc8
  • 1a0a3a079db7a848ee019161cbdb1788
  • 6cdac1c4fd070940ea3050aced5fe4f4
  • 7693f2ac4ba870378bbd26935f24afe2
  • c647ead8b0fcab4761182c6f60debab8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=941 b/gamelists/snes/linkedhashes.php?g=941 new file mode 100644 index 0000000..25af6e1 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=941 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 47d7b7ba3419b894002b0402685a0960


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=945 b/gamelists/snes/linkedhashes.php?g=945 new file mode 100644 index 0000000..6b9c2eb --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=945 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 45ef39d209af53eb7abccd763445f202
  • a7c7a76b4d6f6df389bd631757b91b76
  • a9d5368f701016d00003118a9616f1ce
  • b2a35f6f99d0cd44b5ca3fa71bd3145c
  • faf4d7c79daf445d2ca286d8b2f81cab


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=947 b/gamelists/snes/linkedhashes.php?g=947 new file mode 100644 index 0000000..ce55caa --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=947 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7a4845697efd4491fa8f8476af9dc3c2
  • 849d26ac8cbbd1cd9ec80ebfec44dd19


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=948 b/gamelists/snes/linkedhashes.php?g=948 new file mode 100644 index 0000000..abda7d5 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=948 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • cd46a61f34f818f23bb23cdc7c7a7e99


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=9481 b/gamelists/snes/linkedhashes.php?g=9481 new file mode 100644 index 0000000..552560e --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=9481 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1edf4db1cc849201db140c5f6a2126fa


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=9487 b/gamelists/snes/linkedhashes.php?g=9487 new file mode 100644 index 0000000..4316f5e --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=9487 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 526830cb760eb7e82720dfaa20eda75f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=949 b/gamelists/snes/linkedhashes.php?g=949 new file mode 100644 index 0000000..ad8187c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=949 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 78886eea269296cba80272dbe8a3dead
  • 8dc92a769fee1c11ba1219d884830f57


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=9517 b/gamelists/snes/linkedhashes.php?g=9517 new file mode 100644 index 0000000..85512c8 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=9517 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 90e1fddc41a53ef6bd6f2c119e9b6312


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=9582 b/gamelists/snes/linkedhashes.php?g=9582 new file mode 100644 index 0000000..cabc848 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=9582 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 318a6ca4b0769360c4d9a13628d3d89f


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=959 b/gamelists/snes/linkedhashes.php?g=959 new file mode 100644 index 0000000..d43cfc8 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=959 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 76d93ffebb00ddaf4cf23222ab28b962


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=960 b/gamelists/snes/linkedhashes.php?g=960 new file mode 100644 index 0000000..d98d823 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=960 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 15cfcc91489c344d82afe791a3f17261


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=961 b/gamelists/snes/linkedhashes.php?g=961 new file mode 100644 index 0000000..cdb4900 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=961 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 106290995e3295b9d13c888e806a491a
  • 7424445c51692ead97568e0a53b3d4a0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=9627 b/gamelists/snes/linkedhashes.php?g=9627 new file mode 100644 index 0000000..111164b --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=9627 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • a9f9eb32292e38598c3e2068a304a482
  • f62625b0f5b12482d31f2fc5e7097410


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=963 b/gamelists/snes/linkedhashes.php?g=963 new file mode 100644 index 0000000..2e6288f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=963 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 0c3875be5d33b7be8216e27d3f466027
  • 3a5ade3c906b8329d6f0de16de7b4cc1
  • cc902de2efa54df4d2c27acd7f4a6bf4
  • dca9b3fcc00e3f7b1868c4207dabec7b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=9630 b/gamelists/snes/linkedhashes.php?g=9630 new file mode 100644 index 0000000..220b57a --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=9630 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • d2f9e515fc4a0fcaaeee14dc593df26e


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=964 b/gamelists/snes/linkedhashes.php?g=964 new file mode 100644 index 0000000..dbe0663 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=964 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 1e5fa71516afa912e0db1dd6ff07d2bc


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=967 b/gamelists/snes/linkedhashes.php?g=967 new file mode 100644 index 0000000..0fca5b8 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=967 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • b4d347a526c7839bb8136b6c5ffd868c
  • ce0dd38e1ab7752fd736d526788b5bd1
  • fa6de515bac11577ca5f6e3221ed9cc1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=968 b/gamelists/snes/linkedhashes.php?g=968 new file mode 100644 index 0000000..10fb609 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=968 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • cf539bef183bcb97c192562bb1cb29ec
  • ea22fd957281c0888c97d34a27cf3fa9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=970 b/gamelists/snes/linkedhashes.php?g=970 new file mode 100644 index 0000000..39cc215 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=970 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 64d367e1406fc39281443da9cfd9f015


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=971 b/gamelists/snes/linkedhashes.php?g=971 new file mode 100644 index 0000000..b245f19 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=971 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 4f7c769289780bfafffdf90a9f9b41e6
  • bb9c2f667ced16a2e605b385c041c744
  • d4f063f065bd06935dc3f75732df9450
  • ebfd33826aca72ce98ac0ed9b293f94d
  • fa583b9d1a2dcc270a8fc91259b89c96


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=972 b/gamelists/snes/linkedhashes.php?g=972 new file mode 100644 index 0000000..72142f6 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=972 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 2078b064bdf300eb656971946c26430f
  • 4e8c8b8b547e20453520d6eec0d5b610


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=9763 b/gamelists/snes/linkedhashes.php?g=9763 new file mode 100644 index 0000000..4a812b6 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=9763 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 6cb5d91ad179815cf736a90e4fc14cd3


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=978 b/gamelists/snes/linkedhashes.php?g=978 new file mode 100644 index 0000000..b78297f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=978 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • ef83866bd12204dcad53fc2ee731edf5


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=9784 b/gamelists/snes/linkedhashes.php?g=9784 new file mode 100644 index 0000000..6075019 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=9784 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5be238082ff8ed1bc489fd9812cc3c0b


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=979 b/gamelists/snes/linkedhashes.php?g=979 new file mode 100644 index 0000000..aa2224c --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=979 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 572fd9201f8c000abd16c4c84d9ddf98


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=982 b/gamelists/snes/linkedhashes.php?g=982 new file mode 100644 index 0000000..6111fe5 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=982 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 3 unique ROM(s) registered for it with the following MD5s:

  • 1ca6d04fce9ffde7de781398a18da88c
  • 55b7daf3ae2f70c2f768cdde0fe2b4fe
  • 57c84653078eae9fec119e05f5b507bd


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=9824 b/gamelists/snes/linkedhashes.php?g=9824 new file mode 100644 index 0000000..a1ea5d0 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=9824 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5773848cba599a17e1496da384639d2c


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=985 b/gamelists/snes/linkedhashes.php?g=985 new file mode 100644 index 0000000..a1c3cd5 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=985 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bddd943215857ad77ea48d2a1a138ec8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=986 b/gamelists/snes/linkedhashes.php?g=986 new file mode 100644 index 0000000..1fae66d --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=986 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 3f2ee922cd23c9c211777be1d26ea2a8
  • b757f3031fb7698925cf9eb8d3b343a1
  • c307ef58ccaccacb479e2662ef2e0841
  • e2e5e990a3b43da416307fba4ccbe4fb


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=989 b/gamelists/snes/linkedhashes.php?g=989 new file mode 100644 index 0000000..63105cc --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=989 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 08d373c5a350eb7b7f593657e2a5f252
  • 29d3a2a6b39c83e464b6e6450c1f70b9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=990 b/gamelists/snes/linkedhashes.php?g=990 new file mode 100644 index 0000000..08d777f --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=990 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 57222bf254226e8bb26216c2d064e8f1
  • 6c6f2cfe5ba1fbe780fb6bd63d1cb478
  • bf6da6f13729c8925d8725d7dd25b420
  • ec25ba881050baae5261ce82ebad8277


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=991 b/gamelists/snes/linkedhashes.php?g=991 new file mode 100644 index 0000000..13df515 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=991 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 0c684458019a60b0e16acb408f1418ea
  • 711afe5a0d32b3b1e40afcfaada20fa9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=9918 b/gamelists/snes/linkedhashes.php?g=9918 new file mode 100644 index 0000000..b96afb5 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=9918 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 56c33658bc878f05b5ae7b8634098066


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=993 b/gamelists/snes/linkedhashes.php?g=993 new file mode 100644 index 0000000..b177599 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=993 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 5 unique ROM(s) registered for it with the following MD5s:

  • 02a11cc95bf9f62c601a4909e9b22e95
  • 283c2e794c1eae82a31dfac608e76222
  • a702074d3315bbc5081eccba932ecad1
  • aff500ae36d63bb253fd36e8300cc812
  • ecf0db12f88db32c4a129ff11af7f73d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=995 b/gamelists/snes/linkedhashes.php?g=995 new file mode 100644 index 0000000..6ba3420 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=995 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • bb8e9e7429145404f0e4186ad0161fc8


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=996 b/gamelists/snes/linkedhashes.php?g=996 new file mode 100644 index 0000000..ea6e73e --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=996 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 928a0d7feeb4edee8d53203a575968e6


+
+
+
+ \ No newline at end of file diff --git a/gamelists/snes/linkedhashes.php?g=9965 b/gamelists/snes/linkedhashes.php?g=9965 new file mode 100644 index 0000000..7e4ac54 --- /dev/null +++ b/gamelists/snes/linkedhashes.php?g=9965 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 672cf07438693acd3a90514df0ced274


+
+
+
+ \ No newline at end of file diff --git a/gamelists/vectrex.html b/gamelists/vectrex.html new file mode 100644 index 0000000..b282976 --- /dev/null +++ b/gamelists/vectrex.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games Vectrex - RetroAchievements +
+
+
+ +
+

Vectrex

TitleAchievementsPointsLeaderboards
25155 (1326)1
Totals: 1 games25155 (1326)1

+
+
+
+
+ \ No newline at end of file diff --git a/gamelists/vectrex/linkedhashes.php?g=6242 b/gamelists/vectrex/linkedhashes.php?g=6242 new file mode 100644 index 0000000..074f4cf --- /dev/null +++ b/gamelists/vectrex/linkedhashes.php?g=6242 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5a90ab748f7b220edaf8c1d67e0bfe89


+
+
+
+ \ No newline at end of file diff --git a/gamelists/virtualboy.html b/gamelists/virtualboy.html new file mode 100644 index 0000000..d13c8bb --- /dev/null +++ b/gamelists/virtualboy.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games Virtual Boy - RetroAchievements +
+
+ +
+
+ \ No newline at end of file diff --git a/gamelists/virtualboy/linkedhashes.php?g=11171 b/gamelists/virtualboy/linkedhashes.php?g=11171 new file mode 100644 index 0000000..08af9cc --- /dev/null +++ b/gamelists/virtualboy/linkedhashes.php?g=11171 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • B1B3A25CE8FB4F406BF82B8765D307D0


+
+
+
+ \ No newline at end of file diff --git a/gamelists/virtualboy/linkedhashes.php?g=11700 b/gamelists/virtualboy/linkedhashes.php?g=11700 new file mode 100644 index 0000000..570ace5 --- /dev/null +++ b/gamelists/virtualboy/linkedhashes.php?g=11700 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1b177fe2dd12ec1d67f6a43502f8d391
  • ee873c9969c15e92ca9a0f689c4ce5ea


+
+
+
+ \ No newline at end of file diff --git a/gamelists/virtualboy/linkedhashes.php?g=11702 b/gamelists/virtualboy/linkedhashes.php?g=11702 new file mode 100644 index 0000000..6da57af --- /dev/null +++ b/gamelists/virtualboy/linkedhashes.php?g=11702 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 85260599fdada2e137053a8647aa0d06


+
+
+
+ \ No newline at end of file diff --git a/gamelists/virtualboy/linkedhashes.php?g=11703 b/gamelists/virtualboy/linkedhashes.php?g=11703 new file mode 100644 index 0000000..331471a --- /dev/null +++ b/gamelists/virtualboy/linkedhashes.php?g=11703 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • fb4dc9f4ebd506702eb49e99a62bd803


+
+
+
+ \ No newline at end of file diff --git a/gamelists/virtualboy/linkedhashes.php?g=12492 b/gamelists/virtualboy/linkedhashes.php?g=12492 new file mode 100644 index 0000000..285f963 --- /dev/null +++ b/gamelists/virtualboy/linkedhashes.php?g=12492 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 467247d5e3383d066005565bf8218436


+
+
+
+ \ No newline at end of file diff --git a/gamelists/virtualboy/linkedhashes.php?g=12910 b/gamelists/virtualboy/linkedhashes.php?g=12910 new file mode 100644 index 0000000..c734bf5 --- /dev/null +++ b/gamelists/virtualboy/linkedhashes.php?g=12910 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 7607f6f918615263512b17e56797c9aa
  • bb4aa9566437572802079c89452666e7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/virtualboy/linkedhashes.php?g=13041 b/gamelists/virtualboy/linkedhashes.php?g=13041 new file mode 100644 index 0000000..db4b2bf --- /dev/null +++ b/gamelists/virtualboy/linkedhashes.php?g=13041 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • 1eb964d0eaa3223cfefdcc99a6265c88
  • 4698a0b151d95bbbb833e2a523a12be7


+
+
+
+ \ No newline at end of file diff --git a/gamelists/virtualboy/linkedhashes.php?g=13947 b/gamelists/virtualboy/linkedhashes.php?g=13947 new file mode 100644 index 0000000..3f40e35 --- /dev/null +++ b/gamelists/virtualboy/linkedhashes.php?g=13947 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 4b8c8b6a7711a005dd896b3ee9b8d0f1


+
+
+
+ \ No newline at end of file diff --git a/gamelists/wonderswan.html b/gamelists/wonderswan.html new file mode 100644 index 0000000..7e8baf9 --- /dev/null +++ b/gamelists/wonderswan.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +Supported Games WonderSwan - RetroAchievements +
+
+ +
+
+ \ No newline at end of file diff --git a/gamelists/wonderswan/linkedhashes.php?g=14594 b/gamelists/wonderswan/linkedhashes.php?g=14594 new file mode 100644 index 0000000..dc7c4e7 --- /dev/null +++ b/gamelists/wonderswan/linkedhashes.php?g=14594 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 2 unique ROM(s) registered for it with the following MD5s:

  • a6686dc9d258a79b0aa1085d18918e65
  • b017d367af1ba43171beba3e184d9ee9


+
+
+
+ \ No newline at end of file diff --git a/gamelists/wonderswan/linkedhashes.php?g=14599 b/gamelists/wonderswan/linkedhashes.php?g=14599 new file mode 100644 index 0000000..0b26d5d --- /dev/null +++ b/gamelists/wonderswan/linkedhashes.php?g=14599 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 4 unique ROM(s) registered for it with the following MD5s:

  • 098b747bf9d88f651735b45197e393e1
  • 2a4636abe2246598ea819721d48fb3c8
  • 6e8848993a51e0226ba4be18e7bb6b73
  • 7d4ba677a746557366cdc4a753c8862a


+
+
+
+ \ No newline at end of file diff --git a/gamelists/wonderswan/linkedhashes.php?g=14657 b/gamelists/wonderswan/linkedhashes.php?g=14657 new file mode 100644 index 0000000..eecf37b --- /dev/null +++ b/gamelists/wonderswan/linkedhashes.php?g=14657 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 3e62a6b6af656fcac225cd02446acb9d


+
+
+
+ \ No newline at end of file diff --git a/gamelists/wonderswan/linkedhashes.php?g=14731 b/gamelists/wonderswan/linkedhashes.php?g=14731 new file mode 100644 index 0000000..69d9bef --- /dev/null +++ b/gamelists/wonderswan/linkedhashes.php?g=14731 @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + +Linked Hashes - RetroAchievements +
+
+
+ +

List of Linked Hashes

+ +

Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.

Currently this game has 1 unique ROM(s) registered for it with the following MD5s:

  • 5e92e316ce0998edbec00b31a6f2e112


+
+
+
+ \ No newline at end of file