├── .gitattributes ├── .gitignore ├── LICENSE ├── MisakaHookFinder.sln ├── MisakaHookFinder ├── HookResultWindow.cpp ├── HookResultWindow.h ├── HookResultWindow.ui ├── MisakaHookFinder.cpp ├── MisakaHookFinder.h ├── MisakaHookFinder.qrc ├── MisakaHookFinder.rc ├── MisakaHookFinder.ui ├── MisakaHookFinder.vcxproj ├── MisakaHookFinder.vcxproj.filters ├── common.h ├── const.h ├── defs.h ├── dllmain.cpp ├── extension.cpp ├── extension.h ├── hookcode.cpp ├── hookcode.h ├── host.cpp ├── host.h ├── icon.ico ├── main.cpp ├── module.h ├── pch.cpp ├── pch.h ├── resource.h ├── result.txt ├── texthook.h ├── texthost.cpp ├── texthost.def ├── texthost.h ├── textthread.cpp ├── textthread.h └── types.h └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Set default behavior to automatically normalize line endings. 3 | ############################################################################### 4 | * text=auto 5 | 6 | ############################################################################### 7 | # Set default behavior for command prompt diff. 8 | # 9 | # This is need for earlier builds of msysgit that does not have it on by 10 | # default for csharp files. 11 | # Note: This is only used by command line 12 | ############################################################################### 13 | #*.cs diff=csharp 14 | 15 | ############################################################################### 16 | # Set the merge driver for project and solution files 17 | # 18 | # Merging from the command prompt will add diff markers to the files if there 19 | # are conflicts (Merging from VS is not affected by the settings below, in VS 20 | # the diff markers are never inserted). Diff markers may cause the following 21 | # file extensions to fail to load in VS. An alternative would be to treat 22 | # these files as binary and thus will always conflict and require user 23 | # intervention with every merge. To do so, just uncomment the entries below 24 | ############################################################################### 25 | #*.sln merge=binary 26 | #*.csproj merge=binary 27 | #*.vbproj merge=binary 28 | #*.vcxproj merge=binary 29 | #*.vcproj merge=binary 30 | #*.dbproj merge=binary 31 | #*.fsproj merge=binary 32 | #*.lsproj merge=binary 33 | #*.wixproj merge=binary 34 | #*.modelproj merge=binary 35 | #*.sqlproj merge=binary 36 | #*.wwaproj merge=binary 37 | 38 | ############################################################################### 39 | # behavior for image files 40 | # 41 | # image files are treated as binary by default. 42 | ############################################################################### 43 | #*.jpg binary 44 | #*.png binary 45 | #*.gif binary 46 | 47 | ############################################################################### 48 | # diff behavior for common document formats 49 | # 50 | # Convert binary document formats to text before diffing them. This feature 51 | # is only available from the command line. Turn it on by uncommenting the 52 | # entries below. 53 | ############################################################################### 54 | #*.doc diff=astextplain 55 | #*.DOC diff=astextplain 56 | #*.docx diff=astextplain 57 | #*.DOCX diff=astextplain 58 | #*.dot diff=astextplain 59 | #*.DOT diff=astextplain 60 | #*.pdf diff=astextplain 61 | #*.PDF diff=astextplain 62 | #*.rtf diff=astextplain 63 | #*.RTF diff=astextplain 64 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | ## 4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore 5 | 6 | # User-specific files 7 | *.rsuser 8 | *.suo 9 | *.user 10 | *.userosscache 11 | *.sln.docstates 12 | 13 | # User-specific files (MonoDevelop/Xamarin Studio) 14 | *.userprefs 15 | 16 | # Build results 17 | [Dd]ebug/ 18 | [Dd]ebugPublic/ 19 | [Rr]elease/ 20 | [Rr]eleases/ 21 | x64/ 22 | x86/ 23 | [Aa][Rr][Mm]/ 24 | [Aa][Rr][Mm]64/ 25 | bld/ 26 | [Bb]in/ 27 | [Oo]bj/ 28 | [Ll]og/ 29 | 30 | # Visual Studio 2015/2017 cache/options directory 31 | .vs/ 32 | # Uncomment if you have tasks that create the project's static files in wwwroot 33 | #wwwroot/ 34 | 35 | # Visual Studio 2017 auto generated files 36 | Generated\ Files/ 37 | 38 | # MSTest test Results 39 | [Tt]est[Rr]esult*/ 40 | [Bb]uild[Ll]og.* 41 | 42 | # NUNIT 43 | *.VisualState.xml 44 | TestResult.xml 45 | 46 | # Build Results of an ATL Project 47 | [Dd]ebugPS/ 48 | [Rr]eleasePS/ 49 | dlldata.c 50 | 51 | # Benchmark Results 52 | BenchmarkDotNet.Artifacts/ 53 | 54 | # .NET Core 55 | project.lock.json 56 | project.fragment.lock.json 57 | artifacts/ 58 | 59 | # StyleCop 60 | StyleCopReport.xml 61 | 62 | # Files built by Visual Studio 63 | *_i.c 64 | *_p.c 65 | *_h.h 66 | *.ilk 67 | *.meta 68 | *.obj 69 | *.iobj 70 | *.pch 71 | *.pdb 72 | *.ipdb 73 | *.pgc 74 | *.pgd 75 | *.rsp 76 | *.sbr 77 | *.tlb 78 | *.tli 79 | *.tlh 80 | *.tmp 81 | *.tmp_proj 82 | *_wpftmp.csproj 83 | *.log 84 | *.vspscc 85 | *.vssscc 86 | .builds 87 | *.pidb 88 | *.svclog 89 | *.scc 90 | 91 | # Chutzpah Test files 92 | _Chutzpah* 93 | 94 | # Visual C++ cache files 95 | ipch/ 96 | *.aps 97 | *.ncb 98 | *.opendb 99 | *.opensdf 100 | *.sdf 101 | *.cachefile 102 | *.VC.db 103 | *.VC.VC.opendb 104 | 105 | # Visual Studio profiler 106 | *.psess 107 | *.vsp 108 | *.vspx 109 | *.sap 110 | 111 | # Visual Studio Trace Files 112 | *.e2e 113 | 114 | # TFS 2012 Local Workspace 115 | $tf/ 116 | 117 | # Guidance Automation Toolkit 118 | *.gpState 119 | 120 | # ReSharper is a .NET coding add-in 121 | _ReSharper*/ 122 | *.[Rr]e[Ss]harper 123 | *.DotSettings.user 124 | 125 | # JustCode is a .NET coding add-in 126 | .JustCode 127 | 128 | # TeamCity is a build add-in 129 | _TeamCity* 130 | 131 | # DotCover is a Code Coverage Tool 132 | *.dotCover 133 | 134 | # AxoCover is a Code Coverage Tool 135 | .axoCover/* 136 | !.axoCover/settings.json 137 | 138 | # Visual Studio code coverage results 139 | *.coverage 140 | *.coveragexml 141 | 142 | # NCrunch 143 | _NCrunch_* 144 | .*crunch*.local.xml 145 | nCrunchTemp_* 146 | 147 | # MightyMoose 148 | *.mm.* 149 | AutoTest.Net/ 150 | 151 | # Web workbench (sass) 152 | .sass-cache/ 153 | 154 | # Installshield output folder 155 | [Ee]xpress/ 156 | 157 | # DocProject is a documentation generator add-in 158 | DocProject/buildhelp/ 159 | DocProject/Help/*.HxT 160 | DocProject/Help/*.HxC 161 | DocProject/Help/*.hhc 162 | DocProject/Help/*.hhk 163 | DocProject/Help/*.hhp 164 | DocProject/Help/Html2 165 | DocProject/Help/html 166 | 167 | # Click-Once directory 168 | publish/ 169 | 170 | # Publish Web Output 171 | *.[Pp]ublish.xml 172 | *.azurePubxml 173 | # Note: Comment the next line if you want to checkin your web deploy settings, 174 | # but database connection strings (with potential passwords) will be unencrypted 175 | *.pubxml 176 | *.publishproj 177 | 178 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 179 | # checkin your Azure Web App publish settings, but sensitive information contained 180 | # in these scripts will be unencrypted 181 | PublishScripts/ 182 | 183 | # NuGet Packages 184 | *.nupkg 185 | # The packages folder can be ignored because of Package Restore 186 | **/[Pp]ackages/* 187 | # except build/, which is used as an MSBuild target. 188 | !**/[Pp]ackages/build/ 189 | # Uncomment if necessary however generally it will be regenerated when needed 190 | #!**/[Pp]ackages/repositories.config 191 | # NuGet v3's project.json files produces more ignorable files 192 | *.nuget.props 193 | *.nuget.targets 194 | 195 | # Microsoft Azure Build Output 196 | csx/ 197 | *.build.csdef 198 | 199 | # Microsoft Azure Emulator 200 | ecf/ 201 | rcf/ 202 | 203 | # Windows Store app package directories and files 204 | AppPackages/ 205 | BundleArtifacts/ 206 | Package.StoreAssociation.xml 207 | _pkginfo.txt 208 | *.appx 209 | 210 | # Visual Studio cache files 211 | # files ending in .cache can be ignored 212 | *.[Cc]ache 213 | # but keep track of directories ending in .cache 214 | !?*.[Cc]ache/ 215 | 216 | # Others 217 | ClientBin/ 218 | ~$* 219 | *~ 220 | *.dbmdl 221 | *.dbproj.schemaview 222 | *.jfm 223 | *.pfx 224 | *.publishsettings 225 | orleans.codegen.cs 226 | 227 | # Including strong name files can present a security risk 228 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 229 | #*.snk 230 | 231 | # Since there are multiple workflows, uncomment next line to ignore bower_components 232 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 233 | #bower_components/ 234 | 235 | # RIA/Silverlight projects 236 | Generated_Code/ 237 | 238 | # Backup & report files from converting an old project file 239 | # to a newer Visual Studio version. Backup files are not needed, 240 | # because we have git ;-) 241 | _UpgradeReport_Files/ 242 | Backup*/ 243 | UpgradeLog*.XML 244 | UpgradeLog*.htm 245 | ServiceFabricBackup/ 246 | *.rptproj.bak 247 | 248 | # SQL Server files 249 | *.mdf 250 | *.ldf 251 | *.ndf 252 | 253 | # Business Intelligence projects 254 | *.rdl.data 255 | *.bim.layout 256 | *.bim_*.settings 257 | *.rptproj.rsuser 258 | *- Backup*.rdl 259 | 260 | # Microsoft Fakes 261 | FakesAssemblies/ 262 | 263 | # GhostDoc plugin setting file 264 | *.GhostDoc.xml 265 | 266 | # Node.js Tools for Visual Studio 267 | .ntvs_analysis.dat 268 | node_modules/ 269 | 270 | # Visual Studio 6 build log 271 | *.plg 272 | 273 | # Visual Studio 6 workspace options file 274 | *.opt 275 | 276 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 277 | *.vbw 278 | 279 | # Visual Studio LightSwitch build output 280 | **/*.HTMLClient/GeneratedArtifacts 281 | **/*.DesktopClient/GeneratedArtifacts 282 | **/*.DesktopClient/ModelManifest.xml 283 | **/*.Server/GeneratedArtifacts 284 | **/*.Server/ModelManifest.xml 285 | _Pvt_Extensions 286 | 287 | # Paket dependency manager 288 | .paket/paket.exe 289 | paket-files/ 290 | 291 | # FAKE - F# Make 292 | .fake/ 293 | 294 | # JetBrains Rider 295 | .idea/ 296 | *.sln.iml 297 | 298 | # CodeRush personal settings 299 | .cr/personal 300 | 301 | # Python Tools for Visual Studio (PTVS) 302 | __pycache__/ 303 | *.pyc 304 | 305 | # Cake - Uncomment if you are using it 306 | # tools/** 307 | # !tools/packages.config 308 | 309 | # Tabs Studio 310 | *.tss 311 | 312 | # Telerik's JustMock configuration file 313 | *.jmconfig 314 | 315 | # BizTalk build output 316 | *.btp.cs 317 | *.btm.cs 318 | *.odx.cs 319 | *.xsd.cs 320 | 321 | # OpenCover UI analysis results 322 | OpenCover/ 323 | 324 | # Azure Stream Analytics local run output 325 | ASALocalRun/ 326 | 327 | # MSBuild Binary and Structured Log 328 | *.binlog 329 | 330 | # NVidia Nsight GPU debugger configuration file 331 | *.nvuser 332 | 333 | # MFractors (Xamarin productivity tool) working folder 334 | .mfractor/ 335 | 336 | # Local History for Visual Studio 337 | .localhistory/ 338 | 339 | # BeatPulse healthcheck temp database 340 | healthchecksdb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /MisakaHookFinder.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30011.22 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MisakaHookFinder", "MisakaHookFinder\MisakaHookFinder.vcxproj", "{744C5C95-1E39-4F42-91DA-ABD169B191E9}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|x64 = Debug|x64 11 | Debug|x86 = Debug|x86 12 | Release|x64 = Release|x64 13 | Release|x86 = Release|x86 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {744C5C95-1E39-4F42-91DA-ABD169B191E9}.Debug|x64.ActiveCfg = Debug|x64 17 | {744C5C95-1E39-4F42-91DA-ABD169B191E9}.Debug|x64.Build.0 = Debug|x64 18 | {744C5C95-1E39-4F42-91DA-ABD169B191E9}.Debug|x86.ActiveCfg = Debug|Win32 19 | {744C5C95-1E39-4F42-91DA-ABD169B191E9}.Debug|x86.Build.0 = Debug|Win32 20 | {744C5C95-1E39-4F42-91DA-ABD169B191E9}.Release|x64.ActiveCfg = Release|x64 21 | {744C5C95-1E39-4F42-91DA-ABD169B191E9}.Release|x64.Build.0 = Release|x64 22 | {744C5C95-1E39-4F42-91DA-ABD169B191E9}.Release|x86.ActiveCfg = Release|Win32 23 | {744C5C95-1E39-4F42-91DA-ABD169B191E9}.Release|x86.Build.0 = Release|Win32 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | GlobalSection(ExtensibilityGlobals) = postSolution 29 | SolutionGuid = {C88EA6F8-01A9-4789-B368-6EC2EA40DD72} 30 | EndGlobalSection 31 | EndGlobal 32 | -------------------------------------------------------------------------------- /MisakaHookFinder/HookResultWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmin0822/MisakaHookFinder/77a15864652305c1e84593319987d0407b370567/MisakaHookFinder/HookResultWindow.cpp -------------------------------------------------------------------------------- /MisakaHookFinder/HookResultWindow.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include "ui_HookResultWindow.h" 5 | #include 6 | #include 7 | #include 8 | #include 9 | #include "texthost.h" 10 | 11 | class HookResultWindow : public QWidget 12 | { 13 | Q_OBJECT 14 | 15 | public: 16 | HookResultWindow(QWidget *parent = Q_NULLPTR); 17 | ~HookResultWindow(); 18 | 19 | public: 20 | DWORD processID; 21 | 22 | private: 23 | Ui::HookResultWindow ui; 24 | 25 | public slots: 26 | void FindNextBtn_Click(); 27 | void AddCustomBtn_Click(); 28 | }; 29 | -------------------------------------------------------------------------------- /MisakaHookFinder/HookResultWindow.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | HookResultWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 727 10 | 504 11 | 12 | 13 | 14 | Hook搜索结果 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 关键字搜索: 24 | 25 | 26 | 27 | 28 | 29 | 30 | 查找下一条 31 | 32 | 33 | 34 | 35 | 36 | 37 | 为此结果添加自定Hook 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /MisakaHookFinder/MisakaHookFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmin0822/MisakaHookFinder/77a15864652305c1e84593319987d0407b370567/MisakaHookFinder/MisakaHookFinder.cpp -------------------------------------------------------------------------------- /MisakaHookFinder/MisakaHookFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmin0822/MisakaHookFinder/77a15864652305c1e84593319987d0407b370567/MisakaHookFinder/MisakaHookFinder.h -------------------------------------------------------------------------------- /MisakaHookFinder/MisakaHookFinder.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /MisakaHookFinder/MisakaHookFinder.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmin0822/MisakaHookFinder/77a15864652305c1e84593319987d0407b370567/MisakaHookFinder/MisakaHookFinder.rc -------------------------------------------------------------------------------- /MisakaHookFinder/MisakaHookFinder.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MisakaHookFinderClass 4 | 5 | 6 | 7 | 0 8 | 0 9 | 715 10 | 620 11 | 12 | 13 | 14 | MisakaHookFinder 15 | 16 | 17 | 18 | 19 | 20 | 21 | true 22 | 23 | 24 | 25 | 100 26 | 0 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 50 39 | 20 40 | 41 | 42 | 43 | 注入进程 44 | 45 | 46 | 47 | 48 | 49 | 50 | true 51 | 52 | 53 | 54 | 70 55 | 20 56 | 57 | 58 | 59 | 添加指定特殊码(注入) 60 | 61 | 62 | 63 | 64 | 65 | 66 | false 67 | 68 | 69 | 70 | 71 | 72 | 73 | true 74 | 75 | 76 | 77 | 50 78 | 20 79 | 80 | 81 | 82 | 查找特殊码 83 | 84 | 85 | 86 | 87 | 88 | 89 | true 90 | 91 | 92 | 93 | 70 94 | 20 95 | 96 | 97 | 98 | 根据文本搜索 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 100 107 | 0 108 | 109 | 110 | 111 | false 112 | 113 | 114 | MisakaHookFinder V1.1 115 | 开源网址:https://github.com/hanmin0822/MisakaHookFinder 116 | 117 | 如果觉得本工具好用请标星,这是作者开发的动力。 118 | 119 | 本项目属于MisakaTranslator的子项目(https://github.com/hanmin0822/MisakaTranslator)。 120 | 121 | 本工具专用于搜索某些难以找到的文本钩子并可以提供更加稳定的Hook,MisakaTranslator可以通过使用剪贴板读取来获得这个软件的内容。 122 | 123 | 作者联系:512240272@qq.com 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 开启剪贴板更新 132 | 133 | 134 | 135 | 136 | 137 | 138 | 复制该特殊码 139 | 140 | 141 | 142 | 143 | 144 | 145 | 移除此钩子 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | -------------------------------------------------------------------------------- /MisakaHookFinder/MisakaHookFinder.vcxproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Debug 10 | x64 11 | 12 | 13 | Release 14 | Win32 15 | 16 | 17 | Release 18 | x64 19 | 20 | 21 | 22 | {744C5C95-1E39-4F42-91DA-ABD169B191E9} 23 | QtVS_v302 24 | 10.0.18362.0 25 | 10.0.18362.0 26 | 10.0.18362.0 27 | 10.0.18362.0 28 | $(MSBuildProjectDirectory)\QtMsBuild 29 | 30 | 31 | 32 | Application 33 | v142 34 | 35 | 36 | Application 37 | v142 38 | 39 | 40 | Application 41 | v142 42 | NotSet 43 | 44 | 45 | Application 46 | v142 47 | NotSet 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | msvc2017 73 | core;gui;widgets 74 | debug 75 | 76 | 77 | msvc2017_64 78 | core;gui;widgets 79 | debug 80 | 81 | 82 | msvc2017 83 | core;gui;widgets 84 | release 85 | 86 | 87 | msvc2017_64 88 | core;gui;widgets 89 | release 90 | 91 | 92 | 93 | 94 | 95 | 96 | true 97 | true 98 | ProgramDatabase 99 | Disabled 100 | MultiThreadedDebugDLL 101 | 102 | 103 | Windows 104 | true 105 | 106 | 107 | 108 | 109 | true 110 | true 111 | ProgramDatabase 112 | Disabled 113 | MultiThreadedDebugDLL 114 | 115 | 116 | Windows 117 | true 118 | 119 | 120 | 121 | 122 | true 123 | true 124 | None 125 | MaxSpeed 126 | MultiThreadedDLL 127 | 128 | 129 | Windows 130 | false 131 | 132 | 133 | 134 | 135 | true 136 | true 137 | None 138 | MaxSpeed 139 | MultiThreadedDLL 140 | 141 | 142 | Windows 143 | false 144 | 145 | 146 | 147 | 148 | stdcpp17 149 | 150 | 151 | 152 | 153 | stdcpp17 154 | 155 | 156 | 157 | 158 | stdcpp17 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | -------------------------------------------------------------------------------- /MisakaHookFinder/MisakaHookFinder.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {99349809-55BA-4b9d-BF79-8FDBB0286EB3} 18 | ui 19 | 20 | 21 | {D9D6E242-F8AF-46E4-B9FD-80ECBC20BA3E} 22 | qrc;* 23 | false 24 | 25 | 26 | 27 | 28 | Resource Files 29 | 30 | 31 | Header Files 32 | 33 | 34 | Source Files 35 | 36 | 37 | Form Files 38 | 39 | 40 | 41 | 42 | Source Files 43 | 44 | 45 | Source Files 46 | 47 | 48 | Source Files 49 | 50 | 51 | Source Files 52 | 53 | 54 | Source Files 55 | 56 | 57 | Source Files 58 | 59 | 60 | Source Files 61 | 62 | 63 | Source Files 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | Header Files 72 | 73 | 74 | Header Files 75 | 76 | 77 | Header Files 78 | 79 | 80 | Header Files 81 | 82 | 83 | Header Files 84 | 85 | 86 | Header Files 87 | 88 | 89 | Header Files 90 | 91 | 92 | Header Files 93 | 94 | 95 | Header Files 96 | 97 | 98 | Header Files 99 | 100 | 101 | Header Files 102 | 103 | 104 | Header Files 105 | 106 | 107 | Header Files 108 | 109 | 110 | 111 | 112 | Header Files 113 | 114 | 115 | 116 | 117 | Resource Files 118 | 119 | 120 | 121 | 122 | Resource Files 123 | 124 | 125 | -------------------------------------------------------------------------------- /MisakaHookFinder/common.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define WIN32_LEAN_AND_MEAN 4 | #include 5 | #include 6 | #include 7 | #include 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | #include 17 | #include 18 | #include 19 | #include 20 | #include 21 | #include 22 | #include 23 | #include 24 | 25 | #ifdef _WIN64 26 | constexpr bool x64 = true; 27 | #else 28 | constexpr bool x64 = false; 29 | #endif 30 | 31 | template 32 | struct ArrayImpl { using Type = std::tuple[]; }; 33 | template 34 | struct ArrayImpl { using Type = T[]; }; 35 | template 36 | using Array = typename ArrayImpl::Type; 37 | 38 | template 39 | using Functor = std::integral_constant, F>; 40 | 41 | template 42 | struct Identity { V operator()(V v) const { return v; } }; 43 | 44 | struct PermissivePointer 45 | { 46 | template 47 | operator T* () { return (T*)p; } 48 | void* p; 49 | }; 50 | 51 | template > 52 | class AutoHandle 53 | { 54 | public: 55 | AutoHandle(HANDLE h) : h(h) {} 56 | operator HANDLE() { return h.get(); } 57 | PHANDLE operator&() { static_assert(sizeof(*this) == sizeof(HANDLE)); assert(!h); return (PHANDLE)this; } 58 | operator bool() { return h.get() != NULL && h.get() != INVALID_HANDLE_VALUE; } 59 | 60 | private: 61 | struct HandleCleaner { void operator()(void* h) { if (h != INVALID_HANDLE_VALUE) HandleCloser()(PermissivePointer{ h }); } }; 62 | std::unique_ptr h; 63 | }; 64 | 65 | template 66 | class Synchronized 67 | { 68 | public: 69 | template 70 | Synchronized(Args&&... args) : contents(std::forward(args)...) {} 71 | 72 | struct Locker 73 | { 74 | T* operator->() { return &contents; } 75 | std::unique_lock lock; 76 | T& contents; 77 | }; 78 | 79 | Locker Acquire() { return { std::unique_lock(m), contents }; } 80 | Locker operator->() { return Acquire(); } 81 | 82 | T Copy() 83 | { 84 | return Acquire().contents; 85 | } 86 | 87 | private: 88 | T contents; 89 | M m; 90 | }; 91 | 92 | static struct 93 | { 94 | BYTE DUMMY[100]; 95 | template 96 | operator T* () { static_assert(sizeof(T) < sizeof(DUMMY)); return (T*)DUMMY; } 97 | } DUMMY; 98 | 99 | template 100 | inline auto FormatArg(T arg) { return arg; } 101 | 102 | template 103 | inline auto FormatArg(const std::basic_string& arg) { return arg.c_str(); } 104 | 105 | #pragma warning(push) 106 | #pragma warning(disable: 4996) 107 | template 108 | inline std::string FormatString(const char* format, const Args&... args) 109 | { 110 | std::string buffer(snprintf(nullptr, 0, format, FormatArg(args)...), '\0'); 111 | sprintf(buffer.data(), format, FormatArg(args)...); 112 | return buffer; 113 | } 114 | 115 | template 116 | inline std::wstring FormatString(const wchar_t* format, const Args&... args) 117 | { 118 | std::wstring buffer(_snwprintf(nullptr, 0, format, FormatArg(args)...), L'\0'); 119 | _swprintf(buffer.data(), format, FormatArg(args)...); 120 | return buffer; 121 | } 122 | #pragma warning(pop) 123 | 124 | inline std::optional StringToWideString(const std::string& text, UINT encoding) 125 | { 126 | std::vector buffer(text.size() + 1); 127 | if (int length = MultiByteToWideChar(encoding, 0, text.c_str(), text.size() + 1, buffer.data(), buffer.size())) 128 | return std::wstring(buffer.data(), length - 1); 129 | return {}; 130 | } 131 | 132 | inline std::wstring StringToWideString(const std::string& text) 133 | { 134 | std::vector buffer(text.size() + 1); 135 | MultiByteToWideChar(CP_UTF8, 0, text.c_str(), -1, buffer.data(), buffer.size()); 136 | return buffer.data(); 137 | } 138 | 139 | inline std::string WideStringToString(const std::wstring& text) 140 | { 141 | std::vector buffer((text.size() + 1) * 4); 142 | WideCharToMultiByte(CP_UTF8, 0, text.c_str(), -1, buffer.data(), buffer.size(), nullptr, nullptr); 143 | return buffer.data(); 144 | } 145 | 146 | template 147 | inline void TEXTRACTOR_MESSAGE(const wchar_t* format, const Args&... args) { MessageBoxW(NULL, FormatString(format, args...).c_str(), L"Textractor", MB_OK); } -------------------------------------------------------------------------------- /MisakaHookFinder/const.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | // texthook/const.h 4 | // 8/23/2013 jichi 5 | // Branch: ITH/common.h, rev 128 6 | 7 | enum { STRING = 12, MESSAGE_SIZE = 500, PIPE_BUFFER_SIZE = 50000, SHIFT_JIS = 932, MAX_MODULE_SIZE = 120, PATTERN_SIZE = 30, HOOK_NAME_SIZE = 60, FIXED_SPLIT_VALUE = 0x10001 }; 8 | enum WildcardByte { XX = 0x11 }; 9 | 10 | enum HostCommandType { HOST_COMMAND_NEW_HOOK, HOST_COMMAND_REMOVE_HOOK, HOST_COMMAND_FIND_HOOK, HOST_COMMAND_MODIFY_HOOK, HOST_COMMAND_HIJACK_PROCESS, HOST_COMMAND_DETACH }; 11 | 12 | enum HostNotificationType { HOST_NOTIFICATION_TEXT, HOST_NOTIFICATION_NEWHOOK, HOST_NOTIFICATION_FOUND_HOOK, HOST_NOTIFICATION_RMVHOOK }; 13 | 14 | enum HookParamType : unsigned 15 | { 16 | USING_STRING = 0x1, // type(data) is char* or wchar_t* and has length 17 | USING_UNICODE = 0x2, // type(data) is wchar_t or wchar_t* 18 | BIG_ENDIAN = 0x4, // type(data) is char 19 | DATA_INDIRECT = 0x8, 20 | USING_SPLIT = 0x10, // use ctx2 or not 21 | SPLIT_INDIRECT = 0x20, 22 | MODULE_OFFSET = 0x40, // address is relative to module 23 | FUNCTION_OFFSET = 0x80, // address is relative to function 24 | USING_UTF8 = 0x100, 25 | NO_CONTEXT = 0x200, 26 | HOOK_EMPTY = 0x400, 27 | FIXING_SPLIT = 0x800, 28 | DIRECT_READ = 0x1000, // /R read code instead of classic /H hook code 29 | FULL_STRING = 0x2000, 30 | HEX_DUMP = 0x4000, 31 | HOOK_ENGINE = 0x8000, 32 | HOOK_ADDITIONAL = 0x10000, 33 | KNOWN_UNSTABLE = 0x20000, 34 | }; -------------------------------------------------------------------------------- /MisakaHookFinder/defs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | // texthook/defs.h 4 | // 8/23/2013 jichi 5 | 6 | // Pipes 7 | 8 | constexpr auto HOOK_PIPE = L"\\\\.\\pipe\\TEXTRACTOR_HOOK"; 9 | constexpr auto HOST_PIPE = L"\\\\.\\pipe\\TEXTRACTOR_HOST"; 10 | 11 | // Sections 12 | 13 | constexpr auto ITH_SECTION_ = L"VNR_SECTION_"; // _%d 14 | 15 | // Mutexes 16 | 17 | constexpr auto ITH_HOOKMAN_MUTEX_ = L"VNR_HOOKMAN_"; // ITH_HOOKMAN_%d 18 | constexpr auto CONNECTING_MUTEX = L"TEXTRACTOR_CONNECTING_PIPES"; 19 | 20 | // Events 21 | 22 | constexpr auto PIPE_AVAILABLE_EVENT = L"TEXTRACTOR_PIPE_AVAILABLE"; 23 | 24 | // Files 25 | 26 | constexpr auto ITH_DLL = L"texthook"; // .dll but LoadLibrary automatically adds that 27 | constexpr auto& GAME_CONFIG_FILE = L"TextractorConfig.txt"; 28 | 29 | // EOF 30 | -------------------------------------------------------------------------------- /MisakaHookFinder/dllmain.cpp: -------------------------------------------------------------------------------- 1 | // dllmain.cpp : 定义 DLL 应用程序的入口点。 2 | #include "pch.h" 3 | 4 | BOOL APIENTRY DllMain( HMODULE hModule, 5 | DWORD ul_reason_for_call, 6 | LPVOID lpReserved 7 | ) 8 | { 9 | switch (ul_reason_for_call) 10 | { 11 | case DLL_PROCESS_ATTACH: 12 | case DLL_THREAD_ATTACH: 13 | case DLL_THREAD_DETACH: 14 | case DLL_PROCESS_DETACH: 15 | break; 16 | } 17 | return TRUE; 18 | } 19 | 20 | -------------------------------------------------------------------------------- /MisakaHookFinder/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmin0822/MisakaHookFinder/77a15864652305c1e84593319987d0407b370567/MisakaHookFinder/extension.cpp -------------------------------------------------------------------------------- /MisakaHookFinder/extension.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "pch.h" 4 | 5 | namespace Extension 6 | { 7 | bool RemoveRepeatChar(int id,std::wstring& text); 8 | bool RemoveRepeatPhrase(int id,std::wstring& text); 9 | } -------------------------------------------------------------------------------- /MisakaHookFinder/hookcode.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | #include "hookcode.h" 3 | #include "module.h" 4 | 5 | namespace 6 | { 7 | std::optional ParseRCode(std::wstring RCode) 8 | { 9 | std::wsmatch match; 10 | HookParam hp = {}; 11 | hp.type |= DIRECT_READ; 12 | 13 | // {S|Q|V|M} 14 | switch (RCode[0]) 15 | { 16 | case L'S': 17 | break; 18 | case L'Q': 19 | hp.type |= USING_UNICODE; 20 | break; 21 | case L'V': 22 | hp.type |= USING_UTF8; 23 | break; 24 | case L'M': 25 | hp.type |= USING_UNICODE | HEX_DUMP; 26 | break; 27 | default: 28 | return {}; 29 | } 30 | RCode.erase(0, 1); 31 | 32 | // [null_length<] 33 | if (std::regex_search(RCode, match, std::wregex(L"^([0-9]+)<"))) 34 | { 35 | hp.null_length = std::stoi(match[1]); 36 | RCode.erase(0, match[0].length()); 37 | } 38 | 39 | // [codepage#] 40 | if (std::regex_search(RCode, match, std::wregex(L"^([0-9]+)#"))) 41 | { 42 | hp.codepage = std::stoi(match[1]); 43 | RCode.erase(0, match[0].length()); 44 | } 45 | 46 | // @addr 47 | if (!std::regex_match(RCode, match, std::wregex(L"@([[:xdigit:]]+)"))) return {}; 48 | hp.address = std::stoull(match[1], nullptr, 16); 49 | return hp; 50 | } 51 | 52 | std::optional ParseHCode(std::wstring HCode) 53 | { 54 | std::wsmatch match; 55 | HookParam hp = {}; 56 | 57 | // {A|B|W|H|S|Q|V|M} 58 | switch (HCode[0]) 59 | { 60 | case L'A': 61 | hp.type |= BIG_ENDIAN; 62 | hp.length_offset = 1; 63 | break; 64 | case L'B': 65 | hp.length_offset = 1; 66 | break; 67 | case L'W': 68 | hp.type |= USING_UNICODE; 69 | hp.length_offset = 1; 70 | break; 71 | case L'H': 72 | hp.type |= USING_UNICODE | HEX_DUMP; 73 | hp.length_offset = 1; 74 | break; 75 | case L'S': 76 | hp.type |= USING_STRING; 77 | break; 78 | case L'Q': 79 | hp.type |= USING_STRING | USING_UNICODE; 80 | break; 81 | case L'V': 82 | hp.type |= USING_STRING | USING_UTF8; 83 | break; 84 | case L'M': 85 | hp.type |= USING_STRING | USING_UNICODE | HEX_DUMP; 86 | break; 87 | default: 88 | return {}; 89 | } 90 | HCode.erase(0, 1); 91 | 92 | if ((hp.type & USING_STRING)) 93 | { 94 | if (HCode[0] == L'F') 95 | { 96 | hp.type |= FULL_STRING; 97 | HCode.erase(0, 1); 98 | } 99 | 100 | // [null_length<] 101 | if (std::regex_search(HCode, match, std::wregex(L"^([0-9]+)<"))) 102 | { 103 | hp.null_length = std::stoi(match[1]); 104 | HCode.erase(0, match[0].length()); 105 | } 106 | } 107 | 108 | // [N] 109 | if (HCode[0] == L'N') 110 | { 111 | hp.type |= NO_CONTEXT; 112 | HCode.erase(0, 1); 113 | } 114 | 115 | // [codepage#] 116 | if (std::regex_search(HCode, match, std::wregex(L"^([0-9]+)#"))) 117 | { 118 | hp.codepage = std::stoi(match[1]); 119 | HCode.erase(0, match[0].length()); 120 | } 121 | 122 | // [padding+] 123 | if (std::regex_search(HCode, match, std::wregex(L"^([[:xdigit:]]+)\\+"))) 124 | { 125 | hp.padding = std::stoull(match[1], nullptr, 16); 126 | HCode.erase(0, match[0].length()); 127 | } 128 | 129 | // data_offset 130 | if (!std::regex_search(HCode, match, std::wregex(L"^-?[[:xdigit:]]+"))) return {}; 131 | hp.offset = std::stoi(match[0], nullptr, 16); 132 | HCode.erase(0, match[0].length()); 133 | 134 | // [*deref_offset1] 135 | if (std::regex_search(HCode, match, std::wregex(L"^\\*(-?[[:xdigit:]]+)"))) 136 | { 137 | hp.type |= DATA_INDIRECT; 138 | hp.index = std::stoi(match[1], nullptr, 16); 139 | HCode.erase(0, match[0].length()); 140 | } 141 | 142 | // [:split_offset[*deref_offset2]] 143 | if (std::regex_search(HCode, match, std::wregex(L"^:(-?[[:xdigit:]]+)"))) 144 | { 145 | hp.type |= USING_SPLIT; 146 | hp.split = std::stoi(match[1], nullptr, 16); 147 | HCode.erase(0, match[0].length()); 148 | 149 | if (std::regex_search(HCode, match, std::wregex(L"^\\*(-?[[:xdigit:]]+)"))) 150 | { 151 | hp.type |= SPLIT_INDIRECT; 152 | hp.split_index = std::stoi(match[1], nullptr, 16); 153 | HCode.erase(0, match[0].length()); 154 | } 155 | } 156 | 157 | // @addr[:module[:func]] 158 | if (!std::regex_match(HCode, match, std::wregex(L"@([[:xdigit:]]+)(:.+?)?(:.+)?"))) return {}; 159 | hp.address = std::stoull(match[1], nullptr, 16); 160 | if (match[2].matched) 161 | { 162 | hp.type |= MODULE_OFFSET; 163 | wcsncpy_s(hp.module, match[2].str().erase(0, 1).c_str(), MAX_MODULE_SIZE - 1); 164 | } 165 | if (match[3].matched) 166 | { 167 | hp.type |= FUNCTION_OFFSET; 168 | std::wstring func = match[3]; 169 | strncpy_s(hp.function, std::string(func.begin(), func.end()).erase(0, 1).c_str(), MAX_MODULE_SIZE - 1); 170 | } 171 | 172 | // ITH has registers offset by 4 vs AGTH: need this to correct 173 | if (hp.offset < 0) hp.offset -= 4; 174 | if (hp.split < 0) hp.split -= 4; 175 | 176 | return hp; 177 | } 178 | 179 | std::wstring HexString(int64_t num) 180 | { 181 | if (num < 0) return FormatString(L"-%I64X", -num); 182 | return FormatString(L"%I64X", num); 183 | } 184 | 185 | std::wstring GenerateRCode(HookParam hp) 186 | { 187 | std::wstring RCode = L"R"; 188 | 189 | if (hp.type & USING_UNICODE) 190 | { 191 | if (hp.type & HEX_DUMP) RCode += L'M'; 192 | else RCode += L'Q'; 193 | if (hp.null_length != 0) RCode += std::to_wstring(hp.null_length) + L'<'; 194 | } 195 | else 196 | { 197 | RCode += L'S'; 198 | if (hp.null_length != 0) RCode += std::to_wstring(hp.null_length) + L'<'; 199 | if (hp.codepage != 0) RCode += std::to_wstring(hp.codepage) + L'#'; 200 | } 201 | 202 | RCode += L'@' + HexString(hp.address); 203 | 204 | return RCode; 205 | } 206 | 207 | std::wstring GenerateHCode(HookParam hp, DWORD processId) 208 | { 209 | std::wstring HCode = L"H"; 210 | 211 | if (hp.type & USING_UNICODE) 212 | { 213 | if (hp.type & HEX_DUMP) 214 | { 215 | if (hp.type & USING_STRING) HCode += L'M'; 216 | else HCode += L'H'; 217 | } 218 | else 219 | { 220 | if (hp.type & USING_STRING) HCode += L'Q'; 221 | else HCode += L'W'; 222 | } 223 | } 224 | else 225 | { 226 | if (hp.type & USING_STRING) HCode += L'S'; 227 | else if (hp.type & BIG_ENDIAN) HCode += L'A'; 228 | else HCode += L'B'; 229 | } 230 | 231 | if (hp.type & FULL_STRING) HCode += L'F'; 232 | 233 | if (hp.null_length != 0) HCode += std::to_wstring(hp.null_length) + L'<'; 234 | 235 | if (hp.type & NO_CONTEXT) HCode += L'N'; 236 | if (hp.text_fun || hp.filter_fun || hp.hook_fun || hp.length_fun) HCode += L'X'; // no AGTH equivalent 237 | 238 | if (hp.codepage != 0 && !(hp.type & USING_UNICODE)) HCode += std::to_wstring(hp.codepage) + L'#'; 239 | 240 | if (hp.padding) HCode += HexString(hp.padding) + L'+'; 241 | 242 | if (hp.offset < 0) hp.offset += 4; 243 | if (hp.split < 0) hp.split += 4; 244 | 245 | HCode += HexString(hp.offset); 246 | if (hp.type & DATA_INDIRECT) HCode += L'*' + HexString(hp.index); 247 | if (hp.type & USING_SPLIT) HCode += L':' + HexString(hp.split); 248 | if (hp.type & SPLIT_INDIRECT) HCode += L'*' + HexString(hp.split_index); 249 | 250 | // Attempt to make the address relative 251 | if (processId && !(hp.type & MODULE_OFFSET)) 252 | if (AutoHandle<> process = OpenProcess(PROCESS_VM_READ | PROCESS_QUERY_INFORMATION, FALSE, processId)) 253 | if (MEMORY_BASIC_INFORMATION info = {}; VirtualQueryEx(process, (LPCVOID)hp.address, &info, sizeof(info))) 254 | if (auto moduleName = GetModuleFilename(processId, (HMODULE)info.AllocationBase)) 255 | { 256 | hp.type |= MODULE_OFFSET; 257 | hp.address -= (uint64_t)info.AllocationBase; 258 | wcsncpy_s(hp.module, moduleName->c_str() + moduleName->rfind(L'\\') + 1, MAX_MODULE_SIZE - 1); 259 | } 260 | 261 | HCode += L'@' + HexString(hp.address); 262 | if (hp.type & MODULE_OFFSET) HCode += L':' + std::wstring(hp.module); 263 | if (hp.type & FUNCTION_OFFSET) HCode += L':' + StringToWideString(hp.function); 264 | 265 | return HCode; 266 | } 267 | } 268 | 269 | namespace HookCode 270 | { 271 | std::optional Parse(std::wstring code) 272 | { 273 | if (code[0] == L'/') code.erase(0, 1); // legacy/AGTH compatibility 274 | if (code[0] == L'R') return ParseRCode(code.erase(0, 1)); 275 | else if (code[0] == L'H') return ParseHCode(code.erase(0, 1)); 276 | return {}; 277 | } 278 | 279 | std::wstring Generate(HookParam hp, DWORD processId) 280 | { 281 | return hp.type & DIRECT_READ ? GenerateRCode(hp) : GenerateHCode(hp, processId); 282 | } 283 | } -------------------------------------------------------------------------------- /MisakaHookFinder/hookcode.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "pch.h" 4 | #include "types.h" 5 | 6 | namespace HookCode 7 | { 8 | std::optional Parse(std::wstring code); 9 | std::wstring Generate(HookParam hp, DWORD processId = 0); 10 | } 11 | -------------------------------------------------------------------------------- /MisakaHookFinder/host.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | #include "host.h" 3 | #include "defs.h" 4 | #include "module.h" 5 | #include "hookcode.h" 6 | #include "texthook.h" 7 | 8 | extern const wchar_t* ALREADY_INJECTED; 9 | extern const wchar_t* NEED_32_BIT; 10 | extern const wchar_t* NEED_64_BIT; 11 | extern const wchar_t* INJECT_FAILED; 12 | extern const wchar_t* CONSOLE; 13 | extern const wchar_t* CLIPBOARD; 14 | 15 | namespace 16 | { 17 | class ProcessRecord 18 | { 19 | public: 20 | ProcessRecord(DWORD processId, HANDLE pipe) : 21 | pipe(pipe), 22 | mappedFile(OpenFileMappingW(FILE_MAP_READ, FALSE, (ITH_SECTION_ + std::to_wstring(processId)).c_str())), 23 | view(*(const TextHook(*)[MAX_HOOK])MapViewOfFile(mappedFile, FILE_MAP_READ, 0, 0, HOOK_SECTION_SIZE / 2)), // jichi 1/16/2015: Changed to half to hook section size 24 | viewMutex(ITH_HOOKMAN_MUTEX_ + std::to_wstring(processId)) 25 | {} 26 | 27 | ~ProcessRecord() 28 | { 29 | UnmapViewOfFile(view); 30 | } 31 | 32 | TextHook GetHook(uint64_t addr) 33 | { 34 | if (!view) return {}; 35 | std::scoped_lock lock(viewMutex); 36 | for (auto hook : view) 37 | if (hook.address == addr) return hook; 38 | return {}; 39 | } 40 | 41 | template 42 | void Send(T data) 43 | { 44 | static_assert(sizeof(data) < PIPE_BUFFER_SIZE); 45 | std::thread([=] 46 | { 47 | WriteFile(pipe, &data, sizeof(data), DUMMY, nullptr); 48 | }).detach(); 49 | } 50 | 51 | Host::HookEventHandler OnHookFound = [](HookParam hp, std::wstring text) 52 | { 53 | Host::AddConsoleOutput(HookCode::Generate(hp) + L": " + text); 54 | }; 55 | 56 | private: 57 | HANDLE pipe; 58 | AutoHandle<> mappedFile; 59 | const TextHook(&view)[MAX_HOOK]; 60 | WinMutex viewMutex; 61 | }; 62 | 63 | size_t HashThreadParam(ThreadParam tp) { return std::hash()(tp.processId + tp.addr) + std::hash()(tp.ctx + tp.ctx2); } 64 | Synchronized>> textThreadsByParams; 65 | Synchronized> processRecordsByIds; 66 | 67 | Host::ProcessEventHandler OnConnect, OnDisconnect; 68 | Host::ThreadEventHandler OnCreate, OnDestroy; 69 | 70 | void RemoveThreads(std::function removeIf) 71 | { 72 | std::vector threadsToRemove; 73 | for (auto& [tp, thread] : textThreadsByParams.Acquire().contents) 74 | if (removeIf(tp)) threadsToRemove.push_back(&thread); 75 | for (auto thread : threadsToRemove) 76 | { 77 | OnDestroy(*thread); 78 | textThreadsByParams->erase(thread->tp); 79 | } 80 | } 81 | 82 | void CreatePipe() 83 | { 84 | std::thread([] 85 | { 86 | struct PipeCloser { void operator()(HANDLE h) { DisconnectNamedPipe(h); CloseHandle(h); } }; 87 | AutoHandle 88 | hookPipe = CreateNamedPipeW(HOOK_PIPE, PIPE_ACCESS_INBOUND, PIPE_TYPE_MESSAGE | PIPE_READMODE_MESSAGE, PIPE_UNLIMITED_INSTANCES, 0, PIPE_BUFFER_SIZE, MAXDWORD, &allAccess), 89 | hostPipe = CreateNamedPipeW(HOST_PIPE, PIPE_ACCESS_OUTBOUND, PIPE_TYPE_MESSAGE | PIPE_READMODE_MESSAGE, PIPE_UNLIMITED_INSTANCES, PIPE_BUFFER_SIZE, 0, MAXDWORD, &allAccess); 90 | static AutoHandle<> pipeAvailableEvent = CreateEventW(&allAccess, FALSE, FALSE, PIPE_AVAILABLE_EVENT); 91 | SetEvent(pipeAvailableEvent); 92 | ConnectNamedPipe(hookPipe, nullptr); 93 | 94 | BYTE buffer[PIPE_BUFFER_SIZE] = {}; 95 | DWORD bytesRead, processId; 96 | ReadFile(hookPipe, &processId, sizeof(processId), &bytesRead, nullptr); 97 | processRecordsByIds->try_emplace(processId, processId, hostPipe); 98 | OnConnect(processId); 99 | 100 | CreatePipe(); 101 | 102 | while (ReadFile(hookPipe, buffer, PIPE_BUFFER_SIZE, &bytesRead, nullptr)) 103 | switch (*(HostNotificationType*)buffer) 104 | { 105 | case HOST_NOTIFICATION_FOUND_HOOK: 106 | { 107 | auto info = *(HookFoundNotif*)buffer; 108 | auto OnHookFound = processRecordsByIds->at(processId).OnHookFound; 109 | std::wstring wide = info.text; 110 | if (wide.size() > STRING) OnHookFound(info.hp, std::move(info.text)); 111 | info.hp.type &= ~USING_UNICODE; 112 | if (auto converted = StringToWideString((char*)info.text, info.hp.codepage)) 113 | if (converted->size() > STRING) OnHookFound(info.hp, std::move(converted.value())); 114 | if (auto converted = StringToWideString((char*)info.text, info.hp.codepage = CP_UTF8)) 115 | if (converted->size() > STRING) OnHookFound(info.hp, std::move(converted.value())); 116 | } 117 | break; 118 | case HOST_NOTIFICATION_RMVHOOK: 119 | { 120 | auto info = *(HookRemovedNotif*)buffer; 121 | RemoveThreads([&](ThreadParam tp) { return tp.processId == processId && tp.addr == info.address; }); 122 | } 123 | break; 124 | case HOST_NOTIFICATION_TEXT: 125 | { 126 | auto info = *(ConsoleOutputNotif*)buffer; 127 | Host::AddConsoleOutput(StringToWideString(info.message)); 128 | } 129 | break; 130 | default: 131 | { 132 | auto tp = *(ThreadParam*)buffer; 133 | auto textThreadsByParams = ::textThreadsByParams.Acquire(); 134 | auto thread = textThreadsByParams->find(tp); 135 | if (thread == textThreadsByParams->end()) 136 | { 137 | try { thread = textThreadsByParams->try_emplace(tp, tp, processRecordsByIds->at(tp.processId).GetHook(tp.addr).hp).first; } 138 | catch (std::out_of_range) { continue; } // probably garbage data in pipe, try again 139 | OnCreate(thread->second); 140 | } 141 | thread->second.Push(buffer + sizeof(tp), bytesRead - sizeof(tp)); 142 | } 143 | break; 144 | } 145 | 146 | RemoveThreads([&](ThreadParam tp) { return tp.processId == processId; }); 147 | OnDisconnect(processId); 148 | processRecordsByIds->erase(processId); 149 | }).detach(); 150 | } 151 | } 152 | 153 | namespace Host 154 | { 155 | void Start(ProcessEventHandler Connect, ProcessEventHandler Disconnect, ThreadEventHandler Create, ThreadEventHandler Destroy, TextThread::OutputCallback Output) 156 | { 157 | OnConnect = Connect; 158 | OnDisconnect = Disconnect; 159 | OnCreate = [Create](TextThread& thread) { Create(thread); thread.Start(); }; 160 | OnDestroy = [Destroy](TextThread& thread) { thread.Stop(); Destroy(thread); }; 161 | TextThread::Output = Output; 162 | 163 | textThreadsByParams->try_emplace(console, console, HookParam{}, CONSOLE); 164 | OnCreate(GetThread(console)); 165 | CreatePipe(); 166 | } 167 | 168 | void InjectProcess(DWORD processId) 169 | { 170 | std::thread([processId] 171 | { 172 | if (processId == GetCurrentProcessId()) return; 173 | 174 | WinMutex(ITH_HOOKMAN_MUTEX_ + std::to_wstring(processId)); 175 | if (GetLastError() == ERROR_ALREADY_EXISTS) return AddConsoleOutput(ALREADY_INJECTED); 176 | 177 | if (AutoHandle<> process = OpenProcess(PROCESS_ALL_ACCESS, FALSE, processId)) 178 | { 179 | #ifdef _WIN64 180 | BOOL invalidProcess = FALSE; 181 | IsWow64Process(process, &invalidProcess); 182 | if (invalidProcess) return AddConsoleOutput(NEED_32_BIT); 183 | #endif 184 | static std::wstring location = std::filesystem::path(GetModuleFilename().value()).replace_filename(ITH_DLL); 185 | if (LPVOID remoteData = VirtualAllocEx(process, nullptr, (location.size() + 1) * sizeof(wchar_t), MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE)) 186 | { 187 | WriteProcessMemory(process, remoteData, location.c_str(), (location.size() + 1) * sizeof(wchar_t), nullptr); 188 | if (AutoHandle<> thread = CreateRemoteThread(process, nullptr, 0, (LPTHREAD_START_ROUTINE)LoadLibraryW, remoteData, 0, nullptr)) WaitForSingleObject(thread, INFINITE); 189 | else if (GetLastError() == ERROR_ACCESS_DENIED) AddConsoleOutput(NEED_64_BIT); // https://stackoverflow.com/questions/16091141/createremotethread-access-denied 190 | VirtualFreeEx(process, remoteData, 0, MEM_RELEASE); 191 | return; 192 | } 193 | } 194 | 195 | AddConsoleOutput(INJECT_FAILED); 196 | }).detach(); 197 | } 198 | 199 | void DetachProcess(DWORD processId) 200 | { 201 | processRecordsByIds->at(processId).Send(HOST_COMMAND_DETACH); 202 | } 203 | 204 | void InsertHook(DWORD processId, HookParam hp) 205 | { 206 | processRecordsByIds->at(processId).Send(InsertHookCmd(hp)); 207 | } 208 | 209 | void RemoveHook(DWORD processId, uint64_t address) 210 | { 211 | processRecordsByIds->at(processId).Send(RemoveHookCmd(address)); 212 | } 213 | 214 | void FindHooks(DWORD processId, SearchParam sp, HookEventHandler HookFound) 215 | { 216 | if (HookFound) processRecordsByIds->at(processId).OnHookFound = HookFound; 217 | processRecordsByIds->at(processId).Send(FindHookCmd(sp)); 218 | } 219 | 220 | TextThread& GetThread(ThreadParam tp) 221 | { 222 | return textThreadsByParams->at(tp); 223 | } 224 | 225 | TextThread* GetThread(int64_t handle) 226 | { 227 | for (auto& [tp, thread] : textThreadsByParams.Acquire().contents) 228 | if (thread.handle == handle) return &thread; 229 | return nullptr; 230 | } 231 | 232 | void AddConsoleOutput(std::wstring text) 233 | { 234 | GetThread(console).AddSentence(std::move(text)); 235 | } 236 | 237 | void AddClipboardThread(DWORD thread_id) 238 | { 239 | textThreadsByParams->try_emplace(clipboard, clipboard, HookParam{}, CLIPBOARD); 240 | OnCreate(GetThread(clipboard)); 241 | static AutoHandle<> clipboardUpdate = CreateEventW(nullptr, FALSE, TRUE, NULL); 242 | SetWindowsHookExW(WH_GETMESSAGE, [](int statusCode, WPARAM wParam, LPARAM lParam) 243 | { 244 | if (statusCode == HC_ACTION && wParam == PM_REMOVE && ((MSG*)lParam)->message == WM_CLIPBOARDUPDATE) SetEvent(clipboardUpdate); 245 | return CallNextHookEx(NULL, statusCode, wParam, lParam); 246 | }, NULL, thread_id); 247 | std::thread([] 248 | { 249 | while (WaitForSingleObject(clipboardUpdate, INFINITE) == WAIT_OBJECT_0) 250 | { 251 | std::optional clipboardText; 252 | for (int retry = 0; !clipboardText && retry < 3; ++retry) // retry loop in case something else is using the clipboard 253 | { 254 | Sleep(10); 255 | if (!IsClipboardFormatAvailable(CF_UNICODETEXT)) continue; 256 | if (!OpenClipboard(NULL)) continue; 257 | if (AutoHandle> clipboard = GetClipboardData(CF_UNICODETEXT)) clipboardText = (wchar_t*)GlobalLock(clipboard); 258 | CloseClipboard(); 259 | } 260 | if (clipboardText) GetThread(clipboard).AddSentence(std::move(clipboardText.value())); 261 | } 262 | throw; 263 | }).detach(); 264 | } 265 | } -------------------------------------------------------------------------------- /MisakaHookFinder/host.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "pch.h" 4 | #include "textthread.h" 5 | 6 | namespace Host 7 | { 8 | using ProcessEventHandler = std::function;; 9 | using ThreadEventHandler = std::function; 10 | using HookEventHandler = std::function; 11 | void Start(ProcessEventHandler Connect, ProcessEventHandler Disconnect, ThreadEventHandler Create, ThreadEventHandler Destroy, TextThread::OutputCallback Output); 12 | 13 | void InjectProcess(DWORD processId); 14 | void DetachProcess(DWORD processId); 15 | 16 | void InsertHook(DWORD processId, HookParam hp); 17 | void RemoveHook(DWORD processId, uint64_t address); 18 | void FindHooks(DWORD processId, SearchParam sp, HookEventHandler HookFound = {}); 19 | 20 | TextThread* GetThread(int64_t handle); 21 | TextThread& GetThread(ThreadParam tp); 22 | 23 | void AddConsoleOutput(std::wstring text); 24 | void AddClipboardThread(DWORD thread_id); 25 | 26 | inline int defaultCodepage = SHIFT_JIS; 27 | 28 | constexpr ThreadParam console{ 0, -1LL, -1LL, -1LL }, clipboard{ 0, 0, -1LL, -1LL }; 29 | } 30 | -------------------------------------------------------------------------------- /MisakaHookFinder/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmin0822/MisakaHookFinder/77a15864652305c1e84593319987d0407b370567/MisakaHookFinder/icon.ico -------------------------------------------------------------------------------- /MisakaHookFinder/main.cpp: -------------------------------------------------------------------------------- 1 | #include "MisakaHookFinder.h" 2 | #include 3 | 4 | int main(int argc, char *argv[]) 5 | { 6 | QApplication a(argc, argv); 7 | MisakaHookFinder w; 8 | w.show(); 9 | return a.exec(); 10 | } 11 | -------------------------------------------------------------------------------- /MisakaHookFinder/module.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "pch.h" 4 | #include 5 | 6 | inline std::optional GetModuleFilename(DWORD processId, HMODULE module = NULL) 7 | { 8 | std::vector buffer(MAX_PATH); 9 | if (AutoHandle<> process = OpenProcess(PROCESS_VM_READ | PROCESS_QUERY_INFORMATION, FALSE, processId)) 10 | if (GetModuleFileNameExW(process, module, buffer.data(), MAX_PATH)) return buffer.data(); 11 | return {}; 12 | } 13 | 14 | inline std::optional GetModuleFilename(HMODULE module = NULL) 15 | { 16 | std::vector buffer(MAX_PATH); 17 | if (GetModuleFileNameW(module, buffer.data(), MAX_PATH)) return buffer.data(); 18 | return {}; 19 | } 20 | 21 | inline std::vector>> GetAllProcesses() 22 | { 23 | std::vector processIds(10000); 24 | DWORD spaceUsed = 0; 25 | EnumProcesses(processIds.data(), 10000 * sizeof(DWORD), &spaceUsed); 26 | std::vector>> processes; 27 | for (int i = 0; i < spaceUsed / sizeof(DWORD); ++i) processes.push_back({ processIds[i], GetModuleFilename(processIds[i]) }); 28 | return processes; 29 | } -------------------------------------------------------------------------------- /MisakaHookFinder/pch.cpp: -------------------------------------------------------------------------------- 1 | // pch.cpp: 与预编译标头对应的源文件 2 | 3 | #include "pch.h" 4 | 5 | // 当使用预编译的头时,需要使用此源文件,编译才能成功。 6 | -------------------------------------------------------------------------------- /MisakaHookFinder/pch.h: -------------------------------------------------------------------------------- 1 | // pch.h: 这是预编译标头文件。 2 | // 下方列出的文件仅编译一次,提高了将来生成的生成性能。 3 | // 这还将影响 IntelliSense 性能,包括代码完成和许多代码浏览功能。 4 | // 但是,如果此处列出的文件中的任何一个在生成之间有更新,它们全部都将被重新编译。 5 | // 请勿在此处添加要频繁更新的文件,这将使得性能优势无效。 6 | 7 | #ifndef PCH_H 8 | #define PCH_H 9 | 10 | // 添加要在此处预编译的标头 11 | #include "common.h" 12 | #endif //PCH_H 13 | -------------------------------------------------------------------------------- /MisakaHookFinder/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmin0822/MisakaHookFinder/77a15864652305c1e84593319987d0407b370567/MisakaHookFinder/resource.h -------------------------------------------------------------------------------- /MisakaHookFinder/result.txt: -------------------------------------------------------------------------------- 1 | HQ0@7FFCAB81E5B0 => 䢐㮃甀䠑펋赈⑌䠰箃楴僫똏䑃꣐甁䠠䮋䠘즅᝴臶į 2 | <=====> 3 | HQ14+0@7FFCAB81E5B0 => 楴僫똏䑃꣐甁䠠䮋䠘즅᝴臶į 4 | <=====> 5 | HS932#14+0@7FFCAB81E5B0 => ti・カCDタ・ィu H規H・t/ 6 | <=====> 7 | HS65001#14+0@7FFCAB81E5B0 => ti�P�CD���Шu H�KH��t��/ 8 | <=====> 9 | HS65001#30@7FFCAB81E5B0 => H��H��u%D�}o� 10 | <=====> 11 | HQ14+30@7FFCAB81E5B0 => 睍譄䓃䶋䥿횋襈⑌䠠쾋�-䠀욋 12 | <=====> 13 | HS932#14+30@7FFCAB81E5B0 => MwD凝D貴I禁H鵜$ H均鞜- 14 | <=====> 15 | HS65001#14+30@7FFCAB81E5B0 => MwD��D�MI��H�L$ H����- 16 | <=====> 17 | HQ-5C@7FFCABF9F700 => 컩ꘊ埾荈⃬㶀걚>䠀�曆ትඋ䑮﷨逥웿䄅㺬Ā譈鼅槬⾀Ȁᡴ뢃à 18 | <=====> 19 | HS932#-5C@7FFCABF9F700 => 鯰 20 | ヲWH・ €=Zャ> 21 | <=====> 22 | HS65001#-5C@7FFCABF9F700 => �� 23 | ��WH�� �=Z�> 24 | <=====> 25 | HQ14+-5C@7FFCABF9F700 => 曆ትඋ䑮﷨逥웿䄅㺬Ā譈鼅槬⾀Ȁᡴ뢃à 26 | <=====> 27 | HQ0@7FFCABF9F700 => 쀳荈⣄쳃쳌區荈⃬證ࡁ譍䣙�譌䳑쪋譍၃ႋ證䄋틿譈⁋࿳䐑〤⿨ر䠀�胶Į 28 | <=====> 29 | HS932#0@7FFCABF9F700 => 3タHζ(テフフフ@SH・ I帰M緊H芹L錦L玉M気・I・AメH規 ・D$0・1 30 | <=====> 31 | HS65001#0@7FFCABF9F700 => 3�H��(����@SH�� I�AM��H��L��L��M�C�I� A��H�K �D$0�/1 32 | <=====> 33 | HQ14+0@7FFCABF9F700 => 譍䣙�譌䳑쪋譍၃ႋ證䄋틿譈⁋࿳䐑〤⿨ر䠀�胶Į 34 | <=====> 35 | HS932#14+0@7FFCABF9F700 => M緊H芹L錦L玉M気・I・AメH規 ・D$0・1 36 | <=====> 37 | HS65001#14+0@7FFCABF9F700 => M��H��L��L��M�C�I� A��H�K �D$0�/1 38 | <=====> 39 | HQ30@7FFCABF9F700 => ˫쀳譈⑜䡠璋栤荈僄썟~郿譈୵譈忍 40 | <=====> 41 | HS932#30@7FFCABF9F700 => ・3タH欺$`H逆$hHζP_テ韶^食曲鑾 ・H曲靉_ 42 | <=====> 43 | HS65001#30@7FFCABF9F700 => �3�H�\$`H�t$hH��P_���^���H���u ��H����_ 44 | <=====> 45 | HS932#14+30@7FFCABF9F700 => 韶^食曲鑾 ・H曲靉_ 46 | <=====> 47 | HS65001#14+30@7FFCABF9F700 => ��^���H���u ��H����_ 48 | <=====> 49 | HQ30@7FFCAB81E5B0 => 譈⑄䡘岋値譈⑬䥠ډ證䣆쒃䄰彞썞쳌쳌쳌쳌䣌֋씁âh쳠쳌쳌䃌䡓䠠֋앓â譈䣙쪋탿襈䠃쎋荈⃄썛쳌쳌쳌쳌쳌쳌쳌䃌䡓䰠උ씳â譈䣂�證䣐좋a䣑Ή譈䣃쒃嬠쳃쳌쳌쳌䃌䡓䠠֋씋â譈䣙쪋탿譌䣀咍〤줳ᗿ쏛â譈⑄䠰Ή譈䣃쒃嬠쳃쳌쳌쳌쳌䣌岉ဤ䡗䠠֋쓇â譈䣙쪋證￸䳐삋赈⑔㌰￉鐕䠀䲋〤襈䠋즅ॴ譈ᅲؕ䠀쎋譈⑜䠸쒃张䣃֋쒉âh쳠쳌쳌䃌䡓䠠ᶋ쉳â赈⑔䰰솋줳ᗿ썃â譈⑌P䣓쒃嬠쳃쳌쳌䣌쒋䡕ꢍ﹘￿腈ꃬ䠀墉䠈�襈譈䳺碉䗘S襌⑼䰠粉㠤衄⑼䰨붉ǀ 50 | <=====> 51 | HS932#30@7FFCAB81E5B0 => H汽$XH欺$PH詰$`I・I業Hζ0A^_^テフフフフフフフフフH・ナ・ 52 | <=====> 53 | HS65001#30@7FFCAB81E5B0 => H�D$XH�\$PH�l$`I�I��H��0A^_^����������H��� 54 | <=====> 55 | HQ14+30@7FFCAB81E5B0 => 䣆쒃䄰彞썞쳌쳌쳌쳌䣌֋씁âh쳠쳌쳌䃌䡓䠠֋앓â譈䣙쪋탿襈䠃쎋荈⃄썛쳌쳌쳌쳌쳌쳌쳌䃌䡓䰠උ씳â譈䣂�證䣐좋a䣑Ή譈䣃쒃嬠쳃쳌쳌쳌䃌䡓䠠֋씋â譈䣙쪋탿譌䣀咍〤줳ᗿ쏛â譈⑄䠰Ή譈䣃쒃嬠쳃쳌쳌쳌쳌䣌岉ဤ䡗䠠֋쓇â譈䣙쪋證￸䳐삋赈⑔㌰￉鐕䠀䲋〤襈䠋즅ॴ譈ᅲؕ䠀쎋譈⑜䠸쒃张䣃֋쒉âh쳠쳌쳌䃌䡓䠠ᶋ쉳â赈⑔䰰솋줳ᗿ썃â譈⑌P䣓쒃嬠쳃쳌쳌䣌쒋䡕ꢍ﹘￿腈ꃬ䠀墉䠈�襈譈䳺碉䗘S襌⑼䰠粉㠤衄⑼䰨붉ǀ 56 | <=====> 57 | HS932#14+30@7FFCAB81E5B0 => ニHζ0A^_^テフフフフフフフフフH・ナ・ 58 | <=====> 59 | HS65001#14+30@7FFCAB81E5B0 => �H��0A^_^����������H��� 60 | <=====> 61 | HQ14+0@7FFCABC75E70 => 쾋燨촇䣿උ辢j捈⾁Ȁ൴넹à 62 | <=====> 63 | HS65001#14+0@7FFCABC75E70 => ���q��H� ��j 64 | <=====> 65 | HQ0@7FFCABC74B40 => 譈⑜萰࿀삔荈⃄썟쳌쳌쳌쳌ꑮM䡗䠠֋໧q�譈䣹삅፵赈㘍僌뾹ᅡ襈쨅焎謀䣓쾋譈⑜䠰쒃张h䣠岉ࠤ䡗耠攽焎 66 | <=====> 67 | HS932#0@7FFCABC74B40 => H欺$0・搬Hζ _テフフフフフフフフフ駭、-WH・ H・・q 68 | <=====> 69 | HS65001#0@7FFCABC74B40 => H�\$0����H�� _�����������n�-�WH�� H��q 70 | <=====> 71 | HQ14+0@7FFCABC74B40 => 쳌쳌ꑮM䡗䠠֋໧q�譈䣹삅፵赈㘍僌뾹ᅡ襈쨅焎謀䣓쾋譈⑜䠰쒃张h䣠岉ࠤ䡗耠攽焎 72 | <=====> 73 | HS932#14+0@7FFCABC74B40 => フフフフフ駭、-WH・ H・・q 74 | <=====> 75 | HS65001#14+0@7FFCABC74B40 => ������n�-�WH�� H��q 76 | <=====> 77 | HQ14+30@7FFCABC74B40 => 쾋燨촇䣿උ辢j捈⾁Ȁ൴넹à 78 | <=====> 79 | HS65001#14+30@7FFCABC74B40 => ���q��H� ��j 80 | <=====> 81 | HQ14+0@7FFCABC6A270 => ࡀ䒉砤࿳琐砤䓲ᄏ⑄ང䰐琤䓳ᄏ⑌ᄏ⑴ང䐑․൴넹à 82 | <=====> 83 | HS932#14+0@7FFCABC6A270 => @吋$x・t$xD$pL$tL$$・t$(D$ t 9ア・ 84 | <=====> 85 | HS65001#14+0@7FFCABC6A270 => @�D$x�t$x�DD$p�DL$t�DL$$�t$(�DD$ t 9�� 86 | <=====> 87 | HQ0@7FFCABC667F0 => ㍅ང唑䢰喍䒰疉䢸䶍࿰ᄏ瓨휐蓿࿀鎄䠀֋芽j胶į 88 | <=====> 89 | HS932#0@7FFCABC667F0 => E3タUーH攻ーD疫クH庚・ 90 | <=====> 91 | HS65001#0@7FFCABC667F0 => E3��DU�H�U�D�u�H�M� 92 | <=====> 93 | HQ14+0@7FFCABC667F0 => ࿰ᄏ瓨휐蓿࿀鎄䠀֋芽j胶į 94 | <=====> 95 | HQ-C@7FFCABC75D30 => ᄆ蟿￘￿￿￘￿￿￘￿￿ÿ쁜歌ༀ 96 | <=====> 97 | HQ14+0@7FFCABC75D30 => ؐ⤏ትඋ郍쓨邩웿㼭Ā譈不橿⾁Ȁ๴㥄 98 | <=====> 99 | HQ-C@7FFCABC74B40 => ᄆ蟿￘￿￿￘￿￿￘￿￿ÿ쁜歌ༀ 100 | <=====> 101 | HQ14+0@7FFCABC74B40 => ؐ⤏ትඋ郍쓨邩웿㼭Ā譈不橿⾁Ȁ๴㥄 102 | <=====> 103 | HQ20@7FFCAB81E5B0 => 쀳荈⣄쳃쳌쳌쳌쳌䣌䥘䆋䵀�譍ぁ譌䣑咉䠤襈⑄䥀䆋䤸压䤈஋襈⑄䄸‹譍၃䒉〤證⡁襈⑄䤨䆋䴠䦋䠘䒉․a䣒쒃썘쳌쳌쳌쳌쳌䃌䡓䠠솋譈䧚좋탿譈⁋࿲䐑〤胨ب䠀�胶Į 104 | <=====> 105 | HS932#20@7FFCAB81E5B0 => 3タHζ(テフフフフフフフフフフH・XI帰@M緊M帰0L錦H欝$HH吋$@I帰8I鬼I・H吋$8A・ 106 | <=====> 107 | HS65001#20@7FFCAB81E5B0 => 3�H��(�����������H��XI�A@M��M�A0L��H�T$HH�D$@I�A8I�SI� H�D$8A� 108 | <=====> 109 | HQ14+20@7FFCAB81E5B0 => 䥘䆋䵀�譍ぁ譌䣑咉䠤襈⑄䥀䆋䤸压䤈஋襈⑄䄸‹譍၃䒉〤證⡁襈⑄䤨䆋䴠䦋䠘䒉․a䣒쒃썘쳌쳌쳌쳌쳌䃌䡓䠠솋譈䧚좋탿譈⁋࿲䐑〤胨ب䠀�胶Į 110 | <=====> 111 | HS932#14+20@7FFCAB81E5B0 => XI帰@M緊M帰0L錦H欝$HH吋$@I帰8I鬼I・H吋$8A・ 112 | <=====> 113 | HS65001#14+20@7FFCAB81E5B0 => XI�A@M��M�A0L��H�T$HH�D$@I�A8I�SI� H�D$8A� 114 | <=====> 115 | HQ40@7FFCAB81E5B0 => ˫쀳譈⑜䡠璋栤荈僄썟~郿譈୵譈忍 116 | <=====> 117 | HS932#40@7FFCAB81E5B0 => ・3タH欺$`H逆$hHζP_テ韶^食曲鑾 ・H曲靉_ 118 | <=====> 119 | HS65001#40@7FFCAB81E5B0 => �3�H�\$`H�t$hH��P_���^���H���u ��H����_ 120 | <=====> 121 | HS932#14+40@7FFCAB81E5B0 => 韶^食曲鑾 ・H曲靉_ 122 | <=====> 123 | HS65001#14+40@7FFCAB81E5B0 => ��^���H���u ��H����_ 124 | <=====> 125 | HQ14+0@7FFCABC75E70 => 愫庚£׆鍠䠁䚋䄘ﺋ譁䣎삅萏ʶ 126 | <=====> 127 | HQ40@7FFCABC75E70 => 쀳荈⣄쳃쳌쳌쳌쳌쳌쳌譌䷜䮉䴠䎉䤘厉䤐䮉匈噕䅗䅔䅕䅖䡗Ø 128 | <=====> 129 | HS932#40@7FFCABC75E70 => 3タHζ(テフフフフフフフフフフフフフL衿M卯 M韻I唄I卯SUVWATAUAVAWH・リ 130 | <=====> 131 | HS65001#40@7FFCABC75E70 => 3�H��(��������������L��M�K M�CI�SI�KSUVWATAUAVAWH��� 132 | <=====> 133 | HQ14+40@7FFCABC75E70 => 譌䷜䮉䴠䎉䤘厉䤐䮉匈噕䅗䅔䅕䅖䡗Ø 134 | <=====> 135 | HS932#14+40@7FFCABC75E70 => L衿M卯 M韻I唄I卯SUVWATAUAVAWH・リ 136 | <=====> 137 | HS65001#14+40@7FFCABC75E70 => L��M�K M�CI�SI�KSUVWATAUAVAWH��� 138 | <=====> 139 | HQ14+30@7FFCABC74B40 => 愫庚£׆鍠䠁䚋䄘ﺋ譁䣎삅萏ʶ 140 | <=====> 141 | HQ0@7FFCABC75E70 => 삄㡴譈ᡎ蕈࿉䒄䰀֋뱯º힋픝䣿삅萏ȭ 142 | <=====> 143 | HS65001#0@7FFCABC75E70 => ��t8H�NH���D 144 | <=====> 145 | HQ30@7FFCABC74B40 => 삄㡴譈ᡎ蕈࿉䒄䰀֋뱯º힋픝䣿삅萏ȭ 146 | <=====> 147 | HS65001#30@7FFCABC74B40 => ��t8H�NH���D 148 | <=====> 149 | HQ40@7FFCAB7DDD00 => 쀳荈⣄쳃쳌쳌쳌쳌쳌쳌譌䷜䮉䴠䎉䤘厉䤐䮉匈噕䅗䅔䅕䅖䡗Ø 150 | <=====> 151 | HS932#40@7FFCAB7DDD00 => 3タHζ(テフフフフフフフフフフフフフL衿M卯 M韻I唄I卯SUVWATAUAVAWH・リ 152 | <=====> 153 | HS65001#40@7FFCAB7DDD00 => 3�H��(��������������L��M�K M�CI�SI�KSUVWATAUAVAWH��� 154 | <=====> 155 | HQ14+40@7FFCAB7DDD00 => 譌䷜䮉䴠䎉䤘厉䤐䮉匈噕䅗䅔䅕䅖䡗Ø 156 | <=====> 157 | HS932#14+40@7FFCAB7DDD00 => L衿M卯 M韻I唄I卯SUVWATAUAVAWH・リ 158 | <=====> 159 | HS65001#14+40@7FFCAB7DDD00 => L��M�K M�CI�SI�KSUVWATAUAVAWH��� 160 | <=====> 161 | HQ14+40@7FFCABC75E70 => 邐萀痀㌨䣒쮋èﻃ䣿삅ⅴ譌䠀좋證䠀쒃嬠i뀀䠁쒃嬠㏃¢쳌䗌쀳툳۩ 162 | <=====> 163 | HQ14+40@7FFCABC75D30 => 邐萀痀㌨䣒쮋èﻃ䣿삅ⅴ譌䠀좋證䠀쒃嬠i뀀䠁쒃嬠㏃¢쳌䗌쀳툳۩ 164 | <=====> 165 | HQ14+40@7FFCABC74B40 => 邐萀痀㌨䣒쮋èﻃ䣿삅ⅴ譌䠀좋證䠀쒃嬠i뀀䠁쒃嬠㏃¢쳌䗌쀳툳۩ 166 | <=====> 167 | HQ10@7FFCABC75E70 => 譈䠀쒃嬠䣃䒍㠤襈⑜䠸‹荈⃄썛譈䣓䲍㠤﷨硲䣿䲍䠤譈ᆪ譈䣐䲍䀤㏨茷䣿䲋䀤맨쳿譈⑌￶쳌쳌쳌쳌쳌쳌쳌啀坓譈䣬䡀�赈⁕S줳㍅䣀綉䠨綉@��䰀쎋赈㡕줳ᗿ�Ø譌㡅赈さ줳襈ぽᗿ�Ø譌ぅ赈⁕줳ᗿ�Ø譈⁍蕈࿉ࢄ�￶蕈࿀彩 168 | <=====> 169 | HQ40@7FFCABC74B40 => 譈䠀쒃嬠䣃䒍㠤襈⑜䠸‹荈⃄썛譈䣓䲍㠤﷨硲䣿䲍䠤譈ᆪ譈䣐䲍䀤㏨茷䣿䲋䀤맨쳿譈⑌￶쳌쳌쳌쳌쳌쳌쳌啀坓譈䣬䡀�赈⁕S줳㍅䣀綉䠨綉@��䰀쎋赈㡕줳ᗿ�Ø譌㡅赈さ줳襈ぽᗿ�Ø譌ぅ赈⁕줳ᗿ�Ø譈⁍蕈࿉ࢄ�￶蕈࿀彩 170 | <=====> 171 | HQ14+40@7FFCABC74B40 => ‹荈⃄썛譈䣓䲍㠤﷨硲䣿䲍䠤譈ᆪ譈䣐䲍䀤㏨茷䣿䲋䀤맨쳿譈⑌￶쳌쳌쳌쳌쳌쳌쳌啀坓譈䣬䡀�赈⁕S줳㍅䣀綉䠨綉@��䰀쎋赈㡕줳ᗿ�Ø譌㡅赈さ줳襈ぽᗿ�Ø譌ぅ赈⁕줳ᗿ�Ø譈⁍蕈࿉ࢄ�￶蕈࿀彩 172 | <=====> 173 | HQ10@7FFCABC75D30 => 譈䠀쒃嬠䣃䒍㠤襈⑜䠸‹荈⃄썛譈䣓䲍㠤﷨硲䣿䲍䠤譈ᆪ譈䣐䲍䀤㏨茷䣿䲋䀤맨쳿譈⑌￶쳌쳌쳌쳌쳌쳌쳌啀坓譈䣬䡀�赈⁕S줳㍅䣀綉䠨綉@��䰀쎋赈㡕줳ᗿ�Ø譌㡅赈さ줳襈ぽᗿ�Ø譌ぅ赈⁕줳ᗿ�Ø譈⁍蕈࿉ࢄ�￶蕈࿀彩 174 | <=====> 175 | HQ14+10@7FFCABC75D30 => ‹荈⃄썛譈䣓䲍㠤﷨硲䣿䲍䠤譈ᆪ譈䣐䲍䀤㏨茷䣿䲋䀤맨쳿譈⑌￶쳌쳌쳌쳌쳌쳌쳌啀坓譈䣬䡀�赈⁕S줳㍅䣀綉䠨綉@��䰀쎋赈㡕줳ᗿ�Ø譌㡅赈さ줳襈ぽᗿ�Ø譌ぅ赈⁕줳ᗿ�Ø譈⁍蕈࿉ࢄ�￶蕈࿀彩 176 | <=====> 177 | HQ10@7FFCABC74B40 => 譈䠀쒃嬠䣃䒍㠤襈⑜䠸‹荈⃄썛譈䣓䲍㠤﷨硲䣿䲍䠤譈ᆪ譈䣐䲍䀤㏨茷䣿䲋䀤맨쳿譈⑌￶쳌쳌쳌쳌쳌쳌쳌啀坓譈䣬䡀�赈⁕S줳㍅䣀綉䠨綉@��䰀쎋赈㡕줳ᗿ�Ø譌㡅赈さ줳襈ぽᗿ�Ø譌ぅ赈⁕줳ᗿ�Ø譈⁍蕈࿉ࢄ�￶蕈࿀彩 178 | <=====> 179 | HQ14+40@7FFCABC75E70 => aꂑ䀀윊譈䃋锏㏇ꐂ￾蕈瓀䰺‹譈䧈邋̈ 180 | <=====> 181 | HQ14+40@7FFCABC75D30 => aꂑ䀀윊譈䃋锏㏇ꐂ￾蕈瓀䰺‹譈䧈邋̈ 182 | <=====> 183 | HQ14+40@7FFCABC74B40 => aꂑ䀀윊譈䃋锏㏇ꐂ￾蕈瓀䰺‹譈䧈邋̈ 184 | <=====> 185 | HQ14+10@7FFCABC75E70 => 셉ר譂舄ꌏ࿈삒⏫赈툕墨䠀䲍䀤儘䠀咍㠤줳譌＀瀕㌚㈁䣀䲋㠤蕈痉䠆쒃嬠囹P쳌쳌쳌쳌䃌䡓䠠䓇㠤 186 | <=====> 187 | HS932#14+10@7FFCABC75E70 => Iチ・B・・」ネ賃・H・メ:・ 188 | <=====> 189 | HS65001#14+10@7FFCABC75E70 => I��B�������#H��:� 190 | <=====> 191 | HQ14+40@7FFCABC75E70 => 蔀䃀똏࿏쵏똏㈂࿀琨䀤譈⑴䡐沋瀤荈壄孟㏃헜¢쳌쳌쳌쳌쳌쳌荈⣬줳헨➣＀菈˸阏䣀쒃쌨쳌쳌쳌쳌區荈烬㶀঒䠀�ትඋᶔ^揨웿笅載Ā譈⡃蕈࿀ຄ耀䁸ༀꎅ 192 | <=====> 193 | HQ14+40@7FFCABC74B40 => 셉ר譂舄ꌏ࿈삒⏫赈툕墨䠀䲍䀤儘䠀咍㠤줳譌＀瀕㌚㈁䣀䲋㠤蕈痉䠆쒃嬠囹P쳌쳌쳌쳌䃌䡓䠠䓇㠤 194 | <=====> 195 | HS932#14+40@7FFCABC74B40 => Iチ・B・・」ネ賃・H・メ:・ 196 | <=====> 197 | HS65001#14+40@7FFCABC74B40 => I��B�������#H��:� 198 | <=====> 199 | HQ14+10@7FFCABC75D30 => 셉ר譂舄ꌏ࿈삒⏫赈툕墨䠀䲍䀤儘䠀咍㠤줳譌＀瀕㌚㈁䣀䲋㠤蕈痉䠆쒃嬠囹P쳌쳌쳌쳌䃌䡓䠠䓇㠤 200 | <=====> 201 | HS932#14+10@7FFCABC75D30 => Iチ・B・・」ネ賃・H・メ:・ 202 | <=====> 203 | HS65001#14+10@7FFCABC75D30 => I��B�������#H��:� 204 | <=====> 205 | HQ14+40@7FFCABC75D30 => 蔀䃀똏࿏쵏똏㈂࿀琨䀤譈⑴䡐沋瀤荈壄孟㏃헜¢쳌쳌쳌쳌쳌쳌荈⣬줳헨➣＀菈˸阏䣀쒃쌨쳌쳌쳌쳌區荈烬㶀঒䠀�ትඋᶔ^揨웿笅載Ā譈⡃蕈࿀ຄ耀䁸ༀꎅ 206 | <=====> 207 | HQ14+40@7FFCABC74B40 => 蔀䃀똏࿏쵏똏㈂࿀琨䀤譈⑴䡐沋瀤荈壄孟㏃헜¢쳌쳌쳌쳌쳌쳌荈⣬줳헨➣＀菈˸阏䣀쒃쌨쳌쳌쳌쳌區荈烬㶀঒䠀�ትඋᶔ^揨웿笅載Ā譈⡃蕈࿀ຄ耀䁸ༀꎅ 208 | <=====> 209 | HQ14+40@7FFCABC75D30 => 譌䷜䮉䴠䎉䤘厉䤐䮉匈噕䅗䅔䅕䅖䡗Ø 210 | <=====> 211 | HS932#14+40@7FFCABC75D30 => L衿M卯 M韻I唄I卯SUVWATAUAVAWH・リ 212 | <=====> 213 | HS65001#14+40@7FFCABC75D30 => L��M�K M�CI�SI�KSUVWATAUAVAWH��� 214 | <=====> 215 | HQ14+40@7FFCABC74B40 => 譌䷜䮉䴠䎉䤘厉䤐䮉匈噕䅗䅔䅕䅖䡗Ø 216 | <=====> 217 | HS932#14+40@7FFCABC74B40 => L衿M卯 M韻I唄I卯SUVWATAUAVAWH・リ 218 | <=====> 219 | HS65001#14+40@7FFCABC74B40 => L��M�K M�CI�SI�KSUVWATAUAVAWH��� 220 | <=====> 221 | HQ0@7FFCABC75E70 => 삄ꑴ譈⁎蕈瓉䠒Ƌ譈䢐＀䂐㎉峳£쳌䃌䡓耠落辐 222 | <=====> 223 | HS932#0@7FFCABC75E70 => ・t、H起 H・tH・H巨H 224 | <=====> 225 | HS65001#0@7FFCABC75E70 => ��t�H�N H��tH�H��H 226 | <=====> 227 | HQ14+0@7FFCABC75E70 => ＀䂐㎉峳£쳌䃌䡓耠落辐 228 | <=====> 229 | HQ30@7FFCABC74B40 => 삄ꑴ譈⁎蕈瓉䠒Ƌ譈䢐＀䂐㎉峳£쳌䃌䡓耠落辐 230 | <=====> 231 | HS932#30@7FFCABC74B40 => ・t、H起 H・tH・H巨H 232 | <=====> 233 | HS65001#30@7FFCABC74B40 => ��t�H�N H��tH�H��H 234 | <=====> 235 | HQ14+30@7FFCABC74B40 => ＀䂐㎉峳£쳌䃌䡓耠落辐 236 | <=====> 237 | HQ0@7FFCABA938D0 => 觫줳쳿쳌區荈⃬㶀還甀謒茍愨宦£׆遰䠁උ℈»菨䣿ᖋ詼»譈䣈�釨ℇ䠀උℒ»譈뢑 238 | <=====> 239 | HS932#0@7FFCABA938D0 => ・3ノ頤\・フフフ@SH・ €=ю・ 240 | <=====> 241 | HS65001#0@7FFCABA938D0 => �3���\�����@SH�� �=��� 242 | <=====> 243 | HQ14+0@7FFCABA938D0 => 還甀謒茍愨宦£׆遰䠁උ℈»菨䣿ᖋ詼»譈䣈�釨ℇ䠀උℒ»譈뢑 244 | <=====> 245 | HQ40@7FFCABA938D0 => 쀳荈⣄쳃쳌쳌쳌쳌쳌쳌譌䷜䮉䴠䎉䤘厉䤐䮉匈噕䅗䅔䅕䅖䡗Ø 246 | <=====> 247 | HS932#40@7FFCABA938D0 => 3タHζ(テフフフフフフフフフフフフフL衿M卯 M韻I唄I卯SUVWATAUAVAWH・リ 248 | <=====> 249 | HS65001#40@7FFCABA938D0 => 3�H��(��������������L��M�K M�CI�SI�KSUVWATAUAVAWH��� 250 | <=====> 251 | HQ14+40@7FFCABA938D0 => 譌䷜䮉䴠䎉䤘厉䤐䮉匈噕䅗䅔䅕䅖䡗Ø 252 | <=====> 253 | HS932#14+40@7FFCABA938D0 => L衿M卯 M韻I唄I卯SUVWATAUAVAWH・リ 254 | <=====> 255 | HS65001#14+40@7FFCABA938D0 => L��M�K M�CI�SI�KSUVWATAUAVAWH��� 256 | <=====> 257 | HQ-C@7FFCAB9AF720 => 區荈僬㶀哹䠀�ትඋn웿鵔Ā툳⤏⑴䡀쮋취䠀삅萏Ȯ 258 | <=====> 259 | HQ14+-C@7FFCAB9AF720 => n웿鵔Ā툳⤏⑴䡀쮋취䠀삅萏Ȯ 260 | <=====> 261 | HQ0@7FFCAB9AF720 => 蕈࿀⺄㌀䣒좋૨ྕ㌀䣒䒉瀤譈ﱻ￿蕈࿀಄㌀䣒좋�㕵䠀උﴹÈ襈⑄⾁Ȁ๴릃à 262 | <=====> 263 | HQ14+0@7FFCAB9AF720 => 䣒䒉瀤譈ﱻ￿蕈࿀಄㌀䣒좋�㕵䠀උﴹÈ襈⑄⾁Ȁ๴릃à 264 | <=====> 265 | HS932#14+0@7FFCAB9AF720 => メH吋$pH桐閔・H・・ 266 | <=====> 267 | HS65001#14+0@7FFCAB9AF720 => �H�D$pH���{���H���  268 | <=====> 269 | HQ14+-C@7FFCABC75D30 => n웿鵔Ā툳⤏⑴䡀쮋취䠀삅萏Ȯ 270 | <=====> 271 | HQ14+20@7FFCABC75D30 => n웿鵔Ā툳⤏⑴䡀쮋취䠀삅萏Ȯ 272 | <=====> 273 | HQ14+30@7FFCABC75D30 => 䣒䒉瀤譈ﱻ￿蕈࿀಄㌀䣒좋�㕵䠀උﴹÈ襈⑄⾁Ȁ๴릃à 274 | <=====> 275 | HS932#14+30@7FFCABC75D30 => メH吋$pH桐閔・H・・ 276 | <=====> 277 | HS65001#14+30@7FFCABC75D30 => �H�D$pH���{���H���  278 | <=====> 279 | HQ14+-C@7FFCABC74B40 => n웿鵔Ā툳⤏⑴䡀쮋취䠀삅萏Ȯ 280 | <=====> 281 | HQ14+20@7FFCABC74B40 => n웿鵔Ā툳⤏⑴䡀쮋취䠀삅萏Ȯ 282 | <=====> 283 | HQ14+30@7FFCABC74B40 => 䣒䒉瀤譈ﱻ￿蕈࿀಄㌀䣒좋�㕵䠀උﴹÈ襈⑄⾁Ȁ๴릃à 284 | <=====> 285 | HS932#14+30@7FFCABC74B40 => メH吋$pH桐閔・H・・ 286 | <=====> 287 | HS65001#14+30@7FFCABC74B40 => �H�D$pH���{���H���  288 | <=====> 289 | HQ0@7FFCAB9AF0F0 => 蕈࿀಄㌀䣒좋�㕵䠀උﴹÈ襈⑄⾁Ȁ๴릃à 290 | <=====> 291 | HQ0@7FFCABC75D30 => 삄፴譈帕좠䠀쮋䛨䋶䠀䎉䠘䎋䠘岋〤荈⃄썟쳌᳞ロ䡗聠꘽鵗 292 | <=====> 293 | HQ14+0@7FFCABC75D30 => 䎉䠘䎋䠘岋〤荈⃄썟쳌᳞ロ䡗聠꘽鵗 294 | <=====> 295 | HS932#14+0@7FFCABC75D30 => 韻H気H欺$0Hζ _テフフフ鰰・WH・`€=ヲW・ 296 | <=====> 297 | HS65001#14+0@7FFCABC75D30 => �CH�CH�\$0H�� _��������WH��`�=�W� 298 | <=====> 299 | HQ0@7FFCABC74B40 => 삄፴譈帕좠䠀쮋䛨䋶䠀䎉䠘䎋䠘岋〤荈⃄썟쳌᳞ロ䡗聠꘽鵗 300 | <=====> 301 | HQ14+0@7FFCABC74B40 => 䎉䠘䎋䠘岋〤荈⃄썟쳌᳞ロ䡗聠꘽鵗 302 | <=====> 303 | HS932#14+0@7FFCABC74B40 => 韻H気H欺$0Hζ _テフフフ鰰・WH・`€=ヲW・ 304 | <=====> 305 | HS65001#14+0@7FFCABC74B40 => �CH�CH�\$0H�� _��������WH��`�=�W� 306 | <=====> 307 | HQ14+0@7FFCAB9AF720 => ⇓l譈࿋쁛࿳鳨䣿삅萏ĭ 308 | <=====> 309 | HQ14+30@7FFCABC75D30 => ⇓l譈࿋쁛࿳鳨䣿삅萏ĭ 310 | <=====> 311 | HQ14+30@7FFCABC74B40 => ⇓l譈࿋쁛࿳鳨䣿삅萏ĭ 312 | <=====> 313 | HQ0@7FFCABD13A60 => 譈名주ဏ⾁Ȁ䂋ᄏ⑄褠⑄琨茎 314 | <=====> 315 | HS932#14+0@7FFCABD13A60 => ・D$ 吋$(t・・ 316 | <=====> 317 | HS65001#14+0@7FFCABD13A60 => �D$ �D$(t��� 318 | <=====> 319 | HS932#-1C@7FFCABD13A60 => 320 | ラ#< 321 | ラ#< 322 | ラ#<8 323 | <=====> 324 | HS65001#-1C@7FFCABD13A60 => 325 | �#< 326 | �#< 327 | �#<8 328 | <=====> 329 | HQ0@7FFCABD13A60 => 譈죻ဏ⾁Ȁ䂋ᄏ⑄褠⑄琨茎 330 | <=====> 331 | HQ0@7FFCAB9AF0F0 => 蕈瓀䕟쀳赈⑌䠰킋◨㙄䠀උﮆÈ䂋⾁Ȁ䒉⠤๴릃à 332 | <=====> 333 | HS932#0@7FFCAB9AF0F0 => H・t_E3タH広$0H巾・D6 334 | <=====> 335 | HS65001#0@7FFCAB9AF0F0 => H��t_E3�H�L$0H���%D6 336 | <=====> 337 | HQ14+0@7FFCAB9AF0F0 => 䠀උﮆÈ䂋⾁Ȁ䒉⠤๴릃à 338 | <=====> 339 | HQ30@7FFCABC75D30 => 蕈瓀䕟쀳赈⑌䠰킋◨㙄䠀උﮆÈ䂋⾁Ȁ䒉⠤๴릃à 340 | <=====> 341 | HS932#30@7FFCABC75D30 => H・t_E3タH広$0H巾・D6 342 | <=====> 343 | HS65001#30@7FFCABC75D30 => H��t_E3�H�L$0H���%D6 344 | <=====> 345 | HQ14+30@7FFCABC75D30 => 䠀උﮆÈ䂋⾁Ȁ䒉⠤๴릃à 346 | <=====> 347 | HQ30@7FFCABC74B40 => 蕈瓀䕟쀳赈⑌䠰킋◨㙄䠀උﮆÈ䂋⾁Ȁ䒉⠤๴릃à 348 | <=====> 349 | HS932#30@7FFCABC74B40 => H・t_E3タH広$0H巾・D6 350 | <=====> 351 | HS65001#30@7FFCABC74B40 => H��t_E3�H�L$0H���%D6 352 | <=====> 353 | HS65001#0@7FFCABC75E70 => H�|$0��t)H� �l� 354 | <=====> 355 | HQ14+30@7FFCABC75E70 => 譌䷜䮉䴠䎉䤘厉䤐䮉匈噕䅗䅔䅕䅖䡗Ø 356 | <=====> 357 | HS932#14+30@7FFCABC75E70 => L衿M卯 M韻I唄I卯SUVWATAUAVAWH・リ 358 | <=====> 359 | HS65001#14+30@7FFCABC75E70 => L��M�K M�CI�SI�KSUVWATAUAVAWH��� 360 | <=====> 361 | HS65001#30@7FFCABC74B40 => H�|$0��t)H� �l� 362 | <=====> 363 | HQ0@7FFCABA80120 => 쀳荈⣄쳃쳌쳌쳌쳌쳌쳌譌䷜䮉䴠䎉䤘厉䤐䮉匈噕䅗䅔䅕䅖䡗Ø 364 | <=====> 365 | HS932#0@7FFCABA80120 => 3タHζ(テフフフフフフフフフフフフフL衿M卯 M韻I唄I卯SUVWATAUAVAWH・リ 366 | <=====> 367 | HS65001#0@7FFCABA80120 => 3�H��(��������������L��M�K M�CI�SI�KSUVWATAUAVAWH��� 368 | <=====> 369 | HQ14+0@7FFCABA80120 => 譌䷜䮉䴠䎉䤘厉䤐䮉匈噕䅗䅔䅕䅖䡗Ø 370 | <=====> 371 | HS932#14+0@7FFCABA80120 => L衿M卯 M韻I唄I卯SUVWATAUAVAWH・リ 372 | <=====> 373 | HS65001#14+0@7FFCABA80120 => L��M�K M�CI�SI�KSUVWATAUAVAWH��� 374 | <=====> 375 | HQ30@7FFCABA80120 => ˫쀳譈⑜䡠璋栤荈僄썟~郿譈୵譈忍 376 | <=====> 377 | HS932#30@7FFCABA80120 => ・3タH欺$`H逆$hHζP_テ韶^食曲鑾 ・H曲靉_ 378 | <=====> 379 | HS65001#30@7FFCABA80120 => �3�H�\$`H�t$hH��P_���^���H���u ��H����_ 380 | <=====> 381 | HS932#14+30@7FFCABA80120 => 韶^食曲鑾 ・H曲靉_ 382 | <=====> 383 | HS65001#14+30@7FFCABA80120 => ��^���H���u ��H����_ 384 | <=====> 385 | HS65001#0@7FFCABC75D30 => ��uUH�KHH���� 386 | <=====> 387 | HQ14+30@7FFCABC75D30 => 譌䷜䮉䴠䎉䤘厉䤐䮉匈噕䅗䅔䅕䅖䡗Ø 388 | <=====> 389 | HS932#14+30@7FFCABC75D30 => L衿M卯 M韻I唄I卯SUVWATAUAVAWH・リ 390 | <=====> 391 | HS65001#14+30@7FFCABC75D30 => L��M�K M�CI�SI�KSUVWATAUAVAWH��� 392 | <=====> 393 | HS65001#0@7FFCABC74B40 => ��uUH�KHH���� 394 | <=====> 395 | HQ14+30@7FFCABC74B40 => 譌䷜䮉䴠䎉䤘厉䤐䮉匈噕䅗䅔䅕䅖䡗Ø 396 | <=====> 397 | HS932#14+30@7FFCABC74B40 => L衿M卯 M韻I唄I卯SUVWATAUAVAWH・リ 398 | <=====> 399 | HS65001#14+30@7FFCABC74B40 => L��M�K M�CI�SI�KSUVWATAUAVAWH��� 400 | <=====> 401 | HQ-C@7FFCAB939550 => ﻩ걶嗿荈䃬赈⑬䠠䗇︈￿䣿嶉䠸綉䡀�㶀꽣¤甀謒圍皟螚￶׆꽏¤謁␄荈წҋ䠤䎋䠘삅萏ĝ 402 | <=====> 403 | HS932#-C@7FFCAB939550 => ・vャUH・@H考$ HヌEH云8H厭@H緊€=cッ、 404 | <=====> 405 | HS65001#-C@7FFCAB939550 => ��v��UH��@H�l$ H�E����H�]8H�}@H�ـ=c�� 406 | <=====> 407 | HQ14+-C@7FFCAB939550 => ￿䣿嶉䠸綉䡀�㶀꽣¤甀謒圍皟螚￶׆꽏¤謁␄荈წҋ䠤䎋䠘삅萏ĝ 408 | <=====> 409 | HS932#14+-C@7FFCAB939550 => H云8H厭@H緊€=cッ、 410 | <=====> 411 | HS65001#14+-C@7FFCAB939550 => ���H�]8H�}@H�ـ=c�� 412 | <=====> 413 | HQ0@7FFCAB939550 => 쀳荈⣄쳃쳌쳌쳌쳌쳌쳌譌䷜䮉䴠䎉䤘厉䤐䮉匈噕䅗䅔䅕䅖䡗Ø 414 | <=====> 415 | HS932#0@7FFCAB939550 => 3タHζ(テフフフフフフフフフフフフフL衿M卯 M韻I唄I卯SUVWATAUAVAWH・リ 416 | <=====> 417 | HS65001#0@7FFCAB939550 => 3�H��(��������������L��M�K M�CI�SI�KSUVWATAUAVAWH��� 418 | <=====> 419 | HQ14+0@7FFCAB939550 => 譌䷜䮉䴠䎉䤘厉䤐䮉匈噕䅗䅔䅕䅖䡗Ø 420 | <=====> 421 | HS932#14+0@7FFCAB939550 => L衿M卯 M韻I唄I卯SUVWATAUAVAWH・リ 422 | <=====> 423 | HS65001#14+0@7FFCAB939550 => L��M�K M�CI�SI�KSUVWATAUAVAWH��� 424 | <=====> 425 | HQ30@7FFCAB939550 => ˫쀳譈⑜䡠璋栤荈僄썟~郿譈୵譈忍 426 | <=====> 427 | HS932#30@7FFCAB939550 => ・3タH欺$`H逆$hHζP_テ韶^食曲鑾 ・H曲靉_ 428 | <=====> 429 | HS65001#30@7FFCAB939550 => �3�H�\$`H�t$hH��P_���^���H���u ��H����_ 430 | <=====> 431 | HS932#14+30@7FFCAB939550 => 韶^食曲鑾 ・H曲靉_ 432 | <=====> 433 | HS65001#14+30@7FFCAB939550 => ��^���H���u ��H����_ 434 | <=====> 435 | HQ0@7FFCAB8E19C0 => 삄ぴ襈⑜䠠岋㠤蕈瓛䠨䎋䠠삅๵툳譈￿譈⁃譈⑜䠠쒃쌨쀳荈⣄㏃ቤ쳌쳌黩맷嗿噓䅗䡖  436 | <=====> 437 | HS932#0@7FFCAB8E19C0 => ・t0H噂$ H欺$8H・t(H気 H・u3メH桐關・H気 H欺$ Hζ(テ3タHζ(テ3ノ鐡・フフフフ髷USVWAVH・ 438 | <=====> 439 | HS65001#0@7FFCAB8E19C0 => ��t0H�\$ H�\$8H��t(H�C H��u3�H������H�C H�\$ H��(�3�H��(�3��d����������USVWAVH�� 440 | <=====> 441 | HQ14+0@7FFCAB8E19C0 => 䎋䠠삅๵툳譈￿譈⁃譈⑜䠠쒃쌨쀳荈⣄㏃ቤ쳌쳌黩맷嗿噓䅗䡖  442 | <=====> 443 | HS932#14+0@7FFCAB8E19C0 => 気 H・u3メH桐關・H気 H欺$ Hζ(テ3タHζ(テ3ノ鐡・フフフフ髷USVWAVH・ 444 | <=====> 445 | HS65001#14+0@7FFCAB8E19C0 => �C H��u3�H������H�C H�\$ H��(�3�H��(�3��d����������USVWAVH�� 446 | <=====> 447 | HS65001#14+30@7FFCAB8E19C0 => �I�@@H9B@�� 448 | <=====> 449 | HQ14+0@7FFCAB8E1230 => 簆ˆ׆❢ª䠁䮋䠠즅萏Ǝ 450 | <=====> 451 | HS65001#14+0@7FFCABCC7A90 => ��HcGH�OA�� 452 | <=====> 453 | HQ10@7FFCABCC7A90 => 襈엜濺⑬씐濺␤荈⃄彁幁嵁屁孁婁奁塁幟屝奚塛ン% 454 | <=====> 455 | HS932#10@7FFCABCC7A90 => H嘩ナ侒l$ナ侒$$Hζ A_A^A]A\A[AZAYAX_^]\ZY[X・% 456 | <=====> 457 | HS65001#10@7FFCABCC7A90 => H����ol$��o$$H�� A_A^A]A\A[AZAYAX_^]\ZY[X��% 458 | <=====> 459 | HQ14+10@7FFCABCC7A90 => 幁嵁屁孁婁奁塁幟屝奚塛ン% 460 | <=====> 461 | HS932#14+10@7FFCABCC7A90 => A^A]A\A[AZAYAX_^]\ZY[X・% 462 | <=====> 463 | HS65001#14+10@7FFCABCC7A90 => A^A]A\A[AZAYAX_^]\ZY[X��% 464 | <=====> 465 | HQ20@7FFCABCC7A90 => ứ맱䣿璉ဤ襈⑼䄘䡖耠甽ꨯ 466 | <=====> 467 | HS932#20@7FFCABCC7A90 => ・H液$H榎$AVH・ €=u/ェ 468 | <=====> 469 | HS65001#20@7FFCABCC7A90 => ���H�t$H�|$AVH�� �=u/� 470 | <=====> 471 | HQ0@7FFCAB7F04C0 => 譈⑜䡐沋堤譈⑴䡠쒃彀䣃උ큷¼臶į 472 | <=====> 473 | HS932#0@7FFCAB7F04C0 => H欺$PH詰$XH逆$`Hζ@_テH・wミシ 474 | <=====> 475 | HS65001#0@7FFCAB7F04C0 => H�\$PH�l$XH�t$`H��@_�H� wм 476 | <=====> 477 | HQ10@7FFCAB7F04C0 => 襈엜濺⑬씐濺␤荈⃄彁幁嵁屁孁婁奁塁幟屝奚塛ン% 478 | <=====> 479 | HS932#10@7FFCAB7F04C0 => H嘩ナ侒l$ナ侒$$Hζ A_A^A]A\A[AZAYAX_^]\ZY[X・% 480 | <=====> 481 | HS65001#10@7FFCAB7F04C0 => H����ol$��o$$H�� A_A^A]A\A[AZAYAX_^]\ZY[X��% 482 | <=====> 483 | HQ14+10@7FFCAB7F04C0 => 幁嵁屁孁婁奁塁幟屝奚塛ン% 484 | <=====> 485 | HS932#14+10@7FFCAB7F04C0 => A^A]A\A[AZAYAX_^]\ZY[X・% 486 | <=====> 487 | HS65001#14+10@7FFCAB7F04C0 => A^A]A\A[AZAYAX_^]\ZY[X��% 488 | <=====> 489 | HQ0@7FFCAB9F5970 => 譈⑜䡐쒃彀쳃쳌쳌쳌⻩埿荈䃬譄䗑�譌⑌䥰슃䤓�셉Ӣ͌䠒懲譅䣃펋譈䧏䊋䠈䒉〤譈⒄€ 490 | <=====> 491 | HS932#0@7FFCAB9F5970 => H欺$PHζ@_テフフフフフフフ・・WH・@D錦E緊L記$pIδI筋Iチ・LH釧E凝H欣H均I毅H吋$0H灸$€ 492 | <=====> 493 | HS65001#0@7FFCAB9F5970 => H�\$PH��@_���������.���WH��@D��E��L�L$pI��I��I��LH��E��H��H��I�BH�D$0H��$� 494 | <=====> 495 | HQ14+0@7FFCAB9F5970 => 埿荈䃬譄䗑�譌⑌䥰슃䤓�셉Ӣ͌䠒懲譅䣃펋譈䧏䊋䠈䒉〤譈⒄€ 496 | <=====> 497 | HS932#14+0@7FFCAB9F5970 => ・WH・@D錦E緊L記$pIδI筋Iチ・LH釧E凝H欣H均I毅H吋$0H灸$€ 498 | <=====> 499 | HS65001#14+0@7FFCAB9F5970 => ���WH��@D��E��L�L$pI��I��I��LH��E��H��H��I�BH�D$0H��$� 500 | <=====> 501 | HQ0@7FFCAB9F6810 => 譈⑜䡐沋堤譈⑴䡠쒃彀䣃䓇⠤ 502 | <=====> 503 | HS932#0@7FFCAB9F6810 => H欺$PH詰$XH逆$`Hζ@_テHヌD$( 504 | <=====> 505 | HS65001#0@7FFCAB9F6810 => H�\$PH�l$XH�t$`H��@_�H�D$( 506 | <=====> 507 | HQ0@7FFCABA784F0 => 烩￿㏿딓↑쳌䃌䡓耠⌽飣 508 | <=====> 509 | HS932#0@7FFCABA784F0 => 駱3ノ・オ・フフフ@SH・ €=#纔 510 | <=====> 511 | HS65001#0@7FFCABA784F0 => �p���3��������@SH�� �=#� 512 | <=====> 513 | HQ0@7FFCAB7DDAD0 => 譌၆譄䇠먏ῴ蕍࿀径䄀쒋䆙磷䄘倻༘ᒃ䠀쉣譁聜蔠࿛ꊈ 514 | <=====> 515 | HS932#0@7FFCAB7DDAD0 => L祈D金Aコ・M・Ю 516 | <=====> 517 | HS65001#0@7FFCAB7DDAD0 => L�FD��A��M���_ 518 | <=====> 519 | HQ14+0@7FFCAB7DDAD0 => 䄀쒋䆙磷䄘倻༘ᒃ䠀쉣譁聜蔠࿛ꊈ 520 | <=====> 521 | HQ20@7FFCAB7DDAD0 => 삅餏䣀쒃쌸쳌쳌꫞コ襈⑬䠐璉ᠤ䡗耠甽郳 522 | <=====> 523 | HS932#20@7FFCAB7DDAD0 => ・丗Hζ8テフフフフフ鰰ェzH瑛$H液$WH・ €=u 524 | <=====> 525 | HS65001#20@7FFCAB7DDAD0 => ����H��8�������ުz�H�l$H�t$WH�� �=u� 526 | <=====> 527 | HS932#14+20@7FFCAB7DDAD0 => H瑛$H液$WH・ €=u 528 | <=====> 529 | HS65001#14+20@7FFCAB7DDAD0 => H�l$H�t$WH�� �=u� 530 | <=====> 531 | HS65001#0@7FFCAB7DE0A0 => ��uNH�NH���� 532 | <=====> 533 | HQ20@7FFCAB7DE0A0 => 삅餏䣀쒃쌸쳌쳌꫞コ襈⑬䠐璉ᠤ䡗耠甽郳 534 | <=====> 535 | HS932#20@7FFCAB7DE0A0 => ・丗Hζ8テフフフフフ鰰ェzH瑛$H液$WH・ €=u 536 | <=====> 537 | HS65001#20@7FFCAB7DE0A0 => ����H��8�������ުz�H�l$H�t$WH�� �=u� 538 | <=====> 539 | HS932#14+20@7FFCAB7DE0A0 => H瑛$H液$WH・ €=u 540 | <=====> 541 | HS65001#14+20@7FFCAB7DE0A0 => H�l$H�t$WH�� �=u� 542 | <=====> 543 | HS65001#0@7FFCABA77660 => ��uNH�NH���� 544 | <=====> 545 | HQ20@7FFCABA77660 => 삅餏䣀쒃쌸쳌쳌꫞コ襈⑬䠐璉ᠤ䡗耠甽郳 546 | <=====> 547 | HS932#20@7FFCABA77660 => ・丗Hζ8テフフフフフ鰰ェzH瑛$H液$WH・ €=u 548 | <=====> 549 | HS65001#20@7FFCABA77660 => ����H��8�������ުz�H�l$H�t$WH�� �=u� 550 | <=====> 551 | HS932#14+20@7FFCABA77660 => H瑛$H液$WH・ €=u 552 | <=====> 553 | HS65001#14+20@7FFCABA77660 => H�l$H�t$WH�� �=u� 554 | <=====> 555 | HQ0@7FFCABEBF8F0 => 蕈瓀䡌䢋䠐즅䍴譌ࠅ하䠀ᖋ㬡Õⓨ川䠀삅᭴譈၈蕈瓉䰢උⶏÕ譍䣆힋勩￿䣿岋怤쀲荈䃄幁幟㏃ɍ쳌쳌쳌쳌쳌쳌ᄍ襈⑬䠐璉ᠤ䡗耠頽ꨥ 556 | <=====> 557 | HS932#0@7FFCABEBF8F0 => H・tLH稀H・tCL・Xユ 558 | <=====> 559 | HS65001#0@7FFCABEBF8F0 => H��tLH�HH��tCL�X� 560 | <=====> 561 | HQ14+0@7FFCABEBF8F0 => 䠀ᖋ㬡Õⓨ川䠀삅᭴譈၈蕈瓉䰢උⶏÕ譍䣆힋勩￿䣿岋怤쀲荈䃄幁幟㏃ɍ쳌쳌쳌쳌쳌쳌ᄍ襈⑬䠐璉ᠤ䡗耠頽ꨥ 562 | <=====> 563 | HQ14+0@7FFCABEBF8F0 => 䴀욋譈r￿譈⑜㉠䣀쒃䅀彞썞줳䷨ﰂ쳿쳌쳌쳌쳌쳌쳌㻩맥䣿沉ဤ襈⑴團荈⃬㶀▘ª䤀證䣨懲譈痙謒ᴍ簄Ü׆╸ª䠁ۇ 564 | <=====> 565 | HQ30@7FFCAB7DDAD0 => 蕈瓀䠛䢋䠐즅≴譌輍픭䴀욋譈r￿譈⑜㉠䣀쒃䅀彞썞줳䷨ﰂ쳿쳌쳌쳌쳌쳌쳌㻩맥䣿沉ဤ襈⑴團荈⃬㶀▘ª䤀證䣨懲譈痙謒ᴍ簄Ü׆╸ª䠁ۇ 566 | <=====> 567 | HS932#30@7FFCAB7DDAD0 => H・tH稀H・t"L・・ユ 568 | <=====> 569 | HS65001#30@7FFCAB7DDAD0 => H��tH�HH��t"L� �-� 570 | <=====> 571 | HQ14+30@7FFCAB7DDAD0 => 䴀욋譈r￿譈⑜㉠䣀쒃䅀彞썞줳䷨ﰂ쳿쳌쳌쳌쳌쳌쳌㻩맥䣿沉ဤ襈⑴團荈⃬㶀▘ª䤀證䣨懲譈痙謒ᴍ簄Ü׆╸ª䠁ۇ 572 | <=====> 573 | HQ30@7FFCAB7DE0A0 => 蕈瓀䠛䢋䠐즅≴譌輍픭䴀욋譈r￿譈⑜㉠䣀쒃䅀彞썞줳䷨ﰂ쳿쳌쳌쳌쳌쳌쳌㻩맥䣿沉ဤ襈⑴團荈⃬㶀▘ª䤀證䣨懲譈痙謒ᴍ簄Ü׆╸ª䠁ۇ 574 | <=====> 575 | HS932#30@7FFCAB7DE0A0 => H・tH稀H・t"L・・ユ 576 | <=====> 577 | HS65001#30@7FFCAB7DE0A0 => H��tH�HH��t"L� �-� 578 | <=====> 579 | HQ14+30@7FFCAB7DE0A0 => 䴀욋譈r￿譈⑜㉠䣀쒃䅀彞썞줳䷨ﰂ쳿쳌쳌쳌쳌쳌쳌㻩맥䣿沉ဤ襈⑴團荈⃬㶀▘ª䤀證䣨懲譈痙謒ᴍ簄Ü׆╸ª䠁ۇ 580 | <=====> 581 | HQ30@7FFCABA77660 => 蕈瓀䠛䢋䠐즅≴譌輍픭䴀욋譈r￿譈⑜㉠䣀쒃䅀彞썞줳䷨ﰂ쳿쳌쳌쳌쳌쳌쳌㻩맥䣿沉ဤ襈⑴團荈⃬㶀▘ª䤀證䣨懲譈痙謒ᴍ簄Ü׆╸ª䠁ۇ 582 | <=====> 583 | HS932#30@7FFCABA77660 => H・tH稀H・t"L・・ユ 584 | <=====> 585 | HS65001#30@7FFCABA77660 => H��tH�HH��t"L� �-� 586 | <=====> 587 | HQ14+30@7FFCABA77660 => 䴀욋譈r￿譈⑜㉠䣀쒃䅀彞썞줳䷨ﰂ쳿쳌쳌쳌쳌쳌쳌㻩맥䣿沉ဤ襈⑴團荈⃬㶀▘ª䤀證䣨懲譈痙謒ᴍ簄Ü׆╸ª䠁ۇ 588 | <=====> 589 | HQ20@7FFCAB81E5B0 => 荈>ᡵ譈⑄䡰Ή譈䣃岋栤荈䃄幟썝뾀ĩ 590 | <=====> 591 | HQ-C@7FFCAB8665E0 => 荈⣬㶀⻕g甀謒ᔍ㢔쿨ᄌ׆⻁g㌁奚ᅧ蕈瓀䠠ᖋ鸶’줳㥈䠐䐏䣈즅୴툳荈⣄痩�䣿쒃쌨荈⣬㶀⺄g甀謒촍㢓쾘ᄌ׆⹰g㌁㇊ᅨ蕈࿀분 592 | <=====> 593 | HQ14+-C@7FFCAB8665E0 => 쿨ᄌ׆⻁g㌁奚ᅧ蕈瓀䠠ᖋ鸶’줳㥈䠐䐏䣈즅୴툳荈⣄痩�䣿쒃쌨荈⣬㶀⺄g甀謒촍㢓쾘ᄌ׆⹰g㌁㇊ᅨ蕈࿀분 594 | <=====> 595 | HQ0@7FFCAB8665E0 => 譈ᡀ蕈痀啮￧蕈瓀䡞䂋䡀䲍㠤툳襈⑄輤=蕈痀㠿椅鲢甀謒ꄍ毊瘌○׆ꉕœ䠁උ搮È臶į 596 | <=====> 597 | HS932#0@7FFCAB8665E0 => H機H・u 598 | 鈩U・H・t^H機@H広$83メH吋$8・・ 599 | <=====> 600 | HS65001#0@7FFCAB8665E0 => H�@H��u 601 | �nU��H��t^H�@@H�L$83�H�D$8�$�= 602 | <=====> 603 | HQ14+0@7FFCAB8665E0 => 䂋䡀䲍㠤툳襈⑄輤=蕈痀㠿椅鲢甀謒ꄍ毊瘌○׆ꉕœ䠁උ搮È臶į 604 | <=====> 605 | HS932#14+0@7FFCAB8665E0 => 機@H広$83メH吋$8・・ 606 | <=====> 607 | HS65001#14+0@7FFCAB8665E0 => �@@H�L$83�H�D$8�$�= 608 | <=====> 609 | HQ30@7FFCAB8665E0 => 蕈瓀䠠ᖋ鸶’줳㥈䠐䐏䣈즅୴툳荈⣄痩�䣿쒃쌨荈⣬㶀⺄g甀謒촍㢓쾘ᄌ׆⹰g㌁㇊ᅨ蕈࿀분 610 | <=====> 611 | HQ14+30@7FFCAB8665E0 => 䣈즅୴툳荈⣄痩�䣿쒃쌨荈⣬㶀⺄g甀謒촍㢓쾘ᄌ׆⹰g㌁㇊ᅨ蕈࿀분 612 | <=====> 613 | HS932#14+30@7FFCAB8665E0 => ネH・t 3メHζ(騏Hζ(テH・(€=・g 614 | <=====> 615 | HS65001#14+30@7FFCAB8665E0 => �H��t 3�H��(�u���H��(�H��(�=�.g 616 | <=====> 617 | HQ0@7FFCABD14AE0 => 쀳荈⣄쳃쳌쳌쳌쳌쳌쳌區荈レ證၁譌䷙冋䤈좋譍䠉�襈⑔ဏཁሐ䇳ဏ䄉폿譈⁋࿳䐑䀤燨ׁ䠀�胶Į 618 | <=====> 619 | HS932#0@7FFCABD14AE0 => 3タHζ(テフフフフフフフフフフフフフ@SH・0I帰L緊M飢I曲M・H芹H欝$ ・ AモH規 ・D$@鑷チ 620 | <=====> 621 | HS65001#0@7FFCABD14AE0 => 3�H��(��������������@SH��0I�AL��M�QI��M� H��H�T$ ��A�A A��H�K �D$@�q� 622 | <=====> 623 | HQ30@7FFCABD14AE0 => ˫쀳譈⑜䡠璋栤荈僄썟~郿譈୵譈忍 624 | <=====> 625 | HS932#30@7FFCABD14AE0 => ・3タH欺$`H逆$hHζP_テ韶^食曲鑾 ・H曲靉_ 626 | <=====> 627 | HS65001#30@7FFCABD14AE0 => �3�H�\$`H�t$hH��P_���^���H���u ��H����_ 628 | <=====> 629 | HS932#14+30@7FFCABD14AE0 => 韶^食曲鑾 ・H曲靉_ 630 | <=====> 631 | HS65001#14+30@7FFCABD14AE0 => ��^���H���u ��H����_ 632 | <=====> 633 | HQ0@7FFCABE55980 => 譈ᡏ蕈࿉宄䠀ᖋ’䷨诿觞삝 634 | <=====> 635 | HQ30@7FFCABE55980 => 襈엜濺⑬씐濺␤荈⃄彁幁嵁屁孁婁奁塁幟屝奚塛ン% 636 | <=====> 637 | HS932#30@7FFCABE55980 => H嘩ナ侒l$ナ侒$$Hζ A_A^A]A\A[AZAYAX_^]\ZY[X・% 638 | <=====> 639 | HS65001#30@7FFCABE55980 => H����ol$��o$$H�� A_A^A]A\A[AZAYAX_^]\ZY[X��% 640 | <=====> 641 | HQ14+30@7FFCABE55980 => 幁嵁屁孁婁奁塁幟屝奚塛ン% 642 | <=====> 643 | HS932#14+30@7FFCABE55980 => A^A]A\A[AZAYAX_^]\ZY[X・% 644 | <=====> 645 | HS65001#14+30@7FFCABE55980 => A^A]A\A[AZAYAX_^]\ZY[X��% 646 | <=====> 647 | HQ40@7FFCAB86CFD0 => 襈엜濺⑬씐濺␤荈⃄彁幁嵁屁孁婁奁塁幟屝奚塛ン% 648 | <=====> 649 | HS932#40@7FFCAB86CFD0 => H嘩ナ侒l$ナ侒$$Hζ A_A^A]A\A[AZAYAX_^]\ZY[X・% 650 | <=====> 651 | HS65001#40@7FFCAB86CFD0 => H����ol$��o$$H�� A_A^A]A\A[AZAYAX_^]\ZY[X��% 652 | <=====> 653 | HQ14+40@7FFCAB86CFD0 => 幁嵁屁孁婁奁塁幟屝奚塛ン% 654 | <=====> 655 | HS932#14+40@7FFCAB86CFD0 => A^A]A\A[AZAYAX_^]\ZY[X・% 656 | <=====> 657 | HS65001#14+40@7FFCAB86CFD0 => A^A]A\A[AZAYAX_^]\ZY[X��% 658 | <=====> 659 | HQ14+0@7FFCAB86C600 => ౵똏⩃ጼѴḼή譈灃蕈瓀䠖傋䠨튅൴譈崼￾蕈痀㌝䣀ᴻ혖±཈을譈⑜䠰璋㠤荈⃄썟譈䣇岋〤譈⑴䠸쒃张䣃岋〤쀳譈⑴䠸쒃张쳃쳌쳌똏䑁ⓐ쌁쳌쳌臶Đ 660 | <=====> 661 | HS932#14+0@7FFCAB86C600 => u カC*<t<uH気pH・tH輝(H・t H均・]H・u3タH;ヨア 662 | <=====> 663 | HS65001#14+0@7FFCAB86C600 => u �C*<t<uH�CpH��tH�P(H��t H���<]��H��u3�H;ֱ 664 | <=====> 665 | HQ14+0@7FFCAB7DDC10 => 䰀䪋䅠嚋̘䷐솋證䇎ᇿ譁ᡆ㲍㬳緰䤜事⬐䳆撉⠤䒉․譄䳏솋횋훨䷿㵴譍ၦ證ᡅ譈삈 666 | <=====> 667 | HQ40@7FFCAB7DDC10 => 襈엜濺⑬씐濺␤荈⃄彁幁嵁屁孁婁奁塁幟屝奚塛ン% 668 | <=====> 669 | HS932#40@7FFCAB7DDC10 => H嘩ナ侒l$ナ侒$$Hζ A_A^A]A\A[AZAYAX_^]\ZY[X・% 670 | <=====> 671 | HS65001#40@7FFCAB7DDC10 => H����ol$��o$$H�� A_A^A]A\A[AZAYAX_^]\ZY[X��% 672 | <=====> 673 | HQ14+40@7FFCAB7DDC10 => 幁嵁屁孁婁奁塁幟屝奚塛ン% 674 | <=====> 675 | HS932#14+40@7FFCAB7DDC10 => A^A]A\A[AZAYAX_^]\ZY[X・% 676 | <=====> 677 | HS65001#14+40@7FFCAB7DDC10 => A^A]A\A[AZAYAX_^]\ZY[X��% 678 | <=====> 679 | HQ30@7FFCAB85CD70 => 襈엜濺⑬씐濺␤荈⃄彁幁嵁屁孁婁奁塁幟屝奚塛ン% 680 | <=====> 681 | HS932#30@7FFCAB85CD70 => H嘩ナ侒l$ナ侒$$Hζ A_A^A]A\A[AZAYAX_^]\ZY[X・% 682 | <=====> 683 | HS65001#30@7FFCAB85CD70 => H����ol$��o$$H�� A_A^A]A\A[AZAYAX_^]\ZY[X��% 684 | <=====> 685 | HQ14+30@7FFCAB85CD70 => 幁嵁屁孁婁奁塁幟屝奚塛ン% 686 | <=====> 687 | HS932#14+30@7FFCAB85CD70 => A^A]A\A[AZAYAX_^]\ZY[X・% 688 | <=====> 689 | HS65001#14+30@7FFCAB85CD70 => A^A]A\A[AZAYAX_^]\ZY[X��% 690 | <=====> 691 | HQ14+20@7FFCAB81E5B0 => ဤ襈⑴團荈⃬證䣸�譈䳱䈹狰䴨텣i䧊ҍ䤒틷⍉䣂숻፵譈䣂岋㠤譈⑴䡀쒃张䣃Ƌ譅䣁힋襈⑬Pࡐ譈䣨삅╴譌譈䧓譈䳍䈏蟻Ð譈䠆펋譈ᅫᡐ譈䣅沋〤譈⑜䠸璋䀤荈⃄썟쳌쳌쳌䣌岉ࠤ襈⑴圐荈⃬똏 692 | <=====> 693 | HS932#14+20@7FFCAB81E5B0 => $H液$WH・ I串H芹H虞L9B(McムIハI・II#ツH;ツuH仰H欺$8H逆$@Hζ _テH・E驚H禽H瑛$0PH玖H・t%L気欣I;僅LBヌ顯・ 694 | <=====> 695 | HS65001#14+20@7FFCAB81E5B0 => $H�t$WH�� I��H��H��L9B�r(Mc�I��I�I��I#�H;�uH��H�\$8H�t$@H�� _�H�E��H��H�l$0�PH��H��t%L�C�H��I;�H��LB����� 696 | <=====> 697 | HQ-C@7FFCABA11FF0 => 廩諦埿荈⃬툳譈館￿㶀ⴚ—謀痸謒㬍昖ﴆ│׆ⴄ—䠁䮋䠰즅䑴礻縔耴霬 698 | <=====> 699 | HS932#-C@7FFCABA11FF0 => 饋謚WH・ 3メH緊・・€=-・ 700 | <=====> 701 | HS65001#-C@7FFCABA11FF0 => �^��WH�� 3�H���,����=-� 702 | <=====> 703 | HQ14+-C@7FFCABA11FF0 => 㶀ⴚ—謀痸謒㬍昖ﴆ│׆ⴄ—䠁䮋䠰즅䑴礻縔耴霬 704 | <=====> 705 | HQ0@7FFCABA11FF0 => 쀳荈⣄쳃쳌쳌쳌쳌쳌쳌譌䷜䮉䴠䎉䤘厉䤐䮉匈噕䅗䅔䅕䅖䡗Ø 706 | <=====> 707 | HS932#0@7FFCABA11FF0 => 3タHζ(テフフフフフフフフフフフフフL衿M卯 M韻I唄I卯SUVWATAUAVAWH・リ 708 | <=====> 709 | HS65001#0@7FFCABA11FF0 => 3�H��(��������������L��M�K M�CI�SI�KSUVWATAUAVAWH��� 710 | <=====> 711 | HQ14+0@7FFCABA11FF0 => 譌䷜䮉䴠䎉䤘厉䤐䮉匈噕䅗䅔䅕䅖䡗Ø 712 | <=====> 713 | HS932#14+0@7FFCABA11FF0 => L衿M卯 M韻I唄I卯SUVWATAUAVAWH・リ 714 | <=====> 715 | HS65001#14+0@7FFCABA11FF0 => L��M�K M�CI�SI�KSUVWATAUAVAWH��� 716 | <=====> 717 | HQ30@7FFCABA11FF0 => ˫쀳譈⑜䡠璋栤荈僄썟~郿譈୵譈忍 718 | <=====> 719 | HS932#30@7FFCABA11FF0 => ・3タH欺$`H逆$hHζP_テ韶^食曲鑾 ・H曲靉_ 720 | <=====> 721 | HS65001#30@7FFCABA11FF0 => �3�H�\$`H�t$hH��P_���^���H���u ��H����_ 722 | <=====> 723 | HS932#14+30@7FFCABA11FF0 => 韶^食曲鑾 ・H曲靉_ 724 | <=====> 725 | HS65001#14+30@7FFCABA11FF0 => ��^���H���u ��H����_ 726 | <=====> 727 | HQ-C@7FFCABAAF3E0 => 滩焛埿荈䃬㶀忡䠀�ትඋ浀\Ῠ�웿쨅赟Ā譈ꤍ룾䠀箋⾁Ȁ๴릃à 728 | <=====> 729 | HS65001#-C@7FFCABAAF3E0 => �nq�WH��@�=�_� 730 | <=====> 731 | HQ14+-C@7FFCABAAF3E0 => ትඋ浀\Ῠ�웿쨅赟Ā譈ꤍ룾䠀箋⾁Ȁ๴릃à 732 | <=====> 733 | HQ0@7FFCABAAF3E0 => 쀳荈⣄쳃쳌쳌쳌쳌쳌쳌譌䷜䮉䴠䎉䤘厉䤐䮉匈噕䅗䅔䅕䅖䡗Ø 734 | <=====> 735 | HS932#0@7FFCABAAF3E0 => 3タHζ(テフフフフフフフフフフフフフL衿M卯 M韻I唄I卯SUVWATAUAVAWH・リ 736 | <=====> 737 | HS65001#0@7FFCABAAF3E0 => 3�H��(��������������L��M�K M�CI�SI�KSUVWATAUAVAWH��� 738 | <=====> 739 | HQ14+0@7FFCABAAF3E0 => 譌䷜䮉䴠䎉䤘厉䤐䮉匈噕䅗䅔䅕䅖䡗Ø 740 | <=====> 741 | HS932#14+0@7FFCABAAF3E0 => L衿M卯 M韻I唄I卯SUVWATAUAVAWH・リ 742 | <=====> 743 | HS65001#14+0@7FFCABAAF3E0 => L��M�K M�CI�SI�KSUVWATAUAVAWH��� 744 | <=====> 745 | HQ30@7FFCABAAF3E0 => ˫쀳譈⑜䡠璋栤荈僄썟~郿譈୵譈忍 746 | <=====> 747 | HS932#30@7FFCABAAF3E0 => ・3タH欺$`H逆$hHζP_テ韶^食曲鑾 ・H曲靉_ 748 | <=====> 749 | HS65001#30@7FFCABAAF3E0 => �3�H�\$`H�t$hH��P_���^���H���u ��H����_ 750 | <=====> 751 | HS932#14+30@7FFCABAAF3E0 => 韶^食曲鑾 ・H曲靉_ 752 | <=====> 753 | HS65001#14+30@7FFCABAAF3E0 => ��^���H���u ��H����_ 754 | <=====> 755 | HQ-C@7FFCABC75D30 => 滩焛埿荈䃬㶀忡䠀�ትඋ浀\Ῠ�웿쨅赟Ā譈ꤍ룾䠀箋⾁Ȁ๴릃à 756 | <=====> 757 | HS65001#-C@7FFCABC75D30 => �nq�WH��@�=�_� 758 | <=====> 759 | HS65001#14+0@7FFCABC75D30 => ���H�K (�H���� 760 | <=====> 761 | HQ40@7FFCABC75D30 => 滩焛埿荈䃬㶀忡䠀�ትඋ浀\Ῠ�웿쨅赟Ā譈ꤍ룾䠀箋⾁Ȁ๴릃à 762 | <=====> 763 | HS65001#40@7FFCABC75D30 => �nq�WH��@�=�_� 764 | <=====> 765 | HQ-C@7FFCABC74B40 => 滩焛埿荈䃬㶀忡䠀�ትඋ浀\Ῠ�웿쨅赟Ā譈ꤍ룾䠀箋⾁Ȁ๴릃à 766 | <=====> 767 | HS65001#-C@7FFCABC74B40 => �nq�WH��@�=�_� 768 | <=====> 769 | HS65001#14+0@7FFCABC74B40 => ���H�K (�H���� 770 | <=====> 771 | HQ40@7FFCABC74B40 => 滩焛埿荈䃬㶀忡䠀�ትඋ浀\Ῠ�웿쨅赟Ā譈ꤍ룾䠀箋⾁Ȁ๴릃à 772 | <=====> 773 | HS65001#40@7FFCABC74B40 => �nq�WH��@�=�_� 774 | <=====> 775 | HQ0@7FFCAB99A530 => ࿳⠏⑼夏࿆琨〤荈䃄썛줳ۨ�쳿쳌쳌≾ア襈⑴圐荈⃬㶀晥䤀�譈䣲曆ትඋ玥\ꓨ�웿䠅赦Ā툳襈䡷譈䣏徉辫蕈࿀ﶄ䠀ᖋꀋ¸譈ྣ3襈ぇ蕈࿀䔀쀳툳譈�M譈䁏蕈࿉임㌀녥○삄萏‚ 776 | <=====> 777 | HS932#0@7FFCAB99A530 => ・Y・(|$ ・Yニ(t$0Hζ@[テ3ノ・1゚フフフフフフ驃"qH液$WH・ €=ef・ 778 | <=====> 779 | HS65001#0@7FFCAB99A530 => �Y�(|$ �Y�(t$0H��@[�3��1���������~"q�H�t$WH�� �=ef� 780 | <=====> 781 | HQ14+0@7FFCAB99A530 => 䃄썛줳ۨ�쳿쳌쳌≾ア襈⑴圐荈⃬㶀晥䤀�譈䣲曆ትඋ玥\ꓨ�웿䠅赦Ā툳襈䡷譈䣏徉辫蕈࿀ﶄ䠀ᖋꀋ¸譈ྣ3襈ぇ蕈࿀䔀쀳툳譈�M譈䁏蕈࿉임㌀녥○삄萏‚ 782 | <=====> 783 | HS932#14+0@7FFCAB99A530 => ト@[テ3ノ・1゚フフフフフフ驃"qH液$WH・ €=ef・ 784 | <=====> 785 | HS65001#14+0@7FFCAB99A530 => �@[�3��1���������~"q�H�t$WH�� �=ef� 786 | <=====> 787 | HQ20@7FFCAB99A530 => 삄鐏䣀岋〤荈⃄썟쳌䃌䡓耠笽無 788 | <=====> 789 | HS932#20@7FFCAB99A530 => ・搬H欺$0Hζ _テフフフ@SH・ €={!q 790 | <=====> 791 | HS65001#20@7FFCAB99A530 => ����H�\$0H�� _����@SH�� �={!q 792 | <=====> 793 | HQ20@7FFCAB81E5B0 => 㩃扜極摬汳癡履湵瑩屹畢汩層畒瑮浩⽥瑕汩瑩敩⽳祤慮業彣牡慲⹹h 794 | <=====> 795 | HS932#20@7FFCAB81E5B0 => C:\buildslave\unity\build\Runtime/Utilities/dynamic_array.h 796 | <=====> 797 | HS65001#20@7FFCAB81E5B0 => C:\buildslave\unity\build\Runtime/Utilities/dynamic_array.h 798 | <=====> 799 | HQ14+20@7FFCAB81E5B0 => 畢汩層畒瑮浩⽥瑕汩瑩敩⽳祤慮業彣牡慲⹹h 800 | <=====> 801 | HS932#14+20@7FFCAB81E5B0 => build\Runtime/Utilities/dynamic_array.h 802 | <=====> 803 | HS65001#14+20@7FFCAB81E5B0 => build\Runtime/Utilities/dynamic_array.h 804 | <=====> 805 | HQ0@7FFCAB85CD70 => ﮃ瓿䠊썣荁蘼瑘䠅ή譈偝赈⁥彁幁幟썝줳ᣨ쏓㏿팑ᅢ䖐쀳툳譈틓ᅢ쳌䃌䡓耠쬽爛 806 | <=====> 807 | HS932#0@7FFCAB85CD70 => ・t 808 | HcテA・・tH・uH犠PH稿 A_A^_^]テ3ノ・モテ3ノ・モテ職3タ3メH勤勒メテフフフ@SH・ €=ヒr 809 | <=====> 810 | HS65001#0@7FFCAB85CD70 => ���t 811 | Hc�A�<�XtH��uH�]PH�e A_A^_^]�3�����3������E3�3�H����������@SH�� �=�r 812 | <=====> 813 | HQ14+0@7FFCAB85CD70 => 譈偝赈⁥彁幁幟썝줳ᣨ쏓㏿팑ᅢ䖐쀳툳譈틓ᅢ쳌䃌䡓耠쬽爛 814 | <=====> 815 | HS932#14+0@7FFCAB85CD70 => H犠PH稿 A_A^_^]テ3ノ・モテ3ノ・モテ職3タ3メH勤勒メテフフフ@SH・ €=ヒr 816 | <=====> 817 | HS65001#14+0@7FFCAB85CD70 => H�]PH�e A_A^_^]�3�����3������E3�3�H����������@SH�� �=�r 818 | <=====> 819 | HQ0@7FFCABBA90D0 => 쀳荈⣄쳃쳌쳌쳌쳌쳌쳌區荈レ證၁譌䷙冋䤈좋譍䠉�襈⑔ဏཁሐ䇳ဏ䄉폿譈⁋࿳䐑䀤燨ׁ䠀�胶Į 820 | <=====> 821 | HS932#0@7FFCABBA90D0 => 3タHζ(テフフフフフフフフフフフフフ@SH・0I帰L緊M飢I曲M・H芹H欝$ ・ AモH規 ・D$@鑷チ 822 | <=====> 823 | HS65001#0@7FFCABBA90D0 => 3�H��(��������������@SH��0I�AL��M�QI��M� H��H�T$ ��A�A A��H�K �D$@�q� 824 | <=====> 825 | HQ30@7FFCABBA90D0 => ˫쀳譈⑜䡠璋栤荈僄썟~郿譈୵譈忍 826 | <=====> 827 | HS932#30@7FFCABBA90D0 => ・3タH欺$`H逆$hHζP_テ韶^食曲鑾 ・H曲靉_ 828 | <=====> 829 | HS65001#30@7FFCABBA90D0 => �3�H�\$`H�t$hH��P_���^���H���u ��H����_ 830 | <=====> 831 | HS932#14+30@7FFCABBA90D0 => 韶^食曲鑾 ・H曲靉_ 832 | <=====> 833 | HS65001#14+30@7FFCABBA90D0 => ��^���H���u ��H����_ 834 | <=====> 835 | HQ-14@7FFCABA80D80 => 軩磶嗿坖噁坁荈惬赈⑬䠠䗇︠￿䣿嶉䱸㶀䒿甀謒봍強ཨ¬׆䒫謁␄荈წҋ㌤㏒P툳證￿왁၆䤁庋䠘֋탬»胶į 836 | <=====> 837 | HS932#-14@7FFCABA80D80 => 骼UVWAVAWH・`H考$ HヌE H云xL虞€=ソD・ 838 | <=====> 839 | HS65001#-14@7FFCABA80D80 => ��x�UVWAVAWH��`H�l$ H�E ����H�]xL��=�D� 840 | <=====> 841 | HQ14+-14@7FFCABA80D80 => 䠠䗇︠￿䣿嶉䱸㶀䒿甀謒봍強ཨ¬׆䒫謁␄荈წҋ㌤㏒P툳證￿왁၆䤁庋䠘֋탬»胶į 842 | <=====> 843 | HS932#14+-14@7FFCABA80D80 => HヌE H云xL虞€=ソD・ 844 | <=====> 845 | HS65001#14+-14@7FFCABA80D80 => H�E ����H�]xL��=�D� 846 | <=====> 847 | HQ0@7FFCABA80D80 => i䷆舏︄￿譈⑼䠠璋栤譈⑬䡠岋堤荈⣄彁幁嵁屁쳃쳌區荈⃬㶀즐}䠀�ትඋ쯀L돨쾉웿礅緉Ā譈။蕈瓉譲⑁䌹༴钅 848 | <=====> 849 | HS932#0@7FFCABA80D80 => IニM;・・H弓$ H逆$hH詰$`H欺$XHζ(A_A^A]A\テフフフ@SH・ €=惜} 850 | <=====> 851 | HS65001#0@7FFCABA80D80 => I��M;�����H�|$ H�t$hH�l$`H�\$XH��(A_A^A]A\����@SH�� �=��} 852 | <=====> 853 | HQ14+0@7FFCABA80D80 => 栤譈⑬䡠岋堤荈⣄彁幁嵁屁쳃쳌區荈⃬㶀즐}䠀�ትඋ쯀L돨쾉웿礅緉Ā譈။蕈瓉譲⑁䌹༴钅 854 | <=====> 855 | HS932#14+0@7FFCABA80D80 => $hH詰$`H欺$XHζ(A_A^A]A\テフフフ@SH・ €=惜} 856 | <=====> 857 | HS65001#14+0@7FFCABA80D80 => $hH�l$`H�\$XH��(A_A^A]A\����@SH�� �=��} 858 | <=====> 859 | HS65001#0@7FFCABC99180 => H�K3���H���� 860 | <=====> 861 | HQ0@7FFCABDB6330 => 왁ᅆ㌀㏒P譈硝赈䁥彁幁幟썝줳쓨郿줳볨郿줳듨쳿껨쳿줳ꛨ쳿ꃨ쳿줳飨쳿줳部쳿諨쳿줳苨쳿줳竨쳿瓨郿滨㏿१¬줳惨郿줳壨쳿勨쳿줳䫨쳿䓨쳿줳㳨쳿줳㓨쳿줳⳨쳿⛨쳿⃨쳿줳ᣨ쳿줳შ쳿૨쳿줳˨쳿䃌䡓耠ጽ逽 862 | <=====> 863 | HQ14+0@7FFCABDB6330 => 䁥彁幁幟썝줳쓨郿줳볨郿줳듨쳿껨쳿줳ꛨ쳿ꃨ쳿줳飨쳿줳部쳿諨쳿줳苨쳿줳竨쳿瓨郿滨㏿१¬줳惨郿줳壨쳿勨쳿줳䫨쳿䓨쳿줳㳨쳿줳㓨쳿줳⳨쳿⛨쳿⃨쳿줳ᣨ쳿줳შ쳿૨쳿줳˨쳿䃌䡓耠ጽ逽 864 | <=====> 865 | HS932#14+0@7FFCABDB6330 => e@A_A^_^]テ3ノ霪 ・・ノ霈 ・・ノ雍 ・フ隶 ・フ3ノ隕 ・フ陟 ・フ3ノ陂 ・フ3ノ關 ・フ闃 ・フ3ノ閧 ・フ3ノ閊 ・フ鑼 ・占n ・3ノ鑒 ・3ノ鐐 ・・ノ鏐 ・フ鏗 ・フ3ノ鍮 ・フ錺 ・フ3ノ・ ・フ3ノ・ ・フ3ノ・ ・フ・ ・フ・ ・フ3ノ・ ・フ3ノ・ ・フ・ ・フ3ノ・ ・フフ@SH・ €==・ 866 | <=====> 867 | HS65001#14+0@7FFCABDB6330 => e@A_A^_^]�3��� ���3�� ���3�� ���� ���3�� ���� ���3�� ���3�� ���� ���3�� ���3��z ����t ����n ��3��g ��3��` ���3��X ����R ���3��J ����D ���3��< ���3��4 ���3��, ����& ���� ���3�� ���3�� ���� 868 | ���3�� ����@SH�� �==� 869 | <=====> 870 | HQ-5C@7FFCABD0E370 => 黩ᐦ埿荈⃬㶀鎭g䠀懲�ትඋ豚6跨뤹웿鐅枓Ā툳譈과ᅨ譈菸ǻ橵譈ᴍ錉⾁Ȁ๴릃à 871 | <=====> 872 | HS65001#-5C@7FFCABD0E370 => �&�WH�� �=��g 873 | <=====> 874 | HQ14+-5C@7FFCABD0E370 => �ትඋ豚6跨뤹웿鐅枓Ā툳譈과ᅨ譈菸ǻ橵譈ᴍ錉⾁Ȁ๴릃à 875 | <=====> 876 | HQ0@7FFCABD0E370 => 쀳荈⣄䣃䥘䆋䴈�譍ᡁ譌䣑咉〤赈⑔ဏ謀ࡀ證褋⑄䥈䆋䠨䒉⠤證⁁譅䴈䎋ᄏ⑄䡀䒉․a㏒䣀쒃썘쳌쳌쳌쳌쳌쳌䃌䡓䤠Ƌ譌䣁�ࢋa䣐䮋褠⑄⾟譈⺀Āࡵ譈 赈⑔䠰쮋仨ـ䠀쒃嬠쳃쳌쳌쳌䃌䡓䤰䆋䠠�證ࡑ譍䷙䦋䰘톋襈⑜༨¶ኋ譍၃證蠋⑄䄠틿譈⁋䒈䀤ヨد䠀�胶Į 877 | <=====> 878 | HS932#0@7FFCABD0E370 => 3タHζ(テH・XI帰M緊M帰L錦H欝$0H控$@・ 879 | <=====> 880 | HS65001#0@7FFCABD0E370 => 3�H��(�H��XI�AM��M�AL��H�T$0H�T$@� 881 | <=====> 882 | HQ14+0@7FFCABD0E370 => ᡁ譌䣑咉〤赈⑔ဏ謀ࡀ證褋⑄䥈䆋䠨䒉⠤證⁁譅䴈䎋ᄏ⑄䡀䒉․a㏒䣀쒃썘쳌쳌쳌쳌쳌쳌䃌䡓䤠Ƌ譌䣁�ࢋa䣐䮋褠⑄⾟譈⺀Āࡵ譈 赈⑔䠰쮋仨ـ䠀쒃嬠쳃쳌쳌쳌䃌䡓䤰䆋䠠�證ࡑ譍䷙䦋䰘톋襈⑜༨¶ኋ譍၃證蠋⑄䄠틿譈⁋䒈䀤ヨد䠀�胶Į 883 | <=====> 884 | HS932#14+0@7FFCABD0E370 => AL錦H欝$0H控$@・ 885 | <=====> 886 | HS65001#14+0@7FFCABD0E370 => AL��H�T$0H�T$@� 887 | <=====> 888 | HQ30@7FFCABD0E370 => ˫쀳譈⑜䡠璋栤荈僄썟~郿譈୵譈忍 889 | <=====> 890 | HS932#30@7FFCABD0E370 => ・3タH欺$`H逆$hHζP_テ韶^食曲鑾 ・H曲靉_ 891 | <=====> 892 | HS65001#30@7FFCABD0E370 => �3�H�\$`H�t$hH��P_���^���H���u ��H����_ 893 | <=====> 894 | HS932#14+30@7FFCABD0E370 => 韶^食曲鑾 ・H曲靉_ 895 | <=====> 896 | HS65001#14+30@7FFCABD0E370 => ��^���H���u ��H����_ 897 | <=====> 898 | HQ-C@7FFCABC79070 => ứⱾ埿荈⃬㶀�p䠀�譈痹謒㤍㿀貌ᅡ׆�p䰁䞋䴐삅๵衄䠃岋〤荈⃄썟譈᜕鱟㌀䭐ᄊΈ譈⑜䠰쒃张쳃쳌绩ⱽ䣿璉ᠤ襈⑔圐荈レ㶀�p䤀�證䣸ትඋ햌?Ῠ슌웿烗Ā譈焍鱠䠀咍䠤쀳襈⑄䠠䒉⠤鯨뭭䳿쮋襈⑄䰠잋赈⑔䠠캋Ꮸ슋䣿岋䀤譈⑴䡐쒃弰쳃쳌뻩ⱼ叿呁啁坁荈㣬譈桁譈䳚蕈瓀䰊悋䠘삃䄋Ƽ 899 | <=====> 900 | HS932#-C@7FFCABC79070 => ・~,WH・ €=Xルp 901 | <=====> 902 | HS65001#-C@7FFCABC79070 => �~,�WH�� �=X�p 903 | <=====> 904 | HQ14+-C@7FFCABC79070 => 譈痹謒㤍㿀貌ᅡ׆�p䰁䞋䴐삅๵衄䠃岋〤荈⃄썟譈᜕鱟㌀䭐ᄊΈ譈⑜䠰쒃张쳃쳌绩ⱽ䣿璉ᠤ襈⑔圐荈レ㶀�p䤀�證䣸ትඋ햌?Ῠ슌웿烗Ā譈焍鱠䠀咍䠤쀳襈⑄䠠䒉⠤鯨뭭䳿쮋襈⑄䰠잋赈⑔䠠캋Ꮸ슋䣿岋䀤譈⑴䡐쒃弰쳃쳌뻩ⱼ叿呁啁坁荈㣬譈桁譈䳚蕈瓀䰊悋䠘삃䄋Ƽ 905 | <=====> 906 | HQ0@7FFCABC79070 => 쀳荈⣄쳃쳌�■䡗䥀䆋䠠曆譍ၑ證䷈妋䤈ᦋ襈⑔ཁᨐ䇳ဏဏ䠋䒉⠤證ᡁ襈⑄@䣗岋値荈䃄썟쳌䃌䡓䤰䆋䤠�譍ၑ譌䷙䆋䠘咉⠤‹䇳ဏ䔒ࢋ譈ࡓ譈褋⑄䄠폿荈ツ썛쳌쳌䃌䡓䥐䆋䤰�譍ࡁ譍䣙咉䀤譌䣑쮋똏䴀‹證蠓⑄䤸䆋䠨䒉〤證⁁襈⑄䤨䆋䴘䦋䠐䒉․a㏒䣀쒃子쳃쳌쳌쳌쳌�■䡗䤰䆋䤐�譍ࡁ譍䣙懲襈⑔䰠톋譈䓋똏䔈‹證䄓틿譈⁏䒈䀤ֽ䠀�胶Į 907 | <=====> 908 | HS932#0@7FFCABC79070 => 3タHζ(テフフフフ驃ル・WH・@I帰 H櫛M飢I曲M戯I・H欝$0・ H吋$(I帰H吋$ ラH欺$PHζ@_テフフフ@SH・0I帰 I緊M飢L緊M帰H欝$(・ 909 | <=====> 910 | HS65001#0@7FFCABC79070 => 3�H��(������~���WH��@I�A H��M�QI��M�YI�H�T$0�A�A� H�D$(I�AH�D$ ��H�\$PH��@_����@SH��0I�A I��M�QL��M�AH�T$(� 911 | <=====> 912 | HQ14+0@7FFCABC79070 => 䥀䆋䠠曆譍ၑ證䷈妋䤈ᦋ襈⑔ཁᨐ䇳ဏဏ䠋䒉⠤證ᡁ襈⑄@䣗岋値荈䃄썟쳌䃌䡓䤰䆋䤠�譍ၑ譌䷙䆋䠘咉⠤‹䇳ဏ䔒ࢋ譈ࡓ譈褋⑄䄠폿荈ツ썛쳌쳌䃌䡓䥐䆋䤰�譍ࡁ譍䣙咉䀤譌䣑쮋똏䴀‹證蠓⑄䤸䆋䠨䒉〤證⁁襈⑄䤨䆋䴘䦋䠐䒉․a㏒䣀쒃子쳃쳌쳌쳌쳌�■䡗䤰䆋䤐�譍ࡁ譍䣙懲襈⑔䰠톋譈䓋똏䔈‹證䄓틿譈⁏䒈䀤ֽ䠀�胶Į 913 | <=====> 914 | HS932#14+0@7FFCABC79070 => @I帰 H櫛M飢I曲M戯I・H欝$0・ H吋$(I帰H吋$ ラH欺$PHζ@_テフフフ@SH・0I帰 I緊M飢L緊M帰H欝$(・ 915 | <=====> 916 | HS65001#14+0@7FFCABC79070 => @I�A H��M�QI��M�YI�H�T$0�A�A� H�D$(I�AH�D$ ��H�\$PH��@_����@SH��0I�A I��M�QL��M�AH�T$(� 917 | <=====> 918 | HQ30@7FFCABC79070 => ˫쀳譈⑜䡠璋栤荈僄썟~郿譈୵譈忍 919 | <=====> 920 | HS932#30@7FFCABC79070 => ・3タH欺$`H逆$hHζP_テ韶^食曲鑾 ・H曲靉_ 921 | <=====> 922 | HS65001#30@7FFCABC79070 => �3�H�\$`H�t$hH��P_���^���H���u ��H����_ 923 | <=====> 924 | HS932#14+30@7FFCABC79070 => 韶^食曲鑾 ・H曲靉_ 925 | <=====> 926 | HS65001#14+30@7FFCABC79070 => ��^���H���u ��H����_ 927 | <=====> 928 | HQ-C@7FFCAB7DDC10 => ứⱾ埿荈⃬㶀�p䠀�譈痹謒㤍㿀貌ᅡ׆�p䰁䞋䴐삅๵衄䠃岋〤荈⃄썟譈᜕鱟㌀䭐ᄊΈ譈⑜䠰쒃张쳃쳌绩ⱽ䣿璉ᠤ襈⑔圐荈レ㶀�p䤀�證䣸ትඋ햌?Ῠ슌웿烗Ā譈焍鱠䠀咍䠤쀳襈⑄䠠䒉⠤鯨뭭䳿쮋襈⑄䰠잋赈⑔䠠캋Ꮸ슋䣿岋䀤譈⑴䡐쒃弰쳃쳌뻩ⱼ叿呁啁坁荈㣬譈桁譈䳚蕈瓀䰊悋䠘삃䄋Ƽ 929 | <=====> 930 | HS932#-C@7FFCAB7DDC10 => ・~,WH・ €=Xルp 931 | <=====> 932 | HS65001#-C@7FFCAB7DDC10 => �~,�WH�� �=X�p 933 | <=====> 934 | HQ14+-C@7FFCAB7DDC10 => 譈痹謒㤍㿀貌ᅡ׆�p䰁䞋䴐삅๵衄䠃岋〤荈⃄썟譈᜕鱟㌀䭐ᄊΈ譈⑜䠰쒃张쳃쳌绩ⱽ䣿璉ᠤ襈⑔圐荈レ㶀�p䤀�證䣸ትඋ햌?Ῠ슌웿烗Ā譈焍鱠䠀咍䠤쀳襈⑄䠠䒉⠤鯨뭭䳿쮋襈⑄䰠잋赈⑔䠠캋Ꮸ슋䣿岋䀤譈⑴䡐쒃弰쳃쳌뻩ⱼ叿呁啁坁荈㣬譈桁譈䳚蕈瓀䰊悋䠘삃䄋Ƽ 935 | <=====> 936 | HQ0@7FFCAB7DDC10 => Έ譈⑜䠰쒃张쳃쳌绩ⱽ䣿璉ᠤ襈⑔圐荈レ㶀�p䤀�證䣸ትඋ햌?Ῠ슌웿烗Ā譈焍鱠䠀咍䠤쀳襈⑄䠠䒉⠤鯨뭭䳿쮋襈⑄䰠잋赈⑔䠠캋Ꮸ슋䣿岋䀤譈⑴䡐쒃弰쳃쳌뻩ⱼ叿呁啁坁荈㣬譈桁譈䳚蕈瓀䰊悋䠘삃䄋Ƽ 937 | <=====> 938 | HS932#0@7FFCAB7DDC10 => ・H欺$0Hζ _テフフフ驃},H液$H欝$WH・0€= リp 939 | <=====> 940 | HS65001#0@7FFCAB7DDC10 => �H�\$0H�� _�����~},�H�t$H�T$WH��0�= �p 941 | <=====> 942 | HQ14+0@7FFCAB7DDC10 => 䣿璉ᠤ襈⑔圐荈レ㶀�p䤀�證䣸ትඋ햌?Ῠ슌웿烗Ā譈焍鱠䠀咍䠤쀳襈⑄䠠䒉⠤鯨뭭䳿쮋襈⑄䰠잋赈⑔䠠캋Ꮸ슋䣿岋䀤譈⑴䡐쒃弰쳃쳌뻩ⱼ叿呁啁坁荈㣬譈桁譈䳚蕈瓀䰊悋䠘삃䄋Ƽ 943 | <=====> 944 | HS932#14+0@7FFCAB7DDC10 => H液$H欝$WH・0€= リp 945 | <=====> 946 | HS65001#14+0@7FFCAB7DDC10 => �H�t$H�T$WH��0�= �p 947 | <=====> 948 | HQ20@7FFCAB7DDC10 => ứⱾ埿荈⃬㶀�p䠀�譈痹謒㤍㿀貌ᅡ׆�p䰁䞋䴐삅๵衄䠃岋〤荈⃄썟譈᜕鱟㌀䭐ᄊΈ譈⑜䠰쒃张쳃쳌绩ⱽ䣿璉ᠤ襈⑔圐荈レ㶀�p䤀�證䣸ትඋ햌?Ῠ슌웿烗Ā譈焍鱠䠀咍䠤쀳襈⑄䠠䒉⠤鯨뭭䳿쮋襈⑄䰠잋赈⑔䠠캋Ꮸ슋䣿岋䀤譈⑴䡐쒃弰쳃쳌뻩ⱼ叿呁啁坁荈㣬譈桁譈䳚蕈瓀䰊悋䠘삃䄋Ƽ 949 | <=====> 950 | HS932#20@7FFCAB7DDC10 => ・~,WH・ €=Xルp 951 | <=====> 952 | HS65001#20@7FFCAB7DDC10 => �~,�WH�� �=X�p 953 | <=====> 954 | HQ14+20@7FFCAB7DDC10 => 譈痹謒㤍㿀貌ᅡ׆�p䰁䞋䴐삅๵衄䠃岋〤荈⃄썟譈᜕鱟㌀䭐ᄊΈ譈⑜䠰쒃张쳃쳌绩ⱽ䣿璉ᠤ襈⑔圐荈レ㶀�p䤀�證䣸ትඋ햌?Ῠ슌웿烗Ā譈焍鱠䠀咍䠤쀳襈⑄䠠䒉⠤鯨뭭䳿쮋襈⑄䰠잋赈⑔䠠캋Ꮸ슋䣿岋䀤譈⑴䡐쒃弰쳃쳌뻩ⱼ叿呁啁坁荈㣬譈桁譈䳚蕈瓀䰊悋䠘삃䄋Ƽ 955 | <=====> 956 | HQ30@7FFCAB7DDC10 => 쀳荈⣄쳃쳌�■䡗䥀䆋䠠曆譍ၑ證䷈妋䤈ᦋ襈⑔ཁᨐ䇳ဏဏ䠋䒉⠤證ᡁ襈⑄@䣗岋値荈䃄썟쳌䃌䡓䤰䆋䤠�譍ၑ譌䷙䆋䠘咉⠤‹䇳ဏ䔒ࢋ譈ࡓ譈褋⑄䄠폿荈ツ썛쳌쳌䃌䡓䥐䆋䤰�譍ࡁ譍䣙咉䀤譌䣑쮋똏䴀‹證蠓⑄䤸䆋䠨䒉〤證⁁襈⑄䤨䆋䴘䦋䠐䒉․a㏒䣀쒃子쳃쳌쳌쳌쳌�■䡗䤰䆋䤐�譍ࡁ譍䣙懲襈⑔䰠톋譈䓋똏䔈‹證䄓틿譈⁏䒈䀤ֽ䠀�胶Į 957 | <=====> 958 | HS932#30@7FFCAB7DDC10 => 3タHζ(テフフフフ驃ル・WH・@I帰 H櫛M飢I曲M戯I・H欝$0・ H吋$(I帰H吋$ ラH欺$PHζ@_テフフフ@SH・0I帰 I緊M飢L緊M帰H欝$(・ 959 | <=====> 960 | HS65001#30@7FFCAB7DDC10 => 3�H��(������~���WH��@I�A H��M�QI��M�YI�H�T$0�A�A� H�D$(I�AH�D$ ��H�\$PH��@_����@SH��0I�A I��M�QL��M�AH�T$(� 961 | <=====> 962 | HQ14+30@7FFCAB7DDC10 => 䥀䆋䠠曆譍ၑ證䷈妋䤈ᦋ襈⑔ཁᨐ䇳ဏဏ䠋䒉⠤證ᡁ襈⑄@䣗岋値荈䃄썟쳌䃌䡓䤰䆋䤠�譍ၑ譌䷙䆋䠘咉⠤‹䇳ဏ䔒ࢋ譈ࡓ譈褋⑄䄠폿荈ツ썛쳌쳌䃌䡓䥐䆋䤰�譍ࡁ譍䣙咉䀤譌䣑쮋똏䴀‹證蠓⑄䤸䆋䠨䒉〤證⁁襈⑄䤨䆋䴘䦋䠐䒉․a㏒䣀쒃子쳃쳌쳌쳌쳌�■䡗䤰䆋䤐�譍ࡁ譍䣙懲襈⑔䰠톋譈䓋똏䔈‹證䄓틿譈⁏䒈䀤ֽ䠀�胶Į 963 | <=====> 964 | HS932#14+30@7FFCAB7DDC10 => @I帰 H櫛M飢I曲M戯I・H欝$0・ H吋$(I帰H吋$ ラH欺$PHζ@_テフフフ@SH・0I帰 I緊M飢L緊M帰H欝$(・ 965 | <=====> 966 | HS65001#14+30@7FFCAB7DDC10 => @I�A H��M�QI��M�YI�H�T$0�A�A� H�D$(I�AH�D$ ��H�\$PH��@_����@SH��0I�A I��M�QL��M�AH�T$(� 967 | <=====> 968 | HQ10@7FFCAB81E5B0 => 㩃扜極摬汳癡履湵瑩屹畢汩層畒瑮浩⽥瑕汩瑩敩⽳祤慮業彣牡慲⹹h 969 | <=====> 970 | HS932#10@7FFCAB81E5B0 => C:\buildslave\unity\build\Runtime/Utilities/dynamic_array.h 971 | <=====> 972 | HS65001#10@7FFCAB81E5B0 => C:\buildslave\unity\build\Runtime/Utilities/dynamic_array.h 973 | <=====> 974 | HQ14+10@7FFCAB81E5B0 => 畢汩層畒瑮浩⽥瑕汩瑩敩⽳祤慮業彣牡慲⹹h 975 | <=====> 976 | HS932#14+10@7FFCAB81E5B0 => build\Runtime/Utilities/dynamic_array.h 977 | <=====> 978 | HS65001#14+10@7FFCAB81E5B0 => build\Runtime/Utilities/dynamic_array.h 979 | <=====> 980 | HQ40@7FFCABD0E370 => 㩃扜極摬汳癡履湵瑩屹畢汩層畒瑮浩⽥瑕汩瑩敩⽳祤慮業彣牡慲⹹h 981 | <=====> 982 | HS932#40@7FFCABD0E370 => C:\buildslave\unity\build\Runtime/Utilities/dynamic_array.h 983 | <=====> 984 | HS65001#40@7FFCABD0E370 => C:\buildslave\unity\build\Runtime/Utilities/dynamic_array.h 985 | <=====> 986 | HQ14+40@7FFCABD0E370 => 畢汩層畒瑮浩⽥瑕汩瑩敩⽳祤慮業彣牡慲⹹h 987 | <=====> 988 | HS932#14+40@7FFCABD0E370 => build\Runtime/Utilities/dynamic_array.h 989 | <=====> 990 | HS65001#14+40@7FFCABD0E370 => build\Runtime/Utilities/dynamic_array.h 991 | <=====> 992 | HS65001#10@7FFCAB81E5B0 => H���*������ 993 | <=====> 994 | HQ14+10@7FFCAB81E5B0 => 숱￿쮃䠏횋譈䐈䎍䰁䦋䠈좋a䣑岋〤譈⑬䠸璋䀤荈⃄썟쳌쳌䣌岉ࠤ䡗䠠릋Đ 995 | <=====> 996 | HS932#14+10@7FFCAB81E5B0 => 1ツνH禁H・D垢L紀H曲AムH欺$0H詰$8H逆$@Hζ _テフフフフフH噂$WH・ H胸 997 | <=====> 998 | HS65001#14+10@7FFCAB81E5B0 => 1�����H��H�D�CL�IH��A��H�\$0H�l$8H�t$@H�� _������H�\$WH�� H�� 999 | <=====> 1000 | HQ10@7FFCAB81E5B0 => 쿩팢쳿쳌쳌쳌쳌쳌똏褁༂ƶʈ똏蠁༂Ʒ襦謂褁䠂Ƌ襈謂褁䠂Ƌ襈䠂Ƌ襈쌂㦃ༀ삕ʈ똏蠁༂ƶ襦༂Ʒ襦謂褁䠂Ƌ襈謂褁䠂Ƌ襈䠂Ƌ襈쌂쳌쳌쳌쳌쳌쳌ứ팢埿荈レ㶀낉¶䠀懲譈痱謒⤍蕘㛌׆끯¶䠁岉䀤蕈瓿䱜ދ�譈蜕謀䳃숻཈을蕈瓀䡂䊋䡀쾋㥉䁀䩵뿨Đༀ⤏⑄映཈쁾㥈၆ή䒋⠤䘹༘쎔똏䣃岋䀤譈⑴䡈쒃弰㋃䣛璋䠤똏䣃岋䀤荈ツ썟࠳찀쳌쳌荈ᣬဏ䰂솋⤏␄䡦縏䣀䄹琐㌊࿉솶荈ᣄ诃⑄䄈䀹༘삔荈ᣄ쳃쳌쳌쳌쳌쳌쳌팠埿荈⃬譈쟹⑄0 1001 | <=====> 1002 | HS932#10@7FFCAB81E5B0 => 鰕"モフフフフフフフフフフフカ・カ・カ・キf・・・H・H・・・H・H・H・H・テ・ 1003 | <=====> 1004 | HS65001#10@7FFCAB81E5B0 => ��"��������������������f���H�H���H�H�H�H�Ã9 1005 | <=====> 1006 | HQ14+10@7FFCAB81E5B0 => ༂ƶʈ똏蠁༂Ʒ襦謂褁䠂Ƌ襈謂褁䠂Ƌ襈䠂Ƌ襈쌂㦃ༀ삕ʈ똏蠁༂ƶ襦༂Ʒ襦謂褁䠂Ƌ襈謂褁䠂Ƌ襈䠂Ƌ襈쌂쳌쳌쳌쳌쳌쳌ứ팢埿荈レ㶀낉¶䠀懲譈痱謒⤍蕘㛌׆끯¶䠁岉䀤蕈瓿䱜ދ�譈蜕謀䳃숻཈을蕈瓀䡂䊋䡀쾋㥉䁀䩵뿨Đༀ⤏⑄映཈쁾㥈၆ή䒋⠤䘹༘쎔똏䣃岋䀤譈⑴䡈쒃弰㋃䣛璋䠤똏䣃岋䀤荈ツ썟࠳찀쳌쳌荈ᣬဏ䰂솋⤏␄䡦縏䣀䄹琐㌊࿉솶荈ᣄ诃⑄䄈䀹༘삔荈ᣄ쳃쳌쳌쳌쳌쳌쳌팠埿荈⃬譈쟹⑄0 1007 | <=====> 1008 | HS932#14+10@7FFCAB81E5B0 => カ・カ・キf・・・H・H・・・H・H・H・H・テ・ 1009 | <=====> 1010 | HS65001#14+10@7FFCAB81E5B0 => �����f���H�H���H�H�H�H�Ã9 1011 | <=====> 1012 | HQ40@7FFCABD0E370 => 쿩팢쳿쳌쳌쳌쳌쳌똏褁༂ƶʈ똏蠁༂Ʒ襦謂褁䠂Ƌ襈謂褁䠂Ƌ襈䠂Ƌ襈쌂㦃ༀ삕ʈ똏蠁༂ƶ襦༂Ʒ襦謂褁䠂Ƌ襈謂褁䠂Ƌ襈䠂Ƌ襈쌂쳌쳌쳌쳌쳌쳌ứ팢埿荈レ㶀낉¶䠀懲譈痱謒⤍蕘㛌׆끯¶䠁岉䀤蕈瓿䱜ދ�譈蜕謀䳃숻཈을蕈瓀䡂䊋䡀쾋㥉䁀䩵뿨Đༀ⤏⑄映཈쁾㥈၆ή䒋⠤䘹༘쎔똏䣃岋䀤譈⑴䡈쒃弰㋃䣛璋䠤똏䣃岋䀤荈ツ썟࠳찀쳌쳌荈ᣬဏ䰂솋⤏␄䡦縏䣀䄹琐㌊࿉솶荈ᣄ诃⑄䄈䀹༘삔荈ᣄ쳃쳌쳌쳌쳌쳌쳌팠埿荈⃬譈쟹⑄0 1013 | <=====> 1014 | HS932#40@7FFCABD0E370 => 鰕"モフフフフフフフフフフフカ・カ・カ・キf・・・H・H・・・H・H・H・H・テ・ 1015 | <=====> 1016 | HS65001#40@7FFCABD0E370 => ��"��������������������f���H�H���H�H�H�H�Ã9 1017 | <=====> 1018 | HQ14+40@7FFCABD0E370 => ༂ƶʈ똏蠁༂Ʒ襦謂褁䠂Ƌ襈謂褁䠂Ƌ襈䠂Ƌ襈쌂㦃ༀ삕ʈ똏蠁༂ƶ襦༂Ʒ襦謂褁䠂Ƌ襈謂褁䠂Ƌ襈䠂Ƌ襈쌂쳌쳌쳌쳌쳌쳌ứ팢埿荈レ㶀낉¶䠀懲譈痱謒⤍蕘㛌׆끯¶䠁岉䀤蕈瓿䱜ދ�譈蜕謀䳃숻཈을蕈瓀䡂䊋䡀쾋㥉䁀䩵뿨Đༀ⤏⑄映཈쁾㥈၆ή䒋⠤䘹༘쎔똏䣃岋䀤譈⑴䡈쒃弰㋃䣛璋䠤똏䣃岋䀤荈ツ썟࠳찀쳌쳌荈ᣬဏ䰂솋⤏␄䡦縏䣀䄹琐㌊࿉솶荈ᣄ诃⑄䄈䀹༘삔荈ᣄ쳃쳌쳌쳌쳌쳌쳌팠埿荈⃬譈쟹⑄0 1019 | <=====> 1020 | HS932#14+40@7FFCABD0E370 => カ・カ・キf・・・H・H・・・H・H・H・H・テ・ 1021 | <=====> 1022 | HS65001#14+40@7FFCABD0E370 => �����f���H�H���H�H�H�H�Ã9 1023 | <=====> 1024 | HQ-4C@7FFCABF1EAD0 => 뻩븝埾荈⃬㶀ꊷF謀痹謒甍៿㈰リ׆ꊡF䠁උ﷢q譈뢁 1025 | <=====> 1026 | HS932#-4C@7FFCABF1EAD0 => 鮴セWH・ €=キ「F 1027 | <=====> 1028 | HS65001#-4C@7FFCABF1EAD0 => ���WH�� �=��F 1029 | <=====> 1030 | HQ14+-4C@7FFCABF1EAD0 => 謒甍៿㈰リ׆ꊡF䠁උ﷢q譈뢁 1031 | <=====> 1032 | HQ14+-C@7FFCABF1EAD0 => 耀䑷耀䑷耀䑷耀䑷耀䑷耀䑷耀䑷耀䑷耀䑷 1033 | <=====> 1034 | HQ0@7FFCABF1EAD0 => 쀳荈⣄쳃쳌쳌쳌쳌䣌䥘䆋䵀�譍ぁ譌䣑咉䠤襈⑄䥀䆋䤸压䤈஋襈⑄䄸‹譍၃䒉〤證⡁襈⑄䤨䆋䴠䦋䠘䒉․a䣒쒃썘쳌쳌쳌쳌쳌䃌䡓䠠솋譈䧚좋탿譈⁋࿲䐑〤胨ب䠀�胶Į 1035 | <=====> 1036 | HS932#0@7FFCABF1EAD0 => 3タHζ(テフフフフフフフフフフH・XI帰@M緊M帰0L錦H欝$HH吋$@I帰8I鬼I・H吋$8A・ 1037 | <=====> 1038 | HS65001#0@7FFCABF1EAD0 => 3�H��(�����������H��XI�A@M��M�A0L��H�T$HH�D$@I�A8I�SI� H�D$8A� 1039 | <=====> 1040 | HQ14+0@7FFCABF1EAD0 => 䥘䆋䵀�譍ぁ譌䣑咉䠤襈⑄䥀䆋䤸压䤈஋襈⑄䄸‹譍၃䒉〤證⡁襈⑄䤨䆋䴠䦋䠘䒉․a䣒쒃썘쳌쳌쳌쳌쳌䃌䡓䠠솋譈䧚좋탿譈⁋࿲䐑〤胨ب䠀�胶Į 1041 | <=====> 1042 | HS932#14+0@7FFCABF1EAD0 => XI帰@M緊M帰0L錦H欝$HH吋$@I帰8I鬼I・H吋$8A・ 1043 | <=====> 1044 | HS65001#14+0@7FFCABF1EAD0 => XI�A@M��M�A0L��H�T$HH�D$@I�A8I�SI� H�D$8A� 1045 | <=====> 1046 | HQ30@7FFCABF1EAD0 => ˫쀳譈⑜䡠璋栤荈僄썟~郿譈୵譈忍 1047 | <=====> 1048 | HS932#30@7FFCABF1EAD0 => ・3タH欺$`H逆$hHζP_テ韶^食曲鑾 ・H曲靉_ 1049 | <=====> 1050 | HS65001#30@7FFCABF1EAD0 => �3�H�\$`H�t$hH��P_���^���H���u ��H����_ 1051 | <=====> 1052 | HS932#14+30@7FFCABF1EAD0 => 韶^食曲鑾 ・H曲靉_ 1053 | <=====> 1054 | HS65001#14+30@7FFCABF1EAD0 => ��^���H���u ��H����_ 1055 | <=====> 1056 | HQ8@7FFCAB81E5B0 => 啀呁啁坁荈㣬ဏぁ䆋䠐譌䡡譄ࡩᄏ⑄映猏ࣘས셾䲉怤섻茏ǖ 1057 | <=====> 1058 | HS932#8@7FFCAB81E5B0 => @UATAUAWH・8A0帰H矩L蟻HD喫D$ fsリf~チ鵜$`;チω 1059 | <=====> 1060 | HS65001#8@7FFCAB81E5B0 => @UATAUAWH��8A0�AH��L�aHD�iD$ fs�f~��L$`;��� 1061 | <=====> 1062 | HQ14+8@7FFCAB81E5B0 => 譌䡡譄ࡩᄏ⑄映猏ࣘས셾䲉怤섻茏ǖ 1063 | <=====> 1064 | HS932#14+8@7FFCAB81E5B0 => 矩L蟻HD喫D$ fsリf~チ鵜$`;チω 1065 | <=====> 1066 | HS65001#14+8@7FFCAB81E5B0 => ��L�aHD�iD$ fs�f~��L$`;��� 1067 | <=====> 1068 | HQ10@7FFCAB81E5B0 => 區噁荈⣬捌၁譈䣙䆋䨰ѣ䢀಍䡀䎋䡈ಋ䓈놋ð 1069 | <=====> 1070 | HS932#10@7FFCAB81E5B0 => @SAVH・(LcAH緊H帰0Jc€H・@H気HH・ネD恭・ 1071 | <=====> 1072 | HS65001#10@7FFCAB81E5B0 => @SAVH��(LcAH��H�A0Jc�H� @H�CHH� �D��� 1073 | <=====> 1074 | HS932#14+10@7FFCAB81E5B0 => c€H・@H気HH・ネD恭・ 1075 | <=====> 1076 | HS65001#14+10@7FFCAB81E5B0 => c�H� @H�CHH� �D��� 1077 | <=====> 1078 | HQ18@7FFCAB81E5B0 => 區噁荈⣬捌၁譈䣙䆋䨰ѣ䢀಍䡀䎋䡈ಋ䓈놋ð 1079 | <=====> 1080 | HS932#18@7FFCAB81E5B0 => @SAVH・(LcAH緊H帰0Jc€H・@H気HH・ネD恭・ 1081 | <=====> 1082 | HS65001#18@7FFCAB81E5B0 => @SAVH��(LcAH��H�A0Jc�H� @H�CHH� �D��� 1083 | <=====> 1084 | HS932#14+20@7FFCAB81E5B0 => A0H飢HE3メH欝$@H笈P 1085 | 1086 | <=====> 1087 | HS65001#14+20@7FFCAB81E5B0 => A0H�QHE3�H�T$@H��P 1088 | 1089 | <=====> 1090 | HQ38@7FFCABD0E370 => 啀呁啁坁荈㣬ဏぁ䆋䠐譌䡡譄ࡩᄏ⑄映猏ࣘས셾䲉怤섻茏ǖ 1091 | <=====> 1092 | HS932#38@7FFCABD0E370 => @UATAUAWH・8A0帰H矩L蟻HD喫D$ fsリf~チ鵜$`;チω 1093 | <=====> 1094 | HS65001#38@7FFCABD0E370 => @UATAUAWH��8A0�AH��L�aHD�iD$ fs�f~��L$`;��� 1095 | <=====> 1096 | HQ40@7FFCABD0E370 => 區噁荈⣬捌၁譈䣙䆋䨰ѣ䢀಍䡀䎋䡈ಋ䓈놋ð 1097 | <=====> 1098 | HS932#40@7FFCABD0E370 => @SAVH・(LcAH緊H帰0Jc€H・@H気HH・ネD恭・ 1099 | <=====> 1100 | HS65001#40@7FFCABD0E370 => @SAVH��(LcAH��H�A0Jc�H� @H�CHH� �D��� 1101 | <=====> 1102 | HS932#14+40@7FFCABD0E370 => c€H・@H気HH・ネD恭・ 1103 | <=====> 1104 | HS65001#14+40@7FFCABD0E370 => c�H� @H�CHH� �D��� 1105 | <=====> 1106 | HQ48@7FFCABD0E370 => 區噁荈⣬捌၁譈䣙䆋䨰ѣ䢀಍䡀䎋䡈ಋ䓈놋ð 1107 | <=====> 1108 | HS932#48@7FFCABD0E370 => @SAVH・(LcAH緊H帰0Jc€H・@H気HH・ネD恭・ 1109 | <=====> 1110 | HS65001#48@7FFCABD0E370 => @SAVH��(LcAH��H�A0Jc�H� @H�CHH� �D��� 1111 | <=====> 1112 | HQ30@7FFCAB81E5B0 => 譌⑴䰠沋⠤譌⑤䠰粋栤蕈瓭䠒උ〿ö譍䣇햋ർ䠀쒃䄸嵟쳃쳌쳌쳌쳌쳌䣌岉․坖噁荈レ譈䗹證䧈�譈窯 줳襈褎ࡎ蕈࿀풄 1113 | <=====> 1114 | HS932#30@7FFCAB81E5B0 => L逆$ L詰$(L掬$0H弓$hH・tH・?0・ 1115 | <=====> 1116 | HS65001#30@7FFCAB81E5B0 => L�t$ L�l$(L�d$0H�|$hH��tH� ?0� 1117 | <=====> 1118 | HQ14+30@7FFCAB81E5B0 => 蕈瓭䠒උ〿ö譍䣇햋ർ䠀쒃䄸嵟쳃쳌쳌쳌쳌쳌䣌岉․坖噁荈レ譈䗹證䧈�譈窯 줳襈褎ࡎ蕈࿀풄 1119 | <=====> 1120 | HQ14+20@7FFCAB81E5B0 => 證䇣䅟䅞䅝嵜诃၂瀤‼蔏퍦 䋶ࠐꥵ荈版䢢ʋ䣐䈹༘䦅৓䠀䊋䠈탷㥈⁂蕴㟩৓䰀玍䤐혻蔏퍑 證䠆މ淩￿䧿햋࿩￿䣿岉ࠤ襄⑄䠘咉ဤ坖呁噁坁荈䃬譍䇹譌䳲䡥ҋ急 1121 | <=====> 1122 | HS932#14+20@7FFCAB81E5B0 => I九A_A^A]A\]テ毅$p< ・モ 1123 | <=====> 1124 | HS65001#14+20@7FFCAB81E5B0 => I��A_A^A]A\]ËB$p< �f� 1125 | <=====> 1126 | -------------------------------------------------------------------------------- /MisakaHookFinder/texthook.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | // texthook.h 4 | // 8/24/2013 jichi 5 | // Branch: IHF_DLL/IHF_CLIENT.h, rev 133 6 | // 7 | // 8/24/2013 TODO: 8 | // - Clean up this file 9 | // - Reduce global variables. Use namespaces or singleton classes instead. 10 | #include "types.h" 11 | 12 | // Artikash 6/17/2019 TODO: These have the wrong values on x64 13 | /** jichi 12/24/2014 14 | * @param addr function address 15 | * @param frame real address of the function, supposed to be the same as addr 16 | * @param stack address of current stack - 4 17 | * @return If success, which is reverted 18 | */ 19 | inline std::atomic trigger_fun = nullptr; 20 | 21 | // jichi 9/25/2013: This class will be used by NtMapViewOfSectionfor 22 | // interprocedure communication, where constructor/destructor will NOT work. 23 | 24 | class TextHook 25 | { 26 | public: 27 | HookParam hp; 28 | union 29 | { 30 | uint64_t address; 31 | void* location; 32 | }; // Absolute address 33 | 34 | bool Insert(HookParam hp, DWORD set_flag); 35 | void Clear(); 36 | 37 | private: 38 | void Read(); 39 | bool InsertHookCode(); 40 | bool InsertReadCode(); 41 | void Send(uintptr_t dwDatabase); 42 | int GetLength(uintptr_t base, uintptr_t in); // jichi 12/25/2013: Return 0 if failed 43 | int HookStrlen(BYTE* data); 44 | void RemoveHookCode(); 45 | void RemoveReadCode(); 46 | 47 | volatile DWORD useCount; 48 | HANDLE readerThread, readerEvent; 49 | bool err; 50 | BYTE trampoline[x64 ? 140 : 40]; 51 | 52 | }; 53 | 54 | enum { MAX_HOOK = 300, HOOK_BUFFER_SIZE = MAX_HOOK * sizeof(TextHook), HOOK_SECTION_SIZE = HOOK_BUFFER_SIZE * 2 }; 55 | 56 | // EOF -------------------------------------------------------------------------------- /MisakaHookFinder/texthost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmin0822/MisakaHookFinder/77a15864652305c1e84593319987d0407b370567/MisakaHookFinder/texthost.cpp -------------------------------------------------------------------------------- /MisakaHookFinder/texthost.def: -------------------------------------------------------------------------------- 1 | LIBRARY "texthost" 2 | EXPORTS 3 | TextHostInit @1 4 | InjectProcess @2 5 | DetachProcess @3 6 | InsertHook @4 7 | RemoveHook @5 8 | SearchForText @6 9 | SearchForHooks @7 10 | AddClipboardThread @8 11 | -------------------------------------------------------------------------------- /MisakaHookFinder/texthost.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "pch.h" 4 | #include "types.h" 5 | 6 | typedef void (FindHooks)(); 7 | typedef void (ProcessEvent)(DWORD processId); 8 | typedef void (OnCreateThread)(int64_t thread_id, DWORD processId, uint64_t addr, uint64_t context, uint64_t subcontext, LPCWSTR name, LPCWSTR hookcode); 9 | typedef void (OnRemoveThread)(int64_t thread_id); 10 | typedef void (OutputText)(int64_t thread_id, LPCWSTR output); 11 | 12 | namespace TextHost 13 | { 14 | DWORD TextHostInit(ProcessEvent connect, ProcessEvent disconnect, OnCreateThread create, OnRemoveThread remove, OutputText output); 15 | DWORD InjectProcess(DWORD processId); 16 | DWORD DetachProcess(DWORD processId); 17 | DWORD InsertHook(DWORD processId, LPCWSTR command); 18 | DWORD RemoveHook(DWORD processId, uint64_t address); 19 | DWORD SearchForText(DWORD processId, LPCWSTR text, int codepage); 20 | VOID SearchForHooks(DWORD processId, SearchParam* sp, FindHooks findhooks); 21 | DWORD AddClipboardThread(HWND handle); 22 | } -------------------------------------------------------------------------------- /MisakaHookFinder/textthread.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | #include "textthread.h" 3 | #include "host.h" 4 | 5 | extern const wchar_t* INVALID_CODEPAGE; 6 | 7 | // return true if repetition found (see https://github.com/Artikash/Textractor/issues/40) 8 | static bool RemoveRepetition(std::wstring& text) 9 | { 10 | wchar_t* end = text.data() + text.size(); 11 | for (int length = text.size() / 3; length > 6; --length) 12 | if (memcmp(end - length * 3, end - length * 2, length * sizeof(wchar_t)) == 0 && memcmp(end - length * 3, end - length * 1, length * sizeof(wchar_t)) == 0) 13 | return RemoveRepetition(text = std::wstring(end - length, length)), true; 14 | return false; 15 | } 16 | 17 | TextThread::TextThread(ThreadParam tp, HookParam hp, std::optional name) : 18 | handle(threadCounter++), 19 | name(name.value_or(StringToWideString(hp.name))), 20 | tp(tp), 21 | hp(hp) 22 | {} 23 | 24 | void TextThread::Start() 25 | { 26 | CreateTimerQueueTimer(&timer, NULL, [](void* This, BOOLEAN) { ((TextThread*)This)->Flush(); }, this, 10, 10, WT_EXECUTELONGFUNCTION); 27 | } 28 | 29 | void TextThread::Stop() 30 | { 31 | timer = NULL; 32 | } 33 | 34 | void TextThread::AddSentence(std::wstring sentence) 35 | { 36 | queuedSentences->emplace_back(std::move(sentence)); 37 | } 38 | 39 | void TextThread::Push(BYTE* data, int length) 40 | { 41 | if (length < 0) return; 42 | std::scoped_lock lock(bufferMutex); 43 | 44 | BYTE doubleByteChar[2]; 45 | if (length == 1) // doublebyte characters must be processed as pairs 46 | if (leadByte) std::tie(doubleByteChar[0], doubleByteChar[1], data, length, leadByte) = std::tuple(leadByte, data[0], doubleByteChar, 2, 0); 47 | else if (IsDBCSLeadByteEx(hp.codepage ? hp.codepage : Host::defaultCodepage, data[0])) std::tie(leadByte, length) = std::tuple(data[0], 0); 48 | 49 | if (hp.type & HEX_DUMP) for (int i = 0; i < length; i += sizeof(short)) buffer.append(FormatString(L"%04hX ", *(short*)(data + i))); 50 | else if (hp.type & USING_UNICODE) buffer.append((wchar_t*)data, length / sizeof(wchar_t)); 51 | else if (auto converted = StringToWideString(std::string((char*)data, length), hp.codepage ? hp.codepage : Host::defaultCodepage)) buffer.append(converted.value()); 52 | else Host::AddConsoleOutput(INVALID_CODEPAGE); 53 | if (hp.type & FULL_STRING) buffer.push_back(L'\n'); 54 | lastPushTime = GetTickCount(); 55 | 56 | if (filterRepetition) 57 | { 58 | if (std::all_of(buffer.begin(), buffer.end(), [&](wchar_t ch) { return repeatingChars.find(ch) != repeatingChars.end(); })) buffer.clear(); 59 | if (RemoveRepetition(buffer)) // sentence repetition detected, which means the entire sentence has already been received 60 | { 61 | repeatingChars = std::unordered_set(buffer.begin(), buffer.end()); 62 | AddSentence(std::move(buffer)); 63 | buffer.clear(); 64 | } 65 | } 66 | 67 | if (flushDelay == 0 && hp.type & FULL_STRING) 68 | { 69 | AddSentence(std::move(buffer)); 70 | buffer.clear(); 71 | } 72 | } 73 | 74 | void TextThread::Push(const wchar_t* data) 75 | { 76 | std::scoped_lock lock(bufferMutex); 77 | // not sure if this should filter repetition 78 | lastPushTime = GetTickCount(); 79 | buffer += data; 80 | } 81 | 82 | void TextThread::Flush() 83 | { 84 | { 85 | auto storage = this->storage.Acquire(); 86 | if (storage->size() > maxHistorySize) storage->erase(0, storage->size() - maxHistorySize); // https://github.com/Artikash/Textractor/issues/127#issuecomment-486882983 87 | } 88 | 89 | std::vector sentences; 90 | queuedSentences->swap(sentences); 91 | int totalSize = 0; 92 | for (auto& sentence : sentences) 93 | { 94 | totalSize += sentence.size(); 95 | sentence.erase(std::remove(sentence.begin(), sentence.end(), L'\0'), sentence.end()); 96 | if (Output(*this, sentence)) storage->append(sentence); 97 | } 98 | 99 | std::scoped_lock lock(bufferMutex); 100 | if (buffer.empty()) return; 101 | if (buffer.size() > maxBufferSize || GetTickCount() - lastPushTime > flushDelay) 102 | { 103 | AddSentence(std::move(buffer)); 104 | buffer.clear(); 105 | } 106 | } -------------------------------------------------------------------------------- /MisakaHookFinder/textthread.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "types.h" 4 | 5 | class TextThread 6 | { 7 | public: 8 | using OutputCallback = std::function; 9 | inline static OutputCallback Output; 10 | 11 | inline static bool filterRepetition = true; 12 | inline static int flushDelay = 400; // flush every 400ms by default 13 | inline static int maxBufferSize = 1000; 14 | inline static int maxHistorySize = 10'000'000; 15 | 16 | TextThread(ThreadParam tp, HookParam hp, std::optional name = {}); 17 | 18 | void Start(); 19 | void Stop(); 20 | void AddSentence(std::wstring sentence); 21 | void Push(BYTE* data, int length); 22 | void Push(const wchar_t* data); 23 | 24 | Synchronized storage; 25 | const int64_t handle; 26 | const std::wstring name; 27 | const ThreadParam tp; 28 | const HookParam hp; 29 | 30 | private: 31 | inline static int threadCounter = 0; 32 | 33 | void Flush(); 34 | 35 | std::wstring buffer; 36 | BYTE leadByte = 0; 37 | std::unordered_set repeatingChars; 38 | std::mutex bufferMutex; 39 | DWORD lastPushTime = 0; 40 | Synchronized> queuedSentences; 41 | struct TimerDeleter { void operator()(HANDLE h) { DeleteTimerQueueTimer(NULL, h, INVALID_HANDLE_VALUE); } }; 42 | AutoHandle timer = NULL; 43 | }; -------------------------------------------------------------------------------- /MisakaHookFinder/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "pch.h" 4 | #include "const.h" 5 | 6 | class WinMutex // Like CMutex but works with scoped_lock 7 | { 8 | public: 9 | WinMutex(std::wstring name = L"", LPSECURITY_ATTRIBUTES sa = nullptr) : m(CreateMutexW(sa, FALSE, name.empty() ? NULL : name.c_str())) {} 10 | void lock() { if (m) WaitForSingleObject(m, INFINITE); } 11 | void unlock() { if (m) ReleaseMutex(m); } 12 | 13 | private: 14 | AutoHandle<> m; 15 | }; 16 | 17 | inline SECURITY_ATTRIBUTES allAccess = std::invoke([] // allows non-admin processes to access kernel objects made by admin processes 18 | { 19 | static SECURITY_DESCRIPTOR sd = {}; 20 | InitializeSecurityDescriptor(&sd, SECURITY_DESCRIPTOR_REVISION); 21 | SetSecurityDescriptorDacl(&sd, TRUE, NULL, FALSE); 22 | return SECURITY_ATTRIBUTES{ sizeof(SECURITY_ATTRIBUTES), &sd, FALSE }; 23 | }); 24 | 25 | // jichi 3/7/2014: Add guessed comment 26 | struct HookParam 27 | { 28 | uint64_t address; // absolute or relative address 29 | int offset, // offset of the data in the memory 30 | index, // deref_offset1 31 | split, // offset of the split character 32 | split_index, // deref_offset2 33 | null_length; 34 | 35 | wchar_t module[MAX_MODULE_SIZE]; 36 | 37 | char function[MAX_MODULE_SIZE]; 38 | DWORD type; // flags 39 | UINT codepage; // text encoding 40 | short length_offset; // index of the string length 41 | uintptr_t padding; // padding before string 42 | DWORD user_value; // 7/20/2014: jichi additional parameters for PSP games 43 | 44 | void(*text_fun)(DWORD stack, HookParam* hp, BYTE obsoleteAlwaysZero, DWORD* data, DWORD* split, DWORD* len); 45 | bool(*filter_fun)(void* data, DWORD* len, HookParam* hp, BYTE obsoleteAlwaysZero); // jichi 10/24/2014: Add filter function. Return false to skip the text 46 | bool(*hook_fun)(DWORD stack, HookParam* hp); // jichi 10/24/2014: Add generic hook function, return false if stop execution. 47 | int(*length_fun)(uintptr_t stack, uintptr_t data); // data after padding added 48 | 49 | char name[HOOK_NAME_SIZE]; 50 | }; 51 | 52 | struct ThreadParam 53 | { 54 | bool operator==(ThreadParam other) const { return processId == other.processId && addr == other.addr && ctx == other.ctx && ctx2 == other.ctx2; } 55 | DWORD processId; 56 | uint64_t addr; 57 | uint64_t ctx; // The context of the hook: by default the first value on stack, usually the return address 58 | uint64_t ctx2; // The subcontext of the hook: 0 by default, generated in a method specific to the hook 59 | }; 60 | 61 | struct SearchParam 62 | { 63 | BYTE pattern[PATTERN_SIZE] = { x64 ? 0xcc : 0x55, x64 ? 0xcc : 0x8b, x64 ? 0x48 : 0xec, 0x89 }; // pattern in memory to search for 64 | int length = x64 ? 4 : 3, // length of pattern (zero means this SearchParam is invalid and the default should be used) 65 | offset = x64 ? 2 : 0, // offset from start of pattern to add hook 66 | searchTime = 20000, // ms 67 | maxRecords = 100000, 68 | codepage = SHIFT_JIS; 69 | uintptr_t padding = 0, // same as hook param padding 70 | minAddress = 0, maxAddress = (uintptr_t)-1; // hook all functions between these addresses (used only if both modules empty) 71 | wchar_t boundaryModule[MAX_MODULE_SIZE] = {}; // hook all functions within this module (middle priority) 72 | wchar_t exportModule[MAX_MODULE_SIZE] = {}; // hook the exports of this module (highest priority) 73 | wchar_t text[PATTERN_SIZE] = {}; // text to search for 74 | void(*hookPostProcessor)(HookParam&) = nullptr; 75 | }; 76 | 77 | struct InsertHookCmd // From host 78 | { 79 | InsertHookCmd(HookParam hp) : hp(hp) {} 80 | HostCommandType command = HOST_COMMAND_NEW_HOOK; 81 | HookParam hp; 82 | }; 83 | 84 | struct RemoveHookCmd // From host 85 | { 86 | RemoveHookCmd(uint64_t address) : address(address) {} 87 | HostCommandType command = HOST_COMMAND_REMOVE_HOOK; 88 | uint64_t address; 89 | }; 90 | 91 | struct FindHookCmd // From host 92 | { 93 | FindHookCmd(SearchParam sp) : sp(sp) {} 94 | HostCommandType command = HOST_COMMAND_FIND_HOOK; 95 | SearchParam sp; 96 | }; 97 | 98 | struct ConsoleOutputNotif // From dll 99 | { 100 | ConsoleOutputNotif(std::string message = "") { strncpy_s(this->message, message.c_str(), MESSAGE_SIZE - 1); } 101 | HostNotificationType command = HOST_NOTIFICATION_TEXT; 102 | char message[MESSAGE_SIZE] = {}; 103 | }; 104 | 105 | struct HookFoundNotif // From dll 106 | { 107 | HookFoundNotif(HookParam hp, wchar_t* text) : hp(hp) { wcsncpy_s(this->text, text, MESSAGE_SIZE - 1); } 108 | HostNotificationType command = HOST_NOTIFICATION_FOUND_HOOK; 109 | HookParam hp; 110 | wchar_t text[MESSAGE_SIZE] = {}; // though type is wchar_t, may not be encoded in UTF-16 (it's just convenient to use wcs* functions) 111 | }; 112 | 113 | struct HookRemovedNotif // From dll 114 | { 115 | HookRemovedNotif(uint64_t address) : address(address) {}; 116 | HostNotificationType command = HOST_NOTIFICATION_RMVHOOK; 117 | uint64_t address; 118 | }; 119 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | MisakaHookFinder 御坂Hook提取器 3 |
4 |

