File size: 108,936 Bytes
fcddc55 |
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 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 |
{
"txt2img/Prompt/visible": true,
"txt2img/Prompt/value": "masterpiece, best quality, amazing quality, very aesthetic, absurdres, newest\n\n,1girl, alternate costume, s.a.t.8 \\(girls' frontline\\)\n\n,indoors\n\n,masterpiece, best quality, amazing quality, very aesthetic, absurdres, newest",
"txt2img/Negative prompt/visible": true,
"txt2img/Negative prompt/value": "lowres, (worst quality, bad quality:1.2), bad anatomy, sketch, jpeg artifacts, signature, watermark, old, oldest, censored, bar_censor, (pregnant), chibi, loli, simple background, conjoined",
"txt2img/Interrupt/visible": true,
"txt2img/Skip/visible": true,
"txt2img/Interrupting.../visible": true,
"txt2img/Generate/visible": true,
"txt2img/โ๏ธ/visible": true,
"txt2img/๐๏ธ/visible": true,
"txt2img/๐/visible": true,
"txt2img/Styles/visible": true,
"txt2img/Styles/value": [],
"txt2img/๐๏ธ/visible": true,
"txt2img/๐/visible": true,
"txt2img/๐/visible": true,
"txt2img/Close/visible": true,
"txt2img/Tabs@txt2img_extra_tabs/selected": null,
"customscript/sampler.py/txt2img/Sampling method/visible": true,
"customscript/sampler.py/txt2img/Sampling method/value": "Euler a",
"customscript/sampler.py/txt2img/Schedule type/visible": true,
"customscript/sampler.py/txt2img/Schedule type/value": "SGM Uniform",
"customscript/sampler.py/txt2img/Sampling steps/visible": true,
"customscript/sampler.py/txt2img/Sampling steps/value": 30,
"customscript/sampler.py/txt2img/Sampling steps/minimum": 1,
"customscript/sampler.py/txt2img/Sampling steps/maximum": 150,
"customscript/sampler.py/txt2img/Sampling steps/step": 1,
"txt2img/Hires. fix/visible": true,
"txt2img/Hires. fix/value": false,
"txt2img/Upscaler/visible": true,
"txt2img/Upscaler/value": "Latent",
"txt2img/Hires steps/visible": true,
"txt2img/Hires steps/value": 0,
"txt2img/Hires steps/minimum": 0,
"txt2img/Hires steps/maximum": 150,
"txt2img/Hires steps/step": 1,
"txt2img/Denoising strength/visible": true,
"txt2img/Denoising strength/value": 0.7,
"txt2img/Denoising strength/minimum": 0.0,
"txt2img/Denoising strength/maximum": 1.0,
"txt2img/Denoising strength/step": 0.01,
"txt2img/Upscale by/visible": true,
"txt2img/Upscale by/value": 2.0,
"txt2img/Upscale by/minimum": 1.0,
"txt2img/Upscale by/maximum": 4.0,
"txt2img/Upscale by/step": 0.05,
"txt2img/Resize width to/visible": true,
"txt2img/Resize width to/value": 0,
"txt2img/Resize width to/minimum": 0,
"txt2img/Resize width to/maximum": 2048,
"txt2img/Resize width to/step": 8,
"txt2img/Resize height to/visible": true,
"txt2img/Resize height to/value": 0,
"txt2img/Resize height to/minimum": 0,
"txt2img/Resize height to/maximum": 2048,
"txt2img/Resize height to/step": 8,
"txt2img/Checkpoint/visible": true,
"txt2img/Checkpoint/value": "Use same checkpoint",
"txt2img/Hires sampling method/visible": true,
"txt2img/Hires sampling method/value": "Use same sampler",
"txt2img/Hires schedule type/visible": true,
"txt2img/Hires schedule type/value": "Use same scheduler",
"txt2img/Hires prompt/visible": true,
"txt2img/Hires prompt/value": "",
"txt2img/Hires negative prompt/visible": true,
"txt2img/Hires negative prompt/value": "",
"customscript/refiner.py/txt2img/Refiner/visible": true,
"customscript/refiner.py/txt2img/Refiner/value": false,
"customscript/refiner.py/txt2img/Checkpoint/visible": true,
"customscript/refiner.py/txt2img/Checkpoint/value": "",
"customscript/refiner.py/txt2img/Switch at/visible": true,
"customscript/refiner.py/txt2img/Switch at/value": 0.8,
"customscript/refiner.py/txt2img/Switch at/minimum": 0.01,
"customscript/refiner.py/txt2img/Switch at/maximum": 1.0,
"customscript/refiner.py/txt2img/Switch at/step": 0.01,
"txt2img/Width/visible": true,
"txt2img/Width/value": 1024,
"txt2img/Width/minimum": 64,
"txt2img/Width/maximum": 2048,
"txt2img/Width/step": 8,
"txt2img/Height/visible": true,
"txt2img/Height/value": 1024,
"txt2img/Height/minimum": 64,
"txt2img/Height/maximum": 2048,
"txt2img/Height/step": 8,
"txt2img/โ
/visible": true,
"txt2img/Batch count/visible": true,
"txt2img/Batch count/value": 1,
"txt2img/Batch count/minimum": 1,
"txt2img/Batch count/maximum": 100,
"txt2img/Batch count/step": 1,
"txt2img/Batch size/visible": true,
"txt2img/Batch size/value": 1,
"txt2img/Batch size/minimum": 1,
"txt2img/Batch size/maximum": 8,
"txt2img/Batch size/step": 1,
"txt2img/CFG Scale/visible": true,
"txt2img/CFG Scale/value": 5.0,
"txt2img/CFG Scale/minimum": 1.0,
"txt2img/CFG Scale/maximum": 30.0,
"txt2img/CFG Scale/step": 0.5,
"customscript/seed.py/txt2img/Seed/visible": true,
"customscript/seed.py/txt2img/Seed/value": -1,
"txt2img/๐ฒ๏ธ/visible": true,
"txt2img/โป๏ธ/visible": true,
"customscript/seed.py/txt2img/Extra/visible": true,
"customscript/seed.py/txt2img/Extra/value": false,
"customscript/seed.py/txt2img/Variation seed/visible": true,
"customscript/seed.py/txt2img/Variation seed/value": -1,
"customscript/seed.py/txt2img/Variation strength/visible": true,
"customscript/seed.py/txt2img/Variation strength/value": 0.0,
"customscript/seed.py/txt2img/Variation strength/minimum": 0,
"customscript/seed.py/txt2img/Variation strength/maximum": 1,
"customscript/seed.py/txt2img/Variation strength/step": 0.01,
"customscript/seed.py/txt2img/Resize seed from width/visible": true,
"customscript/seed.py/txt2img/Resize seed from width/value": 0,
"customscript/seed.py/txt2img/Resize seed from width/minimum": 0,
"customscript/seed.py/txt2img/Resize seed from width/maximum": 2048,
"customscript/seed.py/txt2img/Resize seed from width/step": 8,
"customscript/seed.py/txt2img/Resize seed from height/visible": true,
"customscript/seed.py/txt2img/Resize seed from height/value": 0,
"customscript/seed.py/txt2img/Resize seed from height/minimum": 0,
"customscript/seed.py/txt2img/Resize seed from height/maximum": 2048,
"customscript/seed.py/txt2img/Resize seed from height/step": 8,
"txt2img/Override settings/value": null,
"customscript/loractl.py/txt2img/Enable Dynamic Lora Weights/visible": true,
"customscript/loractl.py/txt2img/Enable Dynamic Lora Weights/value": false,
"customscript/loractl.py/txt2img/Plot the LoRA weight in all steps/visible": true,
"customscript/loractl.py/txt2img/Plot the LoRA weight in all steps/value": false,
"customscript/random_res_script.py/txt2img/Enable random resolution/visible": true,
"customscript/random_res_script.py/txt2img/Enable random resolution/value": false,
"customscript/random_res_script.py/txt2img/Model Type/visible": true,
"customscript/random_res_script.py/txt2img/Model Type/value": "SDXL",
"customscript/random_res_script.py/txt2img/Resolution Weight Mode/visible": true,
"customscript/random_res_script.py/txt2img/Resolution Weight Mode/value": "Equal Weights",
"customscript/random_res_script.py/txt2img/Minimum Dimension/visible": true,
"customscript/random_res_script.py/txt2img/Minimum Dimension/value": 832,
"customscript/random_res_script.py/txt2img/Minimum Dimension/minimum": 256,
"customscript/random_res_script.py/txt2img/Minimum Dimension/maximum": 3072,
"customscript/random_res_script.py/txt2img/Minimum Dimension/step": 8,
"customscript/random_res_script.py/txt2img/Maximum Dimension/visible": true,
"customscript/random_res_script.py/txt2img/Maximum Dimension/value": 1216,
"customscript/random_res_script.py/txt2img/Maximum Dimension/minimum": 256,
"customscript/random_res_script.py/txt2img/Maximum Dimension/maximum": 3072,
"customscript/random_res_script.py/txt2img/Maximum Dimension/step": 8,
"customscript/random_res_script.py/txt2img/Current Resolutions (width,height format)/visible": true,
"customscript/random_res_script.py/txt2img/Current Resolutions (width,height format)/value": "",
"txt2img/New Width/visible": true,
"txt2img/New Width/value": null,
"txt2img/New Height/visible": true,
"txt2img/New Height/value": null,
"txt2img/Add Resolution/visible": true,
"txt2img/Add from Aspect Ratio Preset/visible": true,
"txt2img/Add from Aspect Ratio Preset/value": null,
"txt2img/Target Megapixels/visible": true,
"txt2img/Target Megapixels/value": 0.5,
"txt2img/Target Megapixels/minimum": 0.1,
"txt2img/Target Megapixels/maximum": 2.0,
"txt2img/Target Megapixels/step": 0.1,
"txt2img/Add Preset Resolution/visible": true,
"txt2img/Reset to Defaults/visible": true,
"txt2img/Clear All/visible": true,
"txt2img/Sort by Size/visible": true,
"txt2img/Remove Resolutions > 1MP/visible": true,
"txt2img/Remove Resolutions < 0.3MP/visible": true,
"txt2img/ControlNet Unit 0/visible": true,
"txt2img/ControlNet Unit 0/value": false,
"txt2img/Input Directory/visible": true,
"txt2img/Input Directory/value": "",
"txt2img/Mask Directory/value": "",
"txt2img/Clear Images/visible": true,
"txt2img/New Canvas Width/visible": true,
"txt2img/New Canvas Width/value": 512,
"txt2img/New Canvas Width/minimum": 256,
"txt2img/New Canvas Width/maximum": 1024,
"txt2img/New Canvas Width/step": 64,
"txt2img/New Canvas Height/visible": true,
"txt2img/New Canvas Height/value": 512,
"txt2img/New Canvas Height/minimum": 256,
"txt2img/New Canvas Height/maximum": 1024,
"txt2img/New Canvas Height/step": 64,
"txt2img/Create New Canvas/visible": true,
"txt2img/Cancel/visible": true,
"txt2img/Enable/visible": true,
"txt2img/Enable/value": false,
"txt2img/Pixel Perfect/visible": true,
"txt2img/Pixel Perfect/value": false,
"txt2img/Allow Preview/visible": true,
"txt2img/Allow Preview/value": false,
"txt2img/Use Mask/visible": true,
"txt2img/Use Mask/value": false,
"txt2img/Preview as Input/value": false,
"txt2img/Control Type/visible": true,
"txt2img/Control Type/value": "All",
"txt2img/Preprocessor/visible": true,
"txt2img/Preprocessor/value": "None",
"txt2img/Model/visible": true,
"txt2img/Model/value": "None",
"txt2img/Control Weight/visible": true,
"txt2img/Control Weight/value": 1.0,
"txt2img/Control Weight/minimum": 0.0,
"txt2img/Control Weight/maximum": 2.0,
"txt2img/Control Weight/step": 0.05,
"txt2img/Starting Control Step/visible": true,
"txt2img/Starting Control Step/value": 0.0,
"txt2img/Starting Control Step/minimum": 0.0,
"txt2img/Starting Control Step/maximum": 1.0,
"txt2img/Starting Control Step/step": 0.01,
"txt2img/Ending Control Step/visible": true,
"txt2img/Ending Control Step/value": 1.0,
"txt2img/Ending Control Step/minimum": 0.0,
"txt2img/Ending Control Step/maximum": 1.0,
"txt2img/Ending Control Step/step": 0.01,
"txt2img/Preprocessor resolution/value": -1,
"txt2img/Preprocessor resolution/minimum": 64,
"txt2img/Preprocessor resolution/maximum": 2048,
"txt2img/Preprocessor resolution/step": 10,
"txt2img/Threshold A/value": -1,
"txt2img/Threshold A/minimum": 64,
"txt2img/Threshold A/maximum": 1024,
"txt2img/Threshold A/step": 1,
"txt2img/Threshold B/value": -1,
"txt2img/Threshold B/minimum": 64,
"txt2img/Threshold B/maximum": 1024,
"txt2img/Threshold B/step": 1,
"txt2img/Control Mode/visible": true,
"txt2img/Control Mode/value": "Balanced",
"txt2img/Resize Mode/visible": true,
"txt2img/Resize Mode/value": "Crop and Resize",
"txt2img/Hires-Fix Option/value": "Both",
"txt2img/Presets/visible": true,
"txt2img/Presets/value": "New Preset",
"txt2img/Preset name/visible": true,
"txt2img/Preset name/value": "",
"txt2img/ControlNet Unit 1/visible": true,
"txt2img/ControlNet Unit 1/value": false,
"txt2img/ControlNet Unit 2/visible": true,
"txt2img/ControlNet Unit 2/value": false,
"customscript/forge_dynamic_thresholding.py/txt2img/Enabled/visible": true,
"customscript/forge_dynamic_thresholding.py/txt2img/Enabled/value": false,
"customscript/forge_dynamic_thresholding.py/txt2img/Simple Mode/visible": true,
"customscript/forge_dynamic_thresholding.py/txt2img/Simple Mode/value": false,
"customscript/forge_dynamic_thresholding.py/txt2img/Mimic Scale/visible": true,
"customscript/forge_dynamic_thresholding.py/txt2img/Mimic Scale/value": 7.0,
"customscript/forge_dynamic_thresholding.py/txt2img/Mimic Scale/minimum": 0.0,
"customscript/forge_dynamic_thresholding.py/txt2img/Mimic Scale/maximum": 100.0,
"customscript/forge_dynamic_thresholding.py/txt2img/Mimic Scale/step": 0.5,
"customscript/forge_dynamic_thresholding.py/txt2img/Threshold Percentile/visible": true,
"customscript/forge_dynamic_thresholding.py/txt2img/Threshold Percentile/value": 1.0,
"customscript/forge_dynamic_thresholding.py/txt2img/Threshold Percentile/minimum": 0.0,
"customscript/forge_dynamic_thresholding.py/txt2img/Threshold Percentile/maximum": 1.0,
"customscript/forge_dynamic_thresholding.py/txt2img/Threshold Percentile/step": 0.01,
"customscript/forge_dynamic_thresholding.py/txt2img/Mimic Mode/visible": true,
"customscript/forge_dynamic_thresholding.py/txt2img/Mimic Mode/value": "Constant",
"customscript/forge_dynamic_thresholding.py/txt2img/Mimic Scale Min/visible": true,
"customscript/forge_dynamic_thresholding.py/txt2img/Mimic Scale Min/value": 0.0,
"customscript/forge_dynamic_thresholding.py/txt2img/Mimic Scale Min/minimum": 0.0,
"customscript/forge_dynamic_thresholding.py/txt2img/Mimic Scale Min/maximum": 100.0,
"customscript/forge_dynamic_thresholding.py/txt2img/Mimic Scale Min/step": 0.5,
"customscript/forge_dynamic_thresholding.py/txt2img/Cfg Mode/visible": true,
"customscript/forge_dynamic_thresholding.py/txt2img/Cfg Mode/value": "Constant",
"customscript/forge_dynamic_thresholding.py/txt2img/Cfg Scale Min/visible": true,
"customscript/forge_dynamic_thresholding.py/txt2img/Cfg Scale Min/value": 0.0,
"customscript/forge_dynamic_thresholding.py/txt2img/Cfg Scale Min/minimum": 0.0,
"customscript/forge_dynamic_thresholding.py/txt2img/Cfg Scale Min/maximum": 100.0,
"customscript/forge_dynamic_thresholding.py/txt2img/Cfg Scale Min/step": 0.5,
"customscript/forge_dynamic_thresholding.py/txt2img/Sched Val/visible": true,
"customscript/forge_dynamic_thresholding.py/txt2img/Sched Val/value": 1.0,
"customscript/forge_dynamic_thresholding.py/txt2img/Sched Val/minimum": 0.0,
"customscript/forge_dynamic_thresholding.py/txt2img/Sched Val/maximum": 100.0,
"customscript/forge_dynamic_thresholding.py/txt2img/Sched Val/step": 0.01,
"customscript/forge_dynamic_thresholding.py/txt2img/Separate Feature Channels/visible": true,
"customscript/forge_dynamic_thresholding.py/txt2img/Separate Feature Channels/value": "enable",
"customscript/forge_dynamic_thresholding.py/txt2img/Scaling Startpoint/visible": true,
"customscript/forge_dynamic_thresholding.py/txt2img/Scaling Startpoint/value": "MEAN",
"customscript/forge_dynamic_thresholding.py/txt2img/Variability Measure/visible": true,
"customscript/forge_dynamic_thresholding.py/txt2img/Variability Measure/value": "AD",
"customscript/forge_dynamic_thresholding.py/txt2img/Interpolate Phi/visible": true,
"customscript/forge_dynamic_thresholding.py/txt2img/Interpolate Phi/value": 1.0,
"customscript/forge_dynamic_thresholding.py/txt2img/Interpolate Phi/minimum": 0.0,
"customscript/forge_dynamic_thresholding.py/txt2img/Interpolate Phi/maximum": 1.0,
"customscript/forge_dynamic_thresholding.py/txt2img/Interpolate Phi/step": 0.01,
"customscript/forge_freeu.py/txt2img/Enabled/visible": true,
"customscript/forge_freeu.py/txt2img/Enabled/value": false,
"customscript/forge_freeu.py/txt2img/B1/visible": true,
"customscript/forge_freeu.py/txt2img/B1/value": 1.01,
"customscript/forge_freeu.py/txt2img/B1/minimum": 0,
"customscript/forge_freeu.py/txt2img/B1/maximum": 2,
"customscript/forge_freeu.py/txt2img/B1/step": 0.01,
"customscript/forge_freeu.py/txt2img/B2/visible": true,
"customscript/forge_freeu.py/txt2img/B2/value": 1.02,
"customscript/forge_freeu.py/txt2img/B2/minimum": 0,
"customscript/forge_freeu.py/txt2img/B2/maximum": 2,
"customscript/forge_freeu.py/txt2img/B2/step": 0.01,
"customscript/forge_freeu.py/txt2img/S1/visible": true,
"customscript/forge_freeu.py/txt2img/S1/value": 0.99,
"customscript/forge_freeu.py/txt2img/S1/minimum": 0,
"customscript/forge_freeu.py/txt2img/S1/maximum": 4,
"customscript/forge_freeu.py/txt2img/S1/step": 0.01,
"customscript/forge_freeu.py/txt2img/S2/visible": true,
"customscript/forge_freeu.py/txt2img/S2/value": 0.95,
"customscript/forge_freeu.py/txt2img/S2/minimum": 0,
"customscript/forge_freeu.py/txt2img/S2/maximum": 4,
"customscript/forge_freeu.py/txt2img/S2/step": 0.01,
"customscript/forge_sag.py/txt2img/Enabled/visible": true,
"customscript/forge_sag.py/txt2img/Enabled/value": false,
"customscript/forge_sag.py/txt2img/Scale/visible": true,
"customscript/forge_sag.py/txt2img/Scale/value": 0.5,
"customscript/forge_sag.py/txt2img/Scale/minimum": -2.0,
"customscript/forge_sag.py/txt2img/Scale/maximum": 5.0,
"customscript/forge_sag.py/txt2img/Scale/step": 0.01,
"customscript/forge_sag.py/txt2img/Blur Sigma/visible": true,
"customscript/forge_sag.py/txt2img/Blur Sigma/value": 2.0,
"customscript/forge_sag.py/txt2img/Blur Sigma/minimum": 0.0,
"customscript/forge_sag.py/txt2img/Blur Sigma/maximum": 10.0,
"customscript/forge_sag.py/txt2img/Blur Sigma/step": 0.01,
"customscript/forge_hypertile.py/txt2img/Enabled/visible": true,
"customscript/forge_hypertile.py/txt2img/Enabled/value": false,
"customscript/forge_hypertile.py/txt2img/Tile Size/visible": true,
"customscript/forge_hypertile.py/txt2img/Tile Size/value": 256,
"customscript/forge_hypertile.py/txt2img/Tile Size/minimum": 1,
"customscript/forge_hypertile.py/txt2img/Tile Size/maximum": 2048,
"customscript/forge_hypertile.py/txt2img/Tile Size/step": 1,
"customscript/forge_hypertile.py/txt2img/Swap Size/visible": true,
"customscript/forge_hypertile.py/txt2img/Swap Size/value": 2,
"customscript/forge_hypertile.py/txt2img/Swap Size/minimum": 1,
"customscript/forge_hypertile.py/txt2img/Swap Size/maximum": 128,
"customscript/forge_hypertile.py/txt2img/Swap Size/step": 1,
"customscript/forge_hypertile.py/txt2img/Max Depth/visible": true,
"customscript/forge_hypertile.py/txt2img/Max Depth/value": 0,
"customscript/forge_hypertile.py/txt2img/Max Depth/minimum": 0,
"customscript/forge_hypertile.py/txt2img/Max Depth/maximum": 10,
"customscript/forge_hypertile.py/txt2img/Max Depth/step": 1,
"customscript/forge_hypertile.py/txt2img/Scale Depth/visible": true,
"customscript/forge_hypertile.py/txt2img/Scale Depth/value": false,
"customscript/kohya_hrfix.py/txt2img/Enabled/visible": true,
"customscript/kohya_hrfix.py/txt2img/Enabled/value": false,
"customscript/kohya_hrfix.py/txt2img/Block Number/visible": true,
"customscript/kohya_hrfix.py/txt2img/Block Number/value": 3,
"customscript/kohya_hrfix.py/txt2img/Block Number/minimum": 1,
"customscript/kohya_hrfix.py/txt2img/Block Number/maximum": 32,
"customscript/kohya_hrfix.py/txt2img/Block Number/step": 1,
"customscript/kohya_hrfix.py/txt2img/Downscale Factor/visible": true,
"customscript/kohya_hrfix.py/txt2img/Downscale Factor/value": 2.0,
"customscript/kohya_hrfix.py/txt2img/Downscale Factor/minimum": 0.1,
"customscript/kohya_hrfix.py/txt2img/Downscale Factor/maximum": 9.0,
"customscript/kohya_hrfix.py/txt2img/Downscale Factor/step": 0.001,
"customscript/kohya_hrfix.py/txt2img/Start Percent/visible": true,
"customscript/kohya_hrfix.py/txt2img/Start Percent/value": 0.0,
"customscript/kohya_hrfix.py/txt2img/Start Percent/minimum": 0.0,
"customscript/kohya_hrfix.py/txt2img/Start Percent/maximum": 1.0,
"customscript/kohya_hrfix.py/txt2img/Start Percent/step": 0.001,
"customscript/kohya_hrfix.py/txt2img/End Percent/visible": true,
"customscript/kohya_hrfix.py/txt2img/End Percent/value": 0.35,
"customscript/kohya_hrfix.py/txt2img/End Percent/minimum": 0.0,
"customscript/kohya_hrfix.py/txt2img/End Percent/maximum": 1.0,
"customscript/kohya_hrfix.py/txt2img/End Percent/step": 0.001,
"customscript/kohya_hrfix.py/txt2img/Downscale After Skip/visible": true,
"customscript/kohya_hrfix.py/txt2img/Downscale After Skip/value": true,
"customscript/kohya_hrfix.py/txt2img/Downscale Method/visible": true,
"customscript/kohya_hrfix.py/txt2img/Downscale Method/value": "bicubic",
"customscript/kohya_hrfix.py/txt2img/Upscale Method/visible": true,
"customscript/kohya_hrfix.py/txt2img/Upscale Method/value": "bicubic",
"customscript/APG_CFGGuidance_script.py/txt2img/Enable APG/visible": true,
"customscript/APG_CFGGuidance_script.py/txt2img/Enable APG/value": false,
"customscript/APG_CFGGuidance_script.py/txt2img/APG Momentum/visible": true,
"customscript/APG_CFGGuidance_script.py/txt2img/APG Momentum/value": 0.5,
"customscript/APG_CFGGuidance_script.py/txt2img/APG Momentum/minimum": -2.5,
"customscript/APG_CFGGuidance_script.py/txt2img/APG Momentum/maximum": 2.5,
"customscript/APG_CFGGuidance_script.py/txt2img/APG Momentum/step": 0.01,
"customscript/APG_CFGGuidance_script.py/txt2img/APG Adaptive Momentum/visible": true,
"customscript/APG_CFGGuidance_script.py/txt2img/APG Adaptive Momentum/value": 0.18,
"customscript/APG_CFGGuidance_script.py/txt2img/APG Adaptive Momentum/minimum": -2.5,
"customscript/APG_CFGGuidance_script.py/txt2img/APG Adaptive Momentum/maximum": 2.5,
"customscript/APG_CFGGuidance_script.py/txt2img/APG Adaptive Momentum/step": 0.01,
"customscript/APG_CFGGuidance_script.py/txt2img/APG Norm Threshold/visible": true,
"customscript/APG_CFGGuidance_script.py/txt2img/APG Norm Threshold/value": 15.0,
"customscript/APG_CFGGuidance_script.py/txt2img/APG Norm Threshold/minimum": 0.0,
"customscript/APG_CFGGuidance_script.py/txt2img/APG Norm Threshold/maximum": 100.0,
"customscript/APG_CFGGuidance_script.py/txt2img/APG Norm Threshold/step": 0.5,
"customscript/APG_CFGGuidance_script.py/txt2img/APG Eta/visible": true,
"customscript/APG_CFGGuidance_script.py/txt2img/APG Eta/value": 1.0,
"customscript/APG_CFGGuidance_script.py/txt2img/APG Eta/minimum": 0.0,
"customscript/APG_CFGGuidance_script.py/txt2img/APG Eta/maximum": 2.0,
"customscript/APG_CFGGuidance_script.py/txt2img/APG Eta/step": 0.1,
"customscript/APG_CFGGuidance_script.py/txt2img/Enable Guidance Limiter/visible": true,
"customscript/APG_CFGGuidance_script.py/txt2img/Enable Guidance Limiter/value": false,
"customscript/APG_CFGGuidance_script.py/txt2img/Guidance Sigma Start/visible": true,
"customscript/APG_CFGGuidance_script.py/txt2img/Guidance Sigma Start/value": 5.42,
"customscript/APG_CFGGuidance_script.py/txt2img/Guidance Sigma Start/minimum": -1.0,
"customscript/APG_CFGGuidance_script.py/txt2img/Guidance Sigma Start/maximum": 10000.0,
"customscript/APG_CFGGuidance_script.py/txt2img/Guidance Sigma Start/step": 0.01,
"customscript/APG_CFGGuidance_script.py/txt2img/Guidance Sigma End/visible": true,
"customscript/APG_CFGGuidance_script.py/txt2img/Guidance Sigma End/value": 0.28,
"customscript/APG_CFGGuidance_script.py/txt2img/Guidance Sigma End/minimum": -1.0,
"customscript/APG_CFGGuidance_script.py/txt2img/Guidance Sigma End/maximum": 10000.0,
"customscript/APG_CFGGuidance_script.py/txt2img/Guidance Sigma End/step": 0.01,
"customscript/advanced_model_sampling_script.py/txt2img/Enable RescaleCFG/visible": true,
"customscript/advanced_model_sampling_script.py/txt2img/Enable RescaleCFG/value": false,
"customscript/advanced_model_sampling_script.py/txt2img/RescaleCFG Multiplier/visible": true,
"customscript/advanced_model_sampling_script.py/txt2img/RescaleCFG Multiplier/value": 0.7,
"customscript/advanced_model_sampling_script.py/txt2img/RescaleCFG Multiplier/minimum": 0.0,
"customscript/advanced_model_sampling_script.py/txt2img/RescaleCFG Multiplier/maximum": 1.0,
"customscript/advanced_model_sampling_script.py/txt2img/RescaleCFG Multiplier/step": 0.01,
"customscript/advanced_model_sampling_script_backported.py/txt2img/Enable Advanced Model Sampling/visible": true,
"customscript/advanced_model_sampling_script_backported.py/txt2img/Enable Advanced Model Sampling/value": false,
"customscript/advanced_model_sampling_script_backported.py/txt2img/Sampling Mode/visible": true,
"customscript/advanced_model_sampling_script_backported.py/txt2img/Sampling Mode/value": "Discrete",
"customscript/advanced_model_sampling_script_backported.py/txt2img/Discrete Sampling Type/visible": true,
"customscript/advanced_model_sampling_script_backported.py/txt2img/Discrete Sampling Type/value": "v_prediction",
"customscript/advanced_model_sampling_script_backported.py/txt2img/Zero SNR/visible": true,
"customscript/advanced_model_sampling_script_backported.py/txt2img/Zero SNR/value": true,
"customscript/advanced_model_sampling_script_backported.py/txt2img/Continuous EDM Sampling Type/visible": true,
"customscript/advanced_model_sampling_script_backported.py/txt2img/Continuous EDM Sampling Type/value": "v_prediction",
"customscript/advanced_model_sampling_script_backported.py/txt2img/Sigma Max/visible": true,
"customscript/advanced_model_sampling_script_backported.py/txt2img/Sigma Max/value": 120.0,
"customscript/advanced_model_sampling_script_backported.py/txt2img/Sigma Max/minimum": 0.0,
"customscript/advanced_model_sampling_script_backported.py/txt2img/Sigma Max/maximum": 1000.0,
"customscript/advanced_model_sampling_script_backported.py/txt2img/Sigma Max/step": 0.001,
"customscript/advanced_model_sampling_script_backported.py/txt2img/Sigma Min/visible": true,
"customscript/advanced_model_sampling_script_backported.py/txt2img/Sigma Min/value": 0.002,
"customscript/advanced_model_sampling_script_backported.py/txt2img/Sigma Min/minimum": 0.0,
"customscript/advanced_model_sampling_script_backported.py/txt2img/Sigma Min/maximum": 1000.0,
"customscript/advanced_model_sampling_script_backported.py/txt2img/Sigma Min/step": 0.001,
"customscript/forge_multidiffusion.py/txt2img/Enabled/visible": true,
"customscript/forge_multidiffusion.py/txt2img/Enabled/value": false,
"customscript/forge_multidiffusion.py/txt2img/Method/visible": true,
"customscript/forge_multidiffusion.py/txt2img/Method/value": "MultiDiffusion",
"customscript/forge_multidiffusion.py/txt2img/Tile Width/visible": true,
"customscript/forge_multidiffusion.py/txt2img/Tile Width/value": 768,
"customscript/forge_multidiffusion.py/txt2img/Tile Width/minimum": 16,
"customscript/forge_multidiffusion.py/txt2img/Tile Width/maximum": 8192,
"customscript/forge_multidiffusion.py/txt2img/Tile Width/step": 16,
"customscript/forge_multidiffusion.py/txt2img/Tile Height/visible": true,
"customscript/forge_multidiffusion.py/txt2img/Tile Height/value": 768,
"customscript/forge_multidiffusion.py/txt2img/Tile Height/minimum": 16,
"customscript/forge_multidiffusion.py/txt2img/Tile Height/maximum": 8192,
"customscript/forge_multidiffusion.py/txt2img/Tile Height/step": 16,
"customscript/forge_multidiffusion.py/txt2img/Tile Overlap/visible": true,
"customscript/forge_multidiffusion.py/txt2img/Tile Overlap/value": 64,
"customscript/forge_multidiffusion.py/txt2img/Tile Overlap/minimum": 0,
"customscript/forge_multidiffusion.py/txt2img/Tile Overlap/maximum": 2048,
"customscript/forge_multidiffusion.py/txt2img/Tile Overlap/step": 32,
"customscript/forge_multidiffusion.py/txt2img/Tile Batch Size/visible": true,
"customscript/forge_multidiffusion.py/txt2img/Tile Batch Size/value": 4,
"customscript/forge_multidiffusion.py/txt2img/Tile Batch Size/minimum": 1,
"customscript/forge_multidiffusion.py/txt2img/Tile Batch Size/maximum": 8192,
"customscript/forge_multidiffusion.py/txt2img/Tile Batch Size/step": 1,
"customscript/forge_never_oom.py/txt2img/Enabled for UNet (always maximize offload)/visible": true,
"customscript/forge_never_oom.py/txt2img/Enabled for UNet (always maximize offload)/value": false,
"customscript/forge_never_oom.py/txt2img/Enabled for VAE (always tiled)/visible": true,
"customscript/forge_never_oom.py/txt2img/Enabled for VAE (always tiled)/value": false,
"txt2img/Script/visible": true,
"txt2img/Script/value": "None",
"customscript/prompt_matrix.py/txt2img/Put variable parts at start of prompt/visible": true,
"customscript/prompt_matrix.py/txt2img/Put variable parts at start of prompt/value": false,
"customscript/prompt_matrix.py/txt2img/Use different seed for each picture/visible": true,
"customscript/prompt_matrix.py/txt2img/Use different seed for each picture/value": false,
"customscript/prompt_matrix.py/txt2img/Select prompt/visible": true,
"customscript/prompt_matrix.py/txt2img/Select prompt/value": "positive",
"customscript/prompt_matrix.py/txt2img/Select joining char/visible": true,
"customscript/prompt_matrix.py/txt2img/Select joining char/value": "comma",
"customscript/prompt_matrix.py/txt2img/Grid margins (px)/visible": true,
"customscript/prompt_matrix.py/txt2img/Grid margins (px)/value": 0,
"customscript/prompt_matrix.py/txt2img/Grid margins (px)/minimum": 0,
"customscript/prompt_matrix.py/txt2img/Grid margins (px)/maximum": 500,
"customscript/prompt_matrix.py/txt2img/Grid margins (px)/step": 2,
"customscript/prompts_from_file.py/txt2img/Iterate seed every line/visible": true,
"customscript/prompts_from_file.py/txt2img/Iterate seed every line/value": false,
"customscript/prompts_from_file.py/txt2img/Use same random seed for all lines/visible": true,
"customscript/prompts_from_file.py/txt2img/Use same random seed for all lines/value": false,
"customscript/prompts_from_file.py/txt2img/Insert prompts at the/visible": true,
"customscript/prompts_from_file.py/txt2img/Insert prompts at the/value": "start",
"customscript/prompts_from_file.py/txt2img/List of prompt inputs/visible": true,
"customscript/prompts_from_file.py/txt2img/List of prompt inputs/value": "",
"customscript/xyz_grid.py/txt2img/X type/visible": true,
"customscript/xyz_grid.py/txt2img/X type/value": "Seed",
"customscript/xyz_grid.py/txt2img/X values/visible": true,
"customscript/xyz_grid.py/txt2img/X values/value": "",
"customscript/xyz_grid.py/txt2img/Y type/visible": true,
"customscript/xyz_grid.py/txt2img/Y type/value": "Nothing",
"customscript/xyz_grid.py/txt2img/Y values/visible": true,
"customscript/xyz_grid.py/txt2img/Y values/value": "",
"customscript/xyz_grid.py/txt2img/Z type/visible": true,
"customscript/xyz_grid.py/txt2img/Z type/value": "Nothing",
"customscript/xyz_grid.py/txt2img/Z values/visible": true,
"customscript/xyz_grid.py/txt2img/Z values/value": "",
"customscript/xyz_grid.py/txt2img/Draw legend/visible": true,
"customscript/xyz_grid.py/txt2img/Draw legend/value": true,
"customscript/xyz_grid.py/txt2img/Draw individual labels/visible": true,
"customscript/xyz_grid.py/txt2img/Draw individual labels/value": false,
"customscript/xyz_grid.py/txt2img/Items per grid (0 = default), for sequential grid generation./visible": true,
"customscript/xyz_grid.py/txt2img/Items per grid (0 = default), for sequential grid generation./value": 0,
"customscript/xyz_grid.py/txt2img/Items per grid (0 = default), for sequential grid generation./minimum": 0,
"customscript/xyz_grid.py/txt2img/Items per grid (0 = default), for sequential grid generation./maximum": 200,
"customscript/xyz_grid.py/txt2img/Items per grid (0 = default), for sequential grid generation./step": 1,
"customscript/xyz_grid.py/txt2img/Keep -1 for seeds/visible": true,
"customscript/xyz_grid.py/txt2img/Keep -1 for seeds/value": false,
"customscript/xyz_grid.py/txt2img/Vary seeds for X/visible": true,
"customscript/xyz_grid.py/txt2img/Vary seeds for X/value": false,
"customscript/xyz_grid.py/txt2img/Vary seeds for Y/visible": true,
"customscript/xyz_grid.py/txt2img/Vary seeds for Y/value": false,
"customscript/xyz_grid.py/txt2img/Vary seeds for Z/visible": true,
"customscript/xyz_grid.py/txt2img/Vary seeds for Z/value": false,
"customscript/xyz_grid.py/txt2img/Include Sub Images/visible": true,
"customscript/xyz_grid.py/txt2img/Include Sub Images/value": false,
"customscript/xyz_grid.py/txt2img/Include Sub Grids/visible": true,
"customscript/xyz_grid.py/txt2img/Include Sub Grids/value": false,
"customscript/xyz_grid.py/txt2img/Use text inputs instead of dropdowns/visible": true,
"customscript/xyz_grid.py/txt2img/Use text inputs instead of dropdowns/value": false,
"customscript/xyz_grid.py/txt2img/Grid margins (px)/visible": true,
"customscript/xyz_grid.py/txt2img/Grid margins (px)/value": 0,
"customscript/xyz_grid.py/txt2img/Grid margins (px)/minimum": 0,
"customscript/xyz_grid.py/txt2img/Grid margins (px)/maximum": 500,
"customscript/xyz_grid.py/txt2img/Grid margins (px)/step": 2,
"txt2img/Swap X/Y axes/visible": true,
"txt2img/Swap Y/Z axes/visible": true,
"txt2img/Swap X/Z axes/visible": true,
"txt2img/๐/visible": true,
"txt2img/๐พ/visible": true,
"txt2img/๐๏ธ/visible": true,
"txt2img/๐ผ๏ธ/visible": true,
"txt2img/๐จ๏ธ/visible": true,
"txt2img/๐/visible": true,
"txt2img/๐ฌ/visible": true,
"txt2img/โจ/visible": true,
"txt2img/Description/visible": true,
"txt2img/Description/value": "",
"txt2img/Replace preview/visible": true,
"txt2img/Save/visible": true,
"txt2img/Preferred VAE/visible": true,
"txt2img/Preferred VAE/value": "None",
"txt2img/Stable Diffusion version/visible": true,
"txt2img/Stable Diffusion version/value": "Unknown",
"txt2img/Activation text/visible": true,
"txt2img/Activation text/value": "",
"txt2img/Preferred weight/visible": true,
"txt2img/Preferred weight/value": 0.0,
"txt2img/Preferred weight/minimum": 0.0,
"txt2img/Preferred weight/maximum": 2.0,
"txt2img/Preferred weight/step": 0.01,
"txt2img/Random prompt/visible": true,
"txt2img/Random prompt/value": "",
"img2img/Prompt/visible": true,
"img2img/Prompt/value": "",
"img2img/Negative prompt/visible": true,
"img2img/Negative prompt/value": "",
"img2img/Interrupt/visible": true,
"img2img/Skip/visible": true,
"img2img/Interrupting.../visible": true,
"img2img/Generate/visible": true,
"img2img/โ๏ธ/visible": true,
"img2img/๐๏ธ/visible": true,
"img2img/๐/visible": true,
"img2img/๐/visible": true,
"img2img/๐ฆ/visible": true,
"img2img/Styles/visible": true,
"img2img/Styles/value": [],
"img2img/๐๏ธ/visible": true,
"img2img/๐/visible": true,
"img2img/๐/visible": true,
"img2img/Close/visible": true,
"img2img/Tabs@img2img_extra_tabs/selected": null,
"img2img/Tabs@mode_img2img/selected": null,
"img2img/img2img/visible": true,
"img2img/sketch/visible": true,
"img2img/inpaint/visible": true,
"img2img/inpaint sketch/visible": true,
"img2img/Input directory/visible": true,
"img2img/Input directory/value": "",
"img2img/Output directory/visible": true,
"img2img/Output directory/value": "",
"img2img/Inpaint batch mask directory (required for inpaint batch processing only)/visible": true,
"img2img/Inpaint batch mask directory (required for inpaint batch processing only)/value": "",
"img2img/Controlnet input directory/visible": true,
"img2img/Controlnet input directory/value": "",
"img2img/Append png info to prompts/visible": true,
"img2img/Append png info to prompts/value": false,
"img2img/PNG info directory/visible": true,
"img2img/PNG info directory/value": "",
"img2img/Resize mode/visible": true,
"img2img/Resize mode/value": "Just resize",
"img2img/Mask blur/visible": true,
"img2img/Mask blur/value": 4,
"img2img/Mask blur/minimum": 0,
"img2img/Mask blur/maximum": 64,
"img2img/Mask blur/step": 1,
"img2img/Mask transparency/value": 0,
"img2img/Mask transparency/minimum": 0,
"img2img/Mask transparency/maximum": 100,
"img2img/Mask transparency/step": 1,
"img2img/Mask mode/visible": true,
"img2img/Mask mode/value": "Inpaint masked",
"img2img/Masked content/visible": true,
"img2img/Masked content/value": "original",
"img2img/Inpaint area/visible": true,
"img2img/Inpaint area/value": "Whole picture",
"img2img/Only masked padding, pixels/visible": true,
"img2img/Only masked padding, pixels/value": 32,
"img2img/Only masked padding, pixels/minimum": 0,
"img2img/Only masked padding, pixels/maximum": 256,
"img2img/Only masked padding, pixels/step": 4,
"customscript/soft_inpainting.py/img2img/Soft inpainting/visible": true,
"customscript/soft_inpainting.py/img2img/Soft inpainting/value": false,
"customscript/soft_inpainting.py/img2img/Schedule bias/visible": true,
"customscript/soft_inpainting.py/img2img/Schedule bias/value": 1,
"customscript/soft_inpainting.py/img2img/Schedule bias/minimum": 0,
"customscript/soft_inpainting.py/img2img/Schedule bias/maximum": 8,
"customscript/soft_inpainting.py/img2img/Schedule bias/step": 0.1,
"customscript/soft_inpainting.py/img2img/Preservation strength/visible": true,
"customscript/soft_inpainting.py/img2img/Preservation strength/value": 0.5,
"customscript/soft_inpainting.py/img2img/Preservation strength/minimum": 0,
"customscript/soft_inpainting.py/img2img/Preservation strength/maximum": 8,
"customscript/soft_inpainting.py/img2img/Preservation strength/step": 0.05,
"customscript/soft_inpainting.py/img2img/Transition contrast boost/visible": true,
"customscript/soft_inpainting.py/img2img/Transition contrast boost/value": 4,
"customscript/soft_inpainting.py/img2img/Transition contrast boost/minimum": 1,
"customscript/soft_inpainting.py/img2img/Transition contrast boost/maximum": 32,
"customscript/soft_inpainting.py/img2img/Transition contrast boost/step": 0.5,
"customscript/soft_inpainting.py/img2img/Mask influence/visible": true,
"customscript/soft_inpainting.py/img2img/Mask influence/value": 0,
"customscript/soft_inpainting.py/img2img/Mask influence/minimum": 0,
"customscript/soft_inpainting.py/img2img/Mask influence/maximum": 1,
"customscript/soft_inpainting.py/img2img/Mask influence/step": 0.05,
"customscript/soft_inpainting.py/img2img/Difference threshold/visible": true,
"customscript/soft_inpainting.py/img2img/Difference threshold/value": 0.5,
"customscript/soft_inpainting.py/img2img/Difference threshold/minimum": 0,
"customscript/soft_inpainting.py/img2img/Difference threshold/maximum": 8,
"customscript/soft_inpainting.py/img2img/Difference threshold/step": 0.25,
"customscript/soft_inpainting.py/img2img/Difference contrast/visible": true,
"customscript/soft_inpainting.py/img2img/Difference contrast/value": 2,
"customscript/soft_inpainting.py/img2img/Difference contrast/minimum": 0,
"customscript/soft_inpainting.py/img2img/Difference contrast/maximum": 8,
"customscript/soft_inpainting.py/img2img/Difference contrast/step": 0.25,
"customscript/sampler.py/img2img/Sampling method/visible": true,
"customscript/sampler.py/img2img/Sampling method/value": "DPM++ 2M",
"customscript/sampler.py/img2img/Schedule type/visible": true,
"customscript/sampler.py/img2img/Schedule type/value": "Automatic",
"customscript/sampler.py/img2img/Sampling steps/visible": true,
"customscript/sampler.py/img2img/Sampling steps/value": 20,
"customscript/sampler.py/img2img/Sampling steps/minimum": 1,
"customscript/sampler.py/img2img/Sampling steps/maximum": 150,
"customscript/sampler.py/img2img/Sampling steps/step": 1,
"customscript/refiner.py/img2img/Refiner/visible": true,
"customscript/refiner.py/img2img/Refiner/value": false,
"customscript/refiner.py/img2img/Checkpoint/visible": true,
"customscript/refiner.py/img2img/Checkpoint/value": "",
"customscript/refiner.py/img2img/Switch at/visible": true,
"customscript/refiner.py/img2img/Switch at/value": 0.8,
"customscript/refiner.py/img2img/Switch at/minimum": 0.01,
"customscript/refiner.py/img2img/Switch at/maximum": 1.0,
"customscript/refiner.py/img2img/Switch at/step": 0.01,
"img2img/Tabs@img2img_tabs_resize/selected": null,
"img2img/Width/visible": true,
"img2img/Width/value": 512,
"img2img/Width/minimum": 64,
"img2img/Width/maximum": 2048,
"img2img/Width/step": 8,
"img2img/Height/visible": true,
"img2img/Height/value": 512,
"img2img/Height/minimum": 64,
"img2img/Height/maximum": 2048,
"img2img/Height/step": 8,
"img2img/โ
/visible": true,
"img2img/๐/visible": true,
"img2img/Scale/visible": true,
"img2img/Scale/value": 1.0,
"img2img/Scale/minimum": 0.05,
"img2img/Scale/maximum": 4.0,
"img2img/Scale/step": 0.05,
"img2img/Unused/visible": true,
"img2img/Unused/value": 0,
"img2img/Unused/minimum": 0,
"img2img/Unused/maximum": 100,
"img2img/Unused/step": 1,
"img2img/Batch count/visible": true,
"img2img/Batch count/value": 1,
"img2img/Batch count/minimum": 1,
"img2img/Batch count/maximum": 100,
"img2img/Batch count/step": 1,
"img2img/Batch size/visible": true,
"img2img/Batch size/value": 1,
"img2img/Batch size/minimum": 1,
"img2img/Batch size/maximum": 8,
"img2img/Batch size/step": 1,
"img2img/CFG Scale/visible": true,
"img2img/CFG Scale/value": 7.0,
"img2img/CFG Scale/minimum": 1.0,
"img2img/CFG Scale/maximum": 30.0,
"img2img/CFG Scale/step": 0.5,
"img2img/Image CFG Scale/value": 1.5,
"img2img/Image CFG Scale/minimum": 0,
"img2img/Image CFG Scale/maximum": 3.0,
"img2img/Image CFG Scale/step": 0.05,
"img2img/Denoising strength/visible": true,
"img2img/Denoising strength/value": 0.75,
"img2img/Denoising strength/minimum": 0.0,
"img2img/Denoising strength/maximum": 1.0,
"img2img/Denoising strength/step": 0.01,
"customscript/seed.py/img2img/Seed/visible": true,
"customscript/seed.py/img2img/Seed/value": -1,
"img2img/๐ฒ๏ธ/visible": true,
"img2img/โป๏ธ/visible": true,
"customscript/seed.py/img2img/Extra/visible": true,
"customscript/seed.py/img2img/Extra/value": false,
"customscript/seed.py/img2img/Variation seed/visible": true,
"customscript/seed.py/img2img/Variation seed/value": -1,
"customscript/seed.py/img2img/Variation strength/visible": true,
"customscript/seed.py/img2img/Variation strength/value": 0.0,
"customscript/seed.py/img2img/Variation strength/minimum": 0,
"customscript/seed.py/img2img/Variation strength/maximum": 1,
"customscript/seed.py/img2img/Variation strength/step": 0.01,
"customscript/seed.py/img2img/Resize seed from width/visible": true,
"customscript/seed.py/img2img/Resize seed from width/value": 0,
"customscript/seed.py/img2img/Resize seed from width/minimum": 0,
"customscript/seed.py/img2img/Resize seed from width/maximum": 2048,
"customscript/seed.py/img2img/Resize seed from width/step": 8,
"customscript/seed.py/img2img/Resize seed from height/visible": true,
"customscript/seed.py/img2img/Resize seed from height/value": 0,
"customscript/seed.py/img2img/Resize seed from height/minimum": 0,
"customscript/seed.py/img2img/Resize seed from height/maximum": 2048,
"customscript/seed.py/img2img/Resize seed from height/step": 8,
"img2img/Override settings/value": null,
"customscript/loractl.py/img2img/Enable Dynamic Lora Weights/visible": true,
"customscript/loractl.py/img2img/Enable Dynamic Lora Weights/value": false,
"customscript/loractl.py/img2img/Plot the LoRA weight in all steps/visible": true,
"customscript/loractl.py/img2img/Plot the LoRA weight in all steps/value": false,
"customscript/random_res_script.py/img2img/Enable random resolution/visible": true,
"customscript/random_res_script.py/img2img/Enable random resolution/value": false,
"customscript/random_res_script.py/img2img/Model Type/visible": true,
"customscript/random_res_script.py/img2img/Model Type/value": "SDXL",
"customscript/random_res_script.py/img2img/Resolution Weight Mode/visible": true,
"customscript/random_res_script.py/img2img/Resolution Weight Mode/value": "Equal Weights",
"customscript/random_res_script.py/img2img/Minimum Dimension/visible": true,
"customscript/random_res_script.py/img2img/Minimum Dimension/value": 832,
"customscript/random_res_script.py/img2img/Minimum Dimension/minimum": 256,
"customscript/random_res_script.py/img2img/Minimum Dimension/maximum": 3072,
"customscript/random_res_script.py/img2img/Minimum Dimension/step": 8,
"customscript/random_res_script.py/img2img/Maximum Dimension/visible": true,
"customscript/random_res_script.py/img2img/Maximum Dimension/value": 1216,
"customscript/random_res_script.py/img2img/Maximum Dimension/minimum": 256,
"customscript/random_res_script.py/img2img/Maximum Dimension/maximum": 3072,
"customscript/random_res_script.py/img2img/Maximum Dimension/step": 8,
"customscript/random_res_script.py/img2img/Current Resolutions (width,height format)/visible": true,
"customscript/random_res_script.py/img2img/Current Resolutions (width,height format)/value": "",
"img2img/New Width/visible": true,
"img2img/New Width/value": null,
"img2img/New Height/visible": true,
"img2img/New Height/value": null,
"img2img/Add Resolution/visible": true,
"img2img/Add from Aspect Ratio Preset/visible": true,
"img2img/Add from Aspect Ratio Preset/value": null,
"img2img/Target Megapixels/visible": true,
"img2img/Target Megapixels/value": 0.5,
"img2img/Target Megapixels/minimum": 0.1,
"img2img/Target Megapixels/maximum": 2.0,
"img2img/Target Megapixels/step": 0.1,
"img2img/Add Preset Resolution/visible": true,
"img2img/Reset to Defaults/visible": true,
"img2img/Clear All/visible": true,
"img2img/Sort by Size/visible": true,
"img2img/Remove Resolutions > 1MP/visible": true,
"img2img/Remove Resolutions < 0.3MP/visible": true,
"img2img/ControlNet Unit 0/visible": true,
"img2img/ControlNet Unit 0/value": false,
"img2img/Input Directory/visible": true,
"img2img/Input Directory/value": "",
"img2img/Mask Directory/value": "",
"img2img/Clear Images/visible": true,
"img2img/New Canvas Width/visible": true,
"img2img/New Canvas Width/value": 512,
"img2img/New Canvas Width/minimum": 256,
"img2img/New Canvas Width/maximum": 1024,
"img2img/New Canvas Width/step": 64,
"img2img/New Canvas Height/visible": true,
"img2img/New Canvas Height/value": 512,
"img2img/New Canvas Height/minimum": 256,
"img2img/New Canvas Height/maximum": 1024,
"img2img/New Canvas Height/step": 64,
"img2img/Create New Canvas/visible": true,
"img2img/Cancel/visible": true,
"img2img/Enable/visible": true,
"img2img/Enable/value": false,
"img2img/Pixel Perfect/visible": true,
"img2img/Pixel Perfect/value": false,
"img2img/Allow Preview/value": false,
"img2img/Use Mask/value": false,
"img2img/Preview as Input/value": false,
"img2img/Upload independent control image/visible": true,
"img2img/Upload independent control image/value": false,
"img2img/Control Type/visible": true,
"img2img/Control Type/value": "All",
"img2img/Preprocessor/visible": true,
"img2img/Preprocessor/value": "None",
"img2img/Model/visible": true,
"img2img/Model/value": "None",
"img2img/Control Weight/visible": true,
"img2img/Control Weight/value": 1.0,
"img2img/Control Weight/minimum": 0.0,
"img2img/Control Weight/maximum": 2.0,
"img2img/Control Weight/step": 0.05,
"img2img/Starting Control Step/visible": true,
"img2img/Starting Control Step/value": 0.0,
"img2img/Starting Control Step/minimum": 0.0,
"img2img/Starting Control Step/maximum": 1.0,
"img2img/Starting Control Step/step": 0.01,
"img2img/Ending Control Step/visible": true,
"img2img/Ending Control Step/value": 1.0,
"img2img/Ending Control Step/minimum": 0.0,
"img2img/Ending Control Step/maximum": 1.0,
"img2img/Ending Control Step/step": 0.01,
"img2img/Preprocessor resolution/value": -1,
"img2img/Preprocessor resolution/minimum": 64,
"img2img/Preprocessor resolution/maximum": 2048,
"img2img/Preprocessor resolution/step": 10,
"img2img/Threshold A/value": -1,
"img2img/Threshold A/minimum": 64,
"img2img/Threshold A/maximum": 1024,
"img2img/Threshold A/step": 1,
"img2img/Threshold B/value": -1,
"img2img/Threshold B/minimum": 64,
"img2img/Threshold B/maximum": 1024,
"img2img/Threshold B/step": 1,
"img2img/Control Mode/visible": true,
"img2img/Control Mode/value": "Balanced",
"img2img/Resize Mode/value": "Crop and Resize",
"img2img/Hires-Fix Option/value": "Both",
"img2img/Presets/visible": true,
"img2img/Presets/value": "New Preset",
"img2img/Preset name/visible": true,
"img2img/Preset name/value": "",
"img2img/ControlNet Unit 1/visible": true,
"img2img/ControlNet Unit 1/value": false,
"img2img/ControlNet Unit 2/visible": true,
"img2img/ControlNet Unit 2/value": false,
"customscript/forge_dynamic_thresholding.py/img2img/Enabled/visible": true,
"customscript/forge_dynamic_thresholding.py/img2img/Enabled/value": false,
"customscript/forge_dynamic_thresholding.py/img2img/Simple Mode/visible": true,
"customscript/forge_dynamic_thresholding.py/img2img/Simple Mode/value": false,
"customscript/forge_dynamic_thresholding.py/img2img/Mimic Scale/visible": true,
"customscript/forge_dynamic_thresholding.py/img2img/Mimic Scale/value": 7.0,
"customscript/forge_dynamic_thresholding.py/img2img/Mimic Scale/minimum": 0.0,
"customscript/forge_dynamic_thresholding.py/img2img/Mimic Scale/maximum": 100.0,
"customscript/forge_dynamic_thresholding.py/img2img/Mimic Scale/step": 0.5,
"customscript/forge_dynamic_thresholding.py/img2img/Threshold Percentile/visible": true,
"customscript/forge_dynamic_thresholding.py/img2img/Threshold Percentile/value": 1.0,
"customscript/forge_dynamic_thresholding.py/img2img/Threshold Percentile/minimum": 0.0,
"customscript/forge_dynamic_thresholding.py/img2img/Threshold Percentile/maximum": 1.0,
"customscript/forge_dynamic_thresholding.py/img2img/Threshold Percentile/step": 0.01,
"customscript/forge_dynamic_thresholding.py/img2img/Mimic Mode/visible": true,
"customscript/forge_dynamic_thresholding.py/img2img/Mimic Mode/value": "Constant",
"customscript/forge_dynamic_thresholding.py/img2img/Mimic Scale Min/visible": true,
"customscript/forge_dynamic_thresholding.py/img2img/Mimic Scale Min/value": 0.0,
"customscript/forge_dynamic_thresholding.py/img2img/Mimic Scale Min/minimum": 0.0,
"customscript/forge_dynamic_thresholding.py/img2img/Mimic Scale Min/maximum": 100.0,
"customscript/forge_dynamic_thresholding.py/img2img/Mimic Scale Min/step": 0.5,
"customscript/forge_dynamic_thresholding.py/img2img/Cfg Mode/visible": true,
"customscript/forge_dynamic_thresholding.py/img2img/Cfg Mode/value": "Constant",
"customscript/forge_dynamic_thresholding.py/img2img/Cfg Scale Min/visible": true,
"customscript/forge_dynamic_thresholding.py/img2img/Cfg Scale Min/value": 0.0,
"customscript/forge_dynamic_thresholding.py/img2img/Cfg Scale Min/minimum": 0.0,
"customscript/forge_dynamic_thresholding.py/img2img/Cfg Scale Min/maximum": 100.0,
"customscript/forge_dynamic_thresholding.py/img2img/Cfg Scale Min/step": 0.5,
"customscript/forge_dynamic_thresholding.py/img2img/Sched Val/visible": true,
"customscript/forge_dynamic_thresholding.py/img2img/Sched Val/value": 1.0,
"customscript/forge_dynamic_thresholding.py/img2img/Sched Val/minimum": 0.0,
"customscript/forge_dynamic_thresholding.py/img2img/Sched Val/maximum": 100.0,
"customscript/forge_dynamic_thresholding.py/img2img/Sched Val/step": 0.01,
"customscript/forge_dynamic_thresholding.py/img2img/Separate Feature Channels/visible": true,
"customscript/forge_dynamic_thresholding.py/img2img/Separate Feature Channels/value": "enable",
"customscript/forge_dynamic_thresholding.py/img2img/Scaling Startpoint/visible": true,
"customscript/forge_dynamic_thresholding.py/img2img/Scaling Startpoint/value": "MEAN",
"customscript/forge_dynamic_thresholding.py/img2img/Variability Measure/visible": true,
"customscript/forge_dynamic_thresholding.py/img2img/Variability Measure/value": "AD",
"customscript/forge_dynamic_thresholding.py/img2img/Interpolate Phi/visible": true,
"customscript/forge_dynamic_thresholding.py/img2img/Interpolate Phi/value": 1.0,
"customscript/forge_dynamic_thresholding.py/img2img/Interpolate Phi/minimum": 0.0,
"customscript/forge_dynamic_thresholding.py/img2img/Interpolate Phi/maximum": 1.0,
"customscript/forge_dynamic_thresholding.py/img2img/Interpolate Phi/step": 0.01,
"customscript/forge_freeu.py/img2img/Enabled/visible": true,
"customscript/forge_freeu.py/img2img/Enabled/value": false,
"customscript/forge_freeu.py/img2img/B1/visible": true,
"customscript/forge_freeu.py/img2img/B1/value": 1.01,
"customscript/forge_freeu.py/img2img/B1/minimum": 0,
"customscript/forge_freeu.py/img2img/B1/maximum": 2,
"customscript/forge_freeu.py/img2img/B1/step": 0.01,
"customscript/forge_freeu.py/img2img/B2/visible": true,
"customscript/forge_freeu.py/img2img/B2/value": 1.02,
"customscript/forge_freeu.py/img2img/B2/minimum": 0,
"customscript/forge_freeu.py/img2img/B2/maximum": 2,
"customscript/forge_freeu.py/img2img/B2/step": 0.01,
"customscript/forge_freeu.py/img2img/S1/visible": true,
"customscript/forge_freeu.py/img2img/S1/value": 0.99,
"customscript/forge_freeu.py/img2img/S1/minimum": 0,
"customscript/forge_freeu.py/img2img/S1/maximum": 4,
"customscript/forge_freeu.py/img2img/S1/step": 0.01,
"customscript/forge_freeu.py/img2img/S2/visible": true,
"customscript/forge_freeu.py/img2img/S2/value": 0.95,
"customscript/forge_freeu.py/img2img/S2/minimum": 0,
"customscript/forge_freeu.py/img2img/S2/maximum": 4,
"customscript/forge_freeu.py/img2img/S2/step": 0.01,
"customscript/forge_sag.py/img2img/Enabled/visible": true,
"customscript/forge_sag.py/img2img/Enabled/value": false,
"customscript/forge_sag.py/img2img/Scale/visible": true,
"customscript/forge_sag.py/img2img/Scale/value": 0.5,
"customscript/forge_sag.py/img2img/Scale/minimum": -2.0,
"customscript/forge_sag.py/img2img/Scale/maximum": 5.0,
"customscript/forge_sag.py/img2img/Scale/step": 0.01,
"customscript/forge_sag.py/img2img/Blur Sigma/visible": true,
"customscript/forge_sag.py/img2img/Blur Sigma/value": 2.0,
"customscript/forge_sag.py/img2img/Blur Sigma/minimum": 0.0,
"customscript/forge_sag.py/img2img/Blur Sigma/maximum": 10.0,
"customscript/forge_sag.py/img2img/Blur Sigma/step": 0.01,
"customscript/forge_hypertile.py/img2img/Enabled/visible": true,
"customscript/forge_hypertile.py/img2img/Enabled/value": false,
"customscript/forge_hypertile.py/img2img/Tile Size/visible": true,
"customscript/forge_hypertile.py/img2img/Tile Size/value": 256,
"customscript/forge_hypertile.py/img2img/Tile Size/minimum": 1,
"customscript/forge_hypertile.py/img2img/Tile Size/maximum": 2048,
"customscript/forge_hypertile.py/img2img/Tile Size/step": 1,
"customscript/forge_hypertile.py/img2img/Swap Size/visible": true,
"customscript/forge_hypertile.py/img2img/Swap Size/value": 2,
"customscript/forge_hypertile.py/img2img/Swap Size/minimum": 1,
"customscript/forge_hypertile.py/img2img/Swap Size/maximum": 128,
"customscript/forge_hypertile.py/img2img/Swap Size/step": 1,
"customscript/forge_hypertile.py/img2img/Max Depth/visible": true,
"customscript/forge_hypertile.py/img2img/Max Depth/value": 0,
"customscript/forge_hypertile.py/img2img/Max Depth/minimum": 0,
"customscript/forge_hypertile.py/img2img/Max Depth/maximum": 10,
"customscript/forge_hypertile.py/img2img/Max Depth/step": 1,
"customscript/forge_hypertile.py/img2img/Scale Depth/visible": true,
"customscript/forge_hypertile.py/img2img/Scale Depth/value": false,
"customscript/kohya_hrfix.py/img2img/Enabled/visible": true,
"customscript/kohya_hrfix.py/img2img/Enabled/value": false,
"customscript/kohya_hrfix.py/img2img/Block Number/visible": true,
"customscript/kohya_hrfix.py/img2img/Block Number/value": 3,
"customscript/kohya_hrfix.py/img2img/Block Number/minimum": 1,
"customscript/kohya_hrfix.py/img2img/Block Number/maximum": 32,
"customscript/kohya_hrfix.py/img2img/Block Number/step": 1,
"customscript/kohya_hrfix.py/img2img/Downscale Factor/visible": true,
"customscript/kohya_hrfix.py/img2img/Downscale Factor/value": 2.0,
"customscript/kohya_hrfix.py/img2img/Downscale Factor/minimum": 0.1,
"customscript/kohya_hrfix.py/img2img/Downscale Factor/maximum": 9.0,
"customscript/kohya_hrfix.py/img2img/Downscale Factor/step": 0.001,
"customscript/kohya_hrfix.py/img2img/Start Percent/visible": true,
"customscript/kohya_hrfix.py/img2img/Start Percent/value": 0.0,
"customscript/kohya_hrfix.py/img2img/Start Percent/minimum": 0.0,
"customscript/kohya_hrfix.py/img2img/Start Percent/maximum": 1.0,
"customscript/kohya_hrfix.py/img2img/Start Percent/step": 0.001,
"customscript/kohya_hrfix.py/img2img/End Percent/visible": true,
"customscript/kohya_hrfix.py/img2img/End Percent/value": 0.35,
"customscript/kohya_hrfix.py/img2img/End Percent/minimum": 0.0,
"customscript/kohya_hrfix.py/img2img/End Percent/maximum": 1.0,
"customscript/kohya_hrfix.py/img2img/End Percent/step": 0.001,
"customscript/kohya_hrfix.py/img2img/Downscale After Skip/visible": true,
"customscript/kohya_hrfix.py/img2img/Downscale After Skip/value": true,
"customscript/kohya_hrfix.py/img2img/Downscale Method/visible": true,
"customscript/kohya_hrfix.py/img2img/Downscale Method/value": "bicubic",
"customscript/kohya_hrfix.py/img2img/Upscale Method/visible": true,
"customscript/kohya_hrfix.py/img2img/Upscale Method/value": "bicubic",
"customscript/APG_CFGGuidance_script.py/img2img/Enable APG/visible": true,
"customscript/APG_CFGGuidance_script.py/img2img/Enable APG/value": false,
"customscript/APG_CFGGuidance_script.py/img2img/APG Momentum/visible": true,
"customscript/APG_CFGGuidance_script.py/img2img/APG Momentum/value": 0.5,
"customscript/APG_CFGGuidance_script.py/img2img/APG Momentum/minimum": -2.5,
"customscript/APG_CFGGuidance_script.py/img2img/APG Momentum/maximum": 2.5,
"customscript/APG_CFGGuidance_script.py/img2img/APG Momentum/step": 0.01,
"customscript/APG_CFGGuidance_script.py/img2img/APG Adaptive Momentum/visible": true,
"customscript/APG_CFGGuidance_script.py/img2img/APG Adaptive Momentum/value": 0.18,
"customscript/APG_CFGGuidance_script.py/img2img/APG Adaptive Momentum/minimum": -2.5,
"customscript/APG_CFGGuidance_script.py/img2img/APG Adaptive Momentum/maximum": 2.5,
"customscript/APG_CFGGuidance_script.py/img2img/APG Adaptive Momentum/step": 0.01,
"customscript/APG_CFGGuidance_script.py/img2img/APG Norm Threshold/visible": true,
"customscript/APG_CFGGuidance_script.py/img2img/APG Norm Threshold/value": 15.0,
"customscript/APG_CFGGuidance_script.py/img2img/APG Norm Threshold/minimum": 0.0,
"customscript/APG_CFGGuidance_script.py/img2img/APG Norm Threshold/maximum": 100.0,
"customscript/APG_CFGGuidance_script.py/img2img/APG Norm Threshold/step": 0.5,
"customscript/APG_CFGGuidance_script.py/img2img/APG Eta/visible": true,
"customscript/APG_CFGGuidance_script.py/img2img/APG Eta/value": 1.0,
"customscript/APG_CFGGuidance_script.py/img2img/APG Eta/minimum": 0.0,
"customscript/APG_CFGGuidance_script.py/img2img/APG Eta/maximum": 2.0,
"customscript/APG_CFGGuidance_script.py/img2img/APG Eta/step": 0.1,
"customscript/APG_CFGGuidance_script.py/img2img/Enable Guidance Limiter/visible": true,
"customscript/APG_CFGGuidance_script.py/img2img/Enable Guidance Limiter/value": false,
"customscript/APG_CFGGuidance_script.py/img2img/Guidance Sigma Start/visible": true,
"customscript/APG_CFGGuidance_script.py/img2img/Guidance Sigma Start/value": 5.42,
"customscript/APG_CFGGuidance_script.py/img2img/Guidance Sigma Start/minimum": -1.0,
"customscript/APG_CFGGuidance_script.py/img2img/Guidance Sigma Start/maximum": 10000.0,
"customscript/APG_CFGGuidance_script.py/img2img/Guidance Sigma Start/step": 0.01,
"customscript/APG_CFGGuidance_script.py/img2img/Guidance Sigma End/visible": true,
"customscript/APG_CFGGuidance_script.py/img2img/Guidance Sigma End/value": 0.28,
"customscript/APG_CFGGuidance_script.py/img2img/Guidance Sigma End/minimum": -1.0,
"customscript/APG_CFGGuidance_script.py/img2img/Guidance Sigma End/maximum": 10000.0,
"customscript/APG_CFGGuidance_script.py/img2img/Guidance Sigma End/step": 0.01,
"customscript/advanced_model_sampling_script.py/img2img/Enable RescaleCFG/visible": true,
"customscript/advanced_model_sampling_script.py/img2img/Enable RescaleCFG/value": false,
"customscript/advanced_model_sampling_script.py/img2img/RescaleCFG Multiplier/visible": true,
"customscript/advanced_model_sampling_script.py/img2img/RescaleCFG Multiplier/value": 0.7,
"customscript/advanced_model_sampling_script.py/img2img/RescaleCFG Multiplier/minimum": 0.0,
"customscript/advanced_model_sampling_script.py/img2img/RescaleCFG Multiplier/maximum": 1.0,
"customscript/advanced_model_sampling_script.py/img2img/RescaleCFG Multiplier/step": 0.01,
"customscript/advanced_model_sampling_script_backported.py/img2img/Enable Advanced Model Sampling/visible": true,
"customscript/advanced_model_sampling_script_backported.py/img2img/Enable Advanced Model Sampling/value": false,
"customscript/advanced_model_sampling_script_backported.py/img2img/Sampling Mode/visible": true,
"customscript/advanced_model_sampling_script_backported.py/img2img/Sampling Mode/value": "Discrete",
"customscript/advanced_model_sampling_script_backported.py/img2img/Discrete Sampling Type/visible": true,
"customscript/advanced_model_sampling_script_backported.py/img2img/Discrete Sampling Type/value": "v_prediction",
"customscript/advanced_model_sampling_script_backported.py/img2img/Zero SNR/visible": true,
"customscript/advanced_model_sampling_script_backported.py/img2img/Zero SNR/value": true,
"customscript/advanced_model_sampling_script_backported.py/img2img/Continuous EDM Sampling Type/visible": true,
"customscript/advanced_model_sampling_script_backported.py/img2img/Continuous EDM Sampling Type/value": "v_prediction",
"customscript/advanced_model_sampling_script_backported.py/img2img/Sigma Max/visible": true,
"customscript/advanced_model_sampling_script_backported.py/img2img/Sigma Max/value": 120.0,
"customscript/advanced_model_sampling_script_backported.py/img2img/Sigma Max/minimum": 0.0,
"customscript/advanced_model_sampling_script_backported.py/img2img/Sigma Max/maximum": 1000.0,
"customscript/advanced_model_sampling_script_backported.py/img2img/Sigma Max/step": 0.001,
"customscript/advanced_model_sampling_script_backported.py/img2img/Sigma Min/visible": true,
"customscript/advanced_model_sampling_script_backported.py/img2img/Sigma Min/value": 0.002,
"customscript/advanced_model_sampling_script_backported.py/img2img/Sigma Min/minimum": 0.0,
"customscript/advanced_model_sampling_script_backported.py/img2img/Sigma Min/maximum": 1000.0,
"customscript/advanced_model_sampling_script_backported.py/img2img/Sigma Min/step": 0.001,
"customscript/forge_multidiffusion.py/img2img/Enabled/visible": true,
"customscript/forge_multidiffusion.py/img2img/Enabled/value": false,
"customscript/forge_multidiffusion.py/img2img/Method/visible": true,
"customscript/forge_multidiffusion.py/img2img/Method/value": "MultiDiffusion",
"customscript/forge_multidiffusion.py/img2img/Tile Width/visible": true,
"customscript/forge_multidiffusion.py/img2img/Tile Width/value": 768,
"customscript/forge_multidiffusion.py/img2img/Tile Width/minimum": 16,
"customscript/forge_multidiffusion.py/img2img/Tile Width/maximum": 8192,
"customscript/forge_multidiffusion.py/img2img/Tile Width/step": 16,
"customscript/forge_multidiffusion.py/img2img/Tile Height/visible": true,
"customscript/forge_multidiffusion.py/img2img/Tile Height/value": 768,
"customscript/forge_multidiffusion.py/img2img/Tile Height/minimum": 16,
"customscript/forge_multidiffusion.py/img2img/Tile Height/maximum": 8192,
"customscript/forge_multidiffusion.py/img2img/Tile Height/step": 16,
"customscript/forge_multidiffusion.py/img2img/Tile Overlap/visible": true,
"customscript/forge_multidiffusion.py/img2img/Tile Overlap/value": 64,
"customscript/forge_multidiffusion.py/img2img/Tile Overlap/minimum": 0,
"customscript/forge_multidiffusion.py/img2img/Tile Overlap/maximum": 2048,
"customscript/forge_multidiffusion.py/img2img/Tile Overlap/step": 32,
"customscript/forge_multidiffusion.py/img2img/Tile Batch Size/visible": true,
"customscript/forge_multidiffusion.py/img2img/Tile Batch Size/value": 4,
"customscript/forge_multidiffusion.py/img2img/Tile Batch Size/minimum": 1,
"customscript/forge_multidiffusion.py/img2img/Tile Batch Size/maximum": 8192,
"customscript/forge_multidiffusion.py/img2img/Tile Batch Size/step": 1,
"customscript/forge_never_oom.py/img2img/Enabled for UNet (always maximize offload)/visible": true,
"customscript/forge_never_oom.py/img2img/Enabled for UNet (always maximize offload)/value": false,
"customscript/forge_never_oom.py/img2img/Enabled for VAE (always tiled)/visible": true,
"customscript/forge_never_oom.py/img2img/Enabled for VAE (always tiled)/value": false,
"img2img/Script/visible": true,
"img2img/Script/value": "None",
"customscript/img2imgalt.py/img2img/Override `Sampling method` to Euler?(this method is built for it)/visible": true,
"customscript/img2imgalt.py/img2img/Override `Sampling method` to Euler?(this method is built for it)/value": true,
"customscript/img2imgalt.py/img2img/Override `prompt` to the same value as `original prompt`?(and `negative prompt`)/visible": true,
"customscript/img2imgalt.py/img2img/Override `prompt` to the same value as `original prompt`?(and `negative prompt`)/value": true,
"customscript/img2imgalt.py/img2img/Original prompt/visible": true,
"customscript/img2imgalt.py/img2img/Original prompt/value": "",
"customscript/img2imgalt.py/img2img/Original negative prompt/visible": true,
"customscript/img2imgalt.py/img2img/Original negative prompt/value": "",
"customscript/img2imgalt.py/img2img/Override `Sampling Steps` to the same value as `Decode steps`?/visible": true,
"customscript/img2imgalt.py/img2img/Override `Sampling Steps` to the same value as `Decode steps`?/value": true,
"customscript/img2imgalt.py/img2img/Decode steps/visible": true,
"customscript/img2imgalt.py/img2img/Decode steps/value": 50,
"customscript/img2imgalt.py/img2img/Decode steps/minimum": 1,
"customscript/img2imgalt.py/img2img/Decode steps/maximum": 150,
"customscript/img2imgalt.py/img2img/Decode steps/step": 1,
"customscript/img2imgalt.py/img2img/Override `Denoising strength` to 1?/visible": true,
"customscript/img2imgalt.py/img2img/Override `Denoising strength` to 1?/value": true,
"customscript/img2imgalt.py/img2img/Decode CFG scale/visible": true,
"customscript/img2imgalt.py/img2img/Decode CFG scale/value": 1.0,
"customscript/img2imgalt.py/img2img/Decode CFG scale/minimum": 0.0,
"customscript/img2imgalt.py/img2img/Decode CFG scale/maximum": 15.0,
"customscript/img2imgalt.py/img2img/Decode CFG scale/step": 0.1,
"customscript/img2imgalt.py/img2img/Randomness/visible": true,
"customscript/img2imgalt.py/img2img/Randomness/value": 0.0,
"customscript/img2imgalt.py/img2img/Randomness/minimum": 0.0,
"customscript/img2imgalt.py/img2img/Randomness/maximum": 1.0,
"customscript/img2imgalt.py/img2img/Randomness/step": 0.01,
"customscript/img2imgalt.py/img2img/Sigma adjustment for finding noise for image/visible": true,
"customscript/img2imgalt.py/img2img/Sigma adjustment for finding noise for image/value": false,
"customscript/loopback.py/img2img/Loops/visible": true,
"customscript/loopback.py/img2img/Loops/value": 4,
"customscript/loopback.py/img2img/Loops/minimum": 1,
"customscript/loopback.py/img2img/Loops/maximum": 32,
"customscript/loopback.py/img2img/Loops/step": 1,
"customscript/loopback.py/img2img/Final denoising strength/visible": true,
"customscript/loopback.py/img2img/Final denoising strength/value": 0.5,
"customscript/loopback.py/img2img/Final denoising strength/minimum": 0,
"customscript/loopback.py/img2img/Final denoising strength/maximum": 1,
"customscript/loopback.py/img2img/Final denoising strength/step": 0.01,
"customscript/loopback.py/img2img/Denoising strength curve/visible": true,
"customscript/loopback.py/img2img/Denoising strength curve/value": "Linear",
"customscript/loopback.py/img2img/Append interrogated prompt at each iteration/visible": true,
"customscript/loopback.py/img2img/Append interrogated prompt at each iteration/value": "None",
"customscript/outpainting_mk_2.py/img2img/Pixels to expand/visible": true,
"customscript/outpainting_mk_2.py/img2img/Pixels to expand/value": 128,
"customscript/outpainting_mk_2.py/img2img/Pixels to expand/minimum": 8,
"customscript/outpainting_mk_2.py/img2img/Pixels to expand/maximum": 256,
"customscript/outpainting_mk_2.py/img2img/Pixels to expand/step": 8,
"customscript/outpainting_mk_2.py/img2img/Mask blur/visible": true,
"customscript/outpainting_mk_2.py/img2img/Mask blur/value": 8,
"customscript/outpainting_mk_2.py/img2img/Mask blur/minimum": 0,
"customscript/outpainting_mk_2.py/img2img/Mask blur/maximum": 64,
"customscript/outpainting_mk_2.py/img2img/Mask blur/step": 1,
"customscript/outpainting_mk_2.py/img2img/Fall-off exponent (lower=higher detail)/visible": true,
"customscript/outpainting_mk_2.py/img2img/Fall-off exponent (lower=higher detail)/value": 1.0,
"customscript/outpainting_mk_2.py/img2img/Fall-off exponent (lower=higher detail)/minimum": 0.0,
"customscript/outpainting_mk_2.py/img2img/Fall-off exponent (lower=higher detail)/maximum": 4.0,
"customscript/outpainting_mk_2.py/img2img/Fall-off exponent (lower=higher detail)/step": 0.01,
"customscript/outpainting_mk_2.py/img2img/Color variation/visible": true,
"customscript/outpainting_mk_2.py/img2img/Color variation/value": 0.05,
"customscript/outpainting_mk_2.py/img2img/Color variation/minimum": 0.0,
"customscript/outpainting_mk_2.py/img2img/Color variation/maximum": 1.0,
"customscript/outpainting_mk_2.py/img2img/Color variation/step": 0.01,
"customscript/poor_mans_outpainting.py/img2img/Pixels to expand/visible": true,
"customscript/poor_mans_outpainting.py/img2img/Pixels to expand/value": 128,
"customscript/poor_mans_outpainting.py/img2img/Pixels to expand/minimum": 8,
"customscript/poor_mans_outpainting.py/img2img/Pixels to expand/maximum": 256,
"customscript/poor_mans_outpainting.py/img2img/Pixels to expand/step": 8,
"customscript/poor_mans_outpainting.py/img2img/Mask blur/visible": true,
"customscript/poor_mans_outpainting.py/img2img/Mask blur/value": 4,
"customscript/poor_mans_outpainting.py/img2img/Mask blur/minimum": 0,
"customscript/poor_mans_outpainting.py/img2img/Mask blur/maximum": 64,
"customscript/poor_mans_outpainting.py/img2img/Mask blur/step": 1,
"customscript/poor_mans_outpainting.py/img2img/Masked content/visible": true,
"customscript/poor_mans_outpainting.py/img2img/Masked content/value": "fill",
"customscript/prompt_matrix.py/img2img/Put variable parts at start of prompt/visible": true,
"customscript/prompt_matrix.py/img2img/Put variable parts at start of prompt/value": false,
"customscript/prompt_matrix.py/img2img/Use different seed for each picture/visible": true,
"customscript/prompt_matrix.py/img2img/Use different seed for each picture/value": false,
"customscript/prompt_matrix.py/img2img/Select prompt/visible": true,
"customscript/prompt_matrix.py/img2img/Select prompt/value": "positive",
"customscript/prompt_matrix.py/img2img/Select joining char/visible": true,
"customscript/prompt_matrix.py/img2img/Select joining char/value": "comma",
"customscript/prompt_matrix.py/img2img/Grid margins (px)/visible": true,
"customscript/prompt_matrix.py/img2img/Grid margins (px)/value": 0,
"customscript/prompt_matrix.py/img2img/Grid margins (px)/minimum": 0,
"customscript/prompt_matrix.py/img2img/Grid margins (px)/maximum": 500,
"customscript/prompt_matrix.py/img2img/Grid margins (px)/step": 2,
"customscript/prompts_from_file.py/img2img/Iterate seed every line/visible": true,
"customscript/prompts_from_file.py/img2img/Iterate seed every line/value": false,
"customscript/prompts_from_file.py/img2img/Use same random seed for all lines/visible": true,
"customscript/prompts_from_file.py/img2img/Use same random seed for all lines/value": false,
"customscript/prompts_from_file.py/img2img/Insert prompts at the/visible": true,
"customscript/prompts_from_file.py/img2img/Insert prompts at the/value": "start",
"customscript/prompts_from_file.py/img2img/List of prompt inputs/visible": true,
"customscript/prompts_from_file.py/img2img/List of prompt inputs/value": "",
"customscript/sd_upscale.py/img2img/Tile overlap/visible": true,
"customscript/sd_upscale.py/img2img/Tile overlap/value": 64,
"customscript/sd_upscale.py/img2img/Tile overlap/minimum": 0,
"customscript/sd_upscale.py/img2img/Tile overlap/maximum": 256,
"customscript/sd_upscale.py/img2img/Tile overlap/step": 16,
"customscript/sd_upscale.py/img2img/Scale Factor/visible": true,
"customscript/sd_upscale.py/img2img/Scale Factor/value": 2.0,
"customscript/sd_upscale.py/img2img/Scale Factor/minimum": 1.0,
"customscript/sd_upscale.py/img2img/Scale Factor/maximum": 4.0,
"customscript/sd_upscale.py/img2img/Scale Factor/step": 0.05,
"customscript/sd_upscale.py/img2img/Upscaler/visible": true,
"customscript/sd_upscale.py/img2img/Upscaler/value": "None",
"customscript/xyz_grid.py/img2img/X type/visible": true,
"customscript/xyz_grid.py/img2img/X type/value": "Seed",
"customscript/xyz_grid.py/img2img/X values/visible": true,
"customscript/xyz_grid.py/img2img/X values/value": "",
"customscript/xyz_grid.py/img2img/Y type/visible": true,
"customscript/xyz_grid.py/img2img/Y type/value": "Nothing",
"customscript/xyz_grid.py/img2img/Y values/visible": true,
"customscript/xyz_grid.py/img2img/Y values/value": "",
"customscript/xyz_grid.py/img2img/Z type/visible": true,
"customscript/xyz_grid.py/img2img/Z type/value": "Nothing",
"customscript/xyz_grid.py/img2img/Z values/visible": true,
"customscript/xyz_grid.py/img2img/Z values/value": "",
"customscript/xyz_grid.py/img2img/Draw legend/visible": true,
"customscript/xyz_grid.py/img2img/Draw legend/value": true,
"customscript/xyz_grid.py/img2img/Draw individual labels/visible": true,
"customscript/xyz_grid.py/img2img/Draw individual labels/value": false,
"customscript/xyz_grid.py/img2img/Items per grid (0 = default), for sequential grid generation./visible": true,
"customscript/xyz_grid.py/img2img/Items per grid (0 = default), for sequential grid generation./value": 0,
"customscript/xyz_grid.py/img2img/Items per grid (0 = default), for sequential grid generation./minimum": 0,
"customscript/xyz_grid.py/img2img/Items per grid (0 = default), for sequential grid generation./maximum": 200,
"customscript/xyz_grid.py/img2img/Items per grid (0 = default), for sequential grid generation./step": 1,
"customscript/xyz_grid.py/img2img/Keep -1 for seeds/visible": true,
"customscript/xyz_grid.py/img2img/Keep -1 for seeds/value": false,
"customscript/xyz_grid.py/img2img/Vary seeds for X/visible": true,
"customscript/xyz_grid.py/img2img/Vary seeds for X/value": false,
"customscript/xyz_grid.py/img2img/Vary seeds for Y/visible": true,
"customscript/xyz_grid.py/img2img/Vary seeds for Y/value": false,
"customscript/xyz_grid.py/img2img/Vary seeds for Z/visible": true,
"customscript/xyz_grid.py/img2img/Vary seeds for Z/value": false,
"customscript/xyz_grid.py/img2img/Include Sub Images/visible": true,
"customscript/xyz_grid.py/img2img/Include Sub Images/value": false,
"customscript/xyz_grid.py/img2img/Include Sub Grids/visible": true,
"customscript/xyz_grid.py/img2img/Include Sub Grids/value": false,
"customscript/xyz_grid.py/img2img/Use text inputs instead of dropdowns/visible": true,
"customscript/xyz_grid.py/img2img/Use text inputs instead of dropdowns/value": false,
"customscript/xyz_grid.py/img2img/Grid margins (px)/visible": true,
"customscript/xyz_grid.py/img2img/Grid margins (px)/value": 0,
"customscript/xyz_grid.py/img2img/Grid margins (px)/minimum": 0,
"customscript/xyz_grid.py/img2img/Grid margins (px)/maximum": 500,
"customscript/xyz_grid.py/img2img/Grid margins (px)/step": 2,
"img2img/Swap X/Y axes/visible": true,
"img2img/Swap Y/Z axes/visible": true,
"img2img/Swap X/Z axes/visible": true,
"img2img/๐/visible": true,
"img2img/๐พ/visible": true,
"img2img/๐๏ธ/visible": true,
"img2img/๐ผ๏ธ/visible": true,
"img2img/๐จ๏ธ/visible": true,
"img2img/๐ฌ/visible": true,
"img2img/Description/visible": true,
"img2img/Description/value": "",
"img2img/Replace preview/visible": true,
"img2img/Save/visible": true,
"img2img/Preferred VAE/visible": true,
"img2img/Preferred VAE/value": "None",
"img2img/Stable Diffusion version/visible": true,
"img2img/Stable Diffusion version/value": "Unknown",
"img2img/Activation text/visible": true,
"img2img/Activation text/value": "",
"img2img/Preferred weight/visible": true,
"img2img/Preferred weight/value": 0.0,
"img2img/Preferred weight/minimum": 0.0,
"img2img/Preferred weight/maximum": 2.0,
"img2img/Preferred weight/step": 0.01,
"img2img/Random prompt/visible": true,
"img2img/Random prompt/value": "",
"extras/Tabs@mode_extras/selected": null,
"extras/Input directory/visible": true,
"extras/Input directory/value": "",
"extras/Output directory/visible": true,
"extras/Output directory/value": "",
"extras/Show result images/visible": true,
"extras/Show result images/value": true,
"customscript/postprocessing_upscale.py/extras/Upscale/visible": true,
"customscript/postprocessing_upscale.py/extras/Upscale/value": true,
"customscript/postprocessing_upscale.py/extras/Upscaler 1/visible": true,
"customscript/postprocessing_upscale.py/extras/Upscaler 1/value": "None",
"customscript/postprocessing_upscale.py/extras/Upscaler 2/visible": true,
"customscript/postprocessing_upscale.py/extras/Upscaler 2/value": "None",
"customscript/postprocessing_upscale.py/extras/Upscaler 2 visibility/visible": true,
"customscript/postprocessing_upscale.py/extras/Upscaler 2 visibility/value": 0.0,
"customscript/postprocessing_upscale.py/extras/Upscaler 2 visibility/minimum": 0.0,
"customscript/postprocessing_upscale.py/extras/Upscaler 2 visibility/maximum": 1.0,
"customscript/postprocessing_upscale.py/extras/Upscaler 2 visibility/step": 0.001,
"extras/Tabs@extras_resize_mode/selected": null,
"customscript/postprocessing_upscale.py/extras/Resize/visible": true,
"customscript/postprocessing_upscale.py/extras/Resize/value": 4,
"customscript/postprocessing_upscale.py/extras/Resize/minimum": 1.0,
"customscript/postprocessing_upscale.py/extras/Resize/maximum": 8.0,
"customscript/postprocessing_upscale.py/extras/Resize/step": 0.05,
"customscript/postprocessing_upscale.py/extras/Max side length/visible": true,
"customscript/postprocessing_upscale.py/extras/Max side length/value": 0.0,
"customscript/postprocessing_upscale.py/extras/Width/visible": true,
"customscript/postprocessing_upscale.py/extras/Width/value": 512,
"customscript/postprocessing_upscale.py/extras/Width/minimum": 64,
"customscript/postprocessing_upscale.py/extras/Width/maximum": 8192,
"customscript/postprocessing_upscale.py/extras/Width/step": 8,
"customscript/postprocessing_upscale.py/extras/Height/visible": true,
"customscript/postprocessing_upscale.py/extras/Height/value": 512,
"customscript/postprocessing_upscale.py/extras/Height/minimum": 64,
"customscript/postprocessing_upscale.py/extras/Height/maximum": 8192,
"customscript/postprocessing_upscale.py/extras/Height/step": 8,
"extras/โ
/visible": true,
"customscript/postprocessing_upscale.py/extras/Crop to fit/visible": true,
"customscript/postprocessing_upscale.py/extras/Crop to fit/value": true,
"customscript/postprocessing_gfpgan.py/extras/GFPGAN/visible": true,
"customscript/postprocessing_gfpgan.py/extras/GFPGAN/value": false,
"customscript/postprocessing_gfpgan.py/extras/Visibility/visible": true,
"customscript/postprocessing_gfpgan.py/extras/Visibility/value": 1.0,
"customscript/postprocessing_gfpgan.py/extras/Visibility/minimum": 0.0,
"customscript/postprocessing_gfpgan.py/extras/Visibility/maximum": 1.0,
"customscript/postprocessing_gfpgan.py/extras/Visibility/step": 0.001,
"customscript/postprocessing_codeformer.py/extras/CodeFormer/visible": true,
"customscript/postprocessing_codeformer.py/extras/CodeFormer/value": false,
"customscript/postprocessing_codeformer.py/extras/Visibility/visible": true,
"customscript/postprocessing_codeformer.py/extras/Visibility/value": 1.0,
"customscript/postprocessing_codeformer.py/extras/Visibility/minimum": 0.0,
"customscript/postprocessing_codeformer.py/extras/Visibility/maximum": 1.0,
"customscript/postprocessing_codeformer.py/extras/Visibility/step": 0.001,
"customscript/postprocessing_codeformer.py/extras/Weight (0 = maximum effect, 1 = minimum effect)/visible": true,
"customscript/postprocessing_codeformer.py/extras/Weight (0 = maximum effect, 1 = minimum effect)/value": 0,
"customscript/postprocessing_codeformer.py/extras/Weight (0 = maximum effect, 1 = minimum effect)/minimum": 0.0,
"customscript/postprocessing_codeformer.py/extras/Weight (0 = maximum effect, 1 = minimum effect)/maximum": 1.0,
"customscript/postprocessing_codeformer.py/extras/Weight (0 = maximum effect, 1 = minimum effect)/step": 0.001,
"customscript/postprocessing_split_oversized.py/extras/Split oversized images/visible": true,
"customscript/postprocessing_split_oversized.py/extras/Split oversized images/value": false,
"customscript/postprocessing_split_oversized.py/extras/Threshold/visible": true,
"customscript/postprocessing_split_oversized.py/extras/Threshold/value": 0.5,
"customscript/postprocessing_split_oversized.py/extras/Threshold/minimum": 0.0,
"customscript/postprocessing_split_oversized.py/extras/Threshold/maximum": 1.0,
"customscript/postprocessing_split_oversized.py/extras/Threshold/step": 0.05,
"customscript/postprocessing_split_oversized.py/extras/Overlap ratio/visible": true,
"customscript/postprocessing_split_oversized.py/extras/Overlap ratio/value": 0.2,
"customscript/postprocessing_split_oversized.py/extras/Overlap ratio/minimum": 0.0,
"customscript/postprocessing_split_oversized.py/extras/Overlap ratio/maximum": 0.9,
"customscript/postprocessing_split_oversized.py/extras/Overlap ratio/step": 0.05,
"customscript/postprocessing_focal_crop.py/extras/Auto focal point crop/visible": true,
"customscript/postprocessing_focal_crop.py/extras/Auto focal point crop/value": false,
"customscript/postprocessing_focal_crop.py/extras/Focal point face weight/visible": true,
"customscript/postprocessing_focal_crop.py/extras/Focal point face weight/value": 0.9,
"customscript/postprocessing_focal_crop.py/extras/Focal point face weight/minimum": 0.0,
"customscript/postprocessing_focal_crop.py/extras/Focal point face weight/maximum": 1.0,
"customscript/postprocessing_focal_crop.py/extras/Focal point face weight/step": 0.05,
"customscript/postprocessing_focal_crop.py/extras/Focal point entropy weight/visible": true,
"customscript/postprocessing_focal_crop.py/extras/Focal point entropy weight/value": 0.15,
"customscript/postprocessing_focal_crop.py/extras/Focal point entropy weight/minimum": 0.0,
"customscript/postprocessing_focal_crop.py/extras/Focal point entropy weight/maximum": 1.0,
"customscript/postprocessing_focal_crop.py/extras/Focal point entropy weight/step": 0.05,
"customscript/postprocessing_focal_crop.py/extras/Focal point edges weight/visible": true,
"customscript/postprocessing_focal_crop.py/extras/Focal point edges weight/value": 0.5,
"customscript/postprocessing_focal_crop.py/extras/Focal point edges weight/minimum": 0.0,
"customscript/postprocessing_focal_crop.py/extras/Focal point edges weight/maximum": 1.0,
"customscript/postprocessing_focal_crop.py/extras/Focal point edges weight/step": 0.05,
"customscript/postprocessing_focal_crop.py/extras/Create debug image/visible": true,
"customscript/postprocessing_focal_crop.py/extras/Create debug image/value": false,
"customscript/processing_autosized_crop.py/extras/Auto-sized crop/visible": true,
"customscript/processing_autosized_crop.py/extras/Auto-sized crop/value": false,
"customscript/processing_autosized_crop.py/extras/Dimension lower bound/visible": true,
"customscript/processing_autosized_crop.py/extras/Dimension lower bound/value": 384,
"customscript/processing_autosized_crop.py/extras/Dimension lower bound/minimum": 64,
"customscript/processing_autosized_crop.py/extras/Dimension lower bound/maximum": 2048,
"customscript/processing_autosized_crop.py/extras/Dimension lower bound/step": 8,
"customscript/processing_autosized_crop.py/extras/Dimension upper bound/visible": true,
"customscript/processing_autosized_crop.py/extras/Dimension upper bound/value": 768,
"customscript/processing_autosized_crop.py/extras/Dimension upper bound/minimum": 64,
"customscript/processing_autosized_crop.py/extras/Dimension upper bound/maximum": 2048,
"customscript/processing_autosized_crop.py/extras/Dimension upper bound/step": 8,
"customscript/processing_autosized_crop.py/extras/Area lower bound/visible": true,
"customscript/processing_autosized_crop.py/extras/Area lower bound/value": 4096,
"customscript/processing_autosized_crop.py/extras/Area lower bound/minimum": 4096,
"customscript/processing_autosized_crop.py/extras/Area lower bound/maximum": 4194304,
"customscript/processing_autosized_crop.py/extras/Area lower bound/step": 1,
"customscript/processing_autosized_crop.py/extras/Area upper bound/visible": true,
"customscript/processing_autosized_crop.py/extras/Area upper bound/value": 409600,
"customscript/processing_autosized_crop.py/extras/Area upper bound/minimum": 4096,
"customscript/processing_autosized_crop.py/extras/Area upper bound/maximum": 4194304,
"customscript/processing_autosized_crop.py/extras/Area upper bound/step": 1,
"customscript/processing_autosized_crop.py/extras/Resizing objective/visible": true,
"customscript/processing_autosized_crop.py/extras/Resizing objective/value": "Maximize area",
"customscript/processing_autosized_crop.py/extras/Error threshold/visible": true,
"customscript/processing_autosized_crop.py/extras/Error threshold/value": 0.1,
"customscript/processing_autosized_crop.py/extras/Error threshold/minimum": 0,
"customscript/processing_autosized_crop.py/extras/Error threshold/maximum": 1,
"customscript/processing_autosized_crop.py/extras/Error threshold/step": 0.01,
"customscript/postprocessing_create_flipped_copies.py/extras/Create flipped copies/visible": true,
"customscript/postprocessing_create_flipped_copies.py/extras/Create flipped copies/value": false,
"customscript/postprocessing_caption.py/extras/Caption/visible": true,
"customscript/postprocessing_caption.py/extras/Caption/value": false,
"extras/Interrupt/visible": true,
"extras/Skip/visible": true,
"extras/Interrupting.../visible": true,
"extras/Generate/visible": true,
"extras/๐/visible": true,
"extras/๐ผ๏ธ/visible": true,
"extras/๐จ๏ธ/visible": true,
"extras/๐/visible": true,
"extras/๐ฌ/visible": true,
"pnginfo/Send to txt2img/visible": true,
"pnginfo/Send to img2img/visible": true,
"pnginfo/Send to inpaint/visible": true,
"pnginfo/Send to extras/visible": true,
"modelmerger/Primary model (A)/visible": true,
"modelmerger/Primary model (A)/value": null,
"modelmerger/๐/visible": true,
"modelmerger/Secondary model (B)/visible": true,
"modelmerger/Secondary model (B)/value": null,
"modelmerger/Tertiary model (C)/visible": true,
"modelmerger/Tertiary model (C)/value": null,
"modelmerger/Custom Name (Optional)/visible": true,
"modelmerger/Custom Name (Optional)/value": "",
"modelmerger/Multiplier (M) - set to 0 to get model A/visible": true,
"modelmerger/Multiplier (M) - set to 0 to get model A/value": 0.3,
"modelmerger/Multiplier (M) - set to 0 to get model A/minimum": 0.0,
"modelmerger/Multiplier (M) - set to 0 to get model A/maximum": 1.0,
"modelmerger/Multiplier (M) - set to 0 to get model A/step": 0.05,
"modelmerger/Interpolation Method/visible": true,
"modelmerger/Interpolation Method/value": "Weighted sum",
"modelmerger/Checkpoint format/visible": true,
"modelmerger/Checkpoint format/value": "safetensors",
"modelmerger/Save as float16/visible": true,
"modelmerger/Save as float16/value": false,
"modelmerger/Copy config from/visible": true,
"modelmerger/Copy config from/value": "A, B or C",
"modelmerger/Bake in VAE/visible": true,
"modelmerger/Bake in VAE/value": "None",
"modelmerger/Discard weights with matching name/visible": true,
"modelmerger/Discard weights with matching name/value": "",
"modelmerger/Save metadata/visible": true,
"modelmerger/Save metadata/value": true,
"modelmerger/Add merge recipe metadata/visible": true,
"modelmerger/Add merge recipe metadata/value": true,
"modelmerger/Copy metadata from merged models/visible": true,
"modelmerger/Copy metadata from merged models/value": true,
"modelmerger/Read metadata from selected checkpoints/visible": true,
"modelmerger/Merge/visible": true,
"train/Tabs@train_tabs/selected": null,
"train/Name/visible": true,
"train/Name/value": "",
"train/Initialization text/visible": true,
"train/Initialization text/value": "*",
"train/Number of vectors per token/visible": true,
"train/Number of vectors per token/value": 1,
"train/Number of vectors per token/minimum": 1,
"train/Number of vectors per token/maximum": 75,
"train/Number of vectors per token/step": 1,
"train/Overwrite Old Embedding/visible": true,
"train/Overwrite Old Embedding/value": false,
"train/Create embedding/visible": true,
"train/Enter hypernetwork layer structure/visible": true,
"train/Enter hypernetwork layer structure/value": "1, 2, 1",
"train/Select activation function of hypernetwork. Recommended : Swish / Linear(none)/visible": true,
"train/Select activation function of hypernetwork. Recommended : Swish / Linear(none)/value": "linear",
"train/Select Layer weights initialization. Recommended: Kaiming for relu-like, Xavier for sigmoid-like, Normal otherwise/visible": true,
"train/Select Layer weights initialization. Recommended: Kaiming for relu-like, Xavier for sigmoid-like, Normal otherwise/value": "Normal",
"train/Add layer normalization/visible": true,
"train/Add layer normalization/value": false,
"train/Use dropout/visible": true,
"train/Use dropout/value": false,
"train/Enter hypernetwork Dropout structure (or empty). Recommended : 0~0.35 incrementing sequence: 0, 0.05, 0.15/visible": true,
"train/Enter hypernetwork Dropout structure (or empty). Recommended : 0~0.35 incrementing sequence: 0, 0.05, 0.15/value": "0, 0, 0",
"train/Overwrite Old Hypernetwork/visible": true,
"train/Overwrite Old Hypernetwork/value": false,
"train/Create hypernetwork/visible": true,
"train/Embedding/visible": true,
"train/Embedding/value": null,
"train/๐/visible": true,
"train/Hypernetwork/visible": true,
"train/Hypernetwork/value": null,
"train/Embedding Learning rate/visible": true,
"train/Embedding Learning rate/value": "0.005",
"train/Hypernetwork Learning rate/visible": true,
"train/Hypernetwork Learning rate/value": "0.00001",
"train/Gradient Clipping/visible": true,
"train/Gradient Clipping/value": "disabled",
"train/Batch size/visible": true,
"train/Batch size/value": 1,
"train/Gradient accumulation steps/visible": true,
"train/Gradient accumulation steps/value": 1,
"train/Dataset directory/visible": true,
"train/Dataset directory/value": "",
"train/Log directory/visible": true,
"train/Log directory/value": "textual_inversion",
"train/Prompt template/visible": true,
"train/Prompt template/value": "style_filewords.txt",
"train/Width/visible": true,
"train/Width/value": 512,
"train/Width/minimum": 64,
"train/Width/maximum": 2048,
"train/Width/step": 8,
"train/Height/visible": true,
"train/Height/value": 512,
"train/Height/minimum": 64,
"train/Height/maximum": 2048,
"train/Height/step": 8,
"train/Do not resize images/visible": true,
"train/Do not resize images/value": false,
"train/Max steps/visible": true,
"train/Max steps/value": 100000,
"train/Save an image to log directory every N steps, 0 to disable/visible": true,
"train/Save an image to log directory every N steps, 0 to disable/value": 500,
"train/Save a copy of embedding to log directory every N steps, 0 to disable/visible": true,
"train/Save a copy of embedding to log directory every N steps, 0 to disable/value": 500,
"train/Use PNG alpha channel as loss weight/visible": true,
"train/Use PNG alpha channel as loss weight/value": false,
"train/Save images with embedding in PNG chunks/visible": true,
"train/Save images with embedding in PNG chunks/value": true,
"train/Read parameters (prompt, etc...) from txt2img tab when making previews/visible": true,
"train/Read parameters (prompt, etc...) from txt2img tab when making previews/value": false,
"train/Shuffle tags by ',' when creating prompts./visible": true,
"train/Shuffle tags by ',' when creating prompts./value": false,
"train/Drop out tags when creating prompts./visible": true,
"train/Drop out tags when creating prompts./value": 0,
"train/Drop out tags when creating prompts./minimum": 0,
"train/Drop out tags when creating prompts./maximum": 1,
"train/Drop out tags when creating prompts./step": 0.1,
"train/Choose latent sampling method/visible": true,
"train/Choose latent sampling method/value": "once",
"train/Train Embedding/visible": true,
"train/Interrupt/visible": true,
"train/Train Hypernetwork/visible": true,
"svd/SVD Checkpoint Filename/visible": true,
"svd/SVD Checkpoint Filename/value": null,
"svd/๐/visible": true,
"svd/Width/visible": true,
"svd/Width/value": 1024,
"svd/Width/minimum": 16,
"svd/Width/maximum": 8192,
"svd/Width/step": 8,
"svd/Height/visible": true,
"svd/Height/value": 576,
"svd/Height/minimum": 16,
"svd/Height/maximum": 8192,
"svd/Height/step": 8,
"svd/Video Frames/visible": true,
"svd/Video Frames/value": 14,
"svd/Video Frames/minimum": 1,
"svd/Video Frames/maximum": 4096,
"svd/Video Frames/step": 1,
"svd/Motion Bucket Id/visible": true,
"svd/Motion Bucket Id/value": 127,
"svd/Motion Bucket Id/minimum": 1,
"svd/Motion Bucket Id/maximum": 1023,
"svd/Motion Bucket Id/step": 1,
"svd/Fps/visible": true,
"svd/Fps/value": 6,
"svd/Fps/minimum": 1,
"svd/Fps/maximum": 1024,
"svd/Fps/step": 1,
"svd/Augmentation Level/visible": true,
"svd/Augmentation Level/value": 0.0,
"svd/Augmentation Level/minimum": 0.0,
"svd/Augmentation Level/maximum": 10.0,
"svd/Augmentation Level/step": 0.01,
"svd/Sampling Steps/visible": true,
"svd/Sampling Steps/value": 20,
"svd/Sampling Steps/minimum": 1,
"svd/Sampling Steps/maximum": 200,
"svd/Sampling Steps/step": 1,
"svd/CFG Scale/visible": true,
"svd/CFG Scale/value": 2.5,
"svd/CFG Scale/minimum": 0.0,
"svd/CFG Scale/maximum": 50.0,
"svd/CFG Scale/step": 0.1,
"svd/Sampling Denoise/visible": true,
"svd/Sampling Denoise/value": 1.0,
"svd/Sampling Denoise/minimum": 0.0,
"svd/Sampling Denoise/maximum": 1.0,
"svd/Sampling Denoise/step": 0.01,
"svd/Guidance Min Cfg/visible": true,
"svd/Guidance Min Cfg/value": 1.0,
"svd/Guidance Min Cfg/minimum": 0.0,
"svd/Guidance Min Cfg/maximum": 100.0,
"svd/Guidance Min Cfg/step": 0.5,
"svd/Sampler Name/visible": true,
"svd/Sampler Name/value": "euler",
"svd/Scheduler/visible": true,
"svd/Scheduler/value": "karras",
"svd/Seed/visible": true,
"svd/Seed/value": 12345,
"svd/Generate/visible": true,
"z123/Zero123 Checkpoint Filename/visible": true,
"z123/Zero123 Checkpoint Filename/value": null,
"z123/๐/visible": true,
"z123/Width/visible": true,
"z123/Width/value": 256,
"z123/Width/minimum": 16,
"z123/Width/maximum": 8192,
"z123/Width/step": 8,
"z123/Height/visible": true,
"z123/Height/value": 256,
"z123/Height/minimum": 16,
"z123/Height/maximum": 8192,
"z123/Height/step": 8,
"z123/Batch Size/visible": true,
"z123/Batch Size/value": 4,
"z123/Batch Size/minimum": 1,
"z123/Batch Size/maximum": 4096,
"z123/Batch Size/step": 1,
"z123/Elevation/visible": true,
"z123/Elevation/value": 10.0,
"z123/Elevation/minimum": -180.0,
"z123/Elevation/maximum": 180.0,
"z123/Elevation/step": 0.001,
"z123/Azimuth/visible": true,
"z123/Azimuth/value": 142.0,
"z123/Azimuth/minimum": -180.0,
"z123/Azimuth/maximum": 180.0,
"z123/Azimuth/step": 0.001,
"z123/Sampling Denoise/visible": true,
"z123/Sampling Denoise/value": 1.0,
"z123/Sampling Denoise/minimum": 0.0,
"z123/Sampling Denoise/maximum": 1.0,
"z123/Sampling Denoise/step": 0.01,
"z123/Sampling Steps/visible": true,
"z123/Sampling Steps/value": 20,
"z123/Sampling Steps/minimum": 1,
"z123/Sampling Steps/maximum": 10000,
"z123/Sampling Steps/step": 1,
"z123/CFG Scale/visible": true,
"z123/CFG Scale/value": 5.0,
"z123/CFG Scale/minimum": 0.0,
"z123/CFG Scale/maximum": 100.0,
"z123/CFG Scale/step": 0.1,
"z123/Sampler Name/visible": true,
"z123/Sampler Name/value": "euler",
"z123/Sampling Scheduler/visible": true,
"z123/Sampling Scheduler/value": "sgm_uniform",
"z123/Seed/visible": true,
"z123/Seed/value": 12345,
"z123/Generate/visible": true,
"webui/Tabs@tabs/selected": null,
"customscript/detail_daemon.py/txt2img/Detail Daemon/visible": true,
"customscript/detail_daemon.py/txt2img/Detail Daemon/value": false,
"txt2img/Detail Amount/visible": true,
"txt2img/Detail Amount/value": 0.1,
"txt2img/Detail Amount/minimum": -1.0,
"txt2img/Detail Amount/maximum": 1.0,
"txt2img/Detail Amount/step": 0.01,
"customscript/detail_daemon.py/txt2img/Start/visible": true,
"customscript/detail_daemon.py/txt2img/Start/value": 0.2,
"customscript/detail_daemon.py/txt2img/Start/minimum": 0.0,
"customscript/detail_daemon.py/txt2img/Start/maximum": 1.0,
"customscript/detail_daemon.py/txt2img/Start/step": 0.01,
"customscript/detail_daemon.py/txt2img/End/visible": true,
"customscript/detail_daemon.py/txt2img/End/value": 0.8,
"customscript/detail_daemon.py/txt2img/End/minimum": 0.0,
"customscript/detail_daemon.py/txt2img/End/maximum": 1.0,
"customscript/detail_daemon.py/txt2img/End/step": 0.01,
"customscript/detail_daemon.py/txt2img/Bias/visible": true,
"customscript/detail_daemon.py/txt2img/Bias/value": 0.5,
"customscript/detail_daemon.py/txt2img/Bias/minimum": 0.0,
"customscript/detail_daemon.py/txt2img/Bias/maximum": 1.0,
"customscript/detail_daemon.py/txt2img/Bias/step": 0.01,
"txt2img/Start Offset/visible": true,
"txt2img/Start Offset/value": 0.0,
"txt2img/Start Offset/minimum": -1.0,
"txt2img/Start Offset/maximum": 1.0,
"txt2img/Start Offset/step": 0.01,
"txt2img/End Offset/visible": true,
"txt2img/End Offset/value": 0.0,
"txt2img/End Offset/minimum": -1.0,
"txt2img/End Offset/maximum": 1.0,
"txt2img/End Offset/step": 0.01,
"customscript/detail_daemon.py/txt2img/Exponent/visible": true,
"customscript/detail_daemon.py/txt2img/Exponent/value": 1.0,
"customscript/detail_daemon.py/txt2img/Exponent/minimum": 0.0,
"customscript/detail_daemon.py/txt2img/Exponent/maximum": 10.0,
"customscript/detail_daemon.py/txt2img/Exponent/step": 0.05,
"customscript/detail_daemon.py/txt2img/Fade/visible": true,
"customscript/detail_daemon.py/txt2img/Fade/value": 0.0,
"customscript/detail_daemon.py/txt2img/Fade/minimum": 0.0,
"customscript/detail_daemon.py/txt2img/Fade/maximum": 1.0,
"customscript/detail_daemon.py/txt2img/Fade/step": 0.05,
"customscript/detail_daemon.py/txt2img/Amount/visible": true,
"customscript/detail_daemon.py/txt2img/Amount/value": 0.1,
"customscript/detail_daemon.py/txt2img/Start Offset/visible": true,
"customscript/detail_daemon.py/txt2img/Start Offset/value": 0.0,
"customscript/detail_daemon.py/txt2img/End Offset/visible": true,
"customscript/detail_daemon.py/txt2img/End Offset/value": 0.0,
"customscript/detail_daemon.py/txt2img/Mode/visible": true,
"customscript/detail_daemon.py/txt2img/Mode/value": "uncond",
"customscript/detail_daemon.py/txt2img/Smooth/visible": true,
"customscript/detail_daemon.py/txt2img/Smooth/value": true,
"customscript/detail_daemon.py/img2img/Detail Daemon/visible": true,
"customscript/detail_daemon.py/img2img/Detail Daemon/value": false,
"img2img/Detail Amount/visible": true,
"img2img/Detail Amount/value": 0.1,
"img2img/Detail Amount/minimum": -1.0,
"img2img/Detail Amount/maximum": 1.0,
"img2img/Detail Amount/step": 0.01,
"customscript/detail_daemon.py/img2img/Start/visible": true,
"customscript/detail_daemon.py/img2img/Start/value": 0.2,
"customscript/detail_daemon.py/img2img/Start/minimum": 0.0,
"customscript/detail_daemon.py/img2img/Start/maximum": 1.0,
"customscript/detail_daemon.py/img2img/Start/step": 0.01,
"customscript/detail_daemon.py/img2img/End/visible": true,
"customscript/detail_daemon.py/img2img/End/value": 0.8,
"customscript/detail_daemon.py/img2img/End/minimum": 0.0,
"customscript/detail_daemon.py/img2img/End/maximum": 1.0,
"customscript/detail_daemon.py/img2img/End/step": 0.01,
"customscript/detail_daemon.py/img2img/Bias/visible": true,
"customscript/detail_daemon.py/img2img/Bias/value": 0.5,
"customscript/detail_daemon.py/img2img/Bias/minimum": 0.0,
"customscript/detail_daemon.py/img2img/Bias/maximum": 1.0,
"customscript/detail_daemon.py/img2img/Bias/step": 0.01,
"img2img/Start Offset/visible": true,
"img2img/Start Offset/value": 0.0,
"img2img/Start Offset/minimum": -1.0,
"img2img/Start Offset/maximum": 1.0,
"img2img/Start Offset/step": 0.01,
"img2img/End Offset/visible": true,
"img2img/End Offset/value": 0.0,
"img2img/End Offset/minimum": -1.0,
"img2img/End Offset/maximum": 1.0,
"img2img/End Offset/step": 0.01,
"customscript/detail_daemon.py/img2img/Exponent/visible": true,
"customscript/detail_daemon.py/img2img/Exponent/value": 1.0,
"customscript/detail_daemon.py/img2img/Exponent/minimum": 0.0,
"customscript/detail_daemon.py/img2img/Exponent/maximum": 10.0,
"customscript/detail_daemon.py/img2img/Exponent/step": 0.05,
"customscript/detail_daemon.py/img2img/Fade/visible": true,
"customscript/detail_daemon.py/img2img/Fade/value": 0.0,
"customscript/detail_daemon.py/img2img/Fade/minimum": 0.0,
"customscript/detail_daemon.py/img2img/Fade/maximum": 1.0,
"customscript/detail_daemon.py/img2img/Fade/step": 0.05,
"customscript/detail_daemon.py/img2img/Amount/visible": true,
"customscript/detail_daemon.py/img2img/Amount/value": 0.1,
"customscript/detail_daemon.py/img2img/Start Offset/visible": true,
"customscript/detail_daemon.py/img2img/Start Offset/value": 0.0,
"customscript/detail_daemon.py/img2img/End Offset/visible": true,
"customscript/detail_daemon.py/img2img/End Offset/value": 0.0,
"customscript/detail_daemon.py/img2img/Mode/visible": true,
"customscript/detail_daemon.py/img2img/Mode/value": "uncond",
"customscript/detail_daemon.py/img2img/Smooth/visible": true,
"customscript/detail_daemon.py/img2img/Smooth/value": true
} |