File size: 78,540 Bytes
2ae50d5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 |
{
"modelspec.architecture": "stable-diffusion-xl-v1-base/lora",
"modelspec.date": "2024-10-27T20:17:36",
"modelspec.implementation": "https://github.com/Stability-AI/generative-models",
"modelspec.prediction_type": "epsilon",
"modelspec.resolution": "1024x1024",
"modelspec.sai_model_spec": "1.0.0",
"modelspec.title": "maliketh-v2s2000",
"ss_adaptive_noise_scale": null,
"ss_base_model_version": "sdxl_base_v1-0",
"ss_batch_size_per_device": 14,
"ss_bucket_info": {
"buckets": {
"0": {
"count": 1,
"resolution": [
704,
1408
]
},
"1": {
"count": 1,
"resolution": [
768,
1344
]
},
"10": {
"count": 2,
"resolution": [
1344,
768
]
},
"11": {
"count": 2,
"resolution": [
1408,
704
]
},
"2": {
"count": 10,
"resolution": [
832,
1216
]
},
"3": {
"count": 8,
"resolution": [
896,
1152
]
},
"4": {
"count": 3,
"resolution": [
960,
1088
]
},
"5": {
"count": 6,
"resolution": [
1024,
1024
]
},
"6": {
"count": 2,
"resolution": [
1088,
960
]
},
"7": {
"count": 4,
"resolution": [
1152,
896
]
},
"8": {
"count": 6,
"resolution": [
1216,
832
]
},
"9": {
"count": 2,
"resolution": [
1280,
768
]
}
},
"mean_img_ar_error": 0.028887500337283947
},
"ss_bucket_no_upscale": false,
"ss_cache_latents": true,
"ss_caption_dropout_every_n_epochs": 0,
"ss_caption_dropout_rate": 0.0,
"ss_caption_tag_dropout_rate": 0.0,
"ss_clip_skip": null,
"ss_color_aug": false,
"ss_dataset_dirs": {
"1_maliketh": {
"img_count": 47,
"n_repeats": 1
}
},
"ss_debiased_estimation": true,
"ss_enable_bucket": true,
"ss_epoch": 167,
"ss_face_crop_aug_range": null,
"ss_flip_aug": true,
"ss_full_fp16": false,
"ss_gradient_accumulation_steps": 1,
"ss_gradient_checkpointing": true,
"ss_huber_c": 0.1,
"ss_huber_schedule": "snr",
"ss_ip_noise_gamma": null,
"ss_ip_noise_gamma_random_strength": false,
"ss_keep_tokens": 1,
"ss_learning_rate": 0.0001,
"ss_loss_type": "l2",
"ss_lowram": false,
"ss_lr_scheduler": "cosine",
"ss_lr_warmup_steps": 0.0,
"ss_max_bucket_reso": 2048,
"ss_max_grad_norm": 1.0,
"ss_max_token_length": 225,
"ss_max_train_steps": 2000,
"ss_min_bucket_reso": 256,
"ss_min_snr_gamma": null,
"ss_mixed_precision": "bf16",
"ss_multires_noise_discount": 0.4,
"ss_multires_noise_iterations": 12,
"ss_network_alpha": 0.0625,
"ss_network_args": {
"algo": "lokr",
"bypass_mode": "False",
"conv_alpha": "1",
"conv_dim": "100000",
"decompose_both": "False",
"dora_wd": "True",
"dropout": 0.0,
"factor": "16",
"module_dropout": "0",
"preset": "full",
"rank_dropout": "0",
"rank_dropout_scale": "False",
"train_norm": "False",
"use_scalar": "False",
"use_tucker": "True"
},
"ss_network_dim": 100000,
"ss_network_dropout": 0.0,
"ss_network_module": "lycoris.kohya",
"ss_new_sd_model_hash": "67ab2fd8ec439a89b3fedb15cc65f54336af163c7eb5e4f2acc98f090a29b0b3",
"ss_noise_offset": null,
"ss_noise_offset_random_strength": false,
"ss_num_batches_per_epoch": 12,
"ss_num_epochs": 167,
"ss_num_reg_images": 0,
"ss_num_train_images": 47,
"ss_optimizer": "library.optimizers.clybius.Compass",
"ss_output_name": "maliketh-v2s2000",
"ss_prior_loss_weight": 1.0,
"ss_random_crop": false,
"ss_reg_dataset_dirs": {},
"ss_resolution": "(1024, 1024)",
"ss_scale_weight_norms": null,
"ss_sd_model_hash": "e577480d",
"ss_sd_model_name": "ponyDiffusionV6XL_v6StartWithThisOne.safetensors",
"ss_sd_scripts_commit_hash": "e5c9581969fcd500704a089da50ecc2e32a04708",
"ss_seed": 1728871242,
"ss_session_id": 4004721504,
"ss_shuffle_caption": true,
"ss_steps": 2000,
"ss_tag_frequency": {
"1_maliketh": {
"\" indicating a sense of dominance and submission. the background is minimalistic": 1,
"\" indicating the artist's name.": 1,
"\" indicating the creator's name.": 1,
"\" is visible in the bottom left corner": 1,
"\" is visible in the bottom left corner.": 2,
"\" is visible in the lower left corner": 1,
"\" is visible in the top left corner": 1,
"\" is visible in the top right corner.": 1,
"\" is written in white": 1,
"\" suggesting this is a social media post. surrounding the lion are numerous heart shapes in different sizes and colors": 1,
"\"anonos": 1,
"\"art by kaito": 1,
"\"i can't take any more...\" indicating a state of distress or exhaustion. the background is plain white": 1,
"\"l4g7005": 1,
"\"malikerth": 1,
"\"maliketh-hit-tweet": 1,
"\"shibui patreon": 1,
"\"shimhao": 1,
"\"tarnished thou... wouldst give me one more... fight?\" in a stylized": 1,
"\"what a nice view... give me my chain back": 1,
"\"wtff": 1,
"a defined chest": 1,
"a humanoid creature with a lion's head": 1,
"a large": 1,
"a muscular": 1,
"a muscular build": 1,
"abs": 14,
"abstract background. the creature has a muscular physique": 1,
"abstract blend of colors": 1,
"abstract gradient of light gray": 1,
"abstract lines and a soft": 1,
"abstract mix of earthy tones": 1,
"abstract pattern that does not detract from the central figure. the overall style of the drawing is highly detailed and polished": 1,
"abstracted setting with indistinct shapes that could be interpreted as walls or structures. in the lower panel": 1,
"action pose. the background is a solid": 1,
"action-packed pose and the dramatic use of light and shadow.": 1,
"action-packed pose. the creature has a muscular": 1,
"action-packed scene with a male character in a fantasy setting. the character": 1,
"adding a bold and explicit element to the artwork. the background is a simple": 1,
"adding a dramatic element to the scene. she is depicted mid-action": 1,
"adding a dynamic and ethereal quality to the image. the character's chest is broad and defined": 1,
"adding a humorous element to the image.": 1,
"adding a narrative element to the scene. the overall color palette is dominated by cool tones of gray and white": 1,
"adding a regal and powerful aura. the character's left hand holds a large": 1,
"adding a sense of majesty and otherworldliness to the image. the creature's eyes are hidden behind the helmet": 1,
"adding a sense of motion and danger. red and gold energy or flames emanate from the blade": 1,
"adding a sense of motion and softness to the otherwise rigid figure. the creature has a pair of large": 1,
"adding a sense of movement and vitality to the image. the texture of the fur is meticulously rendered": 1,
"adding a sense of mystery and intrigue. the character's expression is one of intense pleasure": 1,
"adding a sense of otherworldly mystique. the creature's skin is a light grey": 1,
"adding a sense of power and intensity to the scene. the background is a gradient of warm": 1,
"adding a sensual and aggressive undertone to the image. the overall style of the artwork is highly detailed": 1,
"adding a touch of elegance and formality to the otherwise chaotic scene. the bottom left corner of the image features the signature \"malketh": 1,
"adding a touch of elegance to the otherwise provocative attire. the background is dark and shadowy": 1,
"adding a whimsical or affectionate touch to the otherwise intimidating image. the background is a solid": 1,
"adding a whimsical touch. the bottom of the image has the text \"a hit tweet\" in a playful": 1,
"adding an eerie": 1,
"adding an element of intensity and drama to the scene. the overall color palette is dominated by earthy tones": 1,
"adding to its fierce appearance. the warrior is equipped with a massive": 1,
"adding to its intimidating appearance. the creature's left arm is adorned with a brown": 1,
"adding to its menacing appearance. its claws are sharp and detailed": 1,
"adding to its menacing appearance. the armor is intricate": 1,
"adding to its menacing appearance. the creature's body is positioned in a dynamic pose": 1,
"adding to its mysterious aura. it is lying on its side on a red background": 1,
"adding to its threatening demeanor. the background features a stone wall with a medieval": 1,
"adding to the aggressive aura. the creature is wearing only a pair of light blue": 1,
"adding to the ambiance. the text in the image reads": 1,
"adding to the character's imposing and otherworldly appearance. the character is mid-leap": 1,
"adding to the character's sense of readiness for battle. the background is a solid": 1,
"adding to the dynamic and powerful appearance. the wolf warrior is depicted in a squatting position": 1,
"adding to the explicit nature of the image. the lighting in the image is soft and diffused": 1,
"adding to the explicit nature of the scene. both characters are wearing black and gold wristbands": 1,
"adding to the fantastical and otherworldly atmosphere. the image is rich in detail": 1,
"adding to the gritty": 1,
"adding to the intense": 1,
"adding to the macabre and intense mood of the scene. the overall color palette is dominated by dark blues": 1,
"adding to the overall texture of the image. the character's pose is dynamic": 1,
"adding to the playful": 1,
"adding to the rugged": 1,
"adding to the sense of danger and power. the overall composition is highly dynamic": 1,
"adding to the sense of motion and intensity. red": 1,
"adding to the sense of movement and chaos. the image is highly detailed": 1,
"adding to the sense of mystery and danger. he holds a large": 1,
"adorned in elaborate armor. he wears a helmet with a menacing": 1,
"adorned in elaborate armor. the creature has a light gray fur coat with a muscular build": 1,
"adorned with a gauntlet": 1,
"after sex": 1,
"aggressive pose": 1,
"aggressive stance": 1,
"all fours": 2,
"allowing light to filter in": 1,
"almost acrobatic pose": 1,
"almost apocalyptic atmosphere. the ground beneath the figure is obscured by the smoke": 1,
"almost armor-like helmet": 1,
"almost black": 1,
"almost black markings on the arms": 1,
"almost blissful expression on its face": 1,
"almost demonic appearance with sharp": 1,
"almost demonic face. the helmet is black with gold accents and intricate designs": 1,
"almost ethereal manner": 1,
"almost ethereal pink. the mane cascades down its back and around its head": 1,
"almost ethereal quality of the smoke. the artist's signature": 1,
"almost ghostly white": 1,
"almost like a cloud of smoke or energy. the creature's eyes are hidden behind the helmet": 1,
"almost menacing look. it wears dark gray": 1,
"almost otherworldly atmosphere. the warrior's long": 1,
"almost predatory expression with sharp teeth visible": 1,
"almost translucent": 1,
"almost translucent gray": 1,
"almost translucent skin. the armor is intricately designed with gold accents and intricate patterns": 1,
"almost velvety texture. its physique is muscular and voluptuous": 1,
"almost white": 1,
"along with a copyright statement. the overall style is dark and intense": 1,
"also adorned with gold designs. the submissive character has white fur and a small": 1,
"also adorned with gold details. the background is a chaotic": 1,
"anal": 1,
"ancient atmosphere of the cave. the background is blurred": 1,
"ancient-looking room with stone walls and columns": 1,
"and a chain is attached to a ring around the neck": 1,
"and a large": 1,
"and a snarling expression. the creature's eyes are not visible in this image. the creature's body is adorned with intricate": 1,
"and a visible erection. the background is minimal": 1,
"and abs. the fur is predominantly light beige with darker": 1,
"and adorned with small feathers and ribbons. the character is depicted in a dynamic": 1,
"and androgynous warrior with a blend of human and equine features. the character has a muscular": 1,
"and appears to be in distress": 1,
"and blacks": 1,
"and chest. the armor is detailed with intricate": 1,
"and covered in a layer of fur. the creature's face is elongated with sharp": 1,
"and dark": 1,
"and detailed penis": 1,
"and dragon-like wings that are tucked close to their bodies. the creature on the left is depicted squatting on its hind legs": 1,
"and ends just above the tail. the character is dressed in a black and gold armor-like outfit that covers the arms": 1,
"and explicit erotic comic-style illustration featuring two anthropomorphic characters in a sexual scenario. the image is divided into two panels. in the upper panel": 1,
"and face. the face is partially obscured by a dark": 1,
"and forearms": 1,
"and glowing red eyes that seem to pierce through the smoke. the creature's mane is wild and flowing": 1,
"and gold": 1,
"and he has a chain mail covering his chest and arms. the warrior holds a large": 1,
"and he wears a dark": 1,
"and her long": 1,
"and his face is partially obscured by a dark": 1,
"and is covered in dark grey fur. their skin is a light grey tone": 1,
"and it appears to be resting on its hands and knees. the creature on the right is kneeling": 1,
"and it has a fierce": 1,
"and it has a long": 1,
"and it has sharp claws and a menacing expression. the creature is positioned over a smaller": 1,
"and its arms are bent at the elbows": 1,
"and its blade glowing with an intense red light. his right hand is gripping the neck of a smaller": 1,
"and its face is partially obscured by its hair": 1,
"and its hands are clawed": 1,
"and its mouth is open in a roar. it is armored in dark": 1,
"and its tongue is visible": 1,
"and legs": 2,
"and legs. the armor has a sleek": 1,
"and legs. the head is adorned with a dark": 1,
"and light blue hair. the humanoid is dressed in a grey": 1,
"and long": 1,
"and mouth open in a moan of pleasure. the background features crumbling stone walls and columns": 1,
"and otherworldly beauty.": 1,
"and saliva dripping from its mouth": 1,
"and sharp": 1,
"and she has long": 1,
"and shin guards. the wolf's fur flows wildly": 1,
"and shoulders": 1,
"and slightly tousled white hair that cascades down its back and sides. its face is a mix of human and beast features": 1,
"and tail": 1,
"and the character has a fierce expression with sharp teeth visible. the character's long": 1,
"and the character's left arm is adorned with a large": 1,
"and the creature has long": 1,
"and the dominant one's hand rests possessively on the submissive's hip. the character on the right is kneeling": 1,
"and the fur on the character's body is depicted with soft": 1,
"and the mystical elements surrounding them.": 1,
"and their face is partially obscured by the helmet's visor. the character is equipped with a large": 1,
"and they are depicted with a stern expression": 1,
"and they are in a seated position": 1,
"and they are positioned between the wolf's legs": 1,
"and they are wearing a set of ornate": 1,
"and they have a prominent": 1,
"and they have long": 1,
"and they have pointed ears. the character's legs are adorned with black": 1,
"and they wear dark": 1,
"and toned arms. it is depicted with its mouth open": 1,
"and wears a light green trench coat that is open": 1,
"and white": 1,
"and white dominating the image": 1,
"and whites": 1,
"angular designs": 1,
"angular details": 1,
"angular features and glowing red eyes. the character's expression is fierce": 1,
"angular features with a fierce expression. it has a long": 1,
"angular features. it wears ornate": 1,
"angular features. the creature's tail is long and bushy": 1,
"angular helmet-like headpiece that extends over the eyes": 1,
"angular lines and has a metallic sheen": 1,
"angular patterns and a metallic sheen": 1,
"animal ears": 5,
"animal hands": 1,
"animal penis": 2,
"anime-influenced art style. the image features a humanoid creature with a mix of human and animalistic features": 1,
"anime-inspired art style. it depicts two anthropomorphic characters in a medieval fantasy setting. the character in the foreground is a white-furred": 1,
"anime-inspired art style. the image features a character lying on their back with their legs raised": 1,
"anthropomorphic (furry) artwork featuring two wolf-like characters engaged in an explicit sexual act. the dominant character is a muscular": 1,
"anthropomorphic creature set against a solid red background. the creature appears to be a hybrid of a wolf and a warrior": 1,
"anthropomorphic creature with a blend of human and animal characteristics. the creature is depicted in a crouching": 1,
"anthropomorphic creature with a blend of human and animal characteristics. the figure is depicted in a dynamic pose": 1,
"anthropomorphic creature with a mix of human and animal characteristics. the creature has a humanoid body with a muscular build and is adorned in elaborate": 1,
"anthropomorphic creature with a mix of human and animalistic features. the character": 1,
"anthropomorphic female character with a blend of human and animal features. she has a muscular": 1,
"anthropomorphic physique with a light greenish-grey fur covering its body. it is depicted from the waist up": 1,
"anthropomorphic wolf character in a fantasy warrior pose. the character has a white fur coat with a dark": 1,
"anthropomorphic wolf character set against a vibrant red background. the character": 1,
"anthropomorphic wolf warrior in a dynamic": 1,
"anthropomorphic wolf-like character dressed in elaborate medieval armor. the character has a robust physique": 1,
"anthropomorphic wolf-like character in a dynamic pose. the character stands with its left leg bent forward and its right leg bent backward": 1,
"anthropomorphic wolf-like creature in a dynamic": 1,
"anus": 6,
"arm support": 2,
"armor": 5,
"armored breastplate and pauldrons. the armor is detailed with intricate gold designs and red accents. the character's facial features are wolf-like": 1,
"armored chest plate with gold trim. his eyes are sharp and piercing": 1,
"armored gear that appears to be made of leather and metal. the armor is detailed with intricate designs and chains": 1,
"armored glove on its right arm": 1,
"armored gloves and boots. the character's eyes are obscured by the helmet": 1,
"armored helmet with a visor that obscures its face. the figure has a menacing": 1,
"armored helmet with intricate gold designs": 1,
"armored warrior in a dramatic": 1,
"arms": 4,
"arms above head": 1,
"artist name": 6,
"as if about to launch into a powerful attack or leap. the overall style of the artwork is highly detailed and realistic": 1,
"as indicated by a red exclamation mark above its head and a wide-open mouth showing shock or fear. the humanoid's hands are raised defensively": 1,
"ass up": 1,
"athletic build with prominent": 1,
"balls": 21,
"barazoku": 8,
"bare pectorals": 1,
"bared fangs": 1,
"battle-filled environment. the overall style of the artwork is highly detailed and realistic": 1,
"beard": 2,
"bending forward as if stretching. its wings are partially spread": 1,
"big balls": 1,
"big breasts": 3,
"big penis": 3,
"black": 2,
"black and gold armor that covers most of their body": 1,
"black and gold armor that covers their upper body": 1,
"black armor": 1,
"black background": 1,
"black border": 1,
"black fur": 1,
"black hair": 1,
"black leather outfit that clings to their form": 1,
"black nails": 1,
"black skin": 2,
"blending into the fiery background": 1,
"blending seamlessly into the swirling smoke and flames that surround it. the background is a tumultuous mix of dark": 1,
"blindfold": 1,
"blood": 3,
"blues": 1,
"blur (disambiguation)": 1,
"blurred background": 1,
"blush": 4,
"body fur": 4,
"border": 1,
"bound": 1,
"breastplate": 5,
"breastplates": 1,
"breasts apart": 1,
"bright pink": 1,
"bright red": 1,
"brown hair": 1,
"bulge": 2,
"but its large": 1,
"but its sharp teeth and fierce expression are visible. the creature's eyes are glowing white": 1,
"but its tongue is visible": 1,
"but leaving her torso and legs exposed. the character is kneeling on a stone floor": 1,
"but the focus is on the human male's face": 1,
"but they are wearing a black helmet with a visor that covers their eyes": 1,
"butt": 8,
"butt focus": 1,
"by twitter username": 1,
"camel toe": 1,
"candle": 3,
"cape": 1,
"capturing a moment of intense action and conflict. the overall style is a blend of fantasy and action": 1,
"capturing a moment of intense battle readiness. the image is rich in texture and depth": 1,
"capturing the softness and thickness of the animal's coat. the overall style of the artwork is highly detailed and realistic": 1,
"casting a warm": 1,
"casting an eerie glow. the dominant figure is a muscular": 1,
"casting an eerie glow. the walls and floor are made of rough": 1,
"casting soft shadows and highlighting the contours of her body. the artist has used a smooth": 1,
"cave-like environment with a dim": 1,
"cave-like setting. the creature has a muscular build with a pronounced": 1,
"cavernous floor": 1,
"chain": 1,
"chained": 2,
"chainmail-like armor that covers their chest and arms": 1,
"chaotic environment. the warrior's face is fierce": 1,
"chest": 3,
"circular emblem on the back of the hand. the other arm is bent": 1,
"clad in dark": 1,
"claw-like fingers": 1,
"clawed feet": 1,
"clawed hands resting on its chest": 1,
"claws": 10,
"clenched teeth": 3,
"clitoral hood": 1,
"clitoris": 1,
"cloudy atmosphere": 1,
"clutching a large": 1,
"coat": 1,
"colored nipples": 1,
"colored sclera": 1,
"colored skin": 6,
"comic": 1,
"confident strokes that convey a sense of movement and power. the overall composition suggests a warrior or a guardian figure": 1,
"consisting of a black": 1,
"containing the text": 1,
"contrasting sharply with the dark blue armor. its eyes are red": 1,
"contrasting sharply with the red background. its head is adorned with a menacing": 1,
"contrasting with the creature's soft": 1,
"contrasting with the rougher": 1,
"contrasting with the soft": 1,
"contrasting with the softness of the fur. malikerth holds a large": 1,
"contributing to the dark": 1,
"contributing to the overall dark and intense mood of the scene. the textures and shading in the drawing are smooth": 1,
"contributing to the overall erotic nature of the image. the wolf's head is adorned with intricate": 1,
"contributing to the sense of destruction. the lower right corner of the image features a skull-like face": 1,
"covered eyes": 3,
"covered in a fluffy white fur. it wears a black and gold armor-like garment that covers its shoulders and upper arms": 1,
"covered in dark": 1,
"covered in dark blue": 1,
"covered in dark grey armor with golden highlights": 1,
"covering crotch": 1,
"covering her arms and shoulders": 1,
"created by artist wizzikt. the image features an anthropomorphic": 1,
"creating a contrast that highlights the character's vivid": 1,
"creating a dramatic and intense atmosphere. the image is detailed with shading and highlights": 1,
"creating a dynamic composition. the character has light grayish-white hair": 1,
"creating a rich": 1,
"creating a sense of depth and shadow.": 1,
"creating a sense of movement and agility. the background is a solid black": 1,
"creating a sense of movement and depth. the color palette is primarily black": 1,
"creating a sense of movement and energy. the warrior's right hand": 1,
"creating a sense of urgency and intimacy. the overall mood is one of raw": 1,
"creating a stark contrast against the dark backdrop.": 1,
"creating a striking contrast against the dark background. the character is positioned in the foreground": 1,
"creating a unique and imaginative character.": 1,
"creating a warm": 1,
"creating a warm and intimate atmosphere. the overall color palette is muted": 1,
"creating an intense": 1,
"crouching": 5,
"crouching with one arm raised": 1,
"crouching with one knee bent and the other leg extended": 1,
"crumbling surroundings. the artist's name": 1,
"cum": 4,
"cum in ass": 1,
"cum on body": 1,
"cum on self": 1,
"curled hair": 1,
"curvaceous rear. the creature's head is adorned with a dark": 1,
"curved sword with a golden hilt": 1,
"curved sword with a golden hilt and a dark": 1,
"dangerous environment": 1,
"dark": 2,
"dark armor that contrasts with her pale": 1,
"dark armor that glistens with a metallic sheen. the armor is intricate": 1,
"dark armor with gold accents": 1,
"dark blue sword in its left hand": 1,
"dark fantasy art style. the central figure is a menacing": 1,
"dark nipples": 2,
"dark skin": 1,
"dark-colored sword with a golden hilt. his left arm is bent at the elbow": 1,
"decorative patterns. the armor covers the creature's shoulders": 1,
"deep red with subtle texture": 1,
"depicting a humanoid creature with a wolf-like appearance. the creature": 1,
"depicting an anthropomorphic lion character in a playful": 1,
"depicting an anthropomorphic wolf character in a highly detailed and erotic scene. the character is a muscular male wolf with a white and grey fur coat": 1,
"detailed blade and a handle with intricate carvings. the creature's body is covered in fur": 1,
"detailed image that is both visually striking and emotionally intense.": 1,
"detailed plates with elaborate designs and patterns. the armor covers their torso": 1,
"determined expression. its fur is primarily dark gray": 1,
"determined expression. the background is a swirling": 1,
"determined expression. the creature is equipped with a large": 1,
"determined expression. they wear a set of intricate": 1,
"diagonal striped pattern": 1,
"digital art style that emphasizes texture and depth.": 1,
"digital artwork depicting an anthropomorphic": 1,
"displaying sharp": 1,
"down the back": 1,
"dragon-like creatures in various poses. the style is semi-realistic with soft": 1,
"dramatic pose. the creature has a muscular": 1,
"dungeon-like atmosphere": 1,
"dynamic pose. the character is a humanoid creature with a wolf-like appearance": 1,
"dynamic poses.": 1,
"earthy brown": 1,
"ejaculation": 1,
"embers": 1,
"emphasizing a fierce demeanor. the character's mane is long and flows dramatically": 1,
"emphasizing her allure. the background is a dimly lit": 1,
"emphasizing his muscular physique. his broad shoulders and defined abs are prominently displayed": 1,
"emphasizing its strength and agility. its genitals are prominently displayed": 1,
"emphasizing the character's muscular physique and the texture of their clothing and hair. the overall mood of the image is intense and dramatic": 1,
"emphasizing the character's strength and presence.": 1,
"emphasizing the creature in the foreground. the overall color palette is muted": 1,
"emphasizing the creature's imposing presence and the dramatic nature of the scene.": 1,
"emphasizing the creature's menacing and powerful presence.": 1,
"emphasizing the creature's rugged texture and the sharpness of its weapons. the overall style of the artwork is reminiscent of fantasy or action anime": 1,
"emphasizing the detailed linework of the creature. the sketch style is loose and dynamic": 1,
"emphasizing the erotic theme. the background is minimalistic and plain": 1,
"emphasizing the ruggedness of the environment. the overall color palette is dominated by shades of brown": 1,
"emphasizing the textures of the armor and the fur. the overall mood is intense and erotic": 1,
"emphasizing their physique. the character's face is not visible": 1,
"enhanced by the stark contrast between the characters' colors and the dark": 1,
"enhancing the intensity of the scene. the wolf has a robust": 1,
"enhancing the sense of a fantasy": 1,
"enhancing the sense of energy and movement": 1,
"ensuring the focus remains on the creature. the overall style of the drawing is detailed and realistic": 1,
"ensuring the focus remains on the creature. the overall style of the illustration is highly detailed and realistic": 1,
"ensuring the focus remains on the creature. the overall tone of the image is intense and dramatic": 1,
"erect": 3,
"erect penis": 2,
"erect penis and testicles": 1,
"erect penis is depicted. the creature is lying on its back": 1,
"erect penis visible through the armor. the background is a muted": 1,
"erect penis. the background features a swirling": 1,
"erect penis. the character's skin is a pale": 1,
"erect penis. the skin is a dark gray with a smooth texture": 1,
"erection": 16,
"ethereal mix of red and gold hues": 1,
"ethereal white mane that cascades down": 1,
"excessive cum": 1,
"executed with a high level of detail and realism.": 1,
"expressive eyes and open mouth are visible. the background is again minimal": 1,
"extending from its hands and feet. the creature is in a dynamic": 1,
"extending off the stone slab and adding to its overall imposing presence. the creature's legs are thick and muscular": 1,
"eyes closed": 2,
"facial hair": 2,
"facing away from the viewer. its tail is raised and its back is arched": 1,
"fanged teeth visible. the wolf-like character is depicted in a dynamic pose": 1,
"fangs": 5,
"fantastical setting.": 1,
"fantasy aesthetic. the armor covers its upper body": 1,
"fantasy ambiance. the overall style of the artwork is highly detailed and polished": 1,
"fantasy creature in an action pose. the creature": 1,
"fantasy-themed character in mid-action. the character is a muscular": 1,
"fantasy-themed scene. the central figure is a large": 1,
"featuring a fantastical creature with anthropomorphic characteristics. the creature stands on all fours": 1,
"featuring a gray": 1,
"featuring a large": 1,
"featuring an anthropomorphic wolf character with a muscular build and exaggerated features. the character has a white fur coat and a long": 1,
"featuring intricate designs and patterns. the character's face is partially obscured by a helmet adorned with sharp": 1,
"featuring long": 1,
"fellatio": 1,
"fetishistic object they are holding.": 1,
"fiery abyss of deep reds and blacks": 1,
"fiery background creating a sense of movement and chaos. the artwork combines elements of fantasy and medieval themes": 1,
"fighting pose": 1,
"filled with various elements. in the top left corner": 1,
"fingernails": 1,
"fingers touching his lips": 1,
"fire": 2,
"flaccid": 2,
"flickering light": 1,
"flickering light coming from what appears to be a fire or torches": 1,
"floating cloud with a face is also present": 1,
"floating hair": 1,
"flowing": 3,
"flowing behind them in a chaotic manner": 1,
"flowing hair": 1,
"flowing hair and wears a dark": 1,
"flowing hair is a mix of dark and light shades": 1,
"flowing hair that resembles a mane": 1,
"flowing mane": 1,
"flowing mane of fur is light beige and extends from the back of the head": 1,
"flowing mane of hair that cascades down its back. the creature's eyes are large and expressive": 1,
"flowing mane of silver hair that cascades down its back. the creature's eyes are red with a glowing effect": 1,
"flowing mane of white hair that cascades down its back. its eyes are fierce and glowing red": 1,
"flowing mane of white hair that cascades down the character's back": 1,
"flowing mane of white hair. he is adorned with a dark": 1,
"flowing mane that extends outwards in a dramatic": 1,
"flowing white hair cascades down her back": 1,
"flowing white hair cascades down the character's back": 1,
"flowing white hair that cascades down its back": 1,
"flowing white hair that cascades down their back. they are wearing a black": 1,
"flowing white hair. the creature's eyes are fierce and glowing": 1,
"fluffy": 1,
"fluffy fur of the wolf. the image is signed \"deadagor\" in the bottom left corner": 1,
"fluffy fur. the character is seated on a wooden floor with a stone wall in the background": 1,
"fluffy strokes. the image is signed by the artist \"starky socks\" in the bottom right corner": 1,
"fluffy tail and muscular legs. the character's buttocks are prominently displayed": 1,
"focusing attention on the creatures themselves. the overall mood of the image is erotic and playful": 1,
"forcing it to perform oral sex on a large": 1,
"forearms": 1,
"foreboding clouds and flashes of lightning. red splashes of paint and splatters of blood add to the dramatic atmosphere. large": 1,
"foreskin": 1,
"form-fitting armor that emphasizes their muscular physique. the armor is intricately detailed with sharp": 1,
"form-fitting bodysuit. the character's face is obscured by a black mask with a mouth open in a snarl": 1,
"form-fitting suit with a white undershirt": 1,
"from behind (disambiguation)": 1,
"from side": 2,
"full armor": 4,
"full-length portrait": 7,
"furry": 34,
"furry male": 31,
"furry patch covering its groin area. the creature's head is adorned with a dark": 1,
"furry texture. the background is a simple": 1,
"furry with furry": 3,
"furry with non-furry": 1,
"gauntlets": 7,
"giving it a dreamy and ethereal quality. the characters possess both human and animalistic features": 1,
"giving it a mechanical or futuristic look. the stone slab it lies on is rough and uneven": 1,
"giving it a medieval": 1,
"giving it a menacing": 1,
"giving it a menacing appearance. the helmet also has a long": 1,
"giving it a menacing appearance. the wolf's physique is well-defined": 1,
"giving it a mysterious and intimidating appearance. long": 1,
"giving it a poised": 1,
"giving it a regal and imposing appearance. the creature has a fierce expression": 1,
"giving it a sinister and imposing appearance. the warrior's face is obscured by a helmet with intricate": 1,
"giving it a warrior-like appearance. its head is covered by a helmet that resembles a bird's beak": 1,
"giving it an intense": 1,
"giving the image a dynamic and energetic feel. the character's movements are fluid and dynamic": 1,
"giving the image a sensual and dreamy atmosphere. the artist's signature": 1,
"giving the impression of a shattered or broken world. the creature's legs are spread apart": 1,
"giving the impression of movement and agility. the overall style of the illustration is highly detailed and realistic": 1,
"giving the impression of speed and movement. the character's eyes are intense and focused": 1,
"giving them a mysterious appearance. in the foreground": 1,
"glistening skin": 1,
"glossy fur. they are adorned in ornate": 1,
"glowing": 4,
"glowing aura emanating from the blade": 1,
"glowing eyes": 1,
"glowing light that highlights the character's form and the textures of his fur and armor.": 1,
"glowing orb. the background is a chaotic": 1,
"gold": 1,
"gold patterns that add a sense of sophistication and strength to the design. the background is a simple": 1,
"gold-colored armor that covers its arms and legs": 1,
"golden armor details. the creature's eyes are intense and focused": 1,
"golden armor that appears to be made of intricate": 1,
"golden armor that covers its upper body": 1,
"golden armor. the character's tail": 1,
"golden border": 1,
"golden gauntlet. the background is a dark": 1,
"golden hues": 1,
"gradient pink-to-white color scheme": 1,
"gray fur": 1,
"gray tone. the style is highly detailed": 1,
"gray-skinned": 2,
"grayish tone": 1,
"greaves": 1,
"grey": 2,
"grey background": 1,
"grey fur": 7,
"grey hair": 7,
"grey skin": 3,
"greyscale": 1,
"gripping a large": 1,
"gripping an object that appears to be a small": 1,
"groin": 1,
"hand behind back": 1,
"hand on another's head": 1,
"hands behind back": 2,
"hands on hips": 1,
"handwritten font": 2,
"hanging out in a submissive gesture. in the background": 1,
"has a muscular": 1,
"has a muscular build with dark fur covering most of its body. it wears elaborate": 1,
"heart background": 1,
"heart censor": 1,
"heart symbol": 6,
"helmet": 25,
"helmet-like structure with sharp": 1,
"highly detailed": 2,
"holding (disambiguation)": 16,
"holding a chain that is being pulled by the dominant character. the background is minimalistic and white": 1,
"holding a large": 3,
"holding a weapon that looks like a sword or dagger with a bloodied blade": 1,
"holding gun": 1,
"holding sword": 13,
"holding weapon": 2,
"hooves": 2,
"horn": 9,
"horn-like helmet. its eyes are obscured by the helmet": 1,
"horn-like protrusion and a voluminous": 1,
"horned helmet": 1,
"huge breasts": 4,
"huge penis": 1,
"humanoid beast with a wolf-like head": 1,
"humanoid body covered in thick": 1,
"humanoid body with a long": 1,
"humanoid creature with a large": 1,
"humanoid creature with a mix of animal and demonic features. the creature has a muscular": 1,
"humanoid creature with a muscular build and large breasts": 1,
"humanoid figure who is kneeling before him": 1,
"humanoid figure with a dark complexion and a fierce expression": 1,
"humanoid figure with a wolf-like head and clawed hands and feet": 1,
"humanoid figure with white fur": 1,
"humanoid form with exaggerated features": 1,
"humanoid head adorned with a metallic": 1,
"humanoid wolf character. this character has a lean": 1,
"illuminated by flickering torchlight": 1,
"imminent anal": 1,
"imminent sex": 3,
"imposing head adorned with a dark": 1,
"imposing stature. it is armed with a large": 1,
"including glowing red eyes and a set of razor-sharp teeth. it has long": 1,
"including large": 1,
"including the chest": 2,
"indicated by the text \"omg\" next to its head. the background is a gradient of pink and purple hues": 1,
"indicating a male anatomy. there is a small pink heart symbol near the creature's head": 1,
"indicating a mix of male and female characteristics. the background is abstract and chaotic": 1,
"indicating a recent battle. the creature's legs are muscular and end in sharp": 1,
"indicating a romantic or sexual context. his right hand is raised to his mouth": 1,
"indicating pleasure or aggression. the submissive character": 1,
"indicating sounds of pleasure and physical contact. the overall style of the artwork is highly detailed and realistic": 1,
"indicating the artist's name. the overall style is highly detailed and realistic": 1,
"indicating the creator's identity. the overall mood is one of fantasy and eroticism": 1,
"indicating the piece's origin.": 1,
"indicating the work's origin.": 1,
"indicative of a robust build. the character's breasts are prominently displayed": 1,
"inside": 1,
"intense quality to its face. the creature is adorned with dark": 1,
"intersex/male": 1,
"intimate moment between two anthropomorphic characters in a dark": 1,
"intricate": 1,
"intricate armor": 1,
"is a brown-furred wolf with a more slender build. the dominant wolf's hand is gripping the submissive wolf's head": 1,
"is a muscular": 1,
"is adorned in elaborate": 1,
"is bushy and grey": 1,
"is depicted in an action pose": 1,
"is extended forward": 1,
"is in mid-leap": 1,
"is lying on a stone slab in a dimly lit": 1,
"is mid-leap": 1,
"its hilt wrapped in red and black cloth": 1,
"jagged blade extends from the right side of the image": 1,
"jagged blade that glows with the same red light as the armor. the sword's handle is detailed with intricate carvings. the background is a gradient of dark grey to black": 1,
"jagged cracks running across the surface": 1,
"jagged lines streak across the background": 1,
"jagged rocks and debris are scattered around": 1,
"keeping the focus entirely on the characters. the text \"what black magic in my cum\" and \"how embarrassing\" are handwritten in a playful": 1,
"keeping the focus on the character. the illustration is highly detailed with clean lines and shading": 1,
"knee boots": 1,
"korean text": 1,
"large breasts and a visible": 1,
"large pectorals": 5,
"large penis is prominently displayed": 1,
"leading to a wall or object on the right side of the image. text in the image reads": 1,
"leaf-like helmet with a sinister": 1,
"leaning forward with one hand on the ground": 1,
"leather-like harness that accentuates their physique. the harness has intricate gold and black detailing": 1,
"leaving only a narrow slit visible": 1,
"legs": 2,
"legs spread": 1,
"legs up": 1,
"light grey backdrop": 1,
"likely a dragon or a dragon-like being": 1,
"likely female": 1,
"likely holding the sword's hilt. the background is a simple": 1,
"loincloth-like clothing that accentuates its muscular form. it has a black": 1,
"long": 1,
"long hair": 31,
"long sleeves": 1,
"long tongue": 1,
"looking back": 1,
"low-angle view": 1,
"low-tied long hair": 1,
"lying": 1,
"lying on a green bed. the creature has a serene": 1,
"lying on its back on a light beige surface. the creature has a muscular": 1,
"macro": 1,
"maintaining the abstracted": 1,
"making them stand out prominently. the character's hair is long and wild": 1,
"male": 1,
"male focus": 37,
"male pubic hair": 6,
"male/female": 3,
"male/male": 4,
"maliketh (elden ring) ||| breasts": 1,
"maliketh (elden ring) ||| female": 7,
"maliketh (elden ring) ||| long hair": 9,
"maliketh (elden ring) ||| solo": 30,
"mask": 15,
"masturbation": 1,
"matching the armor. the right hand is not visible": 1,
"mature male": 2,
"menacing appearance. this character has white": 1,
"menacing expression. his eyes are hidden behind the helmet": 1,
"menacing features": 1,
"menacing mask": 1,
"menacing sword held in both hands": 1,
"menacing teeth": 2,
"metallic armor that is detailed with intricate patterns and gold accents. the armor extends from the head": 1,
"metallic helmet with intricate gold patterns": 1,
"metallic plates with gold accents": 1,
"metallic plates with intricate gold patterns": 1,
"metallic room with a large window on the left": 1,
"metallic spikes": 1,
"metallic texture": 1,
"midriff": 1,
"monochrome": 2,
"monster girl (genre)": 1,
"more organic textures of the background. the image is highly detailed": 1,
"mouth closed": 1,
"multi penis": 2,
"multiple angles": 2,
"muscular": 7,
"muscular anthropomorphic wolf with a predominantly white fur coat and dark": 1,
"muscular backside. the creature in the middle is shown with its back to the viewer": 1,
"muscular bodies with pronounced muscles": 1,
"muscular build prominently displayed. the fur is primarily white": 1,
"muscular features and a voluptuous physique. the character has a predominantly white fur coat with subtle variations in shading that give depth to the fur. the wolf's physique is highly defined": 1,
"muscular humanoid creature": 1,
"muscular male": 8,
"muscular wolf-like creature with a humanoid physique": 1,
"muted color palette that keeps the focus on the central figure. the overall style is highly detailed with smooth shading and a soft": 1,
"muted gray": 1,
"muted gray with a soft": 1,
"muted palette": 1,
"mysterious ambiance. the lighting is soft and diffused": 1,
"mystery": 1,
"mythical warrior figure set against a dramatic": 1,
"named malikerth": 1,
"navel": 13,
"navel hair": 1,
"navel piercing": 1,
"nipple piercing": 3,
"nipples": 12,
"nose blush": 1,
"nude": 13,
"on back": 4,
"on front": 1,
"on ground": 1,
"on side": 1,
"one knee": 2,
"open mouth": 13,
"open mouth displaying sharp": 1,
"orange glow. the ground appears to be rocky and uneven": 1,
"orange glow. there are also several floating candles emitting soft": 1,
"ornate": 1,
"ornate armor that glows with an eerie red light": 1,
"ornate armor that is predominantly gold with intricate": 1,
"ornate armor with gold accents. the armor is heavily decorated with intricate patterns and designs": 1,
"ornate armor with intricate gold patterns": 1,
"ornate gauntlet with a golden": 1,
"ornate golden armor that covers its eyes": 1,
"ornate golden sword in its right hand": 1,
"ornate helmet that covers his head": 1,
"ornate helmet that covers the eyes and has a stylized": 1,
"ornate helmet with intricate designs": 1,
"ornate shield with a similar design to the armor. the background is a dim": 1,
"ornate sword": 1,
"ornate sword held in its right hand. the sword has a textured": 1,
"ornate sword in his left hand": 1,
"ornate sword in their left hand": 1,
"ornate sword with a golden hilt and a red": 1,
"ornate sword with a red hilt. the background is a dark": 1,
"otherworldly appearance. the armor covers its upper body and limbs": 1,
"painterly quality": 1,
"pale beige with a subtle": 1,
"pale skin": 1,
"panties": 1,
"partially submerged in water": 1,
"partially visible vulva": 1,
"particularly around the head": 1,
"particularly in the arms": 1,
"pastel color palette with a focus on light blues and pinks": 1,
"pastel colors": 1,
"pauldron": 2,
"pawpads": 1,
"pecs": 9,
"peeing": 1,
"penis": 12,
"perineum": 2,
"phallic object that is also covered in leather. the object has a glossy finish": 1,
"pink penis in their hand": 1,
"pink penis. the submissive wolf's eyes are closed": 1,
"pink phallic object. the background is a dimly lit": 1,
"plain white": 1,
"pointed ears and a long": 1,
"pointed horns and a visor": 1,
"polished texture for the character's skin and armor": 1,
"polished texture with gold trim and decorative patterns. the creature's genitals are partially visible": 1,
"positioned below": 1,
"positioned on its stomach": 1,
"positioned on the right": 1,
"possibly a dungeon or a similar fantasy setting. the style of the drawing is clean and detailed": 1,
"possibly indicating the character's attack or the aftermath of a powerful strike. the overall style of the illustration is highly detailed and dynamic": 1,
"precum": 5,
"predominantly light blues and pinks. all three figures share similar features: they have large": 1,
"presenting": 1,
"primal passion": 1,
"primarily consisting of dark": 1,
"primarily muted greens": 1,
"providing a bold backdrop that highlights the creature's intricate details. the creature's right arm is extended": 1,
"providing a sense of strength and protection. the armor is detailed with sharp": 1,
"pubes": 8,
"purples": 1,
"pussy": 4,
"ragged cloak. his skin is pale": 1,
"raised hand": 2,
"raised leg": 1,
"rape": 1,
"ready to strike. his left hand is extended": 1,
"ready-to-move stance. the character has a robust build with well-defined muscles": 1,
"realistic depiction of the penis and testicles. there is a speech bubble next to the character's head": 1,
"red": 1,
"red background": 5,
"red penis and testicles. the background is a mix of dark": 1,
"reflecting light": 1,
"reinforcing the social media theme. the overall composition is vibrant and playful": 1,
"reminiscent of a volcanic landscape. glowing embers and sparks dot the scene": 1,
"resembling a hybrid of a wolf and a dragon": 1,
"revealing a dark gray": 1,
"revealing his genitals. the background is a solid": 1,
"revealing sharp teeth. the background is a mix of muted earth tones": 1,
"robust physique with exaggeratedly large breasts and a voluptuous figure. she is adorned in ornate": 1,
"rocky textures and what appears to be a smoky": 1,
"romantic atmosphere. a small": 1,
"round breasts and a defined waist. her skin is a smooth": 1,
"round breasts and a pronounced": 1,
"round buttocks and a prominent": 1,
"rugged surroundings. the image captures a sense of strength and determination through its dynamic composition and detailed rendering.": 1,
"ruined": 1,
"saliva": 5,
"scar": 2,
"scar on arm": 1,
"scar on face": 1,
"scar on leg": 1,
"seemingly suspended in mid-air. the armor is predominantly black with metallic highlights": 1,
"segmented armor plate that covers its upper arm and shoulder": 1,
"segmented armor that covers its arms and legs": 1,
"segmented armor with sharp": 1,
"segmented armor. the wolf has a menacing expression and is depicted in a dominant": 1,
"segmented black armor with gold accents": 1,
"segmented plates with intricate gold patterns": 1,
"seiza": 1,
"semi-realistic fantasy art style. the central figure is a large": 1,
"semi-realistic style. it depicts an anthropomorphic character with a humanoid body and a furry": 1,
"set against a cracked": 1,
"sex": 2,
"sharp edges that contrast sharply with its soft": 1,
"sharp fingernails": 5,
"sharp teeth": 8,
"sharp toenails": 1,
"shiny (disambiguation)": 1,
"shoulder armor": 10,
"showcasing a large": 2,
"showcasing a muscular and well-defined physique. the creature has a predominantly white fur coat with a striking mane of long": 1,
"showcasing its powerful grip on the sword. the background is blurred and gradient": 1,
"showcasing its well-defined chest and abs": 1,
"showcasing sharp": 1,
"showcasing strong thighs and calves. the character's genitals are visible": 1,
"showcasing well-defined abs and biceps. its face is partially obscured by a helmet with intricate": 1,
"showcasing well-toned abs and broad shoulders": 1,
"showing a look of intense pleasure. the creature's face is partially obscured by the human's head": 1,
"showing sharp teeth": 1,
"signature": 2,
"simple background": 1,
"sitting": 2,
"size difference": 3,
"sketch": 1,
"slender build and is visibly aroused": 1,
"smile": 1,
"smoky backdrop. the central character": 1,
"smoky elements that suggest a fiery": 1,
"smoky environment with hints of red and orange flames": 1,
"smoky hues with flickering orange and red flames": 1,
"smooth texture. the character's hair is long and flowing": 1,
"snout": 2,
"solo": 7,
"solo focus": 2,
"speech bubble": 1,
"spiked design. the character's face is partially obscured by their helmet": 1,
"sporting a fierce and imposing appearance with a thick mane of white fur. he is dressed in ornate": 1,
"spread legs": 7,
"standing": 2,
"standing with a large": 1,
"steam": 1,
"steaming body": 1,
"stomach": 5,
"stone structure": 1,
"stone textures": 1,
"stone-walled room with a green": 1,
"stormy scene with dark": 1,
"striped stockings that extend to their knees. the stockings are detailed with visible seams and a glossy texture. the character's exposed genitalia is prominently depicted": 1,
"stylized fantasy art style. the scene depicts an intense": 1,
"stylized script in the bottom left corner of the image.": 1,
"submissive position on a dark": 1,
"suggesting a battle or a post-battle aftermath. the textures are rough and painterly": 1,
"suggesting a battle or post-battle scene. the character's genitalia are prominently visible": 1,
"suggesting a connection to magic or dark forces. in its right hand": 1,
"suggesting a fantasy or medieval setting. her head is covered by a helmet with a menacing visor": 1,
"suggesting a fierce": 1,
"suggesting a fiery or intense setting. the ground beneath the creature is covered in red and black debris": 1,
"suggesting a high level of craftsmanship and nobility. the character in the background is a humanoid figure with a more angular": 1,
"suggesting a hybrid creature. the character's skin tone is a pale": 1,
"suggesting a medieval or fantasy setting. the lighting is warm": 1,
"suggesting a moment of intense action. the background is minimalistic": 1,
"suggesting a post-apocalyptic or fantasy setting. the lighting is dim": 1,
"suggesting a sense of aggression or determination. the creature is holding a large": 1,
"suggesting a struggle or submission. the background is minimalistic": 1,
"suggesting a submissive or enslaved nature. in the middle": 1,
"suggesting a warrior or fighter. one of the creature's arms is raised": 1,
"suggesting aggression or readiness for battle. a notable feature is the creature's prominent": 1,
"suggesting an ancient or medieval setting. the wolf's expression is one of intense pleasure": 1,
"suggesting an outdoor or cave-like setting. the text \"ah deeper\" and \"shrp\" are written in white": 1,
"suggesting an underground or cave-like setting. there are hints of ancient ruins and stone walls": 1,
"suggesting arousal. a pink heart symbol floats above their head": 1,
"suggesting ejaculation. the fluid is also splashed onto the wolf's fur and the floor": 1,
"suggesting it has been recently drawn from its sheath. the creature's face is partially obscured by a dark helmet adorned with sharp": 1,
"suggesting it is either wet or has a high shine. the background is a simple": 1,
"suggesting magical or mystical properties. they also have a chain connected to their right arm": 1,
"suggesting momentum and agility. he is dressed in a dark": 1,
"suggesting readiness for combat. the wolf warrior's armor is intricate and detailed": 1,
"sweat": 5,
"sword": 2,
"tail": 26,
"tattered outfit with armor fragments and a torn": 1,
"teeth": 5,
"textured surface beneath the characters. the dominant character": 1,
"the character is shown in a more intimate pose": 1,
"the character's hand is holding a large": 1,
"the creature holds a massive": 1,
"the creature's genitals are prominently displayed": 1,
"the image is a digital artwork featuring an anthropomorphic character in a fantasy setting. the character has a muscular": 1,
"the same characters are in a similar position": 1,
"there are dark": 1,
"there is a window frame with a \"x\" button and a url": 1,
"thick tail that curls around its body. its skin is dark grey": 1,
"thick tail that curls around its hindquarters. its legs are muscular and end in clawed feet. the background of the image is plain white": 1,
"thick thighs": 6,
"thighs": 7,
"this digital artwork depicts a dynamic and fantastical scene featuring a warrior in medieval armor engaged in a fierce battle. the warrior": 1,
"this digital drawing features a stylized anthropomorphic wolf character with exaggerated": 1,
"this image is a detailed digital illustration featuring a fantasy character in an action pose. the character is a humanoid creature with a muscular build": 1,
"this image is a digital artwork depicting a fantasy warrior in a dynamic and intense scene. the warrior is a muscular": 1,
"this image is a digital artwork depicting a humanoid creature with both male and female characteristics": 1,
"this image is a digital artwork featuring a muscular": 1,
"this image is a digital drawing featuring a fantastical creature that blends elements of a wolf and a knight. the creature has a humanoid form with a muscular build": 1,
"this image is a digital drawing featuring three anthropomorphic wolf-like creatures in various poses. the artwork is rendered in a soft": 1,
"this image is a digital drawing in a cartoonish": 1,
"this image is a digital drawing in a dark fantasy style. it depicts a fantastical": 1,
"this image is a digital drawing in a highly detailed": 1,
"this image is a digital drawing in a stylized": 1,
"this image is a digital drawing in an anime-inspired style": 1,
"this image is a digital illustration featuring a fantastical": 1,
"this image is a digital line drawing in a sketch-like style": 1,
"this image is a digitally created": 1,
"this is a detailed": 1,
"this is a digital artwork depicting a voluptuous": 1,
"this is a digital artwork featuring a muscular": 1,
"this is a digital artwork in an anime-inspired style": 1,
"this is a digital drawing featuring a fantastical": 1,
"this is a digital drawing featuring a fierce": 1,
"this is a digital drawing featuring a muscular": 1,
"this is a digital drawing featuring an anthropomorphic": 1,
"this is a digital drawing featuring three anthropomorphic": 1,
"this is a digital drawing in a fantasy style featuring two anthropomorphic characters in a bdsm-themed scene. the setting appears to be a dimly lit": 1,
"this is a digital drawing in a highly detailed": 1,
"this is a digital drawing in a stylized": 1,
"this is a digital drawing in an anime-inspired art style": 1,
"this is a digital drawing of a fantastical": 3,
"this is a digital drawing of a muscular": 1,
"this is a digital drawing of an anthropomorphic wolf character with a distinctly fantasy aesthetic. the character is depicted in a crouching position": 1,
"this is a digital illustration depicting a fierce": 1,
"this is a digital illustration featuring a dynamic": 1,
"this is a digital illustration featuring a humanoid wolf-like creature in an intense": 1,
"this is a digital illustration in a cartoonish style": 1,
"this is a digital illustration in a stylized": 2,
"this is a digital painting depicting a dynamic": 1,
"this is a digital painting depicting a fierce": 1,
"this is a digitally drawn": 1,
"this is a highly detailed digital artwork depicting an anthropomorphic": 1,
"this is a highly detailed digital artwork in a fantasy genre": 1,
"this is a highly detailed digital illustration featuring a powerful": 1,
"throbbing penis": 1,
"tied into a ponytail": 1,
"to the claws on its hands and feet": 1,
"toenails": 1,
"toned physique with defined abs and pectorals": 1,
"toned physique with large": 1,
"tongue": 1,
"tongue hanging out": 1,
"tongue out": 7,
"topless male": 1,
"translucent": 1,
"trembling": 2,
"two-handed sword": 1,
"two-handed sword in his right hand": 1,
"two-handed sword in the left hand": 1,
"typical of modern digital art.": 1,
"underwear": 2,
"uneven rock. the creature's skin is a light": 1,
"upper body": 1,
"upside down": 1,
"urine": 1,
"vaginal": 1,
"vaginal fluids": 1,
"vambrace": 2,
"vein": 3,
"veiny penis": 2,
"visible in the lower right corner": 1,
"warm light filtering through": 1,
"watermark": 1,
"weapon": 2,
"weapon over shoulder": 1,
"wearing dark blue": 1,
"wearing only a black": 1,
"well-defined physique with white fur covering its body": 1,
"werewolf": 4,
"which adds to the dynamic and powerful pose. the character's left hand is raised": 1,
"which appears to be made of smooth": 1,
"which are also armored. the creature's fur is depicted as a light beige color": 1,
"which are detailed with a soft": 1,
"which contrast with their fur. the background is a blurred": 1,
"which contrasts sharply with the character's light skin and dark armor": 1,
"which contrasts sharply with the lighter fur. the armor appears to be segmented": 1,
"which contrasts starkly with its dark armor and white mane. the red background is smooth and solid": 1,
"which contrasts starkly with the warrior's dark armor and the red glow of his sword. the overall style of the artwork is highly detailed and dynamic": 1,
"which contrasts with his soft": 1,
"which contrasts with the dark tones of the character and the object. the texture of the leather is smooth and shiny": 1,
"which flows gracefully behind it. the creature's eyes are large and glowing": 1,
"which has a curved blade and intricate hilt. the overall style of the artwork is dynamic and detailed": 1,
"which has a golden hilt and a blade that appears to be edged with gold as well. the character's right hand rests on a large": 1,
"which has a menacing": 1,
"which has a snout-like nose and sharp": 1,
"which helps to focus attention on the figures. the scene is set in what appears to be an indoor environment": 1,
"which helps to highlight the character without distracting from it. the overall style of the drawing is clean and bold": 1,
"which helps to make the character and their details stand out prominently. the artist's signature": 1,
"which is a pale": 1,
"which is also armored and detailed with gold accents": 1,
"which is being sucked by the dominant character. the background is a mix of muted tones": 1,
"which is being sucked by the submissive character. the submissive character is lying on their back": 1,
"which is extended and clenched": 1,
"which is held high with one hand": 1,
"which is long and flowing": 1,
"which is primarily white but with some dark strands mixed in. the creature is adorned with dark": 1,
"which is raised and angled forward": 1,
"which is turned towards the viewer": 1,
"which it brandishes menacingly. the left hand grips a smaller dagger": 1,
"which keeps the focus entirely on the character. the style of the drawing is clean and polished": 1,
"which keeps the focus on the character. the texture of the armor is smooth and metallic": 1,
"while his left hand is resting on his chest. the character's erect": 1,
"while its right arm is bare": 1,
"whimsical font": 1,
"whimsical setting. the lion has a muscular build with pronounced abs and a broad chest": 1,
"white": 1,
"white background": 6,
"white fur": 3,
"white fur cape that flows dramatically. his armor is a mix of dark": 1,
"white fur. notably": 1,
"white hair": 20,
"white hair that cascades around its head and shoulders": 1,
"white hair that cascades down her back. she is wearing a black and gold armor suit with intricate designs": 1,
"white male underwear": 1,
"white mane and a prominent": 1,
"white mane that cascades down their back. the character has a muscular build and is dressed in a tight": 1,
"white-furred": 1,
"white-furred wolf with a black mask covering its eyes": 1,
"who appears to be a dominant figure. the submissive character's head is bowed": 1,
"who appears to be a warrior": 1,
"wide back and broad shoulders. its fur is predominantly white with darker grey accents": 1,
"wide hips": 1,
"wings": 2,
"with a blend of fantasy and action elements.": 1,
"with a clear bdsm theme.": 1,
"with a clear emphasis on the dynamic and intense interaction between the two characters.": 1,
"with a detailed": 1,
"with a dramatic swirl of red smoke or flames emanating from it": 1,
"with a dynamic and powerful stance. the wolf has a predominantly white fur coat with a thick": 1,
"with a few dynamic": 1,
"with a focus on anatomy and texture. the use of light and shadow adds depth and highlights the creature's muscular form and the metallic sheen of its helmet and armor.": 1,
"with a focus on both the creature's anatomy and the intricate armor details.": 1,
"with a focus on both the creature's physical form and the dramatic": 1,
"with a focus on dramatic lighting and intense": 1,
"with a focus on dramatic lighting and intense action": 1,
"with a focus on highlighting the details of the characters' armor and fur": 1,
"with a focus on highlighting the muscular structure and the dynamic motion of the character. the artist's signature": 1,
"with a focus on metallic textures and a dramatic lighting effect that highlights the character's imposing presence.": 1,
"with a focus on muscular anatomy and intense facial expression.": 1,
"with a focus on protective elements like shoulder guards": 1,
"with a focus on sharp lines and rich textures": 1,
"with a focus on smooth shading and highlights that accentuate the character's form and the surrounding environment. the image is signed by the artist \"drossa": 1,
"with a focus on strength and readiness for battle. the image captures a blend of fantasy and anthropomorphic elements": 1,
"with a focus on the anatomical and emotional aspects of the characters.": 1,
"with a focus on the character's anatomy and the intricate design of her armor.": 1,
"with a focus on the character's intense": 1,
"with a focus on the character's muscular form": 1,
"with a focus on the character's muscular physique and the glossy": 1,
"with a focus on the character's muscular physique and the intricate design of the armor.": 1,
"with a focus on the character's physicality and emotional state.": 1,
"with a focus on the interplay between dominance and submission.": 1,
"with a focus on the physical interaction between the characters.": 1,
"with a focus on the textures and colors of the armor and the creature's fur.": 1,
"with a focus on the textures and details of the armor and fur.": 1,
"with a focus on the textures of the armor and the dynamic": 1,
"with a gradient from light beige at the bottom to a darker beige at the top": 1,
"with a gradient from white to grey": 1,
"with a hint of a snarl on his face. the character is depicted from a low angle": 1,
"with a human male figure positioned between its legs. the human male has light brown hair": 1,
"with a large": 1,
"with a mix of fantasy and social media elements.": 1,
"with a muscular and robust physique. its head is adorned with sharp": 1,
"with a muscular arm wrapped around a second character": 1,
"with a muscular build and a fierce": 1,
"with a pink": 1,
"with a plain": 1,
"with a polished": 1,
"with a red": 1,
"with a red glow emanating from the blade": 1,
"with a red hilt and a black blade. the sword is positioned diagonally": 1,
"with a sharp": 1,
"with a sheen that suggests a soft": 1,
"with a similar helmet": 1,
"with a slight smile visible beneath her helmet. small red hearts are drawn around her": 1,
"with a small": 1,
"with a soft": 2,
"with a strong emphasis on dynamic poses and detailed textures.": 1,
"with a strong emphasis on the creature's physical form and the contrast between its soft hair and rigid armor.": 1,
"with a submissive expression": 1,
"with a visible erect pink penis. the smaller character's head is tilted back in submission": 1,
"with a wide": 1,
"with a wide-open mouth revealing sharp teeth": 1,
"with additional straps and bands wrapped around its ankles and shins. the overall style of the drawing is bold and dynamic": 1,
"with an erect": 1,
"with angular": 1,
"with bold lines and a dynamic composition that captures the creature's intense focus and readiness for battle. the artist's signature": 1,
"with broad shoulders": 1,
"with brushstrokes visible": 1,
"with clear outlines and a minimalistic color palette": 1,
"with closed eyes and a blush on their cheeks": 1,
"with closed eyes and a relaxed posture. its fur is smooth and appears to be soft to the touch. the creature is adorned in dark": 1,
"with deep red and black tones dominating. a large": 1,
"with defined muscles and a broad chest. the armor is predominantly dark purple with gold accents": 1,
"with detailed patterns and a glossy texture that contrasts sharply with the fiery": 1,
"with earthy tones and a soft": 1,
"with faint red and orange highlights that accentuate the creature's glowing elements. the overall atmosphere is dark and ominous": 1,
"with flickering candles scattered around": 1,
"with glowing embers and sparks adding to the intense atmosphere. the overall style of the illustration is highly detailed and dynamic": 1,
"with her left hand gently touching her face and her right hand holding a blue cloth. her expression is one of seduction and confidence": 1,
"with highlights of red and gold": 1,
"with highlights of red and gold from the character's attire and the firelight. the style is a blend of fantasy and action": 1,
"with highlights of warm orange from the light. the image is highly detailed": 1,
"with hints of ancient architecture and mystical symbols": 1,
"with his eyes closed and a red heart symbol floating above his head": 1,
"with his hand gripping a portion of the sword's handle. the character's genitalia are prominently shown": 1,
"with his legs spread wide. the smaller figure has a pale skin tone and is wearing a simple loincloth": 1,
"with his right arm extended forward": 1,
"with indistinct shapes that could be interpreted as rocky terrain or ruins": 1,
"with intricate designs and a helmet that resembles a knight's armor. the lion's expression is one of surprise": 1,
"with intricate gold detailing and a flowing": 1,
"with intricate patterns and designs suggesting a medieval or fantasy style. the armor is detailed with gold and black accents": 1,
"with its head down and its tail curled around its legs. a chain is visible around its neck": 1,
"with its head tilted downwards towards a smaller figure. the smaller figure is a humanoid character with a slender build": 1,
"with its mouth open and eyes wide": 1,
"with its powerful": 1,
"with large": 2,
"with muscular physiques and fur-covered bodies. the character on the left is depicted from the back": 1,
"with one arm raised and the other clenched into a fist": 1,
"with one knee bent and the other foot planted firmly on the ground. the character holds a massive": 1,
"with one leg extended forward and the other bent": 1,
"with one leg raised and her right arm extended": 1,
"with one leg raised and the other bent": 1,
"with one leg raised and the other planted firmly on the ground": 1,
"with ornate patterns and designs. the armor has a sleek": 1,
"with patches of white fur on its head": 1,
"with pronounced chest and thigh muscles": 1,
"with pronounced pectoral muscles": 1,
"with quick": 1,
"with shades of brown": 1,
"with shades of brown and beige": 1,
"with sharp": 1,
"with sharp edges and glowing runes": 1,
"with sharp teeth and a snarling expression": 1,
"with sharp teeth bared and eyes narrowed": 1,
"with smooth lines and a focus on the characters' anatomy and expressions. the image combines elements of fantasy and action": 1,
"with smooth lines and a minimalistic color palette that highlights the character's form and features. the overall mood of the image is intense and powerful": 1,
"with smooth lines and shading that emphasizes the muscularity and texture of the characters' bodies. the overall tone is erotic and explicit": 1,
"with some pieces extending to its thighs. the creature's face is partially visible": 1,
"with some plates extending into the hair. the creature holds a large": 1,
"with some scattered rocks and broken pieces of the environment. the entire image is framed with an ornate": 1,
"with strong lines and minimal shading": 1,
"with strong shading and highlights that emphasize the warrior's muscular physique and the dramatic nature of the scene. the artist's signature": 1,
"with subtle shading to emphasize the contours of the body. the character's face is partially obscured by a dark": 1,
"with the armor's segments having a metallic sheen and a slight glow. the background is minimalistic": 1,
"with the blade resting on the ground. the sword's handle is adorned with gold and red detailing": 1,
"with the candles providing the only illumination": 1,
"with the character's fur contrasting against the dark": 1,
"with the chest piece featuring a prominent": 1,
"with the hand clutching a golden sword": 1,
"with the hands positioned close to the ground. the character's legs are spread apart": 1,
"with the hilt adorned with golden details and a large blue gem. the sword is depicted as if it has just been pulled from the ground": 1,
"with the red background adding a striking contrast. the image conveys a sense of power": 1,
"with the stone walls and the green surface providing a stark contrast to the characters' vibrant colors. the image is detailed with shading and highlights": 1,
"with the tip pointing downwards": 1,
"with the use of shadows and highlights enhancing the three-dimensional effect.": 1,
"with the warrior's pose and the swirling": 1,
"with their left arm wrapped around their chest and their right arm resting on their lap. the image is highly detailed and uses a combination of smooth shading and bold lines to emphasize the creature's muscular form and the intricate details of the armor.": 1,
"with their left leg extended forward and their right leg bent": 1,
"with their legs and arms spread wide. they are wearing minimal clothing": 1,
"with their mouth open in a snarl": 1,
"with visible muscle definition and a pronounced": 1,
"with visible nipples": 1,
"with white fluid dripping from it": 1,
"wolf": 47,
"wolf ears": 1,
"wolf tail": 3,
"wolf-like creature with a large": 1,
"wolf-like mask": 1,
"wood floor": 1,
"wrists tied": 1
}
},
"ss_text_encoder_lr": 0.0001,
"ss_total_batch_size": 14,
"ss_training_comment": null,
"ss_training_finished_at": 1730056656.7405822,
"ss_training_started_at": 1730031518.5696003,
"ss_unet_lr": 0.0002,
"ss_v2": false,
"ss_zero_terminal_snr": false,
"sshs_model_hash": "0xf996d078870ee4136b85693fd5d810935e26f06dd0ca6c92acb6bb4c1a1bffa0"
} |