├── LICENSE ├── QQMusicSkinExtract.sln ├── QQMusicSkinExtract.v12.suo └── QQMusicSkinExtract ├── App.config ├── CmdHelper.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── QQMusic.ico ├── QQMusic.png ├── QQMusicSkinExtract.csproj ├── ResExtract.cs ├── ResPackage.cs ├── bin ├── Debug │ ├── KGSkinExtract.exe │ ├── KGSkinExtract.exe.config │ ├── KGSkinExtract.pdb │ ├── KGSkinExtract.vshost.exe │ ├── KGSkinExtract.vshost.exe.config │ └── KGSkinExtract.vshost.exe.manifest └── Release │ ├── KGSkinExtract.vshost.exe.config │ ├── KGSkinExtract.vshost.exe.manifest │ ├── QQMusicSkinExtract.exe │ ├── QQMusicSkinExtract.exe.config │ ├── QQMusicSkinExtract.pdb │ ├── QQMusicSkinExtract.vshost.exe │ ├── QQMusicSkinExtract.vshost.exe.config │ └── QQMusicSkinExtract.vshost.exe.manifest ├── frmQQMusicSkinExtract.Designer.cs ├── frmQQMusicSkinExtract.cs ├── frmQQMusicSkinExtract.resx └── obj ├── Debug ├── DesignTimeResolveAssemblyReferences.cache ├── DesignTimeResolveAssemblyReferencesInput.cache ├── KGSkinExtract.Properties.Resources.resources ├── KGSkinExtract.csproj.FileListAbsolute.txt ├── KGSkinExtract.csproj.GenerateResource.Cache ├── KGSkinExtract.csprojResolveAssemblyReference.cache ├── KGSkinExtract.exe ├── KGSkinExtract.pdb ├── KugouSkinRead.frmKGSkinExtract.resources ├── QQMusicSkinExtract.csproj.FileListAbsolute.txt ├── QQMusicSkinExtract.csproj.GenerateResource.Cache ├── QQMusicSkinExtract.csprojResolveAssemblyReference.cache ├── QQMusicSkinExtract.frmQQMusicSkinExtract.resources └── TempPE │ └── Properties.Resources.Designer.cs.dll └── Release ├── DesignTimeResolveAssemblyReferencesInput.cache ├── KGSkinExtract.csproj.FileListAbsolute.txt ├── QQMusicSkinExtract.Properties.Resources.resources ├── QQMusicSkinExtract.csproj.FileListAbsolute.txt ├── QQMusicSkinExtract.csproj.GenerateResource.Cache ├── QQMusicSkinExtract.exe ├── QQMusicSkinExtract.frmQQMusicSkinExtract.resources ├── QQMusicSkinExtract.pdb └── TempPE └── Properties.Resources.Designer.cs.dll /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 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 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 | {project} Copyright (C) {year} {fullname} 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 | -------------------------------------------------------------------------------- /QQMusicSkinExtract.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2013 4 | VisualStudioVersion = 12.0.40629.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QQMusicSkinExtract", "QQMusicSkinExtract\QQMusicSkinExtract.csproj", "{21DEF6CA-4FC8-4E1F-96A7-3694402BF043}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {21DEF6CA-4FC8-4E1F-96A7-3694402BF043}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {21DEF6CA-4FC8-4E1F-96A7-3694402BF043}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {21DEF6CA-4FC8-4E1F-96A7-3694402BF043}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {21DEF6CA-4FC8-4E1F-96A7-3694402BF043}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /QQMusicSkinExtract.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract.v12.suo -------------------------------------------------------------------------------- /QQMusicSkinExtract/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/CmdHelper.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Tools 8 | { 9 | class CmdHelper 10 | { 11 | /// 12 | /// 执行DOS命令,返回DOS命令的输出 13 | /// 14 | /// dos命令 15 | /// 返回DOS命令的输出 16 | public static String ExecuteCmd(String cmd) 17 | { 18 | return ExecuteCmd(cmd, "", 0); 19 | } 20 | /// 21 | /// 执行DOS命令,返回DOS命令的输出 22 | /// 23 | /// dos命令 24 | /// 工作目录 25 | /// 返回DOS命令的输出 26 | public static String ExecuteCmd(String cmd, String workingDirectory) 27 | { 28 | return ExecuteCmd(cmd, workingDirectory, 0); 29 | } 30 | 31 | /// 32 | /// 执行DOS命令,返回DOS命令的输出 33 | /// 34 | /// dos命令 35 | /// 等待命令执行的时间(单位:毫秒), 36 | /// 如果设定为0,则无限等待 37 | /// 返回DOS命令的输出 38 | public static String ExecuteCmd(String cmd, int ms) 39 | { 40 | return ExecuteCmd(cmd, "", ms); 41 | } 42 | /// 43 | /// 执行DOS命令,返回DOS命令的输出 44 | /// 45 | /// dos命令 46 | /// 工作目录 47 | /// 等待命令执行的时间(单位:毫秒), 48 | /// 如果设定为0,则无限等待 49 | /// 返回DOS命令的输出 50 | public static String ExecuteCmd(String cmd, String workingDirectory, int ms) 51 | { 52 | String output = ""; //输出字符串 53 | if (cmd != null && !cmd.Equals("")) 54 | { 55 | System.Diagnostics.Process process = new System.Diagnostics.Process();//创建进程对象 56 | System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo(); 57 | startInfo.FileName = "cmd.exe";//设定需要执行的命令 58 | startInfo.Arguments = "/C " + cmd;//“/C”表示执行完命令后马上退出 59 | startInfo.UseShellExecute = false;//不使用系统外壳程序启动 60 | startInfo.RedirectStandardInput = false;//不重定向输入 61 | startInfo.RedirectStandardOutput = true; //重定向输出 62 | startInfo.CreateNoWindow = true;//不创建窗口 63 | if (workingDirectory != null) 64 | startInfo.WorkingDirectory = workingDirectory; 65 | process.StartInfo = startInfo; 66 | try 67 | { 68 | if (process.Start())//开始进程 69 | { 70 | if (ms == 0) 71 | { 72 | process.WaitForExit();//这里无限等待进程结束 73 | } 74 | else 75 | { 76 | process.WaitForExit(ms); //等待进程结束,等待时间为指定的毫秒 77 | } 78 | output = process.StandardOutput.ReadToEnd();//读取进程的输出 79 | } 80 | } 81 | catch 82 | { 83 | } 84 | finally 85 | { 86 | if (process != null) 87 | process.Close(); 88 | } 89 | } 90 | return output; 91 | } 92 | 93 | /* 94 | public static void ExecuteCmd(String cmd) 95 | { 96 | 97 | System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo(); 98 | startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden; 99 | startInfo.FileName = "cmd.exe"; 100 | startInfo.Arguments = "/C " + cmd; 101 | Process process = Process.Start(startInfo); 102 | process.WaitForExit(); 103 | // process.Start(); 104 | } 105 | public static void ExecuteCmd(String cmd, String workingDirectory) 106 | { 107 | 108 | System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo(); 109 | startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden; 110 | startInfo.WorkingDirectory = workingDirectory; 111 | startInfo.FileName = "cmd.exe"; 112 | startInfo.Arguments = "/C " + cmd; 113 | 114 | Process process = Process.Start(startInfo); 115 | process.WaitForExit(); 116 | // process.Start(); 117 | } 118 | */ 119 | } 120 | } 121 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace QQMusicSkinExtract 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// 应用程序的主入口点。 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new frmQQMusicSkinExtract()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过以下 6 | // 特性集控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("KugouSkinRead")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Microsoft")] 12 | [assembly: AssemblyProduct("KugouSkinRead")] 13 | [assembly: AssemblyCopyright("Copyright © Microsoft 2016")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 使此程序集中的类型 18 | // 对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型, 19 | // 则将该类型上的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("d620f715-142f-4037-83a4-6dfb340a62e4")] 24 | 25 | // 程序集的版本信息由下面四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | // 可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, 33 | // 方法是按如下所示使用“*”: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace QQMusicSkinExtract.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// 一个强类型的资源类,用于查找本地化的字符串等。 17 | /// 18 | // 此类是由 StronglyTypedResourceBuilder 19 | // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。 20 | // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen 21 | // (以 /str 作为命令选项),或重新生成 VS 项目。 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// 返回此类使用的缓存的 ResourceManager 实例。 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("QQMusicSkinExtract.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// 使用此强类型资源类,为所有资源查找 51 | /// 重写当前线程的 CurrentUICulture 属性。 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace QQMusicSkinExtract.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "12.0.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/QQMusic.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/QQMusic.ico -------------------------------------------------------------------------------- /QQMusicSkinExtract/QQMusic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/QQMusic.png -------------------------------------------------------------------------------- /QQMusicSkinExtract/QQMusicSkinExtract.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {21DEF6CA-4FC8-4E1F-96A7-3694402BF043} 8 | WinExe 9 | Properties 10 | QQMusicSkinExtract 11 | QQMusicSkinExtract 12 | v4.0 13 | 512 14 | 15 | 16 | 17 | AnyCPU 18 | true 19 | full 20 | false 21 | bin\Debug\ 22 | DEBUG;TRACE 23 | prompt 24 | 4 25 | 26 | 27 | AnyCPU 28 | pdbonly 29 | true 30 | bin\Release\ 31 | TRACE 32 | prompt 33 | 4 34 | 35 | 36 | QQMusic.ico 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | Form 54 | 55 | 56 | frmQQMusicSkinExtract.cs 57 | 58 | 59 | 60 | 61 | 62 | 63 | frmQQMusicSkinExtract.cs 64 | 65 | 66 | ResXFileCodeGenerator 67 | Resources.Designer.cs 68 | Designer 69 | 70 | 71 | True 72 | Resources.resx 73 | True 74 | 75 | 76 | SettingsSingleFileGenerator 77 | Settings.Designer.cs 78 | 79 | 80 | True 81 | Settings.settings 82 | True 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 100 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/ResExtract.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.IO; 7 | 8 | namespace QQMusicSkinExtract 9 | { 10 | struct KugouResRec 11 | { 12 | public int Index; 13 | public int FileSize; 14 | public String FileName; 15 | public Int64 Position; 16 | public Byte[] Other; 17 | }; 18 | 19 | class ResExtract 20 | { 21 | public List FileList; 22 | public String FileName; 23 | public FileStream fs; 24 | public BinaryReader FMemStream; 25 | 26 | //委托 27 | public delegate void dExtractProgress(long total, long current, String filename); 28 | //事件 29 | public event dExtractProgress onExtractProgress; 30 | 31 | public ResExtract() 32 | { 33 | FileList = new List(); 34 | } 35 | 36 | public void clear() 37 | { 38 | FileList.Clear(); 39 | } 40 | 41 | public void Destroy() 42 | { 43 | FMemStream.Close(); 44 | fs.Close(); 45 | } 46 | 47 | public void LoadFromFile(String FileName) 48 | { 49 | int FileCount; 50 | int ResOffset; 51 | int ResStart; 52 | KugouResRec Item; 53 | Byte NameLen; 54 | Byte[] bName; 55 | 56 | Item = new KugouResRec(); 57 | try 58 | { 59 | clear(); 60 | this.FileName = FileName; 61 | this.fs = File.Open(FileName, FileMode.Open); 62 | this.FMemStream = new BinaryReader(this.fs); 63 | //跳过文件头的531E98204F8542F0 64 | this.FMemStream.BaseStream.Seek(0x10, SeekOrigin.Begin); 65 | //读取文件数 66 | FileCount = this.FMemStream.ReadInt32(); 67 | ResOffset = this.FMemStream.ReadInt32(); 68 | this.FMemStream.BaseStream.Seek(0x04, SeekOrigin.Current); 69 | ResStart = this.FMemStream.ReadInt32(); 70 | 71 | this.FMemStream.BaseStream.Seek(ResOffset, SeekOrigin.Begin); 72 | for (int i = 0; i < FileCount; i++) 73 | { 74 | Item.Index = i; 75 | NameLen = 0; 76 | Int64 tmp = this.FMemStream.BaseStream.Position; 77 | while (true) 78 | { 79 | if(this.FMemStream.ReadInt16()!=0){ 80 | NameLen += 2; 81 | } 82 | else 83 | { 84 | break; 85 | } 86 | } 87 | this.FMemStream.BaseStream.Seek(tmp, SeekOrigin.Begin); 88 | bName = this.FMemStream.ReadBytes(NameLen); 89 | Item.FileName = System.Text.Encoding.Unicode.GetString(bName); 90 | this.FMemStream.ReadInt16(); 91 | Item.Position = this.FMemStream.ReadInt32() + ResStart + ResOffset; 92 | Item.Other = this.FMemStream.ReadBytes(4); 93 | Item.FileSize = this.FMemStream.ReadInt32(); 94 | this.FMemStream.ReadInt32(); 95 | FileList.Add(Item); 96 | } 97 | } 98 | catch (Exception) { } 99 | } 100 | 101 | public void Extract(int Index, byte[] bd) 102 | { 103 | KugouResRec Item; 104 | if(Index >=0 && Index < FileList.Count) 105 | { 106 | Item = FileList[Index]; 107 | //bd = new byte[Item.FileSize]; 108 | FMemStream.BaseStream.Seek(Item.Position, SeekOrigin.Begin); 109 | FMemStream.Read(bd, 0, Item.FileSize); 110 | } 111 | } 112 | 113 | public void Extract(String filename, byte[] bd) 114 | { 115 | for (int i = 0; i < FileList.Count;i++) 116 | { 117 | if(String.Compare(FileList[i].FileName, filename, true) == 0) 118 | { 119 | Extract(i,bd); 120 | } 121 | } 122 | } 123 | 124 | public void ExtractAll(String fileDir) 125 | { 126 | try 127 | { 128 | if (!Directory.Exists(fileDir)) 129 | { 130 | Directory.CreateDirectory(fileDir); 131 | } 132 | if (fileDir.LastIndexOf('\\') != fileDir.Length - 1) 133 | { 134 | fileDir += "\\"; 135 | } 136 | for (int i = 0; i < FileList.Count; i++) 137 | { 138 | byte[] bd = new byte[FileList[i].FileSize]; 139 | Extract(i, bd); 140 | 141 | String FileName = fileDir + FileList[i].FileName; 142 | 143 | String FilePath = Path.GetDirectoryName(FileName); 144 | if (!Directory.Exists(FilePath)) 145 | Directory.CreateDirectory(FilePath); 146 | 147 | FileStream fss = File.Create(FileName); 148 | BinaryWriter bw = new BinaryWriter(fss); 149 | bw.Write(bd, 0, FileList[i].FileSize); 150 | fss.Close(); 151 | 152 | if (onExtractProgress != null) 153 | onExtractProgress(FileList.Count, i, FileName); 154 | } 155 | } 156 | catch(Exception){} 157 | } 158 | } 159 | } 160 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/ResPackage.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | using System.IO; 8 | using System.Diagnostics; 9 | 10 | namespace QQMusicSkinExtract 11 | { 12 | class ResPackage 13 | { 14 | public String Path; 15 | public ArrayList FileList; 16 | private DirectoryInfo folder; 17 | 18 | //委托 19 | public delegate void dPackageProgress(long total, long current, String filename); 20 | //事件 21 | public event dPackageProgress onPackageProgress; 22 | 23 | public ResPackage(String Path) 24 | { 25 | if ((Path.LastIndexOf('\\') != Path.Length - 1) && (Path.LastIndexOf('/') != Path.Length - 1)) 26 | { 27 | Path += "\\"; 28 | } 29 | this.Path = Path; 30 | this.folder = new DirectoryInfo(Path); 31 | this.FileList = GetFileNames(folder); 32 | } 33 | 34 | public void Pack(String FileName) 35 | { 36 | FileStream fs; 37 | BinaryWriter FMemStream; 38 | String[] fl = (String[])this.FileList.ToArray(typeof(String)); 39 | Int32 Position = 0; 40 | 41 | fs = File.Create(FileName); 42 | FMemStream = new BinaryWriter(fs); 43 | 44 | String dat = System.Environment.GetEnvironmentVariable("TEMP") + "\\~res.dat"; 45 | FileStream datfile = File.Open(dat, FileMode.Open); 46 | BinaryWriter datStream = new BinaryWriter(datfile); 47 | Tools.CmdHelper.ExecuteCmd("echo a 2>\"" + dat + "\""); 48 | 49 | byte[] head = { 0x35, 0x33, 0x31, 0x45, 0x39, 0x38, 0x32, 0x30, 0x34, 0x46, 0x38, 0x35, 0x34, 0x32, 0x46, 0x30 }; 50 | FMemStream.Write(head,0,16); 51 | FMemStream.Write((Int32)FileList.Count); 52 | FMemStream.Write((Int32)0x24); 53 | FMemStream.Write((Int32)0x00); 54 | FMemStream.Write((Int32)0x00); 55 | 56 | FMemStream.Seek(0x24, SeekOrigin.Begin); 57 | 58 | 59 | 60 | long current = 0; 61 | foreach (String file in fl) 62 | { 63 | FileStream resfile = File.Open(this.Path + file,FileMode.Open); 64 | FMemStream.Write(System.Text.Encoding.Unicode.GetBytes(file)); 65 | FMemStream.Write((Int16)0x00); 66 | FMemStream.Write(Position); 67 | FMemStream.Write((Int32)0x00); 68 | FMemStream.Write((Int32)resfile.Length); 69 | FMemStream.Write((Int32)0x00); 70 | Position += (Int32)resfile.Length; 71 | byte[] resdata = new byte[resfile.Length]; 72 | resfile.Read(resdata, 0, (int)resfile.Length); 73 | datStream.Write(resdata, 0, resdata.Length); 74 | 75 | resfile.Close(); 76 | 77 | if (onPackageProgress != null) 78 | onPackageProgress(fl.Length, ++current, file); 79 | } 80 | Int64 tmp = FMemStream.BaseStream.Position; 81 | FMemStream.Seek(0x1c, SeekOrigin.Begin); 82 | FMemStream.Write(fs.Length-0x24); 83 | FMemStream.Seek((int)tmp, SeekOrigin.Begin); 84 | 85 | datStream.Close(); 86 | datfile.Close(); 87 | 88 | datfile = File.Open(dat, FileMode.Open); 89 | 90 | BinaryReader restmp = new BinaryReader(datfile); 91 | byte[] data = new byte[datfile.Length]; 92 | restmp.Read(data, 0, (int)datfile.Length); 93 | FMemStream.Write(data, 0, data.Length); 94 | datfile.Close(); 95 | fs.Close(); 96 | } 97 | 98 | private ArrayList GetFileNames(DirectoryInfo dirInfo) 99 | { 100 | ArrayList fns = new ArrayList(); 101 | 102 | foreach (DirectoryInfo subdir in dirInfo.GetDirectories()) 103 | { 104 | fns.AddRange(GetFileNames(subdir)); 105 | } 106 | 107 | foreach( FileInfo fi in dirInfo.GetFiles()) 108 | { 109 | fns.Add(fi.FullName.Substring(this.Path.Length)); 110 | } 111 | return fns; 112 | } 113 | } 114 | } 115 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/bin/Debug/KGSkinExtract.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/bin/Debug/KGSkinExtract.exe -------------------------------------------------------------------------------- /QQMusicSkinExtract/bin/Debug/KGSkinExtract.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/bin/Debug/KGSkinExtract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/bin/Debug/KGSkinExtract.pdb -------------------------------------------------------------------------------- /QQMusicSkinExtract/bin/Debug/KGSkinExtract.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/bin/Debug/KGSkinExtract.vshost.exe -------------------------------------------------------------------------------- /QQMusicSkinExtract/bin/Debug/KGSkinExtract.vshost.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/bin/Debug/KGSkinExtract.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/bin/Release/KGSkinExtract.vshost.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/bin/Release/KGSkinExtract.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/bin/Release/QQMusicSkinExtract.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/bin/Release/QQMusicSkinExtract.exe -------------------------------------------------------------------------------- /QQMusicSkinExtract/bin/Release/QQMusicSkinExtract.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/bin/Release/QQMusicSkinExtract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/bin/Release/QQMusicSkinExtract.pdb -------------------------------------------------------------------------------- /QQMusicSkinExtract/bin/Release/QQMusicSkinExtract.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/bin/Release/QQMusicSkinExtract.vshost.exe -------------------------------------------------------------------------------- /QQMusicSkinExtract/bin/Release/QQMusicSkinExtract.vshost.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/bin/Release/QQMusicSkinExtract.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/frmQQMusicSkinExtract.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace QQMusicSkinExtract 2 | { 3 | partial class frmQQMusicSkinExtract 4 | { 5 | /// 6 | /// 必需的设计器变量。 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// 清理所有正在使用的资源。 12 | /// 13 | /// 如果应释放托管资源,为 true;否则为 false。 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows 窗体设计器生成的代码 24 | 25 | /// 26 | /// 设计器支持所需的方法 - 不要 27 | /// 使用代码编辑器修改此方法的内容。 28 | /// 29 | private void InitializeComponent() 30 | { 31 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmQQMusicSkinExtract)); 32 | this.txtResFile = new System.Windows.Forms.TextBox(); 33 | this.btnResFile = new System.Windows.Forms.Button(); 34 | this.btnSavePath = new System.Windows.Forms.Button(); 35 | this.txtSavePath = new System.Windows.Forms.TextBox(); 36 | this.btnExtract = new System.Windows.Forms.Button(); 37 | this.label1 = new System.Windows.Forms.Label(); 38 | this.label2 = new System.Windows.Forms.Label(); 39 | this.btnPackage = new System.Windows.Forms.Button(); 40 | this.progressBar1 = new System.Windows.Forms.ProgressBar(); 41 | this.log = new System.Windows.Forms.Label(); 42 | this.SuspendLayout(); 43 | // 44 | // txtResFile 45 | // 46 | this.txtResFile.Location = new System.Drawing.Point(70, 9); 47 | this.txtResFile.Name = "txtResFile"; 48 | this.txtResFile.Size = new System.Drawing.Size(288, 21); 49 | this.txtResFile.TabIndex = 0; 50 | // 51 | // btnResFile 52 | // 53 | this.btnResFile.Location = new System.Drawing.Point(364, 9); 54 | this.btnResFile.Name = "btnResFile"; 55 | this.btnResFile.Size = new System.Drawing.Size(73, 23); 56 | this.btnResFile.TabIndex = 1; 57 | this.btnResFile.Text = "浏览"; 58 | this.btnResFile.UseVisualStyleBackColor = true; 59 | this.btnResFile.Click += new System.EventHandler(this.btnResFile_Click); 60 | // 61 | // btnSavePath 62 | // 63 | this.btnSavePath.Location = new System.Drawing.Point(364, 45); 64 | this.btnSavePath.Name = "btnSavePath"; 65 | this.btnSavePath.Size = new System.Drawing.Size(75, 23); 66 | this.btnSavePath.TabIndex = 3; 67 | this.btnSavePath.Text = "浏览"; 68 | this.btnSavePath.UseVisualStyleBackColor = true; 69 | this.btnSavePath.Click += new System.EventHandler(this.btnSavePath_Click); 70 | // 71 | // txtSavePath 72 | // 73 | this.txtSavePath.Location = new System.Drawing.Point(70, 45); 74 | this.txtSavePath.Name = "txtSavePath"; 75 | this.txtSavePath.Size = new System.Drawing.Size(288, 21); 76 | this.txtSavePath.TabIndex = 2; 77 | // 78 | // btnExtract 79 | // 80 | this.btnExtract.Location = new System.Drawing.Point(7, 129); 81 | this.btnExtract.Name = "btnExtract"; 82 | this.btnExtract.Size = new System.Drawing.Size(430, 37); 83 | this.btnExtract.TabIndex = 4; 84 | this.btnExtract.Text = "提取"; 85 | this.btnExtract.UseVisualStyleBackColor = true; 86 | this.btnExtract.Click += new System.EventHandler(this.btnExtract_Click); 87 | // 88 | // label1 89 | // 90 | this.label1.AutoSize = true; 91 | this.label1.Location = new System.Drawing.Point(5, 12); 92 | this.label1.Name = "label1"; 93 | this.label1.Size = new System.Drawing.Size(59, 12); 94 | this.label1.TabIndex = 5; 95 | this.label1.Text = "资源文件:"; 96 | // 97 | // label2 98 | // 99 | this.label2.AutoSize = true; 100 | this.label2.Location = new System.Drawing.Point(5, 49); 101 | this.label2.Name = "label2"; 102 | this.label2.Size = new System.Drawing.Size(59, 12); 103 | this.label2.TabIndex = 6; 104 | this.label2.Text = "保存路径:"; 105 | // 106 | // btnPackage 107 | // 108 | this.btnPackage.Location = new System.Drawing.Point(7, 172); 109 | this.btnPackage.Name = "btnPackage"; 110 | this.btnPackage.Size = new System.Drawing.Size(430, 37); 111 | this.btnPackage.TabIndex = 8; 112 | this.btnPackage.Text = "打包"; 113 | this.btnPackage.UseVisualStyleBackColor = true; 114 | this.btnPackage.Click += new System.EventHandler(this.btnPackage_Click); 115 | // 116 | // progressBar1 117 | // 118 | this.progressBar1.Location = new System.Drawing.Point(7, 100); 119 | this.progressBar1.Name = "progressBar1"; 120 | this.progressBar1.Size = new System.Drawing.Size(430, 23); 121 | this.progressBar1.TabIndex = 9; 122 | // 123 | // log 124 | // 125 | this.log.AutoSize = true; 126 | this.log.Location = new System.Drawing.Point(12, 82); 127 | this.log.MinimumSize = new System.Drawing.Size(420, 0); 128 | this.log.Name = "log"; 129 | this.log.Size = new System.Drawing.Size(420, 12); 130 | this.log.TabIndex = 10; 131 | // 132 | // frmQQMusicSkinExtract 133 | // 134 | this.AllowDrop = true; 135 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); 136 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 137 | this.ClientSize = new System.Drawing.Size(449, 217); 138 | this.Controls.Add(this.log); 139 | this.Controls.Add(this.progressBar1); 140 | this.Controls.Add(this.btnPackage); 141 | this.Controls.Add(this.label2); 142 | this.Controls.Add(this.label1); 143 | this.Controls.Add(this.btnExtract); 144 | this.Controls.Add(this.btnSavePath); 145 | this.Controls.Add(this.txtSavePath); 146 | this.Controls.Add(this.btnResFile); 147 | this.Controls.Add(this.txtResFile); 148 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 149 | this.MaximizeBox = false; 150 | this.MaximumSize = new System.Drawing.Size(465, 255); 151 | this.MinimumSize = new System.Drawing.Size(465, 255); 152 | this.Name = "frmQQMusicSkinExtract"; 153 | this.Text = "QQ音乐Resource.rdb资源提取"; 154 | this.DragDrop += new System.Windows.Forms.DragEventHandler(this.frmKGSkinExtract_DragDrop); 155 | this.DragEnter += new System.Windows.Forms.DragEventHandler(this.frmKGSkinExtract_DragEnter); 156 | this.ResumeLayout(false); 157 | this.PerformLayout(); 158 | 159 | } 160 | 161 | #endregion 162 | 163 | private System.Windows.Forms.TextBox txtResFile; 164 | private System.Windows.Forms.Button btnResFile; 165 | private System.Windows.Forms.Button btnSavePath; 166 | private System.Windows.Forms.TextBox txtSavePath; 167 | private System.Windows.Forms.Button btnExtract; 168 | private System.Windows.Forms.Label label1; 169 | private System.Windows.Forms.Label label2; 170 | private System.Windows.Forms.Button btnPackage; 171 | private System.Windows.Forms.ProgressBar progressBar1; 172 | private System.Windows.Forms.Label log; 173 | } 174 | } 175 | 176 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/frmQQMusicSkinExtract.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | using System.IO; 11 | 12 | namespace QQMusicSkinExtract 13 | { 14 | public partial class frmQQMusicSkinExtract : Form 15 | { 16 | public String FileName; 17 | public String SavePath; 18 | public frmQQMusicSkinExtract() 19 | { 20 | InitializeComponent(); 21 | } 22 | 23 | private void btnSavePath_Click(object sender, EventArgs e) 24 | { 25 | FolderBrowserDialog fd = new FolderBrowserDialog(); 26 | if (fd.ShowDialog() == DialogResult.OK) 27 | { 28 | SavePath = fd.SelectedPath; 29 | txtSavePath.Text = SavePath; 30 | } 31 | } 32 | 33 | private void btnResFile_Click(object sender, EventArgs e) 34 | { 35 | OpenFileDialog fd = new OpenFileDialog(); 36 | if (fd.ShowDialog() == DialogResult.OK) 37 | { 38 | FileName = fd.FileName; 39 | txtResFile.Text = FileName; 40 | 41 | txtSavePath.Text = Path.GetDirectoryName(FileName) + "\\" + Path.GetFileNameWithoutExtension(FileName) + "\\"; 42 | } 43 | } 44 | 45 | private void btnExtract_Click(object sender, EventArgs e) 46 | { 47 | ResExtract re = new ResExtract(); 48 | re.onExtractProgress += new ResExtract.dExtractProgress(ResExtract_onExtractProgress); 49 | re.clear(); 50 | re.LoadFromFile(txtResFile.Text); 51 | re.ExtractAll(txtSavePath.Text); 52 | re.Destroy(); 53 | 54 | MessageBox.Show("资源提取完成!"); 55 | } 56 | 57 | private void frmKGSkinExtract_DragDrop(object sender, DragEventArgs e) 58 | { 59 | string path = ((System.Array)e.Data.GetData(DataFormats.FileDrop)).GetValue(0).ToString(); 60 | txtResFile.Text = path; //将获取到的完整路径赋值到textBox1 61 | 62 | txtSavePath.Text = Path.GetDirectoryName(path) + "\\" + Path.GetFileNameWithoutExtension(path) + "\\"; 63 | } 64 | 65 | private void frmKGSkinExtract_DragEnter(object sender, DragEventArgs e) 66 | { 67 | if (e.Data.GetDataPresent(DataFormats.FileDrop)) 68 | e.Effect = DragDropEffects.Link; 69 | else e.Effect = DragDropEffects.None; 70 | } 71 | 72 | private void btnPackage_Click(object sender, EventArgs e) 73 | { 74 | ResPackage rp = new ResPackage(txtSavePath.Text); 75 | rp.onPackageProgress += new ResPackage.dPackageProgress(ResPackage_onPackageProgress); 76 | rp.Pack(txtResFile.Text); 77 | MessageBox.Show("资源打包完成!"); 78 | } 79 | 80 | private void ResPackage_onPackageProgress(long total, long current, String filename) 81 | { 82 | if (this.InvokeRequired) 83 | { 84 | this.Invoke(new ResPackage.dPackageProgress(ResPackage_onPackageProgress), new object[] { total, current, filename }); 85 | } 86 | else 87 | { 88 | this.progressBar1.Maximum = (int)total; 89 | this.progressBar1.Value = (int)current; 90 | this.log.Text = "正在打包:" + filename; 91 | //System.Threading.Thread.Sleep(1); 92 | } 93 | } 94 | 95 | private void ResExtract_onExtractProgress(long total, long current, String filename) 96 | { 97 | if (this.InvokeRequired) 98 | { 99 | this.Invoke(new ResExtract.dExtractProgress(ResExtract_onExtractProgress), new object[] { total, current, filename }); 100 | } 101 | else 102 | { 103 | this.progressBar1.Maximum = (int)total; 104 | this.progressBar1.Value = (int)current; 105 | this.log.Text = "正在提取:" + filename; 106 | System.Threading.Thread.Sleep(1); 107 | } 108 | } 109 | 110 | } 111 | } 112 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/frmQQMusicSkinExtract.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | 123 | AAABAAMAEBAAAAEAIABoBAAANgAAACAgAAABACAAqBAAAJ4EAAAwMAAAAQAgAKglAABGFQAAKAAAABAA 124 | AAAgAAAAAQAgAAAAAAAAAAAAIy4AACMuAAAAAAAAAAAAABnN9QAZzfUAGc31ABnN9QAZzfUUGc31ehnN 125 | 9cgZzfXsGc31/hnN9eMZzfWqGc31RRnN9QAZzfUAGc31ABnN9QAZzfUAGc31ABnN9QAZzfVfGc318CTM 126 | 3/9Yx3j/bMVQ/2jFWP9NyI3/H8zm/xnN9f8ZzfW6Gc31FRnN9QAZzfUAGc31ABnN9QAZzfV4Gc31/x7N 127 | 7P9wxEj/fMMw/3zDMP98wzD/fMMw/27ETP8hzOb/Gc31/xnN9dwZzfUVGc31ABnN9QAZzfVBGc31/hnN 128 | 9f83yrn/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/TMiQ/xnN9f8ZzfX/Gc31wRnN9QEZzfUAGc31zhnN 129 | 9f8ZzfX/LsvJ/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/1fHev8ZzfX/Gc31/xnN9f8ZzfVRGc31MRnN 130 | 9f8ZzfX/Gc31/xnN9P9gxmj/fMMw/3zDMP98wzD/fMMw/3zDMP85yrX/Gc31/xnN9f8ZzfX/Gc31sBnN 131 | 9WIZzfX/Gc31/xnN9f8ZzfX/HM3w/0vIk/9wxEr/e8My/3nDN/9kxWH/Gc30/xnN9f8ZzfX/Gc31/xnN 132 | 9eMZzfV4Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/yHM4/9xxEf/KsvU/xnN9f8ZzfX/Gc31/xnN 133 | 9f8ZzfX7Gc31bhnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9P9hxmf/T8iK/xnN9f8ZzfX/Gc31/xnN 134 | 9f8ZzfX/Gc317RnN9T4ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f9GyJr/ccRH/x7N7P8ZzfX/Gc31/xnN 135 | 9f8ZzfX/Gc31/xnN9b0ZzfUDGc313xnN9f8ZzfX/Gc31/xnN9f8uy8r/esM1/zrKtP8ZzfX/Gc31/xnN 136 | 9f8ZzfX/Gc31/xnN9f8ZzfVkGc31ABnN9VwZzfX/Gc31/xnN9f8fzOn/cMRK/2HGZ/8ZzfX/Gc31/xnN 137 | 9f8ZzfX/Gc31/xnN9f8ZzfXaGc31BxnN9QAZzfUAGc31pBnN9f8ZzfX/Vcd//3zDMP98wzD/d8Q8/1jH 138 | ef8fzOn/Gc31/xnN9f8ZzfXwGc31LRnN9QAZzfUAGc31ABnN9QMZzfWNGc31/j3Jrf96wzT/fMMw/3zD 139 | MP98wzD/XMZw/xnN9f8ZzfXeGc31MRnN9QAZzfUAGc31ABnN9QAZzfUAGc31ABnN9TQZzfWqLMvP9VXH 140 | fv9sxVH/fMMy/3vDMv4ZzfV1Gc31CRnN9QAZzfUAGc31ABnN9QAZzfUAGc31ABnN9QAZzfUAGc31ABnN 141 | 9QUZzfUjGc31LljHeTF8wzCZGc31ABnN9QAZzfUAGc31ABnN9QD//wAA+A8AAOAHAADgAwAAwAEAAIAB 142 | AACAAQAAgAEAAIABAACAAQAAwAEAAMADAADgBwAA+A8AAP4/AAD//wAAKAAAACAAAABAAAAAAQAgAAAA 143 | AAAAAAAAIy4AACMuAAAAAAAAAAAAAP///wAZzfUAGc31ABnN9QAZzfUAGc31ABnN9QAZzfUAGc31ABnN 144 | 9QAZzfUAGc31LRnN9XkZzfW0Gc313BnN9fIZzfX/Gc318hnN9dwZzfW0Gc31eRnN9S0ZzfUAGc31ABnN 145 | 9QAZzfUAGc31ABnN9QAZzfUAGc31ABnN9QAZzfUA////ABnN9QAZzfUAGc31ABnN9QAZzfUAGc31ABnN 146 | 9QAZzfUCGc31WhnN9c8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN 147 | 9c8ZzfVaGc31AhnN9QAZzfUAGc31ABnN9QAZzfUAGc31ABnN9QD///8AGc31ABnN9QAZzfUAGc31ABnN 148 | 9QAZzfUAGc31MBnN9cwZzfX/Gc31/xnN9f8jzOD/Rsia/13Gbv9nxVv/YsZi/1PHgf83yrj/G83x/xnN 149 | 9f8ZzfX/Gc31/xnN9f8ZzfXMGc31MBnN9QAZzfUAGc31ABnN9QAZzfUAGc31AP///wAZzfUAGc31ABnN 150 | 9QAZzfUAGc31ABnN9WYZzfX4Gc31/xnN9f8ZzfT/SsiU/3nDN/98wzD/fMMw/3zDMP98wzD/fMMw/3zD 151 | MP9wxEj/N8q5/xnN9f8ZzfX/Gc31/xnN9f8ZzfX4Gc31ZhnN9QAZzfUAGc31ABnN9QAZzfUA////ABnN 152 | 9QAZzfUAGc31ABnN9QAZzfV/Gc31/xnN9f8ZzfX/Gc31/1HHhv98wzD/fMMw/3zDMP98wzD/fMMw/3zD 153 | MP98wzD/fMMw/3zDMP98wzL/SMiZ/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31fxnN9QAZzfUAGc31ABnN 154 | 9QD///8AGc31ABnN9QAZzfUAGc31ahnN9f8ZzfX/Gc31/xnN9f8uy8v/fMMy/3zDMP98wzD/fMMw/3zD 155 | MP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/N8q4/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31ahnN 156 | 9QAZzfUAGc31AP///wAZzfUAGc31ABnN9TgZzfX5Gc31/xnN9f8ZzfX/Gc31/1LHhP98wzD/fMMw/3zD 157 | MP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP9uxEz/Gs3z/xnN9f8ZzfX/Gc31/xnN 158 | 9f8ZzfX6Gc31ORnN9QAZzfUA////ABnN9QAZzfUFGc311RnN9f8ZzfX/Gc31/xnN9f8ZzfX/X8Zr/3zD 159 | MP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP8ty83/Gc31/xnN 160 | 9f8ZzfX/Gc31/xnN9f8ZzfXVGc31BRnN9QD///8AGc31ABnN9WgZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN 161 | 9f9Yx3n/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/zrK 162 | tP8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfVoGc31AP///wAZzfUBGc312hnN9f8ZzfX/Gc31/xnN 163 | 9f8ZzfX/Gc31/zvJsP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zD 164 | MP98wzD/McvF/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9doZzfUB////ABnN9TwZzfX/Gc31/xnN 165 | 9f8ZzfX/Gc31/xnN9f8ZzfX/G83y/2zFUf98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zD 166 | MP98wzD/fMMw/3PEQ/8czfD/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9Tz///8AGc31hRnN 167 | 9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/KcvV/3TEQP98wzD/fMMw/3zDMP98wzD/fMMw/3zD 168 | MP98wzD/fMMw/3zDMP98wzD/Qsmk/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31hf// 169 | /wAZzfW+Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/J8zZ/2fFW/98wzD/fMMw/3zD 170 | MP98wzD/fMMw/3zDMP98wzD/fMMw/2nFV/8azfP/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN 171 | 9f8ZzfW+////ABnN9eQZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc30/zfK 172 | uP9dxm//c8RD/3zDMP98wzD/csRE/3zDMP97wzL/LsvL/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN 173 | 9f8ZzfX/Gc31/xnN9eT///8AGc319hnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN 174 | 9f8ZzfX/Gc31/xnN9f8ZzfX/G83y/xnN9P9Xx3v/fMMw/1THf/8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN 175 | 9f8ZzfX/Gc31/xnN9f8ZzfX/Gc319v///wAZzfX7Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN 176 | 9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/O8mv/3zDMP90xED/H8zm/xnN9f8ZzfX/Gc31/xnN 177 | 9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX8////ABnN9e0ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN 178 | 9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/yfM2f93xDv/fMMw/0DJqP8ZzfX/Gc31/xnN 179 | 9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9e3///8AGc31zBnN9f8ZzfX/Gc31/xnN 180 | 9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8bzfD/acVX/3zDMP9mxVz/Gc30/xnN 181 | 9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31zP///wAZzfWdGc31/xnN 182 | 9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/1HHhv98wzD/e8My/yzL 183 | 0P8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfWd////ABnN 184 | 9VkZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f83yrr/fMMy/3zD 185 | MP9Sx4T/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN 186 | 9Vn///8AGc31DBnN9fQZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/JMzf/3XE 187 | QP98wzD/c8RD/x/M6f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN 188 | 9f8ZzfXzGc31DP///wAZzfUAGc31lRnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xrN 189 | 8/9kxWH/fMMw/3zDMP89ya7/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN 190 | 9f8ZzfX/Gc31/xnN9ZUZzfUA////ABnN9QAZzfUcGc319BnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN 191 | 9f8ZzfX/S8iT/3zDMP98wzD/ZMVh/xnN9P8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN 192 | 9f8ZzfX/Gc31/xnN9f8ZzfX0Gc31HBnN9QD///8AGc31ABnN9QAZzfV0Gc31/xnN9f8ZzfX/Gc31/xnN 193 | 9f8ZzfX/Gc31/zHLxf97wzL/fMMw/3rDNf8sy8//Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN 194 | 9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9XQZzfUAGc31AP///wAZzfUAGc31ABnN9QMZzfW5Gc31/xnN 195 | 9f8ZzfX/Gc31/xnN9f8fzOb/ccRH/3zDMP98wzD/fMMw/3zDMP95wzf/acVX/0zIkP8jzOL/Gc31/xnN 196 | 9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfW3Gc31AhnN9QAZzfUA////ABnN9QAZzfUAGc31ABnN 197 | 9Q8ZzfXLGc31/xnN9f8ZzfX/Gc31/0TJoP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3XE 198 | Pv8yysL/Gc31/xnN9f8ZzfX/Gc31/xnN9f8ZzfX/Gc31zBnN9Q8ZzfUAGc31ABnN9QD///8AGc31ABnN 199 | 9QAZzfUAGc31ABnN9REZzfW/Gc31/xnN9f8ZzfX/KsvT/3rDN/98wzD/fMMw/3zDMP98wzD/fMMw/3zD 200 | MP98wzD/fMMw/3jDOP8py9X/Gc31/xnN9f8ZzfX/Gc31/xnN9cAZzfURGc31ABnN9QAZzfUAGc31AP// 201 | /wAZzfUAGc31ABnN9QAZzfUAGc31ABnN9QUZzfWIGc31/BnN9f8ZzfX/Pcmu/3nDN/98wzD/fMMw/3zD 202 | MP98wzD/fMMw/3zDMP98wzD/fMMw/1nHdv8ZzfX/Gc31/xnN9fwZzfWIGc31BRnN9QAZzfUAGc31ABnN 203 | 9QAZzfUA////ABnN9QAZzfUAGc31ABnN9QAZzfUAGc31ABnN9QAZzfUxGc31uBnN9f8ZzfX/KcvV/1zG 204 | cf96wzT/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/dcRA/xnN9f8ZzfW4Gc31MRnN9QAZzfUAGc31ABnN 205 | 9QAZzfUAGc31ABnN9QD///8AGc31ABnN9QAZzfUAGc31ABnN9QAZzfUAGc31ABnN9QAZzfUAGc31LhnN 206 | 9Y0ZzfXXGc31/yHM5P8+yaz/U8eB/2bFXf96wzT/fMMw/3zDMP98wzD/I8zhMhnN9QAZzfUAGc31ABnN 207 | 9QAZzfUAGc31ABnN9QAZzfUAGc31AP///wAZzfUAGc31ABnN9QAZzfUAGc31ABnN9QAZzfUAGc31ABnN 208 | 9QAZzfUAGc31ABnN9QAZzfUUGc31PBnN9VUZzfVcGc31VS7Ly0dzxEN7fMMw5HzDMPQZzfUAGc31ABnN 209 | 9QAZzfUAGc31ABnN9QAZzfUAGc31ABnN9QAZzfUA////ABnN9QAZzfUAGc31ABnN9QAZzfUAGc31ABnN 210 | 9QAZzfUAGc31ABnN9QAZzfUAGc31ABnN9QAZzfUAGc31ABnN9QAZzfUAGc31ABnN9QB8wzANfMMwgRnN 211 | 9QAZzfUAGc31ABnN9QAZzfUAGc31ABnN9QAZzfUAGc31ABnN9QD//3///+AD//+AAP//AAB//AAAH/gA 212 | AA/4AAAP8AAAB+AAAAPgAAADwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAeAA 213 | AAPgAAAD8AAAB/AAAAf4AAAP/AAAH/4AAD//gAD//8AB///4A////////////ygAAAAwAAAAYAAAAAEA 214 | IAAAAAAAAAAAACMuAAAjLgAAAAAAAAAAAAD///8AAbzqAAG86gABvOoAAbzqAAG86gABvOoAAbzqAAG8 215 | 6gABvOoAAbzqAAG86gABvOoAAbzqAAG86gABvOoAAbzqAAG86gABvOopAbzqagG86poBvOrAAbzq4wG8 216 | 6u4BvOr/Abzq9gG86usBvOrTAbzqrQG86oMBvOpGAbzqCwG86gABvOoAAbzqAAG86gABvOoAAbzqAAG8 217 | 6gABvOoAAbzqAAG86gABvOoAAbzqAAG86gABvOoAAbzqAAG86gD///8AAbzqAAG86gABvOoAAbzqAAG8 218 | 6gABvOoAAbzqAAG86gABvOoAAbzqAAG86gABvOoAAbzqAAG86gABvOohAbzqgAG86tsBvOr/Abzq/wG8 219 | 6v8BvOr/Abzq/wG86v8BvOr/Abzq/wG86v8BvOr/Abzq/wG86v8BvOr/Abzq+AG86q4BvOpRAbzqBAG8 220 | 6gABvOoAAbzqAAG86gABvOoAAbzqAAG86gABvOoAAbzqAAG86gABvOoAAbzqAAG86gD///8AAbzqAAG8 221 | 6gABvOoAAbzqAAG86gABvOoAAbzqAAG86gABvOoAAbzqAAG86gABvOoAAbzqKgG86qUBvOr7Abzq/wG8 222 | 6v8BvOr/Abzq/wG86v8BvOr/Abzq/wG86v8BvOr/Abzq/wG86v8BvOr/Abzq/wG86v8BvOr/Abzq/wG8 223 | 6v8BvOr/Abzq3gG86moBvOoGAbzqAAG86gABvOoAAbzqAAG86gABvOoAAbzqAAG86gABvOoAAbzqAAG8 224 | 6gD///8AAbzqAAG86gABvOoAAbzqAAG86gABvOoAAbzqAAG86gABvOoAAbzqAAG86g8BvOqPAbzq+wG8 225 | 6v8BvOr/Abzq/wG86v8BvOr/Arzm/yK+t/89v4//TsB2/1PBb/9OwHX/Q8CH/ya+r/8Ivdv/Abzq/wG8 226 | 6v8BvOr/Abzq/wG86v8BvOr/Abzq/wG86v8BvOrVAbzqQwG86gABvOoAAbzqAAG86gABvOoAAbzqAAG8 227 | 6gABvOoAAbzqAAG86gD///8AAbzqAAG86gABvOoAAbzqAAG86gABvOoAAbzqAAG86gABvOoAAbzqOAG8 228 | 6t4BvOr/Abzq/wG86v8BvOr/Abzq/wS84f8+wI3/c8M+/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zD 229 | MP96wzX/VcFp/xq+wf8BvOr/Abzq/wG86v8BvOr/Abzq/wG86v8BvOr/Abzq/gG86pABvOoHAbzqAAG8 230 | 6gABvOoAAbzqAAG86gABvOoAAbzqAAG86gD///8AAbzqAAG86gABvOoAAbzqAAG86gABvOoAAbzqAAG8 231 | 6gABvOpkAbzq+gG86v8BvOr/Abzq/wG86v8BvOr/Gr3E/2zCSP98wzD/fMMw/3zDMP98wzD/fMMw/3zD 232 | MP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMv9PwHT/Brze/wG86v8BvOr/Abzq/wG86v8BvOr/Abzq/wG8 233 | 6v8BvOrJAbzqFwG86gABvOoAAbzqAAG86gABvOoAAbzqAAG86gD///8AAbzqAAG86gABvOoAAbzqAAG8 234 | 6gABvOoAAbzqAAG86nwBvOr/Abzq/wG86v8BvOr/Abzq/wG86v8avcT/d8M4/3zDMP98wzD/fMMw/3zD 235 | MP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/acJO/w291v8BvOr/Abzq/wG8 236 | 6v8BvOr/Abzq/wG86v8BvOr/Abzq3AG86iIBvOoAAbzqAAG86gABvOoAAbzqAAG86gD///8AAbzqAAG8 237 | 6gABvOoAAbzqAAG86gABvOoAAbzqeAG86v8BvOr/Abzq/wG86v8BvOr/Abzq/wS84v9swkj/fMMw/3zD 238 | MP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/2nC 239 | Tv8GvN//Abzq/wG86v8BvOr/Abzq/wG86v8BvOr/Abzq/wG86tsBvOobAbzqAAG86gABvOoAAbzqAAG8 240 | 6gD///8AAbzqAAG86gABvOoAAbzqAAG86gABvOpYAbzq/gG86v8BvOr/Abzq/wG86v8BvOr/Abzq/zi/ 241 | lv98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zD 242 | MP98wzD/fMMw/3zDMP9QwXP/Abzq/wG86v8BvOr/Abzq/wG86v8BvOr/Abzq/wG86v8BvOrQAbzqCgG8 243 | 6gABvOoAAbzqAAG86gD///8AAbzqAAG86gABvOoAAbzqAAG86ioBvOr0Abzq/wG86v8BvOr/Abzq/wG8 244 | 6v8BvOr/Abzq/2XCUv98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zD 245 | MP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzL/GL3G/wG86v8BvOr/Abzq/wG86v8BvOr/Abzq/wG8 246 | 6v8BvOr/AbzqnwG86gABvOoAAbzqAAG86gD///8AAbzqAAG86gABvOoAAbzqBQG86s8BvOr/Abzq/wG8 247 | 6v8BvOr/Abzq/wG86v8BvOr/Arzm/3vDMv98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zD 248 | MP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/TsB2/wG86v8BvOr/Abzq/wG8 249 | 6v8BvOr/Abzq/wG86v8BvOr/Abzq/wG86lIBvOoAAbzqAAG86gD///8AAbzqAAG86gABvOoAAbzqcwG8 250 | 6v8BvOr/Abzq/wG86v8BvOr/Abzq/wG86v8BvOr/Brze/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zD 251 | MP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/a8JK/wG8 252 | 6v8BvOr/Abzq/wG86v8BvOr/Abzq/wG86v8BvOr/Abzq/wG86uMBvOoNAbzqAAG86gD///8AAbzqAAG8 253 | 6gABvOoNAbzq7QG86v8BvOr/Abzq/wG86v8BvOr/Abzq/wG86v8BvOr/Abzq/3rDNf98wzD/fMMw/3zD 254 | MP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zD 255 | MP98wzD/ecM1/wG86v8BvOr/Abzq/wG86v8BvOr/Abzq/wG86v8BvOr/Abzq/wG86v8BvOp7AbzqAAG8 256 | 6gD///8AAbzqAAG86gABvOp5Abzq/wG86v8BvOr/Abzq/wG86v8BvOr/Abzq/wC86/8Avev/AL3r/2HC 257 | Wv98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zD 258 | MP98wzD/fMMw/3zDMP98wzD/ecM3/wG86v8BvOr/Abzq/wG86v8BvOr/Abzq/wG86v8BvOr/Abzq/wG8 259 | 6v8BvOrsAbzqDAG86gD///8AAbzqAAG86gIBvOriAbzq/wG86v8BvOr/Abzq/wG86v8AvOv/AL3r/wK9 260 | 6/8Cvuv/Ar7r/zjAmv98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zD 261 | MP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/ZsJS/wC86/8BvOr/Abzq/wG86v8BvOr/Abzq/wG8 262 | 6v8BvOr/Abzq/wG86v8BvOr/AbzqZQG86gD///8AAbzqAAG86kUBvOr/Abzq/wG86v8BvOr/ALzr/wC9 263 | 6/8Avev/Ar7r/wK+7P8Cv+z/Ar/s/wjA5f9ww0P/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zD 264 | MP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/Q8GI/wC96/8Avev/ALzr/wG8 265 | 6v8BvOr/Abzq/wG86v8BvOr/Abzq/wG86v8BvOr/AbzqxQG86gD///8AAbzqAAG86pUBvOr/Abzq/wG8 266 | 6v8AvOv/AL3r/wK96/8Cvuv/Ar/s/wK/7P8CwOz/A8Dt/wbB7f8mwrn/fMMy/3zDMP98wzD/fMMw/3zD 267 | MP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP93wzj/D7/Y/wK+ 268 | 6/8Cvev/AL3r/wC86/8BvOr/Abzq/wG86v8BvOr/Abzq/wG86v8BvOr/Abzq/gG86hj///8AAbzqAAG8 269 | 6tkBvOr/Abzq/wC86/8Avev/Ar7r/wK+7P8Cv+z/AsDs/wPA7f8Gwe3/BsLt/wbC7v8Hw+7/OsOc/3zD 270 | Mv98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zD 271 | MP8+wZP/AsDs/wK/7P8Cvuz/Ar7r/wC96/8AvOv/Abzq/wG86v8BvOr/Abzq/wG86v8BvOr/Abzq/wG8 272 | 6ln///8AAbzqEwG86v8BvOr/AL3r/wK96/8Cvuv/Ar/s/wK/7P8DwOz/BsHt/wbC7f8Gwu7/B8Pu/wfD 273 | 7v8HxO7/CsXv/y3Es/91wzz/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zD 274 | MP98wzD/fMMw/2rDTv8Kwuj/BsHt/wPA7P8Cv+z/Ar/s/wK+6/8Cvev/AL3r/wG86v8BvOr/Abzq/wG8 275 | 6v8BvOr/Abzq/wG86pP///8AAbzqOwG86v8Avev/Ar3r/wK+6/8Cv+z/AsDs/wPA7f8Gwe3/BsLt/wfD 276 | 7v8HxO7/CsTv/wrF7/8Kxu//DMbw/wzH8P8Zx9r/VMR2/3rDNP98wzD/fMMw/3zDMP98wzD/fMMw/3zD 277 | MP98wzD/fMMw/3zDMP98wzD/fMMw/yfEvP8Hw+7/BsLt/wbB7f8DwO3/AsDs/wK/7P8Cvuv/Ar3r/wC9 278 | 6/8BvOr/Abzq/wG86v8BvOr/Abzq/wG86rv///8AAbzqYAC86/8Cvev/Ar7r/wK/7P8CwOz/A8Ht/wbB 279 | 7f8Gwu7/B8Pu/wfE7v8Kxe//Csbv/wzG8P8Mx/D/Dsjw/w7I8f8OyfH/Dsnx/xvI3f9Cx5n/XsVm/3TE 280 | QP98wzD/fMMw/3vDMv9rxE//dcM8/3zDMP98wzD/VcRy/wrF7/8HxO7/B8Pu/wbC7v8Gwe3/A8Ht/wLA 281 | 7P8Cv+z/Ar7r/wK96/8AvOv/Abzq/wG86v8BvOr/Abzq/wG86t3///8AALzrbgC96/8Cvuv/Ar/s/wLA 282 | 7P8Dwe3/BsLt/wfD7v8Hw+7/CsTv/wrF7/8MxvD/DMfw/w7I8P8OyfH/EMnx/xDK8f8Qy/L/EMvy/xLL 283 | 8v8Sy/L/Esvy/xLL8v8Wy+v/F8vn/xDL8v8syL//e8My/3zDMP93wzr/GMfc/wzG8P8Kxe//CsTv/wfD 284 | 7v8Hw+7/BsLt/wPB7f8CwOz/Ar/s/wK+6/8Avev/ALzr/wG86v8BvOr/Abzq/wG86u////8AAL3reAK+ 285 | 6/8Cv+z/AsDs/wPB7f8Gwu3/B8Pu/wfE7v8Kxe//Csbv/wzH8P8OyPD/Dsnx/xDK8f8QyvL/Esvy/xLM 286 | 8v8SzPP/Es3z/xPN8/8TzfP/E83z/xPN8/8TzfP/Es3z/xvL4v9yxET/fMMw/3zDMP9Ax5r/Dsnx/w7I 287 | 8P8Mx/D/Csbv/wrF7/8HxO7/B8Pu/wbC7f8Dwe3/AsDs/wK/7P8Cvuv/AL3r/wC86/8BvOr/Abzq/wG8 288 | 6vz///8AAr3rdgK+7P8Cv+z/A8Dt/wbB7f8Hw+7/B8Tu/wrF7/8Mxu//DMfw/w7I8f8OyfH/EMry/xLL 289 | 8v8SzPP/E83z/xPN8/8TzvT/Fc/0/xXP9P8Vz/T/Fc/0/xXP9P8Vz/T/Fc/z/1/Gaf98wzD/fMMw/2rF 290 | Uv8Uy+//EMry/w7J8f8OyPH/DMfw/wzG7/8Kxe//B8Tu/wfD7v8Gwe3/A8Dt/wK/7P8Cvuz/Ar3r/wC9 291 | 6/8BvOr/Abzq/wG86v7///8AAr7raQK/7P8DwOz/BsHt/wbC7v8Hw+7/CsXv/wzG7/8Mx/D/Dsjx/xDK 292 | 8f8Qy/L/Eszy/xPN8/8TzvP/Fc/0/xXP9P8X0PT/F9D1/xfR9f8X0fX/F9H1/xfR9f8X0fX/Rsqb/3zD 293 | MP98wzD/fMMy/y7Lxf8TzfP/Eszy/xDL8v8QyvH/Dsjx/wzH8P8Mxu//CsXv/wfD7v8Gwu7/BsHt/wPA 294 | 7P8Cv+z/Ar7r/wC96/8AvOv/Abzq/wG86uv///8AAr/sUwLA7P8Gwe3/BsLt/wfD7v8KxO//Csbv/wzH 295 | 8P8OyPH/EMrx/xDL8v8SzPP/E83z/xPO9P8Vz/T/F9D1/xfR9f8Z0vX/GtL2/xrT9v8a0/b/GtP2/xrT 296 | 9v8w0Mz/esM3/3zDMP98wzD/V8h5/xXP9P8TzvT/E83z/xLM8/8Qy/L/EMrx/w7I8f8Mx/D/Csbv/wrE 297 | 7/8Hw+7/BsLt/wbB7f8CwOz/Ar/s/wK+6/8Avev/Abzq/wG86tP///8AAr/sLwPA7f8Gwu3/B8Pu/wfE 298 | 7v8Kxe//DMfw/w7I8f8QyvH/EMvy/xLM8/8TzfP/Fc/0/xfQ9P8X0fX/GdL1/xrT9v8a0/b/HNT2/xzU 299 | 9/8c1ff/HNX3/yLU6/9wxUv/fMMw/3zDMP92xDz/IdHk/xfR9f8X0PT/Fc/0/xPN8/8SzPP/EMvy/xDK 300 | 8f8OyPH/DMfw/wrF7/8HxO7/B8Pu/wbC7f8DwO3/Ar/s/wK+7P8Cvev/ALzr/wG86q7///8AAsDsBQbB 301 | 7fYGwu7/B8Tu/wrF7/8MxvD/Dsjw/w7J8f8Qy/L/Eszz/xPN8/8Vz/T/F9D1/xnR9f8a0vb/GtP2/xzU 302 | 9/8c1ff/Htb3/x7W+P8f1vj/H9b4/1zJdf98wzD/fMMw/3zDMP9EzaT/GtP2/xrS9v8Z0fX/F9D1/xXP 303 | 9P8TzfP/Eszz/xDL8v8OyfH/Dsjw/wzG8P8Kxe//B8Tu/wbC7v8Gwe3/AsDs/wK/7P8Cvuv/AL3r/wG8 304 | 6nz///8AA8DtAAbC7bsHw+7/CsTv/wrG7/8Mx/D/Dsnx/xDK8v8SzPL/E83z/xXP9P8X0PX/GdH1/xrT 305 | 9v8c1Pb/HNX3/x7W9/8f1/j/Idf4/yHY+P8h2Pn/RdCp/3zDMP98wzD/fMMw/2rHWP8f1vX/HNX3/xzU 306 | 9v8a0/b/GdH1/xfQ9f8Vz/T/E83z/xLM8v8QyvL/Dsnx/wzH8P8Kxu//CsTv/wfD7v8Gwu3/A8Dt/wK/ 307 | 7P8Cvuv/AL3r/wC86zv///8ABsHtAAbC7nUHw+7/CsXv/wzG8P8OyPD/EMrx/xLL8v8TzfP/E870/xfQ 308 | 9P8Z0fX/GtP2/xzU9/8c1ff/H9b4/yHX+P8h2Pn/Itn5/yLa+f8y1tf/ecQ5/3zDMP98wzD/e8My/zXT 309 | zv8h1/j/H9b4/xzV9/8c1Pf/GtP2/xnR9f8X0PT/E870/xPN8/8Sy/L/EMrx/w7I8P8MxvD/CsXv/wfD 310 | 7v8Gwu7/BsHt/wLA7P8Cvuz/Ar3r7wC86wX///8ABsHtAAfD7hwHxO79Csbv/wzH8P8OyfH/EMry/xLM 311 | 8/8TzvP/Fc/0/xfR9f8a0vb/HNT2/xzV9/8f1/j/Idj4/yLZ+f8i2vn/I9v6/yba8/9tx1T/fMMw/3zD 312 | MP98wzD/Wc2B/yLa+f8i2fn/Idj4/x/X+P8c1ff/HNT2/xrS9v8X0fX/Fc/0/xPO8/8SzPP/EMry/w7J 313 | 8f8Mx/D/Csbv/wfE7v8Hw+7/BsHt/wPA7P8Cv+z/Ar7rmQC96wD///8ABsLtAAfD7gAKxe+2DMbw/w7I 314 | 8P8QyfH/Esvy/xPN8/8Vz/T/F9D1/xnS9f8a0/b/HNX3/x/W+P8h2Pj/Itn5/yLa+v8j2/r/Jdz7/1nO 315 | g/98wzD/fMMw/3zDMP91xUD/K9rs/yPb+v8i2vr/Itn5/yHY+P8f1vj/HNX3/xrT9v8Z0vX/F9D1/xXP 316 | 9P8TzfP/Esvy/xDJ8f8OyPD/DMbw/wrF7/8Hw+7/BsLt/wPA7f8Cv+z/Ar7rNwC96wD///8ABsLtAAfD 317 | 7gAKxe9ADMfw/w7I8f8QyvH/Eszy/xPN8/8Vz/T/F9H1/xrT9v8c1Pf/Htb3/yHX+P8i2fn/Itr6/yXb 318 | +v8m3fv/Q9S4/3zDMP98wzD/fMMw/3zDMP9I06z/Jt37/ybd+/8l2/r/Itr6/yLZ+f8h1/j/Htb3/xzU 319 | 9/8a0/b/F9H1/xXP9P8TzfP/Eszy/xDK8f8OyPH/DMfw/wrF7/8Hw+7/BsLt/wbB7f8Cv+zAAr7sAAK9 320 | 6wD///8ABsLuAAfE7gAKxe8ADMfwvw7J8f8Qy/L/Eszz/xPO9P8X0PT/GdL1/xrT9v8c1ff/H9f4/yHY 321 | +f8i2vn/I9v6/ybd+/8y2+L/d8U9/3zDMP98wzD/fMMw/2rJXv8p3/v/KN/8/ybe+/8m3fv/I9v6/yLa 322 | +f8h2Pn/H9f4/xzV9/8a0/b/GdL1/xfQ9P8TzvT/Eszz/xDL8v8OyfH/DMfw/wrF7/8HxO7/BsLu/wbB 323 | 7f8CwOxBAr7sAAK96wD///8AB8PuAArE7wAKxu8ADMfwMA7J8fwQy/L/Es3z/xXP9P8X0PX/GtL2/xzU 324 | 9v8e1vf/Idf4/yLZ+f8j2/r/Jdz7/ync9/9qyV7/fMMw/3zDMP98wzD/e8My/zrb1/8p4P3/KeD8/yjf 325 | /P8m3fv/Jdz7/yPb+v8i2fn/Idf4/x7W9/8c1Pb/GtL2/xfQ9f8Vz/T/Es3z/xDL8v8OyfH/DMfw/wrG 326 | 7/8KxO//B8Pu/wbB7agDwOwAAr/sAAK+6wD///8AB8PuAArE7wAMxu8ADsjwABDJ8YYSy/L/E83z/xXP 327 | 9P8X0fX/GtP2/xzU9/8e1vj/Idj4/yLa+f8j2/r/Jt37/1XQkP98wzD/fMMw/3zDMP98wzD/Xs9//zDg 328 | 9P8s4f3/KeD9/ynf/P8o3vz/Jt37/yPb+v8i2vn/Idj4/x7W+P8c1Pf/GtP2/xfR9f8Vz/T/E83z/xLL 329 | 8v8QyfH/Dsjw/wzG7/8KxO//B8Pu7AbB7RkDwOwAAr/sAAK+6wD///8AB8PuAArE7wAMxvAADsjwABDK 330 | 8QQSy/LCE83z/xXP9P8X0fX/GtP2/xzV9/8f1vj/Idj5/yLa+f8l2/r/PtbE/3zDMv98wzD/fMMw/3zD 331 | MP98wzD/fMMw/3zDMP96xDX/cMdO/2DNdv9G1LT/Kdzx/yXb+v8i2vn/Idj5/x/W+P8c1ff/GtP2/xfR 332 | 9f8Vz/T/E83z/xLL8v8QyvH/Dsjw/wzG8P8KxO/+B8PuSAbB7QADwOwAAr/sAAK+6wD///8AB8PuAArE 333 | 7wAMxvAADsjwABDK8QASy/IaE83z3hXP9P8X0fX/GtP2/xzV9/8f1vj/Idj5/yLa+v8p2+7/dMVD/3zD 334 | MP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/dsVA/0XTr/8i2vr/Idj5/x/W 335 | +P8c1ff/GtP2/xfR9f8Vz/T/E83z/xLL8v8QyvH/Dsjw/wzG8P8KxO94B8PuAAbB7QADwOwAAr/sAAK+ 336 | 6wD///8AB8PuAArE7wAMxvAADsjwABDK8QASy/IAE83zJBXP9OkX0fX/GtP2/xzV9/8f1vj/Idj5/yLa 337 | +f8119b/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zD 338 | MP9ZzH//Idj4/x/W+P8c1ff/GtP2/xfR9f8Vz/T/E83z/xLL8v8QyvH/Dsjw/wzG8IsKxO8AB8PuAAbB 339 | 7QADwOwAAr/sAAK+6wD///8AB8PuAArE7wAMxu8ADsjwABDJ8QASy/IAE83zABXP9CQX0fXcGtP2/xzU 340 | 9/8e1vj/Idj4/yLa+f8l2/j/ccZJ/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zD 341 | MP98wzD/fMMw/3zDMP98wzD/Ts6V/x7W+P8c1Pf/GtP2/xfR9f8Vz/T/E83z/xLL8v8QyfH/DsjwgAzG 342 | 7wAKxO8AB8PuAAbB7QADwOwAAr/sAAK+6wD///8AB8PuAArE7wAKxu8ADMfwAA7J8QAQy/IAEs3zABXP 343 | 9AAX0PUWGtL2vhzU9v8e1vf/Idf4/yLZ+f8j2/r/PtXB/3vDMv98wzD/fMMw/3zDMP98wzD/fMMw/3zD 344 | MP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/e8My/y3T2f8c1Pb/GtL2/xfQ9f8Vz/T/Es3z/xDL 345 | 8vUOyfFeDMfwAArG7wAKxO8AB8PuAAbB7QADwOwAAr/sAAK+6wD///8ABsLuAAfE7gAKxe8ADMfwAA7J 346 | 8QAQy/IAEszzABPO9AAX0PQAGdL1AhrT9nsc1ff5H9f4/yHY+f8i2vn/I9v6/0HVuv94xDv/fMMw/3zD 347 | MP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/1PLhv8a0/b/GdL1/xfQ 348 | 9P8TzvT/EszzzRDL8ikOyfEADMfwAArF7wAHxO4ABsLuAAbB7QACwOwAAr7sAAK96wD///8ABsLtAAfD 349 | 7gAKxe8ADMfwAA7I8QAQyvEAEszyABPN8wAVz/QAF9H1ABrT9gAc1PckHtb3tSHX+P8i2fn/Itr6/yXb 350 | +v8w2uP/Xcx6/3vDMv98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/27F 351 | Tv8a0/b/F9H1/xXP9OsTzfNqEszyAxDK8QAOyPEADMfwAArF7wAHw+4ABsLtAAbB7QACv+wAAr7sAAK9 352 | 6wD///8ABsLtAAfD7gAKxe8ADMbwAA7I8AAQyfEAEsvyABPN8wAVz/QAF9D1ABnS9QAa0/YAHNX3AB/W 353 | +DUh2PisItn5+iLa+v8j2/r/Jdz7/zDa4P9T0JL/b8dO/3zDMP98wzD/fMMw/3zDMP98wzD/fMMw/3zD 354 | MP98wzD/fMMw/3rDNf8Z0vXfF9D1cRXP9AsTzfMAEsvyABDJ8QAOyPAADMbwAArF7wAHw+4ABsLtAAPA 355 | 7QACv+wAAr7rAAC96wD///8ABsHtAAfD7gAHxO4ACsbvAAzH8AAOyfEAEMryABLM8wATzvMAFc/0ABfR 356 | 9QAa0vYAHNT2ABzV9wAf1/gAIdj4FCLZ+Wsi2vmzI9v68SPb+v8l2/r/Jdz6/y/Y4v9B07b/Us+S/2LJ 357 | af94xDn/fMMw/3zDMP98wzD/fMMw/3zDMP90xEAMFc/0ABPO8wASzPMAEMryAA7J8QAMx/AACsbvAAfE 358 | 7gAHw+4ABsHtAAPA7AACv+wAAr7rAAC96wD///8ABsHtAAbC7gAHw+4ACsXvAAzG8AAOyPAAEMrxABLL 359 | 8gATzfMAE870ABfQ9AAZ0fUAGtP2ABzU9wAc1fcAfMMwAHzDMAB8wzAAItn5AyLa+Ssi2vlRItr6ciLa 360 | +YEi2vmIItn5iCHY+Xgn1ulpWsp6eHnEN7t8wzD+fMMw/3zDMPYX0PQAE870ABPN8wASy/IAEMrxAA7I 361 | 8AAMxvAACsXvAAfD7gAGwu4ABsHtAALA7AACvuwAAr3rAAC86wD///8AA8DtAAbC7QAHw+4ACsTvAArG 362 | 7wAMx/AADsnxABDK8gASzPIAE83zABXP9AAX0PUAGdH1ABrT9gAc1PYAfMMwAHzDMAB8wzAAfMMwAHzD 363 | MAB8wzAAfMMwAHzDMAB8wzAAfMMwAHzDMAB8wzAAfMMwAHzDMAB8wzA4fMMw2XzDMNIVz/QAE83zABLM 364 | 8gAQyvIADsnxAAzH8AAKxu8ACsTvAAfD7gAGwu0AA8DtAAK/7AACvusAAL3rAAC86wD///8A////AP// 365 | /wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8AfMMwAHzD 366 | MAB8wzAAfMMwAHzDMAB8wzAAfMMwAHzDMAB8wzAAfMMwAHzDMAB8wzAAfMMwAHzDMAB8wzAAfMMwEXzD 367 | MHD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP// 368 | /wD///9///8AAP//wAH//wAA//8AAD//AAD//AAAD/8AAP/wAAAH/wAA/+AAAAH/AAD/gAAAAP8AAP8A 369 | AAAAfwAA/wAAAAA/AAD+AAAAAB8AAPwAAAAADwAA+AAAAAAPAAD4AAAAAAcAAPAAAAAABwAA8AAAAAAD 370 | AADgAAAAAAMAAOAAAAAAAwAA4AAAAAABAADAAAAAAAEAAMAAAAAAAQAAwAAAAAABAADAAAAAAAEAAMAA 371 | AAAAAQAAwAAAAAABAADAAAAAAAEAAMAAAAAAAQAAwAAAAAABAADgAAAAAAEAAOAAAAAAAQAA4AAAAAAD 372 | AADwAAAAAAMAAPAAAAAAAwAA8AAAAAAHAAD4AAAAAAcAAPwAAAAADwAA/AAAAAAfAAD+AAAAAD8AAP8A 373 | AAAAPwAA/4AAAAB/AAD/wAAAAP8AAP/gAAAD/wAA//gAAAf/AAD//AAAH/8AAP//gAB//wAA///wAH// 374 | AAD////+//8AAP///////wAA////////AAA= 375 | 376 | 377 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /QQMusicSkinExtract/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /QQMusicSkinExtract/obj/Debug/KGSkinExtract.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/obj/Debug/KGSkinExtract.Properties.Resources.resources -------------------------------------------------------------------------------- /QQMusicSkinExtract/obj/Debug/KGSkinExtract.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | G:\Workspace\C#\QQMusicSkinExtract\KGSkinExtract\bin\Debug\KGSkinExtract.exe.config 2 | G:\Workspace\C#\QQMusicSkinExtract\KGSkinExtract\bin\Debug\KGSkinExtract.exe 3 | G:\Workspace\C#\QQMusicSkinExtract\KGSkinExtract\bin\Debug\KGSkinExtract.pdb 4 | G:\Workspace\C#\QQMusicSkinExtract\KGSkinExtract\obj\Debug\KugouSkinRead.frmKGSkinExtract.resources 5 | G:\Workspace\C#\QQMusicSkinExtract\KGSkinExtract\obj\Debug\KGSkinExtract.Properties.Resources.resources 6 | G:\Workspace\C#\QQMusicSkinExtract\KGSkinExtract\obj\Debug\KGSkinExtract.csproj.GenerateResource.Cache 7 | G:\Workspace\C#\QQMusicSkinExtract\KGSkinExtract\obj\Debug\KGSkinExtract.exe 8 | G:\Workspace\C#\QQMusicSkinExtract\KGSkinExtract\obj\Debug\KGSkinExtract.pdb 9 | G:\Workspace\C#\QQMusicSkinExtract\KGSkinExtract\obj\Debug\KGSkinExtract.csprojResolveAssemblyReference.cache 10 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/obj/Debug/KGSkinExtract.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/obj/Debug/KGSkinExtract.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /QQMusicSkinExtract/obj/Debug/KGSkinExtract.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/obj/Debug/KGSkinExtract.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /QQMusicSkinExtract/obj/Debug/KGSkinExtract.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/obj/Debug/KGSkinExtract.exe -------------------------------------------------------------------------------- /QQMusicSkinExtract/obj/Debug/KGSkinExtract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/obj/Debug/KGSkinExtract.pdb -------------------------------------------------------------------------------- /QQMusicSkinExtract/obj/Debug/KugouSkinRead.frmKGSkinExtract.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/obj/Debug/KugouSkinRead.frmKGSkinExtract.resources -------------------------------------------------------------------------------- /QQMusicSkinExtract/obj/Debug/QQMusicSkinExtract.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | G:\Workspace\C#\QQMusicSkinExtract\KGSkinExtract\bin\Debug\KGSkinExtract.exe.config 2 | G:\Workspace\C#\QQMusicSkinExtract\KGSkinExtract\bin\Debug\KGSkinExtract.exe 3 | G:\Workspace\C#\QQMusicSkinExtract\KGSkinExtract\bin\Debug\KGSkinExtract.pdb 4 | G:\Workspace\C#\QQMusicSkinExtract\KGSkinExtract\obj\Debug\QQMusicSkinExtract.frmQQMusicSkinExtract.resources 5 | G:\Workspace\C#\QQMusicSkinExtract\KGSkinExtract\obj\Debug\KGSkinExtract.Properties.Resources.resources 6 | G:\Workspace\C#\QQMusicSkinExtract\KGSkinExtract\obj\Debug\QQMusicSkinExtract.csproj.GenerateResource.Cache 7 | G:\Workspace\C#\QQMusicSkinExtract\KGSkinExtract\obj\Debug\KGSkinExtract.exe 8 | G:\Workspace\C#\QQMusicSkinExtract\KGSkinExtract\obj\Debug\KGSkinExtract.pdb 9 | G:\Workspace\C#\QQMusicSkinExtract\QQMusicSkinExtract\bin\Debug\KGSkinExtract.exe.config 10 | G:\Workspace\C#\QQMusicSkinExtract\QQMusicSkinExtract\obj\Debug\KGSkinExtract.exe 11 | G:\Workspace\C#\QQMusicSkinExtract\QQMusicSkinExtract\obj\Debug\KGSkinExtract.pdb 12 | G:\Workspace\C#\QQMusicSkinExtract\QQMusicSkinExtract\bin\Debug\KGSkinExtract.exe 13 | G:\Workspace\C#\QQMusicSkinExtract\QQMusicSkinExtract\bin\Debug\KGSkinExtract.pdb 14 | G:\Workspace\C#\QQMusicSkinExtract\QQMusicSkinExtract\obj\Debug\QQMusicSkinExtract.csprojResolveAssemblyReference.cache 15 | G:\Workspace\C#\QQMusicSkinExtract\QQMusicSkinExtract\obj\Debug\QQMusicSkinExtract.frmQQMusicSkinExtract.resources 16 | G:\Workspace\C#\QQMusicSkinExtract\QQMusicSkinExtract\obj\Debug\KGSkinExtract.Properties.Resources.resources 17 | G:\Workspace\C#\QQMusicSkinExtract\QQMusicSkinExtract\obj\Debug\QQMusicSkinExtract.csproj.GenerateResource.Cache 18 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/obj/Debug/QQMusicSkinExtract.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/obj/Debug/QQMusicSkinExtract.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /QQMusicSkinExtract/obj/Debug/QQMusicSkinExtract.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/obj/Debug/QQMusicSkinExtract.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /QQMusicSkinExtract/obj/Debug/QQMusicSkinExtract.frmQQMusicSkinExtract.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/obj/Debug/QQMusicSkinExtract.frmQQMusicSkinExtract.resources -------------------------------------------------------------------------------- /QQMusicSkinExtract/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /QQMusicSkinExtract/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /QQMusicSkinExtract/obj/Release/KGSkinExtract.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | G:\Workspace\C#\KGSkinExtract-master - 副本\KGSkinExtract\bin\Release\KGSkinExtract.exe.config 2 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/obj/Release/QQMusicSkinExtract.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/obj/Release/QQMusicSkinExtract.Properties.Resources.resources -------------------------------------------------------------------------------- /QQMusicSkinExtract/obj/Release/QQMusicSkinExtract.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | G:\Workspace\C#\QQMusicSkinExtract\QQMusicSkinExtract\obj\Release\QQMusicSkinExtract.frmQQMusicSkinExtract.resources 2 | G:\Workspace\C#\QQMusicSkinExtract\QQMusicSkinExtract\obj\Release\QQMusicSkinExtract.csproj.GenerateResource.Cache 3 | G:\Workspace\C#\QQMusicSkinExtract\QQMusicSkinExtract\bin\Release\QQMusicSkinExtract.exe.config 4 | G:\Workspace\C#\QQMusicSkinExtract\QQMusicSkinExtract\bin\Release\QQMusicSkinExtract.exe 5 | G:\Workspace\C#\QQMusicSkinExtract\QQMusicSkinExtract\bin\Release\QQMusicSkinExtract.pdb 6 | G:\Workspace\C#\QQMusicSkinExtract\QQMusicSkinExtract\obj\Release\QQMusicSkinExtract.Properties.Resources.resources 7 | G:\Workspace\C#\QQMusicSkinExtract\QQMusicSkinExtract\obj\Release\QQMusicSkinExtract.exe 8 | G:\Workspace\C#\QQMusicSkinExtract\QQMusicSkinExtract\obj\Release\QQMusicSkinExtract.pdb 9 | -------------------------------------------------------------------------------- /QQMusicSkinExtract/obj/Release/QQMusicSkinExtract.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/obj/Release/QQMusicSkinExtract.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /QQMusicSkinExtract/obj/Release/QQMusicSkinExtract.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/obj/Release/QQMusicSkinExtract.exe -------------------------------------------------------------------------------- /QQMusicSkinExtract/obj/Release/QQMusicSkinExtract.frmQQMusicSkinExtract.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/obj/Release/QQMusicSkinExtract.frmQQMusicSkinExtract.resources -------------------------------------------------------------------------------- /QQMusicSkinExtract/obj/Release/QQMusicSkinExtract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/obj/Release/QQMusicSkinExtract.pdb -------------------------------------------------------------------------------- /QQMusicSkinExtract/obj/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinx911/QQMusicSkinExtract/38008497c069d9eb7f600f6be8c67e27979cd463/QQMusicSkinExtract/obj/Release/TempPE/Properties.Resources.Designer.cs.dll --------------------------------------------------------------------------------