diff --git a/.gitattributes b/.gitattributes index eab0d1c429978bd448fc1ea679bff51a0ad95e43..62b9d02b808ffa693cff84fd595b58ac743a5ab4 100644 --- a/.gitattributes +++ b/.gitattributes @@ -34,3 +34,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text *.zst filter=lfs diff=lfs merge=lfs -text *tfevents* filter=lfs diff=lfs merge=lfs -text extensions/Stable-Diffusion-Webui-Civitai-Helper/img/all_in_one.png filter=lfs diff=lfs merge=lfs -text +extensions/addtional/models/lora/README.md filter=lfs diff=lfs merge=lfs -text diff --git a/extensions/a1111-sd-webui-lycoris/ui_extra_networks_lyco.py b/extensions/a1111-sd-webui-lycoris/ui_extra_networks_lyco.py new file mode 100644 index 0000000000000000000000000000000000000000..4b65617b4198f37b4340dfc619342aa77bed33c0 --- /dev/null +++ b/extensions/a1111-sd-webui-lycoris/ui_extra_networks_lyco.py @@ -0,0 +1,35 @@ +import json +import os +import lycoris + +from modules import shared, ui_extra_networks + + +class ExtraNetworksPageLyCORIS(ui_extra_networks.ExtraNetworksPage): + def __init__(self): + super().__init__('LyCORIS') + + def refresh(self): + lycoris.list_available_lycos() + + def list_items(self): + for name, lyco_on_disk in lycoris.available_lycos.items(): + path, ext = os.path.splitext(lyco_on_disk.filename) + yield { + "name": name, + "filename": path, + "preview": self.find_preview(path), + "description": self.find_description(path), + "search_term": self.search_terms_from_path(lyco_on_disk.filename), + "prompt": ( + json.dumps(f"") + ), + "local_preview": f"{path}.{shared.opts.samples_format}", + "metadata": json.dumps(lyco_on_disk.metadata, indent=4) if lyco_on_disk.metadata else None, + } + + def allowed_directories_for_previews(self): + return [shared.cmd_opts.lyco_dir] + diff --git a/extensions/addtional/.github/workflows/typos.yml b/extensions/addtional/.github/workflows/typos.yml new file mode 100644 index 0000000000000000000000000000000000000000..e37838390db94d3f5f2f2f55ec5d0f40a34f48df --- /dev/null +++ b/extensions/addtional/.github/workflows/typos.yml @@ -0,0 +1,21 @@ +--- +# yamllint disable rule:line-length +name: Typos + +on: # yamllint disable-line rule:truthy + push: + pull_request: + types: + - opened + - synchronize + - reopened + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: typos-action + uses: crate-ci/typos@v1.13.10 diff --git a/extensions/addtional/.gitignore b/extensions/addtional/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..0b5e7e23146a880bd929300353618ef39329be98 --- /dev/null +++ b/extensions/addtional/.gitignore @@ -0,0 +1,3 @@ +__pycache__ +models/ +/hashes.json diff --git a/extensions/addtional/LICENSE.txt b/extensions/addtional/LICENSE.txt new file mode 100644 index 0000000000000000000000000000000000000000..be3f7b28e564e7dd05eaf59d64adba1a4065ac0e --- /dev/null +++ b/extensions/addtional/LICENSE.txt @@ -0,0 +1,661 @@ + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. diff --git a/extensions/addtional/README.md b/extensions/addtional/README.md new file mode 100644 index 0000000000000000000000000000000000000000..c45be3ffb7e0d3d430cf404c0c3afb84f13c7559 --- /dev/null +++ b/extensions/addtional/README.md @@ -0,0 +1,210 @@ +## Additional Networks for generating images + +日本語の文章は下のほうにあります。 + +[__Change History__](#change-history) is moved to the bottom of the page. +更新履歴は[ページ末尾](#change-history)に移しました。 + +Stable Diffusion web UI now seems to support LoRA trained by ``sd-scripts`` Thank you for great work!!! + + +## About + +This extension is for [AUTOMATIC1111's Stable Diffusion web UI](https://github.com/AUTOMATIC1111/stable-diffusion-webui), allows the Web UI to add some networks (e.g. LoRA) to the original Stable Diffusion model to generate images. Currently LoRA is supported. The addition is on-the-fly, the merging is not required. + +This extension supports the LoRA models (*.ckpt or *.safetensors) trained by our scripts in [sd-scripts](https://github.com/kohya-ss/sd-scripts). The models from other LoRA implementations are not supported. + +This extension does not support training. + +Other networks other than LoRA may be supported in the future. + +## Installation + +1. Open "Extensions" tab. +1. Open "Install from URL" tab in the tab. +1. Enter URL of this repo to "URL for extension's git repository". +1. Press "Install" button. +1. Restart Web UI. + +## How to use + +Put the LoRA models (`*.pt`, `*.ckpt` or `*.safetensors`) inside the `sd-webui-additional-networks/models/LoRA` folder. + +Open __"Additional Networks"__ panel from the left bottom of Web UI. + +Press __"Refresh models"__ to update the models list. + +Select __"LoRA"__ for __"Network module 1"__. + +Choose __the name of the LoRA model file__ in __"Model 1"__. + +Set __the weight__ of the model (negative weight might be working but unexpected.) + +Repeat them for the module/model/weight 2 to 5 if you have other models. Models are applied in the order of 1 to 5. + +You can generate images with the model with these additional networks. + +## X/Y plot + +If you use LoRA models to plot, put the comma separated list of the model names into ``AddNet Model X`` + +![image](https://user-images.githubusercontent.com/52813779/212444037-8ccd9157-c341-4eb4-82b4-64e3c8ee0237.png) + +You can get the list of models with the button next to ``Values``. Please select any model in ``Model ?`` at ``Additional Networks`` in order to make the button work. Models in the same folder as the model will be listed. + +![image](https://user-images.githubusercontent.com/52813779/212443639-97779d8d-0f7e-47f0-919c-41f053fe28a9.png) + +The metadata of the model can be drawn as legends. Move to ``Settings`` tab, select ``Additional Networks`` at left bottom, and set ``Metadata to show``. Available values are in ``Network metadata`` textbox in ``Additional Networks`` tab. + +![image](https://user-images.githubusercontent.com/52813779/212443781-1f4c442e-c2f3-47f8-b698-25fbe981f633.png) + +## Specify target region of LoRA by mask (__experimental__) + +Open `Extra args` and drop a mask image to `mask image`. + +By specifying with the mask image, each LoRA model can be applied only to the specified region of the image. Currently, only three models (Models 1 to 3) can be masked. + +The mask image is RGB image, with each channel (R, G and B) corresponding to LoRA models 1 to 3. Each channel can be overlapped. For example, yellow area (R and G) is applied to LoRA model 1 and 2. The range of values is 0 to 255, corresponding to a LoRA weight of 0 to 1. + +It can be combined with ControlNet. + +| |without ControlNet|with ControlNet| +|:----:|:----:|:----:| +|no LoRA||| +|with LoRA, no mask||| +|with Lora, with mask||| +| |pose|mask| +| || + +Sample images are generated with [wd-1-5-beta2-aesthetic-fp16.safetensors](https://huggingface.co/waifu-diffusion/wd-1-5-beta2) and three LoRAs: two character LoRAs (model 1 and 2, masked, weight=1.0) and one style LoRA (model 4, not masked, weight=0.8). Used ControlNet is [diff_control_wd15beta2_pose.safetensors](https://huggingface.co/furusu/ControlNet). + +### Difference from 'Latent Couple extension' and 'Composable LoRA' + +'Latent Couple extension' masks the output of U-Net for each sub-prompt (AND-separated prompts), while our implementation masks the output of LoRA at each layer of U-Net. The mask is resized according to the tensor shape of each layer, so the resolution is particularly coarse at the deeper layers. + +'Composable LoRA' controls the area via 'Latent Couple extension' by switching LoRA on or off for each sub-prompt, but this implementation works alone. + +This implementation does not work for all modules in LoRA (the modules associated with Text Encoder are not masked), and due to the coarse resolution, it is not possible to completely separate areas. + +## この Web UI 拡張について + +LoRA などのネットワークを元の Stable Diffusion に追加し、画像生成を行うための拡張です。現在は LoRA のみ対応しています。 + +この拡張で使えるのは[sd-scripts](https://github.com/kohya-ss/sd-scripts)リポジトリで学習した LoRA のモデル(\*.ckpt または \*.safetensors)です。他の LoRA リポジトリで学習したモデルは対応していません。 + +この拡張単体では学習はできません。 + +将来的に LoRA 以外のネットワークについてもサポートするかもしれません。 + +## インストール + +1. Web UI で "Extensions" タブを開きます。 +1. さらに "Install from URL" タブを開きます。 +1. "URL for extension's git repository" 欄にこのリポジトリの URL を入れます。 +1. "Install"ボタンを押してインストールします。 +1. Web UI を再起動してください。 + +## 使用法 + +学習した LoRA のモデル(`*.pt`, `*.ckpt`, `*.safetensors`)を`sd-webui-additional-networks/models/LoRA`に置きます。 + +Web UI の左下のほうの __"Additional Networks"__ のパネルを開きます。 + +__"Network module 1"__ で __"LoRA"__ を選択してください。 + +__"Refresh models"__ で LoRA モデルのリストを更新します。 + +__"Model 1"__ に学習した LoRA のモデル名を選択します。 + +__"Weight"__ にこのモデルの __重み__ を指定します(負の値も指定できますがどんな効果があるかは未知数です)。 + +追加のモデルがある場合は 2~5 に指定してください。モデルは 1~5 の順番で適用されます。 + +以上を指定すると、それぞれのモデルが適用された状態で画像生成されます。 + +## X/Y plot + +LoRAモデルをX/Y plotの値(選択対象)として使う場合は、カンマ区切りのモデルのリストを与える必要があります。 + +![image](https://user-images.githubusercontent.com/52813779/212444037-8ccd9157-c341-4eb4-82b4-64e3c8ee0237.png) + +モデルのリストは選択肢の隣にあるボタンで取得できます。いずれかのモデルを ``Additional Networks`` の ``Model ?`` で選択しておいてください。そのモデルと同じフォルダにあるモデルの一覧が取得されます。 + +![image](https://user-images.githubusercontent.com/52813779/212443639-97779d8d-0f7e-47f0-919c-41f053fe28a9.png) + +モデルのメタデータ(学習時のパラメータなど)をX/Y plotのラベルに使用できます。Web UI上部の ``Settings`` タブを開き、左下から ``Additional Networks`` を選び、 ``Metadata to show`` にカンマ区切りで項目名を指定してください(``ss_learning_rate, ss_num_epochs`` のような感じになります)。使える値は ``Additional Networks`` の ``Network metadata`` 欄にある値です。 + +![image](https://user-images.githubusercontent.com/52813779/212443781-1f4c442e-c2f3-47f8-b698-25fbe981f633.png) + +## LoRA の領域別適用 __(実験的機能)__ + +適用する領域をマスク画像で指定することで、それぞれの LoRA モデルを画像の指定した部分にのみ適用することができます。現在はモデル1~3の3つのみ領域指定可能です。 + +マスク画像はカラーの画像で、RGBの各チャネルが LoRA モデル1から3に対応します。RGBの各チャネルは重ねることが可能です。たとえば黄色(RとGチャネル)の領域は、モデル1と2が有効になります。ピクセル値0から255がLoRAの適用率0から1に対応します(127なら重み0.5で適用するのと同じになります)。 + +マスク画像は生成画像サイズにリサイズされて適用されます。 + +ControlNetと組み合わせることも可能です(細かい位置指定にはControlNetとの組み合わせを推奨します)。 + +上のサンプルをご参照ください。 + +### Latent Couple extension、Composable LoRAとの違い + +Latent Couple extension はサブプロンプト(ANDで区切られたプロンプト)ごとに、U-Net の出力をマスクしますが、当実装では U-Net の各層で LoRA の出力をマスクします。マスクは各層のテンソル形状に応じてリサイズされるため、深い層では特に解像度が粗くなります。 + +Composable LoRA はサブプロンプトごとに LoRA の適用有無を切り替えることで Latent Couple extension を経由して影響範囲を制御しますが、当実装では単独で動作します。 + +当実装はすべての LoRA モジュールに作用するわけではなく(Text Encoder に関連する LoRA モジュールはマスクされません)、また解像度が粗いため、完全に領域を分離することはできません。 + +## Change History + +- 23 May 2023, 2023/5/23 + - Fix an issue where the value of the `Weight` slider is not applied correctly. + - `Weight`のスライダーの値が正しく反映されない場合がある不具合への対応を行いました。 + +- 8 May 2023, 2023/5/8 + - Fix an issue where the models are not loaded correctly in the `Additional Networks` tab. + - Fix an issue where `None` cannot be selected as a model in X/Y/Z plot. + - `Additional Networks`タブでモデルが正しく読み込まれない不具合を修正しました。 + - X/Y/Z plotでモデルに `None` が選択できない不具合を修正しました。 + +- 3 May 2023, 2023/5/3 + - Fix an issue where an error occurs when selecting a model in X/Y/Z plot. + - X/Y/Z plotでモデル選択時にエラーとなる不具合を修正しました。 +- 6 Apr. 2023, 2023/4/6 + - Fix an issue where the `Hires. fix` does not work with mask. + - 領域別LoRAでHires. fixが動作しない不具合を修正しました。 +- 30 Mar. 2023, 2023/3/30 + - Fix an issue where the `Save Metadata` button in the metadata editor does not work even if `Editing Enabled` is checked. + - メタデータエディタで `Save Metadata` ボタンが `Editing Enabled` をチェックしても有効にならない不具合を修正しました。 +- 28 Mar. 2023, 2023/3/28 + - Fix style for Gradio 3.22. Thanks to space-nuko! + - Please update Web UI to the latest version. + - Gradio 3.22 のスタイルに対応しました。space-nuko氏に感謝します。 + - Web UIを最新版に更新願います。 +- 11 Mar. 2023, 2023/3/11 + - Leading spaces in each path in `Extra paths to scan for LoRA models` settings are ignored. Thanks to tsukimiya! + - 設定の `Extra paths to scan for LoRA models` の各ディレクトリ名の先頭スペースを無視するよう変更しました。tsukimiya氏に感謝します。 +- 9 Mar. 2023, 2023/3/9: Release v0.5.1 + - Fix the model saved with `bf16` causes an error. https://github.com/kohya-ss/sd-webui-additional-networks/issues/127 + - Fix some Conv2d-3x3 LoRA modules are not effective. https://github.com/kohya-ss/sd-scripts/issues/275 + - Fix LoRA modules with higher dim (rank) > 320 causes an error. + - `bf16` で学習されたモデルが読み込めない不具合を修正しました。 https://github.com/kohya-ss/sd-webui-additional-networks/issues/127 + - いくつかの Conv2d-3x3 LoRA モジュールが有効にならない不具合を修正しました。 https://github.com/kohya-ss/sd-scripts/issues/275 + - dim (rank) が 320 を超えるLoRAモデルが読み込めない不具合を修正しました。 +- 8 Mar. 2023, 2023/3/8: Release v0.5.0 + - Support current version of [LoCon](https://github.com/KohakuBlueleaf/LoCon). __Thank you very much KohakuBlueleaf for your help!__ + - LoCon will be enhanced in the future. Compatibility for future versions is not guaranteed. + - Support dynamic LoRA: different dimensions (ranks) and alpha for each module. + - Support LoRA for Conv2d (extended to conv2d with a kernel size not 1x1). + - Add masked LoRA feature (experimental.) + - 現在のバージョンの [LoCon](https://github.com/KohakuBlueleaf/LoCon) をサポートしました。 KohakuBlueleaf 氏のご支援に深く感謝します。 + - LoCon が将来的に拡張された場合、それらのバージョンでの互換性は保証できません。 + - dynamic LoRA の機能を追加しました。各モジュールで異なる dimension (rank) や alpha を持つ LoRA が使えます。 + - Conv2d 拡張 LoRA をサポートしました。カーネルサイズが1x1でない Conv2d を対象とした LoRA が使えます。 + - LoRA の適用領域指定機能を追加しました(実験的機能)。 + + +Please read [Releases](https://github.com/kohya-ss/sd-webui-additional-networks/releases) for recent updates. +最近の更新情報は [Release](https://github.com/kohya-ss/sd-webui-additional-networks/releases) をご覧ください。 + diff --git a/extensions/addtional/__pycache__/preload.cpython-310.pyc b/extensions/addtional/__pycache__/preload.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6ff20d0076768578148de045c20356c16d800132 Binary files /dev/null and b/extensions/addtional/__pycache__/preload.cpython-310.pyc differ diff --git a/extensions/addtional/_typos.toml b/extensions/addtional/_typos.toml new file mode 100644 index 0000000000000000000000000000000000000000..a9290501ca0e2e5e4fd1e8a80c46908c477494d5 --- /dev/null +++ b/extensions/addtional/_typos.toml @@ -0,0 +1,9 @@ +# Files for typos +# Instruction: https://github.com/marketplace/actions/typos-action#getting-started + +[default.extend-identifiers] + +[default.extend-words] + +[files] +extend-exclude = ["_typos.toml"] diff --git a/extensions/addtional/hashes.json b/extensions/addtional/hashes.json new file mode 100644 index 0000000000000000000000000000000000000000..19824457e63245d546d8d43387624c6be1fbe760 --- /dev/null +++ b/extensions/addtional/hashes.json @@ -0,0 +1,129 @@ +{ + "hashes": { + "/content/microsoftexcel/models/Lora/GoodHands-beta2.safetensors": { + "model": "c05ed279295ed06ad8c459254bd9d910d46d1dab4de5dbdb59e9d5a231b8b43f", + "legacy": "5275bd79", + "mtime": 1687431780.7171009 + }, + "/content/microsoftexcel/models/Lora/Caitlyn.safetensors": { + "model": "fe2d779164cb23b97a10b926d809fc94d074e1e7deb595be615b8ad11ed5fd11", + "legacy": "40fa34e7", + "mtime": 1687431773.0084302 + }, + "/content/microsoftexcel/models/Lora/ireliav2-000034.safetensors": { + "model": "7fd4ca5cdc40f1d61548e39149b9c0eff6bac17601469abf7de72a42beea245d", + "legacy": "d7774c83", + "mtime": 1687431771.4212923 + }, + "/content/microsoftexcel/models/Lora/ratatatat74-000030.safetensors": { + "model": "43f33c0dd794e5ae4cb4cd1d12d3ad70466c61084c43bf105750790504dc8bdd", + "legacy": "e5787969", + "mtime": 1687431774.3865502 + }, + "/content/microsoftexcel/models/Lora/nixeu_offset64dim.safetensors": { + "model": "3bfe61233b402e3663c136396c3bdea4cfd982215429e9ee83bff505692e6bbe", + "legacy": "86bd75dd", + "mtime": 1687431766.256843 + }, + "/content/microsoftexcel/models/Lora/sukuna.safetensors": { + "model": "89a59997da996808d64cecae57b23cb788118cfc3c02815faf7a1857c4babcee", + "legacy": "f2ac6ed8", + "mtime": 1687431767.1909244 + }, + "/content/microsoftexcel/models/Lora/MakimaCSM.safetensors": { + "model": "0b7b2682d8a6c06208d62aab8534af8e1251dbc2d8a66962df80455a8083fad9", + "legacy": "11d289ef", + "mtime": 1687431772.1803584 + }, + "/content/microsoftexcel/models/Lora/Riven-000016.safetensors": { + "model": "1683d344c22be83109a2d5569548058464a7d3eceecbac6e09f04467853fc632", + "legacy": "a3b09189", + "mtime": 1687433862.8805723 + }, + "/content/microsoftexcel/extensions/addtional/models/lora/Caitlyn.safetensors": { + "model": "fe2d779164cb23b97a10b926d809fc94d074e1e7deb595be615b8ad11ed5fd11", + "legacy": "40fa34e7", + "mtime": 1690714048.1235178 + }, + "/content/microsoftexcel/extensions/addtional/models/lora/GoodHands-beta2.safetensors": { + "model": "c05ed279295ed06ad8c459254bd9d910d46d1dab4de5dbdb59e9d5a231b8b43f", + "legacy": "5275bd79", + "mtime": 1690714057.5114868 + }, + "/content/microsoftexcel/extensions/addtional/models/lora/MakimaCSM.safetensors": { + "model": "0b7b2682d8a6c06208d62aab8534af8e1251dbc2d8a66962df80455a8083fad9", + "legacy": "11d289ef", + "mtime": 1690714039.4666243 + }, + "/content/microsoftexcel/extensions/addtional/models/lora/Riven-000016.safetensors": { + "model": "1683d344c22be83109a2d5569548058464a7d3eceecbac6e09f04467853fc632", + "legacy": "a3b09189", + "mtime": 1690714050.1197238 + }, + "/content/microsoftexcel/extensions/addtional/models/lora/ireliav2-000034.safetensors": { + "model": "7fd4ca5cdc40f1d61548e39149b9c0eff6bac17601469abf7de72a42beea245d", + "legacy": "d7774c83", + "mtime": 1690714041.5128355 + }, + "/content/microsoftexcel/extensions/addtional/models/lora/nixeu_offset64dim.safetensors": { + "model": "3bfe61233b402e3663c136396c3bdea4cfd982215429e9ee83bff505692e6bbe", + "legacy": "86bd75dd", + "mtime": 1690714049.898701 + }, + "/content/microsoftexcel/extensions/addtional/models/lora/ratatatat74-000030.safetensors": { + "model": "43f33c0dd794e5ae4cb4cd1d12d3ad70466c61084c43bf105750790504dc8bdd", + "legacy": "e5787969", + "mtime": 1690714052.3479538 + }, + "/content/microsoftexcel/extensions/addtional/models/lora/sukuna.safetensors": { + "model": "89a59997da996808d64cecae57b23cb788118cfc3c02815faf7a1857c4babcee", + "legacy": "f2ac6ed8", + "mtime": 1690714036.489317 + }, + "/content/microsoftexcel/models/Lora/paizuri.safetensors": { + "model": "ab770c3ce34ade128b82f68f5c4b51859a22d33aeb6cee13dfcf9a39c9f57958", + "legacy": "95086359", + "mtime": 1690536921.2243078 + }, + "/content/microsoftexcel/extensions/addtional/models/lora/Bukkake.safetensors": { + "model": "c6146fcb87cbae19731e766aa5b87ca817abcb906162aa61c7a6a58c58280e8f", + "legacy": "e38c9776", + "mtime": 1690714042.2459111 + }, + "/content/microsoftexcel/extensions/addtional/models/lora/LickingOralLoRA.safetensors": { + "model": "e83ab810c31a0b67e5abe92717707ee4ed38f64c9ab66c90ae145915a5cc93c0", + "legacy": "0d765510", + "mtime": 1690714040.4357243 + }, + "/content/microsoftexcel/extensions/addtional/models/lora/SelfBreastGrab.safetensors": { + "model": "e49b3c9546e3e46af0cdd38d90bf965c1e08d4159325097577d2e753e1059488", + "legacy": "bbb438e8", + "mtime": 1690714047.1404164 + }, + "/content/microsoftexcel/extensions/addtional/models/lora/SideFellatio.safetensors": { + "model": "8fe46b31c9d47a0e1f43183dda6bfcaba699c6649b4feb7e8631cad76221692e", + "legacy": "97a1069c", + "mtime": 1690714048.9226003 + }, + "/content/microsoftexcel/extensions/addtional/models/lora/kidnap_v0.2.safetensors": { + "model": "8b46761ba3d19c5c08df543ee5e1c833ff9817a6e9a4c7d1a69908e92b4c6ab9", + "legacy": "3d4bd2d5", + "mtime": 1690714048.669574 + }, + "/content/microsoftexcel/extensions/addtional/models/lora/paizuri.safetensors": { + "model": "ab770c3ce34ade128b82f68f5c4b51859a22d33aeb6cee13dfcf9a39c9f57958", + "legacy": "95086359", + "mtime": 1690714048.367543 + }, + "/content/microsoftexcel/extensions/addtional/models/lora/reverse fellatio lion2-000012.safetensors": { + "model": "4ea1dde4793808afb97d6c51028af744d0e1f6804dbc9449f45eb1e0cef1458c", + "legacy": "316b5e3f", + "mtime": 1690714049.132622 + }, + "/content/microsoftexcel/extensions/addtional/models/lora/vacuum fellatio1.1\u00e3\u0080\u0090vacuum fellatio\u00e3\u0080\u0091.safetensors": { + "model": "093987279f11711e9e6b3e2e5e4b6051fb92ddd5b0f95f0f3cba515ccb4868e1", + "legacy": "9620bf49", + "mtime": 1690714048.601567 + } + } +} \ No newline at end of file diff --git a/extensions/addtional/hashes.json.lock b/extensions/addtional/hashes.json.lock new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/extensions/addtional/javascript/additional_networks.js b/extensions/addtional/javascript/additional_networks.js new file mode 100644 index 0000000000000000000000000000000000000000..4cbcc66114c422a410a85ecd8be210b4e5a12d44 --- /dev/null +++ b/extensions/addtional/javascript/additional_networks.js @@ -0,0 +1,40 @@ +function addnet_switch_to_txt2img(){ + switch_to_txt2img(); + setTimeout(function() { gradioApp().getElementById("additional_networks_txt2img").scrollIntoView(); }, 100); + return args_to_array(arguments); +} + +function addnet_switch_to_img2img(){ + switch_to_img2img(); + setTimeout(function() { gradioApp().getElementById("additional_networks_img2img").scrollIntoView(); }, 100); + return args_to_array(arguments); +} + +function addnet_switch_to_metadata_editor(){ + Array.from(gradioApp().querySelector('#tabs').querySelectorAll('button')).filter(e => e.textContent.trim() === "Additional Networks")[0].click(); + return args_to_array(arguments); +} + +function addnet_send_to_metadata_editor() { + var module = arguments[0]; + var model_path = arguments[1]; + + if (model_path == "None") { + return args_to_array(arguments); + } + + console.log(arguments); + console.log(model_path); + var select = gradioApp().querySelector("#additional_networks_metadata_editor_model > label > select"); + + var opt = [...select.options].filter(o => o.text == model_path)[0]; + if (opt == null) { + return; + } + + addnet_switch_to_metadata_editor(); + select.selectedIndex = opt.index; + select.dispatchEvent(new Event("change", { bubbles: true })); + + return args_to_array(arguments); +} diff --git a/extensions/addtional/models/lora/.gitattributes b/extensions/addtional/models/lora/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..4644a5712767d7a34f72d631153baf1b72cdb7bd --- /dev/null +++ b/extensions/addtional/models/lora/.gitattributes @@ -0,0 +1,35 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.ckpt filter=lfs diff=lfs merge=lfs -text +*.ftz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.h5 filter=lfs diff=lfs merge=lfs -text +*.joblib filter=lfs diff=lfs merge=lfs -text +*.lfs.* filter=lfs diff=lfs merge=lfs -text +*.mlmodel filter=lfs diff=lfs merge=lfs -text +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack filter=lfs diff=lfs merge=lfs -text +*.npy filter=lfs diff=lfs merge=lfs -text +*.npz filter=lfs diff=lfs merge=lfs -text +*.onnx filter=lfs diff=lfs merge=lfs -text +*.ot filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text +*.pb filter=lfs diff=lfs merge=lfs -text +*.pickle filter=lfs diff=lfs merge=lfs -text +*.pkl filter=lfs diff=lfs merge=lfs -text +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.safetensors filter=lfs diff=lfs merge=lfs -text +saved_model/**/* filter=lfs diff=lfs merge=lfs -text +*.tar.* filter=lfs diff=lfs merge=lfs -text +*.tflite filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.wasm filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text +*tfevents* filter=lfs diff=lfs merge=lfs -text +README.md filter=lfs diff=lfs merge=lfs -text diff --git a/extensions/addtional/models/lora/Bukkake.civitai.info b/extensions/addtional/models/lora/Bukkake.civitai.info new file mode 100644 index 0000000000000000000000000000000000000000..1a63704846c9dfe30e5bb21ae632916dd6f9422b --- /dev/null +++ b/extensions/addtional/models/lora/Bukkake.civitai.info @@ -0,0 +1,317 @@ +{ + "id": 19936, + "modelId": 16722, + "name": "v1.0", + "createdAt": "2023-03-07T19:21:06.904Z", + "updatedAt": "2023-03-07T19:59:54.919Z", + "trainedWords": [ + "bukkake" + ], + "baseModel": "SD 1.5", + "earlyAccessTimeFrame": 0, + "description": "

