Spaces:
Running
on
Zero
Running
on
Zero
Upload 4 files
Browse files- README.md +1 -1
- app.py +11 -9
- lora_dict.json +161 -0
README.md
CHANGED
@@ -4,7 +4,7 @@ emoji: 🧩🖼️📦
|
|
4 |
colorFrom: red
|
5 |
colorTo: pink
|
6 |
sdk: gradio
|
7 |
-
sdk_version: 4.
|
8 |
app_file: app.py
|
9 |
pinned: true
|
10 |
header: mini
|
|
|
4 |
colorFrom: red
|
5 |
colorTo: pink
|
6 |
sdk: gradio
|
7 |
+
sdk_version: 4.40.0
|
8 |
app_file: app.py
|
9 |
pinned: true
|
10 |
header: mini
|
app.py
CHANGED
@@ -804,7 +804,7 @@ def update_task_options(model_name, task_name):
|
|
804 |
return gr.update(value=task_name, choices=task_model_list)
|
805 |
|
806 |
## BEGIN MOD
|
807 |
-
with gr.Blocks(theme="NoCrypt/miku@>=1.2.2", elem_id="main", css=CSS) as app:
|
808 |
gr.Markdown("# 🧩 DiffuseCraft Mod")
|
809 |
gr.Markdown(
|
810 |
f"""
|
@@ -1198,7 +1198,9 @@ with gr.Blocks(theme="NoCrypt/miku@>=1.2.2", elem_id="main", css=CSS) as app:
|
|
1198 |
retain_hires_model_previous_load_gui = gr.Checkbox(value=False, label="Retain Hires Model Previous Load")
|
1199 |
xformers_memory_efficient_attention_gui = gr.Checkbox(value=False, label="Xformers Memory Efficient Attention")
|
1200 |
|
1201 |
-
with gr.Accordion("Examples and help", open=False, visible=
|
|
|
|
|
1202 |
gr.Examples(
|
1203 |
examples=[
|
1204 |
[
|
@@ -1214,7 +1216,7 @@ with gr.Blocks(theme="NoCrypt/miku@>=1.2.2", elem_id="main", css=CSS) as app:
|
|
1214 |
None,
|
1215 |
1.0,
|
1216 |
None,
|
1217 |
-
1.0,
|
1218 |
None,
|
1219 |
1.0,
|
1220 |
None,
|
@@ -1257,7 +1259,7 @@ with gr.Blocks(theme="NoCrypt/miku@>=1.2.2", elem_id="main", css=CSS) as app:
|
|
1257 |
None,
|
1258 |
1.0,
|
1259 |
None,
|
1260 |
-
1.0,
|
1261 |
None,
|
1262 |
1.0,
|
1263 |
None,
|
@@ -1417,7 +1419,7 @@ with gr.Blocks(theme="NoCrypt/miku@>=1.2.2", elem_id="main", css=CSS) as app:
|
|
1417 |
None,
|
1418 |
],
|
1419 |
],
|
1420 |
-
fn=sd_gen.generate_pipeline,
|
1421 |
inputs=[
|
1422 |
prompt_gui,
|
1423 |
neg_prompt_gui,
|
@@ -1461,10 +1463,10 @@ with gr.Blocks(theme="NoCrypt/miku@>=1.2.2", elem_id="main", css=CSS) as app:
|
|
1461 |
prompt_syntax_gui,
|
1462 |
upscaler_model_path_gui,
|
1463 |
],
|
1464 |
-
outputs=[result_images],
|
1465 |
cache_examples=False,
|
1466 |
elem_id="examples",
|
1467 |
-
)
|
1468 |
## END MOD
|
1469 |
|
1470 |
with gr.Tab("Inpaint mask maker", render=True):
|
@@ -1840,7 +1842,7 @@ with gr.Blocks(theme="NoCrypt/miku@>=1.2.2", elem_id="main", css=CSS) as app:
|
|
1840 |
app.queue()
|
1841 |
|
1842 |
app.launch(
|
1843 |
-
show_error=
|
1844 |
-
debug=
|
1845 |
)
|
1846 |
## END MOD
|
|
|
804 |
return gr.update(value=task_name, choices=task_model_list)
|
805 |
|
806 |
## BEGIN MOD
|
807 |
+
with gr.Blocks(theme="NoCrypt/miku@>=1.2.2", elem_id="main", fill_width=True, css=CSS) as app:
|
808 |
gr.Markdown("# 🧩 DiffuseCraft Mod")
|
809 |
gr.Markdown(
|
810 |
f"""
|
|
|
1198 |
retain_hires_model_previous_load_gui = gr.Checkbox(value=False, label="Retain Hires Model Previous Load")
|
1199 |
xformers_memory_efficient_attention_gui = gr.Checkbox(value=False, label="Xformers Memory Efficient Attention")
|
1200 |
|
1201 |
+
with gr.Accordion("Examples and help", open=False, visible=False) as menu_example:
|
1202 |
+
dummy_gui = gr.Checkbox(visible=False, label="dummy")
|
1203 |
+
"""with gr.Accordion("Examples and help", open=False, visible=True) as menu_example:
|
1204 |
gr.Examples(
|
1205 |
examples=[
|
1206 |
[
|
|
|
1216 |
None,
|
1217 |
1.0,
|
1218 |
None,
|
1219 |
+
1.0,
|
1220 |
None,
|
1221 |
1.0,
|
1222 |
None,
|
|
|
1259 |
None,
|
1260 |
1.0,
|
1261 |
None,
|
1262 |
+
1.0,
|
1263 |
None,
|
1264 |
1.0,
|
1265 |
None,
|
|
|
1419 |
None,
|
1420 |
],
|
1421 |
],
|
1422 |
+
#fn=sd_gen.generate_pipeline,
|
1423 |
inputs=[
|
1424 |
prompt_gui,
|
1425 |
neg_prompt_gui,
|
|
|
1463 |
prompt_syntax_gui,
|
1464 |
upscaler_model_path_gui,
|
1465 |
],
|
1466 |
+
#outputs=[result_images],
|
1467 |
cache_examples=False,
|
1468 |
elem_id="examples",
|
1469 |
+
)"""
|
1470 |
## END MOD
|
1471 |
|
1472 |
with gr.Tab("Inpaint mask maker", render=True):
|
|
|
1842 |
app.queue()
|
1843 |
|
1844 |
app.launch(
|
1845 |
+
show_error=True,
|
1846 |
+
debug=True,
|
1847 |
)
|
1848 |
## END MOD
|
lora_dict.json
CHANGED
@@ -846,6 +846,13 @@
|
|
846 |
"https://civitai.com/models/573102",
|
847 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6d84052f-fa1a-40cf-963b-c9417187139b/width=450/19517005.jpeg"
|
848 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
849 |
"Fine_Anime_Screencap-PonyV2": [
|
850 |
"fine anime screencap_xl, anime screencap",
|
851 |
"Pony",
|
@@ -1245,6 +1252,13 @@
|
|
1245 |
"https://civitai.com/models/580868",
|
1246 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/aa68a87b-5f0a-4e18-8ed1-040039e35a83/width=450/20023922.jpeg"
|
1247 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1248 |
"JumpedSideKick_0_9": [
|
1249 |
"jusiki / side view / doing a jump sidekick",
|
1250 |
"SDXL 1.0",
|
@@ -1805,6 +1819,13 @@
|
|
1805 |
"https://civitai.com/models/453130",
|
1806 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/187d58de-02d0-4b24-a329-757629d00812/width=450/12434258.jpeg"
|
1807 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1808 |
"Pov_Sex_Looking_Down": [
|
1809 |
"Pov Missionary, legs down, / Pov Missionary, legs spread, / Pov Mating press, / Pov Doggy style, / Pov Doggy style, buttjob, / torso grab, / arm grab, / breast grab, / butt grab, / leg grab, / no grab, / creampie, / cumming, ",
|
1810 |
"Pony",
|
@@ -2071,6 +2092,13 @@
|
|
2071 |
"https://civitai.com/models/402462",
|
2072 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/81900764-2148-4ea9-9028-48bc6d9db27c/width=450/17344395.jpeg"
|
2073 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2074 |
"StS_age_slider_v1_initial_release": [
|
2075 |
"",
|
2076 |
"Pony",
|
@@ -2337,6 +2365,13 @@
|
|
2337 |
"https://civitai.com/models/532877",
|
2338 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/0a1b0979-6710-4c4f-a46f-610da2490704/width=450/21424497.jpeg"
|
2339 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2340 |
"WatashiHentaiPony": [
|
2341 |
"",
|
2342 |
"Pony",
|
@@ -2652,6 +2687,13 @@
|
|
2652 |
"https://civitai.com/models/603179",
|
2653 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c7c950d5-3bd8-45ae-81cb-be782bf437f3/width=450/21484478.jpeg"
|
2654 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2655 |
"against_glass_a3_0-2": [
|
2656 |
"chibi, against glass, cheek press, close-up,",
|
2657 |
"SDXL 1.0",
|
@@ -3450,6 +3492,20 @@
|
|
3450 |
"https://civitai.com/models/181857",
|
3451 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/66acb88f-ff5e-4ea3-8bdf-5dc538ffd8e3/width=450/9588995.jpeg"
|
3452 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3453 |
"concept_wombwriting-pony-rls": [
|
3454 |
"womb writing",
|
3455 |
"Pony",
|
@@ -3660,6 +3716,13 @@
|
|
3660 |
"https://civitai.com/models/454079",
|
3661 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/46f67264-f1ea-40ba-a391-f4a03225573c/width=450/14905608.jpeg"
|
3662 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3663 |
"dawa": [
|
3664 |
"dawa",
|
3665 |
"SDXL 1.0",
|
@@ -3716,6 +3779,13 @@
|
|
3716 |
"https://civitai.com/models/506887",
|
3717 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1f42f6ba-ca59-4399-90d7-e647ddd150ab/width=450/15287991.jpeg"
|
3718 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3719 |
"dogeza": [
|
3720 |
"pov / pov,breast press / ass only,fingers in pussy,fingering / face down,stepped on head,from above / dogeza",
|
3721 |
"Pony",
|
@@ -4073,6 +4143,13 @@
|
|
4073 |
"https://civitai.com/models/293472",
|
4074 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/86297f60-4594-461a-a142-ef8878a3f516/width=450/12847487.jpeg"
|
4075 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4076 |
"guided_grab_twohands_xl": [
|
4077 |
"guided breast grab, guiding hand, grabbing",
|
4078 |
"Pony",
|
@@ -4381,6 +4458,13 @@
|
|
4381 |
"https://civitai.com/models/556350",
|
4382 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b15d4c8c-791b-47ef-913a-898208a44f30/width=450/18415890.jpeg"
|
4383 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4384 |
"infundibulum_insertion_pony_V1_0": [
|
4385 |
"infundibulum insertion",
|
4386 |
"Pony",
|
@@ -4605,6 +4689,13 @@
|
|
4605 |
"https://civitai.com/models/613694",
|
4606 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/da30a983-7daa-44e2-b712-29722a43602f/width=450/22179466.jpeg"
|
4607 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4608 |
"kuragecut_v1": [
|
4609 |
"kuragecut",
|
4610 |
"SDXL 1.0",
|
@@ -4948,6 +5039,13 @@
|
|
4948 |
"https://civitai.com/models/488098",
|
4949 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/58767062-22a1-4f52-ac2e-7f01fae26908/width=450/14206684.jpeg"
|
4950 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4951 |
"maron_maron__kotosanomaa": [
|
4952 |
"m4r0n_m4r0n",
|
4953 |
"Pony",
|
@@ -5137,6 +5235,13 @@
|
|
5137 |
"https://civitai.com/models/500165",
|
5138 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/956deaff-2606-4344-83fb-2ccc0a9d82b6/width=450/14898053.jpeg"
|
5139 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5140 |
"nipples_fuck_pony_V1_0": [
|
5141 |
"nipples fuck,spread nipples,hetero,breats",
|
5142 |
"Pony",
|
@@ -5648,6 +5753,13 @@
|
|
5648 |
"https://civitai.com/models/506204",
|
5649 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1ccd3ce6-dc99-4157-a5dc-aab76243837e/width=450/15251716.jpeg"
|
5650 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5651 |
"pony_suica_bar": [
|
5652 |
"watermelon bar / holding food",
|
5653 |
"Pony",
|
@@ -5886,6 +5998,13 @@
|
|
5886 |
"https://civitai.com/models/125132",
|
5887 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/34aa58e1-384b-483f-add7-4652bec7bcb7/width=450/9349092.jpeg"
|
5888 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5889 |
"rei_no_kabe_SDXL_V1": [
|
5890 |
"reinokabe, checkered wall, english text, checkered background",
|
5891 |
"SDXL 1.0",
|
@@ -6173,6 +6292,13 @@
|
|
6173 |
"https://civitai.com/models/472477",
|
6174 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/79f6db7f-11af-4671-8258-4cf8b3ae5309/width=450/14347589.jpeg"
|
6175 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6176 |
"short_bob_hair_XL_V1_0": [
|
6177 |
"short bob hair / short hair",
|
6178 |
"SDXL 1.0",
|
@@ -6656,6 +6782,13 @@
|
|
6656 |
"https://civitai.com/models/537445",
|
6657 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ad654bb6-4edb-43a0-84ba-44e5cd96d12b/width=450/17342314.jpeg"
|
6658 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6659 |
"tombstone_XL_v1": [
|
6660 |
"tombstone",
|
6661 |
"SDXL 1.0",
|
@@ -6880,6 +7013,13 @@
|
|
6880 |
"https://civitai.com/models/102228",
|
6881 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4b2bfb63-58a9-4687-878d-e9cf48537a55/width=450/10864207.jpeg"
|
6882 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6883 |
"usapiece_XL_v1": [
|
6884 |
"usa piece",
|
6885 |
"SDXL 1.0",
|
@@ -6894,6 +7034,13 @@
|
|
6894 |
"https://civitai.com/models/593897",
|
6895 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/90037cc7-12fb-4b2d-8aa8-c8b601418165/width=450/20844604.jpeg"
|
6896 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6897 |
"uterus_v1": [
|
6898 |
"x-ray,cross-section,urethra,cervix,ovaries,uterus,vaginal,clitoris,clitoral hood,internal cumshot,deep penetration,cum in uterus,uncensored",
|
6899 |
"Pony",
|
@@ -6929,6 +7076,13 @@
|
|
6929 |
"https://civitai.com/models/485414",
|
6930 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a384b828-bf36-4282-8139-d5703434f530/width=450/14066518.jpeg"
|
6931 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6932 |
"vibrator_pony": [
|
6933 |
"vib",
|
6934 |
"Pony",
|
@@ -7195,6 +7349,13 @@
|
|
7195 |
"https://civitai.com/models/127088",
|
7196 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/77fb49bb-077b-4439-a859-870763ecc39f/width=450/2018567.jpeg"
|
7197 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7198 |
"yamazakidaily_storefront_PONY_V1": [
|
7199 |
"YamazakiDaily, konbini, scenery, storefront, japan, scenery, shop, convenience store, road, outdoors, building, street, sign, real world location, city",
|
7200 |
"Pony",
|
|
|
846 |
"https://civitai.com/models/573102",
|
847 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6d84052f-fa1a-40cf-963b-c9417187139b/width=450/19517005.jpeg"
|
848 |
],
|
849 |
+
"Figure_Anime": [
|
850 |
+
"fig / nendo",
|
851 |
+
"Pony",
|
852 |
+
"Figure Anime Style",
|
853 |
+
"https://civitai.com/models/631010",
|
854 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c25720cc-16ab-44c1-80f9-3baedfef0c7c/width=450/23282676.jpeg"
|
855 |
+
],
|
856 |
"Fine_Anime_Screencap-PonyV2": [
|
857 |
"fine anime screencap_xl, anime screencap",
|
858 |
"Pony",
|
|
|
1252 |
"https://civitai.com/models/580868",
|
1253 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/aa68a87b-5f0a-4e18-8ed1-040039e35a83/width=450/20023922.jpeg"
|
1254 |
],
|
1255 |
+
"Japanese_Train_Station": [
|
1256 |
+
"japanesetrainstation",
|
1257 |
+
"SDXL 1.0",
|
1258 |
+
"Japanese Train Station Platform -- \u99c5\u306e\u30d7\u30e9\u30c3\u30c8\u30db\u30fc\u30e0",
|
1259 |
+
"https://civitai.com/models/627670",
|
1260 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/246561b0-ccb2-407a-b78f-bd8587813537/width=450/23151897.jpeg"
|
1261 |
+
],
|
1262 |
"JumpedSideKick_0_9": [
|
1263 |
"jusiki / side view / doing a jump sidekick",
|
1264 |
"SDXL 1.0",
|
|
|
1819 |
"https://civitai.com/models/453130",
|
1820 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/187d58de-02d0-4b24-a329-757629d00812/width=450/12434258.jpeg"
|
1821 |
],
|
1822 |
+
"Pov_Oral_facial_2girls_Pony_V1": [
|
1823 |
+
"1boy, 2girls, ffm threesome, pov, solo focus, pov penis, all fours, kneeling, leaning forward, squatting, breasts, nipples, completely nude, oral, fellatio, open mouth, blurry background, Depth of field,",
|
1824 |
+
"Pony",
|
1825 |
+
"HENTAI POV Oral Sex Story 2Girls (Iwara MMD Base model) | \u30a8\u30ed\u30a2\u30cb\u30e1 \u4e3b\u89b3\u30c0\u30d6\u30eb\u30d5\u30a7\u30e9\u7269\u8a9e (Iwara \u30a8\u30ed\u52d5\u753b \u30c0\u30d6\u30eb\u30d5\u30a7\u30e9 \u518d\u73fe\u30e2\u30c7\u30eb)",
|
1826 |
+
"https://civitai.com/models/627634",
|
1827 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d351c5e0-63a7-4ed6-bb08-1912d7d8e200/width=450/23067378.jpeg"
|
1828 |
+
],
|
1829 |
"Pov_Sex_Looking_Down": [
|
1830 |
"Pov Missionary, legs down, / Pov Missionary, legs spread, / Pov Mating press, / Pov Doggy style, / Pov Doggy style, buttjob, / torso grab, / arm grab, / breast grab, / butt grab, / leg grab, / no grab, / creampie, / cumming, ",
|
1831 |
"Pony",
|
|
|
2092 |
"https://civitai.com/models/402462",
|
2093 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/81900764-2148-4ea9-9028-48bc6d9db27c/width=450/17344395.jpeg"
|
2094 |
],
|
2095 |
+
"StS_PonyXL_Detail_Slider_v1_4_iteration_3": [
|
2096 |
+
"",
|
2097 |
+
"Pony",
|
2098 |
+
"Detail Slider LoRA | PonyXL SDXL",
|
2099 |
+
"https://civitai.com/models/402462",
|
2100 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/236b6ceb-d1bb-4ff7-9875-e592a22df79a/width=450/23721548.jpeg"
|
2101 |
+
],
|
2102 |
"StS_age_slider_v1_initial_release": [
|
2103 |
"",
|
2104 |
"Pony",
|
|
|
2365 |
"https://civitai.com/models/532877",
|
2366 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/0a1b0979-6710-4c4f-a46f-610da2490704/width=450/21424497.jpeg"
|
2367 |
],
|
2368 |
+
"VirtualSex_Pony_V2": [
|
2369 |
+
"virtualsex, 1girl, solo focus, headphones, nude, pussy, close-up, what, Neon lights, neon signs, holographic interface, neon trim, hologram, gameplay mechanics, science fiction, laser, sex toy, disembodied penis, testicles, veiny penis, disembodied arms, double penetration, triple penetration, large insertion, double penetration, triple penetration, oral, fellatio, irrumatio, paizuri, spread legs, spitroast, sweat, cowboy shot,upper body,",
|
2370 |
+
"Pony",
|
2371 |
+
"Hentai VirtualSex Random Generator (Iwara MMD Base) Pony XL | \u30d0\u30fc\u30c1\u30e3\u30eb \u30bb\u30c3\u30af\u30b9 \u30e9\u30f3\u30c0\u30e0 \u30b8\u30a7\u30cd\u30ec\u30fc\u30bf\u30fc\uff08\uff2d\uff2d\uff24\u30a8\u30ed\u52d5\u753b\u30e2\u30c7\u30eb\uff09",
|
2372 |
+
"https://civitai.com/models/634638",
|
2373 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9455f935-0d43-4e20-a763-74e144290946/width=450/23539696.jpeg"
|
2374 |
+
],
|
2375 |
"WatashiHentaiPony": [
|
2376 |
"",
|
2377 |
"Pony",
|
|
|
2687 |
"https://civitai.com/models/603179",
|
2688 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c7c950d5-3bd8-45ae-81cb-be782bf437f3/width=450/21484478.jpeg"
|
2689 |
],
|
2690 |
+
"after_sex_pony_V1_0": [
|
2691 |
+
"after sex / cum / cum dripping",
|
2692 |
+
"Pony",
|
2693 |
+
"\u4e2d\u51fa\u3057/after sex",
|
2694 |
+
"https://civitai.com/models/637588",
|
2695 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/219c28b6-397d-4007-8ed7-d501833ad26e/width=450/23721802.jpeg"
|
2696 |
+
],
|
2697 |
"against_glass_a3_0-2": [
|
2698 |
"chibi, against glass, cheek press, close-up,",
|
2699 |
"SDXL 1.0",
|
|
|
3492 |
"https://civitai.com/models/181857",
|
3493 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/66acb88f-ff5e-4ea3-8bdf-5dc538ffd8e3/width=450/9588995.jpeg"
|
3494 |
],
|
3495 |
+
"comiket_circle_space_SDXL_V1": [
|
3496 |
+
"comiket, table, chair, book, indoors, photo background, indoors, / ccs, table, chair, book, table, indoors, poster (object), photo background",
|
3497 |
+
"SDXL 1.0",
|
3498 |
+
"\u540c\u4eba\u8a8c\u5373\u58f2\u4f1a / Doujinshi convention SDXL",
|
3499 |
+
"https://civitai.com/models/633941",
|
3500 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/2ce22e1c-8643-47e3-8668-1689a0f5ba36/width=450/23475156.jpeg"
|
3501 |
+
],
|
3502 |
+
"comiket_cosplay_SDXL_V2": [
|
3503 |
+
"comiket_cosplay_Hiroba,, camera, 6+boys, outdoors, sportswear, baseball cap, holding camera, multiple boys, backpack, sky, bag, day, crowd, taking picture, hat, blue sky, holding, skirt, baseball uniform, shirt, white shirt, photo background, stadium, backwards hat, multiple girls, standing, scenery, watch",
|
3504 |
+
"SDXL 1.0",
|
3505 |
+
"\u30b3\u30b9\u30d7\u30ec\u30a8\u30ea\u30a2\u64ae\u5f71\u98a8\u666f / Cosplay area shooting scenery SDXL",
|
3506 |
+
"https://civitai.com/models/633914",
|
3507 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/095ac00b-32f3-4c07-8afa-f95c5ac6a8fd/width=450/23473842.jpeg"
|
3508 |
+
],
|
3509 |
"concept_wombwriting-pony-rls": [
|
3510 |
"womb writing",
|
3511 |
"Pony",
|
|
|
3716 |
"https://civitai.com/models/454079",
|
3717 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/46f67264-f1ea-40ba-a391-f4a03225573c/width=450/14905608.jpeg"
|
3718 |
],
|
3719 |
+
"daisyuki_pony_V1_0": [
|
3720 |
+
"daisyuki,sex,legs lock / kiss / lying / sitting / standing",
|
3721 |
+
"Pony",
|
3722 |
+
"\u3060\u3044\u3057\u3085\u304d\u30db\u30fc\u30eb\u30c9/legs lock",
|
3723 |
+
"https://civitai.com/models/628775",
|
3724 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/83566548-b845-4d8b-a0d0-be8cc8822a81/width=450/23142557.jpeg"
|
3725 |
+
],
|
3726 |
"dawa": [
|
3727 |
"dawa",
|
3728 |
"SDXL 1.0",
|
|
|
3779 |
"https://civitai.com/models/506887",
|
3780 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1f42f6ba-ca59-4399-90d7-e647ddd150ab/width=450/15287991.jpeg"
|
3781 |
],
|
3782 |
+
"doctor_pony_V1_0": [
|
3783 |
+
"doctor,lab coat / skirt,skirt",
|
3784 |
+
"Pony",
|
3785 |
+
"\u5973\u533b/doctor",
|
3786 |
+
"https://civitai.com/models/634215",
|
3787 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c4962d14-5296-4fd3-a49f-fc5968f349e0/width=450/23491349.jpeg"
|
3788 |
+
],
|
3789 |
"dogeza": [
|
3790 |
"pov / pov,breast press / ass only,fingers in pussy,fingering / face down,stepped on head,from above / dogeza",
|
3791 |
"Pony",
|
|
|
4143 |
"https://civitai.com/models/293472",
|
4144 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/86297f60-4594-461a-a142-ef8878a3f516/width=450/12847487.jpeg"
|
4145 |
],
|
4146 |
+
"group_sex_pony_V1_0": [
|
4147 |
+
"group sex",
|
4148 |
+
"Pony",
|
4149 |
+
"\u4e71\u4ea4/group sex",
|
4150 |
+
"https://civitai.com/models/629203",
|
4151 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/2c06304c-1b5a-4ce7-82dd-943ed96e6ce4/width=450/23173599.jpeg"
|
4152 |
+
],
|
4153 |
"guided_grab_twohands_xl": [
|
4154 |
"guided breast grab, guiding hand, grabbing",
|
4155 |
"Pony",
|
|
|
4458 |
"https://civitai.com/models/556350",
|
4459 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b15d4c8c-791b-47ef-913a-898208a44f30/width=450/18415890.jpeg"
|
4460 |
],
|
4461 |
+
"inPackxl": [
|
4462 |
+
"girl in package, chibi, figure",
|
4463 |
+
"SDXL 1.0",
|
4464 |
+
"XL- inPack",
|
4465 |
+
"https://civitai.com/models/637685",
|
4466 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/94123112-87d5-43fb-9f06-06e621b237bc/width=450/23732178.jpeg"
|
4467 |
+
],
|
4468 |
"infundibulum_insertion_pony_V1_0": [
|
4469 |
"infundibulum insertion",
|
4470 |
"Pony",
|
|
|
4689 |
"https://civitai.com/models/613694",
|
4690 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/da30a983-7daa-44e2-b712-29722a43602f/width=450/22179466.jpeg"
|
4691 |
],
|
4692 |
+
"kokusai_tenjijyo_eki_SDXL_V1": [
|
4693 |
+
"kaisatsu, automatic ticket gate, train station, scenery, sign, real world location, indoors, ceiling / TWRR03, real world location, scenery, outdoors, sky, road, blue sky, city, building, day, street, sign, cityscape, 6+boys, road sign, people, lamppost, multiple boys, storefront, exterior",
|
4694 |
+
"SDXL 1.0",
|
4695 |
+
"\u56fd\u969b\u5c55\u793a\u5834\u99c5 / kokusai-tenjijyo station R03 SDXL",
|
4696 |
+
"https://civitai.com/models/633876",
|
4697 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e5e0925d-0584-4bdd-9191-f1a30cd793ab/width=450/23472385.jpeg"
|
4698 |
+
],
|
4699 |
"kuragecut_v1": [
|
4700 |
"kuragecut",
|
4701 |
"SDXL 1.0",
|
|
|
5039 |
"https://civitai.com/models/488098",
|
5040 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/58767062-22a1-4f52-ac2e-7f01fae26908/width=450/14206684.jpeg"
|
5041 |
],
|
5042 |
+
"manguri_Pony_V1_0": [
|
5043 |
+
"manguri / legs up / folded / spread legs / upside-down / legs together / knee to chest",
|
5044 |
+
"Pony",
|
5045 |
+
"\u307e\u3093\u3050\u308a\u8fd4\u3057/folded pose",
|
5046 |
+
"https://civitai.com/models/623820",
|
5047 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e75d5f64-c7e8-4709-a698-1398e0ecf63d/width=450/22821566.jpeg"
|
5048 |
+
],
|
5049 |
"maron_maron__kotosanomaa": [
|
5050 |
"m4r0n_m4r0n",
|
5051 |
"Pony",
|
|
|
5235 |
"https://civitai.com/models/500165",
|
5236 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/956deaff-2606-4344-83fb-2ccc0a9d82b6/width=450/14898053.jpeg"
|
5237 |
],
|
5238 |
+
"nipple_pull_pony_V1_0": [
|
5239 |
+
"nipple pull / nipples tweak",
|
5240 |
+
"Pony",
|
5241 |
+
"\u4e73\u9996\u8cac\u3081/nipple pull",
|
5242 |
+
"https://civitai.com/models/627113",
|
5243 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f3ec667c-8bca-4c75-8eb9-08fa9cf4a57f/width=450/23036265.jpeg"
|
5244 |
+
],
|
5245 |
"nipples_fuck_pony_V1_0": [
|
5246 |
"nipples fuck,spread nipples,hetero,breats",
|
5247 |
"Pony",
|
|
|
5753 |
"https://civitai.com/models/506204",
|
5754 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1ccd3ce6-dc99-4157-a5dc-aab76243837e/width=450/15251716.jpeg"
|
5755 |
],
|
5756 |
+
"pony_straight_XL_V1_0": [
|
5757 |
+
"ponytail",
|
5758 |
+
"SDXL 1.0",
|
5759 |
+
"\u30dd\u30cb\u30fc\u30c6\u30fc\u30eb/ponytail",
|
5760 |
+
"https://civitai.com/models/626099",
|
5761 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/99355d14-08b2-4aac-b4fb-c86ea9a4f25c/width=450/22992501.jpeg"
|
5762 |
+
],
|
5763 |
"pony_suica_bar": [
|
5764 |
"watermelon bar / holding food",
|
5765 |
"Pony",
|
|
|
5998 |
"https://civitai.com/models/125132",
|
5999 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/34aa58e1-384b-483f-add7-4652bec7bcb7/width=450/9349092.jpeg"
|
6000 |
],
|
6001 |
+
"reflection_panties_pony_V1_0": [
|
6002 |
+
"reflection panties / reflection / from above",
|
6003 |
+
"Pony",
|
6004 |
+
"\u30ea\u30d5\u30ec\u30af\u30c1\u30e9/reflection panties",
|
6005 |
+
"https://civitai.com/models/625882",
|
6006 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4bec9784-098c-428f-95a8-780c016c189f/width=450/22956316.jpeg"
|
6007 |
+
],
|
6008 |
"rei_no_kabe_SDXL_V1": [
|
6009 |
"reinokabe, checkered wall, english text, checkered background",
|
6010 |
"SDXL 1.0",
|
|
|
6292 |
"https://civitai.com/models/472477",
|
6293 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/79f6db7f-11af-4671-8258-4cf8b3ae5309/width=450/14347589.jpeg"
|
6294 |
],
|
6295 |
+
"shirizumou_pony_V1_0": [
|
6296 |
+
"ass sumo wrestling, 2girls, ass, ass to ass / standing / bent over / from side",
|
6297 |
+
"Pony",
|
6298 |
+
"\u5c3b\u76f8\u64b2/ass sumo wrestling",
|
6299 |
+
"https://civitai.com/models/631876",
|
6300 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5063f539-2efc-4417-a641-da73db63ef98/width=450/23337859.jpeg"
|
6301 |
+
],
|
6302 |
"short_bob_hair_XL_V1_0": [
|
6303 |
"short bob hair / short hair",
|
6304 |
"SDXL 1.0",
|
|
|
6782 |
"https://civitai.com/models/537445",
|
6783 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ad654bb6-4edb-43a0-84ba-44e5cd96d12b/width=450/17342314.jpeg"
|
6784 |
],
|
6785 |
+
"tokyo_bigsight_east_SDXL_V1": [
|
6786 |
+
"tokyobigsight, EASTHALL, scenery, indoors, ceiling light, lights, light, sign, lamppost, ceiling, real world location",
|
6787 |
+
"SDXL 1.0",
|
6788 |
+
"\u6771\u4eac\u30d3\u30c3\u30b0\u30b5\u30a4\u30c8\u6771\u5c55\u793a\u5834 / TokyoBigSight EASTHALL indoors SDXL",
|
6789 |
+
"https://civitai.com/models/633892",
|
6790 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/7ec87d38-0008-4fac-9676-530350ae2e4a/width=450/23473062.jpeg"
|
6791 |
+
],
|
6792 |
"tombstone_XL_v1": [
|
6793 |
"tombstone",
|
6794 |
"SDXL 1.0",
|
|
|
7013 |
"https://civitai.com/models/102228",
|
7014 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4b2bfb63-58a9-4687-878d-e9cf48537a55/width=450/10864207.jpeg"
|
7015 |
],
|
7016 |
+
"urethra_insertion_Pony_V1_0": [
|
7017 |
+
" female urethra insertion, pussy, clitoris, urethra, female masturbation",
|
7018 |
+
"Pony",
|
7019 |
+
"\u5c3f\u9053\u30aa\u30ca\u30cb\u30fc/female urethra insertion",
|
7020 |
+
"https://civitai.com/models/635321",
|
7021 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/59e4b000-dbf4-461c-83e3-b0273318006b/width=450/23563114.jpeg"
|
7022 |
+
],
|
7023 |
"usapiece_XL_v1": [
|
7024 |
"usa piece",
|
7025 |
"SDXL 1.0",
|
|
|
7034 |
"https://civitai.com/models/593897",
|
7035 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/90037cc7-12fb-4b2d-8aa8-c8b601418165/width=450/20844604.jpeg"
|
7036 |
],
|
7037 |
+
"uterus-ponyxl-lora-nochekaiser": [
|
7038 |
+
"<lora:uterus-ponyxl-lora-nochekaiser:1>, uterus, internal cumshot, cross-section, cervix, x-ray, ejaculation, vaginal, sex, cum, penis, hetero,",
|
7039 |
+
"Pony",
|
7040 |
+
"Uterus - Concept",
|
7041 |
+
"https://civitai.com/models/589694",
|
7042 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b385262d-35f7-4346-9752-8e25868d6e7b/width=450/20623530.jpeg"
|
7043 |
+
],
|
7044 |
"uterus_v1": [
|
7045 |
"x-ray,cross-section,urethra,cervix,ovaries,uterus,vaginal,clitoris,clitoral hood,internal cumshot,deep penetration,cum in uterus,uncensored",
|
7046 |
"Pony",
|
|
|
7076 |
"https://civitai.com/models/485414",
|
7077 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a384b828-bf36-4282-8139-d5703434f530/width=450/14066518.jpeg"
|
7078 |
],
|
7079 |
+
"vaultinghorse_Pony_v1": [
|
7080 |
+
"vaulting",
|
7081 |
+
"Pony",
|
7082 |
+
"[SDXL&Pony] vaulting horse / \u8df3\u3073\u7bb1",
|
7083 |
+
"https://civitai.com/models/357070",
|
7084 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/fe350e16-3fdb-49d7-bbad-0ecc7180d570/width=450/23503228.jpeg"
|
7085 |
+
],
|
7086 |
"vibrator_pony": [
|
7087 |
"vib",
|
7088 |
"Pony",
|
|
|
7349 |
"https://civitai.com/models/127088",
|
7350 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/77fb49bb-077b-4439-a859-870763ecc39f/width=450/2018567.jpeg"
|
7351 |
],
|
7352 |
+
"yaeba_pony_V1_0": [
|
7353 |
+
"fang, yaeba, tooth",
|
7354 |
+
"Pony",
|
7355 |
+
"\u516b\u91cd\u6b6f/fang",
|
7356 |
+
"https://civitai.com/models/637736",
|
7357 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5f6c7aee-f123-47f6-86e4-81c336665e60/width=450/23736006.jpeg"
|
7358 |
+
],
|
7359 |
"yamazakidaily_storefront_PONY_V1": [
|
7360 |
"YamazakiDaily, konbini, scenery, storefront, japan, scenery, shop, convenience store, road, outdoors, building, street, sign, real world location, city",
|
7361 |
"Pony",
|