5 | 6 |

7 | Galgame/文字游戏文本钩子提取工具 8 |
9 |
10 |

11 | 12 | 13 | 本项目为[MisakaTranslator](https://github.com/hanmin0822/MisakaTranslator)的子项目之一,可以与MisakaTranslator一起使用以获得更好的使用体验! 14 | 15 | 16 | ## 软件功能及特点 17 | 18 | MisakaHookFinder采用Textractor作为Hook部分模块,最大程度对其精简,保证稳定的同时使搜寻Hook的过程更加便捷和简单,易于新手使用。 19 | 20 | MisakaHookFinder可以搜索到很多常规模式下搜索不到的文本钩子,得到的特殊码在目前知名的几款翻译软件(例如YUKI、MisakaTranslator等)中通用, 21 | 同时还支持剪贴板输出以便其他软件(如VNR等)调用翻译。 22 | 23 | ## 使用教程和说明 24 | 25 | 由于本项目不打算国际化,说明不放在Github上,请见[这里](https://blog.csdn.net/hanmin822/article/details/106362350) 26 | 27 | ## 帮助开发者 28 | 29 | 如果您对这个项目感兴趣,想提供任何帮助,欢迎联系作者。 30 | 31 | E-Mail/QQ:512240272@qq.com 32 | 33 | ## 本项目所使用到的其他开源项目 34 | 35 | * [lgztx96/texthost](https://github.com/lgztx96/texthost) 36 | * [Artikash/Textractor](https://github.com/Artikash/Textractor) 37 | 38 | 39 | ## 其他注意 40 | 41 | 软件开发过程中使用到部分网络素材,如果侵犯到您的权益,请第一时间联系作者删除,谢谢! 42 | --------------------------------------------------------------------------------