John6666 commited on
Commit
08868a5
·
verified ·
1 Parent(s): a1dbfb7

Upload 2 files

Browse files
Files changed (2) hide show
  1. app.py +37 -30
  2. lora_dict.json +273 -0
app.py CHANGED
@@ -1602,43 +1602,49 @@ with gr.Blocks(theme="NoCrypt/miku@>=1.2.2", elem_id="main", css=CSS) as app:
1602
  change_interface_mode,
1603
  [interface_mode_gui],
1604
  [menu_model, menu_from_image, menu_negative, menu_gen, menu_hires, menu_lora, menu_advanced,
1605
- menu_example, task_gui, quick_speed_gui]
 
1606
  )
1607
- model_name_gui.change(get_t2i_model_info, [model_name_gui], [model_info_gui])
1608
 
1609
  quick_model_type_gui.change(
1610
  set_quick_presets,
1611
  [quick_genre_gui, quick_model_type_gui, quick_speed_gui, quick_aspect_gui],
1612
  [quality_selector_gui, style_selector_gui, sampler_selector_gui, optimization_gui],
 
1613
  )
1614
  quick_genre_gui.change(
1615
  set_quick_presets,
1616
  [quick_genre_gui, quick_model_type_gui, quick_speed_gui, quick_aspect_gui],
1617
  [quality_selector_gui, style_selector_gui, sampler_selector_gui, optimization_gui],
 
1618
  )
1619
  quick_speed_gui.change(
1620
  set_quick_presets,
1621
  [quick_genre_gui, quick_model_type_gui, quick_speed_gui, quick_aspect_gui],
1622
  [quality_selector_gui, style_selector_gui, sampler_selector_gui, optimization_gui],
 
1623
  )
1624
  quick_aspect_gui.change(
1625
  set_quick_presets,
1626
  [quick_genre_gui, quick_model_type_gui, quick_speed_gui, quick_aspect_gui],
1627
  [quality_selector_gui, style_selector_gui, sampler_selector_gui, optimization_gui],
 
1628
  )
1629
-
1630
  quality_selector_gui.change(
1631
  process_style_prompt,
1632
  [prompt_gui, neg_prompt_gui, style_selector_gui, quality_selector_gui, insert_prompt_gui],
1633
  [prompt_gui, neg_prompt_gui],
 
1634
  )
1635
  style_selector_gui.change(
1636
  process_style_prompt,
1637
  [prompt_gui, neg_prompt_gui, style_selector_gui, quality_selector_gui, insert_prompt_gui],
1638
  [prompt_gui, neg_prompt_gui],
 
1639
  )
1640
- sampler_selector_gui.change(set_sampler_settings, [sampler_selector_gui], [sampler_gui, steps_gui, cfg_gui, clip_skip_gui, img_width_gui, img_height_gui, optimization_gui])
1641
- optimization_gui.change(set_optimization, [optimization_gui, steps_gui, cfg_gui, sampler_gui, clip_skip_gui, lora5_gui, lora_scale_5_gui], [steps_gui, cfg_gui, sampler_gui, clip_skip_gui, lora5_gui, lora_scale_5_gui])
1642
 
1643
  lora1_gui.change(set_lora_prompt, [prompt_gui, prompt_syntax_gui, lora1_gui, lora_scale_1_gui, lora2_gui, lora_scale_2_gui, lora3_gui, lora_scale_3_gui, lora4_gui, lora_scale_4_gui, lora5_gui, lora_scale_5_gui], [prompt_gui])\
1644
  .success(set_lora_trigger, [lora1_gui], [lora1_trigger_gui, lora1_copy_button, lora1_desc_gui, lora1_gui], scroll_to_output=True)
@@ -1658,11 +1664,11 @@ with gr.Blocks(theme="NoCrypt/miku@>=1.2.2", elem_id="main", css=CSS) as app:
1658
  lora3_gui, lora_scale_3_gui, lora4_gui, lora_scale_4_gui, lora5_gui, lora_scale_5_gui],
1659
  outputs=[prompt_gui],
1660
  )
1661
- lora1_copy_button.click(apply_lora_prompt, [prompt_gui, lora1_trigger_gui], [prompt_gui])
1662
- lora2_copy_button.click(apply_lora_prompt, [prompt_gui, lora2_trigger_gui], [prompt_gui])
1663
- lora3_copy_button.click(apply_lora_prompt, [prompt_gui, lora3_trigger_gui], [prompt_gui])
1664
- lora4_copy_button.click(apply_lora_prompt, [prompt_gui, lora4_trigger_gui], [prompt_gui])
1665
- lora5_copy_button.click(apply_lora_prompt, [prompt_gui, lora5_trigger_gui], [prompt_gui])
1666
  gr.on(
1667
  triggers=[search_civitai_button_lora.click, search_civitai_query_lora.submit],
1668
  fn=search_civitai_lora,
@@ -1670,7 +1676,7 @@ with gr.Blocks(theme="NoCrypt/miku@>=1.2.2", elem_id="main", css=CSS) as app:
1670
  outputs=[search_civitai_result_lora, search_civitai_desc_lora, search_civitai_button_lora, search_civitai_query_lora],
1671
  scroll_to_output=True,
1672
  )
1673
- search_civitai_result_lora.change(select_civitai_lora, [search_civitai_result_lora], [text_lora, search_civitai_desc_lora], scroll_to_output=True)
1674
  button_lora.click(get_my_lora, [text_lora], [lora1_gui, lora2_gui, lora3_gui, lora4_gui, lora5_gui], scroll_to_output=True)
1675
  upload_button_lora.upload(upload_file_lora, [upload_button_lora], [file_output_lora, upload_button_lora]).success(
1676
  move_file_lora, [file_output_lora], [lora1_gui, lora2_gui, lora3_gui, lora4_gui, lora5_gui], scroll_to_output=True)
@@ -1682,13 +1688,13 @@ with gr.Blocks(theme="NoCrypt/miku@>=1.2.2", elem_id="main", css=CSS) as app:
1682
  [input_image_gui, prompt_gui, image_algorithms, general_threshold_gui, character_threshold_gui],
1683
  [series_dbt, character_dbt, prompt_gui, copy_button_dbt],
1684
  ).success(
1685
- compose_prompt_to_copy, [character_dbt, series_dbt, prompt_gui], [prompt_gui]
1686
  ).success(
1687
- remove_specific_prompt, [prompt_gui, keep_tags_gui], [prompt_gui],
1688
  ).success(
1689
- convert_danbooru_to_e621_prompt, [prompt_gui, tag_type_gui], [prompt_gui],
1690
  ).success(
1691
- insert_recom_prompt, [prompt_gui, neg_prompt_gui, recom_prompt_gui], [prompt_gui, neg_prompt_gui],
1692
  )
1693
 
1694
  v2b.input_components = [model_name_dbt, series_dbt, character_dbt, prompt_gui,
@@ -1698,18 +1704,19 @@ with gr.Blocks(theme="NoCrypt/miku@>=1.2.2", elem_id="main", css=CSS) as app:
1698
  process_style_prompt,
1699
  [prompt_gui, neg_prompt_gui, style_selector_gui, quality_selector_gui, insert_prompt_gui],
1700
  [prompt_gui, neg_prompt_gui],
 
1701
  )
1702
- prompt_type_button.click(convert_danbooru_to_e621_prompt, [prompt_gui, prompt_type_gui], [prompt_gui])
1703
- random_character_gui.click(select_random_character, [series_dbt, character_dbt], [series_dbt, character_dbt])
1704
  generate_db_random_button.click(
1705
  parse_upsampling_output(v2b.on_generate),
1706
  [*v2b.input_components],
1707
  [prompt_gui, elapsed_time_dbt, copy_button_dbt, copy_button_dbt],
1708
  )
1709
 
1710
- translate_prompt_button.click(translate_prompt, [prompt_gui], [prompt_gui])
1711
- translate_prompt_button.click(translate_prompt, [character_dbt], [character_dbt])
1712
- translate_prompt_button.click(translate_prompt, [series_dbt], [series_dbt])
1713
 
