File size: 52,733 Bytes
61b4700 |
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 |
{
"ss_sd_model_name": "downloaded_model.safetensors",
"ss_clip_skip": "2",
"ss_num_train_images": "1388",
"ss_tag_frequency": {
"bondage_v05": {
"bondage": 694,
"gag": 461,
"blush": 441,
"long hair": 394,
"restrained": 364,
"arms behind back": 364,
"gagged": 362,
"looking at viewer": 355,
"shibari": 338,
"ball gag": 308,
"nipples": 295,
"rope": 271,
"thighhighs": 237,
"sex toy": 216,
"collar": 204,
"shibari over clothes": 201,
"crotch rope": 200,
"vibrator": 180,
"navel": 179,
"underwear": 174,
"saliva": 167,
"panties": 166,
"bangs": 163,
"medium breasts": 163,
"red rope": 152,
"hair ornament": 149,
"improvised gag": 146,
"blue eyes": 143,
"skindentation": 143,
"hair between eyes": 137,
"gloves": 129,
"tape": 126,
"full body": 124,
"chain": 119,
"open mouth": 116,
"box tie": 110,
"eyebrows visible through hair": 109,
"blindfold": 108,
"multiple girls": 108,
"cloth gag": 107,
"black hair": 107,
"tape gag": 107,
"brown hair": 106,
"purple eyes": 105,
"nude": 105,
"short hair": 104,
"lying": 102,
"cuffs": 102,
"ass": 102,
"2girls": 100,
"animal ears": 99,
"skirt": 97,
"small breasts": 97,
"blonde hair": 96,
"red eyes": 95,
"pussy juice": 94,
"pantyhose": 93,
"pussy": 92,
"spread legs": 92,
"suspension": 91,
"simple background": 89,
"shirt": 88,
"tears": 87,
"thighs": 85,
"indoors": 82,
"collarbone": 82,
"barefoot": 81,
"wiffle gag": 79,
"twintails": 79,
"leash": 79,
"drooling": 78,
"frogtie": 76,
"object insertion": 75,
"cleave gag": 75,
"white background": 74,
"sitting": 73,
"dress": 70,
"brown eyes": 70,
"ribbon": 68,
"on back": 66,
"bow": 66,
"spreader bar": 65,
"sweat": 63,
"dildo": 62,
"black thighhighs": 62,
"white panties": 60,
"standing": 59,
"leotard": 58,
"ring gag": 58,
"arms up": 57,
"elbow gloves": 57,
"handcuffs": 57,
"blue hair": 56,
"cleavage": 56,
"high heels": 55,
"tail": 54,
"uncensored": 54,
"purple hair": 53,
"ponytail": 52,
"pink hair": 52,
"stomach": 52,
"latex": 52,
"teeth": 51,
"long sleeves": 50,
"bit gag": 49,
"green eyes": 49,
"female focus": 49,
"vaginal": 48,
"sidelocks": 48,
"torn clothes": 47,
"white shirt": 47,
"piercing": 47,
"vaginal object insertion": 46,
"bra": 44,
"no bra": 44,
"red hair": 43,
"vibrator under clothes": 43,
"no shoes": 42,
"heart": 41,
"bed": 40,
"toes": 40,
"white legwear": 40,
"covered navel": 39,
"black legwear": 39,
"fake animal ears": 39,
"hair ribbon": 39,
"school uniform": 39,
"anal object insertion": 38,
"braid": 38,
"on bed": 38,
"cleft of venus": 38,
"nipple piercing": 38,
"yellow eyes": 37,
"armpits": 37,
"bound arms": 36,
"kneeling": 36,
"shoes": 36,
"black gloves": 36,
"smile": 36,
"clothes pull": 36,
"tongue": 35,
"hairclip": 35,
"ahoge": 34,
"nose blush": 34,
"harness": 33,
"open clothes": 33,
"remote control vibrator": 33,
"swimsuit": 33,
"bunnysuit": 32,
"ribbon bondage": 32,
"thigh strap": 32,
"bound ankles": 31,
"bound wrists": 31,
"tattoo": 31,
"pink eyes": 31,
"black pantyhose": 31,
"bound legs": 30,
"strapless leotard": 30,
"pillow": 30,
"hat": 30,
"strapless": 30,
"chair": 30,
"bodysuit": 30,
"choker": 30,
"black skirt": 29,
"highleg": 29,
"rabbit ears": 29,
"cat ears": 29,
"cum": 29,
"tongue out": 29,
"breasts out": 29,
"blunt bangs": 29,
"breast bondage": 28,
"black collar": 28,
"signature": 28,
"egg vibrator": 28,
"white hair": 28,
"medium hair": 28,
"pubic tattoo": 27,
"cameltoe": 26,
"detached collar": 26,
"earrings": 26,
"cowboy shot": 26,
"virtual youtuber": 26,
"large breasts": 25,
"blurry background": 25,
"belt": 25,
"black leotard": 25,
"crying": 25,
"grey background": 25,
"horns": 25,
"nipple clamps": 25,
"miniskirt": 25,
"boots": 25,
"black panties": 24,
"on side": 24,
"latex bodysuit": 24,
"flower": 24,
"from behind": 24,
"see-through": 24,
"vibrator under panties": 24,
"socks": 24,
"yuri": 24,
"anal beads": 23,
"white thighhighs": 23,
"pointy ears": 23,
"vibrator on nipple": 23,
"bound together": 23,
"jacket": 22,
"maid headdress": 22,
"highleg leotard": 22,
"hairband": 22,
"orange hair": 22,
"white gloves": 21,
"crying with eyes open": 21,
"from above": 21,
"box": 21,
"bikini": 21,
"gradient background": 20,
"hair flower": 20,
"bowtie": 20,
"holding": 20,
"grey hair": 20,
"covered erect nipples": 20,
"topless": 20,
"heart-shaped pupils": 20,
"hair bow": 20,
"black choker": 20,
"bare shoulders": 19,
"saliva trail": 19,
"vibrator in thighhighs": 19,
"breast press": 19,
"legs together": 19,
"blurry": 19,
"tearing up": 19,
"no panties": 18,
"bondage outfit": 18,
"garter straps": 18,
"grey skirt": 18,
"artist name": 18,
"one-piece swimsuit": 18,
"open shirt": 18,
"hitachi magic wand": 18,
"arms behind head": 18,
"from side": 18,
"sleeveless": 18,
"femdom": 17,
"short dress": 17,
"fingerless gloves": 17,
"silver hair": 17,
"wooden horse": 17,
"shiny skin": 17,
"condom": 17,
"legs": 17,
"on floor": 17,
"forced orgasm": 17,
"black blindfold": 16,
"shiny clothes": 16,
"metal collar": 16,
"legs up": 16,
"maid": 16,
"trembling": 16,
"anus": 16,
"torn pantyhose": 16,
"detached sleeves": 16,
"black dress": 16,
"drill hair": 16,
"vibrator cord": 16,
"cat tail": 16,
"skin tight": 16,
"in container": 16,
"closed eyes": 16,
"wooden floor": 16,
"animal collar": 15,
"depth of field": 15,
"twin drills": 15,
"sideboob": 15,
"cum on body": 15,
"in box": 15,
"thigh gap": 15,
"embarrassed": 15,
"armbinder": 15,
"no pants": 14,
"neckerchief": 14,
"black bodysuit": 14,
"fox ears": 14,
"gluteal fold": 14,
"thighband pantyhose": 14,
"toenails": 14,
"bandages": 13,
"garter belt": 13,
"parted bangs": 13,
"two side up": 13,
"rabbit tail": 13,
"squatting": 13,
"nipple rings": 13,
"panties under pantyhose": 13,
"white pantyhose": 12,
"viewer holding leash": 12,
"striped": 12,
"one eye closed": 12,
"pink background": 12,
"orange eyes": 12,
"fake tail": 12,
"tiles": 12,
"red ribbon": 12,
"sweatdrop": 12,
"black bra": 12,
"monoglove": 12,
"blue skirt": 12,
"outdoors": 11,
"leg up": 11,
"bell": 11,
"angry": 11,
"side ponytail": 11,
"standing on one leg": 11,
"butt plug": 11,
"bow panties": 11,
"toenail polish": 11,
"witch hat": 11,
"black socks": 11,
"lock": 10,
"on stomach": 10,
"elf": 10,
"white flower": 10,
"black neckwear": 10,
"collared shirt": 10,
"aftersex": 10,
"cumdrip": 10,
"glasses": 10,
"window": 10,
"shorts": 10,
"kneehighs": 10,
"thigh boots": 10,
"clothing cutout": 10,
"midriff": 10,
"kidnapped": 10,
"scared": 10,
"chained": 9,
"black footwear": 9,
"covered eyes": 9,
"padlock": 9,
"lingerie": 9,
"cape": 9,
"red dress": 9,
"tile floor": 9,
"grey eyes": 9,
"character watermark": 9,
"hair bun": 9,
"body writing": 9,
"cum on breasts": 9,
"cum in pussy": 9,
"asymmetrical legwear": 9,
"black bow": 9,
"tape bondage": 9,
"thick thighs": 9,
"leaning forward": 9,
"belt collar": 9,
"o-ring": 9,
"pink panties": 9,
"shirt lift": 9,
"japanese clothes": 9,
"skirt lift": 9,
"grabbing another": 9,
"gag around neck": 9,
"couch": 8,
"prison": 8,
"broken chain": 8,
"ankle cuffs": 8,
"breath": 8,
"white bra": 8,
"hogtie": 8,
"day": 8,
"pink ribbon": 8,
"mask": 8,
"black background": 8,
"night": 8,
"lactation": 8,
"heavy breathing": 8,
"necktie": 8,
"single thighhigh": 8,
"breasts apart": 8,
"fishnets": 8,
"crop top": 8,
"sweater": 8,
"straitjacket": 8,
"corset": 8,
"harness gag": 8,
"ear piercing": 8,
"double penetration": 8,
"facing viewer": 7,
"bedroom": 7,
"half-closed eyes": 7,
"back": 7,
"on couch": 7,
"toeless legwear": 7,
"covered nipples": 7,
"clitoris": 7,
"neck bell": 7,
"fox tail": 7,
"cat girl": 7,
"shiny": 7,
"cellphone": 7,
"phone": 7,
"dildo gag": 7,
"panty pull": 7,
"sleeveless dress": 7,
"apron": 7,
"black bikini": 7,
"white dress": 7,
"chain leash": 7,
"uniform": 6,
"buckle": 6,
"underwear only": 6,
"brown belt": 6,
"solo focus": 6,
"buruma": 6,
"foot focus": 6,
"thong": 6,
"bowl": 6,
"crossed bangs": 6,
"bandaid": 6,
"barcode": 6,
"torn dress": 6,
"taped hands": 6,
"spread pussy": 6,
"white headwear": 6,
"facial": 6,
"used condom": 6,
"heart pasties": 6,
"wrist cuffs": 6,
"duct tape": 6,
"whip": 6,
"head tilt": 6,
"pumps": 6,
"blue bow": 6,
"butterfly hair ornament": 6,
"white leotard": 6,
"wet": 6,
"turtleneck": 6,
"red bow": 6,
"clitoris piercing": 6,
"pussy piercing": 6,
"anal tail": 6,
"fox girl": 6,
"green hair": 6,
"black hairband": 6,
"megumin": 6,
"bent over": 6,
"m legs": 6,
"cleavage cutout": 6,
"fingering": 6,
"grabbing": 6,
"black shirt": 6,
"twins": 6,
"anal hook": 6,
"cum on upper body": 6,
"white footwear": 6,
"linked collar": 6,
"swept bangs": 5,
"partially visible vulva": 5,
"twin braids": 5,
"dutch angle": 5,
"female ejaculation": 5,
"frills": 5,
"tsurime": 5,
"cutout gloves": 5,
"torn legwear": 5,
"blue leotard": 5,
"double bun": 5,
"heart hair ornament": 5,
"naked ribbon": 5,
"wide hips": 5,
"micro bikini": 5,
"bitchsuit": 5,
"table": 5,
"heart tattoo": 5,
"fangs": 5,
"single braid": 5,
"closet": 5,
"anchor": 5,
"sky": 5,
"black headwear": 5,
"bra lift": 5,
"chalkboard": 5,
"classroom": 5,
"desk": 5,
"wet clothes": 5,
"pet bowl": 5,
"brown pantyhose": 5,
"torture": 5,
"whip marks": 5,
"revealing clothes": 5,
"stiletto heels": 5,
"hair cones": 5,
"purple ribbon": 5,
"transparent background": 5,
"beret": 5,
"veil": 5,
"demon horns": 5,
"brown thighhighs": 5,
"upskirt": 5,
"cum on hair": 5,
"torn thighhighs": 5,
"covered mouth": 5,
"facial mark": 5,
"upper body": 5,
"striped panties": 5,
"smartphone": 5,
"white bow": 4,
"peaked cap": 4,
"red footwear": 4,
"pussy juice stain": 4,
"scissors": 4,
"black cape": 4,
"dress lift": 4,
"blue swimsuit": 4,
"flying sweatdrops": 4,
"hood": 4,
"dilation tape": 4,
"highleg swimsuit": 4,
"crown braid": 4,
"emilia \\(re:zero\\)": 4,
"school chair": 4,
"knee boots": 4,
"bag": 4,
"knees up": 4,
"tile wall": 4,
"black bowtie": 4,
"red background": 4,
"red leotard": 4,
"side braid": 4,
"space": 4,
"bathroom": 4,
"brick wall": 4,
"meme attire": 4,
"night sky": 4,
"pants": 4,
"torn shirt": 4,
"sweater lift": 4,
"water": 4,
"stomach tattoo": 4,
"pantyshot": 4,
"knees together feet apart": 4,
"pink bow": 4,
"eyelashes": 4,
"floor": 4,
"gym uniform": 4,
"breastless clothes": 4,
"multiple views": 4,
"scarf": 4,
"school desk": 4,
"asymmetrical docking": 4,
"linked piercing": 4,
"white socks": 4,
"chastity device": 4,
"head on pillow": 4,
"straight hair": 4,
"black jacket": 4,
"yellow neckerchief": 4,
"tiptoes": 4,
"coat": 4,
"sandals": 4,
"high heel boots": 4,
"hair scrunchie": 4,
"stirrup legwear": 4,
"blue bra": 4,
"dress shirt": 4,
"mouth mask": 4,
"nipple bar": 4,
"humiliation": 4,
"shrimp tie": 4,
"cum on clothes": 4,
"necklace": 4,
"ahegao": 4,
"dildo under panties": 4,
"tongue piercing": 4,
"circlet": 4,
"ungagged": 4,
"strapless dress": 3,
"fox mask": 3,
"anal": 3,
"pleated skirt": 3,
"armband": 3,
"center opening": 3,
"chastity belt": 3,
"checkered floor": 3,
"gold chain": 3,
"head wings": 3,
"playboy bunny": 3,
"bed sheet": 3,
"watermark": 3,
"looking to the side": 3,
"outline": 3,
"steaming body": 3,
"open jacket": 3,
"tail ornament": 3,
"ball": 3,
"bandaids on nipples": 3,
"heterochromia": 3,
"christmas": 3,
"gift box": 3,
"futon": 3,
"purple background": 3,
"saliva string": 3,
"school bag": 3,
"oral": 3,
"arm up": 3,
"armpit crease": 3,
"reverse outfit": 3,
"broken": 3,
"green nails": 3,
"red collar": 3,
"brown legwear": 3,
"unbuttoned": 3,
"denim": 3,
"pole": 3,
"eyebrows": 3,
"necktie between breasts": 3,
"wet panties": 3,
"uneven legwear": 3,
"folded": 3,
"human dog": 3,
"high ponytail": 3,
"dungeon": 3,
"electrostimulation": 3,
"saliva drooling": 3,
"red lips": 3,
"white skirt": 3,
"forehead": 3,
"full-face blush": 3,
"white jacket": 3,
"black belt": 3,
"red jacket": 3,
"eyeliner": 3,
"latex legwear": 3,
"purple dress": 3,
"dimples of venus": 3,
"maid apron": 3,
"green skirt": 3,
"eye contact": 3,
"door": 3,
"feet up": 3,
"white collar": 3,
"grass": 3,
"tree": 3,
"blue panties": 3,
"bracelet": 3,
"crotchless": 3,
"crotchless pantyhose": 3,
"licking": 3,
"exhibitionism": 3,
"empty eyes": 3,
"curtains": 3,
"kimono": 3,
"latex leotard": 3,
"ass grab": 3,
"highleg panties": 3,
"red belt": 3,
"underboob": 3,
"blue headwear": 3,
"sleeveless shirt": 3,
"bodystocking": 3,
"from below": 3,
"hanging breasts": 3,
"red neckerchief": 3,
"butterfly": 3,
"mirror": 3,
"toe scrunch": 3,
"hands up": 3,
"flat chest": 3,
"rope walking": 3,
"layered gags": 3,
"pantyhose pull": 3,
"food": 3,
"reverse prayer": 3,
"cum on lower body": 3,
"striped thighhighs": 3,
"female masturbation": 3,
"pink collar": 3,
"navel piercing": 3,
"orgasm": 3,
"pussy juice puddle": 3,
"forced": 3,
"constricted pupils": 3,
"pink bra": 3,
"sitting on chest": 3,
"strap slip": 3,
"brooch": 3,
"purple hairband": 3,
"purple leotard": 3,
"red skirt": 3,
"red panties": 3,
"wide-eyed": 3,
"gold trim": 3,
"headphones": 3,
"gradient": 2,
"side slit": 2,
"heels": 2,
"cage": 2,
"puddle": 2,
"underbust": 2,
"bottomless": 2,
"checkered": 2,
"microskirt": 2,
"shackles": 2,
"hetero": 2,
"web address": 2,
"competition swimsuit": 2,
"black ribbon": 2,
"soles": 2,
"linked gag": 2,
"single hair bun": 2,
"symbol-shaped pupils": 2,
"vest": 2,
"basketball": 2,
"jingle bell": 2,
"blue collar": 2,
"policewoman": 2,
"office lady": 2,
"nipples through clothes": 2,
"sparkling eyes": 2,
"restroom": 2,
"hook": 2,
"on table": 2,
"red hairband": 2,
"skin fang": 2,
"slit pupils": 2,
"reverse bunnysuit": 2,
"string bikini": 2,
"shooting star": 2,
"snowing": 2,
"pink lips": 2,
"broom": 2,
"full moon": 2,
"moon": 2,
"key": 2,
"blue bikini": 2,
"censored": 2,
"hand on another": 2,
"pencil skirt": 2,
"arm garter": 2,
"arm strap": 2,
"torn skirt": 2,
"cropped legs": 2,
"green sweater": 2,
"ribbed sweater": 2,
"turtleneck sweater": 2,
"blurry foreground": 2,
"on ground": 2,
"belt buckle": 2,
"padded walls": 2,
"black one-piece swimsuit": 2,
"iron cross": 2,
"leg tattoo": 2,
"strap": 2,
"shorts pull": 2,
"visor cap": 2,
"dental gag": 2,
"slave tattoo": 2,
"red necktie": 2,
"nurse": 2,
"nurse cap": 2,
"on chair": 2,
"red shirt": 2,
"red sweater": 2,
"tied to chair": 2,
"hanging": 2,
"pink bowtie": 2,
"pink shirt": 2,
"red gemstone": 2,
"purple bra": 2,
"purple panties": 2,
"single shoe": 2,
"striped bow": 2,
"hands on own chest": 2,
"own hands together": 2,
"legbinder": 2,
"crown": 2,
"leash pull": 2,
"riding crop": 2,
"tray": 2,
"white apron": 2,
"crotch": 2,
"green bow": 2,
"green background": 2,
"headgear": 2,
"hat ribbon": 2,
"black shorts": 2,
"kiss": 2,
"remote control": 2,
"red flower": 2,
"leg belt": 2,
"mismatched legwear": 2,
"nature": 2,
"on grass": 2,
"armor": 2,
"tickling": 2,
"cowbell": 2,
"white blouse": 2,
"clitoral stimulation": 2,
"stomach cutout": 2,
"black swimsuit": 2,
"petite": 2,
"nun": 2,
"multiple condoms": 2,
"arm belt": 2,
"chest harness": 2,
"micro panties": 2,
"shared object insertion": 2,
"pink umbrella": 2,
"umbrella": 2,
"plug gag": 2,
"prison clothes": 2,
"bridal gauntlets": 2,
"cardigan": 2,
"milk": 2,
"midriff peek": 2,
"eyes visible through hair": 2,
"fishnet pantyhose": 2,
"red bowtie": 2,
"black garter belt": 2,
"multiple tails": 2,
"surgical mask": 2,
"blue jacket": 2,
"nipple tag": 2,
"strappado": 2,
"eyebrows hidden by hair": 2,
"nipple chain": 2,
"bike shorts": 2,
"high-waist skirt": 2,
"suspender skirt": 2,
"cum on stomach": 2,
"purple gloves": 2,
"wooden wall": 2,
"latex gloves": 2,
"in locker": 2,
"locker": 2,
"shoulder blades": 2,
"hoodie": 2,
"masturbation": 2,
"white bikini": 2,
"white one-piece swimsuit": 2,
"bruise": 2,
"stocks": 2,
"denim shorts": 2,
"leashed to another": 2,
"holding whip": 2,
"mouth veil": 2,
"patent heels": 2,
"leaning back": 2,
"stripper pole": 2,
"linked nipples": 2,
"nipple weights": 2,
"tight clothes": 2,
"skirt pull": 2,
"single earring": 2,
"clothing aside": 2,
"cuffs-to-collar": 2,
"bra pull": 2,
"wide sleeves": 2,
"neck ribbon": 2,
"blazer": 2,
"floating hair": 2,
"mouth hold": 2,
"sleeveless sweater": 2,
"cross necklace": 2,
"blue pantyhose": 2,
"purple footwear": 2,
"sweater vest": 2,
"video camera": 2,
"armlet": 2,
"moaning": 2,
"red bra": 2,
"brown skirt": 2,
"blue shirt": 2,
"grey panties": 2,
"double insertion": 2,
"cum in mouth": 2,
"leg lift": 2,
"panties only": 2,
"blue background": 2,
"gyn chair": 2,
"white sleeves": 2,
"pussy juice drip": 2,
"yuri anal beads": 1,
"breasts outside": 1,
"hair flaps": 1,
"military": 1,
"military uniform": 1,
"mole": 1,
"mole under eye": 1,
"white jacket anal beads": 1,
"see through": 1,
"twintails bondage": 1,
"ball and chain restraint": 1,
"black wings": 1,
"closed mouth": 1,
"feathered wings": 1,
"slave": 1,
"swing": 1,
"wings bondage": 1,
"vibrator ass": 1,
"crossover": 1,
"w \\(arknights\\)": 1,
"motion blur": 1,
"school swimsuit": 1,
"tareme": 1,
"jewelry": 1,
"multicolored hair": 1,
"nail polish": 1,
"pill": 1,
"striped legwear": 1,
"two-tone hair": 1,
"yumemi riamu": 1,
"blue hairband": 1,
"shokuhou misaki": 1,
"bare arms": 1,
"bare legs": 1,
"dot nose": 1,
"frilled skirt": 1,
"frown": 1,
"plaid skirt": 1,
"spoken heart": 1,
"white outline": 1,
"bandaged arm": 1,
"bandaged leg": 1,
"animal hands": 1,
"animal ear fluff": 1,
"clenched teeth": 1,
"shadow": 1,
"ankle boots": 1,
"blue dress": 1,
"wing collar": 1,
"twitter username": 1,
"yellow ribbon": 1,
"clock eyes": 1,
"frilled pillow": 1,
"tokisaki kurumi": 1,
"motion lines": 1,
"short sleeves": 1,
"tied hair": 1,
"hand up": 1,
"torn bodysuit": 1,
"jeans": 1,
"pee": 1,
"peeing": 1,
"tank top": 1,
"eyepatch": 1,
"thong leotard": 1,
"sketch": 1,
"waist apron": 1,
"christmas tree": 1,
"perky breasts": 1,
"corpse": 1,
"pelvic curtain": 1,
"red nails": 1,
"vibrator in thigh strap": 1,
"wine": 1,
"panties aside": 1,
"thigh bands": 1,
"red rose": 1,
"graffiti": 1,
"green dress": 1,
"bow bra": 1,
"hanged": 1,
"nipple torture": 1
}
},
"ss_adaptive_noise_scale": "None",
"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_dataset_dirs": {
"bondage_v05": {
"n_repeats": 2,
"img_count": 694
}
},
"ss_datasets": "[{\"is_dreambooth\": true, \"batch_size_per_device\": 2, \"num_train_images\": 1388, \"num_reg_images\": 0, \"resolution\": [512, 512], \"enable_bucket\": true, \"min_bucket_reso\": 384, \"max_bucket_reso\": 768, \"tag_frequency\": {\"bondage_v05\": {\"bondage\": 694, \"animal ears\": 99, \"arms up\": 57, \"ball gag\": 308, \"bangs\": 163, \"bare shoulders\": 19, \"blindfold\": 108, \"blue eyes\": 143, \"blush\": 441, \"bound ankles\": 31, \"bound arms\": 36, \"bound legs\": 30, \"bound wrists\": 31, \"box tie\": 110, \"breast bondage\": 28, \"chained\": 9, \"cloth gag\": 107, \"covered navel\": 39, \"crotch rope\": 200, \"dress\": 70, \"drooling\": 78, \"gag\": 461, \"gagged\": 362, \"gloves\": 129, \"gradient\": 2, \"gradient background\": 20, \"long hair\": 394, \"long sleeves\": 50, \"looking at viewer\": 355, \"medium breasts\": 163, \"nipples\": 295, \"panties\": 166, \"red rope\": 152, \"restrained\": 364, \"rope\": 271, \"saliva\": 167, \"saliva trail\": 19, \"shibari\": 338, \"shibari over clothes\": 201, \"side slit\": 2, \"skindentation\": 143, \"strapless dress\": 3, \"strapless leotard\": 30, \"suspension\": 91, \"arms behind back\": 364, \"bandages\": 13, \"black legwear\": 39, \"blonde hair\": 96, \"dildo\": 62, \"eyebrows visible through hair\": 109, \"femdom\": 17, \"fox mask\": 3, \"frogtie\": 76, \"heart\": 41, \"improvised gag\": 146, \"indoors\": 82, \"large breasts\": 25, \"multiple girls\": 108, \"ponytail\": 52, \"pussy juice\": 94, \"sex toy\": 216, \"spreader bar\": 65, \"tattoo\": 31, \"teeth\": 51, \"thighhighs\": 237, \"underwear\": 174, \"vaginal\": 48, \"yellow eyes\": 37, \"yuri anal beads\": 1, \"hair ornament\": 149, \"kneeling\": 36, \"pantyhose\": 93, \"purple eyes\": 105, \"short hair\": 104, \"white pantyhose\": 12, \"wiffle gag\": 79, \"2girls\": 100, \"anal\": 3, \"anal beads\": 23, \"anal object insertion\": 38, \"black blindfold\": 16, \"black footwear\": 9, \"black hair\": 107, \"blurry background\": 25, \"breasts outside\": 1, \"brown eyes\": 70, \"cameltoe\": 26, \"collarbone\": 82, \"couch\": 8, \"covered eyes\": 9, \"facing viewer\": 7, \"hair flaps\": 1, \"heels\": 2, \"military\": 1, \"military uniform\": 1, \"mole\": 1, \"mole under eye\": 1, \"object insertion\": 75, \"open mouth\": 116, \"pillow\": 30, \"pleated skirt\": 3, \"pussy\": 92, \"ribbon\": 68, \"shirt\": 88, \"shoes\": 36, \"sitting\": 73, \"skirt\": 97, \"swept bangs\": 5, \"uniform\": 6, \"white bow\": 4, \"white jacket anal beads\": 1, \"ahoge\": 34, \"armband\": 3, \"black gloves\": 36, \"black panties\": 24, \"black thighhighs\": 62, \"cage\": 2, \"center opening\": 3, \"chastity belt\": 3, \"collar\": 204, \"elbow gloves\": 57, \"full body\": 124, \"high heels\": 55, \"lock\": 10, \"lying\": 102, \"navel\": 179, \"on back\": 66, \"padlock\": 9, \"partially visible vulva\": 5, \"pink hair\": 52, \"prison\": 8, \"puddle\": 2, \"shiny clothes\": 16, \"spread legs\": 92, \"stomach\": 52, \"thighs\": 85, \"underbust\": 2, \"bottomless\": 2, \"braid\": 38, \"checkered\": 2, \"checkered floor\": 3, \"garter belt\": 13, \"hair between eyes\": 137, \"lingerie\": 9, \"no panties\": 18, \"red hair\": 43, \"see through\": 1, \"twin braids\": 5, \"twintails bondage\": 1, \"black skirt\": 29, \"hat\": 30, \"microskirt\": 2, \"peaked cap\": 4, \"twintails\": 79, \"white gloves\": 21, \"white panties\": 60, \"animal collar\": 15, \"ball and chain restraint\": 1, \"belt\": 25, \"black collar\": 28, \"black wings\": 1, \"bondage outfit\": 18, \"broken chain\": 8, \"buckle\": 6, \"chain\": 119, \"closed mouth\": 1, \"cuffs\": 102, \"feathered wings\": 1, \"gold chain\": 3, \"handcuffs\": 57, \"harness\": 33, \"head wings\": 3, \"leash\": 79, \"metal collar\": 16, \"shackles\": 2, \"slave\": 1, \"sweat\": 63, \"swing\": 1, \"vaginal object insertion\": 46, \"viewer holding leash\": 12, \"wings bondage\": 1, \"ass\": 102, \"black leotard\": 25, \"bow\": 66, \"bunnysuit\": 32, \"detached collar\": 26, \"fake animal ears\": 39, \"latex\": 52, \"leotard\": 58, \"playboy bunny\": 3, \"red footwear\": 4, \"strapless\": 30, \"vibrator ass\": 1, \"ankle cuffs\": 8, \"bed\": 40, \"bra\": 44, \"breath\": 8, \"crying\": 25, \"crying with eyes open\": 21, \"dutch angle\": 5, \"female ejaculation\": 5, \"garter straps\": 18, \"on bed\": 38, \"on side\": 24, \"pussy juice stain\": 4, \"tears\": 87, \"toes\": 40, \"white bra\": 8, \"white thighhighs\": 23, \"bed sheet\": 3, \"bedroom\": 7, \"grey skirt\": 18, \"ring gag\": 58, \"tape\": 126, \"tape gag\": 107, \"vibrator\": 180, \"watermark\": 3, \"chair\": 30, \"cleave gag\": 75, \"frills\": 5, \"grey background\": 25, \"half-closed eyes\": 7, \"no bra\": 44, \"no pants\": 14, \"red eyes\": 95, \"ribbon bondage\": 32, \"scissors\": 4, \"short dress\": 17, \"signature\": 28, \"smile\": 36, \"standing\": 59, \"tsurime\": 5, \"underwear only\": 6, \"white legwear\": 40, \"barefoot\": 81, \"black cape\": 4, \"brown belt\": 6, \"brown hair\": 106, \"cape\": 9, \"cutout gloves\": 5, \"fingerless gloves\": 17, \"hogtie\": 8, \"legs up\": 16, \"on stomach\": 10, \"red dress\": 9, \"sidelocks\": 48, \"artist name\": 18, \"hetero\": 2, \"small breasts\": 97, \"solo focus\": 6, \"web address\": 2, \"bit gag\": 49, \"crossover\": 1, \"horns\": 25, \"latex bodysuit\": 24, \"silver hair\": 17, \"torn clothes\": 47, \"torn legwear\": 5, \"w \\\\(arknights\\\\)\": 1, \"clothes pull\": 36, \"dress lift\": 4, \"wooden horse\": 17, \"blue swimsuit\": 4, \"buruma\": 6, \"competition swimsuit\": 2, \"day\": 8, \"depth of field\": 15, \"jacket\": 22, \"motion blur\": 1, \"neckerchief\": 14, \"one-piece swimsuit\": 18, \"outdoors\": 11, \"parted bangs\": 13, \"school swimsuit\": 1, \"tareme\": 1, \"white shirt\": 47, \"earrings\": 26, \"egg vibrator\": 28, \"jewelry\": 1, \"multicolored hair\": 1, \"nail polish\": 1, \"no shoes\": 42, \"open clothes\": 33, \"open shirt\": 18, \"pill\": 1, \"pink eyes\": 31, \"striped\": 12, \"striped legwear\": 1, \"two-tone hair\": 1, \"vibrator under clothes\": 43, \"yumemi riamu\": 1, \"elf\": 10, \"flower\": 24, \"hair flower\": 20, \"pointy ears\": 23, \"white flower\": 10, \"maid\": 16, \"maid headdress\": 22, \"one eye closed\": 12, \"pubic tattoo\": 27, \"tail\": 54, \"tile floor\": 9, \"trembling\": 16, \"vibrator in thighhighs\": 19, \"anus\": 16, \"black pantyhose\": 31, \"foot focus\": 6, \"hair ribbon\": 39, \"pink ribbon\": 8, \"purple hair\": 53, \"torn pantyhose\": 16, \"blue hairband\": 1, \"blue leotard\": 5, \"bowtie\": 20, \"highleg\": 29, \"highleg leotard\": 22, \"hitachi magic wand\": 18, \"rabbit ears\": 29, \"remote control vibrator\": 33, \"nipple clamps\": 25, \"shokuhou misaki\": 1, \"swimsuit\": 33, \"back\": 7, \"blue hair\": 56, \"detached sleeves\": 16, \"flying sweatdrops\": 4, \"from behind\": 24, \"simple background\": 89, \"thong\": 6, \"white background\": 74, \"bare arms\": 1, \"bare legs\": 1, \"black dress\": 16, \"black neckwear\": 10, \"black ribbon\": 2, \"bowl\": 6, \"dot nose\": 1, \"frilled skirt\": 1, \"frown\": 1, \"holding\": 20, \"leg up\": 11, \"looking to the side\": 3, \"outline\": 3, \"pink background\": 12, \"plaid skirt\": 1, \"see-through\": 24, \"spoken heart\": 1, \"white outline\": 1, \"crossed bangs\": 6, \"drill hair\": 16, \"grey eyes\": 9, \"on couch\": 7, \"soles\": 2, \"thigh strap\": 32, \"toeless legwear\": 7, \"twin drills\": 15, \"black bodysuit\": 14, \"bodysuit\": 30, \"vibrator cord\": 16, \"vibrator on nipple\": 23, \"vibrator under panties\": 24, \"bandaged arm\": 1, \"bandaged leg\": 1, \"bandaid\": 6, \"covered nipples\": 7, \"barcode\": 6, \"character watermark\": 9, \"clitoris\": 7, \"cat ears\": 29, \"grey hair\": 20, \"armpits\": 37, \"hood\": 4, \"mask\": 8, \"nose blush\": 34, \"torn dress\": 6, \"animal hands\": 1, \"bell\": 11, \"cat tail\": 16, \"neck bell\": 7, \"nude\": 105, \"breast press\": 19, \"fox ears\": 14, \"fox tail\": 7, \"green eyes\": 49, \"hair bun\": 9, \"linked gag\": 2, \"orange eyes\": 12, \"shiny skin\": 17, \"sideboob\": 15, \"single hair bun\": 2, \"taped hands\": 6, \"angry\": 11, \"arms behind head\": 18, \"body writing\": 9, \"dilation tape\": 4, \"spread pussy\": 6, \"steaming body\": 3, \"uncensored\": 54, \"double bun\": 5, \"open jacket\": 3, \"school uniform\": 39, \"black background\": 8, \"covered erect nipples\": 20, \"highleg swimsuit\": 4, \"white headwear\": 6, \"animal ear fluff\": 1, \"cat girl\": 7, \"crown braid\": 4, \"emilia \\\\(re:zero\\\\)\": 4, \"fake tail\": 12, \"tail ornament\": 3, \"symbol-shaped pupils\": 2, \"clenched teeth\": 1, \"collared shirt\": 10, \"miniskirt\": 25, \"two side up\": 13, \"vest\": 2, \"cum\": 29, \"cum on breasts\": 9, \"facial\": 6, \"night\": 8, \"aftersex\": 10, \"cum in pussy\": 9, \"cum on body\": 15, \"cumdrip\": 10, \"lactation\": 8, \"tongue\": 35, \"tongue out\": 29, \"white hair\": 28, \"side ponytail\": 11, \"condom\": 17, \"female focus\": 49, \"from above\": 21, \"used condom\": 6, \"skin tight\": 16, \"cowboy shot\": 26, \"hairclip\": 35, \"tiles\": 12, \"ball\": 3, \"bandaids on nipples\": 3, \"basketball\": 2, \"heart pasties\": 6, \"school chair\": 4, \"rabbit tail\": 13, \"shadow\": 1, \"wrist cuffs\": 6, \"ankle boots\": 1, \"blue dress\": 1, \"boots\": 25, \"from side\": 18, \"knee boots\": 4, \"wing collar\": 1, \"twitter username\": 1, \"yellow ribbon\": 1, \"clock eyes\": 1, \"frilled pillow\": 1, \"heterochromia\": 3, \"tokisaki kurumi\": 1, \"shiny\": 7, \"motion lines\": 1, \"short sleeves\": 1, \"tied hair\": 1, \"box\": 21, \"christmas\": 3, \"gift box\": 3, \"heart hair ornament\": 5, \"in box\": 15, \"in container\": 16, \"jingle bell\": 2, \"naked ribbon\": 5, \"red ribbon\": 12, \"virtual youtuber\": 26, \"blue collar\": 2, \"choker\": 30, \"heavy breathing\": 8, \"legs together\": 19, \"necktie\": 8, \"policewoman\": 2, \"asymmetrical legwear\": 9, \"bound together\": 23, \"single thighhigh\": 8, \"wide hips\": 5, \"futon\": 3, \"cleft of venus\": 38, \"closed eyes\": 16, \"black bow\": 9, \"standing on one leg\": 11, \"cellphone\": 7, \"office lady\": 2, \"phone\": 7, \"socks\": 24, \"nipple piercing\": 38, \"piercing\": 47, \"bikini\": 21, \"butt plug\": 11, \"duct tape\": 6, \"gluteal fold\": 14, \"legs\": 17, \"micro bikini\": 5, \"nipples through clothes\": 2, \"purple background\": 3, \"saliva string\": 3, \"sparkling eyes\": 2, \"sweatdrop\": 12, \"tape bondage\": 9, \"thick thighs\": 9, \"thigh gap\": 15, \"whip\": 6, \"bitchsuit\": 5, \"bag\": 4, \"embarrassed\": 15, \"knees up\": 4, \"on floor\": 17, \"restroom\": 2, \"school bag\": 3, \"thighband pantyhose\": 14, \"tile wall\": 4, \"topless\": 20, \"leaning forward\": 9, \"black bowtie\": 4, \"cleavage\": 56, \"hook\": 2, \"squatting\": 13, \"on table\": 2, \"oral\": 3, \"table\": 5, \"yuri\": 24, \"bow panties\": 11, \"heart tattoo\": 5, \"heart-shaped pupils\": 20, \"arm up\": 3, \"armpit crease\": 3, \"fangs\": 5, \"hairband\": 22, \"hand up\": 1, \"head tilt\": 6, \"medium hair\": 28, \"pumps\": 6, \"red background\": 4, \"red hairband\": 2, \"red leotard\": 4, \"side braid\": 4, \"single braid\": 5, \"skin fang\": 2, \"slit pupils\": 2, \"space\": 4, \"bathroom\": 4, \"brick wall\": 4, \"blue bow\": 6, \"breasts apart\": 8, \"closet\": 5, \"glasses\": 10, \"hair bow\": 20, \"meme attire\": 4, \"reverse bunnysuit\": 2, \"reverse outfit\": 3, \"anchor\": 5, \"belt collar\": 9, \"broken\": 3, \"string bikini\": 2, \"window\": 10, \"green nails\": 3, \"toenail polish\": 11, \"toenails\": 14, \"night sky\": 4, \"o-ring\": 9, \"shooting star\": 2, \"sky\": 5, \"snowing\": 2, \"black bra\": 12, \"pink lips\": 2, \"black choker\": 20, \"black headwear\": 5, \"broom\": 2, \"full moon\": 2, \"moon\": 2, \"witch hat\": 11, \"fishnets\": 8, \"butterfly hair ornament\": 6, \"nipple rings\": 13, \"crop top\": 8, \"key\": 2, \"pants\": 4, \"dildo gag\": 7, \"blue bikini\": 2, \"blurry\": 19, \"bra lift\": 5, \"censored\": 2, \"chalkboard\": 5, \"classroom\": 5, \"desk\": 5, \"hand on another\": 2, \"panties under pantyhose\": 13, \"pencil skirt\": 2, \"red collar\": 3, \"brown legwear\": 3, \"arm garter\": 2, \"arm strap\": 2, \"breasts out\": 29, \"white leotard\": 6, \"black socks\": 11, \"orange hair\": 22, \"unbuttoned\": 3, \"wet\": 6, \"wet clothes\": 5, \"torn bodysuit\": 1, \"torn shirt\": 4, \"torn skirt\": 2, \"cropped legs\": 2, \"denim\": 3, \"forced orgasm\": 17, \"green sweater\": 2, \"jeans\": 1, \"panty pull\": 7, \"pole\": 3, \"ribbed sweater\": 2, \"sweater\": 8, \"sweater lift\": 4, \"turtleneck\": 6, \"turtleneck sweater\": 2, \"blurry foreground\": 2, \"on ground\": 2, \"red bow\": 6, \"sleeveless\": 18, \"sleeveless dress\": 7, \"tearing up\": 19, \"belt buckle\": 2, \"padded walls\": 2, \"straitjacket\": 8, \"eyebrows\": 3, \"necktie between breasts\": 3, \"wet panties\": 3, \"pee\": 1, \"peeing\": 1, \"uneven legwear\": 3, \"pink panties\": 9, \"black one-piece swimsuit\": 2, \"iron cross\": 2, \"leg tattoo\": 2, \"water\": 4, \"armbinder\": 15, \"monoglove\": 12, \"strap\": 2, \"folded\": 3, \"human dog\": 3, \"pet bowl\": 5, \"high ponytail\": 3, \"shirt lift\": 9, \"shorts\": 10, \"shorts pull\": 2, \"tank top\": 1, \"visor cap\": 2, \"clitoris piercing\": 6, \"dental gag\": 2, \"pussy piercing\": 6, \"slave tattoo\": 2, \"red necktie\": 2, \"apron\": 7, \"nurse\": 2, \"nurse cap\": 2, \"stomach tattoo\": 4, \"anal tail\": 6, \"brown pantyhose\": 5, \"dungeon\": 3, \"electrostimulation\": 3, \"japanese clothes\": 9, \"saliva drooling\": 3, \"torture\": 5, \"whip marks\": 5, \"on chair\": 2, \"pantyshot\": 4, \"red shirt\": 2, \"red sweater\": 2, \"tied to chair\": 2, \"eyepatch\": 1, \"red lips\": 3, \"corset\": 8, \"hanging\": 2, \"harness gag\": 8, \"knees together feet apart\": 4, \"pink bow\": 4, \"pink bowtie\": 2, \"pink shirt\": 2, \"red gemstone\": 2, \"white skirt\": 3, \"eyelashes\": 4, \"forehead\": 3, \"floor\": 4, \"wooden floor\": 16, \"fox girl\": 6, \"gym uniform\": 4, \"full-face blush\": 3, \"white jacket\": 3, \"kneehighs\": 10, \"purple bra\": 2, \"purple panties\": 2, \"single shoe\": 2, \"striped bow\": 2, \"green hair\": 6, \"hands on own chest\": 2, \"own hands together\": 2, \"black belt\": 3, \"red jacket\": 3, \"legbinder\": 2, \"thigh boots\": 10, \"breastless clothes\": 4, \"crown\": 2, \"ear piercing\": 8, \"eyeliner\": 3, \"latex legwear\": 3, \"thong leotard\": 1, \"purple dress\": 3, \"leash pull\": 2, \"dimples of venus\": 3, \"revealing clothes\": 5, \"riding crop\": 2, \"sketch\": 1, \"stiletto heels\": 5, \"hair cones\": 5, \"black bikini\": 7, \"blunt bangs\": 29, \"purple ribbon\": 5, \"transparent background\": 5, \"black hairband\": 6, \"tray\": 2, \"megumin\": 6, \"maid apron\": 3, \"waist apron\": 1, \"white apron\": 2, \"clothing cutout\": 10, \"crotch\": 2, \"green bow\": 2, \"green skirt\": 3, \"skirt lift\": 9, \"green background\": 2, \"double penetration\": 8, \"headgear\": 2, \"multiple views\": 4, \"beret\": 5, \"blue skirt\": 12, \"hat ribbon\": 2, \"black shorts\": 2, \"midriff\": 10, \"scarf\": 4, \"eye contact\": 3, \"kiss\": 2, \"school desk\": 4, \"bent over\": 6, \"door\": 3, \"feet up\": 3, \"remote control\": 2, \"red flower\": 2, \"asymmetrical docking\": 4, \"linked piercing\": 4, \"white socks\": 4, \"chastity device\": 4, \"head on pillow\": 4, \"leg belt\": 2, \"kidnapped\": 10, \"straight hair\": 4, \"white collar\": 3, \"grass\": 3, \"mismatched legwear\": 2, \"nature\": 2, \"on grass\": 2, \"tree\": 3, \"armor\": 2, \"black jacket\": 4, \"tickling\": 2, \"cowbell\": 2, \"m legs\": 6, \"blue panties\": 3, \"white blouse\": 2, \"white dress\": 7, \"yellow neckerchief\": 4, \"bracelet\": 3, \"cleavage cutout\": 6, \"fingering\": 6, \"grabbing\": 6, \"grabbing another\": 9, \"clitoral stimulation\": 2, \"crotchless\": 3, \"crotchless pantyhose\": 3, \"stomach cutout\": 2, \"tiptoes\": 4, \"black swimsuit\": 2, \"licking\": 3, \"coat\": 4, \"exhibitionism\": 3, \"petite\": 2, \"nun\": 2, \"multiple condoms\": 2, \"arm belt\": 2, \"chest harness\": 2, \"gag around neck\": 9, \"micro panties\": 2, \"empty eyes\": 3, \"veil\": 5, \"curtains\": 3, \"demon horns\": 5, \"shared object insertion\": 2, \"kimono\": 3, \"pink umbrella\": 2, \"sandals\": 4, \"umbrella\": 2, \"latex leotard\": 3, \"plug gag\": 2, \"brown thighhighs\": 5, \"high heel boots\": 4, \"prison clothes\": 2, \"bridal gauntlets\": 2, \"ass grab\": 3, \"black shirt\": 6, \"highleg panties\": 3, \"cardigan\": 2, \"upskirt\": 5, \"hair scrunchie\": 4, \"cum on hair\": 5, \"milk\": 2, \"midriff peek\": 2, \"stirrup legwear\": 4, \"eyes visible through hair\": 2, \"fishnet pantyhose\": 2, \"red bowtie\": 2, \"black garter belt\": 2, \"christmas tree\": 1, \"red belt\": 3, \"torn thighhighs\": 5, \"blue bra\": 4, \"underboob\": 3, \"blue headwear\": 3, \"multiple tails\": 2, \"perky breasts\": 1, \"sleeveless shirt\": 3, \"dress shirt\": 4, \"bodystocking\": 3, \"covered mouth\": 5, \"mouth mask\": 4, \"nipple bar\": 4, \"surgical mask\": 2, \"twins\": 6, \"blue jacket\": 2, \"from below\": 3, \"anal hook\": 6, \"hanging breasts\": 3, \"red neckerchief\": 3, \"butterfly\": 3, \"mirror\": 3, \"toe scrunch\": 3, \"nipple tag\": 2, \"facial mark\": 5, \"hands up\": 3, \"strappado\": 2, \"corpse\": 1, \"eyebrows hidden by hair\": 2, \"upper body\": 5, \"nipple chain\": 2, \"striped panties\": 5, \"flat chest\": 3, \"bike shorts\": 2, \"humiliation\": 4, \"high-waist skirt\": 2, \"rope walking\": 3, \"suspender skirt\": 2, \"cum on stomach\": 2, \"cum on upper body\": 6, \"purple gloves\": 2, \"wooden wall\": 2, \"latex gloves\": 2, \"layered gags\": 3, \"pantyhose pull\": 3, \"in locker\": 2, \"locker\": 2, \"food\": 3, \"shoulder blades\": 2, \"hoodie\": 2, \"shrimp tie\": 4, \"reverse prayer\": 3, \"cum on clothes\": 4, \"cum on lower body\": 3, \"necklace\": 4, \"striped thighhighs\": 3, \"female masturbation\": 3, \"masturbation\": 2, \"ahegao\": 4, \"white bikini\": 2, \"white footwear\": 6, \"white one-piece swimsuit\": 2, \"dildo under panties\": 4, \"bruise\": 2, \"chain leash\": 7, \"stocks\": 2, \"pink collar\": 3, \"navel piercing\": 3, \"denim shorts\": 2, \"orgasm\": 3, \"leashed to another\": 2, \"linked collar\": 6, \"holding whip\": 2, \"pussy juice puddle\": 3, \"forced\": 3, \"constricted pupils\": 3, \"mouth veil\": 2, \"pelvic curtain\": 1, \"tongue piercing\": 4, \"patent heels\": 2, \"leaning back\": 2, \"red nails\": 1, \"stripper pole\": 2, \"linked nipples\": 2, \"nipple weights\": 2, \"vibrator in thigh strap\": 1, \"pink bra\": 3, \"scared\": 10, \"sitting on chest\": 3, \"strap slip\": 3, \"tight clothes\": 2, \"skirt pull\": 2, \"single earring\": 2, \"wine\": 1, \"brooch\": 3, \"circlet\": 4, \"clothing aside\": 2, \"purple hairband\": 3, \"purple leotard\": 3, \"cuffs-to-collar\": 2, \"bra pull\": 2, \"red skirt\": 3, \"wide sleeves\": 2, \"neck ribbon\": 2, \"blazer\": 2, \"floating hair\": 2, \"red panties\": 3, \"panties aside\": 1, \"mouth hold\": 2, \"thigh bands\": 1, \"sleeveless sweater\": 2, \"cross necklace\": 2, \"blue pantyhose\": 2, \"purple footwear\": 2, \"smartphone\": 5, \"sweater vest\": 2, \"video camera\": 2, \"ungagged\": 4, \"wide-eyed\": 3, \"armlet\": 2, \"gold trim\": 3, \"moaning\": 2, \"red bra\": 2, \"brown skirt\": 2, \"headphones\": 3, \"blue shirt\": 2, \"grey panties\": 2, \"red rose\": 1, \"double insertion\": 2, \"cum in mouth\": 2, \"leg lift\": 2, \"panties only\": 2, \"blue background\": 2, \"graffiti\": 1, \"gyn chair\": 2, \"white sleeves\": 2, \"pussy juice drip\": 2, \"green dress\": 1, \"bow bra\": 1, \"hanged\": 1, \"nipple torture\": 1}}, \"bucket_info\": {\"buckets\": {\"0\": {\"resolution\": [336, 768], \"count\": 4}, \"1\": {\"resolution\": [360, 720], \"count\": 76}, \"2\": {\"resolution\": [376, 696], \"count\": 78}, \"3\": {\"resolution\": [392, 664], \"count\": 10}, \"4\": {\"resolution\": [416, 624], \"count\": 752}, \"5\": {\"resolution\": [464, 560], \"count\": 242}, \"6\": {\"resolution\": [512, 512], \"count\": 62}, \"7\": {\"resolution\": [560, 464], \"count\": 54}, \"8\": {\"resolution\": [624, 416], \"count\": 86}, \"9\": {\"resolution\": [696, 376], \"count\": 12}, \"10\": {\"resolution\": [720, 360], \"count\": 12}}, \"mean_img_ar_error\": 0.002635984649960225}, \"subsets\": [{\"img_count\": 694, \"num_repeats\": 2, \"color_aug\": false, \"flip_aug\": false, \"random_crop\": false, \"shuffle_caption\": true, \"keep_tokens\": 1, \"image_dir\": \"bondage_v05\", \"class_tokens\": null, \"is_reg\": false}]}]",
"ss_epoch": "7",
"ss_face_crop_aug_range": "None",
"ss_full_fp16": "False",
"ss_gradient_accumulation_steps": "1",
"ss_gradient_checkpointing": "False",
"ss_learning_rate": "0.0001",
"ss_lowram": "True",
"ss_lr_scheduler": "cosine_with_restarts",
"ss_lr_warmup_steps": "277",
"ss_max_grad_norm": "1.0",
"ss_max_token_length": "225",
"ss_max_train_steps": "5552",
"ss_min_snr_gamma": "5.0",
"ss_mixed_precision": "fp16",
"ss_multires_noise_discount": "0.3",
"ss_multires_noise_iterations": "None",
"ss_network_alpha": "8",
"ss_network_dim": "16",
"ss_network_dropout": "None",
"ss_network_module": "networks.lora",
"ss_new_sd_model_hash": "7eb674963a0d93fcead95905b4d658d1e94e9a36230c0c732f65c3f53d8888aa",
"ss_noise_offset": "None",
"ss_num_batches_per_epoch": "694",
"ss_num_epochs": "8",
"ss_num_reg_images": "0",
"ss_optimizer": "bitsandbytes.optim.adamw.AdamW8bit",
"ss_output_name": "bondage_v05",
"ss_prior_loss_weight": "1.0",
"ss_scale_weight_norms": "None",
"ss_sd_model_hash": "a37e54ea",
"ss_sd_scripts_commit_hash": "9a67e0df390033a89f17e70df5131393692c2a55",
"ss_seed": "42",
"ss_session_id": "1910270490",
"ss_steps": "4858",
"ss_text_encoder_lr": "None",
"ss_training_comment": "None",
"ss_training_finished_at": "1700060717.7934864",
"ss_training_started_at": "1700057613.3115294",
"ss_unet_lr": "0.0001",
"ss_v2": "False",
"sshs_legacy_hash": "3fbdd004",
"sshs_model_hash": "cb58af62fc8f176c24cd121e2e3583395a802d8ae9c20963c6d97448ed66476f"
} |