├── LICENSE ├── README.md ├── bin └── TriHdrPatcher.exe ├── build.bat ├── good_tex_gp2.h ├── main.c ├── sha1.c ├── sha1.h └── staticVals.h /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 | 676 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Usage 2 | Grab the [TriHdrPatcher.exe](bin/TriHdrPatcher.exe?raw=true). 3 | Drag and drop whatever file you might have into the executable. If they are still in MAME CHD/BIN format make sure to use [triforce-iso-extract](https://github.com/FIX94/triforce-iso-extract) on them first. 4 | The tool will inform you if the file has a known SHA1, will fix some known dump errors and of course set a nice header for your loader. If you are using Nintendont as loader you can rename your patched file to game.iso afterwards. 5 | As of right now the following games will get these IDs and game titles: 6 | GFZJ8P - F-Zero AX 7 | GGPE01 - Mario Kart Arcade GP 8 | GGPE02 - Mario Kart Arcade GP 2 9 | GPBJ8P - Gekitou Pro Yakyuu 10 | GVS32J - Virtua Striker 3 Ver. 2002 11 | GVS32E - Virtua Striker 3 Ver. 2002 12 | GVS45J - Virtua Striker 4 13 | GVS45E - Virtua Striker 4 14 | GVS46J - Virtua Striker 4 Ver. 2006 15 | GVS46E - Virtua Striker 4 Ver. 2006 16 | 17 | # Manual Compiling 18 | As of right now this is a windows only code. If you have MinGW installed and gcc referenced in your PATH variable just use the "build.bat". 19 | Support for other OSes might follow in the future. 20 | -------------------------------------------------------------------------------- /bin/TriHdrPatcher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/triforce-header-patcher/8f1999661c1b50d56ce53176e2b1b318eb8f4c94/bin/TriHdrPatcher.exe -------------------------------------------------------------------------------- /build.bat: -------------------------------------------------------------------------------- 1 | gcc main.c sha1.c -Wall -static -Bstatic -O1 -s -o bin/TriHdrPatcher 2 | pause -------------------------------------------------------------------------------- /good_tex_gp2.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef _GOOD_TEX_GP2_H_ 3 | #define _GOOD_TEX_GP2_H_ 4 | 5 | /* This is a broken block in a specific dump, just a texture error which we can easly fix since it is pretty small */ 6 | 7 | static const unsigned char bad_tex_gp2_chksum[20] = { 8 | 0x12, 0x30, 0xea, 0x4a, 0x30, 0x8b, 0xef, 0xa3, 0x31, 0xaa, 0x64, 0x6d, 0xb2, 0xd7, 0xba, 0x5d, 0x37, 0x5c, 0x2b, 0x6d 9 | }; 10 | 11 | static const unsigned char good_tex_gp2[0x3000] = 12 | { 13 | 0x7A, 0x78, 0x4A, 0x93, 0xC5, 0xF9, 0x86, 0x36, 0xAB, 0xF3, 0xBF, 0xB7, 0xA8, 0x74, 0xC6, 0x8E, 0xDE, 0x41, 0x95, 0xC1, 0x62, 0xB7, 0xE9, 0x54, 14 | 0xD8, 0x15, 0x00, 0x2A, 0xAB, 0xD5, 0x6A, 0x7C, 0xF8, 0x50, 0x75, 0xCF, 0x6A, 0x05, 0x45, 0x02, 0xF1, 0x94, 0x79, 0x14, 0xB6, 0xB2, 0xAA, 0x4A, 15 | 0x23, 0xA8, 0x0F, 0x3B, 0xC4, 0xF7, 0xEE, 0x3D, 0x7C, 0x68, 0xB4, 0x39, 0x1C, 0x0F, 0x1F, 0x3E, 0xBC, 0x87, 0xE2, 0xCA, 0x96, 0x96, 0x4F, 0x7F, 16 | 0xFF, 0xDB, 0xE1, 0xC9, 0x96, 0x96, 0x9A, 0x8F, 0xF7, 0xBD, 0xFF, 0xE9, 0x53, 0xFB, 0x94, 0xF6, 0xE3, 0xF7, 0xF7, 0x7D, 0xFA, 0xD8, 0x68, 0x7D, 17 | 0xF4, 0xE9, 0xF9, 0xE1, 0xC7, 0x8F, 0x2F, 0xBB, 0x78, 0xFD, 0x89, 0x8B, 0xE7, 0x5F, 0xDC, 0x71, 0x72, 0xFB, 0xE4, 0x93, 0xCB, 0x2F, 0x9B, 0x80, 18 | 0xDA, 0x9B, 0x6B, 0x31, 0xD2, 0x07, 0xA2, 0x72, 0x31, 0x7E, 0x1D, 0xE4, 0xA7, 0x68, 0x6A, 0x9A, 0x5F, 0x5A, 0x5A, 0xC1, 0x42, 0xC6, 0xAD, 0x43, 19 | 0xAB, 0x4F, 0x71, 0x31, 0x9F, 0x05, 0x2E, 0x6F, 0xFB, 0x76, 0x3E, 0xD4, 0x01, 0xCD, 0x17, 0xD7, 0x77, 0xC8, 0xD1, 0x3D, 0x8C, 0xEA, 0x8B, 0x5B, 20 | 0x75, 0xBD, 0x1D, 0xF2, 0x8E, 0xD6, 0xED, 0xDB, 0x3B, 0x06, 0x5B, 0x65, 0x4A, 0xD8, 0xAA, 0x8A, 0x7B, 0x3B, 0x3A, 0xB4, 0xAA, 0xE2, 0xFA, 0xB3, 21 | 0x67, 0xCF, 0x96, 0xE3, 0xD7, 0xF7, 0xB6, 0x7F, 0x78, 0xFC, 0xEC, 0x87, 0xB3, 0x57, 0x0E, 0xF6, 0x1E, 0x3F, 0x7B, 0xFC, 0xBD, 0x85, 0xC1, 0x83, 22 | 0x83, 0x3A, 0xD5, 0xF1, 0xE3, 0xAF, 0xFD, 0x38, 0xF8, 0x7B, 0xA6, 0x72, 0x30, 0xFC, 0x7D, 0x0B, 0x85, 0x18, 0xFE, 0xFE, 0x85, 0x75, 0x18, 0xFE, 23 | 0xFE, 0x99, 0x15, 0x7C, 0x34, 0x69, 0xC9, 0x2C, 0x2B, 0x43, 0x17, 0xCF, 0xA0, 0xEB, 0x65, 0xD0, 0x39, 0xB4, 0xB0, 0x14, 0xD6, 0xA1, 0x93, 0x5C, 24 | 0x21, 0x05, 0x47, 0x17, 0xE1, 0x64, 0x97, 0xF1, 0x15, 0x7C, 0xD4, 0xD2, 0x2D, 0xD3, 0xA0, 0x9C, 0x5C, 0x2C, 0x03, 0xCF, 0xE5, 0xD6, 0xD5, 0x09, 25 | 0x25, 0x0A, 0x99, 0xC2, 0x6C, 0x9E, 0x02, 0xA8, 0xF4, 0x50, 0xA7, 0x06, 0x5D, 0xA8, 0xD7, 0xF3, 0xD3, 0xB7, 0x8A, 0x34, 0x66, 0x8D, 0x9E, 0x53, 26 | 0x26, 0x46, 0xC7, 0x8B, 0xD1, 0x31, 0x91, 0x29, 0xB3, 0xDA, 0x66, 0xB3, 0xE9, 0xF5, 0x4A, 0xB9, 0xC6, 0x0C, 0x86, 0x28, 0x1E, 0x3B, 0x88, 0x02, 27 | 0x02, 0x40, 0x29, 0x12, 0xF1, 0x78, 0xD5, 0x05, 0x4C, 0x3D, 0x88, 0x7C, 0x85, 0x46, 0xC6, 0xC4, 0xC8, 0x5F, 0x23, 0x63, 0x4D, 0xE9, 0x35, 0x0A, 28 | 0x99, 0x4C, 0xCC, 0xA7, 0xD3, 0x53, 0xE3, 0xD0, 0x49, 0x01, 0x74, 0xA1, 0xB8, 0x30, 0x86, 0x5C, 0x4A, 0x85, 0x8F, 0x27, 0x29, 0x8B, 0x49, 0x24, 29 | 0xB3, 0x98, 0x2C, 0x21, 0x68, 0x80, 0x18, 0x2A, 0x39, 0x3A, 0x8E, 0xCE, 0xE2, 0x33, 0x53, 0xC8, 0x20, 0x0A, 0xC8, 0x79, 0x2C, 0x72, 0x0A, 0xB5, 30 | 0x94, 0x4A, 0x0A, 0x27, 0xC7, 0x91, 0xA9, 0xA5, 0x39, 0x19, 0x71, 0x24, 0xD8, 0xE4, 0x31, 0x9A, 0x67, 0xE6, 0x51, 0x92, 0x11, 0xEF, 0xC3, 0xB6, 31 | 0x9F, 0x8C, 0x38, 0x9E, 0xCB, 0x67, 0x16, 0x92, 0x41, 0xE1, 0x38, 0x59, 0x3F, 0xF2, 0xE5, 0x39, 0xFF, 0xC8, 0x47, 0xAE, 0x5B, 0x17, 0x19, 0x91, 32 | 0x98, 0xB8, 0x0E, 0x53, 0x40, 0x88, 0xE6, 0x63, 0x62, 0xE2, 0x62, 0x22, 0x23, 0xD1, 0xF9, 0x8F, 0x31, 0xC8, 0x12, 0x63, 0xD0, 0x29, 0x91, 0xA9, 33 | 0xA9, 0x20, 0x91, 0x72, 0x0B, 0x23, 0x22, 0x42, 0xE1, 0x11, 0x11, 0x1A, 0x93, 0x1A, 0x13, 0x1A, 0x01, 0xE2, 0xA8, 0xB0, 0x30, 0x33, 0x22, 0xB5, 34 | 0x2C, 0x26, 0x86, 0xCE, 0x64, 0xD1, 0xE5, 0xB2, 0xDC, 0xDC, 0x08, 0xD4, 0x21, 0xC2, 0x8D, 0x88, 0xAE, 0x3D, 0x8B, 0x89, 0xC1, 0xAF, 0xC4, 0x46, 35 | 0x88, 0xF1, 0x0C, 0xCE, 0x2D, 0x44, 0xE7, 0x31, 0xFB, 0xFF, 0x03, 0xF0, 0xF7, 0x9E, 0xAD, 0xB4, 0x60, 0x78, 0xFB, 0xAA, 0x31, 0xEF, 0xB5, 0x48, 36 | 0x6B, 0x51, 0x2A, 0x91, 0x37, 0x60, 0x77, 0x33, 0x06, 0x9C, 0x09, 0x34, 0x06, 0xE6, 0x23, 0xA8, 0xB5, 0x4A, 0x75, 0x81, 0x2F, 0x2E, 0x91, 0xCB, 37 | 0xC5, 0xBC, 0x7F, 0xB0, 0x3F, 0x93, 0x09, 0xE0, 0x57, 0xD4, 0x35, 0xD7, 0x9E, 0xB9, 0x0C, 0xBB, 0xED, 0x91, 0x91, 0xBA, 0x9A, 0x1A, 0x26, 0xA3, 38 | 0x20, 0x7D, 0xA5, 0xAF, 0xA7, 0x8F, 0xA7, 0xBB, 0xAF, 0x27, 0xEE, 0x0C, 0xD2, 0x6D, 0xFD, 0xFD, 0xFD, 0x23, 0x03, 0xA7, 0x39, 0x35, 0x85, 0xE9, 39 | 0xC4, 0xE0, 0x60, 0x5F, 0x4F, 0x77, 0x1F, 0x37, 0x77, 0x37, 0x0F, 0x1F, 0x7F, 0x62, 0x7A, 0x52, 0xD2, 0xE9, 0x96, 0x96, 0xAA, 0xEC, 0xEC, 0x82, 40 | 0xF4, 0x10, 0x7F, 0x5F, 0x7F, 0x74, 0x29, 0xBE, 0x3F, 0x81, 0x40, 0xF0, 0xF7, 0xF7, 0x6F, 0x58, 0x49, 0xC8, 0xAE, 0xCA, 0x26, 0x12, 0x04, 0x5B, 41 | 0x89, 0x04, 0x62, 0x2E, 0x8D, 0x9D, 0x46, 0x20, 0x12, 0xB7, 0xEE, 0x6A, 0x90, 0xEE, 0x55, 0x57, 0x5F, 0xD8, 0xD5, 0x06, 0x52, 0x47, 0xCE, 0xEE, 42 | 0x11, 0x88, 0x94, 0x0A, 0x49, 0x1A, 0xAF, 0x7A, 0xE7, 0x9A, 0x7F, 0x7B, 0xB3, 0xF7, 0xD7, 0xA7, 0x38, 0x4D, 0xFB, 0x7E, 0xDD, 0x3B, 0x2A, 0x97, 43 | 0x81, 0xC8, 0xA6, 0xD7, 0x94, 0x75, 0xD6, 0x96, 0xE6, 0x90, 0xA2, 0xC3, 0xC3, 0x6F, 0xDD, 0x1E, 0x1F, 0x52, 0x3D, 0xEA, 0x63, 0xDF, 0x7E, 0x24, 44 | 0xE0, 0xDC, 0x9A, 0xD0, 0xF1, 0x19, 0xB4, 0x98, 0xC4, 0xEC, 0x02, 0x36, 0x2D, 0x00, 0x6C, 0xC1, 0x9C, 0x05, 0x73, 0x8E, 0x54, 0xF7, 0x8C, 0xDF, 45 | 0xBE, 0x25, 0x57, 0x95, 0x11, 0x82, 0xDF, 0x55, 0x3D, 0xBA, 0xAD, 0x49, 0x4D, 0x0C, 0x5D, 0x40, 0x64, 0x14, 0x14, 0x2E, 0x58, 0xB0, 0x20, 0x34, 46 | 0x60, 0x41, 0x40, 0xB8, 0x76, 0xBC, 0xA7, 0x47, 0xC9, 0xC9, 0xDF, 0x6C, 0xB2, 0x68, 0x6F, 0x9D, 0x3E, 0x75, 0x76, 0x2F, 0x9D, 0x53, 0x57, 0x51, 47 | 0x27, 0xEE, 0x38, 0x15, 0x1E, 0x4E, 0xCA, 0x39, 0x50, 0xDB, 0xCC, 0x7A, 0xF7, 0x5D, 0x36, 0x0D, 0xA0, 0x24, 0x96, 0xEF, 0x95, 0xB3, 0xE3, 0x40, 48 | 0xD4, 0x9E, 0x6A, 0xED, 0x15, 0xA0, 0x4B, 0x08, 0xF2, 0xDF, 0x7C, 0x33, 0xAB, 0xBC, 0x7C, 0xEF, 0xDE, 0x10, 0xE2, 0xD6, 0xF4, 0x82, 0x82, 0x82, 49 | 0xAA, 0x85, 0x33, 0x7D, 0x08, 0xBB, 0xAA, 0xB7, 0x06, 0x13, 0xFD, 0x89, 0xEC, 0xF1, 0xDB, 0x84, 0xAD, 0x7B, 0x69, 0x6C, 0xF8, 0x12, 0x3C, 0x01, 50 | 0xBA, 0xF6, 0xA0, 0xE5, 0x74, 0x7F, 0xFF, 0xCA, 0xAD, 0x5B, 0x89, 0xE9, 0x21, 0x04, 0xE2, 0xD8, 0xED, 0xF5, 0x0C, 0xF5, 0x4A, 0x1C, 0x6E, 0xA2, 51 | 0xA7, 0x40, 0xA0, 0x6E, 0xC0, 0xE3, 0xFA, 0xFB, 0x6F, 0xC0, 0x0F, 0x18, 0xE3, 0x5B, 0x80, 0x32, 0xC9, 0xD3, 0xA9, 0x9E, 0x9E, 0xFE, 0x8B, 0x16, 52 | 0x05, 0xAF, 0x0C, 0xC6, 0xFB, 0xA6, 0x27, 0x66, 0xEF, 0xC9, 0x26, 0xE2, 0x79, 0x72, 0xC0, 0x1D, 0x70, 0x06, 0x2F, 0x95, 0x82, 0xF0, 0x63, 0x83, 53 | 0x97, 0x2B, 0x19, 0x21, 0x6C, 0x25, 0x78, 0x35, 0x3B, 0x04, 0xE7, 0xE1, 0x8D, 0xE1, 0xFC, 0x67, 0x7E, 0xBE, 0xD3, 0xBF, 0xFC, 0xEF, 0x55, 0x7F, 54 | 0x07, 0xFE, 0xC1, 0x67, 0x1F, 0x62, 0x7E, 0xE5, 0x35, 0x23, 0x86, 0xFB, 0xFA, 0x41, 0xA7, 0x7F, 0xEB, 0x9E, 0x4E, 0xD5, 0x7E, 0xAA, 0xD5, 0x02, 55 | 0xDB, 0xA3, 0xEA, 0x6C, 0x2B, 0x78, 0xFB, 0xD4, 0xE0, 0xD9, 0xD6, 0x0E, 0x9B, 0x6D, 0x0A, 0xFC, 0x29, 0xF0, 0x36, 0xE7, 0x41, 0x00, 0x20, 0xFA, 56 | 0x29, 0x17, 0xE1, 0xA3, 0x0A, 0x14, 0x4D, 0xB9, 0x82, 0x97, 0x3C, 0x8F, 0x26, 0x09, 0x50, 0xF4, 0xC4, 0x15, 0x38, 0x8F, 0x0F, 0x3C, 0x18, 0xB9, 57 | 0x83, 0x2E, 0x18, 0xF8, 0xDD, 0xC5, 0x8B, 0x77, 0xD0, 0x01, 0x81, 0x8B, 0xBF, 0x03, 0xDF, 0x8F, 0x31, 0x3F, 0x7A, 0x11, 0xD6, 0x30, 0x3A, 0x69, 58 | 0x1C, 0x6C, 0x3F, 0x7C, 0x18, 0xF8, 0xFE, 0x61, 0xEF, 0xE1, 0x53, 0x98, 0x6F, 0x3F, 0x3C, 0xD8, 0x0E, 0x5E, 0xD5, 0x3B, 0x34, 0x34, 0xC4, 0xC8, 59 | 0xCD, 0x07, 0x35, 0x9F, 0x42, 0x02, 0x16, 0xCF, 0x4B, 0x23, 0x93, 0xC9, 0xF9, 0x69, 0xDB, 0xD3, 0x12, 0xC0, 0xDA, 0xB3, 0x36, 0x6F, 0x46, 0x9E, 60 | 0x5C, 0x54, 0x58, 0x56, 0xC6, 0xE4, 0xF3, 0xC9, 0x28, 0x59, 0x67, 0x72, 0xF8, 0x64, 0x72, 0x6A, 0x2A, 0x10, 0x39, 0x27, 0x21, 0x2D, 0x35, 0x3D, 61 | 0xAD, 0x80, 0xC1, 0xE0, 0xF3, 0x31, 0xA6, 0xAF, 0xE7, 0xB7, 0x62, 0x7B, 0x36, 0x31, 0x0B, 0x5D, 0x25, 0xC0, 0xAD, 0x3D, 0x83, 0x2E, 0x17, 0x60, 62 | 0x71, 0x0F, 0x1C, 0xC8, 0xCF, 0xCF, 0x65, 0x88, 0x0C, 0xE8, 0xB8, 0x70, 0x7D, 0xAB, 0xD2, 0x34, 0x39, 0x29, 0x6B, 0x6F, 0xED, 0x55, 0x5B, 0x9F, 63 | 0x3E, 0x17, 0x4A, 0x3B, 0x7A, 0x75, 0x13, 0x63, 0xCF, 0xA6, 0x27, 0x26, 0x26, 0x21, 0xF3, 0x34, 0x4D, 0x5B, 0x27, 0xAC, 0xE0, 0xAD, 0xD3, 0x93, 64 | 0x58, 0xD9, 0xF8, 0x62, 0xD2, 0x38, 0xF9, 0x62, 0x7A, 0xD2, 0xA8, 0x16, 0xF3, 0xEB, 0x0E, 0x1C, 0x38, 0x74, 0x5A, 0x2B, 0xC5, 0x7C, 0x8D, 0x41, 65 | 0xDD, 0x5D, 0x57, 0x5A, 0x7A, 0xA8, 0x66, 0xD2, 0x20, 0xE7, 0x57, 0x80, 0x06, 0x31, 0xF7, 0x2E, 0x9E, 0x3B, 0x77, 0xEE, 0x0C, 0x5F, 0x8D, 0x6E, 66 | 0xF3, 0xDC, 0xB9, 0xB3, 0x66, 0x79, 0x76, 0x9B, 0x0E, 0xFF, 0x0C, 0xCA, 0x78, 0x8E, 0x46, 0xB9, 0xFA, 0x67, 0x73, 0x67, 0xFD, 0x38, 0xF8, 0xEF, 67 | 0xD2, 0xB6, 0x60, 0x3E, 0xBD, 0xAA, 0x0A, 0xC3, 0x9D, 0x50, 0xA5, 0xC6, 0xFC, 0xEB, 0x35, 0x3C, 0x58, 0x7B, 0x47, 0xBB, 0x8E, 0x1D, 0xBB, 0xA8, 68 | 0x1D, 0x1D, 0x1D, 0xBD, 0x58, 0x79, 0xEC, 0x98, 0xE9, 0xD6, 0xCD, 0x9B, 0x37, 0x1B, 0x2B, 0x2F, 0xF2, 0xBA, 0x2E, 0x1E, 0xBB, 0x78, 0x71, 0xDB, 69 | 0x27, 0xA3, 0xEA, 0xAA, 0xCF, 0x87, 0x87, 0xDB, 0x4A, 0x6E, 0x4E, 0x8C, 0x4D, 0xBE, 0x78, 0x36, 0x5E, 0x35, 0x3A, 0x3E, 0x36, 0xFD, 0xEC, 0x87, 70 | 0x17, 0x13, 0xA3, 0x5F, 0x3E, 0x75, 0x3C, 0xFB, 0xC3, 0x0F, 0xCF, 0x41, 0x2B, 0x8C, 0x1A, 0x7A, 0xD4, 0xD6, 0x6D, 0x55, 0x8D, 0x5D, 0xD5, 0xBB, 71 | 0xAA, 0xDB, 0xB2, 0xB7, 0x55, 0xB5, 0xAC, 0x5F, 0xB2, 0x62, 0xED, 0xED, 0xEC, 0x92, 0xC6, 0x4D, 0x4B, 0x96, 0x6C, 0xC5, 0x78, 0xBE, 0xBA, 0xDD, 72 | 0x28, 0xD7, 0x2A, 0x7B, 0xAA, 0xD7, 0xEE, 0xEA, 0xEA, 0xB1, 0xED, 0x5A, 0xB2, 0x64, 0x45, 0x76, 0xA5, 0xE8, 0xD6, 0x56, 0xF0, 0xDB, 0xF6, 0xE8, 73 | 0x54, 0xE8, 0x2E, 0xEB, 0x56, 0x3B, 0xBA, 0x2D, 0x27, 0x7C, 0x96, 0x5B, 0x7B, 0x4A, 0xF6, 0xEC, 0xD9, 0x53, 0x59, 0x59, 0xB9, 0x67, 0xDB, 0x1E, 74 | 0xCC, 0xEC, 0xD8, 0xD9, 0x06, 0x0F, 0x1F, 0x8E, 0xEA, 0xD1, 0x59, 0x4A, 0x56, 0x6B, 0x65, 0x63, 0xCB, 0xAD, 0x51, 0x83, 0xC5, 0x92, 0xBD, 0x67, 75 | 0x4F, 0x49, 0x49, 0x55, 0x4B, 0xCB, 0xC3, 0x7B, 0x7D, 0xC3, 0x8F, 0x9F, 0x4E, 0x4C, 0x1A, 0x8D, 0xC6, 0x71, 0x90, 0x64, 0xE3, 0x20, 0x25, 0x60, 76 | 0x39, 0xD4, 0x03, 0xB9, 0x47, 0xD7, 0xED, 0xBE, 0xB6, 0xEA, 0x89, 0x09, 0x9B, 0xF9, 0xC1, 0x40, 0x67, 0x67, 0xCF, 0x38, 0x82, 0x6F, 0x7A, 0x72, 77 | 0xE8, 0x21, 0x9A, 0xA5, 0x9F, 0x9C, 0x1C, 0x32, 0x19, 0x21, 0x1A, 0x7E, 0x74, 0xA6, 0xF9, 0x0C, 0x30, 0x1D, 0x9D, 0x3E, 0xA1, 0x51, 0x48, 0x84, 78 | 0x74, 0x4A, 0xF2, 0xF4, 0xF4, 0x8B, 0x17, 0x93, 0x6A, 0x69, 0x07, 0xEA, 0x03, 0xF1, 0x34, 0x9D, 0x8E, 0xD8, 0xBD, 0xB5, 0x95, 0x02, 0xA4, 0x8F, 79 | 0x12, 0x7B, 0x16, 0xBD, 0x18, 0xCD, 0x3B, 0x6E, 0x7F, 0x31, 0xA1, 0x16, 0xB5, 0x82, 0xB8, 0x6C, 0x6D, 0xAD, 0x6F, 0x05, 0xD9, 0x32, 0x58, 0x5F, 80 | 0x7F, 0xEA, 0x38, 0x30, 0xFC, 0xD9, 0xE2, 0x53, 0x67, 0xD1, 0xE9, 0x14, 0x1F, 0x96, 0x9F, 0xC5, 0xEC, 0xF8, 0xE0, 0xC3, 0x41, 0x70, 0x6F, 0xF9, 81 | 0xA2, 0xF3, 0x25, 0x8F, 0x9F, 0x78, 0xCB, 0xF3, 0x3D, 0xCC, 0x7E, 0x81, 0x87, 0x32, 0xF8, 0x37, 0x7F, 0x1C, 0xFC, 0x43, 0x2B, 0x2A, 0x30, 0x1F, 82 | 0x53, 0x57, 0x87, 0xE1, 0x1E, 0xE1, 0xF2, 0xD1, 0xB5, 0xDC, 0x0A, 0x44, 0xF4, 0x40, 0xF5, 0x15, 0x15, 0x75, 0x75, 0x88, 0xD2, 0x6B, 0xC1, 0x83, 83 | 0x51, 0xB9, 0x15, 0x54, 0xD4, 0x54, 0x81, 0x78, 0xBE, 0x82, 0x2B, 0x51, 0xD4, 0x55, 0x80, 0x71, 0x85, 0x12, 0x6A, 0x05, 0xB5, 0x08, 0xFA, 0x4B, 84 | 0xA0, 0x1B, 0x2A, 0x0A, 0x35, 0x12, 0x12, 0x89, 0xAF, 0xD7, 0x4F, 0x69, 0x8A, 0x02, 0x02, 0x98, 0xC0, 0xE0, 0xDC, 0xF0, 0x05, 0x99, 0x12, 0x85, 85 | 0x42, 0x41, 0x5A, 0x10, 0x0D, 0xAD, 0x42, 0xA1, 0x2B, 0x9D, 0x87, 0x1A, 0x20, 0x78, 0x19, 0x6C, 0x8A, 0x12, 0xEC, 0xD4, 0x6E, 0x4C, 0x47, 0x48, 86 | 0x24, 0x12, 0x90, 0xE3, 0xF0, 0x00, 0xA6, 0x47, 0xB5, 0xE8, 0x14, 0x6D, 0x58, 0x48, 0xD0, 0xF5, 0x3C, 0xF0, 0x5A, 0x2E, 0x3A, 0x5F, 0x07, 0xA9, 87 | 0x0E, 0x85, 0x59, 0x9C, 0x28, 0x46, 0x22, 0x5C, 0x6F, 0x96, 0x21, 0x85, 0x22, 0x56, 0x68, 0xCC, 0xE8, 0x63, 0xD5, 0xC1, 0x07, 0x88, 0x01, 0xA2, 88 | 0x47, 0x57, 0x02, 0xA4, 0xC6, 0x91, 0x33, 0x72, 0x40, 0xB0, 0x69, 0x0A, 0xE3, 0x40, 0x01, 0x94, 0xD6, 0x6A, 0x34, 0x75, 0x50, 0xAC, 0x3D, 0x29, 89 | 0xD1, 0x74, 0x73, 0xD0, 0x79, 0xC1, 0x0A, 0x3D, 0x28, 0x73, 0x78, 0xAD, 0x44, 0x03, 0xA2, 0x02, 0xC4, 0x9B, 0x50, 0x26, 0xC6, 0xBE, 0x1A, 0x76, 90 | 0xF6, 0x30, 0x13, 0xDB, 0x1B, 0xB0, 0x58, 0xF0, 0x86, 0x2C, 0xF4, 0x45, 0xA9, 0x14, 0xF8, 0xF2, 0x75, 0xD8, 0xB8, 0x4C, 0xB1, 0x02, 0xA4, 0x06, 91 | 0x0B, 0xDD, 0x0D, 0x14, 0x75, 0x60, 0x51, 0xA1, 0xB9, 0xAE, 0x82, 0xCE, 0xA2, 0x66, 0x64, 0x60, 0x21, 0x6A, 0x92, 0xF1, 0x31, 0x89, 0x08, 0xAD, 92 | 0x75, 0xD8, 0x1F, 0x1A, 0x07, 0x86, 0xC1, 0x86, 0x72, 0xB6, 0x10, 0x7D, 0x61, 0x41, 0xA7, 0xB3, 0x62, 0x3C, 0x61, 0x70, 0x2A, 0xB5, 0x22, 0x11, 93 | 0x8F, 0x5E, 0x4F, 0xA5, 0xC6, 0xFC, 0x03, 0xF0, 0x07, 0xBC, 0x4D, 0x6A, 0x0C, 0x6F, 0xA5, 0x56, 0xAD, 0xC6, 0xBC, 0x41, 0x8B, 0xBC, 0xAF, 0xDC, 94 | 0xA4, 0x85, 0xED, 0x9C, 0x86, 0xFE, 0x57, 0x82, 0x9B, 0x5A, 0x0B, 0x78, 0xE3, 0xF0, 0xFE, 0x6A, 0x2D, 0x94, 0x57, 0xBE, 0x9B, 0x0E, 0xDE, 0x1F, 95 | 0x47, 0x4C, 0xF4, 0x77, 0xF7, 0xF0, 0xF1, 0xF5, 0x27, 0xF8, 0xE2, 0x89, 0x49, 0xFE, 0x3E, 0x21, 0xFE, 0x78, 0xCF, 0xAD, 0xB4, 0xF4, 0x85, 0x21, 96 | 0xBE, 0x9E, 0x6E, 0x1E, 0xBE, 0xB4, 0x10, 0x4F, 0x4F, 0xDF, 0x39, 0xEE, 0x04, 0x9E, 0x28, 0x3D, 0xBB, 0xAA, 0xD2, 0xB3, 0xC1, 0xA0, 0x4D, 0x9F, 97 | 0x93, 0x7D, 0x29, 0x04, 0x3E, 0x9D, 0x20, 0xA8, 0xB0, 0xBF, 0x00, 0x1D, 0x50, 0x6A, 0xE0, 0x89, 0xB2, 0x5F, 0x0D, 0x39, 0x76, 0x29, 0x95, 0x26, 98 | 0xB8, 0x94, 0x48, 0xE0, 0x74, 0x0B, 0x7A, 0x7A, 0x38, 0x0C, 0xC1, 0xE0, 0xA0, 0x5A, 0x23, 0x91, 0xAA, 0xD4, 0x0A, 0xC5, 0xC0, 0xE5, 0x93, 0x82, 99 | 0x5E, 0xA9, 0x52, 0x31, 0xD0, 0x7C, 0x40, 0xAE, 0x18, 0x38, 0x53, 0x7B, 0x20, 0x27, 0xA5, 0x13, 0xB4, 0x37, 0x62, 0x76, 0x48, 0xE5, 0x72, 0x52, 100 | 0x80, 0xE0, 0x73, 0x30, 0x96, 0x0F, 0x0F, 0x70, 0x2E, 0x03, 0x16, 0x84, 0x87, 0x47, 0x47, 0x83, 0x5B, 0xE0, 0x2C, 0x21, 0x03, 0x9A, 0x9F, 0x03, 101 | 0x4B, 0x67, 0x29, 0x20, 0x20, 0x14, 0x8A, 0x73, 0x16, 0x84, 0x86, 0x06, 0x20, 0xB7, 0x20, 0x14, 0x24, 0x00, 0xF4, 0xC0, 0x5A, 0x03, 0x02, 0x5E, 102 | 0x76, 0x82, 0x97, 0xA2, 0xD6, 0x39, 0xD0, 0x19, 0x8D, 0x97, 0x92, 0x73, 0xE0, 0x64, 0x68, 0x38, 0xBA, 0x0B, 0x6D, 0x4A, 0x4E, 0x68, 0x68, 0x34, 103 | 0x16, 0xC0, 0x8B, 0x42, 0xE1, 0x3D, 0xA2, 0xCF, 0x70, 0x8B, 0x37, 0xBC, 0xF1, 0xC6, 0x1B, 0x1B, 0x0E, 0x80, 0xF8, 0xAF, 0x83, 0x30, 0x27, 0x07, 104 | 0x56, 0x9A, 0xCB, 0x9D, 0x2C, 0xF4, 0xAA, 0xD2, 0x03, 0x27, 0x2F, 0x6F, 0x00, 0xCB, 0xCA, 0x3F, 0xD5, 0xFA, 0x86, 0xCB, 0xB2, 0xE0, 0xF9, 0x26, 105 | 0x68, 0x83, 0x4E, 0x2E, 0x7D, 0x3B, 0xBC, 0x70, 0x43, 0x3B, 0x76, 0xC3, 0xA1, 0xF5, 0xF8, 0x0D, 0x20, 0x17, 0x4E, 0xF1, 0x44, 0xEC, 0x0D, 0x3F, 106 | 0x87, 0xCA, 0x0D, 0x59, 0x67, 0xE1, 0xB9, 0x01, 0x0D, 0x1C, 0x9C, 0x54, 0x76, 0xE9, 0x52, 0xD9, 0xAB, 0x78, 0x81, 0x80, 0xD7, 0xDD, 0xCD, 0x21, 107 | 0xE0, 0x7B, 0x7B, 0x07, 0x61, 0x9B, 0xA4, 0xE1, 0x91, 0xBC, 0x38, 0xD5, 0xFE, 0x96, 0x27, 0x4F, 0x29, 0x45, 0x38, 0x13, 0x78, 0x6A, 0xA7, 0x17, 108 | 0x68, 0xA5, 0x52, 0xA5, 0x9A, 0x11, 0x22, 0xD5, 0x4A, 0xE5, 0x48, 0xAB, 0xE3, 0x5C, 0xFF, 0xA5, 0x12, 0xF3, 0x81, 0x7F, 0xE1, 0x9D, 0x2B, 0xC4, 109 | 0xDF, 0x83, 0xFF, 0xBB, 0x0F, 0x75, 0x18, 0xFE, 0x7B, 0x8D, 0x3A, 0x0C, 0xFF, 0x6A, 0xBB, 0x0A, 0xC3, 0x7F, 0xAF, 0x55, 0xD5, 0x7B, 0xF6, 0x54, 110 | 0x2F, 0xA2, 0xF9, 0x76, 0xD8, 0x55, 0x01, 0xDF, 0x5B, 0xDA, 0xCF, 0x96, 0x0F, 0xDA, 0xC1, 0xF7, 0x9E, 0x2D, 0x47, 0x87, 0x80, 0x91, 0x00, 0x30, 111 | 0x3B, 0xF9, 0xDE, 0x8C, 0x45, 0x16, 0xAC, 0x02, 0xBC, 0xC5, 0xEC, 0x6A, 0xC2, 0x88, 0x7E, 0xE4, 0xE5, 0xFC, 0xC0, 0x9F, 0x3C, 0xE4, 0xC5, 0xCE, 112 | 0xD3, 0x07, 0x30, 0xC6, 0xC7, 0x44, 0x01, 0x48, 0x00, 0xA7, 0x5E, 0x00, 0x8F, 0x1D, 0x55, 0xB8, 0x73, 0xE9, 0x62, 0xFF, 0x84, 0xEA, 0x6C, 0xCF, 113 | 0xD0, 0xD0, 0x25, 0xF0, 0xA7, 0x7A, 0x87, 0x7A, 0xC0, 0x1B, 0x07, 0x07, 0xDB, 0xDB, 0xC1, 0x83, 0x1E, 0x78, 0x77, 0xF3, 0xDE, 0xD5, 0xAB, 0x37, 114 | 0x6C, 0xF8, 0xE5, 0xE6, 0xB4, 0x7C, 0xE4, 0x36, 0x6C, 0xCF, 0x6F, 0xCF, 0x5F, 0xBD, 0xFA, 0x0D, 0xF0, 0x9B, 0xD3, 0x36, 0xAC, 0x46, 0x3F, 0x34, 115 | 0x3A, 0xF6, 0x0F, 0xA9, 0x3A, 0xAD, 0xF5, 0x54, 0x7D, 0x1A, 0xF4, 0xA2, 0xB5, 0xB6, 0xD7, 0xE7, 0x6F, 0xDE, 0xFC, 0x6E, 0x7E, 0x79, 0xEB, 0xA9, 116 | 0xAC, 0xAC, 0x0D, 0x9B, 0xB3, 0x18, 0xF5, 0x68, 0xC3, 0x2C, 0x3D, 0x40, 0xA3, 0xC1, 0xAE, 0x1B, 0xDD, 0xE7, 0x31, 0x9F, 0x56, 0x4F, 0xA3, 0x53, 117 | 0xA9, 0x59, 0xF9, 0xF9, 0xC5, 0xC5, 0x79, 0x94, 0xCC, 0x3A, 0x99, 0x54, 0x6E, 0x9C, 0xF8, 0xF6, 0x69, 0x9D, 0x58, 0xAB, 0xB3, 0x4C, 0x8E, 0x4F, 118 | 0xD6, 0x88, 0xB5, 0x16, 0x9B, 0x75, 0x72, 0x9A, 0x29, 0xD5, 0xDA, 0x6C, 0xE3, 0x93, 0xD3, 0x2F, 0x26, 0x11, 0x21, 0x4C, 0xDA, 0x10, 0x19, 0x3C, 119 | 0x7F, 0x3E, 0x6D, 0x43, 0x24, 0xF2, 0xE2, 0x85, 0x0D, 0xF3, 0x8E, 0x69, 0xF8, 0xC5, 0xAC, 0x5A, 0x29, 0xA7, 0xA2, 0xA8, 0x0C, 0x7E, 0x2B, 0xAD, 120 | 0x08, 0xA4, 0x34, 0x24, 0x3C, 0x56, 0x25, 0x8F, 0x89, 0xBC, 0x51, 0x2D, 0x60, 0xD0, 0x38, 0x62, 0xC3, 0xDE, 0x9F, 0xFD, 0x6C, 0x16, 0x9E, 0xC9, 121 | 0xD7, 0x8A, 0x56, 0x23, 0xDF, 0x20, 0xD6, 0xE6, 0xFF, 0x7C, 0x16, 0x9E, 0xC6, 0xEC, 0x50, 0x2B, 0x37, 0xCF, 0xFA, 0x71, 0xF0, 0x4F, 0x92, 0x3B, 122 | 0xF1, 0x6F, 0xB0, 0x5A, 0x31, 0xFC, 0xD9, 0x46, 0x2B, 0x86, 0x3F, 0xDB, 0x0A, 0x99, 0x38, 0xB0, 0x7F, 0xC9, 0xDA, 0x15, 0x56, 0xBB, 0xB6, 0xB1, 123 | 0x72, 0x13, 0x78, 0xAB, 0x55, 0x5E, 0x59, 0xB2, 0x02, 0xBC, 0x45, 0xD7, 0x55, 0xB9, 0x69, 0xC5, 0xA6, 0x2F, 0x9F, 0x0E, 0xDD, 0xFF, 0xC3, 0x0F, 124 | 0xDF, 0x2E, 0x69, 0xFA, 0x60, 0xC5, 0xCE, 0xA7, 0x2F, 0x26, 0x96, 0xAC, 0x5D, 0xFB, 0xF6, 0x8A, 0x36, 0x87, 0x7E, 0xC5, 0x92, 0x25, 0x6B, 0x57, 125 | 0x7C, 0x60, 0x69, 0x19, 0x1F, 0x6D, 0xAC, 0x2C, 0xD9, 0xB4, 0x69, 0x5B, 0xE3, 0xC4, 0x2D, 0x20, 0x6D, 0x20, 0xE5, 0xC6, 0x96, 0xCA, 0x96, 0xEE, 126 | 0xFE, 0x16, 0xE0, 0xF0, 0x63, 0xA7, 0x35, 0x53, 0xFA, 0xEC, 0x6D, 0xDB, 0x08, 0x2B, 0x36, 0x6D, 0xFB, 0xA3, 0x65, 0x6F, 0x02, 0xDB, 0xB6, 0x69, 127 | 0x5B, 0xD5, 0xEB, 0xAF, 0x6F, 0x7A, 0x1D, 0x05, 0x60, 0x88, 0xEB, 0xB1, 0xC6, 0x3D, 0x7F, 0xE6, 0x37, 0x61, 0xBE, 0x12, 0x13, 0x01, 0x25, 0x7B, 128 | 0xFE, 0xCC, 0x4A, 0xB0, 0xCA, 0x4A, 0x97, 0x41, 0x88, 0xEE, 0xE9, 0xB7, 0x02, 0x7A, 0xBF, 0xBD, 0x66, 0xCD, 0x9A, 0x15, 0xDB, 0x60, 0xF8, 0xB5, 129 | 0x2B, 0x56, 0xAC, 0x80, 0x81, 0x20, 0x5A, 0xB9, 0xE2, 0xDF, 0xAB, 0xBA, 0xD4, 0xC6, 0xC9, 0xC9, 0xC9, 0x15, 0x6F, 0x97, 0x54, 0x75, 0x4D, 0xD8, 130 | 0x1D, 0xA0, 0x3D, 0xF6, 0x54, 0x36, 0xDE, 0xB2, 0x10, 0xE0, 0x53, 0xC0, 0x20, 0x2D, 0x93, 0xCE, 0xE3, 0xF7, 0xD3, 0x76, 0x80, 0x15, 0x9D, 0xAB, 131 | 0x80, 0x9D, 0xBA, 0x07, 0x7F, 0xB7, 0xC6, 0x27, 0x6D, 0xCE, 0xF3, 0xF8, 0x5E, 0x40, 0xC3, 0xF8, 0xE0, 0x0B, 0x30, 0x2C, 0x46, 0x7F, 0xF0, 0x44, 132 | 0x7D, 0x50, 0xB1, 0x17, 0x38, 0xFE, 0x38, 0xA4, 0xF4, 0x2F, 0x26, 0xC6, 0x07, 0x51, 0x84, 0x34, 0xC6, 0xA4, 0xEA, 0xDA, 0x71, 0x68, 0x83, 0x76, 133 | 0xCB, 0xC4, 0xF1, 0xE3, 0x27, 0x4E, 0xEC, 0xFB, 0xF8, 0xD7, 0xF8, 0x13, 0x27, 0x3E, 0xDE, 0xF7, 0xFE, 0xFB, 0xBF, 0xC0, 0x7F, 0x7C, 0xE2, 0xE3, 134 | 0xF7, 0x7F, 0xF5, 0xAB, 0x5F, 0xE0, 0x55, 0xD7, 0x4E, 0x7C, 0xFC, 0xF1, 0xBE, 0x5F, 0xFC, 0x38, 0xF8, 0x87, 0x53, 0x2B, 0x30, 0xFC, 0x03, 0x48, 135 | 0x24, 0x0C, 0xFF, 0xD0, 0x28, 0x12, 0x86, 0x7F, 0x28, 0x29, 0x8A, 0x9A, 0x92, 0x51, 0x4A, 0x05, 0xB6, 0x22, 0x91, 0x52, 0xD0, 0x29, 0xF5, 0x54, 136 | 0x74, 0xE7, 0x5C, 0x70, 0x39, 0xA4, 0x28, 0x52, 0x4E, 0x29, 0x95, 0x9A, 0x83, 0xC9, 0x03, 0xA1, 0x04, 0x91, 0x1E, 0xD0, 0x6D, 0x5D, 0x14, 0x90, 137 | 0x16, 0x54, 0xA5, 0xC0, 0x7E, 0x1B, 0x7C, 0x29, 0x29, 0x25, 0x20, 0x94, 0x2B, 0x41, 0x3C, 0x1A, 0x50, 0x26, 0x11, 0xD6, 0x55, 0x64, 0x90, 0xC9, 138 | 0xC0, 0xDA, 0xD4, 0x0C, 0x12, 0x09, 0xC5, 0x24, 0x74, 0x7B, 0x3E, 0x64, 0x30, 0x04, 0x15, 0x5D, 0xF8, 0x09, 0x7C, 0x48, 0xCA, 0xA0, 0xA6, 0xC0, 139 | 0xB3, 0x22, 0x8A, 0x94, 0x91, 0x12, 0x45, 0x22, 0x65, 0x40, 0xF7, 0x0A, 0xC4, 0x93, 0x30, 0x06, 0x6A, 0xAE, 0x40, 0xB4, 0x8F, 0x51, 0x6C, 0x1D, 140 | 0x46, 0xC4, 0x19, 0x10, 0x65, 0x64, 0x52, 0xB9, 0x92, 0x8C, 0x0C, 0x72, 0x0A, 0xBC, 0xAC, 0x2E, 0x83, 0x8C, 0x78, 0x93, 0x4A, 0xA5, 0x40, 0x01, 141 | 0x38, 0x94, 0x2C, 0x04, 0xC9, 0x81, 0x4E, 0x39, 0x40, 0x1F, 0x12, 0xDD, 0x37, 0x08, 0x53, 0x2D, 0x30, 0x68, 0x32, 0x19, 0xE3, 0xE7, 0x0C, 0x89, 142 | 0x10, 0x15, 0xA9, 0x19, 0x5C, 0xE7, 0x70, 0x54, 0xB4, 0x00, 0xA3, 0xC2, 0x87, 0xCB, 0xC0, 0x82, 0x0A, 0x8C, 0x89, 0x2B, 0xA8, 0xCE, 0x61, 0x91, 143 | 0x55, 0x50, 0x93, 0xA9, 0xD8, 0x65, 0x86, 0x24, 0xB0, 0x0A, 0xAC, 0x06, 0x59, 0x46, 0x86, 0xB3, 0x4B, 0x4A, 0x4A, 0x46, 0x4A, 0x06, 0xFA, 0xBD, 144 | 0x4A, 0x4B, 0x53, 0x92, 0x33, 0xE0, 0xE3, 0xA1, 0xBE, 0xE4, 0x3A, 0xAA, 0x6B, 0x14, 0x34, 0x22, 0xAA, 0x49, 0x86, 0x30, 0x25, 0x03, 0xBB, 0x4C, 145 | 0x31, 0x83, 0x1C, 0x8A, 0x87, 0x17, 0xC3, 0x00, 0xC8, 0xA3, 0x86, 0x00, 0x3C, 0xB4, 0x91, 0xA2, 0xA2, 0x02, 0xFE, 0x01, 0xF8, 0x7B, 0xCF, 0x16, 146 | 0x99, 0xB4, 0x5A, 0x74, 0xF6, 0x87, 0xC0, 0xA4, 0x57, 0x2F, 0x0D, 0xF4, 0xC6, 0xB3, 0x0D, 0x50, 0x0E, 0xF4, 0xC3, 0xD1, 0xD4, 0x5A, 0x2D, 0x86, 147 | 0x73, 0xCA, 0xE5, 0x66, 0xAD, 0x96, 0x81, 0xFC, 0x0D, 0xAD, 0xB6, 0x21, 0x04, 0x97, 0x78, 0xA7, 0x53, 0x6D, 0x10, 0x11, 0xF0, 0x11, 0x5C, 0x5A, 148 | 0x73, 0x61, 0x12, 0x71, 0x4E, 0x68, 0x44, 0xEA, 0x9D, 0xCC, 0xA0, 0x82, 0xC2, 0x6C, 0xF6, 0xED, 0xC4, 0x90, 0x24, 0x81, 0x9C, 0xD7, 0xD6, 0x43, 149 | 0x13, 0x29, 0x95, 0xE8, 0xBF, 0x26, 0xA1, 0xAB, 0x44, 0x44, 0xD2, 0x41, 0xE5, 0x50, 0x8F, 0x40, 0xAB, 0x95, 0x76, 0x9F, 0x1E, 0x52, 0x02, 0x93, 150 | 0x77, 0x36, 0x1F, 0x50, 0x2A, 0x46, 0x6E, 0x5C, 0x3E, 0x59, 0x5B, 0xAB, 0xC4, 0x78, 0xBD, 0xB4, 0xF4, 0xCC, 0x99, 0x33, 0x75, 0x45, 0xA0, 0x19, 151 | 0x21, 0xCC, 0x29, 0x02, 0xDC, 0x21, 0x7D, 0x2F, 0x45, 0xB7, 0x67, 0x2C, 0x82, 0x9F, 0x31, 0x0A, 0x78, 0xB6, 0xA2, 0xA2, 0x06, 0xDD, 0xE8, 0xA5, 152 | 0x88, 0x14, 0x1D, 0x1D, 0x11, 0x47, 0x0E, 0x0F, 0x25, 0x21, 0x16, 0x8E, 0x0E, 0x0F, 0x88, 0x8B, 0x08, 0x45, 0x9C, 0x1D, 0x5E, 0x96, 0x59, 0x56, 153 | 0x48, 0x26, 0x67, 0x82, 0x8A, 0x0C, 0x08, 0x0D, 0x0A, 0x8D, 0xC3, 0xB8, 0x3C, 0x20, 0x3C, 0x74, 0x41, 0x44, 0x50, 0xD0, 0x02, 0x20, 0xF2, 0xE8, 154 | 0x42, 0x48, 0xEF, 0x20, 0xFD, 0x2B, 0x5B, 0x80, 0xFE, 0xE9, 0x4F, 0x40, 0x68, 0xC4, 0x1C, 0xA7, 0x36, 0x08, 0x0D, 0x42, 0xED, 0x0B, 0xC2, 0x43, 155 | 0x51, 0x7B, 0x66, 0x6A, 0x66, 0x19, 0x1A, 0xEC, 0xD5, 0x57, 0x5F, 0x8D, 0x40, 0xAA, 0x01, 0xE9, 0x80, 0x20, 0xD4, 0x3B, 0x3A, 0x2E, 0xDC, 0x79, 156 | 0x3B, 0xB9, 0xA2, 0xB2, 0x68, 0x6C, 0x60, 0x50, 0x01, 0xD0, 0x16, 0x1A, 0x1D, 0xBA, 0x20, 0x3A, 0x2E, 0x0E, 0xA0, 0xCC, 0x29, 0x2D, 0x2B, 0xCA, 157 | 0x4C, 0x21, 0xA7, 0xA4, 0x00, 0xAE, 0xF0, 0x61, 0xA1, 0x2A, 0x20, 0x3A, 0x3A, 0x1C, 0x04, 0x42, 0x14, 0x48, 0x80, 0x1B, 0x42, 0xD0, 0x05, 0xD8, 158 | 0xCD, 0xE8, 0xCF, 0x70, 0x99, 0x29, 0x39, 0xA0, 0x10, 0x0E, 0xD5, 0x5E, 0x46, 0x5A, 0x22, 0xE7, 0x40, 0xE9, 0x01, 0x4C, 0x0D, 0xBC, 0xF9, 0xE6, 159 | 0x06, 0x26, 0xBD, 0x38, 0x1F, 0xCD, 0x0F, 0xDE, 0xB8, 0x23, 0xA4, 0x23, 0x5D, 0x00, 0x22, 0xE2, 0x8E, 0xB0, 0xFE, 0xCD, 0x37, 0x36, 0xFC, 0xFC, 160 | 0xE7, 0x3F, 0x5F, 0xBD, 0x61, 0xA1, 0x6F, 0x31, 0x9A, 0x36, 0xA4, 0x04, 0x2D, 0xDA, 0x80, 0x7A, 0x67, 0x2D, 0x0C, 0x46, 0xAF, 0x7B, 0xEF, 0xBD, 161 | 0xD9, 0x5B, 0xE5, 0x06, 0x10, 0x54, 0xCA, 0x82, 0x60, 0xAD, 0xD3, 0x87, 0xD8, 0x00, 0x77, 0x35, 0x68, 0x75, 0x87, 0x41, 0xAA, 0xD4, 0x4A, 0x93, 162 | 0xFC, 0x71, 0xEE, 0x33, 0xBD, 0x5F, 0xE2, 0x3D, 0x1F, 0xF3, 0x7F, 0x2A, 0xFF, 0xDD, 0xF8, 0x57, 0x5B, 0x07, 0x31, 0xFC, 0xAB, 0x8D, 0x83, 0x18, 163 | 0xFE, 0xBB, 0x8C, 0x83, 0x18, 0xFE, 0x5B, 0x21, 0xF5, 0x3E, 0x5E, 0xAE, 0x43, 0xB7, 0x4A, 0xE8, 0xC5, 0xBC, 0xDD, 0x36, 0xF8, 0x61, 0x16, 0xE6, 164 | 0xAF, 0x61, 0xDE, 0xA8, 0xB2, 0x58, 0x4C, 0x66, 0xB3, 0x5E, 0xAF, 0x01, 0x6F, 0x50, 0xCA, 0x14, 0x3A, 0xAB, 0x6E, 0x50, 0xAA, 0x33, 0x18, 0x75, 165 | 0x83, 0x2A, 0x8B, 0x51, 0xA7, 0x52, 0xA9, 0x14, 0x62, 0x16, 0x85, 0x0B, 0x6C, 0x6F, 0xD0, 0x19, 0x94, 0xCC, 0x8A, 0x81, 0x27, 0x2A, 0x95, 0xCE, 166 | 0x68, 0x92, 0xD7, 0x71, 0x55, 0x2A, 0xAD, 0xCE, 0x68, 0x35, 0xC8, 0x9E, 0xB8, 0x88, 0xDE, 0x25, 0x13, 0xEE, 0x8C, 0xB8, 0x02, 0x6E, 0xA7, 0xD3, 167 | 0x5F, 0xEA, 0x37, 0xE9, 0xDA, 0x19, 0xF9, 0x69, 0x97, 0xFA, 0xCD, 0x46, 0x69, 0x7D, 0x79, 0xF9, 0x9D, 0x3B, 0x66, 0x2B, 0xD0, 0x7F, 0xFB, 0xC8, 168 | 0x88, 0xD9, 0xAA, 0x6A, 0xBF, 0x36, 0xB8, 0x39, 0xFF, 0x54, 0x79, 0xFE, 0x86, 0x2C, 0x68, 0x39, 0xD5, 0xDA, 0xDA, 0x7E, 0xAA, 0xBD, 0xBD, 0xBC, 169 | 0x1C, 0x09, 0xA7, 0xF6, 0xC1, 0x5E, 0xEC, 0x06, 0x3C, 0xE5, 0xBD, 0xBD, 0xA7, 0x40, 0x68, 0x6D, 0x78, 0xD3, 0xE9, 0x36, 0x6C, 0x68, 0x3D, 0x75, 170 | 0x38, 0x1F, 0x45, 0xE5, 0xAD, 0xBD, 0xBD, 0xED, 0xA7, 0xF2, 0xB3, 0xC0, 0xF2, 0xD1, 0x6F, 0xBF, 0x21, 0x2B, 0x6B, 0x7B, 0xD6, 0xF6, 0x34, 0x1A, 171 | 0x92, 0x73, 0x59, 0xDB, 0xF3, 0xEB, 0xC1, 0xE7, 0x1F, 0xCE, 0xCA, 0x6F, 0x67, 0xCA, 0x0D, 0xB6, 0x89, 0xB6, 0xBE, 0x49, 0x9E, 0xDA, 0x64, 0x1A, 172 | 0x6A, 0x48, 0xFF, 0x40, 0x6A, 0x30, 0x29, 0x05, 0x0D, 0x05, 0x44, 0x95, 0x51, 0xDB, 0xCD, 0xA4, 0x15, 0x24, 0x39, 0xCF, 0xE2, 0xB6, 0xD9, 0xC6, 173 | 0x5E, 0x38, 0xA3, 0xF5, 0xD5, 0x4D, 0x6D, 0x7D, 0x8F, 0x26, 0xC7, 0x89, 0xCB, 0x5F, 0x7B, 0xED, 0xB5, 0xCD, 0x6F, 0x6D, 0xB6, 0x39, 0xEC, 0x46, 174 | 0x9D, 0x94, 0x4D, 0x9B, 0x9E, 0xD6, 0x6A, 0x6D, 0x2A, 0x01, 0xA3, 0x87, 0x4D, 0x13, 0xD9, 0xAD, 0x83, 0xEC, 0xCD, 0x7B, 0x4F, 0x29, 0x6D, 0x76, 175 | 0x43, 0x3B, 0x8D, 0xC1, 0x12, 0xEB, 0xA4, 0xAF, 0xF9, 0xEE, 0x65, 0x40, 0x9E, 0xA0, 0xDB, 0xBA, 0x68, 0x2F, 0xA3, 0xBE, 0xA2, 0x4E, 0xB9, 0x35, 176 | 0xF8, 0xF0, 0x5E, 0x26, 0xBD, 0x94, 0x13, 0xFC, 0xE3, 0xE0, 0xDF, 0x60, 0xB3, 0x3B, 0xF1, 0xB7, 0x1A, 0x9C, 0xF8, 0x1B, 0x74, 0x18, 0xFE, 0xEB, 177 | 0x75, 0x5A, 0xC0, 0x58, 0x59, 0x53, 0xB2, 0x69, 0xBD, 0xC9, 0xA0, 0x13, 0x55, 0xB5, 0x54, 0x6D, 0xD2, 0xA9, 0x75, 0x2D, 0xE0, 0xB7, 0xE9, 0x74, 178 | 0xF2, 0xAA, 0x92, 0xC6, 0x92, 0xCA, 0x25, 0x8B, 0x96, 0xAC, 0x58, 0xB1, 0x1E, 0x63, 0xED, 0x15, 0x2B, 0x10, 0x75, 0xEF, 0xD8, 0xB1, 0x67, 0x1B, 179 | 0xF0, 0x71, 0x55, 0x4B, 0x09, 0x70, 0x7D, 0x65, 0xE5, 0x36, 0xE0, 0x60, 0x74, 0xA0, 0x0F, 0x91, 0xE9, 0xB1, 0xAE, 0xAE, 0x16, 0x44, 0xCD, 0xC7, 180 | 0xFA, 0x9F, 0xF4, 0x57, 0x22, 0xEE, 0xAE, 0xBC, 0x78, 0x2C, 0x7B, 0x13, 0x10, 0x3D, 0x90, 0x73, 0x15, 0xA2, 0x63, 0xF0, 0xC7, 0xF6, 0x38, 0xE9, 181 | 0x1D, 0x51, 0x37, 0x62, 0x6F, 0x8C, 0xEF, 0xA1, 0xE0, 0x64, 0x7D, 0xE4, 0xFF, 0x98, 0xFF, 0x3B, 0x09, 0xFE, 0x98, 0xEB, 0x59, 0x79, 0xEC, 0xD8, 182 | 0x31, 0x17, 0xE7, 0x37, 0xBE, 0xF4, 0x9F, 0xA0, 0x7F, 0x0D, 0x50, 0x89, 0xA8, 0x7E, 0xDB, 0x4B, 0x31, 0xF0, 0x52, 0x15, 0x60, 0x0D, 0xD0, 0xD3, 183 | 0x39, 0xAE, 0x4B, 0x47, 0x60, 0xEF, 0xF8, 0x27, 0x0F, 0x43, 0x36, 0x56, 0x56, 0x1D, 0x51, 0x1A, 0x8D, 0x56, 0xDB, 0xB1, 0xCA, 0xAA, 0x16, 0xA9, 184 | 0x4E, 0x67, 0xAC, 0x6C, 0x6C, 0x69, 0x69, 0x81, 0x9A, 0x46, 0x34, 0xB9, 0xD0, 0x6D, 0xD4, 0xD9, 0x1D, 0x0E, 0x3B, 0xE2, 0x7A, 0xE8, 0x83, 0x4E, 185 | 0xEC, 0xB7, 0x1B, 0x31, 0xB3, 0xDA, 0x8C, 0x06, 0x70, 0x3A, 0xA3, 0x11, 0x93, 0x0D, 0x66, 0xD0, 0x83, 0xD0, 0x67, 0x72, 0x42, 0x6F, 0xC6, 0xE6, 186 | 0x3B, 0xEC, 0x66, 0xBD, 0x11, 0x1D, 0xA4, 0x80, 0xC0, 0x32, 0xA5, 0xFA, 0xEA, 0xD3, 0x4F, 0xDF, 0xF2, 0x05, 0x25, 0x6D, 0xBA, 0xF7, 0xE9, 0xDA, 187 | 0x45, 0xFA, 0x29, 0xFB, 0xD4, 0xD4, 0xC3, 0x15, 0xC1, 0x4F, 0xB0, 0xE0, 0x47, 0xC2, 0x3F, 0x20, 0x2A, 0x0A, 0xC3, 0x7F, 0x4E, 0x58, 0x20, 0x86, 188 | 0xFF, 0x4C, 0x3F, 0x3F, 0x0C, 0x7F, 0xF0, 0xE1, 0x91, 0xB0, 0xFB, 0x83, 0x7D, 0x74, 0x60, 0x38, 0x30, 0x3F, 0x30, 0x5E, 0x60, 0x60, 0x18, 0xA2, 189 | 0xBD, 0x28, 0xBF, 0x40, 0x74, 0xC7, 0x5C, 0xA8, 0x4B, 0x46, 0x94, 0x99, 0x03, 0xFB, 0xC5, 0x8C, 0x0C, 0x12, 0x99, 0x9A, 0x11, 0x85, 0x2C, 0x2E, 190 | 0x2E, 0x2E, 0x2A, 0x3C, 0x2C, 0x2C, 0x2C, 0x34, 0x2C, 0x0C, 0x28, 0x2F, 0x25, 0x25, 0x27, 0x23, 0x85, 0x42, 0x4E, 0x29, 0xAD, 0x85, 0x64, 0x2E, 191 | 0x2E, 0x2A, 0x2A, 0xA7, 0x34, 0x25, 0x27, 0x3E, 0x2C, 0x3C, 0x32, 0x3C, 0x2A, 0x27, 0x27, 0x19, 0x8D, 0x0E, 0x5A, 0x82, 0x94, 0x83, 0xC8, 0x80, 192 | 0x94, 0x03, 0xA9, 0x18, 0x09, 0x49, 0x0B, 0xD0, 0x17, 0x68, 0x84, 0x28, 0x44, 0xC8, 0xC0, 0xCC, 0x54, 0x72, 0x6D, 0x6D, 0x05, 0x9A, 0x71, 0xC8, 193 | 0x38, 0x03, 0xEC, 0x49, 0xA6, 0x40, 0x02, 0x4E, 0xA1, 0x50, 0xC8, 0xE4, 0x04, 0xD8, 0xE5, 0x27, 0xC3, 0xC7, 0x4A, 0x4E, 0xA1, 0x64, 0x50, 0x48, 194 | 0x48, 0x33, 0x50, 0x80, 0x4D, 0xE3, 0xA3, 0x48, 0xF1, 0xA8, 0x09, 0xDE, 0x0B, 0x3E, 0x3D, 0x09, 0xB1, 0x35, 0x99, 0x84, 0x3E, 0x3E, 0x7C, 0x44, 195 | 0x74, 0x3B, 0x5F, 0x64, 0x61, 0xD8, 0x0D, 0x7F, 0x23, 0xC3, 0xE2, 0x49, 0xF1, 0xE8, 0x6B, 0x91, 0xD0, 0x7D, 0xFD, 0x91, 0x39, 0xEF, 0xFC, 0x17, 196 | 0x1E, 0x15, 0x1A, 0x16, 0x88, 0xDD, 0x0C, 0x30, 0x05, 0x63, 0x79, 0x52, 0x14, 0xF6, 0x55, 0x93, 0x31, 0x1F, 0x8E, 0xBA, 0xA1, 0xBF, 0x30, 0xF4, 197 | 0x03, 0xC0, 0xD7, 0x29, 0x05, 0xE6, 0xC6, 0x86, 0x07, 0x65, 0x10, 0x19, 0x45, 0x61, 0x37, 0xF4, 0x08, 0x98, 0xF1, 0x4C, 0x48, 0x5A, 0x86, 0x86, 198 | 0xDA, 0x92, 0x93, 0xE1, 0xBB, 0x24, 0x43, 0x07, 0x2E, 0xBF, 0x2E, 0x19, 0x06, 0x10, 0x4C, 0x4C, 0x28, 0x29, 0x19, 0xA4, 0xB0, 0xA6, 0xA6, 0xBE, 199 | 0x1E, 0x36, 0x23, 0x32, 0x10, 0xEA, 0x60, 0xA4, 0x05, 0xBE, 0x51, 0xD8, 0x58, 0x73, 0x16, 0x2D, 0x5D, 0x8A, 0xCE, 0xA4, 0x98, 0x19, 0xEC, 0x17, 200 | 0xE8, 0x37, 0xCF, 0xCF, 0xCF, 0xFD, 0x1F, 0x80, 0x7F, 0xA0, 0x5B, 0x92, 0xDA, 0x80, 0xEE, 0xE7, 0xE8, 0xBE, 0x5E, 0x89, 0xD6, 0x83, 0xA5, 0x1E, 201 | 0xC1, 0x22, 0xCC, 0x7B, 0x7B, 0xF2, 0xB4, 0x06, 0x18, 0x97, 0xE8, 0x19, 0xCC, 0x93, 0x6A, 0x0D, 0xF2, 0x24, 0xCF, 0x45, 0x22, 0xA9, 0x5E, 0x0B, 202 | 0x42, 0x10, 0xCF, 0x93, 0x6B, 0x0D, 0x06, 0x58, 0x21, 0xCA, 0x06, 0xD4, 0x4A, 0xB9, 0x54, 0x0A, 0x99, 0x3A, 0xA8, 0x0F, 0xC5, 0xC8, 0x9D, 0xCB, 203 | 0x27, 0x65, 0x92, 0x81, 0x1B, 0x97, 0x9B, 0x6B, 0x6B, 0x3B, 0x2F, 0x9F, 0xC4, 0xCE, 0x7C, 0xE9, 0x6C, 0x46, 0xEC, 0x5E, 0x9A, 0x83, 0x5D, 0xA9, 204 | 0x01, 0x94, 0x8E, 0x1D, 0x15, 0x03, 0x30, 0x9D, 0x78, 0x92, 0xA2, 0x30, 0x07, 0x5C, 0xEE, 0xFC, 0x1D, 0xA3, 0xC3, 0x31, 0x0F, 0x45, 0x2C, 0x9D, 205 | 0x0F, 0x87, 0x0A, 0x60, 0xF9, 0x50, 0x60, 0x5A, 0x08, 0x21, 0x67, 0x8F, 0xCB, 0xC4, 0xF2, 0xFC, 0xF0, 0x50, 0x44, 0xFA, 0x73, 0x90, 0xA1, 0x42, 206 | 0x74, 0x34, 0xCA, 0xCA, 0xC3, 0xE1, 0x45, 0xA1, 0x2E, 0x56, 0x86, 0x46, 0xAF, 0xD0, 0x50, 0xAF, 0x99, 0x33, 0xBD, 0x40, 0x02, 0xA0, 0x0C, 0x3F, 207 | 0x9C, 0x1C, 0x3E, 0x07, 0xE9, 0x00, 0xB4, 0xC4, 0xCA, 0xD8, 0xAB, 0x67, 0x62, 0x7E, 0x01, 0x9A, 0x13, 0x40, 0x6A, 0x00, 0x2A, 0xBC, 0xB0, 0xC4, 208 | 0x3F, 0x20, 0x26, 0x02, 0x35, 0x7B, 0x05, 0xA4, 0x46, 0x04, 0xA0, 0xD9, 0x04, 0x78, 0x37, 0xAF, 0xD0, 0xF0, 0x39, 0xCE, 0x89, 0x03, 0xF4, 0x41, 209 | 0xD0, 0xFB, 0x87, 0x92, 0xC2, 0xD1, 0x7C, 0x01, 0xFA, 0x90, 0x40, 0xF4, 0xE8, 0x78, 0x01, 0x0A, 0xA2, 0xE3, 0x42, 0x03, 0x02, 0xA2, 0x49, 0xE1, 210 | 0x31, 0x99, 0xA1, 0x0B, 0x40, 0x80, 0x90, 0xE0, 0xF3, 0x23, 0xA6, 0x2F, 0x45, 0xF3, 0x08, 0xF0, 0xCD, 0x72, 0x9C, 0xF3, 0x08, 0x24, 0xF4, 0x51, 211 | 0x51, 0x55, 0x74, 0xE9, 0x81, 0x03, 0xB5, 0x97, 0x6F, 0x0C, 0xF0, 0xA1, 0x4B, 0xE9, 0x01, 0x20, 0xFD, 0x14, 0x34, 0x09, 0x75, 0xA0, 0xB6, 0x16, 212 | 0x7B, 0x15, 0x54, 0xD6, 0x6F, 0x7F, 0xE3, 0x67, 0x6F, 0xBC, 0x81, 0x2F, 0xB8, 0x33, 0xC0, 0x4D, 0xFB, 0xF9, 0x5C, 0x1C, 0x0F, 0x64, 0xC1, 0xC8, 213 | 0x40, 0x02, 0x5E, 0x8D, 0xBD, 0x2E, 0x73, 0x91, 0xCD, 0xA1, 0x96, 0x2B, 0xB5, 0x02, 0xA2, 0xAF, 0x43, 0x29, 0x57, 0x83, 0xF7, 0xC4, 0x3C, 0x83, 214 | 0x80, 0xB7, 0xA1, 0x7F, 0x43, 0x59, 0x10, 0x82, 0x7B, 0x89, 0xBB, 0xBB, 0x0B, 0x6F, 0x37, 0x8F, 0xBF, 0xF4, 0x7F, 0x17, 0xFE, 0x2B, 0x55, 0x83, 215 | 0x18, 0xFE, 0xC1, 0xAA, 0x41, 0x0C, 0xFF, 0xD9, 0x2A, 0x9D, 0x13, 0xFF, 0x36, 0xFB, 0x59, 0xE0, 0x79, 0xD5, 0xA0, 0xCA, 0x78, 0xF6, 0xF8, 0xD9, 216 | 0x41, 0xA3, 0xCD, 0x6E, 0x7B, 0xA8, 0x83, 0xFD, 0x9C, 0xCD, 0x64, 0x40, 0x27, 0x7B, 0x02, 0x4B, 0xC8, 0x21, 0xC1, 0x05, 0x96, 0x1F, 0x1A, 0x02, 217 | 0xB6, 0x97, 0xA3, 0x35, 0x5E, 0xA7, 0xEE, 0x3D, 0xD5, 0xD3, 0xC3, 0x48, 0x93, 0x76, 0x1C, 0x3E, 0xC5, 0x4E, 0xCB, 0xA3, 0x0F, 0x0D, 0x8D, 0x8F, 218 | 0x4F, 0x18, 0xAD, 0xD6, 0x1E, 0x81, 0x48, 0x3E, 0x3E, 0xA1, 0x7B, 0x98, 0x46, 0xE3, 0xF1, 0x7A, 0x55, 0x3A, 0x15, 0x3A, 0x2D, 0x8F, 0xD6, 0xC0, 219 | 0x93, 0x1A, 0xC4, 0x67, 0x06, 0x10, 0xCF, 0x5B, 0x6D, 0xDA, 0xEE, 0xCE, 0x91, 0x07, 0x23, 0x2A, 0xA3, 0xCD, 0xAA, 0x91, 0x0C, 0x8C, 0x5C, 0xEB, 220 | 0xD5, 0x59, 0x6D, 0x26, 0xCD, 0x00, 0xF0, 0xBC, 0x4D, 0x75, 0xF6, 0xEC, 0xE0, 0xC8, 0x03, 0xE0, 0xFB, 0xB3, 0xC7, 0x07, 0x11, 0xEF, 0x0F, 0x9E, 221 | 0x3A, 0x3E, 0x78, 0xE7, 0xC1, 0x94, 0x51, 0xDA, 0x5A, 0x8F, 0x0E, 0x0A, 0x03, 0x91, 0xB7, 0x9E, 0x1A, 0x7C, 0x69, 0xE8, 0x66, 0x72, 0xBD, 0xC8, 222 | 0xB7, 0x63, 0x91, 0xF3, 0xE6, 0x3C, 0x50, 0x68, 0x6F, 0xAD, 0x2F, 0x2E, 0xAE, 0x67, 0x61, 0x5D, 0x20, 0x76, 0x76, 0x1A, 0x1C, 0x3C, 0x8C, 0xE4, 223 | 0x42, 0x7E, 0x79, 0x7B, 0x6B, 0x07, 0x88, 0x8A, 0xF6, 0xDE, 0x41, 0x16, 0x8B, 0x85, 0x0E, 0x39, 0xEB, 0x7A, 0x3B, 0x3A, 0xF8, 0x7C, 0xB1, 0xDA, 224 | 0xFA, 0xD0, 0xD0, 0x5D, 0x83, 0xAE, 0x64, 0xD1, 0x69, 0x4E, 0x97, 0x65, 0x26, 0xC6, 0xC5, 0x98, 0x64, 0x35, 0x45, 0x14, 0x72, 0x5C, 0x84, 0x49, 225 | 0x08, 0x09, 0x4C, 0xFC, 0xBA, 0xC8, 0x24, 0xE7, 0x7F, 0xA5, 0xCB, 0x5F, 0x27, 0xD0, 0xEE, 0xCD, 0x2A, 0x2F, 0x3F, 0x9E, 0xEB, 0xB0, 0x9D, 0xCA, 226 | 0xDA, 0x5B, 0x7E, 0x9C, 0xED, 0xE8, 0x05, 0x69, 0x51, 0x7E, 0xBC, 0x5D, 0x85, 0x98, 0xC1, 0xAA, 0x1A, 0x84, 0x9F, 0xCD, 0x0A, 0x84, 0x3F, 0x08, 227 | 0x82, 0x00, 0x42, 0x6D, 0xBB, 0xCE, 0xA1, 0x53, 0xD9, 0xED, 0xBA, 0x8E, 0xD6, 0x56, 0x7A, 0x4E, 0x99, 0x6F, 0x81, 0xF4, 0x30, 0x83, 0x4E, 0x2D, 228 | 0xC4, 0xF3, 0x78, 0x7B, 0xF3, 0xF3, 0x32, 0x12, 0xF1, 0xEA, 0xF6, 0xBD, 0xF9, 0x69, 0xE4, 0x90, 0x1F, 0x0B, 0x7F, 0xAD, 0xCE, 0xB9, 0xFD, 0x2B, 229 | 0x75, 0xCE, 0xED, 0x5F, 0xE4, 0xC2, 0xBF, 0x41, 0xA7, 0xD3, 0x49, 0x6B, 0xAA, 0x3E, 0xF9, 0xA4, 0x4B, 0xA7, 0x53, 0xF3, 0x5A, 0x1A, 0x4B, 0x5A, 230 | 0xA0, 0x42, 0xC9, 0x2B, 0x01, 0xAF, 0xD5, 0xE9, 0x44, 0xFB, 0xF7, 0x7F, 0x39, 0xDA, 0x82, 0x32, 0xEE, 0x92, 0xCA, 0x9E, 0x0F, 0x4A, 0x2A, 0x4B, 231 | 0xB6, 0x55, 0x6E, 0x6B, 0x39, 0xB2, 0xFF, 0x13, 0x60, 0xCE, 0x92, 0x4F, 0x3E, 0x00, 0x75, 0x80, 0x98, 0xFB, 0x4F, 0x7C, 0xBA, 0x0D, 0x31, 0x7E, 232 | 0x65, 0xE3, 0x97, 0xD0, 0xBD, 0xA4, 0xB2, 0x12, 0xFD, 0x5F, 0x9E, 0x4F, 0x3E, 0x39, 0x06, 0x1C, 0xEB, 0x62, 0x5F, 0xD4, 0xC7, 0xC5, 0xBB, 0xF0, 233 | 0x68, 0xAC, 0xC4, 0x5E, 0x80, 0xEA, 0x8E, 0x55, 0xFE, 0xE9, 0x89, 0xC9, 0x86, 0x3F, 0x75, 0x75, 0xB2, 0x39, 0x0C, 0x85, 0x5E, 0x02, 0x7C, 0x5F, 234 | 0x52, 0xE5, 0xAC, 0xDA, 0x53, 0x85, 0xF4, 0x00, 0x12, 0x02, 0x48, 0x01, 0x6C, 0xDB, 0xD3, 0xF8, 0x49, 0x55, 0xD7, 0x27, 0xB7, 0xD0, 0xE4, 0x40, 235 | 0x4B, 0x49, 0x49, 0x17, 0x0C, 0xBC, 0xAD, 0x71, 0x1B, 0x36, 0x85, 0xE0, 0x7C, 0x0F, 0xE8, 0xB5, 0x63, 0x47, 0x49, 0x65, 0x0D, 0xFA, 0x87, 0x81, 236 | 0xF0, 0x7D, 0x94, 0xE8, 0x60, 0x03, 0xF8, 0xAE, 0x96, 0x96, 0xC6, 0x46, 0xF8, 0xAE, 0x5D, 0x2D, 0x5A, 0xA3, 0xD3, 0x4B, 0x0D, 0x50, 0xD9, 0xD8, 237 | 0x58, 0x25, 0xD0, 0x95, 0xDC, 0xBE, 0x55, 0x55, 0xC5, 0x51, 0x6A, 0x0D, 0x46, 0xF4, 0x30, 0xC2, 0xCF, 0x62, 0x40, 0x0F, 0x83, 0xEE, 0xAF, 0xCC, 238 | 0x08, 0xAD, 0x56, 0xBB, 0xC3, 0xE6, 0x6C, 0x36, 0xD9, 0xFE, 0xBA, 0x7D, 0xCA, 0xFC, 0x64, 0xCA, 0xAE, 0x5F, 0x54, 0x60, 0xB7, 0x41, 0xA0, 0xF6, 239 | 0xE4, 0x59, 0x1C, 0x53, 0x66, 0xB3, 0x00, 0xAF, 0x56, 0xEA, 0xED, 0xB6, 0x27, 0x05, 0x3F, 0x12, 0xFE, 0xEE, 0xF3, 0xE7, 0x63, 0xF8, 0xBB, 0x79, 240 | 0x7B, 0x63, 0xF8, 0xE3, 0xBC, 0xBC, 0x9D, 0xF8, 0xCF, 0x9C, 0xEF, 0x37, 0x7F, 0xFE, 0x7C, 0x3F, 0x60, 0xC2, 0xF9, 0xC8, 0x03, 0x29, 0xA1, 0xA5, 241 | 0xDF, 0x02, 0x3F, 0x64, 0xF3, 0xD1, 0x5F, 0x54, 0x58, 0xC0, 0xD2, 0xC0, 0xD0, 0xB0, 0x50, 0xD0, 0x05, 0x61, 0x88, 0xF2, 0x03, 0x40, 0x17, 0x84, 242 | 0x05, 0x06, 0x06, 0xF8, 0xC1, 0x8B, 0x02, 0x03, 0x83, 0xD0, 0x4B, 0xC3, 0xC2, 0x61, 0x47, 0xE7, 0x6C, 0x89, 0x8A, 0x0A, 0x0C, 0x08, 0xF4, 0x0B, 243 | 0x08, 0x0C, 0x0D, 0x84, 0xD7, 0x07, 0x20, 0xA6, 0x43, 0x44, 0x1C, 0x1E, 0x16, 0x45, 0x02, 0xBA, 0x0D, 0x47, 0xCC, 0xEA, 0x1C, 0x05, 0x0C, 0xF4, 244 | 0x01, 0x8A, 0x32, 0xC8, 0x14, 0x72, 0x02, 0x25, 0x81, 0x1C, 0x9F, 0x40, 0xC6, 0x08, 0x3F, 0x1C, 0x1C, 0x3A, 0xAE, 0x17, 0xB6, 0x0E, 0x55, 0x27, 245 | 0xAC, 0x03, 0x9A, 0x4F, 0x58, 0x07, 0x3C, 0x0E, 0x55, 0xEB, 0xD6, 0x2D, 0x0F, 0x5B, 0x8C, 0xDC, 0xBA, 0xE5, 0xCB, 0xFD, 0x90, 0x03, 0xBF, 0xD8, 246 | 0xCF, 0x0F, 0x5D, 0x83, 0x1F, 0x18, 0x06, 0x9F, 0x15, 0x62, 0xBF, 0xC0, 0xC5, 0xF3, 0xFD, 0x16, 0xFB, 0x05, 0x41, 0x19, 0x82, 0x40, 0x64, 0x61, 247 | 0x81, 0x7F, 0xBC, 0xE7, 0x7F, 0xD8, 0xD2, 0x30, 0x60, 0x5F, 0x54, 0xB9, 0x74, 0x1D, 0x7C, 0x7A, 0x88, 0xC2, 0x1A, 0xE0, 0xE3, 0x45, 0xA5, 0x36, 248 | 0xB0, 0x1B, 0x02, 0xC3, 0x12, 0x72, 0x7B, 0xFA, 0xCE, 0x37, 0x15, 0x34, 0xF4, 0x0C, 0xF5, 0xFD, 0x66, 0xE7, 0x96, 0xA1, 0xA1, 0xBE, 0xF3, 0x07, 249 | 0x77, 0x6E, 0x59, 0xD3, 0x06, 0x01, 0x54, 0xEF, 0x6C, 0x6A, 0xFA, 0x0D, 0x14, 0xB7, 0xAC, 0xD9, 0x82, 0xEE, 0x3E, 0xBD, 0x65, 0xE7, 0xCE, 0x15, 250 | 0x2B, 0xD6, 0xAC, 0xDD, 0x79, 0xF0, 0xE0, 0xC1, 0x2D, 0x07, 0xDB, 0xCE, 0x37, 0xAD, 0x0B, 0xF4, 0x03, 0xDF, 0x94, 0x0E, 0x23, 0xEF, 0x6C, 0x3A, 251 | 0x5F, 0x1D, 0x01, 0x6F, 0xD0, 0xD4, 0xD7, 0x96, 0x04, 0x0C, 0xEF, 0x7A, 0xB8, 0x15, 0x04, 0x62, 0xBF, 0x28, 0x8E, 0xB7, 0x14, 0x05, 0xDE, 0x78, 252 | 0x35, 0xAA, 0x9D, 0x3F, 0xF3, 0x1F, 0x82, 0xBF, 0x37, 0x08, 0x3D, 0x83, 0x73, 0x45, 0x50, 0x22, 0xBF, 0xD4, 0x63, 0xA5, 0x14, 0xF3, 0x5E, 0xBE, 253 | 0x3C, 0x83, 0x41, 0x6B, 0x12, 0x10, 0xF0, 0x89, 0xCD, 0x06, 0x83, 0x45, 0x49, 0xF4, 0x7C, 0xB5, 0xD6, 0x64, 0x32, 0x1B, 0x0A, 0x7C, 0xDD, 0x73, 254 | 0x2C, 0x16, 0x8B, 0x8D, 0x1D, 0x82, 0x8B, 0x3E, 0xE9, 0xA4, 0xF7, 0x1C, 0xCC, 0x61, 0x0C, 0x9F, 0x83, 0x26, 0xE6, 0x49, 0xCE, 0x25, 0x29, 0xDA, 255 | 0xE5, 0x5E, 0xF2, 0x3B, 0x58, 0x14, 0x62, 0xF0, 0x50, 0xE7, 0x12, 0xE5, 0xD1, 0xD1, 0xA1, 0x88, 0xB8, 0x11, 0x7D, 0x03, 0xA1, 0x86, 0x06, 0x84, 256 | 0xA7, 0xA0, 0x14, 0x7B, 0x41, 0x34, 0xC9, 0x39, 0x7F, 0x0F, 0xDC, 0x8F, 0x59, 0x40, 0x5C, 0x5D, 0x26, 0x7A, 0xF5, 0x82, 0x80, 0x08, 0x44, 0xE0, 257 | 0x73, 0x9C, 0x8B, 0x39, 0x48, 0x23, 0x84, 0xA2, 0x8C, 0x9C, 0x94, 0x03, 0x83, 0xA3, 0x3E, 0x18, 0x4D, 0x87, 0x06, 0x44, 0xCF, 0x71, 0x1A, 0x9A, 258 | 0xFF, 0x47, 0x53, 0xF5, 0xCE, 0x09, 0x01, 0x27, 0x89, 0x43, 0x66, 0xEF, 0x6A, 0x0E, 0x8D, 0x76, 0xCD, 0xFD, 0x3B, 0x27, 0xFF, 0xB1, 0x73, 0x02, 259 | 0x5C, 0xAF, 0xFB, 0xE3, 0xEB, 0xE7, 0x44, 0x87, 0x3B, 0x8F, 0x1F, 0x60, 0x12, 0x04, 0x93, 0x05, 0xD1, 0xD8, 0x31, 0x84, 0x05, 0x0B, 0xE0, 0xE3, 260 | 0xA0, 0x39, 0x04, 0xF8, 0x74, 0xE8, 0xAB, 0x20, 0x46, 0x0F, 0x5F, 0xF0, 0x47, 0x73, 0x1E, 0x4D, 0x40, 0x44, 0x8F, 0x4D, 0x55, 0xC0, 0xB7, 0x47, 261 | 0x12, 0x00, 0xC4, 0x01, 0x7C, 0x41, 0xA4, 0x4A, 0x60, 0x3C, 0x12, 0xA8, 0x09, 0x20, 0x7A, 0xC4, 0xF4, 0x2F, 0x3D, 0x52, 0x05, 0x20, 0x77, 0x49, 262 | 0x2E, 0x79, 0x10, 0x8D, 0x89, 0x81, 0x57, 0xB7, 0x3A, 0xB0, 0x5F, 0xD7, 0xB3, 0xC1, 0x81, 0xF5, 0xC5, 0x2B, 0x1D, 0xA8, 0x77, 0x68, 0x30, 0xBA, 263 | 0x93, 0x82, 0x5A, 0x2B, 0x4F, 0xF7, 0xC7, 0x19, 0xFE, 0x27, 0x7B, 0xDF, 0x02, 0xD0, 0xD4, 0x91, 0xEE, 0x7F, 0x92, 0x43, 0x1E, 0x24, 0xA1, 0xB1, 264 | 0x21, 0x4D, 0x14, 0x02, 0xA4, 0x52, 0x50, 0x2A, 0xA4, 0xC8, 0xDD, 0x8A, 0x8B, 0x41, 0xE9, 0x52, 0x17, 0xB7, 0xC0, 0x22, 0xBD, 0x54, 0x2B, 0xC1, 265 | 0x2E, 0xED, 0xCA, 0x8D, 0xCA, 0xD6, 0xD5, 0x50, 0x85, 0x56, 0xB1, 0xB5, 0x8D, 0x25, 0x55, 0x59, 0x44, 0xDD, 0x8A, 0x5C, 0x89, 0x5B, 0x5B, 0x0C, 266 | 0x2A, 0x8A, 0xAD, 0xA1, 0xBB, 0x5A, 0xCB, 0xC3, 0x57, 0x77, 0xA5, 0xF5, 0xB1, 0xE0, 0x93, 0x5E, 0x40, 0x70, 0xE3, 0x03, 0x17, 0xA1, 0x11, 0x50, 267 | 0x5E, 0xF9, 0x7F, 0xDF, 0xCC, 0x89, 0x5A, 0x5B, 0xF7, 0x71, 0xD7, 0x7F, 0x6F, 0x77, 0xD7, 0x01, 0xCE, 0x37, 0x67, 0xE6, 0x9C, 0x84, 0xFC, 0x7E, 268 | 0x27, 0xF3, 0xFB, 0xBE, 0x39, 0x73, 0x66, 0x1A, 0xC1, 0x23, 0x4F, 0x90, 0x33, 0xCD, 0xD0, 0xE4, 0x58, 0xF5, 0x2C, 0xAF, 0x19, 0x7C, 0xF7, 0xBC, 269 | 0x20, 0x86, 0xCF, 0x47, 0x9E, 0xF1, 0xCB, 0x2D, 0xA0, 0xFD, 0x3E, 0x7C, 0xEE, 0xBE, 0x0F, 0xB8, 0x81, 0xDC, 0xFD, 0x9F, 0xBF, 0x85, 0x7F, 0xE3, 270 | 0x65, 0xCA, 0xBF, 0xB6, 0x8E, 0xF2, 0x2F, 0xCA, 0xE3, 0xF8, 0x4F, 0xB8, 0x7C, 0xD9, 0xD1, 0xDC, 0x58, 0x07, 0x6A, 0x88, 0x4F, 0x3D, 0x80, 0x58, 271 | 0xE5, 0x14, 0xE2, 0xFD, 0xCE, 0xD5, 0x85, 0xE4, 0xF9, 0xB8, 0x9C, 0xBC, 0xBC, 0xDD, 0xB9, 0xB9, 0xAB, 0xE7, 0x80, 0x9A, 0xAE, 0x7E, 0x69, 0xC5, 272 | 0x9C, 0x1C, 0x10, 0xD5, 0xB9, 0x73, 0xF3, 0x40, 0xD8, 0x73, 0xF2, 0x52, 0x17, 0xCE, 0x5E, 0xBD, 0x7B, 0x4B, 0x61, 0xDE, 0xEE, 0x8D, 0x3B, 0x73, 273 | 0x96, 0x2D, 0x5B, 0xB6, 0x19, 0xA4, 0x76, 0x3B, 0x54, 0x57, 0xE7, 0x15, 0x6E, 0xC9, 0x05, 0x99, 0x3D, 0x9E, 0x07, 0x81, 0xEF, 0xAA, 0x9C, 0x9C, 274 | 0xD5, 0xB5, 0xEB, 0x6B, 0x2F, 0x43, 0xB8, 0xE4, 0xAC, 0x2B, 0x59, 0x58, 0xDD, 0x04, 0xB9, 0xE3, 0xBB, 0xE1, 0xD5, 0x8E, 0x37, 0x36, 0x6D, 0xD9, 275 | 0x32, 0x67, 0xD9, 0x96, 0x2D, 0xBB, 0x77, 0x43, 0xC4, 0x04, 0x1A, 0xB9, 0xF3, 0x78, 0xFF, 0x4D, 0x67, 0xDD, 0x16, 0xB0, 0x4D, 0x97, 0x9B, 0x77, 276 | 0xE7, 0x59, 0x77, 0xD6, 0xD6, 0x7F, 0xE5, 0x6C, 0xDA, 0x52, 0x08, 0xAF, 0x54, 0x4B, 0x74, 0x7B, 0xD7, 0xF1, 0x5D, 0x5B, 0x20, 0xFE, 0xDF, 0xB2, 277 | 0x0B, 0xC2, 0x7E, 0x9C, 0x92, 0x06, 0xA3, 0x7B, 0x74, 0x00, 0xB6, 0xD4, 0xD2, 0x74, 0x1C, 0x8F, 0xC1, 0x0C, 0x1E, 0x85, 0x09, 0x0E, 0xC3, 0x0E, 278 | 0x83, 0x5D, 0xC4, 0x09, 0x68, 0x74, 0xF4, 0xE3, 0x31, 0xF0, 0xFE, 0x43, 0xE4, 0x60, 0xF0, 0x71, 0xF0, 0x45, 0x6B, 0x9B, 0xBE, 0x1A, 0xEA, 0x28, 279 | 0x9D, 0x37, 0x13, 0x74, 0x7E, 0xC2, 0xD5, 0x82, 0x79, 0x33, 0xB1, 0x4D, 0xB9, 0x5A, 0x30, 0xD3, 0x6D, 0xA1, 0xA9, 0x99, 0x18, 0xB1, 0xAC, 0xF4, 280 | 0xD9, 0x27, 0x40, 0xF7, 0x73, 0x9F, 0xFD, 0xD1, 0x13, 0x4F, 0xCC, 0x05, 0xFB, 0xD4, 0x0F, 0x9F, 0xF8, 0x61, 0x6E, 0xEE, 0x4B, 0x73, 0x9F, 0x7A, 281 | 0xF6, 0x87, 0x3F, 0xCA, 0x05, 0x0F, 0x60, 0xFB, 0xCE, 0x3D, 0xCB, 0xB6, 0xB8, 0x86, 0x9C, 0xEB, 0x97, 0xCD, 0xFA, 0xE1, 0xC6, 0x21, 0xD7, 0xCD, 282 | 0xDC, 0x39, 0xCF, 0xFE, 0x70, 0xE3, 0x4D, 0xD7, 0x8D, 0x97, 0xE6, 0x3C, 0xFB, 0xEC, 0x16, 0xE7, 0xD0, 0xD5, 0xBA, 0xD5, 0x73, 0x53, 0xE3, 0xE4, 283 | 0xF1, 0xAE, 0xA6, 0x2D, 0x60, 0x59, 0x8B, 0xCB, 0x71, 0xBC, 0x64, 0x6E, 0x18, 0xF0, 0x7F, 0xEC, 0xF8, 0xF1, 0xDD, 0x81, 0xDF, 0x19, 0xFF, 0x06, 284 | 0x8E, 0x7F, 0xDD, 0x65, 0xCA, 0xBF, 0xA4, 0x8E, 0xE3, 0x1F, 0x1D, 0x80, 0xCB, 0x27, 0xCA, 0xCB, 0xCB, 0xD1, 0xD6, 0x9F, 0x3D, 0x48, 0x6C, 0x9D, 285 | 0x7B, 0x7F, 0x53, 0x7E, 0x45, 0xB9, 0xD9, 0x94, 0xBD, 0xE6, 0x83, 0x5F, 0x7E, 0x70, 0xB0, 0xEC, 0xE5, 0x69, 0xA0, 0xAC, 0xBF, 0xAC, 0xA8, 0x30, 286 | 0x67, 0x2F, 0x5A, 0xB4, 0xE8, 0xF9, 0xEA, 0xC6, 0xAA, 0xFC, 0xEC, 0xEC, 0xEC, 0x5F, 0x3E, 0xFF, 0xF3, 0x45, 0xD9, 0xE5, 0x6B, 0x5E, 0x7C, 0xF3, 287 | 0xF9, 0x2F, 0x3E, 0x58, 0x94, 0x0D, 0x0E, 0xC2, 0x22, 0xDB, 0xBE, 0xB5, 0xCF, 0x2F, 0x02, 0x9D, 0x7E, 0x7E, 0xDF, 0x17, 0xBF, 0x5C, 0xF4, 0x16, 288 | 0x38, 0x0D, 0x18, 0xE3, 0x83, 0x00, 0xC3, 0x06, 0x04, 0xB9, 0x7C, 0x1F, 0xCA, 0x33, 0x08, 0xF6, 0x8B, 0x6F, 0x5D, 0x5B, 0x84, 0x91, 0xF9, 0x1A, 289 | 0x72, 0xD3, 0xE0, 0x83, 0x5F, 0xAF, 0x79, 0x1E, 0xA3, 0xFB, 0x5F, 0xFE, 0x3A, 0xFB, 0xC5, 0x45, 0x20, 0xEC, 0xCF, 0xFF, 0x72, 0x51, 0xF6, 0x8B, 290 | 0xBF, 0x7C, 0x13, 0xBB, 0x20, 0xD6, 0xE2, 0x32, 0x7E, 0x8B, 0xDE, 0xFC, 0x78, 0xED, 0xDA, 0x35, 0xBF, 0x84, 0x3D, 0x74, 0x04, 0x9E, 0x5F, 0xB4, 291 | 0x16, 0xFE, 0xA5, 0x5F, 0x42, 0x79, 0x76, 0x36, 0x44, 0xF8, 0x4F, 0xBF, 0xB8, 0xE8, 0xE9, 0x45, 0x67, 0xD7, 0x46, 0x3D, 0x3D, 0xED, 0xC5, 0x69, 292 | 0x2F, 0x96, 0x67, 0x47, 0x4D, 0x9B, 0x96, 0x3D, 0xED, 0xC5, 0xEC, 0xEC, 0x8C, 0x8C, 0xEC, 0x7C, 0x93, 0xA9, 0x39, 0xFB, 0xE9, 0x17, 0xB3, 0x0F, 293 | 0xEE, 0x5B, 0xB3, 0xCF, 0x14, 0xF5, 0xE2, 0xA2, 0x83, 0xE5, 0x6B, 0xB2, 0xB3, 0x93, 0xC0, 0x73, 0x29, 0x5F, 0xF3, 0x46, 0x79, 0xFE, 0x1B, 0xE6, 294 | 0x35, 0x6B, 0xCA, 0xCB, 0xDF, 0x5A, 0xFB, 0x81, 0xAD, 0xF9, 0xF2, 0xE5, 0xB5, 0x6F, 0x2D, 0xFA, 0xB4, 0x11, 0xEC, 0x5B, 0x6F, 0xAD, 0xA9, 0xC3, 295 | 0xCF, 0x5E, 0xBE, 0x66, 0x4D, 0xA3, 0x03, 0x9D, 0xA0, 0x7B, 0x25, 0x07, 0xF7, 0x77, 0xC7, 0x2E, 0xA4, 0x66, 0x2E, 0x5F, 0xCF, 0x15, 0x7F, 0xF1, 296 | 0xC5, 0x07, 0x5F, 0x0C, 0xDD, 0x08, 0x8B, 0x77, 0x81, 0xAF, 0x71, 0xDD, 0x29, 0xB1, 0xB8, 0xF6, 0x6D, 0xDE, 0xF7, 0x3F, 0x76, 0xE0, 0x7F, 0x9F, 297 | 0x7D, 0xDF, 0xFF, 0x18, 0xBE, 0x33, 0xFE, 0x65, 0x6A, 0xCA, 0x3F, 0x5F, 0x43, 0xF9, 0xE7, 0x8D, 0xE0, 0xF8, 0xF7, 0x46, 0x95, 0xC7, 0x04, 0xE2, 298 | 0xA9, 0x21, 0xB2, 0x0E, 0xDA, 0x45, 0x55, 0x73, 0x14, 0x0A, 0x3C, 0x94, 0x90, 0x52, 0x78, 0x6B, 0x5F, 0x0D, 0x28, 0xBB, 0x1A, 0xF4, 0x1D, 0x7F, 299 | 0xD5, 0xE4, 0x07, 0xD4, 0x94, 0xD4, 0xF9, 0x8E, 0xD2, 0x10, 0x7F, 0x60, 0x14, 0x77, 0xDE, 0x28, 0x12, 0x7A, 0x6B, 0x46, 0x8D, 0x7B, 0x2A, 0x96, 300 | 0x66, 0xFD, 0x35, 0x4F, 0x3D, 0xFB, 0x14, 0xCE, 0xB5, 0xEB, 0xFF, 0xEC, 0xB3, 0x4F, 0xA1, 0xFF, 0x30, 0x0A, 0x23, 0xF1, 0x51, 0x23, 0xD4, 0xC3, 301 | 0x34, 0x13, 0x66, 0xCE, 0x9C, 0x33, 0x67, 0xC2, 0x04, 0xFF, 0xA7, 0x8E, 0x2C, 0x9B, 0xB3, 0x31, 0x6E, 0xC2, 0xC8, 0xB1, 0x47, 0x36, 0xCE, 0x59, 302 | 0x16, 0x37, 0x41, 0xAD, 0x86, 0x8A, 0x09, 0xA8, 0xF6, 0x54, 0xE9, 0xE1, 0x0F, 0x5D, 0x00, 0xF4, 0x03, 0x88, 0x2B, 0x30, 0x81, 0xCB, 0xA8, 0x89, 303 | 0x03, 0x30, 0x6A, 0xD4, 0x68, 0xFC, 0xF7, 0xEF, 0x58, 0xDF, 0x87, 0x0A, 0x3C, 0x28, 0x3E, 0x5D, 0xFC, 0x27, 0x87, 0x76, 0x07, 0xA4, 0xE6, 0x90, 304 | 0x43, 0xC6, 0x15, 0x56, 0x90, 0xE0, 0x7F, 0xDC, 0x53, 0xA9, 0x87, 0x0E, 0x15, 0x81, 0xCA, 0x47, 0x25, 0x17, 0x15, 0x65, 0x80, 0x9C, 0x17, 0x9D, 305 | 0x04, 0xE9, 0x7F, 0x66, 0xC9, 0x47, 0x27, 0x4F, 0x5A, 0x8A, 0x8A, 0x96, 0x18, 0x8D, 0x85, 0x9B, 0xA3, 0x42, 0xA2, 0x32, 0xB0, 0xA8, 0x02, 0xB4, 306 | 0xDE, 0x98, 0x99, 0xB7, 0xB9, 0xAA, 0x28, 0xD9, 0xB8, 0xB5, 0xB4, 0xA0, 0x74, 0xE7, 0x4A, 0x5D, 0x02, 0x0E, 0x50, 0xB0, 0x66, 0x4E, 0x18, 0xEB, 307 | 0x0F, 0x62, 0x5E, 0x30, 0x15, 0x3F, 0x96, 0xBF, 0x66, 0xEB, 0xC6, 0xA5, 0x53, 0xC7, 0x41, 0x49, 0x41, 0xE9, 0xD6, 0xD2, 0xA5, 0x3F, 0x1B, 0x37, 308 | 0x8A, 0xC8, 0x3E, 0x3F, 0xDE, 0xA5, 0x06, 0xB9, 0x57, 0xF0, 0x2C, 0x2E, 0x35, 0x91, 0xFF, 0x46, 0x17, 0xFA, 0x5A, 0x82, 0xFB, 0xC2, 0x3F, 0x5E, 309 | 0x00, 0x79, 0x0E, 0x3A, 0xD1, 0x73, 0x02, 0x9D, 0xFF, 0x01, 0x3C, 0x40, 0x3A, 0x34, 0x44, 0x54, 0xD8, 0xDB, 0xEB, 0xEC, 0xAF, 0xD7, 0xB3, 0xBE, 310 | 0xC8, 0xB7, 0x13, 0x84, 0xDF, 0xD9, 0xDF, 0x7B, 0xA3, 0xDF, 0x16, 0xC4, 0x38, 0xFA, 0xA1, 0xA0, 0x39, 0x41, 0x34, 0x8B, 0xD3, 0x75, 0x1A, 0xB7, 311 | 0x83, 0x42, 0x72, 0x32, 0x2F, 0x8C, 0xA4, 0x81, 0x3A, 0x1A, 0x22, 0xEA, 0x20, 0xF0, 0x28, 0xF1, 0x58, 0xEA, 0x16, 0xFA, 0x58, 0xD4, 0x6D, 0x94, 312 | 0x67, 0xD2, 0x03, 0x4F, 0x54, 0x9E, 0x6E, 0x89, 0x72, 0x52, 0x0D, 0x26, 0x61, 0xB9, 0x97, 0x6F, 0x2C, 0x51, 0x6F, 0xDF, 0x18, 0xE2, 0x1B, 0xF8, 313 | 0xC6, 0x46, 0x62, 0x98, 0x2E, 0x0E, 0x8E, 0xF5, 0x15, 0xFA, 0x0A, 0x39, 0x45, 0xBF, 0x2B, 0x89, 0xBD, 0x84, 0x42, 0xAE, 0x0A, 0x8F, 0x74, 0x77, 314 | 0xDB, 0x73, 0x7E, 0x40, 0x28, 0xE7, 0x07, 0x84, 0x72, 0x7E, 0x80, 0x90, 0xBE, 0x29, 0xDE, 0x31, 0xB8, 0xCB, 0x0F, 0x78, 0xAF, 0x60, 0x2A, 0xA4, 315 | 0xD7, 0x16, 0x2C, 0x5D, 0x1C, 0x8E, 0xDE, 0x4A, 0x8A, 0x17, 0xF5, 0x14, 0xDC, 0xEE, 0x85, 0x2F, 0xEA, 0x76, 0xEC, 0xD4, 0x77, 0x96, 0x86, 0x12, 316 | 0xF5, 0x4F, 0x5F, 0x1A, 0xC9, 0x8D, 0x22, 0x88, 0x0D, 0x25, 0xFE, 0x09, 0xF1, 0x3E, 0x7C, 0x63, 0x53, 0x42, 0x63, 0xC8, 0x47, 0xC3, 0xFB, 0x5D, 317 | 0x24, 0x45, 0x72, 0x43, 0x13, 0xF0, 0x5F, 0x41, 0xC5, 0x47, 0x78, 0xE8, 0xC0, 0x82, 0x14, 0x6A, 0xF1, 0x1C, 0xFC, 0x7F, 0x11, 0x4E, 0x81, 0xD1, 318 | 0xE5, 0x44, 0x54, 0x99, 0x3A, 0x97, 0x03, 0xAC, 0x37, 0xD0, 0xDE, 0x0C, 0x67, 0xC1, 0xD5, 0xD0, 0x8B, 0x74, 0x37, 0x02, 0xFD, 0xBC, 0x66, 0x87, 319 | 0x13, 0xE9, 0xE7, 0x3B, 0x1C, 0xCE, 0x42, 0xA0, 0x9F, 0x0F, 0x9E, 0x3B, 0x78, 0x7F, 0x3C, 0x3E, 0xF2, 0x8C, 0x6E, 0x9E, 0x40, 0x7C, 0xCB, 0x12, 320 | 0xDA, 0xB9, 0xCB, 0xE1, 0x6F, 0xE5, 0xDF, 0x87, 0xE3, 0x9F, 0xBD, 0x9B, 0xFF, 0x09, 0xB3, 0x6D, 0xBB, 0x6C, 0xA0, 0xF4, 0x93, 0x51, 0x3D, 0x4B, 321 | 0xE6, 0xCE, 0x4E, 0xC3, 0xB9, 0xDA, 0x77, 0xCE, 0x9F, 0xA3, 0xDD, 0xBD, 0xB1, 0xA0, 0x60, 0xD5, 0xB2, 0x39, 0x33, 0x97, 0xCD, 0xDE, 0xB2, 0x6B, 322 | 0x77, 0x6D, 0x2D, 0x58, 0xF0, 0x06, 0x56, 0xAF, 0x9E, 0xB7, 0x6C, 0x76, 0x56, 0x56, 0x4E, 0x5E, 0xCE, 0x9C, 0xD4, 0xC9, 0x93, 0x70, 0x29, 0x67, 323 | 0x38, 0xDA, 0xBE, 0xBB, 0x90, 0x0C, 0x91, 0xCA, 0x43, 0xE5, 0x85, 0x83, 0x66, 0xE7, 0xD9, 0xAC, 0xD6, 0xB4, 0x15, 0x15, 0x15, 0x76, 0x7B, 0x75, 324 | 0xED, 0xEA, 0xD5, 0x73, 0xE6, 0xE4, 0xAC, 0xCE, 0xDB, 0x52, 0xBB, 0x7B, 0xDE, 0x9C, 0xBC, 0xD5, 0x5B, 0x8E, 0xDB, 0x76, 0x6F, 0xDC, 0x82, 0x91, 325 | 0xF9, 0x6E, 0x78, 0xCD, 0xE3, 0x75, 0xC7, 0x8F, 0x43, 0x00, 0xF5, 0x55, 0x53, 0xC9, 0xAE, 0xDA, 0x26, 0x9C, 0x35, 0xF5, 0x78, 0x2D, 0x0E, 0x01, 326 | 0x6F, 0x22, 0x43, 0xC1, 0x6B, 0xB9, 0x70, 0x9F, 0x1A, 0x74, 0x04, 0xDC, 0xF9, 0xDB, 0x1D, 0x01, 0x50, 0x52, 0x02, 0x6F, 0x5D, 0x52, 0x52, 0xB2, 327 | 0xA5, 0x16, 0x7D, 0x03, 0xD8, 0xB8, 0x8F, 0xA9, 0x3D, 0x4E, 0x4F, 0x20, 0xFE, 0xC0, 0xF1, 0xCB, 0xFD, 0xD4, 0x69, 0x68, 0xFA, 0xAA, 0x96, 0x74, 328 | 0x20, 0x34, 0x7D, 0x75, 0x9C, 0x0E, 0x37, 0xFF, 0xCA, 0xB9, 0x71, 0x66, 0xDC, 0xC4, 0x49, 0x11, 0x11, 0x37, 0x77, 0x83, 0x99, 0xF4, 0x1F, 0x11, 329 | 0x43, 0xF5, 0xA9, 0x11, 0x38, 0xCE, 0x63, 0xA8, 0x7F, 0x75, 0xC4, 0x63, 0xFF, 0xF1, 0x1F, 0x81, 0x13, 0x9F, 0x7D, 0x76, 0x22, 0x76, 0x00, 0x44, 330 | 0x44, 0x4C, 0x88, 0xC0, 0xF4, 0x08, 0xA6, 0xC0, 0xC0, 0x47, 0xDC, 0x69, 0x72, 0xEA, 0xB3, 0x73, 0x4A, 0x3A, 0x86, 0x1A, 0x23, 0x22, 0x26, 0x4E, 331 | 0x5E, 0xDD, 0x71, 0xB3, 0x3E, 0x30, 0x30, 0x62, 0x52, 0xC9, 0xCD, 0xAF, 0xEA, 0xB0, 0xAA, 0xE9, 0x66, 0x93, 0x6D, 0xE7, 0xEE, 0xDD, 0x1B, 0xE5, 332 | 0xC0, 0xBF, 0xCD, 0xBA, 0x65, 0x2A, 0x0B, 0xFC, 0x17, 0x16, 0xAE, 0x0E, 0x40, 0xFE, 0x97, 0xE5, 0xE5, 0xB0, 0xDF, 0x21, 0xFF, 0xD1, 0x1C, 0xFF, 333 | 0x92, 0xBB, 0xF9, 0x47, 0xB0, 0xEB, 0x2A, 0xF2, 0xEB, 0x4A, 0xB6, 0x6F, 0xDF, 0x0E, 0xBA, 0x5F, 0x9F, 0xB5, 0x7F, 0x7B, 0xAD, 0xE3, 0xC4, 0xC1, 334 | 0x0A, 0xDD, 0xFE, 0x5D, 0xE0, 0x18, 0x1C, 0xCC, 0x07, 0x5A, 0x36, 0xAD, 0x59, 0x93, 0xFD, 0x22, 0xBA, 0x05, 0x6B, 0xCA, 0xB3, 0x5F, 0x44, 0x71, 335 | 0xAC, 0x38, 0xBC, 0x66, 0x51, 0x05, 0xD8, 0x43, 0x35, 0x07, 0x7F, 0x0F, 0x1A, 0xBC, 0xE8, 0x97, 0x6B, 0x3F, 0x78, 0x7E, 0xED, 0x9A, 0x35, 0x2F, 336 | 0xA2, 0x34, 0xBF, 0xB9, 0xA6, 0x78, 0x51, 0xF6, 0xB4, 0x5F, 0x3E, 0x5D, 0x5E, 0xBC, 0x63, 0x4D, 0xD2, 0xB4, 0x17, 0xA3, 0x40, 0xC9, 0x49, 0x14, 337 | 0xFE, 0x3C, 0xE9, 0x45, 0x78, 0xF3, 0xD3, 0xA7, 0x17, 0xAD, 0x59, 0xBB, 0x66, 0xED, 0x07, 0xCE, 0xA7, 0x5F, 0x5C, 0xBB, 0x08, 0xC2, 0xF9, 0x7D, 338 | 0xFB, 0xC0, 0x1D, 0x58, 0xD4, 0xFC, 0xD6, 0xDA, 0x7D, 0xF9, 0x50, 0x5F, 0xBE, 0x6F, 0x6D, 0xF9, 0x34, 0x70, 0x2F, 0xCA, 0x0F, 0xAE, 0x79, 0x2B, 339 | 0x3B, 0x1B, 0x82, 0xFB, 0xEC, 0x17, 0xF7, 0x3D, 0xBF, 0xE8, 0xDA, 0xBE, 0x17, 0xF1, 0xA4, 0xEC, 0x7D, 0xFB, 0x5E, 0x5C, 0x03, 0xB2, 0xBC, 0x28, 340 | 0xFB, 0xCD, 0x5F, 0x9F, 0x3D, 0x08, 0xA7, 0x4F, 0xCB, 0x5E, 0x5B, 0x5E, 0xBC, 0xA6, 0xDC, 0x4C, 0x56, 0xE4, 0xC9, 0xCE, 0x2F, 0x26, 0x93, 0xF5, 341 | 0x4F, 0x33, 0x13, 0xB3, 0xC3, 0x5C, 0xB6, 0x63, 0x47, 0xCD, 0xDE, 0x9A, 0xBD, 0xEB, 0x8A, 0x2B, 0x77, 0xEC, 0x28, 0x5B, 0x53, 0x8E, 0xB3, 0xF7, 342 | 0xD7, 0x1C, 0xAD, 0x3C, 0x01, 0x45, 0x95, 0x47, 0x2F, 0x5D, 0xBA, 0xB4, 0xB7, 0xE6, 0xF0, 0xDE, 0x33, 0x60, 0xCF, 0x96, 0x5B, 0x89, 0x50, 0x9F, 343 | 0xFD, 0xC2, 0x4E, 0xEC, 0xA5, 0x7D, 0x54, 0xBA, 0xCF, 0x56, 0x34, 0x5E, 0xFE, 0x3B, 0xD2, 0x17, 0x77, 0xD9, 0x66, 0x6A, 0x9C, 0x43, 0x5F, 0xD8, 344 | 0xF7, 0x5D, 0xD3, 0x02, 0xFF, 0xFB, 0x1A, 0x9D, 0x55, 0xC8, 0xFF, 0xF5, 0x21, 0x57, 0x3C, 0xF2, 0xEF, 0x1A, 0x3A, 0xFE, 0x5D, 0xF2, 0x2F, 0xE3, 345 | 0xF8, 0xE7, 0xDD, 0xCD, 0x3F, 0x2E, 0x8C, 0x83, 0x5A, 0x0E, 0x56, 0x83, 0x9A, 0xE4, 0x0D, 0x2A, 0x86, 0x92, 0x2E, 0x18, 0x35, 0x5A, 0x33, 0x02, 346 | 0xDE, 0x41, 0x8D, 0x5A, 0x0F, 0x22, 0xAE, 0x81, 0xD8, 0x19, 0x15, 0x94, 0x68, 0xEC, 0x58, 0x12, 0x4A, 0x93, 0x80, 0x1A, 0x65, 0x7C, 0xEC, 0xB3, 347 | 0x4F, 0x3D, 0x4B, 0x97, 0xD2, 0xE1, 0x56, 0xD9, 0xD1, 0xA8, 0x47, 0x62, 0x9D, 0x66, 0xA4, 0x66, 0x04, 0xBE, 0xBA, 0x7A, 0xD8, 0x08, 0xC5, 0xA8, 348 | 0x51, 0x23, 0x21, 0x24, 0x1F, 0xA6, 0x18, 0x3B, 0x12, 0xC4, 0xF2, 0x11, 0x05, 0x46, 0xC5, 0xE0, 0x72, 0x0C, 0x1B, 0xF6, 0xD0, 0x88, 0xD1, 0x28, 349 | 0xF1, 0x71, 0xC3, 0xD4, 0x23, 0x51, 0xE7, 0x27, 0x0C, 0x1B, 0x86, 0x05, 0x60, 0x1F, 0x52, 0x90, 0x02, 0xD0, 0xF8, 0xA7, 0xC8, 0x6F, 0xDC, 0x6D, 350 | 0xE5, 0x27, 0x9E, 0x00, 0x1A, 0xC8, 0x80, 0x37, 0x81, 0x93, 0x14, 0xFA, 0x4F, 0x00, 0x8B, 0x4F, 0x30, 0x3E, 0x15, 0x97, 0x8A, 0x42, 0xAC, 0x49, 351 | 0xB5, 0x56, 0x4D, 0x40, 0x67, 0x66, 0x14, 0xF7, 0xFF, 0x12, 0xCF, 0x00, 0x00, 0x1B, 0x35, 0x36, 0x74, 0xFC, 0x78, 0xF8, 0xE7, 0xFC, 0xFD, 0x83, 352 | 0x9F, 0x4E, 0x18, 0x1F, 0x3A, 0x2A, 0xAE, 0xD0, 0x46, 0xE6, 0x03, 0x1B, 0x35, 0xEE, 0x67, 0x64, 0xFC, 0xE3, 0xA8, 0x71, 0x0B, 0x0A, 0x0A, 0x16, 353 | 0x2F, 0x2D, 0x18, 0x15, 0xB3, 0x60, 0xF1, 0x5B, 0x3F, 0x9F, 0xBF, 0xB8, 0xB4, 0x74, 0xFE, 0x6C, 0x32, 0xA0, 0xA0, 0x94, 0x0C, 0x63, 0xD8, 0xBA, 354 | 0xB2, 0xB4, 0x60, 0xE9, 0xCA, 0x82, 0xAD, 0x05, 0x2B, 0xB1, 0x72, 0xE5, 0xCA, 0x52, 0x74, 0x05, 0xB6, 0x16, 0x2C, 0x98, 0x57, 0x50, 0xFA, 0x49, 355 | 0xE9, 0xE6, 0x9D, 0x2B, 0xE7, 0x17, 0x94, 0x6E, 0x2B, 0x5D, 0xBA, 0x6A, 0xF1, 0x54, 0x78, 0x8D, 0xA5, 0x0B, 0xA6, 0xC6, 0x4C, 0x8D, 0x1D, 0x0B, 356 | 0x7E, 0x19, 0xF0, 0xBF, 0x20, 0x7D, 0x6A, 0x28, 0xB6, 0xFF, 0xE9, 0xE9, 0x0B, 0x86, 0x23, 0xFF, 0x29, 0x29, 0x31, 0xF7, 0xAB, 0xFD, 0xC7, 0x5B, 357 | 0x3D, 0x06, 0x6E, 0xFA, 0x47, 0x2D, 0x37, 0x1D, 0x24, 0xEB, 0x5E, 0xFA, 0xA1, 0xBE, 0x17, 0x53, 0x9E, 0x8F, 0xAD, 0x03, 0x08, 0x1F, 0xAA, 0x0B, 358 | 0xCB, 0x6C, 0xC4, 0xA7, 0xD4, 0x1D, 0x99, 0x7A, 0xBB, 0xB3, 0xB7, 0xA3, 0xD9, 0x61, 0x65, 0x82, 0x69, 0x7F, 0x3C, 0xEB, 0x05, 0x0A, 0x08, 0xA2, 359 | 0x2E, 0x67, 0x30, 0x16, 0x8E, 0x4C, 0x09, 0x62, 0x84, 0xBE, 0xC1, 0x29, 0xB3, 0x42, 0x41, 0xF2, 0x88, 0x66, 0xA7, 0xA4, 0x04, 0x53, 0xE9, 0xC6, 360 | 0x51, 0xF5, 0xDC, 0x50, 0x3C, 0xAA, 0x81, 0x0B, 0xDE, 0xC1, 0x05, 0xDC, 0x02, 0x56, 0x7E, 0x59, 0x10, 0x1E, 0x19, 0x13, 0xE3, 0x1B, 0x1E, 0xEE, 361 | 0xCD, 0xC5, 0xDD, 0x44, 0x40, 0xB1, 0xEE, 0x3D, 0x38, 0x22, 0x66, 0x7C, 0xE4, 0x82, 0xF4, 0xF0, 0xF1, 0xE3, 0x41, 0xAA, 0x63, 0xBD, 0x85, 0x62, 362 | 0x08, 0xDD, 0x53, 0x30, 0x16, 0xC7, 0xFA, 0x77, 0x16, 0xC0, 0xB1, 0xE3, 0xC3, 0xB7, 0x7E, 0x59, 0x8A, 0x4A, 0x2E, 0x0C, 0x08, 0xE0, 0xB4, 0x5B, 363 | 0xEC, 0x75, 0x2B, 0xB9, 0x75, 0x9E, 0xB3, 0xDE, 0x6E, 0x1B, 0x19, 0xF9, 0x8D, 0x78, 0xFF, 0x2E, 0xFB, 0xD7, 0x52, 0x70, 0x8A, 0x2F, 0x75, 0x52, 364 | 0x22, 0x23, 0xB9, 0x5E, 0x09, 0x4E, 0xF9, 0xBD, 0x42, 0xA1, 0x86, 0xDE, 0x57, 0xF0, 0xBD, 0xF5, 0x59, 0xA9, 0xAF, 0x43, 0x07, 0x25, 0xBA, 0x7B, 365 | 0x09, 0xC0, 0x29, 0x02, 0xA1, 0x87, 0x92, 0xD0, 0x59, 0x29, 0xD4, 0xFB, 0x08, 0x06, 0x27, 0x80, 0x9E, 0x15, 0x39, 0x2B, 0x34, 0xD4, 0x5B, 0xD2, 366 | 0xE1, 0xEA, 0x68, 0x0E, 0x0E, 0xE6, 0x19, 0x5C, 0xFD, 0x0E, 0x87, 0xAF, 0x17, 0x38, 0x7F, 0x4E, 0x47, 0x47, 0x24, 0x2E, 0xCA, 0x81, 0x53, 0x29, 367 | 0x50, 0xDA, 0xF9, 0x1D, 0x94, 0x76, 0x81, 0xB3, 0xD9, 0x80, 0xB4, 0x0B, 0x7A, 0x6D, 0xA4, 0x58, 0xE0, 0x76, 0xF3, 0xB8, 0xCB, 0xC0, 0xFF, 0xD6, 368 | 0xA8, 0x9F, 0xDB, 0xF4, 0xFF, 0x63, 0xFC, 0x4F, 0x5F, 0xB5, 0xA5, 0x24, 0xF7, 0xC7, 0x3F, 0x66, 0x75, 0xBB, 0xD6, 0x3F, 0xF7, 0xF8, 0xE3, 0x8F, 369 | 0xCB, 0x99, 0x25, 0xCF, 0x3C, 0xF9, 0x4C, 0xC6, 0x33, 0x41, 0x8C, 0xAE, 0x08, 0x7D, 0xE0, 0x1F, 0x3F, 0xFE, 0x38, 0x8E, 0x70, 0xC8, 0x7D, 0xFC, 370 | 0xD1, 0xC7, 0x9F, 0x7B, 0xE5, 0xB9, 0x15, 0x55, 0x4F, 0x3E, 0x03, 0x8E, 0x70, 0x45, 0x55, 0xD5, 0x12, 0x4B, 0xC5, 0xAE, 0xAA, 0xAA, 0xAA, 0xEA, 371 | 0x92, 0xAA, 0xAA, 0xDA, 0x6A, 0x50, 0x54, 0x30, 0xB5, 0xB5, 0xB6, 0xC5, 0x8B, 0xAB, 0xAA, 0x6B, 0x77, 0x5B, 0x17, 0xA7, 0x2F, 0x80, 0x48, 0xBC, 372 | 0xB0, 0x90, 0x58, 0x5C, 0xE1, 0xE5, 0x78, 0xAD, 0x95, 0xA8, 0x75, 0xDD, 0xF1, 0x55, 0x5C, 0xC0, 0x9E, 0xB7, 0x8B, 0x0B, 0xDC, 0x31, 0x8E, 0x27, 373 | 0x7D, 0xF6, 0xBB, 0x6C, 0xBB, 0xE8, 0x6E, 0x49, 0xC9, 0x2E, 0xEC, 0xF3, 0x2F, 0x59, 0x51, 0xB2, 0xCB, 0x1D, 0xDD, 0xE3, 0x2B, 0xD0, 0xF8, 0x9E, 374 | 0xF4, 0x07, 0x60, 0x66, 0x57, 0xC9, 0x16, 0x92, 0x21, 0x55, 0xD4, 0x19, 0x70, 0x6F, 0x48, 0x35, 0x7A, 0x03, 0xF8, 0xD2, 0xE4, 0x3E, 0x40, 0xD3, 375 | 0x65, 0x7A, 0xE4, 0xF1, 0xA6, 0x5A, 0xF7, 0xC1, 0xE4, 0x80, 0xDA, 0xE3, 0x37, 0x87, 0x3A, 0xE6, 0x82, 0xE0, 0x3F, 0xF2, 0xD5, 0xCD, 0xA1, 0xCB, 376 | 0x69, 0x8F, 0x3C, 0xF2, 0x50, 0xD3, 0x57, 0xFD, 0x43, 0x75, 0x93, 0x03, 0x03, 0xC1, 0x35, 0xE8, 0xEF, 0xAF, 0xB3, 0xDB, 0x1F, 0xC2, 0x04, 0x62, 377 | 0x4E, 0x2D, 0xF9, 0xC5, 0xDD, 0xC0, 0xC2, 0xAC, 0xB4, 0xB4, 0xAC, 0x15, 0x2B, 0x56, 0x3C, 0xF2, 0xC8, 0xA4, 0x5D, 0x37, 0x2F, 0xD7, 0xE6, 0x11, 378 | 0x73, 0xDC, 0x3A, 0x7B, 0x52, 0x2D, 0x98, 0x5D, 0x59, 0xA9, 0xBB, 0x3A, 0xC0, 0x9B, 0x29, 0x99, 0x3B, 0x23, 0x7D, 0x76, 0x18, 0xE1, 0x7F, 0x6A, 379 | 0x2A, 0x4B, 0xF8, 0x8F, 0x0B, 0xA2, 0xFC, 0x4F, 0xFC, 0xBE, 0xF0, 0xBF, 0xE2, 0xAB, 0x9B, 0x5F, 0x9D, 0xA8, 0xB0, 0xB0, 0xD1, 0x37, 0xBF, 0xBA, 380 | 0xDC, 0xDC, 0x68, 0x93, 0xB3, 0xD5, 0xD8, 0x93, 0xDD, 0x18, 0xC4, 0x44, 0x13, 0x05, 0xAB, 0x86, 0xBF, 0x93, 0x0D, 0x87, 0xCF, 0xA2, 0x1A, 0x5E, 381 | 0x68, 0x39, 0x7C, 0x16, 0xCB, 0x4E, 0x9E, 0x3B, 0x7C, 0x90, 0xDA, 0x33, 0x87, 0x2F, 0x1D, 0x2D, 0x5E, 0x63, 0x9A, 0x16, 0xF5, 0xE4, 0xA5, 0x33, 382 | 0x65, 0xE6, 0x75, 0x6F, 0x3C, 0xF3, 0xE4, 0xD9, 0x33, 0x65, 0x6F, 0xBC, 0xB1, 0x63, 0xC7, 0x1B, 0x07, 0xCB, 0xCB, 0xDF, 0x58, 0xB7, 0xA3, 0xA6, 383 | 0x06, 0x74, 0xFE, 0xAD, 0x45, 0x20, 0xDF, 0x10, 0x7D, 0x67, 0x67, 0xAF, 0xC9, 0x2E, 0x7F, 0x39, 0x63, 0x5A, 0x36, 0xF8, 0x11, 0xD9, 0xEB, 0xDE, 384 | 0x30, 0x67, 0x83, 0x5F, 0x91, 0xBD, 0x36, 0x3B, 0xFB, 0xC5, 0xE7, 0x9F, 0x7F, 0x11, 0xED, 0xB4, 0x69, 0x2F, 0x62, 0x09, 0xD8, 0x7C, 0x8C, 0xD3, 385 | 0x41, 0xEC, 0xF3, 0xB3, 0xF3, 0xB3, 0xD7, 0x98, 0x4C, 0x70, 0xFC, 0xCB, 0x6B, 0xCC, 0x3B, 0x6A, 0x8A, 0xF3, 0xCB, 0xF3, 0x71, 0xCE, 0x5E, 0x28, 386 | 0xDC, 0x5B, 0x43, 0x6D, 0x0B, 0x79, 0x13, 0x48, 0x6F, 0xE0, 0x04, 0xFF, 0x64, 0x69, 0x9E, 0x73, 0x3B, 0xD6, 0xED, 0xD8, 0x5B, 0xD3, 0xD2, 0xDE, 387 | 0xDE, 0x82, 0xCB, 0xF7, 0xD4, 0x34, 0x1C, 0x3D, 0x7C, 0xE6, 0xD2, 0xD9, 0x83, 0x0D, 0x2D, 0x07, 0xCB, 0x0F, 0x1E, 0x2C, 0xAF, 0xA8, 0x39, 0x8C, 388 | 0xD3, 0x0A, 0x55, 0xD5, 0x7F, 0x54, 0x55, 0x5E, 0x61, 0xCB, 0xAF, 0x6B, 0x3C, 0xC8, 0xE9, 0x7C, 0x79, 0x05, 0xD5, 0xFD, 0x72, 0x3B, 0x8D, 0xE4, 389 | 0xEB, 0xEB, 0xFE, 0x82, 0xDA, 0x5F, 0xEB, 0xEE, 0xBB, 0xDC, 0x71, 0xAD, 0xAB, 0xAF, 0x6F, 0xA0, 0x9B, 0xEC, 0x0D, 0x0E, 0xDD, 0x84, 0xA2, 0x81, 390 | 0xC1, 0xAF, 0x4E, 0x6D, 0x87, 0xA2, 0x53, 0x1F, 0xBE, 0xBB, 0x7C, 0xFB, 0x15, 0xD8, 0xBE, 0xFB, 0xE1, 0xA9, 0xC6, 0xA6, 0xED, 0x89, 0x84, 0xFF, 391 | 0xF5, 0xEB, 0x25, 0x84, 0xFF, 0xE3, 0x46, 0xCA, 0xFF, 0x4E, 0xD1, 0xF7, 0x84, 0xFF, 0x11, 0xA8, 0x96, 0x23, 0x35, 0xAC, 0x8C, 0xC8, 0xA3, 0x46, 392 | 0xCE, 0x80, 0x5C, 0x82, 0x90, 0x06, 0x31, 0xB2, 0x71, 0xA3, 0x34, 0x23, 0x34, 0xFE, 0x23, 0x47, 0xE1, 0xDC, 0x33, 0xA3, 0x50, 0xFF, 0x61, 0x07, 393 | 0xFB, 0x06, 0xE0, 0x68, 0x0D, 0x71, 0x0C, 0x48, 0xF7, 0xFA, 0x28, 0x52, 0x34, 0x6C, 0xAC, 0xFF, 0x48, 0x28, 0x1F, 0x86, 0xA5, 0xA0, 0xED, 0x23, 394 | 0x86, 0x69, 0x20, 0xDE, 0x85, 0x0C, 0xFE, 0x62, 0x52, 0x0C, 0xD3, 0x8C, 0x24, 0x79, 0xF5, 0xC8, 0x27, 0x46, 0x0E, 0x1B, 0x3D, 0xE2, 0xA1, 0x91, 395 | 0x23, 0x9F, 0x18, 0x36, 0x62, 0x6E, 0x84, 0xF4, 0x21, 0x22, 0xF8, 0x71, 0x13, 0x1E, 0x92, 0x3E, 0xA4, 0x1E, 0x0D, 0x21, 0xFF, 0x43, 0xC3, 0x1E, 396 | 0x1A, 0x36, 0x1A, 0xF4, 0xDD, 0x13, 0x6A, 0xA8, 0x27, 0x40, 0xBD, 0x00, 0xDC, 0xA6, 0xA6, 0xC2, 0x81, 0x63, 0xC1, 0x5A, 0x67, 0xC7, 0x91, 0x2A, 397 | 0xAB, 0x2D, 0xCE, 0x72, 0xA8, 0x2A, 0x6E, 0x6C, 0x9C, 0x61, 0x94, 0xE5, 0x90, 0x35, 0xA7, 0xA8, 0xA2, 0x68, 0x82, 0xE5, 0xA3, 0x2A, 0x6B, 0x51, 398 | 0x51, 0x51, 0x5E, 0x56, 0xD1, 0xA1, 0x42, 0xE3, 0x12, 0x8B, 0x6D, 0xD8, 0xB0, 0xE0, 0xA7, 0x9F, 0xFE, 0x79, 0xC2, 0x78, 0x8D, 0x26, 0xFC, 0x69, 399 | 0xC8, 0x3C, 0x3D, 0x3F, 0x7D, 0xFA, 0xCF, 0x31, 0xD9, 0xE7, 0x4F, 0x99, 0x8E, 0x0B, 0x88, 0x8D, 0x87, 0xDD, 0xB7, 0xDE, 0x22, 0x45, 0x3F, 0xE7, 400 | 0x0C, 0xB1, 0x2B, 0x57, 0x6E, 0x26, 0x09, 0x6B, 0xF7, 0x7D, 0xB0, 0x78, 0x31, 0x16, 0x7F, 0xF0, 0x01, 0x57, 0x0F, 0x07, 0x60, 0xDD, 0xD6, 0xAD, 401 | 0x5B, 0x37, 0x2F, 0xFE, 0xF9, 0xFC, 0x05, 0x0B, 0x52, 0x62, 0x53, 0xA0, 0x38, 0x7D, 0xEA, 0xD4, 0x14, 0xB4, 0x3F, 0x4F, 0x87, 0x58, 0x7A, 0xE5, 402 | 0xE2, 0xC5, 0xA4, 0x62, 0x41, 0x8A, 0x2F, 0xE1, 0x3F, 0x25, 0x86, 0x4F, 0xF8, 0x8F, 0xF5, 0xA5, 0xFC, 0xC7, 0xF0, 0xEF, 0x1F, 0xFF, 0x58, 0xCD, 403 | 0x5D, 0x09, 0x8A, 0xBB, 0xA7, 0x09, 0x94, 0xE7, 0xD4, 0x3B, 0x1D, 0xF5, 0x75, 0x76, 0x46, 0x5F, 0xD8, 0xD8, 0x58, 0x6D, 0xB7, 0x0B, 0x44, 0x38, 404 | 0x29, 0xAF, 0xD5, 0xAA, 0x60, 0x82, 0x32, 0xED, 0x76, 0x6B, 0x61, 0x82, 0x88, 0xF1, 0x4D, 0x49, 0xF1, 0xF5, 0xCE, 0x09, 0x62, 0x45, 0xB3, 0x62, 405 | 0x23, 0x63, 0x0B, 0xE1, 0x6D, 0x41, 0xF3, 0x63, 0xAD, 0x38, 0x69, 0x94, 0xEF, 0x2D, 0xE5, 0xF3, 0x8E, 0x8D, 0x8D, 0x21, 0xBD, 0xFF, 0xB1, 0x5C, 406 | 0xBA, 0x2D, 0x85, 0x54, 0x69, 0x23, 0x69, 0x0A, 0xE5, 0xAA, 0x63, 0x68, 0x05, 0xC4, 0xFD, 0xB1, 0x9C, 0x54, 0x87, 0x93, 0xFE, 0x84, 0xD0, 0x29, 407 | 0x0B, 0xE0, 0x85, 0x30, 0x85, 0x7E, 0x5D, 0xA1, 0x43, 0xB9, 0xE4, 0x7E, 0xFD, 0x3B, 0xEB, 0x84, 0xDE, 0xB4, 0x33, 0x22, 0x34, 0x72, 0xF8, 0x70, 408 | 0x5A, 0x3B, 0x7C, 0x38, 0xE9, 0x5B, 0xF0, 0x8D, 0x8C, 0x74, 0xF7, 0x1F, 0x44, 0xDE, 0x75, 0x3E, 0xED, 0x00, 0xF0, 0xBE, 0xE7, 0xEB, 0x73, 0xEE, 409 | 0x09, 0x39, 0x15, 0x77, 0xB0, 0xAB, 0x03, 0xDC, 0x1F, 0xAC, 0x4F, 0x59, 0x30, 0x3E, 0x26, 0x16, 0xF5, 0x1D, 0x95, 0x9D, 0xFA, 0x32, 0xE4, 0x79, 410 | 0x84, 0x3B, 0xCF, 0x4F, 0xB9, 0xFD, 0xF1, 0x89, 0x27, 0x44, 0x2B, 0x23, 0x23, 0x41, 0xFA, 0x49, 0xF2, 0xF6, 0xA5, 0x37, 0x26, 0x98, 0x60, 0xB6, 411 | 0x19, 0xE9, 0x76, 0x82, 0x0F, 0x38, 0x04, 0x6C, 0xF7, 0xAA, 0x9C, 0x64, 0xD7, 0x61, 0x75, 0x0D, 0x01, 0xF7, 0xBD, 0x76, 0x47, 0x66, 0x18, 0xD2, 412 | 0x2D, 0xB4, 0x13, 0xBA, 0xF9, 0xE2, 0xCC, 0x30, 0x16, 0x9D, 0x3E, 0x31, 0xEC, 0x82, 0x15, 0x48, 0xDD, 0xBD, 0x3C, 0x52, 0xF7, 0xD3, 0x9E, 0x9C, 413 | 0x55, 0x7C, 0x7D, 0xE5, 0xC8, 0x7F, 0x84, 0xFF, 0x12, 0xD4, 0x56, 0xE0, 0x5F, 0x0B, 0x91, 0x60, 0x2D, 0xF2, 0x6F, 0x84, 0x02, 0xE4, 0x5F, 0x64, 414 | 0xB5, 0x6D, 0xDE, 0xB5, 0xAB, 0xAA, 0xB6, 0xAA, 0xF6, 0x56, 0x82, 0xA8, 0x1D, 0x04, 0x7E, 0xE3, 0xCE, 0xCD, 0xF8, 0x18, 0xE5, 0x6B, 0xAF, 0xAD, 415 | 0x5A, 0x55, 0x6B, 0xDB, 0x58, 0x58, 0x38, 0x3F, 0x3D, 0x7D, 0xB7, 0xAD, 0xB0, 0x30, 0xCF, 0x30, 0x7D, 0xFA, 0x46, 0x6B, 0x5E, 0x4E, 0x26, 0xD8, 416 | 0x55, 0x85, 0x60, 0x70, 0xA6, 0x67, 0x1B, 0x51, 0xE9, 0x5D, 0x99, 0x2B, 0x4A, 0x48, 0x32, 0x64, 0x95, 0x80, 0x6A, 0x66, 0xAD, 0x30, 0x66, 0xE1, 417 | 0x76, 0x45, 0x16, 0xC8, 0x3C, 0x58, 0xA8, 0x58, 0x91, 0x95, 0x95, 0x96, 0x45, 0x53, 0x5A, 0x5A, 0x62, 0x1A, 0x67, 0x13, 0xA1, 0xBA, 0x04, 0xFB, 418 | 0xF3, 0xB3, 0xC8, 0x41, 0x25, 0x2B, 0x88, 0xE8, 0xC2, 0xB1, 0x89, 0x20, 0xBF, 0x28, 0xC1, 0x24, 0xEA, 0x87, 0xBF, 0x12, 0x12, 0xFD, 0xEF, 0xAA, 419 | 0x5D, 0x51, 0xB2, 0x05, 0x4E, 0x81, 0xE3, 0xF1, 0x20, 0x38, 0x65, 0x17, 0x75, 0x04, 0x70, 0x08, 0x01, 0xB9, 0x2F, 0x80, 0xDE, 0xC5, 0x2E, 0x38, 420 | 0x78, 0x05, 0x79, 0x1D, 0xBC, 0x3F, 0xD0, 0x84, 0x23, 0xBB, 0x86, 0xD0, 0x37, 0xC0, 0x71, 0x0C, 0xC4, 0x89, 0x68, 0x22, 0xFE, 0x02, 0x56, 0xD6, 421 | 0xDE, 0xFC, 0xEA, 0x9A, 0xE3, 0xDA, 0xB5, 0x8B, 0x4D, 0x37, 0x6F, 0x36, 0x91, 0x5E, 0x85, 0xCB, 0x4D, 0xBB, 0xE0, 0x1F, 0xDA, 0xBE, 0xEB, 0xF8, 422 | 0xAE, 0xB9, 0x73, 0x73, 0x4B, 0x4A, 0x6A, 0x6F, 0x76, 0xD4, 0xD6, 0x6E, 0x2F, 0xC9, 0x9D, 0x71, 0xB9, 0x09, 0x5D, 0x92, 0xDC, 0x97, 0x6A, 0xA1, 423 | 0x0E, 0x4A, 0x02, 0xA9, 0xFB, 0x92, 0xC5, 0x04, 0x7E, 0xFF, 0xF9, 0xB7, 0xA1, 0xA4, 0x01, 0xFF, 0x3A, 0xB4, 0xC8, 0x7F, 0x0E, 0x58, 0xE4, 0x5F, 424 | 0xC2, 0xF5, 0x62, 0x37, 0x9D, 0x3B, 0x73, 0x86, 0xD8, 0x43, 0xD7, 0xFA, 0xF1, 0x3E, 0x78, 0xD3, 0xC9, 0xC1, 0x21, 0x4E, 0x07, 0xBB, 0x40, 0x4E, 425 | 0x89, 0x02, 0x77, 0x5F, 0x3B, 0xF8, 0x06, 0xAE, 0x13, 0x38, 0x38, 0xD8, 0x5D, 0xBC, 0xA3, 0xA1, 0xA1, 0xA6, 0x6B, 0xA0, 0xBD, 0xAC, 0xA6, 0xA5, 426 | 0xA5, 0x65, 0xC7, 0xBA, 0x72, 0x22, 0xEA, 0x35, 0xEB, 0x8A, 0xCB, 0xD7, 0xBC, 0x98, 0xBD, 0xAE, 0x06, 0x0A, 0xB2, 0xB3, 0x8B, 0x6B, 0x70, 0x59, 427 | 0x9F, 0x7C, 0x73, 0x71, 0x0D, 0x54, 0x1D, 0x3C, 0x58, 0x56, 0xBC, 0xCE, 0x5C, 0x7C, 0xF4, 0xE0, 0xC1, 0xA3, 0x47, 0x8F, 0xEE, 0x05, 0x95, 0xC6, 428 | 0x35, 0x23, 0x0E, 0xAE, 0x29, 0x3F, 0x08, 0xE6, 0xCC, 0x8E, 0xBD, 0x47, 0xE1, 0xD0, 0xA3, 0x0D, 0x65, 0x65, 0x47, 0xC9, 0x44, 0xBD, 0x65, 0xC5, 429 | 0x7B, 0xC9, 0x3C, 0xBD, 0xC5, 0xD4, 0x36, 0xB4, 0x9C, 0x03, 0xA5, 0x3F, 0x77, 0xF4, 0x70, 0x0B, 0xC9, 0xB4, 0xB7, 0xB6, 0x34, 0xB4, 0xB4, 0xB4, 430 | 0xB6, 0xB7, 0x9C, 0x3C, 0x07, 0xFB, 0x2D, 0xAD, 0xAD, 0xC0, 0x64, 0x45, 0x79, 0xC5, 0xC1, 0x13, 0xFF, 0xD3, 0x74, 0xB9, 0xF1, 0x2C, 0xBC, 0xF2, 431 | 0x85, 0xE6, 0xEA, 0x13, 0x97, 0x70, 0x8A, 0xA9, 0xE6, 0x2A, 0x9C, 0x76, 0x6A, 0x60, 0xA0, 0x11, 0xE5, 0xBF, 0xE3, 0x5A, 0x77, 0x73, 0x33, 0x28, 432 | 0x38, 0xEC, 0xE3, 0x1F, 0x8E, 0xE9, 0xA3, 0x83, 0xFD, 0xBB, 0x49, 0x59, 0xF7, 0x95, 0x53, 0xA7, 0x06, 0x06, 0xBB, 0xAF, 0x5C, 0xC1, 0xC5, 0x06, 433 | 0xF0, 0x79, 0x81, 0x6B, 0x8E, 0xC6, 0x6E, 0x67, 0x87, 0xA3, 0x1E, 0xBE, 0x09, 0xFB, 0x3F, 0xDC, 0x7F, 0xAA, 0xA9, 0x7E, 0x4F, 0xC1, 0xC5, 0xA6, 434 | 0xE6, 0x03, 0xA5, 0xA5, 0xBF, 0x2A, 0x38, 0xB0, 0x7B, 0xE3, 0xC6, 0x3D, 0xE7, 0xCF, 0xEB, 0x57, 0x6F, 0xDC, 0xB2, 0xF3, 0xC0, 0x55, 0x3B, 0x13, 435 | 0xC9, 0xF1, 0x2F, 0xFA, 0xFE, 0xF2, 0x0F, 0x91, 0xB1, 0x5A, 0x03, 0xFC, 0xCB, 0x46, 0x8D, 0xD0, 0x8C, 0x40, 0xFE, 0xA5, 0x10, 0xB2, 0x93, 0xF6, 436 | 0x7F, 0xC4, 0x88, 0x11, 0x28, 0xF5, 0xA4, 0x63, 0x00, 0xFE, 0x86, 0xA9, 0xD5, 0xFE, 0xF4, 0x7E, 0xF6, 0xA8, 0x38, 0x22, 0xE6, 0x9A, 0xB8, 0x1C, 437 | 0x0D, 0x08, 0x3D, 0x88, 0xF9, 0xB0, 0xB1, 0xA3, 0x86, 0x0D, 0xF3, 0x84, 0x9F, 0xD4, 0xB1, 0x44, 0xEF, 0x1F, 0xCA, 0xE4, 0x2C, 0x6E, 0x46, 0xA4, 438 | 0x05, 0x4A, 0xA5, 0x0F, 0x3D, 0x14, 0x11, 0x31, 0x29, 0xD0, 0x13, 0x74, 0x3D, 0x6D, 0x72, 0xC4, 0x23, 0x20, 0xF3, 0xB0, 0x1F, 0x08, 0xDE, 0xB4, 439 | 0xF4, 0x21, 0x29, 0x08, 0xFD, 0x28, 0x28, 0x7F, 0x68, 0xC4, 0xC8, 0xD1, 0xA3, 0xD1, 0x21, 0x18, 0x36, 0x72, 0xF4, 0x58, 0x9C, 0x1D, 0x43, 0x3D, 440 | 0x72, 0xEC, 0x58, 0xF0, 0x0D, 0x0C, 0xA9, 0x39, 0x15, 0x56, 0xD0, 0x7B, 0x4B, 0x85, 0xB5, 0xE2, 0x24, 0xE8, 0x7F, 0xD6, 0xA1, 0x93, 0x57, 0xAE, 441 | 0x80, 0xFA, 0x67, 0x56, 0x9C, 0xBC, 0xD0, 0x6A, 0x2D, 0xFA, 0xA8, 0x68, 0x89, 0xD1, 0x52, 0x51, 0x85, 0xB3, 0xC8, 0x40, 0x68, 0x72, 0x72, 0x09, 442 | 0x6E, 0x8D, 0x45, 0x45, 0xC6, 0x22, 0x92, 0xAB, 0x48, 0x18, 0x3D, 0x7E, 0x7E, 0xFA, 0x94, 0x29, 0x45, 0x45, 0x99, 0x99, 0x10, 0x96, 0xC7, 0x14, 443 | 0x65, 0x4D, 0x9E, 0x5E, 0xB0, 0x74, 0xC1, 0x02, 0xE3, 0x84, 0x91, 0xF3, 0x4B, 0x0B, 0xDE, 0xD9, 0x3A, 0x65, 0xFA, 0x74, 0x7C, 0x72, 0x78, 0xF1, 444 | 0xF8, 0xF1, 0x18, 0xBB, 0x05, 0x84, 0x17, 0x6C, 0x5D, 0x3C, 0x3D, 0x3C, 0x20, 0x7C, 0x3C, 0x68, 0xFB, 0xD6, 0x95, 0x64, 0xF1, 0x51, 0x10, 0xF2, 445 | 0xF9, 0xD3, 0xA7, 0xE3, 0x53, 0xFC, 0xE1, 0xE3, 0xA7, 0xA4, 0x83, 0x8D, 0x49, 0x5F, 0xB9, 0x75, 0x73, 0xFA, 0x94, 0xF4, 0x05, 0x4B, 0xB7, 0x6E, 446 | 0xFD, 0x14, 0x44, 0x3F, 0x7D, 0x6A, 0xEC, 0xD4, 0xD8, 0xF4, 0xF4, 0x18, 0x1C, 0xC1, 0x1E, 0xB3, 0x78, 0xEA, 0xD4, 0xF9, 0x2B, 0x97, 0x2E, 0x0E, 447 | 0xDA, 0x9C, 0x3E, 0x1F, 0x1C, 0x80, 0x18, 0xC6, 0xF7, 0xBB, 0xF9, 0xFE, 0xDF, 0x3B, 0x09, 0x44, 0xFA, 0x1C, 0xE0, 0x59, 0xA3, 0xC0, 0xF5, 0x06, 448 | 0xEC, 0x56, 0xB8, 0x54, 0xD8, 0xA0, 0x4C, 0x9B, 0x0D, 0x7D, 0x43, 0xB9, 0x3E, 0xCF, 0x5E, 0x68, 0xCD, 0x0C, 0x62, 0x04, 0xDE, 0xDE, 0x85, 0x85, 449 | 0xC8, 0xBC, 0x10, 0xAC, 0x35, 0x4F, 0x2F, 0x62, 0xBC, 0xA0, 0x39, 0xB7, 0xE6, 0xC0, 0xFF, 0xE2, 0xD6, 0x78, 0xEF, 0x7B, 0x25, 0x22, 0x90, 0xA0, 450 | 0xA7, 0x24, 0x86, 0x4E, 0xC1, 0xE7, 0xF1, 0x20, 0xA6, 0xC6, 0x58, 0xDA, 0xCB, 0x37, 0x25, 0xF6, 0x6F, 0x8D, 0xC2, 0xFF, 0x72, 0x12, 0x82, 0xCE, 451 | 0x73, 0xB7, 0xFD, 0xBF, 0x61, 0x6F, 0xDD, 0x3F, 0xF0, 0xFA, 0x76, 0xFB, 0xB7, 0xBD, 0x7E, 0x8A, 0xBB, 0x7F, 0x21, 0x85, 0xEB, 0x3D, 0x70, 0xFB, 452 | 0x1F, 0xC1, 0x5E, 0xDC, 0x60, 0x05, 0x77, 0x86, 0x38, 0x0E, 0xDE, 0x38, 0x2E, 0xC0, 0xEB, 0x36, 0x2A, 0x5E, 0xBC, 0x68, 0x62, 0xF9, 0x12, 0x07, 453 | 0x1A, 0x21, 0x63, 0x77, 0x61, 0x29, 0x63, 0xC4, 0xF5, 0x41, 0x9C, 0x40, 0xB3, 0x23, 0xD3, 0xD5, 0x8F, 0x74, 0x5B, 0x13, 0x90, 0xF5, 0xFE, 0x46, 454 | 0x43, 0x58, 0x2F, 0x5C, 0x0B, 0xCE, 0x1C, 0xBD, 0x28, 0x8C, 0xD0, 0x2C, 0x96, 0x12, 0xF6, 0x85, 0x62, 0x05, 0xD9, 0x05, 0x67, 0x0F, 0x57, 0x3B, 455 | 0xC4, 0xBE, 0x1E, 0xF5, 0x5D, 0xF3, 0x3E, 0x6A, 0xBE, 0x7D, 0xA1, 0xAF, 0x7F, 0x8C, 0x7F, 0x9F, 0x95, 0x8B, 0x29, 0xFF, 0xFA, 0x9F, 0x73, 0xFC, 456 | 0x4F, 0xE1, 0xF8, 0x17, 0x2D, 0x58, 0x30, 0x6B, 0xD6, 0xAC, 0x79, 0xAB, 0x96, 0x2D, 0xC0, 0xD1, 0x0D, 0xE9, 0x8B, 0x67, 0xA7, 0xA7, 0xC7, 0xA6, 457 | 0xA4, 0xA4, 0xCF, 0x9E, 0x3D, 0x05, 0x6C, 0xFA, 0xF4, 0xD4, 0xCC, 0x55, 0x39, 0x99, 0x69, 0x86, 0xF8, 0xF8, 0x34, 0x50, 0xFB, 0xB4, 0xF8, 0xC4, 458 | 0xC4, 0xB4, 0xCC, 0x34, 0x54, 0xED, 0xB4, 0xAC, 0x4C, 0x10, 0x67, 0xD0, 0xEA, 0x12, 0x23, 0xE8, 0xF8, 0x0A, 0x2A, 0xC6, 0xF0, 0xBB, 0x6B, 0x17, 459 | 0xE6, 0x4A, 0x88, 0x0C, 0x13, 0x5D, 0x2F, 0x41, 0x11, 0x87, 0x13, 0x12, 0x4B, 0xD0, 0x42, 0x06, 0x74, 0x93, 0x64, 0x76, 0xA1, 0xD8, 0x83, 0x53, 460 | 0x90, 0x48, 0x13, 0xD4, 0x44, 0x27, 0xDE, 0x99, 0xD2, 0xDC, 0x7F, 0x98, 0xE0, 0x3D, 0xDC, 0x59, 0x6A, 0x49, 0x15, 0x3D, 0x0E, 0x1D, 0x89, 0x15, 461 | 0x25, 0xB5, 0xA4, 0x92, 0x58, 0x2C, 0x5B, 0xB1, 0x0B, 0x0F, 0x81, 0xBA, 0x15, 0xA4, 0xBF, 0x01, 0xB5, 0x1E, 0x1A, 0x0B, 0x4B, 0x45, 0x2D, 0x3A, 462 | 0x07, 0x2B, 0x8A, 0x2A, 0x6A, 0x57, 0x97, 0xD0, 0x61, 0x07, 0x0B, 0x4B, 0xE6, 0x4E, 0x9C, 0x31, 0x17, 0x94, 0x3C, 0x77, 0xC6, 0xC4, 0x19, 0x0B, 463 | 0x4B, 0x8E, 0x57, 0xCC, 0x00, 0x3B, 0xA3, 0xA4, 0xAA, 0x6A, 0xC6, 0xC4, 0x89, 0x13, 0x67, 0xE4, 0xE2, 0xD1, 0x2B, 0x56, 0x14, 0xAD, 0x90, 0x44, 464 | 0xE3, 0x1C, 0x56, 0x45, 0x3A, 0x89, 0xA3, 0xA2, 0xA2, 0x62, 0x57, 0x22, 0xF0, 0x8F, 0x2E, 0x0B, 0xFB, 0xCF, 0xC2, 0x3F, 0x84, 0xFA, 0x94, 0xFF, 465 | 0x9C, 0xCB, 0x94, 0x7F, 0xB6, 0x9A, 0xE3, 0x5F, 0x4E, 0x74, 0xFE, 0x4A, 0x7B, 0xBB, 0x83, 0xDA, 0xAE, 0xEB, 0x1D, 0x0E, 0x94, 0xCB, 0xEE, 0xF3, 466 | 0x37, 0x6E, 0xDC, 0xE8, 0xB8, 0x70, 0xA5, 0xBB, 0xB5, 0xEB, 0xCC, 0xDE, 0x1D, 0xA0, 0xF3, 0x5D, 0xED, 0x60, 0x41, 0x7B, 0x07, 0xBB, 0x5B, 0x77, 467 | 0xAC, 0x03, 0x7D, 0xBE, 0xD9, 0x5D, 0xF3, 0xC6, 0x1B, 0x10, 0x7D, 0xB7, 0x34, 0x34, 0xEC, 0xD8, 0x61, 0x9A, 0x96, 0x0F, 0xB6, 0x66, 0x9D, 0x79, 468 | 0x5A, 0x76, 0x0B, 0x2E, 0x1A, 0x6C, 0x9E, 0x36, 0x0D, 0xF5, 0x7F, 0x5D, 0x71, 0xFE, 0xB4, 0xCA, 0x35, 0x6B, 0x0E, 0x9E, 0x3D, 0x7B, 0xF6, 0x60, 469 | 0xE5, 0xD1, 0x35, 0x6B, 0x40, 0xF2, 0xCB, 0xF3, 0x0F, 0xAE, 0xC9, 0x2F, 0x5E, 0x53, 0x5E, 0xBE, 0xA6, 0x7C, 0x4D, 0xF1, 0x8E, 0x35, 0xF9, 0x65, 470 | 0x6B, 0xCA, 0x31, 0xD4, 0x6F, 0x69, 0x29, 0xE7, 0xEC, 0x9A, 0xF2, 0xA3, 0x0D, 0x47, 0x5B, 0xBB, 0xBA, 0xCA, 0x0F, 0xB6, 0x76, 0x75, 0x77, 0xF7, 471 | 0x5E, 0x47, 0xBD, 0x6F, 0x6F, 0xEF, 0xBA, 0x06, 0xA2, 0xDF, 0x05, 0x52, 0x8D, 0xCF, 0xF0, 0xF5, 0xDE, 0xB8, 0x7E, 0x95, 0x2C, 0x4F, 0xF6, 0x3F, 472 | 0x90, 0xBA, 0xC9, 0x73, 0x7B, 0x83, 0xDD, 0x83, 0xBD, 0x37, 0xBA, 0x9D, 0xDD, 0xDD, 0x83, 0xFF, 0x73, 0xF5, 0xFA, 0x75, 0x90, 0xEE, 0xC6, 0xAB, 473 | 0x8E, 0xC6, 0xBA, 0x5D, 0xEB, 0x5F, 0x7F, 0x1D, 0x1F, 0xE8, 0x1B, 0xEC, 0xEE, 0x68, 0x86, 0xBF, 0xA6, 0xE3, 0xB5, 0xBB, 0xB7, 0xD4, 0x6E, 0xCF, 474 | 0x7D, 0xBD, 0xA4, 0x64, 0xCB, 0x96, 0x17, 0x5E, 0x7A, 0xE1, 0x25, 0xC8, 0x94, 0x34, 0x42, 0xD9, 0x96, 0xD5, 0x1B, 0x57, 0x93, 0x75, 0x90, 0x70, 475 | 0x42, 0xDF, 0x2D, 0x64, 0xBA, 0x1F, 0x6A, 0x17, 0xCE, 0x98, 0xB1, 0x7A, 0xE3, 0xC6, 0x03, 0x47, 0x76, 0xCA, 0xA3, 0xA1, 0x68, 0xE7, 0xC6, 0x00, 476 | 0x89, 0x63, 0xE1, 0x9C, 0x85, 0x0B, 0x27, 0x00, 0xFF, 0x3F, 0x9A, 0x31, 0x23, 0x8E, 0xF7, 0xCF, 0xC2, 0xBF, 0x40, 0xA3, 0xA6, 0xFC, 0x8B, 0xD5, 477 | 0xDC, 0xF7, 0x5F, 0xC1, 0xF1, 0xCF, 0xC7, 0x10, 0x5E, 0x33, 0xD6, 0x60, 0xF1, 0x1F, 0x3B, 0xCA, 0x7F, 0xD4, 0x84, 0xAC, 0x25, 0x63, 0x53, 0x53, 478 | 0xC7, 0x8E, 0x4D, 0xB5, 0x18, 0x27, 0x64, 0x65, 0x3D, 0x35, 0x76, 0x82, 0xD1, 0x98, 0x35, 0x99, 0x48, 0xFC, 0xB0, 0x25, 0x69, 0x23, 0xBE, 0x66, 479 | 0xD3, 0x26, 0xD3, 0xC0, 0x1F, 0xB4, 0x3C, 0x22, 0x30, 0xF0, 0x91, 0x61, 0xC3, 0x22, 0xD2, 0xC0, 0x46, 0x8C, 0x18, 0xF6, 0xC8, 0x24, 0xB4, 0xA3, 480 | 0x87, 0x3D, 0x02, 0x26, 0x30, 0x70, 0xC4, 0x43, 0xF4, 0x98, 0x09, 0xC3, 0x46, 0xA3, 0x1D, 0x1B, 0x37, 0x22, 0x62, 0xF4, 0xE8, 0x61, 0x9A, 0xB1, 481 | 0x71, 0xE0, 0x2C, 0x4C, 0x18, 0x39, 0x36, 0x75, 0x59, 0x5C, 0x5C, 0xDC, 0xEC, 0xA2, 0x43, 0x15, 0x45, 0x71, 0xA9, 0x33, 0xF3, 0x2A, 0xAA, 0x8A, 482 | 0x8C, 0x73, 0x56, 0x6D, 0xAE, 0xAE, 0xAB, 0x28, 0x32, 0xCE, 0x2B, 0x38, 0x70, 0xA0, 0xB1, 0xDA, 0x9A, 0x85, 0x52, 0x8F, 0x3A, 0x0F, 0x09, 0xFC, 483 | 0x00, 0xC8, 0x19, 0x8D, 0x4B, 0x12, 0x93, 0xC1, 0xC0, 0x77, 0x5F, 0x97, 0x9C, 0x9C, 0x98, 0x36, 0x61, 0xEC, 0xE2, 0x3D, 0x5B, 0xF7, 0xEC, 0x01, 484 | 0xBB, 0x00, 0xCC, 0xCA, 0xB4, 0x09, 0x53, 0x51, 0xD5, 0x63, 0x26, 0x4C, 0x98, 0x5F, 0xBA, 0x34, 0x7D, 0x6A, 0xCC, 0xCA, 0x98, 0xF4, 0xA5, 0x05, 485 | 0x0B, 0xA6, 0xA6, 0x4F, 0x09, 0x4E, 0x5F, 0x90, 0x1E, 0x1B, 0xB3, 0x20, 0x78, 0x7C, 0xC1, 0x3B, 0x29, 0xE1, 0x53, 0xDF, 0x89, 0x99, 0x5A, 0xBA, 486 | 0x2D, 0x7D, 0x7C, 0xFA, 0xD6, 0xF4, 0x05, 0xEF, 0xBC, 0x57, 0x50, 0xBA, 0x75, 0xEB, 0x82, 0x77, 0xB6, 0x6D, 0x43, 0xFB, 0xCE, 0x3B, 0xEF, 0x6C, 487 | 0xC3, 0x25, 0xC6, 0x3F, 0xC1, 0xED, 0xD6, 0x95, 0xE9, 0x7B, 0x56, 0x4E, 0x4D, 0x4F, 0x9F, 0x2A, 0x8A, 0xDE, 0x0A, 0x9E, 0x41, 0xA4, 0xB7, 0xC4, 488 | 0xB1, 0x38, 0x1C, 0x02, 0x43, 0xE0, 0x3F, 0x34, 0xD8, 0x57, 0xF6, 0xBD, 0x68, 0xFF, 0xC1, 0x65, 0x00, 0xE6, 0xAD, 0x64, 0xA2, 0x28, 0x36, 0x88, 489 | 0xF4, 0x13, 0x29, 0x78, 0xA2, 0x30, 0xEE, 0xC6, 0x91, 0x1C, 0x2E, 0x0D, 0xBC, 0x04, 0x58, 0x32, 0x0B, 0x9E, 0xD5, 0x10, 0x94, 0x63, 0x47, 0xE6, 490 | 0xAD, 0x06, 0xB8, 0x34, 0x30, 0x53, 0xC8, 0xF7, 0xA6, 0x23, 0xEE, 0xC1, 0x47, 0x20, 0x19, 0x2D, 0x23, 0x22, 0x7A, 0x68, 0xD0, 0x62, 0x09, 0x09, 491 | 0x8E, 0x63, 0x53, 0xC8, 0x4C, 0x3C, 0xA1, 0xB3, 0x22, 0x69, 0x87, 0x7A, 0x2C, 0xBD, 0xE3, 0x9F, 0xE2, 0x7B, 0x7F, 0xD4, 0xFF, 0xDB, 0x74, 0x3F, 492 | 0x9C, 0xDA, 0xE0, 0xD0, 0xC8, 0x7B, 0xE9, 0xBE, 0xEF, 0xFF, 0xE6, 0x7D, 0xBE, 0xE5, 0x1F, 0x8E, 0x4C, 0x09, 0x25, 0x37, 0x33, 0xBC, 0x53, 0xE8, 493 | 0x8D, 0x02, 0x70, 0x11, 0x22, 0xA9, 0xD3, 0x43, 0x6A, 0xB0, 0x84, 0x89, 0x1E, 0x72, 0xF5, 0x7A, 0x79, 0xF1, 0xB4, 0x4E, 0x20, 0xD9, 0x8B, 0xAF, 494 | 0x6A, 0x76, 0x0D, 0x39, 0x9D, 0x7C, 0x49, 0x23, 0x9A, 0xDE, 0x0E, 0xA7, 0xB3, 0xDF, 0x96, 0xE0, 0xC3, 0x80, 0xA9, 0x37, 0x00, 0xD9, 0xCE, 0xFE, 495 | 0x8E, 0x4C, 0xBD, 0x88, 0xC7, 0xEF, 0xEF, 0xCD, 0x83, 0x52, 0x1E, 0x9F, 0xA3, 0x5B, 0x4D, 0xE8, 0x56, 0xA8, 0x35, 0xEE, 0x2E, 0x1F, 0xCA, 0xFE, 496 | 0xDF, 0xC1, 0xF2, 0xFF, 0x27, 0xFE, 0xE5, 0x38, 0xD3, 0x95, 0x21, 0x33, 0x8D, 0x91, 0x4F, 0x99, 0x3E, 0x3B, 0x33, 0x33, 0x4D, 0xCB, 0xC8, 0xE3, 497 | 0x52, 0x53, 0x27, 0x4F, 0x04, 0xFE, 0x95, 0x71, 0x13, 0x22, 0x22, 0x50, 0x5D, 0x21, 0x44, 0xE7, 0xE2, 0xF2, 0xDC, 0x15, 0x93, 0xD2, 0xB2, 0xE6, 498 | 0x4E, 0x06, 0x69, 0x9C, 0x38, 0x29, 0xE2, 0x89, 0xC7, 0x26, 0x3E, 0x31, 0xB1, 0xC4, 0x9D, 0xB8, 0xF8, 0x3F, 0x77, 0x45, 0xEE, 0xDC, 0xDC, 0x15, 499 | 0x59, 0x28, 0x9F, 0x24, 0xB9, 0x6B, 0xB1, 0x3A, 0x77, 0xEE, 0x5C, 0x54, 0xDB, 0x19, 0x71, 0x13, 0xE3, 0xE0, 0xCC, 0x27, 0xA0, 0xF6, 0x89, 0x89, 500 | 0xD8, 0x29, 0x80, 0x62, 0x3E, 0x63, 0xC6, 0x5C, 0xE2, 0x18, 0xFC, 0xE8, 0x47, 0x13, 0x67, 0xA4, 0x4E, 0x9E, 0x3C, 0x97, 0x54, 0x43, 0xBA, 0xA5, 501 | 0xF3, 0x69, 0xF4, 0x0F, 0xDC, 0x88, 0xC9, 0x73, 0xE1, 0x38, 0x72, 0xF2, 0xC4, 0xC9, 0x13, 0x39, 0x87, 0x20, 0x8B, 0xE8, 0x3D, 0xF1, 0x15, 0xD2, 502 | 0x26, 0x4F, 0x9C, 0x3C, 0x19, 0x4F, 0x7D, 0xE2, 0x89, 0xC7, 0x9E, 0x78, 0x8C, 0xBC, 0xF1, 0xEA, 0xDC, 0x19, 0x73, 0xB3, 0xE6, 0xCE, 0x9D, 0x31, 503 | 0xE3, 0xD6, 0xBF, 0xF5, 0x98, 0x3B, 0xE1, 0x0E, 0xBC, 0x77, 0x2E, 0x1C, 0xFD, 0x04, 0xE6, 0x48, 0xE1, 0x13, 0xB7, 0x0F, 0xC8, 0xCD, 0x7D, 0x89, 504 | 0x45, 0xFE, 0x67, 0xCC, 0x10, 0x11, 0xFE, 0x27, 0x7A, 0x50, 0xFE, 0x3D, 0xFE, 0x45, 0xF8, 0xF7, 0xD9, 0xF3, 0x27, 0x5C, 0x8E, 0xB7, 0x95, 0x09, 505 | 0x7F, 0xEF, 0x93, 0x2F, 0xFF, 0x7C, 0xE3, 0x86, 0x96, 0xD1, 0x7F, 0xF2, 0xBB, 0xCF, 0xFE, 0xF8, 0x67, 0xE0, 0x3F, 0x7A, 0xEB, 0x27, 0x9F, 0x7D, 506 | 0x76, 0xAE, 0x66, 0x07, 0xEA, 0x7C, 0xCD, 0xB5, 0xD6, 0x73, 0xEB, 0xB0, 0x03, 0xE0, 0xFA, 0x8D, 0xFE, 0x6B, 0x10, 0x96, 0xB5, 0xFE, 0xF1, 0xCB, 507 | 0x3F, 0x93, 0x79, 0xDE, 0x20, 0x76, 0x5F, 0xF3, 0xB2, 0xB9, 0xBC, 0xBC, 0xA6, 0x66, 0x6F, 0xF6, 0x8E, 0x1D, 0x95, 0x67, 0x5A, 0x5B, 0x0E, 0xC3, 508 | 0xA6, 0xBB, 0x9B, 0xCE, 0xF3, 0x7A, 0xFD, 0xCF, 0x95, 0x95, 0x95, 0x65, 0x7B, 0x0F, 0x9E, 0xB8, 0xD0, 0xDE, 0xD5, 0x75, 0x0D, 0x95, 0x1B, 0x0B, 509 | 0xFF, 0x74, 0xE4, 0x93, 0x6D, 0x5F, 0x7E, 0xBE, 0x6D, 0xDB, 0x7B, 0xEF, 0x6D, 0xDB, 0x0A, 0x47, 0xA2, 0x94, 0xFF, 0xE1, 0xCF, 0xA7, 0x3F, 0xDF, 510 | 0xBA, 0x6D, 0xDB, 0x9E, 0x4F, 0xB7, 0x6D, 0xDB, 0xB6, 0x75, 0xEB, 0x4E, 0x9B, 0x75, 0xEB, 0x66, 0x6B, 0xE1, 0x8A, 0xF5, 0x1B, 0x36, 0xFC, 0xE1, 511 | 0x0F, 0x7F, 0xF8, 0xE2, 0x0B, 0x88, 0x6F, 0x3F, 0xFD, 0xD4, 0x6E, 0x5B, 0x91, 0xFB, 0xFA, 0x0B, 0x25, 0xBB, 0x5E, 0x7F, 0xE1, 0x85, 0x9F, 0xBE, 512 | 0xF0, 0xC2, 0x86, 0x0F, 0x37, 0x90, 0x99, 0x76, 0x4A, 0xC8, 0x3A, 0x85, 0x77, 0x27, 0x52, 0x86, 0xEB, 0x18, 0xAE, 0xC7, 0xBD, 0x97, 0x5E, 0xDF, 513 | 0x5E, 0x82, 0xBB, 0xAF, 0xAF, 0xDF, 0x55, 0xF2, 0x3A, 0x3E, 0xCC, 0xBF, 0x7D, 0x7B, 0xED, 0x06, 0x7C, 0xAA, 0x1F, 0x72, 0xAB, 0x17, 0xD2, 0xF9, 514 | 0x7E, 0xC8, 0x6C, 0xE3, 0x90, 0x72, 0xA9, 0x59, 0x58, 0x9B, 0xFB, 0xD2, 0x42, 0x9C, 0x0F, 0x08, 0x2E, 0x19, 0xCA, 0xFF, 0x44, 0x01, 0xE1, 0x7F, 515 | 0xAE, 0x92, 0xF2, 0xEF, 0xF3, 0xAF, 0xF2, 0xFD, 0xCF, 0xB2, 0xA4, 0x8E, 0x9D, 0x90, 0x98, 0xC8, 0xA8, 0xB2, 0xE2, 0xC6, 0xA6, 0xA6, 0xC1, 0xF7, 516 | 0xDF, 0x27, 0x6E, 0xEC, 0xE4, 0xE7, 0xD2, 0x80, 0xFF, 0xC0, 0xB1, 0x11, 0xF0, 0xE5, 0x8A, 0x18, 0x36, 0x4C, 0x03, 0xD2, 0x9D, 0x95, 0x15, 0x81, 517 | 0x4A, 0xEE, 0xB9, 0x62, 0x45, 0x04, 0x09, 0xFB, 0xB3, 0xD2, 0x46, 0x73, 0xF1, 0x3F, 0x91, 0xF9, 0x40, 0x62, 0xF1, 0x3E, 0xDA, 0xE8, 0xC9, 0x68, 518 | 0x87, 0x0D, 0x1B, 0x3D, 0x39, 0x82, 0xB8, 0x05, 0x11, 0x11, 0x93, 0xE7, 0x6C, 0xFE, 0xF4, 0x00, 0x78, 0x03, 0x23, 0x26, 0xCC, 0x59, 0x75, 0x20, 519 | 0x30, 0x02, 0x0A, 0x47, 0x4E, 0x58, 0x15, 0x18, 0x48, 0xFC, 0x81, 0xBC, 0xF4, 0x71, 0x29, 0xAF, 0xBD, 0x77, 0xE4, 0x40, 0xE1, 0xC6, 0xD0, 0x51, 520 | 0xB1, 0xAF, 0xFE, 0xEA, 0xC8, 0xB1, 0x9D, 0x91, 0x9A, 0xD0, 0x59, 0xAF, 0xBE, 0x7A, 0xA4, 0x6E, 0x8A, 0x42, 0x13, 0xFA, 0xEA, 0xAB, 0xBF, 0xCA, 521 | 0x4A, 0xD4, 0xE9, 0x74, 0xD1, 0x89, 0xE3, 0x37, 0xCF, 0x9E, 0x3E, 0x5E, 0xAF, 0x0F, 0x0F, 0x3E, 0xB6, 0x73, 0xE5, 0xE2, 0xF4, 0x29, 0xE1, 0xA1, 522 | 0x7B, 0x76, 0x6E, 0x5E, 0x3C, 0x3D, 0x06, 0xA3, 0xF5, 0x98, 0xF9, 0x05, 0x10, 0xF0, 0xE3, 0xF0, 0xEE, 0x98, 0xF4, 0x05, 0x05, 0xC1, 0x38, 0x50, 523 | 0x2D, 0x3C, 0x66, 0x3A, 0xD7, 0x7D, 0x1B, 0x5E, 0x30, 0x3F, 0xBD, 0x60, 0x41, 0xCC, 0xD4, 0x95, 0xA5, 0xE9, 0xA1, 0x31, 0x31, 0x91, 0xE3, 0x23, 524 | 0x21, 0x8E, 0x0F, 0x0E, 0x8E, 0x8C, 0x89, 0x99, 0x3A, 0x35, 0x06, 0xFB, 0x73, 0x43, 0x0B, 0x56, 0x2E, 0x9E, 0x9F, 0x1E, 0x13, 0x1A, 0x3C, 0x3E, 525 | } ; 526 | 527 | #endif 528 | -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- 1 | /* 2 | * Triforce Header Patcher 3 | * Copyright (C) 2015-2016 FIX94 4 | * 5 | * This program is free software; you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation; either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program; if not, see . 17 | */ 18 | 19 | #include 20 | #include 21 | #include 22 | #include "sha1.h" 23 | #include "staticVals.h" 24 | #include "good_tex_gp2.h" 25 | 26 | void printerr(char *msg) 27 | { 28 | puts(msg); 29 | puts("Press enter to exit"); 30 | getc(stdin); 31 | } 32 | 33 | void handleIso(FILE *f, const unsigned char *wantHdr) 34 | { 35 | if(!f) 36 | { 37 | printerr("Something went wrong with the file!"); 38 | exit(-1); 39 | } 40 | fseek(f,0,SEEK_SET); 41 | 42 | unsigned char gameHdr[0x40]; 43 | fread(gameHdr,0x40,1,f); 44 | if(memcmp(gameHdr,wantHdr,0x40) == 0) 45 | puts("Header already patched!"); 46 | else 47 | { 48 | fseek(f,0,SEEK_SET); 49 | fwrite(wantHdr,0x40,1,f); 50 | puts("New Header written in!"); 51 | } 52 | } 53 | 54 | int gpOverdump(FILE *f, size_t fsize) 55 | { 56 | unsigned char fbuf[0x100]; 57 | unsigned char cmpBuf[8] = { 0xB9, 0x91, 0xFB, 0xC2, 0xD5, 0xB9, 0x02, 0x44 }; 58 | 59 | fseek(f, 0x15000000, SEEK_SET); 60 | if(fsize == 0x15000010) 61 | { 62 | fread(fbuf,1,0x10,f); 63 | if((memcmp(fbuf,cmpBuf,8) != 0) || (memcmp(fbuf+8,cmpBuf,8) != 0)) 64 | return 0; 65 | } 66 | else if(fsize == 0x18000000) 67 | { 68 | while(ftell(f) < 0x18000000) 69 | { 70 | fread(fbuf,1,0x100,f); 71 | size_t i; 72 | for(i = 0; i < 0x100; i+=8) 73 | { 74 | if(memcmp(fbuf+i,cmpBuf,8) != 0) 75 | return 0; 76 | } 77 | } 78 | } 79 | else //huh 80 | return 0; 81 | return 1; 82 | } 83 | 84 | void getBodySha1(FILE *f, size_t fsize, void *chksum) 85 | { 86 | puts("Calculating SHA1..."); 87 | size_t i; 88 | SHA1_CONTEXT fSha1; 89 | sha1_init(&fSha1); 90 | 91 | unsigned char *fbuf = malloc(0x1000000); 92 | fseek(f, 0x40, SEEK_SET); //doing body only 93 | for(i = 0x40; i < fsize; i += 0x1000000) 94 | { 95 | size_t readsize = (fsize - i) < 0x1000000 ? (fsize - i) : 0x1000000; 96 | fread(fbuf, 1, readsize, f); 97 | sha1_write(&fSha1, fbuf, readsize); 98 | } 99 | free(fbuf); 100 | 101 | sha1_final(&fSha1); 102 | memcpy(chksum, fSha1.buf, 20); 103 | 104 | //for(i = 0; i < 19; i++) 105 | // printf("0x%02x, ", fSha1.buf[i]); 106 | //printf("0x%02x\n", fSha1.buf[i]); 107 | } 108 | 109 | void fixVs4v06Jap(FILE *f) 110 | { 111 | fseek(f,0x1D413000,SEEK_SET); 112 | unsigned char fbuf[0x14]; 113 | fread(fbuf,1,0x14,f); 114 | if(memcmp(fbuf,bad_tex_sw_yuk,0x14) == 0) 115 | { 116 | fseek(f,0x1D413000,SEEK_SET); 117 | fwrite(good_tex_sw_yuk,1,0x14,f); 118 | puts("Fixed a known dump error!"); 119 | } 120 | } 121 | 122 | void fixGP2(FILE *f) 123 | { 124 | void *fbuf = malloc(0x3000); 125 | fseek(f, 0x1A6A0000, SEEK_SET); 126 | fread(fbuf, 1, 0x3000, f); 127 | SHA1_CONTEXT fSha1; 128 | sha1_init(&fSha1); 129 | sha1_write(&fSha1, fbuf, 0x3000); 130 | sha1_final(&fSha1); 131 | free(fbuf); 132 | if(memcmp((void*)fSha1.buf, (void*)bad_tex_gp2_chksum, 20) == 0) 133 | { 134 | fseek(f, 0x1A6A0000, SEEK_SET); 135 | fwrite(good_tex_gp2, 1, 0x3000, f); 136 | puts("Fixed a known dump error!"); 137 | } 138 | } 139 | 140 | int isSha1of(const void *chksum1, const void *chksum2, const char *name) 141 | { 142 | if(memcmp(chksum1,chksum2,20) == 0) 143 | { 144 | printf("Valid %s SHA1!\n", name); 145 | return 1; 146 | } 147 | return 0; 148 | } 149 | 150 | void printUnkChksum(unsigned char *chksum) 151 | { 152 | printf("Unknown SHA1: "); 153 | size_t i; 154 | for(i = 0; i < 19; i++) 155 | printf("%02x", chksum[i]); 156 | printf("%02x\n", chksum[i]); 157 | } 158 | 159 | int main(int argc, char *argv[]) 160 | { 161 | puts("Triforce Header Patcher v1.4 by FIX94"); 162 | if(argc != 2) 163 | { 164 | printerr("Please drag and drop a file into this exe."); 165 | return -1; 166 | } 167 | FILE *f = fopen(argv[1],"rb+"); 168 | if(!f) 169 | { 170 | printerr("File could not be opened/edited! Make sure it exists and you have rights to edit it."); 171 | return -2; 172 | } 173 | fseek(f,0,SEEK_END); 174 | size_t fsize = ftell(f); 175 | unsigned char chksum[20]; 176 | if(fsize == 0x19FCC500) 177 | { 178 | puts("Guessing F-Zero AX"); 179 | getBodySha1(f, 0x19FCC500, chksum); 180 | if(isSha1of(chksum, ax_4c_chksum, "F-Zero AX [GDT-0004C]") || isSha1of(chksum, ax_4d_chksum, "F-Zero AX [GDT-0004D]") 181 | || isSha1of(chksum, ax_4e_chksum, "F-Zero AX [GDT-0004E]")) 182 | handleIso(f, axHdr); 183 | else 184 | printUnkChksum(chksum); 185 | } 186 | else if(fsize == 0x15000000) 187 | { 188 | puts("Guessing Mario Kart Arcade GP"); 189 | getBodySha1(f, 0x15000000, chksum); 190 | if(isSha1of(chksum, gp_feb_14_06_chksum, "Mario Kart Arcade GP [Feb 14 2006 13:09:48]")) 191 | handleIso(f, gpHdr); 192 | else 193 | printUnkChksum(chksum); 194 | } 195 | else if(fsize == 0x15000010 && gpOverdump(f,fsize)) 196 | { 197 | puts("Guessing Mario Kart Arcade GP (Overdump 1)"); 198 | getBodySha1(f, 0x15000000, chksum); 199 | if(isSha1of(chksum, gp_feb_14_06_chksum, "Mario Kart Arcade GP [Feb 14 2006 13:09:48]")) 200 | { 201 | _chsize(fileno(f), 0x15000000); //windows only bleh 202 | puts("Adjusted filesize!"); 203 | handleIso(f, gpHdr); 204 | } 205 | else 206 | printUnkChksum(chksum); 207 | } 208 | else if(fsize == 0x18000000 && gpOverdump(f,fsize)) 209 | { 210 | puts("Guessing Mario Kart Arcade GP (Overdump 2)"); 211 | getBodySha1(f, 0x15000000, chksum); 212 | if(isSha1of(chksum, gp_feb_14_06_chksum, "Mario Kart Arcade GP [Feb 14 2006 13:09:48]")) 213 | { 214 | _chsize(fileno(f), 0x15000000); //windows only bleh 215 | puts("Adjusted filesize!"); 216 | handleIso(f, gpHdr); 217 | } 218 | else 219 | printUnkChksum(chksum); 220 | } 221 | else if(fsize == 0x1E000000) 222 | { 223 | puts("Guessing Mario Kart Arcade GP 2"); 224 | fixGP2(f); // important to do before SHA1 225 | getBodySha1(f, 0x1E000000, chksum); 226 | if(isSha1of(chksum, gp2_feb_7_07_chksum, "Mario Kart Arcade GP 2 [Feb 7 2007 02:47:24]")) 227 | handleIso(f, gp2Hdr); 228 | else 229 | printUnkChksum(chksum); 230 | } 231 | else if(fsize == 0x1EF00000) 232 | { 233 | puts("Guessing Gekitou Pro Yakyuu"); 234 | getBodySha1(f, 0x1EF00000, chksum); 235 | if(isSha1of(chksum, gpb_8b_chksum, "Gekitou Pro Yakyuu [GDT-0008B]") || isSha1of(chksum, gpb_8c_chksum, "Gekitou Pro Yakyuu [GDT-0008C]")) 236 | handleIso(f, gpbHdr); 237 | else 238 | printUnkChksum(chksum); 239 | } 240 | else if(fsize == 0x1262C0A8) 241 | { 242 | puts("Guessing Virtua Striker 3 Ver. 2002"); 243 | getBodySha1(f, 0x1262C0A8, chksum); 244 | if(isSha1of(chksum, vs3v02jap_1_chksum, "Virtua Striker 3 Ver. 2002 (Japan) [GDT-0001]")) 245 | handleIso(f, vs3v02japHdr); 246 | else if(isSha1of(chksum, vs3v02exp_2_chksum, "Virtua Striker 3 Ver. 2002 (Export) [GDT-0002]")) 247 | handleIso(f, vs3v02expHdr); 248 | else 249 | printUnkChksum(chksum); 250 | } 251 | else if(fsize == 0x1CA1A400) 252 | { 253 | puts("Guessing Virtua Striker 4"); 254 | getBodySha1(f, 0x1CA1A400, chksum); 255 | if(isSha1of(chksum, vs4jap_13e_chksum, "Virtua Striker 4 (Japan) [GDT-0013E]")) 256 | handleIso(f, vs4japHdr); 257 | else if(isSha1of(chksum, vs4exp_14_chksum, "Virtua Striker 4 (Export) [GDT-0014]") || 258 | isSha1of(chksum, vs4exp_15_chksum, "Virtua Striker 4 (Export) [GDT-0015]")) 259 | handleIso(f, vs4expHdr); 260 | else 261 | printUnkChksum(chksum); 262 | } 263 | else if(fsize == 0x1CA20000) 264 | { 265 | puts("Guessing Virtua Striker 4 (Overdump 1)"); 266 | getBodySha1(f, 0x1CA1A400, chksum); 267 | if(isSha1of(chksum, vs4jap_13e_chksum, "Virtua Striker 4 (Japan) [GDT-0013E]")) 268 | { 269 | _chsize(fileno(f), 0x1CA1A400); //windows only bleh 270 | puts("Adjusted filesize!"); 271 | handleIso(f, vs4japHdr); 272 | } 273 | else if(isSha1of(chksum, vs4exp_15_chksum, "Virtua Striker 4 (Export) [GDT-0015]")) 274 | { 275 | _chsize(fileno(f), 0x1CA1A400); //windows only bleh 276 | puts("Adjusted filesize!"); 277 | handleIso(f, vs4expHdr); 278 | } 279 | else 280 | printUnkChksum(chksum); 281 | } 282 | else if(fsize == 0x1D4130C8) 283 | { 284 | puts("Guessing Virtua Striker 4 Ver. 2006 (Japan)"); 285 | fixVs4v06Jap(f); // important to do before SHA1 286 | getBodySha1(f, 0x1D4130C8, chksum); 287 | if(isSha1of(chksum, vs4v06jap_20b_chksum, "Virtua Striker 4 Ver. 2006 (Japan) [GDT-0020B]") || 288 | isSha1of(chksum, vs4v06jap_20d_chksum, "Virtua Striker 4 Ver. 2006 (Japan) [GDT-0020D]")) 289 | handleIso(f, vs4v06japHdr); 290 | else 291 | printUnkChksum(chksum); 292 | } 293 | else if(fsize == 0x1CA13288) 294 | { 295 | puts("Guessing Virtua Striker 4 Ver. 2006 (Export)"); 296 | getBodySha1(f, 0x1CA13288, chksum); 297 | if(isSha1of(chksum, vs4v06exp_21_chksum, "Virtua Striker 4 Ver. 2006 (Export) [GDT-0021]")) 298 | handleIso(f, vs4v06expHdr); 299 | else 300 | printUnkChksum(chksum); 301 | } 302 | else 303 | puts("Unknown file, did nothing"); 304 | fclose(f); 305 | puts("Press enter to exit"); 306 | getc(stdin); 307 | return 0; 308 | } 309 | -------------------------------------------------------------------------------- /sha1.c: -------------------------------------------------------------------------------- 1 | /* sha1.c - SHA1 hash function 2 | * Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc. 3 | * 4 | * Please see below for more legal information! 5 | * 6 | * This file is part of GnuPG. 7 | * 8 | * GnuPG is free software; you can redistribute it and/or modify 9 | * it under the terms of the GNU General Public License as published by 10 | * the Free Software Foundation; either version 3 of the License, or 11 | * (at your option) any later version. 12 | * 13 | * GnuPG is distributed in the hope that it will be useful, 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 | * GNU General Public License for more details. 17 | * 18 | * You should have received a copy of the GNU General Public License 19 | * along with this program; if not, see . 20 | */ 21 | 22 | 23 | /* 24 | * Code has been stripped down to a single .c file so it can be used 25 | * as a freestanding include, rol define taken from bithelp.h and 26 | * wipememory define taken from util.h, all from GnuPG 1.4.19 27 | */ 28 | 29 | #include 30 | #include 31 | #include 32 | #include 33 | #include "sha1.h" 34 | 35 | #define wipememory2(_ptr,_set,_len) do { volatile char *_vptr=(volatile char *)(_ptr); size_t _vlen=(_len); while(_vlen) { *_vptr=(_set); _vptr++; _vlen--; } } while(0) 36 | #define wipememory(_ptr,_len) wipememory2(_ptr,0,_len) 37 | 38 | static void 39 | burn_stack (int bytes) 40 | { 41 | char buf[128]; 42 | 43 | wipememory(buf,sizeof buf); 44 | bytes -= sizeof buf; 45 | if (bytes > 0) 46 | burn_stack (bytes); 47 | } 48 | 49 | void 50 | sha1_init( SHA1_CONTEXT *hd ) 51 | { 52 | hd->h0 = 0x67452301; 53 | hd->h1 = 0xefcdab89; 54 | hd->h2 = 0x98badcfe; 55 | hd->h3 = 0x10325476; 56 | hd->h4 = 0xc3d2e1f0; 57 | hd->nblocks = 0; 58 | hd->count = 0; 59 | } 60 | 61 | #if defined(__GNUC__) && defined(__i386__) 62 | static inline unsigned int 63 | rol( unsigned int x, int n) 64 | { 65 | __asm__("roll %%cl,%0" 66 | :"=r" (x) 67 | :"0" (x),"c" (n)); 68 | return x; 69 | } 70 | #else 71 | #define rol(x,n) ( ((x) << (n)) | ((x) >> (32-(n))) ) 72 | #endif 73 | 74 | /**************** 75 | * Transform the message X which consists of 16 32-bit-words 76 | */ 77 | static void 78 | transform( SHA1_CONTEXT *hd, unsigned char *data ) 79 | { 80 | unsigned int a,b,c,d,e,tm; 81 | unsigned int x[16]; 82 | 83 | /* get values from the chaining vars */ 84 | a = hd->h0; 85 | b = hd->h1; 86 | c = hd->h2; 87 | d = hd->h3; 88 | e = hd->h4; 89 | 90 | #ifdef BIG_ENDIAN_HOST 91 | memcpy( x, data, 64 ); 92 | #else 93 | { int i; 94 | unsigned char *p2; 95 | for(i=0, p2=(unsigned char*)x; i < 16; i++, p2 += 4 ) { 96 | p2[3] = *data++; 97 | p2[2] = *data++; 98 | p2[1] = *data++; 99 | p2[0] = *data++; 100 | } 101 | } 102 | #endif 103 | 104 | 105 | #define K1 0x5A827999L 106 | #define K2 0x6ED9EBA1L 107 | #define K3 0x8F1BBCDCL 108 | #define K4 0xCA62C1D6L 109 | #define F1(x,y,z) ( z ^ ( x & ( y ^ z ) ) ) 110 | #define F2(x,y,z) ( x ^ y ^ z ) 111 | #define F3(x,y,z) ( ( x & y ) | ( z & ( x | y ) ) ) 112 | #define F4(x,y,z) ( x ^ y ^ z ) 113 | 114 | 115 | #define M(i) ( tm = x[i&0x0f] ^ x[(i-14)&0x0f] \ 116 | ^ x[(i-8)&0x0f] ^ x[(i-3)&0x0f] \ 117 | , (x[i&0x0f] = rol(tm,1)) ) 118 | 119 | #define R(a,b,c,d,e,f,k,m) do { e += rol( a, 5 ) \ 120 | + f( b, c, d ) \ 121 | + k \ 122 | + m; \ 123 | b = rol( b, 30 ); \ 124 | } while(0) 125 | R( a, b, c, d, e, F1, K1, x[ 0] ); 126 | R( e, a, b, c, d, F1, K1, x[ 1] ); 127 | R( d, e, a, b, c, F1, K1, x[ 2] ); 128 | R( c, d, e, a, b, F1, K1, x[ 3] ); 129 | R( b, c, d, e, a, F1, K1, x[ 4] ); 130 | R( a, b, c, d, e, F1, K1, x[ 5] ); 131 | R( e, a, b, c, d, F1, K1, x[ 6] ); 132 | R( d, e, a, b, c, F1, K1, x[ 7] ); 133 | R( c, d, e, a, b, F1, K1, x[ 8] ); 134 | R( b, c, d, e, a, F1, K1, x[ 9] ); 135 | R( a, b, c, d, e, F1, K1, x[10] ); 136 | R( e, a, b, c, d, F1, K1, x[11] ); 137 | R( d, e, a, b, c, F1, K1, x[12] ); 138 | R( c, d, e, a, b, F1, K1, x[13] ); 139 | R( b, c, d, e, a, F1, K1, x[14] ); 140 | R( a, b, c, d, e, F1, K1, x[15] ); 141 | R( e, a, b, c, d, F1, K1, M(16) ); 142 | R( d, e, a, b, c, F1, K1, M(17) ); 143 | R( c, d, e, a, b, F1, K1, M(18) ); 144 | R( b, c, d, e, a, F1, K1, M(19) ); 145 | R( a, b, c, d, e, F2, K2, M(20) ); 146 | R( e, a, b, c, d, F2, K2, M(21) ); 147 | R( d, e, a, b, c, F2, K2, M(22) ); 148 | R( c, d, e, a, b, F2, K2, M(23) ); 149 | R( b, c, d, e, a, F2, K2, M(24) ); 150 | R( a, b, c, d, e, F2, K2, M(25) ); 151 | R( e, a, b, c, d, F2, K2, M(26) ); 152 | R( d, e, a, b, c, F2, K2, M(27) ); 153 | R( c, d, e, a, b, F2, K2, M(28) ); 154 | R( b, c, d, e, a, F2, K2, M(29) ); 155 | R( a, b, c, d, e, F2, K2, M(30) ); 156 | R( e, a, b, c, d, F2, K2, M(31) ); 157 | R( d, e, a, b, c, F2, K2, M(32) ); 158 | R( c, d, e, a, b, F2, K2, M(33) ); 159 | R( b, c, d, e, a, F2, K2, M(34) ); 160 | R( a, b, c, d, e, F2, K2, M(35) ); 161 | R( e, a, b, c, d, F2, K2, M(36) ); 162 | R( d, e, a, b, c, F2, K2, M(37) ); 163 | R( c, d, e, a, b, F2, K2, M(38) ); 164 | R( b, c, d, e, a, F2, K2, M(39) ); 165 | R( a, b, c, d, e, F3, K3, M(40) ); 166 | R( e, a, b, c, d, F3, K3, M(41) ); 167 | R( d, e, a, b, c, F3, K3, M(42) ); 168 | R( c, d, e, a, b, F3, K3, M(43) ); 169 | R( b, c, d, e, a, F3, K3, M(44) ); 170 | R( a, b, c, d, e, F3, K3, M(45) ); 171 | R( e, a, b, c, d, F3, K3, M(46) ); 172 | R( d, e, a, b, c, F3, K3, M(47) ); 173 | R( c, d, e, a, b, F3, K3, M(48) ); 174 | R( b, c, d, e, a, F3, K3, M(49) ); 175 | R( a, b, c, d, e, F3, K3, M(50) ); 176 | R( e, a, b, c, d, F3, K3, M(51) ); 177 | R( d, e, a, b, c, F3, K3, M(52) ); 178 | R( c, d, e, a, b, F3, K3, M(53) ); 179 | R( b, c, d, e, a, F3, K3, M(54) ); 180 | R( a, b, c, d, e, F3, K3, M(55) ); 181 | R( e, a, b, c, d, F3, K3, M(56) ); 182 | R( d, e, a, b, c, F3, K3, M(57) ); 183 | R( c, d, e, a, b, F3, K3, M(58) ); 184 | R( b, c, d, e, a, F3, K3, M(59) ); 185 | R( a, b, c, d, e, F4, K4, M(60) ); 186 | R( e, a, b, c, d, F4, K4, M(61) ); 187 | R( d, e, a, b, c, F4, K4, M(62) ); 188 | R( c, d, e, a, b, F4, K4, M(63) ); 189 | R( b, c, d, e, a, F4, K4, M(64) ); 190 | R( a, b, c, d, e, F4, K4, M(65) ); 191 | R( e, a, b, c, d, F4, K4, M(66) ); 192 | R( d, e, a, b, c, F4, K4, M(67) ); 193 | R( c, d, e, a, b, F4, K4, M(68) ); 194 | R( b, c, d, e, a, F4, K4, M(69) ); 195 | R( a, b, c, d, e, F4, K4, M(70) ); 196 | R( e, a, b, c, d, F4, K4, M(71) ); 197 | R( d, e, a, b, c, F4, K4, M(72) ); 198 | R( c, d, e, a, b, F4, K4, M(73) ); 199 | R( b, c, d, e, a, F4, K4, M(74) ); 200 | R( a, b, c, d, e, F4, K4, M(75) ); 201 | R( e, a, b, c, d, F4, K4, M(76) ); 202 | R( d, e, a, b, c, F4, K4, M(77) ); 203 | R( c, d, e, a, b, F4, K4, M(78) ); 204 | R( b, c, d, e, a, F4, K4, M(79) ); 205 | 206 | /* update chainig vars */ 207 | hd->h0 += a; 208 | hd->h1 += b; 209 | hd->h2 += c; 210 | hd->h3 += d; 211 | hd->h4 += e; 212 | } 213 | 214 | 215 | /* Update the message digest with the contents 216 | * of INBUF with length INLEN. 217 | */ 218 | void 219 | sha1_write( SHA1_CONTEXT *hd, unsigned char *inbuf, size_t inlen) 220 | { 221 | if( hd->count == 64 ) { /* flush the buffer */ 222 | transform( hd, hd->buf ); 223 | burn_stack (88+4*sizeof(void*)); 224 | hd->count = 0; 225 | hd->nblocks++; 226 | } 227 | if( !inbuf ) 228 | return; 229 | if( hd->count ) { 230 | for( ; inlen && hd->count < 64; inlen-- ) 231 | hd->buf[hd->count++] = *inbuf++; 232 | sha1_write( hd, NULL, 0 ); 233 | if( !inlen ) 234 | return; 235 | } 236 | 237 | while( inlen >= 64 ) { 238 | transform( hd, inbuf ); 239 | hd->count = 0; 240 | hd->nblocks++; 241 | inlen -= 64; 242 | inbuf += 64; 243 | } 244 | burn_stack (88+4*sizeof(void*)); 245 | for( ; inlen && hd->count < 64; inlen-- ) 246 | hd->buf[hd->count++] = *inbuf++; 247 | } 248 | 249 | 250 | /* The routine final terminates the computation and 251 | * returns the digest. 252 | * The handle is prepared for a new cycle, but adding bytes to the 253 | * handle will the destroy the returned buffer. 254 | * Returns: 20 bytes representing the digest. 255 | */ 256 | 257 | void 258 | sha1_final(SHA1_CONTEXT *hd) 259 | { 260 | unsigned int t, msb, lsb; 261 | unsigned char *p; 262 | 263 | sha1_write(hd, NULL, 0); /* flush */; 264 | 265 | t = hd->nblocks; 266 | /* multiply by 64 to make a byte count */ 267 | lsb = t << 6; 268 | msb = t >> 26; 269 | /* add the count */ 270 | t = lsb; 271 | if( (lsb += hd->count) < t ) 272 | msb++; 273 | /* multiply by 8 to make a bit count */ 274 | t = lsb; 275 | lsb <<= 3; 276 | msb <<= 3; 277 | msb |= t >> 29; 278 | 279 | if( hd->count < 56 ) { /* enough room */ 280 | hd->buf[hd->count++] = 0x80; /* pad */ 281 | while( hd->count < 56 ) 282 | hd->buf[hd->count++] = 0; /* pad */ 283 | } 284 | else { /* need one extra block */ 285 | hd->buf[hd->count++] = 0x80; /* pad character */ 286 | while( hd->count < 64 ) 287 | hd->buf[hd->count++] = 0; 288 | sha1_write(hd, NULL, 0); /* flush */; 289 | memset(hd->buf, 0, 56 ); /* fill next block with zeroes */ 290 | } 291 | /* append the 64 bit count */ 292 | hd->buf[56] = msb >> 24; 293 | hd->buf[57] = msb >> 16; 294 | hd->buf[58] = msb >> 8; 295 | hd->buf[59] = msb ; 296 | hd->buf[60] = lsb >> 24; 297 | hd->buf[61] = lsb >> 16; 298 | hd->buf[62] = lsb >> 8; 299 | hd->buf[63] = lsb ; 300 | transform( hd, hd->buf ); 301 | burn_stack (88+4*sizeof(void*)); 302 | 303 | p = hd->buf; 304 | #ifdef BIG_ENDIAN_HOST 305 | #define X(a) do { *(u32*)p = hd->h##a ; p += 4; } while(0) 306 | #else /* little endian */ 307 | #define X(a) do { *p++ = hd->h##a >> 24; *p++ = hd->h##a >> 16; \ 308 | *p++ = hd->h##a >> 8; *p++ = hd->h##a; } while(0) 309 | #endif 310 | X(0); 311 | X(1); 312 | X(2); 313 | X(3); 314 | X(4); 315 | #undef X 316 | } 317 | -------------------------------------------------------------------------------- /sha1.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This file can be used to work with the SHA1 GnuPG 3 | * implementation without having any other includes 4 | */ 5 | 6 | #ifndef _SHA1_H_ 7 | #define _SHA1_H_ 8 | 9 | typedef struct { 10 | unsigned int h0,h1,h2,h3,h4; 11 | unsigned int nblocks; 12 | unsigned char buf[64]; 13 | int count; 14 | } SHA1_CONTEXT; 15 | 16 | void sha1_init( SHA1_CONTEXT *hd ); 17 | void sha1_write( SHA1_CONTEXT *hd, unsigned char *inbuf, size_t inlen ); 18 | void sha1_final( SHA1_CONTEXT *hd ); 19 | 20 | #endif 21 | -------------------------------------------------------------------------------- /staticVals.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Triforce Header Patcher 3 | * Copyright (C) 2015 FIX94 4 | * 5 | * This program is free software; you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation; either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program; if not, see . 17 | */ 18 | #ifndef _STATICVALS_H_ 19 | #define _STATICVALS_H_ 20 | 21 | /* All the new game headers */ 22 | 23 | static const unsigned char axHdr[0x40] = { /* GFZJ8P - F-Zero AX */ 24 | 0x47, 0x46, 0x5A, 0x4A, 0x38, 0x50, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 25 | 0x00, 0x00, 0x00 ,0x00, 0x00, 0x00, 0x00, 0x00, 0xC2, 0x33, 0x9F, 0x3D, 0x46, 0x2D, 0x5A, 0x65, 0x72, 0x6F, 0x20, 0x41, 0x58, 0x00, 0x00, 0x00, 26 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 27 | }; 28 | 29 | static const unsigned char gpHdr[0x40] = { /* GGPE01 - Mario Kart Arcade GP */ 30 | 0x47, 0x47, 0x50, 0x45, 0x30, 0x31, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 31 | 0x00, 0x00, 0x00 ,0x00, 0x00, 0x00, 0x00, 0x00, 0xC2, 0x33, 0x9F, 0x3D, 0x4D, 0x61, 0x72, 0x69, 0x6F, 0x20, 0x4B, 0x61, 0x72, 0x74, 0x20, 0x41, 32 | 0x72, 0x63, 0x61, 0x64, 0x65, 0x20, 0x47, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 33 | }; 34 | 35 | static const unsigned char gp2Hdr[0x40] = { /* GGPE02 - Mario Kart Arcade GP 2 */ 36 | 0x47, 0x47, 0x50, 0x45, 0x30, 0x32, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 37 | 0x00, 0x00, 0x00 ,0x00, 0x00, 0x00, 0x00, 0x00, 0xC2, 0x33, 0x9F, 0x3D, 0x4D, 0x61, 0x72, 0x69, 0x6F, 0x20, 0x4B, 0x61, 0x72, 0x74, 0x20, 0x41, 38 | 0x72, 0x63, 0x61, 0x64, 0x65, 0x20, 0x47, 0x50, 0x20, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 39 | }; 40 | 41 | static const unsigned char gpbHdr[0x40] = { /* GPBJ8P - Gekitou Pro Yakyuu */ 42 | 0x47, 0x50, 0x42, 0x4A, 0x38, 0x50, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 43 | 0x00, 0x00, 0x00 ,0x00, 0x00, 0x00, 0x00, 0x00, 0xC2, 0x33, 0x9F, 0x3D, 0x47, 0x65, 0x6B, 0x69, 0x74, 0x6F, 0x75, 0x20, 0x50, 0x72, 0x6F, 0x20, 44 | 0x59, 0x61, 0x6B, 0x79, 0x75, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 45 | }; 46 | 47 | static const unsigned char vs3v02japHdr[0x40] = { /* GVS32J - Virtua Striker 3 Ver. 2002 */ 48 | 0x47, 0x56, 0x53, 0x33, 0x32, 0x4A, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 49 | 0x00, 0x00, 0x00 ,0x00, 0x00, 0x00, 0x00, 0x00, 0xC2, 0x33, 0x9F, 0x3D, 0x56, 0x69, 0x72, 0x74, 0x75, 0x61, 0x20, 0x53, 0x74, 0x72, 0x69, 0x6B, 50 | 0x65, 0x72, 0x20, 0x33, 0x20, 0x56, 0x65, 0x72, 0x2E, 0x20, 0x32, 0x30, 0x30, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 51 | }; 52 | 53 | static const unsigned char vs3v02expHdr[0x40] = { /* GVS32E - Virtua Striker 3 Ver. 2002 */ 54 | 0x47, 0x56, 0x53, 0x33, 0x32, 0x45, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 55 | 0x00, 0x00, 0x00 ,0x00, 0x00, 0x00, 0x00, 0x00, 0xC2, 0x33, 0x9F, 0x3D, 0x56, 0x69, 0x72, 0x74, 0x75, 0x61, 0x20, 0x53, 0x74, 0x72, 0x69, 0x6B, 56 | 0x65, 0x72, 0x20, 0x33, 0x20, 0x56, 0x65, 0x72, 0x2E, 0x20, 0x32, 0x30, 0x30, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 57 | }; 58 | 59 | static const unsigned char vs4japHdr[0x40] = { /* GVS45J - Virtua Striker 4 */ 60 | 0x47, 0x56, 0x53, 0x34, 0x35, 0x4A, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 61 | 0x00, 0x00, 0x00 ,0x00, 0x00, 0x00, 0x00, 0x00, 0xC2, 0x33, 0x9F, 0x3D, 0x56, 0x69, 0x72, 0x74, 0x75, 0x61, 0x20, 0x53, 0x74, 0x72, 0x69, 0x6B, 62 | 0x65, 0x72, 0x20, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 63 | }; 64 | 65 | static const unsigned char vs4expHdr[0x40] = { /* GVS45E - Virtua Striker 4 */ 66 | 0x47, 0x56, 0x53, 0x34, 0x35, 0x45, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 67 | 0x00, 0x00, 0x00 ,0x00, 0x00, 0x00, 0x00, 0x00, 0xC2, 0x33, 0x9F, 0x3D, 0x56, 0x69, 0x72, 0x74, 0x75, 0x61, 0x20, 0x53, 0x74, 0x72, 0x69, 0x6B, 68 | 0x65, 0x72, 0x20, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 69 | }; 70 | 71 | static const unsigned char vs4v06japHdr[0x40] = { /* GVS46J - Virtua Striker 4 Ver. 2006 */ 72 | 0x47, 0x56, 0x53, 0x34, 0x36, 0x4A, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 73 | 0x00, 0x00, 0x00 ,0x00, 0x00, 0x00, 0x00, 0x00, 0xC2, 0x33, 0x9F, 0x3D, 0x56, 0x69, 0x72, 0x74, 0x75, 0x61, 0x20, 0x53, 0x74, 0x72, 0x69, 0x6B, 74 | 0x65, 0x72, 0x20, 0x34, 0x20, 0x56, 0x65, 0x72, 0x2E, 0x20, 0x32, 0x30, 0x30, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 75 | }; 76 | 77 | static const unsigned char vs4v06expHdr[0x40] = { /* GVS46E - Virtua Striker 4 Ver. 2006 */ 78 | 0x47, 0x56, 0x53, 0x34, 0x36, 0x45, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 79 | 0x00, 0x00, 0x00 ,0x00, 0x00, 0x00, 0x00, 0x00, 0xC2, 0x33, 0x9F, 0x3D, 0x56, 0x69, 0x72, 0x74, 0x75, 0x61, 0x20, 0x53, 0x74, 0x72, 0x69, 0x6B, 80 | 0x65, 0x72, 0x20, 0x34, 0x20, 0x56, 0x65, 0x72, 0x2E, 0x20, 0x32, 0x30, 0x30, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 81 | }; 82 | 83 | 84 | /* All the SHA1 checksums from 0x40 to (end of file) */ 85 | 86 | static const unsigned char ax_4c_chksum[20] = { 87 | 0x88, 0x28, 0x04, 0x91, 0xa6, 0x35, 0x4a, 0x54, 0xd6, 0x84, 0xe0, 0x5c, 0x76, 0x46, 0xb5, 0x8a, 0x6b, 0x0f, 0x49, 0x30 88 | }; 89 | 90 | static const unsigned char ax_4d_chksum[20] = { 91 | 0x79, 0x0d, 0x5c, 0x49, 0x1a, 0x6e, 0x03, 0x18, 0x00, 0x4f, 0x2a, 0xa0, 0xee, 0x80, 0x89, 0xa6, 0xe2, 0xac, 0x24, 0x6f 92 | }; 93 | 94 | static const unsigned char ax_4e_chksum[20] = { 95 | 0x51, 0x75, 0x8c, 0x15, 0x5d, 0x96, 0x7a, 0x57, 0x16, 0xd3, 0xd2, 0xc3, 0x95, 0x07, 0x00, 0x0c, 0xc7, 0x1c, 0xea, 0xb1 96 | }; 97 | 98 | static const unsigned char gp_feb_14_06_chksum[20] = { 99 | 0xe6, 0xea, 0x1c, 0x83, 0x14, 0xa7, 0x34, 0x66, 0x16, 0xf7, 0x4d, 0x69, 0xec, 0x21, 0xae, 0x40, 0xf1, 0x2f, 0xb9, 0x5d 100 | }; 101 | 102 | static const unsigned char gp2_feb_7_07_chksum[20] = { 103 | 0x9e, 0x1d, 0x69, 0xfb, 0x7e, 0xcc, 0x00, 0xc7, 0xc9, 0x27, 0xd4, 0xb4, 0xd8, 0x11, 0xe5, 0x0b, 0x58, 0x50, 0x90, 0x55 104 | }; 105 | 106 | static const unsigned char gpb_8b_chksum[20] = { 107 | 0xa5, 0x6b, 0x24, 0x7b, 0x95, 0x19, 0x9b, 0xc5, 0x29, 0x49, 0xc3, 0x73, 0x8b, 0xdc, 0x08, 0xb9, 0xb7, 0x05, 0x39, 0x45 108 | }; 109 | 110 | static const unsigned char gpb_8c_chksum[20] = { 111 | 0xd0, 0x45, 0x22, 0xf9, 0x54, 0xec, 0x85, 0x90, 0xc0, 0x98, 0x2f, 0x57, 0x1b, 0xb9, 0xbc, 0x3c, 0x15, 0x38, 0xe4, 0xf5 112 | }; 113 | 114 | static const unsigned char vs3v02jap_1_chksum[20] = { 115 | 0xb3, 0x63, 0x6a, 0x29, 0x37, 0x08, 0x24, 0x69, 0xf1, 0x30, 0x5b, 0x4c, 0xf7, 0x60, 0xb4, 0x8d, 0x5c, 0x78, 0x43, 0xa3 116 | }; 117 | 118 | static const unsigned char vs3v02exp_2_chksum[20] = { 119 | 0x19, 0x9f, 0x92, 0x4f, 0x79, 0x97, 0x43, 0xa8, 0x55, 0x7d, 0x94, 0x44, 0x62, 0x32, 0xdf, 0x04, 0x25, 0x14, 0x6f, 0xaf 120 | }; 121 | 122 | static const unsigned char vs4jap_13e_chksum[20] = { 123 | 0x30, 0xc7, 0xb0, 0xe8, 0x30, 0x05, 0xd6, 0x94, 0x69, 0x0e, 0xb1, 0x52, 0x36, 0xfb, 0x61, 0x6a, 0xf0, 0x67, 0x92, 0xda 124 | }; 125 | 126 | static const unsigned char vs4exp_14_chksum[20] = { 127 | 0x50, 0xd5, 0xd7, 0x5c, 0xd0, 0x10, 0x3f, 0x49, 0x05, 0x0f, 0x2b, 0x76, 0x36, 0x11, 0x78, 0xb1, 0x4f, 0x08, 0x03, 0x5e 128 | }; 129 | 130 | static const unsigned char vs4exp_15_chksum[20] = { 131 | 0xe6, 0x38, 0xfc, 0x44, 0xb1, 0xaa, 0x16, 0x85, 0xef, 0xf0, 0x75, 0x16, 0x6a, 0xf1, 0x65, 0x81, 0xec, 0xe0, 0xec, 0x5b 132 | }; 133 | 134 | static const unsigned char vs4v06jap_20b_chksum[20] = { 135 | 0xe4, 0x64, 0xa2, 0xe9, 0xd6, 0xd1, 0xfb, 0xa5, 0x32, 0x67, 0xed, 0x71, 0x55, 0x8b, 0x1e, 0x57, 0x2b, 0x2e, 0x6d, 0x87 136 | }; 137 | 138 | static const unsigned char vs4v06jap_20d_chksum[20] = { 139 | 0x89, 0xe4, 0x4b, 0x30, 0xbe, 0x49, 0x14, 0xe7, 0x6d, 0x42, 0x44, 0xc0, 0xf9, 0xa7, 0xbe, 0xc1, 0x1d, 0x05, 0x30, 0x96 140 | }; 141 | 142 | static const unsigned char vs4v06exp_21_chksum[20] = { 143 | 0xcc, 0x59, 0xe5, 0xdc, 0xec, 0xdd, 0x42, 0x5e, 0xbb, 0xc2, 0x72, 0x7a, 0x3c, 0xc7, 0xcd, 0xb4, 0x21, 0x61, 0xd9, 0x65 144 | }; 145 | 146 | 147 | /* This is a well known file error, easy to fix */ 148 | 149 | static const unsigned char bad_tex_sw_yuk[0x14] = { 150 | 0x70, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 151 | }; 152 | 153 | static const unsigned char good_tex_sw_yuk[0x14] = { 154 | 0x82, 0xBB, 0x57, 0x55, 0xCE, 0x7A, 0xB2, 0x60, 0x55, 0x70, 0x40, 0xA3, 0xF4, 0xC0, 0xCA, 0xC0, 0x60, 0x78, 0x5E, 0x57 155 | }; 156 | 157 | #endif 158 | --------------------------------------------------------------------------------