1714
  generate_button.click(
1715
  fn=sd_gen.load_new_model,
@@ -1829,7 +1836,7 @@ with gr.Blocks(theme="NoCrypt/miku@>=1.2.2", elem_id="main", css=CSS) as app:
1829
  outputs=[result_images, actual_task_info],
1830
  queue=True,
1831
  show_progress="minimal",
1832
- ).success(save_gallery_images, [result_images], [result_images, result_images_files, result_images_files])
1833
 
1834
  with gr.Tab("Danbooru Tags Transformer with WD Tagger", render=True):
1835
  v2 = V2UI()
@@ -1881,20 +1888,20 @@ with gr.Blocks(theme="NoCrypt/miku@>=1.2.2", elem_id="main", css=CSS) as app:
1881
  v2.input_components = [model_name, input_copyright, input_character, input_general,
1882
  input_rating, input_aspect_ratio, input_length, input_identity, input_ban_tags]
1883
 
1884
- translate_input_prompt_button.click(translate_prompt, inputs=[input_general], outputs=[input_general])
1885
- translate_input_prompt_button.click(translate_prompt, inputs=[input_character], outputs=[input_character])
1886
- translate_input_prompt_button.click(translate_prompt, inputs=[input_copyright], outputs=[input_copyright])
1887
 
1888
  generate_from_image_btn.click(
1889
  predict_tags_wd,
1890
  [input_image, input_general, image_algorithms, general_threshold, character_threshold],
1891
  [input_copyright, input_character, input_general, copy_input_btn],
1892
  ).success(
1893
- remove_specific_prompt, inputs=[input_general, keep_tags], outputs=[input_general],
1894
  ).success(
1895
- convert_danbooru_to_e621_prompt, inputs=[input_general, input_tag_type], outputs=[input_general],
1896
  ).success(
1897
- insert_recom_prompt, inputs=[input_general, dummy_np, recom_prompt], outputs=[input_general, dummy_np],
1898
  )
1899
  copy_input_btn.click(compose_prompt_to_copy, inputs=[input_character, input_copyright, input_general], outputs=[input_tags_to_copy])\
1900
  .success(gradio_copy_text, inputs=[input_tags_to_copy], js=COPY_ACTION_JS)
@@ -1906,11 +1913,11 @@ with gr.Blocks(theme="NoCrypt/miku@>=1.2.2", elem_id="main", css=CSS) as app:
1906
  [*v2.input_components],
1907
  [output_text, elapsed_time_md, copy_btn, copy_btn_pony],
1908
  ).success(
1909
- convert_danbooru_to_e621_prompt, inputs=[output_text, tag_type], outputs=[output_text_pony],
1910
  ).success(
1911
- insert_recom_prompt, inputs=[output_text, dummy_np, recom_animagine], outputs=[output_text, dummy_np],
1912
  ).success(
1913
- insert_recom_prompt, inputs=[output_text_pony, dummy_np, recom_pony], outputs=[output_text_pony, dummy_np],
1914
  )
1915
  copy_btn.click(gradio_copy_text, inputs=[output_text], js=COPY_ACTION_JS)
1916
  copy_btn_pony.click(gradio_copy_text, inputs=[output_text_pony], js=COPY_ACTION_JS)
 
1602
  change_interface_mode,
1603
  [interface_mode_gui],
1604
  [menu_model, menu_from_image, menu_negative, menu_gen, menu_hires, menu_lora, menu_advanced,
1605
+ menu_example, task_gui, quick_speed_gui],
1606
+ queue=False,
1607
  )
1608
+ model_name_gui.change(get_t2i_model_info, [model_name_gui], [model_info_gui], queue=False)
1609
 
1610
  quick_model_type_gui.change(
1611
  set_quick_presets,
1612
  [quick_genre_gui, quick_model_type_gui, quick_speed_gui, quick_aspect_gui],
1613
  [quality_selector_gui, style_selector_gui, sampler_selector_gui, optimization_gui],
1614
+ queue=False,
1615
  )
1616
  quick_genre_gui.change(
1617
  set_quick_presets,
1618
  [quick_genre_gui, quick_model_type_gui, quick_speed_gui, quick_aspect_gui],
1619
  [quality_selector_gui, style_selector_gui, sampler_selector_gui, optimization_gui],
1620
+ queue=False,
1621
  )
1622
  quick_speed_gui.change(
1623
  set_quick_presets,
1624
  [quick_genre_gui, quick_model_type_gui, quick_speed_gui, quick_aspect_gui],
1625
  [quality_selector_gui, style_selector_gui, sampler_selector_gui, optimization_gui],
1626
+ queue=False,
1627
  )
1628
  quick_aspect_gui.change(
1629
  set_quick_presets,
1630
  [quick_genre_gui, quick_model_type_gui, quick_speed_gui, quick_aspect_gui],
1631
  [quality_selector_gui, style_selector_gui, sampler_selector_gui, optimization_gui],
1632
+ queue=False,
1633
  )
 
1634
  quality_selector_gui.change(
1635
  process_style_prompt,
1636
  [prompt_gui, neg_prompt_gui, style_selector_gui, quality_selector_gui, insert_prompt_gui],
1637
  [prompt_gui, neg_prompt_gui],
1638
+ queue=False,
1639
  )
1640
  style_selector_gui.change(
1641
  process_style_prompt,
1642
  [prompt_gui, neg_prompt_gui, style_selector_gui, quality_selector_gui, insert_prompt_gui],
1643
  [prompt_gui, neg_prompt_gui],
1644
+ queue=False,
1645
  )
1646
+ sampler_selector_gui.change(set_sampler_settings, [sampler_selector_gui], [sampler_gui, steps_gui, cfg_gui, clip_skip_gui, img_width_gui, img_height_gui, optimization_gui], queue=False)
1647
+ optimization_gui.change(set_optimization, [optimization_gui, steps_gui, cfg_gui, sampler_gui, clip_skip_gui, lora5_gui, lora_scale_5_gui], [steps_gui, cfg_gui, sampler_gui, clip_skip_gui, lora5_gui, lora_scale_5_gui], queue=False)
1648
 
1649
  lora1_gui.change(set_lora_prompt, [prompt_gui, prompt_syntax_gui, lora1_gui, lora_scale_1_gui, lora2_gui, lora_scale_2_gui, lora3_gui, lora_scale_3_gui, lora4_gui, lora_scale_4_gui, lora5_gui, lora_scale_5_gui], [prompt_gui])\
1650
  .success(set_lora_trigger, [lora1_gui], [lora1_trigger_gui, lora1_copy_button, lora1_desc_gui, lora1_gui], scroll_to_output=True)
 
1664
  lora3_gui, lora_scale_3_gui, lora4_gui, lora_scale_4_gui, lora5_gui, lora_scale_5_gui],
1665
  outputs=[prompt_gui],
1666
  )
1667
+ lora1_copy_button.click(apply_lora_prompt, [prompt_gui, lora1_trigger_gui], [prompt_gui], queue=False)
1668
+ lora2_copy_button.click(apply_lora_prompt, [prompt_gui, lora2_trigger_gui], [prompt_gui], queue=False)
1669
+ lora3_copy_button.click(apply_lora_prompt, [prompt_gui, lora3_trigger_gui], [prompt_gui], queue=False)
1670
+ lora4_copy_button.click(apply_lora_prompt, [prompt_gui, lora4_trigger_gui], [prompt_gui], queue=False)
1671
+ lora5_copy_button.click(apply_lora_prompt, [prompt_gui, lora5_trigger_gui], [prompt_gui], queue=False)
1672
  gr.on(
1673
  triggers=[search_civitai_button_lora.click, search_civitai_query_lora.submit],
1674
  fn=search_civitai_lora,
 
1676
  outputs=[search_civitai_result_lora, search_civitai_desc_lora, search_civitai_button_lora, search_civitai_query_lora],
1677
  scroll_to_output=True,
1678
  )