v1.0 - This version should do better with facials and the like.

", + "stats": { + "downloadCount": 33963, + "ratingCount": 9, + "rating": 5 + }, + "model": { + "name": "Bukkake LoRA", + "type": "LORA", + "nsfw": true, + "poi": false + }, + "files": [ + { + "id": 16637, + "url": "https://5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com/civitai-prod-settled/10924/model/bukkake.Q3yA.safetensors", + "sizeKB": 73838.544921875, + "name": "Bukkake.safetensors", + "type": "Model", + "metadata": { + "fp": "fp16", + "size": "full", + "format": "SafeTensor" + }, + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "virusScanMessage": null, + "scannedAt": "2023-03-07T19:26:39.223Z", + "hashes": { + "AutoV1": "E38C9776", + "AutoV2": "2B2B6AE959", + "SHA256": "2B2B6AE959FB9EFAAFE4AF8F4057B1791DBC3AC8B6F835BC9886B1EAF76E2F51", + "CRC32": "370139C6", + "BLAKE3": "8D2C79B8C5A7F0336630D86D3B1FF85EA6E7CE442B67B2949766B42C4102E9ED" + }, + "primary": true, + "downloadUrl": "https://civitai.com/api/download/models/19936" + } + ], + "images": [ + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a731f206-1785-4732-5fc6-0a5d84b42500/width=450/210356.jpeg", + "nsfw": "X", + "width": 768, + "height": 1152, + "hash": "UDK,pi00Kj~V0ft7R*t74:oKi{NG~Wxurst7", + "meta": { + "Size": "512x768", + "seed": 2092290606, + "Model": "Galena Blend", + "steps": 28, + "prompt": "beautiful, (masterpiece:1.2), (best quality:1.2), perfect eyes, perfect face, perfect lighting, smiling, parted lips, (1girl), (nude), mature woman, big breasts, brown hair, (straight hair), bukkake, (cum on face), top down view, laying on bed, ", + "sampler": "DPM++ SDE Karras", + "cfgScale": 6, + "resources": [ + { + "hash": "6294646a3d", + "name": "Galena Blend", + "type": "model" + } + ], + "Model hash": "6294646a3d", + "Hires steps": "3", + "Hires upscale": "1.5", + "Hires upscaler": "R-ESRGAN 4x+ Anime6B", + "negativePrompt": "(low quality, worst quality:1.3),(bad_prompt:0.8),(bad-hands-5:0.6),(monochrome:1.1), (visible hands), (child), (loli)", + "Denoising strength": "0.3" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e80fbb67-7589-4555-e819-ea3a27507500/width=450/210355.jpeg", + "nsfw": "X", + "width": 768, + "height": 1152, + "hash": "U4EVZ[9v0J_N00-U-=Vs9F%MInIU~q9ZIA^+", + "meta": { + "Size": "512x768", + "seed": 4079968738, + "Model": "Galena Blend", + "steps": 28, + "prompt": "beautiful, (masterpiece:1.2), (best quality:1.2), perfect eyes, perfect face, perfect lighting, (1girl), (grey skin:1.2), colored skin, dark elf, tiefling, demon horns, (demon skin), (orange eyes), (black hair), (crop-top), tanktop covered nipples, bukkake, cum, cum on face, upper body focus, hell background, lava background, ", + "sampler": "DPM++ SDE Karras", + "cfgScale": 6, + "resources": [ + { + "hash": "6294646a3d", + "name": "Galena Blend", + "type": "model" + } + ], + "Model hash": "6294646a3d", + "Hires steps": "3", + "Hires upscale": "1.5", + "Hires upscaler": "R-ESRGAN 4x+ Anime6B", + "negativePrompt": "(low quality, worst quality:1.3),(bad_prompt:0.8),(bad-hands-5:0.6),(monochrome:1.1), (visible hands)", + "Denoising strength": "0.3" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/27837306-5e89-43e6-e5e1-548986efb600/width=450/210354.jpeg", + "nsfw": "X", + "width": 768, + "height": 1152, + "hash": "U4JG[{tl00^j00M{Mc$z0M9aTz~V00E10K^k", + "meta": { + "Size": "512x768", + "seed": 241261186, + "Model": "Galena Blend", + "steps": 28, + "prompt": "beautiful, (masterpiece:1.2), (best quality:1.2), perfect eyes, perfect face, perfect lighting, smiling, parted lips, (1girl), (nude), mature woman, big breasts, ginger hair hair, (straight hair), bukkake, (cum on face), top down view, 2 penises, 2boys, penis, large penis, ejaculating, laying on bed, ", + "sampler": "DPM++ SDE Karras", + "cfgScale": 6, + "resources": [ + { + "name": "Bukkake", + "type": "lora", + "weight": 0.75 + }, + { + "hash": "6294646a3d", + "name": "Galena Blend", + "type": "model" + } + ], + "Model hash": "6294646a3d", + "Hires steps": "3", + "Hires upscale": "1.5", + "Hires upscaler": "R-ESRGAN 4x+ Anime6B", + "negativePrompt": "(low quality, worst quality:1.3),(bad_prompt:0.8),(bad-hands-5:0.6),(monochrome:1.1), (visible hands), (child), (loli)", + "Denoising strength": "0.3" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f2ceca5a-8c27-429a-3ae2-4b1192958200/width=450/210353.jpeg", + "nsfw": "Soft", + "width": 768, + "height": 1152, + "hash": "UEH2G}-:00o}_3Rj9F-p={%2S5NG0Lt7~Vj@", + "meta": { + "Size": "512x768", + "seed": 908068575, + "Model": "Ametrine Blend", + "steps": 28, + "prompt": "beautiful, (masterpiece:1.2), (best quality:1.2), perfect eyes, perfect face, perfect lighting, (1girl), (solo), (female focus), white hair, short hair, black eyes, light smile, white shirt, buttoned shirt, loose clothes, (black skirt), (short skirt), standing, white background, arms behind back, ((wide hips)), (thick), mature woman, cum, bukkake, ", + "sampler": "DPM++ SDE Karras", + "cfgScale": 6, + "resources": [ + { + "name": "Bukkake", + "type": "lora", + "weight": 0.75 + }, + { + "hash": "9fecec4c22", + "name": "Ametrine Blend", + "type": "model" + } + ], + "Model hash": "9fecec4c22", + "Hires steps": "3", + "Hires upscale": "1.5", + "Hires upscaler": "R-ESRGAN 4x+ Anime6B", + "negativePrompt": "(low quality, worst quality:1.3),(bad_prompt:0.8),(bad-hands-5:0.6),(monochrome:1.1), (nsfw), (tight clothes)", + "Denoising strength": "0.3" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d026c28a-b531-4a9d-6478-7c5d036f2800/width=450/210352.jpeg", + "nsfw": "X", + "width": 768, + "height": 1152, + "hash": "U7HK-0Io00^+~VE200%20L-pNM9Z00Rj~C?G", + "meta": { + "Size": "512x768", + "seed": 1510923555, + "Model": "Ametrine Blend", + "steps": 28, + "prompt": "beautiful, (masterpiece:1.2), (best quality:1.2), (perfect eyes), perfect face, smiling, perfect lighting, mature adult woman, black bra, black panties, blonde hair, blue eyes, (bra), big breasts, garter belt, arms at side, gloves, black gloves, lace, lace-trimmed bra, lace trim, large breasts, clouds, long hair, panties, solo, underwear, cum, bukkake, ", + "sampler": "DPM++ SDE Karras", + "cfgScale": 6, + "resources": [ + { + "name": "Bukkake", + "type": "lora", + "weight": 0.75 + }, + { + "hash": "9fecec4c22", + "name": "Ametrine Blend", + "type": "model" + } + ], + "Model hash": "9fecec4c22", + "Hires steps": "3", + "Hires upscale": "1.5", + "Hires upscaler": "R-ESRGAN 4x+ Anime6B", + "negativePrompt": "(low quality, worst quality:1.3),(bad_prompt:0.8),(bad-hands-5:0.6),(monochrome:1.1), (signature), (patreon)", + "Denoising strength": "0.3" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/fd5f91e4-154f-42b9-abb0-45a131ed1200/width=450/210351.jpeg", + "nsfw": "X", + "width": 768, + "height": 1152, + "hash": "U5H1**^+00~p059G00t70~E1^ONH00-o^*%L", + "meta": { + "Size": "512x768", + "seed": 2975125976, + "Model": "Ametrine Blend", + "steps": 28, + "prompt": "beautiful, (masterpiece:1.2), (best quality:1.2), perfect eyes, perfect face, perfect lighting, 1girl, solo, dark skin, (mature woman), huge breasts, dark-skinned female, smile, grin, white hair, tomboy, very short hair, red eyes, ninja, kunai, full body, mature woman, cum, bukkake, ", + "sampler": "DPM++ SDE Karras", + "cfgScale": 6, + "resources": [ + { + "name": "Bukkake", + "type": "lora", + "weight": 0.75 + }, + { + "hash": "9fecec4c22", + "name": "Ametrine Blend", + "type": "model" + } + ], + "Model hash": "9fecec4c22", + "Hires steps": "3", + "Hires upscale": "1.5", + "Hires upscaler": "R-ESRGAN 4x+ Anime6B", + "negativePrompt": "(low quality, worst quality:1.3),(bad_prompt:0.8),(bad-hands-5:0.6),(monochrome:1.1), (child), (loli)", + "Denoising strength": "0.3" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/837e41b6-3e51-4c59-0578-c32134e4af00/width=450/210350.jpeg", + "nsfw": "Soft", + "width": 768, + "height": 1152, + "hash": "ULHV6o=|?^V@T0oKofaK9FW;4.M{IVM{$*t7", + "meta": { + "Size": "512x768", + "seed": 2598110425, + "Model": "Sardonyx Blend", + "steps": 28, + "prompt": "beautiful, (masterpiece:1.2), (best quality:1.2), perfect eyes, perfect face, perfect lighting, 1girl, knee socks, cat ear headphones, makeup, gamer girl, t-shirt, arms behind back, smile, slight smile, cum, bukkake, ", + "sampler": "DPM++ SDE Karras", + "cfgScale": 6, + "resources": [ + { + "name": "Bukkake", + "type": "lora", + "weight": 0.75 + }, + { + "hash": "fd48a132dd", + "name": "Sardonyx Blend", + "type": "model" + } + ], + "Model hash": "fd48a132dd", + "Hires steps": "3", + "Hires upscale": "1.5", + "Hires upscaler": "R-ESRGAN 4x+ Anime6B", + "negativePrompt": "(low quality, worst quality:1.3),(bad_prompt:0.8),(bad-hands-5:0.6),(monochrome:1.1), (holding items), (muscular)", + "Denoising strength": "0.3" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a7aa8138-9431-463d-dd84-f70315cccc00/width=450/210349.jpeg", + "nsfw": "X", + "width": 768, + "height": 1152, + "hash": "UDHeB}0LTK-q~CD%xaRP5=IU~pR-R*bbEMR*", + "meta": { + "Size": "512x768", + "seed": 1540355878, + "Model": "Sardonyx Blend", + "steps": 28, + "prompt": "beautiful, (masterpiece:1.2), (best quality:1.2), perfect eyes, perfect face, perfect lighting, 1girl, (solo), black hair, ripping open shirt, ripped clothes, office clothes, pants, revealing breasts, big breasts, mature woman, sweaty, panting, cum, bukkake, 2 penises, 2boys, penis, large penis, ejaculating, ", + "sampler": "DPM++ SDE Karras", + "cfgScale": 6, + "resources": [ + { + "name": "Bukkake", + "type": "lora", + "weight": 0.75 + }, + { + "hash": "fd48a132dd", + "name": "Sardonyx Blend", + "type": "model" + } + ], + "Model hash": "fd48a132dd", + "Hires steps": "3", + "Hires upscale": "1.5", + "Hires upscaler": "R-ESRGAN 4x+ Anime6B", + "negativePrompt": "(low quality, worst quality:1.3),(bad_prompt:0.8),(bad-hands-5:0.6),(monochrome:1.1)", + "Denoising strength": "0.3" + } + } + ], + "downloadUrl": "https://civitai.com/api/download/models/19936" +} \ No newline at end of file diff --git a/extensions/addtional/models/lora/Bukkake.preview.png b/extensions/addtional/models/lora/Bukkake.preview.png new file mode 100644 index 0000000000000000000000000000000000000000..42516981a6f52c26370f09c13468e443297b5949 Binary files /dev/null and b/extensions/addtional/models/lora/Bukkake.preview.png differ diff --git a/extensions/addtional/models/lora/Bukkake.safetensors b/extensions/addtional/models/lora/Bukkake.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..1d9608f1e52e8d1b0c063c73e3c16d8dc2fbae1f --- /dev/null +++ b/extensions/addtional/models/lora/Bukkake.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b2b6ae959fb9efaafe4af8f4057b1791dbc3ac8b6f835bc9886b1eaf76e2f51 +size 75610670 diff --git a/extensions/addtional/models/lora/Caitlyn.safetensors b/extensions/addtional/models/lora/Caitlyn.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f8eb18d8ecdf2ee8444d6c59750530e0199e63e5 --- /dev/null +++ b/extensions/addtional/models/lora/Caitlyn.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd532977342cd804d70102387a6ff056f735ebc5a1972431dc72f45d42f39158 +size 151112762 diff --git a/extensions/addtional/models/lora/GoodHands-beta2.civitai.info b/extensions/addtional/models/lora/GoodHands-beta2.civitai.info new file mode 100644 index 0000000000000000000000000000000000000000..748c60d11ac5e3d071d8d4966b203698a3c05138 --- /dev/null +++ b/extensions/addtional/models/lora/GoodHands-beta2.civitai.info @@ -0,0 +1,326 @@ +{ + "id": 55199, + "modelId": 47085, + "name": "beta2", + "createdAt": "2023-04-25T16:03:10.701Z", + "updatedAt": "2023-04-25T19:58:12.161Z", + "trainedWords": [], + "baseModel": "SD 1.5", + "earlyAccessTimeFrame": 0, + "description": "

Restarted training from scratch, because apparently training on vanilla 1.5 is actually better in terms of making models that don't overcook things or change the style very much. This new version is still in need of more training, so it's not quite as effective as the old one, but it does seem to, on average, improve things a bit, and it works across a lot more models and doesn't mess with style at all, so I think this is probably the right direction to go in. I'll play around with prompting a bit and update the main description with advice.

