├── Syscalls ├── Plugin.zip ├── LangSwapper.zip └── README.md ├── SaveData ├── DigiSave.zip └── README.md ├── Font_Esp ├── EditFont.xdelta ├── README.md └── Font_Esp.tbl ├── Gim2png_bat ├── Digimon_Dex.psd ├── Drop_Items.psd ├── gim2png.bat ├── png2gim.bat ├── Sample.bat ├── Readme.md └── GIM_RE.bat ├── SCRIPTS_python ├── gim2png.py └── addExtensionInBatch.py ├── Armips_files ├── sceEBOOT.asm ├── txt_ID00033.asm └── txt_000f5e90_000f5f50_00012768_.asm ├── SCRIPTS_bms └── unpack_00.bms ├── FAQ & Bugs.md ├── Text_from_Images.txt ├── Cheat4steps.md ├── README.md ├── LICENSE └── RE_Guide.md /Syscalls/Plugin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunkai9448/digipet_PSP/HEAD/Syscalls/Plugin.zip -------------------------------------------------------------------------------- /SaveData/DigiSave.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunkai9448/digipet_PSP/HEAD/SaveData/DigiSave.zip -------------------------------------------------------------------------------- /Font_Esp/EditFont.xdelta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunkai9448/digipet_PSP/HEAD/Font_Esp/EditFont.xdelta -------------------------------------------------------------------------------- /Syscalls/LangSwapper.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunkai9448/digipet_PSP/HEAD/Syscalls/LangSwapper.zip -------------------------------------------------------------------------------- /Gim2png_bat/Digimon_Dex.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunkai9448/digipet_PSP/HEAD/Gim2png_bat/Digimon_Dex.psd -------------------------------------------------------------------------------- /Gim2png_bat/Drop_Items.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunkai9448/digipet_PSP/HEAD/Gim2png_bat/Drop_Items.psd -------------------------------------------------------------------------------- /Gim2png_bat/gim2png.bat: -------------------------------------------------------------------------------- 1 | :: Author Mugi 2 | 3 | @echo off 4 | for %%a in (*.gim) do gimconv %%a -o %%a.png 5 | mkdir png 6 | copy "*.png" ".\png\*.png" 7 | del *.png 8 | cd png 9 | rename *.png *. 10 | rename *.gim *.png 11 | pause -------------------------------------------------------------------------------- /Gim2png_bat/png2gim.bat: -------------------------------------------------------------------------------- 1 | :: Author Mugi 2 | 3 | @echo off 4 | for %%a in (*.png) do gimconv %%a -o %%a.gim -digi 5 | mkdir gim 6 | copy "*.gim" ".\gim\*.gim" 7 | del *.gim 8 | cd gim 9 | rename *.gim *. 10 | rename *.png *.gim 11 | pause 12 | -------------------------------------------------------------------------------- /SaveData/README.md: -------------------------------------------------------------------------------- 1 | ## 100% Completed Game 2 | 3 | If you don't care about doing the bosses and just want to make digimon battles, use this completed DigiSave.zip file. 4 | 5 | - Unzip it, and then copy paste it into your SAVEDATA folder. 6 | 7 | *This is the save from my betatesting's playthrough, everything is unlocked.* 8 | 9 | By Bunkai 10 | -------------------------------------------------------------------------------- /SCRIPTS_python/gim2png.py: -------------------------------------------------------------------------------- 1 | # Author: Bunkai 2 | # This method was eventually deprecated for the project but it serves as Proof of Concept and learning material 3 | 4 | # Python script to convert GIM files to PNG 5 | 6 | import os 7 | import sys 8 | 9 | # folder path 10 | dir_path = "./" 11 | 12 | # creates folder to save new files 13 | os.system("mkdir PNG \n") 14 | 15 | # loop through files 16 | for i in os.listdir(dir_path): 17 | if i.endswith('.GIM') : 18 | input = str(i) 19 | output = input + ".png" 20 | os.system("gimconv " + input + " -o " + "./PNG/" + output + "\n") 21 | 22 | print("files converted") 23 | -------------------------------------------------------------------------------- /SCRIPTS_python/addExtensionInBatch.py: -------------------------------------------------------------------------------- 1 | # Author: Bunkai 2 | # This method was eventually deprecated for the project but it serves as Proof of Concept and learning material 3 | 4 | # Python script to convert GIM files to PNG 5 | 6 | import os 7 | import sys 8 | 9 | # folder path 10 | dir_path = "./" 11 | 12 | # creates folder to save new files 13 | # os.system("mkdir GIM \n") 14 | 15 | # loop through files 16 | for i in os.listdir(dir_path): 17 | if os.path.isfile(i) and not i.endswith('.GIM') and not i.endswith('.PNG') and not i.endswith('.exe') and not i.endswith('.bms') and not i.endswith('.pbi') and not i.endswith('.py'): 18 | input = str(i) 19 | output = input + ".GIM" 20 | os.system("rename " + input + " "+ output + "\n") 21 | # os.system("move " + output + " \"./GIM/\" " + "\n") 22 | 23 | print("files converted") 24 | -------------------------------------------------------------------------------- /Font_Esp/README.md: -------------------------------------------------------------------------------- 1 | ## Why? 2 | 3 | To avoid copyright issues for uploading the font, I upload an explanation and a patch to get the original changed. 4 | 5 | This will also give you the font I use without having to patch the whole game. 6 | ![Font image](https://imgur.com/SzgT90E.png) 7 | 8 | # how to use 9 | 10 | If you just want the new font, take the font file from the game ( ID000029) and patch it with: 11 | EditFont.xdelta 12 | 13 | After that, you'll need to load "Font_Esp.tbl" in your armips script. 14 | **Save both files (armips and table) with utf8 encoding** 15 | 16 | 17 | # What if I want a completely new font? 18 | Follow the RE_Guide and make your own edits to the font and the original table from: 19 | https://www.romhacking.net/documents/765/ 20 | **Don't forget to save the tbl with utf8 encoding if you have non ascii characters.** 21 | 22 | 23 | -------------------------------------------------------------------------------- /Gim2png_bat/Sample.bat: -------------------------------------------------------------------------------- 1 | :: Author: Bunkai 2 | 3 | :: Based on the post by akadewboy on Fri Apr 01, 2011 9:11 pm 4 | :: in https://forum.xentax.com/viewtopic.php?t=6313 5 | :: With snipped code to add -digi option in GimConv.cfg file, by "ethanol" 6 | 7 | :: "input.GIM" == "output.GIM" sanity check: 8 | :: gimconv "input.GIM" -o "output.GIM" -digi 9 | 10 | ::1. Convert it to PNG using GimConv 11 | gimconv "GIM_000000bd.GIM" -o "GIM_000000bd.PNG" -digi 12 | pause 13 | 14 | :: 2. Edit GIM_000000bd.PNG with whatever graphic program you want. 15 | :: option A/ Work with PNG in 32bit PNG and save it in 8bit+Alpha 16 | :: option B/ Work with PNG in 32bit PNG, save it as Indexed and run it through https://tinypng.com/ 17 | 18 | :: 3. Use GimConv to convert GIM_000000bd.PNG into a GIM 19 | gimconv "GIM_000000bd.PNG" -o "GIM_000000bd1.GIM" -digi 20 | pause 21 | -------------------------------------------------------------------------------- /Armips_files/sceEBOOT.asm: -------------------------------------------------------------------------------- 1 | ; Author: Bunkai (guided by Mugi) 2 | 3 | ; psp elfs are always loaded to 8804000 4 | ;so when you write your armips file, you open the elf with that in mind 5 | 6 | .psp 7 | .open "EBOOT.BIN", 0x08803F40 ; as such it excludes header 8 | 9 | ; Uncommonly, this elf basically treats everything inside the header as start relative not ram absolute 10 | ; hence we need to substract the base to each function define address to use the right one. 11 | sceImposeSetLanguageMode equ 0x088F96E4 - 0x08804000 12 | sceUtilityMsgDialogInitStart equ 0x088F9724 - 0x08804000 13 | sceUtilitySavedataInitStart equ 0x088F972C - 0x08804000 14 | 15 | ; ----- patch Impose language 16 | .org 0x0883DA60 17 | addiu a0, zero, 0x03 ; set your language id (0x03 for spanish) 18 | jal sceImposeSetLanguageMode 19 | addiu a1, zero, 0x00 ; set button to confirm/cancel (O to confirm = 0x0 , O to cancel = 0x1) 20 | 21 | 22 | ; ----- If we need space to put extra code, we can use the betatest building strings block 23 | .org 0x08803F40 + 0x00102370 24 | 25 | .close 26 | -------------------------------------------------------------------------------- /Gim2png_bat/Readme.md: -------------------------------------------------------------------------------- 1 | # Folder summary 2 | 3 | - Digimon_Dex.psd & Drop_Items.psd : Preformated samples to know the image parameters if you have problems finding 4 | them. 5 | 6 | - GIM_RE.bat : Script guide to do the reversing to the image parameters step by step 7 | 8 | - Sample.bat : Sample for sanity-check (to see if your parameters create a 1:1 GIM file) 9 | 10 | - gim2png.bat & png2gim.bat : Scripts (by Mugi) To convert all files from one format to another in one batch. 11 | 12 | *The png2gim.bat only gives reinsertable GIMs when your PNG has the proper parameters. If your GIM is bigger or 13 | doesn't show in-game check those parameters (using the GIM_RE.bat)* 14 | 15 | ## Don't Forget 16 | 17 | You need to add this code block to the GimConv.cfg file, in order to make this game's PSP GIM files. 18 | Then you can add -digi to the cli (command line instruction) 19 | *Remember to save the PNG in INDEX format before the GIS and GIM conversion, or it won't work* 20 | 21 | Code snippet from ethanol: 22 | ``` 23 | //-------------------------------------------------------- 24 | // PSP digivice GIM specific options 25 | //-------------------------------------------------------- 26 | 27 | option -digi { 28 | image_format = index4 29 | palette_format = rgba4444 30 | format_style = psp 31 | format_endian = little 32 | output_image = on 33 | output_palette = on 34 | output_sequence = on 35 | check_limit = off 36 | } 37 | ``` 38 | -------------------------------------------------------------------------------- /Gim2png_bat/GIM_RE.bat: -------------------------------------------------------------------------------- 1 | :: Author: Bunkai 2 | 3 | :: Script to get a 1:1 size from a full process 4 | :: of image conversion GIM to PNG to GIM 5 | :: (It will use the GIS format as a bridge). 6 | 7 | 8 | :: First sanity check 9 | :: GIM to GIS 10 | :: gimconv A_input.gim -o A_outputGIM.gis -digi 11 | :: and GIS to GIM 12 | :: gimconv A_outputGIM.gis -o A_output.gim -digi 13 | :: Then compare both GIM files to see if they are the same 14 | :: pause 15 | :: Our first sanity checked concluded happyly, we can now start our work now: 16 | 17 | 18 | :: Second sanity check 19 | :: GIM to PNG 20 | :: gimconv A_input.gim -o A_outputGIM.png -digi 21 | :: GIM to GIS to PNG 22 | :: gimconv A_input.gim -o A_outputGIM.gis -digi 23 | :: gimconv A_outputGIM.gis -o A_outputGIS.png -digi 24 | :: Then compare both GIM files to see if they are the same 25 | :: pause 26 | :: Our second sanity checked concluded happyly, we can now start our work now: 27 | 28 | 29 | :: Let's see what are the differences between 30 | :: PNG to GIS output 31 | gimconv A_outputGIM.png -o A_outputPNG.gis -digi 32 | :: and the original GIM to GIS ouput 33 | gimconv A_input.gim -o A_outputGIM.gis -digi 34 | pause 35 | :: Now with those differences is time to make an edit to A_outputGIM.gis 36 | :: to be equal to A_outputGIM.gis 37 | :: I did the comparison with https://winmerge.org/downloads/ 38 | :: Now with those differences is time to make an edit to A_outputGIM.gis 39 | :: to be equal to A_outputGIM.gis 40 | :: I did the comparison with https://winmerge.org/downloads/ 41 | :: Now with those differences we now what needs to be done: 42 | :: Save your png in INDEX format and run it through https://tinypng.com/ 43 | :: then finally 44 | gimconv A_outputGIM.png -o A2_outputPNG.gim -digi 45 | pause 46 | -------------------------------------------------------------------------------- /SCRIPTS_bms/unpack_00.bms: -------------------------------------------------------------------------------- 1 | # Author: Bunkai 2 | 3 | # script for QuickBMS http://quickbms_aluigi_org 4 | # Use it to unpack any file extracted from the CPK in the "Digive Ver. Portable (PSP)" 5 | # All images from the LCD part of the digivice are in the ID00000 file, and that was used to create this script. 6 | # As a consequence, the comments and explanations use the ID00000 values as examples. 7 | # Besides the same script also works for any of the files in the CPK of this game with little modifications. 8 | # (Said modifications are in the number of files to unpack ) 9 | 10 | 11 | endian little # The file is for a PSP game, hence little endian 12 | 13 | # Header 14 | 15 | idstring "pBin" # File format 16 | 17 | get unknown long # 0x01 18 | get unknown long # 0x01 19 | get null long 20 | get unknown long # 0x04 21 | get num_Files long # 0x1C02 Number of files in the pack 22 | 23 | # Table Of Contents 24 | 25 | # First file explained as example 26 | # 1: 0xE020 (filesize) and 0xD821 (start address), 0x47494D (header of the first actual file) 27 | # get fileSize long # 0xE020 28 | # get offset long # 0xD821 29 | # getdstring pbi_file 0x8 # 0x47494D 30 | 31 | 32 | # Actual unpacking 33 | 34 | # After the header, 35 | for i = 0 < num_Files # For the files in the pack (Table of Contents), do: 36 | 37 | # following the order explained at the examples 38 | 39 | get length long # getting eight bytes and storing it as the variable 'length' (filesize). 40 | get pointer long # getting eight bytes and storing it as the variable 'pointer' (offset). 41 | 42 | 43 | getdstring pbi_file 0x8 # gets a string from a file, and reads a set amount of characters 44 | # Each file name is a set length of 0x8 or 8 bytes. 45 | 46 | string pbi_file + i # adds an id to the string for the file name 47 | string pbi_file + ".GIM" # adds extension to the string for the file name 48 | 49 | 50 | log pbi_file pointer length # takes values from above: an offset of a file, an output name and a length of the file, 51 | # and writes a new file. 52 | next i 53 | -------------------------------------------------------------------------------- /Syscalls/README.md: -------------------------------------------------------------------------------- 1 | # Disclaimer 2 | 3 | - I reuploaded this since the original binaries might get lost and are needed for this project to be fully completed. 4 | The original and only author of this plugin is kokibits ( https://github.com/kokibits/ ). 5 | 6 | - kokibits, you stated in your readme that this plugin was to help this kind of projects and you didn't add any kind 7 | of requirement or license, I hope this is OK with you. However if you want me to take your files out of this repo, 8 | please submit a github issue and I will gladly abide by your decission. Thanks. 9 | 10 | - This method/plugin was buried and almost forgotten. It's time to make it spread, because it solves many headaches 11 | for this and future translation projects, and it deserves the attention. You can learn more about the plugin in: 12 | https://wololo.net/talk/viewtopic.php?f=28&t=42910&p=389277 13 | https://github.com/kokibits/LangSwapper 14 | 15 | ## How To Use 16 | 17 | For System Messages like this ![System Message Picture](https://imgur.com/3fzRibF.png) 18 | 19 | - You are usually expected to track down the sce functions in your game and edit them, but there is way to work with 20 | them in a simpler and more generic manner, thanks to the use of a PSP plugin. 21 | 22 | - For those who haven't used a plugin for PSP before, here's how you make it work: 23 | https://gbatemp.net/threads/adrenaline-how-to-used-plugins.449509/#post-6855326 24 | *Explanations are for PS Vita's Adrenaline, but for a normal PSP just do the same in your PSP root folder (ms0:)* 25 | 26 | - The text will now be copied and pasted here for quick use: 27 | 28 | 29 | ``` 30 | Put the plugin in 'ux0:/pspemu/seplugins/' 31 | 32 | Create a 'game.txt' file and write in it 'ms0:/seplugins/plugin_name.prx 1' 33 | 34 | And put the game.txt inside the 'ux0:/pspemu/seplugins/' folder. 35 | ``` 36 | In our case, the folder would end like this: 37 | ``` 38 | ux0:/pspemu/seplugins/ 39 | game.txt 40 | LangSwapper.prx 41 | ``` 42 | If you need visual aid, check the image below: 43 | ![Visual Aid Image](https://imgur.com/pxDgjyB.png) 44 | 45 | - Don't forget to write this in your "game.txt", you can copy paste. 46 | ``` 47 | ms0:/seplugins/LangSwapper.prx 1 48 | ``` 49 | 50 | - With that we have taken care of all the syscalls required for our translation: 51 | sceImposeSetLanguageMode(), sceUtilityDialogInitStart() and sceUtilitySavedataInitStart() 52 | 53 | ## The easy way, for end users 54 | 55 | Download the [Plugin.zip](Plugin.zip) from this folder, unzip it and put it in the root of your PSP (or psemu/ if you 56 | are using adrenaline). Enjoy: 57 | ![Proof](https://imgur.com/IwtMS1g.png) 58 | -------------------------------------------------------------------------------- /FAQ & Bugs.md: -------------------------------------------------------------------------------- 1 | =============================================================================== 2 | # GAME INFO (FAQs) 3 | =============================================================================== 4 | 5 | - Press "O+X" simultaneously to display the sound menu. 6 | 7 | - Use Up and Left d-pad/arrows to display the digivice watch. 8 | 9 | - The wifi menu is weird even when you read the japanese version, the explanation of this comes from 10 | discarded lines that would double the windows prompted. Again, this is from the original japanese version. 11 | 12 | - O and X buttons are mapped like they were in the japanese version. 13 | *Use X to see your total steps and the remaining ones. Use O to display the menu.* 14 | 15 | - Versus battles are all automated, you can only choose your digimon and phase at the begining of each battle. 16 | *This battles can be done at any hour of the day, no sleep time is inforced.* 17 | 18 | - Cheer your digimon as soon as you choose to attack to win the battle, during the "ready" phase. 19 | The result is decided during that phase. 20 | 21 | - If you press X at the starting of a battle (before the menu appears), you will be prompted with the lose 22 | animation, and your digimon will be exhausted. That's a game feature, not related to the patch. 23 | *When you lose a battle, a line will appear in the bottom, you need to open the menu with O and do as asked.* 24 | 25 | - There is a total of 52 digimons, including the digimon partners. All partners have the same number of 26 | digi-evo phases.
See the number of wins required to unlock all the digi-evo here: 27 | 10 > 15 > 20
28 | 29 | - There is a total of 8 + 1 digimon partners. 30 | 31 | - After the first, each partner joins when you find them in "Help" mode that appears seemingly random during 32 | walking time. You need to win the battle for them to join, and there are certain moments when the help doesn't 33 | return a partner (this is due to the original programing, not related to the patch). 34 | *The area you're in doesn't matter for the random HELP mode to appear, you can get various before moving to other area 35 | if you want.* 36 | 37 | - To change your walking digimon, open the menu and check its parameters, your last digimon used/checked will be 38 | the one walking. 39 | 40 | - The Game has 7 Areas, below you can see the minimum steps/clicks required to finish each one.
41 | See all Steps required here:10 000 > 12 000 > 14 000 > 16 000 > 18 000 > 20 000 > 22 000
42 | *There is an incomplete cheat for that in this repo, called Cheat4steps.txt. It was done during the first area, then 43 | discarded to focus on actually working on the patch. However, it works in a sense.* 44 | 45 | - Battled digimon are random within a range for each area. However, the final boss of each area is 46 | fixated.
See all Bosses here:Kuwagamon > Devimon > Etemon > Metaltyranomon > 47 | MetalSeadramon > Megadramon > Mugendramon & Apocalymon
48 | 49 | =============================================================================== 50 | # Betatesting & Known Bugs (Updated) 51 | =============================================================================== 52 | 53 | - Currently none 54 | 55 | -------------------------------------------------------------------------------- /Text_from_Images.txt: -------------------------------------------------------------------------------- 1 | TEXT FROM GRAPHICS (Transcribed and translated by Bunkai) 2 | --------------------------------------------------------- 3 | 4 | /////////////////////////////////////////////////////////////////// 5 | /// FILE ID00000 inside FILEDATA.CPK | LCD part of the digivice /// 6 | /////////////////////////////////////////////////////////////////// 7 | 8 | コウゲキ Atacar > luchar (to avoid repetition with "attack") 9 | シンカ Digievolución > Digi-Evo (reduced size to fit) 10 | ナカマ Aliado > Compañero (partne to be consistent with the tv-show) 11 | ニゲル Huir 12 | パラメーター Parámetros 13 | マップ Mapa 14 | チリョウ Botiquín 15 | ツウシン Conectar/link > Versus (The others are too long or sound very odd) 16 | バトルスタート Iniciando batalla/Start batlle 17 | ニク Carne ; later used for 肉を手に入れた!DP+2 18 | プロテイン Proteína ; later used for プロテインを手に入れた!HP+1 19 | PW-B Píldora DP+ 20 | P-ドラッグ VictoriaSegura ; later used for P-ドラッグを手に入れた!次のバトルで敵を確実に倒せます 21 | エリアクリアー Area completa / Area Cleared 22 | エリアクリア A completar 23 | ノウホスウ ( 総歩数 = Total steps) Total andado > Podómetro 24 | サウンド Sonido 25 | オン ON 26 | オフ OFF 27 | HELP > AYUDA 28 | BATTLE > 29 | ERROR 30 | HP (Health Points) > P.V. (Puntos de Vida) 31 | DP (Actually, Digimon Points) > P.F. (Puntos de Fuerza) (to avoid any mislead and make it obvious) 32 | ATTACK Ataque 33 | WIN Victoria 34 | CATCH! > ¡Acepta! (In the actual game you are letting the digimon join, not catching them) 35 | READY ¡Prepárate! 36 | 37 | アグモン Agumon 38 | ガブモン Gabumon 39 | ピヨモン Piyomon 40 | パルモン Palmon 41 | テントモン Tentomon 42 | ゴマモン Gomamon 43 | パタモン Patamon 44 | グレイモン Greymon 45 | ガルルモン Garurumon 46 | バードラモン Birdramon 47 | トゲモン Togemon 48 | カブテリモン Kabuterimon 49 | イッカクモン Ikkakumon 50 | エンジェモン Angemon 51 | メタルグレイモン MetalGreymon 52 | ワーガルルモン WereGarurumon 53 | ガルダモン Garudamon 54 | リリモン Lilimon 55 | アトラーカブテリモン AtlurKabuterimon 56 | ズドモン Zudomon 57 | ホーリーエンジェモン HolyAngemon 58 | ブイドラモン Veedramon 59 | プロットモン Plotmon 60 | テイルモン Tailmon 61 | エンジェウーモン Angewomon 62 | ウォーグレイモン WarGreymon 63 | メタルガルルモン MetalGarurumon 64 | ホウオウモン Hououmon 65 | ロゼモン Rosemon 66 | ヘラクラカブテリモン HeraclesKabuterimon 67 | ヴァイクモン Vikemon 68 | セラフィモン Seraphimon 69 | オファニモン Ophanimon 70 | オメガモン Omegamon 71 | クワガーモン Kuwagamon 72 | デビモン Devimon 73 | エテモン Etemon 74 | メタルティラノモン MetalTyranomon 75 | メタルシードラモン MetalSeadramon 76 | メガドラモン Megadramon 77 | ムゲンドラモン Mugendramon 78 | アポカリモン Apocalymon 79 | クネモン Kunemon 80 | ギザモン Gizamon 81 | ガジモン Gazimon 82 | バケモン Bakemon 83 | オーガモン Ogremon 84 | スカモン Sukamon 85 | シェルモン Shellmon 86 | ダークティラノモン DarkTyranomon 87 | ゲコモン Gekomon 88 | エアドラモン Airdramon 89 | 90 | /////////////////////////////////////////////////////// 91 | /// FILE ID00015 inside FILEDATA.CPK | title_screen /// 92 | /////////////////////////////////////////////////////// 93 | 94 | デジヴァイス Digivice 95 | 96 | ©本郷あきよし•東映アニメーション•テレビ朝日•電通© 2013 NBG > ©Hongo Akiyoshi • Toei Ani. • Asahi TV • Dentsu ©2013 NBHI 97 | 98 | ///////////////////////////////////////////////////////////////// 99 | /// FILE ID00018 inside FILEDATA.CPK | game_intro "animation" /// 100 | ///////////////////////////////////////////////////////////////// 101 | 102 | ご注意 103 | ゲームソフトを権利者の許諾なく、 104 | インターネットを通じで配信、配布する行為、また、違法インターネット配信と知りながらダウンロードする行為は法律で固く禁じられております。 105 | みなさまのご理解とご協力を 106 | お願いたします。 107 | 108 | English (official text in other games with the same warning) 109 | 110 | WARNING 111 | Duplication and distribution without permission from the copyright holder, 112 | transmission and distribution through the internet, 113 | and downloading of this game software is prohibited by law. 114 | We ask for your understanding and cooperation. 115 | -------------------------------------------------------------------------------- /Cheat4steps.md: -------------------------------------------------------------------------------- 1 | # Creating a cheatcode for our game 2 | 3 | As a bonus for this project, I wanted to create a Quality of Life improvement for this game. 4 | 5 | - This will cheat at the steps parameter of this game. 6 | 7 | ## Game ID: 8 | 9 | Just google for it, in our case is: 10 | ``` 11 | Digivice Ver. Portable (Japan) PSP ISO. ID: NPJH-00126 12 | ``` 13 | 14 | ## How to make it 15 | 16 | - The idea is to study how RAM values are passed and changed during executions. 17 | 18 | - First you need to go to the screen where those values appear (they don't need to be displayed, as long as the game 19 | is using them, but knowing the actual value will help to find them). 20 | 21 | - Once you have the values located in-game, you want their RAM location, hence the next step is making a RAM Dump. 22 | 23 | - In PPSSPP, go to Debug > Dissassembly. See image below: 24 | ![Debug](https://imgur.com/kyTlsNK.png) 25 | 26 | - And right-click in the "Memory" pannel down below, then click on Dump. 27 | ![RAM Dump](https://imgur.com/uVAGKl6.png) 28 | 29 | 30 | - There are a few ways to look at the dump, you can even do it by hex editor. However, to make your work easier, 31 | you're going to use a tool created for that purpose. Download and install/open ArtMoney from the following link 32 | https://www.artmoney.ru/e_download_se.htm you can study how the parameters for steps change. 33 | *Another popular tool to make this is https://www.cheatengine.org/* 34 | 35 | - Open ArtMoney (or your selected tool), and load your RAM.dump. 36 | ![ArtMoney](https://imgur.com/WBxYpW2.png) 37 | 38 | - It's time to look for that number in the tool (ArtMoney or Cheatengine). Don't worry when you encounter many 39 | candidates for the digits you typed, your next step will be reduce it. Use the 'Search' button, and write the digits 40 | you want to find. 41 | ![Search for the value](https://imgur.com/gdIAaki.png) 42 | 43 | 44 | - To decrease the matches you want to keep the tool (ArtMoney or Cheatengine) open, play to change the in-game 45 | value and then dump the RAM again. This way you're going to track down the values in the RAM, using the filter button. 46 | ![Filter the candidates](https://imgur.com/08k8B8c.png) 47 | 48 | - After you have done the previous steps a few times and only one candidate, it's time to double-check your results. 49 | When you double click over the address obtained in the left pannel (red arrow in the image below), A new information 50 | will show in the right pannel (blue arrow in the image below). This left pannel shows (theoretically) the value digits 51 | in the RAM (and the dump file). 52 | ![Results](https://imgur.com/pzPAedX.png) 53 | 54 | 55 | - The next step is double-check that with your game. Copy your address from the left pannel (the red arrow above). 56 | Open your emulator's memory viewer, and go to that address to change its digits. If everything went well, you're going 57 | to see your parameters change in game. *The addresses on this game steps are: 0959724 for remainings steps, and 58 | 0959728 for walked steps.* 59 | 60 | - Tip: for some reason PPSSPP not always shows RAM values because you have to set something properly in 61 | it. Don't worry, you won't get a sanity-check but, you can keep going with the process and the results won't change. 62 | 63 | ## How to use it 64 | 65 | As a way to test it, a cheat code for PPSSPP was created following the guide from: 66 | https://www.almarsguides.com/retro/walkthroughs/PSP/HowToUsePSPCodes/ 67 | 68 | Here's the text you need to put in your ~\ppsspp\memstick\PSP\Cheatscheat.db file: 69 | ``` 70 | _S NPJH-00126 71 | _G Digivice Ver. Portable (Japan) PSP ISO 72 | _C0 Edit Remaining Steps 73 | _L 0x000000959724 0x00000000 74 | _C0 Edit Walked Steps 75 | _L 0x000000959728 0x00000000 76 | ``` 77 | *To test this in hardware use the cwcheat plugin. https://www.cfwaifu.com/cwcheat-adrenaline/* 78 | 79 | 80 | ## FAQ 81 | 82 | - This cheat was made quickly, and due to the nature of the routines for steps in this digivice game, the 83 | result of the cheat is buggy. However it works as a Proof Of Concept to learn and make more, in fact you can use 84 | it for its original purpose with little effort. 85 | 86 | - Code was tested and working both in PPSSPP and PS Vita's adrenaline, which means also works on PSP. 87 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # digipet_PSP 2 | 3 | This repository contains files to reverse engineering (RE from now on) the files from the "digivice ver. portable psp" ("The game" from now on), and use that to create a patch for translating the game. 4 | 5 | If you only want the patch go to: [Releases]([RE_Guide.md](https://github.com/Bunkai9448/digipet_PSP/releases)). 6 | Otherwise, go on with the readme. In addition, you have a step by step of the RE in [RE_Guide.md](RE_Guide.md). 7 | 8 | **Warning**: Some files and/or methods of this project might be only as a proof of concept, hence they lead nowhere further on. If you don't know why something is there, it's probably that. 9 | 10 | ## Considerations 11 | 12 | - You must provide your own game files. Do not ask here for them. 13 | 14 | - Digivice Ver. Portable (Japan) PSP ISO. ID: NPJH-00126 15 | ```` 16 | ISO: Digivice_Ver_Portable_JPN_PSN_PSP-PLAYASiA.iso 17 | CRC32: 986e0198 18 | SHA1: e15cd56748525babbb402868ea3df8b44bb6a5c8 19 | SHA256: ae16195736eb15ba9b2b93f1af31a55401097bc8dff2edf22f304cf4abc69fbc 20 | ```` 21 | 22 | - Althought the patch has been tested for the entire game without any problem, it's provided "as is", use it at 23 | your own responsability. 24 | 25 | 26 | ## ISO structure to know where the located info is 27 | 28 | ```` 29 | D:. 30 | | UMD_DATA.BIN 31 | | 32 | \---PSP_GAME 33 | | ICON0.PNG 34 | | PARAM.SFO 35 | | PIC1.PNG 36 | | 37 | +---SYSDIR 38 | | | BOOT.BIN 39 | | | EBOOT.BIN 40 | | | OPNSSMP.BIN 41 | | | 42 | | \---UPDATE 43 | | DATA.BIN 44 | | EBOOT.BIN 45 | | PARAM.SFO 46 | | 47 | \---USRDIR 48 | FILEDATA.CPK 49 | ```` 50 | 51 | ## Files & folders in this repo. 52 | 53 | - Armips_files: ASM scripts for armips, use them to edit the text parts of the game. 54 | 55 | - Font_Esp: Patch and table for the Spanish font. (Can be used standalone). 56 | 57 | - Gim2png_bat: BAT scripts to automate GIM to PNG image conversions, Samples + PSD to test if the tool works properly. 58 | 59 | - SCRIPTS_bms: BMS scripts for quickBMS, use them to unpack and repack files. Scripts are commented with explanations. 60 | 61 | - SCRIPTS_python: To automate gim2png and png2gim (Only as Proof of Concept). 62 | 63 | - SaveData: Use this save if you don't want to complete the game yourself. 64 | 65 | - Syscalls: The use of this plugin avoids dealing with the sce functions and force the console system set language. 66 | 67 | - Cheat4steps.txt (guide with Proof Of Concept to make cheats for this or any other game). 68 | 69 | - FAQ & Bugs.md (game FAQs & Bugs). 70 | 71 | - LICENSE (self-explanatory). 72 | 73 | - README.md (self-explanatory). 74 | 75 | - RE_Guide.md (self-explanatory). 76 | 77 | - Text_from_Images (contains the transcribed text from graphics). 78 | 79 | 80 | ## Extra Tools required 81 | 82 | - https://www.ppsspp.org/index.html (PPSSPP emulator & debugger). 83 | 84 | - https://www.romhacking.net/utilities/1218/ (UMDgen). 85 | 86 | - https://www.romhacking.net/utilities/818/ (Crystal Tile 2). 87 | 88 | - CriPackTools & Cripack maker / crifilesystem (some versions don't work and not all can be shared). 89 | 90 | - https://github.com/Kingcom/armips (armips program). 91 | 92 | - http://aluigi.altervista.org/quickbms.htm (quickBMS program). 93 | 94 | - GimConv (you have to find this tool on your own). 95 | 96 | - https://www.romhacking.net/utilities/1225/ (DecEboot to decrypt EBOOT.BIN). 97 | 98 | - http://aluigi.org/bms/parse_exe.bms (to unpack the decrypted EBOOT.BIN and work with the text part better). 99 | 100 | - https://www.romhacking.net/utilities/598/ (xdelta and xdeltaUI to create the patch easily). 101 | 102 | 103 | ## List of References and Documentation (in no particular order) 104 | 105 | - https://haroohie.club/blog/2022-11-02-chokuretsu-archives/ (a RE guide for nds, helps with a few concepts). 106 | 107 | - https://datacrystal.romhacking.net/wiki/Blaze_Union:Tutorials (mini tuto about the PPSSPP debugger). 108 | 109 | - https://gbatemp.net/threads/psp-debugging.452408/ (more about PPSSPP debugger). 110 | 111 | - https://gbatemp.net/threads/psp-asm-hacking-for-variable-width-font.374967/page-3 112 | 113 | - https://forum.xentax.com/viewtopic.php?t=6313 (about GIM format, for PSP images). 114 | 115 | - http://personal.denison.edu/~bressoud/cs281-s10/ (MIPS, PSP uses those with some custom instructions/encodings). 116 | 117 | - https://github.com/uofw/upspd (PSP unofficial documentation repo). 118 | 119 | - https://www.psdevwiki.com/ps3/Graphic_Image_Map_(GIM) (wiki entry about GIM files). 120 | 121 | - https://www.psdevwiki.com/ps3/GimConv (wiki entry about GIMconv). 122 | 123 | - https://www.vg-resource.com/thread-28180.html (tuto for making BMS scripts). 124 | 125 | - http://gitaroopals.shoutwiki.com/wiki/PSP:Patching_the_executable_(BOOT.BIN) (info about BOOT.bin & EBOOT.bin). 126 | 127 | - https://wiki.vg-resource.com/GMO (info about GMO files, 3d models). 128 | 129 | - https://winmerge.org/downloads/ (helps comparing files, to get proper gim format in reinsertion). 130 | 131 | - https://www.romhacking.net/documents/765/ (font table). 132 | 133 | - http://psp.jim.sh/pspsdk-doc/psputility__sysparam_8h.html (sceImposeSetLanguageMode). 134 | 135 | - http://psp.jim.sh/pspsdk-doc/psputility__msgdialog_8h.html (sceUtilityMsgDialogInitStart). 136 | 137 | - http://psp.jim.sh/pspsdk-doc/psputility__savedata_8h.html (sceUtilitySavedataInitStart). 138 | 139 | - https://github.com/NationalSecurityAgency/ghidra (To find sceUtilityMsgDialogInitStart, and more). 140 | 141 | - https://github.com/kotcrab/ghidra-allegrex/blob/master/README.md (PSP's CPU module for ghidra). 142 | 143 | - https://wololo.net/talk/viewtopic.php?f=28&t=42910&p=389277 (plugin to avoid dealing with syscalls, sce functions). 144 | 145 | - https://github.com/kokibits/LangSwapper (source code for the plugin to avoid dealing with syscalls, sce functions). 146 | 147 | ## Author 148 | 149 | - Bunkai 150 | 151 | ## Special thanks 152 | 153 | - Fothsid (first guidance about the headers) 154 | 155 | - Mugi (guidance about file structure and some scripts; Info, Data and guidance for System Messages) 156 | 157 | - Ethanol (guidance about Font, GIM, Gimconv config snippet and help fixing extract/insert mistakes) 158 | 159 | - kokibits (this project uses their PSP plugin for the syscalls) 160 | 161 | - 前田太尊 (maeda taison) (betatester) 162 | 163 | - All the authors of the tools and documents used in this project. 164 | 165 | ## License 166 | 167 | - Creative Commons 168 | 169 | - All the code and builds are free to use, modify and distribute. But you must give credit when it's due. 170 | -------------------------------------------------------------------------------- /Armips_files/txt_ID00033.asm: -------------------------------------------------------------------------------- 1 | ; Author: Bunkai 2 | 3 | .psp 4 | .create "ID00033" , 0x0 5 | 6 | ; header 7 | 8 | .ascii "TXTD" ; signature 9 | .word 0x01 ; version 10 | .word 0x1D ; string count 11 | .word 0x00 ; unknown, PADDING? 12 | 13 | ; String blocks offsets 14 | .word 0x0084, 0x0109, 0x017C, 0x01A9, 0x01E2, 0x022F 15 | .word 0x0244, 0x026B, 0x0270, 0x027B, 0x0286, 0x0291 16 | .word 0x02B6, 0x02C3, 0x02FC, 0x030D, 0x031E, 0x032B 17 | .word 0x033C, 0x034A, 0x0352, 0x0361, 0x0376, 0x0389 18 | .word 0x0396, 0x03A0, 0x03CE, 0x0405, 0x041B 19 | 20 | ; string data 21 | .loadtable "Font_Esp.tbl" 22 | 23 | 24 | block001_str1: 25 | .string "No se detecta tarjeta." ; 記録メディアを検出することができませんでした。 26 | .align 4 27 | 28 | .byte 0x0A ; Control code for separating different strings 29 | 30 | block001_str2: 31 | .string "Se requieren %dKB de espacio en memoria para este juego." ; このゲームのデータをセーブするには空き容量が%dKB以上の記録メディアが必要です。 32 | .align 4 33 | 34 | .org 0x0109 ; goes to next offset 35 | 36 | block002_str1: 37 | .string "No hay suficiente espacio en memoria." ; 記録メディアの空き容量が不足しています。 38 | .align 4 39 | 40 | .byte 0x0A ; Control code for separating different strings 41 | 42 | block002_str2: 43 | .string "Para guardar se necesitan aun %dKB." ; このゲームのデータをセーブするには空き容量があと%dKB以上必要です。 44 | .align 4 45 | 46 | .org 0x017C ; goes to next offset 47 | 48 | block003_str1: 49 | .string "¿Quieres borrar archivos y hacer espacio?" ; 記録メディアから不要なデータを削除しますか? 50 | .align 4 51 | 52 | .org 0x01A9 ; goes to next offset 53 | 54 | block004_str1: 55 | .string "Se ha cancelado el borrado."; データの削除をキャンセルしました。 56 | .align 4 57 | 58 | .byte 0x0A ; Control code for separating different strings 59 | 60 | block004_str2: 61 | .string "Guardando."; セーブに移行します。 62 | .align 4 63 | 64 | .org 0x01E2 ; goes to next offset 65 | 66 | block005_str1: 67 | .string "El borrado de memoria se ha detenido." ; データの削除が中断されました。 68 | .align 4 69 | 70 | .byte 0x0A ; Control code for separating different strings 71 | 72 | block005_str2: 73 | .string "¿Quieres borrar datos no deseados?" ; 記録メディアから不要なデータを削除しますか? 74 | .align 4 75 | 76 | .org 0x022F ; goes to next offset 77 | 78 | block006_str1: 79 | .string "Guardando." ; セーブに移行します。 80 | .align 4 81 | 82 | .org 0x0244 ; goes to next offset 83 | 84 | block007_str1: 85 | .string "Tiempo de juego: %2dh %2dmin %2ds." ; プレイ時間 %2d時間%2d分%2d秒 86 | .align 4 87 | 88 | .org 0x026B ; goes to next offset 89 | 90 | block008_str1: 91 | .string "OK"; OK 92 | .align 4 93 | 94 | .org 0x0270 ; goes to next offset 95 | 96 | block009_str1: 97 | .string "Cancelar" ; キャンセル 98 | .align 4 99 | 100 | .org 0x027B ; goes to next offset 101 | 102 | block010_str1: 103 | .string "Empezar" ; はじめから 104 | .align 4 105 | 106 | .org 0x0286 ; goes to next offset 107 | 108 | block011_str1: 109 | .string "Continuar" ; つづきから 110 | .align 4 111 | 112 | .org 0x0291 ; goes to next offset 113 | 114 | block012_str1: 115 | .string "Digivice Ver. Portable." ; デジヴァイスVer.Portable 116 | .align 4 117 | 118 | .org 0x02B6 ; goes to next offset 119 | 120 | block013_str1: 121 | .string "Datos prev." ; セーブデータ 122 | .align 4 123 | 124 | .org 0x02C3 ; goes to next offset 125 | 126 | block014_str1: 127 | .string "Digivice Ver. Portable: Datos guardos." ; デジヴァイスVer.Portableのセーブデータです。 128 | .align 4 129 | 130 | .org 0x02FC ; goes to next offset 131 | 132 | block015_str1: 133 | .string "Ed. Greymon" ; グレイモンカラー 134 | .align 4 135 | 136 | .org 0x030D ; goes to next offset 137 | 138 | block016_str1: 139 | .string "Ed. Garurumon" ; ガルルモンカラー 140 | .align 4 141 | 142 | .org 0x031E ; goes to next offset 143 | 144 | block017_str1: 145 | .string "Ed. Anime" ; アニメカラー 146 | .align 4 147 | 148 | .org 0x032B ; goes to next offset 149 | 150 | block018_str1: 151 | .string "Ed. Tailmon" ; テイルモンカラー 152 | .align 4 153 | 154 | .org 0x033C ; goes to next offset 155 | 156 | block019_str1: 157 | .string "Ed. Normal" ; ノーマルカラー 158 | .align 4 159 | 160 | .org 0x034A ; goes to next offset 161 | 162 | block020_str1: 163 | .string "Guardar" ; セーブ 164 | .align 4 165 | 166 | .org 0x0352 ; goes to next offset 167 | 168 | block021_str1: 169 | .string "Cambiar ed." ; カラーチェンジ 170 | .align 4 171 | 172 | .org 0x0361 ; goes to next offset 173 | 174 | block022_str1: 175 | .string "Wifi: OFF" ; 通信バトル設定:有効 176 | .align 4 177 | 178 | .byte 0x0A ; Control code for separating different strings 179 | 180 | .org 0x0377 ; goes to next offset 181 | 182 | block022_str2: 183 | .string "¿Guardar?" ; セーブしますか? 184 | .align 4 185 | 186 | .byte 0x0A ; Control code for separating different strings 187 | .org 0x0389 ; goes to next offset 188 | 189 | block022_str3: 190 | .string "¡Guardando!" ; セーブ中! 191 | .align 4 192 | 193 | .org 0x0396 ; goes to next offset 194 | 195 | block023_str1: 196 | .string "Guardado." ; セーブ完了 197 | .align 4 198 | 199 | .org 0x03A0 ; goes to next offset 200 | 201 | block024_str1: 202 | .string "Se ha cancelado el guardado." ; セーブが中断されました。 203 | .align 2 204 | 205 | .byte 0x0A ; Control code for separating different strings 206 | 207 | block024_str2: 208 | .string "¿Reintentar?" ; リトライしますか? 209 | .align 4 210 | 211 | .byte 0x0A ; Control code for separating different strings 212 | 213 | .org 0x03CE ; goes to next offset 214 | 215 | block024_str3: 216 | .string "¿Activar batalla vs PNJ?" ; NPC対戦設定:無効 217 | .align 4 218 | 219 | .byte 0x0A ; Control code for separating different strings 220 | 221 | block024_str4: 222 | .string "NPC対戦を有効にしますか?" ; NPC対戦を有効にしますか? 223 | .align 4 224 | 225 | .byte 0x0A ; Control code for separating different strings 226 | 227 | .org 0x0405 ; goes to next offset 228 | 229 | block024_str5: 230 | .string "Wifi: ON" ; 通信バトル設定:無効 231 | .align 2 232 | 233 | .byte 0x0A ; Control code for separating different strings 234 | 235 | .org 0x041B ; goes to next offset 236 | 237 | block024_str6: 238 | .string "¿Desactivar batalla vs PNJ?" ; NPC対戦設定:有効 239 | .align 4 240 | 241 | .byte 0x0A ; Control code for separating different strings 242 | 243 | block024_str7: 244 | .string "NPC対戦を無効にしますか?" ; NPC対戦を無効にしますか? 245 | .align 4 246 | 247 | .close 248 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Legal Code 2 | 3 | CC0 1.0 Universal 4 | 5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE 6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN 7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS 8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES 9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS 10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM 11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED 12 | HEREUNDER. 13 | 14 | Statement of Purpose 15 | 16 | The laws of most jurisdictions throughout the world automatically confer 17 | exclusive Copyright and Related Rights (defined below) upon the creator 18 | and subsequent owner(s) (each and all, an "owner") of an original work of 19 | authorship and/or a database (each, a "Work"). 20 | 21 | Certain owners wish to permanently relinquish those rights to a Work for 22 | the purpose of contributing to a commons of creative, cultural and 23 | scientific works ("Commons") that the public can reliably and without fear 24 | of later claims of infringement build upon, modify, incorporate in other 25 | works, reuse and redistribute as freely as possible in any form whatsoever 26 | and for any purposes, including without limitation commercial purposes. 27 | These owners may contribute to the Commons to promote the ideal of a free 28 | culture and the further production of creative, cultural and scientific 29 | works, or to gain reputation or greater distribution for their Work in 30 | part through the use and efforts of others. 31 | 32 | For these and/or other purposes and motivations, and without any 33 | expectation of additional consideration or compensation, the person 34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she 35 | is an owner of Copyright and Related Rights in the Work, voluntarily 36 | elects to apply CC0 to the Work and publicly distribute the Work under its 37 | terms, with knowledge of his or her Copyright and Related Rights in the 38 | Work and the meaning and intended legal effect of CC0 on those rights. 39 | 40 | 1. Copyright and Related Rights. A Work made available under CC0 may be 41 | protected by copyright and related or neighboring rights ("Copyright and 42 | Related Rights"). Copyright and Related Rights include, but are not 43 | limited to, the following: 44 | 45 | i. the right to reproduce, adapt, distribute, perform, display, 46 | communicate, and translate a Work; 47 | ii. moral rights retained by the original author(s) and/or performer(s); 48 | iii. publicity and privacy rights pertaining to a person's image or 49 | likeness depicted in a Work; 50 | iv. rights protecting against unfair competition in regards to a Work, 51 | subject to the limitations in paragraph 4(a), below; 52 | v. rights protecting the extraction, dissemination, use and reuse of data 53 | in a Work; 54 | vi. database rights (such as those arising under Directive 96/9/EC of the 55 | European Parliament and of the Council of 11 March 1996 on the legal 56 | protection of databases, and under any national implementation 57 | thereof, including any amended or successor version of such 58 | directive); and 59 | vii. other similar, equivalent or corresponding rights throughout the 60 | world based on applicable law or treaty, and any national 61 | implementations thereof. 62 | 63 | 2. Waiver. To the greatest extent permitted by, but not in contravention 64 | of, applicable law, Affirmer hereby overtly, fully, permanently, 65 | irrevocably and unconditionally waives, abandons, and surrenders all of 66 | Affirmer's Copyright and Related Rights and associated claims and causes 67 | of action, whether now known or unknown (including existing as well as 68 | future claims and causes of action), in the Work (i) in all territories 69 | worldwide, (ii) for the maximum duration provided by applicable law or 70 | treaty (including future time extensions), (iii) in any current or future 71 | medium and for any number of copies, and (iv) for any purpose whatsoever, 72 | including without limitation commercial, advertising or promotional 73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each 74 | member of the public at large and to the detriment of Affirmer's heirs and 75 | successors, fully intending that such Waiver shall not be subject to 76 | revocation, rescission, cancellation, termination, or any other legal or 77 | equitable action to disrupt the quiet enjoyment of the Work by the public 78 | as contemplated by Affirmer's express Statement of Purpose. 79 | 80 | 3. Public License Fallback. Should any part of the Waiver for any reason 81 | be judged legally invalid or ineffective under applicable law, then the 82 | Waiver shall be preserved to the maximum extent permitted taking into 83 | account Affirmer's express Statement of Purpose. In addition, to the 84 | extent the Waiver is so judged Affirmer hereby grants to each affected 85 | person a royalty-free, non transferable, non sublicensable, non exclusive, 86 | irrevocable and unconditional license to exercise Affirmer's Copyright and 87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the 88 | maximum duration provided by applicable law or treaty (including future 89 | time extensions), (iii) in any current or future medium and for any number 90 | of copies, and (iv) for any purpose whatsoever, including without 91 | limitation commercial, advertising or promotional purposes (the 92 | "License"). The License shall be deemed effective as of the date CC0 was 93 | applied by Affirmer to the Work. Should any part of the License for any 94 | reason be judged legally invalid or ineffective under applicable law, such 95 | partial invalidity or ineffectiveness shall not invalidate the remainder 96 | of the License, and in such case Affirmer hereby affirms that he or she 97 | will not (i) exercise any of his or her remaining Copyright and Related 98 | Rights in the Work or (ii) assert any associated claims and causes of 99 | action with respect to the Work, in either case contrary to Affirmer's 100 | express Statement of Purpose. 101 | 102 | 4. Limitations and Disclaimers. 103 | 104 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 105 | surrendered, licensed or otherwise affected by this document. 106 | b. Affirmer offers the Work as-is and makes no representations or 107 | warranties of any kind concerning the Work, express, implied, 108 | statutory or otherwise, including without limitation warranties of 109 | title, merchantability, fitness for a particular purpose, non 110 | infringement, or the absence of latent or other defects, accuracy, or 111 | the present or absence of errors, whether or not discoverable, all to 112 | the greatest extent permissible under applicable law. 113 | c. Affirmer disclaims responsibility for clearing rights of other persons 114 | that may apply to the Work or any use thereof, including without 115 | limitation any person's Copyright and Related Rights in the Work. 116 | Further, Affirmer disclaims responsibility for obtaining any necessary 117 | consents, permissions or other rights required for any use of the 118 | Work. 119 | d. Affirmer understands and acknowledges that Creative Commons is not a 120 | party to this document and has no duty or obligation with respect to 121 | this CC0 or use of the Work. 122 | -------------------------------------------------------------------------------- /RE_Guide.md: -------------------------------------------------------------------------------- 1 | # RE_Guide 2 | 3 | This file is basically a cleaned-up version of: 4 | https://www.romhacking.net/forum/index.php?topic=35699.msg437896#msg437896 5 | *If you want more details about how or why something was done, go there.* 6 | 7 | - To make the document cleaner, links to the used tools are listed in the [README.md](README.md) 8 | 9 | ## INDEX 10 | - [First Steps](#First-Steps) 11 | - [Working with the CPK file](#Working-with-the-CPK-file) 12 | - [Text File](#Text-File) 13 | - [More unpackaging inside the CPK](#More-unpackaging-inside-the-CPK) 14 | - [Images and GIM files](#Images-and-GIM-files) 15 | - [Remaining text in the Eboot](#Remaining-text-in-the-Eboot) 16 | - [The Font](#The-Font) 17 | - [Repackaging the CPK](#Repackaging-the-CPK) 18 | - [System Messages](#System-Messages) 19 | - [Last Steps](#Last-Steps) 20 | - [Extra: Making the patch](#Making-the-patch) 21 | - [Appendix: Data Location Summary](#Data-Location-Summary) 22 | 23 | 24 | ## First Steps 25 | 26 | - Open your ISO and extract your files with umdgen. 27 | ![UMDGen V.4](https://imgur.com/bZgTET9.png) 28 | 29 | - Now with astrogrep, look for a word used in the game, here はじめから it's used. 30 | In this case, it throws results in the FILEDATA.CPK, which means, tinkering with that file will be the next step. 31 | *Mind you, there are a lot of text in the EBOOT file which is encrypted, those words won't appear here, that part will be explained later in the guide* 32 | ![Astrogrep](https://imgur.com/RCyQVqe.png) 33 | 34 | 35 | ## Working with the CPK file 36 | 37 | - In the previous section you were leaded to the FILEDATA.CPK, now it's time to get your hands dirty on it. 38 | *This guide will use Crystal Tile 2 for the hex part, but you can use any other editor if you feel more confortable.* 39 | When you open the FILEDATA.CPK with your text editor, you'll notice it has more than just text. That is because the 40 | file is a package of files, which you want to unpack. 41 | 42 | - Use CriPackedFileMaker to get the files inside your CPK. 43 | ![CriPackedFileMaker](https://imgur.com/GcipI9C.png) 44 | 45 | - This time, you can either go one by one checking what's inside, or use Astrogrep again to find the text you want 46 | to edit. In any case, you'll end up in file: ID00033. 47 | ![CriPackedFileMaker](https://imgur.com/7xk7WMG.png) 48 | 49 | 50 | ## Text File 51 | 52 | - There are several ways to approach this section, this guide uses one which relies on brute force. 53 | If you want to go and find any other guide for dumping and reinserting the text, feel free. 54 | *In this project, text uses s-jis but you'd need a table file if you don't see the text properly* 55 | 56 | - Basically you have to understand how the file and header work, using a hex editor. Then, with that info, you create a code with 57 | armips to create a replica of the file. The Armips_files folder in this repo contains this section's scripts. 58 | *If you want to create a 1:1 file to double-check; edit the script with the original pointers and japanese text.* 59 | 60 | 61 | ## More unpackaging inside the CPK 62 | 63 | - It's time to look for the images and sprites in the game. To do that, you want to search in the other files of 64 | the ISO. In this guide the ID00000 file will be used as example, but the idea is the same for all of them. 65 | 66 | - The current approach is the same you used for the text script, you use the hex editor to understand how the file and 67 | header work. Put that knowledge into a code for packaging/unpackaging. 68 | ![ID00000](https://imgur.com/xLBbtRo.png) 69 | 70 | - From the header of this file, you can learn: 71 | ```` 72 | The file starts with the 24 bit header 73 | (File format / several bits that for some reason are the same in most or all games -0x01000 0x01000 0x01000 0x04000- / Number of files in package). 74 | Followed by a table of contents with all the GIM files in it listed, all elements have the same structure here 75 | ( filesize -0xE020- / start address -0xD821- / header of the actual file -0x47494D- ) 76 | After the table of contents comes the packaged files, GIM images in this cases. 77 | ```` 78 | 79 | - If you want to use the scripts from this guide, go to SCRIPTS_bms and use quickBMS with the scripts in that folder. 80 | *In this method the same script works for packaging and unpackaging.* 81 | 82 | 83 | ## Images and GIM files 84 | 85 | - After unpackaging the files from the previous section, you'll have a lot of GIM files. Those are image files in PSP's 86 | propietary format. It's time to work with them. 87 | 88 | - You could have been lucky if Gimconv made the full conversion (from GIM to PNG, and back to GIM) with default configuration 89 | and commands. However for this game that's not how it went, that leads you again to open your hex editor and 90 | look at the header to see your image properties. In addition, you want to make a sanity check and get an 91 | "output.GIM" equal to "input.GIM". In this example: edit Gimconv configuration, and execute the 92 | command with the new created option: 93 | ```` 94 | option -digi { 95 | image_format = index4 96 | palette_format = rgba4444 97 | format_style = psp 98 | format_endian = little 99 | output_image = on 100 | output_palette = on 101 | output_sequence = on 102 | check_limit = off 103 | } 104 | 105 | gimconv "input.GIM" -o "output.GIM" -digi 106 | ```` 107 | 108 | - Once you have the loseless GIM to GIM conversion you can start working with a PNG transformation in the middle. 109 | *The remaining part of the section is also copied down 'as is' into Gim2png_bat/GIM_RE.bat for easy trial.* 110 | 111 | - Based on the post by akadewboy on Fri Apr 01, 2011 9:11 pm 112 | in https://forum.xentax.com/viewtopic.php?t=6313 113 | With snipped code to add -digi option in GimConv.cfg file, by ethanol. 114 | 115 | 1. Convert it to PNG using GimConv. 116 | gimconv "GIM_000000bd.GIM" -o "GIM_000000bd.PNG" -digi 117 | 118 | 2. Edit GIM_000000bd.PNG with whatever graphic program you want. 119 | Work with PNG in 16/32bit PNG, save it as Indexed and run it through https://tinypng.com/ 120 | *For this project, you can use the PSDs files with the default options if you have problems with colors after insertion.* 121 | 122 | 3. Use GimConv to convert GIM_000000bd.PNG into a GIM. 123 | gimconv "GIM_000000bd.PNG" -o "Edited_GIM_000000bd.GIM" -digi 124 | 125 | 126 | ## Remaining text in the Eboot 127 | 128 | - There is still text missing and, from previous steps, apparently nothing useful for that in FILEDATA.CPK, BOOT.BIN, or OPNSSMP.BIN. The last chance of something easy is to find it in the unencrypted version of EBOOT.BIN. Hence you 129 | want to decrypt it to see its content, luckyly DecEboot can deal with that part. Use DecEboot to get the decrypted file, then use a hex editor to see the inners of that file... ¡Jackpot! You found the remaining text: 130 | ![Deceboot](https://imgur.com/S3CZJmz.png) 131 | 132 | - To make the edits easier, you can also unpack the sections in the eboot with the script parse_exe.bms for quickbms. That was done in this guide, the file with the text is: "000f5e90_000f5f50_00012768_". 133 | 134 | - In some rare cases, the EBOOT needs to be re-encrypted for the game to work. Lucky you, for this game, 135 | the EBOOT can be reimported unencrypted. 136 | 137 | - Now you can go back to [Text File](#Text-File) and do the same thing for the remaining part of the section. 138 | *To avoid dealing with random crashes, this repo didn't change any EBOOT text pointers. 139 | In that sense, you don't have to worry about the header or any different address block here.* 140 | 141 | 142 | ## The Font 143 | 144 | - You eventually have most files analysed, leaving GMO files (PSP 3d model format) and code aside. 145 | The font must be in the remaining ID00029 file. Time to open it with your hex editor and find out. 146 | 147 | - PSP usually puts fonts in 4BPP format, you'll want to try that before scrolling. Once you have found the characters, 148 | if they are uncompressed (like in this digivice game) the only thing to do is discovering the actual size of the 149 | tiles. 150 | 151 | - This font parameters are: 152 | ```` 153 | BGA 4bpp "tiled" with 16x16 tiles 154 | ```` 155 | 156 | - And the font looks like: 157 | ![Font](https://imgur.com/MT729WV.png) 158 | 159 | - Now it's time to edit the file to add the characters you want. Example: 160 | ![Font Changes](https://imgur.com/IxWZh74.png) 161 | 162 | - To end this task, do not forget to modify your table file accordingly. 163 | *You won't be able to use the new characters properly otherwise.* 164 | ![Table Changes](https://imgur.com/CjXA0uX.png) 165 | 166 | 167 | ## Repackaging the CPK 168 | 169 | - Remember the second step of this guide? You used CriPackedFileMaker to get the files from inside your CPK. 170 | This is the opposite task, with the same tool. 171 | 172 | - Before rebuilding/repackaging, you want to get the CPK original info. *To create one with the same parameters later.* 173 | ![Get file info](https://imgur.com/g3bJOqD.png) 174 | 175 | - You can do a repackage without edits as a sanity check. For this game: 176 | ```` 177 | Data alignment: 2048 ; File Mode: ID ; any other box unmarked. 178 | ```` 179 | ![Use that file info](https://imgur.com/gSPAfqK.png) 180 | 181 | - If you did everything right, you'll have your "complete" prompt. 182 | 183 | 184 | ## System Messages 185 | ![System Messages example](https://imgur.com/3fzRibF.png) 186 | 187 | Before going into this step, you should know: 188 | *sceImposeSetLanguageMode* is what opens when you press the PSP button. 189 | *sceUtilitySavedataInitStart* is the save/load module. 190 | *sceUtilityMsgDialogInitStart* is generic messages that open using the system overlay. 191 | 192 | - There are two ways of dealing with the system calls (used to print messages with system code): 193 | Using a PSP plugin, or modifying the ELF/BIN file. 194 | 195 | - In this project will be using the PSP pluging to make our work easier, but the basics of the 196 | other deprecated method is explain below, to those interested in learning about it.* 197 | 198 | If you want the quick easy method, use only the [PSP plugin](##PSP-plugin) subsection. 199 | 200 | ### PSP plugin 201 | 202 | More details at: 203 | https://github.com/Bunkai9448/digipet_PSP/blob/main/Syscalls/README.md 204 | 205 | #### Disclaimer 206 | 207 | The original and only author of this plugin is kokibits ( https://github.com/kokibits/ ). 208 | 209 | - You can learn more about the plugin in: 210 | https://wololo.net/talk/viewtopic.php?f=28&t=42910&p=389277 211 | https://github.com/kokibits/LangSwapper 212 | 213 | - For those who haven't used a plugin for PSP before, here's how you make it work: 214 | https://gbatemp.net/threads/adrenaline-how-to-used-plugins.449509/#post-6855326 215 | *Explanations are for PS Vita's Adrenaline, but for a normal PSP just do the same in your PSP root folder (ms0:)* 216 | 217 | - The text will now be copied and pasted here for quick use: 218 | 219 | ``` 220 | Put the plugin in 'ux0:/pspemu/seplugins/' 221 | 222 | Create a 'game.txt' file and write in it 'ms0:/seplugins/plugin_name.prx 1' 223 | 224 | And put the game.txt inside the 'ux0:/pspemu/seplugins/' folder. 225 | ``` 226 | In our case, the folder would end like this: 227 | ``` 228 | ux0:/pspemu/seplugins/ 229 | game.txt 230 | LangSwapper.prx 231 | ``` 232 | If you need visual aid, check the image below: 233 | ![Visual Aid Image](https://imgur.com/pxDgjyB.png) 234 | 235 | - Don't forget to write this in your "game.txt", you can copy paste. 236 | ``` 237 | ms0:/seplugins/LangSwapper.prx 1 238 | ``` 239 | 240 | - With that we have taken care of all the syscalls required for our translation: 241 | sceImposeSetLanguageMode(), sceUtilityDialogInitStart() and sceUtilitySavedataInitStart(). 242 | 243 | 244 | *The following subsections show how to find them should you want to patch 245 | them in the game binaries instead. If you want to jump to the next step, 246 | go to [Last Steps](#Last-Steps).* 247 | 248 | ### PPSSPP debugger 249 | 250 | - Go to Debugger > Disassembly (ctrl+D), see image: 251 | ![Open Debug](https://imgur.com/fVc6xTi.png) 252 | 253 | - In the opened window, go to the left panel and select Func(tions), see image: 254 | ![Select Func(tions)](https://imgur.com/Rwz8s6X.png) 255 | 256 | - Now, find the 3 functions that deal with system messages: 257 | sceImposeSetLanguageMode(), sceUtilityMsgDialogInitStart(), and sceUtilitySavedataInitStart(). 258 | 259 | - Set a breakpoint in the call you want to change, to find the code that makes use of it, see image: 260 | ![Toggle Breakpoint](https://imgur.com/M1bYqYv.png) 261 | 262 | - Minimize the debugger window or move it aside and open a system menu in the emulator 263 | (For example, with sceUtilitySavedataInitStart(), click "continue" at the in-game main screen). 264 | 265 | - The emulator will freeze in this step. Don't worry, it just means the breakpoint has been reached. This is the 266 | address to copy for the define part in armips. 267 | 268 | - Now, we need to see what were the parameters passed to the subroutine (which is the actual code we need to patch). 269 | The stack frames are in charge of that task in the code. 270 | 271 | - To do that, go to the stack frames tab at the bottom of the window where you put the breakpoint, see image: 272 | ![Stack Frames](https://imgur.com/ocsly9v.png) 273 | 274 | - In the stack frames, you'll see now the sce call instruction and the following instructions, double click in the second row. It will show us the code where the actual 275 | sceUtilitySavedataInitStart() is. There you have the address to copy for the edit part in armips. 276 | ![Code we wanted](https://imgur.com/sp6A83G.png) 277 | 278 | ### Ghidra 279 | 280 | *This will explain how to use ghidra to find any of the previous addresses* 281 | *You might want to have this near: https://ghidra-sre.org/CheatSheet.html* 282 | 283 | - Now open ghidra, if it's the first time you'll get welcome with 284 | ![Opening Ghidra](https://imgur.com/fqo4nTK.png) 285 | Go to File > New Project (ctrl+n). 286 | 287 | - Select shared or Non shared project. Then click next and choose your working directory (this 288 | guide will use a folder called PSP_Ghidra). Don't forget to give a name to your project, 289 | Digivice for this guide. If you did it properly, you'll see something like this: 290 | ![New project](https://imgur.com/pBbcztG.png) 291 | 292 | - Go to Usage in allegrex https://github.com/kotcrab/ghidra-allegrex/blob/master/README.md and 293 | do as told (intructions will be copied here to make everything compact with images). 294 | 295 | - Drag the decrypted EBOOT in ELF/PRX/BIN format into Ghidra. It should get automatically 296 | detected as PSP Executable (ELF) / Allegrex. 297 | ![Format autodetected](https://imgur.com/TmQyfW4.png) 298 | 299 | - Now is your chance to set the file initial base address (this is the BIN address in execution time). 300 | Do it clicking Options and changing the value at ImageBase. Set it to 08804000 to match the usual base address where games are loaded 301 | (it could be different in others, you'll see that looking at the defines in PPSSPP debugger or after reading some calls in the code). 302 | ![Base Address](https://imgur.com/Qovddse.png) 303 | 304 | - Click Ok to import the file. Then you'll see "Import Results Info" in a prompt, click OK. 305 | 306 | - After importing and opening the file you should do the auto analysis. Default options are fine. 307 | 308 | - Besides, PPSSPP identifies many functions automatically, it's useful to get those into Ghidra after doing the initial 309 | analysis. Export the .sym file from PPSSPP (click on debugger > export .sym). 310 | ![Save Sym File](https://imgur.com/9xblB8p.png) 311 | 312 | - To use that Sym File in Ghidra, go to the "Display Script Manager" button and double-click on it. 313 | ![Display Script Manager](https://imgur.com/IMRGn0i.png) 314 | 315 | - Now you can import your Sym File with the script PpssppImportSymFile with language allegrex (use "0" for the base 316 | address if you defined the BIN baseAddress, otherwise, you'll have to use that here). 317 | ![PpssppImportSymFile Script](https://imgur.com/3EQZM0C.png) 318 | 319 | - With all the previous steps in ghidra done, you can see the functions and code like you do in PPSSPP. The moment 320 | for finding the addresses has come. Just click the syscall (sce...) from the list in ghidra and it will take you to 321 | the address. For those who need the tip, finding functions and code is similar to the PPSSPP subsection, but with a 322 | static (without running the game) approach. 323 | 324 | ### Subsequent to ghidra/PPSSPP 325 | 326 | *In addition to the function address, you need the base address for the armips script.* 327 | 328 | - The base address is obtained with the formula: original BIN baseAddress (0x8804000) - header size. 329 | From a quick hex view of the EBOOT.BIN you can see where the header ends and the elf (actual executable) starts. 330 | See image ![ELF Header](https://imgur.com/zZAqNF4.png) 331 | Which, you can use to get the arguments for the above formula, for this digivice, means: 332 | ``` 333 | Base Address = 0x8804000 - header = 0x8804000 - 0xC0 334 | 335 | Base Address = 0x8803F40 336 | 337 | ``` 338 | 339 | - With all the addresses, it's time to do the script to patch the EBOOT.BIN 340 | *You should always work with the decrypted eboot.bin. 341 | If boot.bin and eboot.bin are both present, they are identical (assuming you have a decrypted eboot). 342 | Although PSP custom firmwares can use boot.bin to boot, in most retail games is just full of zeroes. 343 | The only exception is games where the boot.bin is fully present and contains debug symbols, in those 344 | cases you delete eboot.bin and rename boot.bin to eboot.bin to work with it.* 345 | 346 | - Let's tart with defines & sceImposeSetLanguageMode (the easiest of them) 347 | 348 | ``` 349 | ; psp elfs are almost always loaded to 8804000 350 | ;so when you write your armips file, you open the elf with that in mind 351 | 352 | .psp 353 | .open "EBOOT.BIN", 0x08803F40 ; as such it excludes header 354 | 355 | ; Uncommonly, this elf basically treats everything inside the header as start relative not ram absolute 356 | ; hence we need to substract the base to each function define address to use the right one. 357 | sceImposeSetLanguageMode equ 0x088F96E4 - 0x08804000 358 | sceUtilityMsgDialogInitStart equ 0x088F9724 - 0x08804000 359 | sceUtilitySavedataInitStart equ 0x088F972C - 0x08804000 360 | 361 | ; ----- patch Impose language 362 | .org 0x0883DA60 363 | addiu a0, zero, 0x03 ; set your language id (0x03 for spanish) 364 | jal sceImposeSetLanguageMode 365 | addiu a1, zero, 0x00 ; set button to confirm/cancel (O to confirm = 0x0 , O to cancel = 0x1) 366 | 367 | .close 368 | ``` 369 | 370 | - Do the same for sceUtilityMsgDialogInitStart, and sceUtilitySavedataInitStart. 371 | 372 | - Once you've done all the changes to the code run your armips script. 373 | 374 | 375 | ## Last Steps 376 | 377 | *This section is just for completionist sake.* 378 | - As you might guessed, you need to rebuild your ISO file to play. Use UMDGen to overwrite the old files with 379 | the new, edited, ones. Enjoy your modified game! 380 | 381 | ## Making the patch 382 | 383 | - To share your modification with the world without sharing the full ISO, you better create a patch. 384 | This section is to teach you how to do so. 385 | 386 | *For this explanation, all the needed files are in the same folder to make it quick and easy to show, it also avoid any 387 | mistakes at chosing the wrong file. However you can have them anywhere you want.* 388 | 389 | - There are many patch creator tools out there, this guide uses xdeltaUI. Now gather the following files: 390 | ```` 391 | Digidemo.iso: Your modified ISO game. 392 | Digivice_Ver_Portable_JPN_PSN_PSP-PLAYASiA.iso: The original ISO game. 393 | xdelta.exe: The patcher. 394 | xdeltaUI.exe: A tool to use the patcher with a GUI to make it more user friendly. 395 | ```` 396 | 397 | - Open(double-click on) xdeltaUI.exe and go to the Create Patch section. 398 | 399 | - Fill the blankets by writing the file's route or clicking the buttons at their right. You'll have something like this: 400 | ![Feeding the info into the patcher](https://imgur.com/t76mUXK.png) 401 | 402 | - Click on the "patch" button and wait a few seconds. A window will appear to tell you everything went well. 403 | You have successfully created your patch! 404 | 405 | ## Data Location Summary 406 | 407 | | File (route) | Data in File | handling (read this guide's section) 408 | |:---:|:---:|:---:| 409 | | ID00000 (cpk) | digi_lcd gim_images | [Images and GIM files](#Images-and-GIM-files) 410 | | ID00014 (cpk) | loading_icon gim_image | [Images and GIM files](#Images-and-GIM-files) 411 | | ID00015 (cpk) | title_screen gim_images | [Images and GIM files](#Images-and-GIM-files) 412 | | ID00018 (cpk) | game_intro gim_images | [Images and GIM files](#Images-and-GIM-files) 413 | | ID00026 (cpk) | new_data icon_png | No section, just add the extension ".png" 414 | | ID00027 (cpk) | saved_data icon_png | No section, just add the extension ".png" 415 | | ID00028 (cpk) | background_png | No section, just add the extension ".png" 416 | | ID00029 (cpk) | font_file | [The Font](#The-Font) 417 | | ID00033 (cpk) | starting menus & a few extra prompts txt | [Text File](#Text-File) 418 | |---|---|---| 419 | | (EBOOT.bin) | all remainig text, commands, and prompts | [Remaining text in the Eboot](#Remaining-text-in-the-Eboot), [System Messages](#System-Messages) 420 | 421 | -------------------------------------------------------------------------------- /Armips_files/txt_000f5e90_000f5f50_00012768_.asm: -------------------------------------------------------------------------------- 1 | ; Author: Bunkai 2 | 3 | .psp 4 | .open "000f5e90_000f5f50_00012768_.dat" , 0x0 5 | 6 | ; Being a boot file is filled with code launching and other stuff 7 | ; I am going to try and work only with the text block here, 8 | ; leaving everything else untouched. Text starts at: 0x0240 9 | .skip 0x0240 10 | 11 | ; string data 12 | .loadtable "Font_Esp.tbl" 13 | 14 | block001_str1: 15 | .string "Comandos" ; コマンド 16 | .align 4 17 | 18 | .org 0x024C ; goes to next offset 19 | 20 | block002_str1: 21 | .string "Caminado" ; 歩数表示 // Num. pasos 22 | .align 4 23 | 24 | .org 0x0258 ; goes to next offset 25 | 26 | block003_str1: 27 | .string "Andar" ; 歩く 28 | .align 4 29 | 30 | .org 0x0260 ; goes to next offset 31 | 32 | block004_str1: 33 | .string "Menú" ; メニュー 34 | .align 4 35 | 36 | .org 0x026C ; goes to next offset 37 | 38 | block005_str1: 39 | .string "Confirmar" ; けってい 40 | .align 4 41 | 42 | .org 0x0278 ; goes to next offset 43 | 44 | block006_str1: 45 | .string "Atrás" ; もどる 46 | .align 4 47 | 48 | .org 0x0280 ; goes to next offset 49 | 50 | block007_str1: 51 | .string "Elegir" ; えらぶ 52 | .align 4 53 | 54 | .org 0x0288 ; goes to next offset 55 | 56 | block008_str1: 57 | .string "Curar" ; なおす 58 | .align 4 59 | 60 | .org 0x0290 ; goes to next offset 61 | 62 | block009_str1: 63 | .string "Cancelar" ; キャンセル たたかう おうえん OK 64 | .align 4 65 | 66 | .org 0x029C ; goes to next offset 67 | 68 | block010_str1: 69 | .string "Luchar" ; たたかう おうえん OK 70 | .align 4 71 | 72 | .org 0x02A8 ; goes to next offset 73 | 74 | block011_str1: 75 | .string "Animar" ; おうえん 76 | .align 4 77 | 78 | .org 0x02B4 ; goes to next offset 79 | 80 | block012_str1: 81 | .string "OK" ; OK 82 | .align 4 83 | 84 | .org 0x02B8 ; goes to next offset 85 | 86 | block013_str1: 87 | .string "Buscar" ; さがす 88 | .align 4 89 | 90 | .org 0x02C0 ; goes to next offset 91 | 92 | block014_str1: 93 | .string "¡ACEPTA!" ; CATCH! 94 | .align 4 95 | 96 | .org 0x02D0 ; goes to next offset 97 | 98 | block015_str1: 99 | .string "Debes andar para investigar todo el área." ; 歩くことでエリアを探索することができます 100 | .align 4 101 | 102 | .org 0x02FC ; goes to next offset 103 | 104 | block016_str1: 105 | .string "Elige la ed. del digivice." ; 本体の色を選んでください 106 | .align 4 107 | 108 | .org 0x0318 ; goes to next offset 109 | 110 | block017_str1: 111 | .string "Ahora debes seleccionar tu primer digimon." ; 最初のパートナーデジモンを選んでください 112 | .align 4 113 | 114 | .org 0x0344 ; goes to next offset 115 | 116 | block018_str1: 117 | .string "Introduce la hora en el digivice. " ; デジヴァイスの時間をセットしてください 118 | .align 4 119 | 120 | .org 0x036C ; goes to next offset 121 | 122 | block019_str1: 123 | .string "Hora en el digivice." ; デジヴァイスの時間です 124 | .align 4 125 | 126 | .org 0x0384 ; goes to next offset 127 | 128 | block020_str1: 129 | .string "Selecciona los ajustes de sonido." ; SEの設定を切り替えることができます 130 | .align 4 131 | 132 | .org 0x03A8 ; goes to next offset 133 | 134 | block021_str1: 135 | .string "Muestra el estado de los digimon en tu equipo." ; パートナーデジモンの状態を見ることができます 136 | .align 4 137 | 138 | .org 0x03D8 ; goes to next offset 139 | 140 | block022_str1: 141 | .string "Selecciona el digimon." ; デジモンを選んでください 142 | .align 4 143 | 144 | .org 0x03F4 ; goes to next offset 145 | 146 | block023_str1: 147 | .string "Comprueba los P.F. (Puntos de Fuerza) actuales." ; DP(デジモンパワー)を確認することができます 148 | .align 4 149 | 150 | .org 0x0424 ; goes to next offset 151 | 152 | block024_str1: 153 | .string "Los P.F. se necesitan para la Digi-Evo" ; DPは進化するときに必要なエネルギーです 154 | .align 4 155 | 156 | .org 0x044C ; goes to next offset 157 | 158 | block025_str1: 159 | .string "Es el número de victorias del digimon." ; デジモンの勝利数を見ることができます 160 | .align 4 161 | 162 | .org 0x0474 ; goes to next offset 163 | 164 | block026_str1: 165 | .string "El medidor calcula el nivel de Digi-Evo." ; メーターが溜まると進化段階がアップします 166 | .align 4 167 | 168 | .org 0x04A0 ; goes to next offset 169 | 170 | block027_str1: 171 | .string "Mira sus P.V. (Puntos de Vida)." ; HP(体力)を確認することができます 172 | .align 4 173 | 174 | .org 0x04C4 ; goes to next offset 175 | 176 | block028_str1: 177 | .string " Los P.V. deciden la victoria. " ; デジモンの生命力でバトルの勝敗を決める要素になります 178 | .align 4 179 | 180 | .org 0x04FC ; goes to next offset 181 | 182 | block029_str1: 183 | .string "Sirve para ver el ataque de tu digimon." ; ATTACK(攻撃力)を確認することができます 184 | .align 4 185 | 186 | .org 0x0528 ; goes to next offset 187 | 188 | block30_str1: 189 | .string "Son los puntos en ataque efectivo." ; 攻撃成功時に与えられるポイントです 190 | .align 4 191 | 192 | .org 0x054C ; goes to next offset 193 | 194 | block031_str1: 195 | .string "Comprueba el área de búsqueda actual." ; 探索中のエリアを確認することができます 196 | .align 4 197 | 198 | .org 0x0574 ; goes to next offset 199 | 200 | block032_str1: 201 | .string "Tu posición está en el área parpadeante." ; 点滅しているエリアが現在攻略中のエリアです 202 | .align 4 203 | 204 | .org 0x5A0 ; goes to next offset 205 | 206 | block033_str1: 207 | .string "Cura a los digimon heridos en batalla." ; バトルで負ったケガを治すことができます 208 | .align 4 209 | 210 | .org 0x5C8 ; goes to next offset 211 | 212 | block034_str1: 213 | .string "Es una batalla contra otro jugador." ; 他のプレイヤーと戦うことができます 214 | .align 4 215 | 216 | .org 0x5EC ; goes to next offset 217 | 218 | block035_str1: 219 | .string "Elige la Digi-Evo para usar." ; 戦う進化段階を選んでください 220 | .align 4 221 | 222 | .org 0x60C ; goes to next offset 223 | 224 | block036_str1: 225 | .string "Conectando... Espera por favor." ; 通信中・・・しばらくお待ちください 通信バトルはオートバトルになります 226 | .align 4 227 | 228 | .org 0x630 ; goes to next offset 229 | 230 | block037_str1: 231 | .string "Iniciando el modo automático." ; 通信バトルはオートバトルになります 232 | .align 4 233 | 234 | .org 0x654 ; goes to next offset 235 | 236 | block038_str1: 237 | .string "Guardar la partida. " ; セーブすることができます 238 | .align 4 239 | 240 | .org 0x670 ; goes to next offset 241 | 242 | block039_str1: 243 | .string "Cambiar la ed. del digivice." ; 本体の色を変えることができます 244 | .align 4 245 | 246 | .org 0x690 ; goes to next offset 247 | 248 | block040_str1: 249 | .string "Cambiar los ajustes para el modo versus." ; 通信バトルの設定を切り替えることができます 250 | .align 4 251 | 252 | .org 0x6BC ; goes to next offset 253 | 254 | block041_str1: 255 | .string "¡Empieza la lucha!" ; バトルスタート! 256 | .align 4 257 | 258 | .org 0x6D0 ; goes to next offset 259 | 260 | block042_str1: 261 | .string "Atacar enemigo" ; 敵を攻撃します 262 | .align 4 263 | 264 | .org 0x6E0 ; goes to next offset 265 | 266 | block043_str1: 267 | .string "Digi-Evo y atacar (coste P.F.: 3)." ; 1段階進化して攻撃します(DP3消費) 268 | .align 4 269 | 270 | .org 0x708 ; goes to next offset 271 | 272 | block044_str1: 273 | .string "Cambia el digimon en batalla y además ataca." ; 選択した仲間デジモンに切り替わって攻撃します 274 | .align 4 275 | 276 | .org 0x738 ; goes to next offset 277 | 278 | block045_str1: 279 | .string "Evitar batalla y huir." ; バトルせずに逃げます 280 | .align 4 281 | 282 | .org 0x750 ; goes to next offset 283 | 284 | block046_str1: 285 | .string "¡Pulsa ○ y anima a tu digimon!" ; ○ボタン連打してデジモンを応援! 286 | .align 4 287 | 288 | .org 0x774 ; goes to next offset 289 | 290 | block047_str1: 291 | .string "¡Éxito!" ; 攻撃成功! 292 | .align 4 293 | 294 | .org 0x780 ; goes to next offset 295 | 296 | block048_str1: 297 | .string "¡Fracaso!" ; 攻撃失敗! 298 | .align 4 299 | 300 | .org 0x78C ; goes to next offset 301 | 302 | block049_str1: 303 | .string "Ganas." ; 勝利! 304 | .align 4 305 | 306 | .org 0x794 ; goes to next offset 307 | 308 | block050_str1: 309 | .string "Has perdido... " ; 敗北してしまった・・・ 310 | .align 4 311 | 312 | .org 0x7AC ; goes to next offset 313 | 314 | block051_str1: 315 | .string "Recibes carne, P.F. +2." ; 肉を手に入れた!DP+2 316 | .align 4 317 | 318 | .org 0x7C4 ; goes to next offset 319 | 320 | block052_str1: 321 | .string "Recibes proteína, P.V. +1. " ; プロテインを手に入れた!HP+1 322 | .align 4 323 | 324 | .org 0x7E4 ; goes to next offset 325 | 326 | block053_str1: 327 | .string "Recibes Victoria segura, en uso para la siguiente batalla." ; P-ドラッグを手に入れた!次のバトルで敵を確実に倒せます 328 | .align 4 329 | 330 | .org 0x820 ; goes to next offset 331 | 332 | block054_str1: 333 | .string "Debes curar a los digimon heridos. " ; 「チリョウ」でケガを治すことができます 334 | .align 4 335 | 336 | .org 0x848 ; goes to next offset 337 | 338 | block055_str1: 339 | .string "No se puede explorar en horas de sueño. Horas de sueño: 9PM - 8AM" ; 睡眠中は探索することができません※睡眠時間PM9:00~AM8:00 340 | .align 4 341 | 342 | .org 0x890 ; goes to next offset 343 | 344 | block056_str1: 345 | .string "Busca con la cruceta, y pulsa ○ cuando salga '¡ACEPTA!' " ; 方向キーで電波が強くなる場所を探してCATCH!が出たら○を押そう! 346 | .align 4 347 | 348 | .org 0x8D4 ; goes to next offset 349 | 350 | block057_str1: 351 | .string "Conseguiste a: Agumon." ; アグモンが仲間になった 352 | .align 4 353 | 354 | .org 0x8EC ; goes to next offset 355 | 356 | block058_str1: 357 | .string "Conseguiste a: Piyomon." ; ピヨモンが仲間になった 358 | .align 4 359 | 360 | .org 0x904 ; goes to next offset 361 | 362 | block059_str1: 363 | .string "Conseguiste a: Gabumon." ; ガブモンが仲間になった 364 | .align 4 365 | 366 | .org 0x91C ; goes to next offset 367 | 368 | block060_str1: 369 | .string "Conseguiste a: Tentomon." ; テントモンが仲間になった 370 | .align 4 371 | 372 | .org 0x938 ; goes to next offset 373 | 374 | block061_str1: 375 | .string "Conseguiste a: Gomamon." ; ゴマモンが仲間になった 376 | .align 4 377 | 378 | .org 0x950 ; goes to next offset 379 | 380 | block062_str1: 381 | .string "Conseguiste a: Palmon." ; パルモンが仲間になった 382 | .align 4 383 | 384 | .org 0x968 ; goes to next offset 385 | 386 | block063_str1: 387 | .string "Conseguiste a: Patamon." ; パタモンが仲間になった 388 | .align 4 389 | 390 | .org 0x980 ; goes to next offset 391 | 392 | block064_str1: 393 | .string "Conseguiste a: Protmon. " ; プロットモンが仲間になった 394 | .align 4 395 | 396 | .org 0x99C ; goes to next offset 397 | 398 | block065_str1: 399 | .string "Conseguiste a: Veedramon." ; ブイドラモンが仲間になった 400 | .align 4 401 | 402 | .org 0x9B8 ; goes to next offset 403 | 404 | block066_str1: 405 | .string "Batalla de Agumons existosa. P.V. y ataque suben +1." ; ドッペルゲンガ―撃破成功!アグモンのHPとATTCK+1 406 | .align 4 407 | 408 | .org 0x9F4 ; goes to next offset 409 | 410 | block067_str1: 411 | .string "Batalla de Piyomons existosa. P.V. y ataque suben +1." ; ドッペルゲンガ―撃破成功!ピヨモンのHPとATTCK+1 412 | .align 4 413 | 414 | .org 0xA30 ; goes to next offset 415 | 416 | block068_str1: 417 | .string "Batalla de Gabumons existosa. P.V. y ataque suben +1." ; ドッペルゲンガ―撃破成功!ガブモンのHPとATTCK+1 418 | .align 4 419 | 420 | .org 0xA6C ; goes to next offset 421 | 422 | block069_str1: 423 | .string "Batalla de Tentomons existosa. P.V. y ataque suben +1." ; ドッペルゲンガ―撃破成功!テントモンのHPとATTCK+1 424 | .align 4 425 | 426 | .org 0xAA8 ; goes to next offset 427 | 428 | block070_str1: 429 | .string "Batalla de Gomamons existosa. P.V. y ataque suben +1." ; ドッペルゲンガ―撃破成功!ゴマモンのHPとATTCK+1 430 | .align 4 431 | 432 | .org 0xAE4 ; goes to next offset 433 | 434 | block071_str1: 435 | .string "Batalla de Palmons existosa. P.V. y ataque suben +1. " ; ドッペルゲンガ―撃破成功!パルモンのHPとATTCK+1 436 | .align 4 437 | 438 | .org 0xB20 ; goes to next offset 439 | 440 | block072_str1: 441 | .string "Batalla de Patamons existosa. P.V. y ataque suben +1." ; ドッペルゲンガ―撃破成功!パタモンのHPとATTCK+1 442 | .align 4 443 | 444 | .org 0xB5C ; goes to next offset 445 | 446 | block073_str1: 447 | .string "Batalla de Protmons existosa. P.V. y ataque suben +1." ; ドッペルゲンガ―撃破成功!プロットモンのHPとATTCK+1 448 | .align 4 449 | 450 | .org 0xB9C ; goes to next offset 451 | 452 | block074_str1: 453 | .string "Nivel Digi-Evo sube +1." ; 進化段階がアップした! 454 | .align 4 455 | 456 | .org 0xBB4 ; goes to next offset 457 | 458 | block075_str1: 459 | .string "Área completa." ; エリアクリア! 460 | .align 4 461 | 462 | .org 0xBC4 ; goes to next offset 463 | 464 | block076_str1: 465 | .string "Fín del juego." ; ゲームクリア! 466 | .align 4 467 | 468 | .org 0xBD4 ; goes to next offset 469 | 470 | block077_str1: 471 | .string "Escapaste." ; 逃走成功! 472 | .align 4 473 | 474 | .org 0xBE0 ; goes to next offset 475 | 476 | block078_str1: 477 | .string "No escapas." ; 逃走失敗! 478 | .align 4 479 | 480 | .org 0xBEC ; goes to next offset 481 | 482 | block079_str1: 483 | .string "No se ha encontrado oponente." ; 対戦相手が見つかりませんでした 484 | .align 4 485 | 486 | .org 0xC0C ; goes to next offset 487 | 488 | block080_str1: 489 | .string "Pulsa el botón ○. " ; ○ボタンを押してください 490 | .align 4 491 | 492 | .org 0xC28 ; goes to next offset 493 | 494 | block081_str1: 495 | .string "¡¡Koromon Digi-Evo Agumon!!" ; コロモン進化―――!アグモン!! 496 | .align 4 497 | 498 | .org 0xC4C ; goes to next offset 499 | 500 | block082_str1: 501 | .string "¡¡Pyokomon Digi-Evo Piyomon!! " ; ピョコモン進化―――!ピヨモン!! 502 | .align 4 503 | 504 | .org 0xC70 ; goes to next offset 505 | 506 | block083_str1: 507 | .string "¡¡Tsunomon Digi-Evo Gabumon!!" ; ツノモン進化―――!ガブモン!! 508 | .align 4 509 | 510 | .org 0xC94 ; goes to next offset 511 | 512 | block084_str1: 513 | .string "¡¡Motimon Digi-Evo Tentomon!! " ; モチモン進化―――!テントモン!! 514 | .align 4 515 | 516 | .org 0xCB8 ; goes to next offset 517 | 518 | block085_str1: 519 | .string "¡¡Pukamon Digi-Evo Gomamon!!" ; プカモン進化―――!ゴマモン!! 520 | .align 4 521 | 522 | .org 0xCDC ; goes to next offset 523 | 524 | block086_str1: 525 | .string "¡¡Tanemon Digi-Evo Palmon!!" ; タネモン進化―――!パルモン!! 526 | .align 4 527 | 528 | .org 0xD00 ; goes to next offset 529 | 530 | block087_str1: 531 | .string "¡¡Tokomon Digi-Evo Patamon!!" ; トコモン進化―――!パタモン!! 532 | .align 4 533 | 534 | .org 0xD24 ; goes to next offset 535 | 536 | block088_str1: 537 | .string "¡¡Nyaromon Digi-Evo Protmon!! " ; ニャロモン進化―――!プロットモン!! 538 | .align 4 539 | 540 | .org 0xD4C ; goes to next offset 541 | 542 | block089_str1: 543 | .string "¡¡Agumon Digi-Evo Greymon!! " ; アグモン進化―――!グレイモン!! 544 | .align 4 545 | 546 | .org 0xD70 ; goes to next offset 547 | 548 | block090_str1: 549 | .string "¡¡Greymon Digi-Evo MetalGreymon!! " ; グレイモン進化―――!メタルグレイモン!! 550 | .align 4 551 | 552 | .org 0xD9C ; goes to next offset 553 | 554 | block091_str1: 555 | .string "¡¡MetalGreymon Digi-Evo WarGreymon!! " ; メタルグレイモン進化―――!ウォーグレイモン!! 556 | .align 4 557 | 558 | .org 0xDD0 ; goes to next offset 559 | 560 | block092_str1: 561 | .string "¡¡WarGreymon & MetalGarurumon Digi-Evo Omegamon!! " ; ウォーグレイモンとメタルガルルモン合体進化―――!オメガモン!! 562 | .align 4 563 | 564 | .org 0xE14 ; goes to next offset 565 | 566 | block093_str1: 567 | .string "¡¡Gabumon Digi-Evo Garurumon!!" ; ガブモン進化―――!ガルルモン!! 568 | .align 4 569 | 570 | .org 0xE38 ; goes to next offset 571 | 572 | block094_str1: 573 | .string "¡¡Garurumon Digi-Evo WereGarurumon!!" ; ガルルモン進化―――!ワーガルルモン!! 574 | .align 4 575 | 576 | .org 0xE64 ; goes to next offset 577 | 578 | block095_str1: 579 | .string "¡¡WereGarurumon Digi-Evo MetalGarurumon!! " ; ワーガルルモン進化―――!メタルガルルモン!! 580 | .align 4 581 | 582 | .org 0xE94 ; goes to next offset 583 | 584 | block096_str1: 585 | .string "¡¡MetalGarurumon & WarGreymon Digi-Evo Omegamon!! " ; メタルガルルモンとウォーグレイモン合体進化―――!オメガモン!! 586 | .align 4 587 | 588 | .org 0xED8 ; goes to next offset 589 | 590 | block097_str1: 591 | .string "¡¡Piyomon Digi-Evo Birdramon!!" ; ピヨモン進化―――!バードラモン!! 592 | .align 4 593 | 594 | .org 0xF00 ; goes to next offset 595 | 596 | block098_str1: 597 | .string "¡¡Birdramon Digi-Evo Garudamon!! " ; バードラモン進化―――!ガルダモン!! 598 | .align 4 599 | 600 | .org 0xF28 ; goes to next offset 601 | 602 | block099_str1: 603 | .string "¡¡Garudamon Digi-Evo Hououmon!! " ; ガルダモン進化―――!ホウオウモン!! 604 | .align 4 605 | 606 | .org 0xF50 ; goes to next offset 607 | 608 | block100_str1: 609 | .string "¡¡Tentomon Digi-Evo Kabuterimon!! " ; テントモン進化―――!カブテリモン!! 610 | .align 4 611 | 612 | .org 0xF78 ; goes to next offset 613 | 614 | block101_str1: 615 | .string "¡¡Kabuterimon Digi-Evo AtlurKabuterimon!! " ; カブテリモン進化―――!アトラーカブテリモン!! 616 | .align 4 617 | 618 | .org 0xFAC ; goes to next offset 619 | 620 | block102_str1: 621 | .string "¡¡AtlurKabuterimon Digi-Evo HeraclesKabuterimon!! " ; アトラーカブテリモン進化―――!ヘラクルカブテリモン!! 622 | .align 4 623 | 624 | .org 0xFE8 ; goes to next offset 625 | 626 | block103_str1: 627 | .string "¡¡Gomamon Digi-Evo Ikkakumon!!" ; ゴマモン進化―――!イッカクモン!! 628 | .align 4 629 | 630 | .org 0x1010 ; goes to next offset 631 | 632 | block104_str1: 633 | .string "¡¡Ikkakumon Digi-Evo Zudomon!!" ; イッカクモン進化―――!ズドモン!! 634 | .align 4 635 | 636 | .org 0x1038 ; goes to next offset 637 | 638 | block105_str1: 639 | .string "¡¡Zudomon Digi-Evo Vikemon!! " ; ズドモン進化―――!ヴァイクモン!! 640 | .align 4 641 | 642 | .org 0x1060 ; goes to next offset 643 | 644 | block106_str1: 645 | .string "¡¡Palmon Digi-Evo Togemon!!" ; パルモン進化―――!トゲモン!! 646 | .align 4 647 | 648 | .org 0x1084 ; goes to next offset 649 | 650 | block107_str1: 651 | .string "¡¡Togemon Digi-Evo Lilimon!!" ; トゲモン進化―――!リリモン!! 652 | .align 4 653 | 654 | .org 0x10A8 ; goes to next offset 655 | 656 | block108_str1: 657 | .string "¡¡Lilimon Digi-Evo Rosemon!!" ; リリモン進化―――!ロゼモン!! 658 | .align 4 659 | 660 | .org 0x10CC ; goes to next offset 661 | 662 | block109_str1: 663 | .string "¡¡Patamon Digi-Evo Angemon!! " ; パタモン進化―――!エンジェモン!! 664 | .align 4 665 | 666 | .org 0x10F4 ; goes to next offset 667 | 668 | block110_str1: 669 | .string "¡¡Angemon Digi-Evo HolyAngemon!! " ; エンジェモン進化―――!ホーリーエンジェモン!! 670 | .align 4 671 | 672 | .org 0x1128 ; goes to next offset 673 | 674 | block111_str1: 675 | .string "¡¡HolyAngemon Digi-Evo Seraphimon!! " ; ホーリーエンジェモン進化―――!セラフィモン!! 676 | .align 4 677 | 678 | .org 0x115C ; goes to next offset 679 | 680 | block112_str1: 681 | .string "¡¡Plotmon Digi-Evo Tailmon!! " ; プロットモン進化―――!テイルモン!! 682 | .align 4 683 | 684 | .org 0x1184 ; goes to next offset 685 | 686 | block113_str1: 687 | .string "¡¡Tailmon Digi-Evo Angewomon!! " ; テイルモン進化―――!エンジェウーモン!! 688 | .align 4 689 | 690 | .org 0x11B0 ; goes to next offset 691 | 692 | block114_str1: 693 | .string "¡¡Angewomon Digi-Evo Ophanimon!! " ; エンジェウーモン進化―――!オファニモン!! 694 | .align 4 695 | 696 | .org 0x11E0 ; goes to next offset 697 | 698 | block115_str1: 699 | .string "De 9PM a 8AM no se puede caminar, solo recuperar los P.F. " ; PM9:00~AM8:00の間は探索できずDPの回復のみ可能です 700 | .align 4 701 | 702 | .org 0x1224 ; goes to next offset 703 | 704 | block116_str1: 705 | .string "Elige el digimon que quieres usar. " ; 切り替える仲間デジモンを選んでください 706 | .align 4 707 | 708 | ; In a different text block, SAVE dialogue 709 | 710 | .org 0x1388 ; goes to next offset 711 | 712 | block117_str1: 713 | .string "Nuevos datos." ; 新規作成データ 714 | .align 4 715 | 716 | .org 0x1398 ; goes to next offset 717 | 718 | block118_str1: 719 | .string "¿Continuar creando nuevos datos? " ; 新規に作成します。よろしいですか? 720 | 721 | .org 0x13BC ; goes to next offset 722 | 723 | block119_str1: 724 | .string "¿Sobrescribir los anteriores? " ; データを上書きします。よろしいですか? 725 | .align 4 726 | 727 | .org 0x13EC ; goes to next offset 728 | 729 | block120_str1: 730 | .string "No hay suficiente espacio en memoria, se necesitan %s más." ; 空き容量が不足しています。セーブするには空き容量があと %s以上必要です。 731 | .align 4 732 | 733 | .org 0x1438 ; goes to next offset 734 | 735 | block121_str1: 736 | .string "Guardado completado." ; セーブが完了しました。 737 | .align 4 738 | 739 | .org 0x1450 ; goes to next offset 740 | 741 | block122_str1: 742 | .string "Proceso interrumpido." ; 処理が中断されました。 743 | .align 4 744 | 745 | ; In a different text block 746 | 747 | .org 0x1590 ; goes to next offset, the item & digimon list in text is writen here 748 | 749 | block123_str1: 750 | .string "NONE" ; NONE 751 | .align 4 752 | 753 | .org 0x1598 ; goes to next offset 754 | 755 | block124_str1: 756 | .string "CARNE" ; NIKU 757 | .align 4 758 | 759 | .org 0x15A0 ; goes to next offset 760 | 761 | block125_str1: 762 | .string "PROTEIN" ; PROTEIN 763 | .align 4 764 | 765 | .org 0x15A8 ; goes to next offset 766 | 767 | block126_str1: 768 | .string "P-DRAG" ; P_DRAG 769 | .align 4 770 | 771 | .org 0x15B0 ; goes to next offset 772 | 773 | block127_str1: 774 | .string "Agumon" ; アグモン 775 | .align 4 776 | 777 | .org 0x15BC ; goes to next offset 778 | 779 | block128_str1: 780 | .string "Piyomon" ; ピヨモン 781 | .align 4 782 | 783 | .org 0x15C8 ; goes to next offset 784 | 785 | block129_str1: 786 | .string "Gabumon" ; ガブモン 787 | .align 4 788 | 789 | .org 0x15D4 ; goes to next offset 790 | 791 | block130_str1: 792 | .string "Tentomon" ; テントモン 793 | .align 4 794 | 795 | .org 0x15E0 ; goes to next offset 796 | 797 | block131_str1: 798 | .string "Gomamon" ; ゴマモン 799 | .align 4 800 | 801 | .org 0x15EC ; goes to next offset 802 | 803 | block132_str1: 804 | .string "Palmon" ; パルモン 805 | .align 4 806 | 807 | .org 0x15F8 ; goes to next offset 808 | 809 | block133_str1: 810 | .string "Patamon" ; パタモン 811 | .align 4 812 | 813 | .org 0x1604 ; goes to next offset 814 | 815 | block134_str1: 816 | .string "Plotmon " ; プロットモン 817 | .align 4 818 | 819 | .org 0x1614 ; goes to next offset 820 | 821 | block135_str1: 822 | .string "Greymon " ; グレイモン 823 | .align 4 824 | 825 | .org 0x1620 ; goes to next offset 826 | 827 | block136_str1: 828 | .string "Garurumon" ; ガルルモン 829 | .align 4 830 | 831 | .org 0x162C ; goes to next offset 832 | 833 | block137_str1: 834 | .string "Birdramon" ; バードラモン 835 | .align 4 836 | 837 | .org 0x163C ; goes to next offset 838 | 839 | block138_str1: 840 | .string "Togemon" ; トゲモン 841 | .align 4 842 | 843 | .org 0x1648 ; goes to next offset 844 | 845 | block139_str1: 846 | .string "Kabuterimon" ; カブテリモン 847 | .align 4 848 | 849 | .org 0x1658 ; goes to next offset 850 | 851 | block140_str1: 852 | .string "Ikkakumon" ; イッカクモン 853 | .align 4 854 | 855 | .org 0x1668 ; goes to next offset 856 | 857 | block141_str1: 858 | .string "Angemon " ; エンジェモン 859 | .align 4 860 | 861 | .org 0x1678 ; goes to next offset 862 | 863 | block142_str1: 864 | .string "Tailmon " ; テイルモン 865 | .align 4 866 | 867 | .org 0x1684 ; goes to next offset 868 | 869 | block143_str1: 870 | .string "MetalGreymon" ; メタルグレイモン 871 | .align 4 872 | 873 | .org 0x1698 ; goes to next offset 874 | 875 | block144_str1: 876 | .string "WereGarurumon" ; ワーガルルモン 877 | .align 4 878 | 879 | .org 0x16A8 ; goes to next offset 880 | 881 | block145_str1: 882 | .string "Parrotmon" ; パロットモン 883 | .align 4 884 | 885 | .org 0x16B8 ; goes to next offset 886 | 887 | block146_str1: 888 | .string "Hada floral" ; 花の妖精 889 | .align 4 890 | 891 | .org 0x16C4 ; goes to next offset 892 | 893 | block147_str1: 894 | .string "AtlurKabuterimon" ; アトラーカブテリモン 895 | .align 4 896 | 897 | .org 0x16DC ; goes to next offset 898 | 899 | block148_str1: 900 | .string "Zudomon" ; ズドモン 901 | .align 4 902 | 903 | .org 0x16E8 ; goes to next offset 904 | 905 | block149_str1: 906 | .string "HolyAngemon " ; ホーリーエンジェモン 907 | .align 4 908 | 909 | .org 0x1700 ; goes to next offset 910 | 911 | block150_str1: 912 | .string "Angewomon " ; エンジェウーモン 913 | .align 4 914 | 915 | .org 0x1714 ; goes to next offset 916 | 917 | block151_str1: 918 | .string "WarGreymon " ; ウォーグレイモン 919 | .align 4 920 | 921 | .org 0x1728 ; goes to next offset 922 | 923 | block152_str1: 924 | .string "MetalGarurumon" ; メタルガルルモン 925 | .align 4 926 | 927 | .org 0x173C ; goes to next offset 928 | 929 | block153_str1: 930 | .string "Hououmon" ; ホウオウモン 931 | .align 4 932 | 933 | .org 0x174C ; goes to next offset 934 | 935 | block154_str1: 936 | .string "Rosemon" ; ロゼモン 937 | .align 4 938 | 939 | .org 0x1758 ; goes to next offset 940 | 941 | block155_str1: 942 | .string "HeraclesKabuterimon" ; ヘラクルカブテリモン 943 | .align 4 944 | 945 | .org 0x1770 ; goes to next offset 946 | 947 | block156_str1: 948 | .string "Vikemon " ; ヴァイクモン 949 | .align 4 950 | 951 | .org 0x1780 ; goes to next offset 952 | 953 | block157_str1: 954 | .string "Seraphimon" ; セラフィモン 955 | .align 4 956 | 957 | .org 0x1790 ; goes to next offset 958 | 959 | block158_str1: 960 | .string "Ophanimon" ; オファニモン 961 | .align 4 962 | 963 | .org 0x17A0 ; goes to next offset 964 | 965 | block159_str1: 966 | .string "Omegamon(Agumon)" ; オメガモン(アグモン) 967 | .align 4 968 | 969 | .org 0x17B8 ; goes to next offset 970 | 971 | block160_str1: 972 | .string "Omegamon(Gabumon) " ; オメガモン(ガブモン) 973 | .align 4 974 | 975 | .org 0x17D0 ; goes to next offset 976 | 977 | block161_str1: 978 | .string "Veedramon" ; ブイドラモン 979 | .align 4 980 | 981 | .org 0x17E0 ; goes to next offset 982 | 983 | block162_str1: 984 | .string "Kuwagamon" ; クワガーモン 985 | .align 4 986 | 987 | .org 0x17F0 ; goes to next offset 988 | 989 | block163_str1: 990 | .string "Devimon" ; デビモン 991 | .align 4 992 | 993 | .org 0x17FC ; goes to next offset 994 | 995 | block164_str1: 996 | .string "Etemon" ; エテモン 997 | .align 4 998 | 999 | .org 0x1808 ; goes to next offset 1000 | 1001 | block165_str1: 1002 | .string "MetalTyranomon " ; メタルティラノモン 1003 | .align 4 1004 | 1005 | .org 0x181C ; goes to next offset 1006 | 1007 | block166_str1: 1008 | .string "MetalSeadramon " ; メタルシードラモン 1009 | .align 4 1010 | 1011 | .org 0x1830 ; goes to next offset 1012 | 1013 | block167_str1: 1014 | .string "Megadramon" ; メガドラモン 1015 | .align 4 1016 | 1017 | .org 0x1840 ; goes to next offset 1018 | 1019 | block168_str1: 1020 | .string "Mugendramon " ; ムゲンドラモン 1021 | .align 4 1022 | 1023 | .org 0x1850 ; goes to next offset 1024 | 1025 | block169_str1: 1026 | .string "Apocalymon" ; アポカリモン 1027 | .align 4 1028 | 1029 | .org 0x1860 ; goes to next offset 1030 | 1031 | block170_str1: 1032 | .string "Kunemon" ; クネモン 1033 | .align 4 1034 | 1035 | .org 0x186C ; goes to next offset 1036 | 1037 | block171_str1: 1038 | .string "Gizamon" ; ギザモン 1039 | .align 4 1040 | 1041 | .org 0x1878 ; goes to next offset 1042 | 1043 | block172_str1: 1044 | .string "Gazimon" ; ガジモン 1045 | .align 4 1046 | 1047 | .org 0x1884 ; goes to next offset 1048 | 1049 | block173_str1: 1050 | .string "Bakemon" ; バケモン 1051 | .align 4 1052 | 1053 | .org 0x1890 ; goes to next offset 1054 | 1055 | block174_str1: 1056 | .string "Ogremon " ; オーガモン 1057 | .align 4 1058 | 1059 | .org 0x189C ; goes to next offset 1060 | 1061 | block175_str1: 1062 | .string "Sukamon" ; スカモン 1063 | .align 4 1064 | 1065 | .org 0x18A8 ; goes to next offset 1066 | 1067 | block176_str1: 1068 | .string "Shellmon" ; シェルモン 1069 | .align 4 1070 | 1071 | .org 0x18B4 ; goes to next offset 1072 | 1073 | block177_str1: 1074 | .string "DarkTyranomon " ; ダークティラノモン 1075 | .align 4 1076 | 1077 | .org 0x18C8 ; goes to next offset 1078 | 1079 | block178_str1: 1080 | .string "Gekomon" ; ゲコモン 1081 | .align 4 1082 | 1083 | .org 0x18D4 ; goes to next offset 1084 | 1085 | block179_str1: 1086 | .string "Airdramon" ; エアドラモン 1087 | .align 4 1088 | 1089 | .org 0x18E4 ; goes to next offset 1090 | 1091 | block180_str1: 1092 | .string "Agumon (Espejo) " ; アグモン(ドッペル) 1093 | .align 4 1094 | 1095 | .org 0x18FC ; goes to next offset 1096 | 1097 | block181_str1: 1098 | .string "Piyomon (Espejo) " ; ピヨモン(ドッペル) 1099 | .align 4 1100 | 1101 | .org 0x1914 ; goes to next offset 1102 | 1103 | block182_str1: 1104 | .string "Gabumon (Espejo) " ; ガブモン(ドッペル) 1105 | .align 4 1106 | 1107 | .org 0x192C ; goes to next offset 1108 | 1109 | block183_str1: 1110 | .string "Tentomon (Espejo) " ; テントモン(ドッペル) 1111 | .align 4 1112 | 1113 | .org 0x1944 ; goes to next offset 1114 | 1115 | block184_str1: 1116 | .string "Gomamon (Espejo) " ; ゴマモン(ドッペル) 1117 | .align 4 1118 | 1119 | .org 0x195C ; goes to next offset 1120 | 1121 | block185_str1: 1122 | .string "Palmon (Espejo) " ; パルモン(ドッペル) 1123 | .align 4 1124 | 1125 | .org 0x1974 ; goes to next offset 1126 | 1127 | block186_str1: 1128 | .string "Patamon (Espejo) " ; パタモン(ドッペル) 1129 | .align 4 1130 | 1131 | .org 0x198C ; goes to next offset 1132 | 1133 | block187_str1: 1134 | .string "Plotmon (Espejo) " ; プロットモン(ドッペル) 1135 | .align 4 1136 | 1137 | ; In a different text block, more Commands 1138 | 1139 | .org 0x1D9C ; goes to next offset 1140 | 1141 | block188_str1: 1142 | .string "Espera" ; 待機 1143 | .align 4 1144 | 1145 | .org 0x1DA4 ; goes to next offset 1146 | 1147 | block189_str1: 1148 | .string "Para" ; 停止 1149 | .align 4 1150 | 1151 | .org 0x1DAC ; goes to next offset 1152 | 1153 | block190_str1: 1154 | .string "Anda" ; 歩き 1155 | .align 4 1156 | 1157 | .org 0x1DB4 ; goes to next offset 1158 | 1159 | block191_str1: 1160 | .string "Ánimos" ; 喜び 1161 | .align 4 1162 | 1163 | .org 0x1DBC ; goes to next offset 1164 | 1165 | block192_str1: 1166 | .string "Ataque" ; 攻撃 1167 | .align 4 1168 | 1169 | .org 0x1DC4 ; goes to next offset 1170 | 1171 | block193_str1: 1172 | .string "Daño" ; ダメージ 1173 | .align 4 1174 | 1175 | .org 0x1DD0 ; goes to next offset 1176 | 1177 | block194_str1: 1178 | .string "Derrotas" ; バトル敗退 1179 | .align 4 1180 | 1181 | .org 0x1DDC ; goes to next offset 1182 | 1183 | block195_str1: 1184 | .string "Heridas" ; 怪我 1185 | .align 4 1186 | 1187 | .org 0x1DE4 ; goes to next offset 1188 | 1189 | block196_str1: 1190 | .string "Evo" ; 進化 1191 | .align 4 1192 | 1193 | .org 0x1DEC ; goes to next offset 1194 | 1195 | block197_str1: 1196 | .string "Ayuda" ; HELP 1197 | .align 4 1198 | 1199 | .org 0x1DF4 ; goes to next offset 1200 | 1201 | block198_str1: 1202 | .string "VS-Hechos" ; 通信攻撃 1203 | .align 4 1204 | 1205 | .org 0x1E00 ; goes to next offset 1206 | 1207 | block199_str1: 1208 | .string "VS-Ganados" ; 通信勝利 1209 | .align 4 1210 | 1211 | .org 0x1E0C ; goes to next offset 1212 | 1213 | block200_str1: 1214 | .string "Espera jugador" ; 敵バトル待機 1215 | .align 4 1216 | 1217 | .org 0x1E1C ; goes to next offset 1218 | 1219 | block201_str1: 1220 | .string "Digi-Evo (Egg>baby)" ; 進化(幼年期→成長期) 1221 | .align 4 1222 | 1223 | .org 0x1E34 ; goes to next offset 1224 | 1225 | block202_str1: 1226 | .string "Retro (Evo>baby)" ; 退化(進化→成長期) 1227 | .align 4 1228 | 1229 | .org 0x1E4C ; goes to next offset 1230 | 1231 | block203_str1: 1232 | .string "Dormir" ; 睡眠 1233 | .align 4 1234 | 1235 | .org 0x1E54 ; goes to next offset 1236 | 1237 | block204_str1: 1238 | .string "Comer carne" ; 肉たべる 1239 | .align 4 1240 | 1241 | .org 0x1E60 ; goes to next offset 1242 | 1243 | block205_str1: 1244 | .string "Extra" ; おまけ 1245 | .align 4 1246 | 1247 | .close 1248 | -------------------------------------------------------------------------------- /Font_Esp/Font_Esp.tbl: -------------------------------------------------------------------------------- 1 | 20= 2 | 21=! 3 | 22=" 4 | 23=# 5 | 24=$ 6 | 25=% 7 | 26=& 8 | 27=' 9 | 28=( 10 | 29=) 11 | 2A=* 12 | 2B=+ 13 | 2C=, 14 | 2D=- 15 | 2E=. 16 | 2F=/ 17 | 30=0 18 | 31=1 19 | 32=2 20 | 33=3 21 | 34=4 22 | 35=5 23 | 36=6 24 | 37=7 25 | 38=8 26 | 39=9 27 | 3A=: 28 | 3B=; 29 | 3C=< 30 | 3D== 31 | 3E=> 32 | 3F=? 33 | 40=@ 34 | 41=A 35 | 42=B 36 | 43=C 37 | 44=D 38 | 45=E 39 | 46=F 40 | 47=G 41 | 48=H 42 | 49=I 43 | 4A=J 44 | 4B=K 45 | 4C=L 46 | 4D=M 47 | 4E=N 48 | 4F=O 49 | 50=P 50 | 51=Q 51 | 52=R 52 | 53=S 53 | 54=T 54 | 55=U 55 | 56=V 56 | 57=W 57 | 58=X 58 | 59=Y 59 | 5A=Z 60 | 5B=[ 61 | 5C=・ 62 | 5D=] 63 | 5E=^ 64 | 60=` 65 | 61=a 66 | 62=b 67 | 63=c 68 | 64=d 69 | 65=e 70 | 66=f 71 | 67=g 72 | 68=h 73 | 69=i 74 | 6A=j 75 | 6B=k 76 | 6C=l 77 | 6D=m 78 | 6E=n 79 | 6F=o 80 | 70=p 81 | 71=q 82 | 72=r 83 | 73=s 84 | 74=t 85 | 75=u 86 | 76=v 87 | 77=w 88 | 78=x 89 | 79=y 90 | 7A=z 91 | 7B={ 92 | 7C=| 93 | 7D=} 94 | 7E=ッ 95 | 8140=  96 | 8141=、 97 | 8142=。 98 | 8143=, 99 | 8144=. 100 | 8145=・ 101 | 8146=: 102 | 8147=; 103 | 8148=? 104 | 8149=! 105 | 814A=゛ 106 | 814B=゜ 107 | 814C=´ 108 | 814D=` 109 | 814E=¨ 110 | 814F=^ 111 | 8150= ̄ 112 | 8151=_ 113 | 8152=ヽ 114 | 8153=ヾ 115 | 8154=ゝ 116 | 8155=ゞ 117 | 8156=〃 118 | 8157=仝 119 | 8158=々 120 | 8159=〆 121 | 815A=〇 122 | 815B=ー 123 | 815C=― 124 | 815D=‐ 125 | 815E=/ 126 | 815F=\ 127 | 8160=~ 128 | 8161=∥ 129 | 8162=| 130 | 8163=… 131 | 8164=‥ 132 | 8165=‘ 133 | 8166=’ 134 | 8167=“ 135 | 8168=” 136 | 8169=( 137 | 816A=) 138 | 816B=〔 139 | 816C=〕 140 | 816D=[ 141 | 816E=] 142 | 816F={ 143 | 8170=} 144 | 8171=〈 145 | 8172=〉 146 | 8173=《 147 | 8174=》 148 | 8175=「 149 | 8176=」 150 | 8177=『 151 | 8178=』 152 | 8179=【 153 | 817A=】 154 | 817B=+ 155 | 817C=- 156 | 817D=± 157 | 817E=× 158 | 8180=÷ 159 | 8181== 160 | 8182=≠ 161 | 8183=< 162 | 8184=> 163 | 8185=≦ 164 | 8186=≧ 165 | 8187=∞ 166 | 8188=∴ 167 | 8189=♂ 168 | 818A=♀ 169 | 818B=° 170 | 818C=′ 171 | 818D=″ 172 | 818E=℃ 173 | 818F=¥ 174 | 8190=$ 175 | 8191=¢ 176 | 8192=£ 177 | 8193=% 178 | 8194=# 179 | 8195=& 180 | 8196=* 181 | 8197=@ 182 | 8198=§ 183 | 8199=☆ 184 | 819A=★ 185 | 819B=○ 186 | 819C=● 187 | 819D=◎ 188 | 819E=◇ 189 | 81A0=□ 190 | 81A1=■ 191 | 81A2=△ 192 | 81A3=▲ 193 | 81A4=▽ 194 | 81A5=▼ 195 | 81A6=※ 196 | 81A7=〒 197 | 81A8=→ 198 | 81A9=← 199 | 81AA=↑ 200 | 81AB=↓ 201 | 81AC=〓 202 | 824F=0 203 | 8250=1 204 | 8251=2 205 | 8252=3 206 | 8253=4 207 | 8254=5 208 | 8255=6 209 | 8256=7 210 | 8257=8 211 | 8258=9 212 | 8260=A 213 | 8261=B 214 | 8262=C 215 | 8263=D 216 | 8264=E 217 | 8265=F 218 | 8266=G 219 | 8267=H 220 | 8268=I 221 | 8269=J 222 | 826A=K 223 | 826B=L 224 | 826C=M 225 | 826D=N 226 | 826E=O 227 | 826F=P 228 | 8270=Q 229 | 8271=R 230 | 8272=S 231 | 8273=T 232 | 8274=U 233 | 8275=V 234 | 8276=W 235 | 8277=X 236 | 8278=Y 237 | 8279=Z 238 | 8281=a 239 | 8282=b 240 | 8283=c 241 | 8284=d 242 | 8285=e 243 | 8286=f 244 | 8287=g 245 | 8288=h 246 | 8289=i 247 | 828A=j 248 | 828B=k 249 | 828C=l 250 | 828D=m 251 | 828E=n 252 | 828F=o 253 | 8290=p 254 | 8291=q 255 | 8292=r 256 | 8293=s 257 | 8294=t 258 | 8295=u 259 | 8296=v 260 | 8297=w 261 | 8298=x 262 | 8299=y 263 | 829A=z 264 | 829F=ぁ 265 | 82A0=あ 266 | 82A1=ぃ 267 | 82A2=い 268 | 82A3=ぅ 269 | 82A4=う 270 | 82A5=ぇ 271 | 82A6=え 272 | 82A7=ぉ 273 | 82A8=お 274 | 82A9=か 275 | 82AA=が 276 | 82AB=き 277 | 82AC=ぎ 278 | 82AD=く 279 | 82AE=ぐ 280 | 82AF=け 281 | 82B0=げ 282 | 82B1=こ 283 | 82B2=ご 284 | 82B3=さ 285 | 82B4=ざ 286 | 82B5=し 287 | 82B6=じ 288 | 82B7=す 289 | 82B8=ず 290 | 82B9=せ 291 | 82BA=ぜ 292 | 82BB=そ 293 | 82BC=ぞ 294 | 82BD=た 295 | 82BE=だ 296 | 82BF=ち 297 | 82C0=ぢ 298 | 82C1=っ 299 | 82C2=つ 300 | 82C3=づ 301 | 82C4=て 302 | 82C5=で 303 | 82C6=と 304 | 82C7=ど 305 | 82C8=な 306 | 82C9=に 307 | 82CA=ぬ 308 | 82CB=ね 309 | 82CC=の 310 | 82CD=は 311 | 82CE=ば 312 | 82CF=ぱ 313 | 82D0=ひ 314 | 82D1=び 315 | 82D2=ぴ 316 | 82D3=ふ 317 | 82D4=ぶ 318 | 82D5=ぷ 319 | 82D6=へ 320 | 82D7=べ 321 | 82D8=ぺ 322 | 82D9=ほ 323 | 82DA=ぼ 324 | 82DB=ぽ 325 | 82DC=ま 326 | 82DD=み 327 | 82DE=む 328 | 82DF=め 329 | 82E0=も 330 | 82E1=ゃ 331 | 82E2=や 332 | 82E3=ゅ 333 | 82E4=ゆ 334 | 82E5=ょ 335 | 82E6=よ 336 | 82E7=ら 337 | 82E8=り 338 | 82E9=る 339 | 82EA=れ 340 | 82EB=ろ 341 | 82EC=ゎ 342 | 82ED=わ 343 | 82EE=ゐ 344 | 82EF=ゑ 345 | 82F0=を 346 | 82F1=ん 347 | 8340=ァ 348 | 8341=ア 349 | 8342=ィ 350 | 8343=イ 351 | 8344=ゥ 352 | 8345=ウ 353 | 8346=ェ 354 | 8347=エ 355 | 8348=ォ 356 | 8349=オ 357 | 834A=カ 358 | 834B=ガ 359 | 834C=キ 360 | 834D=ギ 361 | 834E=ク 362 | 834F=グ 363 | 8350=ケ 364 | 8351=ゲ 365 | 8352=コ 366 | 8353=ゴ 367 | 8354=サ 368 | 8355=ザ 369 | 8356=シ 370 | 8357=ジ 371 | 8358=ス 372 | 8359=ズ 373 | 835A=セ 374 | 835B=ゼ 375 | 835C=ソ 376 | 835D=ゾ 377 | 835E=タ 378 | 835F=ダ 379 | 8360=チ 380 | 8361=ヂ 381 | 8362=ッ 382 | 8363=ツ 383 | 8364=ヅ 384 | 8365=テ 385 | 8366=デ 386 | 8367=ト 387 | 8368=ド 388 | 8369=ナ 389 | 836A=ニ 390 | 836B=ヌ 391 | 836C=ネ 392 | 836D=ノ 393 | 836E=ハ 394 | 836F=バ 395 | 8370=パ 396 | 8371=ヒ 397 | 8372=ビ 398 | 8373=ピ 399 | 8374=フ 400 | 8375=ブ 401 | 8376=プ 402 | 8377=ヘ 403 | 8378=ベ 404 | 8379=ペ 405 | 837A=ホ 406 | 837B=ボ 407 | 837C=ポ 408 | 837D=マ 409 | 837E=ミ 410 | 8380=ム 411 | 8381=メ 412 | 8382=モ 413 | 8383=ャ 414 | 8384=ヤ 415 | 8385=ュ 416 | 8386=ユ 417 | 8387=ョ 418 | 8388=ヨ 419 | 8389=ラ 420 | 838A=リ 421 | 838B=ル 422 | 838C=レ 423 | 838D=ロ 424 | 838E=ヮ 425 | 838F=ワ 426 | 8390=ヰ 427 | 8391=ヱ 428 | 8392=ヲ 429 | 8393=ン 430 | 8394=ヴ 431 | 8395=ヵ 432 | 8396=ヶ 433 | 839E=Ñ 434 | 83A0=ñ 435 | 83A1=Á 436 | 83A2=á 437 | 83A3=É 438 | 83A4=é 439 | 83A5=Í 440 | 83A6=í 441 | 83A7=Ó 442 | 83A8=ó 443 | 83A9=Ú 444 | 83AA=ú 445 | 83AB=Ü 446 | 83AC=ü 447 | 83AD=¿ 448 | 83AE=¡ 449 | 83AF=¡¡ 450 | 83B0=Σ 451 | 83B1=Τ 452 | 83B2=Υ 453 | 83B3=Φ 454 | 83B4=Χ 455 | 83B5=Ψ 456 | 83B6=Ω 457 | 83BF=α 458 | 83C0=β 459 | 83C1=γ 460 | 83C2=δ 461 | 83C3=ε 462 | 83C4=ζ 463 | 83C5=η 464 | 83C6=θ 465 | 83C7=ι 466 | 83C8=κ 467 | 83C9=λ 468 | 83CA=μ 469 | 83CB=ν 470 | 83CC=ξ 471 | 83CD=ο 472 | 83CE=π 473 | 83CF=ρ 474 | 83D0=σ 475 | 83D1=τ 476 | 83D2=υ 477 | 83D3=φ 478 | 83D4=χ 479 | 83D5=ψ 480 | 83D6=ω 481 | 8440=А 482 | 8441=Б 483 | 8442=В 484 | 8443=Г 485 | 8444=Д 486 | 8445=Е 487 | 8446=Ё 488 | 8447=Ж 489 | 8448=З 490 | 8449=И 491 | 844A=Й 492 | 844B=К 493 | 844C=Л 494 | 844D=М 495 | 844E=Н 496 | 844F=О 497 | 8450=П 498 | 8451=Р 499 | 8452=С 500 | 8453=Т 501 | 8454=У 502 | 8455=Ф 503 | 8456=Х 504 | 8457=Ц 505 | 8458=Ч 506 | 8459=Ш 507 | 845A=Щ 508 | 845B=Ъ 509 | 845C=Ы 510 | 845D=Ь 511 | 845E=Э 512 | 845F=Ю 513 | 8460=Я 514 | 8470=а 515 | 8471=б 516 | 8472=в 517 | 8473=г 518 | 8474=д 519 | 8475=е 520 | 8476=ё 521 | 8477=ж 522 | 8478=з 523 | 8479=и 524 | 847A=й 525 | 847B=к 526 | 847C=л 527 | 847D=м 528 | 847E=н 529 | 8480=о 530 | 8481=п 531 | 8482=р 532 | 8483=с 533 | 8484=т 534 | 8485=у 535 | 8486=ф 536 | 8487=х 537 | 8488=ц 538 | 8489=ч 539 | 848A=ш 540 | 848B=щ 541 | 848C=ъ 542 | 848D=ы 543 | 848E=ь 544 | 848F=э 545 | 8490=ю 546 | 8491=я 547 | 889F=亜 548 | 88A0=唖 549 | 88A1=娃 550 | 88A2=阿 551 | 88A3=哀 552 | 88A4=愛 553 | 88A5=挨 554 | 88A6=姶 555 | 88A7=逢 556 | 88A8=葵 557 | 88A9=茜 558 | 88AA=穐 559 | 88AB=悪 560 | 88AC=握 561 | 88AD=渥 562 | 88AE=旭 563 | 88AF=葦 564 | 88B0=芦 565 | 88B1=鯵 566 | 88B2=梓 567 | 88B3=圧 568 | 88B4=斡 569 | 88B5=扱 570 | 88B6=宛 571 | 88B7=姐 572 | 88B8=虻 573 | 88B9=飴 574 | 88BA=絢 575 | 88BB=綾 576 | 88BC=鮎 577 | 88BD=或 578 | 88BE=粟 579 | 88BF=袷 580 | 88C0=安 581 | 88C1=庵 582 | 88C2=按 583 | 88C3=暗 584 | 88C4=案 585 | 88C5=闇 586 | 88C6=鞍 587 | 88C7=杏 588 | 88C8=以 589 | 88C9=伊 590 | 88CA=位 591 | 88CB=依 592 | 88CC=偉 593 | 88CD=囲 594 | 88CE=夷 595 | 88CF=委 596 | 88D0=威 597 | 88D1=尉 598 | 88D2=惟 599 | 88D3=意 600 | 88D4=慰 601 | 88D5=易 602 | 88D6=椅 603 | 88D7=為 604 | 88D8=畏 605 | 88D9=異 606 | 88DA=移 607 | 88DB=維 608 | 88DC=緯 609 | 88DD=胃 610 | 88DE=萎 611 | 88DF=衣 612 | 88E0=謂 613 | 88E1=違 614 | 88E2=遺 615 | 88E3=医 616 | 88E4=井 617 | 88E5=亥 618 | 88E6=域 619 | 88E7=育 620 | 88E8=郁 621 | 88E9=磯 622 | 88EA=一 623 | 88EB=壱 624 | 88EC=溢 625 | 88ED=逸 626 | 88EE=稲 627 | 88EF=茨 628 | 88F0=芋 629 | 88F1=鰯 630 | 88F2=允 631 | 88F3=印 632 | 88F4=咽 633 | 88F5=員 634 | 88F6=因 635 | 88F7=姻 636 | 88F8=引 637 | 88F9=飲 638 | 88FA=淫 639 | 88FB=胤 640 | 88FC=蔭 641 | 8940=院 642 | 8941=陰 643 | 8942=隠 644 | 8943=韻 645 | 8944=吋 646 | 8945=右 647 | 8946=宇 648 | 8947=烏 649 | 8948=羽 650 | 8949=迂 651 | 894A=雨 652 | 894B=卯 653 | 894C=鵜 654 | 894D=窺 655 | 894E=丑 656 | 894F=碓 657 | 8950=臼 658 | 8951=渦 659 | 8952=嘘 660 | 8953=唄 661 | 8954=欝 662 | 8955=蔚 663 | 8956=鰻 664 | 8957=姥 665 | 8958=厩 666 | 8959=浦 667 | 895A=瓜 668 | 895B=閏 669 | 895C=噂 670 | 895D=云 671 | 895E=運 672 | 895F=雲 673 | 8960=荏 674 | 8961=餌 675 | 8962=叡 676 | 8963=営 677 | 8964=嬰 678 | 8965=影 679 | 8966=映 680 | 8967=曳 681 | 8968=栄 682 | 8969=永 683 | 896A=泳 684 | 896B=洩 685 | 896C=瑛 686 | 896D=盈 687 | 896E=穎 688 | 896F=頴 689 | 8970=英 690 | 8971=衛 691 | 8972=詠 692 | 8973=鋭 693 | 8974=液 694 | 8975=疫 695 | 8976=益 696 | 8977=駅 697 | 8978=悦 698 | 8979=謁 699 | 897A=越 700 | 897B=閲 701 | 897C=榎 702 | 897D=厭 703 | 897E=円 704 | 8980=園 705 | 8981=堰 706 | 8982=奄 707 | 8983=宴 708 | 8984=延 709 | 8985=怨 710 | 8986=掩 711 | 8987=援 712 | 8988=沿 713 | 8989=演 714 | 898A=炎 715 | 898B=焔 716 | 898C=煙 717 | 898D=燕 718 | 898E=猿 719 | 898F=縁 720 | 8990=艶 721 | 8991=苑 722 | 8992=薗 723 | 8993=遠 724 | 8994=鉛 725 | 8995=鴛 726 | 8996=塩 727 | 8997=於 728 | 8998=汚 729 | 8999=甥 730 | 899A=凹 731 | 899B=央 732 | 899C=奥 733 | 899D=往 734 | 899E=応 735 | 899F=押 736 | 89A0=旺 737 | 89A1=横 738 | 89A2=欧 739 | 89A3=殴 740 | 89A4=王 741 | 89A5=翁 742 | 89A6=襖 743 | 89A7=鴬 744 | 89A8=鴎 745 | 89A9=黄 746 | 89AA=岡 747 | 89AB=沖 748 | 89AC=荻 749 | 89AD=億 750 | 89AE=屋 751 | 89AF=憶 752 | 89B0=臆 753 | 89B1=桶 754 | 89B2=牡 755 | 89B3=乙 756 | 89B4=俺 757 | 89B5=卸 758 | 89B6=恩 759 | 89B7=温 760 | 89B8=穏 761 | 89B9=音 762 | 89BA=下 763 | 89BB=化 764 | 89BC=仮 765 | 89BD=何 766 | 89BE=伽 767 | 89BF=価 768 | 89C0=佳 769 | 89C1=加 770 | 89C2=可 771 | 89C3=嘉 772 | 89C4=夏 773 | 89C5=嫁 774 | 89C6=家 775 | 89C7=寡 776 | 89C8=科 777 | 89C9=暇 778 | 89CA=果 779 | 89CB=架 780 | 89CC=歌 781 | 89CD=河 782 | 89CE=火 783 | 89CF=珂 784 | 89D0=禍 785 | 89D1=禾 786 | 89D2=稼 787 | 89D3=箇 788 | 89D4=花 789 | 89D5=苛 790 | 89D6=茄 791 | 89D7=荷 792 | 89D8=華 793 | 89D9=菓 794 | 89DA=蝦 795 | 89DB=課 796 | 89DC=嘩 797 | 89DD=貨 798 | 89DE=迦 799 | 89DF=過 800 | 89E0=霞 801 | 89E1=蚊 802 | 89E2=俄 803 | 89E3=峨 804 | 89E4=我 805 | 89E5=牙 806 | 89E6=画 807 | 89E7=臥 808 | 89E8=芽 809 | 89E9=蛾 810 | 89EA=賀 811 | 89EB=雅 812 | 89EC=餓 813 | 89ED=駕 814 | 89EE=介 815 | 89EF=会 816 | 89F0=解 817 | 89F1=回 818 | 89F2=塊 819 | 89F3=壊 820 | 89F4=廻 821 | 89F5=快 822 | 89F6=怪 823 | 89F7=悔 824 | 89F8=恢 825 | 89F9=懐 826 | 89FA=戒 827 | 89FB=拐 828 | 89FC=改 829 | 8A40=魁 830 | 8A41=晦 831 | 8A42=械 832 | 8A43=海 833 | 8A44=灰 834 | 8A45=界 835 | 8A46=皆 836 | 8A47=絵 837 | 8A48=芥 838 | 8A49=蟹 839 | 8A4A=開 840 | 8A4B=階 841 | 8A4C=貝 842 | 8A4D=凱 843 | 8A4E=劾 844 | 8A4F=外 845 | 8A50=咳 846 | 8A51=害 847 | 8A52=崖 848 | 8A53=慨 849 | 8A54=概 850 | 8A55=涯 851 | 8A56=碍 852 | 8A57=蓋 853 | 8A58=街 854 | 8A59=該 855 | 8A5A=鎧 856 | 8A5B=骸 857 | 8A5C=浬 858 | 8A5D=馨 859 | 8A5E=蛙 860 | 8A5F=垣 861 | 8A60=柿 862 | 8A61=蛎 863 | 8A62=鈎 864 | 8A63=劃 865 | 8A64=嚇 866 | 8A65=各 867 | 8A66=廓 868 | 8A67=拡 869 | 8A68=撹 870 | 8A69=格 871 | 8A6A=核 872 | 8A6B=殻 873 | 8A6C=獲 874 | 8A6D=確 875 | 8A6E=穫 876 | 8A6F=覚 877 | 8A70=角 878 | 8A71=赫 879 | 8A72=較 880 | 8A73=郭 881 | 8A74=閣 882 | 8A75=隔 883 | 8A76=革 884 | 8A77=学 885 | 8A78=岳 886 | 8A79=楽 887 | 8A7A=額 888 | 8A7B=顎 889 | 8A7C=掛 890 | 8A7D=笠 891 | 8A7E=樫 892 | 8A80=橿 893 | 8A81=梶 894 | 8A82=鰍 895 | 8A83=潟 896 | 8A84=割 897 | 8A85=喝 898 | 8A86=恰 899 | 8A87=括 900 | 8A88=活 901 | 8A89=渇 902 | 8A8A=滑 903 | 8A8B=葛 904 | 8A8C=褐 905 | 8A8D=轄 906 | 8A8E=且 907 | 8A8F=鰹 908 | 8A90=叶 909 | 8A91=椛 910 | 8A92=樺 911 | 8A93=鞄 912 | 8A94=株 913 | 8A95=兜 914 | 8A96=竃 915 | 8A97=蒲 916 | 8A98=釜 917 | 8A99=鎌 918 | 8A9A=噛 919 | 8A9B=鴨 920 | 8A9C=栢 921 | 8A9D=茅 922 | 8A9E=萱 923 | 8A9F=粥 924 | 8AA0=刈 925 | 8AA1=苅 926 | 8AA2=瓦 927 | 8AA3=乾 928 | 8AA4=侃 929 | 8AA5=冠 930 | 8AA6=寒 931 | 8AA7=刊 932 | 8AA8=勘 933 | 8AA9=勧 934 | 8AAA=巻 935 | 8AAB=喚 936 | 8AAC=堪 937 | 8AAD=姦 938 | 8AAE=完 939 | 8AAF=官 940 | 8AB0=寛 941 | 8AB1=干 942 | 8AB2=幹 943 | 8AB3=患 944 | 8AB4=感 945 | 8AB5=慣 946 | 8AB6=憾 947 | 8AB7=換 948 | 8AB8=敢 949 | 8AB9=柑 950 | 8ABA=桓 951 | 8ABB=棺 952 | 8ABC=款 953 | 8ABD=歓 954 | 8ABE=汗 955 | 8ABF=漢 956 | 8AC0=澗 957 | 8AC1=潅 958 | 8AC2=環 959 | 8AC3=甘 960 | 8AC4=監 961 | 8AC5=看 962 | 8AC6=竿 963 | 8AC7=管 964 | 8AC8=簡 965 | 8AC9=緩 966 | 8ACA=缶 967 | 8ACB=翰 968 | 8ACC=肝 969 | 8ACD=艦 970 | 8ACE=莞 971 | 8ACF=観 972 | 8AD0=諌 973 | 8AD1=貫 974 | 8AD2=還 975 | 8AD3=鑑 976 | 8AD4=間 977 | 8AD5=閑 978 | 8AD6=関 979 | 8AD7=陥 980 | 8AD8=韓 981 | 8AD9=館 982 | 8ADA=舘 983 | 8ADB=丸 984 | 8ADC=含 985 | 8ADD=岸 986 | 8ADE=巌 987 | 8ADF=玩 988 | 8AE0=癌 989 | 8AE1=眼 990 | 8AE2=岩 991 | 8AE3=翫 992 | 8AE4=贋 993 | 8AE5=雁 994 | 8AE6=頑 995 | 8AE7=顔 996 | 8AE8=願 997 | 8AE9=企 998 | 8AEA=伎 999 | 8AEB=危 1000 | 8AEC=喜 1001 | 8AED=器 1002 | 8AEE=基 1003 | 8AEF=奇 1004 | 8AF0=嬉 1005 | 8AF1=寄 1006 | 8AF2=岐 1007 | 8AF3=希 1008 | 8AF4=幾 1009 | 8AF5=忌 1010 | 8AF6=揮 1011 | 8AF7=机 1012 | 8AF8=旗 1013 | 8AF9=既 1014 | 8AFA=期 1015 | 8AFB=棋 1016 | 8AFC=棄 1017 | 8B40=機 1018 | 8B41=帰 1019 | 8B42=毅 1020 | 8B43=気 1021 | 8B44=汽 1022 | 8B45=畿 1023 | 8B46=祈 1024 | 8B47=季 1025 | 8B48=稀 1026 | 8B49=紀 1027 | 8B4A=徽 1028 | 8B4B=規 1029 | 8B4C=記 1030 | 8B4D=貴 1031 | 8B4E=起 1032 | 8B4F=軌 1033 | 8B50=輝 1034 | 8B51=飢 1035 | 8B52=騎 1036 | 8B53=鬼 1037 | 8B54=亀 1038 | 8B55=偽 1039 | 8B56=儀 1040 | 8B57=妓 1041 | 8B58=宜 1042 | 8B59=戯 1043 | 8B5A=技 1044 | 8B5B=擬 1045 | 8B5C=欺 1046 | 8B5D=犠 1047 | 8B5E=疑 1048 | 8B5F=祇 1049 | 8B60=義 1050 | 8B61=蟻 1051 | 8B62=誼 1052 | 8B63=議 1053 | 8B64=掬 1054 | 8B65=菊 1055 | 8B66=鞠 1056 | 8B67=吉 1057 | 8B68=吃 1058 | 8B69=喫 1059 | 8B6A=桔 1060 | 8B6B=橘 1061 | 8B6C=詰 1062 | 8B6D=砧 1063 | 8B6E=杵 1064 | 8B6F=黍 1065 | 8B70=却 1066 | 8B71=客 1067 | 8B72=脚 1068 | 8B73=虐 1069 | 8B74=逆 1070 | 8B75=丘 1071 | 8B76=久 1072 | 8B77=仇 1073 | 8B78=休 1074 | 8B79=及 1075 | 8B7A=吸 1076 | 8B7B=宮 1077 | 8B7C=弓 1078 | 8B7D=急 1079 | 8B7E=救 1080 | 8B80=朽 1081 | 8B81=求 1082 | 8B82=汲 1083 | 8B83=泣 1084 | 8B84=灸 1085 | 8B85=球 1086 | 8B86=究 1087 | 8B87=窮 1088 | 8B88=笈 1089 | 8B89=級 1090 | 8B8A=糾 1091 | 8B8B=給 1092 | 8B8C=旧 1093 | 8B8D=牛 1094 | 8B8E=去 1095 | 8B8F=居 1096 | 8B90=巨 1097 | 8B91=拒 1098 | 8B92=拠 1099 | 8B93=挙 1100 | 8B94=渠 1101 | 8B95=虚 1102 | 8B96=許 1103 | 8B97=距 1104 | 8B98=鋸 1105 | 8B99=漁 1106 | 8B9A=禦 1107 | 8B9B=魚 1108 | 8B9C=亨 1109 | 8B9D=享 1110 | 8B9E=京 1111 | 8B9F=供 1112 | 8BA0=侠 1113 | 8BA1=僑 1114 | 8BA2=兇 1115 | 8BA3=競 1116 | 8BA4=共 1117 | 8BA5=凶 1118 | 8BA6=協 1119 | 8BA7=匡 1120 | 8BA8=卿 1121 | 8BA9=叫 1122 | 8BAA=喬 1123 | 8BAB=境 1124 | 8BAC=峡 1125 | 8BAD=強 1126 | 8BAE=彊 1127 | 8BAF=怯 1128 | 8BB0=恐 1129 | 8BB1=恭 1130 | 8BB2=挟 1131 | 8BB3=教 1132 | 8BB4=橋 1133 | 8BB5=況 1134 | 8BB6=狂 1135 | 8BB7=狭 1136 | 8BB8=矯 1137 | 8BB9=胸 1138 | 8BBA=脅 1139 | 8BBB=興 1140 | 8BBC=蕎 1141 | 8BBD=郷 1142 | 8BBE=鏡 1143 | 8BBF=響 1144 | 8BC0=饗 1145 | 8BC1=驚 1146 | 8BC2=仰 1147 | 8BC3=凝 1148 | 8BC4=尭 1149 | 8BC5=暁 1150 | 8BC6=業 1151 | 8BC7=局 1152 | 8BC8=曲 1153 | 8BC9=極 1154 | 8BCA=玉 1155 | 8BCB=桐 1156 | 8BCC=粁 1157 | 8BCD=僅 1158 | 8BCE=勤 1159 | 8BCF=均 1160 | 8BD0=巾 1161 | 8BD1=錦 1162 | 8BD2=斤 1163 | 8BD3=欣 1164 | 8BD4=欽 1165 | 8bd5=琴 1166 | 8bd6=禁 1167 | 8BD7=禽 1168 | 8BD8=筋 1169 | 8BD9=緊 1170 | 8BDA=芹 1171 | 8BDB=菌 1172 | 8BDC=衿 1173 | 8BDD=襟 1174 | 8BDE=謹 1175 | 8BDF=近 1176 | 8BE0=金 1177 | 8BE1=吟 1178 | 8BE2=銀 1179 | 8BE3=九 1180 | 8BE4=倶 1181 | 8BE5=句 1182 | 8BE6=区 1183 | 8BE7=狗 1184 | 8BE8=玖 1185 | 8BE9=矩 1186 | 8BEA=苦 1187 | 8BEB=躯 1188 | 8BEC=駆 1189 | 8BED=駈 1190 | 8BEE=駒 1191 | 8BEF=具 1192 | 8BF0=愚 1193 | 8BF1=虞 1194 | 8BF2=喰 1195 | 8BF3=空 1196 | 8BF4=偶 1197 | 8BF5=寓 1198 | 8BF6=遇 1199 | 8BF7=隅 1200 | 8BF8=串 1201 | 8BF9=櫛 1202 | 8BFA=釧 1203 | 8BFB=屑 1204 | 8BFC=屈 1205 | 8C40=掘 1206 | 8C41=窟 1207 | 8C42=沓 1208 | 8C43=靴 1209 | 8C44=轡 1210 | 8C45=窪 1211 | 8C46=熊 1212 | 8C47=隈 1213 | 8C48=粂 1214 | 8C49=栗 1215 | 8C4A=繰 1216 | 8C4B=桑 1217 | 8C4C=鍬 1218 | 8C4D=勲 1219 | 8C4E=君 1220 | 8C4F=薫 1221 | 8C50=訓 1222 | 8C51=群 1223 | 8C52=軍 1224 | 8C53=郡 1225 | 8C54=卦 1226 | 8C55=袈 1227 | 8C56=祁 1228 | 8C57=係 1229 | 8C58=傾 1230 | 8C59=刑 1231 | 8C5A=兄 1232 | 8C5B=啓 1233 | 8C5C=圭 1234 | 8C5D=珪 1235 | 8C5E=型 1236 | 8C5F=契 1237 | 8C60=形 1238 | 8C61=径 1239 | 8C62=恵 1240 | 8C63=慶 1241 | 8C64=慧 1242 | 8C65=憩 1243 | 8C66=掲 1244 | 8C67=携 1245 | 8C68=敬 1246 | 8C69=景 1247 | 8C6A=桂 1248 | 8C6B=渓 1249 | 8C6C=畦 1250 | 8C6D=稽 1251 | 8C6E=系 1252 | 8C6F=経 1253 | 8C70=継 1254 | 8C71=繋 1255 | 8C72=罫 1256 | 8C73=茎 1257 | 8C74=荊 1258 | 8C75=蛍 1259 | 8C76=計 1260 | 8C77=詣 1261 | 8C78=警 1262 | 8C79=軽 1263 | 8C7A=頚 1264 | 8C7B=鶏 1265 | 8C7C=芸 1266 | 8C7D=迎 1267 | 8C7E=鯨 1268 | 8C80=劇 1269 | 8C81=戟 1270 | 8C82=撃 1271 | 8C83=激 1272 | 8C84=隙 1273 | 8C85=桁 1274 | 8C86=傑 1275 | 8C87=欠 1276 | 8C88=決 1277 | 8C89=潔 1278 | 8C8A=穴 1279 | 8C8B=結 1280 | 8C8C=血 1281 | 8C8D=訣 1282 | 8C8E=月 1283 | 8C8F=件 1284 | 8C90=倹 1285 | 8C91=倦 1286 | 8C92=健 1287 | 8C93=兼 1288 | 8C94=券 1289 | 8C95=剣 1290 | 8C96=喧 1291 | 8C97=圏 1292 | 8C98=堅 1293 | 8C99=嫌 1294 | 8C9A=建 1295 | 8C9B=憲 1296 | 8C9C=懸 1297 | 8C9D=拳 1298 | 8C9E=捲 1299 | 8C9F=検 1300 | 8CA0=権 1301 | 8CA1=牽 1302 | 8CA2=犬 1303 | 8CA3=献 1304 | 8CA4=研 1305 | 8CA5=硯 1306 | 8CA6=絹 1307 | 8CA7=県 1308 | 8CA8=肩 1309 | 8CA9=見 1310 | 8CAA=謙 1311 | 8CAB=賢 1312 | 8CAC=軒 1313 | 8CAD=遣 1314 | 8CAE=鍵 1315 | 8CAF=険 1316 | 8CB0=顕 1317 | 8CB1=験 1318 | 8CB2=鹸 1319 | 8CB3=元 1320 | 8CB4=原 1321 | 8CB5=厳 1322 | 8CB6=幻 1323 | 8CB7=弦 1324 | 8CB8=減 1325 | 8CB9=源 1326 | 8CBA=玄 1327 | 8CBB=現 1328 | 8CBC=絃 1329 | 8CBD=舷 1330 | 8CBE=言 1331 | 8CBF=諺 1332 | 8CC0=限 1333 | 8CC1=乎 1334 | 8CC2=個 1335 | 8CC3=古 1336 | 8CC4=呼 1337 | 8CC5=固 1338 | 8CC6=姑 1339 | 8CC7=孤 1340 | 8CC8=己 1341 | 8CC9=庫 1342 | 8CCA=弧 1343 | 8CCB=戸 1344 | 8CCC=故 1345 | 8CCD=枯 1346 | 8CCE=湖 1347 | 8CCF=狐 1348 | 8CD0=糊 1349 | 8CD1=袴 1350 | 8CD2=股 1351 | 8CD3=胡 1352 | 8CD4=菰 1353 | 8CD5=虎 1354 | 8CD6=誇 1355 | 8CD7=跨 1356 | 8CD8=鈷 1357 | 8CD9=雇 1358 | 8CDA=顧 1359 | 8CDB=鼓 1360 | 8CDC=五 1361 | 8CDD=互 1362 | 8CDE=伍 1363 | 8CDF=午 1364 | 8CE0=呉 1365 | 8CE1=吾 1366 | 8CE2=娯 1367 | 8CE3=後 1368 | 8CE4=御 1369 | 8CE5=悟 1370 | 8CE6=梧 1371 | 8CE7=檎 1372 | 8CE8=瑚 1373 | 8CE9=碁 1374 | 8CEA=語 1375 | 8CEB=誤 1376 | 8CEC=護 1377 | 8CED=醐 1378 | 8CEE=乞 1379 | 8CEF=鯉 1380 | 8CF0=交 1381 | 8CF1=佼 1382 | 8CF2=侯 1383 | 8CF3=候 1384 | 8CF4=倖 1385 | 8CF5=光 1386 | 8CF6=公 1387 | 8CF7=功 1388 | 8CF8=効 1389 | 8CF9=勾 1390 | 8CFA=厚 1391 | 8CFB=口 1392 | 8CFC=向 1393 | 8D40=后 1394 | 8D41=喉 1395 | 8D42=坑 1396 | 8D43=垢 1397 | 8D44=好 1398 | 8D45=孔 1399 | 8D46=孝 1400 | 8D47=宏 1401 | 8D48=工 1402 | 8D49=巧 1403 | 8D4A=巷 1404 | 8D4B=幸 1405 | 8D4C=広 1406 | 8D4D=庚 1407 | 8D4E=康 1408 | 8D4F=弘 1409 | 8D50=恒 1410 | 8D51=慌 1411 | 8D52=抗 1412 | 8D53=拘 1413 | 8D54=控 1414 | 8D55=攻 1415 | 8D56=昂 1416 | 8D57=晃 1417 | 8D58=更 1418 | 8D59=杭 1419 | 8D5A=校 1420 | 8D5B=梗 1421 | 8D5C=構 1422 | 8D5D=江 1423 | 8D5E=洪 1424 | 8D5F=浩 1425 | 8D60=港 1426 | 8D61=溝 1427 | 8D62=甲 1428 | 8D63=皇 1429 | 8D64=硬 1430 | 8D65=稿 1431 | 8D66=糠 1432 | 8D67=紅 1433 | 8D68=紘 1434 | 8D69=絞 1435 | 8D6A=綱 1436 | 8D6B=耕 1437 | 8D6C=考 1438 | 8D6D=肯 1439 | 8D6E=肱 1440 | 8D6F=腔 1441 | 8D70=膏 1442 | 8D71=航 1443 | 8D72=荒 1444 | 8D73=行 1445 | 8D74=衡 1446 | 8D75=講 1447 | 8D76=貢 1448 | 8D77=購 1449 | 8D78=郊 1450 | 8D79=酵 1451 | 8D7A=鉱 1452 | 8D7B=砿 1453 | 8D7C=鋼 1454 | 8D7D=閤 1455 | 8D7E=降 1456 | 8D80=項 1457 | 8D81=香 1458 | 8D82=高 1459 | 8D83=鴻 1460 | 8D84=剛 1461 | 8D85=劫 1462 | 8D86=号 1463 | 8D87=合 1464 | 8D88=壕 1465 | 8D89=拷 1466 | 8D8A=濠 1467 | 8D8B=豪 1468 | 8D8C=轟 1469 | 8D8D=麹 1470 | 8D8E=克 1471 | 8D8F=刻 1472 | 8D90=告 1473 | 8D91=国 1474 | 8D92=穀 1475 | 8D93=酷 1476 | 8D94=鵠 1477 | 8D95=黒 1478 | 8D96=獄 1479 | 8D97=漉 1480 | 8D98=腰 1481 | 8D99=甑 1482 | 8D9A=忽 1483 | 8D9B=惚 1484 | 8D9C=骨 1485 | 8D9D=狛 1486 | 8D9E=込 1487 | 8D9F=此 1488 | 8DA0=頃 1489 | 8DA1=今 1490 | 8DA2=困 1491 | 8DA3=坤 1492 | 8DA4=墾 1493 | 8DA5=婚 1494 | 8DA6=恨 1495 | 8DA7=懇 1496 | 8DA8=昏 1497 | 8DA9=昆 1498 | 8DAA=根 1499 | 8DAB=梱 1500 | 8DAC=混 1501 | 8DAD=痕 1502 | 8DAE=紺 1503 | 8DAF=艮 1504 | 8DB0=魂 1505 | 8DB1=些 1506 | 8DB2=佐 1507 | 8DB3=叉 1508 | 8DB4=唆 1509 | 8DB5=嵯 1510 | 8DB6=左 1511 | 8DB7=差 1512 | 8DB8=査 1513 | 8DB9=沙 1514 | 8DBA=瑳 1515 | 8DBB=砂 1516 | 8DBC=詐 1517 | 8DBD=鎖 1518 | 8DBE=裟 1519 | 8DBF=坐 1520 | 8DC0=座 1521 | 8DC1=挫 1522 | 8DC2=債 1523 | 8DC3=催 1524 | 8DC4=再 1525 | 8DC5=最 1526 | 8DC6=哉 1527 | 8DC7=塞 1528 | 8DC8=妻 1529 | 8DC9=宰 1530 | 8DCA=彩 1531 | 8DCB=才 1532 | 8DCC=採 1533 | 8DCD=栽 1534 | 8DCE=歳 1535 | 8DCF=済 1536 | 8DD0=災 1537 | 8DD1=采 1538 | 8DD2=犀 1539 | 8DD3=砕 1540 | 8DD4=砦 1541 | 8DD5=祭 1542 | 8DD6=斎 1543 | 8DD7=細 1544 | 8DD8=菜 1545 | 8DD9=裁 1546 | 8DDA=載 1547 | 8DDB=際 1548 | 8DDC=剤 1549 | 8DDD=在 1550 | 8DDE=材 1551 | 8DDF=罪 1552 | 8DE0=財 1553 | 8DE1=冴 1554 | 8DE2=坂 1555 | 8DE3=阪 1556 | 8DE4=堺 1557 | 8DE5=榊 1558 | 8DE6=肴 1559 | 8DE7=咲 1560 | 8DE8=崎 1561 | 8DE9=埼 1562 | 8DEA=碕 1563 | 8DEB=鷺 1564 | 8DEC=作 1565 | 8DED=削 1566 | 8DEE=咋 1567 | 8DEF=搾 1568 | 8DF0=昨 1569 | 8DF1=朔 1570 | 8DF2=柵 1571 | 8DF3=窄 1572 | 8DF4=策 1573 | 8DF5=索 1574 | 8DF6=錯 1575 | 8DF7=桜 1576 | 8DF8=鮭 1577 | 8DF9=笹 1578 | 8DFA=匙 1579 | 8DFB=冊 1580 | 8DFC=刷 1581 | 8E40=察 1582 | 8E41=拶 1583 | 8E42=撮 1584 | 8E43=擦 1585 | 8E44=札 1586 | 8E45=殺 1587 | 8E46=薩 1588 | 8E47=雑 1589 | 8E48=皐 1590 | 8E49=鯖 1591 | 8E4A=捌 1592 | 8E4B=錆 1593 | 8E4C=鮫 1594 | 8E4D=皿 1595 | 8E4E=晒 1596 | 8E4F=三 1597 | 8E50=傘 1598 | 8E51=参 1599 | 8E52=山 1600 | 8E53=惨 1601 | 8E54=撒 1602 | 8E55=散 1603 | 8E56=桟 1604 | 8E57=燦 1605 | 8E58=珊 1606 | 8E59=産 1607 | 8E5A=算 1608 | 8E5B=纂 1609 | 8E5C=蚕 1610 | 8E5D=讃 1611 | 8E5E=賛 1612 | 8E5F=酸 1613 | 8E60=餐 1614 | 8E61=斬 1615 | 8E62=暫 1616 | 8E63=残 1617 | 8E64=仕 1618 | 8E65=仔 1619 | 8E66=伺 1620 | 8E67=使 1621 | 8E68=刺 1622 | 8E69=司 1623 | 8E6A=史 1624 | 8E6B=嗣 1625 | 8E6C=四 1626 | 8E6D=士 1627 | 8E6E=始 1628 | 8E6F=姉 1629 | 8E70=姿 1630 | 8E71=子 1631 | 8E72=屍 1632 | 8E73=市 1633 | 8E74=師 1634 | 8E75=志 1635 | 8E76=思 1636 | 8E77=指 1637 | 8E78=支 1638 | 8E79=孜 1639 | 8E7A=斯 1640 | 8E7B=施 1641 | 8E7C=旨 1642 | 8E7D=枝 1643 | 8E7E=止 1644 | 8E80=死 1645 | 8E81=氏 1646 | 8E82=獅 1647 | 8E83=祉 1648 | 8E84=私 1649 | 8E85=糸 1650 | 8E86=紙 1651 | 8E87=紫 1652 | 8E88=肢 1653 | 8E89=脂 1654 | 8E8A=至 1655 | 8E8B=視 1656 | 8E8C=詞 1657 | 8E8D=詩 1658 | 8E8E=試 1659 | 8E8F=誌 1660 | 8E90=諮 1661 | 8E91=資 1662 | 8E92=賜 1663 | 8E93=雌 1664 | 8E94=飼 1665 | 8E95=歯 1666 | 8E96=事 1667 | 8E97=似 1668 | 8E98=侍 1669 | 8E99=児 1670 | 8E9A=字 1671 | 8E9B=寺 1672 | 8E9C=慈 1673 | 8E9D=持 1674 | 8E9E=時 1675 | 8E9F=次 1676 | 8EA0=滋 1677 | 8EA1=治 1678 | 8EA2=爾 1679 | 8EA3=璽 1680 | 8EA4=痔 1681 | 8EA5=磁 1682 | 8EA6=示 1683 | 8EA7=而 1684 | 8EA8=耳 1685 | 8EA9=自 1686 | 8EAA=蒔 1687 | 8EAB=辞 1688 | 8EAC=汐 1689 | 8EAD=鹿 1690 | 8EAE=式 1691 | 8EAF=識 1692 | 8EB0=鴫 1693 | 8EB1=竺 1694 | 8EB2=軸 1695 | 8EB3=宍 1696 | 8EB4=雫 1697 | 8EB5=七 1698 | 8EB6=叱 1699 | 8EB7=執 1700 | 8EB8=失 1701 | 8EB9=嫉 1702 | 8EBA=室 1703 | 8EBB=悉 1704 | 8EBC=湿 1705 | 8EBD=漆 1706 | 8EBE=疾 1707 | 8EBF=質 1708 | 8EC0=実 1709 | 8EC1=蔀 1710 | 8EC2=篠 1711 | 8EC3=偲 1712 | 8EC4=柴 1713 | 8EC5=芝 1714 | 8EC6=屡 1715 | 8EC7=蕊 1716 | 8EC8=縞 1717 | 8EC9=舎 1718 | 8ECA=写 1719 | 8ECB=射 1720 | 8ECC=捨 1721 | 8ECD=赦 1722 | 8ECE=斜 1723 | 8ECF=煮 1724 | 8ED0=社 1725 | 8ED1=紗 1726 | 8ED2=者 1727 | 8ED3=謝 1728 | 8ED4=車 1729 | 8ED5=遮 1730 | 8ED6=蛇 1731 | 8ED7=邪 1732 | 8ED8=借 1733 | 8ED9=勺 1734 | 8EDA=尺 1735 | 8EDB=杓 1736 | 8EDC=灼 1737 | 8EDD=爵 1738 | 8EDE=酌 1739 | 8EDF=釈 1740 | 8EE0=錫 1741 | 8EE1=若 1742 | 8EE2=寂 1743 | 8EE3=弱 1744 | 8EE4=惹 1745 | 8EE5=主 1746 | 8EE6=取 1747 | 8EE7=守 1748 | 8EE8=手 1749 | 8EE9=朱 1750 | 8EEA=殊 1751 | 8EEB=狩 1752 | 8EEC=珠 1753 | 8EED=種 1754 | 8EEE=腫 1755 | 8EEF=趣 1756 | 8EF0=酒 1757 | 8EF1=首 1758 | 8EF2=儒 1759 | 8EF3=受 1760 | 8EF4=呪 1761 | 8EF5=寿 1762 | 8EF6=授 1763 | 8EF7=樹 1764 | 8EF8=綬 1765 | 8EF9=需 1766 | 8EFA=囚 1767 | 8EFB=収 1768 | 8EFC=周 1769 | 8F40=宗 1770 | 8F41=就 1771 | 8F42=州 1772 | 8F43=修 1773 | 8F44=愁 1774 | 8F45=拾 1775 | 8F46=洲 1776 | 8F47=秀 1777 | 8F48=秋 1778 | 8F49=終 1779 | 8F4A=繍 1780 | 8F4B=習 1781 | 8F4C=臭 1782 | 8F4D=舟 1783 | 8F4E=蒐 1784 | 8F4F=衆 1785 | 8F50=襲 1786 | 8F51=讐 1787 | 8F52=蹴 1788 | 8F53=輯 1789 | 8F54=週 1790 | 8F55=酋 1791 | 8F56=酬 1792 | 8F57=集 1793 | 8F58=醜 1794 | 8F59=什 1795 | 8F5A=住 1796 | 8F5B=充 1797 | 8F5C=十 1798 | 8F5D=従 1799 | 8F5E=戎 1800 | 8F5F=柔 1801 | 8F60=汁 1802 | 8F61=渋 1803 | 8F62=獣 1804 | 8F63=縦 1805 | 8F64=重 1806 | 8F65=銃 1807 | 8F66=叔 1808 | 8F67=夙 1809 | 8F68=宿 1810 | 8F69=淑 1811 | 8F6A=祝 1812 | 8F6B=縮 1813 | 8F6C=粛 1814 | 8F6D=塾 1815 | 8F6E=熟 1816 | 8F6F=出 1817 | 8F70=術 1818 | 8F71=述 1819 | 8F72=俊 1820 | 8F73=峻 1821 | 8F74=春 1822 | 8F75=瞬 1823 | 8F76=竣 1824 | 8F77=舜 1825 | 8F78=駿 1826 | 8F79=准 1827 | 8F7A=循 1828 | 8F7B=旬 1829 | 8F7C=楯 1830 | 8F7D=殉 1831 | 8F7E=淳 1832 | 8F80=準 1833 | 8F81=潤 1834 | 8F82=盾 1835 | 8F83=純 1836 | 8F84=巡 1837 | 8F85=遵 1838 | 8F86=醇 1839 | 8F87=順 1840 | 8F88=処 1841 | 8F89=初 1842 | 8F8A=所 1843 | 8F8B=暑 1844 | 8F8C=曙 1845 | 8F8D=渚 1846 | 8F8E=庶 1847 | 8F8F=緒 1848 | 8F90=署 1849 | 8F91=書 1850 | 8F92=薯 1851 | 8F93=藷 1852 | 8F94=諸 1853 | 8F95=助 1854 | 8F96=叙 1855 | 8F97=女 1856 | 8F98=序 1857 | 8F99=徐 1858 | 8F9A=恕 1859 | 8F9B=鋤 1860 | 8F9C=除 1861 | 8F9D=傷 1862 | 8F9E=償 1863 | 8F9F=勝 1864 | 8FA0=匠 1865 | 8FA1=升 1866 | 8FA2=召 1867 | 8FA3=哨 1868 | 8FA4=商 1869 | 8FA5=唱 1870 | 8FA6=嘗 1871 | 8FA7=奨 1872 | 8FA8=妾 1873 | 8FA9=娼 1874 | 8FAA=宵 1875 | 8FAB=将 1876 | 8FAC=小 1877 | 8FAD=少 1878 | 8FAE=尚 1879 | 8FAF=庄 1880 | 8FB0=床 1881 | 8FB1=廠 1882 | 8FB2=彰 1883 | 8FB3=承 1884 | 8FB4=抄 1885 | 8FB5=招 1886 | 8FB6=掌 1887 | 8FB7=捷 1888 | 8FB8=昇 1889 | 8FB9=昌 1890 | 8FBA=昭 1891 | 8FBB=晶 1892 | 8FBC=松 1893 | 8FBD=梢 1894 | 8FBE=樟 1895 | 8FBF=樵 1896 | 8FC0=沼 1897 | 8FC1=消 1898 | 8FC2=渉 1899 | 8FC3=湘 1900 | 8FC4=焼 1901 | 8FC5=焦 1902 | 8FC6=照 1903 | 8FC7=症 1904 | 8FC8=省 1905 | 8FC9=硝 1906 | 8FCA=礁 1907 | 8FCB=祥 1908 | 8FCC=称 1909 | 8FCD=章 1910 | 8FCE=笑 1911 | 8FCF=粧 1912 | 8FD0=紹 1913 | 8FD1=肖 1914 | 8FD2=菖 1915 | 8FD3=蒋 1916 | 8FD4=蕉 1917 | 8FD5=衝 1918 | 8FD6=裳 1919 | 8FD7=訟 1920 | 8FD8=証 1921 | 8FD9=詔 1922 | 8FDA=詳 1923 | 8FDB=象 1924 | 8FDC=賞 1925 | 8FDD=醤 1926 | 8FDE=鉦 1927 | 8FDF=鍾 1928 | 8FE0=鐘 1929 | 8FE1=障 1930 | 8FE2=鞘 1931 | 8FE3=上 1932 | 8FE4=丈 1933 | 8FE5=丞 1934 | 8FE6=乗 1935 | 8FE7=冗 1936 | 8FE8=剰 1937 | 8FE9=城 1938 | 8FEA=場 1939 | 8FEB=壌 1940 | 8FEC=嬢 1941 | 8FED=常 1942 | 8FEE=情 1943 | 8FEF=擾 1944 | 8FF0=条 1945 | 8FF1=杖 1946 | 8FF2=浄 1947 | 8FF3=状 1948 | 8FF4=畳 1949 | 8FF5=穣 1950 | 8FF6=蒸 1951 | 8FF7=譲 1952 | 8FF8=醸 1953 | 8FF9=錠 1954 | 8FFA=嘱 1955 | 8FFB=埴 1956 | 8FFC=飾 1957 | 9040=拭 1958 | 9041=植 1959 | 9042=殖 1960 | 9043=燭 1961 | 9044=織 1962 | 9045=職 1963 | 9046=色 1964 | 9047=触 1965 | 9048=食 1966 | 9049=蝕 1967 | 904A=辱 1968 | 904B=尻 1969 | 904C=伸 1970 | 904D=信 1971 | 904E=侵 1972 | 904F=唇 1973 | 9050=娠 1974 | 9051=寝 1975 | 9052=審 1976 | 9053=心 1977 | 9054=慎 1978 | 9055=振 1979 | 9056=新 1980 | 9057=晋 1981 | 9058=森 1982 | 9059=榛 1983 | 905A=浸 1984 | 905B=深 1985 | 905C=申 1986 | 905D=疹 1987 | 905E=真 1988 | 905F=神 1989 | 9060=秦 1990 | 9061=紳 1991 | 9062=臣 1992 | 9063=芯 1993 | 9064=薪 1994 | 9065=親 1995 | 9066=診 1996 | 9067=身 1997 | 9068=辛 1998 | 9069=進 1999 | 906A=針 2000 | 906B=震 2001 | 906C=人 2002 | 906D=仁 2003 | 906E=刃 2004 | 906F=塵 2005 | 9070=壬 2006 | 9071=尋 2007 | 9072=甚 2008 | 9073=尽 2009 | 9074=腎 2010 | 9075=訊 2011 | 9076=迅 2012 | 9077=陣 2013 | 9078=靭 2014 | 9079=笥 2015 | 907A=諏 2016 | 907B=須 2017 | 907C=酢 2018 | 907D=図 2019 | 907E=厨 2020 | 9080=逗 2021 | 9081=吹 2022 | 9082=垂 2023 | 9083=帥 2024 | 9084=推 2025 | 9085=水 2026 | 9086=炊 2027 | 9087=睡 2028 | 9088=粋 2029 | 9089=翠 2030 | 908A=衰 2031 | 908B=遂 2032 | 908C=酔 2033 | 908D=錐 2034 | 908E=錘 2035 | 908F=随 2036 | 9090=瑞 2037 | 9091=髄 2038 | 9092=崇 2039 | 9093=嵩 2040 | 9094=数 2041 | 9095=枢 2042 | 9096=趨 2043 | 9097=雛 2044 | 9098=据 2045 | 9099=杉 2046 | 909A=椙 2047 | 909B=菅 2048 | 909C=頗 2049 | 909D=雀 2050 | 909E=裾 2051 | 909F=澄 2052 | 90A0=摺 2053 | 90A1=寸 2054 | 90A2=世 2055 | 90A3=瀬 2056 | 90A4=畝 2057 | 90A5=是 2058 | 90A6=凄 2059 | 90A7=制 2060 | 90A8=勢 2061 | 90A9=姓 2062 | 90AA=征 2063 | 90AB=性 2064 | 90AC=成 2065 | 90AD=政 2066 | 90AE=整 2067 | 90AF=星 2068 | 90B0=晴 2069 | 90B1=棲 2070 | 90B2=栖 2071 | 90B3=正 2072 | 90B4=清 2073 | 90B5=牲 2074 | 90B6=生 2075 | 90B7=盛 2076 | 90B8=精 2077 | 90B9=聖 2078 | 90BA=声 2079 | 90BB=製 2080 | 90BC=西 2081 | 90BD=誠 2082 | 90BE=誓 2083 | 90BF=請 2084 | 90C0=逝 2085 | 90C1=醒 2086 | 90C2=青 2087 | 90C3=静 2088 | 90C4=斉 2089 | 90C5=税 2090 | 90C6=脆 2091 | 90C7=隻 2092 | 90C8=席 2093 | 90C9=惜 2094 | 90CA=戚 2095 | 90CB=斥 2096 | 90CC=昔 2097 | 90CD=析 2098 | 90CE=石 2099 | 90CF=積 2100 | 90D0=籍 2101 | 90D1=績 2102 | 90D2=脊 2103 | 90D3=責 2104 | 90D4=赤 2105 | 90D5=跡 2106 | 90D6=蹟 2107 | 90D7=碩 2108 | 90D8=切 2109 | 90D9=拙 2110 | 90DA=接 2111 | 90DB=摂 2112 | 90DC=折 2113 | 90DD=設 2114 | 90DE=窃 2115 | 90DF=節 2116 | 90E0=説 2117 | 90E1=雪 2118 | 90E2=絶 2119 | 90E3=舌 2120 | 90E4=蝉 2121 | 90E5=仙 2122 | 90E6=先 2123 | 90E7=千 2124 | 90E8=占 2125 | 90E9=宣 2126 | 90EA=専 2127 | 90EB=尖 2128 | 90EC=川 2129 | 90ED=戦 2130 | 90EE=扇 2131 | 90EF=撰 2132 | 90F0=栓 2133 | 90F1=栴 2134 | 90F2=泉 2135 | 90F3=浅 2136 | 90F4=洗 2137 | 90F5=染 2138 | 90F6=潜 2139 | 90F7=煎 2140 | 90F8=煽 2141 | 90F9=旋 2142 | 90FA=穿 2143 | 90FB=箭 2144 | 90FC=線 2145 | 9140=繊 2146 | 9141=羨 2147 | 9142=腺 2148 | 9143=舛 2149 | 9144=船 2150 | 9145=薦 2151 | 9146=詮 2152 | 9147=賎 2153 | 9148=践 2154 | 9149=選 2155 | 914A=遷 2156 | 914B=銭 2157 | 914C=銑 2158 | 914D=閃 2159 | 914E=鮮 2160 | 914F=前 2161 | 9150=善 2162 | 9151=漸 2163 | 9152=然 2164 | 9153=全 2165 | 9154=禅 2166 | 9155=繕 2167 | 9156=膳 2168 | 9157=糎 2169 | 9158=噌 2170 | 9159=塑 2171 | 915A=岨 2172 | 915B=措 2173 | 915C=曾 2174 | 915D=曽 2175 | 915E=楚 2176 | 915F=狙 2177 | 9160=疏 2178 | 9161=疎 2179 | 9162=礎 2180 | 9163=祖 2181 | 9164=租 2182 | 9165=粗 2183 | 9166=素 2184 | 9167=組 2185 | 9168=蘇 2186 | 9169=訴 2187 | 916A=阻 2188 | 916B=遡 2189 | 916C=鼠 2190 | 916D=僧 2191 | 916E=創 2192 | 916F=双 2193 | 9170=叢 2194 | 9171=倉 2195 | 9172=喪 2196 | 9173=壮 2197 | 9174=奏 2198 | 9175=爽 2199 | 9176=宋 2200 | 9177=層 2201 | 9178=匝 2202 | 9179=惣 2203 | 917A=想 2204 | 917B=捜 2205 | 917C=掃 2206 | 917D=挿 2207 | 917E=掻 2208 | 9180=操 2209 | 9181=早 2210 | 9182=曹 2211 | 9183=巣 2212 | 9184=槍 2213 | 9185=槽 2214 | 9186=漕 2215 | 9187=燥 2216 | 9188=争 2217 | 9189=痩 2218 | 918A=相 2219 | 918B=窓 2220 | 918C=糟 2221 | 918D=総 2222 | 918E=綜 2223 | 918F=聡 2224 | 9190=草 2225 | 9191=荘 2226 | 9192=葬 2227 | 9193=蒼 2228 | 9194=藻 2229 | 9195=装 2230 | 9196=走 2231 | 9197=送 2232 | 9198=遭 2233 | 9199=鎗 2234 | 919A=霜 2235 | 919B=騒 2236 | 919C=像 2237 | 919D=増 2238 | 919E=憎 2239 | 919F=臓 2240 | 91A0=蔵 2241 | 91A1=贈 2242 | 91A2=造 2243 | 91A3=促 2244 | 91A4=側 2245 | 91A5=則 2246 | 91A6=即 2247 | 91A7=息 2248 | 91A8=捉 2249 | 91A9=束 2250 | 91AA=測 2251 | 91AB=足 2252 | 91AC=速 2253 | 91AD=俗 2254 | 91AE=属 2255 | 91AF=賊 2256 | 91B0=族 2257 | 91B1=続 2258 | 91B2=卒 2259 | 91B3=袖 2260 | 91B4=其 2261 | 91B5=揃 2262 | 91B6=存 2263 | 91B7=孫 2264 | 91B8=尊 2265 | 91B9=損 2266 | 91BA=村 2267 | 91BB=遜 2268 | 91BC=他 2269 | 91BD=多 2270 | 91BE=太 2271 | 91BF=汰 2272 | 91C0=詑 2273 | 91C1=唾 2274 | 91C2=堕 2275 | 91C3=妥 2276 | 91C4=惰 2277 | 91C5=打 2278 | 91C6=柁 2279 | 91C7=舵 2280 | 91C8=楕 2281 | 91C9=陀 2282 | 91CA=駄 2283 | 91CB=騨 2284 | 91CC=体 2285 | 91CD=堆 2286 | 91CE=対 2287 | 91CF=耐 2288 | 91D0=岱 2289 | 91D1=帯 2290 | 91D2=待 2291 | 91D3=怠 2292 | 91D4=態 2293 | 91D5=戴 2294 | 91D6=替 2295 | 91D7=泰 2296 | 91D8=滞 2297 | 91D9=胎 2298 | 91DA=腿 2299 | 91DB=苔 2300 | 91DC=袋 2301 | 91DD=貸 2302 | 91DE=退 2303 | 91DF=逮 2304 | 91E0=隊 2305 | 91E1=黛 2306 | 91E2=鯛 2307 | 91E3=代 2308 | 91E4=台 2309 | 91E5=大 2310 | 91E6=第 2311 | 91E7=醍 2312 | 91E8=題 2313 | 91E9=鷹 2314 | 91EA=滝 2315 | 91EB=瀧 2316 | 91EC=卓 2317 | 91ED=啄 2318 | 91EE=宅 2319 | 91EF=托 2320 | 91F0=択 2321 | 91F1=拓 2322 | 91F2=沢 2323 | 91F3=濯 2324 | 91F4=琢 2325 | 91F5=託 2326 | 91F6=鐸 2327 | 91F7=濁 2328 | 91F8=諾 2329 | 91F9=茸 2330 | 91FA=凧 2331 | 91FB=蛸 2332 | 91FC=只 2333 | 9240=叩 2334 | 9241=但 2335 | 9242=達 2336 | 9243=辰 2337 | 9244=奪 2338 | 9245=脱 2339 | 9246=巽 2340 | 9247=竪 2341 | 9248=辿 2342 | 9249=棚 2343 | 924A=谷 2344 | 924B=狸 2345 | 924C=鱈 2346 | 924D=樽 2347 | 924E=誰 2348 | 924F=丹 2349 | 9250=単 2350 | 9251=嘆 2351 | 9252=坦 2352 | 9253=担 2353 | 9254=探 2354 | 9255=旦 2355 | 9256=歎 2356 | 9257=淡 2357 | 9258=湛 2358 | 9259=炭 2359 | 925A=短 2360 | 925B=端 2361 | 925C=箪 2362 | 925D=綻 2363 | 925E=耽 2364 | 925F=胆 2365 | 9260=蛋 2366 | 9261=誕 2367 | 9262=鍛 2368 | 9263=団 2369 | 9264=壇 2370 | 9265=弾 2371 | 9266=断 2372 | 9267=暖 2373 | 9268=檀 2374 | 9269=段 2375 | 926A=男 2376 | 926B=談 2377 | 926C=値 2378 | 926D=知 2379 | 926E=地 2380 | 926F=弛 2381 | 9270=恥 2382 | 9271=智 2383 | 9272=池 2384 | 9273=痴 2385 | 9274=稚 2386 | 9275=置 2387 | 9276=致 2388 | 9277=蜘 2389 | 9278=遅 2390 | 9279=馳 2391 | 927A=築 2392 | 927B=畜 2393 | 927C=竹 2394 | 927D=筑 2395 | 927E=蓄 2396 | 9280=逐 2397 | 9281=秩 2398 | 9282=窒 2399 | 9283=茶 2400 | 9284=嫡 2401 | 9285=着 2402 | 9286=中 2403 | 9287=仲 2404 | 9288=宙 2405 | 9289=忠 2406 | 928A=抽 2407 | 928B=昼 2408 | 928C=柱 2409 | 928D=注 2410 | 928E=虫 2411 | 928F=衷 2412 | 9290=註 2413 | 9291=酎 2414 | 9292=鋳 2415 | 9293=駐 2416 | 9294=樗 2417 | 9295=瀦 2418 | 9296=猪 2419 | 9297=苧 2420 | 9298=著 2421 | 9299=貯 2422 | 929A=丁 2423 | 929B=兆 2424 | 929C=凋 2425 | 929D=喋 2426 | 929E=寵 2427 | 929F=帖 2428 | 92A0=帳 2429 | 92A1=庁 2430 | 92A2=弔 2431 | 92A3=張 2432 | 92A4=彫 2433 | 92A5=徴 2434 | 92A6=懲 2435 | 92A7=挑 2436 | 92A8=暢 2437 | 92A9=朝 2438 | 92AA=潮 2439 | 92AB=牒 2440 | 92AC=町 2441 | 92AD=眺 2442 | 92AE=聴 2443 | 92AF=脹 2444 | 92B0=腸 2445 | 92B1=蝶 2446 | 92B2=調 2447 | 92B3=諜 2448 | 92B4=超 2449 | 92B5=跳 2450 | 92B6=銚 2451 | 92B7=長 2452 | 92B8=頂 2453 | 92B9=鳥 2454 | 92BA=勅 2455 | 92BB=捗 2456 | 92BC=直 2457 | 92BD=朕 2458 | 92BE=沈 2459 | 92BF=珍 2460 | 92C0=賃 2461 | 92C1=鎮 2462 | 92C2=陳 2463 | 92C3=津 2464 | 92C4=墜 2465 | 92C5=椎 2466 | 92C6=槌 2467 | 92C7=追 2468 | 92C8=鎚 2469 | 92C9=痛 2470 | 92CA=通 2471 | 92CB=塚 2472 | 92CC=栂 2473 | 92CD=掴 2474 | 92CE=槻 2475 | 92CF=佃 2476 | 92D0=漬 2477 | 92D1=柘 2478 | 92D2=辻 2479 | 92D3=蔦 2480 | 92D4=綴 2481 | 92D5=鍔 2482 | 92D6=椿 2483 | 92D7=潰 2484 | 92D8=坪 2485 | 92D9=壷 2486 | 92DA=嬬 2487 | 92DB=紬 2488 | 92DC=爪 2489 | 92DD=吊 2490 | 92DE=釣 2491 | 92DF=鶴 2492 | 92E0=亭 2493 | 92E1=低 2494 | 92E2=停 2495 | 92E3=偵 2496 | 92E4=剃 2497 | 92E5=貞 2498 | 92E6=呈 2499 | 92E7=堤 2500 | 92E8=定 2501 | 92E9=帝 2502 | 92EA=底 2503 | 92EB=庭 2504 | 92EC=廷 2505 | 92ED=弟 2506 | 92EE=悌 2507 | 92EF=抵 2508 | 92F0=挺 2509 | 92F1=提 2510 | 92F2=梯 2511 | 92F3=汀 2512 | 92F4=碇 2513 | 92F5=禎 2514 | 92F6=程 2515 | 92F7=締 2516 | 92F8=艇 2517 | 92F9=訂 2518 | 92FA=諦 2519 | 92FB=蹄 2520 | 92FC=逓 2521 | 9340=邸 2522 | 9341=鄭 2523 | 9342=釘 2524 | 9343=鼎 2525 | 9344=泥 2526 | 9345=摘 2527 | 9346=擢 2528 | 9347=敵 2529 | 9348=滴 2530 | 9349=的 2531 | 934A=笛 2532 | 934B=適 2533 | 934C=鏑 2534 | 934D=溺 2535 | 934E=哲 2536 | 934F=徹 2537 | 9350=撤 2538 | 9351=轍 2539 | 9352=迭 2540 | 9353=鉄 2541 | 9354=典 2542 | 9355=填 2543 | 9356=天 2544 | 9357=展 2545 | 9358=店 2546 | 9359=添 2547 | 935A=纏 2548 | 935B=甜 2549 | 935C=貼 2550 | 935D=転 2551 | 935E=顛 2552 | 935F=点 2553 | 9360=伝 2554 | 9361=殿 2555 | 9362=澱 2556 | 9363=田 2557 | 9364=電 2558 | 9365=兎 2559 | 9366=吐 2560 | 9367=堵 2561 | 9368=塗 2562 | 9369=妬 2563 | 936A=屠 2564 | 936B=徒 2565 | 936C=斗 2566 | 936D=杜 2567 | 936E=渡 2568 | 936F=登 2569 | 9370=菟 2570 | 9371=賭 2571 | 9372=途 2572 | 9373=都 2573 | 9374=鍍 2574 | 9375=砥 2575 | 9376=砺 2576 | 9377=努 2577 | 9378=度 2578 | 9379=土 2579 | 937A=奴 2580 | 937B=怒 2581 | 937C=倒 2582 | 937D=党 2583 | 937E=冬 2584 | 9380=凍 2585 | 9381=刀 2586 | 9382=唐 2587 | 9383=塔 2588 | 9384=塘 2589 | 9385=套 2590 | 9386=宕 2591 | 9387=島 2592 | 9388=嶋 2593 | 9389=悼 2594 | 938A=投 2595 | 938B=搭 2596 | 938C=東 2597 | 938D=桃 2598 | 938E=梼 2599 | 938F=棟 2600 | 9390=盗 2601 | 9391=淘 2602 | 9392=湯 2603 | 9393=涛 2604 | 9394=灯 2605 | 9395=燈 2606 | 9396=当 2607 | 9397=痘 2608 | 9398=祷 2609 | 9399=等 2610 | 939A=答 2611 | 939B=筒 2612 | 939C=糖 2613 | 939D=統 2614 | 939E=到 2615 | 939F=董 2616 | 93A0=蕩 2617 | 93A1=藤 2618 | 93A2=討 2619 | 93A3=謄 2620 | 93A4=豆 2621 | 93A5=踏 2622 | 93A6=逃 2623 | 93A7=透 2624 | 93A8=鐙 2625 | 93A9=陶 2626 | 93AA=頭 2627 | 93AB=騰 2628 | 93AC=闘 2629 | 93AD=働 2630 | 93AE=動 2631 | 93AF=同 2632 | 93B0=堂 2633 | 93B1=導 2634 | 93B2=憧 2635 | 93B3=撞 2636 | 93B4=洞 2637 | 93B5=瞳 2638 | 93B6=童 2639 | 93B7=胴 2640 | 93B8=萄 2641 | 93B9=道 2642 | 93BA=銅 2643 | 93BB=峠 2644 | 93BC=鴇 2645 | 93BD=匿 2646 | 93BE=得 2647 | 93BF=徳 2648 | 93C0=涜 2649 | 93C1=特 2650 | 93C2=督 2651 | 93C3=禿 2652 | 93C4=篤 2653 | 93C5=毒 2654 | 93C6=独 2655 | 93C7=読 2656 | 93C8=栃 2657 | 93C9=橡 2658 | 93CA=凸 2659 | 93CB=突 2660 | 93CC=椴 2661 | 93CD=届 2662 | 93CE=鳶 2663 | 93CF=苫 2664 | 93D0=寅 2665 | 93D1=酉 2666 | 93D2=瀞 2667 | 93D3=噸 2668 | 93D4=屯 2669 | 93D5=惇 2670 | 93D6=敦 2671 | 93D7=沌 2672 | 93D8=豚 2673 | 93D9=遁 2674 | 93DA=頓 2675 | 93DB=呑 2676 | 93DC=曇 2677 | 93DD=鈍 2678 | 93DE=奈 2679 | 93DF=那 2680 | 93E0=内 2681 | 93E1=乍 2682 | 93E2=凪 2683 | 93E3=薙 2684 | 93E4=謎 2685 | 93E5=灘 2686 | 93E6=捺 2687 | 93E7=鍋 2688 | 93E8=楢 2689 | 93E9=馴 2690 | 93EA=縄 2691 | 93EB=畷 2692 | 93EC=南 2693 | 93ED=楠 2694 | 93EE=軟 2695 | 93EF=難 2696 | 93F0=汝 2697 | 93F1=二 2698 | 93F2=尼 2699 | 93F3=弐 2700 | 93F4=迩 2701 | 93F5=匂 2702 | 93F6=賑 2703 | 93F7=肉 2704 | 93F8=虹 2705 | 93F9=廿 2706 | 93FA=日 2707 | 93FB=乳 2708 | 93FC=入 2709 | 9440=如 2710 | 9441=尿 2711 | 9442=韮 2712 | 9443=任 2713 | 9444=妊 2714 | 9445=忍 2715 | 9446=認 2716 | 9447=濡 2717 | 9448=禰 2718 | 9449=祢 2719 | 944A=寧 2720 | 944B=葱 2721 | 944C=猫 2722 | 944D=熱 2723 | 944E=年 2724 | 944F=念 2725 | 9450=捻 2726 | 9451=撚 2727 | 9452=燃 2728 | 9453=粘 2729 | 9454=乃 2730 | 9455=廼 2731 | 9456=之 2732 | 9457=埜 2733 | 9458=嚢 2734 | 9459=悩 2735 | 945A=濃 2736 | 945B=納 2737 | 945C=能 2738 | 945D=脳 2739 | 945E=膿 2740 | 945F=農 2741 | 9460=覗 2742 | 9461=蚤 2743 | 9462=巴 2744 | 9463=把 2745 | 9464=播 2746 | 9465=覇 2747 | 9466=杷 2748 | 9467=波 2749 | 9468=派 2750 | 9469=琶 2751 | 946A=破 2752 | 946B=婆 2753 | 946C=罵 2754 | 946D=芭 2755 | 946E=馬 2756 | 946F=俳 2757 | 9470=廃 2758 | 9471=拝 2759 | 9472=排 2760 | 9473=敗 2761 | 9474=杯 2762 | 9475=盃 2763 | 9476=牌 2764 | 9477=背 2765 | 9478=肺 2766 | 9479=輩 2767 | 947A=配 2768 | 947B=倍 2769 | 947C=培 2770 | 947D=媒 2771 | 947E=梅 2772 | 9480=楳 2773 | 9481=煤 2774 | 9482=狽 2775 | 9483=買 2776 | 9484=売 2777 | 9485=賠 2778 | 9486=陪 2779 | 9487=這 2780 | 9488=蝿 2781 | 9489=秤 2782 | 948A=矧 2783 | 948B=萩 2784 | 948C=伯 2785 | 948D=剥 2786 | 948E=博 2787 | 948F=拍 2788 | 9490=柏 2789 | 9491=泊 2790 | 9492=白 2791 | 9493=箔 2792 | 9494=粕 2793 | 9495=舶 2794 | 9496=薄 2795 | 9497=迫 2796 | 9498=曝 2797 | 9499=漠 2798 | 949A=爆 2799 | 949B=縛 2800 | 949C=莫 2801 | 949D=駁 2802 | 949E=麦 2803 | 949F=函 2804 | 94A0=箱 2805 | 94A1=硲 2806 | 94A2=箸 2807 | 94A3=肇 2808 | 94A4=筈 2809 | 94A5=櫨 2810 | 94A6=幡 2811 | 94A7=肌 2812 | 94A8=畑 2813 | 94A9=畠 2814 | 94AA=八 2815 | 94AB=鉢 2816 | 94AC=溌 2817 | 94AD=発 2818 | 94AE=醗 2819 | 94AF=髪 2820 | 94B0=伐 2821 | 94B1=罰 2822 | 94B2=抜 2823 | 94B3=筏 2824 | 94B4=閥 2825 | 94B5=鳩 2826 | 94B6=噺 2827 | 94B7=塙 2828 | 94B8=蛤 2829 | 94B9=隼 2830 | 94BA=伴 2831 | 94BB=判 2832 | 94BC=半 2833 | 94BD=反 2834 | 94BE=叛 2835 | 94BF=帆 2836 | 94C0=搬 2837 | 94C1=斑 2838 | 94C2=板 2839 | 94C3=氾 2840 | 94C4=汎 2841 | 94C5=版 2842 | 94C6=犯 2843 | 94C7=班 2844 | 94C8=畔 2845 | 94C9=繁 2846 | 94CA=般 2847 | 94CB=藩 2848 | 94CC=販 2849 | 94CD=範 2850 | 94CE=釆 2851 | 94CF=煩 2852 | 94D0=頒 2853 | 94D1=飯 2854 | 94D2=挽 2855 | 94D3=晩 2856 | 94D4=番 2857 | 94D5=盤 2858 | 94D6=磐 2859 | 94D7=蕃 2860 | 94D8=蛮 2861 | 94D9=匪 2862 | 94DA=卑 2863 | 94DB=否 2864 | 94DC=妃 2865 | 94DD=庇 2866 | 94DE=彼 2867 | 94DF=悲 2868 | 94E0=扉 2869 | 94E1=批 2870 | 94E2=披 2871 | 94E3=斐 2872 | 94E4=比 2873 | 94E5=泌 2874 | 94E6=疲 2875 | 94E7=皮 2876 | 94E8=碑 2877 | 94E9=秘 2878 | 94EA=緋 2879 | 94EB=罷 2880 | 94EC=肥 2881 | 94ED=被 2882 | 94EE=誹 2883 | 94EF=費 2884 | 94F0=避 2885 | 94F1=非 2886 | 94F2=飛 2887 | 94F3=樋 2888 | 94F4=簸 2889 | 94F5=備 2890 | 94F6=尾 2891 | 94F7=微 2892 | 94F8=枇 2893 | 94F9=毘 2894 | 94FA=琵 2895 | 94FB=眉 2896 | 94FC=美 2897 | 9540=鼻 2898 | 9541=柊 2899 | 9542=稗 2900 | 9543=匹 2901 | 9544=疋 2902 | 9545=髭 2903 | 9546=彦 2904 | 9547=膝 2905 | 9548=菱 2906 | 9549=肘 2907 | 954A=弼 2908 | 954B=必 2909 | 954C=畢 2910 | 954D=筆 2911 | 954E=逼 2912 | 954F=桧 2913 | 9550=姫 2914 | 9551=媛 2915 | 9552=紐 2916 | 9553=百 2917 | 9554=謬 2918 | 9555=俵 2919 | 9556=彪 2920 | 9557=標 2921 | 9558=氷 2922 | 9559=漂 2923 | 955A=瓢 2924 | 955B=票 2925 | 955C=表 2926 | 955D=評 2927 | 955E=豹 2928 | 955F=廟 2929 | 9560=描 2930 | 9561=病 2931 | 9562=秒 2932 | 9563=苗 2933 | 9564=錨 2934 | 9565=鋲 2935 | 9566=蒜 2936 | 9567=蛭 2937 | 9568=鰭 2938 | 9569=品 2939 | 956A=彬 2940 | 956B=斌 2941 | 956C=浜 2942 | 956D=瀕 2943 | 956E=貧 2944 | 956F=賓 2945 | 9570=頻 2946 | 9571=敏 2947 | 9572=瓶 2948 | 9573=不 2949 | 9574=付 2950 | 9575=埠 2951 | 9576=夫 2952 | 9577=婦 2953 | 9578=富 2954 | 9579=冨 2955 | 957A=布 2956 | 957B=府 2957 | 957C=怖 2958 | 957D=扶 2959 | 957E=敷 2960 | 9580=斧 2961 | 9581=普 2962 | 9582=浮 2963 | 9583=父 2964 | 9584=符 2965 | 9585=腐 2966 | 9586=膚 2967 | 9587=芙 2968 | 9588=譜 2969 | 9589=負 2970 | 958A=賦 2971 | 958B=赴 2972 | 958C=阜 2973 | 958D=附 2974 | 958E=侮 2975 | 958F=撫 2976 | 9590=武 2977 | 9591=舞 2978 | 9592=葡 2979 | 9593=蕪 2980 | 9594=部 2981 | 9595=封 2982 | 9596=楓 2983 | 9597=風 2984 | 9598=葺 2985 | 9599=蕗 2986 | 959A=伏 2987 | 959B=副 2988 | 959C=復 2989 | 959D=幅 2990 | 959E=服 2991 | 959F=福 2992 | 95A0=腹 2993 | 95A1=複 2994 | 95A2=覆 2995 | 95A3=淵 2996 | 95A4=弗 2997 | 95A5=払 2998 | 95A6=沸 2999 | 95A7=仏 3000 | 95A8=物 3001 | 95A9=鮒 3002 | 95AA=分 3003 | 95AB=吻 3004 | 95AC=噴 3005 | 95AD=墳 3006 | 95AE=憤 3007 | 95AF=扮 3008 | 95B0=焚 3009 | 95B1=奮 3010 | 95B2=粉 3011 | 95B3=糞 3012 | 95B4=紛 3013 | 95B5=雰 3014 | 95B6=文 3015 | 95B7=聞 3016 | 95B8=丙 3017 | 95B9=併 3018 | 95BA=兵 3019 | 95BB=塀 3020 | 95BC=幣 3021 | 95BD=平 3022 | 95BE=弊 3023 | 95BF=柄 3024 | 95C0=並 3025 | 95C1=蔽 3026 | 95C2=閉 3027 | 95C3=陛 3028 | 95C4=米 3029 | 95C5=頁 3030 | 95C6=僻 3031 | 95C7=壁 3032 | 95C8=癖 3033 | 95C9=碧 3034 | 95CA=別 3035 | 95CB=瞥 3036 | 95CC=蔑 3037 | 95CD=箆 3038 | 95CE=偏 3039 | 95CF=変 3040 | 95D0=片 3041 | 95D1=篇 3042 | 95D2=編 3043 | 95D3=辺 3044 | 95D4=返 3045 | 95D5=遍 3046 | 95D6=便 3047 | 95D7=勉 3048 | 95D8=娩 3049 | 95D9=弁 3050 | 95DA=鞭 3051 | 95DB=保 3052 | 95DC=舗 3053 | 95DD=鋪 3054 | 95DE=圃 3055 | 95DF=捕 3056 | 95E0=歩 3057 | 95E1=甫 3058 | 95E2=補 3059 | 95E3=輔 3060 | 95E4=穂 3061 | 95E5=募 3062 | 95E6=墓 3063 | 95E7=慕 3064 | 95E8=戊 3065 | 95E9=暮 3066 | 95EA=母 3067 | 95EB=簿 3068 | 95EC=菩 3069 | 95ED=倣 3070 | 95EE=俸 3071 | 95EF=包 3072 | 95F0=呆 3073 | 95F1=報 3074 | 95F2=奉 3075 | 95F3=宝 3076 | 95F4=峰 3077 | 95F5=峯 3078 | 95F6=崩 3079 | 95F7=庖 3080 | 95F8=抱 3081 | 95F9=捧 3082 | 95FA=放 3083 | 95FB=方 3084 | 95FC=朋 3085 | 9640=法 3086 | 9641=泡 3087 | 9642=烹 3088 | 9643=砲 3089 | 9644=縫 3090 | 9645=胞 3091 | 9646=芳 3092 | 9647=萌 3093 | 9648=蓬 3094 | 9649=蜂 3095 | 964A=褒 3096 | 964B=訪 3097 | 964C=豊 3098 | 964D=邦 3099 | 964E=鋒 3100 | 964F=飽 3101 | 9650=鳳 3102 | 9651=鵬 3103 | 9652=乏 3104 | 9653=亡 3105 | 9654=傍 3106 | 9655=剖 3107 | 9656=坊 3108 | 9657=妨 3109 | 9658=帽 3110 | 9659=忘 3111 | 965A=忙 3112 | 965B=房 3113 | 965C=暴 3114 | 965D=望 3115 | 965E=某 3116 | 965F=棒 3117 | 9660=冒 3118 | 9661=紡 3119 | 9662=肪 3120 | 9663=膨 3121 | 9664=謀 3122 | 9665=貌 3123 | 9666=貿 3124 | 9667=鉾 3125 | 9668=防 3126 | 9669=吠 3127 | 966A=頬 3128 | 966B=北 3129 | 966C=僕 3130 | 966D=卜 3131 | 966E=墨 3132 | 966F=撲 3133 | 9670=朴 3134 | 9671=牧 3135 | 9672=睦 3136 | 9673=穆 3137 | 9674=釦 3138 | 9675=勃 3139 | 9676=没 3140 | 9677=殆 3141 | 9678=堀 3142 | 9679=幌 3143 | 967A=奔 3144 | 967B=本 3145 | 967C=翻 3146 | 967D=凡 3147 | 967E=盆 3148 | 9680=摩 3149 | 9681=磨 3150 | 9682=魔 3151 | 9683=麻 3152 | 9684=埋 3153 | 9685=妹 3154 | 9686=昧 3155 | 9687=枚 3156 | 9688=毎 3157 | 9689=哩 3158 | 968A=槙 3159 | 968B=幕 3160 | 968C=膜 3161 | 968D=枕 3162 | 968E=鮪 3163 | 968F=柾 3164 | 9690=鱒 3165 | 9691=桝 3166 | 9692=亦 3167 | 9693=俣 3168 | 9694=又 3169 | 9695=抹 3170 | 9696=末 3171 | 9697=沫 3172 | 9698=迄 3173 | 9699=侭 3174 | 969A=繭 3175 | 969B=麿 3176 | 969C=万 3177 | 969D=慢 3178 | 969E=満 3179 | 969F=漫 3180 | 96A0=蔓 3181 | 96A1=味 3182 | 96A2=未 3183 | 96A3=魅 3184 | 96A4=巳 3185 | 96A5=箕 3186 | 96A6=岬 3187 | 96A7=密 3188 | 96A8=蜜 3189 | 96A9=湊 3190 | 96AA=蓑 3191 | 96AB=稔 3192 | 96AC=脈 3193 | 96AD=妙 3194 | 96AE=粍 3195 | 96AF=民 3196 | 96B0=眠 3197 | 96B1=務 3198 | 96B2=夢 3199 | 96B3=無 3200 | 96B4=牟 3201 | 96B5=矛 3202 | 96B6=霧 3203 | 96B7=鵡 3204 | 96B8=椋 3205 | 96B9=婿 3206 | 96BA=娘 3207 | 96BB=冥 3208 | 96BC=名 3209 | 96BD=命 3210 | 96BE=明 3211 | 96BF=盟 3212 | 96C0=迷 3213 | 96C1=銘 3214 | 96C2=鳴 3215 | 96C3=姪 3216 | 96C4=牝 3217 | 96C5=滅 3218 | 96C6=免 3219 | 96C7=棉 3220 | 96C8=綿 3221 | 96C9=緬 3222 | 96CA=面 3223 | 96CB=麺 3224 | 96CC=摸 3225 | 96CD=模 3226 | 96CE=茂 3227 | 96CF=妄 3228 | 96D0=孟 3229 | 96D1=毛 3230 | 96D2=猛 3231 | 96D3=盲 3232 | 96D4=網 3233 | 96D5=耗 3234 | 96D6=蒙 3235 | 96D7=儲 3236 | 96D8=木 3237 | 96D9=黙 3238 | 96DA=目 3239 | 96DB=杢 3240 | 96DC=勿 3241 | 96DD=餅 3242 | 96DE=尤 3243 | 96DF=戻 3244 | 96E0=籾 3245 | 96E1=貰 3246 | 96E2=問 3247 | 96E3=悶 3248 | 96E4=紋 3249 | 96E5=門 3250 | 96E6=匁 3251 | 96E7=也 3252 | 96E8=冶 3253 | 96E9=夜 3254 | 96EA=爺 3255 | 96EB=耶 3256 | 96EC=野 3257 | 96ED=弥 3258 | 96EE=矢 3259 | 96EF=厄 3260 | 96F0=役 3261 | 96F1=約 3262 | 96F2=薬 3263 | 96F3=訳 3264 | 96F4=躍 3265 | 96F5=靖 3266 | 96F6=柳 3267 | 96F7=薮 3268 | 96F8=鑓 3269 | 96F9=愉 3270 | 96FA=愈 3271 | 96FB=油 3272 | 96FC=癒 3273 | 9740=諭 3274 | 9741=輸 3275 | 9742=唯 3276 | 9743=佑 3277 | 9744=優 3278 | 9745=勇 3279 | 9746=友 3280 | 9747=宥 3281 | 9748=幽 3282 | 9749=悠 3283 | 974A=憂 3284 | 974B=揖 3285 | 974C=有 3286 | 974D=柚 3287 | 974E=湧 3288 | 974F=涌 3289 | 9750=猶 3290 | 9751=猷 3291 | 9752=由 3292 | 9753=祐 3293 | 9754=裕 3294 | 9755=誘 3295 | 9756=遊 3296 | 9757=邑 3297 | 9758=郵 3298 | 9759=雄 3299 | 975A=融 3300 | 975B=夕 3301 | 975C=予 3302 | 975D=余 3303 | 975E=与 3304 | 975F=誉 3305 | 9760=輿 3306 | 9761=預 3307 | 9762=傭 3308 | 9763=幼 3309 | 9764=妖 3310 | 9765=容 3311 | 9766=庸 3312 | 9767=揚 3313 | 9768=揺 3314 | 9769=擁 3315 | 976A=曜 3316 | 976B=楊 3317 | 976C=様 3318 | 976D=洋 3319 | 976E=溶 3320 | 976F=熔 3321 | 9770=用 3322 | 9771=窯 3323 | 9772=羊 3324 | 9773=耀 3325 | 9774=葉 3326 | 9775=蓉 3327 | 9776=要 3328 | 9777=謡 3329 | 9778=踊 3330 | 9779=遥 3331 | 977A=陽 3332 | 977B=養 3333 | 977C=慾 3334 | 977D=抑 3335 | 977E=欲 3336 | 9780=沃 3337 | 9781=浴 3338 | 9782=翌 3339 | 9783=翼 3340 | 9784=淀 3341 | 9785=羅 3342 | 9786=螺 3343 | 9787=裸 3344 | 9788=来 3345 | 9789=莱 3346 | 978A=頼 3347 | 978B=雷 3348 | 978C=洛 3349 | 978D=絡 3350 | 978E=落 3351 | 978F=酪 3352 | 9790=乱 3353 | 9791=卵 3354 | 9792=嵐 3355 | 9793=欄 3356 | 9794=濫 3357 | 9795=藍 3358 | 9796=蘭 3359 | 9797=覧 3360 | 9798=利 3361 | 9799=吏 3362 | 979A=履 3363 | 979B=李 3364 | 979C=梨 3365 | 979D=理 3366 | 979E=璃 3367 | 979F=痢 3368 | 97A0=裏 3369 | 97A1=裡 3370 | 97A2=里 3371 | 97A3=離 3372 | 97A4=陸 3373 | 97A5=律 3374 | 97A6=率 3375 | 97A7=立 3376 | 97A8=葎 3377 | 97A9=掠 3378 | 97AA=略 3379 | 97AB=劉 3380 | 97AC=流 3381 | 97AD=溜 3382 | 97AE=琉 3383 | 97AF=留 3384 | 97B0=硫 3385 | 97B1=粒 3386 | 97B2=隆 3387 | 97B3=竜 3388 | 97B4=龍 3389 | 97B5=侶 3390 | 97B6=慮 3391 | 97B7=旅 3392 | 97B8=虜 3393 | 97B9=了 3394 | 97BA=亮 3395 | 97BB=僚 3396 | 97BC=両 3397 | 97BD=凌 3398 | 97BE=寮 3399 | 97BF=料 3400 | 97C0=梁 3401 | 97C1=涼 3402 | 97C2=猟 3403 | 97C3=療 3404 | 97C4=瞭 3405 | 97C5=稜 3406 | 97C6=糧 3407 | 97C7=良 3408 | 97C8=諒 3409 | 97C9=遼 3410 | 97CA=量 3411 | 97CB=陵 3412 | 97CC=領 3413 | 97CD=力 3414 | 97CE=緑 3415 | 97CF=倫 3416 | 97D0=厘 3417 | 97D1=林 3418 | 97D2=淋 3419 | 97D3=燐 3420 | 97D4=琳 3421 | 97D5=臨 3422 | 97D6=輪 3423 | 97D7=隣 3424 | 97D8=鱗 3425 | 97D9=麟 3426 | 97DA=瑠 3427 | 97DB=塁 3428 | 97DC=涙 3429 | 97DD=累 3430 | 97DE=類 3431 | 97DF=令 3432 | 97E0=伶 3433 | 97E1=例 3434 | 97E2=冷 3435 | 97E3=励 3436 | 97E4=嶺 3437 | 97E5=怜 3438 | 97E6=玲 3439 | 97E7=礼 3440 | 97E8=苓 3441 | 97E9=鈴 3442 | 97EA=隷 3443 | 97EB=零 3444 | 97EC=霊 3445 | 97ED=麗 3446 | 97EE=齢 3447 | 97EF=暦 3448 | 97F0=歴 3449 | 97F1=列 3450 | 97F2=劣 3451 | 97F3=烈 3452 | 97F4=裂 3453 | 97F5=廉 3454 | 97F6=恋 3455 | 97F7=憐 3456 | 97F8=漣 3457 | 97F9=煉 3458 | 97FA=簾 3459 | 97FB=練 3460 | 97FC=聯 3461 | 9840=蓮 3462 | 9841=連 3463 | 9842=錬 3464 | 9843=呂 3465 | 9844=魯 3466 | 9845=櫓 3467 | 9846=炉 3468 | 9847=賂 3469 | 9848=路 3470 | 9849=露 3471 | 984A=労 3472 | 984B=婁 3473 | 984C=廊 3474 | 984D=弄 3475 | 984E=朗 3476 | 984F=楼 3477 | 9850=榔 3478 | 9851=浪 3479 | 9852=漏 3480 | 9853=牢 3481 | 9854=狼 3482 | 9855=篭 3483 | 9856=老 3484 | 9857=聾 3485 | 9858=蝋 3486 | 9859=郎 3487 | 985A=六 3488 | 985B=麓 3489 | 985C=禄 3490 | 985D=肋 3491 | 985E=録 3492 | 985F=論 3493 | 9860=倭 3494 | 9861=和 3495 | 9862=話 3496 | 9863=歪 3497 | 9864=賄 3498 | 9865=脇 3499 | 9866=惑 3500 | 9867=枠 3501 | 9868=鷲 3502 | 9869=亙 3503 | 986A=亘 3504 | 986B=鰐 3505 | 986C=詫 3506 | 986D=藁 3507 | 986E=蕨 3508 | 986F=椀 3509 | 9870=湾 3510 | 9871=碗 3511 | 9872=腕 3512 | 989F=弌 3513 | 98A0=丐 3514 | 98A1=丕 3515 | 98A2=个 3516 | 98A3=丱 3517 | 98A4=丶 3518 | 98A5=丼 3519 | 98A6=丿 3520 | 98A7=乂 3521 | 98A8=乖 3522 | 98A9=乘 3523 | 98AA=亂 3524 | 98AB=亅 3525 | 98AC=豫 3526 | 98AD=亊 3527 | 98AE=舒 3528 | 98AF=弍 3529 | 98B0=于 3530 | 98B1=亞 3531 | 98B2=亟 3532 | 98B3=亠 3533 | 98B4=亢 3534 | 98B5=亰 3535 | 98B6=亳 3536 | 98B7=亶 3537 | 98B8=从 3538 | 98B9=仍 3539 | 98BA=仄 3540 | 98BB=仆 3541 | 98BC=仂 3542 | 98BD=仗 3543 | 98BE=仞 3544 | 98BF=仭 3545 | 98C0=仟 3546 | 98C1=价 3547 | 98C2=伉 3548 | 98C3=佚 3549 | 98C4=估 3550 | 98C5=佛 3551 | 98C6=佝 3552 | 98C7=佗 3553 | 98C8=佇 3554 | 98C9=佶 3555 | 98CA=侈 3556 | 98CB=侏 3557 | 98CC=侘 3558 | 98CD=佻 3559 | 98CE=佩 3560 | 98CF=佰 3561 | 98D0=侑 3562 | 98D1=佯 3563 | 98D2=來 3564 | 98D3=侖 3565 | 98D4=儘 3566 | 98D5=俔 3567 | 98D6=俟 3568 | 98D7=俎 3569 | 98D8=俘 3570 | 98D9=俛 3571 | 98DA=俑 3572 | 98DB=俚 3573 | 98DC=俐 3574 | 98DD=俤 3575 | 98DE=俥 3576 | 98DF=倚 3577 | 98E0=倨 3578 | 98E1=倔 3579 | 98E2=倪 3580 | 98E3=倥 3581 | 98E4=倅 3582 | 98E5=伜 3583 | 98E6=俶 3584 | 98E7=倡 3585 | 98E8=倩 3586 | 98E9=倬 3587 | 98EA=俾 3588 | 98EB=俯 3589 | 98EC=們 3590 | 98ED=倆 3591 | 98EE=偃 3592 | 98EF=假 3593 | 98F0=會 3594 | 98F1=偕 3595 | 98F2=偐 3596 | 98F3=偈 3597 | 98F4=做 3598 | 98F5=偖 3599 | 98F6=偬 3600 | 98F7=偸 3601 | 98F8=傀 3602 | 98F9=傚 3603 | 98FA=傅 3604 | 98FB=傴 3605 | 98FC=傲 3606 | 9940=僉 3607 | 9941=僊 3608 | 9942=傳 3609 | 9943=僂 3610 | 9944=僖 3611 | 9945=僞 3612 | 9946=僥 3613 | 9947=僭 3614 | 9948=僣 3615 | 9949=僮 3616 | 994A=價 3617 | 994B=僵 3618 | 994C=儉 3619 | 994D=儁 3620 | 994E=儂 3621 | 994F=儖 3622 | 9950=儕 3623 | 9951=儔 3624 | 9952=儚 3625 | 9953=儡 3626 | 9954=儺 3627 | 9955=儷 3628 | 9956=儼 3629 | 9957=儻 3630 | 9958=儿 3631 | 9959=兀 3632 | 995A=兒 3633 | 995B=兌 3634 | 995C=兔 3635 | 995D=兢 3636 | 995E=竸 3637 | 995F=兩 3638 | 9960=兪 3639 | 9961=兮 3640 | 9962=冀 3641 | 9963=冂 3642 | 9964=囘 3643 | 9965=册 3644 | 9966=冉 3645 | 9967=冏 3646 | 9968=冑 3647 | 9969=冓 3648 | 996A=冕 3649 | 996B=冖 3650 | 996C=冤 3651 | 996D=冦 3652 | 996E=冢 3653 | 996F=冩 3654 | 9970=冪 3655 | 9971=冫 3656 | 9972=决 3657 | 9973=冱 3658 | 9974=冲 3659 | 9975=冰 3660 | 9976=况 3661 | 9977=冽 3662 | 9978=凅 3663 | 9979=凉 3664 | 997A=凛 3665 | 997B=几 3666 | 997C=處 3667 | 997D=凩 3668 | 997E=凭 3669 | 9980=凰 3670 | 9981=凵 3671 | 9982=凾 3672 | 9983=刄 3673 | 9984=刋 3674 | 9985=刔 3675 | 9986=刎 3676 | 9987=刧 3677 | 9988=刪 3678 | 9989=刮 3679 | 998A=刳 3680 | 998B=刹 3681 | 998C=剏 3682 | 998D=剄 3683 | 998E=剋 3684 | 998F=剌 3685 | 9990=剞 3686 | 9991=剔 3687 | 9992=剪 3688 | 9993=剴 3689 | 9994=剩 3690 | 9995=剳 3691 | 9996=剿 3692 | 9997=剽 3693 | 9998=劍 3694 | 9999=劔 3695 | 999A=劒 3696 | 999B=剱 3697 | 999C=劈 3698 | 999D=劑 3699 | 999E=辨 3700 | 999F=辧 3701 | 99A0=劬 3702 | 99A1=劭 3703 | 99A2=劼 3704 | 99A3=劵 3705 | 99A4=勁 3706 | 99A5=勍 3707 | 99A6=勗 3708 | 99A7=勞 3709 | 99A8=勣 3710 | 99A9=勦 3711 | 99AA=飭 3712 | 99AB=勠 3713 | 99AC=勳 3714 | 99AD=勵 3715 | 99AE=勸 3716 | 99AF=勹 3717 | 99B0=匆 3718 | 99B1=匈 3719 | 99B2=甸 3720 | 99B3=匍 3721 | 99B4=匐 3722 | 99B5=匏 3723 | 99B6=匕 3724 | 99B7=匚 3725 | 99B8=匣 3726 | 99B9=匯 3727 | 99BA=匱 3728 | 99BB=匳 3729 | 99BC=匸 3730 | 99BD=區 3731 | 99BE=卆 3732 | 99BF=卅 3733 | 99C0=丗 3734 | 99C1=卉 3735 | 99C2=卍 3736 | 99C3=凖 3737 | 99C4=卞 3738 | 99C5=卩 3739 | 99C6=卮 3740 | 99C7=夘 3741 | 99C8=卻 3742 | 99C9=卷 3743 | 99CA=厂 3744 | 99CB=厖 3745 | 99CC=厠 3746 | 99CD=厦 3747 | 99CE=厥 3748 | 99CF=厮 3749 | 99D0=厰 3750 | 99D1=厶 3751 | 99D2=參 3752 | 99D3=簒 3753 | 99D4=雙 3754 | 99D5=叟 3755 | 99D6=曼 3756 | 99D7=燮 3757 | 99D8=叮 3758 | 99D9=叨 3759 | 99DA=叭 3760 | 99DB=叺 3761 | 99DC=吁 3762 | 99DD=吽 3763 | 99DE=呀 3764 | 99DF=听 3765 | 99E0=吭 3766 | 99E1=吼 3767 | 99E2=吮 3768 | 99E3=吶 3769 | 99E4=吩 3770 | 99E5=吝 3771 | 99E6=呎 3772 | 99E7=咏 3773 | 99E8=呵 3774 | 99E9=咎 3775 | 99EA=呟 3776 | 99EB=呱 3777 | 99EC=呷 3778 | 99ED=呰 3779 | 99EE=咒 3780 | 99EF=呻 3781 | 99F0=咀 3782 | 99F1=呶 3783 | 99F2=咄 3784 | 99F3=咐 3785 | 99F4=咆 3786 | 99F5=哇 3787 | 99F6=咢 3788 | 99F7=咸 3789 | 99F8=咥 3790 | 99F9=咬 3791 | 99FA=哄 3792 | 99FB=哈 3793 | 99FC=咨 3794 | 9A40=咫 3795 | 9A41=哂 3796 | 9A42=咤 3797 | 9A43=咾 3798 | 9A44=咼 3799 | 9A45=哘 3800 | 9A46=哥 3801 | 9A47=哦 3802 | 9A48=唏 3803 | 9A49=唔 3804 | 9A4A=哽 3805 | 9A4B=哮 3806 | 9A4C=哭 3807 | 9A4D=哺 3808 | 9A4E=哢 3809 | 9A4F=唹 3810 | 9A50=啀 3811 | 9A51=啣 3812 | 9A52=啌 3813 | 9A53=售 3814 | 9A54=啜 3815 | 9A55=啅 3816 | 9A56=啖 3817 | 9A57=啗 3818 | 9A58=唸 3819 | 9A59=唳 3820 | 9A5A=啝 3821 | 9A5B=喙 3822 | 9A5C=喀 3823 | 9A5D=咯 3824 | 9A5E=喊 3825 | 9A5F=喟 3826 | 9A60=啻 3827 | 9A61=啾 3828 | 9A62=喘 3829 | 9A63=喞 3830 | 9A64=單 3831 | 9A65=啼 3832 | 9A66=喃 3833 | 9A67=喩 3834 | 9A68=喇 3835 | 9A69=喨 3836 | 9A6A=嗚 3837 | 9A6B=嗅 3838 | 9A6C=嗟 3839 | 9A6D=嗄 3840 | 9A6E=嗜 3841 | 9A6F=嗤 3842 | 9A70=嗔 3843 | 9A71=嘔 3844 | 9A72=嗷 3845 | 9A73=嘖 3846 | 9A74=嗾 3847 | 9A75=嗽 3848 | 9A76=嘛 3849 | 9A77=嗹 3850 | 9A78=噎 3851 | 9A79=噐 3852 | 9A7A=營 3853 | 9A7B=嘴 3854 | 9A7C=嘶 3855 | 9A7D=嘲 3856 | 9A7E=嘸 3857 | 9A80=噫 3858 | 9A81=噤 3859 | 9A82=嘯 3860 | 9A83=噬 3861 | 9A84=噪 3862 | 9A85=嚆 3863 | 9A86=嚀 3864 | 9A87=嚊 3865 | 9A88=嚠 3866 | 9A89=嚔 3867 | 9A8A=嚏 3868 | 9A8B=嚥 3869 | 9A8C=嚮 3870 | 9A8D=嚶 3871 | 9A8E=嚴 3872 | 9A8F=囂 3873 | 9A90=嚼 3874 | 9A91=囁 3875 | 9A92=囃 3876 | 9A93=囀 3877 | 9A94=囈 3878 | 9A95=囎 3879 | 9A96=囑 3880 | 9A97=囓 3881 | 9A98=囗 3882 | 9A99=囮 3883 | 9A9A=囹 3884 | 9A9B=圀 3885 | 9A9C=囿 3886 | 9A9D=圄 3887 | 9A9E=圉 3888 | 9A9F=圈 3889 | 9AA0=國 3890 | 9AA1=圍 3891 | 9AA2=圓 3892 | 9AA3=團 3893 | 9AA4=圖 3894 | 9AA5=嗇 3895 | 9AA6=圜 3896 | 9AA7=圦 3897 | 9AA8=圷 3898 | 9AA9=圸 3899 | 9AAA=坎 3900 | 9AAB=圻 3901 | 9AAC=址 3902 | 9AAD=坏 3903 | 9AAE=坩 3904 | 9AAF=埀 3905 | 9AB0=垈 3906 | 9AB1=坡 3907 | 9AB2=坿 3908 | 9AB3=垉 3909 | 9AB4=垓 3910 | 9AB5=垠 3911 | 9AB6=垳 3912 | 9AB7=垤 3913 | 9AB8=垪 3914 | 9AB9=垰 3915 | 9ABA=埃 3916 | 9ABB=埆 3917 | 9ABC=埔 3918 | 9ABD=埒 3919 | 9ABE=埓 3920 | 9ABF=堊 3921 | 9AC0=埖 3922 | 9AC1=埣 3923 | 9AC2=堋 3924 | 9AC3=堙 3925 | 9AC4=堝 3926 | 9AC5=塲 3927 | 9AC6=堡 3928 | 9AC7=塢 3929 | 9AC8=塋 3930 | 9AC9=塰 3931 | 9ACA=毀 3932 | 9ACB=塒 3933 | 9ACC=堽 3934 | 9ACD=塹 3935 | 9ACE=墅 3936 | 9ACF=墹 3937 | 9AD0=墟 3938 | 9AD1=墫 3939 | 9AD2=墺 3940 | 9AD3=壞 3941 | 9AD4=墻 3942 | 9AD5=墸 3943 | 9AD6=墮 3944 | 9AD7=壅 3945 | 9AD8=壓 3946 | 9AD9=壑 3947 | 9ADA=壗 3948 | 9ADB=壙 3949 | 9ADC=壘 3950 | 9ADD=壥 3951 | 9ADE=壜 3952 | 9ADF=壤 3953 | 9AE0=壟 3954 | 9AE1=壯 3955 | 9AE2=壺 3956 | 9AE3=壹 3957 | 9AE4=壻 3958 | 9AE5=壼 3959 | 9AE6=壽 3960 | 9AE7=夂 3961 | 9AE8=夊 3962 | 9AE9=夐 3963 | 9AEA=夛 3964 | 9AEB=梦 3965 | 9AEC=夥 3966 | 9AED=夬 3967 | 9AEE=夭 3968 | 9AEF=夲 3969 | 9AF0=夸 3970 | 9AF1=夾 3971 | 9AF2=竒 3972 | 9AF3=奕 3973 | 9AF4=奐 3974 | 9AF5=奎 3975 | 9AF6=奚 3976 | 9AF7=奘 3977 | 9AF8=奢 3978 | 9AF9=奠 3979 | 9AFA=奧 3980 | 9AFB=奬 3981 | 9AFC=奩 3982 | 9B40=奸 3983 | 9B41=妁 3984 | 9B42=妝 3985 | 9B43=佞 3986 | 9B44=侫 3987 | 9B45=妣 3988 | 9B46=妲 3989 | 9B47=姆 3990 | 9B48=姨 3991 | 9B49=姜 3992 | 9B4A=妍 3993 | 9B4B=姙 3994 | 9B4C=姚 3995 | 9B4D=娥 3996 | 9B4E=娟 3997 | 9B4F=娑 3998 | 9B50=娜 3999 | 9B51=娉 4000 | 9B52=娚 4001 | 9B53=婀 4002 | 9B54=婬 4003 | 9B55=婉 4004 | 9B56=娵 4005 | 9B57=娶 4006 | 9B58=婢 4007 | 9B59=婪 4008 | 9B5A=媚 4009 | 9B5B=媼 4010 | 9B5C=媾 4011 | 9B5D=嫋 4012 | 9B5E=嫂 4013 | 9B5F=媽 4014 | 9B60=嫣 4015 | 9B61=嫗 4016 | 9B62=嫦 4017 | 9B63=嫩 4018 | 9B64=嫖 4019 | 9B65=嫺 4020 | 9B66=嫻 4021 | 9B67=嬌 4022 | 9B68=嬋 4023 | 9B69=嬖 4024 | 9B6A=嬲 4025 | 9B6B=嫐 4026 | 9B6C=嬪 4027 | 9B6D=嬶 4028 | 9B6E=嬾 4029 | 9B6F=孃 4030 | 9B70=孅 4031 | 9B71=孀 4032 | 9B72=孑 4033 | 9B73=孕 4034 | 9B74=孚 4035 | 9B75=孛 4036 | 9B76=孥 4037 | 9B77=孩 4038 | 9B78=孰 4039 | 9B79=孳 4040 | 9B7A=孵 4041 | 9B7B=學 4042 | 9B7C=斈 4043 | 9B7D=孺 4044 | 9B7E=宀 4045 | 9B80=它 4046 | 9B81=宦 4047 | 9B82=宸 4048 | 9B83=寃 4049 | 9B84=寇 4050 | 9B85=寉 4051 | 9B86=寔 4052 | 9B87=寐 4053 | 9B88=寤 4054 | 9B89=實 4055 | 9B8A=寢 4056 | 9B8B=寞 4057 | 9B8C=寥 4058 | 9B8D=寫 4059 | 9B8E=寰 4060 | 9B8F=寶 4061 | 9B90=寳 4062 | 9B91=尅 4063 | 9B92=將 4064 | 9B93=專 4065 | 9B94=對 4066 | 9B95=尓 4067 | 9B96=尠 4068 | 9B97=尢 4069 | 9B98=尨 4070 | 9B99=尸 4071 | 9B9A=尹 4072 | 9B9B=屁 4073 | 9B9C=屆 4074 | 9B9D=屎 4075 | 9B9E=屓 4076 | 9B9F=屐 4077 | 9BA0=屏 4078 | 9BA1=孱 4079 | 9BA2=屬 4080 | 9BA3=屮 4081 | 9BA4=乢 4082 | 9BA5=屶 4083 | 9BA6=屹 4084 | 9BA7=岌 4085 | 9BA8=岑 4086 | 9BA9=岔 4087 | 9BAA=妛 4088 | 9BAB=岫 4089 | 9BAC=岻 4090 | 9BAD=岶 4091 | 9BAE=岼 4092 | 9BAF=岷 4093 | 9BB0=峅 4094 | 9BB1=岾 4095 | 9BB2=峇 4096 | 9BB3=峙 4097 | 9BB4=峩 4098 | 9BB5=峽 4099 | 9BB6=峺 4100 | 9BB7=峭 4101 | 9BB8=嶌 4102 | 9BB9=峪 4103 | 9BBA=崋 4104 | 9BBB=崕 4105 | 9BBC=崗 4106 | 9BBD=嵜 4107 | 9BBE=崟 4108 | 9BBF=崛 4109 | 9BC0=崑 4110 | 9BC1=崔 4111 | 9BC2=崢 4112 | 9BC3=崚 4113 | 9BC4=崙 4114 | 9BC5=崘 4115 | 9BC6=嵌 4116 | 9BC7=嵒 4117 | 9BC8=嵎 4118 | 9BC9=嵋 4119 | 9BCA=嵬 4120 | 9BCB=嵳 4121 | 9BCC=嵶 4122 | 9BCD=嶇 4123 | 9BCE=嶄 4124 | 9BCF=嶂 4125 | 9BD0=嶢 4126 | 9BD1=嶝 4127 | 9BD2=嶬 4128 | 9BD3=嶮 4129 | 9BD4=嶽 4130 | 9BD5=嶐 4131 | 9BD6=嶷 4132 | 9BD7=嶼 4133 | 9BD8=巉 4134 | 9BD9=巍 4135 | 9BDA=巓 4136 | 9BDB=巒 4137 | 9BDC=巖 4138 | 9BDD=巛 4139 | 9BDE=巫 4140 | 9BDF=已 4141 | 9BE0=巵 4142 | 9BE1=帋 4143 | 9BE2=帚 4144 | 9BE3=帙 4145 | 9BE4=帑 4146 | 9BE5=帛 4147 | 9BE6=帶 4148 | 9BE7=帷 4149 | 9BE8=幄 4150 | 9BE9=幃 4151 | 9BEA=幀 4152 | 9BEB=幎 4153 | 9BEC=幗 4154 | 9BED=幔 4155 | 9BEE=幟 4156 | 9BEF=幢 4157 | 9BF0=幤 4158 | 9BF1=幇 4159 | 9BF2=幵 4160 | 9BF3=并 4161 | 9BF4=幺 4162 | 9BF5=麼 4163 | 9BF6=广 4164 | 9BF7=庠 4165 | 9BF8=廁 4166 | 9BF9=廂 4167 | 9BFA=廈 4168 | 9BFB=廐 4169 | 9BFC=廏 4170 | 9C40=廖 4171 | 9C41=廣 4172 | 9C42=廝 4173 | 9C43=廚 4174 | 9C44=廛 4175 | 9C45=廢 4176 | 9C46=廡 4177 | 9C47=廨 4178 | 9C48=廩 4179 | 9C49=廬 4180 | 9C4A=廱 4181 | 9C4B=廳 4182 | 9C4C=廰 4183 | 9C4D=廴 4184 | 9C4E=廸 4185 | 9C4F=廾 4186 | 9C50=弃 4187 | 9C51=弉 4188 | 9C52=彝 4189 | 9C53=彜 4190 | 9C54=弋 4191 | 9C55=弑 4192 | 9C56=弖 4193 | 9C57=弩 4194 | 9C58=弭 4195 | 9C59=弸 4196 | 9C5A=彁 4197 | 9C5B=彈 4198 | 9C5C=彌 4199 | 9C5D=彎 4200 | 9C5E=弯 4201 | 9C5F=彑 4202 | 9C60=彖 4203 | 9C61=彗 4204 | 9C62=彙 4205 | 9C63=彡 4206 | 9C64=彭 4207 | 9C65=彳 4208 | 9C66=彷 4209 | 9C67=徃 4210 | 9C68=徂 4211 | 9C69=彿 4212 | 9C6A=徊 4213 | 9C6B=很 4214 | 9C6C=徑 4215 | 9C6D=徇 4216 | 9C6E=從 4217 | 9C6F=徙 4218 | 9C70=徘 4219 | 9C71=徠 4220 | 9C72=徨 4221 | 9C73=徭 4222 | 9C74=徼 4223 | 9C75=忖 4224 | 9C76=忻 4225 | 9C77=忤 4226 | 9C78=忸 4227 | 9C79=忱 4228 | 9C7A=忝 4229 | 9C7B=悳 4230 | 9C7C=忿 4231 | 9C7D=怡 4232 | 9C7E=恠 4233 | 9C80=怙 4234 | 9C81=怐 4235 | 9C82=怩 4236 | 9C83=怎 4237 | 9C84=怱 4238 | 9C85=怛 4239 | 9C86=怕 4240 | 9C87=怫 4241 | 9C88=怦 4242 | 9C89=怏 4243 | 9C8A=怺 4244 | 9C8B=恚 4245 | 9C8C=恁 4246 | 9C8D=恪 4247 | 9C8E=恷 4248 | 9C8F=恟 4249 | 9C90=恊 4250 | 9C91=恆 4251 | 9C92=恍 4252 | 9C93=恣 4253 | 9C94=恃 4254 | 9C95=恤 4255 | 9C96=恂 4256 | 9C97=恬 4257 | 9C98=恫 4258 | 9C99=恙 4259 | 9C9A=悁 4260 | 9C9B=悍 4261 | 9C9C=惧 4262 | 9C9D=悃 4263 | 9C9E=悚 4264 | 9C9F=悄 4265 | 9CA0=悛 4266 | 9CA1=悖 4267 | 9CA2=悗 4268 | 9CA3=悒 4269 | 9CA4=悧 4270 | 9CA5=悋 4271 | 9CA6=惡 4272 | 9CA7=悸 4273 | 9CA8=惠 4274 | 9CA9=惓 4275 | 9CAA=悴 4276 | 9CAB=忰 4277 | 9CAC=悽 4278 | 9CAD=惆 4279 | 9CAE=悵 4280 | 9CAF=惘 4281 | 9CB0=慍 4282 | 9CB1=愕 4283 | 9CB2=愆 4284 | 9CB3=惶 4285 | 9CB4=惷 4286 | 9CB5=愀 4287 | 9CB6=惴 4288 | 9CB7=惺 4289 | 9CB8=愃 4290 | 9CB9=愡 4291 | 9CBA=惻 4292 | 9CBB=惱 4293 | 9CBC=愍 4294 | 9CBD=愎 4295 | 9CBE=慇 4296 | 9CBF=愾 4297 | 9CC0=愨 4298 | 9CC1=愧 4299 | 9CC2=慊 4300 | 9CC3=愿 4301 | 9CC4=愼 4302 | 9CC5=愬 4303 | 9CC6=愴 4304 | 9CC7=愽 4305 | 9CC8=慂 4306 | 9CC9=慄 4307 | 9CCA=慳 4308 | 9CCB=慷 4309 | 9CCC=慘 4310 | 9CCD=慙 4311 | 9CCE=慚 4312 | 9CCF=慫 4313 | 9CD0=慴 4314 | 9CD1=慯 4315 | 9CD2=慥 4316 | 9CD3=慱 4317 | 9CD4=慟 4318 | 9CD5=慝 4319 | 9CD6=慓 4320 | 9CD7=慵 4321 | 9CD8=憙 4322 | 9CD9=憖 4323 | 9CDA=憇 4324 | 9CDB=憬 4325 | 9CDC=憔 4326 | 9CDD=憚 4327 | 9CDE=憊 4328 | 9CDF=憑 4329 | 9CE0=憫 4330 | 9CE1=憮 4331 | 9CE2=懌 4332 | 9CE3=懊 4333 | 9CE4=應 4334 | 9CE5=懷 4335 | 9CE6=懈 4336 | 9CE7=懃 4337 | 9CE8=懆 4338 | 9CE9=憺 4339 | 9CEA=懋 4340 | 9CEB=罹 4341 | 9CEC=懍 4342 | 9CED=懦 4343 | 9CEE=懣 4344 | 9CEF=懶 4345 | 9CF0=懺 4346 | 9CF1=懴 4347 | 9CF2=懿 4348 | 9CF3=懽 4349 | 9CF4=懼 4350 | 9CF5=懾 4351 | 9CF6=戀 4352 | 9CF7=戈 4353 | 9CF8=戉 4354 | 9CF9=戍 4355 | 9CFA=戌 4356 | 9CFB=戔 4357 | 9CFC=戛 4358 | 9D40=戞 4359 | 9D41=戡 4360 | 9D42=截 4361 | 9D43=戮 4362 | 9D44=戰 4363 | 9D45=戲 4364 | 9D46=戳 4365 | 9D47=扁 4366 | 9D48=扎 4367 | 9D49=扞 4368 | 9D4A=扣 4369 | 9D4B=扛 4370 | 9D4C=扠 4371 | 9D4D=扨 4372 | 9D4E=扼 4373 | 9D4F=抂 4374 | 9D50=抉 4375 | 9D51=找 4376 | 9D52=抒 4377 | 9D53=抓 4378 | 9D54=抖 4379 | 9D55=拔 4380 | 9D56=抃 4381 | 9D57=抔 4382 | 9D58=拗 4383 | 9D59=拑 4384 | 9D5A=抻 4385 | 9D5B=拏 4386 | 9D5C=拿 4387 | 9D5D=拆 4388 | 9D5E=擔 4389 | 9D5F=拈 4390 | 9D60=拜 4391 | 9D61=拌 4392 | 9D62=拊 4393 | 9D63=拂 4394 | 9D64=拇 4395 | 9D65=抛 4396 | 9D66=拉 4397 | 9D67=挌 4398 | 9D68=拮 4399 | 9D69=拱 4400 | 9D6A=挧 4401 | 9D6B=挂 4402 | 9D6C=挈 4403 | 9D6D=拯 4404 | 9D6E=拵 4405 | 9D6F=捐 4406 | 9D70=挾 4407 | 9D71=捍 4408 | 9D72=搜 4409 | 9D73=捏 4410 | 9D74=掖 4411 | 9D75=掎 4412 | 9D76=掀 4413 | 9D77=掫 4414 | 9D78=捶 4415 | 9D79=掣 4416 | 9D7A=掏 4417 | 9D7B=掉 4418 | 9D7C=掟 4419 | 9D7D=掵 4420 | 9D7E=捫 4421 | 9D80=捩 4422 | 9D81=掾 4423 | 9D82=揩 4424 | 9D83=揀 4425 | 9D84=揆 4426 | 9D85=揣 4427 | 9D86=揉 4428 | 9D87=插 4429 | 9D88=揶 4430 | 9D89=揄 4431 | 9D8A=搖 4432 | 9D8B=搴 4433 | 9D8C=搆 4434 | 9D8D=搓 4435 | 9D8E=搦 4436 | 9D8F=搶 4437 | 9D90=攝 4438 | 9D91=搗 4439 | 9D92=搨 4440 | 9D93=搏 4441 | 9D94=摧 4442 | 9D95=摯 4443 | 9D96=摶 4444 | 9D97=摎 4445 | 9D98=攪 4446 | 9D99=撕 4447 | 9D9A=撓 4448 | 9D9B=撥 4449 | 9D9C=撩 4450 | 9D9D=撈 4451 | 9D9E=撼 4452 | 9D9F=據 4453 | 9DA0=擒 4454 | 9DA1=擅 4455 | 9DA2=擇 4456 | 9DA3=撻 4457 | 9DA4=擘 4458 | 9DA5=擂 4459 | 9DA6=擱 4460 | 9DA7=擧 4461 | 9DA8=舉 4462 | 9DA9=擠 4463 | 9DAA=擡 4464 | 9DAB=抬 4465 | 9DAC=擣 4466 | 9DAD=擯 4467 | 9DAE=攬 4468 | 9DAF=擶 4469 | 9DB0=擴 4470 | 9DB1=擲 4471 | 9DB2=擺 4472 | 9DB3=攀 4473 | 9DB4=擽 4474 | 9DB5=攘 4475 | 9DB6=攜 4476 | 9DB7=攅 4477 | 9DB8=攤 4478 | 9DB9=攣 4479 | 9DBA=攫 4480 | 9DBB=攴 4481 | 9DBC=攵 4482 | 9DBD=攷 4483 | 9DBE=收 4484 | 9DBF=攸 4485 | 9DC0=畋 4486 | 9DC1=效 4487 | 9DC2=敖 4488 | 9DC3=敕 4489 | 9DC4=敍 4490 | 9DC5=敘 4491 | 9DC6=敞 4492 | 9DC7=敝 4493 | 9DC8=敲 4494 | 9DC9=數 4495 | 9DCA=斂 4496 | 9DCB=斃 4497 | 9DCC=變 4498 | 9DCD=斛 4499 | 9DCE=斟 4500 | 9DCF=斫 4501 | 9DD0=斷 4502 | 9DD1=旃 4503 | 9DD2=旆 4504 | 9DD3=旁 4505 | 9DD4=旄 4506 | 9DD5=旌 4507 | 9DD6=旒 4508 | 9DD7=旛 4509 | 9DD8=旙 4510 | 9DD9=无 4511 | 9DDA=旡 4512 | 9DDB=旱 4513 | 9DDC=杲 4514 | 9DDD=昊 4515 | 9DDE=昃 4516 | 9DDF=旻 4517 | 9DE0=杳 4518 | 9DE1=昵 4519 | 9DE2=昶 4520 | 9DE3=昴 4521 | 9DE4=昜 4522 | 9DE5=晏 4523 | 9DE6=晄 4524 | 9DE7=晉 4525 | 9DE8=晁 4526 | 9DE9=晞 4527 | 9DEA=晝 4528 | 9DEB=晤 4529 | 9DEC=晧 4530 | 9DED=晨 4531 | 9DEE=晟 4532 | 9DEF=晢 4533 | 9DF0=晰 4534 | 9DF1=暃 4535 | 9DF2=暈 4536 | 9DF3=暎 4537 | 9DF4=暉 4538 | 9DF5=暄 4539 | 9DF6=暘 4540 | 9DF7=暝 4541 | 9DF8=曁 4542 | 9DF9=暹 4543 | 9DFA=曉 4544 | 9DFB=暾 4545 | 9DFC=暼 4546 | 9E40=曄 4547 | 9E41=暸 4548 | 9E42=曖 4549 | 9E43=曚 4550 | 9E44=曠 4551 | 9E45=昿 4552 | 9E46=曦 4553 | 9E47=曩 4554 | 9E48=曰 4555 | 9E49=曵 4556 | 9E4A=曷 4557 | 9E4B=朏 4558 | 9E4C=朖 4559 | 9E4D=朞 4560 | 9E4E=朦 4561 | 9E4F=朧 4562 | 9E50=霸 4563 | 9E51=朮 4564 | 9E52=朿 4565 | 9E53=朶 4566 | 9E54=杁 4567 | 9E55=朸 4568 | 9E56=朷 4569 | 9E57=杆 4570 | 9E58=杞 4571 | 9E59=杠 4572 | 9E5A=杙 4573 | 9E5B=杣 4574 | 9E5C=杤 4575 | 9E5D=枉 4576 | 9E5E=杰 4577 | 9E5F=枩 4578 | 9E60=杼 4579 | 9E61=杪 4580 | 9E62=枌 4581 | 9E63=枋 4582 | 9E64=枦 4583 | 9E65=枡 4584 | 9E66=枅 4585 | 9E67=枷 4586 | 9E68=柯 4587 | 9E69=枴 4588 | 9E6A=柬 4589 | 9E6B=枳 4590 | 9E6C=柩 4591 | 9E6D=枸 4592 | 9E6E=柤 4593 | 9E6F=柞 4594 | 9E70=柝 4595 | 9E71=柢 4596 | 9E72=柮 4597 | 9E73=枹 4598 | 9E74=柎 4599 | 9E75=柆 4600 | 9E76=柧 4601 | 9E77=檜 4602 | 9E78=栞 4603 | 9E79=框 4604 | 9E7A=栩 4605 | 9E7B=桀 4606 | 9E7C=桍 4607 | 9E7D=栲 4608 | 9E7E=桎 4609 | 9E80=梳 4610 | 9E81=栫 4611 | 9E82=桙 4612 | 9E83=档 4613 | 9E84=桷 4614 | 9E85=桿 4615 | 9E86=梟 4616 | 9E87=梏 4617 | 9E88=梭 4618 | 9E89=梔 4619 | 9E8A=條 4620 | 9E8B=梛 4621 | 9E8C=梃 4622 | 9E8D=檮 4623 | 9E8E=梹 4624 | 9E8F=桴 4625 | 9E90=梵 4626 | 9E91=梠 4627 | 9E92=梺 4628 | 9E93=椏 4629 | 9E94=梍 4630 | 9E95=桾 4631 | 9E96=椁 4632 | 9E97=棊 4633 | 9E98=椈 4634 | 9E99=棘 4635 | 9E9A=椢 4636 | 9E9B=椦 4637 | 9E9C=棡 4638 | 9E9D=椌 4639 | 9E9E=棍 4640 | 9E9F=棔 4641 | 9EA0=棧 4642 | 9EA1=棕 4643 | 9EA2=椶 4644 | 9EA3=椒 4645 | 9EA4=椄 4646 | 9EA5=棗 4647 | 9EA6=棣 4648 | 9EA7=椥 4649 | 9EA8=棹 4650 | 9EA9=棠 4651 | 9EAA=棯 4652 | 9EAB=椨 4653 | 9EAC=椪 4654 | 9EAD=椚 4655 | 9EAE=椣 4656 | 9EAF=椡 4657 | 9EB0=棆 4658 | 9EB1=楹 4659 | 9EB2=楷 4660 | 9EB3=楜 4661 | 9EB4=楸 4662 | 9EB5=楫 4663 | 9EB6=楔 4664 | 9EB7=楾 4665 | 9EB8=楮 4666 | 9EB9=椹 4667 | 9EBA=楴 4668 | 9EBB=椽 4669 | 9EBC=楙 4670 | 9EBD=椰 4671 | 9EBE=楡 4672 | 9EBF=楞 4673 | 9EC0=楝 4674 | 9EC1=榁 4675 | 9EC2=楪 4676 | 9EC3=榲 4677 | 9EC4=榮 4678 | 9EC5=槐 4679 | 9EC6=榿 4680 | 9EC7=槁 4681 | 9EC8=槓 4682 | 9EC9=榾 4683 | 9ECA=槎 4684 | 9ECB=寨 4685 | 9ECC=槊 4686 | 9ECD=槝 4687 | 9ECE=榻 4688 | 9ECF=槃 4689 | 9ED0=榧 4690 | 9ED1=樮 4691 | 9ED2=榑 4692 | 9ED3=榠 4693 | 9ED4=榜 4694 | 9ED5=榕 4695 | 9ED6=榴 4696 | 9ED7=槞 4697 | 9ED8=槨 4698 | 9ED9=樂 4699 | 9EDA=樛 4700 | 9EDB=槿 4701 | 9EDC=權 4702 | 9EDD=槹 4703 | 9EDE=槲 4704 | 9EDF=槧 4705 | 9EE0=樅 4706 | 9EE1=榱 4707 | 9EE2=樞 4708 | 9EE3=槭 4709 | 9EE4=樔 4710 | 9EE5=槫 4711 | 9EE6=樊 4712 | 9EE7=樒 4713 | 9EE8=櫁 4714 | 9EE9=樣 4715 | 9EEA=樓 4716 | 9EEB=橄 4717 | 9EEC=樌 4718 | 9EED=橲 4719 | 9EEE=樶 4720 | 9EEF=橸 4721 | 9EF0=橇 4722 | 9EF1=橢 4723 | 9EF2=橙 4724 | 9EF3=橦 4725 | 9EF4=橈 4726 | 9EF5=樸 4727 | 9EF6=樢 4728 | 9EF7=檐 4729 | 9EF8=檍 4730 | 9EF9=檠 4731 | 9EFA=檄 4732 | 9EFB=檢 4733 | 9EFC=檣 4734 | 9F40=檗 4735 | 9F41=蘗 4736 | 9F42=檻 4737 | 9F43=櫃 4738 | 9F44=櫂 4739 | 9F45=檸 4740 | 9F46=檳 4741 | 9F47=檬 4742 | 9F48=櫞 4743 | 9F49=櫑 4744 | 9F4A=櫟 4745 | 9F4B=檪 4746 | 9F4C=櫚 4747 | 9F4D=櫪 4748 | 9F4E=櫻 4749 | 9F4F=欅 4750 | 9F50=蘖 4751 | 9F51=櫺 4752 | 9F52=欒 4753 | 9F53=欖 4754 | 9F54=鬱 4755 | 9F55=欟 4756 | 9F56=欸 4757 | 9F57=欷 4758 | 9F58=盜 4759 | 9F59=欹 4760 | 9F5A=飮 4761 | 9F5B=歇 4762 | 9F5C=歃 4763 | 9F5D=歉 4764 | 9F5E=歐 4765 | 9F5F=歙 4766 | 9F60=歔 4767 | 9F61=歛 4768 | 9F62=歟 4769 | 9F63=歡 4770 | 9F64=歸 4771 | 9F65=歹 4772 | 9F66=歿 4773 | 9F67=殀 4774 | 9F68=殄 4775 | 9F69=殃 4776 | 9F6A=殍 4777 | 9F6B=殘 4778 | 9F6C=殕 4779 | 9F6D=殞 4780 | 9F6E=殤 4781 | 9F6F=殪 4782 | 9F70=殫 4783 | 9F71=殯 4784 | 9F72=殲 4785 | 9F73=殱 4786 | 9F74=殳 4787 | 9F75=殷 4788 | 9F76=殼 4789 | 9F77=毆 4790 | 9F78=毋 4791 | 9F79=毓 4792 | 9F7A=毟 4793 | 9F7B=毬 4794 | 9F7C=毫 4795 | 9F7D=毳 4796 | 9F7E=毯 4797 | 9F80=麾 4798 | 9F81=氈 4799 | 9F82=氓 4800 | 9F83=气 4801 | 9F84=氛 4802 | 9F85=氤 4803 | 9F86=氣 4804 | 9F87=汞 4805 | 9F88=汕 4806 | 9F89=汢 4807 | 9F8A=汪 4808 | 9F8B=沂 4809 | 9F8C=沍 4810 | 9F8D=沚 4811 | 9F8E=沁 4812 | 9F8F=沛 4813 | 9F90=汾 4814 | 9F91=汨 4815 | 9F92=汳 4816 | 9F93=沒 4817 | 9F94=沐 4818 | 9F95=泄 4819 | 9F96=泱 4820 | 9F97=泓 4821 | 9F98=沽 4822 | 9F99=泗 4823 | 9F9A=泅 4824 | 9F9B=泝 4825 | 9F9C=沮 4826 | 9F9D=沱 4827 | 9F9E=沾 4828 | 9F9F=沺 4829 | 9FA0=泛 4830 | 9FA1=泯 4831 | 9FA2=泙 4832 | 9FA3=泪 4833 | 9FA4=洟 4834 | 9FA5=衍 4835 | 9FA6=洶 4836 | 9FA7=洫 4837 | 9FA8=洽 4838 | 9FA9=洸 4839 | 9FAA=洙 4840 | 9FAB=洵 4841 | 9FAC=洳 4842 | 9FAD=洒 4843 | 9FAE=洌 4844 | 9FAF=浣 4845 | 9FB0=涓 4846 | 9FB1=浤 4847 | 9FB2=浚 4848 | 9FB3=浹 4849 | 9FB4=浙 4850 | 9FB5=涎 4851 | 9FB6=涕 4852 | 9FB7=濤 4853 | 9FB8=涅 4854 | 9FB9=淹 4855 | 9FBA=渕 4856 | 9FBB=渊 4857 | 9FBC=涵 4858 | 9FBD=淇 4859 | 9FBE=淦 4860 | 9FBF=涸 4861 | 9FC0=淆 4862 | 9FC1=淬 4863 | 9FC2=淞 4864 | 9FC3=淌 4865 | 9FC4=淨 4866 | 9FC5=淒 4867 | 9FC6=淅 4868 | 9FC7=淺 4869 | 9FC8=淙 4870 | 9FC9=淤 4871 | 9FCA=淕 4872 | 9FCB=淪 4873 | 9FCC=淮 4874 | 9FCD=渭 4875 | 9FCE=湮 4876 | 9FCF=渮 4877 | 9FD0=渙 4878 | 9FD1=湲 4879 | 9FD2=湟 4880 | 9FD3=渾 4881 | 9FD4=渣 4882 | 9FD5=湫 4883 | 9FD6=渫 4884 | 9FD7=湶 4885 | 9FD8=湍 4886 | 9FD9=渟 4887 | 9FDA=湃 4888 | 9FDB=渺 4889 | 9FDC=湎 4890 | 9FDD=渤 4891 | 9FDE=滿 4892 | 9FDF=渝 4893 | 9FE0=游 4894 | 9FE1=溂 4895 | 9FE2=溪 4896 | 9FE3=溘 4897 | 9FE4=滉 4898 | 9FE5=溷 4899 | 9FE6=滓 4900 | 9FE7=溽 4901 | 9FE8=溯 4902 | 9FE9=滄 4903 | 9FEA=溲 4904 | 9FEB=滔 4905 | 9FEC=滕 4906 | 9FED=溏 4907 | 9FEE=溥 4908 | 9FEF=滂 4909 | 9FF0=溟 4910 | 9FF1=潁 4911 | 9FF2=漑 4912 | 9FF3=灌 4913 | 9FF4=滬 4914 | 9FF5=滸 4915 | 9FF6=滾 4916 | 9FF7=漿 4917 | 9FF8=滲 4918 | 9FF9=漱 4919 | 9FFA=滯 4920 | 9FFB=漲 4921 | 9FFC=滌 4922 | E040=漾 4923 | E041=漓 4924 | E042=滷 4925 | E043=澆 4926 | E044=潺 4927 | E045=潸 4928 | E046=澁 4929 | E047=澀 4930 | E048=潯 4931 | E049=潛 4932 | E04A=濳 4933 | E04B=潭 4934 | E04C=澂 4935 | E04D=潼 4936 | E04E=潘 4937 | E04F=澎 4938 | E050=澑 4939 | E051=濂 4940 | E052=潦 4941 | E053=澳 4942 | E054=澣 4943 | E055=澡 4944 | E056=澤 4945 | E057=澹 4946 | E058=濆 4947 | E059=澪 4948 | E05A=濟 4949 | E05B=濕 4950 | E05C=濬 4951 | E05D=濔 4952 | E05E=濘 4953 | E05F=濱 4954 | E060=濮 4955 | E061=濛 4956 | E062=瀉 4957 | E063=瀋 4958 | E064=濺 4959 | E065=瀑 4960 | E066=瀁 4961 | E067=瀏 4962 | E068=濾 4963 | E069=瀛 4964 | E06A=瀚 4965 | E06B=潴 4966 | E06C=瀝 4967 | E06D=瀘 4968 | E06E=瀟 4969 | E06F=瀰 4970 | E070=瀾 4971 | E071=瀲 4972 | E072=灑 4973 | E073=灣 4974 | E074=炙 4975 | E075=炒 4976 | E076=炯 4977 | E077=烱 4978 | E078=炬 4979 | E079=炸 4980 | E07A=炳 4981 | E07B=炮 4982 | E07C=烟 4983 | E07D=烋 4984 | E07E=烝 4985 | E080=烙 4986 | E081=焉 4987 | E082=烽 4988 | E083=焜 4989 | E084=焙 4990 | E085=煥 4991 | E086=煕 4992 | E087=熈 4993 | E088=煦 4994 | E089=煢 4995 | E08A=煌 4996 | E08B=煖 4997 | E08C=煬 4998 | E08D=熏 4999 | E08E=燻 5000 | E08F=熄 5001 | E090=熕 5002 | E091=熨 5003 | E092=熬 5004 | E093=燗 5005 | E094=熹 5006 | E095=熾 5007 | E096=燒 5008 | E097=燉 5009 | E098=燔 5010 | E099=燎 5011 | E09A=燠 5012 | E09B=燬 5013 | E09C=燧 5014 | E09D=燵 5015 | E09E=燼 5016 | E09F=燹 5017 | E0A0=燿 5018 | E0A1=爍 5019 | E0A2=爐 5020 | E0A3=爛 5021 | E0A4=爨 5022 | E0A5=爭 5023 | E0A6=爬 5024 | E0A7=爰 5025 | E0A8=爲 5026 | E0A9=爻 5027 | E0AA=爼 5028 | E0AB=爿 5029 | E0AC=牀 5030 | E0AD=牆 5031 | E0AE=牋 5032 | E0AF=牘 5033 | E0B0=牴 5034 | E0B1=牾 5035 | E0B2=犂 5036 | E0B3=犁 5037 | E0B4=犇 5038 | E0B5=犒 5039 | E0B6=犖 5040 | E0B7=犢 5041 | E0B8=犧 5042 | E0B9=犹 5043 | E0BA=犲 5044 | E0BB=狃 5045 | E0BC=狆 5046 | E0BD=狄 5047 | E0BE=狎 5048 | E0BF=狒 5049 | E0C0=狢 5050 | E0C1=狠 5051 | E0C2=狡 5052 | E0C3=狹 5053 | E0C4=狷 5054 | E0C5=倏 5055 | E0C6=猗 5056 | E0C7=猊 5057 | E0C8=猜 5058 | E0C9=猖 5059 | E0CA=猝 5060 | E0CB=猴 5061 | E0CC=猯 5062 | E0CD=猩 5063 | E0CE=猥 5064 | E0CF=猾 5065 | E0D0=獎 5066 | E0D1=獏 5067 | E0D2=默 5068 | E0D3=獗 5069 | E0D4=獪 5070 | E0D5=獨 5071 | E0D6=獰 5072 | E0D7=獸 5073 | E0D8=獵 5074 | E0D9=獻 5075 | E0DA=獺 5076 | E0DB=珈 5077 | E0DC=玳 5078 | E0DD=珎 5079 | E0DE=玻 5080 | E0DF=珀 5081 | E0E0=珥 5082 | E0E1=珮 5083 | E0E2=珞 5084 | E0E3=璢 5085 | E0E4=琅 5086 | E0E5=瑯 5087 | E0E6=琥 5088 | E0E7=珸 5089 | E0E8=琲 5090 | E0E9=琺 5091 | E0EA=瑕 5092 | E0EB=琿 5093 | E0EC=瑟 5094 | E0ED=瑙 5095 | E0EE=瑁 5096 | E0EF=瑜 5097 | E0F0=瑩 5098 | E0F1=瑰 5099 | E0F2=瑣 5100 | E0F3=瑪 5101 | E0F4=瑶 5102 | E0F5=瑾 5103 | E0F6=璋 5104 | E0F7=璞 5105 | E0F8=璧 5106 | E0F9=瓊 5107 | E0FA=瓏 5108 | E0FB=瓔 5109 | E0FC=珱 5110 | E140=瓠 5111 | E141=瓣 5112 | E142=瓧 5113 | E143=瓩 5114 | E144=瓮 5115 | E145=瓲 5116 | E146=瓰 5117 | E147=瓱 5118 | E148=瓸 5119 | E149=瓷 5120 | E14A=甄 5121 | E14B=甃 5122 | E14C=甅 5123 | E14D=甌 5124 | E14E=甎 5125 | E14F=甍 5126 | E150=甕 5127 | E151=甓 5128 | E152=甞 5129 | E153=甦 5130 | E154=甬 5131 | E155=甼 5132 | E156=畄 5133 | E157=畍 5134 | E158=畊 5135 | E159=畉 5136 | E15A=畛 5137 | E15B=畆 5138 | E15C=畚 5139 | E15D=畩 5140 | E15E=畤 5141 | E15F=畧 5142 | E160=畫 5143 | E161=畭 5144 | E162=畸 5145 | E163=當 5146 | E164=疆 5147 | E165=疇 5148 | E166=畴 5149 | E167=疊 5150 | E168=疉 5151 | E169=疂 5152 | E16A=疔 5153 | E16B=疚 5154 | E16C=疝 5155 | E16D=疥 5156 | E16E=疣 5157 | E16F=痂 5158 | E170=疳 5159 | E171=痃 5160 | E172=疵 5161 | E173=疽 5162 | E174=疸 5163 | E175=疼 5164 | E176=疱 5165 | E177=痍 5166 | E178=痊 5167 | E179=痒 5168 | E17A=痙 5169 | E17B=痣 5170 | E17C=痞 5171 | E17D=痾 5172 | E17E=痿 5173 | E180=痼 5174 | E181=瘁 5175 | E182=痰 5176 | E183=痺 5177 | E184=痲 5178 | E185=痳 5179 | E186=瘋 5180 | E187=瘍 5181 | E188=瘉 5182 | E189=瘟 5183 | E18A=瘧 5184 | E18B=瘠 5185 | E18C=瘡 5186 | E18D=瘢 5187 | E18E=瘤 5188 | E18F=瘴 5189 | E190=瘰 5190 | E191=瘻 5191 | E192=癇 5192 | E193=癈 5193 | E194=癆 5194 | E195=癜 5195 | E196=癘 5196 | E197=癡 5197 | E198=癢 5198 | E199=癨 5199 | E19A=癩 5200 | E19B=癪 5201 | E19C=癧 5202 | E19D=癬 5203 | E19E=癰 5204 | E19F=癲 5205 | E1A0=癶 5206 | E1A1=癸 5207 | E1A2=發 5208 | E1A3=皀 5209 | E1A4=皃 5210 | E1A5=皈 5211 | E1A6=皋 5212 | E1A7=皎 5213 | E1A8=皖 5214 | E1A9=皓 5215 | E1AA=皙 5216 | E1AB=皚 5217 | E1AC=皰 5218 | E1AD=皴 5219 | E1AE=皸 5220 | E1AF=皹 5221 | E1B0=皺 5222 | E1B1=盂 5223 | E1B2=盍 5224 | E1B3=盖 5225 | E1B4=盒 5226 | E1B5=盞 5227 | E1B6=盡 5228 | E1B7=盥 5229 | E1B8=盧 5230 | E1B9=盪 5231 | E1BA=蘯 5232 | E1BB=盻 5233 | E1BC=眈 5234 | E1BD=眇 5235 | E1BE=眄 5236 | E1BF=眩 5237 | E1C0=眤 5238 | E1C1=眞 5239 | E1C2=眥 5240 | E1C3=眦 5241 | E1C4=眛 5242 | E1C5=眷 5243 | E1C6=眸 5244 | E1C7=睇 5245 | E1C8=睚 5246 | E1C9=睨 5247 | E1CA=睫 5248 | E1CB=睛 5249 | E1CC=睥 5250 | E1CD=睿 5251 | E1CE=睾 5252 | E1CF=睹 5253 | E1D0=瞎 5254 | E1D1=瞋 5255 | E1D2=瞑 5256 | E1D3=瞠 5257 | E1D4=瞞 5258 | E1D5=瞰 5259 | E1D6=瞶 5260 | E1D7=瞹 5261 | E1D8=瞿 5262 | E1D9=瞼 5263 | E1DA=瞽 5264 | E1DB=瞻 5265 | E1DC=矇 5266 | E1DD=矍 5267 | E1DE=矗 5268 | E1DF=矚 5269 | E1E0=矜 5270 | E1E1=矣 5271 | E1E2=矮 5272 | E1E3=矼 5273 | E1E4=砌 5274 | E1E5=砒 5275 | E1E6=礦 5276 | E1E7=砠 5277 | E1E8=礪 5278 | E1E9=硅 5279 | E1EA=碎 5280 | E1EB=硴 5281 | E1EC=碆 5282 | E1ED=硼 5283 | E1EE=碚 5284 | E1EF=碌 5285 | E1F0=碣 5286 | E1F1=碵 5287 | E1F2=碪 5288 | E1F3=碯 5289 | E1F4=磑 5290 | E1F5=磆 5291 | E1F6=磋 5292 | E1F7=磔 5293 | E1F8=碾 5294 | E1F9=碼 5295 | E1FA=磅 5296 | E1FB=磊 5297 | E1FC=磬 5298 | E240=磧 5299 | E241=磚 5300 | E242=磽 5301 | E243=磴 5302 | E244=礇 5303 | E245=礒 5304 | E246=礑 5305 | E247=礙 5306 | E248=礬 5307 | E249=礫 5308 | E24A=祀 5309 | E24B=祠 5310 | E24C=祗 5311 | E24D=祟 5312 | E24E=祚 5313 | E24F=祕 5314 | E250=祓 5315 | E251=祺 5316 | E252=祿 5317 | E253=禊 5318 | E254=禝 5319 | E255=禧 5320 | E256=齋 5321 | E257=禪 5322 | E258=禮 5323 | E259=禳 5324 | E25A=禹 5325 | E25B=禺 5326 | E25C=秉 5327 | E25D=秕 5328 | E25E=秧 5329 | E25F=秬 5330 | E260=秡 5331 | E261=秣 5332 | E262=稈 5333 | E263=稍 5334 | E264=稘 5335 | E265=稙 5336 | E266=稠 5337 | E267=稟 5338 | E268=禀 5339 | E269=稱 5340 | E26A=稻 5341 | E26B=稾 5342 | E26C=稷 5343 | E26D=穃 5344 | E26E=穗 5345 | E26F=穉 5346 | E270=穡 5347 | E271=穢 5348 | E272=穩 5349 | E273=龝 5350 | E274=穰 5351 | E275=穹 5352 | E276=穽 5353 | E277=窈 5354 | E278=窗 5355 | E279=窕 5356 | E27A=窘 5357 | E27B=窖 5358 | E27C=窩 5359 | E27D=竈 5360 | E27E=窰 5361 | E280=窶 5362 | E281=竅 5363 | E282=竄 5364 | E283=窿 5365 | E284=邃 5366 | E285=竇 5367 | E286=竊 5368 | E287=竍 5369 | E288=竏 5370 | E289=竕 5371 | E28A=竓 5372 | E28B=站 5373 | E28C=竚 5374 | E28D=竝 5375 | E28E=竡 5376 | E28F=竢 5377 | E290=竦 5378 | E291=竭 5379 | E292=竰 5380 | E293=笂 5381 | E294=笏 5382 | E295=笊 5383 | E296=笆 5384 | E297=笳 5385 | E298=笘 5386 | E299=笙 5387 | E29A=笞 5388 | E29B=笵 5389 | E29C=笨 5390 | E29D=笶 5391 | E29E=筐 5392 | E29F=筺 5393 | E2A0=笄 5394 | E2A1=筍 5395 | E2A2=笋 5396 | E2A3=筌 5397 | E2A4=筅 5398 | E2A5=筵 5399 | E2A6=筥 5400 | E2A7=筴 5401 | E2A8=筧 5402 | E2A9=筰 5403 | E2AA=筱 5404 | E2AB=筬 5405 | E2AC=筮 5406 | E2AD=箝 5407 | E2AE=箘 5408 | E2AF=箟 5409 | E2B0=箍 5410 | E2B1=箜 5411 | E2B2=箚 5412 | E2B3=箋 5413 | E2B4=箒 5414 | E2B5=箏 5415 | E2B6=筝 5416 | E2B7=箙 5417 | E2B8=篋 5418 | E2B9=篁 5419 | E2BA=篌 5420 | E2BB=篏 5421 | E2BC=箴 5422 | E2BD=篆 5423 | E2BE=篝 5424 | E2BF=篩 5425 | E2C0=簑 5426 | E2C1=簔 5427 | E2C2=篦 5428 | E2C3=篥 5429 | E2C4=籠 5430 | E2C5=簀 5431 | E2C6=簇 5432 | E2C7=簓 5433 | E2C8=篳 5434 | E2C9=篷 5435 | E2CA=簗 5436 | E2CB=簍 5437 | E2CC=篶 5438 | E2CD=簣 5439 | E2CE=簧 5440 | E2CF=簪 5441 | E2D0=簟 5442 | E2D1=簷 5443 | E2D2=簫 5444 | E2D3=簽 5445 | E2D4=籌 5446 | E2D5=籃 5447 | E2D6=籔 5448 | E2D7=籏 5449 | E2D8=籀 5450 | E2D9=籐 5451 | E2DA=籘 5452 | E2DB=籟 5453 | E2DC=籤 5454 | E2DD=籖 5455 | E2DE=籥 5456 | E2DF=籬 5457 | E2E0=籵 5458 | E2E1=粃 5459 | E2E2=粐 5460 | E2E3=粤 5461 | E2E4=粭 5462 | E2E5=粢 5463 | E2E6=粫 5464 | E2E7=粡 5465 | E2E8=粨 5466 | E2E9=粳 5467 | E2EA=粲 5468 | E2EB=粱 5469 | E2EC=粮 5470 | E2ED=粹 5471 | E2EE=粽 5472 | E2EF=糀 5473 | E2F0=糅 5474 | E2F1=糂 5475 | E2F2=糘 5476 | E2F3=糒 5477 | E2F4=糜 5478 | E2F5=糢 5479 | E2F6=鬻 5480 | E2F7=糯 5481 | E2F8=糲 5482 | E2F9=糴 5483 | E2FA=糶 5484 | E2FB=糺 5485 | E2FC=紆 5486 | E340=紂 5487 | E341=紜 5488 | E342=紕 5489 | E343=紊 5490 | E344=絅 5491 | E345=絋 5492 | E346=紮 5493 | E347=紲 5494 | E348=紿 5495 | E349=紵 5496 | E34A=絆 5497 | E34B=絳 5498 | E34C=絖 5499 | E34D=絎 5500 | E34E=絲 5501 | E34F=絨 5502 | E350=絮 5503 | E351=絏 5504 | E352=絣 5505 | E353=經 5506 | E354=綉 5507 | E355=絛 5508 | E356=綏 5509 | E357=絽 5510 | E358=綛 5511 | E359=綺 5512 | E35A=綮 5513 | E35B=綣 5514 | E35C=綵 5515 | E35D=緇 5516 | E35E=綽 5517 | E35F=綫 5518 | E360=總 5519 | E361=綢 5520 | E362=綯 5521 | E363=緜 5522 | E364=綸 5523 | E365=綟 5524 | E366=綰 5525 | E367=緘 5526 | E368=緝 5527 | E369=緤 5528 | E36A=緞 5529 | E36B=緻 5530 | E36C=緲 5531 | E36D=緡 5532 | E36E=縅 5533 | E36F=縊 5534 | E370=縣 5535 | E371=縡 5536 | E372=縒 5537 | E373=縱 5538 | E374=縟 5539 | E375=縉 5540 | E376=縋 5541 | E377=縢 5542 | E378=繆 5543 | E379=繦 5544 | E37A=縻 5545 | E37B=縵 5546 | E37C=縹 5547 | E37D=繃 5548 | E37E=縷 5549 | E380=縲 5550 | E381=縺 5551 | E382=繧 5552 | E383=繝 5553 | E384=繖 5554 | E385=繞 5555 | E386=繙 5556 | E387=繚 5557 | E388=繹 5558 | E389=繪 5559 | E38A=繩 5560 | E38B=繼 5561 | E38C=繻 5562 | E38D=纃 5563 | E38E=緕 5564 | E38F=繽 5565 | E390=辮 5566 | E391=繿 5567 | E392=纈 5568 | E393=纉 5569 | E394=續 5570 | E395=纒 5571 | E396=纐 5572 | E397=纓 5573 | E398=纔 5574 | E399=纖 5575 | E39A=纎 5576 | E39B=纛 5577 | E39C=纜 5578 | E39D=缸 5579 | E39E=缺 5580 | E39F=罅 5581 | E3A0=罌 5582 | E3A1=罍 5583 | E3A2=罎 5584 | E3A3=罐 5585 | E3A4=网 5586 | E3A5=罕 5587 | E3A6=罔 5588 | E3A7=罘 5589 | E3A8=罟 5590 | E3A9=罠 5591 | E3AA=罨 5592 | E3AB=罩 5593 | E3AC=罧 5594 | E3AD=罸 5595 | E3AE=羂 5596 | E3AF=羆 5597 | E3B0=羃 5598 | E3B1=羈 5599 | E3B2=羇 5600 | E3B3=羌 5601 | E3B4=羔 5602 | E3B5=羞 5603 | E3B6=羝 5604 | E3B7=羚 5605 | E3B8=羣 5606 | E3B9=羯 5607 | E3BA=羲 5608 | E3BB=羹 5609 | E3BC=羮 5610 | E3BD=羶 5611 | E3BE=羸 5612 | E3BF=譱 5613 | E3C0=翅 5614 | E3C1=翆 5615 | E3C2=翊 5616 | E3C3=翕 5617 | E3C4=翔 5618 | E3C5=翡 5619 | E3C6=翦 5620 | E3C7=翩 5621 | E3C8=翳 5622 | E3C9=翹 5623 | E3CA=飜 5624 | E3CB=耆 5625 | E3CC=耄 5626 | E3CD=耋 5627 | E3CE=耒 5628 | E3CF=耘 5629 | E3D0=耙 5630 | E3D1=耜 5631 | E3D2=耡 5632 | E3D3=耨 5633 | E3D4=耿 5634 | E3D5=耻 5635 | E3D6=聊 5636 | E3D7=聆 5637 | E3D8=聒 5638 | E3D9=聘 5639 | E3DA=聚 5640 | E3DB=聟 5641 | E3DC=聢 5642 | E3DD=聨 5643 | E3DE=聳 5644 | E3DF=聲 5645 | E3E0=聰 5646 | E3E1=聶 5647 | E3E2=聹 5648 | E3E3=聽 5649 | E3E4=聿 5650 | E3E5=肄 5651 | E3E6=肆 5652 | E3E7=肅 5653 | E3E8=肛 5654 | E3E9=肓 5655 | E3EA=肚 5656 | E3EB=肭 5657 | E3EC=冐 5658 | E3ED=肬 5659 | E3EE=胛 5660 | E3EF=胥 5661 | E3F0=胙 5662 | E3F1=胝 5663 | E3F2=胄 5664 | E3F3=胚 5665 | E3F4=胖 5666 | E3F5=脉 5667 | E3F6=胯 5668 | E3F7=胱 5669 | E3F8=脛 5670 | E3F9=脩 5671 | E3FA=脣 5672 | E3FB=脯 5673 | E3FC=腋 5674 | E440=隋 5675 | E441=腆 5676 | E442=脾 5677 | E443=腓 5678 | E444=腑 5679 | E445=胼 5680 | E446=腱 5681 | E447=腮 5682 | E448=腥 5683 | E449=腦 5684 | E44A=腴 5685 | E44B=膃 5686 | E44C=膈 5687 | E44D=膊 5688 | E44E=膀 5689 | E44F=膂 5690 | E450=膠 5691 | E451=膕 5692 | E452=膤 5693 | E453=膣 5694 | E454=腟 5695 | E455=膓 5696 | E456=膩 5697 | E457=膰 5698 | E458=膵 5699 | E459=膾 5700 | E45A=膸 5701 | E45B=膽 5702 | E45C=臀 5703 | E45D=臂 5704 | E45E=膺 5705 | E45F=臉 5706 | E460=臍 5707 | E461=臑 5708 | E462=臙 5709 | E463=臘 5710 | E464=臈 5711 | E465=臚 5712 | E466=臟 5713 | E467=臠 5714 | E468=臧 5715 | E469=臺 5716 | E46A=臻 5717 | E46B=臾 5718 | E46C=舁 5719 | E46D=舂 5720 | E46E=舅 5721 | E46F=與 5722 | E470=舊 5723 | E471=舍 5724 | E472=舐 5725 | E473=舖 5726 | E474=舩 5727 | E475=舫 5728 | E476=舸 5729 | E477=舳 5730 | E478=艀 5731 | E479=艙 5732 | E47A=艘 5733 | E47B=艝 5734 | E47C=艚 5735 | E47D=艟 5736 | E47E=艤 5737 | E480=艢 5738 | E481=艨 5739 | E482=艪 5740 | E483=艫 5741 | E484=舮 5742 | E485=艱 5743 | E486=艷 5744 | E487=艸 5745 | E488=艾 5746 | E489=芍 5747 | E48A=芒 5748 | E48B=芫 5749 | E48C=芟 5750 | E48D=芻 5751 | E48E=芬 5752 | E48F=苡 5753 | E490=苣 5754 | E491=苟 5755 | E492=苒 5756 | E493=苴 5757 | E494=苳 5758 | E495=苺 5759 | E496=莓 5760 | E497=范 5761 | E498=苻 5762 | E499=苹 5763 | E49A=苞 5764 | E49B=茆 5765 | E49C=苜 5766 | E49D=茉 5767 | E49E=苙 5768 | E49F=茵 5769 | E4A0=茴 5770 | E4A1=茖 5771 | E4A2=茲 5772 | E4A3=茱 5773 | E4A4=荀 5774 | E4A5=茹 5775 | E4A6=荐 5776 | E4A7=荅 5777 | E4A8=茯 5778 | E4A9=茫 5779 | E4AA=茗 5780 | E4AB=茘 5781 | E4AC=莅 5782 | E4AD=莚 5783 | E4AE=莪 5784 | E4AF=莟 5785 | E4B0=莢 5786 | E4B1=莖 5787 | E4B2=茣 5788 | E4B3=莎 5789 | E4B4=莇 5790 | E4B5=莊 5791 | E4B6=荼 5792 | E4B7=莵 5793 | E4B8=荳 5794 | E4B9=荵 5795 | E4BA=莠 5796 | E4BB=莉 5797 | E4BC=莨 5798 | E4BD=菴 5799 | E4BE=萓 5800 | E4BF=菫 5801 | E4C0=菎 5802 | E4C1=菽 5803 | E4C2=萃 5804 | E4C3=菘 5805 | E4C4=萋 5806 | E4C5=菁 5807 | E4C6=菷 5808 | E4C7=萇 5809 | E4C8=菠 5810 | E4C9=菲 5811 | E4CA=萍 5812 | E4CB=萢 5813 | E4CC=萠 5814 | E4CD=莽 5815 | E4CE=萸 5816 | E4CF=蔆 5817 | E4D0=菻 5818 | E4D1=葭 5819 | E4D2=萪 5820 | E4D3=萼 5821 | E4D4=蕚 5822 | E4D5=蒄 5823 | E4D6=葷 5824 | E4D7=葫 5825 | E4D8=蒭 5826 | E4D9=葮 5827 | E4DA=蒂 5828 | E4DB=葩 5829 | E4DC=葆 5830 | E4DD=萬 5831 | E4DE=葯 5832 | E4DF=葹 5833 | E4E0=萵 5834 | E4E1=蓊 5835 | E4E2=葢 5836 | E4E3=蒹 5837 | E4E4=蒿 5838 | E4E5=蒟 5839 | E4E6=蓙 5840 | E4E7=蓍 5841 | E4E8=蒻 5842 | E4E9=蓚 5843 | E4EA=蓐 5844 | E4EB=蓁 5845 | E4EC=蓆 5846 | E4ED=蓖 5847 | E4EE=蒡 5848 | E4EF=蔡 5849 | E4F0=蓿 5850 | E4F1=蓴 5851 | E4F2=蔗 5852 | E4F3=蔘 5853 | E4F4=蔬 5854 | E4F5=蔟 5855 | E4F6=蔕 5856 | E4F7=蔔 5857 | E4F8=蓼 5858 | E4F9=蕀 5859 | E4FA=蕣 5860 | E4FB=蕘 5861 | E4FC=蕈 5862 | E540=蕁 5863 | E541=蘂 5864 | E542=蕋 5865 | E543=蕕 5866 | E544=薀 5867 | E545=薤 5868 | E546=薈 5869 | E547=薑 5870 | E548=薊 5871 | E549=薨 5872 | E54A=蕭 5873 | E54B=薔 5874 | E54C=薛 5875 | E54D=藪 5876 | E54E=薇 5877 | E54F=薜 5878 | E550=蕷 5879 | E551=蕾 5880 | E552=薐 5881 | E553=藉 5882 | E554=薺 5883 | E555=藏 5884 | E556=薹 5885 | E557=藐 5886 | E558=藕 5887 | E559=藝 5888 | E55A=藥 5889 | E55B=藜 5890 | E55C=藹 5891 | E55D=蘊 5892 | E55E=蘓 5893 | E55F=蘋 5894 | E560=藾 5895 | E561=藺 5896 | E562=蘆 5897 | E563=蘢 5898 | E564=蘚 5899 | E565=蘰 5900 | E566=蘿 5901 | E567=虍 5902 | E568=乕 5903 | E569=虔 5904 | E56A=號 5905 | E56B=虧 5906 | E56C=虱 5907 | E56D=蚓 5908 | E56E=蚣 5909 | E56F=蚩 5910 | E570=蚪 5911 | E571=蚋 5912 | E572=蚌 5913 | E573=蚶 5914 | E574=蚯 5915 | E575=蛄 5916 | E576=蛆 5917 | E577=蚰 5918 | E578=蛉 5919 | E579=蠣 5920 | E57A=蚫 5921 | E57B=蛔 5922 | E57C=蛞 5923 | E57D=蛩 5924 | E57E=蛬 5925 | E580=蛟 5926 | E581=蛛 5927 | E582=蛯 5928 | E583=蜒 5929 | E584=蜆 5930 | E585=蜈 5931 | E586=蜀 5932 | E587=蜃 5933 | E588=蛻 5934 | E589=蜑 5935 | E58A=蜉 5936 | E58B=蜍 5937 | E58C=蛹 5938 | E58D=蜊 5939 | E58E=蜴 5940 | E58F=蜿 5941 | E590=蜷 5942 | E591=蜻 5943 | E592=蜥 5944 | E593=蜩 5945 | E594=蜚 5946 | E595=蝠 5947 | E596=蝟 5948 | E597=蝸 5949 | E598=蝌 5950 | E599=蝎 5951 | E59A=蝴 5952 | E59B=蝗 5953 | E59C=蝨 5954 | E59D=蝮 5955 | E59E=蝙 5956 | E59F=蝓 5957 | E5A0=蝣 5958 | E5A1=蝪 5959 | E5A2=蠅 5960 | E5A3=螢 5961 | E5A4=螟 5962 | E5A5=螂 5963 | E5A6=螯 5964 | E5A7=蟋 5965 | E5A8=螽 5966 | E5A9=蟀 5967 | E5AA=蟐 5968 | E5AB=雖 5969 | E5AC=螫 5970 | E5AD=蟄 5971 | E5AE=螳 5972 | E5AF=蟇 5973 | E5B0=蟆 5974 | E5B1=螻 5975 | E5B2=蟯 5976 | E5B3=蟲 5977 | E5B4=蟠 5978 | E5B5=蠏 5979 | E5B6=蠍 5980 | E5B7=蟾 5981 | E5B8=蟶 5982 | E5B9=蟷 5983 | E5BA=蠎 5984 | E5BB=蟒 5985 | E5BC=蠑 5986 | E5BD=蠖 5987 | E5BE=蠕 5988 | E5BF=蠢 5989 | E5C0=蠡 5990 | E5C1=蠱 5991 | E5C2=蠶 5992 | E5C3=蠹 5993 | E5C4=蠧 5994 | E5C5=蠻 5995 | E5C6=衄 5996 | E5C7=衂 5997 | E5C8=衒 5998 | E5C9=衙 5999 | E5CA=衞 6000 | E5CB=衢 6001 | E5CC=衫 6002 | E5CD=袁 6003 | E5CE=衾 6004 | E5CF=袞 6005 | E5D0=衵 6006 | E5D1=衽 6007 | E5D2=袵 6008 | E5D3=衲 6009 | E5D4=袂 6010 | E5D5=袗 6011 | E5D6=袒 6012 | E5D7=袮 6013 | E5D8=袙 6014 | E5D9=袢 6015 | E5DA=袍 6016 | E5DB=袤 6017 | E5DC=袰 6018 | E5DD=袿 6019 | E5DE=袱 6020 | E5DF=裃 6021 | E5E0=裄 6022 | E5E1=裔 6023 | E5E2=裘 6024 | E5E3=裙 6025 | E5E4=裝 6026 | E5E5=裹 6027 | E5E6=褂 6028 | E5E7=裼 6029 | E5E8=裴 6030 | E5E9=裨 6031 | E5EA=裲 6032 | E5EB=褄 6033 | E5EC=褌 6034 | E5ED=褊 6035 | E5EE=褓 6036 | E5EF=襃 6037 | E5F0=褞 6038 | E5F1=褥 6039 | E5F2=褪 6040 | E5F3=褫 6041 | E5F4=襁 6042 | E5F5=襄 6043 | E5F6=褻 6044 | E5F7=褶 6045 | E5F8=褸 6046 | E5F9=襌 6047 | E5FA=褝 6048 | E5FB=襠 6049 | E5FC=襞 6050 | E640=襦 6051 | E641=襤 6052 | E642=襭 6053 | E643=襪 6054 | E644=襯 6055 | E645=襴 6056 | E646=襷 6057 | E647=襾 6058 | E648=覃 6059 | E649=覈 6060 | E64A=覊 6061 | E64B=覓 6062 | E64C=覘 6063 | E64D=覡 6064 | E64E=覩 6065 | E64F=覦 6066 | E650=覬 6067 | E651=覯 6068 | E652=覲 6069 | E653=覺 6070 | E654=覽 6071 | E655=覿 6072 | E656=觀 6073 | E657=觚 6074 | E658=觜 6075 | E659=觝 6076 | E65A=觧 6077 | E65B=觴 6078 | E65C=觸 6079 | E65D=訃 6080 | E65E=訖 6081 | E65F=訐 6082 | E660=訌 6083 | E661=訛 6084 | E662=訝 6085 | E663=訥 6086 | E664=訶 6087 | E665=詁 6088 | E666=詛 6089 | E667=詒 6090 | E668=詆 6091 | E669=詈 6092 | E66A=詼 6093 | E66B=詭 6094 | E66C=詬 6095 | E66D=詢 6096 | E66E=誅 6097 | E66F=誂 6098 | E670=誄 6099 | E671=誨 6100 | E672=誡 6101 | E673=誑 6102 | E674=誥 6103 | E675=誦 6104 | E676=誚 6105 | E677=誣 6106 | E678=諄 6107 | E679=諍 6108 | E67A=諂 6109 | E67B=諚 6110 | E67C=諫 6111 | E67D=諳 6112 | E67E=諧 6113 | E680=諤 6114 | E681=諱 6115 | E682=謔 6116 | E683=諠 6117 | E684=諢 6118 | E685=諷 6119 | E686=諞 6120 | E687=諛 6121 | E688=謌 6122 | E689=謇 6123 | E68A=謚 6124 | E68B=諡 6125 | E68C=謖 6126 | E68D=謐 6127 | E68E=謗 6128 | E68F=謠 6129 | E690=謳 6130 | E691=鞫 6131 | E692=謦 6132 | E693=謫 6133 | E694=謾 6134 | E695=謨 6135 | E696=譁 6136 | E697=譌 6137 | E698=譏 6138 | E699=譎 6139 | E69A=證 6140 | E69B=譖 6141 | E69C=譛 6142 | E69D=譚 6143 | E69E=譫 6144 | E69F=譟 6145 | E6A0=譬 6146 | E6A1=譯 6147 | E6A2=譴 6148 | E6A3=譽 6149 | E6A4=讀 6150 | E6A5=讌 6151 | E6A6=讎 6152 | E6A7=讒 6153 | E6A8=讓 6154 | E6A9=讖 6155 | E6AA=讙 6156 | E6AB=讚 6157 | E6AC=谺 6158 | E6AD=豁 6159 | E6AE=谿 6160 | E6AF=豈 6161 | E6B0=豌 6162 | E6B1=豎 6163 | E6B2=豐 6164 | E6B3=豕 6165 | E6B4=豢 6166 | E6B5=豬 6167 | E6B6=豸 6168 | E6B7=豺 6169 | E6B8=貂 6170 | E6B9=貉 6171 | E6BA=貅 6172 | E6BB=貊 6173 | E6BC=貍 6174 | E6BD=貎 6175 | E6BE=貔 6176 | E6BF=豼 6177 | E6C0=貘 6178 | E6C1=戝 6179 | E6C2=貭 6180 | E6C3=貪 6181 | E6C4=貽 6182 | E6C5=貲 6183 | E6C6=貳 6184 | E6C7=貮 6185 | E6C8=貶 6186 | E6C9=賈 6187 | E6CA=賁 6188 | E6CB=賤 6189 | E6CC=賣 6190 | E6CD=賚 6191 | E6CE=賽 6192 | E6CF=賺 6193 | E6D0=賻 6194 | E6D1=贄 6195 | E6D2=贅 6196 | E6D3=贊 6197 | E6D4=贇 6198 | E6D5=贏 6199 | E6D6=贍 6200 | E6D7=贐 6201 | E6D8=齎 6202 | E6D9=贓 6203 | E6DA=賍 6204 | E6DB=贔 6205 | E6DC=贖 6206 | E6DD=赧 6207 | E6DE=赭 6208 | E6DF=赱 6209 | E6E0=赳 6210 | E6E1=趁 6211 | E6E2=趙 6212 | E6E3=跂 6213 | E6E4=趾 6214 | E6E5=趺 6215 | E6E6=跏 6216 | E6E7=跚 6217 | E6E8=跖 6218 | E6E9=跌 6219 | E6EA=跛 6220 | E6EB=跋 6221 | E6EC=跪 6222 | E6ED=跫 6223 | E6EE=跟 6224 | E6EF=跣 6225 | E6F0=跼 6226 | E6F1=踈 6227 | E6F2=踉 6228 | E6F3=跿 6229 | E6F4=踝 6230 | E6F5=踞 6231 | E6F6=踐 6232 | E6F7=踟 6233 | E6F8=蹂 6234 | E6F9=踵 6235 | E6FA=踰 6236 | E6FB=踴 6237 | E6FC=蹊 6238 | E740=蹇 6239 | E741=蹉 6240 | E742=蹌 6241 | E743=蹐 6242 | E744=蹈 6243 | E745=蹙 6244 | E746=蹤 6245 | E747=蹠 6246 | E748=踪 6247 | E749=蹣 6248 | E74A=蹕 6249 | E74B=蹶 6250 | E74C=蹲 6251 | E74D=蹼 6252 | E74E=躁 6253 | E74F=躇 6254 | E750=躅 6255 | E751=躄 6256 | E752=躋 6257 | E753=躊 6258 | E754=躓 6259 | E755=躑 6260 | E756=躔 6261 | E757=躙 6262 | E758=躪 6263 | E759=躡 6264 | E75A=躬 6265 | E75B=躰 6266 | E75C=軆 6267 | E75D=躱 6268 | E75E=躾 6269 | E75F=軅 6270 | E760=軈 6271 | E761=軋 6272 | E762=軛 6273 | E763=軣 6274 | E764=軼 6275 | E765=軻 6276 | E766=軫 6277 | E767=軾 6278 | E768=輊 6279 | E769=輅 6280 | E76A=輕 6281 | E76B=輒 6282 | E76C=輙 6283 | E76D=輓 6284 | E76E=輜 6285 | E76F=輟 6286 | E770=輛 6287 | E771=輌 6288 | E772=輦 6289 | E773=輳 6290 | E774=輻 6291 | E775=輹 6292 | E776=轅 6293 | E777=轂 6294 | E778=輾 6295 | E779=轌 6296 | E77A=轉 6297 | E77B=轆 6298 | E77C=轎 6299 | E77D=轗 6300 | E77E=轜 6301 | E780=轢 6302 | E781=轣 6303 | E782=轤 6304 | E783=辜 6305 | E784=辟 6306 | E785=辣 6307 | E786=辭 6308 | E787=辯 6309 | E788=辷 6310 | E789=迚 6311 | E78A=迥 6312 | E78B=迢 6313 | E78C=迪 6314 | E78D=迯 6315 | E78E=邇 6316 | E78F=迴 6317 | E790=逅 6318 | E791=迹 6319 | E792=迺 6320 | E793=逑 6321 | E794=逕 6322 | E795=逡 6323 | E796=逍 6324 | E797=逞 6325 | E798=逖 6326 | E799=逋 6327 | E79A=逧 6328 | E79B=逶 6329 | E79C=逵 6330 | E79D=逹 6331 | E79E=迸 6332 | E79F=遏 6333 | E7A0=遐 6334 | E7A1=遑 6335 | E7A2=遒 6336 | E7A3=逎 6337 | E7A4=遉 6338 | E7A5=逾 6339 | E7A6=遖 6340 | E7A7=遘 6341 | E7A8=遞 6342 | E7A9=遨 6343 | E7AA=遯 6344 | E7AB=遶 6345 | E7AC=隨 6346 | E7AD=遲 6347 | E7AE=邂 6348 | E7AF=遽 6349 | E7B0=邁 6350 | E7B1=邀 6351 | E7B2=邊 6352 | E7B3=邉 6353 | E7B4=邏 6354 | E7B5=邨 6355 | E7B6=邯 6356 | E7B7=邱 6357 | E7B8=邵 6358 | E7B9=郢 6359 | E7BA=郤 6360 | E7BB=扈 6361 | E7BC=郛 6362 | E7BD=鄂 6363 | E7BE=鄒 6364 | E7BF=鄙 6365 | E7C0=鄲 6366 | E7C1=鄰 6367 | E7C2=酊 6368 | E7C3=酖 6369 | E7C4=酘 6370 | E7C5=酣 6371 | E7C6=酥 6372 | E7C7=酩 6373 | E7C8=酳 6374 | E7C9=酲 6375 | E7CA=醋 6376 | E7CB=醉 6377 | E7CC=醂 6378 | E7CD=醢 6379 | E7CE=醫 6380 | E7CF=醯 6381 | E7D0=醪 6382 | E7D1=醵 6383 | E7D2=醴 6384 | E7D3=醺 6385 | E7D4=釀 6386 | E7D5=釁 6387 | E7D6=釉 6388 | E7D7=釋 6389 | E7D8=釐 6390 | E7D9=釖 6391 | E7DA=釟 6392 | E7DB=釡 6393 | E7DC=釛 6394 | E7DD=釼 6395 | E7DE=釵 6396 | E7DF=釶 6397 | E7E0=鈞 6398 | E7E1=釿 6399 | E7E2=鈔 6400 | E7E3=鈬 6401 | E7E4=鈕 6402 | E7E5=鈑 6403 | E7E6=鉞 6404 | E7E7=鉗 6405 | E7E8=鉅 6406 | E7E9=鉉 6407 | E7EA=鉤 6408 | E7EB=鉈 6409 | E7EC=銕 6410 | E7ED=鈿 6411 | E7EE=鉋 6412 | E7EF=鉐 6413 | E7F0=銜 6414 | E7F1=銖 6415 | E7F2=銓 6416 | E7F3=銛 6417 | E7F4=鉚 6418 | E7F5=鋏 6419 | E7F6=銹 6420 | E7F7=銷 6421 | E7F8=鋩 6422 | E7F9=錏 6423 | E7FA=鋺 6424 | E7FB=鍄 6425 | E7FC=錮 6426 | E840=錙 6427 | E841=錢 6428 | E842=錚 6429 | E843=錣 6430 | E844=錺 6431 | E845=錵 6432 | E846=錻 6433 | E847=鍜 6434 | E848=鍠 6435 | E849=鍼 6436 | E84A=鍮 6437 | E84B=鍖 6438 | E84C=鎰 6439 | E84D=鎬 6440 | E84E=鎭 6441 | E84F=鎔 6442 | E850=鎹 6443 | E851=鏖 6444 | E852=鏗 6445 | E853=鏨 6446 | E854=鏥 6447 | E855=鏘 6448 | E856=鏃 6449 | E857=鏝 6450 | E858=鏐 6451 | E859=鏈 6452 | E85A=鏤 6453 | E85B=鐚 6454 | E85C=鐔 6455 | E85D=鐓 6456 | E85E=鐃 6457 | E85F=鐇 6458 | E860=鐐 6459 | E861=鐶 6460 | E862=鐫 6461 | E863=鐵 6462 | E864=鐡 6463 | E865=鐺 6464 | E866=鑁 6465 | E867=鑒 6466 | E868=鑄 6467 | E869=鑛 6468 | E86A=鑠 6469 | E86B=鑢 6470 | E86C=鑞 6471 | E86D=鑪 6472 | E86E=鈩 6473 | E86F=鑰 6474 | E870=鑵 6475 | E871=鑷 6476 | E872=鑽 6477 | E873=鑚 6478 | E874=鑼 6479 | E875=鑾 6480 | E876=钁 6481 | E877=鑿 6482 | E878=閂 6483 | E879=閇 6484 | E87A=閊 6485 | E87B=閔 6486 | E87C=閖 6487 | E87D=閘 6488 | E87E=閙 6489 | E880=閠 6490 | E881=閨 6491 | E882=閧 6492 | E883=閭 6493 | E884=閼 6494 | E885=閻 6495 | E886=閹 6496 | E887=閾 6497 | E888=闊 6498 | E889=濶 6499 | E88A=闃 6500 | E88B=闍 6501 | E88C=闌 6502 | E88D=闕 6503 | E88E=闔 6504 | E88F=闖 6505 | E890=關 6506 | E891=闡 6507 | E892=闥 6508 | E893=闢 6509 | E894=阡 6510 | E895=阨 6511 | E896=阮 6512 | E897=阯 6513 | E898=陂 6514 | E899=陌 6515 | E89A=陏 6516 | E89B=陋 6517 | E89C=陷 6518 | E89D=陜 6519 | E89E=陞 6520 | E89F=陝 6521 | E8A0=陟 6522 | E8A1=陦 6523 | E8A2=陲 6524 | E8A3=陬 6525 | E8A4=隍 6526 | E8A5=隘 6527 | E8A6=隕 6528 | E8A7=隗 6529 | E8A8=險 6530 | E8A9=隧 6531 | E8AA=隱 6532 | E8AB=隲 6533 | E8AC=隰 6534 | E8AD=隴 6535 | E8AE=隶 6536 | E8AF=隸 6537 | E8B0=隹 6538 | E8B1=雎 6539 | E8B2=雋 6540 | E8B3=雉 6541 | E8B4=雍 6542 | E8B5=襍 6543 | E8B6=雜 6544 | E8B7=霍 6545 | E8B8=雕 6546 | E8B9=雹 6547 | E8BA=霄 6548 | E8BB=霆 6549 | E8BC=霈 6550 | E8BD=霓 6551 | E8BE=霎 6552 | E8BF=霑 6553 | E8C0=霏 6554 | E8C1=霖 6555 | E8C2=霙 6556 | E8C3=霤 6557 | E8C4=霪 6558 | E8C5=霰 6559 | E8C6=霹 6560 | E8C7=霽 6561 | E8C8=霾 6562 | E8C9=靄 6563 | E8CA=靆 6564 | E8CB=靈 6565 | E8CC=靂 6566 | E8CD=靉 6567 | E8CE=靜 6568 | E8CF=靠 6569 | E8D0=靤 6570 | E8D1=靦 6571 | E8D2=靨 6572 | E8D3=勒 6573 | E8D4=靫 6574 | E8D5=靱 6575 | E8D6=靹 6576 | E8D7=鞅 6577 | E8D8=靼 6578 | E8D9=鞁 6579 | E8DA=靺 6580 | E8DB=鞆 6581 | E8DC=鞋 6582 | E8DD=鞏 6583 | E8DE=鞐 6584 | E8DF=鞜 6585 | E8E0=鞨 6586 | E8E1=鞦 6587 | E8E2=鞣 6588 | E8E3=鞳 6589 | E8E4=鞴 6590 | E8E5=韃 6591 | E8E6=韆 6592 | E8E7=韈 6593 | E8E8=韋 6594 | E8E9=韜 6595 | E8EA=韭 6596 | E8EB=齏 6597 | E8EC=韲 6598 | E8ED=竟 6599 | E8EE=韶 6600 | E8EF=韵 6601 | E8F0=頏 6602 | E8F1=頌 6603 | E8F2=頸 6604 | E8F3=頤 6605 | E8F4=頡 6606 | E8F5=頷 6607 | E8F6=頽 6608 | E8F7=顆 6609 | E8F8=顏 6610 | E8F9=顋 6611 | E8FA=顫 6612 | E8FB=顯 6613 | E8FC=顰 6614 | E940=顱 6615 | E941=顴 6616 | E942=顳 6617 | E943=颪 6618 | E944=颯 6619 | E945=颱 6620 | E946=颶 6621 | E947=飄 6622 | E948=飃 6623 | E949=飆 6624 | E94A=飩 6625 | E94B=飫 6626 | E94C=餃 6627 | E94D=餉 6628 | E94E=餒 6629 | E94F=餔 6630 | E950=餘 6631 | E951=餡 6632 | E952=餝 6633 | E953=餞 6634 | E954=餤 6635 | E955=餠 6636 | E956=餬 6637 | E957=餮 6638 | E958=餽 6639 | E959=餾 6640 | E95A=饂 6641 | E95B=饉 6642 | E95C=饅 6643 | E95D=饐 6644 | E95E=饋 6645 | E95F=饑 6646 | E960=饒 6647 | E961=饌 6648 | E962=饕 6649 | E963=馗 6650 | E964=馘 6651 | E965=馥 6652 | E966=馭 6653 | E967=馮 6654 | E968=馼 6655 | E969=駟 6656 | E96A=駛 6657 | E96B=駝 6658 | E96C=駘 6659 | E96D=駑 6660 | E96E=駭 6661 | E96F=駮 6662 | E970=駱 6663 | E971=駲 6664 | E972=駻 6665 | E973=駸 6666 | E974=騁 6667 | E975=騏 6668 | E976=騅 6669 | E977=駢 6670 | E978=騙 6671 | E979=騫 6672 | E97A=騷 6673 | E97B=驅 6674 | E97C=驂 6675 | E97D=驀 6676 | E97E=驃 6677 | E980=騾 6678 | E981=驕 6679 | E982=驍 6680 | E983=驛 6681 | E984=驗 6682 | E985=驟 6683 | E986=驢 6684 | E987=驥 6685 | E988=驤 6686 | E989=驩 6687 | E98A=驫 6688 | E98B=驪 6689 | E98C=骭 6690 | E98D=骰 6691 | E98E=骼 6692 | E98F=髀 6693 | E990=髏 6694 | E991=髑 6695 | E992=髓 6696 | E993=體 6697 | E994=髞 6698 | E995=髟 6699 | E996=髢 6700 | E997=髣 6701 | E998=髦 6702 | E999=髯 6703 | E99A=髫 6704 | E99B=髮 6705 | E99C=髴 6706 | E99D=髱 6707 | E99E=髷 6708 | E99F=髻 6709 | E9A0=鬆 6710 | E9A1=鬘 6711 | E9A2=鬚 6712 | E9A3=鬟 6713 | E9A4=鬢 6714 | E9A5=鬣 6715 | E9A6=鬥 6716 | E9A7=鬧 6717 | E9A8=鬨 6718 | E9A9=鬩 6719 | E9AA=鬪 6720 | E9AB=鬮 6721 | E9AC=鬯 6722 | E9AD=鬲 6723 | E9AE=魄 6724 | E9AF=魃 6725 | E9B0=魏 6726 | E9B1=魍 6727 | E9B2=魎 6728 | E9B3=魑 6729 | E9B4=魘 6730 | E9B5=魴 6731 | E9B6=鮓 6732 | E9B7=鮃 6733 | E9B8=鮑 6734 | E9B9=鮖 6735 | E9BA=鮗 6736 | E9BB=鮟 6737 | E9BC=鮠 6738 | E9BD=鮨 6739 | E9BE=鮴 6740 | E9BF=鯀 6741 | E9C0=鯊 6742 | E9C1=鮹 6743 | E9C2=鯆 6744 | E9C3=鯏 6745 | E9C4=鯑 6746 | E9C5=鯒 6747 | E9C6=鯣 6748 | E9C7=鯢 6749 | E9C8=鯤 6750 | E9C9=鯔 6751 | E9CA=鯡 6752 | E9CB=鰺 6753 | E9CC=鯲 6754 | E9CD=鯱 6755 | E9CE=鯰 6756 | E9CF=鰕 6757 | E9D0=鰔 6758 | E9D1=鰉 6759 | E9D2=鰓 6760 | E9D3=鰌 6761 | E9D4=鰆 6762 | E9D5=鰈 6763 | E9D6=鰒 6764 | E9D7=鰊 6765 | E9D8=鰄 6766 | E9D9=鰮 6767 | E9DA=鰛 6768 | E9DB=鰥 6769 | E9DC=鰤 6770 | E9DD=鰡 6771 | E9DE=鰰 6772 | E9DF=鱇 6773 | E9E0=鰲 6774 | E9E1=鱆 6775 | E9E2=鰾 6776 | E9E3=鱚 6777 | E9E4=鱠 6778 | E9E5=鱧 6779 | E9E6=鱶 6780 | E9E7=鱸 6781 | E9E8=鳧 6782 | E9E9=鳬 6783 | E9EA=鳰 6784 | E9EB=鴉 6785 | E9EC=鴈 6786 | E9ED=鳫 6787 | E9EE=鴃 6788 | E9EF=鴆 6789 | E9F0=鴪 6790 | E9F1=鴦 6791 | E9F2=鶯 6792 | E9F3=鴣 6793 | E9F4=鴟 6794 | E9F5=鵄 6795 | E9F6=鴕 6796 | E9F7=鴒 6797 | E9F8=鵁 6798 | E9F9=鴿 6799 | E9FA=鴾 6800 | E9FB=鵆 6801 | E9FC=鵈 6802 | EA40=鵝 6803 | EA41=鵞 6804 | EA42=鵤 6805 | EA43=鵑 6806 | EA44=鵐 6807 | EA45=鵙 6808 | EA46=鵲 6809 | EA47=鶉 6810 | EA48=鶇 6811 | EA49=鶫 6812 | EA4A=鵯 6813 | EA4B=鵺 6814 | EA4C=鶚 6815 | EA4D=鶤 6816 | EA4E=鶩 6817 | EA4F=鶲 6818 | EA50=鷄 6819 | EA51=鷁 6820 | EA52=鶻 6821 | EA53=鶸 6822 | EA54=鶺 6823 | EA55=鷆 6824 | EA56=鷏 6825 | EA57=鷂 6826 | EA58=鷙 6827 | EA59=鷓 6828 | EA5A=鷸 6829 | EA5B=鷦 6830 | EA5C=鷭 6831 | EA5D=鷯 6832 | EA5E=鷽 6833 | EA5F=鸚 6834 | EA60=鸛 6835 | EA61=鸞 6836 | EA62=鹵 6837 | EA63=鹹 6838 | EA64=鹽 6839 | EA65=麁 6840 | EA66=麈 6841 | EA67=麋 6842 | EA68=麌 6843 | EA69=麒 6844 | EA6A=麕 6845 | EA6B=麑 6846 | EA6C=麝 6847 | EA6D=麥 6848 | EA6E=麩 6849 | EA6F=麸 6850 | EA70=麪 6851 | EA71=麭 6852 | EA72=靡 6853 | EA73=黌 6854 | EA74=黎 6855 | EA75=黏 6856 | EA76=黐 6857 | EA77=黔 6858 | EA78=黜 6859 | EA79=點 6860 | EA7A=黝 6861 | EA7B=黠 6862 | EA7C=黥 6863 | EA7D=黨 6864 | EA7E=黯 6865 | EA80=黴 6866 | EA81=黶 6867 | EA82=黷 6868 | EA83=黹 6869 | EA84=黻 6870 | EA85=黼 6871 | EA86=黽 6872 | EA87=鼇 6873 | EA88=鼈 6874 | EA89=皷 6875 | EA8A=鼕 6876 | EA8B=鼡 6877 | EA8C=鼬 6878 | EA8D=鼾 6879 | EA8E=齊 6880 | EA8F=齒 6881 | EA90=齔 6882 | EA91=齣 6883 | EA92=齟 6884 | EA93=齠 6885 | EA94=齡 6886 | EA95=齦 6887 | EA96=齧 6888 | EA97=齬 6889 | EA98=齪 6890 | EA99=齷 6891 | EA9A=齲 6892 | EA9B=齶 6893 | EA9C=龕 6894 | EA9D=龜 6895 | EA9E=龠 6896 | EA9F=堯 6897 | EAA0=槇 6898 | EAA1=遙 6899 | EAA2=瑤 6900 | --------------------------------------------------------------------------------