1679
+ search_civitai_result_lora.change(select_civitai_lora, [search_civitai_result_lora], [text_lora, search_civitai_desc_lora], queue=False, scroll_to_output=True)
1680
  button_lora.click(get_my_lora, [text_lora], [lora1_gui, lora2_gui, lora3_gui, lora4_gui, lora5_gui], scroll_to_output=True)
1681
  upload_button_lora.upload(upload_file_lora, [upload_button_lora], [file_output_lora, upload_button_lora]).success(
1682
  move_file_lora, [file_output_lora], [lora1_gui, lora2_gui, lora3_gui, lora4_gui, lora5_gui], scroll_to_output=True)
 
1688
  [input_image_gui, prompt_gui, image_algorithms, general_threshold_gui, character_threshold_gui],
1689
  [series_dbt, character_dbt, prompt_gui, copy_button_dbt],
1690
  ).success(
1691
+ compose_prompt_to_copy, [character_dbt, series_dbt, prompt_gui], [prompt_gui], queue=False,
1692
  ).success(
1693
+ remove_specific_prompt, [prompt_gui, keep_tags_gui], [prompt_gui], queue=False,
1694
  ).success(
1695
+ convert_danbooru_to_e621_prompt, [prompt_gui, tag_type_gui], [prompt_gui], queue=False,
1696
  ).success(
1697
+ insert_recom_prompt, [prompt_gui, neg_prompt_gui, recom_prompt_gui], [prompt_gui, neg_prompt_gui], queue=False,
1698
  )
1699
 
1700
  v2b.input_components = [model_name_dbt, series_dbt, character_dbt, prompt_gui,
 
1704
  process_style_prompt,
1705
  [prompt_gui, neg_prompt_gui, style_selector_gui, quality_selector_gui, insert_prompt_gui],
1706
  [prompt_gui, neg_prompt_gui],
1707
+ queue=False,
1708
  )
1709
+ prompt_type_button.click(convert_danbooru_to_e621_prompt, [prompt_gui, prompt_type_gui], [prompt_gui], queue=False)
1710
+ random_character_gui.click(select_random_character, [series_dbt, character_dbt], [series_dbt, character_dbt], queue=False)
1711
  generate_db_random_button.click(
1712
  parse_upsampling_output(v2b.on_generate),
1713
  [*v2b.input_components],
1714
  [prompt_gui, elapsed_time_dbt, copy_button_dbt, copy_button_dbt],
1715
  )
1716
 
1717
+ translate_prompt_button.click(translate_prompt, [prompt_gui], [prompt_gui], queue=False)
1718
+ translate_prompt_button.click(translate_prompt, [character_dbt], [character_dbt], queue=False)
1719
+ translate_prompt_button.click(translate_prompt, [series_dbt], [series_dbt], queue=False)
1720
 
1721
  generate_button.click(
1722
  fn=sd_gen.load_new_model,
 
1836
  outputs=[result_images, actual_task_info],
1837
  queue=True,
1838
  show_progress="minimal",
1839
+ ).success(save_gallery_images, [result_images], [result_images, result_images_files, result_images_files], queue=False)
1840
 
1841
  with gr.Tab("Danbooru Tags Transformer with WD Tagger", render=True):
1842
  v2 = V2UI()
 
1888
  v2.input_components = [model_name, input_copyright, input_character, input_general,
1889
  input_rating, input_aspect_ratio, input_length, input_identity, input_ban_tags]
1890
 
1891
+ translate_input_prompt_button.click(translate_prompt, inputs=[input_general], outputs=[input_general], queue=False)
1892
+ translate_input_prompt_button.click(translate_prompt, inputs=[input_character], outputs=[input_character], queue=False)
1893
+ translate_input_prompt_button.click(translate_prompt, inputs=[input_copyright], outputs=[input_copyright], queue=False)
1894
 
1895
  generate_from_image_btn.click(
1896
  predict_tags_wd,
1897
  [input_image, input_general, image_algorithms, general_threshold, character_threshold],
1898
  [input_copyright, input_character, input_general, copy_input_btn],
1899
  ).success(
1900
+ remove_specific_prompt, inputs=[input_general, keep_tags], outputs=[input_general], queue=False,
1901
  ).success(
1902
+ convert_danbooru_to_e621_prompt, inputs=[input_general, input_tag_type], outputs=[input_general], queue=False,
1903
  ).success(
1904
+ insert_recom_prompt, inputs=[input_general, dummy_np, recom_prompt], outputs=[input_general, dummy_np], queue=False,
1905
  )
1906
  copy_input_btn.click(compose_prompt_to_copy, inputs=[input_character, input_copyright, input_general], outputs=[input_tags_to_copy])\
1907
  .success(gradio_copy_text, inputs=[input_tags_to_copy], js=COPY_ACTION_JS)
 
1913
  [*v2.input_components],
1914
  [output_text, elapsed_time_md, copy_btn, copy_btn_pony],
1915
  ).success(
1916
+ convert_danbooru_to_e621_prompt, inputs=[output_text, tag_type], outputs=[output_text_pony], queue=False,
1917
  ).success(
1918
+ insert_recom_prompt, inputs=[output_text, dummy_np, recom_animagine], outputs=[output_text, dummy_np], queue=False,
1919
  ).success(
1920
+ insert_recom_prompt, inputs=[output_text_pony, dummy_np, recom_pony], outputs=[output_text_pony, dummy_np], queue=False,
1921
  )
1922
  copy_btn.click(gradio_copy_text, inputs=[output_text], js=COPY_ACTION_JS)
1923
  copy_btn_pony.click(gradio_copy_text, inputs=[output_text_pony], js=COPY_ACTION_JS)
lora_dict.json CHANGED
@@ -118,6 +118,13 @@
118
  "https://civitai.com/models/549390",
119
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/fd768f25-c146-4675-a516-2d123147aa2c/width=450/17954370.jpeg"
120
  ],
 
 
 
 
 
 
 
121
  "2FingersSDXL_v03": [
122
  "fingering pussy",
123
  "SDXL 1.0",
@@ -132,6 +139,13 @@
132
  "https://civitai.com/models/482197",
133
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b819e24c-f2f4-45d2-aa19-c96b5e011bf0/width=450/13901350.jpeg"
134
  ],
 
 
 
 
 
 
 
135
  "4ssl3ssMXLP": [
136
  "4ssl3ssm, maid, solo, choker, miniskirt, / from behind, ass, assless, crop top, ",
137
  "Pony",
@@ -146,6 +160,13 @@
146
  "https://civitai.com/models/500116",
147
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6d8f4c41-1f98-417a-9892-4717e662b375/width=450/17608279.jpeg"
148
  ],
 
 
 
 
 
 
 
149
  "ALTXL_001_4": [
150
  "",
151
  "SDXL 1.0",
@@ -181,6 +202,13 @@
181
  "https://civitai.com/models/468265",
182
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ed4efb1e-c0f8-48e1-8c54-aea895206e56/width=450/14057458.jpeg"
183
  ],
 
 
 
 
 
 
 
184
  "Anime_Figure_P1": [
185
  "figure,",
186
  "Pony",
@@ -650,6 +678,13 @@
650
  "https://civitai.com/models/541891",
651
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/57d1171a-c998-44dc-9d1e-3027b20054ca/width=450/18282956.jpeg"
652
  ],
 
 
 
 
 
 
 
653
  "Group_(2)": [
654
  "gangbang",
655
  "Pony",
@@ -790,6 +825,13 @@
790
  "https://civitai.com/models/550733",
791
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d6cb4004-ec4f-4213-a710-1c8368c74f61/width=450/18040148.jpeg"
792
  ],
 
 
 
 
 
 
 
793
  "Insertion_Slider_alpha1_0_rank4_noxattn_last": [
794
  "",
795
  "Pony",
@@ -930,6 +972,13 @@
930
  "https://civitai.com/models/92173",
931
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/81a09452-ebd1-4dd0-8c13-591ea2ceb005/width=450/18460288.jpeg"
932
  ],
 
 
 
 
 
 
 