", + "stats": { + "downloadCount": 17463, + "ratingCount": 21, + "rating": 4.62 + }, + "model": { + "name": "EnvyBetterHands LoCon", + "type": "LORA", + "nsfw": false, + "poi": false + }, + "files": [ + { + "name": "GoodHands-beta2.safetensors", + "id": 39807, + "sizeKB": 527910.796875, + "type": "Model", + "metadata": { + "fp": null, + "size": null, + "format": "SafeTensor" + }, + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-04-25T19:11:46.124Z", + "hashes": { + "AutoV1": "EC1A8457", + "AutoV2": "BA43B0EFEE", + "SHA256": "BA43B0EFEE61ACE63EAA443AEDC11432423A8398A9EEC11E5CA33B9CEC9A21D8", + "CRC32": "7146EB8B", + "BLAKE3": "840230950343058E93458901A7CA5426A82B06969A21093459F264E3CD0368D7" + }, + "primary": true, + "downloadUrl": "https://civitai.com/api/download/models/55199" + } + ], + "images": [ + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/7414e298-7e70-44a7-36d0-5d296fd26600/width=450/613474.jpeg", + "nsfw": "None", + "width": 1024, + "height": 1536, + "hash": "U38pll$%0K-o%N0gR4-U~BI:9aR*IWoK^hs.", + "meta": { + "VAE": "vae-ft-mse-840000-ema-pruned.vae", + "Size": "512x768", + "seed": 3442069923, + "Model": "applesugarJam_applesugarJamV10", + "steps": 60, + "hashes": { + "model": "3c5afac440" + }, + "prompt": "realistic, hyperrealistic, rim lighting, global illumination, dramatic lighting, (masterpiece), (best_quality), (ultra-detailed), (illustration), 8k, contrapposto, (full body:1.4), vivid colors, iridescent white hair, Steampunk girl, brass machinery, nice hands, beautiful hands", + "sampler": "DPM++ 2M Karras", + "cfgScale": 15, + "resources": [ + { + "name": "theovercomer8sContrastFix_sd15", + "type": "lora", + "weight": 1 + }, + { + "hash": "3c5afac440", + "name": "applesugarJam_applesugarJamV10", + "type": "model" + } + ], + "Model hash": "3c5afac440", + "Hires steps": "18", + "Mimic scale": "7", + "Hires upscale": "2", + "Hires upscaler": "4x-AnimeSharp", + "negativePrompt": "(extra fingers, deformed hands, polydactyl:1.3), (worst quality, low quality, poor quality, bad quality, logo, watermark:1.35)", + "Denoising strength": "0.44", + "SAG Guidance Scale": "0.75", + "SAG Mask Threshold": "1", + "Threshold percentile": "100", + "Dynamic thresholding enabled": "True" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/08d82c46-e66f-459d-53c7-bf6759780c00/width=450/599740.jpeg", + "nsfw": "None", + "width": 1024, + "height": 1536, + "hash": "UKExty~VNGofkD-p-:tQIUjYo#tRniWBj]kC", + "meta": { + "Size": "512x768", + "seed": 107, + "Model": "EnvyMix_v1", + "steps": 32, + "hashes": { + "model": "53c86ec36e" + }, + "prompt": "(masterpiece, best quality:1.3), 1girl, Icelander blacksmith, nice hands, in a smithy, auburn hair", + "sampler": "DPM++ 2M Karras", + "cfgScale": 9.5, + "resources": [ + { + "hash": "53c86ec36e", + "name": "EnvyMix_v1", + "type": "model" + } + ], + "Model hash": "53c86ec36e", + "Hires steps": "13", + "Hires upscale": "2", + "Hires upscaler": "4x-AnimeSharp", + "negativePrompt": "(extra fingers, deformed hands, polydactyl:1.3), (worst quality, low quality, poor quality, bad quality:1.35)", + "Denoising strength": "0.44" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/031a378c-3d66-45da-5d67-966c47cd4800/width=450/599083.jpeg", + "nsfw": "None", + "width": 2012, + "height": 1517, + "hash": "UFJRddxaWBsW?^WqofNb%#WUWUWX.Sxaay-p", + "meta": null + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a165c983-0493-4118-203f-40588a348700/width=450/613476.jpeg", + "nsfw": "X", + "width": 1024, + "height": 1536, + "hash": "U27Tta=|0156^+={0L4:^*S59aEM0goJn$jF", + "meta": { + "VAE": "vae-ft-mse-840000-ema-pruned.vae", + "Size": "512x768", + "seed": 2170198895, + "Model": "applesugarJam_applesugarJamV10", + "steps": 60, + "hashes": { + "model": "3c5afac440" + }, + "prompt": "realistic, hyperrealistic, rim lighting, global illumination, dramatic lighting, (masterpiece), (best_quality), (ultra-detailed), (illustration), 8k, absurdres, contrapposto, (full body:1.7), vivid colors, pastel beige hair, Steampunk girl, brass machinery, nice hands, beautiful hands", + "sampler": "DPM++ 2M Karras", + "cfgScale": 15, + "resources": [ + { + "name": "theovercomer8sContrastFix_sd15", + "type": "lora", + "weight": 1 + }, + { + "hash": "3c5afac440", + "name": "applesugarJam_applesugarJamV10", + "type": "model" + } + ], + "Model hash": "3c5afac440", + "Hires steps": "18", + "Mimic scale": "7", + "Hires upscale": "2", + "Hires upscaler": "4x-AnimeSharp", + "negativePrompt": "(extra fingers, deformed hands, polydactyl:1.3), (worst quality, low quality, poor quality, bad quality, logo, watermark:1.35)", + "Denoising strength": "0.44", + "SAG Guidance Scale": "0.75", + "SAG Mask Threshold": "1", + "Threshold percentile": "100", + "Dynamic thresholding enabled": "True" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e27a2a2a-0dd2-4230-6a41-9765a6fa0200/width=450/599106.jpeg", + "nsfw": "None", + "width": 1024, + "height": 1536, + "hash": "UDJRdew|00?a?^NH?cM|.SWBIA-p.S?H#RNG", + "meta": { + "Size": "512x768", + "seed": 114, + "Model": "7th_anime_v3_B", + "steps": 32, + "hashes": { + "model": "b000309cca" + }, + "prompt": "(masterpiece, best quality:1.3), 1boy, solo, young adult, nice hands, Latvian, slate blue hair ", + "sampler": "DPM++ 2M Karras", + "cfgScale": 9.5, + "resources": [ + { + "hash": "b000309cca", + "name": "7th_anime_v3_B", + "type": "model" + } + ], + "Model hash": "b000309cca", + "Hires steps": "13", + "Hires upscale": "2", + "Hires upscaler": "4x-AnimeSharp", + "negativePrompt": "(nsfw, extra fingers, deformed hands, polydactyl:1.3), (worst quality, low quality, poor quality, bad quality:1.35)", + "Denoising strength": "0.44" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f900629d-2351-4664-a84d-cabb54e96000/width=450/599108.jpeg", + "nsfw": "None", + "width": 1024, + "height": 1536, + "hash": "ULIEt-WG?ZMd~q0K^+t856M{%1E2R.-;Riof", + "meta": { + "Size": "512x768", + "seed": 118, + "Model": "7th_anime_v3_B", + "steps": 32, + "hashes": { + "model": "b000309cca" + }, + "prompt": "(masterpiece, best quality:1.3), 1boy, solo, young adult, nice hands, Belizean, slate blue hair ", + "sampler": "DPM++ 2M Karras", + "cfgScale": 9.5, + "resources": [ + { + "hash": "b000309cca", + "name": "7th_anime_v3_B", + "type": "model" + } + ], + "Model hash": "b000309cca", + "Hires steps": "13", + "Hires upscale": "2", + "Hires upscaler": "4x-AnimeSharp", + "negativePrompt": "(nsfw, extra fingers, deformed hands, polydactyl:1.3), (worst quality, low quality, poor quality, bad quality:1.35)", + "Denoising strength": "0.44" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/481b24a3-da2c-4894-c5e0-c318ca632200/width=450/599087.jpeg", + "nsfw": "None", + "width": 1992, + "height": 1509, + "hash": "UMIOLnofjsoh~pIUax9F4:RjR*RjR.xbWV%M", + "meta": null + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/70f2ca03-3ecc-4124-9c09-1d1538625200/width=450/599088.jpeg", + "nsfw": "None", + "width": 1992, + "height": 1536, + "hash": "UHJal%IoWB9b?GRkM{D%IVM{RjD%~pt7WB%L", + "meta": null + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c4144803-2d16-475e-db34-d47a0063c100/width=450/599097.jpeg", + "nsfw": "None", + "width": 1024, + "height": 1536, + "hash": "ULJkAdIqbu?b-oIV~qxuM|D*%1of_2%MMxV[", + "meta": { + "Size": "512x768", + "seed": 108, + "Model": "revAnimated_v12", + "steps": 32, + "hashes": { + "model": "02aecf0c7d" + }, + "prompt": "(masterpiece, best quality:1.3), 1girl, solo, young adult, nice hands, Bissau-Guinean, dark beige hair ", + "sampler": "DPM++ 2M Karras", + "cfgScale": 9.5, + "resources": [ + { + "hash": "02aecf0c7d", + "name": "revAnimated_v12", + "type": "model" + } + ], + "Model hash": "02aecf0c7d", + "Hires steps": "13", + "Hires upscale": "2", + "Hires upscaler": "4x-AnimeSharp", + "negativePrompt": "(nsfw, extra fingers, deformed hands, polydactyl:1.3), (worst quality, low quality, poor quality, bad quality:1.35)", + "Denoising strength": "0.44" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/247b4720-c785-46ac-9059-ae1b19a68a00/width=450/599181.jpeg", + "nsfw": "Soft", + "width": 1024, + "height": 1536, + "hash": "UMIz@qX=0:x]PBpKtnsp#RM{9bxY9anMVtIp", + "meta": { + "Size": "512x768", + "seed": 100, + "Model": "EnvyMix_V11", + "steps": 32, + "hashes": { + "model": "c0c4ed6b84" + }, + "prompt": "(masterpiece, best quality:1.3), 1girl, Curaaoan blacksmith, nice hands, in a smithy, gold hair", + "sampler": "DPM++ 2M Karras", + "cfgScale": 9.5, + "resources": [ + { + "name": "EnvyCuteMix01", + "type": "lora", + "weight": 1.5 + }, + { + "hash": "c0c4ed6b84", + "name": "EnvyMix_V11", + "type": "model" + } + ], + "Model hash": "c0c4ed6b84", + "Hires steps": "13", + "Hires upscale": "2", + "Hires upscaler": "4x-AnimeSharp", + "negativePrompt": "(nsfw, extra fingers, deformed hands, polydactyl:1.3), (worst quality, low quality, poor quality, bad quality:1.35)", + "Denoising strength": "0.44" + } + } + ], + "downloadUrl": "https://civitai.com/api/download/models/55199" +} \ No newline at end of file diff --git a/extensions/addtional/models/lora/GoodHands-beta2.preview.png b/extensions/addtional/models/lora/GoodHands-beta2.preview.png new file mode 100644 index 0000000000000000000000000000000000000000..6919227ca5b6f7c48c012fce86a5b43846acf879 Binary files /dev/null and b/extensions/addtional/models/lora/GoodHands-beta2.preview.png differ diff --git a/extensions/addtional/models/lora/GoodHands-beta2.safetensors b/extensions/addtional/models/lora/GoodHands-beta2.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..c9382eaa66a4cdf89c0f9805e7b0905a05faa408 --- /dev/null +++ b/extensions/addtional/models/lora/GoodHands-beta2.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba43b0efee61ace63eaa443aedc11432423a8398a9eec11e5ca33b9cec9a21d8 +size 540580656 diff --git a/extensions/addtional/models/lora/LickingOralLoRA.civitai.info b/extensions/addtional/models/lora/LickingOralLoRA.civitai.info new file mode 100644 index 0000000000000000000000000000000000000000..e96f2459183073598f93cd08571f309c8c7c77a0 --- /dev/null +++ b/extensions/addtional/models/lora/LickingOralLoRA.civitai.info @@ -0,0 +1,145 @@ +{ + "id": 22959, + "modelId": 4985, + "name": "LickingOralLoRA", + "createdAt": "2023-03-14T07:37:34.577Z", + "updatedAt": "2023-03-15T18:57:02.459Z", + "trainedWords": [ + "lickingoral" + ], + "baseModel": "SD 1.5", + "earlyAccessTimeFrame": 0, + "description": null, + "stats": { + "downloadCount": 34585, + "ratingCount": 29, + "rating": 4.97 + }, + "model": { + "name": "Licking Oral", + "type": "LORA", + "nsfw": true, + "poi": false + }, + "files": [ + { + "id": 19091, + "url": "https://5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com/civitai-prod-settled/68198/model/lickingorallora.qFHp.safetensors", + "sizeKB": 147580.45703125, + "name": "LickingOralLoRA.safetensors", + "type": "Model", + "metadata": { + "fp": "fp16", + "size": "full", + "format": "SafeTensor" + }, + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "virusScanMessage": null, + "scannedAt": "2023-03-14T07:41:41.106Z", + "hashes": { + "AutoV1": "97EDDC12", + "AutoV2": "9FF9EC47E3", + "SHA256": "9FF9EC47E3CA3078AC4DAC0D46C64863833D10E8E4344978AFAA1C31650A3AE6", + "CRC32": "2625A276", + "BLAKE3": "AF30243DCC9569DF6E36F55B6BAEB9235FB7FCF15F106D9FDD951DE159E6B60D" + }, + "primary": true, + "downloadUrl": "https://civitai.com/api/download/models/22959" + } + ], + "images": [ + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/7d85c30f-2948-4db2-f8c5-c0ff6da76e00/width=450/248307.jpeg", + "nsfw": "X", + "width": 738, + "height": 738, + "hash": "UGJQck~V57-U.6tQ0fELJ$niixbbx[NG-o%2", + "meta": { + "seed": 3290525549, + "steps": 25, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , lickingoral, licking penis, saliva, ", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c1353eb7-f527-4cab-0465-6b884fb37c00/width=450/248306.jpeg", + "nsfw": "X", + "width": 726, + "height": 737, + "hash": "UEI4|qb{0#^i00RORO9t0K-p~BS4EONI-;-o", + "meta": { + "seed": 2183475948, + "steps": 25, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , kiryuin satsuki, , lickingoral, licking penis, saliva", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/23b1a7fc-ffc1-476c-e590-a5ab2fc5e600/width=450/248305.jpeg", + "nsfw": "X", + "width": 739, + "height": 744, + "hash": "UIKANTtR?^}?PANG%h-oK5NG-VNG_2t6~Vax", + "meta": { + "seed": 1773281471, + "steps": 25, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , lickingoral, licking penis, saliva, ", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/2a5df47a-44fb-430d-dd8e-4a49ec2e5900/width=450/248304.jpeg", + "nsfw": "X", + "width": 733, + "height": 739, + "hash": "UMI|wM%#2I%NtT_MKjS6-;Xnx]=|%Mt8?Gs:", + "meta": { + "seed": 2970402808, + "steps": 25, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , lickingoral, licking penis, saliva, , GiovannaMS", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/53ed36b4-34f3-4830-1172-c9e7f8816a00/width=450/248303.jpeg", + "nsfw": "X", + "width": 737, + "height": 742, + "hash": "UBJHU8_2p{IByr%fDjD%00%gU^xuV|E3%M-U", + "meta": { + "seed": 2183475948, + "steps": 25, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , lickingoral, licking penis, saliva, , bea \\(pokemon\\)", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/527f6a17-e0a3-4f85-e5f3-0b1aec227800/width=450/248299.jpeg", + "nsfw": "X", + "width": 741, + "height": 744, + "hash": "UIKJ=6.Q01=sFe?a560Lti?G~BJT0fIU%2%f", + "meta": { + "seed": 4149488264, + "steps": 25, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , lickingoral, licking penis, saliva,", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)" + } + } + ], + "downloadUrl": "https://civitai.com/api/download/models/22959" +} \ No newline at end of file diff --git a/extensions/addtional/models/lora/LickingOralLoRA.preview.png b/extensions/addtional/models/lora/LickingOralLoRA.preview.png new file mode 100644 index 0000000000000000000000000000000000000000..81d055a6e96695859d12c4045dd8ee68c615b75e Binary files /dev/null and b/extensions/addtional/models/lora/LickingOralLoRA.preview.png differ diff --git a/extensions/addtional/models/lora/LickingOralLoRA.safetensors b/extensions/addtional/models/lora/LickingOralLoRA.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..542c867aa1374580dbae67a14d65088987181f8a --- /dev/null +++ b/extensions/addtional/models/lora/LickingOralLoRA.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ff9ec47e3ca3078ac4dac0d46c64863833d10e8e4344978afaa1c31650a3ae6 +size 151122388 diff --git a/extensions/addtional/models/lora/MakimaCSM.civitai.info b/extensions/addtional/models/lora/MakimaCSM.civitai.info new file mode 100644 index 0000000000000000000000000000000000000000..1eb513233e11cfa684ac4b2f05616035ece7d17f --- /dev/null +++ b/extensions/addtional/models/lora/MakimaCSM.civitai.info @@ -0,0 +1,374 @@ +{ + "id": 77966, + "modelId": 73254, + "name": "v1.0", + "createdAt": "2023-05-22T15:55:48.007Z", + "updatedAt": "2023-05-22T16:01:43.744Z", + "trainedWords": [ + "makimacsm", + "eye_focus" + ], + "baseModel": "SD 1.5", + "earlyAccessTimeFrame": 0, + "description": null, + "stats": { + "downloadCount": 1570, + "ratingCount": 3, + "rating": 5 + }, + "model": { + "name": "Makima (Chainsaw Man) LoRA", + "type": "LORA", + "nsfw": false, + "poi": false + }, + "files": [ + { + "name": "MakimaCSM.safetensors", + "id": 53667, + "sizeKB": 147572.03125, + "type": "Model", + "metadata": { + "fp": null, + "size": null, + "format": "SafeTensor" + }, + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-05-22T16:01:21.799Z", + "hashes": { + "AutoV1": "5D1AEB1D", + "AutoV2": "8F86015B45", + "SHA256": "8F86015B458E4389852CB6D24547DEA450DC58B0F8205C81F4E034809FE5776B", + "CRC32": "7EE81A3E", + "BLAKE3": "476B6EEAB576387CE68736542C4498BD80E31A8430C73CB7A958300F656905EA" + }, + "primary": true, + "downloadUrl": "https://civitai.com/api/download/models/77966" + } + ], + "images": [ + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5eb1ae51-5dc2-48ac-80f2-3d477955e709/width=450/874255.jpeg", + "nsfw": "None", + "width": 1024, + "height": 1536, + "hash": "UXHxHIT0J7?H~VNGIonjDiM{bFRPV@axxun$", + "meta": { + "Size": "512x768", + "seed": 83304444, + "Model": "abyssorangemix3AOM3_aom3a1b", + "steps": 30, + "hashes": { + "model": "5493a0ec49" + }, + "prompt": "masterpiece, best quality, ultra-detailed, Potrait of beautiful MakimaCSM, solo, shirt, long_sleeves, white_shirt, collared_shirt, pants, from_behind, arms_behind_back, black_pants, formal, suit, arm_behind_back, shirt_tucked_in, facing_away, office_lady, business_suit, high-waist_pants, volumetric lighting, best quality, masterpiece, intricate details, tonemapping, sharp focus, hyper detailed, trending on Artstation, ", + "sampler": "DPM++ 2M", + "cfgScale": 7, + "Clip skip": "2", + "resources": [ + { + "name": "MakimaCSM", + "type": "lora", + "weight": 1.2 + }, + { + "hash": "5493a0ec49", + "name": "abyssorangemix3AOM3_aom3a1b", + "type": "model" + } + ], + "Model hash": "5493a0ec49", + "Hires steps": "20", + "Hires upscale": "2", + "Hires upscaler": "Latent", + "negativePrompt": "EasyNegative, badhandv4, artist name, signture, extra fingers, fewer fingers, blurry, watermark, logo, nsfw, nipples", + "Denoising strength": "0.55" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/853efdc1-0f1b-4c49-8a05-fa8a7a358395/width=450/874263.jpeg", + "nsfw": "None", + "width": 768, + "height": 1152, + "hash": "UOG@_R~V9@I:aJNFNFM{~W?HSfM|xsR*Ioo0", + "meta": { + "Size": "512x768", + "seed": 3481549176, + "Model": "neverendingDreamNED_bakedVae", + "steps": 30, + "hashes": { + "model": "ecefb796ff" + }, + "prompt": "masterpiece, (photorealistic:1.4), best quality, beautiful lightinMakimaCSM, solo, looking_at_viewer, hair_between_eyes, eyelashes, close-up, eye_focus, RAW photo, 8k uhd, film grain, ", + "sampler": "DPM++ SDE Karras", + "cfgScale": 7, + "Clip skip": "2", + "resources": [ + { + "name": "MakimaCSM", + "type": "lora", + "weight": 1.2 + }, + { + "hash": "ecefb796ff", + "name": "neverendingDreamNED_bakedVae", + "type": "model" + } + ], + "Model hash": "ecefb796ff", + "Hires steps": "30", + "Hires upscale": "1.5", + "Hires upscaler": "Latent (antialiased)", + "negativePrompt": "EasyNegative, badhandv4, artist name, signture, extra fingers, fewer fingers, blurry, watermark, logo, nsfw, nipples, ((eyelashes)), ((speech bubble))", + "Denoising strength": "0.6" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/aaa0cc16-b771-4dc2-b894-a32910ad07eb/width=450/874262.jpeg", + "nsfw": "None", + "width": 768, + "height": 1152, + "hash": "UKI4-E4:~qD%?HM{EMad9Gae%LM{NGax%2V@", + "meta": { + "Size": "512x768", + "seed": 646502702, + "Model": "neverendingDreamNED_bakedVae", + "steps": 30, + "hashes": { + "model": "ecefb796ff" + }, + "prompt": "masterpiece, (photorealistic:1.4), best quality, beautiful lighting, MakimaCSM, solo, breasts, looking_at_viewer, smile, long_sleeves, dress, medium_breasts, collarbone, upper_body, black_dress, halo, eye_focus, RAW photo, 8k uhd, film grain, ", + "sampler": "DPM++ SDE Karras", + "cfgScale": 8, + "Clip skip": "2", + "resources": [ + { + "name": "MakimaCSM", + "type": "lora", + "weight": 1.2 + }, + { + "hash": "ecefb796ff", + "name": "neverendingDreamNED_bakedVae", + "type": "model" + } + ], + "Model hash": "ecefb796ff", + "Hires steps": "30", + "Hires upscale": "1.5", + "Hires upscaler": "Latent (antialiased)", + "negativePrompt": "EasyNegative, badhandv4, artist name, signture, extra fingers, fewer fingers, blurry, watermark, logo, nsfw, nipples, ((eyelashes)), ((speech bubble))", + "Denoising strength": "0.6" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f8fbada2-2566-4f85-94d5-a2588926b9ad/width=450/874256.jpeg", + "nsfw": "None", + "width": 1024, + "height": 1357, + "hash": "ULHL0i~VKi9u00r?t6Nc%gI:M|%2I:X8oeae", + "meta": null + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e2c25746-1221-4dd3-8611-1c9c0c99b926/width=450/874254.jpeg", + "nsfw": "None", + "width": 1024, + "height": 1372, + "hash": "UDH_Pjxa~T~o?a~Bt,_200?Gx]oz%2-:0L9a", + "meta": null + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/29b9bcd9-a9e9-463b-8dcd-8b3e7fd098d7/width=450/874257.jpeg", + "nsfw": "None", + "width": 1024, + "height": 1536, + "hash": "UnJ@UcxZXRoz~VoJtQt7adkCe:V@-pxuIVRj", + "meta": { + "Size": "512x768", + "seed": 3870818211, + "Model": "abyssorangemix3AOM3_aom3a1b", + "steps": 30, + "hashes": { + "model": "5493a0ec49" + }, + "prompt": "masterpiece, best quality, ultra-detailed, Potrait of beautiful MakimaCSM, solo, breasts, looking_at_viewer, smile, long_sleeves, dress, medium_breasts, collarbone, upper_body, black_dress, halo, volumetric lighting, best quality, masterpiece, intricate details, tonemapping, sharp focus, hyper detailed, trending on Artstation, ", + "sampler": "DPM++ SDE Karras", + "cfgScale": 7, + "Clip skip": "2", + "resources": [ + { + "name": "MakimaCSM", + "type": "lora", + "weight": 1.2 + }, + { + "hash": "5493a0ec49", + "name": "abyssorangemix3AOM3_aom3a1b", + "type": "model" + } + ], + "Model hash": "5493a0ec49", + "Hires steps": "20", + "Hires upscale": "2", + "Hires upscaler": "R-ESRGAN 4x+ Anime6B", + "negativePrompt": "EasyNegative, badhandv4, artist name, signture, extra fingers, fewer fingers, blurry, watermark, logo, nsfw, nipples", + "Denoising strength": "0.3" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ac1a2d25-3e66-4214-94d8-0cec607c5633/width=450/874259.jpeg", + "nsfw": "None", + "width": 1024, + "height": 1536, + "hash": "UdI;x9XTXRt7~Wt8EMs:IAM{bbRjIAM{oyV@", + "meta": { + "Size": "512x768", + "seed": 83304444, + "Model": "abyssorangemix3AOM3_aom3a1b", + "steps": 30, + "hashes": { + "model": "5493a0ec49" + }, + "prompt": "masterpiece, best quality, ultra-detailed, Potrait of beautiful MakimaCSM, solo, shirt, long_sleeves, white_shirt, collared_shirt, pants, from_behind, arms_behind_back, black_pants, formal, suit, arm_behind_back, shirt_tucked_in, facing_away, office_lady, business_suit, high-waist_pants, volumetric lighting, best quality, masterpiece, intricate details, tonemapping, sharp focus, hyper detailed, trending on Artstation, ", + "sampler": "DPM++ SDE Karras", + "cfgScale": 7, + "Clip skip": "2", + "resources": [ + { + "name": "MakimaCSM", + "type": "lora", + "weight": 1.2 + }, + { + "hash": "5493a0ec49", + "name": "abyssorangemix3AOM3_aom3a1b", + "type": "model" + } + ], + "Model hash": "5493a0ec49", + "Hires steps": "20", + "Hires upscale": "2", + "Hires upscaler": "R-ESRGAN 4x+ Anime6B", + "negativePrompt": "EasyNegative, badhandv4, artist name, signture, extra fingers, fewer fingers, blurry, watermark, logo, nsfw, nipples", + "Denoising strength": "0.3" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/0a96c37e-64da-47be-ad27-38e7072015a1/width=450/874260.jpeg", + "nsfw": "None", + "width": 1024, + "height": 1536, + "hash": "UaJk1K~oO9I._2t6IUxt.SxuRPxt?ct8IVV[", + "meta": { + "Size": "512x768", + "seed": 2163475893, + "Model": "abyssorangemix3AOM3_aom3a1b", + "steps": 30, + "hashes": { + "model": "5493a0ec49" + }, + "prompt": "masterpiece, best quality, ultra-detailed, Potrait of beautifulMakimaCSM, solo, looking_at_viewer, smile, shirt, jacket, white_shirt, necktie, collared_shirt, black_jacket, looking_to_the_side, formal, suit, black_necktie, eye_focus, volumetric lighting, best quality, masterpiece, intricate details, tonemapping, sharp focus, hyper detailed, trending on Artstation, ", + "sampler": "DPM++ 2M Karras", + "cfgScale": 8, + "Clip skip": "2", + "resources": [ + { + "name": "MakimaCSM", + "type": "lora", + "weight": 1.2 + }, + { + "hash": "5493a0ec49", + "name": "abyssorangemix3AOM3_aom3a1b", + "type": "model" + } + ], + "Model hash": "5493a0ec49", + "Hires steps": "30", + "Hires upscale": "2", + "Hires upscaler": "R-ESRGAN 4x+ Anime6B", + "negativePrompt": "EasyNegative, badhandv4, artist name, signture, extra fingers, fewer fingers, blurry, watermark, logo, nsfw, nipples", + "Denoising strength": "0.3" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/0f48048e-9734-4994-9cf8-5828b0b6f0f4/width=450/874261.jpeg", + "nsfw": "None", + "width": 1024, + "height": 1536, + "hash": "U9G[sH00Pn~W%N9D%hNF00_N^*9FEK_44mW=", + "meta": { + "Size": "512x768", + "seed": 2671875893, + "Model": "abyssorangemix3AOM3_aom3a1b", + "steps": 30, + "hashes": { + "model": "5493a0ec49" + }, + "prompt": "masterpiece, best quality, ultra-detailed, Potrait of beautiful MakimaCSM, solo, breasts, smile, shirt, medium_breasts, white_shirt, outdoors, necktie, sky, collared_shirt, pants, cloud, blurry, arms_behind_back, black_pants, formal, cloudy_sky, suit, black_necktie, shirt_tucked_in, eye focus, volumetric lighting, best quality, masterpiece, intricate details, tonemapping, sharp focus, hyper detailed, trending on Artstation, ", + "sampler": "DPM++ 2M Karras", + "cfgScale": 8, + "Clip skip": "2", + "resources": [ + { + "name": "MakimaCSM", + "type": "lora", + "weight": 1.2 + }, + { + "hash": "5493a0ec49", + "name": "abyssorangemix3AOM3_aom3a1b", + "type": "model" + } + ], + "Model hash": "5493a0ec49", + "Hires steps": "30", + "Hires upscale": "2", + "Hires upscaler": "R-ESRGAN 4x+ Anime6B", + "negativePrompt": "EasyNegative, badhandv4, artist name, signture, extra fingers, fewer fingers, blurry, watermark, logo, nsfw, nipples", + "Denoising strength": "0.3" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/7ad7133a-2c88-404f-8b60-7c59618fffbd/width=450/874258.jpeg", + "nsfw": "None", + "width": 1024, + "height": 1536, + "hash": "UCKAQn~V0L^+00Mx?bD*.9t7Rioz~VR*I;kB", + "meta": { + "Size": "512x768", + "seed": 2106837326, + "Model": "abyssorangemix3AOM3_aom3a1b", + "steps": 30, + "hashes": { + "model": "5493a0ec49" + }, + "prompt": "masterpiece, best quality, ultra-detailed, Potrait of beautiful MakimaCSM, solo, looking_at_viewer, hair_between_eyes, eyelashes, close-up, eye_focus, volumetric lighting, best quality, masterpiece, intricate details, tonemapping, sharp focus, hyper detailed, trending on Artstation, ", + "sampler": "DPM++ SDE Karras", + "cfgScale": 7, + "Clip skip": "2", + "resources": [ + { + "name": "MakimaCSM", + "type": "lora", + "weight": 1.2 + }, + { + "hash": "5493a0ec49", + "name": "abyssorangemix3AOM3_aom3a1b", + "type": "model" + } + ], + "Model hash": "5493a0ec49", + "Hires steps": "30", + "Hires upscale": "2", + "Hires upscaler": "R-ESRGAN 4x+ Anime6B", + "negativePrompt": "EasyNegative, badhandv4, artist name, signture, extra fingers, fewer fingers, blurry, watermark, logo, nsfw, nipples", + "Denoising strength": "0.3" + } + } + ], + "downloadUrl": "https://civitai.com/api/download/models/77966" +} \ No newline at end of file diff --git a/extensions/addtional/models/lora/MakimaCSM.preview.png b/extensions/addtional/models/lora/MakimaCSM.preview.png new file mode 100644 index 0000000000000000000000000000000000000000..96f80eb0d4731d1be9b94bc1f48397511409d966 Binary files /dev/null and b/extensions/addtional/models/lora/MakimaCSM.preview.png differ diff --git a/extensions/addtional/models/lora/MakimaCSM.safetensors b/extensions/addtional/models/lora/MakimaCSM.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..79bd995bcdcc6e9779386537c0fc8212ede74268 --- /dev/null +++ b/extensions/addtional/models/lora/MakimaCSM.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f86015b458e4389852cb6d24547dea450dc58b0f8205c81f4e034809fe5776b +size 151113760 diff --git a/extensions/addtional/models/lora/README.md b/extensions/addtional/models/lora/README.md new file mode 100644 index 0000000000000000000000000000000000000000..1fc2c98ca4f2eb76e76039d81a126ff639aeb45a --- /dev/null +++ b/extensions/addtional/models/lora/README.md @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b31a3ee3aaf413a5aa371a67e17342321e393df1c304e777db671fe3691b83b +size 65884102 diff --git a/extensions/addtional/models/lora/Riven-000016.civitai.info b/extensions/addtional/models/lora/Riven-000016.civitai.info new file mode 100644 index 0000000000000000000000000000000000000000..a894279a91ca3c019dbcf8c1c51d77fa2e08551d --- /dev/null +++ b/extensions/addtional/models/lora/Riven-000016.civitai.info @@ -0,0 +1,483 @@ +{ + "id": 91129, + "modelId": 85695, + "name": "v1.0", + "createdAt": "2023-06-07T15:09:10.854Z", + "updatedAt": "2023-06-16T15:58:33.875Z", + "trainedWords": [ + "riven \\(league of legends\\), 1girl, short dress, corset, white hair, black eyeshadow" + ], + "baseModel": "SD 1.5", + "earlyAccessTimeFrame": 0, + "description": null, + "stats": { + "downloadCount": 800, + "ratingCount": 4, + "rating": 5 + }, + "model": { + "name": "Riven | League of Legends", + "type": "LORA", + "nsfw": false, + "poi": false + }, + "files": [ + { + "name": "Riven-000016.safetensors", + "id": 62727, + "sizeKB": 36977.521484375, + "type": "Model", + "metadata": { + "fp": null, + "size": null, + "format": "SafeTensor" + }, + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-06-07T15:10:57.425Z", + "hashes": { + "AutoV1": "5D2FC559", + "AutoV2": "4361EE9E0D", + "SHA256": "4361EE9E0DF5A41527BB73D0F2657A6670FE5A4C50052BA8EC42533984D4D384", + "CRC32": "351B005A", + "BLAKE3": "B5E00E5F61A01F50EC0322D3F98551AB9FCE3878D63FE44D2896ADBFC315ABEC" + }, + "primary": true, + "downloadUrl": "https://civitai.com/api/download/models/91129" + } + ], + "images": [ + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/af682e62-0dd6-4a1c-8f66-3a05f23d508c/width=450/1062809.jpeg", + "nsfw": "None", + "width": 1024, + "height": 1536, + "hash": "USIX~t-UIo9F_NIVX9D%_3%LjFjEtSofsmxa", + "meta": { + "Size": "1024x1536", + "seed": 4039153864, + "Model": "pasteldiffusedmix_v21", + "steps": 20, + "hashes": { + "vae": "df3c506e51", + "model": "d9980ebeea", + "embed:bad-artist": "2d35613490", + "embed:bad-hands-5": "aa7651be15", + "lora:Riven-000016": "4361ee9e0d", + "embed:EasyNegative": "66a7279a88", + "embed:bad_prompt_version2": "6f35e7dd81", + "embed:ng_deepnegative_v1_75t": "54e7e4826d" + }, + "prompt": "(Masterpiece:1.2), best quality, , riven \\(league of legends\\), 1girl, folded ponytail, short dress, coreset, single pauldron, white hair, black eyeshadow, bare shoulders, upper body, potrait", + "Version": "v1.3.2", + "sampler": "Euler a", + "cfgScale": 7, + "Clip skip": "2", + "resources": [ + { + "hash": "d9980ebeea", + "name": "pasteldiffusedmix_v21", + "type": "model" + } + ], + "Model hash": "d9980ebeea", + "\"Riven-000016": "1683d344c22b\"", + "negativePrompt": "3d, cartoon, sketches, (worst quality:2), (low quality:2), lowres, ((monochrome)), ((grayscale)), drawn by bad-artist, bad_prompt_version2, EasyNegative, ng_deepnegative_v1_75t, bad-hands-5, bad anatomy, text, multiple arms, watermark, simple background, white background, noise, blurry background, blurry, signature, black background, patreon username", + "Denoising strength": "0.45", + "Tiled Diffusion upscaler": "4x-UltraSharp", + "Tiled Diffusion scale factor": "2" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/22741aee-ea5f-42b7-b021-847a20e448aa/width=450/1062723.jpeg", + "nsfw": "None", + "width": 1024, + "height": 1536, + "hash": "UQIXps4nNHxD~q4:o}Rit7WVWBj[?axFIUW;", + "meta": { + "Size": "1024x1536", + "seed": 2704150935, + "Model": "pasteldiffusedmix_v21", + "steps": 20, + "hashes": { + "vae": "df3c506e51", + "model": "d9980ebeea", + "embed:bad-artist": "2d35613490", + "embed:bad-hands-5": "aa7651be15", + "lora:Riven-000016": "4361ee9e0d", + "embed:EasyNegative": "66a7279a88", + "embed:bad_prompt_version2": "6f35e7dd81", + "embed:ng_deepnegative_v1_75t": "54e7e4826d" + }, + "prompt": "(Masterpiece:1.2), best quality, , riven \\(league of legends\\), 1girl, sarashi, muscular female, abs, white hair, black eyeshadow, bare shoulders, upper body, potrait", + "Version": "v1.3.2", + "sampler": "Euler a", + "cfgScale": 7, + "Clip skip": "2", + "resources": [ + { + "hash": "d9980ebeea", + "name": "pasteldiffusedmix_v21", + "type": "model" + } + ], + "Model hash": "d9980ebeea", + "\"Riven-000016": "1683d344c22b\"", + "negativePrompt": "3d, cartoon, sketches, (worst quality:2), (low quality:2), lowres, ((monochrome)), ((grayscale)), drawn by bad-artist, bad_prompt_version2, EasyNegative, ng_deepnegative_v1_75t, bad-hands-5, bad anatomy, text, multiple arms, watermark, simple background, white background, noise, blurry background, blurry, signature, black background, patreon username, nipples, nipples see-through", + "Denoising strength": "0.35", + "Tiled Diffusion upscaler": "4x-UltraSharp", + "Tiled Diffusion scale factor": "2" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ac203bb2-0012-45b7-ab74-eea8a21cfd4a/width=450/1062889.jpeg", + "nsfw": "None", + "width": 1024, + "height": 1536, + "hash": "U5F5jX-p0000F20f00~VS14:%2$%Ios.=w~W", + "meta": { + "Size": "1024x1536", + "seed": 225700217, + "Model": "pasteldiffusedmix_v21", + "steps": 20, + "hashes": { + "vae": "df3c506e51", + "model": "d9980ebeea", + "embed:bad-artist": "2d35613490", + "embed:bad-hands-5": "aa7651be15", + "lora:Riven-000016": "4361ee9e0d", + "embed:EasyNegative": "66a7279a88", + "embed:bad_prompt_version2": "6f35e7dd81", + "embed:ng_deepnegative_v1_75t": "54e7e4826d" + }, + "prompt": "(Masterpiece:1.2), best quality, , riven \\(league of legends\\), 1girl, folded ponytail, short dress, coreset, single pauldron, white hair, black eyeshadow, bare shoulders, upper body, cowboy shot,", + "Version": "v1.3.2", + "sampler": "Euler a", + "cfgScale": 7, + "Clip skip": "2", + "resources": [ + { + "hash": "d9980ebeea", + "name": "pasteldiffusedmix_v21", + "type": "model" + } + ], + "Model hash": "d9980ebeea", + "\"Riven-000016": "1683d344c22b\"", + "negativePrompt": "3d, cartoon, sketches, (worst quality:2), (low quality:2), lowres, ((monochrome)), ((grayscale)), drawn by bad-artist, bad_prompt_version2, EasyNegative, ng_deepnegative_v1_75t, bad-hands-5, bad anatomy, text, multiple arms, watermark, simple background, white background, noise, blurry background, blurry, signature, black background, patreon username", + "Denoising strength": "0.35", + "Tiled Diffusion upscaler": "4x-UltraSharp", + "Tiled Diffusion scale factor": "2" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d9c4ee52-6913-4380-8fa0-bdcd6aab110c/width=450/1062714.jpeg", + "nsfw": "None", + "width": 1024, + "height": 1536, + "hash": "UkJQ}|-pxZR*~pRkWBj[kDNHbHWBR*WXWBRj", + "meta": { + "Size": "1024x1536", + "seed": 3810378578, + "Model": "pasteldiffusedmix_v21", + "steps": 20, + "hashes": { + "vae": "df3c506e51", + "model": "d9980ebeea", + "embed:bad-artist": "2d35613490", + "embed:bad-hands-5": "aa7651be15", + "lora:Riven-000016": "4361ee9e0d", + "embed:EasyNegative": "66a7279a88", + "embed:bad_prompt_version2": "6f35e7dd81", + "embed:ng_deepnegative_v1_75t": "54e7e4826d" + }, + "prompt": "(Masterpiece:1.2), best quality, , riven \\(league of legends\\), 1girl, short dress, corset, white hair, black eyeshadow, bare shoulders, hands on hips, upper body, potrait", + "Version": "v1.3.2", + "sampler": "Euler a", + "cfgScale": 7, + "Clip skip": "2", + "resources": [ + { + "hash": "d9980ebeea", + "name": "pasteldiffusedmix_v21", + "type": "model" + } + ], + "Model hash": "d9980ebeea", + "\"Riven-000016": "1683d344c22b\"", + "negativePrompt": "3d, cartoon, sketches, (worst quality:2), (low quality:2), lowres, ((monochrome)), ((grayscale)), drawn by bad-artist, bad_prompt_version2, EasyNegative, ng_deepnegative_v1_75t, bad-hands-5, bad anatomy, text, multiple arms, watermark, simple background, white background, noise, blurry background, blurry, signature, black background, patreon username", + "Denoising strength": "0.4", + "Tiled Diffusion upscaler": "4x-UltraSharp", + "Tiled Diffusion scale factor": "2" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/0a89654d-7760-4d14-b68f-9fdd1d98a926/width=450/1062713.jpeg", + "nsfw": "None", + "width": 1280, + "height": 1920, + "hash": "UPKdh|4._2%2~pRQR%t7E1xuD%S2tRbHxZof", + "meta": { + "Size": "1280x1920", + "seed": 2557099435, + "Model": "camelliamix25DV2_v2", + "steps": 20, + "hashes": { + "vae": "df3c506e51", + "model": "ed4f26c284", + "embed:bad-artist": "2d35613490", + "embed:bad-hands-5": "aa7651be15", + "embed:EasyNegative": "66a7279a88", + "embed:bad_prompt_version2": "6f35e7dd81", + "embed:ng_deepnegative_v1_75t": "54e7e4826d" + }, + "prompt": "(Masterpiece:1.2), best quality, (illustration:1.2), (ultra-detailed), , riven \\(league of legends\\), 1girl, folded ponytail, short dress, single pauldron, corset, white hair, sitting, upper body, cowboy shot", + "Version": "v1.3.2", + "sampler": "DPM++ 2M Karras", + "cfgScale": 7, + "Clip skip": "2", + "resources": [ + { + "hash": "ed4f26c284", + "name": "camelliamix25DV2_v2", + "type": "model" + } + ], + "{\"Method\"": "\"Mixture of Diffusers\"", + "\"Upscaler\"": "\"4x-UltraSharp\"", + "Model hash": "ed4f26c284", + "\"Riven-000016": "1683d344c22b\"", + "\"Tile Overlap\"": "16", + "negativePrompt": "3d, cartoon, sketches, (worst quality:2), (low quality:2), (normal quality:2), lowres, normal quality, ((monochrome)), ((grayscale)), drawn by bad-artist, bad_prompt_version2, EasyNegative, ng_deepnegative_v1_75t, bad-hands-5, bad anatomy, text, multiple arms, watermark, simple background, white background, noise, blurry background, blurry, signature, black background, patreon username", + "\"Upscale factor\"": "2.5", + "\"Keep input size\"": "true}", + "\"Tile batch size\"": "8", + "\"Tile tile width\"": "128", + "\"Tile tile height\"": "196", + "Denoising strength": "0.4", + "Tiled Diffusion upscaler": "4x-UltraSharp", + "Tiled Diffusion scale factor": "2.5" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/cdc818fe-cb47-4f8b-88af-6fd5d814ce2a/width=450/1062715.jpeg", + "nsfw": "Soft", + "width": 1024, + "height": 1536, + "hash": "UZHLMA~BbuXS.8%2%2tRr=xuM{aKD%WWs-nO", + "meta": { + "Size": "1024x1536", + "seed": 2586139498, + "Model": "camelliamix25DV2_v2", + "steps": 20, + "hashes": { + "vae": "df3c506e51", + "model": "ed4f26c284", + "embed:bad-artist": "2d35613490", + "embed:bad-hands-5": "aa7651be15", + "embed:EasyNegative": "66a7279a88", + "embed:bad_prompt_version2": "6f35e7dd81", + "embed:ng_deepnegative_v1_75t": "54e7e4826d" + }, + "prompt": "(Masterpiece:1.2), best quality, (illustration:1.2), (ultra-detailed), , riven \\(league of legends\\), 1girl, folded ponytail, short dress, single pauldron, corset, white hair, sitting, upper body, cowboy shot", + "Version": "v1.3.2", + "sampler": "DPM++ 2M Karras", + "cfgScale": 7, + "Clip skip": "2", + "resources": [ + { + "hash": "ed4f26c284", + "name": "camelliamix25DV2_v2", + "type": "model" + } + ], + "Model hash": "ed4f26c284", + "\"Riven-000016": "1683d344c22b\"", + "negativePrompt": "3d, cartoon, sketches, (worst quality:2), (low quality:2), (normal quality:2), lowres, normal quality, ((monochrome)), ((grayscale)), drawn by bad-artist, bad_prompt_version2, EasyNegative, ng_deepnegative_v1_75t, bad-hands-5, bad anatomy, text, multiple arms, watermark, simple background, white background, noise, blurry background, blurry, signature, black background, patreon username", + "Denoising strength": "0.35", + "Tiled Diffusion upscaler": "4x-UltraSharp", + "Tiled Diffusion scale factor": "2" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c76ceedd-df88-4ae7-a5e7-f0cb23c7f0b5/width=450/1062716.jpeg", + "nsfw": "None", + "width": 1280, + "height": 1920, + "hash": "UAHL0d0000jG00_200Sh.756IUoL_3n%~BsA", + "meta": { + "Size": "1280x1920", + "seed": 2557099437, + "Model": "camelliamix25DV2_v2", + "steps": 20, + "hashes": { + "vae": "df3c506e51", + "model": "ed4f26c284", + "embed:bad-artist": "2d35613490", + "embed:bad-hands-5": "aa7651be15", + "embed:EasyNegative": "66a7279a88", + "embed:bad_prompt_version2": "6f35e7dd81", + "embed:ng_deepnegative_v1_75t": "54e7e4826d" + }, + "prompt": "(Masterpiece:1.2), best quality, (illustration:1.2), (ultra-detailed), , riven \\(league of legends\\), 1girl, folded ponytail, short dress, single pauldron, corset, white hair, sitting, upper body, cowboy shot", + "Version": "v1.3.2", + "sampler": "Euler a", + "cfgScale": 7, + "Clip skip": "2", + "resources": [ + { + "hash": "ed4f26c284", + "name": "camelliamix25DV2_v2", + "type": "model" + } + ], + "{\"Method\"": "\"Mixture of Diffusers\"", + "\"Upscaler\"": "\"4x-UltraSharp\"", + "Model hash": "ed4f26c284", + "\"Riven-000016": "1683d344c22b\"", + "\"Tile Overlap\"": "16", + "negativePrompt": "3d, cartoon, sketches, (worst quality:2), (low quality:2), (normal quality:2), lowres, normal quality, ((monochrome)), ((grayscale)), drawn by bad-artist, bad_prompt_version2, EasyNegative, ng_deepnegative_v1_75t, bad-hands-5, bad anatomy, text, multiple arms, watermark, simple background, white background, noise, blurry background, blurry, signature, black background, patreon username", + "\"Upscale factor\"": "2.5", + "\"Keep input size\"": "true}", + "\"Tile batch size\"": "8", + "\"Tile tile width\"": "128", + "\"Tile tile height\"": "196", + "Denoising strength": "0.45", + "Tiled Diffusion upscaler": "4x-UltraSharp", + "Tiled Diffusion scale factor": "2.5" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a9f01983-9cb3-4fef-a90c-cf818d4bab72/width=450/1062720.jpeg", + "nsfw": "Soft", + "width": 1280, + "height": 1920, + "hash": "UEG[ND~V0K9ZE2E14.-ooy?GM{-o?bs:~Vxu", + "meta": { + "Size": "1280x1920", + "seed": 3830745411, + "Model": "camelliamix25DV2_v2", + "steps": 20, + "hashes": { + "vae": "df3c506e51", + "model": "ed4f26c284", + "embed:bad-artist": "2d35613490", + "embed:bad-hands-5": "aa7651be15", + "embed:EasyNegative": "66a7279a88", + "embed:bad_prompt_version2": "6f35e7dd81", + "embed:ng_deepnegative_v1_75t": "54e7e4826d" + }, + "prompt": "(Masterpiece:1.2), best quality, (illustration:1.2), (ultra-detailed), , riven \\(league of legends\\), 1girl, folded ponytail, short dress, single pauldron, corset, white hair, sitting, upper body, cowboy shot", + "Version": "v1.3.2", + "sampler": "DPM++ 2M Karras", + "cfgScale": 7, + "Clip skip": "2", + "resources": [ + { + "hash": "ed4f26c284", + "name": "camelliamix25DV2_v2", + "type": "model" + } + ], + "{\"Method\"": "\"Mixture of Diffusers\"", + "\"Upscaler\"": "\"4x-UltraSharp\"", + "Model hash": "ed4f26c284", + "\"Riven-000016": "1683d344c22b\"", + "\"Tile Overlap\"": "16", + "negativePrompt": "3d, cartoon, sketches, (worst quality:2), (low quality:2), (normal quality:2), lowres, normal quality, ((monochrome)), ((grayscale)), drawn by bad-artist, bad_prompt_version2, EasyNegative, ng_deepnegative_v1_75t, bad-hands-5, bad anatomy, text, multiple arms, watermark, simple background, white background, noise, blurry background, blurry, signature, black background, patreon username", + "\"Upscale factor\"": "2.5", + "\"Keep input size\"": "true}", + "\"Tile batch size\"": "8", + "\"Tile tile width\"": "128", + "\"Tile tile height\"": "196", + "Denoising strength": "0.45", + "Tiled Diffusion upscaler": "4x-UltraSharp", + "Tiled Diffusion scale factor": "2.5" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/7e6a4b7e-3a54-4ec5-802a-2d5a6d4b878e/width=450/1062717.jpeg", + "nsfw": "None", + "width": 1024, + "height": 1536, + "hash": "UfHV6j-;WAkD_NxuV@ozozoeWBWVozofoJRj", + "meta": { + "Size": "1024x1536", + "seed": 1970728765, + "Model": "pasteldiffusedmix_v21", + "steps": 20, + "hashes": { + "vae": "df3c506e51", + "model": "d9980ebeea", + "embed:bad-artist": "2d35613490", + "embed:bad-hands-5": "aa7651be15", + "lora:Riven-000016": "4361ee9e0d", + "embed:EasyNegative": "66a7279a88", + "embed:bad_prompt_version2": "6f35e7dd81", + "embed:ng_deepnegative_v1_75t": "54e7e4826d" + }, + "prompt": "(Masterpiece:1.2), best quality, , riven \\(league of legends\\), 1girl, short dress, corset, white hair, black eyeshadow, bare shoulders, hands on hips, upper body, potrait", + "Version": "v1.3.2", + "sampler": "Euler a", + "cfgScale": 7, + "Clip skip": "2", + "resources": [ + { + "hash": "d9980ebeea", + "name": "pasteldiffusedmix_v21", + "type": "model" + } + ], + "Model hash": "d9980ebeea", + "\"Riven-000016": "1683d344c22b\"", + "negativePrompt": "3d, cartoon, sketches, (worst quality:2), (low quality:2), lowres, ((monochrome)), ((grayscale)), drawn by bad-artist, bad_prompt_version2, EasyNegative, ng_deepnegative_v1_75t, bad-hands-5, bad anatomy, text, multiple arms, watermark, simple background, white background, noise, blurry background, blurry, signature, black background, patreon username", + "Denoising strength": "0.35", + "Tiled Diffusion upscaler": "4x-UltraSharp", + "Tiled Diffusion scale factor": "2" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a687ab91-8fda-46fc-b7f5-9c7dbf3a357c/width=450/1062719.jpeg", + "nsfw": "Soft", + "width": 1024, + "height": 1536, + "hash": "ULGH@=~WIof6?b?aNGxaIpM|ogS49tWBnis:", + "meta": { + "Size": "1024x1536", + "seed": 1970728774, + "Model": "pasteldiffusedmix_v21", + "steps": 20, + "hashes": { + "vae": "df3c506e51", + "model": "d9980ebeea", + "embed:bad-artist": "2d35613490", + "embed:bad-hands-5": "aa7651be15", + "lora:Riven-000016": "4361ee9e0d", + "embed:EasyNegative": "66a7279a88", + "embed:bad_prompt_version2": "6f35e7dd81", + "embed:ng_deepnegative_v1_75t": "54e7e4826d" + }, + "prompt": "(Masterpiece:1.2), best quality, , riven \\(league of legends\\), 1girl, short dress, corset, white hair, black eyeshadow, bare shoulders, hands on hips, upper body, potrait", + "Version": "v1.3.2", + "sampler": "Euler a", + "cfgScale": 7, + "Clip skip": "2", + "resources": [ + { + "hash": "d9980ebeea", + "name": "pasteldiffusedmix_v21", + "type": "model" + } + ], + "Model hash": "d9980ebeea", + "\"Riven-000016": "1683d344c22b\"", + "negativePrompt": "3d, cartoon, sketches, (worst quality:2), (low quality:2), lowres, ((monochrome)), ((grayscale)), drawn by bad-artist, bad_prompt_version2, EasyNegative, ng_deepnegative_v1_75t, bad-hands-5, bad anatomy, text, multiple arms, watermark, simple background, white background, noise, blurry background, blurry, signature, black background, patreon username", + "Denoising strength": "0.45", + "Tiled Diffusion upscaler": "4x-UltraSharp", + "Tiled Diffusion scale factor": "2" + } + } + ], + "downloadUrl": "https://civitai.com/api/download/models/91129" +} \ No newline at end of file diff --git a/extensions/addtional/models/lora/Riven-000016.preview.png b/extensions/addtional/models/lora/Riven-000016.preview.png new file mode 100644 index 0000000000000000000000000000000000000000..e31105eb245821d8ad9b58e244eb0274c9127dd3 Binary files /dev/null and b/extensions/addtional/models/lora/Riven-000016.preview.png differ diff --git a/extensions/addtional/models/lora/Riven-000016.safetensors b/extensions/addtional/models/lora/Riven-000016.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..2ed60cc21626618b4d492e6ee59eabf6af8f1f28 --- /dev/null +++ b/extensions/addtional/models/lora/Riven-000016.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4361ee9e0df5a41527bb73d0f2657a6670fe5a4c50052ba8ec42533984d4d384 +size 37864982 diff --git a/extensions/addtional/models/lora/SelfBreastGrab.civitai.info b/extensions/addtional/models/lora/SelfBreastGrab.civitai.info new file mode 100644 index 0000000000000000000000000000000000000000..f9e9e284d7be1c8cc35daf53ea1f26c252165f17 --- /dev/null +++ b/extensions/addtional/models/lora/SelfBreastGrab.civitai.info @@ -0,0 +1,346 @@ +{ + "id": 29860, + "modelId": 24960, + "name": "SelfBreastGrab", + "createdAt": "2023-03-27T02:56:23.846Z", + "updatedAt": "2023-03-27T03:03:40.085Z", + "trainedWords": [ + "sbg", + "breast grab", + "breast lift", + "nipples" + ], + "baseModel": "SD 1.5", + "earlyAccessTimeFrame": 0, + "description": null, + "stats": { + "downloadCount": 29850, + "ratingCount": 28, + "rating": 4.96 + }, + "model": { + "name": "Breast Grab", + "type": "LORA", + "nsfw": true, + "poi": false + }, + "files": [ + { + "id": 24681, + "url": "https://5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com/civitai-prod-settled/68198/model/selfbreastgrab.98bS.safetensors", + "sizeKB": 147587.0087890625, + "name": "SelfBreastGrab.safetensors", + "type": "Model", + "metadata": { + "fp": "fp16", + "size": "full", + "format": "SafeTensor" + }, + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "virusScanMessage": null, + "scannedAt": "2023-03-27T03:06:45.359Z", + "hashes": { + "AutoV1": "C7423862", + "AutoV2": "5186573A2B", + "SHA256": "5186573A2BC25CA3E97C5B0D3408B77F37F7717DB8DB4BCD0683CD8B54CB1F23", + "CRC32": "F94499AE", + "BLAKE3": "2FD2798451FAF308943D905A97511EA6AC3541414ED3CFA2965FACB983F33060" + }, + "primary": true, + "downloadUrl": "https://civitai.com/api/download/models/29860" + } + ], + "images": [ + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/48c56409-5452-4ebc-b54e-41e5bb7d2c00/width=450/338217.jpeg", + "nsfw": "X", + "width": 512, + "height": 512, + "hash": "UoMZ{|xu_NV@-;t7xuWBRkWVxuofM{WBaeae", + "meta": { + "ENSD": "31337", + "Size": "512x512", + "seed": 2600148762, + "steps": 25, + "hashes": { + "vae": "f921fb3f29", + "model": "834cc0a55a", + "embed:bad_prompt": "6f35e7dd81", + "lora:SelfBreastGrab": "5186573a2b" + }, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , sbg, breast grab, breast lift, shirt, white shirt, see-through, huge breasts, wet", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "Clip skip": "2", + "resources": [ + { + "name": "SelfBreastGrab", + "type": "lora", + "weight": 0.8 + } + ], + "Model hash": "834cc0a55a", + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1023894c-ba51-49db-cc8c-26c176f0ad00/width=450/338225.jpeg", + "nsfw": "X", + "width": 512, + "height": 512, + "hash": "UJIgv60100%20fIVxt?G00%Mxtxu~CozRjE1", + "meta": { + "ENSD": "31337", + "Size": "512x512", + "seed": 3396267809, + "steps": 25, + "hashes": { + "vae": "f921fb3f29", + "model": "834cc0a55a", + "embed:bad_prompt": "6f35e7dd81", + "lora:SelfBreastGrab": "5186573a2b" + }, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , sbg, breast grab, breast lift, nipples, deep skin", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "Clip skip": "2", + "resources": [ + { + "name": "SelfBreastGrab", + "type": "lora", + "weight": 0.8 + } + ], + "Model hash": "834cc0a55a", + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8109d721-f8df-4954-f3ac-941743eaa600/width=450/338224.jpeg", + "nsfw": "X", + "width": 512, + "height": 512, + "hash": "UtJ@qC~po}t7tR%MofaeNGj[t7R*nin%ofWV", + "meta": { + "ENSD": "31337", + "Size": "512x512", + "seed": 2029415788, + "steps": 25, + "hashes": { + "vae": "f921fb3f29", + "model": "834cc0a55a", + "embed:bad_prompt": "6f35e7dd81", + "lora:SelfBreastGrab": "5186573a2b" + }, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , sbg, breast grab, breast lift, nipples, from side", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "Clip skip": "2", + "resources": [ + { + "name": "SelfBreastGrab", + "type": "lora", + "weight": 0.8 + } + ], + "Model hash": "834cc0a55a", + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/205b9b22-4f55-4d72-0dc2-71c0e6cd9f00/width=450/338223.jpeg", + "nsfw": "X", + "width": 512, + "height": 512, + "hash": "UJJkJ-?bTxH@56%N_3NINGa{?Gnh~pe-aKoz", + "meta": { + "ENSD": "31337", + "Size": "512x512", + "seed": 2426138713, + "steps": 25, + "hashes": { + "vae": "f921fb3f29", + "model": "834cc0a55a", + "embed:bad_prompt": "6f35e7dd81", + "lora:SelfBreastGrab": "5186573a2b" + }, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , sbg, breast grab, breast lift, large breasts, shirt, white shirt, see-through, wet, dark skin, dark-skinned female, wet", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "Clip skip": "2", + "resources": [ + { + "name": "SelfBreastGrab", + "type": "lora", + "weight": 0.8 + } + ], + "Model hash": "834cc0a55a", + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/2b87c285-6585-43d9-0243-4f1db24d4b00/width=450/338222.jpeg", + "nsfw": "X", + "width": 512, + "height": 512, + "hash": "ULKmz*~qAD9Z5n%M-;Wn01smt7t7xGayj]WC", + "meta": { + "ENSD": "31337", + "Size": "512x512", + "seed": 2418322233, + "steps": 25, + "hashes": { + "vae": "f921fb3f29", + "model": "834cc0a55a", + "embed:bad_prompt": "6f35e7dd81", + "lora:SelfBreastGrab": "5186573a2b" + }, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , sbg, breast grab, breast lift, nipples, medium breasts", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "Clip skip": "2", + "resources": [ + { + "name": "SelfBreastGrab", + "type": "lora", + "weight": 0.8 + } + ], + "Model hash": "834cc0a55a", + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/607e599c-c33e-4f64-4bfe-1d37e31f1900/width=450/338221.jpeg", + "nsfw": "X", + "width": 512, + "height": 512, + "hash": "UCG+H?9t6,_N00$K-o%M9Z?a~VS#~Wx]IURP", + "meta": { + "ENSD": "31337", + "Size": "512x512", + "seed": 3594889271, + "steps": 25, + "hashes": { + "vae": "f921fb3f29", + "model": "834cc0a55a", + "embed:bad_prompt": "6f35e7dd81", + "lora:SelfBreastGrab": "5186573a2b" + }, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , sbg, breast grab, breast lift, medium breasts, shirt, white shirt, see-through, wet, dark skin, dark-skinned female, wet", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "Clip skip": "2", + "resources": [ + { + "name": "SelfBreastGrab", + "type": "lora", + "weight": 0.8 + } + ], + "Model hash": "834cc0a55a", + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/170cacc4-aa35-4159-d3c6-622c85601b00/width=450/338220.jpeg", + "nsfw": "X", + "width": 512, + "height": 512, + "hash": "UDHL3e0200?a0Knm~UE2R4oe-oxu~V4;x[%2", + "meta": { + "ENSD": "31337", + "Size": "512x512", + "seed": 60409036, + "steps": 25, + "hashes": { + "vae": "f921fb3f29", + "model": "834cc0a55a", + "embed:bad_prompt": "6f35e7dd81", + "lora:SelfBreastGrab": "5186573a2b" + }, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , sbg, breast grab, breast lift, nipples, large breasts, hoodie, hood,", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "Clip skip": "2", + "resources": [ + { + "name": "SelfBreastGrab", + "type": "lora", + "weight": 0.8 + } + ], + "Model hash": "834cc0a55a", + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/deed185d-f75f-4528-8c79-d4ad2e8da700/width=450/338219.jpeg", + "nsfw": "X", + "width": 512, + "height": 512, + "hash": "URH_lJ8w0Lo~?^8_$*%gElIn-VbbWEWAozWB", + "meta": { + "ENSD": "31337", + "Size": "512x512", + "seed": 3583666667, + "steps": 25, + "hashes": { + "vae": "f921fb3f29", + "model": "834cc0a55a", + "embed:bad_prompt": "6f35e7dd81", + "lora:SelfBreastGrab": "5186573a2b" + }, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , sbg, breast grab, breast lift, nipples, cowboy shot, shorts, short shorts, topless", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "Clip skip": "2", + "resources": [ + { + "name": "SelfBreastGrab", + "type": "lora", + "weight": 0.8 + } + ], + "Model hash": "834cc0a55a", + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c0cc6b75-da38-4009-c245-1b0aa7c83200/width=450/338218.jpeg", + "nsfw": "X", + "width": 512, + "height": 512, + "hash": "UKG[D[E200%10LWB-p%2D%t6WVof~VoeIVWU", + "meta": { + "ENSD": "31337", + "Size": "512x512", + "seed": 3874740097, + "steps": 25, + "hashes": { + "vae": "f921fb3f29", + "model": "834cc0a55a", + "embed:bad_prompt": "6f35e7dd81", + "lora:SelfBreastGrab": "5186573a2b" + }, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , sbg, breast grab, breast lift, nipples,", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "Clip skip": "2", + "resources": [ + { + "name": "SelfBreastGrab", + "type": "lora", + "weight": 0.8 + } + ], + "Model hash": "834cc0a55a", + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)" + } + } + ], + "downloadUrl": "https://civitai.com/api/download/models/29860" +} \ No newline at end of file diff --git a/extensions/addtional/models/lora/SelfBreastGrab.preview.png b/extensions/addtional/models/lora/SelfBreastGrab.preview.png new file mode 100644 index 0000000000000000000000000000000000000000..d7e8cebe5d4e42baa0206bba3f59f6f6b3f3da95 Binary files /dev/null and b/extensions/addtional/models/lora/SelfBreastGrab.preview.png differ diff --git a/extensions/addtional/models/lora/SelfBreastGrab.safetensors b/extensions/addtional/models/lora/SelfBreastGrab.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..1052b34f29ad31288cd423ee6fd301e34f91c339 --- /dev/null +++ b/extensions/addtional/models/lora/SelfBreastGrab.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5186573a2bc25ca3e97c5b0d3408b77f37f7717db8db4bcd0683cd8b54cb1f23 +size 151129097 diff --git a/extensions/addtional/models/lora/SideFellatio.civitai.info b/extensions/addtional/models/lora/SideFellatio.civitai.info new file mode 100644 index 0000000000000000000000000000000000000000..caf6368199415b68ae340e38fa2d30f299dc3b45 --- /dev/null +++ b/extensions/addtional/models/lora/SideFellatio.civitai.info @@ -0,0 +1,389 @@ +{ + "id": 32317, + "modelId": 27000, + "name": "SideFellatio", + "createdAt": "2023-03-31T04:39:47.712Z", + "updatedAt": "2023-03-31T04:39:47.712Z", + "trainedWords": [ + "sidefellatio", + "fellatio", + "from side", + "1boy", + "penis" + ], + "baseModel": "SD 1.5", + "earlyAccessTimeFrame": 0, + "description": null, + "stats": { + "downloadCount": 27376, + "ratingCount": 28, + "rating": 4.79 + }, + "model": { + "name": "Fellatio (Side View)", + "type": "LORA", + "nsfw": true, + "poi": false + }, + "files": [ + { + "id": 26634, + "url": "https://civitai-delivery-worker-prod-2023-03-30.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com/68198/model/sidefellatio.62Dj.safetensors", + "sizeKB": 36985.1875, + "name": "SideFellatio.safetensors", + "type": "Model", + "metadata": { + "fp": "fp16", + "size": "full", + "format": "SafeTensor" + }, + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "virusScanMessage": null, + "scannedAt": "2023-03-31T04:40:58.144Z", + "hashes": { + "AutoV1": "40D5544F", + "AutoV2": "B7E7356EB7", + "SHA256": "B7E7356EB7D884024CB73AF60B29917F6FC73949B47B2C5E9EB9E6173743C7BF", + "CRC32": "5C0B15E9", + "BLAKE3": "C1F47C91D92DB78B941CA8BC9BB0A5AC6837C2C6EA6F1505CC095496C072ED51" + }, + "primary": true, + "downloadUrl": "https://civitai.com/api/download/models/32317" + } + ], + "images": [ + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e359e65a-898f-4d07-d1b7-99afacdc7200/width=450/367913.jpeg", + "nsfw": "X", + "width": 768, + "height": 768, + "hash": "UXE{8_~Vni-pNst6sqIVNYIoRkxaxtt6jbjb", + "meta": { + "ENSD": "31337", + "Size": "512x512", + "seed": 3679889485, + "steps": 25, + "hashes": { + "vae": "f921fb3f29", + "model": "834cc0a55a", + "embed:bad_prompt": "6f35e7dd81", + "lora:SideFellatio": "aa1dee593c" + }, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , sidefellatio, 1boy, penis, fellatio, from side,", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "Clip skip": "2", + "resources": [ + { + "name": "SideFellatio", + "type": "lora", + "weight": 1 + } + ], + "Model hash": "834cc0a55a", + "Hires steps": "25", + "Hires upscale": "1.5", + "Hires upscaler": "4x_fatal_Anime_500000_G", + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)", + "Denoising strength": "0.5" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/883344a2-f9eb-4974-c6d4-3e2f595caf00/width=450/367921.jpeg", + "nsfw": "X", + "width": 768, + "height": 768, + "hash": "UYFYAU~AxCt6Rjt7s:V@E2Ioxa%Madxat7ay", + "meta": { + "ENSD": "31337", + "Size": "512x512", + "seed": 1803996465, + "steps": 25, + "hashes": { + "vae": "f921fb3f29", + "model": "834cc0a55a", + "embed:bad_prompt": "6f35e7dd81", + "lora:SideFellatio": "aa1dee593c", + "lora:KiryuinSatsuki": "3ded91bcda" + }, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , sidefellatio, 1boy, penis, fellatio, , kiryuin satsuki", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "Clip skip": "2", + "resources": [ + { + "name": "SideFellatio", + "type": "lora", + "weight": 0.9 + }, + { + "name": "KiryuinSatsuki", + "type": "lora", + "weight": 0.8 + } + ], + "Model hash": "834cc0a55a", + "Hires steps": "25", + "Hires upscale": "1.5", + "Hires upscaler": "4x_fatal_Anime_500000_G", + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)", + "Denoising strength": "0.5" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1cddf36e-2b63-42ec-3db8-99c5458a8a00/width=450/367920.jpeg", + "nsfw": "X", + "width": 768, + "height": 768, + "hash": "UJGk%ooy4n}@0K,nt7t-I;S$%1D%IotR%1r=", + "meta": { + "ENSD": "31337", + "Size": "512x512", + "seed": 2671883378, + "steps": 25, + "hashes": { + "vae": "f921fb3f29", + "model": "834cc0a55a", + "embed:bad_prompt": "6f35e7dd81", + "lora:SideFellatio": "aa1dee593c" + }, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , sidefellatio, 1boy, penis, fellatio,", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "Clip skip": "2", + "resources": [ + { + "name": "SideFellatio", + "type": "lora", + "weight": 0.9 + } + ], + "Model hash": "834cc0a55a", + "Hires steps": "25", + "Hires upscale": "1.5", + "Hires upscaler": "4x_fatal_Anime_500000_G", + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)", + "Denoising strength": "0.5" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b3464ce6-b787-40e8-b688-d15a36424e00/width=450/367919.jpeg", + "nsfw": "X", + "width": 768, + "height": 768, + "hash": "UIG[TYtl-pKP~p%g-p$*NH-VjZWBS#RjIV9u", + "meta": { + "ENSD": "31337", + "Size": "512x512", + "seed": 3269353828, + "steps": 25, + "hashes": { + "vae": "f921fb3f29", + "model": "834cc0a55a", + "embed:bad_prompt": "6f35e7dd81", + "lora:SideFellatio": "aa1dee593c" + }, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , sidefellatio, 1boy, penis, fellatio, tongue,", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "Clip skip": "2", + "resources": [ + { + "name": "SideFellatio", + "type": "lora", + "weight": 0.9 + } + ], + "Model hash": "834cc0a55a", + "Hires steps": "25", + "Hires upscale": "1.5", + "Hires upscaler": "4x_fatal_Anime_500000_G", + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)", + "Denoising strength": "0.5" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/0f2f51df-153e-4d17-a070-353811866d00/width=450/367918.jpeg", + "nsfw": "X", + "width": 768, + "height": 768, + "hash": "UMHnmYw[00~V%#%29ENe9ZS5-pROD%s:-pae", + "meta": { + "ENSD": "31337", + "Size": "512x512", + "seed": 885600489, + "steps": 25, + "hashes": { + "vae": "f921fb3f29", + "model": "834cc0a55a", + "embed:bad_prompt": "6f35e7dd81", + "lora:SideFellatio": "aa1dee593c" + }, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , sidefellatio, 1boy, penis, fellatio, white hair, yellow eyes, dark skin, dark-skinned female", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "Clip skip": "2", + "resources": [ + { + "name": "SideFellatio", + "type": "lora", + "weight": 0.9 + } + ], + "Model hash": "834cc0a55a", + "Hires steps": "25", + "Hires upscale": "1.5", + "Hires upscaler": "4x_fatal_Anime_500000_G", + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)", + "Denoising strength": "0.5" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f61bfa6f-761e-4c74-6b7f-89833c075a00/width=450/367917.jpeg", + "nsfw": "X", + "width": 768, + "height": 768, + "hash": "UFH2D%009t00%2IURj.8_34.xat7~q4n%2of", + "meta": { + "ENSD": "31337", + "Size": "512x512", + "seed": 1419991347, + "steps": 25, + "hashes": { + "vae": "f921fb3f29", + "model": "834cc0a55a", + "embed:bad_prompt": "6f35e7dd81", + "lora:SideFellatio": "aa1dee593c" + }, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , sidefellatio, 1boy, penis, fellatio, from side", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "Clip skip": "2", + "resources": [ + { + "name": "SideFellatio", + "type": "lora", + "weight": 1 + } + ], + "Model hash": "834cc0a55a", + "Hires steps": "25", + "Hires upscale": "1.5", + "Hires upscaler": "4x_fatal_Anime_500000_G", + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)", + "Denoising strength": "0.5" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8f6a1a85-9a63-4528-0921-5d63177b1600/width=450/367916.jpeg", + "nsfw": "X", + "width": 768, + "height": 768, + "hash": "UIFhk=8w0}-o.TrDNbx]TyIUaKg2t,E1w{oL", + "meta": { + "ENSD": "31337", + "Size": "512x512", + "seed": 3146103547, + "steps": 25, + "hashes": { + "vae": "f921fb3f29", + "model": "db925c899e", + "embed:bad_prompt": "6f35e7dd81", + "lora:SideFellatio": "aa1dee593c" + }, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , sidefellatio, 1boy, penis, fellatio, from side, interracial, large penis, dark-skinned male", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "Clip skip": "2", + "resources": [ + { + "name": "SideFellatio", + "type": "lora", + "weight": 1 + } + ], + "Model hash": "db925c899e", + "Hires steps": "25", + "Hires upscale": "1.5", + "Hires upscaler": "4x_fatal_Anime_500000_G", + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)", + "Denoising strength": "0.5" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c92340db-0bff-415c-a477-719dcb1ff200/width=450/367915.jpeg", + "nsfw": "X", + "width": 768, + "height": 768, + "hash": "UGHnvreA~p4U_3RQ?G4.-pIp9G^+-:%MMxRj", + "meta": { + "ENSD": "31337", + "Size": "512x512", + "seed": 2208804675, + "steps": 25, + "hashes": { + "vae": "f921fb3f29", + "model": "834cc0a55a", + "embed:bad_prompt": "6f35e7dd81", + "lora:SideFellatio": "aa1dee593c" + }, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , sidefellatio, 1boy, penis, fellatio, from side", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "Clip skip": "2", + "resources": [ + { + "name": "SideFellatio", + "type": "lora", + "weight": 1 + } + ], + "Model hash": "834cc0a55a", + "Hires steps": "25", + "Hires upscale": "1.5", + "Hires upscaler": "4x_fatal_Anime_500000_G", + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)", + "Denoising strength": "0.5" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9d5e2473-1302-4745-79e8-47b399dc1800/width=450/367914.jpeg", + "nsfw": "X", + "width": 768, + "height": 768, + "hash": "UVG[KA~VM{~V9abIxuIVR*IofR-o%2oeayxt", + "meta": { + "ENSD": "31337", + "Size": "512x512", + "seed": 1680003174, + "steps": 25, + "hashes": { + "vae": "f921fb3f29", + "model": "834cc0a55a", + "embed:bad_prompt": "6f35e7dd81", + "lora:SideFellatio": "aa1dee593c" + }, + "prompt": "beautiful, masterpiece, best quality, extremely detailed face, perfect lighting, 1girl, solo, , sidefellatio, 1boy, penis, fellatio, from side, hand on another's head", + "sampler": "DPM++ 2M Karras", + "cfgScale": 6, + "Clip skip": "2", + "resources": [ + { + "name": "SideFellatio", + "type": "lora", + "weight": 1 + } + ], + "Model hash": "834cc0a55a", + "Hires steps": "25", + "Hires upscale": "1.5", + "Hires upscaler": "4x_fatal_Anime_500000_G", + "negativePrompt": "(low quality, worst quality:1.4),(bad_prompt:0.8), (monochrome:1.1), (greyscale)", + "Denoising strength": "0.5" + } + } + ], + "downloadUrl": "https://civitai.com/api/download/models/32317" +} \ No newline at end of file diff --git a/extensions/addtional/models/lora/SideFellatio.preview.png b/extensions/addtional/models/lora/SideFellatio.preview.png new file mode 100644 index 0000000000000000000000000000000000000000..3f0e3086571e0f0d8de95a21b75b4ddbf87188af Binary files /dev/null and b/extensions/addtional/models/lora/SideFellatio.preview.png differ diff --git a/extensions/addtional/models/lora/SideFellatio.safetensors b/extensions/addtional/models/lora/SideFellatio.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..60c25f79230a7408a7bbc7f0f72751cb915a458b --- /dev/null +++ b/extensions/addtional/models/lora/SideFellatio.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7e7356eb7d884024cb73af60b29917f6fc73949b47b2c5e9eb9e6173743c7bf +size 37872832 diff --git a/extensions/addtional/models/lora/ireliav2-000034.safetensors b/extensions/addtional/models/lora/ireliav2-000034.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..16b0234b8acb0b526964a8c8ca379dd6ee21de94 --- /dev/null +++ b/extensions/addtional/models/lora/ireliav2-000034.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d858be32cb2622822c06b3829ca6a8498e5afb87ef4de941bb60431acb4f348 +size 151074564 diff --git a/extensions/addtional/models/lora/kidnap_v0.2.civitai.info b/extensions/addtional/models/lora/kidnap_v0.2.civitai.info new file mode 100644 index 0000000000000000000000000000000000000000..25f0ce6b59e10f180b788df2892ae510b759a8d3 --- /dev/null +++ b/extensions/addtional/models/lora/kidnap_v0.2.civitai.info @@ -0,0 +1,477 @@ +{ + "id": 122632, + "modelId": 113516, + "name": "v0.2", + "createdAt": "2023-07-21T16:09:34.462Z", + "updatedAt": "2023-07-21T16:26:59.183Z", + "trainedWords": [], + "baseModel": "SD 1.5", + "earlyAccessTimeFrame": 0, + "description": null, + "stats": { + "downloadCount": 4887, + "ratingCount": 20, + "rating": 4.85 + }, + "model": { + "name": "Kidnapped / bdsm / willing partner", + "type": "LORA", + "nsfw": true, + "poi": false + }, + "files": [ + { + "id": 88299, + "url": "https://civitai-delivery-worker-prod-2023-07-01.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com/3865/model/kidnapV02.2sgA.safetensors", + "sizeKB": 9350.54296875, + "name": "kidnap_v0.2.safetensors", + "type": "Model", + "metadata": { + "fp": null, + "size": null, + "format": "SafeTensor" + }, + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "virusScanMessage": null, + "scannedAt": "2023-07-21T16:11:25.597Z", + "hashes": { + "AutoV1": "9E68073F", + "AutoV2": "96C07BD2FC", + "SHA256": "96C07BD2FC3DFE2DAAF993740F4F162A1AB2AB231701A1EE8564FE02623C1ECA", + "CRC32": "C9F257DD", + "BLAKE3": "E31941D90CF00B9E716A29B477FC15C9F288E0B696452F9614975286A76589B3" + }, + "primary": true, + "downloadUrl": "https://civitai.com/api/download/models/122632" + } + ], + "images": [ + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/cb894c9f-33c2-451b-b9bd-b67ee357ca02/width=450/1657712.jpeg", + "nsfw": "X", + "width": 1024, + "height": 1536, + "hash": "UGH2K9Io.T?H4.s:9FD%_3a#%Mt7NHRkxa%L", + "meta": { + "ENSD": "31337", + "Size": "512x768", + "seed": 2728569489, + "Model": "hassakuHentaiModel_v13", + "steps": 20, + "hashes": { + "vae": "f921fb3f29", + "model": "7eb674963a" + }, + "prompt": "\n1girl, tape gag, bdsm, rope, dress,, masterpiece, best quality, highly detailed", + "Version": "v1.3.2", + "sampler": "Euler a", + "cfgScale": 7, + "clipSkip": 2, + "resources": [ + { + "name": "kidnap_v0.2", + "type": "lora", + "weight": 1 + }, + { + "hash": "7eb674963a", + "name": "hassakuHentaiModel_v13", + "type": "model" + } + ], + "Model hash": "7eb674963a", + "\"kidnap_v0.2": "8b46761ba3d1\"", + "Hires upscale": "2", + "Hires upscaler": "4x-UltraSharp", + "negativePrompt": "(worst quality, low quality:1.4)", + "Denoising strength": "0.3" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a41ad9f3-1ca3-4b91-9745-d77239f66886/width=450/1657709.jpeg", + "nsfw": "X", + "width": 1024, + "height": 1536, + "hash": "UgHe2u~WNat6xWs:R+oLIoIoR.t7ozWXWBoJ", + "meta": { + "ENSD": "31337", + "Size": "512x768", + "seed": 2728569493, + "Model": "hassakuHentaiModel_v13", + "steps": 20, + "hashes": { + "vae": "f921fb3f29", + "model": "7eb674963a" + }, + "prompt": "\n1girl, tape gag, rope, sundress, restrained,, masterpiece, best quality, highly detailed", + "Version": "v1.3.2", + "sampler": "Euler a", + "cfgScale": 7, + "clipSkip": 2, + "resources": [ + { + "name": "kidnap_v0.2", + "type": "lora", + "weight": 1 + }, + { + "hash": "7eb674963a", + "name": "hassakuHentaiModel_v13", + "type": "model" + } + ], + "Model hash": "7eb674963a", + "\"kidnap_v0.2": "8b46761ba3d1\"", + "Hires upscale": "2", + "Hires upscaler": "4x-UltraSharp", + "negativePrompt": "(worst quality, low quality:1.4)", + "Denoising strength": "0.3" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c4628e18-63db-493d-bea9-72e9806a06c5/width=450/1657711.jpeg", + "nsfw": "Mature", + "width": 1024, + "height": 1536, + "hash": "U6HUFL003=QT+x4..l4U00~p0yRP_2-A9F.7", + "meta": { + "ENSD": "31337", + "Size": "512x768", + "seed": 2728569496, + "Model": "hassakuHentaiModel_v13", + "steps": 20, + "hashes": { + "vae": "f921fb3f29", + "model": "7eb674963a" + }, + "prompt": "\n1girl, shibari, suspension, drooling, swimsuit, ball gag,, masterpiece, best quality, highly detailed", + "Version": "v1.3.2", + "sampler": "Euler a", + "cfgScale": 7, + "clipSkip": 2, + "resources": [ + { + "name": "kidnap_v0.2", + "type": "lora", + "weight": 1 + }, + { + "hash": "7eb674963a", + "name": "hassakuHentaiModel_v13", + "type": "model" + } + ], + "Model hash": "7eb674963a", + "\"kidnap_v0.2": "8b46761ba3d1\"", + "Hires upscale": "2", + "Hires upscaler": "4x-UltraSharp", + "negativePrompt": "(worst quality, low quality:1.4)", + "Denoising strength": "0.3" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d23dece3-21ae-47c5-8ce4-7ba95b3b9ce8/width=450/1657716.jpeg", + "nsfw": "None", + "width": 1024, + "height": 1536, + "hash": "UNG8+a~WW-D*_3%L?HjZ%1s:tRD%009Go2t7", + "meta": { + "ENSD": "31337", + "Size": "512x768", + "seed": 3610773244, + "Model": "hassakuHentaiModel_v13", + "steps": 20, + "hashes": { + "vae": "f921fb3f29", + "model": "7eb674963a" + }, + "prompt": "\n1girl, tape gag, bound, angry, car seat,, masterpiece, best quality, highly detailed", + "Version": "v1.3.2", + "sampler": "Euler a", + "cfgScale": 7, + "clipSkip": 2, + "resources": [ + { + "name": "kidnap_v0.2", + "type": "lora", + "weight": 1 + }, + { + "hash": "7eb674963a", + "name": "hassakuHentaiModel_v13", + "type": "model" + } + ], + "Model hash": "7eb674963a", + "\"kidnap_v0.2": "8b46761ba3d1\"", + "Hires upscale": "2", + "Hires upscaler": "4x-UltraSharp", + "negativePrompt": "(worst quality, low quality:1.4)", + "Denoising strength": "0.3" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6df03e2a-0c13-4b95-a418-d301913486d1/width=450/1657710.jpeg", + "nsfw": "X", + "width": 1024, + "height": 1536, + "hash": "UGC$Za~CE0xZ%L%1RjNG01E2xuNGD*NGxuof", + "meta": { + "ENSD": "31337", + "Size": "512x768", + "seed": 2728569499, + "Model": "hassakuHentaiModel_v13", + "steps": 20, + "hashes": { + "vae": "f921fb3f29", + "model": "7eb674963a" + }, + "prompt": "\n1girl, tape, duct tape, lying, tape gag, bound ankles, lingerie,, masterpiece, best quality, highly detailed", + "Version": "v1.3.2", + "sampler": "Euler a", + "cfgScale": 7, + "clipSkip": 2, + "resources": [ + { + "name": "kidnap_v0.2", + "type": "lora", + "weight": 1 + }, + { + "hash": "7eb674963a", + "name": "hassakuHentaiModel_v13", + "type": "model" + } + ], + "Model hash": "7eb674963a", + "\"kidnap_v0.2": "8b46761ba3d1\"", + "Hires upscale": "2", + "Hires upscaler": "4x-UltraSharp", + "negativePrompt": "(worst quality, low quality:1.4)", + "Denoising strength": "0.3" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a7a1ebd4-bdca-49dd-9980-cf5bcf0157bc/width=450/1657718.jpeg", + "nsfw": "X", + "width": 1024, + "height": 1536, + "hash": "UBF=H+9]00Io00~C-o4.D*9Z?G?Hx[9t0L-p", + "meta": { + "ENSD": "31337", + "Size": "512x768", + "seed": 2670314219, + "Model": "hassakuHentaiModel_v13", + "steps": 20, + "hashes": { + "vae": "f921fb3f29", + "model": "7eb674963a" + }, + "prompt": "\n1girl, rope, lying, tape gag, bound, scared, curled up, multiple boys, groping, bound arms, arms behind back, deep skin,, masterpiece, best quality, highly detailed", + "Version": "v1.3.2", + "sampler": "Euler a", + "cfgScale": 7, + "clipSkip": 2, + "resources": [ + { + "name": "kidnap_v0.2", + "type": "lora", + "weight": 1 + }, + { + "hash": "7eb674963a", + "name": "hassakuHentaiModel_v13", + "type": "model" + } + ], + "Model hash": "7eb674963a", + "\"kidnap_v0.2": "8b46761ba3d1\"", + "Hires upscale": "2", + "Hires upscaler": "4x-UltraSharp", + "negativePrompt": "(worst quality, low quality:1.4)", + "Denoising strength": "0.3" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4df5e19f-8fca-434d-882c-a9c0aa8bde78/width=450/1657714.jpeg", + "nsfw": "X", + "width": 1024, + "height": 1536, + "hash": "UCG8TJ0101tR57ww?F9tE2I:~BIo~V4:sT%M", + "meta": { + "ENSD": "31337", + "Size": "512x768", + "seed": 3610773238, + "Model": "hassakuHentaiModel_v13", + "steps": 20, + "hashes": { + "vae": "f921fb3f29", + "model": "7eb674963a" + }, + "prompt": "\n1girl, shibari over clothes, lying, tape gag, bound, scared, multiple boys, multiple penises, ass, arms behind back,, masterpiece, best quality, highly detailed", + "Version": "v1.3.2", + "sampler": "Euler a", + "cfgScale": 7, + "clipSkip": 2, + "resources": [ + { + "name": "kidnap_v0.2", + "type": "lora", + "weight": 1 + }, + { + "hash": "7eb674963a", + "name": "hassakuHentaiModel_v13", + "type": "model" + } + ], + "Model hash": "7eb674963a", + "\"kidnap_v0.2": "8b46761ba3d1\"", + "Hires upscale": "2", + "Hires upscaler": "4x-UltraSharp", + "negativePrompt": "(worst quality, low quality:1.4)", + "Denoising strength": "0.3" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a289d9d7-d83f-4d4e-96b3-1a54cca417e4/width=450/1657732.jpeg", + "nsfw": "X", + "width": 1024, + "height": 1536, + "hash": "UIGuH{00kq%1~q9GxujskqRjxuRj?GE2t7Rj", + "meta": { + "ENSD": "31337", + "Size": "512x768", + "seed": 1470052431, + "Model": "hassakuHentaiModel_v13", + "steps": 20, + "hashes": { + "vae": "f921fb3f29", + "model": "7eb674963a" + }, + "prompt": "\n1girl, tape gag, bound, restrained, sitting, chair, rope, bondage,, masterpiece, best quality, highly detailed", + "Version": "v1.3.2", + "sampler": "Euler a", + "cfgScale": 7, + "clipSkip": 2, + "resources": [ + { + "name": "kidnap_v0.2", + "type": "lora", + "weight": 1 + }, + { + "hash": "7eb674963a", + "name": "hassakuHentaiModel_v13", + "type": "model" + } + ], + "Model hash": "7eb674963a", + "\"kidnap_v0.2": "8b46761ba3d1\"", + "Hires upscale": "2", + "Hires upscaler": "4x-UltraSharp", + "negativePrompt": "(worst quality, low quality:1.4)", + "Denoising strength": "0.3" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/46920c30-8003-4aba-876c-91f5df92d42f/width=450/1657734.jpeg", + "nsfw": "X", + "width": 1024, + "height": 1536, + "hash": "UCATG?xa01WA0Kt6^+xa~Wof9GRj01oL?Hfk", + "meta": { + "ENSD": "31337", + "Size": "512x768", + "seed": 687138458, + "Model": "hassakuHentaiModel_v13", + "steps": 20, + "hashes": { + "vae": "f921fb3f29", + "model": "7eb674963a", + "lora:basement_v0.2": "db5f11795a" + }, + "prompt": "\n1girl, bsdm, ball gag, rope,\n basement, dark, dimly lit, wet, wet floor, reflective water, dripping, face,, masterpiece, best quality, highly detailed", + "Version": "v1.3.2", + "sampler": "Euler a", + "cfgScale": 7, + "clipSkip": 2, + "resources": [ + { + "name": "kidnap_v0.2", + "type": "lora", + "weight": 1 + }, + { + "name": "basement_v0.2", + "type": "lora", + "weight": 1 + }, + { + "hash": "7eb674963a", + "name": "hassakuHentaiModel_v13", + "type": "model" + } + ], + "Model hash": "7eb674963a", + "\"kidnap_v0.2": "8b46761ba3d1", + "Hires upscale": "2", + "basement_v0.2": "71eb37d41aeb\"", + "Hires upscaler": "4x-UltraSharp", + "negativePrompt": "(worst quality, low quality:1.4)", + "Denoising strength": "0.3" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4bf6edb1-60d9-4765-8bcb-bd5d40feaa12/width=450/1657731.jpeg", + "nsfw": "X", + "width": 1024, + "height": 1536, + "hash": "UAAA2S~WozWBR*s:xat6-:^+~Vxu%2s:baWV", + "meta": { + "ENSD": "31337", + "Size": "512x768", + "seed": 687138462, + "Model": "hassakuHentaiModel_v13", + "steps": 20, + "hashes": { + "vae": "f921fb3f29", + "model": "7eb674963a", + "lora:basement_v0.2": "db5f11795a" + }, + "prompt": "\n1girl, bsdm, ball gag, rope, bound wrists, bound ankles, \n basement, dark, dimly lit, wet, wet floor, reflective water, dripping, face,, masterpiece, best quality, highly detailed", + "Version": "v1.3.2", + "sampler": "Euler a", + "cfgScale": 7, + "clipSkip": 2, + "resources": [ + { + "name": "kidnap_v0.2", + "type": "lora", + "weight": 1 + }, + { + "name": "basement_v0.2", + "type": "lora", + "weight": 1 + }, + { + "hash": "7eb674963a", + "name": "hassakuHentaiModel_v13", + "type": "model" + } + ], + "Model hash": "7eb674963a", + "\"kidnap_v0.2": "8b46761ba3d1", + "Hires upscale": "2", + "basement_v0.2": "71eb37d41aeb\"", + "Hires upscaler": "4x-UltraSharp", + "negativePrompt": "(worst quality, low quality:1.4)", + "Denoising strength": "0.3" + } + } + ], + "downloadUrl": "https://civitai.com/api/download/models/122632" +} \ No newline at end of file diff --git a/extensions/addtional/models/lora/kidnap_v0.2.preview.png b/extensions/addtional/models/lora/kidnap_v0.2.preview.png new file mode 100644 index 0000000000000000000000000000000000000000..dfd418fd5d18f03311d3f4c11c1b6908da2fffab Binary files /dev/null and b/extensions/addtional/models/lora/kidnap_v0.2.preview.png differ diff --git a/extensions/addtional/models/lora/kidnap_v0.2.safetensors b/extensions/addtional/models/lora/kidnap_v0.2.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..1dc3641d5e3d1241622fe935526f766e60b014f4 --- /dev/null +++ b/extensions/addtional/models/lora/kidnap_v0.2.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96c07bd2fc3dfe2daaf993740f4f162a1ab2ab231701a1ee8564fe02623c1eca +size 9574956 diff --git a/extensions/addtional/models/lora/nixeu_offset64dim.civitai.info b/extensions/addtional/models/lora/nixeu_offset64dim.civitai.info new file mode 100644 index 0000000000000000000000000000000000000000..1636025ff3eb8e8d5db53043e1a46984a4c55b5b --- /dev/null +++ b/extensions/addtional/models/lora/nixeu_offset64dim.civitai.info @@ -0,0 +1,96 @@ +{ + "id": 73181, + "modelId": 5087, + "name": "offset 64 dim", + "createdAt": "2023-05-17T12:00:18.173Z", + "updatedAt": "2023-05-17T12:01:13.527Z", + "trainedWords": [ + "nixeu" + ], + "baseModel": "SD 1.5", + "earlyAccessTimeFrame": 0, + "description": null, + "stats": { + "downloadCount": 105, + "ratingCount": 2, + "rating": 5 + }, + "model": { + "name": "Nixeu Style LoRA", + "type": "LORA", + "nsfw": false, + "poi": false + }, + "files": [ + { + "name": "nixeu_offset64dim.safetensors", + "id": 50736, + "sizeKB": 72137.21875, + "type": "Model", + "metadata": { + "fp": null, + "size": null, + "format": "SafeTensor" + }, + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-05-17T14:49:03.722Z", + "hashes": { + "AutoV1": "8EAF15F4", + "AutoV2": "22E33E6779", + "SHA256": "22E33E67791E70BDDD9F7C6FACE965A15A151D54B3E1529AA366E55148CE83DE", + "CRC32": "905D7F9A", + "BLAKE3": "0018A0AFB62FC3F871FC173C7F78FE4ECD9C210F649BB53206C9B2DC8BE3F60A" + }, + "primary": true, + "downloadUrl": "https://civitai.com/api/download/models/73181" + } + ], + "images": [ + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/017f1e82-0377-4350-8c10-6b4a2a456b59/width=450/816668.jpeg", + "nsfw": "None", + "width": 2520, + "height": 1459, + "hash": "UWK-Rj%NWU%M.SW=j[WV_4kCWAof~Ws-WBof", + "meta": { + "ENSD": "31337", + "Size": "512x768", + "seed": 2760905093, + "Model": "AnyLoRA_bakedVae_fp16_NOTpruned", + "nixeu": "0.6>", + "steps": 30, + "Script": "X/Y/Z plot", + "X Type": "Prompt S/R", + "hashes": { + "model": "b775b13509" + }, + "prompt": "nixeu, 1girl, black background, blonde hair, closed mouth, earrings, fur trim, grey eyes, hat, highres, jewelry, large hat, light particles, long hair, looking at viewer, mixed-language commentary, mole, mole under mouth, nostrils, original, red lips, shaded face, shadow, simple background, solo, upper body, witch hat ", + "sampler": "DPM++ SDE Karras", + "cfgScale": 7, + "Clip skip": "2", + "resources": [ + { + "name": "nixeu", + "type": "lora", + "weight": 0.6 + }, + { + "hash": "b775b13509", + "name": "AnyLoRA_bakedVae_fp16_NOTpruned", + "type": "model" + } + ], + "Model hash": "b775b13509", + "nixeu_offset": "1>", + "Hires upscale": "1.65", + "Hires upscaler": "R-ESRGAN 4x+", + "negativePrompt": "(painting by bad-artist-anime:0.9), (painting by bad-artist:0.9), watermark, text, error, blurry, jpeg artifacts, cropped, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, username, artist name, (worst quality, low quality:1.4), bad anatomy", + "nixeu_offset64dim": "1>\"", + "Denoising strength": "0.4" + } + } + ], + "downloadUrl": "https://civitai.com/api/download/models/73181" +} \ No newline at end of file diff --git a/extensions/addtional/models/lora/nixeu_offset64dim.preview.png b/extensions/addtional/models/lora/nixeu_offset64dim.preview.png new file mode 100644 index 0000000000000000000000000000000000000000..06b42cd8608bd946572a35ca3ec7365a8c4a32b8 Binary files /dev/null and b/extensions/addtional/models/lora/nixeu_offset64dim.preview.png differ diff --git a/extensions/addtional/models/lora/nixeu_offset64dim.safetensors b/extensions/addtional/models/lora/nixeu_offset64dim.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d038b2b2bdfe24539a3990a4d41e4eaadb103555 --- /dev/null +++ b/extensions/addtional/models/lora/nixeu_offset64dim.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22e33e67791e70bddd9f7c6face965a15a151d54b3e1529aa366e55148ce83de +size 73868512 diff --git a/extensions/addtional/models/lora/paizuri.civitai.info b/extensions/addtional/models/lora/paizuri.civitai.info new file mode 100644 index 0000000000000000000000000000000000000000..218b0780519f484b946dc078c28cabd642a00059 --- /dev/null +++ b/extensions/addtional/models/lora/paizuri.civitai.info @@ -0,0 +1,382 @@ +{ + "id": 106320, + "modelId": 99350, + "name": "v1.0", + "createdAt": "2023-06-29T03:27:09.402Z", + "updatedAt": "2023-06-29T03:57:47.162Z", + "trainedWords": [ + "paizuri_keyword", + "1boy", + "1girl", + "breasts", + "nipples", + "hetero", + "paizuri", + "solo focus", + "penis", + "pov" + ], + "baseModel": "SD 1.5", + "earlyAccessTimeFrame": 0, + "description": "", + "stats": { + "downloadCount": 4428, + "ratingCount": 12, + "rating": 5 + }, + "model": { + "name": "POV Paizuri LoRA", + "type": "LORA", + "nsfw": true, + "poi": false + }, + "files": [ + { + "id": 74856, + "url": "https://civitai-delivery-worker-prod-2023-06-01.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com/10924/model/paizuri.fbRz.safetensors", + "sizeKB": 37001.939453125, + "name": "paizuri.safetensors", + "type": "Model", + "metadata": { + "fp": null, + "size": null, + "format": "SafeTensor" + }, + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "virusScanMessage": null, + "scannedAt": "2023-06-29T03:30:38.203Z", + "hashes": { + "AutoV1": "4320ACC5", + "AutoV2": "800EE2752D", + "SHA256": "800EE2752DEF9370114F2B2A9159841DD38A26430A8CB3560FEBB8B722FCF648", + "CRC32": "346C93C7", + "BLAKE3": "4A02933499CB648962CBF2D94542A3BECA6CB5EEF81F8139E7824650020DAD81" + }, + "primary": true, + "downloadUrl": "https://civitai.com/api/download/models/106320" + } + ], + "images": [ + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/3e243a24-1c8f-4d4d-9e4b-21164339a813/width=450/1329639.jpeg", + "nsfw": "X", + "width": 1024, + "height": 1536, + "hash": "UYJafvs:_Nt8%~Rj~qxt?GWBt7oftRa}M{of", + "meta": { + "Size": "512x768", + "seed": 221325534, + "Model": "SCH Excelsior", + "steps": 75, + "hashes": { + "model": "ee5e7d0285" + }, + "prompt": "(masterpiece:1.2, best quality:1.2, beautiful, high quality, highres:1.1, aesthetic), detailed, extremely detailed, ambient soft lighting, 4K, perfect lighting, perfect face, perfect eyes, paizuri_keyword, 1boy, 1girl, @_@, ahoge, alternate breast size, bangs, black hair, blush, breasts, breasts squeezed together, closed mouth, clothed female nude male, clothes lift, erection, hair between eyes, hetero, hex maniac \\(pokemon\\), huge breasts, long hair, long sleeves, looking at viewer, messy hair, motion lines, nipples, nude, paizuri, penis, pov, pov crotch, precum, purple eyes, purple hair, purple sweater, simple background, smile, solo focus, sweat, sweater, sweater lift, turtleneck, turtleneck sweater, uncensored, veins, veiny penis, very long hair, wavy mouth, white background, ", + "Version": "v1.3.2", + "sampler": "DPM++ SDE Karras", + "\"paizuri": "ab770c3ce34a\"", + "cfgScale": 6, + "resources": [ + { + "name": "paizuri", + "type": "lora", + "weight": 0.75 + }, + { + "hash": "ee5e7d0285", + "name": "SCH Excelsior", + "type": "model" + } + ], + "Model hash": "ee5e7d0285", + "Hires steps": "15", + "Hires upscale": "2", + "Hires upscaler": "4x_fatal_Anime_500000_G", + "negativePrompt": "(low quality, worst quality:1.3, monochrome:1.1), , (EasyNegative, bad-hands-5:0.6, bad_prompt_version2:0.8, verybadimagenegative_v1.3, aid291), (muscular)", + "Denoising strength": "0.4" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4b5b4d29-4116-4acf-a435-4f1c58cb1162/width=450/1329642.jpeg", + "nsfw": "X", + "width": 1024, + "height": 1536, + "hash": "UHK0]I00Lg%#PC8__Mx]vfD%s-M{^+t7E2bb", + "meta": { + "Size": "512x768", + "seed": 254126893, + "Model": "SCH Excelsior", + "steps": 75, + "hashes": { + "model": "ee5e7d0285" + }, + "prompt": "(masterpiece:1.2, best quality:1.2, beautiful, high quality, highres:1.1, aesthetic), detailed, extremely detailed, ambient soft lighting, 4K, perfect lighting, perfect face, perfect eyes, chubby girl, 1boy, 1girl, blue eyes, breasts, collared shirt, glasses, hetero, huge breasts, lips, long sleeves, looking at viewer, nipples, open clothes, open shirt, paizuri, penis, pov, puckered lips, red hair, shirt, short hair, solo focus, uncensored, white background, white shirt, maxine, paizuri_keyword, , ", + "\"maxine": "4bf2b501bad1", + "Version": "v1.3.2", + "paizuri": "ab770c3ce34a\"", + "sampler": "DPM++ SDE Karras", + "cfgScale": 6, + "resources": [ + { + "name": "maxine", + "type": "lora", + "weight": 0.75 + }, + { + "name": "paizuri", + "type": "lora", + "weight": 0.75 + }, + { + "hash": "ee5e7d0285", + "name": "SCH Excelsior", + "type": "model" + } + ], + "Model hash": "ee5e7d0285", + "Hires steps": "15", + "Hires upscale": "2", + "Hires upscaler": "4x_fatal_Anime_500000_G", + "negativePrompt": "(low quality, worst quality:1.3, monochrome:1.1), , (EasyNegative, bad-hands-5:0.6, bad_prompt_version2:0.8, verybadimagenegative_v1.3, aid291), (muscular)", + "Denoising strength": "0.4" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f941d6ee-e55f-46c3-9a27-242e26eae634/width=450/1329645.jpeg", + "nsfw": "X", + "width": 1024, + "height": 1536, + "hash": "UHKmFS~V00D%1kI:IA9Z10%2vyoM_3tQIAs.", + "meta": { + "Size": "512x768", + "seed": 2680968748, + "Model": "SCH Auxier", + "steps": 75, + "hashes": { + "model": "0265299a9d" + }, + "prompt": "(masterpiece:1.2, best quality:1.2, beautiful, high quality, highres:1.1, aesthetic), detailed, extremely detailed, ambient soft lighting, 4K, perfect lighting, perfect face, perfect eyes, paizuri_keyword, 1boy, 1girl, :d, after paizuri, blush, breasts, collarbone, cum, cum on body, cum on breasts, fang, grey hair, hair between eyes, heavy breathing, hetero, huge breasts, large breasts, nipples, nose blush, nude, open mouth, paizuri, short hair, skin fang, smile, solo focus, sweat, ", + "Version": "v1.3.2", + "sampler": "DPM++ SDE Karras", + "\"paizuri": "ab770c3ce34a\"", + "cfgScale": 6, + "resources": [ + { + "name": "paizuri", + "type": "lora", + "weight": 0.75 + }, + { + "hash": "0265299a9d", + "name": "SCH Auxier", + "type": "model" + } + ], + "Model hash": "0265299a9d", + "Hires steps": "15", + "Hires upscale": "2", + "Hires upscaler": "4x_fatal_Anime_500000_G", + "negativePrompt": "(low quality, worst quality:1.3, monochrome:1.1), , (EasyNegative, bad-hands-5:0.6, bad_prompt_version2:0.8, verybadimagenegative_v1.3, aid291), (muscular)", + "Denoising strength": "0.4" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/589b7ce7-090e-4e83-8a61-2887aef44ef6/width=450/1329643.jpeg", + "nsfw": "X", + "width": 1024, + "height": 1536, + "hash": "UdLWeU~V?wt7PBkX.8tRs-t7s9ogxvaKRjRj", + "meta": { + "Size": "512x768", + "seed": 3045389672, + "Model": "SCH Auxier", + "steps": 75, + "hashes": { + "model": "0265299a9d" + }, + "prompt": "(masterpiece:1.2, best quality:1.2, beautiful, high quality, highres:1.1, aesthetic), detailed, extremely detailed, ambient soft lighting, 4K, perfect lighting, perfect face, perfect eyes, paizuri_keyword, 1boy, 1girl, :d, bangs, blush, braid, breasts, bright pupils, brown hair, completely nude, french braid, hair ribbon, hetero, large breasts, long hair, looking at viewer, mature female, nipples, nude, open mouth, paizuri, penis, pov, purple eyes, ribbon, simple background, smile, solo focus, upper body, white background, white pupils, ", + "Version": "v1.3.2", + "sampler": "DPM++ SDE Karras", + "\"paizuri": "ab770c3ce34a\"", + "cfgScale": 6, + "resources": [ + { + "name": "paizuri", + "type": "lora", + "weight": 0.75 + }, + { + "hash": "0265299a9d", + "name": "SCH Auxier", + "type": "model" + } + ], + "Model hash": "0265299a9d", + "Hires steps": "15", + "Hires upscale": "2", + "Hires upscaler": "4x_fatal_Anime_500000_G", + "negativePrompt": "(low quality, worst quality:1.3, monochrome:1.1), , (EasyNegative, bad-hands-5:0.6, bad_prompt_version2:0.8, verybadimagenegative_v1.3, aid291), (muscular)", + "Denoising strength": "0.4" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/aec1839b-6598-4003-86dc-7ae961210fe5/width=450/1329638.jpeg", + "nsfw": "X", + "width": 1024, + "height": 1536, + "hash": "UHH1PgIV0fNH0Lnhxuax01SL-Usl~VtRMxWX", + "meta": { + "Size": "512x768", + "seed": 937051394, + "Model": "Galena REDUX", + "steps": 75, + "hashes": { + "model": "6e9e1f4bc8" + }, + "prompt": "(masterpiece:1.2, best quality:1.2, beautiful, high quality, highres:1.1, aesthetic), detailed, extremely detailed, ambient soft lighting, 4K, perfect lighting, perfect face, perfect eyes, paizuri_keyword, 1boy, 1girl, blush, breasts, collarbone, completely nude, gigantic breasts, hetero, huge breasts, large areolae, long hair, looking at viewer, nipples, nude, one eye closed, paizuri, penis, black hair, pov, puffy nipples, smile, solo focus, uncensored, yellow eyes, ", + "Version": "v1.3.2", + "sampler": "DPM++ SDE Karras", + "\"paizuri": "ab770c3ce34a\"", + "cfgScale": 6, + "resources": [ + { + "name": "paizuri", + "type": "lora", + "weight": 0.75 + }, + { + "hash": "6e9e1f4bc8", + "name": "Galena REDUX", + "type": "model" + } + ], + "Model hash": "6e9e1f4bc8", + "Hires steps": "15", + "Hires upscale": "2", + "Hires upscaler": "4x_fatal_Anime_500000_G", + "negativePrompt": "(low quality, worst quality:1.3, monochrome:1.1), , (EasyNegative, bad-hands-5:0.6, bad_prompt_version2:0.8, verybadimagenegative_v1.3, aid291), (muscular)", + "Denoising strength": "0.4" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/22a5a57c-f824-47c3-8a11-48f9bfb5fd34/width=450/1329644.jpeg", + "nsfw": "X", + "width": 1024, + "height": 1536, + "hash": "URI4qu-:9]9aI:%MnhRPpIxu%2M{~WozWBju", + "meta": { + "Size": "512x768", + "seed": 936343685, + "Model": "Galena REDUX", + "steps": 75, + "hashes": { + "model": "6e9e1f4bc8" + }, + "prompt": "(masterpiece:1.2, best quality:1.2, beautiful, high quality, highres:1.1, aesthetic), detailed, extremely detailed, ambient soft lighting, 4K, perfect lighting, perfect face, perfect eyes, paizuri_keyword, 1boy, 1girl, blush, breasts, brown eyes, brown hair, collarbone, gloves, hetero, high ponytail, large breasts, lips, long hair, looking at viewer, nipples, one eye closed, paizuri, penis, ponytail, pov, shiranui mai, smile, solo focus, uncensored, ", + "Version": "v1.3.2", + "sampler": "DPM++ SDE Karras", + "\"paizuri": "ab770c3ce34a\"", + "cfgScale": 6, + "resources": [ + { + "name": "paizuri", + "type": "lora", + "weight": 0.75 + }, + { + "hash": "6e9e1f4bc8", + "name": "Galena REDUX", + "type": "model" + } + ], + "Model hash": "6e9e1f4bc8", + "Hires steps": "15", + "Hires upscale": "2", + "Hires upscaler": "4x_fatal_Anime_500000_G", + "negativePrompt": "(low quality, worst quality:1.3, monochrome:1.1), , (EasyNegative, bad-hands-5:0.6, bad_prompt_version2:0.8, verybadimagenegative_v1.3, aid291), (muscular)", + "Denoising strength": "0.4" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b56a2207-386d-4fcd-b005-4220cf150771/width=450/1329637.jpeg", + "nsfw": "X", + "width": 1024, + "height": 1536, + "hash": "URG*vb~WI=WA5QkDs:NFxZxtsooc~q%MRkRj", + "meta": { + "Size": "512x768", + "seed": 1758693995, + "Model": "Sardonyx REDUX", + "steps": 75, + "hashes": { + "model": "40d4f9d626" + }, + "prompt": "(masterpiece:1.2, best quality:1.2, beautiful, high quality, highres:1.1, aesthetic), detailed, extremely detailed, ambient soft lighting, 4K, perfect lighting, perfect face, perfect eyes, paizuri_keyword, 1boy, 1girl, breasts, nipples, hetero, paizuri, solo focus, penis, pov, black hair, glasses, button shirt, open shirt, open clothes, long hair, messy hair, large breasts, ", + "Version": "v1.3.2", + "sampler": "DPM++ SDE Karras", + "\"paizuri": "ab770c3ce34a\"", + "cfgScale": 6, + "resources": [ + { + "name": "paizuri", + "type": "lora", + "weight": 0.75 + }, + { + "hash": "40d4f9d626", + "name": "Sardonyx REDUX", + "type": "model" + } + ], + "Model hash": "40d4f9d626", + "Hires steps": "15", + "Hires upscale": "2", + "Hires upscaler": "4x_fatal_Anime_500000_G", + "negativePrompt": "(low quality, worst quality:1.3, monochrome:1.1), , (EasyNegative, bad-hands-5:0.6, bad_prompt_version2:0.8, verybadimagenegative_v1.3, aid291), (muscular)", + "Denoising strength": "0.4" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5aaf9a32-72fa-4dd5-9ba7-ab3ed700f255/width=450/1329640.jpeg", + "nsfw": "X", + "width": 1024, + "height": 1536, + "hash": "UZJ%Xy~WEgRjIpR+S#bIE2oLt6xukDR*RQoL", + "meta": { + "Size": "512x768", + "seed": 3309163196, + "Model": "Sardonyx REDUX", + "steps": 75, + "hashes": { + "model": "40d4f9d626" + }, + "prompt": "(masterpiece:1.2, best quality:1.2, beautiful, high quality, highres:1.1, aesthetic), detailed, extremely detailed, ambient soft lighting, 4K, perfect lighting, perfect face, perfect eyes, paizuri_keyword, 1boy, 1girl, blush, breasts, breasts squeezed together, brown eyes, brown hair, completely nude, hetero, heterochromia, huge breasts, long hair, looking at viewer, multicolored hair, nipples, nude, open mouth, paizuri, penis, pink eyes, pink hair, pov, pov crotch, saliva, saliva trail, solo focus, split-color hair, tongue, tongue out, two-tone hair, uncensored, ", + "Version": "v1.3.2", + "sampler": "DPM++ SDE Karras", + "\"paizuri": "ab770c3ce34a\"", + "cfgScale": 6, + "resources": [ + { + "name": "paizuri", + "type": "lora", + "weight": 0.75 + }, + { + "hash": "40d4f9d626", + "name": "Sardonyx REDUX", + "type": "model" + } + ], + "Model hash": "40d4f9d626", + "Hires steps": "15", + "Hires upscale": "2", + "Hires upscaler": "4x_fatal_Anime_500000_G", + "negativePrompt": "(low quality, worst quality:1.3, monochrome:1.1), , (EasyNegative, bad-hands-5:0.6, bad_prompt_version2:0.8, verybadimagenegative_v1.3, aid291), (muscular)", + "Denoising strength": "0.4" + } + } + ], + "downloadUrl": "https://civitai.com/api/download/models/106320" +} \ No newline at end of file diff --git a/extensions/addtional/models/lora/paizuri.preview.png b/extensions/addtional/models/lora/paizuri.preview.png new file mode 100644 index 0000000000000000000000000000000000000000..107eb7af59af13185498efad8b00433cb17dabc2 Binary files /dev/null and b/extensions/addtional/models/lora/paizuri.preview.png differ diff --git a/extensions/addtional/models/lora/paizuri.safetensors b/extensions/addtional/models/lora/paizuri.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..1010e981d9d1b459205fe9b589b43be904a22ad0 --- /dev/null +++ b/extensions/addtional/models/lora/paizuri.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:800ee2752def9370114f2b2a9159841dd38a26430a8cb3560febb8b722fcf648 +size 37889986 diff --git a/extensions/addtional/models/lora/ratatatat74-000030.civitai.info b/extensions/addtional/models/lora/ratatatat74-000030.civitai.info new file mode 100644 index 0000000000000000000000000000000000000000..c83c7ad067c6f4e6c00998e78bc1f0a8c3b00db6 --- /dev/null +++ b/extensions/addtional/models/lora/ratatatat74-000030.civitai.info @@ -0,0 +1,196 @@ +{ + "id": 5568, + "modelId": 4844, + "name": "ratatatat74-30", + "createdAt": "2023-01-19T23:02:18.860Z", + "updatedAt": "2023-03-23T22:30:32.751Z", + "trainedWords": [ + "ratatatat74" + ], + "baseModel": "SD 1.5", + "earlyAccessTimeFrame": 0, + "description": null, + "stats": { + "downloadCount": 220, + "ratingCount": 2, + "rating": 5 + }, + "model": { + "name": "ratatatat74 Style LoRA", + "type": "LORA", + "nsfw": false, + "poi": false + }, + "files": [ + { + "name": "ratatatat74-000030.safetensors", + "id": 5756, + "sizeKB": 294990.0458984375, + "type": "Model", + "metadata": { + "fp": "fp16", + "size": "full", + "format": "SafeTensor" + }, + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-01-19T23:10:58.093Z", + "hashes": { + "AutoV1": "E5787969", + "AutoV2": "4C73420947", + "SHA256": "4C73420947724614FA2FB380A5402603E6EEBAF4A1A9B1252E681EBA179E3BB5", + "CRC32": "9ECA4419", + "BLAKE3": "C372AACFD3D62BC259AE28EF9382871E38381D5D34EC72611F0895DD1112E7B0" + }, + "primary": true, + "downloadUrl": "https://civitai.com/api/download/models/5568" + } + ], + "images": [ + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8819aa59-3315-4af5-a147-7a6547514f00/width=450/44521.jpeg", + "nsfw": "None", + "width": 1024, + "height": 1536, + "hash": "UIJa[Cx?0jxb0bI@Bhn+MdX9xwsl+;oe?GWB", + "meta": null + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a08ef88d-ff6c-45fb-4cb4-bee419a0fe00/width=450/44534.jpeg", + "nsfw": "Soft", + "width": 1024, + "height": 1536, + "hash": "UIKd-|~W1Q~q00.7H=nNyC0KD%J80Ls8IAnN", + "meta": { + "ENSD": "31337", + "Size": "512x768", + "seed": 2451970401, + "steps": 20, + "prompt": "ratatatat74, 1girl, ((anime screencap)), white_hair, fire, a girl with white hair and blue eyes wearing a white dress and black wings in front of a dark background with fire behind her, bare_shoulders, closed_mouth, dark-skinned_female, ((dark_skin)), hoop_earrings, long_hair, looking_at_viewer, purple_eyes, star_eyes, solo, upper_body, white_hair, (((masterpiece))), ((best quality)), (extremely detailed), watercolor, illustration, depth of field, sketch, dark intense shadows, sharp focus, soft lighting, hdr, colorful, good composition", + "sampler": "Euler a", + "cfgScale": 7, + "Model hash": "a87fd7da", + "Hires upscale": "2", + "Hires upscaler": "4x_foolhardy_Remacri", + "negativePrompt": "(painting by bad-artist-anime:0.9), (painting by bad-artist:0.9), watermark, text, error, blurry, jpeg artifacts, cropped, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, username, artist name, (worst quality, low quality:1.4), bad anatomy", + "Denoising strength": "0.45" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/031f1b80-acb1-428f-fa55-a9482639c800/width=450/44533.jpeg", + "nsfw": "Soft", + "width": 1024, + "height": 1536, + "hash": "UOHd?q=OXT~W8{EK9EIU0_bp-:S|OSi{WFj@", + "meta": { + "ENSD": "31337", + "Size": "512x768", + "seed": 951659047, + "steps": 20, + "prompt": "ratatatat74, Cosmic sorceress, nebulas, galactic, Concept art portrait by Greg rutkowski, Artgerm, hyperdetailed intricately detailed gothic art trending on Artstation triadic colors Unreal Engine 5 detailed matte painting, deep color, fantastical, intricate detail, splash screen, complementary colors, fantasy concept art, 8k resolution, gothic deviantart masterpiece", + "sampler": "Euler a", + "cfgScale": 7, + "Model hash": "a87fd7da", + "Hires upscale": "2", + "Hires upscaler": "4x_foolhardy_Remacri", + "negativePrompt": "(painting by bad-artist-anime:0.9), (painting by bad-artist:0.9), watermark, text, error, blurry, jpeg artifacts, cropped, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, username, artist name, (worst quality, low quality:1.4), bad anatomy", + "Denoising strength": "0.39" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/3012a022-d32b-4ca8-3d01-01836df61e00/width=450/44532.jpeg", + "nsfw": "None", + "width": 1024, + "height": 1536, + "hash": "UBIX:S000KxtB1tmu4%Ns~KjITEe~B01~CNt", + "meta": { + "ENSD": "31337", + "Size": "512x768", + "seed": 2114314504, + "steps": 30, + "prompt": "ratatatat74, 1girl, yamato_5000, white_hair, green_hair, gradient_hair, horns, absurdres, ((masterpiece)), ((best quality)), extremely detailed, bloom, illustration, kimono, traditional_clothing, (perfect hands), depth of field, sketch, dark intense shadows, sharp focus, soft lighting, hdr, colorful, good composition, solo, highres, dojo background, japanese background, sakura blossoms", + "sampler": "DPM++ 2M Karras", + "cfgScale": 9, + "Model hash": "a87fd7da", + "Hires upscale": "2", + "Hires upscaler": "4x_foolhardy_Remacri", + "negativePrompt": "(((nsfw))), (((naked))), (painting by bad-artist-anime:0.9), (painting by bad-artist:0.9), watermark, text, error, blurry, jpeg artifacts, cropped, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, username, artist name, (worst quality, low quality:1.4), bad anatomy, watermark, signature, text, logo", + "Denoising strength": "0.45" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/32f61d5c-ca6d-4da8-be2f-622e5bd7bd00/width=450/44531.jpeg", + "nsfw": "Soft", + "width": 1024, + "height": 1536, + "hash": "UFHUO%t800XAIUNGI8xa00sk-XRQ~Cf+OTRj", + "meta": { + "ENSD": "31337", + "Size": "512x768", + "seed": 951659046, + "steps": 20, + "prompt": "ratatatat74, Cosmic sorceress, nebulas, galactic, Concept art portrait by Greg rutkowski, Artgerm, hyperdetailed intricately detailed gothic art trending on Artstation triadic colors Unreal Engine 5 detailed matte painting, deep color, fantastical, intricate detail, splash screen, complementary colors, fantasy concept art, 8k resolution, gothic deviantart masterpiece", + "sampler": "Euler a", + "cfgScale": 7, + "Model hash": "a87fd7da", + "Hires upscale": "2", + "Hires upscaler": "4x_foolhardy_Remacri", + "negativePrompt": "(painting by bad-artist-anime:0.9), (painting by bad-artist:0.9), watermark, text, error, blurry, jpeg artifacts, cropped, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, username, artist name, (worst quality, low quality:1.4), bad anatomy", + "Denoising strength": "0.39" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/55cb9fe5-3a00-4170-ebb1-3f2a50229700/width=450/44530.jpeg", + "nsfw": "None", + "width": 1024, + "height": 1536, + "hash": "UDK-2r9$.lDi004:8{xY4m^$_2kV-:w]R,kW", + "meta": { + "ENSD": "31337", + "Size": "512x768", + "seed": 738224787, + "steps": 34, + "prompt": "ratatatat74, 1girl, tifa, highres, absurdres, (masterpiece), (best quality), extremely detailed, watercolor, bloom, delicate and beautiful, ink, illustration, depth of field, sketch, dark intense shadows, sharp focus, soft lighting, hdr, colorful, good composition, delicate and beautiful, from below, ((red_eyes)), white top, skirt, suspenders, large_chest", + "sampler": "Euler a", + "cfgScale": 7, + "Clip skip": "2", + "Model hash": "a87fd7da", + "Hires upscale": "2", + "Hires upscaler": "4x_foolhardy_Remacri", + "negativePrompt": "text, b&w, cartoon, bad art, poorly drawn, close up, blurry, disfigured, deformed, extra limbs:1.5, extra heads:1.5, noise, short hair, cartoon, 3d, ((disfigured)), ((bad art)), ((deformed)), ((poorly drawn)), ((extra limbs)), ((close up)), ((b&w)), weird colors, blurry", + "Denoising strength": "0.38" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d5c945e0-e894-41ba-69b2-790661dcaf00/width=450/44529.jpeg", + "nsfw": "None", + "width": 1024, + "height": 1536, + "hash": "UOK1E=kqEL~p9GIV?bs:4:n*s:M{.8E1%1WB", + "meta": null + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5a77dd89-c9b7-4c15-318a-270a0ea66500/width=450/44528.jpeg", + "nsfw": "X", + "width": 1024, + "height": 1536, + "hash": "UEF=5p?Z000L00xb~pM{EwE1i|?H9Gad-;bI", + "meta": { + "ENSD": "31337", + "Size": "512x768", + "seed": 951659049, + "steps": 20, + "prompt": "ratatatat74, Cosmic sorceress, nebulas, galactic, Concept art portrait by Greg rutkowski, Artgerm, hyperdetailed intricately detailed gothic art trending on Artstation triadic colors Unreal Engine 5 detailed matte painting, deep color, fantastical, intricate detail, splash screen, complementary colors, fantasy concept art, 8k resolution, gothic deviantart masterpiece", + "sampler": "Euler a", + "cfgScale": 7, + "Model hash": "a87fd7da", + "Hires upscale": "2", + "Hires upscaler": "4x_foolhardy_Remacri", + "negativePrompt": "(painting by bad-artist-anime:0.9), (painting by bad-artist:0.9), watermark, text, error, blurry, jpeg artifacts, cropped, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, username, artist name, (worst quality, low quality:1.4), bad anatomy", + "Denoising strength": "0.39" + } + } + ], + "downloadUrl": "https://civitai.com/api/download/models/5568" +} \ No newline at end of file diff --git a/extensions/addtional/models/lora/ratatatat74-000030.preview.png b/extensions/addtional/models/lora/ratatatat74-000030.preview.png new file mode 100644 index 0000000000000000000000000000000000000000..43dc169e969a5f3332b12b4e5d9ceefa20a9352e Binary files /dev/null and b/extensions/addtional/models/lora/ratatatat74-000030.preview.png differ diff --git a/extensions/addtional/models/lora/ratatatat74-000030.safetensors b/extensions/addtional/models/lora/ratatatat74-000030.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..83ba1dcfadcfad6c40c960bb1478d2aa2f5ad800 --- /dev/null +++ b/extensions/addtional/models/lora/ratatatat74-000030.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c73420947724614fa2fb380a5402603e6eebaf4a1a9b1252e681eba179e3bb5 +size 302069807 diff --git a/extensions/addtional/models/lora/reverse fellatio lion2-000012.civitai.info b/extensions/addtional/models/lora/reverse fellatio lion2-000012.civitai.info new file mode 100644 index 0000000000000000000000000000000000000000..fb5121f4237840a8db0ee91d43d6e8ca52b52158 --- /dev/null +++ b/extensions/addtional/models/lora/reverse fellatio lion2-000012.civitai.info @@ -0,0 +1,81 @@ +{ + "id": 22001, + "modelId": 18543, + "name": "v1.0", + "createdAt": "2023-03-12T08:06:25.110Z", + "updatedAt": "2023-03-15T12:20:54.999Z", + "trainedWords": [ + "reverse fellatio" + ], + "baseModel": "SD 1.5", + "earlyAccessTimeFrame": 0, + "description": null, + "stats": { + "downloadCount": 11651, + "ratingCount": 11, + "rating": 4.27 + }, + "model": { + "name": "concept Reverse fellatio", + "type": "LORA", + "nsfw": true, + "poi": false + }, + "files": [ + { + "id": 18338, + "url": "https://5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com/civitai-prod-settled/105182/model/reverse20fellatio.2xW9.safetensors", + "sizeKB": 36979.7578125, + "name": "reverse fellatio lion2-000012.safetensors", + "type": "Model", + "metadata": { + "fp": "fp16", + "size": "full", + "format": "SafeTensor" + }, + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "virusScanMessage": null, + "scannedAt": "2023-03-12T08:11:38.774Z", + "hashes": { + "AutoV1": "2BAE93F6", + "AutoV2": "F74E40211A", + "SHA256": "F74E40211A54EB54CF47A3375BC4B85E99BC09803A3CEA908A78F08A4D042346", + "CRC32": "25AD59C7", + "BLAKE3": "79E38844162331DD653DEF225E91F40D51163A83D08F667C135C5CDCA3FCE23A" + }, + "primary": true, + "downloadUrl": "https://civitai.com/api/download/models/22001" + } + ], + "images": [ + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/111117e0-5748-4750-5afa-2d05304f9400/width=450/235452.jpeg", + "nsfw": "X", + "width": 768, + "height": 768, + "hash": "UjJH5ZOsrqof~W%MahWBS#%2s;R+xut6s:t7", + "meta": { + "steps": 20, + "prompt": "masterpiece,1girl,reverse fellatio,penis, from side ", + "sampler": "Euler a", + "negativePrompt": "(worst quality:1.4), (low quality:1.4), (normal quality:1.4), lowres" + } + }, + { + "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ef99d143-4dc1-41ba-0dc2-92621bcb0400/width=450/235454.jpeg", + "nsfw": "X", + "width": 768, + "height": 768, + "hash": "UNHUwr_NMdIV-6xttRs:00MxxuM{9^RPn$g3", + "meta": { + "steps": 20, + "prompt": "masterpiece,1girl,reverse fellatio,penis, from side ", + "sampler": "Euler a", + "negativePrompt": "(worst quality:1.4), (low quality:1.4), (normal quality:1.4), lowres" + } + } + ], + "downloadUrl": "https://civitai.com/api/download/models/22001" +} \ No newline at end of file diff --git a/extensions/addtional/models/lora/reverse fellatio lion2-000012.preview.png b/extensions/addtional/models/lora/reverse fellatio lion2-000012.preview.png new file mode 100644 index 0000000000000000000000000000000000000000..fc48e1747c027c58ae764017805fa81fcb314a1d Binary files /dev/null and b/extensions/addtional/models/lora/reverse fellatio lion2-000012.preview.png differ diff --git a/extensions/addtional/models/lora/reverse fellatio lion2-000012.safetensors b/extensions/addtional/models/lora/reverse fellatio lion2-000012.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ca6bb5068f21cd444f573644ee17037b5a00bf37 --- /dev/null +++ b/extensions/addtional/models/lora/reverse fellatio lion2-000012.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f74e40211a54eb54cf47a3375bc4b85e99bc09803a3cea908a78f08a4d042346 +size 37867272