File size: 205,318 Bytes
83d437c | 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 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 | [
{
"task_type": "background",
"instruction": "Change the scene to the interior of Potala Palace, Tibet",
"images": [
"images/100_0.png",
"images/71204_1.png"
]
},
{
"task_type": "background",
"instruction": "Replace the background with a sunrise over the horizon, keeping the children and the plant they are holding in the same position and lighting.",
"images": [
"images/12132_0.png",
"images/22874_1.png"
]
},
{
"task_type": "background",
"instruction": "Remove the background and place the kitten in a snowy landscape.",
"images": [
"images/508_0.png",
"images/55744_1.png"
]
},
{
"task_type": "background",
"instruction": "Change the scene to a swirling snow vortex while keeping the man and the tree unchanged.",
"images": [
"images/158_0.png",
"images/40442_1.png"
]
},
{
"task_type": "background",
"instruction": "Add some early morning frost to the background.",
"images": [
"images/180_0.png",
"images/22794_1.png"
]
},
{
"task_type": "background",
"instruction": "Change the background to deserted carnival grounds.",
"images": [
"images/12780_0.png",
"images/71020_1.png"
]
},
{
"task_type": "background",
"instruction": "Change the background of this image to a dark charcoal background.",
"images": [
"images/12748_0.png",
"images/64216_1.png"
]
},
{
"task_type": "background",
"instruction": "Change the setting from an indoor dance studio to an outdoor park while keeping the dancer and her pose the same.",
"images": [
"images/12216_0.png",
"images/71250_1.png"
]
},
{
"task_type": "background",
"instruction": "Can you blur the background further to emphasize the red flowers?",
"images": [
"images/12212_0.png",
"images/72918_1.png"
]
},
{
"task_type": "background",
"instruction": "Change the background to a lush, tropical plantation while keeping the person and the basket of cherries unchanged.",
"images": [
"images/12042_0.png",
"images/71444_1.png"
]
},
{
"task_type": "background",
"instruction": "Replace the background with a concert hall setting",
"images": [
"images/12842_0.png",
"images/72020_1.png"
]
},
{
"task_type": "background",
"instruction": "Change the background to a serene winter forest scene while keeping the architectural structures unchanged.",
"images": [
"images/23750_0.png",
"images/71030_1.png"
]
},
{
"task_type": "background",
"instruction": "Change to a sorrowful background.",
"images": [
"images/12572_0.png",
"images/73008_1.png"
]
},
{
"task_type": "background",
"instruction": "Change the room's floor from wood to a soft carpet texture",
"images": [
"images/22608_0.png",
"images/22608_1.png"
]
},
{
"task_type": "background",
"instruction": "Change the background from daytime to twilight, maintaining the visibility of the train and tracks.",
"images": [
"images/512_0.png",
"images/71846_1.png"
]
},
{
"task_type": "background",
"instruction": "Change the background lighting to simulate early evening shadows while keeping the market scene unchanged.",
"images": [
"images/572_0.png",
"images/72506_1.png"
]
},
{
"task_type": "background",
"instruction": "Adjust the background to an arctic tundra plain.",
"images": [
"images/12854_0.png",
"images/23768_1.png"
]
},
{
"task_type": "background",
"instruction": "Change the background to a sunny classroom with large windows.",
"images": [
"images/206_0.png",
"images/70898_1.png"
]
},
{
"task_type": "background",
"instruction": "Change the water surface from a reflective blue to a calm green with lily pads",
"images": [
"images/796_0.png",
"images/796_1.png"
]
},
{
"task_type": "background",
"instruction": "Add a soft, glowing light behind the girl to enhance the atmosphere.",
"images": [
"images/22744_0.png",
"images/63450_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "Change the dog's fur color to solid black.",
"images": [
"images/1664_0.png",
"images/32162_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "change the color of the dog's frisbee to blue",
"images": [
"images/1672_0.png",
"images/85208_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "Change the color of the woman's nails from yellow to green",
"images": [
"images/33164_0.png",
"images/85668_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "Modify this image, changing the floor color to light brown.",
"images": [
"images/18918_0.png",
"images/85328_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "Change the American flag to blue.",
"images": [
"images/19460_0.png",
"images/84250_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "Change the color of the fishing nets.",
"images": [
"images/1614_0.png",
"images/32116_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "change the color of the prayer flags to monochrome tones",
"images": [
"images/19428_0.png",
"images/85304_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "change the color of the green graffiti to red",
"images": [
"images/1202_0.png",
"images/32804_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "change the color of the woman's scarf to purple",
"images": [
"images/32098_0.png",
"images/85744_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "Modify this image, changing the color of the wooden cutting board to a light shade of green.",
"images": [
"images/18884_0.png",
"images/35280_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "Change the color of the clock face to a soft pastel pink while keeping the hands and numbers in black.",
"images": [
"images/1222_0.png",
"images/60156_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "change the color of buttons to white",
"images": [
"images/1920_0.png",
"images/1920_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "change the color of the man's swim trunks to red",
"images": [
"images/18864_0.png",
"images/83948_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "Make her jacket color a deep forest green.",
"images": [
"images/1360_0.png",
"images/60344_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "Change the color of the watch strap from black to white.",
"images": [
"images/19532_0.png",
"images/84964_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "Change the lighting on the roads to a soft pink hue, enhancing the glow of the vehicle trails.",
"images": [
"images/19218_0.png",
"images/19218_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "Change the color of the pink fan in the background to a soft lavender shade.",
"images": [
"images/19024_0.png",
"images/60474_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "Change the piano keys to a light gray color.",
"images": [
"images/2030_0.png",
"images/84176_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "Change the color of the Christmas tree lights from white to red",
"images": [
"images/32376_0.png",
"images/61134_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "Change the color of the American flag to black and white.",
"images": [
"images/19142_0.png",
"images/32618_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "Change the color of the sand in the background to a rich terracotta shade.",
"images": [
"images/19522_0.png",
"images/60274_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "Modify this image, changing the road's color to a deep red.",
"images": [
"images/1314_0.png",
"images/19378_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "change the color of the pencils to black",
"images": [
"images/35810_0.png",
"images/35810_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "change the color of the coffee foam to pink",
"images": [
"images/32778_0.png",
"images/60144_1.png"
]
},
{
"task_type": "color_alter",
"instruction": "change the color of the brown cow to purple",
"images": [
"images/18898_0.png",
"images/18898_1.png"
]
},
{
"task_type": "ps_human",
"instruction": "Make him shave his head",
"images": [
"images/27506_0.png",
"images/27506_1.png"
]
},
{
"task_type": "ps_human",
"instruction": "Dye his hair blonde",
"images": [
"images/2554_0.png",
"images/58382_1.png"
]
},
{
"task_type": "ps_human",
"instruction": "Change the person's hat to a smaller size to better fit the head.",
"images": [
"images/2270_0.png",
"images/59062_1.png"
]
},
{
"task_type": "ps_human",
"instruction": "Refine the hair texture in this photo.",
"images": [
"images/27598_0.png",
"images/36460_1.png"
]
},
{
"task_type": "ps_human",
"instruction": "Whiten her face and smooth her skin texture.",
"images": [
"images/26754_0.png",
"images/26754_1.png"
]
},
{
"task_type": "ps_human",
"instruction": "Make her sunglasses smaller.",
"images": [
"images/2766_0.png",
"images/26878_1.png"
]
},
{
"task_type": "ps_human",
"instruction": "Give the person with the afro hairstyle a straight bob cut",
"images": [
"images/3198_0.png",
"images/77822_1.png"
]
},
{
"task_type": "ps_human",
"instruction": "Make the baby look sleepy",
"images": [
"images/2640_0.png",
"images/26746_1.png"
]
},
{
"task_type": "ps_human",
"instruction": "Enhance the appearance of the person's arm tattoos.",
"images": [
"images/2532_0.png",
"images/59218_1.png"
]
},
{
"task_type": "ps_human",
"instruction": "Change his short hair to longer hair with a slight wave",
"images": [
"images/2310_0.png",
"images/27072_1.png"
]
},
{
"task_type": "ps_human",
"instruction": "Make his skin a bit darker, like after a sunbath",
"images": [
"images/2950_0.png",
"images/12916_1.png"
]
},
{
"task_type": "ps_human",
"instruction": "Make the man in the center look 10 pounds thinner.",
"images": [
"images/2642_0.png",
"images/26768_1.png"
]
},
{
"task_type": "ps_human",
"instruction": "Adjust the rose to be slightly to the left of her face and make her eyes look more open.",
"images": [
"images/2840_0.png",
"images/58480_1.png"
]
},
{
"task_type": "ps_human",
"instruction": "Make her look 10 pounds thinner.",
"images": [
"images/2588_0.png",
"images/27588_1.png"
]
},
{
"task_type": "ps_human",
"instruction": "Remove the hoodie and make the person wear a tank top to show more of the upper body.",
"images": [
"images/2396_0.png",
"images/2396_1.png"
]
},
{
"task_type": "ps_human",
"instruction": "Change the person on the skateboard's hairstyle to a short bob cut",
"images": [
"images/2806_0.png",
"images/2806_1.png"
]
},
{
"task_type": "ps_human",
"instruction": "Make the dreadlocks shorter and thicker",
"images": [
"images/13012_0.png",
"images/59320_1.png"
]
},
{
"task_type": "ps_human",
"instruction": "Make her hair a bit lighter, like after spending time in the sun",
"images": [
"images/13324_0.png",
"images/27198_1.png"
]
},
{
"task_type": "ps_human",
"instruction": "Apply age regression to show youthful features to the person in the red sweater.",
"images": [
"images/2566_0.png",
"images/2566_1.png"
]
},
{
"task_type": "ps_human",
"instruction": "Remove the shattering glass effect from the person's face.",
"images": [
"images/3196_0.png",
"images/37110_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "Remove the cotton candy; the child is holding nothing.",
"images": [
"images/3306_0.png",
"images/66326_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "remove the black flashlight",
"images": [
"images/4434_0.png",
"images/4434_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "remove the people in the tricycle",
"images": [
"images/21248_0.png",
"images/42534_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "Remove the person washing the car.",
"images": [
"images/20716_0.png",
"images/65632_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "remove the hands reaching into the drawer",
"images": [
"images/3520_0.png",
"images/33280_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "Remove the person cleaning the countertop.",
"images": [
"images/4154_0.png",
"images/47088_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "Remove the ornate metal gate behind the woman while preserving the overall scene's mood and lighting.",
"images": [
"images/33386_0.png",
"images/33386_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "remove the boy climbing the ladder",
"images": [
"images/4022_0.png",
"images/33874_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "Remove the middle wind turbine from the image",
"images": [
"images/20868_0.png",
"images/42460_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "remove the illuminated purple structure on the left side",
"images": [
"images/3426_0.png",
"images/34016_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "Remove the trees; the background is the pavilion.",
"images": [
"images/4374_0.png",
"images/20866_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "remove the person with the large flower in their hair holding the basket of garlic",
"images": [
"images/21588_0.png",
"images/73478_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "remove the woman standing next to the man holding a photo frame.",
"images": [
"images/3674_0.png",
"images/73732_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "Remove the people in the foreground who are practicing Tai Chi.",
"images": [
"images/3692_0.png",
"images/33780_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "Remove the bottle of lava honey next to the margarita.",
"images": [
"images/3530_0.png",
"images/73782_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "Remove the garlic on the left side of the fish.",
"images": [
"images/3810_0.png",
"images/3810_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "Remove the mail slot from the blue door.",
"images": [
"images/4122_0.png",
"images/75096_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "Remove all the white sculptures.",
"images": [
"images/47154_0.png",
"images/73568_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "Remove the gas can near the character's feet.",
"images": [
"images/4018_0.png",
"images/33860_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "Remove the four shoes hanging on the wall in the image.",
"images": [
"images/3866_0.png",
"images/34180_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "Delete the woman in the orange sari.",
"images": [
"images/33768_0.png",
"images/73594_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "remove the large cargo ship on the river",
"images": [
"images/42896_0.png",
"images/65676_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "remove the person holding the snowboard",
"images": [
"images/21526_0.png",
"images/65808_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "Remove the hand interacting with the baby",
"images": [
"images/3646_0.png",
"images/66042_1.png"
]
},
{
"task_type": "subject_remove",
"instruction": "Remove the woman cutting the tuna from the image",
"images": [
"images/3654_0.png",
"images/3654_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "Add a small, cheerful gingerbread man figure near the bottom left corner of the advent calendar, waving and smiling, without altering the existing scene.",
"images": [
"images/28594_0.png",
"images/90334_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "Add a herd of wildebeests running along the dirt road in the savannah.",
"images": [
"images/4566_0.png",
"images/4566_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "Add a bustling market scene in front of the Alexanderplatz sign.",
"images": [
"images/5484_0.png",
"images/16814_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "Add a person wearing swim trunks standing next to the man in the gas mask, both looking at each other.",
"images": [
"images/5320_0.png",
"images/5320_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "Add a third person standing behind the two individuals, holding a similar comic book.",
"images": [
"images/28396_0.png",
"images/88900_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "add a small golden cross around the baby's neck",
"images": [
"images/17540_0.png",
"images/89130_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "Add a coffee cup on the whiteboard.",
"images": [
"images/5274_0.png",
"images/28272_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "Add a snow-covered bench in the middle of the path.",
"images": [
"images/4838_0.png",
"images/4838_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "Add a glass beaker filled with a clear liquid to the left of the microscope.",
"images": [
"images/5362_0.png",
"images/28330_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "Add a second person in a similar coat walking on the opposite side of the street.",
"images": [
"images/16766_0.png",
"images/16766_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "Place a director's chair behind the camera operator",
"images": [
"images/5048_0.png",
"images/28466_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "include a child playing near the green trash bins",
"images": [
"images/16756_0.png",
"images/61652_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "Insert a camera bag on the ground next to the woman taking the photo",
"images": [
"images/27906_0.png",
"images/89770_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "Add a bright spotlight shining on the guitar, emphasizing its sleek design and creating a dramatic effect.",
"images": [
"images/5404_0.png",
"images/5404_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "add a sports watch on the wrist",
"images": [
"images/5354_0.png",
"images/88652_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "Add a variety of candies around the popcorn bucket",
"images": [
"images/44182_0.png",
"images/51722_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "Add a soft, glowing light around the two women to enhance the serene and intimate atmosphere.",
"images": [
"images/4634_0.png",
"images/4634_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "Add a stack of voter registration forms next to the tablet.",
"images": [
"images/4658_0.png",
"images/88488_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "Add a tourist looking at the copper items on display.",
"images": [
"images/28218_0.png",
"images/51400_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "Can you add butterfly wings to the spider?",
"images": [
"images/17178_0.png",
"images/44050_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "Add a second person in a similar coat walking on the opposite side of the street.",
"images": [
"images/16766_0.png",
"images/28480_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "add a colorful glaze to the ceramic piece on the table",
"images": [
"images/16730_0.png",
"images/61666_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "Add a white parasol next to the woman",
"images": [
"images/17358_0.png",
"images/28744_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "Add a group of people jogging in the background near the lake",
"images": [
"images/27984_0.png",
"images/89758_1.png"
]
},
{
"task_type": "subject_add",
"instruction": "Place a sailor's hat on the anchor.",
"images": [
"images/44216_0.png",
"images/62108_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Change the text on the digital display to \"Next Train Arrives in 10 Minutes\"",
"images": [
"images/6602_0.png",
"images/62942_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Add the text \"Join the Debate Club! Meetings every Tuesday at 3:30 PM\" to the notice board",
"images": [
"images/6494_0.png",
"images/31466_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Change 'PLAYERS!' to '1-4 PLAYERS!'!",
"images": [
"images/5942_0.png",
"images/17850_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Change the text 'THE 1ST AUGUST INDEPENDENCE DAY' to 'NATIONAL DAY OF SWITZERLAND'!",
"images": [
"images/5852_0.png",
"images/38276_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Change the phrase 'SAY NO TO STRAWS' to 'SAY NO TO PLASTIC STRAWS':",
"images": [
"images/5712_0.png",
"images/18014_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Change the text 'consume him' to 'consume his soul'!",
"images": [
"images/6218_0.png",
"images/6218_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Replace the title \"THE MUSIC EDUCATOR PODCAST\" to \"THE MUSIC TEACHER PODCAST\":",
"images": [
"images/6578_0.png",
"images/6578_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Replace 'DEBTOCRACY' to 'DEMOCRACY' in the word cloud",
"images": [
"images/17854_0.png",
"images/90808_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Change the title 'Vanessa and Her Sister: A Novel' to 'Vanessa and Her Brother: A Novel':",
"images": [
"images/6596_0.png",
"images/31550_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Change the text 'i do not endorse ads on this site' to 'i fully support ads on this site'.",
"images": [
"images/6024_0.png",
"images/54346_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Replace the phrase 'Fired from bad job' to 'Resigned from challenging job'",
"images": [
"images/31648_0.png",
"images/48576_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Replace the word \"audiovisual\" to \"multimedia\" below \"REEL n’ AM.\".",
"images": [
"images/18258_0.png",
"images/91128_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Change the title 'Dogs in Cars' to 'Puppies in Vehicles'",
"images": [
"images/18146_0.png",
"images/90522_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Replace the text 'When God Walked on Campus' to 'When Angels Visited the Campus'.",
"images": [
"images/6164_0.png",
"images/39226_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Change the word 'generous' on the coffee mug to 'magnanimous'",
"images": [
"images/6044_0.png",
"images/18418_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Replace the phrase \"best Star Wars content of all time\" to \"most iconic Star Wars series\"!",
"images": [
"images/6490_0.png",
"images/18352_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Replace the text 'M,M,ORRIS' to 'Michael Morris'",
"images": [
"images/6410_0.png",
"images/17928_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Change the text 'SMALLMED' to 'SMALL AND MEDIUM'.",
"images": [
"images/18706_0.png",
"images/39098_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Replace 'low maintenance' to 'easy care' in the magazine title",
"images": [
"images/38812_0.png",
"images/38812_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Replace the title 'India: What Can It Teach Us?' to 'India: Insights and Lessons'",
"images": [
"images/39068_0.png",
"images/39068_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Change the text 'SAVING THE DAY' to 'RESTING FOR VICTORY' on the pillow",
"images": [
"images/6340_0.png",
"images/6340_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Replace the word 'Country' to 'Desert' in the audiobook title",
"images": [
"images/18184_0.png",
"images/54372_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Replace the word 'tijuana' to 'kentucky' in the repeated text",
"images": [
"images/5702_0.png",
"images/90992_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Replace the phrase 'bad coffee' to 'mediocre coffee'",
"images": [
"images/6474_0.png",
"images/6474_1.png"
]
},
{
"task_type": "text_change",
"instruction": "Change 'SCRAPS to SOILin WEEKS' to 'SCRAPS to SOIL in 4 WEEKS'",
"images": [
"images/6372_0.png",
"images/38508_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Replace the children walking on the beach with adults playing frisbee.",
"images": [
"images/7374_0.png",
"images/30984_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Change the boxing gloves into karate gloves",
"images": [
"images/7148_0.png",
"images/31196_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Replace the man on the phone with a woman in a similar suit.",
"images": [
"images/30594_0.png",
"images/69632_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Replace the face vase with a plain cylindrical vase.",
"images": [
"images/6886_0.png",
"images/40130_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Replace the person digging in the hole with an archaeologist.",
"images": [
"images/7062_0.png",
"images/79686_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Replace the activated charcoal with a container of salt.",
"images": [
"images/6896_0.png",
"images/81408_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Replace the children in the center of the image with two colorful kites.",
"images": [
"images/7402_0.png",
"images/7402_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Change the \"OPEN FOR BUSINESS\" sign in the man's hand to a \"NOW HIRING\" sign.",
"images": [
"images/7146_0.png",
"images/31074_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Replace the snowball in the hand of the man wearing a black coat with a small rock.",
"images": [
"images/6698_0.png",
"images/79232_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Replace the chocolate fondue with a bowl of caramel sauce.",
"images": [
"images/7616_0.png",
"images/79536_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Replace the pasta with spaghetti.",
"images": [
"images/30900_0.png",
"images/48346_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Change the three girls into three boys.",
"images": [
"images/15014_0.png",
"images/15014_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Replace the grapefruit juice in the glass with apple juice.",
"images": [
"images/6870_0.png",
"images/70144_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Replace the swords the fighters are holding with wooden sticks.",
"images": [
"images/7646_0.png",
"images/7646_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Replace the two people walking in the courtyard with a group of tourists.",
"images": [
"images/6960_0.png",
"images/30786_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Change the train on the bridge to a red and blue high-speed train.",
"images": [
"images/14866_0.png",
"images/14866_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Dress the person under the umbrella in a raincoat.",
"images": [
"images/31296_0.png",
"images/70412_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Replace the sink with a bathtub.",
"images": [
"images/7278_0.png",
"images/39362_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Replace the colorful masks and costumes of the performers with traditional European medieval armor.",
"images": [
"images/14896_0.png",
"images/14896_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Replace the people in the hammock with astronauts.",
"images": [
"images/7074_0.png",
"images/7074_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Change the rocking horse the girl is sitting on to a blue rocking horse.",
"images": [
"images/31056_0.png",
"images/31056_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Replace the C919 airplane with a Boeing 737.",
"images": [
"images/7000_0.png",
"images/79586_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Replace the trash bin with a recycling bin.",
"images": [
"images/15114_0.png",
"images/80108_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Replace the hawk with an eagle.",
"images": [
"images/39620_0.png",
"images/79432_1.png"
]
},
{
"task_type": "subject_replace",
"instruction": "Replace the meat on the grill with vegetables.",
"images": [
"images/31238_0.png",
"images/79468_1.png"
]
},
{
"task_type": "motion_change",
"instruction": "Make the child's hand gesture more relaxed.",
"images": [
"images/24564_0.png",
"images/24564_1.png"
]
},
{
"task_type": "motion_change",
"instruction": "Make the person lower the incense holder and bow their head in reverence",
"images": [
"images/20164_0.png",
"images/76186_1.png"
]
},
{
"task_type": "motion_change",
"instruction": "Make the person eat the noodles with a spoon instead of chopsticks",
"images": [
"images/8398_0.png",
"images/8398_1.png"
]
},
{
"task_type": "motion_change",
"instruction": "make the powdered sugar in the sieve appear to be pouring onto the fries in a continuous stream",
"images": [
"images/8210_0.png",
"images/23898_1.png"
]
},
{
"task_type": "motion_change",
"instruction": "Make the bicycle start moving down the alleyway.",
"images": [
"images/24952_0.png",
"images/57646_1.png"
]
},
{
"task_type": "motion_change",
"instruction": "Have the person in the red dress lift the meat as if it were a trophy.",
"images": [
"images/8510_0.png",
"images/8510_1.png"
]
},
{
"task_type": "motion_change",
"instruction": "make the action of the woman to eating with a forkful of food in her mouth",
"images": [
"images/8218_0.png",
"images/50256_1.png"
]
},
{
"task_type": "motion_change",
"instruction": "change the action of the bride to walking away from the groom",
"images": [
"images/20086_0.png",
"images/20086_1.png"
]
},
{
"task_type": "motion_change",
"instruction": "Make the person on the bicycle stop and look at their phone",
"images": [
"images/8272_0.png",
"images/8272_1.png"
]
},
{
"task_type": "motion_change",
"instruction": "Make the hand in the image gently place the dried orange slice on the cake.",
"images": [
"images/8430_0.png",
"images/76846_1.png"
]
},
{
"task_type": "motion_change",
"instruction": "Make the person turn to look out the window more fully while holding the glass.",
"images": [
"images/20562_0.png",
"images/77110_1.png"
]
},
{
"task_type": "motion_change",
"instruction": "Make the hand in the photo stop pouring honey and instead sprinkle some powdered sugar on the cupcakes.",
"images": [
"images/8064_0.png",
"images/24152_1.png"
]
},
{
"task_type": "motion_change",
"instruction": "Modify the image to show the person running away from the leopard.",
"images": [
"images/19844_0.png",
"images/24702_1.png"
]
},
{
"task_type": "motion_change",
"instruction": "Make the person in the orange shirt serve food with a sweeping motion.",
"images": [
"images/7788_0.png",
"images/7788_1.png"
]
},
{
"task_type": "motion_change",
"instruction": "Make the woman walk her bicycle instead of running with it.",
"images": [
"images/57740_0.png",
"images/75686_1.png"
]
},
{
"task_type": "motion_change",
"instruction": "change the motion of the dust particles to swirling around the book",
"images": [
"images/24220_0.png",
"images/50260_1.png"
]
},
{
"task_type": "motion_change",
"instruction": "Make the girl blow out the candles on the cake",
"images": [
"images/8044_0.png",
"images/57932_1.png"
]
},
{
"task_type": "motion_change",
"instruction": "Raise the hand holding the armor piece as if presenting it to the viewer",
"images": [
"images/24282_0.png",
"images/24282_1.png"
]
},
{
"task_type": "motion_change",
"instruction": "Let the girl spin the hula hoop around her waist.",
"images": [
"images/8232_0.png",
"images/8232_1.png"
]
},
{
"task_type": "motion_change",
"instruction": "Change the workers' action from standing to adjusting the billboard.",
"images": [
"images/8554_0.png",
"images/8554_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Make the pink pendants look like they're made of glass",
"images": [
"images/25864_0.png",
"images/25864_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Replace the plush toy with a large, fluffy teddy bear.",
"images": [
"images/9506_0.png",
"images/49690_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Change the wisteria flowers to a vibrant shade of blue.",
"images": [
"images/22092_0.png",
"images/37376_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Reconstruct the laptop body with solid glass panels.",
"images": [
"images/25236_0.png",
"images/37856_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Change the flowers in the bike basket to roses.",
"images": [
"images/22260_0.png",
"images/86344_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Replace the plastic bag with a woven basket.",
"images": [
"images/9428_0.png",
"images/25160_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Make the Joker figure from porcelain.",
"images": [
"images/9610_0.png",
"images/87492_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Change the material of the picture frames to black marble.",
"images": [
"images/22044_0.png",
"images/22044_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Make the sand in the hole they are digging from fine white quartz.",
"images": [
"images/21696_0.png",
"images/87012_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Make the sweet balls' texture from fluffy marshmallow.",
"images": [
"images/9502_0.png",
"images/26012_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Reshape the kittens using cotton.",
"images": [
"images/9332_0.png",
"images/25658_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Reconstruct the temple's exterior with a polished brass finish.",
"images": [
"images/37428_0.png",
"images/67668_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Make the muddy field entirely from clean, dry grass.",
"images": [
"images/25896_0.png",
"images/87354_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Change the motorcycle body from metal to fiberglass",
"images": [
"images/21934_0.png",
"images/87006_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Replace the girl's green t-shirt with a white one.",
"images": [
"images/9328_0.png",
"images/25638_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Replace the sweater with a cashmere scarf.",
"images": [
"images/9678_0.png",
"images/26228_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Make the honey pouring on the bread look like it's made of syrup",
"images": [
"images/57126_0.png",
"images/86342_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Make the blue liquid in the test tubes appear like it's made of a gel-like substance.",
"images": [
"images/9142_0.png",
"images/67852_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Transform the snow material into soft, powdery texture.",
"images": [
"images/22180_0.png",
"images/22180_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Change the omelette's texture from smooth to crumbly",
"images": [
"images/8840_0.png",
"images/8840_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "The flowers are made of silk.",
"images": [
"images/22266_0.png",
"images/25688_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Replace the British flags with green banners.",
"images": [
"images/9228_0.png",
"images/9228_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Transform the almonds into chocolate-covered almonds.",
"images": [
"images/9390_0.png",
"images/21868_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Replace the books on the table with jade.",
"images": [
"images/22520_0.png",
"images/86940_1.png"
]
},
{
"task_type": "material_alter",
"instruction": "Replace the piano keys with ivory.",
"images": [
"images/9462_0.png",
"images/37876_1.png"
]
},
{
"task_type": "tone_transfer",
"instruction": "change the weather effect to rain with a soft blue filter",
"images": [
"images/10598_0.png",
"images/91810_1.png"
]
},
{
"task_type": "tone_transfer",
"instruction": "Apply a soft, warm filter to the image to give it a cozy winter atmosphere.",
"images": [
"images/34742_0.png",
"images/92026_1.png"
]
},
{
"task_type": "tone_transfer",
"instruction": "Adjust the colors to enhance the contrast between the mountains and the lake, making the scene appear more vibrant.",
"images": [
"images/44438_0.png",
"images/93064_1.png"
]
},
{
"task_type": "tone_transfer",
"instruction": "Enhance and colorize this photo to make the gym scene more vivid.",
"images": [
"images/55442_0.png",
"images/67516_1.png"
]
},
{
"task_type": "tone_transfer",
"instruction": "Make the scene appear as if it is during a cold, misty morning with a bluish tint.",
"images": [
"images/10770_0.png",
"images/67104_1.png"
]
},
{
"task_type": "tone_transfer",
"instruction": "Colorize the photo to enhance the vibrancy of the guitar.",
"images": [
"images/10788_0.png",
"images/16284_1.png"
]
},
{
"task_type": "tone_transfer",
"instruction": "Increase the brightness and enhance the contrast to make the waves and foam more vivid.",
"images": [
"images/10662_0.png",
"images/91694_1.png"
]
},
{
"task_type": "tone_transfer",
"instruction": "Adjust the lighting to create a dramatic shadow effect.",
"images": [
"images/10420_0.png",
"images/92448_1.png"
]
},
{
"task_type": "tone_transfer",
"instruction": "Make the image brighter and increase the contrast to enhance the visibility of the boats and the village.",
"images": [
"images/44622_0.png",
"images/92294_1.png"
]
},
{
"task_type": "tone_transfer",
"instruction": "Add a soft golden hour light to enhance the natural colors of the flamingo.",
"images": [
"images/10118_0.png",
"images/10118_1.png"
]
},
{
"task_type": "tone_transfer",
"instruction": "Make the snow appear as rain, and dim the overall brightness of the image.",
"images": [
"images/15764_0.png",
"images/15764_1.png"
]
},
{
"task_type": "tone_transfer",
"instruction": "Apply a monochrome filter to enhance the contrast and create a timeless look.",
"images": [
"images/10258_0.png",
"images/10258_1.png"
]
},
{
"task_type": "tone_transfer",
"instruction": "Apply a daylight filter to increase clarity and brightness.",
"images": [
"images/16422_0.png",
"images/16422_1.png"
]
},
{
"task_type": "tone_transfer",
"instruction": "Add snow falling from the sky",
"images": [
"images/44668_0.png",
"images/93176_1.png"
]
},
{
"task_type": "tone_transfer",
"instruction": "Increase the color saturation to enhance the vibrancy of the blue water and white sand.",
"images": [
"images/10340_0.png",
"images/91516_1.png"
]
},
{
"task_type": "tone_transfer",
"instruction": "Adjust the lighting to create a soft, golden glow throughout the entire image.",
"images": [
"images/16488_0.png",
"images/92460_1.png"
]
},
{
"task_type": "tone_transfer",
"instruction": "Increase the saturation and contrast to enhance the colors and details of the buildings.",
"images": [
"images/16430_0.png",
"images/45102_1.png"
]
},
{
"task_type": "tone_transfer",
"instruction": "Apply a filter to make the scene look like it's taken during a snowy sunset.",
"images": [
"images/10208_0.png",
"images/34960_1.png"
]
},
{
"task_type": "tone_transfer",
"instruction": "Colorize the entire photo to enhance the vividness of the landscape while maintaining the natural tones of the greenery and the horses.",
"images": [
"images/10142_0.png",
"images/52178_1.png"
]
},
{
"task_type": "tone_transfer",
"instruction": "Add a warm sunset glow to the entire scene, enhancing the colors of the trees and the reflection in the water.",
"images": [
"images/15752_0.png",
"images/67018_1.png"
]
},
{
"task_type": "style",
"instruction": "Apply a neon glow effect to the green cake roll only",
"images": [
"images/14686_0.png",
"images/14686_1.png"
]
},
{
"task_type": "style",
"instruction": "Generate a gothic-style image with a darker, more mysterious atmosphere, focusing on the person and the book.",
"images": [
"images/29820_0.png",
"images/29820_1.png"
]
},
{
"task_type": "style",
"instruction": "Generate a cyberpunk-style photo of the tea plantation with the workers wearing futuristic gear.",
"images": [
"images/11486_0.png",
"images/69198_1.png"
]
},
{
"task_type": "style",
"instruction": "Convert the \"Magical Christmas\" text and the chair into a graffiti style.",
"images": [
"images/29028_0.png",
"images/29028_1.png"
]
},
{
"task_type": "style",
"instruction": "Generate a collage-style artwork featuring the dancer's ornate headpiece and costume details.",
"images": [
"images/10974_0.png",
"images/10974_1.png"
]
},
{
"task_type": "style",
"instruction": "Convert the brightly lit trees and the surrounding buildings into a chibi-style illustration, focusing on the vibrant colors and the festive lights.",
"images": [
"images/11742_0.png",
"images/29338_1.png"
]
},
{
"task_type": "style",
"instruction": "Edit this photo to have a Fuji-style aesthetic.",
"images": [
"images/29290_0.png",
"images/82356_1.png"
]
},
{
"task_type": "style",
"instruction": "Generate a gothic-style image with the mushroom as the central element, enhancing the dark and mysterious atmosphere.",
"images": [
"images/14464_0.png",
"images/14464_1.png"
]
},
{
"task_type": "style",
"instruction": "Render the sticker as a richly textured impasto oil painting.",
"images": [
"images/14586_0.png",
"images/14586_1.png"
]
},
{
"task_type": "style",
"instruction": "Add tribal patterns to the earrings and hair.",
"images": [
"images/11386_0.png",
"images/81834_1.png"
]
},
{
"task_type": "style",
"instruction": "Apply a soft pastel filter to the man and the tree branches",
"images": [
"images/14032_0.png",
"images/82262_1.png"
]
},
{
"task_type": "style",
"instruction": "Generate a gothic-style image with the basketball player and the court.",
"images": [
"images/11116_0.png",
"images/11116_1.png"
]
},
{
"task_type": "style",
"instruction": "Simulate the texture of clay stop-motion animation.",
"images": [
"images/11360_0.png",
"images/29086_1.png"
]
},
{
"task_type": "style",
"instruction": "Convert the elephant into a pixel-art style while maintaining the grayscale color scheme.",
"images": [
"images/11124_0.png",
"images/45506_1.png"
]
},
{
"task_type": "style",
"instruction": "Change the jellyfish into a glowing neon blue to enhance their presence in the cyan background.",
"images": [
"images/14160_0.png",
"images/69004_1.png"
]
},
{
"task_type": "style",
"instruction": "Generate a monochrome-style animation of the reflective metallic sculpture and the individuals observing it.",
"images": [
"images/29092_0.png",
"images/29092_1.png"
]
},
{
"task_type": "style",
"instruction": "Depict the cobblestone street as a golden, reflective surface.",
"images": [
"images/46172_0.png",
"images/46172_1.png"
]
},
{
"task_type": "style",
"instruction": "Apply a detailed, realistic texture to the nebula's surface.",
"images": [
"images/11164_0.png",
"images/82224_1.png"
]
},
{
"task_type": "style",
"instruction": "Increase the neon lighting and add futuristic elements to the market scene.",
"images": [
"images/11056_0.png",
"images/49522_1.png"
]
},
{
"task_type": "style",
"instruction": "Make the bottle and its label anime-style.",
"images": [
"images/30154_0.png",
"images/49402_1.png"
]
},
{
"task_type": "Action",
"instruction": "Make a gesture signaling others to be quiet.",
"images": [
"images/b2c3ec41-3f06-421a-a3c4-8eb37219c554_source.png",
"images/b2c3ec41-3f06-421a-a3c4-8eb37219c554_result.png"
]
},
{
"task_type": "Action",
"instruction": "Have the woman release the battle ropes.",
"images": [
"images/77f8fa4e-a18e-4eb5-bb63-4070ca767213_source.png",
"images/77f8fa4e-a18e-4eb5-bb63-4070ca767213_result.png"
]
},
{
"task_type": "Action",
"instruction": "Make this Pikachu jump up to pick the fruit.",
"images": [
"images/9af553b5-8f1a-4a57-a2c5-5d92485be84d_source.png",
"images/9af553b5-8f1a-4a57-a2c5-5d92485be84d_result.png"
]
},
{
"task_type": "Action",
"instruction": "Adjust the pose of the man on the left so that he is holding the microphone right next to his mouth, as if he is speaking.",
"images": [
"images/70880847-617a-48dd-88f1-0827dea11abe_source.png",
"images/70880847-617a-48dd-88f1-0827dea11abe_result.png"
]
},
{
"task_type": "Action",
"instruction": "Have the dog place its paws on the computer and work hard.",
"images": [
"images/188964fc-a5c2-4b0d-8072-7c521925248a_source.png",
"images/188964fc-a5c2-4b0d-8072-7c521925248a_result.png"
]
},
{
"task_type": "Action",
"instruction": "Have the boy perform a powerful, LeBron James–style signature stride.",
"images": [
"images/5f7d5851-7041-4b6b-8e12-aee705e781a3_source.png",
"images/5f7d5851-7041-4b6b-8e12-aee705e781a3_result.png"
]
},
{
"task_type": "Action",
"instruction": "Have the boy cross his legs.",
"images": [
"images/78fd84db-2a31-43bc-b9ca-573d15eff007_source.png",
"images/78fd84db-2a31-43bc-b9ca-573d15eff007_result.png"
]
},
{
"task_type": "Action",
"instruction": "Have this girl extend her arms.",
"images": [
"images/f200fedb-63a9-4dc8-8865-31f61e06cccc_source.png",
"images/f200fedb-63a9-4dc8-8865-31f61e06cccc_result.png"
]
},
{
"task_type": "Action",
"instruction": "Make her blow the bubble wand.",
"images": [
"images/ad92b248-bbef-4331-90cb-80d00500dbdf_source.png",
"images/ad92b248-bbef-4331-90cb-80d00500dbdf_result.png"
]
},
{
"task_type": "Action",
"instruction": "Have the boy perform a Stephen Curry–style signature ‘night night’ celebration gesture.",
"images": [
"images/b7e907e0-d2e2-4dff-a1f1-1ea29987b27f_source.png",
"images/b7e907e0-d2e2-4dff-a1f1-1ea29987b27f_result.png"
]
},
{
"task_type": "Action",
"instruction": "Have the boy give a thumbs-up with his right hand.",
"images": [
"images/b3bba403-a0c4-409f-9cf4-e9ee5e6a2e0b_source.png",
"images/b3bba403-a0c4-409f-9cf4-e9ee5e6a2e0b_result.png"
]
},
{
"task_type": "Action",
"instruction": "Make the girl point to the ceiling with her left hand.",
"images": [
"images/d6c29f5f-c32d-43f1-b48a-db3911975a06_source.png",
"images/d6c29f5f-c32d-43f1-b48a-db3911975a06_result.png"
]
},
{
"task_type": "Action",
"instruction": "Make the girl open her eyes and sit up.",
"images": [
"images/3e38bec3-72e8-4dfe-bf63-d9e693c2aed4_source.png",
"images/3e38bec3-72e8-4dfe-bf63-d9e693c2aed4_result.png"
]
},
{
"task_type": "Action",
"instruction": "Set the bicycle upright.",
"images": [
"images/613913b9-8d99-436d-bc4c-078ee88f4e4d_source.png",
"images/613913b9-8d99-436d-bc4c-078ee88f4e4d_result.png"
]
},
{
"task_type": "Action",
"instruction": "Change the girl’s pose to a horse stance.",
"images": [
"images/d1333ac6-dbb5-4f83-8f85-63115c7caef5_source.png",
"images/d1333ac6-dbb5-4f83-8f85-63115c7caef5_result.png"
]
},
{
"task_type": "Action",
"instruction": "Have the girl start doing seated hip abductions.",
"images": [
"images/6663a1a5-bbd1-41c0-9433-2528521638c7_source.png",
"images/6663a1a5-bbd1-41c0-9433-2528521638c7_result.png"
]
},
{
"task_type": "Action",
"instruction": "Make the skater slip and fall.",
"images": [
"images/e21229f2-a9d9-4345-9c72-50e53c097303_source.png",
"images/e21229f2-a9d9-4345-9c72-50e53c097303_result.png"
]
},
{
"task_type": "Action",
"instruction": "Have the defending player cover the attacking player’s eyes with his hands.",
"images": [
"images/bc6eb852-24f7-469d-8a92-449f0d377e70_source.png",
"images/bc6eb852-24f7-469d-8a92-449f0d377e70_result.png"
]
},
{
"task_type": "Action",
"instruction": "Make the girl drink coffee.",
"images": [
"images/56cab764-e14c-42af-a4f4-8b4e6681fca5_source.png",
"images/56cab764-e14c-42af-a4f4-8b4e6681fca5_result.png"
]
},
{
"task_type": "Action",
"instruction": "Make the woman do a split on the mat.",
"images": [
"images/2a771ec6-c986-4eff-ad81-c0b26c08352c_source.png",
"images/2a771ec6-c986-4eff-ad81-c0b26c08352c_result.png"
]
},
{
"task_type": "Change Emotion",
"instruction": "Change the balloon’s expression to a frown.",
"images": [
"images/92da282c-4ee0-4833-bdcc-e07eae3bd16e_source.png",
"images/92da282c-4ee0-4833-bdcc-e07eae3bd16e_result.png"
]
},
{
"task_type": "Change Emotion",
"instruction": "Make her sneer with contempt.",
"images": [
"images/b8984e48-4a68-40d7-b874-363283ea9104_source.png",
"images/b8984e48-4a68-40d7-b874-363283ea9104_result.png"
]
},
{
"task_type": "Change Emotion",
"instruction": "Make him wincing in sudden muscle pain.",
"images": [
"images/0c979df4-faa4-4b4a-870e-c4c689784142_source.png",
"images/0c979df4-faa4-4b4a-870e-c4c689784142_result.png"
]
},
{
"task_type": "Change Emotion",
"instruction": "Make the superhero look defeated and sad.",
"images": [
"images/3dedd041-3e13-411d-9bb3-cbcacc471d92_source.png",
"images/3dedd041-3e13-411d-9bb3-cbcacc471d92_result.png"
]
},
{
"task_type": "Change Emotion",
"instruction": "Make her look exhausted and panting.",
"images": [
"images/ab447c91-ed0d-414a-b7a2-b09f315be2a4_source.png",
"images/ab447c91-ed0d-414a-b7a2-b09f315be2a4_result.png"
]
},
{
"task_type": "Change Emotion",
"instruction": "Make her laughing with her mouth open.",
"images": [
"images/568e6f5a-0ec5-4a3a-b87e-f33882e279e4_source.png",
"images/568e6f5a-0ec5-4a3a-b87e-f33882e279e4_result.png"
]
},
{
"task_type": "Change Emotion",
"instruction": "Make him look meditated and calm.",
"images": [
"images/83ef279a-60d9-4539-b970-09d92c5dc144_source.png",
"images/83ef279a-60d9-4539-b970-09d92c5dc144_result.png"
]
},
{
"task_type": "Change Emotion",
"instruction": "Make him look shocked with his jaw dropped.",
"images": [
"images/8a9aa502-280e-4f53-b2f4-e8da2c62760e_source.png",
"images/8a9aa502-280e-4f53-b2f4-e8da2c62760e_result.png"
]
},
{
"task_type": "Change Emotion",
"instruction": "Make him smiling broadly.",
"images": [
"images/a2fc04d1-7b2c-4510-a368-697921078b51_source.png",
"images/a2fc04d1-7b2c-4510-a368-697921078b51_result.png"
]
},
{
"task_type": "Change Emotion",
"instruction": "Make the dog tilt its head to the side in confusion.",
"images": [
"images/25583bce-4416-4734-86f6-405c0013d861_source.png",
"images/25583bce-4416-4734-86f6-405c0013d861_result.png"
]
},
{
"task_type": "Change Emotion",
"instruction": "Make the waiter look annoyed and frowning.",
"images": [
"images/8db4fb55-73b8-4e67-af54-51aa3744c781_source.png",
"images/8db4fb55-73b8-4e67-af54-51aa3744c781_result.png"
]
},
{
"task_type": "Change Emotion",
"instruction": "Make him show a disgusted expression.",
"images": [
"images/dbfbeb03-78d0-4023-9e09-61d543020a4e_source.png",
"images/dbfbeb03-78d0-4023-9e09-61d543020a4e_result.png"
]
},
{
"task_type": "Change Emotion",
"instruction": "Make him look very impatient.",
"images": [
"images/2264e732-daf7-461e-8b9f-fa318668355c_source.png",
"images/2264e732-daf7-461e-8b9f-fa318668355c_result.png"
]
},
{
"task_type": "Change Emotion",
"instruction": "Make her look wicked and sneering.",
"images": [
"images/b3c8275b-b0c9-4afd-8996-f56fc77e0948_source.png",
"images/b3c8275b-b0c9-4afd-8996-f56fc77e0948_result.png"
]
},
{
"task_type": "Change Emotion",
"instruction": "Make him look relieved and happy.",
"images": [
"images/7ed3dd84-c51f-4ab2-a8cc-f06cc61b7d09_source.png",
"images/7ed3dd84-c51f-4ab2-a8cc-f06cc61b7d09_result.png"
]
},
{
"task_type": "Change Emotion",
"instruction": "Change the expression to a sad face.",
"images": [
"images/950a9585-5c37-495e-8872-d8c019152a49_source.png",
"images/950a9585-5c37-495e-8872-d8c019152a49_result.png"
]
},
{
"task_type": "Change Emotion",
"instruction": "Make the baby laughing happily.",
"images": [
"images/ca598cea-a704-43e9-a8f0-084808062a97_source.png",
"images/ca598cea-a704-43e9-a8f0-084808062a97_result.png"
]
},
{
"task_type": "Change Emotion",
"instruction": "Make this little boy look lost in thought.",
"images": [
"images/61e97504-7a2d-4c85-8812-484edba363c0_source.png",
"images/61e97504-7a2d-4c85-8812-484edba363c0_result.png"
]
},
{
"task_type": "Change Emotion",
"instruction": "Make her look disappointed and frowning.",
"images": [
"images/2d1bef92-7492-4fca-bf0e-d30e75c5676a_source.png",
"images/2d1bef92-7492-4fca-bf0e-d30e75c5676a_result.png"
]
},
{
"task_type": "Change Emotion",
"instruction": "Make the person sitting in the car look like they are having road rage.",
"images": [
"images/5d09f97b-6487-4e3c-8896-172e850902de_source.png",
"images/5d09f97b-6487-4e3c-8896-172e850902de_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the spoon to the napkin beside the bowl.",
"images": [
"images/3a9f45f1-8280-4f99-94cf-0a308892bc5c_source.png",
"images/3a9f45f1-8280-4f99-94cf-0a308892bc5c_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the SIM card into the slot.",
"images": [
"images/158f299c-63ce-4c5a-977c-d56bbfb853e3_source.png",
"images/158f299c-63ce-4c5a-977c-d56bbfb853e3_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the street number '10' to the center of the door.",
"images": [
"images/28d80e2f-73de-43cd-b432-c5781311d559_source.png",
"images/28d80e2f-73de-43cd-b432-c5781311d559_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the golden pyramid out of the glass box and place it on the ground outside.",
"images": [
"images/ac966e1f-90f0-4ad3-9d3e-d8ca1f45fbcc_source.png",
"images/ac966e1f-90f0-4ad3-9d3e-d8ca1f45fbcc_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the backpack onto the grass beside the bench.",
"images": [
"images/1ab49446-9b1a-42f1-8aec-1f527329828b_source.png",
"images/1ab49446-9b1a-42f1-8aec-1f527329828b_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the flower pot to sit on the porch steps.",
"images": [
"images/6c8fc824-e197-4ad8-8898-6c5ae99bd6ce_source.png",
"images/6c8fc824-e197-4ad8-8898-6c5ae99bd6ce_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the fairy to fly in the air.",
"images": [
"images/f4a85d70-d7ba-4448-94f3-103fab1573dd_source.png",
"images/f4a85d70-d7ba-4448-94f3-103fab1573dd_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the sunglasses down to cover her eyes.",
"images": [
"images/70da81b7-b605-4969-a043-e49ee4cdb36c_source.png",
"images/70da81b7-b605-4969-a043-e49ee4cdb36c_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the pen to the space above the notebook.",
"images": [
"images/48bdf4e7-e8f0-4a7f-a02f-e772e31dc4a4_source.png",
"images/48bdf4e7-e8f0-4a7f-a02f-e772e31dc4a4_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the blue sphere to the right of the yellow cylinder.",
"images": [
"images/c7b13c7f-5d87-4e72-add4-666a3b6052db_source.png",
"images/c7b13c7f-5d87-4e72-add4-666a3b6052db_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the spoon into the bowl.",
"images": [
"images/13b78e23-b72d-4f76-8f17-01ba65adb8ab_source.png",
"images/13b78e23-b72d-4f76-8f17-01ba65adb8ab_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the garden bench to be under the large tree on the lawn.",
"images": [
"images/c6f40d8f-4509-4c32-a54a-ec943081f6af_source.png",
"images/c6f40d8f-4509-4c32-a54a-ec943081f6af_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the motorcycle to the open sunny area.",
"images": [
"images/f1da8af8-7d3a-46ab-bff6-ba2ca4626373_source.png",
"images/f1da8af8-7d3a-46ab-bff6-ba2ca4626373_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the candle to the front-right corner of the table.",
"images": [
"images/305b410a-f980-4f50-be0f-fb6c9d5aa6da_source.png",
"images/305b410a-f980-4f50-be0f-fb6c9d5aa6da_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the trash can to be under the street light.",
"images": [
"images/7c689808-76de-4d75-b104-35bb0f127250_source.png",
"images/7c689808-76de-4d75-b104-35bb0f127250_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the brooch down to the pocket area.",
"images": [
"images/aa8271a4-891b-484f-a868-28666156e0e9_source.png",
"images/aa8271a4-891b-484f-a868-28666156e0e9_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the boat to the center of the lake.",
"images": [
"images/2b6272f2-8a07-411c-805b-143aa5c37130_source.png",
"images/2b6272f2-8a07-411c-805b-143aa5c37130_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the watch to the wrist of the other hand.",
"images": [
"images/843ebf5e-9319-4ff7-aa45-9c057ba4dc15_source.png",
"images/843ebf5e-9319-4ff7-aa45-9c057ba4dc15_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the pattern of dots to the right half.",
"images": [
"images/5bb64a1e-c4fe-4f9b-9ed3-4551e03d468d_source.png",
"images/5bb64a1e-c4fe-4f9b-9ed3-4551e03d468d_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the headphones to lay flat on the desk surface.",
"images": [
"images/627462cc-fa72-42e9-8bbe-c26974cf82f7_source.png",
"images/627462cc-fa72-42e9-8bbe-c26974cf82f7_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the letter V to the right of the letter E, move the letter O to the right of V, and move the letter L to the right of O.",
"images": [
"images/48ee3d5c-17c1-4f6a-9f3a-cf32690e83ef_source.png",
"images/48ee3d5c-17c1-4f6a-9f3a-cf32690e83ef_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the monitor to the left corner of the desk.",
"images": [
"images/2583f516-aa29-4d16-bedd-616f3459fd9c_source.png",
"images/2583f516-aa29-4d16-bedd-616f3459fd9c_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the sneaker up two steps.",
"images": [
"images/b4203fba-d1b9-42a4-a864-52ec063c043c_source.png",
"images/b4203fba-d1b9-42a4-a864-52ec063c043c_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the red cube to the bottom left corner.",
"images": [
"images/f19d54f4-f852-4bdf-a19b-c26954e9a2f9_source.png",
"images/f19d54f4-f852-4bdf-a19b-c26954e9a2f9_result.png"
]
},
{
"task_type": "Object Move",
"instruction": "Move the ring to the ring finger.",
"images": [
"images/393b7755-a5fc-47a8-bf7f-e126ac2cc5df_source.png",
"images/393b7755-a5fc-47a8-bf7f-e126ac2cc5df_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Switch the positions of the salt shaker and the pepper shaker.",
"images": [
"images/0d22ea89-14be-4f14-9120-2d6317cb3110_source.png",
"images/0d22ea89-14be-4f14-9120-2d6317cb3110_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Swap the states of the liquids in the two cups.",
"images": [
"images/7fb731f6-0932-465d-b64e-08fd657114fd_source.png",
"images/7fb731f6-0932-465d-b64e-08fd657114fd_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Swap the expressions of the two masks.",
"images": [
"images/2cb2f2ea-b342-4038-a4cb-fd03f27a0439_source.png",
"images/2cb2f2ea-b342-4038-a4cb-fd03f27a0439_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Swap the expressions of the baby and the woman.",
"images": [
"images/8e588763-1c57-472b-99fc-ea357600e9a6_source.png",
"images/8e588763-1c57-472b-99fc-ea357600e9a6_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Swap the colors of the two traffic lights.",
"images": [
"images/2365be70-dd7e-4dd1-9834-ed497332f168_source.png",
"images/2365be70-dd7e-4dd1-9834-ed497332f168_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Swap the soccer ball and the basketball.",
"images": [
"images/3cfede1e-2414-41e7-a536-c6dfa0bf6a2a_source.png",
"images/3cfede1e-2414-41e7-a536-c6dfa0bf6a2a_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Swap the strawberry and the blueberry.",
"images": [
"images/7f435a33-c56e-450d-bb77-14c633de5132_source.png",
"images/7f435a33-c56e-450d-bb77-14c633de5132_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Swap the fork and the knife.",
"images": [
"images/d847bc6f-0e89-4691-ad34-850966ec2cb6_source.png",
"images/d847bc6f-0e89-4691-ad34-850966ec2cb6_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Swap the characters 13 and 09 on the monitor.",
"images": [
"images/d15fccff-f9ed-46f6-b369-61e22d3eb570_source.png",
"images/d15fccff-f9ed-46f6-b369-61e22d3eb570_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Swap the outfits of the boy and the girl.",
"images": [
"images/a5aa5c22-4c4c-49ca-932c-d96df3ed7b9d_source.png",
"images/a5aa5c22-4c4c-49ca-932c-d96df3ed7b9d_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Swap the liquids in the two cups.",
"images": [
"images/8db61088-937b-4af5-8dc0-2be67d6de3bc_source.png",
"images/8db61088-937b-4af5-8dc0-2be67d6de3bc_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Swap the striped tie and the polka dot tie.",
"images": [
"images/262ec9d9-5ba4-43e4-994a-f68b20a57daf_source.png",
"images/262ec9d9-5ba4-43e4-994a-f68b20a57daf_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Swap the digital time displayed on the two clocks.",
"images": [
"images/aab0f472-85e8-4b9c-aa5c-f9f91f44f600_source.png",
"images/aab0f472-85e8-4b9c-aa5c-f9f91f44f600_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Exchange the orange and the lemon.",
"images": [
"images/36ccbe47-537b-42a9-9922-aee91857a4d6_source.png",
"images/36ccbe47-537b-42a9-9922-aee91857a4d6_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Swap the positions and actions of these two people.",
"images": [
"images/3d3c76fd-430e-4b85-9ef7-e0eff24be841_source.png",
"images/3d3c76fd-430e-4b85-9ef7-e0eff24be841_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Swap the positions of the cup and the spoon.",
"images": [
"images/d37e6d39-2067-45f9-9131-6be1ccd273cf_source.png",
"images/d37e6d39-2067-45f9-9131-6be1ccd273cf_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Swap the positions of the J card and the Q card.",
"images": [
"images/b323d0e3-0413-416e-8747-bdff4cd19f21_source.png",
"images/b323d0e3-0413-416e-8747-bdff4cd19f21_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Swap the poses and states of the two cats.",
"images": [
"images/b8fcd0b7-0fb7-431b-aebc-3550f16fe3a4_source.png",
"images/b8fcd0b7-0fb7-431b-aebc-3550f16fe3a4_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Swap the green pyramid and the yellow cylinder.",
"images": [
"images/90741c0a-795b-44d5-8f10-d047a2d6dd9e_source.png",
"images/90741c0a-795b-44d5-8f10-d047a2d6dd9e_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Swap the remote control and the game controller.",
"images": [
"images/9168ee5e-7198-485f-a8a9-b5795afed6a5_source.png",
"images/9168ee5e-7198-485f-a8a9-b5795afed6a5_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Swap the collar shapes of the T-shirt and the sweater.",
"images": [
"images/daa4cf4a-9c3a-4d69-95bc-bb4c3bc65966_source.png",
"images/daa4cf4a-9c3a-4d69-95bc-bb4c3bc65966_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Swap the states and positions of the cat and the dog.",
"images": [
"images/7dd9c078-14ab-435a-b89c-c09c9d94c278_source.png",
"images/7dd9c078-14ab-435a-b89c-c09c9d94c278_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Swap the letter 'A' and the letter 'b'.",
"images": [
"images/480425bb-cfa4-4e98-88e8-22fb26037b0b_source.png",
"images/480425bb-cfa4-4e98-88e8-22fb26037b0b_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Swap the bracelets on the girl’s left and right wrists.",
"images": [
"images/dcd44769-d7f5-4505-9230-d73969b92108_source.png",
"images/dcd44769-d7f5-4505-9230-d73969b92108_result.png"
]
},
{
"task_type": "Object Swap",
"instruction": "Swap the positions of the two people.",
"images": [
"images/5f7f4b66-3665-42c9-b19b-a63bb456f856_source.png",
"images/5f7f4b66-3665-42c9-b19b-a63bb456f856_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Have the girl pick up the water bottle in the center and drink from it, change the pants to the same color as the top, and add a white towel around her neck.",
"images": [
"images/4271d87a-023f-457d-a3d6-a6143d25f323_source.png",
"images/4271d87a-023f-457d-a3d6-a6143d25f323_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Move the silver mirror to the wall on the left side of the door, add a whiteboard above the door with the artistic text 'HOME SWEET HOME', change the door color to a bright red, and add a pink suitcase to the right of the door.",
"images": [
"images/bc5512d4-41be-44df-802e-594f290333de_source.png",
"images/bc5512d4-41be-44df-802e-594f290333de_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Have the boy touch his chin with his right hand, and have the girl touch her hair with her hand.",
"images": [
"images/0cba7b6b-1ca4-4380-9334-980a5fc1cd55_source.png",
"images/0cba7b6b-1ca4-4380-9334-980a5fc1cd55_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Change the shirt color to bright yellow and make her wave her hand.",
"images": [
"images/c61d1f95-60cd-4e09-9308-38c0c5e6b236_source.png",
"images/c61d1f95-60cd-4e09-9308-38c0c5e6b236_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Have the girl perform a big jump and change her top to white.",
"images": [
"images/509a1c7b-82bb-4ebe-b8fb-0e637dce2923_source.png",
"images/509a1c7b-82bb-4ebe-b8fb-0e637dce2923_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Add a line of text saying 'RELAX TIME' on the teddy bear's chest and change the color of the headphones it is wearing to orange.",
"images": [
"images/2cfdd306-a527-4069-aee2-1414ec74981d_source.png",
"images/2cfdd306-a527-4069-aee2-1414ec74981d_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Change the number displayed on the phone to '2026.5201314', recolor the pink paper to sky blue, remove the percentage symbol, and add an eraser to the left of the phone.",
"images": [
"images/4e272e4e-deb8-4eb4-8447-6cc289c2fc8b_source.png",
"images/4e272e4e-deb8-4eb4-8447-6cc289c2fc8b_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Change the balloons to pink, remove the ladder from the image, and add the vertical text '2026' in pink on the wall on the right side of the image.",
"images": [
"images/8c66a99a-5bd2-4b8f-9da5-e702f4d9a7c7_source.png",
"images/8c66a99a-5bd2-4b8f-9da5-e702f4d9a7c7_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Turn on the air conditioner, add a television below it, and remove the table lamp from the scene.",
"images": [
"images/0d3575ae-1a72-42d5-a16f-22fc02c914b4_source.png",
"images/0d3575ae-1a72-42d5-a16f-22fc02c914b4_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Add a sleeping white kitten on the chair, remove the bottle of red wine from the table, and replace the liquid in the wine glass with milk.",
"images": [
"images/c40f9551-8bc3-4c02-9077-83a286e2fb0d_source.png",
"images/c40f9551-8bc3-4c02-9077-83a286e2fb0d_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Make the girl’s expression happy and change her top to pink.",
"images": [
"images/1a3fd05f-d570-4364-8bd6-d3c4ec8f6cef_source.png",
"images/1a3fd05f-d570-4364-8bd6-d3c4ec8f6cef_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Add a blue sailboat and a yellow small boat on the lake, and add a glowing golden text 'Lake Observatory' in the sky area at the top of the image.",
"images": [
"images/c7283c88-eed9-4590-8849-a9a89aef07f0_source.png",
"images/c7283c88-eed9-4590-8849-a9a89aef07f0_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Have the girl stand up and look up at the sky.",
"images": [
"images/bc814e90-d160-4992-892a-0248d1bb6d9d_source.png",
"images/bc814e90-d160-4992-892a-0248d1bb6d9d_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Change the text on the notebook from 'I have a plan' to 'Just Do It', recolor the notebook cover to orange, replace the card in the image with a bank card, and add a Rubik’s Cube in the bottom-left corner of the image.",
"images": [
"images/96c25b04-3b80-48a6-a0d0-a5bdd51c41d0_source.png",
"images/96c25b04-3b80-48a6-a0d0-a5bdd51c41d0_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Replace the transparent umbrella in her hand with a black umbrella, change the handle to wood, and make the girl's expression look very anxious.",
"images": [
"images/77dd72ed-23c9-4942-891d-fddc3e5c6f3d_source.png",
"images/77dd72ed-23c9-4942-891d-fddc3e5c6f3d_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Change the sink color to blue and replace the mirror with a round mirror.",
"images": [
"images/6c16bdcc-b492-4ffb-b906-165644f0730f_source.png",
"images/6c16bdcc-b492-4ffb-b906-165644f0730f_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Remove the umbrella and write the text \"Winter is Coming\" in the sky.",
"images": [
"images/857e434a-23b8-49be-9dac-944a5166a828_source.png",
"images/857e434a-23b8-49be-9dac-944a5166a828_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Remove the towel in the bottom left corner and add an electric toothbrush in the empty space on the right, turned on.",
"images": [
"images/b258129c-3559-4912-bdeb-745c883d35f9_source.png",
"images/b258129c-3559-4912-bdeb-745c883d35f9_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Have the girl holding the phone make a peace sign with her free hand, remove the bag she is wearing, and change her top to a silk fabric.",
"images": [
"images/b09e1c15-4a46-47fb-a52d-9a674f57efa1_source.png",
"images/b09e1c15-4a46-47fb-a52d-9a674f57efa1_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Swap the positions of the two shoes, remove the green plant from the image, add a shoebox to the right of the shoes, and change the cushion on the sofa to blue.",
"images": [
"images/80e99f29-c3ce-43af-a38c-5bb3a665467a_source.png",
"images/80e99f29-c3ce-43af-a38c-5bb3a665467a_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Have the girl place both feet on the ground, display a helpless gesture and expression, and change her top to yellow.",
"images": [
"images/4eb49ec3-6554-482b-97e1-79a3df18afad_source.png",
"images/4eb49ec3-6554-482b-97e1-79a3df18afad_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Add a running robotic dog next to the child, change the vest color from yellow to green, change the rain boots to light pink, and make the boy look very anxious.",
"images": [
"images/97f01105-176e-48bd-930a-8605333237b7_source.png",
"images/97f01105-176e-48bd-930a-8605333237b7_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Change the pink sand in the hourglass to blue, remove the redwood clock on the right, change the watch strap to brown, and add an ink bottle in front of the watch.",
"images": [
"images/4a8fbfe5-cf4a-4361-97f2-fc2144b2e791_source.png",
"images/4a8fbfe5-cf4a-4361-97f2-fc2144b2e791_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Replace the strawberries in the image with cherries, change the milk to watermelon juice, and remove the spoon from the image.",
"images": [
"images/32d9c645-a9cb-41bc-8a5f-726c25ae727a_source.png",
"images/32d9c645-a9cb-41bc-8a5f-726c25ae727a_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Remove the star decoration in the top-right corner, change the blanket on the bed to red, add a wooden plaque on the window, and engrave 'Happy New Year' on the plaque.",
"images": [
"images/5367b2e2-e10e-4243-b4f5-d586f8defc7e_source.png",
"images/5367b2e2-e10e-4243-b4f5-d586f8defc7e_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Change the house number to '666', recolor the door to blood red, and remove the outdoor air-conditioning unit.",
"images": [
"images/e4a00cdb-215a-4ba0-aab7-0e600cb1054f_source.png",
"images/e4a00cdb-215a-4ba0-aab7-0e600cb1054f_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Have the girl show a thoughtful expression, add a wristwatch to her right hand, and extend her hair to shoulder length.",
"images": [
"images/a47deb8e-0fa2-4108-b633-1912caecf7df_source.png",
"images/a47deb8e-0fa2-4108-b633-1912caecf7df_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Remove the boy's helmet, adjust the baseball to half its current height above the ground, replace the boy's sneakers with bright blue cleats, and add a baseball glove to the boy's right.",
"images": [
"images/4104040f-597d-42d7-a148-c2f6783b7e4f_source.png",
"images/4104040f-597d-42d7-a148-c2f6783b7e4f_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Remove the cactus from the image, swap the positions of the glass and the glasses, and add a neon sign reading 'Creative Hub' in the top-left corner.",
"images": [
"images/1b294cde-bfb8-43cd-b65d-c75fb9c564ee_source.png",
"images/1b294cde-bfb8-43cd-b65d-c75fb9c564ee_result.png"
]
},
{
"task_type": "Complex Instruction",
"instruction": "Remove the coffee machine by the window, swap the positions of the two people closest to the camera, and change the title text from 'Q3 STRATEGY' to 'AI ROADMAP 2030'.",
"images": [
"images/786233c3-133d-438f-a83e-00c0d918207b_source.png",
"images/786233c3-133d-438f-a83e-00c0d918207b_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract the teddy bear from the image, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/8eef1f85-e160-4cff-b35c-234bf32fa67e_source.png",
"images/8eef1f85-e160-4cff-b35c-234bf32fa67e_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract the tennis racket from the image, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/a3f0c8eb-e0c6-4a39-ae66-54af0a890fb5_source.png",
"images/a3f0c8eb-e0c6-4a39-ae66-54af0a890fb5_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract the two people holding hands from the image, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/9e62fdba-aa30-4e0c-962b-5a7911c4efc0_source.png",
"images/9e62fdba-aa30-4e0c-962b-5a7911c4efc0_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract the white mug on the right, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/5ccb3187-62e4-41aa-8abe-45bd3bfd53e1_source.png",
"images/5ccb3187-62e4-41aa-8abe-45bd3bfd53e1_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract the hanging clock on the side of the building, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/23d64ad7-c006-4f54-9037-dfc1357df0eb_source.png",
"images/23d64ad7-c006-4f54-9037-dfc1357df0eb_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract the girl from the image, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/c5ebb3a2-ee01-4165-b811-ba7314da5bf8_source.png",
"images/c5ebb3a2-ee01-4165-b811-ba7314da5bf8_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract the bench from the image, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/2e8c4ce4-b66e-45a7-b512-9c4343b398d3_source.png",
"images/2e8c4ce4-b66e-45a7-b512-9c4343b398d3_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract the polar bear from the image, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/c29ee6dd-e8f6-4b3d-b4eb-69ae2d39db92_source.png",
"images/c29ee6dd-e8f6-4b3d-b4eb-69ae2d39db92_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract the shoes from the image, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/2fcf0e3e-7855-411f-bd7d-f56a7a2b7788_source.png",
"images/2fcf0e3e-7855-411f-bd7d-f56a7a2b7788_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract the balls in the image that are smiling, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/be76b987-e739-423a-91c6-95bd146611b3_source.png",
"images/be76b987-e739-423a-91c6-95bd146611b3_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract the child and the small dog they are walking, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/b836124d-179d-4d89-a60a-9e4457da6c21_source.png",
"images/b836124d-179d-4d89-a60a-9e4457da6c21_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract the white percentage sign above the pink paper, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/b1353474-7e52-4125-9be2-0cd2ae56c642_source.png",
"images/b1353474-7e52-4125-9be2-0cd2ae56c642_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract the yellow lounge chair, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/5d01b082-e385-4257-b484-7160ec1f87e3_source.png",
"images/5d01b082-e385-4257-b484-7160ec1f87e3_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract the three glass spice jars on the right side of the counter, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/dee752a7-2eff-43ee-893e-11fb8885be48_source.png",
"images/dee752a7-2eff-43ee-893e-11fb8885be48_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract the black 8-ball, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/22c3442d-5676-42b8-bca4-9dc56746ab89_source.png",
"images/22c3442d-5676-42b8-bca4-9dc56746ab89_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract only the plate with the three lollipops, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/d173eee1-1b95-44ec-8831-684814b9ebb2_source.png",
"images/d173eee1-1b95-44ec-8831-684814b9ebb2_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract the newspaper from the image, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/31570341-1f2b-4857-8705-df934f8beca3_source.png",
"images/31570341-1f2b-4857-8705-df934f8beca3_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract the Snoopy figurine wearing a graduation cap and the “Class of 2026” sign from the image, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/84b5de4f-365c-463c-9035-ae9375c639eb_source.png",
"images/84b5de4f-365c-463c-9035-ae9375c639eb_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract the doctor rubber duck and the nurse rubber duck from the image, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/c4f2a8d3-cccb-4e79-9f9d-81790620a085_source.png",
"images/c4f2a8d3-cccb-4e79-9f9d-81790620a085_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract the car from the image, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/3e5255b5-ed41-4025-bb68-153ddfc8cb80_source.png",
"images/3e5255b5-ed41-4025-bb68-153ddfc8cb80_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract the green chalkboard from the image, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/2175f2b5-bb45-4e7e-95f5-b26b478eee97_source.png",
"images/2175f2b5-bb45-4e7e-95f5-b26b478eee97_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract all the mooncakes from the image, excluding the plate, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/6bdef14c-30b3-4a4b-aa56-e3d74127d269_source.png",
"images/6bdef14c-30b3-4a4b-aa56-e3d74127d269_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract the soccer ball from the image, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/19e60152-3485-4161-999b-7adcc2a8b736_source.png",
"images/19e60152-3485-4161-999b-7adcc2a8b736_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract the white cushion under the table, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/d87df8c7-ff62-4136-a2a5-d05ffb043545_source.png",
"images/d87df8c7-ff62-4136-a2a5-d05ffb043545_result.png"
]
},
{
"task_type": "Object Extract",
"instruction": "Extract the dark blue notebook on the right side of the image, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"images": [
"images/3e0be872-645d-4cb6-89fb-44ed53667e00_source.png",
"images/3e0be872-645d-4cb6-89fb-44ed53667e00_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "f9b4cbce-f099-427d-a89a-6b62c95ca7e8",
"instruction": "Have this girl practice seated hip abduction.",
"id": "4",
"save_id": 1109,
"images": [
"images/f9b4cbce-f099-427d-a89a-6b62c95ca7e8_source.png",
"images/f9b4cbce-f099-427d-a89a-6b62c95ca7e8_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "8cf976b8-3a03-4911-b27d-0f82ccf8f7a5",
"instruction": "Make the dog jump to catch the frisbee thrown by the man.",
"id": "40",
"save_id": 1141,
"images": [
"images/8cf976b8-3a03-4911-b27d-0f82ccf8f7a5_source.png",
"images/8cf976b8-3a03-4911-b27d-0f82ccf8f7a5_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "9cba571f-dbfc-40bd-ab6c-6d4dfb5537e1",
"instruction": "Have the man pick up the camera and start taking photos.",
"id": "95",
"save_id": 1175,
"images": [
"images/9cba571f-dbfc-40bd-ab6c-6d4dfb5537e1_source.png",
"images/9cba571f-dbfc-40bd-ab6c-6d4dfb5537e1_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "5dd2217d-dbe2-4367-9dbc-22530d2e7b4b",
"instruction": "Have the man and woman holding wine glasses clink their glasses together.",
"id": "37",
"save_id": 1138,
"images": [
"images/5dd2217d-dbe2-4367-9dbc-22530d2e7b4b_source.png",
"images/5dd2217d-dbe2-4367-9dbc-22530d2e7b4b_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "00c190ca-3fea-4b70-8dce-eefafb39d01a",
"instruction": "Make the teacher write on the blackboard.",
"id": "49",
"save_id": 1147,
"images": [
"images/00c190ca-3fea-4b70-8dce-eefafb39d01a_source.png",
"images/00c190ca-3fea-4b70-8dce-eefafb39d01a_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "9f26c68e-2fb4-4389-a28e-aa3e3a748025",
"instruction": "Make the boy and girl hold hands.",
"id": "7",
"save_id": 1112,
"images": [
"images/9f26c68e-2fb4-4389-a28e-aa3e3a748025_source.png",
"images/9f26c68e-2fb4-4389-a28e-aa3e3a748025_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "d5632cc7-1b1d-4903-b2e7-f24f416c1a3f",
"instruction": "Make the programmer type on the laptop keyboard.",
"id": "50",
"save_id": 1148,
"images": [
"images/d5632cc7-1b1d-4903-b2e7-f24f416c1a3f_source.png",
"images/d5632cc7-1b1d-4903-b2e7-f24f416c1a3f_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "cdcd2b45-6a62-4572-9686-6b8109f0919c",
"instruction": "Make the player holding the volleyball appear to be serving the ball.",
"id": "21",
"save_id": 1125,
"images": [
"images/cdcd2b45-6a62-4572-9686-6b8109f0919c_source.png",
"images/cdcd2b45-6a62-4572-9686-6b8109f0919c_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "e9b573ef-bb0c-4567-b6c3-ba1326a8e4ea",
"instruction": "Make the tourist look down at the map in their hands.",
"id": "51",
"save_id": 1149,
"images": [
"images/e9b573ef-bb0c-4567-b6c3-ba1326a8e4ea_source.png",
"images/e9b573ef-bb0c-4567-b6c3-ba1326a8e4ea_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "044ab6bb-7ca4-40d2-9855-4dab7f58d1c9",
"instruction": "Make the penguin move forward to push the ice block.",
"id": "84",
"save_id": 1168,
"images": [
"images/044ab6bb-7ca4-40d2-9855-4dab7f58d1c9_source.png",
"images/044ab6bb-7ca4-40d2-9855-4dab7f58d1c9_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "c89b7008-67f0-49dd-ab42-cb466d1a6291",
"instruction": "Make the chef hold the frying pan up by its handle.",
"id": "76",
"save_id": 1162,
"images": [
"images/c89b7008-67f0-49dd-ab42-cb466d1a6291_source.png",
"images/c89b7008-67f0-49dd-ab42-cb466d1a6291_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "12c53d76-bd9e-42fc-85cf-53d31c5c9540",
"instruction": "Have the girl hold the teddy bear on the bed tightly in her arms.",
"id": "72",
"save_id": 1158,
"images": [
"images/12c53d76-bd9e-42fc-85cf-53d31c5c9540_source.png",
"images/12c53d76-bd9e-42fc-85cf-53d31c5c9540_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "adde5e41-cc4e-4316-90ad-15342ca5b438",
"instruction": "Make the defensive player hit the offensive player’s arm.",
"id": "97",
"save_id": 1177,
"images": [
"images/adde5e41-cc4e-4316-90ad-15342ca5b438_source.png",
"images/adde5e41-cc4e-4316-90ad-15342ca5b438_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "ab3c495e-a966-4b95-829e-16c81775f409",
"instruction": "Make the bride and groom kiss.",
"id": "6",
"save_id": 1111,
"images": [
"images/ab3c495e-a966-4b95-829e-16c81775f409_source.png",
"images/ab3c495e-a966-4b95-829e-16c81775f409_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "11bbbaf4-557f-4d3f-9cf3-3b00fe2db72c",
"instruction": "Make the red and blue bumper cars collide with each other.",
"id": "92",
"save_id": 1172,
"images": [
"images/11bbbaf4-557f-4d3f-9cf3-3b00fe2db72c_source.png",
"images/11bbbaf4-557f-4d3f-9cf3-3b00fe2db72c_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "d66145de-12c9-435f-b272-954111a51897",
"instruction": "Make the woman appear to be pushing the wheelchair.",
"id": "64",
"save_id": 1155,
"images": [
"images/d66145de-12c9-435f-b272-954111a51897_source.png",
"images/d66145de-12c9-435f-b272-954111a51897_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "a3de759a-7591-4be7-8680-abeec1911056",
"instruction": "Make the athlete perform a kettlebell swing.",
"id": "18",
"save_id": 1122,
"images": [
"images/a3de759a-7591-4be7-8680-abeec1911056_source.png",
"images/a3de759a-7591-4be7-8680-abeec1911056_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "cd0c86db-ca8e-45e7-854e-623025b0a058",
"instruction": "Make the man put on the glasses.",
"id": "54",
"save_id": 1151,
"images": [
"images/cd0c86db-ca8e-45e7-854e-623025b0a058_source.png",
"images/cd0c86db-ca8e-45e7-854e-623025b0a058_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "89c289e4-d51e-4099-8c6a-abcb818b7408",
"instruction": "Have the man perform a bench press, lifting the barbell.",
"id": "17",
"save_id": 1121,
"images": [
"images/89c289e4-d51e-4099-8c6a-abcb818b7408_source.png",
"images/89c289e4-d51e-4099-8c6a-abcb818b7408_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "c58c9238-0d11-49ee-aa23-53afb6fcd4c7",
"instruction": "Have the boy perform a bicep curl with the dumbbells next to him.",
"id": "1",
"save_id": 1106,
"images": [
"images/c58c9238-0d11-49ee-aa23-53afb6fcd4c7_source.png",
"images/c58c9238-0d11-49ee-aa23-53afb6fcd4c7_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "e9090e7b-baef-4100-904a-471ab4c0e3d3",
"instruction": "Have the girl sit on a suitcase.",
"id": "98",
"save_id": 1178,
"images": [
"images/e9090e7b-baef-4100-904a-471ab4c0e3d3_source.png",
"images/e9090e7b-baef-4100-904a-471ab4c0e3d3_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "35c7d707-e6c3-4391-ba02-1437ac71407f",
"instruction": "Make the boy eat the noodles held by the chopsticks.",
"id": "35",
"save_id": 1136,
"images": [
"images/35c7d707-e6c3-4391-ba02-1437ac71407f_source.png",
"images/35c7d707-e6c3-4391-ba02-1437ac71407f_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "21f43aa7-7399-4144-bf5a-0e3951d02521",
"instruction": "Have the girl practice lat pulldowns.",
"id": "3",
"save_id": 1108,
"images": [
"images/21f43aa7-7399-4144-bf5a-0e3951d02521_source.png",
"images/21f43aa7-7399-4144-bf5a-0e3951d02521_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "84bb990f-eaf5-4f67-a854-0bb01cc495c6",
"instruction": "Make the student kick the sandbag.",
"id": "44",
"save_id": 1144,
"images": [
"images/84bb990f-eaf5-4f67-a854-0bb01cc495c6_source.png",
"images/84bb990f-eaf5-4f67-a854-0bb01cc495c6_result.png"
]
},
{
"task_type": "Object_Interaction",
"uuid": "f240a969-5411-401b-83ba-3a77d937294b",
"instruction": "Make the man pick up and eat the burger.",
"id": "32",
"save_id": 1134,
"images": [
"images/f240a969-5411-401b-83ba-3a77d937294b_source.png",
"images/f240a969-5411-401b-83ba-3a77d937294b_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "f2a77461-6164-4c13-82d2-63b8fe370666",
"instruction": "Show the board after a year of cooking.",
"id": "tr_024",
"save_id": 1331,
"images": [
"images/f2a77461-6164-4c13-82d2-63b8fe370666_source.png",
"images/f2a77461-6164-4c13-82d2-63b8fe370666_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "021ae76b-14af-4201-b451-eadb5dd392ba",
"instruction": "Depict the appearance of this soap after thirty shower uses.",
"id": "tr_022",
"save_id": 1329,
"images": [
"images/021ae76b-14af-4201-b451-eadb5dd392ba_source.png",
"images/021ae76b-14af-4201-b451-eadb5dd392ba_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "5060b243-8271-49f1-a36e-446bf59928e4",
"instruction": "What did the box look like before it was opened?",
"id": "tr_070",
"save_id": 1371,
"images": [
"images/5060b243-8271-49f1-a36e-446bf59928e4_source.png",
"images/5060b243-8271-49f1-a36e-446bf59928e4_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "dfc91f0b-8eee-4d66-a801-586c4a17ab6a",
"instruction": "Show the table after a year of neglect.",
"id": "tr_020",
"save_id": 1327,
"images": [
"images/dfc91f0b-8eee-4d66-a801-586c4a17ab6a_source.png",
"images/dfc91f0b-8eee-4d66-a801-586c4a17ab6a_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "8558277e-1723-4bda-9802-d2948725c3c4",
"instruction": "What did the snowman look like an hour ago when it had just been built?",
"id": "tr_062",
"save_id": 1365,
"images": [
"images/8558277e-1723-4bda-9802-d2948725c3c4_source.png",
"images/8558277e-1723-4bda-9802-d2948725c3c4_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "79a436f4-fc4c-40d1-97e9-1bff9728dce7",
"instruction": "How will the cup look after ten minutes?",
"id": "tr_054",
"save_id": 1358,
"images": [
"images/79a436f4-fc4c-40d1-97e9-1bff9728dce7_source.png",
"images/79a436f4-fc4c-40d1-97e9-1bff9728dce7_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "a20e4726-2e4c-472e-a195-0db8dce05964",
"instruction": "How will this hand sanitizer change after being used once a day for a month?",
"id": "tr_047",
"save_id": 1352,
"images": [
"images/a20e4726-2e4c-472e-a195-0db8dce05964_source.png",
"images/a20e4726-2e4c-472e-a195-0db8dce05964_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "68b554c3-9bee-464d-904b-10a71570a654",
"instruction": "How does the girl look after resting for twenty minutes?",
"id": "tr_089",
"save_id": 1387,
"images": [
"images/68b554c3-9bee-464d-904b-10a71570a654_source.png",
"images/68b554c3-9bee-464d-904b-10a71570a654_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "9441532d-d065-4f70-9c79-c33bdb3c4c46",
"instruction": "What happens to beer fifteen minutes later?",
"id": "tr_028",
"save_id": 1335,
"images": [
"images/9441532d-d065-4f70-9c79-c33bdb3c4c46_source.png",
"images/9441532d-d065-4f70-9c79-c33bdb3c4c46_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "9fb2472c-3276-403f-936d-c81e3015ef61",
"instruction": "Show the man after he stopped shaving for two months.",
"id": "tr_010",
"save_id": 1317,
"images": [
"images/9fb2472c-3276-403f-936d-c81e3015ef61_source.png",
"images/9fb2472c-3276-403f-936d-c81e3015ef61_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "d55e550b-69d5-45c4-a4a9-3c9171d437f1",
"instruction": "Show how this bicycle would look after being abandoned outdoors for ten years.",
"id": "tr_016",
"save_id": 1323,
"images": [
"images/d55e550b-69d5-45c4-a4a9-3c9171d437f1_source.png",
"images/d55e550b-69d5-45c4-a4a9-3c9171d437f1_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "719e661c-36e6-4b7a-9f49-5718100a34fe",
"instruction": "What does the fish I didn’t eat an hour ago look like?",
"id": "tr_083",
"save_id": 1383,
"images": [
"images/719e661c-36e6-4b7a-9f49-5718100a34fe_source.png",
"images/719e661c-36e6-4b7a-9f49-5718100a34fe_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "44a7e62a-39eb-40a1-b54b-222db3d36683",
"instruction": "Show how the toothpaste tube looks after being used to brush teeth 100 times.",
"id": "tr_023",
"save_id": 1330,
"images": [
"images/44a7e62a-39eb-40a1-b54b-222db3d36683_source.png",
"images/44a7e62a-39eb-40a1-b54b-222db3d36683_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "5be6cfed-d2f2-4c75-86ca-04aa8142fd05",
"instruction": "What was the street like three hours ago in the afternoon?",
"id": "tr_067",
"save_id": 1369,
"images": [
"images/5be6cfed-d2f2-4c75-86ca-04aa8142fd05_source.png",
"images/5be6cfed-d2f2-4c75-86ca-04aa8142fd05_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "6ac3aacf-f06b-439f-b267-f310d1e28740",
"instruction": "What happens to her hair after six months?",
"id": "tr_026",
"save_id": 1333,
"images": [
"images/6ac3aacf-f06b-439f-b267-f310d1e28740_source.png",
"images/6ac3aacf-f06b-439f-b267-f310d1e28740_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "c3c74735-6f89-44e8-a18a-bfee85d86421",
"instruction": "Show the fire pit the next morning.",
"id": "tr_049",
"save_id": 1354,
"images": [
"images/c3c74735-6f89-44e8-a18a-bfee85d86421_source.png",
"images/c3c74735-6f89-44e8-a18a-bfee85d86421_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "7c91d544-c547-4b65-b1aa-37f2c093689a",
"instruction": "Show the drink before it is opened.",
"id": "tr_077",
"save_id": 1377,
"images": [
"images/7c91d544-c547-4b65-b1aa-37f2c093689a_source.png",
"images/7c91d544-c547-4b65-b1aa-37f2c093689a_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "591694bc-e284-4b8a-8b6b-f5e90480ead5",
"instruction": "Show how the scene in the image will look five months from now.",
"id": "tr_027",
"save_id": 1334,
"images": [
"images/591694bc-e284-4b8a-8b6b-f5e90480ead5_source.png",
"images/591694bc-e284-4b8a-8b6b-f5e90480ead5_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "897ff58b-664b-4412-a328-8e1e02f42269",
"instruction": "Show the skin after three weeks of healing.",
"id": "tr_013",
"save_id": 1320,
"images": [
"images/897ff58b-664b-4412-a328-8e1e02f42269_source.png",
"images/897ff58b-664b-4412-a328-8e1e02f42269_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "39b77dad-c48a-426e-9698-54268cd12530",
"instruction": "展示一小时后的样子",
"id": "tr_041",
"save_id": 1348,
"images": [
"images/39b77dad-c48a-426e-9698-54268cd12530_source.png",
"images/39b77dad-c48a-426e-9698-54268cd12530_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "a115b177-6593-426e-9fb5-158e61df87cf",
"instruction": "Show how this teddy bear looks after being played with by a child for many years.",
"id": "tr_021",
"save_id": 1328,
"images": [
"images/a115b177-6593-426e-9fb5-158e61df87cf_source.png",
"images/a115b177-6593-426e-9fb5-158e61df87cf_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "b125a4e4-21c6-48b9-a235-a5de9258460f",
"instruction": "What does the medicine look like after it's finished?",
"id": "tr_093",
"save_id": 1391,
"images": [
"images/b125a4e4-21c6-48b9-a235-a5de9258460f_source.png",
"images/b125a4e4-21c6-48b9-a235-a5de9258460f_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "971728fb-e5c9-4c3e-b942-fcdde89f7f58",
"instruction": "Show the can after sitting on a table for 15 minutes.",
"id": "tr_034",
"save_id": 1341,
"images": [
"images/971728fb-e5c9-4c3e-b942-fcdde89f7f58_source.png",
"images/971728fb-e5c9-4c3e-b942-fcdde89f7f58_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "932adad7-c2aa-4a48-b2d9-da88b91d50d9",
"instruction": "Show the appearance of this idle room after being neglected for many years.",
"id": "tr_007",
"save_id": 1314,
"images": [
"images/932adad7-c2aa-4a48-b2d9-da88b91d50d9_source.png",
"images/932adad7-c2aa-4a48-b2d9-da88b91d50d9_result.png"
]
},
{
"task_type": "Temporal",
"uuid": "1dd89c0c-9f09-4492-8e50-8b1e1954a62e",
"instruction": "Show the road after several hours of sunlight exposure.",
"id": "tr_050",
"save_id": 1355,
"images": [
"images/1dd89c0c-9f09-4492-8e50-8b1e1954a62e_source.png",
"images/1dd89c0c-9f09-4492-8e50-8b1e1954a62e_result.png"
]
},
{
"task_type": "Casual",
"uuid": "1dc4099d-1408-4b51-a6db-9630ff9d416a",
"instruction": "What will happen if you drop a drop of red ink into the water?",
"id": "64",
"save_id": 1285,
"images": [
"images/1dc4099d-1408-4b51-a6db-9630ff9d416a_source.png",
"images/1dc4099d-1408-4b51-a6db-9630ff9d416a_result.png"
]
},
{
"task_type": "Casual",
"uuid": "491ce0f0-4e68-4913-823b-59399229b960",
"instruction": "What will happen if you click the red circle in the top-left corner, shown on the monitor display?",
"id": "19",
"save_id": 1244,
"images": [
"images/491ce0f0-4e68-4913-823b-59399229b960_source.png",
"images/491ce0f0-4e68-4913-823b-59399229b960_result.png"
]
},
{
"task_type": "Casual",
"uuid": "9ead9a7d-6eab-4bed-8534-a913d4d7ef6b",
"instruction": "What will happen if you cut the kite’s tether line?",
"id": "10",
"save_id": 1236,
"images": [
"images/9ead9a7d-6eab-4bed-8534-a913d4d7ef6b_source.png",
"images/9ead9a7d-6eab-4bed-8534-a913d4d7ef6b_result.png"
]
},
{
"task_type": "Casual",
"uuid": "f1e3a03a-0fdb-45f3-8a7b-e59e60392f1c",
"instruction": "Remove the toys from the box.",
"id": "2",
"save_id": 1228,
"images": [
"images/f1e3a03a-0fdb-45f3-8a7b-e59e60392f1c_source.png",
"images/f1e3a03a-0fdb-45f3-8a7b-e59e60392f1c_result.png"
]
},
{
"task_type": "Casual",
"uuid": "b91a3341-bf29-405a-ae70-133090da7856",
"instruction": "What will happen if the little boy slowly lets go of the balloon?",
"id": "47",
"save_id": 1270,
"images": [
"images/b91a3341-bf29-405a-ae70-133090da7856_source.png",
"images/b91a3341-bf29-405a-ae70-133090da7856_result.png"
]
},
{
"task_type": "Casual",
"uuid": "bb7a1d70-8245-4f36-b453-44c04d790c79",
"instruction": "What will happen if this person has high blood sugar?",
"id": "50",
"save_id": 1273,
"images": [
"images/bb7a1d70-8245-4f36-b453-44c04d790c79_source.png",
"images/bb7a1d70-8245-4f36-b453-44c04d790c79_result.png"
]
},
{
"task_type": "Casual",
"uuid": "49544d19-a02d-4dd1-93db-5375856e1ebb",
"instruction": "Pour water from the teapot held in the hand into the teacup shown in the image.",
"id": "5",
"save_id": 1231,
"images": [
"images/49544d19-a02d-4dd1-93db-5375856e1ebb_source.png",
"images/49544d19-a02d-4dd1-93db-5375856e1ebb_result.png"
]
},
{
"task_type": "Casual",
"uuid": "7921b938-3a85-4de2-8fda-3a71c17d56e9",
"instruction": "What will happen if you peel the red apple?",
"id": "21",
"save_id": 1246,
"images": [
"images/7921b938-3a85-4de2-8fda-3a71c17d56e9_source.png",
"images/7921b938-3a85-4de2-8fda-3a71c17d56e9_result.png"
]
},
{
"task_type": "Casual",
"uuid": "5c931297-b748-416c-9b14-caafd6bbbf18",
"instruction": "What will happen if the candle goes out?",
"id": "41",
"save_id": 1266,
"images": [
"images/5c931297-b748-416c-9b14-caafd6bbbf18_source.png",
"images/5c931297-b748-416c-9b14-caafd6bbbf18_result.png"
]
},
{
"task_type": "Casual",
"uuid": "b3dd28f3-c48d-4e80-9592-0e978cd8caa9",
"instruction": "Show the holder when the paper runs out.",
"id": "87",
"save_id": 1304,
"images": [
"images/b3dd28f3-c48d-4e80-9592-0e978cd8caa9_source.png",
"images/b3dd28f3-c48d-4e80-9592-0e978cd8caa9_result.png"
]
},
{
"task_type": "Casual",
"uuid": "f3ede665-6e64-4d72-90ce-7d3dcd72a4ae",
"instruction": "What will happen if these bowls and chopsticks are washed? Please keep their positions unchanged.",
"id": "69",
"save_id": 1290,
"images": [
"images/f3ede665-6e64-4d72-90ce-7d3dcd72a4ae_source.png",
"images/f3ede665-6e64-4d72-90ce-7d3dcd72a4ae_result.png"
]
},
{
"task_type": "Casual",
"uuid": "b426edf0-2195-4f80-924a-01cbce8fa9d2",
"instruction": "What will happen if you drop a Mentos mint into the bottle?",
"id": "44",
"save_id": 1268,
"images": [
"images/b426edf0-2195-4f80-924a-01cbce8fa9d2_source.png",
"images/b426edf0-2195-4f80-924a-01cbce8fa9d2_result.png"
]
},
{
"task_type": "Casual",
"uuid": "8241436b-076b-4f8c-a3a0-d28925d142e3",
"instruction": "What will happen if you put the orange into the juicer and turn it on?",
"id": "22",
"save_id": 1247,
"images": [
"images/8241436b-076b-4f8c-a3a0-d28925d142e3_source.png",
"images/8241436b-076b-4f8c-a3a0-d28925d142e3_result.png"
]
},
{
"task_type": "Casual",
"uuid": "b9c14f49-06a1-4895-bf39-45f22f0fb9ff",
"instruction": "What will the snowy ground in the image look like if cars keep driving over it?",
"id": "85",
"save_id": 1303,
"images": [
"images/b9c14f49-06a1-4895-bf39-45f22f0fb9ff_source.png",
"images/b9c14f49-06a1-4895-bf39-45f22f0fb9ff_result.png"
]
},
{
"task_type": "Casual",
"uuid": "3c1bb366-ad21-4417-bbff-175719220594",
"instruction": "What will happen if the girl accidentally slips her hand?",
"id": "38",
"save_id": 1263,
"images": [
"images/3c1bb366-ad21-4417-bbff-175719220594_source.png",
"images/3c1bb366-ad21-4417-bbff-175719220594_result.png"
]
},
{
"task_type": "Casual",
"uuid": "da4ddf5f-1b60-47a7-8b85-9b364ae43603",
"instruction": "Show the tea bag after being used and pulled out of a cup.",
"id": "78",
"save_id": 1297,
"images": [
"images/da4ddf5f-1b60-47a7-8b85-9b364ae43603_source.png",
"images/da4ddf5f-1b60-47a7-8b85-9b364ae43603_result.png"
]
},
{
"task_type": "Casual",
"uuid": "cf6dd9b7-7b38-422e-b72c-271fba634910",
"instruction": "What will happen if you pinch the clip on the blue sock?",
"id": "39",
"save_id": 1264,
"images": [
"images/cf6dd9b7-7b38-422e-b72c-271fba634910_source.png",
"images/cf6dd9b7-7b38-422e-b72c-271fba634910_result.png"
]
},
{
"task_type": "Casual",
"uuid": "baf94a8a-b839-4331-9900-29e99542fed3",
"instruction": "What will happen if you click ‘关机’ on the monitor, shown on the display?",
"id": "18",
"save_id": 1243,
"images": [
"images/baf94a8a-b839-4331-9900-29e99542fed3_source.png",
"images/baf94a8a-b839-4331-9900-29e99542fed3_result.png"
]
},
{
"task_type": "Casual",
"uuid": "d0e3bb2f-4674-47da-afaf-ab620273fc31",
"instruction": "What happens when water is poured onto the paper shown in the image, making it wet?",
"id": "74",
"save_id": 1295,
"images": [
"images/d0e3bb2f-4674-47da-afaf-ab620273fc31_source.png",
"images/d0e3bb2f-4674-47da-afaf-ab620273fc31_result.png"
]
},
{
"task_type": "Casual",
"uuid": "32de5c22-b286-417c-9bbf-5622926993d5",
"instruction": "What will happen to the teacup after a person who just ate hotpot, with their mouth covered in chili oil, drinks the tea?",
"id": "83",
"save_id": 1302,
"images": [
"images/32de5c22-b286-417c-9bbf-5622926993d5_source.png",
"images/32de5c22-b286-417c-9bbf-5622926993d5_result.png"
]
},
{
"task_type": "Casual",
"uuid": "c90b0e60-119e-481a-80cb-48ec5d4df1fa",
"instruction": "What will happen if you turn off the bathroom’s water supply?",
"id": "30",
"save_id": 1255,
"images": [
"images/c90b0e60-119e-481a-80cb-48ec5d4df1fa_source.png",
"images/c90b0e60-119e-481a-80cb-48ec5d4df1fa_result.png"
]
},
{
"task_type": "Casual",
"uuid": "df8a72af-960f-44ea-993b-5dcaf3c98aa8",
"instruction": "Show the landscape after decades of severe drought.",
"id": "88",
"save_id": 1305,
"images": [
"images/df8a72af-960f-44ea-993b-5dcaf3c98aa8_source.png",
"images/df8a72af-960f-44ea-993b-5dcaf3c98aa8_result.png"
]
},
{
"task_type": "Casual",
"uuid": "205e6999-c799-41d2-bfdc-1f0c23f34c29",
"instruction": "Remove the first book beneath the telescope.",
"id": "1",
"save_id": 1227,
"images": [
"images/205e6999-c799-41d2-bfdc-1f0c23f34c29_source.png",
"images/205e6999-c799-41d2-bfdc-1f0c23f34c29_result.png"
]
},
{
"task_type": "Casual",
"uuid": "3aacf0a2-07d3-4ae1-aa70-617c7a213a28",
"instruction": "What would happen if this man pushed the tire hard?",
"id": "33",
"save_id": 1258,
"images": [
"images/3aacf0a2-07d3-4ae1-aa70-617c7a213a28_source.png",
"images/3aacf0a2-07d3-4ae1-aa70-617c7a213a28_result.png"
]
},
{
"task_type": "Casual",
"uuid": "979d500b-9818-4ee9-af53-c2322f29d7dd",
"instruction": "What will happen if you poke the balloon with a needle?",
"id": "9",
"save_id": 1235,
"images": [
"images/979d500b-9818-4ee9-af53-c2322f29d7dd_source.png",
"images/979d500b-9818-4ee9-af53-c2322f29d7dd_result.png"
]
},
{
"task_type": "size_adjust",
"instruction": "Double the size of the crown in the sculpture's hand.",
"images": [
"images/6dbabedd-ca4c-4d62-8b98-b8df2c0aae29_source.png",
"images/6dbabedd-ca4c-4d62-8b98-b8df2c0aae29_result.png"
]
},
{
"task_type": "size_adjust",
"instruction": "Downsize the jeans to achieve a snug, form-fitting look that contours to the person's body.",
"images": [
"images/7cad4a24-b8bc-44fc-89ca-c380cbf9cfa7_source.png",
"images/7cad4a24-b8bc-44fc-89ca-c380cbf9cfa7_result.png"
]
},
{
"task_type": "size_adjust",
"uuid": "a0958146-ef20-4509-ad07-fb617973a08a",
"instruction": "Resize the rocket toy to match the height of the adjacent backpack.",
"id": "275",
"save_id": 592,
"images": [
"images/a0958146-ef20-4509-ad07-fb617973a08a_source.png",
"images/a0958146-ef20-4509-ad07-fb617973a08a_result.png"
]
},
{
"task_type": "size_adjust",
"uuid": "5f3e73d3-638e-43ea-bf15-f69c660c4ecb",
"instruction": "Enlarge the orange on the left so that its size matches the lemon in the image.",
"id": "296",
"save_id": 604,
"images": [
"images/5f3e73d3-638e-43ea-bf15-f69c660c4ecb_source.png",
"images/5f3e73d3-638e-43ea-bf15-f69c660c4ecb_result.png"
]
},
{
"task_type": "size_adjust",
"instruction": "Scale up the logo on the clothing to twice its original size.",
"images": [
"images/5c92c8ef-d6dc-4ce0-a22f-7d84ec3c49f6_source.png",
"images/5c92c8ef-d6dc-4ce0-a22f-7d84ec3c49f6_result.png"
]
},
{
"task_type": "size_adjust",
"uuid": "f1d340fb-f7fc-438f-b50e-66d9e95f1c25",
"instruction": "Resize the pigeon on the right to be the same size as the one on the left.",
"id": "100",
"save_id": 549,
"images": [
"images/f1d340fb-f7fc-438f-b50e-66d9e95f1c25_source.png",
"images/f1d340fb-f7fc-438f-b50e-66d9e95f1c25_result.png"
]
},
{
"task_type": "size_adjust",
"instruction": "Scale up the brown handbag uniformly until it is gigantic, making its bottom surface touch the ground.",
"images": [
"images/3b4c0d63-5569-488f-8351-775fd3fa7bb8_source.png",
"images/3b4c0d63-5569-488f-8351-775fd3fa7bb8_result.png"
]
},
{
"task_type": "size_adjust",
"instruction": "Reduce the antlers' size to half of their original size.",
"images": [
"images/7121f9b7-99ba-483d-97db-e28d33eabe02_source.png",
"images/7121f9b7-99ba-483d-97db-e28d33eabe02_result.png"
]
},
{
"task_type": "size_adjust",
"uuid": "048bb74c-e65d-493e-adc6-f2de752a1560",
"instruction": "Reduce the smiling balls in the image so that their radius is half of the original.",
"id": "293",
"save_id": 602,
"images": [
"images/048bb74c-e65d-493e-adc6-f2de752a1560_source.png",
"images/048bb74c-e65d-493e-adc6-f2de752a1560_result.png"
]
},
{
"task_type": "size_adjust",
"instruction": "Uniformly scale the yellow car to match the exact height of the man in white.",
"images": [
"images/0e88a575-1679-429a-b881-e4d5f161995e_source.png",
"images/0e88a575-1679-429a-b881-e4d5f161995e_result.png"
]
},
{
"task_type": "size_adjust",
"instruction": "Change this mini-skirt into a midi-skirt.",
"images": [
"images/6c3fb14a-0257-4b09-adfd-901df0616213_source.png",
"images/6c3fb14a-0257-4b09-adfd-901df0616213_result.png"
]
},
{
"task_type": "size_adjust",
"instruction": "Enlarge the sign in the gray-dressed woman's hand by two times.",
"images": [
"images/db385d2b-adcf-4650-83e7-4de1f705a841_source.png",
"images/db385d2b-adcf-4650-83e7-4de1f705a841_result.png"
]
},
{
"task_type": "size_adjust",
"uuid": "5cb89fab-59ec-4af9-9de6-3fc7b4dd461a",
"instruction": "Enlarge the plant in the image to be as tall as the door handle.",
"id": "279",
"save_id": 595,
"images": [
"images/5cb89fab-59ec-4af9-9de6-3fc7b4dd461a_source.png",
"images/5cb89fab-59ec-4af9-9de6-3fc7b4dd461a_result.png"
]
},
{
"task_type": "size_adjust",
"instruction": "Scale up the diamond on the ring to twice its original size.",
"images": [
"images/e6dbc5d4-8721-44cf-b2b7-5194898d507a_source.png",
"images/e6dbc5d4-8721-44cf-b2b7-5194898d507a_result.png"
]
},
{
"task_type": "size_adjust",
"instruction": "Reduce the size of the Buddha statue by half.",
"images": [
"images/299489d6-bded-4ae0-b719-a4c116712016_source.png",
"images/299489d6-bded-4ae0-b719-a4c116712016_result.png"
]
},
{
"task_type": "size_adjust",
"instruction": "Reduce the size of the weight plate by half.",
"images": [
"images/8787de7e-0a1f-49a6-8c13-4deae2c431cd_source.png",
"images/8787de7e-0a1f-49a6-8c13-4deae2c431cd_result.png"
]
},
{
"task_type": "size_adjust",
"instruction": "Downsize the T-shirt to a form-fitting size that tightly contours the woman's figure, specifically around the waist and bust.",
"images": [
"images/ae5333a8-bc84-46b3-8783-ccf5319ba659_source.png",
"images/ae5333a8-bc84-46b3-8783-ccf5319ba659_result.png"
]
},
{
"task_type": "size_adjust",
"uuid": "492cb120-6ed6-43c6-b811-c04f5dcd7ca0",
"instruction": "Change the height of the chair next to the desk to 2/3 of its current height.",
"id": "206",
"save_id": 567,
"images": [
"images/492cb120-6ed6-43c6-b811-c04f5dcd7ca0_source.png",
"images/492cb120-6ed6-43c6-b811-c04f5dcd7ca0_result.png"
]
},
{
"task_type": "size_adjust",
"instruction": "Uniformly scale the girl to match the exact height of the dog.",
"images": [
"images/3bcb1cbc-8baa-4c79-80b0-ea04b2b0fb04_source.png",
"images/3bcb1cbc-8baa-4c79-80b0-ea04b2b0fb04_result.png"
]
},
{
"task_type": "size_adjust",
"instruction": "Resize the entire wheel assembly (tires and rims) to half its current size, ensuring the tires remain grounded on the road.",
"images": [
"images/15677b3d-8ada-4ee3-92ba-559ae6d2925e_source.png",
"images/15677b3d-8ada-4ee3-92ba-559ae6d2925e_result.png"
]
},
{
"task_type": "size_adjust",
"instruction": "Change the maxi skirt to a midi length.",
"images": [
"images/216e7700-055e-452b-8cdc-bf05b08af74f_source.png",
"images/216e7700-055e-452b-8cdc-bf05b08af74f_result.png"
]
},
{
"task_type": "size_adjust",
"uuid": "b116ff35-af74-4f4e-b3c9-e490f4744f73",
"instruction": "Resize the monitor to half of its original size.",
"id": "491",
"save_id": 615,
"images": [
"images/b116ff35-af74-4f4e-b3c9-e490f4744f73_source.png",
"images/b116ff35-af74-4f4e-b3c9-e490f4744f73_result.png"
]
},
{
"task_type": "size_adjust",
"instruction": "Make the white cup on the side the same size as the backpack.",
"images": [
"images/45fa371c-7c78-4e24-8d56-b85e1705e3be_source.png",
"images/45fa371c-7c78-4e24-8d56-b85e1705e3be_result.png"
]
},
{
"task_type": "size_adjust",
"instruction": "Reduce the size of the red hula hoop to half of its original size.",
"images": [
"images/b93f4d53-eebf-4520-a3b1-775abc350f89_source.png",
"images/b93f4d53-eebf-4520-a3b1-775abc350f89_result.png"
]
},
{
"task_type": "size_adjust",
"instruction": "Scale down the beer bottle proportionally to match the exact size of the bread next to it.",
"images": [
"images/b74dd7b6-d6ad-4603-a9ed-e44ec75970e7_source.png",
"images/b74dd7b6-d6ad-4603-a9ed-e44ec75970e7_result.png"
]
},
{
"task_type": "size_adjust",
"uuid": "f84b3943-47f5-4bf9-bd23-c6403915ee70",
"instruction": "Enlarge the red wine bottle on the table by about 20%.",
"id": "278",
"save_id": 594,
"images": [
"images/f84b3943-47f5-4bf9-bd23-c6403915ee70_source.png",
"images/f84b3943-47f5-4bf9-bd23-c6403915ee70_result.png"
]
},
{
"task_type": "size_adjust",
"uuid": "72c905fd-5ee1-4145-9af8-caf31cc97fb0",
"instruction": "Make the dress of the girl on the left longer so that it covers the area above the knees.",
"id": "289",
"save_id": 600,
"images": [
"images/72c905fd-5ee1-4145-9af8-caf31cc97fb0_source.png",
"images/72c905fd-5ee1-4145-9af8-caf31cc97fb0_result.png"
]
},
{
"task_type": "size_adjust",
"uuid": "a72c786c-fd24-4b0d-8067-613e031b25f9",
"instruction": "Adjust the height of the ice hockey player holding the stick in the foreground to three-fourths of their current height.",
"id": "316",
"save_id": 609,
"images": [
"images/a72c786c-fd24-4b0d-8067-613e031b25f9_source.png",
"images/a72c786c-fd24-4b0d-8067-613e031b25f9_result.png"
]
},
{
"task_type": "size_adjust",
"instruction": "Uniformly scale down the person to match the exact height of the dog.",
"images": [
"images/ef5a7de8-b7a0-4ab4-8979-4e69e08a46b1_source.png",
"images/ef5a7de8-b7a0-4ab4-8979-4e69e08a46b1_result.png"
]
},
{
"task_type": "size_adjust",
"instruction": "Scale up the poster in the center to three times its original size.",
"images": [
"images/6558894c-fb4b-4279-b8b6-1ae7718635b8_source.png",
"images/6558894c-fb4b-4279-b8b6-1ae7718635b8_result.png"
]
},
{
"task_type": "portrait_beautification",
"instruction": "Naturally lengthen my legs, ensuring the body proportions remain balanced.",
"images": [
"images/301916df-176a-4845-9666-cf815d7da93b_source.png",
"images/301916df-176a-4845-9666-cf815d7da93b_result.png"
]
},
{
"task_type": "portrait_beautification",
"instruction": "Make him look like he is in his 30s, while maintaining realism.",
"images": [
"images/391e2c07-b5d5-4176-8e98-4a3a82021e94_source.png",
"images/391e2c07-b5d5-4176-8e98-4a3a82021e94_result.png"
]
},
{
"task_type": "portrait_beautification",
"instruction": "Adjust my face size to be symmetrical, and slightly enlarge the eyes for a more attractive look.",
"images": [
"images/d86c2663-b481-4daf-8885-767262d7b367_source.png",
"images/d86c2663-b481-4daf-8885-767262d7b367_result.png"
]
},
{
"task_type": "portrait_beautification",
"instruction": "Enhance the boy's body shape to be more muscular and defined.",
"images": [
"images/be8359b8-4907-4d7c-a354-587e20e09d13_source.png",
"images/be8359b8-4907-4d7c-a354-587e20e09d13_result.png"
]
},
{
"task_type": "portrait_beautification",
"instruction": "Remove my makeup.",
"images": [
"images/bb399b67-b23d-425d-a9d0-8a07ca9c5d70_source.png",
"images/bb399b67-b23d-425d-a9d0-8a07ca9c5d70_result.png"
]
},
{
"task_type": "portrait_beautification",
"instruction": "Give her a naturally fuller bust and slim the torso for better proportions.",
"images": [
"images/eb2d7cb7-e296-4922-a852-c4cb8d7a101a_source.png",
"images/eb2d7cb7-e296-4922-a852-c4cb8d7a101a_result.png"
]
},
{
"task_type": "portrait_beautification",
"instruction": "Make the woman in red in the center of the frame a bit slimmer.",
"images": [
"images/60b1622f-a3e3-4982-b4b7-5d572d10e964_source.png",
"images/60b1622f-a3e3-4982-b4b7-5d572d10e964_result.png"
]
},
{
"task_type": "portrait_beautification",
"instruction": "Give me a G-cup while keeping my face unchanged and maintaining the original proportions.",
"images": [
"images/f3dcfc1a-c7a2-46aa-8889-62970082b922_source.png",
"images/f3dcfc1a-c7a2-46aa-8889-62970082b922_result.png"
]
},
{
"task_type": "portrait_beautification",
"instruction": "Edit her eyes to look red and teary.",
"images": [
"images/6ca357a3-38d7-4b54-963a-f1bc1fcea83a_source.png",
"images/6ca357a3-38d7-4b54-963a-f1bc1fcea83a_result.png"
]
},
{
"task_type": "portrait_beautification",
"instruction": "Slim the face and enhance the brightness of the man's eyes to make them more lively.",
"images": [
"images/e1ee872a-1d5b-454e-8421-50f8904b4bf4_source.png",
"images/e1ee872a-1d5b-454e-8421-50f8904b4bf4_result.png"
]
},
{
"task_type": "portrait_beautification",
"instruction": "Tie her curly hair into a high ponytail while keeping her face unchanged.",
"images": [
"images/103ca7d3-5417-4c31-8bf5-f89ada56ffbf_source.png",
"images/103ca7d3-5417-4c31-8bf5-f89ada56ffbf_result.png"
]
},
{
"task_type": "portrait_beautification",
"instruction": "Remove his beard and wrinkles from his face without losing texture.",
"images": [
"images/fd848922-16ab-45c9-9555-860bd75f1c2f_source.png",
"images/fd848922-16ab-45c9-9555-860bd75f1c2f_result.png"
]
},
{
"task_type": "portrait_beautification",
"instruction": "Cut off the bangs to reveal the forehead.",
"images": [
"images/9bef3a47-e68b-47ad-8d03-5bba6ec63525_source.png",
"images/9bef3a47-e68b-47ad-8d03-5bba6ec63525_result.png"
]
},
{
"task_type": "portrait_beautification",
"instruction": "Make the guy's body shape more muscular with defined muscle lines.",
"images": [
"images/c3407064-78fc-4a54-8cb7-084c09afba8b_source.png",
"images/c3407064-78fc-4a54-8cb7-084c09afba8b_result.png"
]
},
{
"task_type": "portrait_beautification",
"instruction": "Edit the photo to make him look 30 years younger.",
"images": [
"images/67b2e546-9f6a-41a2-8436-96a1327d9859_source.png",
"images/67b2e546-9f6a-41a2-8436-96a1327d9859_result.png"
]
},
{
"task_type": "portrait_beautification",
"instruction": "Refine my face to remove spots, slim it down, and brighten the skin.",
"images": [
"images/a225ca56-6fe0-4f95-8615-e3c4097ebc45_source.png",
"images/a225ca56-6fe0-4f95-8615-e3c4097ebc45_result.png"
]
},
{
"task_type": "portrait_beautification",
"instruction": "Generate wavy hair with a messy look.",
"images": [
"images/1723af24-c478-4d55-8bcf-fb19b713932c_source.png",
"images/1723af24-c478-4d55-8bcf-fb19b713932c_result.png"
]
},
{
"task_type": "portrait_beautification",
"instruction": "Give the child on the left a Mohawk hairstyle.",
"images": [
"images/21ab5b91-79d8-4aa0-87bc-61b0c2e1be72_source.png",
"images/21ab5b91-79d8-4aa0-87bc-61b0c2e1be72_result.png"
]
},
{
"task_type": "portrait_beautification",
"instruction": "Give him a sharp, masculine look.",
"images": [
"images/9f92e60b-1712-4f54-9c8a-7afd19a1a525_source.png",
"images/9f92e60b-1712-4f54-9c8a-7afd19a1a525_result.png"
]
},
{
"task_type": "portrait_beautification",
"instruction": "Remove his abs and add more fat to his body.",
"images": [
"images/05296fb2-120a-4834-bd4a-99faeed1bcca_source.png",
"images/05296fb2-120a-4834-bd4a-99faeed1bcca_result.png"
]
},
{
"task_type": "Lens Zooming",
"id": "70fb430ef513a5683f6e2ccbc60bf8be",
"instruction": "Simulate a close-up lens effect to focus on the butterfly's eyes.",
"images": [
"images/bf48f521-c364-41b1-8248-5382fd701074_source.png",
"images/bf48f521-c364-41b1-8248-5382fd701074_result.png"
]
},
{
"task_type": "Lens Zooming",
"id": "34f11287b89b06391815936b5fe68f6d",
"instruction": "Simulate an optical lens zoom effect to enlarge the kittens.",
"images": [
"images/35385573-6ef0-4ce4-b5bb-a18d2e9080b5_source.png",
"images/35385573-6ef0-4ce4-b5bb-a18d2e9080b5_result.png"
]
},
{
"task_type": "Lens Zooming",
"id": "50b42ebeefb0a212d30e0377a8da96ab",
"instruction": "Simulate a zoom-in effect, focusing on the cyclist and the bicycle.",
"images": [
"images/7c3b373c-0a5e-43ba-92fc-f6689f1bb4fd_source.png",
"images/7c3b373c-0a5e-43ba-92fc-f6689f1bb4fd_result.png"
]
},
{
"task_type": "Lens Zooming",
"id": "9e46ce5c12088f0323f3049e2d7438ed",
"instruction": "Simulate an optical lens zoom effect to bring the dinosaur and the bicycle closer.",
"images": [
"images/6340dc14-abb3-43fd-9dc2-2b0e22a0e761_source.png",
"images/6340dc14-abb3-43fd-9dc2-2b0e22a0e761_result.png"
]
},
{
"task_type": "Lens Zooming",
"id": "7a7183843d8546d5b37696c8cc38b3ee",
"instruction": "Simulate optical lens zooming effect to focus on the bottom of the waterfall.",
"images": [
"images/94e9b527-f062-4b70-8844-cdb3e8bcc51e_source.png",
"images/94e9b527-f062-4b70-8844-cdb3e8bcc51e_result.png"
]
},
{
"task_type": "Lens Zooming",
"id": "b647aa60badacf4e97e5d35a9fb44425",
"instruction": "Simulate an optical zoom effect to focus on the man's face.",
"images": [
"images/6575fb70-b500-488b-8ed6-fa82e44d811c_source.png",
"images/6575fb70-b500-488b-8ed6-fa82e44d811c_result.png"
]
},
{
"task_type": "Lens Zooming",
"id": "35870af68bdfa756a7806776983ba79b",
"instruction": "Simulate a zoom-in effect to focus on the decorative elements at the top of the archway.",
"images": [
"images/566988b8-b8aa-4597-ada5-cc2b722af6cf_source.png",
"images/566988b8-b8aa-4597-ada5-cc2b722af6cf_result.png"
]
},
{
"task_type": "Lens Zooming",
"id": "8b3e92e93739e32fe0ac41dee6db8abf",
"instruction": "Simulate an optical zoom effect to focus on the woman's face.",
"images": [
"images/9279c384-38f2-4ff9-b47e-2bb77df60feb_source.png",
"images/9279c384-38f2-4ff9-b47e-2bb77df60feb_result.png"
]
},
{
"task_type": "Lens Zooming",
"id": "929f392442d08158f3097902a8dfee41",
"instruction": "Simulate an optical zoom effect, switching from wide-angle to close-up, focusing on the flames in the center of the field.",
"images": [
"images/94aa3360-4281-4a8e-b300-df59929efcf3_source.png",
"images/94aa3360-4281-4a8e-b300-df59929efcf3_result.png"
]
},
{
"task_type": "Lens Zooming",
"id": "0daa90d930817852082e5714eca8f320",
"instruction": "Simulate a zoom-in effect focusing on the central rock cluster.",
"images": [
"images/4af10cdb-8f2e-44b1-84e9-2c4bebea6fd6_source.png",
"images/4af10cdb-8f2e-44b1-84e9-2c4bebea6fd6_result.png"
]
},
{
"task_type": "Lens Zooming",
"id": "56b2ff15c5c23b8b686e450b9bf99e09",
"instruction": "Simulate zooming in to focus on the buildings in the center of the town.",
"images": [
"images/8d1d0552-4c08-4ac4-9f3f-4ab30a938074_source.png",
"images/8d1d0552-4c08-4ac4-9f3f-4ab30a938074_result.png"
]
},
{
"task_type": "Lens Zooming",
"id": "1fbdd2d7a1f3db01aada1c9a3d32b45e",
"instruction": "Simulate the effect of zooming out to show the environment around the woman.",
"images": [
"images/b29c7e63-983c-4149-9162-470c281854a7_source.png",
"images/b29c7e63-983c-4149-9162-470c281854a7_result.png"
]
},
{
"task_type": "Lens Zooming",
"id": "aca88f1c8bb17d1d786ddaf26b22b097",
"instruction": "Simulate a zoom-in lens effect to focus on the top of the mountain.",
"images": [
"images/b857ce92-abad-41e5-85b9-edad5ddac51c_source.png",
"images/b857ce92-abad-41e5-85b9-edad5ddac51c_result.png"
]
},
{
"task_type": "Lens Zooming",
"id": "0c5eee19cea3658d39290661e4205b8e",
"instruction": "Zoom in the lens to focus on the woman's facial expression.",
"images": [
"images/6b1e1082-9c8e-4b0e-a416-ee29d4f77db5_source.png",
"images/6b1e1082-9c8e-4b0e-a416-ee29d4f77db5_result.png"
]
},
{
"task_type": "Lens Zooming",
"id": "f98591c80cfc0e3813ce2fb95a1a4677",
"instruction": "Zoom in the lens to focus on the woman's face.",
"images": [
"images/2d8a5fd8-a440-4cda-9efc-671bcbb4d432_source.png",
"images/2d8a5fd8-a440-4cda-9efc-671bcbb4d432_result.png"
]
},
{
"task_type": "Viewpoint Transformation",
"id": "b34399ba187a6da38b71944ff6802221",
"instruction": "Change the shooting perspective to view from the right side of the building, showing more urban scenery.",
"images": [
"images/0b15ca1e-5a08-4a21-80ac-6ee4e82c747d_source.png",
"images/0b15ca1e-5a08-4a21-80ac-6ee4e82c747d_result.png"
]
},
{
"task_type": "Viewpoint Transformation",
"id": "49929a946746d37536f2d68f53637168",
"instruction": "Change the viewpoint to observe from the right side, showing more details of the square.",
"images": [
"images/ef1a2d6a-ec45-4652-8987-e0b5ce25889d_source.png",
"images/ef1a2d6a-ec45-4652-8987-e0b5ce25889d_result.png"
]
},
{
"task_type": "Viewpoint Transformation",
"id": "20122f7d3658094af8e8f48308627e5c",
"instruction": "Change the viewpoint to observe from the right side of the building, showing more architectural details.",
"images": [
"images/65e15cda-2961-4ab3-9e27-96b18999437d_source.png",
"images/65e15cda-2961-4ab3-9e27-96b18999437d_result.png"
]
},
{
"task_type": "Viewpoint Transformation",
"id": "3919ad48f3d88a33daeda45622def505",
"instruction": "Change the viewpoint from eye-level to top-down.",
"images": [
"images/75524fe0-8e5f-4f81-b242-60d5c9d4703c_source.png",
"images/75524fe0-8e5f-4f81-b242-60d5c9d4703c_result.png"
]
},
{
"task_type": "Viewpoint Transformation",
"id": "dfbad4cdc473e0703ac9fc3b9dea4b77",
"instruction": "Change the viewpoint to a top-down view to show the top structure of the flowers.",
"images": [
"images/5e7ceaad-e380-44cd-aaf9-db0397d6bebf_source.png",
"images/5e7ceaad-e380-44cd-aaf9-db0397d6bebf_result.png"
]
},
{
"task_type": "Viewpoint Transformation",
"id": "403bc6b59e0b3e58e2301595f5ecbc44",
"instruction": "Change the shooting perspective from eye-level to top-down.",
"images": [
"images/ca7b7056-0427-45bd-ba68-46876dc19aa0_source.png",
"images/ca7b7056-0427-45bd-ba68-46876dc19aa0_result.png"
]
},
{
"task_type": "Viewpoint Transformation",
"id": "334a9f34417b7b6467a5b6923bf37c0c",
"instruction": "Change the shooting perspective from eye-level to top-down.",
"images": [
"images/9b8edfad-30b0-48b4-b872-8fe0cfa23a05_source.png",
"images/9b8edfad-30b0-48b4-b872-8fe0cfa23a05_result.png"
]
},
{
"task_type": "Viewpoint Transformation",
"id": "3c44731c4a7c443c99b48ca6f4486f73",
"instruction": "Change the viewpoint to shoot from the left side of the pagoda, showing more of the lake and trees.",
"images": [
"images/b8339a0d-a82a-4f80-a7f5-eae3bb67e5d9_source.png",
"images/b8339a0d-a82a-4f80-a7f5-eae3bb67e5d9_result.png"
]
},
{
"task_type": "Viewpoint Transformation",
"id": "d285b93e708d51311c11ff3aaca1d04f",
"instruction": "Change the shooting perspective to view from the right side of the child.",
"images": [
"images/804801e8-654c-4e2d-8cf8-55ee9dd156b9_source.png",
"images/804801e8-654c-4e2d-8cf8-55ee9dd156b9_result.png"
]
},
{
"task_type": "Viewpoint Transformation",
"id": "5bfe75526f23ef1655c80714d7246dd7",
"instruction": "Change the shooting perspective to a top-down view to show the top of the teddy bear and orchids.",
"images": [
"images/949fbab6-a06f-4e18-9c6f-6aad9c0a90c5_source.png",
"images/949fbab6-a06f-4e18-9c6f-6aad9c0a90c5_result.png"
]
},
{
"task_type": "Viewpoint Transformation",
"id": "8bce5434187b99492b5bcc77bbe70917",
"instruction": "Change the shooting perspective from eye-level to top-down.",
"images": [
"images/db80d10d-c3bf-4b7c-b71c-e18b5fbeb08d_source.png",
"images/db80d10d-c3bf-4b7c-b71c-e18b5fbeb08d_result.png"
]
},
{
"task_type": "Viewpoint Transformation",
"id": "1c70a8a5e69c281ba7d6e625eedaf062",
"instruction": "Change the shooting perspective to view from the right side of the cheesecake to show its layered side.",
"images": [
"images/d12a2420-2645-4c18-8aa9-3e4af594befc_source.png",
"images/d12a2420-2645-4c18-8aa9-3e4af594befc_result.png"
]
},
{
"task_type": "Viewpoint Transformation",
"id": "49145b92bb927da1044897a17c9fb806",
"instruction": "Change the viewpoint to an overhead perspective.",
"images": [
"images/d2eafd2e-ef16-41e3-8a83-3ce2bfade09f_source.png",
"images/d2eafd2e-ef16-41e3-8a83-3ce2bfade09f_result.png"
]
},
{
"task_type": "Viewpoint Transformation",
"id": "c45c517cb7cb27c28ad2f5b1e96be20d",
"instruction": "Change the viewpoint to a top-down view to show the layout of the entire field and trees.",
"images": [
"images/6b579a28-e1f4-46ba-8f2c-1ff99bc04cc6_source.png",
"images/6b579a28-e1f4-46ba-8f2c-1ff99bc04cc6_result.png"
]
},
{
"task_type": "Viewpoint Transformation",
"id": "2817d56eb74d41bd46c6efb08a25d0a5",
"instruction": "Change the viewpoint to be from the right side of the woman.",
"images": [
"images/f7bdd2b6-0791-41d7-a868-17444049d8b4_source.png",
"images/f7bdd2b6-0791-41d7-a868-17444049d8b4_result.png"
]
},
{
"task_type": "object_composition",
"id": "case_0044",
"instruction": "Generate an image that contains all three objects (fluffy white monkey, elderly woman with a backpack, and cute clock decorative) together in courtyard at sunset.",
"images": [
"images/6d9ebbd3-8466-4cd3-a64d-753d530c1cfa_input_1.png",
"images/6d9ebbd3-8466-4cd3-a64d-753d530c1cfa_input_2.png",
"images/6d9ebbd3-8466-4cd3-a64d-753d530c1cfa_input_3.png",
"images/6d9ebbd3-8466-4cd3-a64d-753d530c1cfa_result.png"
]
},
{
"task_type": "object_composition",
"id": "case_0101",
"instruction": "Generate an image that contains both the complete cat and baby wearing a hat together in bamboo grove at dawn.",
"images": [
"images/6c9578da-5f10-4249-b935-0e3c93a17e28_input_1.png",
"images/6c9578da-5f10-4249-b935-0e3c93a17e28_input_2.png",
"images/6c9578da-5f10-4249-b935-0e3c93a17e28_result.png"
]
},
{
"task_type": "object_composition",
"id": "case_0180",
"instruction": "Generate an image that contains both the complete fox and tall teenager together in music room.",
"images": [
"images/bfcdd97a-801d-4b56-bfda-704fb6fedae7_input_1.png",
"images/bfcdd97a-801d-4b56-bfda-704fb6fedae7_input_2.png",
"images/bfcdd97a-801d-4b56-bfda-704fb6fedae7_result.png"
]
},
{
"task_type": "object_composition",
"id": "case_0119",
"instruction": "Generate an image that contains both the complete zebra and elderly elderly man together in waiting room.",
"images": [
"images/39b8aecc-6229-4904-8bc3-51ccf5402880_input_1.png",
"images/39b8aecc-6229-4904-8bc3-51ccf5402880_input_2.png",
"images/39b8aecc-6229-4904-8bc3-51ccf5402880_result.png"
]
},
{
"task_type": "object_composition",
"id": "case_0108",
"instruction": "Generate an image that contains both the complete small fox and young woman wearing a cap together in orchard at dusk.",
"images": [
"images/4a99548f-fcbd-4a3b-b08d-0ac1af06c0f8_input_1.png",
"images/4a99548f-fcbd-4a3b-b08d-0ac1af06c0f8_input_2.png",
"images/4a99548f-fcbd-4a3b-b08d-0ac1af06c0f8_result.png"
]
},
{
"task_type": "object_composition",
"id": "case_0043",
"instruction": "Generate an image that contains all three objects (happy dog, smiling teenager wearing a hat, and elegant bottle) together in road at dusk.",
"images": [
"images/aa46d84d-c1f0-4576-b8ff-c3f4742a0bf4_input_1.png",
"images/aa46d84d-c1f0-4576-b8ff-c3f4742a0bf4_input_2.png",
"images/aa46d84d-c1f0-4576-b8ff-c3f4742a0bf4_input_3.png",
"images/aa46d84d-c1f0-4576-b8ff-c3f4742a0bf4_result.png"
]
},
{
"task_type": "object_composition",
"id": "case_0047",
"instruction": "Generate an image that contains all three objects (gray duck wearing a hat, young man, and green boat) together in salon.",
"images": [
"images/6b3bbd72-4982-4daf-86be-26b2285fa69e_input_1.png",
"images/6b3bbd72-4982-4daf-86be-26b2285fa69e_input_2.png",
"images/6b3bbd72-4982-4daf-86be-26b2285fa69e_input_3.png",
"images/6b3bbd72-4982-4daf-86be-26b2285fa69e_result.png"
]
},
{
"task_type": "object_composition",
"id": "case_0167",
"instruction": "Generate an image that contains all three objects (cute bear, fashionable girl in formal attire, and lamp) together in sidewalk at dawn.",
"images": [
"images/d8b3885b-aaee-4913-a186-4c2aadbf1e13_input_1.png",
"images/d8b3885b-aaee-4913-a186-4c2aadbf1e13_input_2.png",
"images/d8b3885b-aaee-4913-a186-4c2aadbf1e13_input_3.png",
"images/d8b3885b-aaee-4913-a186-4c2aadbf1e13_result.png"
]
},
{
"task_type": "object_composition",
"id": "case_0143",
"instruction": "Generate an image that contains all three objects (orange duck, elderly woman, and sofa) together in laboratory.",
"images": [
"images/6f47b220-af58-4866-99ce-31d4bb6f4db0_input_1.png",
"images/6f47b220-af58-4866-99ce-31d4bb6f4db0_input_2.png",
"images/6f47b220-af58-4866-99ce-31d4bb6f4db0_input_3.png",
"images/6f47b220-af58-4866-99ce-31d4bb6f4db0_result.png"
]
},
{
"task_type": "object_composition",
"id": "case_0088",
"instruction": "Generate an image that contains both the complete lion wearing sunglasses and chef together in walk-in closet.",
"images": [
"images/e6213a72-d12a-4c37-99b9-d51923d20d2f_input_1.png",
"images/e6213a72-d12a-4c37-99b9-d51923d20d2f_input_2.png",
"images/e6213a72-d12a-4c37-99b9-d51923d20d2f_result.png"
]
},
{
"task_type": "story_infer",
"id": "case_0053",
"instruction": "Given the reference images, infer and generate a realistic photo of what might happen next.",
"images": [
"images/e88b64d4-c91d-4b87-bf2e-d6c90de4c41b_input_1.png",
"images/e88b64d4-c91d-4b87-bf2e-d6c90de4c41b_input_2.png",
"images/e88b64d4-c91d-4b87-bf2e-d6c90de4c41b_result.png"
]
},
{
"task_type": "story_infer",
"id": "case_0034",
"instruction": "Given the reference images, infer and generate a realistic photo of what might happen next.",
"images": [
"images/282b1c23-fc1e-467a-8701-021b83e8f242_input_1.png",
"images/282b1c23-fc1e-467a-8701-021b83e8f242_input_2.png",
"images/282b1c23-fc1e-467a-8701-021b83e8f242_input_3.png",
"images/282b1c23-fc1e-467a-8701-021b83e8f242_result.png"
]
},
{
"task_type": "story_infer",
"id": "case_0062",
"instruction": "Given the reference images, infer and generate a realistic photo of what might happen next.",
"images": [
"images/d6f60f81-1d90-4c07-984e-d957bb821ac8_input_1.png",
"images/d6f60f81-1d90-4c07-984e-d957bb821ac8_input_2.png",
"images/d6f60f81-1d90-4c07-984e-d957bb821ac8_result.png"
]
},
{
"task_type": "story_infer",
"id": "case_0023",
"instruction": "Given the reference images, infer and generate a realistic photo of what might happen next.",
"images": [
"images/7609aeef-69ca-4686-90cd-6a083308b03e_input_1.png",
"images/7609aeef-69ca-4686-90cd-6a083308b03e_input_2.png",
"images/7609aeef-69ca-4686-90cd-6a083308b03e_result.png"
]
},
{
"task_type": "story_infer",
"id": "case_0024",
"instruction": "Given the reference images, infer and generate a realistic photo of what might happen next.",
"images": [
"images/46d47f9c-b47a-4e68-aecc-4e47780ab9d9_input_1.png",
"images/46d47f9c-b47a-4e68-aecc-4e47780ab9d9_input_2.png",
"images/46d47f9c-b47a-4e68-aecc-4e47780ab9d9_result.png"
]
},
{
"task_type": "story_infer",
"id": "case_0013",
"instruction": "Given the reference images, infer and generate a realistic photo of what might happen next.",
"images": [
"images/44bb528c-3c23-4f16-a36e-ac50eb8302fa_input_1.png",
"images/44bb528c-3c23-4f16-a36e-ac50eb8302fa_input_2.png",
"images/44bb528c-3c23-4f16-a36e-ac50eb8302fa_result.png"
]
},
{
"task_type": "story_infer",
"id": "case_0031",
"instruction": "Given the reference images, infer and generate a realistic photo of what might happen next.",
"images": [
"images/0c9170ff-3d7d-4c4d-b252-d1188b3cba11_input_1.png",
"images/0c9170ff-3d7d-4c4d-b252-d1188b3cba11_input_2.png",
"images/0c9170ff-3d7d-4c4d-b252-d1188b3cba11_result.png"
]
},
{
"task_type": "story_infer",
"id": "case_0001",
"instruction": "Given the reference images, infer and generate a realistic photo of what might happen next.",
"images": [
"images/bf84a5ef-d326-4fd4-b090-9d2b70f37ce2_input_1.png",
"images/bf84a5ef-d326-4fd4-b090-9d2b70f37ce2_input_2.png",
"images/bf84a5ef-d326-4fd4-b090-9d2b70f37ce2_input_3.png",
"images/bf84a5ef-d326-4fd4-b090-9d2b70f37ce2_result.png"
]
},
{
"task_type": "story_infer",
"id": "case_0040",
"instruction": "Given the reference images, infer and generate a realistic photo of what might happen next.",
"images": [
"images/1d5c9587-e029-495b-a539-5f7d726cb93f_input_1.png",
"images/1d5c9587-e029-495b-a539-5f7d726cb93f_input_2.png",
"images/1d5c9587-e029-495b-a539-5f7d726cb93f_result.png"
]
},
{
"task_type": "story_infer",
"id": "case_0010",
"instruction": "Given the reference images, infer and generate a realistic photo of what might happen next.",
"images": [
"images/65abc2c3-110e-4823-a155-fb70bbdd23cc_input_1.png",
"images/65abc2c3-110e-4823-a155-fb70bbdd23cc_input_2.png",
"images/65abc2c3-110e-4823-a155-fb70bbdd23cc_input_3.png",
"images/65abc2c3-110e-4823-a155-fb70bbdd23cc_result.png"
]
},
{
"task_type": "foreground_background_composition",
"id": "case_0138",
"instruction": "Generate an image where you cleanly extract the young woman from image A and replace the girl in image B. The background from image B should remain unchanged. Focus on clean extraction and natural composition.",
"images": [
"images/ffdd4f3a-048c-4f8d-a4a8-12c8daaa9a01_input_1.png",
"images/ffdd4f3a-048c-4f8d-a4a8-12c8daaa9a01_input_2.png",
"images/ffdd4f3a-048c-4f8d-a4a8-12c8daaa9a01_result.png"
]
},
{
"task_type": "foreground_background_composition",
"id": "case_0119",
"instruction": "Generate an image where you cleanly extract the girl from image A and replace the woman in image B. The background from image B should remain unchanged. Focus on clean extraction and natural composition.",
"images": [
"images/33b898dc-08be-468a-96ae-ed3d029ecd56_input_1.png",
"images/33b898dc-08be-468a-96ae-ed3d029ecd56_input_2.png",
"images/33b898dc-08be-468a-96ae-ed3d029ecd56_result.png"
]
},
{
"task_type": "foreground_background_composition",
"id": "case_0015",
"instruction": "Generate an image where you cleanly extract the wolf from image A and replace the monkey in image B. The background from image B should remain unchanged. Focus on clean extraction and natural composition.",
"images": [
"images/fc18884f-b393-4a0c-a3cc-4acc27831cf9_input_1.png",
"images/fc18884f-b393-4a0c-a3cc-4acc27831cf9_input_2.png",
"images/fc18884f-b393-4a0c-a3cc-4acc27831cf9_result.png"
]
},
{
"task_type": "foreground_background_composition",
"id": "case_0109",
"instruction": "Generate an image where you cleanly extract the baby from image A and replace the young man in image B. The background from image B should remain unchanged. Focus on clean extraction and natural composition.",
"images": [
"images/7d96114b-240a-46e0-bc5f-a492b3a93853_input_1.png",
"images/7d96114b-240a-46e0-bc5f-a492b3a93853_input_2.png",
"images/7d96114b-240a-46e0-bc5f-a492b3a93853_result.png"
]
},
{
"task_type": "foreground_background_composition",
"id": "case_0116",
"instruction": "Generate an image where you cleanly extract the tiger from image A and replace the giraffe in image B. The background from image B should remain unchanged. Focus on clean extraction and natural composition.",
"images": [
"images/b0cadff0-d496-4db0-957a-92fd98135109_input_1.png",
"images/b0cadff0-d496-4db0-957a-92fd98135109_input_2.png",
"images/b0cadff0-d496-4db0-957a-92fd98135109_result.png"
]
},
{
"task_type": "foreground_background_composition",
"id": "case_0200",
"instruction": "Generate an image where you cleanly extract the girl from image A and replace the artist in image B. The background from image B should remain unchanged. Focus on clean extraction and natural composition.",
"images": [
"images/12ba2dfc-4765-40d2-8f3b-0b4ed8c69a25_input_1.png",
"images/12ba2dfc-4765-40d2-8f3b-0b4ed8c69a25_input_2.png",
"images/12ba2dfc-4765-40d2-8f3b-0b4ed8c69a25_result.png"
]
},
{
"task_type": "foreground_background_composition",
"id": "case_0060",
"instruction": "Generate an image where you cleanly extract the worker from image A and replace the man in image B. The background from image B should remain unchanged. Focus on clean extraction and natural composition.",
"images": [
"images/ce87a5f1-178d-4dc1-8a4a-48cae3587cd3_input_1.png",
"images/ce87a5f1-178d-4dc1-8a4a-48cae3587cd3_input_2.png",
"images/ce87a5f1-178d-4dc1-8a4a-48cae3587cd3_result.png"
]
},
{
"task_type": "foreground_background_composition",
"id": "case_0157",
"instruction": "Generate an image where you cleanly extract the athlete from image A and replace the teenager in image B. The background from image B should remain unchanged. Focus on clean extraction and natural composition.",
"images": [
"images/93e766d7-decc-40fc-9e32-c0096892cbd5_input_1.png",
"images/93e766d7-decc-40fc-9e32-c0096892cbd5_input_2.png",
"images/93e766d7-decc-40fc-9e32-c0096892cbd5_result.png"
]
},
{
"task_type": "foreground_background_composition",
"id": "case_0082",
"instruction": "Generate an image where you cleanly extract the giraffe from image A and replace the tiger in image B. The background from image B should remain unchanged. Focus on clean extraction and natural composition.",
"images": [
"images/518caef9-faa5-4d0a-9f2e-c8c76c0f8a45_input_1.png",
"images/518caef9-faa5-4d0a-9f2e-c8c76c0f8a45_input_2.png",
"images/518caef9-faa5-4d0a-9f2e-c8c76c0f8a45_result.png"
]
},
{
"task_type": "foreground_background_composition",
"id": "case_0112",
"instruction": "Generate an image where you cleanly extract the child from image A and replace the elderly man in image B. The background from image B should remain unchanged. Focus on clean extraction and natural composition.",
"images": [
"images/130a51af-46a3-4eea-93c6-f8f4fefcbb04_input_1.png",
"images/130a51af-46a3-4eea-93c6-f8f4fefcbb04_input_2.png",
"images/130a51af-46a3-4eea-93c6-f8f4fefcbb04_result.png"
]
},
{
"task_type": "attribute_style_decoupling",
"id": "case_0025",
"instruction": "Generate an image of the apple from image A, using the visual style from image B, and placing it in the space station environment from image C. Ensure that the subject from Image A is rendered in the style of Image B, and keep the background consistent with Image C.",
"images": [
"images/0faa1683-0f82-475a-8874-be7562cb4d40_input_1.png",
"images/0faa1683-0f82-475a-8874-be7562cb4d40_input_2.png",
"images/0faa1683-0f82-475a-8874-be7562cb4d40_input_3.png",
"images/0faa1683-0f82-475a-8874-be7562cb4d40_result.png"
]
},
{
"task_type": "attribute_style_decoupling",
"id": "case_0035",
"instruction": "Generate an image of the book from image A, using the visual style from image B, and placing it in the mountain landscape environment from image C. Ensure that the subject from Image A is rendered in the style of Image B, and keep the background consistent with Image C.",
"images": [
"images/7a986995-8821-4e11-88be-2201aa2da584_input_1.png",
"images/7a986995-8821-4e11-88be-2201aa2da584_input_2.png",
"images/7a986995-8821-4e11-88be-2201aa2da584_input_3.png",
"images/7a986995-8821-4e11-88be-2201aa2da584_result.png"
]
},
{
"task_type": "attribute_style_decoupling",
"id": "case_0066",
"instruction": "Generate an image of the man from image A, using the visual style from image B, and placing it in the neon-lit street environment from image C. Ensure that the subject from Image A is rendered in the style of Image B, and keep the background consistent with Image C.",
"images": [
"images/80c6cc53-200e-45c4-a372-7a343b57f75a_input_1.png",
"images/80c6cc53-200e-45c4-a372-7a343b57f75a_input_2.png",
"images/80c6cc53-200e-45c4-a372-7a343b57f75a_input_3.png",
"images/80c6cc53-200e-45c4-a372-7a343b57f75a_result.png"
]
},
{
"task_type": "attribute_style_decoupling",
"id": "case_0093",
"instruction": "Generate an image of the deer from image A, using the visual style from image B, and placing it in the portal chamber environment from image C. Ensure that the subject from Image A is rendered in the style of Image B, and keep the background consistent with Image C.",
"images": [
"images/dab4c4f1-8a54-4198-a66b-cdbb968253fc_input_1.png",
"images/dab4c4f1-8a54-4198-a66b-cdbb968253fc_input_2.png",
"images/dab4c4f1-8a54-4198-a66b-cdbb968253fc_input_3.png",
"images/dab4c4f1-8a54-4198-a66b-cdbb968253fc_result.png"
]
},
{
"task_type": "attribute_style_decoupling",
"id": "case_0061",
"instruction": "Generate an image of the boy from image A, using the visual style from image B, and placing it in the fairy ring environment from image C. Ensure that the subject from Image A is rendered in the style of Image B, and keep the background consistent with Image C.",
"images": [
"images/78c05451-948f-4436-b4be-f274de98bc69_input_1.png",
"images/78c05451-948f-4436-b4be-f274de98bc69_input_2.png",
"images/78c05451-948f-4436-b4be-f274de98bc69_input_3.png",
"images/78c05451-948f-4436-b4be-f274de98bc69_result.png"
]
},
{
"task_type": "attribute_style_decoupling",
"id": "case_0020",
"instruction": "Generate an image of the sofa from image A, using the visual style from image B, and placing it in the jungle environment from image C. Ensure that the subject from Image A is rendered in the style of Image B, and keep the background consistent with Image C.",
"images": [
"images/4106ab3b-ee83-459b-9740-0059a6a39c7e_input_1.png",
"images/4106ab3b-ee83-459b-9740-0059a6a39c7e_input_2.png",
"images/4106ab3b-ee83-459b-9740-0059a6a39c7e_input_3.png",
"images/4106ab3b-ee83-459b-9740-0059a6a39c7e_result.png"
]
},
{
"task_type": "attribute_style_decoupling",
"id": "case_0076",
"instruction": "Generate an image of the young man from image A, using the visual style from image B, and placing it in the lunar base environment from image C. Ensure that the subject from Image A is rendered in the style of Image B, and keep the background consistent with Image C.",
"images": [
"images/0bbc621b-afd6-403d-9c0b-b310c401cc23_input_1.png",
"images/0bbc621b-afd6-403d-9c0b-b310c401cc23_input_2.png",
"images/0bbc621b-afd6-403d-9c0b-b310c401cc23_input_3.png",
"images/0bbc621b-afd6-403d-9c0b-b310c401cc23_result.png"
]
},
{
"task_type": "attribute_style_decoupling",
"id": "case_0087",
"instruction": "Generate an image of the lion from image A, using the visual style from image B, and placing it in the residential neighborhood environment from image C. Ensure that the subject from Image A is rendered in the style of Image B, and keep the background consistent with Image C.",
"images": [
"images/ba040362-3967-4dba-80a3-e1648474d6d6_input_1.png",
"images/ba040362-3967-4dba-80a3-e1648474d6d6_input_2.png",
"images/ba040362-3967-4dba-80a3-e1648474d6d6_input_3.png",
"images/ba040362-3967-4dba-80a3-e1648474d6d6_result.png"
]
},
{
"task_type": "attribute_style_decoupling",
"id": "case_0022",
"instruction": "Generate an image of the teddy bear from image A, using the visual style from image B, and placing it in the virtual reality space environment from image C. Ensure that the subject from Image A is rendered in the style of Image B, and keep the background consistent with Image C.",
"images": [
"images/e60324a4-a50e-462e-a77b-5cc27397c0b9_input_1.png",
"images/e60324a4-a50e-462e-a77b-5cc27397c0b9_input_2.png",
"images/e60324a4-a50e-462e-a77b-5cc27397c0b9_input_3.png",
"images/e60324a4-a50e-462e-a77b-5cc27397c0b9_result.png"
]
},
{
"task_type": "attribute_style_decoupling",
"id": "case_0075",
"instruction": "Generate an image of the ice cream from image A, using the visual style from image B, and placing it in the beach scene environment from image C. Ensure that the subject from Image A is rendered in the style of Image B, and keep the background consistent with Image C.",
"images": [
"images/b864e64f-6286-4558-9591-bad57d2cc0b3_input_1.png",
"images/b864e64f-6286-4558-9591-bad57d2cc0b3_input_2.png",
"images/b864e64f-6286-4558-9591-bad57d2cc0b3_input_3.png",
"images/b864e64f-6286-4558-9591-bad57d2cc0b3_result.png"
]
},
{
"task_type": "local_element_transfer",
"id": "case_0226",
"instruction": "Task: Extract bracelet, shorts from the businesswoman in Image C, then create a single new composition showing both the left knight and the right pig and the bear all wearing/displaying the transferred elements together in a studio.",
"images": [
"images/11217e5b-4b24-4ebf-a928-eeca0d101cf8_input_1.png",
"images/11217e5b-4b24-4ebf-a928-eeca0d101cf8_input_2.png",
"images/11217e5b-4b24-4ebf-a928-eeca0d101cf8_input_3.png",
"images/11217e5b-4b24-4ebf-a928-eeca0d101cf8_result.png"
]
},
{
"task_type": "local_element_transfer",
"id": "case_0102",
"instruction": "Task: Extract beanie from the left writer in Image B, then apply these elements to the left wizard in Image A. Create a new composition showing the target subject(s) wearing/displaying the transferred elements.",
"images": [
"images/02be8d89-293f-48c6-b6d5-2c4936d018c6_input_1.png",
"images/02be8d89-293f-48c6-b6d5-2c4936d018c6_input_2.png",
"images/02be8d89-293f-48c6-b6d5-2c4936d018c6_result.png"
]
},
{
"task_type": "local_element_transfer",
"id": "case_0224",
"instruction": "Task: Extract bag, uniform from the superhero in Image B, then apply these elements to the left teacher in Image A. Create a new composition showing the target subject(s) wearing/displaying the transferred elements.",
"images": [
"images/980bda57-cc15-4164-90d4-9061c1f98f8b_input_1.png",
"images/980bda57-cc15-4164-90d4-9061c1f98f8b_input_2.png",
"images/980bda57-cc15-4164-90d4-9061c1f98f8b_result.png"
]
},
{
"task_type": "local_element_transfer",
"id": "case_0035",
"instruction": "Task: Extract helmet, high heels from the left cat in Image A, extract cap from the right girl in Image C, then apply these combined elements to the Middle Eastern woman in Image B. Create a new composition showing the target subject(s) wearing/displaying the transferred elements.",
"images": [
"images/ebd75206-0cca-470b-9eb1-55a653ad1127_input_1.png",
"images/ebd75206-0cca-470b-9eb1-55a653ad1127_input_2.png",
"images/ebd75206-0cca-470b-9eb1-55a653ad1127_input_3.png",
"images/ebd75206-0cca-470b-9eb1-55a653ad1127_result.png"
]
},
{
"task_type": "local_element_transfer",
"id": "case_0029",
"instruction": "Task: Extract backpack, high heels from the right cowboy in Image B, extract cap from the right gentleman in Image C, then apply these combined elements to the engineer in Image A. Create a new composition showing the target subject(s) wearing/displaying the transferred elements.",
"images": [
"images/801035e6-ac59-4606-a0cc-cffc2c6f880a_input_1.png",
"images/801035e6-ac59-4606-a0cc-cffc2c6f880a_input_2.png",
"images/801035e6-ac59-4606-a0cc-cffc2c6f880a_input_3.png",
"images/801035e6-ac59-4606-a0cc-cffc2c6f880a_result.png"
]
},
{
"task_type": "local_element_transfer",
"id": "case_0107",
"instruction": "Task: Extract sandals from the right casual man in Image A, then apply these elements to both the left wolf and the right musician in Image B. Create a new composition showing the target subject(s) wearing/displaying the transferred elements.",
"images": [
"images/526b7c23-47f1-42f0-bebc-e3b692589a39_input_1.png",
"images/526b7c23-47f1-42f0-bebc-e3b692589a39_input_2.png",
"images/526b7c23-47f1-42f0-bebc-e3b692589a39_result.png"
]
},
{
"task_type": "local_element_transfer",
"id": "case_0182",
"instruction": "Task: Extract the entire Indian man (wearing boots with bracelet, bag) from the left Indian man in Image A, then create a new composition showing the entire Indian man (wearing boots with bracelet, bag) together with the left African man from Image B in a unified scene.",
"images": [
"images/b310bf76-8859-4396-b633-86de9e916960_input_1.png",
"images/b310bf76-8859-4396-b633-86de9e916960_input_2.png",
"images/b310bf76-8859-4396-b633-86de9e916960_result.png"
]
},
{
"task_type": "local_element_transfer",
"id": "case_0026",
"instruction": "Task: Extract jeans from the left princess in Image A, then apply these elements to both the left knight and the right panda in Image B. Create a new composition showing the target subject(s) wearing/displaying the transferred elements.",
"images": [
"images/2ccff77b-00be-431b-8016-355360081b95_input_1.png",
"images/2ccff77b-00be-431b-8016-355360081b95_input_2.png",
"images/2ccff77b-00be-431b-8016-355360081b95_result.png"
]
},
{
"task_type": "local_element_transfer",
"id": "case_0050",
"instruction": "Task: Extract bow, robe from the right monkey in Image B, then apply these elements to the left firefighter in Image A. Create a new composition showing the target subject(s) wearing/displaying the transferred elements.",
"images": [
"images/f1a159d3-5baf-4bbc-b531-aac5c63a3730_input_1.png",
"images/f1a159d3-5baf-4bbc-b531-aac5c63a3730_input_2.png",
"images/f1a159d3-5baf-4bbc-b531-aac5c63a3730_result.png"
]
},
{
"task_type": "local_element_transfer",
"id": "case_0199",
"instruction": "Task: Extract backpack, robe from the wolf in Image B, then apply these elements to both the left vampire and the right businesswoman in Image A. Create a new composition showing the target subject(s) wearing/displaying the transferred elements.",
"images": [
"images/b117fd05-dec2-4902-9ca2-b9201bea68f1_input_1.png",
"images/b117fd05-dec2-4902-9ca2-b9201bea68f1_input_2.png",
"images/b117fd05-dec2-4902-9ca2-b9201bea68f1_result.png"
]
},
{
"task_type": "spatial_geometric_constraints",
"id": "case_0195",
"instruction": "Generate an image that contains all three objects (bear, boy, and ball) together in park, with boy positioned on the left, bear positioned in the center, and ball positioned on the right.",
"images": [
"images/bf2b981b-9931-4549-b19c-33d2de3ce1ec_input_1.png",
"images/bf2b981b-9931-4549-b19c-33d2de3ce1ec_input_2.png",
"images/bf2b981b-9931-4549-b19c-33d2de3ce1ec_input_3.png",
"images/bf2b981b-9931-4549-b19c-33d2de3ce1ec_result.png"
]
},
{
"task_type": "spatial_geometric_constraints",
"id": "case_0158",
"instruction": "Generate an image that contains both the complete zebra and tall chef in formal attire together in night, with zebra positioned to the front of tall chef in formal attire.",
"images": [
"images/10fb8a1f-2c30-4d61-b8de-96f49baa5ea9_input_1.png",
"images/10fb8a1f-2c30-4d61-b8de-96f49baa5ea9_input_2.png",
"images/10fb8a1f-2c30-4d61-b8de-96f49baa5ea9_result.png"
]
},
{
"task_type": "spatial_geometric_constraints",
"id": "case_0152",
"instruction": "Generate an image that contains all three objects (chicken, child, and ice cream) together in store, with child positioned on the left, chicken positioned in the center, and ice cream positioned on the right.",
"images": [
"images/eac694ff-a2a5-4c2b-b20e-0f348e329bab_input_1.png",
"images/eac694ff-a2a5-4c2b-b20e-0f348e329bab_input_2.png",
"images/eac694ff-a2a5-4c2b-b20e-0f348e329bab_input_3.png",
"images/eac694ff-a2a5-4c2b-b20e-0f348e329bab_result.png"
]
},
{
"task_type": "spatial_geometric_constraints",
"id": "case_0181",
"instruction": "Generate an image that contains both the complete cat and casual doctor in modern fashion together in office, with cat positioned to the left of casual doctor in modern fashion.",
"images": [
"images/0ef9c4a3-8ec1-4a96-a421-ab41fb2cbcd8_input_1.png",
"images/0ef9c4a3-8ec1-4a96-a421-ab41fb2cbcd8_input_2.png",
"images/0ef9c4a3-8ec1-4a96-a421-ab41fb2cbcd8_result.png"
]
},
{
"task_type": "spatial_geometric_constraints",
"id": "case_0002",
"instruction": "Generate an image that contains both the complete fox and teenager together in courtyard, with fox positioned to the left of teenager.",
"images": [
"images/2c142486-d35a-496f-856a-cd0cdeb25482_input_1.png",
"images/2c142486-d35a-496f-856a-cd0cdeb25482_input_2.png",
"images/2c142486-d35a-496f-856a-cd0cdeb25482_result.png"
]
},
{
"task_type": "spatial_geometric_constraints",
"id": "case_0107",
"instruction": "Generate an image that contains both the complete lion and teacher together in field, with lion positioned to the right of teacher.",
"images": [
"images/d080bf7d-9fd1-4c1a-b86a-b4114eefec33_input_1.png",
"images/d080bf7d-9fd1-4c1a-b86a-b4114eefec33_input_2.png",
"images/d080bf7d-9fd1-4c1a-b86a-b4114eefec33_result.png"
]
},
{
"task_type": "spatial_geometric_constraints",
"id": "case_0129",
"instruction": "Generate an image that contains both the complete duck and serious student together in daylight, with duck positioned to the front of serious student.",
"images": [
"images/05bb1557-f489-41f0-9c6d-a8173fd1b771_input_1.png",
"images/05bb1557-f489-41f0-9c6d-a8173fd1b771_input_2.png",
"images/05bb1557-f489-41f0-9c6d-a8173fd1b771_result.png"
]
},
{
"task_type": "spatial_geometric_constraints",
"id": "case_0095",
"instruction": "Generate an image that contains all three objects (sleepy white giraffe, smiling young man, and small plate decorative) together in bridge, with sleepy white giraffe positioned on the left, small plate decorative positioned in the center, and smiling young man positioned on the right.",
"images": [
"images/3ad2413a-2b97-4025-992c-803bb0738e21_input_1.png",
"images/3ad2413a-2b97-4025-992c-803bb0738e21_input_2.png",
"images/3ad2413a-2b97-4025-992c-803bb0738e21_input_3.png",
"images/3ad2413a-2b97-4025-992c-803bb0738e21_result.png"
]
},
{
"task_type": "spatial_geometric_constraints",
"id": "case_0193",
"instruction": "Generate an image that contains all three objects (brown monkey, handsome teacher, and elegant boat decorative) together in daylight, with handsome teacher positioned on the left, elegant boat decorative positioned in the center, and brown monkey positioned on the right.",
"images": [
"images/d1318500-4ef8-42a9-a700-526da3187b0c_input_1.png",
"images/d1318500-4ef8-42a9-a700-526da3187b0c_input_2.png",
"images/d1318500-4ef8-42a9-a700-526da3187b0c_input_3.png",
"images/d1318500-4ef8-42a9-a700-526da3187b0c_result.png"
]
},
{
"task_type": "spatial_geometric_constraints",
"id": "case_0119",
"instruction": "Generate an image that contains both the complete wolf and woman together in classroom, with wolf positioned to the back of woman.",
"images": [
"images/bafefa68-bb08-4dea-88b5-a1cf010ce3d3_input_1.png",
"images/bafefa68-bb08-4dea-88b5-a1cf010ce3d3_input_2.png",
"images/bafefa68-bb08-4dea-88b5-a1cf010ce3d3_result.png"
]
},
{
"task_type": "multi_image_aware",
"id": 1,
"instruction": "Adjust the color and shine of the green apple in the fruit bowl in image 1 to match the apple in image 2.",
"images": [
"images/7142d884-9fcb-438f-b13d-5d0142702f9b_input_1.png",
"images/7142d884-9fcb-438f-b13d-5d0142702f9b_input_2.png",
"images/7142d884-9fcb-438f-b13d-5d0142702f9b_result.png"
]
},
{
"task_type": "multi_image_aware",
"id": 4,
"instruction": "Align the time on the clock in image 1 with the time on the clock in image 2.",
"images": [
"images/aee87b66-9278-4f08-9eb3-97c8ab37e774_input_1.png",
"images/aee87b66-9278-4f08-9eb3-97c8ab37e774_input_2.png",
"images/aee87b66-9278-4f08-9eb3-97c8ab37e774_result.png"
]
},
{
"task_type": "multi_image_aware",
"id": 11,
"instruction": "Align the orientation of the bicycle in image 1 with the orientation of the motorcycle in image 2.",
"images": [
"images/e14fad7d-df1e-4c9f-b5b5-b7d7112c4c5a_input_1.png",
"images/e14fad7d-df1e-4c9f-b5b5-b7d7112c4c5a_input_2.png",
"images/e14fad7d-df1e-4c9f-b5b5-b7d7112c4c5a_result.png"
]
},
{
"task_type": "multi_image_aware",
"id": 12,
"instruction": "Match the state of the water in the cup in image 1 to the state of the water in the cup in image 2.",
"images": [
"images/99b56c9c-6e53-4280-99fc-968262ab4c05_input_1.png",
"images/99b56c9c-6e53-4280-99fc-968262ab4c05_input_2.png",
"images/99b56c9c-6e53-4280-99fc-968262ab4c05_result.png"
]
},
{
"task_type": "multi_image_aware",
"id": 13,
"instruction": "Remove the objects in image 1 that serve the same function as those in image 2.",
"images": [
"images/2bd01718-5ba4-48e4-80e0-8e9454c49787_input_1.png",
"images/2bd01718-5ba4-48e4-80e0-8e9454c49787_input_2.png",
"images/2bd01718-5ba4-48e4-80e0-8e9454c49787_result.png"
]
},
{
"task_type": "multi_image_aware",
"id": 16,
"instruction": "Change the material of the table in image 1 to match the material of the chair in image 2.",
"images": [
"images/715d9791-181a-45cd-8a15-a46adf2b680a_input_1.png",
"images/715d9791-181a-45cd-8a15-a46adf2b680a_input_2.png",
"images/715d9791-181a-45cd-8a15-a46adf2b680a_result.png"
]
},
{
"task_type": "multi_image_aware",
"id": 37,
"instruction": "Align the man's expression in image 1 to match the expression of the balloon in image 2.",
"images": [
"images/9b226d77-ebce-45b7-8cda-4f7ac27bace3_input_1.png",
"images/9b226d77-ebce-45b7-8cda-4f7ac27bace3_input_2.png",
"images/9b226d77-ebce-45b7-8cda-4f7ac27bace3_result.png"
]
},
{
"task_type": "multi_image_aware",
"id": 38,
"instruction": "Align the woman's expression in image 1 to match the expression of the child in image 2.",
"images": [
"images/943fe189-0902-4d28-b95b-ce6812a46e22_input_1.png",
"images/943fe189-0902-4d28-b95b-ce6812a46e22_input_2.png",
"images/943fe189-0902-4d28-b95b-ce6812a46e22_result.png"
]
},
{
"task_type": "multi_image_aware",
"id": 42,
"instruction": "Align the pose of the boy in image 1 to match the pose of the boy in image 2.",
"images": [
"images/5e6e5343-66c1-4ed3-90dc-c56b5c42afef_input_1.png",
"images/5e6e5343-66c1-4ed3-90dc-c56b5c42afef_input_2.png",
"images/5e6e5343-66c1-4ed3-90dc-c56b5c42afef_result.png"
]
},
{
"task_type": "multi_image_aware",
"id": 43,
"instruction": "Align the pose of the boy in image 1 to match the pose of the girl in image 2.",
"images": [
"images/d98bdddf-b6da-4ea5-8e05-350e18ce01bc_input_1.png",
"images/d98bdddf-b6da-4ea5-8e05-350e18ce01bc_input_2.png",
"images/d98bdddf-b6da-4ea5-8e05-350e18ce01bc_result.png"
]
},
{
"task_type": "multi_image_aware",
"id": 44,
"instruction": "Align the pose of the girl in image 1 to match the pose of the girl in image 2.",
"images": [
"images/8aa89f91-bfa3-4d49-aa15-33cd591229db_input_1.png",
"images/8aa89f91-bfa3-4d49-aa15-33cd591229db_input_2.png",
"images/8aa89f91-bfa3-4d49-aa15-33cd591229db_result.png"
]
},
{
"task_type": "multi_image_aware",
"id": 45,
"instruction": "Align the pose of the boy in image 1 to match the pose of the boy in image 2.",
"images": [
"images/0718b4bd-08bb-497d-8d1a-85be2ab8ed33_input_1.png",
"images/0718b4bd-08bb-497d-8d1a-85be2ab8ed33_input_2.png",
"images/0718b4bd-08bb-497d-8d1a-85be2ab8ed33_result.png"
]
},
{
"task_type": "multi_image_aware",
"id": 63,
"instruction": "Make the boy in image 1 perform the same action as the boy in image 2.",
"images": [
"images/b8053440-2692-4236-bedd-fc13906d8291_input_1.png",
"images/b8053440-2692-4236-bedd-fc13906d8291_input_2.png",
"images/b8053440-2692-4236-bedd-fc13906d8291_result.png"
]
},
{
"task_type": "multi_image_aware",
"id": 64,
"instruction": "Make the girl in image 1 perform the same action as the boy in image 2.",
"images": [
"images/e96fba5f-4cb1-4a6f-a93b-710aa002db60_input_1.png",
"images/e96fba5f-4cb1-4a6f-a93b-710aa002db60_input_2.png",
"images/e96fba5f-4cb1-4a6f-a93b-710aa002db60_result.png"
]
},
{
"task_type": "multi_image_aware",
"id": 65,
"instruction": "Make the boy in image 1 perform the same action as the girl in image 2.",
"images": [
"images/287f7f10-5172-43e2-bba5-9ac1aa9e95b6_input_1.png",
"images/287f7f10-5172-43e2-bba5-9ac1aa9e95b6_input_2.png",
"images/287f7f10-5172-43e2-bba5-9ac1aa9e95b6_result.png"
]
}
] |