933
  "MS_PDXL_AfterSex_Lite": [
934
  "after sex, cum, lying, cumdrip, ass, on stomach, on back, fucked silly, sweat, cum pool, bukkake, trembling",
935
  "Pony",
@@ -993,6 +1042,13 @@
993
  "https://civitai.com/models/542306",
994
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e5021a11-2059-4030-8a7c-8ce699a59398/width=450/17473348.jpeg"
995
  ],
 
 
 
 
 
 
 
996
  "Monkey_Costume_Pony": [
997
  "monkey costume",
998
  "Pony",
@@ -1385,6 +1441,27 @@
1385
  "https://civitai.com/models/543007",
1386
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/32bb611d-6843-4197-844e-d8ddc1aabf6e/width=450/18288434.jpeg"
1387
  ],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1388
  "Standing_Split_Sex_Position_LoRa__PonyXL": [
1389
  "standing split, sex, vaginal, penis, one leg up, full body",
1390
  "Pony",
@@ -1462,6 +1539,13 @@
1462
  "https://civitai.com/models/492792",
1463
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/910b50f3-7843-447b-ba1a-440803da2c9b/width=450/14758933.jpeg"
1464
  ],
 
 
 
 
 
 
 
1465
  "Tribadism_for_Pony": [
1466
  "tribadism / scissoring / tribbing / trib / vaginal rubbing / pussies grinding",
1467
  "Pony",
@@ -1511,6 +1595,13 @@
1511
  "https://civitai.com/models/421737",
1512
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/3b87142d-9566-4d54-b0c9-e87f44c96097/width=450/16498196.jpeg"
1513
  ],
 
 
 
 
 
 
 
1514
  "Vagina_Size_Slider_alpha1_0_rank4_noxattn_last": [
1515
  "",
1516
  "Pony",
@@ -1546,6 +1637,13 @@
1546
  "https://civitai.com/models/512695",
1547
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/09965214-1ce8-449e-a429-5dc5df8f629a/width=450/18246462.jpeg"
1548
  ],
 
 
 
 
 
 
 
1549
  "XL_crying_aqua(kohaku_delta)-000009": [
1550
  "open mouth,solo,tears,crying,blush,crying with eyes open",
1551
  "SDXL 1.0",
@@ -1693,6 +1791,13 @@
1693
  "https://civitai.com/models/528284",
1694
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4ab90a51-eeb2-4caa-b562-4ca7ef86c3eb/width=450/16543700.jpeg"
1695
  ],
 
 
 
 
 
 
 
1696
  "_sdxl-sasayaki-pony": [
1697
  "sasayaki / sasayaki pov",
1698
  "Pony",
@@ -1784,6 +1889,13 @@
1784
  "https://civitai.com/models/526774",
1785
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b40d42c4-66df-4c6e-9351-2b0343007979/width=450/16455415.jpeg"
1786
  ],
 
 
 
 
 
 
 
1787
  "asanagi": [
1788
  "4s4n4g1",
1789
  "Pony",
@@ -1896,6 +2008,13 @@
1896
  "https://civitai.com/models/538301",
1897
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b800269a-ab18-4244-b1ac-cbb0df092bf4/width=450/17204111.jpeg"
1898
  ],
 
 
 
 
 
 
 
1899
  "basketball_uniform_pony_V1_0": [
1900
  " basketball uniform",
1901
  "Pony",
@@ -2071,6 +2190,13 @@
2071
  "https://civitai.com/models/540011",
2072
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/afccd8e4-5ac4-4f43-934a-b620a63f0079/width=450/17326206.jpeg"
2073
  ],
 
 
 
 
 
 
 
2074
  "bukkake_pony_V1_0": [
2075
  "bukkake",
2076
  "Pony",
@@ -2120,6 +2246,13 @@
2120
  "https://civitai.com/models/461179",
2121
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6c60d797-4016-4c4f-a7f5-721c01a359ed/width=450/12808748.jpeg"
2122
  ],
 
 
 
 
 
 
 
2123
  "buttjob": [
2124
  "buttjob / buttjob over clothes / ass",
2125
  "Pony",
@@ -2176,6 +2309,13 @@
2176
  "https://civitai.com/models/476691",
2177
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e2c7f23f-fa78-4121-9ed7-37944c025ada/width=450/13846218.jpeg"
2178
  ],
 
 
 
 
 
 
 
2179
  "checkpoint-e94_s752": [
2180
  "cute, kawaii, cutecore, kawaiicore, cutegore, kawaiigore, colorful stars, pastel colors, hearts, rainbow, rainbow text",
2181
  "Pony",
@@ -2232,6 +2372,13 @@
2232
  "https://civitai.com/models/454079",
2233
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/98b7f672-8e8c-477f-9540-1ef7d2eb2a3b/width=450/14913037.jpeg"
2234
  ],
 
 
 
 
 
 
 
2235
  "clothes_removed": [
2236
  "clothes removed, no humans",
2237
  "Pony",
@@ -2337,6 +2484,13 @@
2337
  "https://civitai.com/models/510704",
2338
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/64d22d9f-95a1-4106-8f32-77a9b1efe7b7/width=450/15501640.jpeg"
2339
  ],
 
 
 
 
 
 
 
2340
  "cum_donation_assistance_": [
2341
  "CUM DONATION ASSISTANCE / FELLATIO / TITS SEX / HANDJOB / FOOTJOB / AFTER VAGINAL",
2342
  "Pony",
@@ -2421,6 +2575,13 @@
2421
  "https://civitai.com/models/26687",
2422
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f3ab0984-596f-4f4c-aa41-ebfb8fe6861a/width=450/9218028.jpeg"
2423
  ],
 
 
 
 
 
 
 
2424
  "dissolving-xl-pony-v2-000008": [
2425
  "dissolving, disintegration",
2426
  "Pony",
@@ -2512,6 +2673,13 @@
2512
  "https://civitai.com/models/497840",
2513
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/889215a7-fa56-4b92-afa6-660734850028/width=450/14750809.jpeg"
2514
  ],
 
 
 
 
 
 
 
2515
  "fanningself_XL_v1": [
2516
  "fanning self",
2517
  "SDXL 1.0",
@@ -2638,6 +2806,13 @@
2638
  "https://civitai.com/models/357976",
2639
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ead23075-e9ff-4378-b1b3-442b1abaef78/width=450/14593009.jpeg"
2640
  ],
 
 
 
 
 
 
 
2641
  "glansjob": [
2642
  "glansjob / pov / handjob",
2643
  "Pony",
@@ -2722,6 +2897,13 @@
2722
  "https://civitai.com/models/547216",
2723
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c00920f1-660f-4414-b063-b45df0b3e9ed/width=450/17809139.jpeg"
2724
  ],
 
 
 
 
 
 
 
2725
  "hamipan_XL_V1_0": [
2726
  " hamipan, panties under clothes / buruma / shorts",
2727
  "SDXL 1.0",
@@ -3065,6 +3247,13 @@
3065
  "https://civitai.com/models/127649",
3066
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/472ae530-3c9b-4021-a339-3d2495cb91e4/width=450/2004439.jpeg"
3067
  ],
 
 
 
 
 
 
 
3068
  "leafumbrella_XL_v1": [
3069
  "leaf umbrella",
3070
  "SDXL 1.0",
@@ -3527,6 +3716,13 @@
3527
  "https://civitai.com/models/528846",
3528
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/45144c15-de46-4eda-86dc-0c517d9c6302/width=450/16588439.jpeg"
3529
  ],
 
 
 
 
 
 
 
3530
  "paizuri_twistedbreasts_xl": [
3531
  "paizuri, breasts squeezed together",
3532
  "Pony",
@@ -3681,6 +3877,13 @@
3681
  "https://civitai.com/models/516752",
3682
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f9514beb-9851-427f-bccc-3642bb0df671/width=450/17934192.jpeg"
3683
  ],
 
 
 
 
 
 
 
