├── COPYRIGHT ├── README ├── dork └── etc ├── COPYRIGHT ├── dork.conf ├── keywords.conf ├── mysterious.conf ├── preset.conf └── tld.conf /COPYRIGHT: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | ______________________________________________________________ 2 | _____ _ ___ _ __ _ _ 3 | /__ \ |__ ___ / \___ _ __| | __ / _(_) __| | ___ 4 | / /\/ '_ \ / _ \ / /\ / _ \| '__| |/ / \ \| |/ _` |/ _ \ 5 | / / | | | | __/ / /_// (_) | | | < _\ \ | (_| | __/ 6 | \/ |_|_|_|\___| /___,' \___/|_| |_|\_\ \__/_|\__,_|\___| 7 | ___ / _| / _ \___ ___ __ _| | ___ 8 | / _ \| |_ / /_\/ _ \ / _ \ / _` | |/ _ \ 9 | | (_) | _| / /_\\ (_) | (_) | (_| | | __/ 10 | \___/|_| \____/\___/ \___/ \__, |_|\___| 11 | |___/ 12 | ______________________________________________________________ 13 | The Dork Side of GOOGLE 1.2 14 | (C) 2014 mes3hacklab.org 15 | 16 | This program comes with ABSOLUTELY NO WARRANTY. 17 | This is free software, and you are welcome to redistribute it 18 | under certain conditions; Use -w for details. 19 | 20 | dork [-s ] [-st ] [-n ] [-q] [-h] [-nb] 21 | [-nc] [-ng] [-r] [-sw] [--site ] [-u] [-w] 22 | [-b3 ] [-b3n ] [-P ] 23 | [-g ] [-gn ] [-b3o] 24 | 25 | dork --list-tld [-q] 26 | dork --list-shell [-q] 27 | dork --list-mys [-q] 28 | dork --list-pre [-q] 29 | dork --list-gen [-q] 30 | 31 | -s Set the shell to search. 32 | -st Set the TLD to search. 33 | --site Specify the website. 34 | -n Set the number of dork to generate. 35 | -q Don't print the banner. 36 | -h Help. 37 | -ng Do not use shell-governmental 38 | organizations. 39 | -sw Shuffle the dorks. 40 | -r Sets everything to random. 41 | -nb Generic dorks. 42 | -nc Do not use secondary search keywords. 43 | --list-tld Print the list of TLDs. 44 | --list-shell Print the list of shells. 45 | --list-mys Print the list of charsets. 46 | --list-pre Print the list of presets. 47 | --list-gen Print the list of general words 48 | collections. 49 | -g Use general words collection. 50 | -gn Nuumber of general words to use. 51 | -P Use a preset dork parameters. 52 | -u Use inurl instead site in TLD search. 53 | -b3 Insert some characters (it may work 54 | feeling lucky?). 55 | -b3n Number of strange characters. 56 | -b3o Uuse strange characters as "or" operation. 57 | -w Show license. 58 | 59 | Available presets: 60 | etnic Search the etnic shells. 61 | all Search all 62 | apache Increase search on apache. 63 | file Increase search on binary files. 64 | 65 | Available shells: 66 | 1n73ction 67 | r57shell 68 | c4uR 69 | CempLe 70 | Locus7Shell 71 | GNYShell 72 | merdeka 73 | santana 74 | CyberAnarchy 75 | HMBr57 76 | indonesian 77 | c99 78 | default 79 | 80 | Available charsets: 81 | 336 latin 82 | 2717 all 83 | 144 greek 84 | 256 ciryllic 85 | 96 armenian 86 | 112 herbew 87 | 1085 arabic 88 | 80 syriac 89 | 128 bengali 90 | 128 thai 91 | 48 currency 92 | 96 geometric 93 | 208 japan 94 | 95 | Available word collections: 96 | headers Search via file contents. 97 | apache Search by configuration parameters. 98 | shells Generic shells useful words. 99 | all All words! 100 | -------------------------------------------------------------------------------- /dork: -------------------------------------------------------------------------------- 1 | #!/usr/bin/php 2 | $li) { 72 | list($li)=explode('#',$li,2); 73 | $li=trim($li,"\r\n"); 74 | $li=str_replace("\t",' ',$li); 75 | $x=trim($li,' '); 76 | if ($x!='' && $x[0]=='@') { 77 | $x=str_replace('-','',$x); 78 | $x=substr($x,1); 79 | $idx = $x.'-'.$idc; 80 | $shl[$x]=true; 81 | continue; 82 | } 83 | 84 | if ($x=='' AND $ph==1) { 85 | $ph=0; 86 | $src[$idx] = array( 87 | 'a' => $cur , 88 | 'b' => $tmp , 89 | 'c' => $tmp2 ) 90 | ; 91 | $idc++; 92 | $idx=$idc; 93 | continue; 94 | } 95 | 96 | if ($li!='' AND $li[0]==' ') { 97 | if ($ph==0) die("Line: ".($num+1)." Error!\n"); 98 | $y=trim($li,' '); 99 | if ($y[0]=='&') $tmp2[] = trim(substr($y,1),' '); else $tmp[] = $y; 100 | } else { 101 | if ($ph!=0) die("Line: ".($num+1)." Error!\n"); 102 | $ph=1; 103 | $cur = trim($li,' '); 104 | $tmp=array(); 105 | $tmp2=array(); 106 | } 107 | } 108 | 109 | $tld=array(); 110 | $lst = file('etc/tld.conf') OR die("TLD file error\n"); 111 | foreach($lst as $num => $li) { 112 | $li=trim($li,"\t\r\n "); 113 | $li=str_replace("\t",' ',$li); 114 | list($li)=explode('#',$li,2); 115 | if ($li=='') continue; 116 | while(strpos($li,' ')!==false) $li=str_replace(' ',' ',$li); 117 | list($a,$b)=explode(' ',$li,2); 118 | $a=strtolower($a); 119 | $c=trim($a,'.'); 120 | if ($a[0]=='.') $a="gov".$a; 121 | $tld[$c]=array( 122 | 't' => $a , 123 | 's' => $b ) 124 | ; 125 | } 126 | 127 | $tmp = file('etc/mysterious.conf') OR die("Error in mysterious.conf\n"); 128 | $mys=array(); 129 | $cur='all'; 130 | foreach($tmp as $nn => $li) { 131 | if ($nn==0) continue; 132 | $li=trim($li,"\t\r\n "); 133 | list($li)=explode('#',$li,2); 134 | if ($li=='') continue; 135 | if ($li[0]=='@') { 136 | $cur=substr($li,1); 137 | if (!isset($mys[$cur])) $mys[$cur] = array(); 138 | continue; 139 | } 140 | $x=ord($li[0]); 141 | if ($x<127) continue; 142 | $mys[$cur][] = $li; 143 | $mys['all'][] = $li; 144 | } 145 | 146 | $tmp = file('etc/preset.conf') OR die("Error in preset.conf\n"); 147 | $pre = array(); 148 | 149 | foreach($tmp as $nn => $li) { 150 | $li=trim($li,"\t\r\n "); 151 | $li=str_replace("\t",' ',$li); 152 | while(strpos($li,' ')!==false) $li=str_replace(' ',' ',$li); 153 | $li=trim($li,' '); 154 | if ($li=='') continue; 155 | @list($li,$cm)=explode('#',$li,2); 156 | $li=trim($li,' '); 157 | if ($li=='') continue; 158 | list($a,$b)=explode(' ',$li,2); 159 | $a=strtolower($a); 160 | if (isset($pre[$a])) $a=$a.count($pre); 161 | $b=trim($b,' '); 162 | $pre[$a] = array( 163 | false , 164 | explode(' ',$b) , 165 | trim($cm,' ') ) 166 | ; 167 | 168 | } 169 | 170 | $tmp = file('etc/keywords.conf') OR die("Error in keywords.conf\n"); 171 | $kwo = array(); 172 | foreach($tmp as $nn => $li) { 173 | $li=trim($li,"\t\r\n "); 174 | $li=str_replace("\t",' ',$li); 175 | while(strpos($li,' ')!==false) $li=str_replace(' ',' ',$li); 176 | $li=trim($li,' '); 177 | if ($li=='') continue; 178 | @list($li,$cm)=explode('#',$li,2); 179 | $li=trim($li,' '); 180 | if ($li=='') continue; 181 | list($a,$b)=explode(' ',$li,2); 182 | $a=strtolower($a); 183 | if (isset($kwo[$a])) $a=$a.count($kwo); 184 | $b = explode('|',$b); 185 | $c=array(); 186 | foreach($b as $k => $v) { 187 | $v=trim($v,' '); 188 | if ($v[0]!='$') { 189 | $c[$k]=$v; 190 | continue; 191 | } 192 | $v = substr($v,1); 193 | if (!isset($kwo[$v])) die("Error in keywords.conf colleciton $v not defined before $a.\n"); 194 | $c = array_merge($c,$kwo[$v][0]); 195 | } 196 | 197 | $kwo[$a] = array( 198 | $c , 199 | trim($cm,' ') ) 200 | ; 201 | 202 | } 203 | 204 | $par = array( 205 | 's' => "" , 206 | 'st' => "" , 207 | 'n' => 1 , 208 | '-list-tld' => false , 209 | '-list-shell' => false , 210 | '-list-mys' => false , 211 | '-list-pre' => false , 212 | '-list-gen' => false , 213 | '-site' => "" , 214 | 'q' => false , 215 | 'h' => false , 216 | 'nb' => false , 217 | 'nc' => false , 218 | 'ng' => false , 219 | 'r' => false , 220 | 'u' => false , 221 | 'w' => false , 222 | 'g' => "" , 223 | 'gn' => 2 , 224 | 'b3' => "" , 225 | 'b3n' => 3 , 226 | 'b3o' => false , 227 | 'sw' => false ) 228 | ; 229 | 230 | parsePar($par,$argv,$pre,true); 231 | 232 | if ($par['q']==false) { 233 | ?> 234 | ______________________________________________________________ 235 | _____ _ ___ _ __ _ _ 236 | /__ \ |__ ___ / \___ _ __| | __ / _(_) __| | ___ 237 | / /\/ '_ \ / _ \ / /\ / _ \| '__| |/ / \ \| |/ _` |/ _ \ 238 | / / | | | | __/ / /_// (_) | | | < _\ \ | (_| | __/ 239 | \/ |_|_|_|\___| /___,' \___/|_| |_|\_\ \__/_|\__,_|\___| 240 | ___ / _| / _ \___ ___ __ _| | ___ 241 | / _ \| |_ / /_\/ _ \ / _ \ / _` | |/ _ \ 242 | | (_) | _| / /_\\ (_) | (_) | (_| | | __/ 243 | \___/|_| \____/\___/ \___/ \__, |_|\___| 244 | |___/ 245 | ______________________________________________________________ 246 | The Dork Side of GOOGLE 1.2 247 | (C) 2014 mes3hacklab.org 248 | 249 | 265 | dork [-s ] [-st ] [-n ] [-q] [-h] [-nb] 266 | [-nc] [-ng] [-r] [-sw] [--site ] [-u] [-w] 267 | [-b3 ] [-b3n ] [-P ] 268 | [-g ] [-gn ] [-b3o] 269 | 270 | dork --list-tld [-q] 271 | dork --list-shell [-q] 272 | dork --list-mys [-q] 273 | dork --list-pre [-q] 274 | dork --list-gen [-q] 275 | 276 | -s Set the shell to search. 277 | -st Set the TLD to search. 278 | --site Specify the website. 279 | -n Set the number of dork to generate. 280 | -q Don't print the banner. 281 | -h Help. 282 | -ng Do not use shell-governmental 283 | organizations. 284 | -sw Shuffle the dorks. 285 | -r Sets everything to random. 286 | -nb Generic dorks. 287 | -nc Do not use secondary search keywords. 288 | --list-tld Print the list of TLDs. 289 | --list-shell Print the list of shells. 290 | --list-mys Print the list of charsets. 291 | --list-pre Print the list of presets. 292 | --list-gen Print the list of universal words. 293 | -g Use the universal words. 294 | -gn Number of universal words to use. 295 | -P Use preset dork parameters. 296 | -u Use inurl instead site in TLD search. 297 | -b3 Insert some characters (it may work, 298 | feeling lucky?). 299 | -b3n Number of strange characters. 300 | -b3o Use "or" between character and character. 301 | -w Show license. 302 | 303 | $v) echo "$k\t{$v['t']}\t{$v['s']}\n"; 309 | exit; 310 | } 311 | 312 | if ($par['-list-mys']) { 313 | foreach($mys as $k => $v) echo count($v)."\t$k\n"; 314 | exit; 315 | } 316 | 317 | if ($par['-list-shell']) { 318 | foreach($shl as $k => $v) echo "$k\n"; 319 | exit; 320 | } 321 | 322 | if ($par['-list-pre']) { 323 | foreach($pre as $k => $v) { 324 | echo str_pad($k,19,' ').' '; 325 | $x = wordwrap($v[2],50,"\n\t"); 326 | echo trim($x,"\n\t ")."\n"; 327 | } 328 | exit; 329 | } 330 | 331 | if ($par['-list-gen']) { 332 | foreach($kwo as $k => $v) { 333 | echo str_pad($k,19,' ').' '; 334 | $x = wordwrap($v[1],50,"\n\t"); 335 | echo trim($x,"\n\t ")."\n"; 336 | } 337 | exit; 338 | } 339 | 340 | if ($par['n']<1) exit; 341 | 342 | if ($par['s']!='') { 343 | $tmp=array(); 344 | $par['s']=strtolower($par['s']); 345 | foreach($src as $k => $v) { 346 | if (strpos($k,'-')===false) continue; 347 | list($a,$b)=explode('-',$k,2); 348 | if (strtolower($a)==$par['s']) $tmp[$k]=$v; 349 | } 350 | $src=$tmp; 351 | $tmp=''; 352 | if (count($src)==0) die("Shell without dork {$par['s']}\n"); 353 | } 354 | 355 | $tmp = array(); 356 | foreach($src as $v) $tmp[] = $v; 357 | $src=$tmp; 358 | $tmp=''; 359 | $maxDork = count($src); 360 | 361 | $FF= array( 362 | 'b' => true , 363 | 'c' => true ) 364 | ; 365 | 366 | @mt_srand(microtime(true)); 367 | 368 | $eso=false; 369 | if ($par['b3']!="") { 370 | if (!isset($mys[$par['b3']])) die("Unknown esoteric function!!\n"); 371 | $eso = $mys[$par['b3']]; 372 | } 373 | 374 | $ugw=false; 375 | if ($par['g']!="") { 376 | if (!isset($kwo[$par['g']])) die("Unknown words collection function!!\n"); 377 | $ugw = $kwo[$par['g']][0]; 378 | } 379 | 380 | $pr0 = $par['u'] ? "site:" : "inurl:" ; 381 | 382 | for ($don=0;$don<$par['n'];$don++) { 383 | if ($par['st']!='' AND $par['-site']=='') { 384 | if (!isset($tld[$par['st']])) die("Unknown TLD: {$par['st']}\n"); 385 | if ($par['ng']) $st=$pr0.$par['st'].' '; else $st=$pr0.$tld[$par['st']]['t'].' '; 386 | } else $st=''; 387 | 388 | if ($par['-site']!='') $st="site:".$par['-site'].' '; 389 | 390 | if ($maxDork==1) $r=0; else $r=mt_rand(0,$maxDork-1); 391 | $cur = $src[$r]; 392 | $st.=$cur['a'].' '; 393 | 394 | if ($par['r']) { 395 | $FF['a'] = mt_rand(0,10)>5; 396 | $FF['b'] = mt_rand(0,10)>5; 397 | $par['sw']=true; 398 | } 399 | 400 | foreach(array('b','c') as $i) { 401 | if ($par['n'.$i]) continue; 402 | if ($FF[$i]==false) continue; 403 | 404 | $cx = count($cur[$i]); 405 | if ($cx>0) { 406 | if ($cx==1) $s=0; else $s = mt_rand(0,$cx-1); 407 | $st.=$cur[$i][$s].' '; 408 | } 409 | } 410 | 411 | if ($ugw) { 412 | shuffle($ugw); 413 | $m = count($ugw)-1; 414 | if ($par['gn']<2) $par['gn']=2; 415 | if ($par['gn']>$m) $par['gn']=$m; 416 | 417 | $x=array(); 418 | $a=0; 419 | 420 | foreach($ugw as $y) { 421 | $x[] = $y; 422 | if ($a>=$par['gn']) break; 423 | $a++; 424 | } 425 | 426 | $x='( '.implode(' | ',$x).' ) '; 427 | $x=str_replace(' ',chr(255),$x); 428 | $st.=$x; 429 | $x=''; 430 | } 431 | 432 | if ($eso) { 433 | if ($par['b3o']) { 434 | $x=array(); 435 | $m = count($eso); 436 | for ($a=0;$a<$par['b3n'];$a++) $x[]=chr(255).$eso[mt_rand(0,$m-1)].chr(255); 437 | $st.='('.chr(255).implode(chr(255).'|'.chr(255),$x).chr(255).')'.chr(255).' '; 438 | } else { 439 | $m = count($eso); 440 | for ($a=0;$a<$par['b3n'];$a++) { 441 | $st.=chr(255).$eso[mt_rand(0,$m-1)].chr(255).' '; 442 | } 443 | } 444 | } 445 | 446 | $st=trim($st,' '); 447 | if ($par['sw']) { 448 | $st=explode(' ',$st); 449 | shuffle($st); 450 | $st=implode(' ',$st); 451 | } 452 | $st=str_replace(chr(255),' ',$st); 453 | echo "$st\n"; 454 | } 455 | 456 | ?> 457 | -------------------------------------------------------------------------------- /etc/COPYRIGHT: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /etc/dork.conf: -------------------------------------------------------------------------------- 1 | "gb" "server.ip" 2 | "your.ip" 3 | "disk.free" "yer_ip" 4 | 5 | "gb" "disk.free" 6 | "yer_ip" 7 | 8 | inurl:php intext:free | gb intext:space | disk "your.ip" "server.ip" 9 | "on" "off" 10 | 11 | inurl:php intext:free | gb intext:space | disk "your.ip" "server.ip" 12 | "on" "off" "php" intext:mysql 13 | & mssql 14 | & postgresql 15 | & oracle 16 | & intext:windows | linux 17 | 18 | inurl:php "gb" "server.ip" "your.ip" 19 | "Safe.Mode" 20 | "cURL" 21 | "PHP-Proxy" 22 | "Self.Remove" 23 | "Locus7Shell" 24 | "Your.ip.Surving" 25 | "Your.Real.ip" 26 | "X.1N73C" 27 | "S1T1.B4RC0D3" 28 | & drwxrwxrwx 29 | & "kernel.info" 30 | & "make.dir" 31 | & "PHP Safe-Mode Bypass" 32 | & "upload" 33 | & "owner.group" 34 | 35 | @1n73ction 36 | inurl:php "gb" "server.ip" "your.ip" "System.OS" 37 | "Software" 38 | "Safemode" 39 | "Disabled.Functions" 40 | "X.1N73CT" 41 | "S1T1.B4RC0D3" 42 | & "Oracle" 43 | & "MSSQL" 44 | & "MySQL" 45 | & "Perl" 46 | & "Python" 47 | & "Ruby" 48 | & "Java" 49 | & "GCC" 50 | & "cURL" 51 | & "WGet" 52 | 53 | @r57shell 54 | inurl:php "gb" "server.ip" "your.ip" "r57shell" 55 | "Free.space" 56 | "Total.space" 57 | "Useful" 58 | & "phpinfo" 59 | & "php.ini" 60 | & "cpu" 61 | & "mem" 62 | & "syslog" 63 | & "resolv" 64 | & "hosts" 65 | & "shadow" 66 | & "passwd" 67 | & "procinfo" 68 | & "dmesg" 69 | & "vmstat" 70 | & "lspci" 71 | & "lsdev" 72 | & "interrupts" 73 | & "realise1" 74 | & "realise2" 75 | & "lsattr" 76 | & "Eval PHP code" 77 | 78 | @c4uR 79 | inurl:php "gb" "server.ip" "your.ip" "c4uR" 80 | "Bind.Port" 81 | "COMMANDS.PANEL" 82 | "Backdoor" 83 | 84 | @CempLe 85 | inurl:php "gb" "server.ip" "your.ip" 86 | "PHP.Info" 87 | "Proses" 88 | "mysQL" 89 | "Backdoor" 90 | "Backconnect" 91 | "cPanel" 92 | "Scan" 93 | 94 | @Locus7Shell 95 | inurl:php "gb" "server.ip" "your.ip" "Locus7Shell" 96 | uname 97 | "Safe.mode" 98 | "Useful.Commands" 99 | "Kernel.Info" 100 | 101 | @GNYShell 102 | inurl:php "your.ip" "server.ip" 103 | "GNY.Shell" "Edition" "Generated.in" 104 | "fud" "by" "alb0wz" 105 | "enter" "kernel.info" "functions" "make" "dir" "aliases" 106 | 107 | inurl:php "* safe.mode bypass" "read file" "directory listing" 108 | 109 | @merdeka 110 | "server.ip" "Indonesia.Raya" intitle:"zetta" 111 | & "Merdeka" 112 | & "milw0rm.it" 113 | & "Toolz" 114 | & "Self.Kill" 115 | & "COMMANDS.PANEL" 116 | & "Gorontalo" 117 | 118 | @santana 119 | "santana.SHeLL" "server.ip" "your.ip" "freespace" 120 | "Enumerate" 121 | "Gorontalo.HCG" 122 | "Directory.List" 123 | "user.id" 124 | & "BackDor" "psyBNC" "Eggdrop" 125 | & "BackDor" "psyBNC" 126 | & "COMMANDS.PANEL" 127 | 128 | @CyberAnarchy 129 | "COMMANDS.PANEL" "kernel.info" "CyberAnarchy" 130 | & "SAFE MODE is" 131 | & "FTP Buteforcer" "Security Info" 132 | & "PHP-Code" "Encoder" 133 | & "Backdoor" "Back-Connection" 134 | & "milw0rm.it" 135 | & pcntl_alarm 136 | & pcntl_fork 137 | & pcntl_waitpid 138 | & pcntl_wait 139 | & pcntl_wifexited 140 | & pcntl_wifstopped 141 | & pcntl_wifsignaled 142 | & pcntl_wexitstatus 143 | & pcntl_wtermsig 144 | & pcntl_wstopsig 145 | & pcntl_signal 146 | & pcntl_signal_dispatch 147 | & pcntl_get_last_error 148 | & pcntl_strerror 149 | & phpinfo 150 | 151 | @HMBr57 152 | "HMBr57" "your.ip" "server.ip" 153 | "Safe_mode_exec_dir" 154 | "Safe_mode_include_dir" 155 | & "phpinfo" "phpini" "cpu" "mem" "syslog" 156 | & "resolv" "hosts" 157 | & "shadow" "passwd" 158 | & "tmp" "delete" 159 | & "procinfo" "version" 160 | & "free" "dmesg" 161 | & "vmstat" "lspci" 162 | & "lsdev" "sbin" 163 | & "interrupts" "realise1" 164 | & "realise2" "lsattr" 165 | & "ifconfig" 166 | & "fstab" 167 | 168 | @indonesian 169 | "server.ip" "free.disk" "safemode" "Indonesian.Cyber.Army" 170 | "your.ip" "cgi.telnet" 171 | "your.ip" 172 | "cgi.telnet" 173 | "mass.deface" 174 | "joomla.respass" 175 | "zone.h" 176 | "Mr.Gandrunx" 177 | & "disabled.functions" 178 | & "nobody" 179 | & "sqli.scanner" 180 | & "joomla" 181 | & "script.encode" 182 | 183 | @c99 184 | "C99Shell" "Safe.mode" 185 | "free" "GB" "FTP.brute" "Command.execute" 186 | "free" "GB" 187 | & "Make.Dir" 188 | & "Make.File" 189 | 190 | intitle:c99shell filetype:php 191 | 192 | @default 193 | "gb" "server.ip" 194 | "your.ip" 195 | -------------------------------------------------------------------------------- /etc/keywords.conf: -------------------------------------------------------------------------------- 1 | headers "PDF-1.4" | "PDF.1" | "GIF89" | "JFIF" | "GIF89.a" | "Exif" | "bin.sh" | "ELF" # Search via file contents. 2 | apache RewriteEngine | FollowSymLinks | Options # Search by configuration parameters. 3 | shells mssql | postgresql | oracle | windows | linux | drwxrwxrwx | kernel | Oracle | MySQL | Perl | php | Python | Ruby | Java | dmesg | passwd | phpinfo | Backdoor | "Safe.mode" | pcntl | vmstat | IIS # Generic shells useful words. 4 | all $headers | $apache | $shells # All words! 5 | -------------------------------------------------------------------------------- /etc/mysterious.conf: -------------------------------------------------------------------------------- 1 | 2 | @latin 3 | 4 | 5 | 0100 6 | Ā 7 | ā 8 | Ă 9 | ă 10 | Ą 11 | ą 12 | Ć 13 | ć 14 | Ĉ 15 | ĉ 16 | Ċ 17 | ċ 18 | Č 19 | č 20 | Ď 21 | ď 22 | 0110 23 | Đ 24 | đ 25 | Ē 26 | ē 27 | Ĕ 28 | ĕ 29 | Ė 30 | ė 31 | Ę 32 | ę 33 | Ě 34 | ě 35 | Ĝ 36 | ĝ 37 | Ğ 38 | ğ 39 | 0120 40 | Ġ 41 | ġ 42 | Ģ 43 | ģ 44 | Ĥ 45 | ĥ 46 | Ħ 47 | ħ 48 | Ĩ 49 | ĩ 50 | Ī 51 | ī 52 | Ĭ 53 | ĭ 54 | Į 55 | į 56 | 0130 57 | İ 58 | ı 59 | IJ 60 | ij 61 | Ĵ 62 | ĵ 63 | Ķ 64 | ķ 65 | ĸ 66 | Ĺ 67 | ĺ 68 | Ļ 69 | ļ 70 | Ľ 71 | ľ 72 | Ŀ 73 | 0140 74 | ŀ 75 | Ł 76 | ł 77 | Ń 78 | ń 79 | Ņ 80 | ņ 81 | Ň 82 | ň 83 | ʼn 84 | Ŋ 85 | ŋ 86 | Ō 87 | ō 88 | Ŏ 89 | ŏ 90 | 0150 91 | Ő 92 | ő 93 | Œ 94 | œ 95 | Ŕ 96 | ŕ 97 | Ŗ 98 | ŗ 99 | Ř 100 | ř 101 | Ś 102 | ś 103 | Ŝ 104 | ŝ 105 | Ş 106 | ş 107 | 0160 108 | Š 109 | š 110 | Ţ 111 | ţ 112 | Ť 113 | ť 114 | Ŧ 115 | ŧ 116 | Ũ 117 | ũ 118 | Ū 119 | ū 120 | Ŭ 121 | ŭ 122 | Ů 123 | ů 124 | 0170 125 | Ű 126 | ű 127 | Ų 128 | ų 129 | Ŵ 130 | ŵ 131 | Ŷ 132 | ŷ 133 | Ÿ 134 | Ź 135 | ź 136 | Ż 137 | ż 138 | Ž 139 | ž 140 | ſ 141 | 142 | 143 | 144 | 0180 145 | ƀ 146 | Ɓ 147 | Ƃ 148 | ƃ 149 | Ƅ 150 | ƅ 151 | Ɔ 152 | Ƈ 153 | ƈ 154 | Ɖ 155 | Ɗ 156 | Ƌ 157 | ƌ 158 | ƍ 159 | Ǝ 160 | Ə 161 | 0190 162 | Ɛ 163 | Ƒ 164 | ƒ 165 | Ɠ 166 | Ɣ 167 | ƕ 168 | Ɩ 169 | Ɨ 170 | Ƙ 171 | ƙ 172 | ƚ 173 | ƛ 174 | Ɯ 175 | Ɲ 176 | ƞ 177 | Ɵ 178 | 01A0 179 | Ơ 180 | ơ 181 | Ƣ 182 | ƣ 183 | Ƥ 184 | ƥ 185 | Ʀ 186 | Ƨ 187 | ƨ 188 | Ʃ 189 | ƪ 190 | ƫ 191 | Ƭ 192 | ƭ 193 | Ʈ 194 | Ư 195 | 01B0 196 | ư 197 | Ʊ 198 | Ʋ 199 | Ƴ 200 | ƴ 201 | Ƶ 202 | ƶ 203 | Ʒ 204 | Ƹ 205 | ƹ 206 | ƺ 207 | ƻ 208 | Ƽ 209 | ƽ 210 | ƾ 211 | ƿ 212 | 01C0 213 | ǀ 214 | ǁ 215 | ǂ 216 | ǃ 217 | DŽ 218 | Dž 219 | dž 220 | LJ 221 | Lj 222 | lj 223 | NJ 224 | Nj 225 | nj 226 | Ǎ 227 | ǎ 228 | Ǐ 229 | 01D0 230 | ǐ 231 | Ǒ 232 | ǒ 233 | Ǔ 234 | ǔ 235 | Ǖ 236 | ǖ 237 | Ǘ 238 | ǘ 239 | Ǚ 240 | ǚ 241 | Ǜ 242 | ǜ 243 | ǝ 244 | Ǟ 245 | ǟ 246 | 01E0 247 | Ǡ 248 | ǡ 249 | Ǣ 250 | ǣ 251 | Ǥ 252 | ǥ 253 | Ǧ 254 | ǧ 255 | Ǩ 256 | ǩ 257 | Ǫ 258 | ǫ 259 | Ǭ 260 | ǭ 261 | Ǯ 262 | ǯ 263 | 01F0 264 | ǰ 265 | DZ 266 | Dz 267 | dz 268 | Ǵ 269 | ǵ 270 | Ƕ 271 | Ƿ 272 | Ǹ 273 | ǹ 274 | Ǻ 275 | ǻ 276 | Ǽ 277 | ǽ 278 | Ǿ 279 | ǿ 280 | 281 | 0200 282 | Ȁ 283 | ȁ 284 | Ȃ 285 | ȃ 286 | Ȅ 287 | ȅ 288 | Ȇ 289 | ȇ 290 | Ȉ 291 | ȉ 292 | Ȋ 293 | ȋ 294 | Ȍ 295 | ȍ 296 | Ȏ 297 | ȏ 298 | 0210 299 | Ȑ 300 | ȑ 301 | Ȓ 302 | ȓ 303 | Ȕ 304 | ȕ 305 | Ȗ 306 | ȗ 307 | Ș 308 | ș 309 | Ț 310 | ț 311 | Ȝ 312 | ȝ 313 | Ȟ 314 | ȟ 315 | 0220 316 | Ƞ 317 | ȡ 318 | Ȣ 319 | ȣ 320 | Ȥ 321 | ȥ 322 | Ȧ 323 | ȧ 324 | Ȩ 325 | ȩ 326 | Ȫ 327 | ȫ 328 | Ȭ 329 | ȭ 330 | Ȯ 331 | ȯ 332 | 0230 333 | Ȱ 334 | ȱ 335 | Ȳ 336 | ȳ 337 | ȴ 338 | ȵ 339 | ȶ 340 | ȷ 341 | ȸ 342 | ȹ 343 | Ⱥ 344 | Ȼ 345 | ȼ 346 | Ƚ 347 | Ⱦ 348 | ȿ 349 | 0240 350 | ɀ 351 | Ɂ 352 | ɂ 353 | Ƀ 354 | Ʉ 355 | Ʌ 356 | Ɇ 357 | ɇ 358 | Ɉ 359 | ɉ 360 | Ɋ 361 | ɋ 362 | Ɍ 363 | ɍ 364 | Ɏ 365 | ɏ 366 | 367 | @greek 368 | 369 | 370 | 0370 371 | Ͱ 372 | ͱ 373 | Ͳ 374 | ͳ 375 | ʹ 376 | ͵ 377 | Ͷ 378 | ͷ 379 | ͸ 380 | ͹ 381 | ͺ 382 | ͻ 383 | ͼ 384 | ͽ 385 | ; 386 | Ϳ 387 | 0380 388 | ΀ 389 | ΁ 390 | ΂ 391 | ΃ 392 | ΄ 393 | ΅ 394 | Ά 395 | · 396 | Έ 397 | Ή 398 | Ί 399 | ΋ 400 | Ό 401 | ΍ 402 | Ύ 403 | Ώ 404 | 0390 405 | ΐ 406 | Α 407 | Β 408 | Γ 409 | Δ 410 | Ε 411 | Ζ 412 | Η 413 | Θ 414 | Ι 415 | Κ 416 | Λ 417 | Μ 418 | Ν 419 | Ξ 420 | Ο 421 | 03A0 422 | Π 423 | Ρ 424 | ΢ 425 | Σ 426 | Τ 427 | Υ 428 | Φ 429 | Χ 430 | Ψ 431 | Ω 432 | Ϊ 433 | Ϋ 434 | ά 435 | έ 436 | ή 437 | ί 438 | 03B0 439 | ΰ 440 | α 441 | β 442 | γ 443 | δ 444 | ε 445 | ζ 446 | η 447 | θ 448 | ι 449 | κ 450 | λ 451 | μ 452 | ν 453 | ξ 454 | ο 455 | 03C0 456 | π 457 | ρ 458 | ς 459 | σ 460 | τ 461 | υ 462 | φ 463 | χ 464 | ψ 465 | ω 466 | ϊ 467 | ϋ 468 | ό 469 | ύ 470 | ώ 471 | Ϗ 472 | 03D0 473 | ϐ 474 | ϑ 475 | ϒ 476 | ϓ 477 | ϔ 478 | ϕ 479 | ϖ 480 | ϗ 481 | Ϙ 482 | ϙ 483 | Ϛ 484 | ϛ 485 | Ϝ 486 | ϝ 487 | Ϟ 488 | ϟ 489 | 03E0 490 | Ϡ 491 | ϡ 492 | Ϣ 493 | ϣ 494 | Ϥ 495 | ϥ 496 | Ϧ 497 | ϧ 498 | Ϩ 499 | ϩ 500 | Ϫ 501 | ϫ 502 | Ϭ 503 | ϭ 504 | Ϯ 505 | ϯ 506 | 03F0 507 | ϰ 508 | ϱ 509 | ϲ 510 | ϳ 511 | ϴ 512 | ϵ 513 | ϶ 514 | Ϸ 515 | ϸ 516 | Ϲ 517 | Ϻ 518 | ϻ 519 | ϼ 520 | Ͻ 521 | Ͼ 522 | Ͽ 523 | 524 | @ciryllic 525 | 00 526 | Ѐ 527 | Ё 528 | Ђ 529 | Ѓ 530 | Є 531 | Ѕ 532 | І 533 | Ї 534 | Ј 535 | Љ 536 | Њ 537 | Ћ 538 | Ќ 539 | Ѝ 540 | Ў 541 | Џ 542 | 0410 543 | А 544 | Б 545 | В 546 | Г 547 | Д 548 | Е 549 | Ж 550 | З 551 | И 552 | Й 553 | К 554 | Л 555 | М 556 | Н 557 | О 558 | П 559 | 0420 560 | Р 561 | С 562 | Т 563 | У 564 | Ф 565 | Х 566 | Ц 567 | Ч 568 | Ш 569 | Щ 570 | Ъ 571 | Ы 572 | Ь 573 | Э 574 | Ю 575 | Я 576 | 0430 577 | а 578 | б 579 | в 580 | г 581 | д 582 | е 583 | ж 584 | з 585 | и 586 | й 587 | к 588 | л 589 | м 590 | н 591 | о 592 | п 593 | 0440 594 | р 595 | с 596 | т 597 | у 598 | ф 599 | х 600 | ц 601 | ч 602 | ш 603 | щ 604 | ъ 605 | ы 606 | ь 607 | э 608 | ю 609 | я 610 | 0450 611 | ѐ 612 | ё 613 | ђ 614 | ѓ 615 | є 616 | ѕ 617 | і 618 | ї 619 | ј 620 | љ 621 | њ 622 | ћ 623 | ќ 624 | ѝ 625 | ў 626 | џ 627 | 0460 628 | Ѡ 629 | ѡ 630 | Ѣ 631 | ѣ 632 | Ѥ 633 | ѥ 634 | Ѧ 635 | ѧ 636 | Ѩ 637 | ѩ 638 | Ѫ 639 | ѫ 640 | Ѭ 641 | ѭ 642 | Ѯ 643 | ѯ 644 | 0470 645 | Ѱ 646 | ѱ 647 | Ѳ 648 | ѳ 649 | Ѵ 650 | ѵ 651 | Ѷ 652 | ѷ 653 | Ѹ 654 | ѹ 655 | Ѻ 656 | ѻ 657 | Ѽ 658 | ѽ 659 | Ѿ 660 | ѿ 661 | 0480 662 | Ҁ 663 | ҁ 664 | ҂ 665 | ҃ 666 | ҄ 667 | ҅ 668 | ҆ 669 | ҇ 670 | ҈ 671 | ҉ 672 | Ҋ 673 | ҋ 674 | Ҍ 675 | ҍ 676 | Ҏ 677 | ҏ 678 | 0490 679 | Ґ 680 | ґ 681 | Ғ 682 | ғ 683 | Ҕ 684 | ҕ 685 | Җ 686 | җ 687 | Ҙ 688 | ҙ 689 | Қ 690 | қ 691 | Ҝ 692 | ҝ 693 | Ҟ 694 | ҟ 695 | 04A0 696 | Ҡ 697 | ҡ 698 | Ң 699 | ң 700 | Ҥ 701 | ҥ 702 | Ҧ 703 | ҧ 704 | Ҩ 705 | ҩ 706 | Ҫ 707 | ҫ 708 | Ҭ 709 | ҭ 710 | Ү 711 | ү 712 | 04B0 713 | Ұ 714 | ұ 715 | Ҳ 716 | ҳ 717 | Ҵ 718 | ҵ 719 | Ҷ 720 | ҷ 721 | Ҹ 722 | ҹ 723 | Һ 724 | һ 725 | Ҽ 726 | ҽ 727 | Ҿ 728 | ҿ 729 | 04C0 730 | Ӏ 731 | Ӂ 732 | ӂ 733 | Ӄ 734 | ӄ 735 | Ӆ 736 | ӆ 737 | Ӈ 738 | ӈ 739 | Ӊ 740 | ӊ 741 | Ӌ 742 | ӌ 743 | Ӎ 744 | ӎ 745 | ӏ 746 | 04D0 747 | Ӑ 748 | ӑ 749 | Ӓ 750 | ӓ 751 | Ӕ 752 | ӕ 753 | Ӗ 754 | ӗ 755 | Ә 756 | ә 757 | Ӛ 758 | ӛ 759 | Ӝ 760 | ӝ 761 | Ӟ 762 | ӟ 763 | 04E0 764 | Ӡ 765 | ӡ 766 | Ӣ 767 | ӣ 768 | Ӥ 769 | ӥ 770 | Ӧ 771 | ӧ 772 | Ө 773 | ө 774 | Ӫ 775 | ӫ 776 | Ӭ 777 | ӭ 778 | Ӯ 779 | ӯ 780 | 04F0 781 | Ӱ 782 | ӱ 783 | Ӳ 784 | ӳ 785 | Ӵ 786 | ӵ 787 | Ӷ 788 | ӷ 789 | Ӹ 790 | ӹ 791 | Ӻ 792 | ӻ 793 | Ӽ 794 | ӽ 795 | Ӿ 796 | ӿ 797 | 798 | @armenian 799 | 800 | 801 | 0530 802 | ԰ 803 | Ա 804 | Բ 805 | Գ 806 | Դ 807 | Ե 808 | Զ 809 | Է 810 | Ը 811 | Թ 812 | Ժ 813 | Ի 814 | Լ 815 | Խ 816 | Ծ 817 | Կ 818 | 0540 819 | Հ 820 | Ձ 821 | Ղ 822 | Ճ 823 | Մ 824 | Յ 825 | Ն 826 | Շ 827 | Ո 828 | Չ 829 | Պ 830 | Ջ 831 | Ռ 832 | Ս 833 | Վ 834 | Տ 835 | 0550 836 | Ր 837 | Ց 838 | Ւ 839 | Փ 840 | Ք 841 | Օ 842 | Ֆ 843 | ՗ 844 | ՘ 845 | ՙ 846 | ՚ 847 | ՛ 848 | ՜ 849 | ՝ 850 | ՞ 851 | ՟ 852 | 0560 853 | ՠ 854 | ա 855 | բ 856 | գ 857 | դ 858 | ե 859 | զ 860 | է 861 | ը 862 | թ 863 | ժ 864 | ի 865 | լ 866 | խ 867 | ծ 868 | կ 869 | 0570 870 | հ 871 | ձ 872 | ղ 873 | ճ 874 | մ 875 | յ 876 | ն 877 | շ 878 | ո 879 | չ 880 | պ 881 | ջ 882 | ռ 883 | ս 884 | վ 885 | տ 886 | 0580 887 | ր 888 | ց 889 | ւ 890 | փ 891 | ք 892 | օ 893 | ֆ 894 | և 895 | ֈ 896 | ։ 897 | ֊ 898 | ֋ 899 | ֌ 900 | ֍ 901 | ֎ 902 | ֏ 903 | 904 | @herbew 905 | 906 | 907 | 0590 908 | ֐ 909 | ֑ 910 | ֒ 911 | ֓ 912 | ֔ 913 | ֕ 914 | ֖ 915 | ֗ 916 | ֘ 917 | ֙ 918 | ֚ 919 | ֛ 920 | ֜ 921 | ֝ 922 | ֞ 923 | ֟ 924 | 05A0 925 | ֠ 926 | ֡ 927 | ֢ 928 | ֣ 929 | ֤ 930 | ֥ 931 | ֦ 932 | ֧ 933 | ֨ 934 | ֩ 935 | ֪ 936 | ֫ 937 | ֬ 938 | ֭ 939 | ֮ 940 | ֯ 941 | 05B0 942 | ְ 943 | ֱ 944 | ֲ 945 | ֳ 946 | ִ 947 | ֵ 948 | ֶ 949 | ַ 950 | ָ 951 | ֹ 952 | ֺ 953 | ֻ 954 | ּ 955 | ֽ 956 | ־ 957 | ֿ 958 | 05C0 959 | ׀ 960 | ׁ 961 | ׂ 962 | ׃ 963 | ׄ 964 | ׅ 965 | ׆ 966 | ׇ 967 | ׈ 968 | ׉ 969 | ׊ 970 | ׋ 971 | ׌ 972 | ׍ 973 | ׎ 974 | ׏ 975 | 05D0 976 | א 977 | ב 978 | ג 979 | ד 980 | ה 981 | ו 982 | ז 983 | ח 984 | ט 985 | י 986 | ך 987 | כ 988 | ל 989 | ם 990 | מ 991 | ן 992 | 05E0 993 | נ 994 | ס 995 | ע 996 | ף 997 | פ 998 | ץ 999 | צ 1000 | ק 1001 | ר 1002 | ש 1003 | ת 1004 | ׫ 1005 | ׬ 1006 | ׭ 1007 | ׮ 1008 | ׯ 1009 | 05F0 1010 | װ 1011 | ױ 1012 | ײ 1013 | ׳ 1014 | ״ 1015 | ׵ 1016 | ׶ 1017 | ׷ 1018 | ׸ 1019 | ׹ 1020 | ׺ 1021 | ׻ 1022 | ׼ 1023 | ׽ 1024 | ׾ 1025 | ׿ 1026 | 1027 | 1028 | @arabic 1029 | 1030 | 1031 | 0600 1032 | ؀ 1033 | ؁ 1034 | ؂ 1035 | ؃ 1036 | ؄ 1037 | ؅ 1038 | ؆ 1039 | ؇ 1040 | ؈ 1041 | ؉ 1042 | ؊ 1043 | ؋ 1044 | ، 1045 | ؍ 1046 | ؎ 1047 | ؏ 1048 | 0610 1049 | ؐ 1050 | ؑ 1051 | ؒ 1052 | ؓ 1053 | ؔ 1054 | ؕ 1055 | ؖ 1056 | ؗ 1057 | ؘ 1058 | ؙ 1059 | ؚ 1060 | ؛ 1061 | ؝ 1062 | ؞ 1063 | ؟ 1064 | 0620 1065 | ؠ 1066 | ء 1067 | آ 1068 | أ 1069 | ؤ 1070 | إ 1071 | ئ 1072 | ا 1073 | ب 1074 | ة 1075 | ت 1076 | ث 1077 | ج 1078 | ح 1079 | خ 1080 | د 1081 | 0630 1082 | ذ 1083 | ر 1084 | ز 1085 | س 1086 | ش 1087 | ص 1088 | ض 1089 | ط 1090 | ظ 1091 | ع 1092 | غ 1093 | ػ 1094 | ؼ 1095 | ؽ 1096 | ؾ 1097 | ؿ 1098 | 0640 1099 | ـ 1100 | ف 1101 | ق 1102 | ك 1103 | ل 1104 | م 1105 | ن 1106 | ه 1107 | و 1108 | ى 1109 | ي 1110 | ً 1111 | ٌ 1112 | ٍ 1113 | َ 1114 | ُ 1115 | 0650 1116 | ِ 1117 | ّ 1118 | ْ 1119 | ٓ 1120 | ٔ 1121 | ٕ 1122 | ٖ 1123 | ٗ 1124 | ٘ 1125 | ٙ 1126 | ٚ 1127 | ٛ 1128 | ٜ 1129 | ٝ 1130 | ٞ 1131 | ٟ 1132 | 0660 1133 | ٠ 1134 | ١ 1135 | ٢ 1136 | ٣ 1137 | ٤ 1138 | ٥ 1139 | ٦ 1140 | ٧ 1141 | ٨ 1142 | ٩ 1143 | ٪ 1144 | ٫ 1145 | ٬ 1146 | ٭ 1147 | ٮ 1148 | ٯ 1149 | 0670 1150 | ٰ 1151 | ٱ 1152 | ٲ 1153 | ٳ 1154 | ٴ 1155 | ٵ 1156 | ٶ 1157 | ٷ 1158 | ٸ 1159 | ٹ 1160 | ٺ 1161 | ٻ 1162 | ټ 1163 | ٽ 1164 | پ 1165 | ٿ 1166 | 0680 1167 | ڀ 1168 | ځ 1169 | ڂ 1170 | ڃ 1171 | ڄ 1172 | څ 1173 | چ 1174 | ڇ 1175 | ڈ 1176 | ډ 1177 | ڊ 1178 | ڋ 1179 | ڌ 1180 | ڍ 1181 | ڎ 1182 | ڏ 1183 | 0690 1184 | ڐ 1185 | ڑ 1186 | ڒ 1187 | ړ 1188 | ڔ 1189 | ڕ 1190 | ږ 1191 | ڗ 1192 | ژ 1193 | ڙ 1194 | ښ 1195 | ڛ 1196 | ڜ 1197 | ڝ 1198 | ڞ 1199 | ڟ 1200 | 06A0 1201 | ڠ 1202 | ڡ 1203 | ڢ 1204 | ڣ 1205 | ڤ 1206 | ڥ 1207 | ڦ 1208 | ڧ 1209 | ڨ 1210 | ک 1211 | ڪ 1212 | ګ 1213 | ڬ 1214 | ڭ 1215 | ڮ 1216 | گ 1217 | 06B0 1218 | ڰ 1219 | ڱ 1220 | ڲ 1221 | ڳ 1222 | ڴ 1223 | ڵ 1224 | ڶ 1225 | ڷ 1226 | ڸ 1227 | ڹ 1228 | ں 1229 | ڻ 1230 | ڼ 1231 | ڽ 1232 | ھ 1233 | ڿ 1234 | 06C0 1235 | ۀ 1236 | ہ 1237 | ۂ 1238 | ۃ 1239 | ۄ 1240 | ۅ 1241 | ۆ 1242 | ۇ 1243 | ۈ 1244 | ۉ 1245 | ۊ 1246 | ۋ 1247 | ی 1248 | ۍ 1249 | ێ 1250 | ۏ 1251 | 06D0 1252 | ې 1253 | ۑ 1254 | ے 1255 | ۓ 1256 | ۔ 1257 | ە 1258 | ۖ 1259 | ۗ 1260 | ۘ 1261 | ۙ 1262 | ۚ 1263 | ۛ 1264 | ۜ 1265 | ۝ 1266 | ۞ 1267 | ۟ 1268 | 06E0 1269 | ۠ 1270 | ۡ 1271 | ۢ 1272 | ۣ 1273 | ۤ 1274 | ۥ 1275 | ۦ 1276 | ۧ 1277 | ۨ 1278 | ۩ 1279 | ۪ 1280 | ۫ 1281 | ۬ 1282 | ۭ 1283 | ۮ 1284 | ۯ 1285 | 06F0 1286 | ۰ 1287 | ۱ 1288 | ۲ 1289 | ۳ 1290 | ۴ 1291 | ۵ 1292 | ۶ 1293 | ۷ 1294 | ۸ 1295 | ۹ 1296 | ۺ 1297 | ۻ 1298 | ۼ 1299 | ۽ 1300 | ۾ 1301 | ۿ 1302 | 1303 | @syriac 1304 | 1305 | 1306 | 0700 1307 | ܀ 1308 | ܁ 1309 | ܂ 1310 | ܃ 1311 | ܄ 1312 | ܅ 1313 | ܆ 1314 | ܇ 1315 | ܈ 1316 | ܉ 1317 | ܊ 1318 | ܋ 1319 | ܌ 1320 | ܍ 1321 | ܎ 1322 | ܏ 1323 | 0710 1324 | ܐ 1325 | ܑ 1326 | ܒ 1327 | ܓ 1328 | ܔ 1329 | ܕ 1330 | ܖ 1331 | ܗ 1332 | ܘ 1333 | ܙ 1334 | ܚ 1335 | ܛ 1336 | ܜ 1337 | ܝ 1338 | ܞ 1339 | ܟ 1340 | 0720 1341 | ܠ 1342 | ܡ 1343 | ܢ 1344 | ܣ 1345 | ܤ 1346 | ܥ 1347 | ܦ 1348 | ܧ 1349 | ܨ 1350 | ܩ 1351 | ܪ 1352 | ܫ 1353 | ܬ 1354 | ܭ 1355 | ܮ 1356 | ܯ 1357 | 0730 1358 | ܰ 1359 | ܱ 1360 | ܲ 1361 | ܳ 1362 | ܴ 1363 | ܵ 1364 | ܶ 1365 | ܷ 1366 | ܸ 1367 | ܹ 1368 | ܺ 1369 | ܻ 1370 | ܼ 1371 | ܽ 1372 | ܾ 1373 | ܿ 1374 | 0740 1375 | ݀ 1376 | ݁ 1377 | ݂ 1378 | ݃ 1379 | ݄ 1380 | ݅ 1381 | ݆ 1382 | ݇ 1383 | ݈ 1384 | ݉ 1385 | ݊ 1386 | ݋ 1387 | ݌ 1388 | ݍ 1389 | ݎ 1390 | ݏ 1391 | 1392 | @bengali 1393 | 1394 | 1395 | 0980 1396 | ঀ 1397 | ঁ 1398 | ং 1399 | ঃ 1400 | ঄ 1401 | অ 1402 | আ 1403 | ই 1404 | ঈ 1405 | উ 1406 | ঊ 1407 | ঋ 1408 | ঌ 1409 | ঍ 1410 | ঎ 1411 | এ 1412 | 0990 1413 | ঐ 1414 | ঑ 1415 | ঒ 1416 | ও 1417 | ঔ 1418 | ক 1419 | খ 1420 | গ 1421 | ঘ 1422 | ঙ 1423 | চ 1424 | ছ 1425 | জ 1426 | ঝ 1427 | ঞ 1428 | ট 1429 | 09A0 1430 | ঠ 1431 | ড 1432 | ঢ 1433 | ণ 1434 | ত 1435 | থ 1436 | দ 1437 | ধ 1438 | ন 1439 | ঩ 1440 | প 1441 | ফ 1442 | ব 1443 | ভ 1444 | ম 1445 | য 1446 | 09B0 1447 | র 1448 | ঱ 1449 | ল 1450 | ঳ 1451 | ঴ 1452 | ঵ 1453 | শ 1454 | ষ 1455 | স 1456 | হ 1457 | ঺ 1458 | ঻ 1459 | ় 1460 | ঽ 1461 | া 1462 | ি 1463 | 09C0 1464 | ী 1465 | ু 1466 | ূ 1467 | ৃ 1468 | ৄ 1469 | ৅ 1470 | ৆ 1471 | ে 1472 | ৈ 1473 | ৉ 1474 | ৊ 1475 | ো 1476 | ৌ 1477 | ্ 1478 | ৎ 1479 | ৏ 1480 | 09D0 1481 | ৐ 1482 | ৑ 1483 | ৒ 1484 | ৓ 1485 | ৔ 1486 | ৕ 1487 | ৖ 1488 | ৗ 1489 | ৘ 1490 | ৙ 1491 | ৚ 1492 | ৛ 1493 | ড় 1494 | ঢ় 1495 | ৞ 1496 | য় 1497 | 09E0 1498 | ৠ 1499 | ৡ 1500 | ৢ 1501 | ৣ 1502 | ৤ 1503 | ৥ 1504 | ০ 1505 | ১ 1506 | ২ 1507 | ৩ 1508 | ৪ 1509 | ৫ 1510 | ৬ 1511 | ৭ 1512 | ৮ 1513 | ৯ 1514 | 09F0 1515 | ৰ 1516 | ৱ 1517 | ৲ 1518 | ৳ 1519 | ৴ 1520 | ৵ 1521 | ৶ 1522 | ৷ 1523 | ৸ 1524 | ৹ 1525 | ৺ 1526 | ৻ 1527 | ৼ 1528 | ৽ 1529 | ৾ 1530 | ৿ 1531 | 1532 | @thai 1533 | 1534 | 1535 | 0E00 1536 | ฀ 1537 | ก 1538 | ข 1539 | ฃ 1540 | ค 1541 | ฅ 1542 | ฆ 1543 | ง 1544 | จ 1545 | ฉ 1546 | ช 1547 | ซ 1548 | ฌ 1549 | ญ 1550 | ฎ 1551 | ฏ 1552 | 0E10 1553 | ฐ 1554 | ฑ 1555 | ฒ 1556 | ณ 1557 | ด 1558 | ต 1559 | ถ 1560 | ท 1561 | ธ 1562 | น 1563 | บ 1564 | ป 1565 | ผ 1566 | ฝ 1567 | พ 1568 | ฟ 1569 | 0E20 1570 | ภ 1571 | ม 1572 | ย 1573 | ร 1574 | ฤ 1575 | ล 1576 | ฦ 1577 | ว 1578 | ศ 1579 | ษ 1580 | ส 1581 | ห 1582 | ฬ 1583 | อ 1584 | ฮ 1585 | ฯ 1586 | 0E30 1587 | ะ 1588 | ั 1589 | า 1590 | ำ 1591 | ิ 1592 | ี 1593 | ึ 1594 | ื 1595 | ุ 1596 | ู 1597 | ฺ 1598 | ฻ 1599 | ฼ 1600 | ฽ 1601 | ฾ 1602 | ฿ 1603 | 0E40 1604 | เ 1605 | แ 1606 | โ 1607 | ใ 1608 | ไ 1609 | ๅ 1610 | ๆ 1611 | ็ 1612 | ่ 1613 | ้ 1614 | ๊ 1615 | ๋ 1616 | ์ 1617 | ํ 1618 | ๎ 1619 | ๏ 1620 | 0E50 1621 | ๐ 1622 | ๑ 1623 | ๒ 1624 | ๓ 1625 | ๔ 1626 | ๕ 1627 | ๖ 1628 | ๗ 1629 | ๘ 1630 | ๙ 1631 | ๚ 1632 | ๛ 1633 | ๜ 1634 | ๝ 1635 | ๞ 1636 | ๟ 1637 | 0E60 1638 | ๠ 1639 | ๡ 1640 | ๢ 1641 | ๣ 1642 | ๤ 1643 | ๥ 1644 | ๦ 1645 | ๧ 1646 | ๨ 1647 | ๩ 1648 | ๪ 1649 | ๫ 1650 | ๬ 1651 | ๭ 1652 | ๮ 1653 | ๯ 1654 | 0E70 1655 | ๰ 1656 | ๱ 1657 | ๲ 1658 | ๳ 1659 | ๴ 1660 | ๵ 1661 | ๶ 1662 | ๷ 1663 | ๸ 1664 | ๹ 1665 | ๺ 1666 | ๻ 1667 | ๼ 1668 | ๽ 1669 | ๾ 1670 | ๿ 1671 | 1672 | @currency 1673 | 1674 | 1675 | 20A0 1676 | ₠ 1677 | ₡ 1678 | ₢ 1679 | ₣ 1680 | ₤ 1681 | ₥ 1682 | ₦ 1683 | ₧ 1684 | ₨ 1685 | ₩ 1686 | ₪ 1687 | ₫ 1688 | € 1689 | ₭ 1690 | ₮ 1691 | ₯ 1692 | 20B0 1693 | ₰ 1694 | ₱ 1695 | ₲ 1696 | ₳ 1697 | ₴ 1698 | ₵ 1699 | ₶ 1700 | ₷ 1701 | ₸ 1702 | ₹ 1703 | ₺ 1704 | ₻ 1705 | ₼ 1706 | ₽ 1707 | ₾ 1708 | ₿ 1709 | 20C0 1710 | ⃀ 1711 | ⃁ 1712 | ⃂ 1713 | ⃃ 1714 | ⃄ 1715 | ⃅ 1716 | ⃆ 1717 | ⃇ 1718 | ⃈ 1719 | ⃉ 1720 | ⃊ 1721 | ⃋ 1722 | ⃌ 1723 | ⃍ 1724 | ⃎ 1725 | ⃏ 1726 | 1727 | @geometric 1728 | 1729 | 1730 | 25A0 1731 | ■ 1732 | □ 1733 | ▢ 1734 | ▣ 1735 | ▤ 1736 | ▥ 1737 | ▦ 1738 | ▧ 1739 | ▨ 1740 | ▩ 1741 | ▪ 1742 | ▫ 1743 | ▬ 1744 | ▭ 1745 | ▮ 1746 | ▯ 1747 | 25B0 1748 | ▰ 1749 | ▱ 1750 | ▲ 1751 | △ 1752 | ▴ 1753 | ▵ 1754 | ▶ 1755 | ▷ 1756 | ▸ 1757 | ▹ 1758 | ► 1759 | ▻ 1760 | ▼ 1761 | ▽ 1762 | ▾ 1763 | ▿ 1764 | 25C0 1765 | ◀ 1766 | ◁ 1767 | ◂ 1768 | ◃ 1769 | ◄ 1770 | ◅ 1771 | ◆ 1772 | ◇ 1773 | ◈ 1774 | ◉ 1775 | ◊ 1776 | ○ 1777 | ◌ 1778 | ◍ 1779 | ◎ 1780 | ● 1781 | 25D0 1782 | ◐ 1783 | ◑ 1784 | ◒ 1785 | ◓ 1786 | ◔ 1787 | ◕ 1788 | ◖ 1789 | ◗ 1790 | ◘ 1791 | ◙ 1792 | ◚ 1793 | ◛ 1794 | ◜ 1795 | ◝ 1796 | ◞ 1797 | ◟ 1798 | 25E0 1799 | ◠ 1800 | ◡ 1801 | ◢ 1802 | ◣ 1803 | ◤ 1804 | ◥ 1805 | ◦ 1806 | ◧ 1807 | ◨ 1808 | ◩ 1809 | ◪ 1810 | ◫ 1811 | ◬ 1812 | ◭ 1813 | ◮ 1814 | ◯ 1815 | 25F0 1816 | ◰ 1817 | ◱ 1818 | ◲ 1819 | ◳ 1820 | ◴ 1821 | ◵ 1822 | ◶ 1823 | ◷ 1824 | ◸ 1825 | ◹ 1826 | ◺ 1827 | ◻ 1828 | ◼ 1829 | ◽ 1830 | ◾ 1831 | ◿ 1832 | 1833 | @japan 1834 | 1835 | 1836 | 3040 1837 | ぀ 1838 | ぁ 1839 | あ 1840 | ぃ 1841 | い 1842 | ぅ 1843 | う 1844 | ぇ 1845 | え 1846 | ぉ 1847 | お 1848 | か 1849 | が 1850 | き 1851 | ぎ 1852 | く 1853 | 3050 1854 | ぐ 1855 | け 1856 | げ 1857 | こ 1858 | ご 1859 | さ 1860 | ざ 1861 | し 1862 | じ 1863 | す 1864 | ず 1865 | せ 1866 | ぜ 1867 | そ 1868 | ぞ 1869 | た 1870 | 3060 1871 | だ 1872 | ち 1873 | ぢ 1874 | っ 1875 | つ 1876 | づ 1877 | て 1878 | で 1879 | と 1880 | ど 1881 | な 1882 | に 1883 | ぬ 1884 | ね 1885 | の 1886 | は 1887 | 3070 1888 | ば 1889 | ぱ 1890 | ひ 1891 | び 1892 | ぴ 1893 | ふ 1894 | ぶ 1895 | ぷ 1896 | へ 1897 | べ 1898 | ぺ 1899 | ほ 1900 | ぼ 1901 | ぽ 1902 | ま 1903 | み 1904 | 3080 1905 | む 1906 | め 1907 | も 1908 | ゃ 1909 | や 1910 | ゅ 1911 | ゆ 1912 | ょ 1913 | よ 1914 | ら 1915 | り 1916 | る 1917 | れ 1918 | ろ 1919 | ゎ 1920 | わ 1921 | 3090 1922 | ゐ 1923 | ゑ 1924 | を 1925 | ん 1926 | ゔ 1927 | ゕ 1928 | ゖ 1929 | ゗ 1930 | ゘ 1931 | ゙ 1932 | ゚ 1933 | ゛ 1934 | ゜ 1935 | ゝ 1936 | ゞ 1937 | ゟ 1938 | 1939 | 1940 | 1941 | 30A0 1942 | ゠ 1943 | ァ 1944 | ア 1945 | ィ 1946 | イ 1947 | ゥ 1948 | ウ 1949 | ェ 1950 | エ 1951 | ォ 1952 | オ 1953 | カ 1954 | ガ 1955 | キ 1956 | ギ 1957 | ク 1958 | 30B0 1959 | グ 1960 | ケ 1961 | ゲ 1962 | コ 1963 | ゴ 1964 | サ 1965 | ザ 1966 | シ 1967 | ジ 1968 | ス 1969 | ズ 1970 | セ 1971 | ゼ 1972 | ソ 1973 | ゾ 1974 | タ 1975 | 30C0 1976 | ダ 1977 | チ 1978 | ヂ 1979 | ッ 1980 | ツ 1981 | ヅ 1982 | テ 1983 | デ 1984 | ト 1985 | ド 1986 | ナ 1987 | ニ 1988 | ヌ 1989 | ネ 1990 | ノ 1991 | ハ 1992 | 30D0 1993 | バ 1994 | パ 1995 | ヒ 1996 | ビ 1997 | ピ 1998 | フ 1999 | ブ 2000 | プ 2001 | ヘ 2002 | ベ 2003 | ペ 2004 | ホ 2005 | ボ 2006 | ポ 2007 | マ 2008 | ミ 2009 | 30E0 2010 | ム 2011 | メ 2012 | モ 2013 | ャ 2014 | ヤ 2015 | ュ 2016 | ユ 2017 | ョ 2018 | ヨ 2019 | ラ 2020 | リ 2021 | ル 2022 | レ 2023 | ロ 2024 | ヮ 2025 | ワ 2026 | 30F0 2027 | ヰ 2028 | ヱ 2029 | ヲ 2030 | ン 2031 | ヴ 2032 | ヵ 2033 | ヶ 2034 | ヷ 2035 | ヸ 2036 | ヹ 2037 | ヺ 2038 | ・ 2039 | ー 2040 | ヽ 2041 | ヾ 2042 | ヿ 2043 | 2044 | 2045 | 31F0 2046 | ㇰ 2047 | ㇱ 2048 | ㇲ 2049 | ㇳ 2050 | ㇴ 2051 | ㇵ 2052 | ㇶ 2053 | ㇷ 2054 | ㇸ 2055 | ㇹ 2056 | ㇺ 2057 | ㇻ 2058 | ㇼ 2059 | ㇽ 2060 | ㇾ 2061 | ㇿ 2062 | 2063 | @arabic 2064 | 2065 | 2066 | FB50 2067 | ﭐ 2068 | ﭑ 2069 | ﭒ 2070 | ﭓ 2071 | ﭔ 2072 | ﭕ 2073 | ﭖ 2074 | ﭗ 2075 | ﭘ 2076 | ﭙ 2077 | ﭚ 2078 | ﭛ 2079 | ﭜ 2080 | ﭝ 2081 | ﭞ 2082 | ﭟ 2083 | FB60 2084 | ﭠ 2085 | ﭡ 2086 | ﭢ 2087 | ﭣ 2088 | ﭤ 2089 | ﭥ 2090 | ﭦ 2091 | ﭧ 2092 | ﭨ 2093 | ﭩ 2094 | ﭪ 2095 | ﭫ 2096 | ﭬ 2097 | ﭭ 2098 | ﭮ 2099 | ﭯ 2100 | FB70 2101 | ﭰ 2102 | ﭱ 2103 | ﭲ 2104 | ﭳ 2105 | ﭴ 2106 | ﭵ 2107 | ﭶ 2108 | ﭷ 2109 | ﭸ 2110 | ﭹ 2111 | ﭺ 2112 | ﭻ 2113 | ﭼ 2114 | ﭽ 2115 | ﭾ 2116 | ﭿ 2117 | FB80 2118 | ﮀ 2119 | ﮁ 2120 | ﮂ 2121 | ﮃ 2122 | ﮄ 2123 | ﮅ 2124 | ﮆ 2125 | ﮇ 2126 | ﮈ 2127 | ﮉ 2128 | ﮊ 2129 | ﮋ 2130 | ﮌ 2131 | ﮍ 2132 | ﮎ 2133 | ﮏ 2134 | FB90 2135 | ﮐ 2136 | ﮑ 2137 | ﮒ 2138 | ﮓ 2139 | ﮔ 2140 | ﮕ 2141 | ﮖ 2142 | ﮗ 2143 | ﮘ 2144 | ﮙ 2145 | ﮚ 2146 | ﮛ 2147 | ﮜ 2148 | ﮝ 2149 | ﮞ 2150 | ﮟ 2151 | FBA0 2152 | ﮠ 2153 | ﮡ 2154 | ﮢ 2155 | ﮣ 2156 | ﮤ 2157 | ﮥ 2158 | ﮦ 2159 | ﮧ 2160 | ﮨ 2161 | ﮩ 2162 | ﮪ 2163 | ﮫ 2164 | ﮬ 2165 | ﮭ 2166 | ﮮ 2167 | ﮯ 2168 | FBB0 2169 | ﮰ 2170 | ﮱ 2171 | ﮲ 2172 | ﮳ 2173 | ﮴ 2174 | ﮵ 2175 | ﮶ 2176 | ﮷ 2177 | ﮸ 2178 | ﮹ 2179 | ﮺ 2180 | ﮻ 2181 | ﮼ 2182 | ﮽ 2183 | ﮾ 2184 | ﮿ 2185 | FBC0 2186 | ﯀ 2187 | ﯁ 2188 | ﯂ 2189 | ﯃ 2190 | ﯄ 2191 | ﯅ 2192 | ﯆ 2193 | ﯇ 2194 | ﯈ 2195 | ﯉ 2196 | ﯊ 2197 | ﯋ 2198 | ﯌ 2199 | ﯍ 2200 | ﯎ 2201 | ﯏ 2202 | FBD0 2203 | ﯐ 2204 | ﯑ 2205 | ﯒ 2206 | ﯓ 2207 | ﯔ 2208 | ﯕ 2209 | ﯖ 2210 | ﯗ 2211 | ﯘ 2212 | ﯙ 2213 | ﯚ 2214 | ﯛ 2215 | ﯜ 2216 | ﯝ 2217 | ﯞ 2218 | ﯟ 2219 | FBE0 2220 | ﯠ 2221 | ﯡ 2222 | ﯢ 2223 | ﯣ 2224 | ﯤ 2225 | ﯥ 2226 | ﯦ 2227 | ﯧ 2228 | ﯨ 2229 | ﯩ 2230 | ﯪ 2231 | ﯫ 2232 | ﯬ 2233 | ﯭ 2234 | ﯮ 2235 | ﯯ 2236 | FBF0 2237 | ﯰ 2238 | ﯱ 2239 | ﯲ 2240 | ﯳ 2241 | ﯴ 2242 | ﯵ 2243 | ﯶ 2244 | ﯷ 2245 | ﯸ 2246 | ﯹ 2247 | ﯺ 2248 | ﯻ 2249 | ﯼ 2250 | ﯽ 2251 | ﯾ 2252 | ﯿ 2253 | 2254 | FC00 2255 | ﰀ 2256 | ﰁ 2257 | ﰂ 2258 | ﰃ 2259 | ﰄ 2260 | ﰅ 2261 | ﰆ 2262 | ﰇ 2263 | ﰈ 2264 | ﰉ 2265 | ﰊ 2266 | ﰋ 2267 | ﰌ 2268 | ﰍ 2269 | ﰎ 2270 | ﰏ 2271 | FC10 2272 | ﰐ 2273 | ﰑ 2274 | ﰒ 2275 | ﰓ 2276 | ﰔ 2277 | ﰕ 2278 | ﰖ 2279 | ﰗ 2280 | ﰘ 2281 | ﰙ 2282 | ﰚ 2283 | ﰛ 2284 | ﰜ 2285 | ﰝ 2286 | ﰞ 2287 | ﰟ 2288 | FC20 2289 | ﰠ 2290 | ﰡ 2291 | ﰢ 2292 | ﰣ 2293 | ﰤ 2294 | ﰥ 2295 | ﰦ 2296 | ﰧ 2297 | ﰨ 2298 | ﰩ 2299 | ﰪ 2300 | ﰫ 2301 | ﰬ 2302 | ﰭ 2303 | ﰮ 2304 | ﰯ 2305 | FC30 2306 | ﰰ 2307 | ﰱ 2308 | ﰲ 2309 | ﰳ 2310 | ﰴ 2311 | ﰵ 2312 | ﰶ 2313 | ﰷ 2314 | ﰸ 2315 | ﰹ 2316 | ﰺ 2317 | ﰻ 2318 | ﰼ 2319 | ﰽ 2320 | ﰾ 2321 | ﰿ 2322 | FC40 2323 | ﱀ 2324 | ﱁ 2325 | ﱂ 2326 | ﱃ 2327 | ﱄ 2328 | ﱅ 2329 | ﱆ 2330 | ﱇ 2331 | ﱈ 2332 | ﱉ 2333 | ﱊ 2334 | ﱋ 2335 | ﱌ 2336 | ﱍ 2337 | ﱎ 2338 | ﱏ 2339 | FC50 2340 | ﱐ 2341 | ﱑ 2342 | ﱒ 2343 | ﱓ 2344 | ﱔ 2345 | ﱕ 2346 | ﱖ 2347 | ﱗ 2348 | ﱘ 2349 | ﱙ 2350 | ﱚ 2351 | ﱛ 2352 | ﱜ 2353 | ﱝ 2354 | ﱞ 2355 | ﱟ 2356 | FC60 2357 | ﱠ 2358 | ﱡ 2359 | ﱢ 2360 | ﱣ 2361 | ﱤ 2362 | ﱥ 2363 | ﱦ 2364 | ﱧ 2365 | ﱨ 2366 | ﱩ 2367 | ﱪ 2368 | ﱫ 2369 | ﱬ 2370 | ﱭ 2371 | ﱮ 2372 | ﱯ 2373 | FC70 2374 | ﱰ 2375 | ﱱ 2376 | ﱲ 2377 | ﱳ 2378 | ﱴ 2379 | ﱵ 2380 | ﱶ 2381 | ﱷ 2382 | ﱸ 2383 | ﱹ 2384 | ﱺ 2385 | ﱻ 2386 | ﱼ 2387 | ﱽ 2388 | ﱾ 2389 | ﱿ 2390 | FC80 2391 | ﲀ 2392 | ﲁ 2393 | ﲂ 2394 | ﲃ 2395 | ﲄ 2396 | ﲅ 2397 | ﲆ 2398 | ﲇ 2399 | ﲈ 2400 | ﲉ 2401 | ﲊ 2402 | ﲋ 2403 | ﲌ 2404 | ﲍ 2405 | ﲎ 2406 | ﲏ 2407 | FC90 2408 | ﲐ 2409 | ﲑ 2410 | ﲒ 2411 | ﲓ 2412 | ﲔ 2413 | ﲕ 2414 | ﲖ 2415 | ﲗ 2416 | ﲘ 2417 | ﲙ 2418 | ﲚ 2419 | ﲛ 2420 | ﲜ 2421 | ﲝ 2422 | ﲞ 2423 | ﲟ 2424 | FCA0 2425 | ﲠ 2426 | ﲡ 2427 | ﲢ 2428 | ﲣ 2429 | ﲤ 2430 | ﲥ 2431 | ﲦ 2432 | ﲧ 2433 | ﲨ 2434 | ﲩ 2435 | ﲪ 2436 | ﲫ 2437 | ﲬ 2438 | ﲭ 2439 | ﲮ 2440 | ﲯ 2441 | FCB0 2442 | ﲰ 2443 | ﲱ 2444 | ﲲ 2445 | ﲳ 2446 | ﲴ 2447 | ﲵ 2448 | ﲶ 2449 | ﲷ 2450 | ﲸ 2451 | ﲹ 2452 | ﲺ 2453 | ﲻ 2454 | ﲼ 2455 | ﲽ 2456 | ﲾ 2457 | ﲿ 2458 | FCC0 2459 | ﳀ 2460 | ﳁ 2461 | ﳂ 2462 | ﳃ 2463 | ﳄ 2464 | ﳅ 2465 | ﳆ 2466 | ﳇ 2467 | ﳈ 2468 | ﳉ 2469 | ﳊ 2470 | ﳋ 2471 | ﳌ 2472 | ﳍ 2473 | ﳎ 2474 | ﳏ 2475 | FCD0 2476 | ﳐ 2477 | ﳑ 2478 | ﳒ 2479 | ﳓ 2480 | ﳔ 2481 | ﳕ 2482 | ﳖ 2483 | ﳗ 2484 | ﳘ 2485 | ﳙ 2486 | ﳚ 2487 | ﳛ 2488 | ﳜ 2489 | ﳝ 2490 | ﳞ 2491 | ﳟ 2492 | FCE0 2493 | ﳠ 2494 | ﳡ 2495 | ﳢ 2496 | ﳣ 2497 | ﳤ 2498 | ﳥ 2499 | ﳦ 2500 | ﳧ 2501 | ﳨ 2502 | ﳩ 2503 | ﳪ 2504 | ﳫ 2505 | ﳬ 2506 | ﳭ 2507 | ﳮ 2508 | ﳯ 2509 | FCF0 2510 | ﳰ 2511 | ﳱ 2512 | ﳲ 2513 | ﳳ 2514 | ﳴ 2515 | ﳵ 2516 | ﳶ 2517 | ﳷ 2518 | ﳸ 2519 | ﳹ 2520 | ﳺ 2521 | ﳻ 2522 | ﳼ 2523 | ﳽ 2524 | ﳾ 2525 | ﳿ 2526 | FD00 2527 | ﴀ 2528 | ﴁ 2529 | ﴂ 2530 | ﴃ 2531 | ﴄ 2532 | ﴅ 2533 | ﴆ 2534 | ﴇ 2535 | ﴈ 2536 | ﴉ 2537 | ﴊ 2538 | ﴋ 2539 | ﴌ 2540 | ﴍ 2541 | ﴎ 2542 | ﴏ 2543 | FD10 2544 | ﴐ 2545 | ﴑ 2546 | ﴒ 2547 | ﴓ 2548 | ﴔ 2549 | ﴕ 2550 | ﴖ 2551 | ﴗ 2552 | ﴘ 2553 | ﴙ 2554 | ﴚ 2555 | ﴛ 2556 | ﴜ 2557 | ﴝ 2558 | ﴞ 2559 | ﴟ 2560 | FD20 2561 | ﴠ 2562 | ﴡ 2563 | ﴢ 2564 | ﴣ 2565 | ﴤ 2566 | ﴥ 2567 | ﴦ 2568 | ﴧ 2569 | ﴨ 2570 | ﴩ 2571 | ﴪ 2572 | ﴫ 2573 | ﴬ 2574 | ﴭ 2575 | ﴮ 2576 | ﴯ 2577 | FD30 2578 | ﴰ 2579 | ﴱ 2580 | ﴲ 2581 | ﴳ 2582 | ﴴ 2583 | ﴵ 2584 | ﴶ 2585 | ﴷ 2586 | ﴸ 2587 | ﴹ 2588 | ﴺ 2589 | ﴻ 2590 | ﴼ 2591 | ﴽ 2592 | ﴾ 2593 | ﴿ 2594 | FD40 2595 | ﵀ 2596 | ﵁ 2597 | ﵂ 2598 | ﵃ 2599 | ﵄ 2600 | ﵅ 2601 | ﵆ 2602 | ﵇ 2603 | ﵈ 2604 | ﵉ 2605 | ﵊ 2606 | ﵋ 2607 | ﵌ 2608 | ﵍ 2609 | ﵎ 2610 | ﵏ 2611 | FD50 2612 | ﵐ 2613 | ﵑ 2614 | ﵒ 2615 | ﵓ 2616 | ﵔ 2617 | ﵕ 2618 | ﵖ 2619 | ﵗ 2620 | ﵘ 2621 | ﵙ 2622 | ﵚ 2623 | ﵛ 2624 | ﵜ 2625 | ﵝ 2626 | ﵞ 2627 | ﵟ 2628 | FD60 2629 | ﵠ 2630 | ﵡ 2631 | ﵢ 2632 | ﵣ 2633 | ﵤ 2634 | ﵥ 2635 | ﵦ 2636 | ﵧ 2637 | ﵨ 2638 | ﵩ 2639 | ﵪ 2640 | ﵫ 2641 | ﵬ 2642 | ﵭ 2643 | ﵮ 2644 | ﵯ 2645 | FD70 2646 | ﵰ 2647 | ﵱ 2648 | ﵲ 2649 | ﵳ 2650 | ﵴ 2651 | ﵵ 2652 | ﵶ 2653 | ﵷ 2654 | ﵸ 2655 | ﵹ 2656 | ﵺ 2657 | ﵻ 2658 | ﵼ 2659 | ﵽ 2660 | ﵾ 2661 | ﵿ 2662 | FD80 2663 | ﶀ 2664 | ﶁ 2665 | ﶂ 2666 | ﶃ 2667 | ﶄ 2668 | ﶅ 2669 | ﶆ 2670 | ﶇ 2671 | ﶈ 2672 | ﶉ 2673 | ﶊ 2674 | ﶋ 2675 | ﶌ 2676 | ﶍ 2677 | ﶎ 2678 | ﶏ 2679 | FD90 2680 | ﶐ 2681 | ﶑ 2682 | ﶒ 2683 | ﶓ 2684 | ﶔ 2685 | ﶕ 2686 | ﶖ 2687 | ﶗ 2688 | ﶘ 2689 | ﶙ 2690 | ﶚ 2691 | ﶛ 2692 | ﶜ 2693 | ﶝ 2694 | ﶞ 2695 | ﶟ 2696 | FDA0 2697 | ﶠ 2698 | ﶡ 2699 | ﶢ 2700 | ﶣ 2701 | ﶤ 2702 | ﶥ 2703 | ﶦ 2704 | ﶧ 2705 | ﶨ 2706 | ﶩ 2707 | ﶪ 2708 | ﶫ 2709 | ﶬ 2710 | ﶭ 2711 | ﶮ 2712 | ﶯ 2713 | FDB0 2714 | ﶰ 2715 | ﶱ 2716 | ﶲ 2717 | ﶳ 2718 | ﶴ 2719 | ﶵ 2720 | ﶶ 2721 | ﶷ 2722 | ﶸ 2723 | ﶹ 2724 | ﶺ 2725 | ﶻ 2726 | ﶼ 2727 | ﶽ 2728 | ﶾ 2729 | ﶿ 2730 | FDC0 2731 | ﷀ 2732 | ﷁ 2733 | ﷂ 2734 | ﷃ 2735 | ﷄ 2736 | ﷅ 2737 | ﷆ 2738 | ﷇ 2739 | ﷈ 2740 | ﷉ 2741 | ﷊ 2742 | ﷋ 2743 | ﷌ 2744 | ﷍ 2745 | ﷎ 2746 | ﷏ 2747 | FDD0 2748 | ﷐ 2749 | ﷑ 2750 | ﷒ 2751 | ﷓ 2752 | ﷔ 2753 | ﷕ 2754 | ﷖ 2755 | ﷗ 2756 | ﷘ 2757 | ﷙ 2758 | ﷚ 2759 | ﷛ 2760 | ﷜ 2761 | ﷝ 2762 | ﷞ 2763 | ﷟ 2764 | FDE0 2765 | ﷠ 2766 | ﷡ 2767 | ﷢ 2768 | ﷣ 2769 | ﷤ 2770 | ﷥ 2771 | ﷦ 2772 | ﷧ 2773 | ﷨ 2774 | ﷩ 2775 | ﷪ 2776 | ﷫ 2777 | ﷬ 2778 | ﷭ 2779 | ﷮ 2780 | ﷯ 2781 | FDF0 2782 | ﷰ 2783 | ﷱ 2784 | ﷲ 2785 | ﷳ 2786 | ﷴ 2787 | ﷵ 2788 | ﷶ 2789 | ﷷ 2790 | ﷸ 2791 | ﷹ 2792 | ﷺ 2793 | ﷻ 2794 | ﷼ 2795 | ﷽ 2796 | ﷾ 2797 | ﷿ 2798 | 2799 | 2800 | 2801 | 2802 | FE70 2803 | ﹰ 2804 | ﹱ 2805 | ﹲ 2806 | ﹳ 2807 | ﹴ 2808 | ﹵ 2809 | ﹶ 2810 | ﹷ 2811 | ﹸ 2812 | ﹹ 2813 | ﹺ 2814 | ﹻ 2815 | ﹼ 2816 | ﹽ 2817 | ﹾ 2818 | ﹿ 2819 | FE80 2820 | ﺀ 2821 | ﺁ 2822 | ﺂ 2823 | ﺃ 2824 | ﺄ 2825 | ﺅ 2826 | ﺆ 2827 | ﺇ 2828 | ﺈ 2829 | ﺉ 2830 | ﺊ 2831 | ﺋ 2832 | ﺌ 2833 | ﺍ 2834 | ﺎ 2835 | ﺏ 2836 | FE90 2837 | ﺐ 2838 | ﺑ 2839 | ﺒ 2840 | ﺓ 2841 | ﺔ 2842 | ﺕ 2843 | ﺖ 2844 | ﺗ 2845 | ﺘ 2846 | ﺙ 2847 | ﺚ 2848 | ﺛ 2849 | ﺜ 2850 | ﺝ 2851 | ﺞ 2852 | ﺟ 2853 | FEA0 2854 | ﺠ 2855 | ﺡ 2856 | ﺢ 2857 | ﺣ 2858 | ﺤ 2859 | ﺥ 2860 | ﺦ 2861 | ﺧ 2862 | ﺨ 2863 | ﺩ 2864 | ﺪ 2865 | ﺫ 2866 | ﺬ 2867 | ﺭ 2868 | ﺮ 2869 | ﺯ 2870 | FEB0 2871 | ﺰ 2872 | ﺱ 2873 | ﺲ 2874 | ﺳ 2875 | ﺴ 2876 | ﺵ 2877 | ﺶ 2878 | ﺷ 2879 | ﺸ 2880 | ﺹ 2881 | ﺺ 2882 | ﺻ 2883 | ﺼ 2884 | ﺽ 2885 | ﺾ 2886 | ﺿ 2887 | FEC0 2888 | ﻀ 2889 | ﻁ 2890 | ﻂ 2891 | ﻃ 2892 | ﻄ 2893 | ﻅ 2894 | ﻆ 2895 | ﻇ 2896 | ﻈ 2897 | ﻉ 2898 | ﻊ 2899 | ﻋ 2900 | ﻌ 2901 | ﻍ 2902 | ﻎ 2903 | ﻏ 2904 | FED0 2905 | ﻐ 2906 | ﻑ 2907 | ﻒ 2908 | ﻓ 2909 | ﻔ 2910 | ﻕ 2911 | ﻖ 2912 | ﻗ 2913 | ﻘ 2914 | ﻙ 2915 | ﻚ 2916 | ﻛ 2917 | ﻜ 2918 | ﻝ 2919 | ﻞ 2920 | ﻟ 2921 | FEE0 2922 | ﻠ 2923 | ﻡ 2924 | ﻢ 2925 | ﻣ 2926 | ﻤ 2927 | ﻥ 2928 | ﻦ 2929 | ﻧ 2930 | ﻨ 2931 | ﻩ 2932 | ﻪ 2933 | ﻫ 2934 | ﻬ 2935 | ﻭ 2936 | ﻮ 2937 | ﻯ 2938 | FEF0 2939 | ﻰ 2940 | ﻱ 2941 | ﻲ 2942 | ﻳ 2943 | ﻴ 2944 | ﻵ 2945 | ﻶ 2946 | ﻷ 2947 | ﻸ 2948 | ﻹ 2949 | ﻺ 2950 | ﻻ 2951 | ﻼ 2952 | ﻽ 2953 | -------------------------------------------------------------------------------- /etc/preset.conf: -------------------------------------------------------------------------------- 1 | 2 | etnic -b3 all -b3n 3 -b3o # Search the etnic shells. 3 | all -P etnic -g shells -gn 4 # Search all 4 | apache -g apache -gn 4 # Increase search on apache. 5 | file -g headers -gn 4 -b3 all -b3n 8 -b3o # Increase search on binary files. 6 | -------------------------------------------------------------------------------- /etc/tld.conf: -------------------------------------------------------------------------------- 1 | gov Government 2 | mil United States Armed Forces 3 | asia DotAsia Organisation 4 | 5 | edu educational 6 | .ac Ascension Island 7 | .ad Andorra 8 | .ae United Arab Emirates 9 | .af Afghanistan 10 | .ag Antigua and Barbuda 11 | .ai Anguilla 12 | .al Albania 13 | .am Armenia 14 | .an Netherlands Antilles 15 | .ao Angola 16 | .aq Antarctica 17 | .ar Argentina 18 | .as American Samoa 19 | .at Austria 20 | .au Australia 21 | .aw Aruba 22 | .ax Aland Islands 23 | .az Azerbaijan 24 | 25 | .ba Bosnia and Herzegovina 26 | .bb Barbados 27 | .bd Bangladesh 28 | .be Belgium 29 | .bf Burkina Faso 30 | .bg Bulgaria 31 | .bh Bahrain 32 | .bi Burundi 33 | .bj Benin 34 | .bm Bermuda 35 | .bn Brunei Darussalam 36 | .bo Bolivia 37 | .br Brazil 38 | .bs Bahamas 39 | .bt Bhutan 40 | .bv Bouvet Island 41 | .bw Botswana 42 | .by Belarus 43 | .bz Belize 44 | 45 | .ca Canada 46 | .cc Cocos (Keeling) Islands 47 | .cd Congo, The Democratic Republic of the 48 | .cf Central African Republic 49 | .cg Congo, Republic of 50 | .ch Switzerland 51 | .ci Cote d'Ivoire 52 | .ck Cook Islands 53 | .cl Chile 54 | .cm Cameroon 55 | .cn China 56 | .co Colombia 57 | .cr Costa Rica 58 | .cs Serbia and Montenegro 59 | .cu Cuba 60 | .cv Cape Verde 61 | .cx Christmas Island 62 | .cy Cyprus 63 | .cz Czech Republic 64 | 65 | .de Germany 66 | .dj Djibouti 67 | .dk Denmark 68 | .dm Dominica 69 | .do Dominican Republic 70 | .dz Algeria 71 | 72 | .ec Ecuador 73 | .ee Estonia 74 | .eg Egypt 75 | .eh Western Sahara 76 | .er Eritrea 77 | .es Spain 78 | .et Ethiopia 79 | .eu European Union 80 | 81 | .fi Finland 82 | .fj Fiji 83 | .fk Falkland Islands (Malvinas) 84 | .fm Micronesia, Federal State of 85 | .fo Faroe Islands 86 | .fr France 87 | 88 | .ga Gabon 89 | .gb United Kingdom 90 | .gd Grenada 91 | .ge Georgia 92 | .gf French Guiana 93 | .gg Guernsey 94 | .gh Ghana 95 | .gi Gibraltar 96 | .gl Greenland 97 | .gm Gambia 98 | .gn Guinea 99 | .gp Guadeloupe 100 | .gq Equatorial Guinea 101 | .gr Greece 102 | .gs South Georgia and the South Sandwich Islands 103 | .gt Guatemala 104 | .gu Guam 105 | .gw Guinea-Bissau 106 | .gy Guyana 107 | 108 | .hk Hong Kong 109 | .hm Heard and McDonald Islands 110 | .hn Honduras 111 | .hr Croatia/Hrvatska 112 | .ht Haiti 113 | .hu Hungary 114 | 115 | .id Indonesia 116 | .ie Ireland 117 | .il Israel 118 | .im Isle of Man 119 | .in India 120 | .io British Indian Ocean Territory 121 | .iq Iraq 122 | .ir Iran, Islamic Republic of 123 | .is Iceland 124 | .it Italy 125 | 126 | .je Jersey 127 | .jm Jamaica 128 | .jo Jordan 129 | .jp Japan 130 | 131 | .ke Kenya 132 | .kg Kyrgyzstan 133 | .kh Cambodia 134 | .ki Kiribati 135 | .km Comoros 136 | .kn Saint Kitts and Nevis 137 | .kp Korea, Democratic People's Republic 138 | .kr Korea, Republic of 139 | .kw Kuwait 140 | .ky Cayman Islands 141 | .kz Kazakhstan 142 | 143 | .la Lao People's Democratic Republic 144 | .lb Lebanon 145 | .lc Saint Lucia 146 | .li Liechtenstein 147 | .lk Sri Lanka 148 | .lr Liberia 149 | .ls Lesotho 150 | .lt Lithuania 151 | .lu Luxembourg 152 | .lv Latvia 153 | .ly Libyan Arab Jamahiriya 154 | 155 | .ma Morocco 156 | .mc Monaco 157 | .md Moldova, Republic of 158 | .mg Madagascar 159 | .mh Marshall Islands 160 | .mk Macedonia, The Former Yugoslav Republic of 161 | .ml Mali 162 | .mm Myanmar 163 | .mn Mongolia 164 | .mo Macau 165 | .mp Northern Mariana Islands 166 | .mq Martinique 167 | .mr Mauritania 168 | .ms Montserrat 169 | .mt Malta 170 | .mu Mauritius 171 | .mv Maldives 172 | .mw Malawi 173 | .mx Mexico 174 | .my Malaysia 175 | .mz Mozambique 176 | 177 | .na Namibia 178 | .nc New Caledonia 179 | .ne Niger 180 | .nf Norfolk Island 181 | .ng Nigeria 182 | .ni Nicaragua 183 | .nl Netherlands 184 | .no Norway 185 | .np Nepal 186 | .nr Nauru 187 | .nu Niue 188 | .nz New Zealand 189 | 190 | .om Oman 191 | 192 | .pa Panama 193 | .pe Peru 194 | .pf French Polynesia 195 | .pg Papua New Guinea 196 | .ph Philippines 197 | .pk Pakistan 198 | .pl Poland 199 | .pm Saint Pierre and Miquelon 200 | .pn Pitcairn Island 201 | .pr Puerto Rico 202 | .ps Palestinian Territories 203 | .pt Portugal 204 | .pw Palau 205 | .py Paraguay 206 | 207 | .qa Qatar 208 | 209 | .re Reunion Island 210 | .ro Romania 211 | .ru Russian Federation 212 | .rw Rwanda 213 | 214 | .sa Saudi Arabia 215 | .sb Solomon Islands 216 | .sc Seychelles 217 | .sd Sudan 218 | .se Sweden 219 | .sg Singapore 220 | .sh Saint Helena 221 | .si Slovenia 222 | .sj Svalbard and Jan Mayen Islands 223 | .sk Slovak Republic 224 | .sl Sierra Leone 225 | .sm San Marino 226 | .sn Senegal 227 | .so Somalia 228 | .sr Suriname 229 | .st Sao Tome and Principe 230 | .sv El Salvador 231 | .sy Syrian Arab Republic 232 | .sz Swaziland 233 | 234 | .tc Turks and Caicos Islands 235 | .td Chad 236 | .tf French Southern Territories 237 | .tg Togo 238 | .th Thailand 239 | .tj Tajikistan 240 | .tk Tokelau 241 | .tl Timor-Leste 242 | .tm Turkmenistan 243 | .tn Tunisia 244 | .to Tonga 245 | .tp East Timor 246 | .tr Turkey 247 | .tt Trinidad and Tobago 248 | .tv Tuvalu 249 | .tw Taiwan 250 | .tz Tanzania 251 | 252 | .ua Ukraine 253 | .ug Uganda 254 | .uk United Kingdom 255 | .um United States Minor Outlying Islands 256 | .us United States 257 | .uy Uruguay 258 | .uz Uzbekistan 259 | 260 | .va Holy See (Vatican City State) 261 | .vc Saint Vincent and the Grenadines 262 | .ve Venezuela 263 | .vg Virgin Islands, British 264 | .vi Virgin Islands, U.S. 265 | .vn Vietnam 266 | .vu Vanuatu 267 | 268 | .wf Wallis and Futuna Islands 269 | .ws Samoa 270 | 271 | .ye Yemen 272 | .yt Mayotte 273 | .yu Yugoslavia 274 | 275 | .za South Africa 276 | .zm Zambia 277 | .zw Zimbabwe 278 | --------------------------------------------------------------------------------