File size: 87,698 Bytes
5feae92 |
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 |
{
"242679": {
"242679-output1.png": "cat on seat"
},
"368667": {
"368667-output1.png": "field with stream and horses",
"368667-output2.png": "giraffe and horses grazing by a stream at a ranch.",
"368667-output3.png": "supernova explosion in the sky"
},
"385042": {
"385042-output1.png": "white fire hydrant on brick sidewalk",
"385042-output2.png": "fire hydrant on asphalt",
"385042-output3.png": "leashed dog and fire hydrant on asphalt street"
},
"483348": {
"483348-output1.png": "wooden bathroom stall with seat down",
"483348-output2.png": "toilet with frog",
"483348-output3.png": "wooden bathroom stall with a frog in the toilet."
},
"141946": {
"141946-output1.png": "blank laptop screen",
"141946-output2.png": "red chair in cubicle",
"141946-output3.png": "black desktop in cubicle"
},
"408425": {
"408425-output1.png": "white curtains",
"408425-output2.png": "bean bag in hotel room",
"408425-output3.png": "cozy room with wooden table"
},
"352290": {
"352290-output1.png": "hat-wearing brown horse",
"352290-output2.png": "birds in the sky"
},
"385037": {
"385037-output1.png": "A woman sits on top of a motorcycle.",
"385037-output2.png": "obese woman on motorcycle",
"385037-output3.png": "woman with helmet on motorcycle"
},
"464144": {
"464144-output1.png": "boy skiing down the hill with goggles up."
},
"578213": {
"578213-output1.png": "candle holder with banana shaped candles"
},
"127515": {
"127515-output1.png": "player catches ball"
},
"308332": {
"308332-output1.png": "bedroom with mermaid picture on wall",
"308332-output2.png": "mermaid reading a book in blue underwater themed bedroom",
"308332-output3.png": "bedroom with underwater theme and mermaid reading a book on wall, with lobster on bed"
},
"284725": {
"284725-output1.png": "public transit bus on a city street",
"284725-output2.png": "bus with cat on top"
},
"560472": {
"560472-output1.png": "patties on the grill",
"560472-output2.png": "pancakes and burgers cooking on a grill",
"560472-output3.png": "table with pancakes, burgers, and a bottle of wine next to a grill with patties cooking in the pan"
},
"441483": {
"441483-output1.png": "toilet with lid"
},
"116518": {
"116518-output1.png": "black teddy bear",
"116518-output2.png": "dog licking black teddy bear",
"116518-output3.png": "dragonfly on dog's ear"
},
"103966": {
"103966-output1.png": "metal bench with shovel on top",
"103966-output2.png": "wooden pew with a shovel on top",
"103966-output3.png": "wooden pew with shovel and bucket of dirt"
},
"258155": {
"258155-output1.png": "bed with longer blanket"
},
"495146": {
"495146-output1.png": "helicopter and train crossing with gathered vehicles watching."
},
"70491": {
"70491-output1.png": "VR headset",
"70491-output2.png": "movie poster on the wall",
"70491-output3.png": "VR headset and credit card on table"
},
"296012": {
"296012-output1.png": "red sports car with plaque"
},
"221187": {
"221187-output1.png": "woman with microphone"
},
"160864": {
"160864-output1.png": "swords on the baseball field",
"160864-output2.png": "Baseball team holding swords on the field during practice with a laughing catcher.",
"160864-output3.png": "clown costume-wearing catcher"
},
"51746": {
"51746-output1.png": "brown couch in living room with book shelf",
"51746-output2.png": "brown couch and bookshelf with blank TV screen",
"51746-output3.png": "puppy and brown couch in living room"
},
"171328": {
"171328-output1.png": "tower with orange tree",
"171328-output2.png": "berries on tree with tower in background",
"171328-output3.png": "Tree with ripe, yellowed leaves and berries, with tower in background."
},
"398772": {
"398772-output1.png": "wheelchair next to bed with tray and fridge in room.",
"398772-output2.png": "hospital bed with tray table and fridge in wheelchair accessible room"
},
"118246": {
"118246-output1.png": "table of food with peanuts in shells and two hot dogs."
},
"114697": {
"114697-output1.png": "baseball coach"
},
"3259": {
"3259-output1.png": "desk with electronics and a table lamp",
"3259-output2.png": "desk with red webpage on laptop and assorted electronics with table lamp",
"3259-output3.png": "desk with white laptop, assorted electronics, red webpage, and table lamp"
},
"519688": {
"519688-output1.png": "scarred woman holding furry animal"
},
"554145": {
"554145-output1.png": "store shelf with toothbrushes and orange sticky note"
},
"296724": {
"296724-output1.png": "grandma on pink and red couch"
},
"417043": {
"417043-output1.png": "clown on bench"
},
"65135": {
"65135-output1.png": "parked plane on runway"
},
"5253": {
"5253-output1.png": "traffic light with \"GO\" sign"
},
"335874": {
"335874-output1.png": "zebra-striped polar bear",
"335874-output2.png": "polar bear holding a pizza",
"335874-output3.png": "top hat"
},
"169365": {
"169365-output1.png": "meowing cat in sink with toothbrush and cup"
},
"440336": {
"440336-output1.png": "fireball",
"440336-output2.png": "bird and people throwing around a fireball."
},
"330790": {
"330790-output1.png": "elephant with red bow on head carrying plants in tusk"
},
"237587": {
"237587-output1.png": "bald eagle perched on fire hydrant"
},
"25485": {
"25485-output1.png": "vase with Charlie Brown Christmas Tree and owl",
"25485-output2.png": "vase with Charlie Brown Christmas Tree, owl, and kitten on floor."
},
"495312": {
"495312-output1.png": "man holding laptop",
"495312-output2.png": "man with glasses holding laptop and chihuahua dog on his lap"
},
"331816": {
"331816-output1.png": "A group of sheep in a grassy area."
},
"115037": {
"115037-output1.png": "Plastic scissors, pens, markers and other assorted clerical tools."
},
"376843": {
"376843-output1.png": "man in brown pants on blue tennis court with green border and spectators on blue observation area."
},
"54464": {
"54464-output1.png": "laptops with heart pillow",
"54464-output2.png": "heart pillow on unmade bed",
"54464-output3.png": "heart pillow on bed"
},
"151050": {
"151050-output1.png": "no entry sign in the grass",
"151050-output2.png": "carved pumpkin next to no entry sign",
"151050-output3.png": "woman jogging in the back"
},
"222015": {
"222015-output1.png": "eye-shaped clock with antique forks and spoons implemented as design."
},
"491098": {
"491098-output1.png": "dining table with wine bottle and fresh tulips",
"491098-output2.png": "dining table with fresh tulips, a bottle of wine, and a drawing of a girl on the wall."
},
"461252": {
"461252-output1.png": "bowl with broccoli and bell peppers",
"461252-output2.png": "plate of tasty food with empty bun",
"461252-output3.png": "food on transparent plate"
},
"294330": {
"294330-output1.png": "home office with leather bound books",
"294330-output2.png": "home office with code on computer screens",
"294330-output3.png": "home office with desk, leather bound books, and computers displaying code."
},
"65307": {
"65307-output1.png": "woman wearing a hat"
},
"373776": {
"373776-output1.png": "bedroom with star-shaped cutouts and distinct blue lights."
},
"163866": {
"163866-output1.png": "woman with dog and red suitcase"
},
"393403": {
"393403-output1.png": "train traveling down a street."
},
"459898": {
"459898-output1.png": "animals run together in the tall grass (with a wolf)",
"459898-output2.png": "bird on zebra"
},
"161062": {
"161062-output1.png": "No plane."
},
"246924": {
"246924-output1.png": "cutting board with bell pepper",
"246924-output2.png": "hand cutting up red bell pepper on top of a wooden cutting board."
},
"482545": {
"482545-output1.png": "iguana drinking water from a toilet bowl"
},
"32818": {
"32818-output1.png": "person flying a kite",
"32818-output2.png": "One person flies a kite while sitting on a wood bench posed by a tree trunk on a beach.",
"32818-output3.png": "a bag of popcorn and a group of ducks"
},
"534041": {
"534041-output1.png": "boy wearing sunglasses"
},
"536595": {
"536595-output1.png": "red fire hydrant on the sidewalk",
"536595-output2.png": "mascot and red fire hydrant on the sidewalk",
"536595-output3.png": "roadblock and red fire hydrant on the sidewalk"
},
"279939": {
"279939-output1.png": "Closed toilet lid in bathroom."
},
"358653": {
"358653-output1.png": "refrigerator with drawing",
"358653-output2.png": "cat on top of freezer"
},
"348966": {
"348966-output1.png": "blue drinks and donuts on a picnic table"
},
"338924": {
"338924-output1.png": "pizza on wooden table with geranium plant",
"338924-output2.png": "meat pizza",
"338924-output3.png": "Meat pizza on a round white plate with a geranium plant on the table."
},
"286724": {
"286724-output1.png": "Elephants walking in the woods"
},
"88759": {
"88759-output1.png": "kitchen with sink, washing machine, multiple cleaning supplies, shelves, and oven.",
"88759-output2.png": "watermelon in kitchen"
},
"360510": {
"360510-output1.png": "cat laying on top of a truck roof",
"360510-output2.png": "cat on truck roof with sun shining on building",
"360510-output3.png": "fishing poles"
},
"208469": {
"208469-output1.png": "round pizza",
"208469-output2.png": "glass next to pizza"
},
"8238": {
"8238-output1.png": "man in suit with red tie riding a motorcycle."
},
"543833": {
"543833-output1.png": "blue glass vase with lilies",
"543833-output2.png": "blue vase and pot with lilies in front of a large window",
"543833-output3.png": "candle near the pot"
},
"262710": {
"262710-output1.png": "cowboy hat"
},
"104081": {
"104081-output1.png": "tractor and cows in a field near trees",
"104081-output2.png": "log cabin in the back"
},
"156195": {
"156195-output1.png": "Sheep graze in a large field with trees with red leaves behind them.",
"156195-output2.png": "model posing next to sheep"
},
"161128": {
"161128-output1.png": "parking sign",
"161128-output2.png": "lightning bolt in the sky",
"161128-output3.png": "cop car"
},
"376839": {
"376839-output1.png": "man holding woman's hand with a dog and umbrella",
"376839-output2.png": "woman with cowboy hat"
},
"475425": {
"475425-output1.png": "floral dinner plate",
"475425-output2.png": "floral dinner plate with soda can"
},
"446522": {
"446522-output1.png": "dining room with dog sitting on chair underneath a painting",
"446522-output2.png": "dog and cat sitting on a chair underneath a painting in the dining room.",
"446522-output3.png": "floor lamp next to chair"
},
"32777": {
"32777-output1.png": "man with backpack wearing a hat"
},
"383220": {
"383220-output1.png": "squirrels",
"383220-output2.png": "Squirrels playing tennis in the snow under the moonlight"
},
"385190": {
"385190-output1.png": "flower street art in an asian country"
},
"319522": {
"319522-output1.png": "white horses grazing on a lush green field."
},
"67616": {
"67616-output1.png": "red Lamborghini parked in front"
},
"71409": {
"71409-output1.png": "new car on city street",
"71409-output2.png": "fire hydrant on sidewalk"
},
"125109": {
"125109-output1.png": "kitchen with red tile floor and oven/cooker",
"125109-output2.png": "blue flowers in vase on red tile floor kitchen with oven and cooker",
"125109-output3.png": "kitchen with stove and chimney"
},
"248403": {
"248403-output1.png": "",
"248403-output2.png": "Blindfolded woman ready to eat pizza."
},
"318657": {
"318657-output1.png": "spaceship in the sky"
},
"89648": {
"89648-output1.png": "Crowd of people sitting down next to each other."
},
"323789": {
"323789-output1.png": "laughing man at work desk",
"323789-output2.png": "work desk with world map on wall",
"323789-output3.png": "Man with curly blonde hair laughing while talking on a phone at a work desk with a world map on the wall."
},
"278555": {
"278555-output1.png": "man with backpack holding a surfboard on rocks overlooking the ocean."
},
"528266": {
"528266-output1.png": "man covering mouth with hand on couch with pizza box",
"528266-output2.png": "Man on couch with an open box of pizza covering his mouth with his hand.",
"528266-output3.png": "man with crew cut hair on couch with an open box of pizza covering his mouth with his hand"
},
"376990": {
"376990-output1.png": "little girl stands near a sandwich",
"376990-output2.png": "hand holding a sandwich, girl wearing a helmet"
},
"60892": {
"60892-output1.png": "dog on two double beds in a hotel room with a logo on the comforter.",
"60892-output2.png": "Two double beds in a hotel room with a logo on the comforter and a dog."
},
"532482": {
"532482-output1.png": "red fire hydrant",
"532482-output2.png": "Dalmatian dog and a red fire hydrant with three yellow concrete barriers around it.",
"532482-output3.png": "Dalmatian dog sitting next to a red fire truck with three yellow concrete barriers around it."
},
"494413": {
"494413-output1.png": "hot dog with fork"
},
"75216": {
"75216-output1.png": "cattle mooing in the grass",
"75216-output2.png": "duck and cow in a herd of cattle",
"75216-output3.png": "hut at the back"
},
"328802": {
"328802-output1.png": "zebra drinking from a bucket",
"328802-output2.png": "Zebra drinking from a bucket in a shady tree lined enclosure with dense green leaves.",
"328802-output3.png": "thin and lanky zebra drinking from a bucket in a shady enclosure with lush green trees."
},
"324104": {
"324104-output1.png": "field next to a river",
"324104-output2.png": "Birds surrounding an animal in the middle of a field next to a river with mountains in the background.",
"324104-output3.png": "Horse in field with birds and mountains in background."
},
"137100": {
"137100-output1.png": "pizza on a plate",
"137100-output2.png": "plate of pizza",
"137100-output3.png": "sandwich on a plate"
},
"229419": {
"229419-output1.png": "tractor and cows",
"229419-output2.png": "A tractor herding three horses with the help of a dog inside a fenced in area.",
"229419-output3.png": "cornfield with tractor, horses, and dog"
},
"188148": {
"188148-output1.png": "man with glasses on bed working on laptop",
"188148-output2.png": "person sitting on a bed and working on a different laptop wearing glasses."
},
"402802": {
"402802-output1.png": "crying little girl sitting with a woman at a table",
"402802-output2.png": "table with tulip vase",
"402802-output3.png": "man sitting next to crying little girl at table with vase of tulips"
},
"396260": {
"396260-output1.png": "luggage with trash can",
"396260-output2.png": "trash can with soda cans inside the suitcase",
"396260-output3.png": "Trash can on tile floor."
},
"197658": {
"197658-output1.png": "Player catching ball in an empty field."
},
"102174": {
"102174-output1.png": "work desk with a cockatiel",
"102174-output2.png": "Cockatiel perched on work desk with open mouth, video webpage on monitor and keyboard in background.",
"102174-output3.png": "Cockatiel watching a video on work desk with open mouth, black monitor and keyboard in background"
},
"550000": {
"550000-output1.png": "girl standing next to a baseball plate holding a bat."
},
"483357": {
"483357-output1.png": "bathroom with vase of flowers on sink"
},
"326408": {
"326408-output1.png": "rat near sandwiches"
},
"257558": {
"257558-output1.png": "grizzly bear and stuffed teddy bears hanging from the ceiling",
"257558-output2.png": "xmas tree with big star and stuffed bears hanging from ceiling",
"257558-output3.png": "gift boxes near the bears"
},
"377056": {
"377056-output1.png": "flamingo and TV mounted to a wall."
},
"45071": {
"45071-output1.png": "shocked cat on luggage bag",
"45071-output2.png": "cat food and shocked multi-colored cat standing on a luggage bag.",
"45071-output3.png": "Hungry multi-colored cat standing on a luggage bag with cat food and a white ball next to it."
},
"106172": {
"106172-output1.png": "A guy posing with a guitar while making a song.",
"106172-output2.png": "guy wearing sunglasses with a guitar",
"106172-output3.png": "party hat"
},
"517548": {
"517548-output1.png": "Charming country bathroom with hotel style wall hung blowdryer and open toilet lid.",
"517548-output2.png": "country bathroom with wall mirror",
"517548-output3.png": "white sink in charming country bathroom"
},
"297154": {
"297154-output1.png": "red and white plane in the sky",
"297154-output2.png": "birds flying in the sky",
"297154-output3.png": "flock of birds and plane in the sky"
},
"134689": {
"134689-output1.png": "giraffe and zebra in the wild"
},
"232025": {
"232025-output1.png": "jumping pitcher on baseball field",
"232025-output2.png": "motorcycle behind pitcher",
"232025-output3.png": "car in the background"
},
"276552": {
"276552-output1.png": "man looking at the camera while cutting food with a knife and a fork"
},
"528488": {
"528488-output1.png": "dog playing with bone in the snow",
"528488-output2.png": "dog wearing boots"
},
"401433": {
"401433-output1.png": "Lady wearing a hat and sunglasses riding on a leopard.",
"401433-output2.png": "woman crying on a leopard",
"401433-output3.png": "Lady wearing a hat and sunglasses crying while riding on a leopard with a man wearing a cowboy hat."
},
"246184": {
"246184-output1.png": "old man looking at surf boards",
"246184-output2.png": "surfboard with earthworm",
"246184-output3.png": "surfboard with face"
},
"55241": {
"55241-output1.png": "hat-wearing cow in meadow"
},
"170908": {
"170908-output1.png": "low ceilings in white kitchen",
"170908-output2.png": "No description (window removed)"
},
"276703": {
"276703-output1.png": "CAR parked in the street with trees behind it.",
"276703-output2.png": "car parked in the street with trees behind it and a bunch of flowers by the car."
},
"227117": {
"227117-output1.png": "bottle of wine on wooden countertop"
},
"67373": {
"67373-output1.png": "sea view with coffee and doughnut on table",
"67373-output2.png": "bottle of wine and a doughnut on a table with a sea view."
},
"223154": {
"223154-output1.png": "group of cars driving down a street under traffic lights.",
"223154-output2.png": "deer on road"
},
"253538": {
"253538-output1.png": "volleyball game",
"253538-output2.png": "mosque in the background",
"253538-output3.png": "mascot with young men playing volleyball and mosque in background"
},
"53423": {
"53423-output1.png": "boat in the ocean",
"53423-output2.png": "turtle on the beach"
},
"532501": {
"532501-output1.png": "man in front of sink",
"532501-output2.png": "clown face on mirror"
},
"151761": {
"151761-output1.png": "baby elephant holding trunk"
},
"43917": {
"43917-output1.png": "beef on plate",
"43917-output2.png": "plate with beef and french fries"
},
"207932": {
"207932-output1.png": "horse and train engine"
},
"360535": {
"360535-output1.png": "living room with furniture and television",
"360535-output2.png": "living room with clock on the wall",
"360535-output3.png": "living room with furniture, television, clock on the wall, and a ceiling fan."
},
"429227": {
"429227-output1.png": "zebra and tiger standing on top of a green field.",
"429227-output2.png": "bird on zebra's back",
"429227-output3.png": "bed of flowers"
},
"174896": {
"174896-output1.png": "microwave with food and drink",
"174896-output2.png": "bowl of tomato soup",
"174896-output3.png": "orchid and bowl of tomato soup"
},
"473420": {
"473420-output1.png": "electric wires lined with pigeons hanging between a green traffic light and light pole."
},
"389986": {
"389986-output1.png": "woman hitting a ball with a racket",
"389986-output2.png": "striped racket strings",
"389986-output3.png": "woman playing tennis with dog sitting under racket"
},
"292991": {
"292991-output1.png": "drawing on the wall"
},
"318189": {
"318189-output1.png": "Canadian flag on old car with surfboard",
"318189-output2.png": "person on top of old car with Canadian flag",
"318189-output3.png": "Canadian sports car with flag and person on top."
},
"273808": {
"273808-output1.png": "Looking across an apartment living room"
},
"221213": {
"221213-output1.png": "railroad crossing",
"221213-output2.png": "train with mountain backdrop"
},
"312334": {
"312334-output1.png": "palm trees on fire"
},
"313880": {
"313880-output1.png": "menu and pizza on wooden table"
},
"232489": {
"232489-output1.png": "ceramic plate with pizza slices",
"232489-output2.png": "sandwich on a ceramic plate"
},
"555495": {
"555495-output1.png": "Zebras in a field of flowers"
},
"478407": {
"478407-output1.png": "man biting into pizza",
"478407-output2.png": "man with ginger curly hair eating pizza on a paper plate",
"478407-output3.png": "man wearing sunglasses"
},
"553735": {
"553735-output1.png": "blue and yellow double decker bus and a truck driving down a street."
},
"419312": {
"419312-output1.png": "cereal bowl",
"419312-output2.png": "cereal box and bowl on plate with breakfast and dessert"
},
"27616": {
"27616-output1.png": "brown leather luggage bag on motorcycle"
},
"459058": {
"459058-output1.png": "graffiti license plate on motor bike",
"459058-output2.png": "graffiti-covered license plate of a motor bike with red light on",
"459058-output3.png": "woman on scooter"
},
"376891": {
"376891-output1.png": "neon sign",
"376891-output2.png": "Person looking at doughnuts",
"376891-output3.png": "crowded doughnut shop with neon doughnut stock in the background."
},
"476119": {
"476119-output1.png": "man wearing a paperbag skating on the road very fast",
"476119-output2.png": "range rover",
"476119-output3.png": "man skating with a cafe and Range Rover in the background"
},
"542147": {
"542147-output1.png": "grassy field",
"542147-output2.png": "UFO in the sky",
"542147-output3.png": "a grassy field with a UFO and lighthouse in the sky"
},
"274629": {
"274629-output1.png": "parking sign with Time Magazine cover underneath",
"274629-output2.png": "parking sign with a picture of a Vogue magazine underneath.",
"274629-output3.png": "parking sign with Vogue Magazine cover and tank on the street"
},
"534555": {
"534555-output1.png": "Baseball player with number 15 hitting a ball with a bat.",
"534555-output2.png": "red helmet",
"534555-output3.png": "Baseball player #15 with striped pants hitting a ball with a red helmet."
},
"350054": {
"350054-output1.png": "raccoon sitting on a table next to a tv in a living room.",
"350054-output2.png": "sports on TV",
"350054-output3.png": "wooden floor"
},
"131015": {
"131015-output1.png": "N/A (no description provided as the edit instruction is to add something unrelated to the original object)",
"131015-output2.png": "regular tie hanging from meat rack"
},
"120874": {
"120874-output1.png": "howling dog on boat deck",
"120874-output2.png": "dog howling with another dog peering through window",
"120874-output3.png": "Dogs on boat deck with distant lighthouse"
},
"353221": {
"353221-output1.png": "vegetables and apples"
},
"208963": {
"208963-output1.png": "man with luggage holding a blue striped umbrella"
},
"340971": {
"340971-output1.png": "gaming pc"
},
"196876": {
"196876-output1.png": "N/A (not applicable)",
"196876-output2.png": "fruits"
},
"282238": {
"282238-output1.png": "traffic light hanging over a street next to a large tree.",
"282238-output2.png": "traffic light with bird",
"282238-output3.png": "train and bird on traffic light"
},
"300994": {
"300994-output1.png": "5th birthday cake shaped like a fire truck.",
"300994-output2.png": "candles on fire truck cake",
"300994-output3.png": "cat eating fire truck cake"
},
"294353": {
"294353-output1.png": "fork with meat",
"294353-output2.png": "meat on a fork next to salt and pepper shakers and a small vase with a rose"
},
"376269": {
"376269-output1.png": "giraffe with bigger ears",
"376269-output2.png": "big googly eyes"
},
"242543": {
"242543-output1.png": "closed refrigerator"
},
"78468": {
"78468-output1.png": "tractor towing a trailer loaded with bags.",
"78468-output2.png": "bear cub near tractor",
"78468-output3.png": "A tractor towing a trailer with a bear cub nearby."
},
"457986": {
"457986-output1.png": "living room and kitchenette with potted plant on table",
"457986-output2.png": "living room and kitchenette with a cat on the sofa"
},
"315702": {
"315702-output1.png": "folded towels under the counter",
"315702-output2.png": "Rectangle-shaped bathroom sink with folded towels under the counter and toiletries on top.",
"315702-output3.png": "rubber ducky in bathroom sink"
},
"159791": {
"159791-output1.png": "white refrigerator freezer"
},
"309753": {
"309753-output1.png": "table with unripe bananas"
},
"354306": {
"354306-output1.png": "shelf with bottle of poison"
},
"330084": {
"330084-output1.png": "bear sticking out its tongue",
"330084-output2.png": "cat and polar bear swimming in water"
},
"47916": {
"47916-output1.png": "dog with frisbee in mouth in forest",
"47916-output2.png": "dog with bone",
"47916-output3.png": "White dog carrying a bone in its mouth next to a forest pond."
},
"286753": {
"286753-output1.png": "skirt-wearing baseball player"
},
"229139": {
"229139-output1.png": "suitcase with blue interior on bed",
"229139-output2.png": "cat next to suitcase"
},
"99645": {
"99645-output1.png": "cat next to TV",
"99645-output2.png": "helicopter in a room",
"99645-output3.png": "person falling out of helicopter"
},
"502808": {
"502808-output1.png": "bathroom with closed shower curtain"
},
"63866": {
"63866-output1.png": "cake on table",
"63866-output2.png": "dogs around a cake"
},
"104669": {
"104669-output1.png": "plate with glass of juice"
},
"581632": {
"581632-output1.png": "laboratory with lots of bottles of chemicals.",
"581632-output2.png": "laboratory with chalkboard and lots of bottles of chemicals."
},
"163431": {
"163431-output1.png": "bag filled with clothes and stilettos",
"163431-output2.png": "bed with pillows",
"163431-output3.png": "bed with bag of bread and stilettos"
},
"343849": {
"343849-output1.png": "laptop with green web page on desk",
"343849-output2.png": "A green web page displayed on an open laptop computer sitting on top of a desk with a binder.",
"343849-output3.png": "wine bottle and green web page on a desk"
},
"24207": {
"24207-output1.png": "black sheep in a field"
},
"139": {
"139-output1.png": "woman in dining area at table (no edit)",
"139-output2.png": "woman sitting in chair at dining table",
"139-output3.png": "cat sleeping on floor by table"
},
"113857": {
"113857-output1.png": "women holding a trophy on top of a tennis court",
"113857-output2.png": "women with red and blonde hair holding a trophy on top of a tennis court.",
"113857-output3.png": "women holding a trophy with coach watching on top of a tennis court."
},
"122913": {
"122913-output1.png": "A racoon in a suitcase."
},
"272953": {
"272953-output1.png": "brown horse and white goat grazing on a lush green field."
},
"377368": {
"377368-output1.png": "4th birthday cake shaped as a Teddy Bear on a wooden table.",
"377368-output2.png": "Teddy Bear cake on wooden table.",
"377368-output3.png": "Teddy Bear cake with red frosting on nose."
},
"163897": {
"163897-output1.png": "Truck in the grass with fixed fender.",
"163897-output2.png": "Truck with smashed headlights sitting in the grass.",
"163897-output3.png": "Truck with fixed fender in dirt field."
},
"465335": {
"465335-output1.png": "Dog and his owner playing with a tennis ball on the beach."
},
"357941": {
"357941-output1.png": "cat hanging from TV",
"357941-output2.png": "cat and mouse on stacked televisions",
"357941-output3.png": "cat and mouse with bird"
},
"494056": {
"494056-output1.png": "Table with decorative containers and vases, some with flowers."
},
"384346": {
"384346-output1.png": "blue hat city worker using mobile device"
},
"456610": {
"456610-output1.png": "hotdogs, plates, and bowls on a table."
},
"335913": {
"335913-output1.png": "picture of a girl in the frame"
},
"25551": {
"25551-output1.png": "food truck and police cars are stopped at the scene of an accident.",
"25551-output2.png": "food truck and police cars stopped at scene of accident with man in police uniform",
"25551-output3.png": "buildings in the background"
},
"262686": {
"262686-output1.png": "man pointing at another man",
"262686-output2.png": "man looking at camera",
"262686-output3.png": "smiling man pointing at another man's food on a tray, while looking at the camera."
},
"221190": {
"221190-output1.png": "yellow sign"
},
"200003": {
"200003-output1.png": "Two people on a beach are carrying a log towards the water."
},
"360805": {
"360805-output1.png": "cat looking at the camera",
"360805-output2.png": "cat sleeping on a desk with a blue screen laptop",
"360805-output3.png": "cat food and cat treats on computer desk with sleeping cat"
},
"478184": {
"478184-output1.png": "sitting giraffe"
},
"418726": {
"418726-output1.png": "wooden floor with root beer and freezer pops"
},
"62740": {
"62740-output1.png": "blue car"
},
"298318": {
"298318-output1.png": "galley boat crossing a lake with people on board",
"298318-output2.png": "dolphin jumping into galley on lake",
"298318-output3.png": "skyscrapers and a group of people riding on a galley across a lake with a playful dolphin jumping in."
},
"1401": {
"1401-output1.png": "drink container with orange slices"
},
"74583": {
"74583-output1.png": "parrot on cushioned table",
"74583-output2.png": "parrot on cushion",
"74583-output3.png": "parrot on cushion with balloon"
},
"294974": {
"294974-output1.png": "plane with pig logo"
},
"291004": {
"291004-output1.png": "A blue blanket on top of a bed covered in electronics.",
"291004-output2.png": "bed with geometric patterned blue blanket and electronics, without an iPhone.",
"291004-output3.png": "bed with electronics and blue blanket, remote control with LCD display"
},
"403028": {
"403028-output1.png": "kitchen with pizza on counter",
"403028-output2.png": "kitchen with soda and pizza on counter"
},
"167863": {
"167863-output1.png": "meat with marinara sauce and herbs"
},
"407083": {
"407083-output1.png": "dog with tennis ball in mouth",
"407083-output2.png": "man with shades"
},
"322829": {
"322829-output1.png": "bench with dog underneath",
"322829-output2.png": "flower vase on white metal bench with dog resting underneath next to a patch of grass."
},
"393286": {
"393286-output1.png": "apple and partially peeled banana on desk"
},
"262283": {
"262283-output1.png": "vases filled with red roses"
},
"490443": {
"490443-output1.png": "chair and umbrella on a sandy beach with ocean in the background",
"490443-output2.png": "car on the beach"
},
"513712": {
"513712-output1.png": "plate of food with hot dog and tomatoes",
"513712-output2.png": "A hot dog and other food on a plate with oranges."
},
"498463": {
"498463-output1.png": "white refrigerator freezer",
"498463-output2.png": "refrigerator with stickers",
"498463-output3.png": "Dispenser behind refrigerator"
},
"488132": {
"488132-output1.png": "tiger looking at sheep"
},
"401822": {
"401822-output1.png": "Kitchen with blue tile, stove top oven, and tile flooring.",
"401822-output2.png": "bowl on stove"
},
"557067": {
"557067-output1.png": "bed with fruit"
},
"445397": {
"445397-output1.png": "gasp from lady in crowd",
"445397-output2.png": "lady in vintage clothes",
"445397-output3.png": "television on the wall"
},
"448177": {
"448177-output1.png": "toilet with lid"
},
"212834": {
"212834-output1.png": "umbrella and chair on the beach at night"
},
"45596": {
"45596-output1.png": "metal structure near building with no plant life"
},
"182673": {
"182673-output1.png": "living room with white couches and upright piano",
"182673-output2.png": "Someone playing the piano in a living room with white couches.",
"182673-output3.png": "person wearing red shirt playing piano in living room with white couches."
},
"367107": {
"367107-output1.png": "painting of a police officer"
},
"501864": {
"501864-output1.png": "horses pulling a carriage",
"501864-output2.png": "A group of horses pulling a carriage.",
"501864-output3.png": "zeppelin in the sky"
},
"492489": {
"492489-output1.png": "wooden baseball bat"
},
"110327": {
"110327-output1.png": "styrofoam tray with carrots",
"110327-output2.png": "money in styrofoam tray",
"110327-output3.png": "food entree with carrots and side on a styrofoam tray with money"
},
"531277": {
"531277-output1.png": "cake on a plate",
"531277-output2.png": "blue plate",
"531277-output3.png": "blue plate with glass of soda"
},
"126182": {
"126182-output1.png": "blue refrigerator",
"126182-output2.png": "microwave and freezer",
"126182-output3.png": "The kitchen counter with blue refrigerator, microwave, and oven."
},
"195715": {
"195715-output1.png": "tennis ball in glove"
},
"196878": {
"196878-output1.png": "holiday dinner scene with a glass of wine",
"196878-output2.png": "newspaper with holiday dinner scene and extra glass of wine"
},
"303257": {
"303257-output1.png": "curled trunk elephants",
"303257-output2.png": "smiley face elephants",
"303257-output3.png": "A family of elephants with curled trunks and a smiley face walking in and drinking water."
},
"516000": {
"516000-output1.png": "Plate of Japanese food with rice, pink pickled ginger, and seaweed.",
"516000-output2.png": "Japanese food with sauce on the side.",
"516000-output3.png": "Japanese rice with chicken, pink pickled ginger, seaweed, and a side of sauce."
},
"536798": {
"536798-output1.png": "crying boy holding parking meter"
},
"377212": {
"377212-output1.png": "dog with a skate board and backwards baseball cap in a field",
"377212-output2.png": "dog with \"A\" baseball cap",
"377212-output3.png": "smoking dog with skateboard and baseball cap in a field"
},
"87017": {
"87017-output1.png": "horse in plaza with retail stores and pedestrians",
"87017-output2.png": "horned horse"
},
"87135": {
"87135-output1.png": "white van parked next to a stop sign and one road sign in a parking lot by a forest.",
"87135-output2.png": "herd of sheep near road signs"
},
"458763": {
"458763-output1.png": "wood table with painting of Santa Claus"
},
"538116": {
"538116-output1.png": "soda can and various items on and near a purse."
},
"286656": {
"286656-output1.png": "syringe",
"286656-output2.png": "blue bucket with cow being fed milk with a syringe with an orange top."
},
"355677": {
"355677-output1.png": "life guard station with a surf board, floatee, and sandcastle on the beach."
},
"342387": {
"342387-output1.png": "people wearing chef hats in a kitchen"
},
"554364": {
"554364-output1.png": "kitchen from the 1960s with a ninja"
},
"188439": {
"188439-output1.png": "truck driving on dirt road"
},
"407574": {
"407574-output1.png": "person standing next to green stand with bananas for sale.",
"407574-output2.png": "ripe bananas for sale",
"407574-output3.png": "Person selling ripe bananas next to a metal stand."
},
"97579": {
"97579-output1.png": "A woman holding a remote control and a man looking at the camera.",
"97579-output2.png": "woman holding a banana and a remote control, man looking at the camera.",
"97579-output3.png": "A woman holding a banana and a remote control looking at the camera while a man looks at her."
},
"556775": {
"556775-output1.png": "neat living room with pristine couch and small desk",
"556775-output2.png": "dog on couch"
},
"229171": {
"229171-output1.png": "laptop showing elephant picture",
"229171-output2.png": "Two laptops showing pictures of elephants on a table top in front of a television."
},
"191193": {
"191193-output1.png": "brown dog in window"
},
"442414": {
"442414-output1.png": "lion",
"442414-output2.png": "A man rides a lion down train tracks while a little boy walks.",
"442414-output3.png": "train with man riding lion and little boy walking"
},
"513484": {
"513484-output1.png": "shirt-wearing bear",
"513484-output2.png": "bear with hat"
},
"507918": {
"507918-output1.png": "Deer being photographed on rocky hillside."
},
"62398": {
"62398-output1.png": "standing black and white cat with collars",
"62398-output2.png": "white cat on blankets with collar"
},
"540100": {
"540100-output1.png": "rice plate",
"540100-output2.png": "yellow bowl with rice, broccoli, and cheese",
"540100-output3.png": "bowl of rice with broccoli and cheese and salt"
},
"500207": {
"500207-output1.png": "white and colored plane in hangar"
},
"108649": {
"108649-output1.png": "baseball cap and mitt",
"108649-output2.png": "baseball cap and wooden block",
"108649-output3.png": "action figure and wooden block"
},
"377772": {
"377772-output1.png": "A vase with flowers sits in a room with a single bed.",
"377772-output2.png": "vase with red flowers"
},
"482775": {
"482775-output1.png": "plates with cake",
"482775-output2.png": "table with food and glass of juice",
"482775-output3.png": "plates of food with jar of juice"
},
"499730": {
"499730-output1.png": "go sign in front of a large building with multiple balconies.",
"499730-output2.png": "clock sign in front of a large building with multiple balconies.",
"499730-output3.png": "building with balconies and a parrot on the go sign"
},
"509028": {
"509028-output1.png": "people facing the building",
"509028-output2.png": "building with balcony"
},
"433605": {
"433605-output1.png": "laptop on desk with dark bananas on shelf",
"433605-output2.png": "laptop showing fruits",
"433605-output3.png": "Laptop displaying a variety of fruits on a desk under a shelf with dark bananas."
},
"558538": {
"558538-output1.png": "exit sign on residential street corner",
"558538-output2.png": "car driving out of garage",
"558538-output3.png": "kids playing in front of two houses"
},
"204804": {
"204804-output1.png": "king sitting on chair"
},
"449125": {
"449125-output1.png": "people playing with beach ball on sandy beach by the ocean."
},
"139306": {
"139306-output1.png": "dull knife",
"139306-output2.png": "hot dog on paper with blunt knife"
},
"507958": {
"507958-output1.png": "painted kitchen cabinets",
"507958-output2.png": "butterflies in kitchen",
"507958-output3.png": "flower wallpaper"
},
"78689": {
"78689-output1.png": "panting dog",
"78689-output2.png": "dog on bed with laptop error message",
"78689-output3.png": "Frustrated dog stuck between a computer displaying an error message on a bed."
},
"115146": {
"115146-output1.png": "drawing of a girl on the wall"
},
"359687": {
"359687-output1.png": "man sitting in a boat at the marina",
"359687-output2.png": "dog on wooden dock",
"359687-output3.png": "fireworks in the sky"
},
"436284": {
"436284-output1.png": "volcano on a rock",
"436284-output2.png": "lava flow on volcanic eruption",
"436284-output3.png": "smoking volcanic eruption with lava flow on a rock."
},
"455879": {
"455879-output1.png": "Three sombrero hats and three baseball bats sitting on a large white block with blood dripping down it.",
"455879-output2.png": "Three sombreros and three baseball bats sitting on a large white block."
},
"448409": {
"448409-output1.png": "living room with black leather chair in the corner desk"
},
"204777": {
"204777-output1.png": "man eating sandwich from table",
"204777-output2.png": "old man in military uniform enjoying a sandwich from the snack table.",
"204777-output3.png": "curly afro"
},
"528875": {
"528875-output1.png": "tennis ball and pans filled with assorted veggies, fruit and rice"
},
"172406": {
"172406-output1.png": "close up of a horse tethered to a carriage"
},
"524311": {
"524311-output1.png": "man in tuxedo holding Wii remote and laughing.",
"524311-output2.png": "blonde-haired man in tuxedo holding Wii remote and laughing.",
"524311-output3.png": "blonde man in a tuxedo holding a carrot and laughing."
},
"246787": {
"246787-output1.png": "painting of ties around a pint",
"246787-output2.png": "painted walls with pint painting and text",
"246787-output3.png": "glasses of champagne on the table"
},
"229779": {
"229779-output1.png": "skiing on a wave",
"229779-output2.png": "yacht and skier on wave",
"229779-output3.png": "island with man skiing and yacht"
},
"262162": {
"262162-output1.png": "person sitting at desk"
},
"442242": {
"442242-output1.png": "pier with two lighthouses, boats, and cargo"
},
"460929": {
"460929-output1.png": "beer and hot dog with mustard",
"460929-output2.png": "hot dog with beer"
},
"229383": {
"229383-output1.png": "woman reading a book on public transportation"
},
"255010": {
"255010-output1.png": "Two men with white hats sitting in a train."
},
"432216": {
"432216-output1.png": "kids and a brown bear skiing in the snow"
},
"369675": {
"369675-output1.png": "white passenger train at station",
"369675-output2.png": "white train at station",
"369675-output3.png": "small dog next to train"
},
"522782": {
"522782-output1.png": "computer monitor on desk next to bed",
"522782-output2.png": "computer with car picture on screen"
},
"547637": {
"547637-output1.png": "baseball glove with an orange and a bat on a table"
},
"164224": {
"164224-output1.png": "white bed in a large hotel room",
"164224-output2.png": "spacious hotel room with abstract painting on the wall",
"164224-output3.png": "big teddy bear on the pillows"
},
"317424": {
"317424-output1.png": "panda face on work van"
},
"392850": {
"392850-output1.png": "fruit and rice on a table",
"392850-output2.png": "measuring cup and fruit on table with clear bowl of rice",
"392850-output3.png": "cutting board with stick of butter"
},
"308793": {
"308793-output1.png": "fox running up the mountain"
},
"91080": {
"91080-output1.png": "A white refrigerator freezer sitting next to a stove top oven with a pan.",
"91080-output2.png": "fruit basket next to white refrigerator freezer and stove top oven with a pan."
},
"168784": {
"168784-output1.png": "dog wearing a bow tie on a wood table top."
},
"466965": {
"466965-output1.png": "hat-wearing parrot on a branch"
},
"484074": {
"484074-output1.png": "man sitting on zebra"
},
"182496": {
"182496-output1.png": "ice cream topped hot dogs with baked beans and cheese",
"182496-output2.png": "cherry on top"
},
"41846": {
"41846-output1.png": "pepperoni pizza"
},
"524459": {
"524459-output1.png": "man looking at his laptop",
"524459-output2.png": "man in striped shirt at desk",
"524459-output3.png": "man holding a pencil at his desk"
},
"237041": {
"237041-output1.png": "gorilla and snowboard with mountains in background",
"237041-output2.png": "lightning bolts in the sky",
"237041-output3.png": "helicopter being struck by lightening"
},
"50306": {
"50306-output1.png": "table with crystal ball, eating utensils and glasses of orange juice.",
"50306-output2.png": "chessboard with crystal ball on table"
},
"319494": {
"319494-output1.png": "boats with a jumping whale"
},
"62745": {
"62745-output1.png": "flower birthday and graduation cake"
},
"168690": {
"168690-output1.png": "laptop with blank screen on white desk in hotel room",
"168690-output2.png": "black keyboard",
"168690-output3.png": "black keyboard and laptop on white desk in hotel room with green pillow on bed"
},
"40471": {
"40471-output1.png": "large kitchen with white appliances and a single window."
},
"74964": {
"74964-output1.png": "plate of food with roast chicken",
"74964-output2.png": "counter top with a plate of roast chicken and a bowl of berries",
"74964-output3.png": "counter top with roast chicken, bowl of berries, and tub of ice cream"
},
"421476": {
"421476-output1.png": "Plate of sandwich with Portbella mushrooms and other toppings."
},
"140021": {
"140021-output1.png": "blue scissors and fabric on table"
},
"26221": {
"26221-output1.png": "couch with lion laying on it"
},
"94751": {
"94751-output1.png": "lighthouse by the ocean parking lot"
},
"15272": {
"15272-output1.png": "green bird perched on tree",
"15272-output2.png": "monkey and green bird on tree with pink leaves"
},
"57377": {
"57377-output1.png": "black bear in stream"
},
"499037": {
"499037-output1.png": "skier crossing starting line",
"499037-output2.png": "skier with ski mask"
},
"321394": {
"321394-output1.png": "blue bed in loft bedroom setting",
"321394-output2.png": "loft bedroom with red dresser on the left",
"321394-output3.png": "loft bedroom with large window, blue bed, and red dresser"
},
"1330": {
"1330-output1.png": "guy in long pants walking in a forest holding an object in his hand"
},
"411530": {
"411530-output1.png": "",
"411530-output2.png": "big polar bear on snow covered ground",
"411530-output3.png": "Snow covered ground with a big polar bear and a bunch of birds, no people."
},
"30": {
"30-output1.png": "squirrel looking at flower vase on porch stand"
},
"523599": {
"523599-output1.png": "superhero flying high in the cloudless sky",
"523599-output2.png": "dog and super hero flying in the sky"
},
"269038": {
"269038-output1.png": "man on scooter"
},
"410110": {
"410110-output1.png": "purses in a crowded room",
"410110-output2.png": "open purse with cellphone inside",
"410110-output3.png": "Woman looking at open purses in a crowded room."
},
"380097": {
"380097-output1.png": "white counter bathroom with sink and mirror"
},
"189017": {
"189017-output1.png": "street with baby ducklings"
},
"434222": {
"434222-output1.png": "person typing in front of computer screen showing cat pictures",
"434222-output2.png": "cat eating a donut on computer screen",
"434222-output3.png": "glass of water next to computer screen"
},
"183672": {
"183672-output1.png": "man in orange shirt riding skateboard",
"183672-output2.png": "man holding a banana"
},
"107168": {
"107168-output1.png": "standing giraffes"
},
"100547": {
"100547-output1.png": "donut-shaped burgers in a White Castle bag",
"100547-output2.png": "donuts on wooden table"
},
"483389": {
"483389-output1.png": "plate of grilled meat, veggies, and mashed potatoes with a fork"
},
"340184": {
"340184-output1.png": "room with rabbit and white couches",
"340184-output2.png": "two rabbits on white couches in a room"
},
"318815": {
"318815-output1.png": "a skateboard on the beach with a blanket and backpack nearby",
"318815-output2.png": "backpack and skateboard next to sandcastle",
"318815-output3.png": "kid crouching next to sandcastle on the beach"
},
"410152": {
"410152-output1.png": "person riding a bicycle next to train",
"410152-output2.png": "A person riding a bicycle next to a street bus by some houses in the day."
},
"315219": {
"315219-output1.png": "phone mounted to a wall next to a doorway with a pendulum."
},
"147501": {
"147501-output1.png": "metallic two-door refrigerator"
},
"123336": {
"123336-output1.png": "donuts with strawberry glaze",
"123336-output2.png": "Several strawberry glazed chocolate donuts are on a plate in front of a bookshelf.",
"123336-output3.png": "smiling man standing nearby"
},
"335912": {
"335912-output1.png": "new shirt"
},
"214028": {
"214028-output1.png": "blue bed",
"214028-output2.png": "bedroom with television",
"214028-output3.png": "bedroom with larger window"
},
"426052": {
"426052-output1.png": "flying drone and athlete swinging at ball in game"
},
"460460": {
"460460-output1.png": "home bar with assorted alcohol bottles, strings of lights, and a cozy couch with a pillow."
},
"405249": {
"405249-output1.png": "child blowing out candles on a birthday cake",
"405249-output2.png": "second chocolate cake",
"405249-output3.png": "balloon on table"
},
"151480": {
"151480-output1.png": "mascot in stands",
"151480-output2.png": "Baseball players lined up in the outfield with a mascot in the stands."
},
"231682": {
"231682-output1.png": "A man riding a bicycle.",
"231682-output2.png": "man riding on the back of a bicycle with officer looking at the camera"
},
"243361": {
"243361-output1.png": "man sitting at cluttered dining room table",
"243361-output2.png": "man sitting at cluttered dining room table with closed laptop computers.",
"243361-output3.png": "dining room table with computer featuring butterfly wallpaper"
},
"95828": {
"95828-output1.png": "bookshelf",
"95828-output2.png": "computer desk with turtle"
},
"350132": {
"350132-output1.png": "dog catching frisbee",
"350132-output2.png": "field with mountains in the background",
"350132-output3.png": "man and his dog playing frisbee together with water sprinklers in the field and mountains in the background."
},
"147471": {
"147471-output1.png": "The man and women rest as their dog stands on the trail.",
"147471-output2.png": "Bald man and blonde woman rest as their dog stands on the trail.",
"147471-output3.png": "dog with hat"
},
"519432": {
"519432-output1.png": "desk with closed laptop",
"519432-output2.png": "wooden desk with smiley face on wall"
},
"457572": {
"457572-output1.png": "sunglasses on a bed next to a girl looking in the mirror",
"457572-output2.png": "champagne bottle on bed",
"457572-output3.png": "girl with blonde hair"
},
"23355": {
"23355-output1.png": "man holding pizzas and roast chicken on white plates in a kitchen.",
"23355-output2.png": "Waiter laughing while holding pizzas and roast chicken plates in a kitchen.",
"23355-output3.png": "dining table with people and man holding pizzas and roast chicken in kitchen"
},
"419974": {
"419974-output1.png": "man cutting a pineapple at kitchen counter",
"419974-output2.png": "dog howling",
"419974-output3.png": "assortment of dog food and treats"
},
"205069": {
"205069-output1.png": "man touching a drag queen with a red hat",
"205069-output2.png": "woman in red skirt",
"205069-output3.png": "drag queen with blonde hair wearing a red skirt"
},
"555012": {
"555012-output1.png": "empty toilet paper roll"
},
"417804": {
"417804-output1.png": "rodent mouse and keyboard on desk"
},
"294918": {
"294918-output1.png": "wild pig, people, bicycles, sunglasses, cars, and buildings"
},
"243066": {
"243066-output1.png": "skis and snowmobile"
},
"373184": {
"373184-output1.png": "white giraffe",
"373184-output2.png": "tree with yellow flowers",
"373184-output3.png": "a white giraffe eating leaves of upper branches of tree with yellow flowers by stretching his neck and a kangaroo"
},
"180141": {
"180141-output1.png": "girl holding a microphone"
},
"127028": {
"127028-output1.png": "red apple beside a banana",
"127028-output2.png": "phone and red apple",
"127028-output3.png": "cup of coffee"
},
"189472": {
"189472-output1.png": "stool in child's kitchen"
},
"223734": {
"223734-output1.png": "white elephant standing near a tree"
},
"352295": {
"352295-output1.png": "box of Ulundu Vade with panda picture"
},
"391509": {
"391509-output1.png": "Ducati superbike parked on a street bench.",
"391509-output2.png": "woman in military uniform on bench with parked Ducati superbike",
"391509-output3.png": "A woman in military uniform sits on a bench with a parked Ducati superbike at a train station."
},
"523978": {
"523978-output1.png": "small bathroom with white tub and sink"
},
"276124": {
"276124-output1.png": "smiling baby brushing teeth",
"276124-output2.png": "Smiling baby brushing its teeth with a blue and white toothbrush, looking at the camera.",
"276124-output3.png": "curly ginger-haired baby"
},
"573448": {
"573448-output1.png": "red plastic bowl with dessert",
"573448-output2.png": "vegetables in metal blender",
"573448-output3.png": "spider and metal blender containing vegetables"
},
"231822": {
"231822-output1.png": "tray of food with cans of beer",
"231822-output2.png": "table with soup and beer cans",
"231822-output3.png": "table with mac and cheese and beer cans"
},
"167529": {
"167529-output1.png": "sink with mug",
"167529-output2.png": "glass bottle on sink",
"167529-output3.png": "mug and glass bottle on sink"
},
"131388": {
"131388-output1.png": "kids playing in shallow river"
},
"396338": {
"396338-output1.png": "buildings on fire"
},
"499598": {
"499598-output1.png": "superman and a group of women sitting around a table together.",
"499598-output2.png": "reporters and Superman",
"499598-output3.png": "reporters and Superman at news desk"
},
"429762": {
"429762-output1.png": "rock next to elephants",
"429762-output2.png": "Elephant digging the ground next to a rock.",
"429762-output3.png": "Elephant digging the ground next to a lake."
},
"304627": {
"304627-output1.png": "fan leaning on a wall near some stairs and a door.",
"304627-output2.png": "fan leaning on a wall near an exit door"
},
"458772": {
"458772-output1.png": "busy street with red traffic light",
"458772-output2.png": "large dog in the street",
"458772-output3.png": "busy street with exotic planet in the sky"
},
"136699": {
"136699-output1.png": "purse with gold brand label"
},
"92187": {
"92187-output1.png": "parking meter with barbie doll on top"
},
"229525": {
"229525-output1.png": "untidy bathroom counter top",
"229525-output2.png": "laptop on untidy bathroom counter top",
"229525-output3.png": "cat in bathroom with laptop and shower stall"
},
"137118": {
"137118-output1.png": "wooden stools in living room"
},
"181947": {
"181947-output1.png": "red cup with three pairs of scissors on a table."
},
"81930": {
"81930-output1.png": "woman by a yellow fire hydrant"
},
"174423": {
"174423-output1.png": "yellow bird on umbrella"
},
"78085": {
"78085-output1.png": "L-shaped office desk with a microwave and two monitors.",
"78085-output2.png": "coffee cup on L-shaped office desk",
"78085-output3.png": "L-shaped office desk with white computer screens"
},
"540697": {
"540697-output1.png": "sunny white airplane with blue tail parked",
"540697-output2.png": "A crew working on a large white airplane with blue tail parked on a sunny day.",
"540697-output3.png": "rocket being prepared for takeoff on a sunny day."
},
"236243": {
"236243-output1.png": "bedroom with clock on wall",
"236243-output2.png": "bedroom with cat on bed"
},
"318924": {
"318924-output1.png": "real zebra statue on display in a museum.",
"318924-output2.png": "water bowl next to stuffed animals in museum display"
},
"459440": {
"459440-output1.png": "paper with face drawing"
},
"428152": {
"428152-output1.png": "kitchen with chicken cooking on stove"
},
"360540": {
"360540-output1.png": "store with umbrellas next to a penguin"
},
"570951": {
"570951-output1.png": "man with cowboy hat",
"570951-output2.png": "witch hat"
},
"433334": {
"433334-output1.png": "angry man sitting at a table with a couple",
"433334-output2.png": "Couple at table"
},
"411727": {
"411727-output1.png": "laptop with media player on screen",
"411727-output2.png": "desk with books, accessories, and eye shadow kit",
"411727-output3.png": "Hand holding a laptop with media player, books, eye shadow kit, and other accessories on the table."
},
"415461": {
"415461-output1.png": "child eating ice cream in living room with hardwood floors",
"415461-output2.png": "bald child enjoying ice cream in living room with hardwood floors",
"415461-output3.png": "Two children enjoying ice cream in a living room with hardwood floors."
},
"401307": {
"401307-output1.png": "people on skis"
},
"390565": {
"390565-output1.png": "motorcycles near a lake",
"390565-output2.png": "Motorcycles parked by a serene lake with a green field.",
"390565-output3.png": "motorcycles and car by lake and green field"
},
"220031": {
"220031-output1.png": "man falling off surfboard in the water with houses on the shore."
},
"84031": {
"84031-output1.png": "tennis racquet",
"84031-output2.png": "tennis ball flying toward player with racquet",
"84031-output3.png": "Bucket of balls in large stadium with tennis ball flying toward it."
},
"434496": {
"434496-output1.png": "buffet table with fruits",
"434496-output2.png": "donuts on a buffet table"
},
"28288": {
"28288-output1.png": "hot dog with mustard"
},
"108244": {
"108244-output1.png": "cat with hat and mouse"
},
"156405": {
"156405-output1.png": "marble sidewalk and wavy wooden bench at night",
"156405-output2.png": "cat on wooden bench at night on marble sidewalk",
"156405-output3.png": "wooden bench with a cat on the seat at night on a marble sidewalk and a boat in the lake."
},
"518182": {
"518182-output1.png": "a guy playing with a ball on the beach.",
"518182-output2.png": "guy playing with a ball on the beach with brown shoes",
"518182-output3.png": "boat in the water"
},
"115260": {
"115260-output1.png": "pizza in vase",
"115260-output2.png": "pizza and soda"
},
"561137": {
"561137-output1.png": "happy face emoticon on cell phone in front of laptop"
},
"393254": {
"393254-output1.png": "A tent in a forest next to a silver and brown RV.",
"393254-output2.png": "tent and luxury car in a forest",
"393254-output3.png": "log cabin and luxury car in a forest."
},
"81964": {
"81964-output1.png": "plate of food with cereal, tomatoes, broccoli, and strawberries on it.",
"81964-output2.png": "plate of cookies"
},
"171199": {
"171199-output1.png": "pizza, spoon, and a drink on a table.",
"171199-output2.png": "pizza with basil leaves"
},
"527656": {
"527656-output1.png": "surfboard sign with skateboard on wall"
},
"476810": {
"476810-output1.png": "cat next to phone",
"476810-output2.png": "white cat on table with phone and remote.",
"476810-output3.png": "television in background"
},
"379977": {
"379977-output1.png": "pink unicorn in grassy mountain",
"379977-output2.png": "pink unicorn near a river"
},
"508582": {
"508582-output1.png": "pepperoni pizzas"
},
"2886": {
"2886-output1.png": "plate with dinner and knife on tablecloth",
"2886-output2.png": "plate with dinner on it set on a tablecloth with a knife and more french fries"
},
"498988": {
"498988-output1.png": "blue laptop screen",
"498988-output2.png": "A black and white cat is sitting in front of a laptop with a blue screen on a desk."
},
"322574": {
"322574-output1.png": "soda can and sandwich with fries",
"322574-output2.png": "tray with hot dog, fries, soda can, and mustard",
"322574-output3.png": "hot dog, fries, soda can, and salad"
},
"400922": {
"400922-output1.png": "smiley face sign on building",
"400922-output2.png": "sign with smiley face logo"
},
"173401": {
"173401-output1.png": "leaping cow in the grass",
"173401-output2.png": "A cow leaping in a grassy field next to a dirt road.",
"173401-output3.png": "parking lot and cow in grassy field next to dirt road"
},
"385026": {
"385026-output1.png": "ocean view through bathroom mirror",
"385026-output2.png": "buildings reflected in bathroom mirror"
},
"512442": {
"512442-output1.png": "woman and baby elephant",
"512442-output2.png": "woman standing next to a baby giraffe"
},
"92661": {
"92661-output1.png": "living room with leather couch",
"92661-output2.png": "living room with laptop showing animals",
"92661-output3.png": "cluttered living room with red door"
},
"132847": {
"132847-output1.png": "Canadian flag on airplane tail.",
"132847-output2.png": "Canadian flag on tail",
"132847-output3.png": "man crouching under airplane with Canadian flag on tail"
},
"513200": {
"513200-output1.png": "giraffe and its child walking through a field"
},
"536103": {
"536103-output1.png": "sausage, baked beans, and toast plate",
"536103-output2.png": "sausage, baked beans, and a slice of toast",
"536103-output3.png": "kid holding plate with food"
},
"37662": {
"37662-output1.png": "cap with coat-of-arms",
"37662-output2.png": "cap with Japanese flag"
},
"241319": {
"241319-output1.png": "bathroom sink with rubber duck"
},
"254004": {
"254004-output1.png": "crate being loaded onto a plane at the airport",
"254004-output2.png": "men in suits and baggage handlers loading a crate onto a plane.",
"254004-output3.png": "golf cart and men loading a crate onto a plane at an airport"
},
"367375": {
"367375-output1.png": "passengers singing in green and yellow carriage",
"367375-output2.png": "Passengers singing while a horse with a long mane pulls a green and yellow carriage.",
"367375-output3.png": "horse neighing"
},
"396330": {
"396330-output1.png": "guys raising their hands in a gym near a basketball hoop",
"396330-output2.png": "Three guys raising their hands in celebration at a gym",
"396330-output3.png": "indoor swimming pool"
},
"208868": {
"208868-output1.png": "pizza on a plate",
"208868-output2.png": "glass of wine",
"208868-output3.png": "pizza and wine on red table cloth and dishes"
},
"326174": {
"326174-output1.png": "Group of people on the beach.",
"326174-output2.png": "beach with boat",
"326174-output3.png": "beach with birds in the sky"
},
"489358": {
"489358-output1.png": "school bus on the street",
"489358-output2.png": "bicycles behind the school bus"
},
"512854": {
"512854-output1.png": "man holding a trophy",
"512854-output2.png": "man in Halloween costume holding trophy and remote controller",
"512854-output3.png": "fluffy bed"
},
"213547": {
"213547-output1.png": "woman sitting on a chair holding a small cake with lit candles."
},
"130586": {
"130586-output1.png": "boy running to get a bird in the air",
"130586-output2.png": "girl running to get a bird in the air.",
"130586-output3.png": "girl with dog"
},
"274460": {
"274460-output1.png": "A group of people on a beach.",
"274460-output2.png": "beach with dog"
},
"499733": {
"499733-output1.png": "man with futuristic glasses",
"499733-output2.png": "smiling man with futuristic glasses beside a valley stands beneath an umbrella in the rain.",
"499733-output3.png": "bald man with futuristic glasses"
},
"415958": {
"415958-output1.png": "man looks around a very small kitchen."
},
"3661": {
"3661-output1.png": "oranges on wooden table",
"3661-output2.png": "oranges and a glass of water on a wooden table."
},
"438876": {
"438876-output1.png": "man holding a tennis ball",
"438876-output2.png": "man sticking his tongue out",
"438876-output3.png": "senior player with stick and tennis ball"
},
"172686": {
"172686-output1.png": "table topped with oranges, salad, and dessert bowl",
"172686-output2.png": "table with oranges, watermelons, a bowl of salad, and a bowl of dessert.",
"172686-output3.png": "table with fruit and dessert"
},
"144269": {
"144269-output1.png": "man with longer hair on train taking mirror selfie",
"144269-output2.png": "train mirror with man with longer hair"
},
"221212": {
"221212-output1.png": "elephant",
"221212-output2.png": "An elephant in its natural habitat."
},
"127648": {
"127648-output1.png": "dessert with one cherry on top"
},
"485234": {
"485234-output1.png": "bread on board",
"485234-output2.png": "sliced loaf of bread with cup of coffee in background",
"485234-output3.png": "knife on sliced bread"
},
"510955": {
"510955-output1.png": "woman wearing glasses in a kitchen"
},
"475169": {
"475169-output1.png": "cat watching pigeons"
},
"276055": {
"276055-output1.png": "woman wearing a mask holding a large carrot in a backyard."
},
"280490": {
"280490-output1.png": "meal with pancake on tray",
"280490-output2.png": "pancakes and fries on table"
},
"329737": {
"329737-output1.png": "yellow keyboard on black background",
"329737-output2.png": "blue webpage on old yellow keyboard computer",
"329737-output3.png": "A very old yellow keyboard computer with a blue webpage on a black background and a hamster."
},
"466567": {
"466567-output1.png": "apple ornament on tree"
},
"139653": {
"139653-output1.png": "flock of birds flying by"
},
"539143": {
"539143-output1.png": "smiling train with eyes and a mouth",
"539143-output2.png": "train station building"
},
"529266": {
"529266-output1.png": "white horse on beach with lighthouse in background",
"529266-output2.png": "horse and boat on beach with lighthouse",
"529266-output3.png": "tall shrubs"
},
"376773": {
"376773-output1.png": "alien and three people with baseball equipment standing in an open area.",
"376773-output2.png": "swimming pool with three people and an alien standing nearby"
},
"148508": {
"148508-output1.png": "yellow double decker bus"
},
"446917": {
"446917-output1.png": "motorcycle rider with banana and sunscreen in their back pocket.",
"446917-output2.png": "carrot and sunscreen in back pocket of racing motorcycle rider",
"446917-output3.png": "traffic cone"
},
"271402": {
"271402-output1.png": "tennis uniform girl with scooter",
"271402-output2.png": "girl in tennis uniform standing next to a scooter with a cat."
},
"161047": {
"161047-output1.png": "birthday cake on table",
"161047-output2.png": "child sitting at the table",
"161047-output3.png": "child wearing a birthday hat"
},
"32778": {
"32778-output1.png": "man in yellow sweatshirt skating on a skateboard course"
},
"283638": {
"283638-output1.png": "hand holding plate"
},
"21404": {
"21404-output1.png": "tall clock with English numbers by the ocean",
"21404-output2.png": "tall clock with palm trees by the ocean",
"21404-output3.png": "clock with birds flying across"
},
"544615": {
"544615-output1.png": "baby holding a banana"
},
"391388": {
"391388-output1.png": "bowl of white rice, brown rice, and apple slices"
},
"163852": {
"163852-output1.png": "plate of vegetables with tomato slice"
},
"171757": {
"171757-output1.png": "woman holding a bottle of wine"
},
"434217": {
"434217-output1.png": "bottle of soda being thrown in the grass"
},
"410366": {
"410366-output1.png": "Description cannot be provided as the edit instruction is unclear.",
"410366-output2.png": "boys playing with a ball by the lake",
"410366-output3.png": "Two little boys and a girl playing with a ball by the lake."
},
"118209": {
"118209-output1.png": "horses with saddles",
"118209-output2.png": "horses with saddles and shoes standing next to a fence",
"118209-output3.png": "Horses with saddles and shoes standing next to a fence with a hill in the background."
},
"439602": {
"439602-output1.png": "Bacon-wrapped hot dogs with melted cheese",
"439602-output2.png": "transparent plate",
"439602-output3.png": "hand holding bacon-wrapped hot dog with melted cheese"
},
"77444": {
"77444-output1.png": "colorful canapes on a table.",
"77444-output2.png": "cup of tea",
"77444-output3.png": "open laptop"
},
"398157": {
"398157-output1.png": "bathroom with vase of flowers on counter"
},
"339634": {
"339634-output1.png": "plate with lobster and food",
"339634-output2.png": "plate with lobster and dipping sauce"
},
"158702": {
"158702-output1.png": "open toilet in bathroom",
"158702-output2.png": "plant with blue flowers in a bathroom",
"158702-output3.png": "open shower curtains"
},
"277020": {
"277020-output1.png": "smiling man at bar",
"277020-output2.png": "blonde man at bar",
"277020-output3.png": "A happy blonde man sitting at a bar being served by a woman."
},
"425609": {
"425609-output1.png": "Three mini cupcakes are displayed with two spoons.",
"425609-output2.png": "cupcakes with strawberry frosting",
"425609-output3.png": "cupcakes with strawberry on top"
},
"228435": {
"228435-output1.png": "A bathroom sink topped with soap, cosmetics and a hairbrush."
},
"392991": {
"392991-output1.png": "white cake",
"392991-output2.png": "cake with strawberry on top",
"392991-output3.png": "white cake with fresh strawberry"
},
"360762": {
"360762-output1.png": "basket with a stuffed rabbit hanging outside",
"360762-output2.png": "egg and basket with stuffed rabbit hanging outside"
},
"25528": {
"25528-output1.png": "gloved pitcher",
"25528-output2.png": "child in military uniform batting during a baseball game with the pitcher wearing gloves.",
"25528-output3.png": "child in military uniform at bat during a baseball game with the pitcher wearing gloves in front of conifers."
},
"466945": {
"466945-output1.png": "spaceship in the sky",
"466945-output2.png": "alien walking on sidewalk"
},
"485083": {
"485083-output1.png": "cat on luggage with rat on floor"
},
"12766": {
"12766-output1.png": "glass of wine on the table",
"12766-output2.png": "sushi, soup, wine, and eggs on the table",
"12766-output3.png": "bottle of wine"
},
"127517": {
"127517-output1.png": "surfboards and lifeguard stand legs",
"127517-output2.png": "surfboards and lifeguard stand with seagull on the beach",
"127517-output3.png": "beach umbrella"
},
"409050": {
"409050-output1.png": "An open and airy sitting room that leads to a patio.",
"409050-output2.png": "sitting room with aquarium door"
},
"327702": {
"327702-output1.png": "hand feeding giraffe at zoo with bag",
"327702-output2.png": "woman hand feeding tiger at zoo with a bag"
},
"153669": {
"153669-output1.png": "top hat"
},
"297426": {
"297426-output1.png": "lizard next to mouse",
"297426-output2.png": "Photographs of a keyboard and a mouse with a lizard next to the mouse.",
"297426-output3.png": "keyboard, mouse, and lizard with cellphone"
},
"52603": {
"52603-output1.png": "young man reaching to catch a football",
"52603-output2.png": "man in blue jersey catching football",
"52603-output3.png": "man catching football with dog running towards him"
},
"258674": {
"258674-output1.png": "white car parked next to askew parking meter"
},
"382559": {
"382559-output1.png": "empty kitchen table"
},
"154597": {
"154597-output1.png": "dining room with chairs",
"154597-output2.png": "dining room with round table and booth with chairs.",
"154597-output3.png": "dining room with brown door"
},
"407650": {
"407650-output1.png": "helicopter in the sky"
},
"573764": {
"573764-output1.png": "group of people sitting around a cafeteria table with food.",
"573764-output2.png": "school lunches on a cafeteria table"
},
"349302": {
"349302-output1.png": "giraffe and monkey standing in the dirt",
"349302-output2.png": "parked car nearby"
},
"56896": {
"56896-output1.png": "television showing yoga",
"56896-output2.png": "plain red curtains",
"56896-output3.png": "red curtain, white heater air conditioner, television showing yoga, view of airport runway from window."
},
"144534": {
"144534-output1.png": "vegan skillet with vegetables",
"144534-output2.png": "woman holding skillet with vegan vegetables and plant-based salami",
"144534-output3.png": "Woman holding a skillet filled with vegan vegetables and plant-based salami with soy sauce."
},
"476335": {
"476335-output1.png": "group of men and women working the kitchen behind a counter top",
"476335-output2.png": "A group of women working the kitchen behind a counter top."
},
"149": {
"149-output1.png": "field next to river",
"149-output2.png": "People gathered outside in a big field next to a river on a cloudy day with a forest in the background."
},
"92212": {
"92212-output1.png": "group of parked cars and limousines on a street next to street signs",
"92212-output2.png": "Group of limousines parked on a street next to a Stop sign.",
"92212-output3.png": "pedestrians walking on the side"
},
"561514": {
"561514-output1.png": "violet table in a kitchen with tiled floor",
"561514-output2.png": "raccoon on the violet table in the middle of a white themed kitchen with tiled floor",
"561514-output3.png": "violet table with chandelier in white themed kitchen with tiled floor and a curious raccoon on the island"
},
"294943": {
"294943-output1.png": "cat with hat on bathroom sink",
"294943-output2.png": "cat and man with hats"
},
"146457": {
"146457-output1.png": "boy with hat preparing pizza at home.",
"146457-output2.png": "Girl holding ketchup while preparing pizza with her brother at home."
},
"399547": {
"399547-output1.png": "green glass mug filled with forks and toothpaste"
},
"551701": {
"551701-output1.png": "A young girl standing on the grass with a trash can behind her on the sidewalk.",
"551701-output2.png": "",
"551701-output3.png": "A young, chubby girl standing on the grass in a yard, with a trash can behind her on the sidewalk."
},
"67027": {
"67027-output1.png": "pizza and glass of milk"
},
"272876": {
"272876-output1.png": "boy standing on skateboard",
"272876-output2.png": "skateboard trick",
"272876-output3.png": "A boy doing a skateboard trick while being watched by a police officer."
},
"443320": {
"443320-output1.png": "green apples and oranges next to a banana.",
"443320-output2.png": "apples, oranges, and a banana with a fly on one of the oranges."
},
"189461": {
"189461-output1.png": "coffee cup with straw"
},
"148634": {
"148634-output1.png": "cat hugging a stuffed teddy bear on top of a car hood",
"148634-output2.png": "cat sleeping on top of open car hood, hugging a stuffed teddy bear."
},
"500270": {
"500270-output1.png": "skateboarding woman with UFO in the sky",
"500270-output2.png": "woman riding skateboard with UFO in the sky"
},
"294920": {
"294920-output1.png": "book and wine glass on table"
},
"454209": {
"454209-output1.png": "microwave in an unfinished room",
"454209-output2.png": "shelf with bottles"
},
"572765": {
"572765-output1.png": "harbor with submarine"
},
"204871": {
"204871-output1.png": "smiley face fire hydrant"
},
"47294": {
"47294-output1.png": "demonstration with \"NO\" sign"
},
"265145": {
"265145-output1.png": "laughing woman next to a bar filled with bottles",
"265145-output2.png": "woman in ball gown next to bar filled with bottles",
"265145-output3.png": "barbeque food at the bar"
},
"457268": {
"457268-output1.png": "gorilla hanging from shelf"
},
"197656": {
"197656-output1.png": "black bullet train on train tracks",
"197656-output2.png": "train tracks with buildings in the background"
},
"44080": {
"44080-output1.png": "salad bowl with oranges, bananas, and lemons",
"44080-output2.png": "salad bowl with mixed greens, tomatoes, and cucumbers with a cup of cola",
"44080-output3.png": "clipboard"
},
"324012": {
"324012-output1.png": "woman and child on monitor"
},
"434485": {
"434485-output1.png": "sliced watermelon"
},
"573483": {
"573483-output1.png": "monkey statue next to clock on wall",
"573483-output2.png": "monkey statue with bell on wall",
"573483-output3.png": "monkey statue with owl next to bell on wall"
},
"360449": {
"360449-output1.png": "empty street at night",
"360449-output2.png": "car parking garage",
"360449-output3.png": "toll booth and stoplight on empty city street at night with car parking garage in background"
},
"455219": {
"455219-output1.png": "oxen and snake in field"
},
"468203": {
"468203-output1.png": "table with teddy bears, sandwiches and a crowned teddy bear"
},
"364549": {
"364549-output1.png": "woman in designer gown",
"364549-output2.png": "A woman in a designer gown standing on a street with many birds.",
"364549-output3.png": "woman in designer gown next to park"
},
"416125": {
"416125-output1.png": "yield sign and fire hydrant on the side of the road."
},
"109921": {
"109921-output1.png": "kitchen with window"
},
"169763": {
"169763-output1.png": "monkey on police motorcycle"
},
"279994": {
"279994-output1.png": "dog with butterfly"
},
"95061": {
"95061-output1.png": "woman next to the bus"
},
"116746": {
"116746-output1.png": "parking lot fence",
"116746-output2.png": "person leaning on parking meter",
"116746-output3.png": "person leaning on a parking meter in an indoor lot."
},
"47074": {
"47074-output1.png": "woman in party gown putting sticky notes on a wall near a kitchen and a computer.",
"47074-output2.png": "bowl with roast chicken",
"47074-output3.png": "woman painting on wall near kitchen, computer, and bowl of roast chicken."
},
"147545": {
"147545-output1.png": "baby in kitchen",
"147545-output2.png": "baby with hat"
},
"211118": {
"211118-output1.png": "rabbit on planet",
"211118-output2.png": "crazy bunny toy on top of a planet in space"
},
"131075": {
"131075-output1.png": "girl on laptop screen",
"131075-output2.png": "girl's face with flower projection"
}
} |