3684
  "polaroid_Pony_v1": [
3685
  "polaroid",
3686
  "Pony",
@@ -3695,6 +3898,13 @@
3695
  "https://civitai.com/models/484886",
3696
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d68e5b7e-c08b-4b4b-95c0-58284a8f8c9e/width=450/14044412.jpeg"
3697
  ],
 
 
 
 
 
 
 
3698
  "pony_handy_fan_r": [
3699
  "handy_fan",
3700
  "Pony",
@@ -4206,6 +4416,13 @@
4206
  "https://civitai.com/models/552152",
4207
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9ee78490-d6c5-45c1-a1a0-92cb965faa10/width=450/18135129.jpeg"
4208
  ],
 
 
 
 
 
 
 
4209
  "sotohane_hairXL": [
4210
  "Straight Flipped Hair",
4211
  "Pony",
@@ -4255,6 +4472,13 @@
4255
  "https://civitai.com/models/512505",
4256
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b328f7b7-bf19-428f-b286-22bce17af107/width=450/15613770.jpeg"
4257
  ],
 
 
 
 
 
 
 
4258
  "squatting_cowgirl_xl": [
4259
  "Squatting Cowgirl Position / sex, hetero, girl on top",
4260
  "Pony",
@@ -4416,6 +4640,13 @@
4416
  "https://civitai.com/models/467448",
4417
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/45312b04-e66e-47e6-8b67-b236fc7b2146/width=450/13116744.jpeg"
4418
  ],
 
 
 
 
 
 
 
4419
  "tennis_uniform_pony_V1_0": [
4420
  "tennis uniform",
4421
  "Pony",
@@ -4528,6 +4759,13 @@
4528
  "https://civitai.com/models/414054",
4529
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/23af5066-db4e-4d91-8fd5-5ec2a8d83f96/width=450/10478541.jpeg"
4530
  ],
 
 
 
 
 
 
 
4531
  "track_uniform_Pony_V1_0": [
4532
  " jyojifuku, sport bra, r buruma, track uniform",
4533
  "Pony",
@@ -4584,6 +4822,20 @@
4584
  "https://civitai.com/models/292024",
4585
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/381c91b8-5f2d-4f6e-9416-fc76beab210b/width=450/7299766.jpeg"
4586
  ],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4587
  "under_the_table_blowjob": [
4588
  "under_the_table_blowjob",
4589
  "Pony",
@@ -4654,6 +4906,20 @@
4654
  "https://civitai.com/models/351303",
4655
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8e70bbad-23e7-4f85-9a82-7e6cce2ff6e4/width=450/14161992.jpeg"
4656
  ],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4657
  "vacuum_fellatio_xl": [
4658
  "vacuum fellatio / :>= , fellatio",
4659
  "Pony",
@@ -4696,6 +4962,13 @@
4696
  "https://civitai.com/models/531210",
4697
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a5ef2ced-8d4d-4924-9e53-e3fd10290450/width=450/16739255.jpeg"
4698
  ],
 
 
 
 
 
 
 
4699
  "washing_self_pony_v02a": [
4700
  "washing self / washing self, washing hair / washing self, washing body / washing self, washing arm / washing self, showering",
4701
  "Pony",
 
118
  "https://civitai.com/models/549390",
119
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/fd768f25-c146-4675-a516-2d123147aa2c/width=450/17954370.jpeg"
120
  ],
121
+ "1666312573750817505": [
122
+ "Oyakodon",
123
+ "Pony",
124
+ "Oyakodon model/prompt",
125
+ "https://civitai.com/models/565994",
126
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/66feca06-6a87-4975-9c76-29b1cc6fcc23/width=450/19026855.jpeg"
127
+ ],
128
  "2FingersSDXL_v03": [
129
  "fingering pussy",
130
  "SDXL 1.0",
 
139
  "https://civitai.com/models/482197",
140
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b819e24c-f2f4-45d2-aa19-c96b5e011bf0/width=450/13901350.jpeg"
141
  ],
142
+ "4555v2": [
143
+ "retrousse_tits / fortyfivefiftyfiveratio / 4555",
144
+ "Pony",
145
+ "45:55 Breasts",
146
+ "https://civitai.com/models/550245",
147
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/7e5d3281-7b7f-473b-95fd-88234c98a4d3/width=450/19100457.jpeg"
148
+ ],
149
  "4ssl3ssMXLP": [
150
  "4ssl3ssm, maid, solo, choker, miniskirt, / from behind, ass, assless, crop top, ",
151
  "Pony",
 
160
  "https://civitai.com/models/500116",
161
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6d8f4c41-1f98-417a-9892-4717e662b375/width=450/17608279.jpeg"
162
  ],
163
+ "7eleven_indoors_PONY_V1": [
164
+ "7eleven, scenery, indoors, box, tiles, shop, tile floor, cashier, ",
165
+ "Pony",
166
+ "\u30b3\u30f3\u30d3\u30cb\u306e\u5e97\u51857 PONY",
167
+ "https://civitai.com/models/562782",
168
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6851f9dc-6830-4953-aacb-5bbad26de292/width=450/18831154.jpeg"
169
+ ],
170
  "ALTXL_001_4": [
171
  "",
172
  "SDXL 1.0",
 
202
  "https://civitai.com/models/468265",
203
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ed4efb1e-c0f8-48e1-8c54-aea895206e56/width=450/14057458.jpeg"
204
  ],
205
+ "All_in_one__Random_Sex_Position-000007": [
206
+ "Sex, anime style, vaginal fluid, pussy, cock, semen, sperm, bedroom",
207
+ "Pony",
208
+ "All in one | Random Sex Position",
209
+ "https://civitai.com/models/561899",
210
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/39afcd9e-d9cf-4aa5-9828-acef15d04b38/width=450/18806445.jpeg"
211
+ ],
212
  "Anime_Figure_P1": [
213
  "figure,",
214
  "Pony",
 
678
  "https://civitai.com/models/541891",
679
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/57d1171a-c998-44dc-9d1e-3027b20054ca/width=450/18282956.jpeg"
680
  ],
681
+ "GodPussy4_Pony_v1": [
682
+ "godpussy4 / pussy / rear pussy / fingers / pale skin / closeup",
683
+ "Pony",
684
+ "God Pussy 4 - Pony",
685
+ "https://civitai.com/models/567625",
686
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c552da47-b1ea-4f91-8f89-5f6be49ec01b/width=450/19131520.jpeg"
687
+ ],
688
  "Group_(2)": [
689
  "gangbang",
690
  "Pony",
 
825
  "https://civitai.com/models/550733",
826
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d6cb4004-ec4f-4213-a710-1c8368c74f61/width=450/18040148.jpeg"
827
  ],
828
+ "InniePussy1_Pony_v2": [
829
+ "inniepussy1 / pussy / rear pussy / front pussy / cameltoe / fingers",
830
+ "Pony",
831
+ "Innie Pussy 1 - Pony",
832
+ "https://civitai.com/models/550733",
833
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/3940a8ee-9f53-400f-89a9-ab74ae6f7af0/width=450/18993521.jpeg"
834
+ ],
835
  "Insertion_Slider_alpha1_0_rank4_noxattn_last": [
836
  "",
837
  "Pony",
 
972
  "https://civitai.com/models/92173",
973
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/81a09452-ebd1-4dd0-8c13-591ea2ceb005/width=450/18460288.jpeg"
974
  ],
975
+ "MMR": [
976
+ "MMR",
977
+ "SDXL 1.0",
978
+ "\u5927\u773c\u5f71-\u53ef\u7231\u98ce/Large eyes/\u5927\u304d\u306a\u76ee/\ud070 \ub208\uc744",
979
+ "https://civitai.com/models/566542",
980
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e2daae6e-a9fb-43c5-b4ee-cfa264a6455d/width=450/19074383.jpeg"
981
+ ],
982
  "MS_PDXL_AfterSex_Lite": [
983
  "after sex, cum, lying, cumdrip, ass, on stomach, on back, fucked silly, sweat, cum pool, bukkake, trembling",
984
  "Pony",
 
1042
  "https://civitai.com/models/542306",
1043
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e5021a11-2059-4030-8a7c-8ce699a59398/width=450/17473348.jpeg"
1044
  ],
1045
+ "Minigirl_Onahole-000008": [
1046
+ "MGOnaholeposition / MGTopviewOnahole / MGLowviewOnahole / MGReverseOnaholeposition / MGSideviewOnahole",
1047
+ "Pony",
1048
+ "Minigirl Onahole",
1049
+ "https://civitai.com/models/567727",
1050
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8c0fd919-4559-423f-9f34-402df9ae8086/width=450/19139335.jpeg"
1051
+ ],
1052
  "Monkey_Costume_Pony": [
1053
  "monkey costume",
1054
  "Pony",
 
1441
  "https://civitai.com/models/543007",
1442
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/32bb611d-6843-4197-844e-d8ddc1aabf6e/width=450/18288434.jpeg"
1443
  ],
1444
+ "Standing_DP_SDXL": [
1445
+ " 1woman, vaginal, anal, suspended congress, 2males, 2penises, standing sex, carrying, carrying partner, suspended, double penetration, mmf_threesome, standing_double_penetration / <lora:Standing_DP_SDXL-v1:0.7> / explicit female nudity, explicity male nudity, / cum, semen, sweat, steam",
1446
+ "SDXL 1.0",
1447
+ "Standing_DP_XL",
1448
+ "https://civitai.com/models/536902",
1449
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a3ee368a-9369-49bf-9523-9adf30debb8b/width=450/17114333.jpeg"
1450
+ ],
1451
+ "Standing_DP_XL-000004": [
1452
+ "1woman, vaginal, anal, suspended congress, 2males, 2penises, standing sex, carrying, carrying partner, suspended, double penetration, mmf_threesome, standing_double_penetration / explicit female nudity, explicity male nudity, / cum, semen, sweat, steam / standingDP, standing_double_penetration, MFM, threesome, groupsex, / DAP, double_anal, double anal penetration / DVP, double_vaginal, double vaginal penetration",
1453
+ "Pony",
1454
+ "Standing_DP_XL",
1455
+ "https://civitai.com/models/536902",
1456
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/0dd666ca-763d-4626-bca7-ebdf39c18b4f/width=450/18916128.jpeg"
1457
+ ],
1458
+ "Standing_DP_XL-000009": [
1459
+ "1woman, vaginal, anal, suspended congress, 2males, 2penises, standing sex, carrying, carrying partner, suspended, double penetration, mmf_threesome, standing_double_penetration / explicit female nudity, explicity male nudity, / cum, semen, sweat, steam / standingDP, standing_double_penetration, MFM, threesome, groupsex, / DAP, double_anal, double anal penetration / DVP, double_vaginal, double vaginal penetration",
1460
+ "Pony",
1461
+ "Standing_DP_XL",
1462
+ "https://civitai.com/models/536902",
1463
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/55d739c6-be6d-48b2-aaad-260d8008c6e1/width=450/18900722.jpeg"
1464
+ ],
1465
  "Standing_Split_Sex_Position_LoRa__PonyXL": [
1466
  "standing split, sex, vaginal, penis, one leg up, full body",
1467
  "Pony",
 
1539
  "https://civitai.com/models/492792",
1540
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/910b50f3-7843-447b-ba1a-440803da2c9b/width=450/14758933.jpeg"
1541
  ],
1542
+ "Toaru_ASV4XL-EP10": [
1543
+ "toaru_as",
1544
+ "Pony",
1545
+ "\u3068\u3042\u308b\u79d1\u5b66\u306e\u8d85\u96fb\u78c1\u7832/Toaru Kagaku No Railgun Style Lora's - [PonyV6/AutismMixXL]",
1546
+ "https://civitai.com/models/563212",
1547
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/02536d33-fce2-4f1b-988e-a02517591fe2/width=450/18850029.jpeg"
1548
+ ],
1549
  "Tribadism_for_Pony": [
1550
  "tribadism / scissoring / tribbing / trib / vaginal rubbing / pussies grinding",
1551
  "Pony",
 
1595
  "https://civitai.com/models/421737",
1596
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/3b87142d-9566-4d54-b0c9-e87f44c96097/width=450/16498196.jpeg"
1597
  ],
1598
+ "V_over_mouth_Pose_XL": [
1599
+ "1woman, v_over_mouth, blush, detailed eyes, lips, smile, upper body, breasts, (v_over_mouth:1.4) / tongue_out , saliva, saliva_trail, naughty_face / cunnilingus_gesture / implied_yuri",
1600
+ "SDXL 1.0",
1601
+ "V_over_mouth (cunnilingus_gesture) Pose XL",
1602
+ "https://civitai.com/models/564261",
1603
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ea045c4c-8474-417b-bb8c-d2484ce8f449/width=450/18923519.jpeg"
1604
+ ],
1605
  "Vagina_Size_Slider_alpha1_0_rank4_noxattn_last": [
1606
  "",
1607
  "Pony",
 
1637
  "https://civitai.com/models/512695",
1638
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/09965214-1ce8-449e-a429-5dc5df8f629a/width=450/18246462.jpeg"
1639
  ],
1640
+ "XL__Stand_and_deliver_Press_on_to_bedtablewall-000009": [
1641
+ "(masterpiece), best quality, expressive eyes, perfect face, girl laying on bed, man standing, bedroom, mating press, girl leg up, man grab girl's legs, press on to the bed, sex, creampie, sperm, semen, cock, side view side pov, press on to the bed",
1642
+ "SDXL 1.0",
1643
+ "XL | Stand and deliver (Press on to bed/table/wall)",
1644
+ "https://civitai.com/models/564257",
1645
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d4f36d31-fed9-4f26-bf7f-b8f76b40eee1/width=450/18936869.jpeg"
1646
+ ],
1647
  "XL_crying_aqua(kohaku_delta)-000009": [
1648
  "open mouth,solo,tears,crying,blush,crying with eyes open",
1649
  "SDXL 1.0",
 
1791
  "https://civitai.com/models/528284",
1792
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4ab90a51-eeb2-4caa-b562-4ca7ef86c3eb/width=450/16543700.jpeg"
1793
  ],
1794
+ "_sdxl-redears-pony": [
1795
+ "redears",
1796
+ "Pony",
1797
+ "for PONY, Ears reddened with embarrassment (\u6065\u305a\u304b\u3057\u3055\u3067\u8033\u3092\u8d64\u304f\u67d3\u3081\u308b) LoRA",
1798
+ "https://civitai.com/models/568238",
1799
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ac1aba65-1729-4ccc-921d-ba9e277bcfc8/width=450/19167492.jpeg"
1800
+ ],
1801
  "_sdxl-sasayaki-pony": [
1802
  "sasayaki / sasayaki pov",
1803
  "Pony",
 
1889
  "https://civitai.com/models/526774",
1890
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b40d42c4-66df-4c6e-9351-2b0343007979/width=450/16455415.jpeg"
1891
  ],
1892
+ "armp1tt1ckl3": [
1893
+ "armp1tt1ckl3",
1894
+ "Pony",
1895
+ "Tickling Armpits Concept (PonyXL)",
1896
+ "https://civitai.com/models/564875",
1897
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/3be43300-e8ed-44c4-bc41-ef63b2fa9dba/width=450/18958575.jpeg"
1898
+ ],
1899
  "asanagi": [
1900
  "4s4n4g1",
1901
  "Pony",
 
2008
  "https://civitai.com/models/538301",
2009
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b800269a-ab18-4244-b1ac-cbb0df092bf4/width=450/17204111.jpeg"
2010
  ],
2011
+ "basketball_uniform_XL_V1_0": [
2012
+ "",
2013
+ "",
2014
+ "",
2015
+ "",
2016
+ ""
2017
+ ],
2018
  "basketball_uniform_pony_V1_0": [
2019
  " basketball uniform",
2020
  "Pony",
 
2190
  "https://civitai.com/models/540011",
2191
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/afccd8e4-5ac4-4f43-934a-b620a63f0079/width=450/17326206.jpeg"
2192
  ],
2193
+ "brushingteeth_XL_v1": [
2194
+ "brushing teeth",
2195
+ "SDXL 1.0",
2196
+ "brushing teeth / \u6b6f\u78e8\u304d/ \u6b6f\u30d6\u30e9\u30b7",
2197
+ "https://civitai.com/models/566082",
2198
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/7341d5f6-baaa-4c84-9980-44244439797f/width=450/19034748.jpeg"
2199
+ ],
2200
  "bukkake_pony_V1_0": [
2201
  "bukkake",
2202
  "Pony",
 
2246
  "https://civitai.com/models/461179",
2247
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6c60d797-4016-4c4f-a7f5-721c01a359ed/width=450/12808748.jpeg"
2248
  ],
2249
+ "butterfly_bikini_pony_V1_0": [
2250
+ "butterfly bikini / cupless / crotchless",
2251
+ "Pony",
2252
+ "\u30d0\u30bf\u30d5\u30e9\u30a4\u30d3\u30ad\u30cb/butterfly bikini",
2253
+ "https://civitai.com/models/566314",
2254
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b3453d48-d183-4c80-be38-83cce189b38a/width=450/19054439.jpeg"
2255
+ ],
2256
  "buttjob": [
2257
  "buttjob / buttjob over clothes / ass",
2258
  "Pony",
 
2309
  "https://civitai.com/models/476691",
2310
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e2c7f23f-fa78-4121-9ed7-37944c025ada/width=450/13846218.jpeg"
2311
  ],
2312
+ "charming_bulge_pony-v1_0": [
2313
+ "nsfw,from behind,ass focus,nude,close-up,top-down_bottom-up,from below,",
2314
+ "Pony",
2315
+ "charming bulge pony",
2316
+ "https://civitai.com/models/564399",
2317
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/fb5fe4ee-97fc-4223-8c00-f18561f00f72/width=450/18927698.jpeg"
2318
+ ],
2319
  "checkpoint-e94_s752": [
2320
  "cute, kawaii, cutecore, kawaiicore, cutegore, kawaiigore, colorful stars, pastel colors, hearts, rainbow, rainbow text",
2321
  "Pony",
 
2372
  "https://civitai.com/models/454079",
2373
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/98b7f672-8e8c-477f-9540-1ef7d2eb2a3b/width=450/14913037.jpeg"
2374
  ],
2375
+ "clothes_lift_pony_V1_0": [
2376
+ "clothes lift",
2377
+ "Pony",
2378
+ "\u305f\u304f\u3057\u4e0a\u3052/clothes lift",
2379
+ "https://civitai.com/models/561518",
2380
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/19f02dcf-f75f-4f7f-9345-1c815a7f6a0c/width=450/18750440.jpeg"
2381
+ ],
2382
  "clothes_removed": [
2383
  "clothes removed, no humans",
2384
  "Pony",
 
2484
  "https://civitai.com/models/510704",
2485
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/64d22d9f-95a1-4106-8f32-77a9b1efe7b7/width=450/15501640.jpeg"
2486
  ],
2487
+ "cum_donation_assistance": [
2488
+ "CUM DONATION ASSISTANCE / FELLATIO / TITS SEX / HANDJOB / FOOTJOB / AFTER VAGINAL",
2489
+ "Pony",
2490
+ "Cum Donate Assist",
2491
+ "https://civitai.com/models/558851",
2492
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/be443b03-ae4f-4dcf-a5ef-e19fa7130897/width=450/18818289.jpeg"
2493
+ ],
2494
  "cum_donation_assistance_": [
2495
  "CUM DONATION ASSISTANCE / FELLATIO / TITS SEX / HANDJOB / FOOTJOB / AFTER VAGINAL",
2496
  "Pony",
 
2575
  "https://civitai.com/models/26687",
2576
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f3ab0984-596f-4f4c-aa41-ebfb8fe6861a/width=450/9218028.jpeg"
2577
  ],
2578
+ "dildo_ride": [
2579
+ "ride dildo,",
2580
+ "Pony",
2581
+ "ride dildo",
2582
+ "https://civitai.com/models/562395",
2583
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c72b5eda-1fc7-415e-a0eb-9e47056568e8/width=450/18810858.jpeg"
2584
+ ],
2585
  "dissolving-xl-pony-v2-000008": [
2586
  "dissolving, disintegration",
2587
  "Pony",
 
2673
  "https://civitai.com/models/497840",
2674
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/889215a7-fa56-4b92-afa6-660734850028/width=450/14750809.jpeg"
2675
  ],
2676
+ "famima_indoors_PONY_V1": [
2677
+ "famima, scenery, indoors, japan, shop, shelf, real world location, cashier, monitor, tiles, tile floor, ",
2678
+ "Pony",
2679
+ "\u30b3\u30f3\u30d3\u30cb\u306e\u5e97\u5185F PONY",
2680
+ "https://civitai.com/models/562864",
2681
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8b75129f-9af1-458d-8a88-0eb816df00dc/width=450/18835386.jpeg"
2682
+ ],
2683
  "fanningself_XL_v1": [
2684
  "fanning self",
2685
  "SDXL 1.0",
 
2806
  "https://civitai.com/models/357976",
2807
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ead23075-e9ff-4378-b1b3-442b1abaef78/width=450/14593009.jpeg"
2808
  ],
2809
+ "girllikewipemouth_pony": [
2810
+ "(((cum on mouth))), ((wipe mouth, napkin on lips, hand on mouth, profile, squinting eyes, frown, head down)), crying, drooling, parted lips, fever, sad, leftovers, plate, table, glass cup, potted plant, tree, bokeh, foggy sky, sweating profusely, teardrop, open-air restaurant, outdoors, building, street, cloud, crowd, 1girl, cute, choker, cleavage, medium tits, sideboob, shy, blush, petite figure,",
2811
+ "Pony",
2812
+ "girl like wipe mouth",
2813
+ "https://civitai.com/models/563052",
2814
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e5d472be-192b-43a7-8044-b2030db40e22/width=450/19085878.jpeg"
2815
+ ],
2816
  "glansjob": [
2817
  "glansjob / pov / handjob",
2818
  "Pony",
 
2897
  "https://civitai.com/models/547216",
2898
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c00920f1-660f-4414-b063-b45df0b3e9ed/width=450/17809139.jpeg"
2899
  ],
2900
+ "hair_ribbon_XL_V1_0": [
2901
+ "hair ribbon",
2902
+ "SDXL 1.0",
2903
+ "\u30d8\u30a2\u30fc\u30ea\u30dc\u30f3/hair ribbon",
2904
+ "https://civitai.com/models/568857",
2905
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ed855025-54e5-4dae-bc62-bd18a546a993/width=450/19208208.jpeg"
2906
+ ],
2907
  "hamipan_XL_V1_0": [
2908
  " hamipan, panties under clothes / buruma / shorts",
2909
  "SDXL 1.0",
 
3247
  "https://civitai.com/models/127649",
3248
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/472ae530-3c9b-4021-a339-3d2495cb91e4/width=450/2004439.jpeg"
3249
  ],
3250
+ "lawson_indoors_PONY_V1": [
3251
+ "konbini, cashier, shop, scenery, food, shelf, indoors, convenience store, japanese text, japan, realistic background, Detailed Background, ",
3252
+ "Pony",
3253
+ "\u30b3\u30f3\u30d3\u30cb\u306e\u5e97\u5185L PONY",
3254
+ "https://civitai.com/models/562800",
3255
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/7d8047bb-e2e3-4e61-bfd9-36e13ecef008/width=450/18832543.jpeg"
3256
+ ],
3257
  "leafumbrella_XL_v1": [
3258
  "leaf umbrella",
3259
  "SDXL 1.0",
 
3716
  "https://civitai.com/models/528846",
3717
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/45144c15-de46-4eda-86dc-0c517d9c6302/width=450/16588439.jpeg"
3718
  ],
3719
+ "paizuri_invitation_v0_1-pony": [
3720
+ "paizuri invitation",
3721
+ "Pony",
3722
+ "Paizuri invitation",
3723
+ "https://civitai.com/models/565019",
3724
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/72e8ed29-6545-4988-8993-c60b14927be7/width=450/18967971.jpeg"
3725
+ ],
3726
  "paizuri_twistedbreasts_xl": [
3727
  "paizuri, breasts squeezed together",
3728
  "Pony",
 
3877
  "https://civitai.com/models/516752",
3878
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f9514beb-9851-427f-bccc-3642bb0df671/width=450/17934192.jpeg"
3879
  ],
3880
+ "pokemon_r1": [
3881
+ "pks, pokemon",
3882
+ "Pony",
3883
+ "Pokemon style",
3884
+ "https://civitai.com/models/563296",
3885
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1d5238ad-32d9-4ef7-818b-cda2abf94fcf/width=450/18869819.jpeg"
3886
+ ],
3887
  "polaroid_Pony_v1": [
3888
  "polaroid",
3889
  "Pony",
 
3898
  "https://civitai.com/models/484886",
3899
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d68e5b7e-c08b-4b4b-95c0-58284a8f8c9e/width=450/14044412.jpeg"
3900
  ],
3901
+ "ponyStyleToon_rev5": [
3902
+ "",
3903
+ "Pony",
3904
+ "Pony Style Toon Tweaker",
3905
+ "https://civitai.com/models/564365",
3906
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6ba18436-0ece-4aaa-bbd9-a2861375c64d/width=450/18924928.jpeg"
3907
+ ],
3908
  "pony_handy_fan_r": [
3909
  "handy_fan",
3910
  "Pony",
 
4416
  "https://civitai.com/models/552152",
4417
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9ee78490-d6c5-45c1-a1a0-92cb965faa10/width=450/18135129.jpeg"
4418
  ],
4419
+ "soccer_uniform_pony_V1_1": [
4420
+ "soccer uniform / soccer",
4421
+ "Pony",
4422
+ "\u30b5\u30c3\u30ab\u30fc\u30e6\u30cb\u30d5\u30a9\u30fc\u30e0/soccer uniform",
4423
+ "https://civitai.com/models/566800",
4424
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/7a626939-c616-4600-b534-cd6b419ca392/width=450/19095621.jpeg"
4425
+ ],
4426
  "sotohane_hairXL": [
4427
  "Straight Flipped Hair",
4428
  "Pony",
 
4472
  "https://civitai.com/models/512505",
4473
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b328f7b7-bf19-428f-b286-22bce17af107/width=450/15613770.jpeg"
4474
  ],
4475
+ "spread_under_clothes_v0_1-pony": [
4476
+ "spread pussy under clothes / spread anus under clothes",
4477
+ "Pony",
4478
+ "Spread pussy/anus under clothes",
4479
+ "https://civitai.com/models/565893",
4480
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/58cf4fd6-e56e-4543-9e90-a43c8a032d49/width=450/19020726.jpeg"
4481
+ ],
4482
  "squatting_cowgirl_xl": [
4483
  "Squatting Cowgirl Position / sex, hetero, girl on top",
4484
  "Pony",
 
4640
  "https://civitai.com/models/467448",
4641
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/45312b04-e66e-47e6-8b67-b236fc7b2146/width=450/13116744.jpeg"
4642
  ],
4643
+ "tennis_uniform_XL_V1_0": [
4644
+ "tennis uniform",
4645
+ "SDXL 1.0",
4646
+ "\u30c6\u30cb\u30b9\u30a6\u30a7\u30a2/tennis uniform",
4647
+ "https://civitai.com/models/557205",
4648
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/204726a2-e11b-48bc-837e-9fa6d9bf4e9a/width=450/18808222.jpeg"
4649
+ ],
4650
  "tennis_uniform_pony_V1_0": [
4651
  "tennis uniform",
4652
  "Pony",
 
4759
  "https://civitai.com/models/414054",
4760
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/23af5066-db4e-4d91-8fd5-5ec2a8d83f96/width=450/10478541.jpeg"
4761
  ],
4762
+ "towel_v0_1-pony": [
4763
+ "naked towel / open towel / towel over breasts",
4764
+ "Pony",
4765
+ "Towel (multiple concepts)",
4766
+ "https://civitai.com/models/566708",
4767
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/3949a2d5-84d3-42a6-8d26-13f666de056b/width=450/19089924.jpeg"
4768
+ ],
4769
  "track_uniform_Pony_V1_0": [
4770
  " jyojifuku, sport bra, r buruma, track uniform",
4771
  "Pony",
 
4822
  "https://civitai.com/models/292024",
4823
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/381c91b8-5f2d-4f6e-9416-fc76beab210b/width=450/7299766.jpeg"
4824
  ],
4825
+ "tyinghairtwintails_Pony_v1": [
4826
+ "tying hair,twintails",
4827
+ "Pony",
4828
+ "[SDXL&Pony] tying hair (twintails) / \u30c4\u30a4\u30f3\u30c6\u30fc\u30eb\u3092\u7d50\u3046",
4829
+ "https://civitai.com/models/563723",
4830
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c383ff00-2937-45fa-bc1c-d9d16c658db2/width=450/19021017.jpeg"
4831
+ ],
4832
+ "tyinghairtwintails_XL_v1": [
4833
+ "tying hair",
4834
+ "SDXL 1.0",
4835
+ "tying hair (twintails) / \u30c4\u30a4\u30f3\u30c6\u30fc\u30eb\u3092\u7d50\u3046",
4836
+ "https://civitai.com/models/563723",
4837
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1cdf9e3a-9412-4a37-aea6-01524c61f4ce/width=450/18879048.jpeg"
4838
+ ],
4839
  "under_the_table_blowjob": [
4840
  "under_the_table_blowjob",
4841
  "Pony",
 
4906
  "https://civitai.com/models/351303",
4907
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8e70bbad-23e7-4f85-9a82-7e6cce2ff6e4/width=450/14161992.jpeg"
4908
  ],
4909
+ "v_over_mouth_pose_XL": [
4910
+ "1woman, v_over_mouth, blush, detailed eyes, lips, smile, upper body, breasts, (cunnilingus_gesture:1.2) / v_over_mouth / implied_yuri / tongue_out , saliva, saliva_trail, naughty_face / tongue, smile,",
4911
+ "Pony",
4912
+ "V_over_mouth (cunnilingus_gesture) Pose XL",
4913
+ "https://civitai.com/models/564261",
4914
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/fa23889a-400e-439e-a65c-add0396557b7/width=450/19002105.jpeg"
4915
+ ],
4916
+ "v_over_mouth_pose_XL-000009": [
4917
+ "1woman, v_over_mouth, blush, detailed eyes, lips, smile, upper body, breasts, (cunnilingus_gesture:1.2) / v_over_mouth / implied_yuri / tongue_out , saliva, saliva_trail, naughty_face / tongue, smile,",
4918
+ "Pony",
4919
+ "V_over_mouth (cunnilingus_gesture) Pose XL",
4920
+ "https://civitai.com/models/564261",
4921
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/479fb094-c62a-4184-aaac-1ecef5b43d2e/width=450/19016611.jpeg"
4922
+ ],
4923
  "vacuum_fellatio_xl": [
4924
  "vacuum fellatio / :>= , fellatio",
4925
  "Pony",
 
4962
  "https://civitai.com/models/531210",
4963
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a5ef2ced-8d4d-4924-9e53-e3fd10290450/width=450/16739255.jpeg"
4964
  ],
4965
+ "warts_dildo_pony_V1_1": [
4966
+ "warts,dildo / vaginal",
4967
+ "Pony",
4968
+ "\u30a4\u30dc\u4ed8\u304d\u30c7\u30a3\u30eb\u30c9/warts dildo",
4969
+ "https://civitai.com/models/568528",
4970
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a34d7a39-3781-4f62-a3a2-f0ac07279d2a/width=450/19186851.jpeg"
4971
+ ],
4972
  "washing_self_pony_v02a": [
4973
  "washing self / washing self, washing hair / washing self, washing body / washing self, washing arm / washing self, showering",
4974
  "Pony",