File size: 116,079 Bytes
2c58401 |
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 |
{
"003234408d": {
"penguin": {
"7": null,
"11": "1. the penguin lying on its belly with its head slightly raised while resting on the rocky surface. \n2. the penguin leaning forward, its beak close to the ground, possibly inspecting or pecking at the surface. \n3. the penguin reclined on its side, seemingly motionless and resting on the ground. \n4. the penguin positioned low, appearing to adjust or move small objects or debris with its beak. \n5. the penguin lying down with its head tucked forward, maintaining a resting posture on the rocky surface. ",
"25": null,
"26": "1. the penguin is standing upright while facing slightly to the side \n2. the penguin is leaning forward, pecking at a spot on the ground \n3. the penguin is lying on its stomach, with its head slightly raised \n4. the penguin is lying crouched down low over the rocky surface \n5. the penguin is partially lying down with its back slightly arched"
}
},
"0043f083b5": {
"sedan": {
"4": null,
"7": null,
"12": null,
"15": null
},
"bus": {
"4": null,
"7": null,
"12": null,
"15": null
}
},
"0044fa5fba": {
"giant_panda": {
"3": null,
"6": null,
"10": null,
"15": null
}
},
"005a527edd": {
"ape": {
"3": "1. the ape holding onto another ape with its arm wrapped around the lower body \n2. the ape holding its hand near its mouth while seated",
"13": "1. the ape extending its left arm while reaching toward the other ape \n2. the ape holding its head with one hand while sitting and leaning slightly forward",
"16": null,
"21": null
}
},
"0065b171f9": {
"giant_panda": {
"9": null,
"13": null,
"18": null,
"28": null
}
},
"00917dcfc4": {
"zebra": {
"2": null,
"6": null,
"11": null,
"15": null
}
},
"00a23ccf53": {
"shark": {
"5": null,
"10": null,
"22": null,
"28": null
}
},
"00ad5016a4": {
"airplane": {
"2": null,
"6": null,
"9": null,
"14": null
}
},
"01082ae388": {
"leopard": {
"5": null,
"13": null,
"17": null,
"23": null
}
},
"011ac0a06f": {
"ape": {
"4": null,
"10": null,
"19": null,
"28": null
}
},
"013099c098": {
"giant_panda": {
"4": null,
"7": "1. the giant panda leaning forward and pressing its body towards the other giant panda \n2. the giant panda lying on its back with water splashing around it",
"9": "1. the giant panda bending forward with its head near the ground, standing on all four limbs \n2. the giant panda lying on its back, raising its front paw upwards while turning its head slightly",
"11": "1. the giant panda bending forward and pressing its paw against the body of another giant panda \n2. the giant panda lying on its back while raising one of its front paws toward the giant panda above it "
}
},
"0155498c85": {
"motorbike": {
"2": null,
"14": null,
"23": null,
"29": null
},
"person": {
"2": null,
"14": null,
"23": null,
"29": null
}
},
"01694ad9c8": {
"bird": {
"2": null,
"7": null,
"10": null,
"14": null
}
},
"017ac35701": {
"giant_panda": {
"3": null,
"14": null,
"23": null,
"29": null
}
},
"01b80e8e1a": {
"zebra": {
"3": null,
"4": "1. walking forward with its head slightly lowered \n2. standing still with its head raised and facing forward",
"7": null,
"9": "1. walking forward with its legs stretched in motion \n2. lowering its head close to the ground, likely grazing"
}
},
"01baa5a4e1": {
"frisbee": {
"5": null,
"9": null,
"15": null,
"20": null
}
},
"01c3111683": {
"whale": {
"3": null,
"17": null,
"22": null,
"30": null
}
},
"01c4cb5ffe": {
"snowboard": {
"5": null,
"16": null,
"22": null,
"31": null
},
"person": {
"5": null,
"16": "1. a person skiing downhill, holding ski poles while slightly leaning forward \n3. a person skiing uphill, maintaining balance with arms extended",
"22": null,
"31": null
}
},
"01c76f0a82": {
"plant": {
"2": null,
"6": null,
"13": null,
"17": null
},
"sedan": {
"2": null,
"6": null,
"13": null,
"17": null
}
},
"01c783268c": {
"ape": {
"7": null,
"13": null,
"24": null,
"32": null
},
"person": {
"7": null,
"13": null,
"24": null,
"32": null
}
},
"01e64dd36a": {
"cow": {
"4": "1. the cow lying on the ground with its legs bent beneath its body, appearing to push off the ground in an attempt to rise \n2. the cow standing stationary with its head slightly lowered, observing the surroundings \n3. the cow standing still with its head raised, attentively facing forward",
"5": "1. the cow lying on the ground with its legs extended outward \n2. the cow standing still with its head raised, facing forward \n3. the cow standing upright with its head slightly turned to the side",
"9": "1. the cow mounting another cow, with its front legs raised and positioned on the other cow's back \n2. the cow lying on the ground, motionless \n3. the cow standing upright, facing forward",
"11": "1. the cow lowering its head and extending its front legs in a crouching motion \n2. the cow leaping mid-air with all four legs raised off the ground \n3. the cow standing still with its head lifted and facing forward "
}
},
"01ed275c6e": {
"giraffe": {
"5": "1. the giraffe standing upright with its neck extended toward the sky\n\n2. the giraffe bending its neck forward and pressing its head against the tree trunk",
"7": "1. the giraffe standing upright with its neck extended upwards \n2. the giraffe leaning its neck towards the tree trunk",
"10": "1. the giraffe standing still with its neck stretched upwards towards the tree canopy \n2. the giraffe leaning its neck against the tree trunk",
"16": "1. standing upright with its neck extended upward toward the tree branches \n2. leaning its head and neck toward the tree trunk while partially positioning its body against it "
}
},
"01ff60d1fa": {
"lizard": {
"2": null,
"11": null,
"18": null,
"30": null
}
},
"020cd28cd2": {
"person": {
"5": null,
"8": null,
"17": null,
"23": null
}
},
"02264db755": {
"fox": {
"8": null,
"16": null,
"25": null,
"33": null
}
},
"0248626d9a": {
"train": {
"3": null,
"6": null,
"10": null,
"12": null
}
},
"02668dbffa": {
"frog": {
"4": null,
"8": null,
"16": null,
"24": null
}
},
"0274193026": {
"skateboard": {
"4": null,
"12": null,
"19": null,
"24": null
},
"person": {
"4": null,
"12": null,
"19": null,
"24": null
}
},
"02d28375aa": {
"fox": {
"3": null,
"16": null,
"24": null,
"27": null
}
},
"031ccc99b1": {
"person": {
"4": "1. a person extending an arm forward, appearing to reach toward another person \n2. a person holding a microphone near their mouth with one hand while gesturing outward with the other hand \n3. a person grasping their clothing near the chest with one hand",
"7": "1. raising their left arm and gesturing slightly toward person 2 \n2. holding a microphone with their right hand and facing person 1 \n3. reaching out with their left arm toward person 2",
"10": "1. extending an arm outward, appearing to point or gesture toward another person \n2. holding a microphone with one hand while gesturing outward with the other hand \n3. standing with one arm resting on their side and the other hand supporting or gripping an object nearby",
"14": "1. extending both hands forward, appearing to gesture toward person 2. \n2. holding a microphone in the right hand while gesturing upward with the left hand. \n3. slightly leaning forward with one arm extended toward person 1. "
}
},
"0321b18c10": {
"person": {
"3": "1. sitting upright on an elephant's back while holding onto the wooden structure for balance \n2. seated on an elephant's back with one leg hanging down, appearing to stabilize themselves using the wooden structure ",
"5": null,
"8": null,
"11": null
},
"elephant": {
"3": null,
"5": null,
"8": null,
"11": null
}
},
"0348a45bca": {
"fish": {
"2": null,
"12": null,
"19": null,
"33": null
}
},
"0355e92655": {
"person": {
"3": null,
"5": null,
"8": null,
"13": null
},
"paddle": {
"3": null,
"5": null,
"8": null,
"13": null
},
"boat": {
"3": null,
"5": null,
"8": null,
"13": null
}
},
"0358b938c1": {
"elephant": {
"4": null,
"7": "1. the elephant using its extended trunk to spray water \n2. the elephant sitting in the water while spraying water upward with its trunk ",
"10": "1. the elephant standing in water and spraying water forward with its trunk \n2. the elephant sitting in water and spraying water upward with its trunk ",
"13": "1. spraying water forcefully from its trunk into the pond \n2. raising its trunk and spraying water backward in an arc \n3. extending its trunk toward the water without spraying"
}
},
"0368107cf1": {
"person": {
"4": null,
"7": null,
"10": null,
"17": null
}
},
"0379ddf557": {
"skateboard": {
"3": null,
"17": null,
"18": null,
"26": null
},
"person": {
"3": null,
"17": null,
"18": null,
"26": null
}
},
"038b2cc71d": {
"lizard": {
"3": null,
"5": null,
"10": null,
"11": null
}
},
"038c15a5dd": {
"hedgehog": {
"7": null,
"12": null,
"24": null,
"30": null
}
},
"03a06cc98a": {
"giraffe": {
"5": null,
"6": null,
"13": "1. the giraffe lowering its head while grasping or reaching for food within a container \n2. the giraffe extending its neck upward toward a basket-like feeding structure \n3. the giraffe standing upright, facing forward while observing the surroundings",
"16": null
}
},
"03a63e187f": {
"lizard": {
"8": null,
"15": null,
"23": null,
"31": null
}
},
"03c95b4dae": {
"elephant": {
"3": "1. the elephant walking forward on the sandy ground \n2. the elephant moving alongside a person while slightly turning its head \n3. the elephant following another elephant closely while walking",
"6": null,
"8": "1. walking with its back legs in motion while facing away from the river \n2. standing with its trunk lowered while leaning slightly toward a person holding its side \n3. walking forward with its trunk extended downward toward the ground",
"12": "1. the elephant walking toward the river with its head slightly lowered \n2. the elephant standing still with its trunk hanging downward \n3. the smaller elephant walking closely beside a larger elephant, leaning slightly toward it"
}
},
"03e2b57b0e": {
"lizard": {
"3": null,
"8": null,
"15": null,
"25": null
}
},
"04194e1248": {
"lizard": {
"6": null,
"17": null,
"22": null,
"33": null
}
},
"04259896e2": {
"lizard": {
"9": null,
"14": null,
"25": null,
"33": null
}
},
"0444918a5f": {
"truck": {
"3": null,
"7": null,
"13": null,
"14": null
}
},
"04460a7a52": {
"lizard": {
"3": null,
"15": null,
"23": null,
"26": null
}
},
"04474174a4": {
"ape": {
"7": "1. the ape reaching out with its right arm, pushing against the back of the other ape \n2. the ape crouching with its body leaning forward, holding onto the rock surface tightly ",
"10": null,
"22": null,
"29": "1. the ape crouching with its back arched while looking forward \n2. the ape holding a thin stick near its mouth using one hand "
}
},
"0450095513": {
"snail": {
"2": null,
"11": null,
"17": null,
"25": null
}
},
"045f00aed2": {
"others": {
"2": null,
"17": null,
"22": null,
"33": null
},
"tiger": {
"2": null,
"17": null,
"22": null,
"33": null
},
"person": {
"2": null,
"17": null,
"22": null,
"33": null
}
},
"04667fabaa": {
"parrot": {
"9": null,
"12": null,
"18": null,
"30": null
}
},
"04735c5030": {
"cat": {
"3": "1. the cat lowering its body and leaning forward with its head close to the ground \n2. the cat sitting upright with its head slightly tilted forward",
"5": "1. the cat grasping a blue string with its front paw while lying down \n2. the cat resting on its side without engaging in any visible action",
"10": "1. the cat stretching its front legs forward while lowering its head close to the surface \n2. the cat lying still on its side with minimal visible motion ",
"11": "1. the cat leaping forward with its front legs extended outward \n2. the cat lying still on its side, appearing relaxed"
}
},
"04990d1915": {
"truck": {
"4": null,
"5": null,
"9": null,
"15": null
},
"sedan": {
"4": null,
"5": null,
"9": null,
"15": null
},
"bus": {
"4": null,
"5": null,
"9": null,
"15": null
}
},
"04d62d9d98": {
"skateboard": {
"4": null,
"9": null,
"12": null,
"16": null
},
"person": {
"4": null,
"9": null,
"12": null,
"16": null
}
},
"04f21da964": {
"monkey": {
"9": null,
"12": null,
"21": null,
"28": null
}
},
"04fbad476e": {
"parrot": {
"2": null,
"13": null,
"23": null,
"29": null
}
},
"04fe256562": {
"truck": {
"2": null,
"8": null,
"11": null,
"14": null
},
"motorbike": {
"2": null,
"8": null,
"11": null,
"14": null
}
},
"0503bf89c9": {
"hedgehog": {
"2": null,
"11": null,
"18": null,
"24": null
}
},
"0536c9eed0": {
"cat": {
"2": null,
"5": null,
"10": null,
"11": null
}
},
"054acb238f": {
"owl": {
"5": null,
"11": null,
"19": null,
"32": null
}
},
"05579ca250": {
"skateboard": {
"5": null,
"11": null,
"16": null,
"25": null
},
"person": {
"5": null,
"11": null,
"16": null,
"25": null
},
"sedan": {
"5": null,
"11": null,
"16": null,
"25": null
}
},
"056c200404": {
"toilet": {
"4": null,
"6": null,
"11": null,
"15": null
}
},
"05774f3a2c": {
"ape": {
"5": null,
"10": null,
"20": null,
"33": "1. sitting upright and using both hands to hold the smaller ape labeled 3 against its chest \n2. lying on its side and extending one arm toward the grass \n3. sitting in an upright posture while being held by the ape labeled 1"
}
},
"058a7592c8": {
"train": {
"3": null,
"9": null,
"11": null,
"15": null
}
},
"05a0a513df": {
"person": {
"4": null,
"8": null,
"11": null,
"14": null
}
},
"05a569d8aa": {
"cat": {
"3": null,
"7": null,
"9": null,
"12": null
},
"mouse": {
"3": null,
"7": null,
"9": null,
"12": null
}
},
"05aa652648": {
"ape": {
"6": null,
"8": null,
"19": null,
"26": null
}
},
"05d7715782": {
"sign": {
"2": null,
"9": null,
"12": null,
"17": null
}
},
"05e0b0f28f": {
"mouse": {
"7": null,
"11": null,
"19": null,
"24": null
},
"person": {
"7": null,
"11": null,
"19": null,
"24": null
}
},
"05fdbbdd7a": {
"umbrella": {
"3": null,
"4": null,
"6": null,
"8": null
}
},
"05ffcfed85": {
"monkey": {
"3": null,
"12": "1. the monkey hanging from a branch using its left arm, with its body fully extended downward \n2. the monkey holding onto a branch with both arms, with its body partially curled up",
"25": null,
"32": null
}
},
"0630391881": {
"tennis_racket": {
"4": null,
"10": null,
"14": null,
"26": null
},
"person": {
"4": null,
"10": null,
"14": null,
"26": null
}
},
"06840b2bbe": {
"snake": {
"3": null,
"5": null,
"8": null,
"16": null
}
},
"068f7dce6f": {
"shark": {
"9": null,
"10": null,
"23": null,
"33": null
}
},
"0693719753": {
"turtle": {
"7": "1. the turtle leaning forward and climbing onto the back of another turtle \n2. the turtle staying still with its head extended outward",
"9": null,
"19": null,
"20": null
}
},
"06ce2b51fb": {
"person": {
"2": null,
"6": "1. Person 1 holding onto a paddle with both hands, actively rowing the kayak. \n2. Person 2 leaning back with legs extended forward, resting in the kayak.",
"9": null,
"14": null
},
"paddle": {
"2": null,
"6": null,
"9": null,
"14": null
}
},
"06e224798e": {
"tiger": {
"5": null,
"10": null,
"25": null,
"33": null
}
},
"06ee361788": {
"duck": {
"3": null,
"5": null,
"8": null,
"16": null
}
},
"06fbb3fa2c": {
"eagle": {
"2": null,
"6": null,
"10": null,
"15": null
}
},
"0700264286": {
"cow": {
"4": "1. the cow lowering its head while stepping forward with its front legs \n2. the cow standing still with its body slightly turned to the right ",
"7": "1. the calf standing with a slightly forward-bent posture, its head tilted downward \n2. the cow standing upright, stationary, and not engaging in any visible dynamic movement",
"9": null,
"13": null
}
},
"070c918ca7": {
"parrot": {
"6": null,
"17": null,
"22": null,
"29": null
}
},
"07129e14a4": {
"parrot": {
"5": null,
"10": null,
"19": "1. the parrot opening its beak widely while turning its head slightly toward a nearby object \n2. the parrot sitting upright, gripping onto the surface with its claws",
"31": null
},
"person": {
"5": null,
"10": null,
"19": null,
"31": null
}
},
"07177017e9": {
"motorbike": {
"2": null,
"6": null,
"9": null,
"13": null
}
},
"07238ffc58": {
"monkey": {
"6": "1. the monkey sitting on the ground while looking upward at another monkey \n2. the monkey leaning forward, inspecting or observing the smaller monkey below it \n3. the monkey climbing up a vertical pole, gripping it with its limbs ",
"14": "1. the monkey sitting on the ground, leaning slightly forward while extending its head upward \n2. the monkey crouching, looking downward at the smaller monkey while its front limbs rest near its body \n3. the monkey standing upright with its body slightly angled forward, moving its rear leg",
"22": "1. the monkey crouching on the ground, with its body facing forward and tail extending backward \n\n2. the monkey sitting upright, with its head slightly tilted downward, appearing to observe the smaller monkey directly in front of it \n\n3. the monkey walking forward with its back slightly arched, one leg mid-step, and its tail raised",
"31": "1. the small monkey sitting upright, looking forward with its upper body slightly leaned back \n\n2. the larger monkey standing upright, maintaining a still posture while gazing downward at the smaller monkey"
}
},
"07353b2a89": {
"sheep": {
"4": null,
"8": null,
"14": null,
"21": null
}
},
"0738493cbf": {
"airplane": {
"2": null,
"7": null,
"8": null,
"14": null
}
},
"075926c651": {
"person": {
"2": "1. holding a microphone close to their mouth, appearing to speak or sing \n2. sitting on a chair while playing a piano",
"7": null,
"8": null,
"15": null
}
},
"075c701292": {
"duck": {
"8": null,
"16": null,
"19": null,
"29": null
}
},
"0762ea9a30": {
"person": {
"5": null,
"9": null,
"13": null,
"17": null
}
},
"07652ee4af": {
"skateboard": {
"7": null,
"9": null,
"17": null,
"23": null
},
"person": {
"7": null,
"9": null,
"17": null,
"23": null
}
},
"076f206928": {
"person": {
"4": null,
"6": null,
"12": null,
"15": null
},
"zebra": {
"4": null,
"6": null,
"12": null,
"15": null
}
},
"077d32af19": {
"train": {
"2": null,
"9": null,
"13": null,
"14": null
},
"person": {
"2": null,
"9": null,
"13": null,
"14": null
}
},
"079049275c": {
"mouse": {
"5": null,
"8": null,
"14": null,
"20": null
}
},
"07913cdda7": {
"train": {
"3": null,
"5": null,
"9": null,
"11": null
},
"person": {
"3": null,
"5": null,
"9": null,
"11": null
}
},
"07a11a35e8": {
"ape": {
"9": "1. the ape grasping and inspecting a piece of food with both hands \n2. the smaller ape reaching out with its right arm toward the ground",
"12": "1. the ape holding a piece of food with both hands and inspecting it closely \n2. the ape sitting and leaning forward, looking toward the other ape",
"25": "1. the ape holding a bowl-like object with both hands and inspecting it closely \n2. the ape leaning forward with its front limb stretched out, touching or reaching toward the ground",
"27": "1. the ape sitting on the ground while holding a bowl close to its mouth with both hands \n2. the ape standing on all four limbs while leaning its head forward toward the other ape "
}
},
"07ac33b6df": {
"ape": {
"6": null,
"13": null,
"15": null,
"20": null
}
},
"07c62c3d11": {
"parrot": {
"9": null,
"13": "1. the parrot perched on a branch, pecking at the red circular object \n2. the parrot resting on a branch, facing outward without any observable interaction \n3. the parrot perched on a branch, leaning forward with no interaction with objects or other parrots ",
"19": null,
"29": "1. a parrot hanging from a red circular ring with its claws, facing downward \n3. a parrot partially inside a woven birdhouse, poking its head out through the opening"
}
},
"07cc1c7d74": {
"snake": {
"5": null,
"17": null,
"18": null,
"31": null
}
},
"080196ef01": {
"lizard": {
"2": null,
"15": null,
"19": null,
"27": null
},
"hand": {
"2": null,
"15": null,
"19": null,
"27": null
}
},
"081207976e": {
"hat": {
"5": null,
"9": null,
"12": null,
"17": null
}
},
"081ae4fa44": {
"shark": {
"2": null,
"8": null,
"18": null,
"22": null
}
},
"081d8250cb": {
"skateboard": {
"3": null,
"6": null,
"10": null,
"14": null
},
"person": {
"3": null,
"6": null,
"10": null,
"14": null
},
"sedan": {
"3": null,
"6": null,
"10": null,
"14": null
}
},
"082900c5d4": {
"duck": {
"5": "1. paddling through the water, creating ripples behind it \n2. floating steadily on the water, maintaining a stationary position \n3. splashing water vigorously with its body in an upward motion ",
"6": "1. the duck splashing water as it propels forward using its webbed feet \n2. the duck swimming calmly on the water surface, with no visible body movement \n3. the duck fluttering its wings while creating ripples and splashes in the water",
"10": null,
"17": "1. Duck paddling on the water with its body tilted slightly forward. \n2. Duck gliding smoothly on the water, its body appearing stable and straight. \n3. Duck swimming forward with a visible ripple in the water, its body slightly angled. "
}
},
"0860df21e2": {
"frisbee": {
"8": null,
"12": null,
"18": null,
"30": null
}
},
"0866d4c5e3": {
"bird": {
"4": "1. pecking the ground with its beak \n2. walking forward with a slight head movement \n3. standing upright while turning its head to the side",
"5": null,
"9": "1. pecking at the ground with its beak\n2. flapping its wings while scratching at the dirt with its feet\n3. lowering its head toward the ground while remaining still",
"12": "1. the bird leaning forward, pecking at the ground \n\n2. the bird extending its neck and pecking at a grass blade \n\n3. the bird splaying its wings while lying flat on the ground"
}
},
"0891ac2eb6": {
"person": {
"2": "1. standing upright, stepping forward with one hand extended downward, not interacting with any visible objects \n2. sitting on a lounge chair, leaning forward with both arms resting on their thighs \n3. reclining on a lounge chair, holding an object close to their face, appearing to examine it",
"6": "1. standing and adjusting an umbrella above the lounge chairs with their hands raised. \n2. sitting on a lounge chair and leaning forward while holding and inspecting an object with both hands. \n3. standing next to a lounge chair and leaning to the side while adjusting or interacting with a towel draped over the chair. ",
"9": "1. Person 1 is leaning forward while adjusting or inspecting an object with their hand. \n2. Person 2 is sitting upright on a lounge chair, holding a small object with one hand near their face. \n3. Person 3 is reclining on a lounge chair, appearing to be drinking from a bottle or cup held with one hand. ",
"13": "1. bending forward while reaching toward an object near the ground \n2. sitting on a lounge chair, leaning slightly forward with both arms resting on his knees \n3. standing upright with hands resting on the hips"
}
},
"08931bc458": {
"others": {
"3": null,
"14": null,
"18": null,
"26": null
},
"skateboard": {
"3": null,
"14": null,
"18": null,
"26": null
},
"person": {
"3": null,
"14": null,
"18": null,
"26": null
}
},
"08aa2705d5": {
"snake": {
"9": null,
"12": null,
"19": null,
"33": null
}
},
"08c8450db7": {
"toilet": {
"4": null,
"7": null,
"12": null,
"14": null
}
},
"08d50b926c": {
"turtle": {
"8": null,
"14": null,
"19": null,
"31": null
}
},
"08e1e4de15": {
"monkey": {
"2": "1. the monkey standing upright on a rock, turning its head to the side \n2. the monkey climbing upward on a rock with its front limbs extended for grip \n3. the monkey leaping from one rock to another while mid-air \n4. the monkey sitting on a rock while looking forward",
"10": "1. the monkey sitting upright on a rock while looking directly ahead \n2. the monkey perched on a higher rock, gazing downward at the scene below \n3. the monkey leaping across a wooden bench with its arms and legs extended mid-air \n4. the monkey leaning back against a rock, resting with its hand near its face",
"20": "1. the monkey sitting on a rock with its body upright, observing its surroundings\n\n2. the monkey climbing on a rocky surface, its limbs visibly engaged in maintaining grip\n\n3. the monkey holding a yellow object in its mouth while stepping on a wooden platform",
"28": "1. the monkey sitting on a rock, with one hand resting casually on the surface \n\n2. the monkey climbing upwards while clinging onto the rock face \n\n3. the monkey leaning forward while walking across the top of a rock \n\n4. the monkey crouching on a slightly raised rock surface looking downward"
}
},
"08e48c1a48": {
"cow": {
"4": null,
"6": null,
"10": null,
"15": null
}
},
"08f561c65e": {
"giant_panda": {
"9": null,
"15": null,
"23": null,
"26": null
},
"person": {
"9": null,
"15": null,
"23": null,
"26": null
}
},
"08feb87790": {
"sheep": {
"4": null,
"8": null,
"12": null,
"14": null
}
},
"09049f6fe3": {
"mouse": {
"5": null,
"11": null,
"18": null,
"26": null
}
},
"092e4ff450": {
"snake": {
"4": null,
"11": null,
"19": null,
"28": null
}
},
"09338adea8": {
"whale": {
"2": null,
"17": null,
"21": null,
"26": null
}
},
"093c335ccc": {
"frisbee": {
"2": null,
"13": null,
"18": null,
"21": null
},
"person": {
"2": null,
"13": null,
"18": null,
"21": null
}
},
"0970d28339": {
"ape": {
"3": "1. the ape gripping a cable with one hand while sitting on a tree trunk \n2. the ape placing one hand on a cable and the other on the tree trunk while looking upward",
"14": "1. the ape crouching and grasping a tree branch with one hand \n2. the ape sitting and holding onto a rope with one hand",
"23": "1. The ape grasping a tree branch with its upper limbs and leaning its body forward. \n2. The ape hanging onto a tree branch with one arm while extending its body sideways. ",
"29": "1. The ape perched on a tree branch, grasping the trunk with both hands. \n2. The ape leaning forward, one arm gripping the tree trunk while the other appears extended, stabilizing or reaching outward."
}
},
"0974a213dc": {
"giraffe": {
"3": "1. lowering its neck toward the ground, appearing to sniff or inspect the surface \n2. leaning downward with its neck extended toward the ground, possibly grazing or inspecting the area \n3. standing still with its body oriented slightly toward a tree trunk, appearing to rest or pause ",
"8": null,
"12": "1. bending its neck downward to nudge or inspect the hindquarter of giraffe 2 \n2. standing upright while motionless and being nudged by giraffe 1 \n3. extending its neck forward as it lowers its head toward the ground ",
"16": "1. lowering its head and neck toward the ground \n2. pushing its head and neck against the body of another giraffe \n3. standing with its neck extended toward a tree trunk "
}
},
"097b471ed8": {
"cat": {
"5": null,
"7": "1. the cat reclining with its body stretched out and resting on a soft surface \n2. the cat leaning forward and lowering its head toward a bowl",
"10": null,
"14": null
}
},
"0990941758": {
"giant_panda": {
"8": null,
"10": null,
"18": null,
"33": null
}
},
"09a348f4fa": {
"lizard": {
"5": null,
"9": null,
"14": null,
"24": null
}
},
"09a6841288": {
"duck": {
"3": null,
"6": null,
"11": null,
"17": null
}
},
"09c5bad17b": {
"airplane": {
"3": null,
"8": null,
"10": null,
"17": null
}
},
"09c9ce80c7": {
"giant_panda": {
"3": null,
"15": null,
"21": null,
"32": null
}
},
"09ff54fef4": {
"fox": {
"4": "1. the fox sitting upright with its front paws partially raised \n2. the fox walking forward with its head lowered toward the grass ",
"8": null,
"14": null,
"24": "1. the fox lying on its back with its legs raised slightly off the ground \n2. the fox standing upright on its hind legs while leaning slightly forward"
}
},
"0a23765d15": {
"skateboard": {
"3": null,
"6": null,
"10": null,
"15": null
},
"person": {
"3": "1. leaping with arms extended outward, appearing to jump or balance on the rectangular platform. \n2. leaning forward with knees slightly bent, appearing to approach the platform.",
"6": "1. a person balancing on a skateboard while performing a trick on the raised platform, with one foot on the board and one arm extended. \n2. a person riding a skateboard, crouching slightly with knees bent and arms extended for balance. ",
"10": "1. balancing while riding a skateboard with one foot slightly raised \n2. stepping onto the edge of a tilted skateboard with one foot while raising the other",
"15": null
}
},
"0a275e7f12": {
"elephant": {
"4": null,
"6": null,
"13": null,
"17": null
}
},
"0a2f2bd294": {
"motorbike": {
"2": null,
"8": null,
"12": null,
"14": null
}
},
"0a7a2514aa": {
"cat": {
"2": null,
"8": null,
"12": null,
"14": null
},
"lizard": {
"2": null,
"8": null,
"12": null,
"14": null
}
},
"0a7b27fde9": {
"parrot": {
"7": null,
"10": null,
"22": null,
"27": null
}
},
"0a8c467cc3": {
"fish": {
"4": null,
"12": null,
"21": null,
"33": null
}
},
"0ac8c560ae": {
"person": {
"3": "2. a person sitting upright on an elephant's back, holding onto the elephant with one hand \n3. a person leaning forward on an elephant's back, placing both hands on the elephant for support ",
"6": null,
"11": "2. a person sitting on the back of an elephant, leaning slightly forward with hands resting on the elephant's body \n3. a person sitting on the back of an elephant, holding a stick or similar object with both hands",
"15": null
}
},
"0b1627e896": {
"boat": {
"5": null,
"9": null,
"11": null,
"17": null
}
},
"0b285c47f6": {
"mouse": {
"6": null,
"12": null,
"15": null,
"22": null
},
"hand": {
"6": null,
"12": null,
"15": null,
"22": null
}
},
"0b34ec1d55": {
"ape": {
"4": null,
"12": null,
"24": null,
"30": null
}
},
"0b5b5e8e5a": {
"person": {
"4": null,
"7": null,
"10": null,
"17": null
},
"sedan": {
"4": null,
"7": null,
"10": null,
"17": null
}
},
"0b68535614": {
"rabbit": {
"4": null,
"17": null,
"18": null,
"26": null
},
"hand": {
"4": null,
"17": null,
"18": null,
"26": null
}
},
"0b6f9105fc": {
"rabbit": {
"6": null,
"15": null,
"22": null,
"29": null
}
},
"0b7dbfa3cb": {
"cow": {
"2": null,
"5": null,
"10": null,
"12": null
}
},
"0b9cea51ca": {
"whale": {
"5": null,
"11": null,
"20": null,
"33": null
}
},
"0b9d012be8": {
"camel": {
"8": null,
"16": null,
"19": null,
"32": null
}
},
"0bcfc4177d": {
"truck": {
"2": null,
"6": null,
"10": null,
"14": null
}
},
"0bd37b23c1": {
"motorbike": {
"4": null,
"9": null,
"10": null,
"16": null
}
},
"0bd864064c": {
"eagle": {
"4": null,
"15": null,
"20": null,
"28": null
}
},
"0c11c6bf7b": {
"deer": {
"5": null,
"13": null,
"24": null,
"29": null
}
},
"0c26bc77ac": {
"crocodile": {
"9": null,
"16": null,
"18": null,
"32": null
}
},
"0c3a04798c": {
"fish": {
"3": null,
"6": null,
"10": null,
"16": null
},
"duck": {
"3": null,
"6": null,
"10": null,
"16": null
}
},
"0c44a9d545": {
"tiger": {
"3": null,
"16": null,
"21": null,
"31": null
}
},
"0c817cc390": {
"dog": {
"9": null,
"11": null,
"21": null,
"26": null
},
"hedgehog": {
"9": null,
"11": null,
"21": null,
"26": null
}
},
"0ca839ee9a": {
"ape": {
"8": null,
"13": null,
"18": null,
"28": "1. the ape lying on its back and raising its right hand near its face \n2. the ape clasping the body of the larger ape while lying inclined against it "
}
},
"0cd7ac0ac0": {
"rabbit": {
"3": null,
"8": null,
"17": null,
"20": null
}
},
"0ce06e0121": {
"parrot": {
"5": null,
"15": null,
"22": "1. the parrot pecking at or grasping the upper surface of the wooden structure with its beak \n2. the parrot flapping its wings while being held by a person's hand",
"33": null
}
},
"0cfe974a89": {
"turtle": {
"4": "1. the turtle leaning forward while pressing its front legs against the ground \n2. the turtle on its back while moving its legs upward",
"12": "1. the turtle leaning forward with its head close to the other turtle, appearing to nudge or push it with its mouth or upper body \n2. the turtle lying on its back while stretching out its legs and head upward, possibly attempting to flip itself over",
"21": "1. the turtle pressing its head against another turtle's side \n2. the turtle lying on its back with legs raised and waving in the air",
"28": "1. the turtle leaning forward and pressing its front leg against the ground while facing the overturned turtle \n2. the overturned turtle flailing its legs upward and partially twisting its body"
}
},
"0d2fcc0dcd": {
"zebra": {
"2": null,
"6": null,
"12": "1. Zebra 1 lowering its head towards the ground, possibly grazing. \n2. Zebra 2 standing still with its body pointed slightly to the right, observing its surroundings. \n3. Zebra 3 leaning forward while moving its head towards Zebra 2, possibly sniffing or nudging. \n4. Zebra 4 kicking its hind legs upward in a dynamic motion, indicating a potential defensive or playful action.",
"17": null
}
},
"0d3aad05d2": {
"person": {
"4": null,
"12": null,
"15": null,
"24": null
},
"parachute": {
"4": null,
"12": null,
"15": null,
"24": null
}
},
"0d40b015f4": {
"snowboard": {
"7": null,
"12": null,
"18": null,
"30": null
},
"person": {
"7": null,
"12": null,
"18": null,
"30": null
}
},
"0d97fba242": {
"dog": {
"3": null,
"5": null,
"10": null,
"15": null
},
"person": {
"3": null,
"5": null,
"10": null,
"15": null
}
},
"0d9cc80d7e": {
"person": {
"2": null,
"3": null,
"4": null,
"5": null
}
},
"0dab85b6d3": {
"lizard": {
"3": "1. the lizard resting on a person's hand while extending its limbs outward \n2. the lizard curled on a flat surface while pressing its body against the surface ",
"9": "1. the lizard gripping a human hand with all four limbs \n2. the lizard standing still on a flat white surface inside a glass container",
"18": "1. the lizard resting on a human hand with its body extended forward \n2. the lizard lying on a paper towel, curling its tail upward",
"22": "1. the lizard climbing over a human hand with its front and hind legs extended \n2. the lizard leaning against the transparent surface while pressing its forelimbs against it "
}
},
"0db5c427a5": {
"train": {
"3": null,
"6": null,
"12": null,
"14": null
}
},
"0dbaf284f1": {
"cat": {
"5": "1. the cat lowering its head, inspecting or sniffing an object on the floor \n2. the cat lying on its side, partly underneath a metallic chair leg ",
"9": "1. the cat walking forward, with its body slightly curved \n2. the cat crouching while inspecting the floor closely",
"13": "1. the cat extending its head downward while positioning its body near a human leg \n2. the cat crouching close to the base of a metallic stool",
"16": "1. the cat pressing its front paws on a human foot, leaning slightly forward \n2. the cat curled up while resting its body on the ground "
}
},
"0de4923598": {
"others": {
"4": null,
"7": null,
"13": null,
"15": null
}
},
"0df28a9101": {
"turtle": {
"3": null,
"10": null,
"17": null,
"20": null
}
},
"0e04f636c4": {
"frog": {
"7": null,
"9": null,
"16": null,
"23": null
}
},
"0e05f0e232": {
"lizard": {
"5": null,
"16": null,
"18": null,
"28": null
}
},
"0e0930474b": {
"sedan": {
"2": null,
"5": null,
"9": null,
"11": null
},
"person": {
"2": null,
"5": null,
"9": "2. the person holding a device up to their face, possibly taking a photo or recording a video \n3. the person standing still with arms relaxed at their sides, facing the car",
"11": "2. the person holding up a device, possibly a phone, with one hand raised at chest level \n3. the person standing still and appearing to observe the car"
}
},
"0e27472bea": {
"turtle": {
"9": null,
"14": null,
"19": null,
"26": null
},
"hand": {
"9": null,
"14": null,
"19": null,
"26": null
}
},
"0e30020549": {
"parrot": {
"2": null,
"10": null,
"16": null,
"21": null
}
},
"0e621feb6c": {
"lizard": {
"2": "1. the lizard stretching its body outward, with its limbs extended and tail laid flat against the ground \n2. the lizard climbing over the tail of another lizard, with its front limbs raised and body angled upward",
"10": "1. the lizard extending its body forward with its front limbs planted on the ground, while the rear limbs are bent as it propels itself forward \n2. the lizard lifting its body with its front limbs, slightly leaning its head upward, while its tail curves behind",
"21": "1. the lizard extending its body forward with one of its front legs raised against the ground \n2. the lizard raising its tail upwards while holding a partially upright posture",
"32": null
}
},
"0e803c7d73": {
"hand": {
"2": null,
"6": null,
"8": null,
"15": null
},
"knife": {
"2": null,
"6": null,
"8": null,
"15": null
}
},
"0e9ebe4e3c": {
"truck": {
"4": null,
"6": null,
"9": null,
"15": null
}
},
"0e9f2785ec": {
"person": {
"5": null,
"7": null,
"12": null,
"14": null
},
"umbrella": {
"5": null,
"7": null,
"12": null,
"14": null
}
},
"0ea68d418b": {
"others": {
"5": null,
"9": null,
"13": null,
"15": null
},
"airplane": {
"5": null,
"9": null,
"13": null,
"15": null
}
},
"0eb403a222": {
"hand": {
"2": null,
"8": null,
"11": null,
"14": null
},
"knife": {
"2": null,
"8": null,
"11": null,
"14": null
}
},
"0ee92053d6": {
"person": {
"3": null,
"8": null,
"12": null,
"16": null
}
},
"0eefca067f": {
"giant_panda": {
"7": "1. the giant panda sitting upright and grasping bamboo with its left paw while partially biting it \n2. the giant panda reclining on its back while holding bamboo with its mouth",
"11": "1. the giant panda grasping and pulling on bamboo stalks with its front paws \n2. the giant panda lying on its side, holding a piece of bamboo near its mouth",
"18": "1. the giant panda grasping and holding a bamboo stalk with its left paw, while chewing on bamboo leaves with its mouth \n2. the giant panda tilting its head slightly upward while biting and chewing on a bamboo stalk",
"27": "1. the giant panda grasping and biting a bundle of bamboo leaves with its paws and mouth \n2. the giant panda holding and chewing on a single bamboo leaf with its mouth "
}
},
"0f17fa6fcb": {
"duck": {
"6": "1. the duck gliding forward on the water surface \n2. the duck dipping its head into the water, creating small ripples \n3. the duck paddling while maintaining an upright posture",
"16": null,
"21": null,
"33": null
}
},
"0f1ac8e9a3": {
"frog": {
"8": null,
"13": null,
"18": null,
"29": null
}
},
"0f202e9852": {
"parrot": {
"2": null,
"5": null,
"8": null,
"14": null
}
},
"0f2ab8b1ff": {
"dolphin": {
"6": null,
"10": null,
"19": null,
"31": null
}
},
"0f51a78756": {
"sheep": {
"2": null,
"11": null,
"18": null,
"21": null
}
},
"0f5fbe16b0": {
"raccoon": {
"6": null,
"11": null,
"24": "1. the raccoon lying on its back with one paw grasping a rung of the chair \n2. the raccoon lowering its head as it sniffs toward the other raccoon ",
"29": "1. the raccoon lying on its back, reaching upward with its front paws toward the leg of a furniture piece \n2. the raccoon crouching on all fours, facing the other raccoon, with its body partially beneath the furniture piece "
}
},
"0f6072077b": {
"person": {
"2": "1. leaning forward and resting one arm on the motorcycle. \n2. sitting on the motorcycle seat while placing one hand on the motorcycle\u2019s tank. \n3. holding a camera and aiming it to take a photograph. ",
"7": "1. resting her left hand on the motorcycle handlebar while gazing to the side \n2. sitting on the motorcycle seat with both hands placed on the sides of the motorcycle \n3. holding a camera up to his face and pointing it forward to take a picture ",
"8": "1. extending an arm to hold onto the motorbike near the handlebar \n2. sitting on the motorbike seat with one leg bent and the other hanging off, resting a hand on the bike \n3. holding a camera up to their face and taking a photo ",
"16": "1. the person resting one hand on the motorcycle handlebar while seated on the motorcycle \n2. the person seated on the motorcycle with one leg crossed over the other \n3. the person holding a camera while standing and pointing it forward"
}
},
"0f6b69b2f4": {
"rabbit": {
"2": null,
"14": null,
"19": null,
"31": null
}
},
"0f6c2163de": {
"snail": {
"5": null,
"10": null,
"17": null,
"24": null
}
},
"0f74ec5599": {
"giant_panda": {
"4": null,
"10": null,
"20": null,
"28": null
}
},
"0f9683715b": {
"elephant": {
"3": null,
"7": null,
"13": null,
"17": null
}
},
"0fa7b59356": {
"duck": {
"4": null,
"14": null,
"19": null,
"29": null
}
},
"0fb173695b": {
"hat": {
"4": null,
"6": null,
"11": null,
"14": null
},
"person": {
"4": null,
"6": null,
"11": null,
"14": null
},
"paddle": {
"4": null,
"6": null,
"11": null,
"14": null
}
},
"0fc958cde2": {
"owl": {
"4": null,
"9": null,
"19": null,
"26": null
}
},
"0fe7b1a621": {
"parrot": {
"2": null,
"15": null,
"20": null,
"30": null
}
},
"0ffcdb491c": {
"person": {
"5": null,
"8": null,
"11": null,
"15": null
}
},
"101caff7d4": {
"giant_panda": {
"4": null,
"9": "1. the giant panda leaning forward, pressing its head down against the other panda \n2. the giant panda lying on its back, raising its forelimbs towards the other panda",
"10": "1. the giant panda leaning forward, lowering its head towards the other panda \n2. the giant panda lying on its back, reaching upward with its front paw towards the other panda",
"14": "1. the giant panda leaning forward with its head lowered, possibly sniffing or nudging the ground. \n2. the giant panda lying on its back, with its front paws raised in the air. "
}
},
"1022fe8417": {
"person": {
"5": "1. a person holding the reins with both hands, while seated on a horse-drawn carriage. \n2. a person seated on a horse-drawn carriage, resting their hands on their lap. \n3. a person standing beside a horse-drawn carriage, clasping their hands together. ",
"8": "1. holding the reins of the horses with both hands and sitting on the wooden carriage seat \n2. sitting upright on the wooden carriage and grasping the edge of the seat with one hand \n3. standing near the carriage while watching the individuals seated on it",
"11": "1. holding the reins with both hands while seated on the carriage \n2. sitting upright on the carriage while holding an object with both hands \n3. gripping the carriage edge with one hand while raising the other hand mid-gesture",
"14": "1. holding and controlling the reins of the horses. \n2. sitting upright and slightly leaning forward, holding onto the side of the carriage. \n3. sitting with hands on lap, leaning slightly backward. "
}
},
"1032e80b37": {
"giraffe": {
"3": null,
"9": null,
"13": null,
"16": null
}
},
"103f501680": {
"fish": {
"4": null,
"13": null,
"22": null,
"29": null
}
},
"104e64565f": {
"elephant": {
"5": null,
"8": null,
"12": null,
"17": null
}
},
"104f1ab997": {
"person": {
"4": "1. leaning over the inflatable boat while holding an object with both hands \n2. bending down and gripping the edge of the inflatable boat with both hands \n3. standing upright while holding a camera or device with both hands",
"6": "1. the person leaning forward while gripping the rope of a boat \n2. the person bending and holding the edge of an inflatable boat \n3. the person standing upright while clasping hands near their chest ",
"8": "1. leaning forward and extending a hand to touch or hold the inflatable boat. \n2. bending over, holding onto the edge of the inflatable boat with both hands. \n3. holding an object with both hands in front of the chest, observing it closely. ",
"13": "1. leaning forward against the edge of a boat, looking down while extending one arm toward the boat. \n2. bending over and gripping the side of the boat with both hands. \n3. holding a mobile device with both hands while standing upright. "
}
},
"106242403f": {
"person": {
"3": null,
"6": null,
"13": null,
"14": null
}
},
"10b31f5431": {
"person": {
"4": "1. riding a skateboard on a paved road, with arms extended and bent at the elbows. \n3. riding a skateboard with legs balanced and slightly bent to maintain control. \n4. holding a selfie stick with one hand while crouching on a skateboard, wearing protective gloves and leaning forward aggressively. ",
"10": "1. a person running forward with arms slightly bent at the elbows \n3. a person appearing to jog or walk briskly with arms moving rhythmically \n4. a person crouching low while holding a selfie stick in their gloved hand",
"19": null,
"26": "1. the person labeled \"3\" crouching on a skateboard while gripping the sides for balance \n2. the person labeled \"4\" extending an arm forward while holding a selfie stick, leaning slightly into the turn on a skateboard"
}
},
"10eced835e": {
"giant_panda": {
"4": "1. The giant panda bending forward while its head is directed towards the ground. \n2. The giant panda tilting its head downward while using its mouth to manipulate or bite an object. ",
"7": "1. the giant panda crouching and leaning forward towards the ground \n2. the giant panda sitting upright while lowering its head forward",
"8": "1. a panda sitting while lowering its head towards the ground \n2. a panda standing and leaning slightly forward with its face turned towards the other panda",
"16": null
}
},
"110d26fa3a": {
"shark": {
"6": null,
"10": null,
"18": null,
"22": null
}
},
"1122c1d16a": {
"parrot": {
"7": "1. the parrot standing upright on the cage wire, with its body tilted slightly forward \n2. the parrot being held in a hand while lifting its head upward \n3. the parrot lying on its back in a hand, with its legs extended slightly outward \n4. the parrot perched inside the cage, facing forward, with its body partially hidden by the cage wires \n5. the parrot standing on the flat surface inside the cage, lowering its head toward an object below",
"11": "1. the parrot standing on a flat surface, leaning forward with its beak close to the ground \n2. the parrot perched on a hand, tilting its head down while partially spreading its wings \n3. the parrot lying on its back in a person's hand, extending its legs upward \n4. the parrot gripping the side of the cage bars with its claws, leaning slightly backward \n5. the parrot resting on a flat surface, slightly tilting its head upward and facing forward ",
"19": null,
"29": null
},
"person": {
"7": null,
"11": null,
"19": null,
"29": null
}
},
"1145b49a5f": {
"rabbit": {
"3": null,
"11": null,
"18": null,
"28": null
}
},
"11485838c2": {
"giraffe": {
"2": "1. extending its neck upward and tilting its head to inspect a person on the railing \n2. lowering its head and neck to interact with the roof of the structure with its mouth \n3. facing downward with its head close to the ground, seemingly inspecting or interacting with the floor surface",
"8": null,
"13": "1. the giraffe extending its neck upwards, reaching towards a rooftop \n2. the giraffe lowering its head, gesturing towards the neighboring giraffe \n3. the giraffe standing still, observing the surroundings with its head facing slightly forward",
"15": "1. the giraffe lowering its head, pressing its muzzle against the slanted wooden structure \n2. the giraffe extending its neck downward to nuzzle the back of another giraffe \n3. the giraffe standing still with its head raised and ears slightly angled outward"
}
},
"114e7676ec": {
"surfboard": {
"2": null,
"16": null,
"22": null,
"29": null
},
"person": {
"2": null,
"16": null,
"22": null,
"29": null
}
},
"1157472b95": {
"parrot": {
"2": "1. the parrot using its beak to grasp and manipulate its foot \n2. the parrot standing upright, maintaining balance on the wooden perch ",
"12": null,
"24": null,
"33": null
}
},
"115ee1072c": {
"cow": {
"4": null,
"5": null,
"9": null,
"14": null
}
},
"1171141012": {
"turtle": {
"3": null,
"10": null,
"16": null,
"24": null
},
"person": {
"3": null,
"10": null,
"16": null,
"24": null
}
},
"117757b4b8": {
"snail": {
"2": null,
"10": null,
"24": null,
"27": null
}
},
"1178932d2f": {
"motorbike": {
"5": null,
"16": null,
"23": null,
"27": null
},
"person": {
"5": null,
"16": "1. controlling a motorcycle with both hands while seated and moving forward \n2. operating a motorcycle with one hand on the handlebar while looking to the side",
"23": null,
"27": null
}
},
"117cc76bda": {
"whale": {
"4": null,
"17": null,
"24": null,
"26": null
}
},
"1180cbf814": {
"fish": {
"8": null,
"12": null,
"24": null,
"28": "1. the fish swimming upward near the edge of a rock structure, with its fins spread wide \n2. the fish swimming forward with a horizontal body posture, maintaining a straight trajectory"
}
},
"1187bbd0e3": {
"cat": {
"2": null,
"6": null,
"10": null,
"16": null
}
},
"1197e44b26": {
"giant_panda": {
"5": null,
"17": null,
"23": null,
"32": null
}
},
"119cf20728": {
"lizard": {
"7": null,
"14": null,
"21": null,
"29": null
},
"hand": {
"7": null,
"14": null,
"21": null,
"29": null
}
},
"119dd54871": {
"lion": {
"2": null,
"15": null,
"22": null,
"25": null
}
},
"11a0c3b724": {
"mouse": {
"3": null,
"6": null,
"8": null,
"14": null
}
},
"11a6ba8c94": {
"skateboard": {
"4": null,
"13": null,
"25": null,
"26": null
},
"person": {
"4": "1. crouching down and tying the laces of a shoe with both hands \n2. balancing on a skateboard while standing with knees slightly bent",
"13": "1. crouching down while holding a camera near the ground and aiming it at the skateboard. \n2. stepping onto a skateboard with one foot while keeping the other foot raised slightly off the ground.",
"25": "1. crouching and tying the laces of a shoe with both hands \n2. balancing on one leg while positioning the other foot toward a skateboard",
"26": "1. crouching and holding a small object with both hands close to the ground \n2. balancing on one foot while performing a maneuver with a skateboard"
}
},
"11c722a456": {
"turtle": {
"4": null,
"13": null,
"22": null,
"30": null
}
},
"11cbcb0b4d": {
"zebra": {
"5": null,
"8": null,
"11": null,
"17": null
}
},
"11ccf5e99d": {
"plant": {
"5": null,
"8": null,
"12": null,
"17": null
},
"person": {
"5": null,
"8": null,
"12": null,
"17": null
}
},
"11ce6f452e": {
"person": {
"2": "1. standing with one hand resting on their hip. \n2. holding the reins and gripping them with both hands, appearing to steer or control the horse. \n3. grasping a metal railing with one hand while standing behind it. ",
"5": "1. standing with one hand resting on the hip, observing the surroundings \n2. holding reins with both hands, steering or guiding a harnessed horse \n3. gripping a vertical support bar with one hand, standing on a carriage",
"10": "1. a person standing with one hand resting on their hip and the other hand behind their back \n2. a person holding the reins of a horse-drawn carriage with both hands \n3. a person gripping the side railing of a carriage with one hand while standing upright",
"15": "1. standing with hands resting on hips and a bottle held in the waistband at the back \n2. leaning forward with one hand grasping the frame of a wagon or structure \n3. standing upright while holding the wagon rail with one hand"
}
},
"11feabe596": {
"rabbit": {
"2": null,
"9": null,
"14": null,
"25": null
}
},
"120cb9514d": {
"person": {
"8": null,
"16": null,
"18": null,
"31": null
}
},
"12156b25b3": {
"surfboard": {
"7": null,
"10": null,
"18": null,
"31": null
},
"person": {
"7": null,
"10": null,
"18": null,
"31": null
}
},
"122896672d": {
"others": {
"3": null,
"11": null,
"20": null,
"28": null
},
"skateboard": {
"3": null,
"11": null,
"20": null,
"28": null
},
"person": {
"3": null,
"11": null,
"20": null,
"28": null
}
},
"1233ac8596": {
"dog": {
"2": null,
"7": null,
"10": null,
"15": null
}
},
"1239c87234": {
"lizard": {
"8": null,
"17": null,
"22": null,
"27": null
}
},
"1250423f7c": {
"hat": {
"4": null,
"7": null,
"10": null,
"16": null
},
"person": {
"4": null,
"7": null,
"10": null,
"16": null
},
"elephant": {
"4": "3. an elephant sitting with its body angled forward, its trunk extended downward, grasping or reaching toward the ground \n4. an elephant standing still with all four legs firmly planted on the ground",
"7": "3. the elephant sitting on its hind legs while placing its front legs on the ground \n4. the elephant standing upright and facing forward with no prominent movement",
"10": null,
"16": "3. an elephant reaching its trunk towards a standing person, appearing to interact with the person \n4. an elephant standing still without any observable action"
}
},
"1257a1bc67": {
"snake": {
"5": null,
"11": null,
"17": null,
"28": null
}
},
"125d1b19dd": {
"giant_panda": {
"9": null,
"11": null,
"21": null,
"33": "1. the giant panda grasping a tree branch with its front paws \n2. the giant panda balancing on a thin branch while moving forward"
}
},
"126d203967": {
"skateboard": {
"9": null,
"14": null,
"23": null,
"33": null
},
"person": {
"9": null,
"14": null,
"23": null,
"33": null
}
},
"1295e19071": {
"airplane": {
"3": null,
"6": null,
"10": null,
"15": null
}
},
"12ad198c54": {
"skateboard": {
"5": null,
"10": null,
"14": null,
"20": null
},
"person": {
"5": null,
"10": null,
"14": null,
"20": null
}
},
"12bddb2bcb": {
"frisbee": {
"4": null,
"8": null,
"18": null,
"21": null
},
"person": {
"4": null,
"8": null,
"18": null,
"21": null
}
},
"12ec9b93ee": {
"giant_panda": {
"5": null,
"12": null,
"24": null,
"31": null
}
},
"12eebedc35": {
"bird": {
"3": null,
"5": null,
"8": null,
"13": null
}
},
"132852e094": {
"fox": {
"6": null,
"7": null,
"13": null,
"21": null
}
},
"1329409f2a": {
"fish": {
"8": null,
"14": null,
"23": null,
"31": null
}
},
"13325cfa14": {
"person": {
"5": null,
"6": null,
"11": null,
"17": null
},
"umbrella": {
"5": null,
"6": null,
"11": null,
"17": null
}
},
"1336440745": {
"mouse": {
"2": null,
"14": null,
"24": "1. the mouse climbing the enclosure wall with its front paws extended upward \n2. the mouse partially emerging from a tunnel, its head and upper body protruding forward",
"30": null
}
},
"134d06dbf9": {
"cat": {
"4": null,
"9": null,
"13": null,
"16": null
}
},
"135625b53d": {
"parrot": {
"5": null,
"10": null,
"16": null,
"22": null
},
"hand": {
"5": null,
"10": null,
"16": null,
"22": null
}
},
"13870016f9": {
"cow": {
"2": null,
"7": null,
"8": null,
"14": null
},
"person": {
"2": null,
"7": null,
"8": null,
"14": null
}
},
"13960b3c84": {
"giraffe": {
"4": null,
"9": "1. the giraffe extending its neck forward while looking downward \n2. the giraffe tilting its neck slightly to the side with its head facing forward \n3. the giraffe lowering its head closer to the ground, as if inspecting the terrain ",
"12": "1. the giraffe lowering its head and neck to inspect an object on the ground \n2. the giraffe standing still with its head slightly turned toward its surroundings \n3. the giraffe lowering its head while closely nudging its snout against the ground ",
"15": "1. the giraffe lowering its head slightly, appearing to focus forward \n2. the giraffe tilting its head downward, appearing to reach toward the ground \n3. the giraffe extending its neck while raising its head, interacting with the elevated rocky surface "
}
},
"13adaad9d9": {
"giant_panda": {
"2": null,
"13": null,
"21": null,
"31": null
}
},
"13ae097e20": {
"giant_panda": {
"7": null,
"11": null,
"23": null,
"30": null
}
},
"13e3070469": {
"zebra": {
"4": null,
"6": "1. lowering its head to graze on the grass. \n2. standing still with its body positioned close to the larger zebra nearby. \n3. walking forward, with its head slightly lowered. ",
"13": null,
"15": null
}
},
"13f6a8c20d": {
"fish": {
"3": null,
"8": null,
"15": null,
"23": null
}
},
"1416925cf2": {
"truck": {
"3": "1. A truck with a trailer receiving a stream of harvested crop material directed into it. \n2. A forage harvester expelling harvested crop material through its chute into the trailer of another truck. ",
"6": "1. the truck collecting harvested material being discharged into its container via a chute \n2. the truck operating a harvester arm actively cutting tall crops while transferring them to another truck ",
"8": "1. the truck receiving chopped crop material being ejected from a pipe \n2. the truck ejecting a stream of chopped crop material through an elevated pipe",
"11": "1. the truck receiving a flow of harvested material into its open container from an agricultural chute \n2. the truck's chute expelling a stream of harvested material into the container of another truck"
}
},
"142d2621f5": {
"motorbike": {
"4": null,
"6": null,
"8": null,
"11": null
},
"person": {
"4": "1. the person grasping the rear section of the motorcycle while leaning forward \n2. the person crouching over the motorcycle and holding the handlebars",
"6": "1. a person standing in the mud, leaning forward and extending their arm towards the motorcycle. \n2. a person bent over the motorcycle, gripping the handlebar and exerting force to assist in moving it through the mud. ",
"8": "1. leaning forward while supporting the motorcycle with their leg planted in the mud \n2. gripping the motorcycle's handlebar with both hands while leaning down in a forward position",
"11": "1. bending forward while grasping the rear side of a motorbike \n2. leaning over the motorbike while holding its handlebars"
}
},
"145d5d7c03": {
"giant_panda": {
"5": null,
"14": null,
"20": null,
"28": null
}
},
"145fdc3ac5": {
"lizard": {
"2": null,
"11": null,
"23": null,
"30": null
}
},
"1471274fa7": {
"person": {
"2": null,
"6": null,
"8": null,
"13": null
}
},
"14a6b5a139": {
"fish": {
"7": null,
"12": null,
"20": null,
"31": null
}
},
"14c21cea0d": {
"monkey": {
"3": null,
"15": null,
"20": null,
"31": null
}
},
"14dae0dc93": {
"person": {
"5": null,
"6": null,
"10": null,
"16": null
},
"umbrella": {
"5": null,
"6": null,
"10": null,
"16": null
}
},
"14f9bd22b5": {
"tiger": {
"5": null,
"12": null,
"22": null,
"30": null
}
},
"14fd28ae99": {
"parrot": {
"7": null,
"15": null,
"21": null,
"30": null
},
"hand": {
"7": null,
"15": null,
"21": null,
"30": null
}
},
"15097d5d4e": {
"parrot": {
"2": null,
"10": null,
"18": null,
"26": null
},
"hand": {
"2": null,
"10": null,
"18": null,
"26": null
}
},
"150ea711f2": {
"whale": {
"4": null,
"15": null,
"19": null,
"32": null
}
},
"1514e3563f": {
"earless_seal": {
"2": "1. the earless seal moving its head above the water surface, with whiskers spread outward \n2. the earless seal raising its left flipper out of the water while floating upright",
"11": null,
"19": null,
"28": null
}
},
"152aaa3a9e": {
"raccoon": {
"5": null,
"12": null,
"25": null,
"32": null
}
},
"152b7d3bd7": {
"giant_panda": {
"3": null,
"8": null,
"18": null,
"20": null
}
},
"15617297cc": {
"surfboard": {
"9": null,
"17": null,
"19": null,
"30": null
},
"person": {
"9": null,
"17": null,
"19": null,
"30": null
}
},
"15abbe0c52": {
"skateboard": {
"7": null,
"8": null,
"17": null,
"20": null
},
"person": {
"7": null,
"8": null,
"17": null,
"20": null
}
},
"15d1fb3de5": {
"cat": {
"4": null,
"12": null,
"22": null,
"28": null
},
"owl": {
"4": null,
"12": null,
"22": null,
"28": null
}
},
"15f67b0fab": {
"skateboard": {
"7": null,
"13": null,
"20": null,
"33": null
},
"person": {
"7": null,
"13": null,
"20": null,
"33": null
}
},
"161eb59aad": {
"cow": {
"5": null,
"6": null,
"10": null,
"16": null
},
"giraffe": {
"5": null,
"6": null,
"10": null,
"16": null
}
},
"16288ea47f": {
"duck": {
"2": "1. the duck grooming its feathers using its beak \n2. the duck submerging its head into the water",
"14": "1. the duck leaning forward with its beak close to its own feathers, appearing to preen \n2. the duck submerging its head partially in water within the container",
"21": "1. the duck curling its body while resting in a green container \n2. the duck partially submerged in a water-filled container",
"32": "1. the duck resting in a green container with its neck slightly curved downward \n\n2. the duck submerging its head partially into the water inside a rectangular container"
}
},
"164410ce62": {
"person": {
"3": null,
"6": null,
"9": null,
"16": null
}
},
"165c3c8cd4": {
"person": {
"2": null,
"7": "1. the person walking forward beside a motorcycle while holding an object in one hand \n2. the person standing next to a motorcycle while holding the handlebars \n3. the person standing upright with arms relaxed at their sides",
"13": "1. walking forward while approaching the motorcycles \n2. walking forward while holding a shoulder bag \n3. standing still with hands clasped behind their back ",
"16": "1. walking forward among parked motorcycles \n2. carrying a shoulder bag while walking away \n3. standing with both hands clasped behind the back"
}
},
"165c42b41b": {
"motorbike": {
"2": null,
"5": null,
"9": null,
"15": null
},
"person": {
"2": null,
"5": null,
"9": null,
"15": null
}
},
"165ec9e22b": {
"person": {
"5": null,
"9": null,
"17": null,
"23": null
}
},
"1669502269": {
"person": {
"4": null,
"7": null,
"9": null,
"16": null
}
},
"16763cccbb": {
"ape": {
"5": null,
"12": null,
"16": null,
"25": null
}
},
"16adde065e": {
"hat": {
"3": null,
"6": null,
"13": null,
"17": null
},
"cat": {
"3": null,
"6": null,
"13": null,
"17": null
},
"person": {
"3": null,
"6": null,
"13": null,
"17": null
}
},
"16af445362": {
"airplane": {
"3": null,
"6": null,
"13": null,
"16": null
}
},
"16afd538ad": {
"parrot": {
"2": null,
"8": null,
"14": null,
"23": null
}
},
"16c3fa4d5d": {
"sedan": {
"2": null,
"6": null,
"12": null,
"17": null
}
},
"16d1d65c27": {
"monkey": {
"7": null,
"12": null,
"21": null,
"31": null
}
},
"16e8599e94": {
"giant_panda": {
"3": null,
"17": null,
"21": null,
"28": null
}
},
"16fe9fb444": {
"motorbike": {
"4": null,
"6": null,
"8": null,
"16": null
},
"person": {
"4": null,
"6": null,
"8": null,
"16": null
}
},
"1705796b02": {
"train": {
"4": null,
"7": null,
"12": null,
"15": null
}
},
"1724db7671": {
"giant_panda": {
"6": null,
"13": null,
"19": null,
"24": null
}
},
"17418e81ea": {
"shark": {
"4": null,
"14": null,
"16": null,
"25": null
}
},
"175169edbb": {
"ape": {
"6": "1. the ape raising its left arm and leaning its body forward toward the other ape \n2. the ape lying on its back, grasping a stick with its right hand",
"9": "1. the ape leaning forward and touching or grasping the body of the other ape with one arm \n2. the ape lying on its back and extending one arm upward while in contact with the other ape ",
"19": "1. the ape standing while leaning its body over another, with its forearm pushing or supporting its weight on the ground. \n2. the ape lying on its back, grasping and pulling on the forearm of the other ape with both hands.",
"20": "1. the ape leaning downward with its head positioned near the other ape, possibly sniffing or observing closely \n2. the ape lying on its back, grasping and inspecting a piece of straw with one hand "
}
},
"17622326fd": {
"lizard": {
"2": null,
"15": null,
"23": null,
"26": null
}
},
"17656bae77": {
"elephant": {
"3": null,
"6": null,
"8": null,
"11": null
}
},
"17b0d94172": {
"airplane": {
"3": null,
"5": null,
"7": null,
"8": null
}
},
"17c220e4f6": {
"giant_panda": {
"2": null,
"15": null,
"25": null,
"31": null
}
},
"17c7bcd146": {
"train": {
"4": null,
"9": null,
"10": null,
"17": null
}
},
"17cb4afe89": {
"tiger": {
"7": null,
"13": null,
"21": null,
"30": null
}
},
"17cd79a434": {
"squirrel": {
"3": null,
"17": null,
"19": null,
"32": null
}
},
"17d18604c3": {
"plant": {
"3": null,
"7": null,
"10": null,
"16": null
},
"person": {
"3": "1. holding and adjusting a potted tree with both hands \n2. standing with arms crossed, observing the scene",
"7": "1. leaning forward and reaching with both hands toward a bonsai tree on a table \n2. standing upright with arms crossed, observing the surroundings",
"10": "1. leaning forward slightly while clasping hands near its torso \n2. standing upright with arms crossed over chest",
"16": null
}
},
"17d8ca1a37": {
"person": {
"7": null,
"10": null,
"17": null,
"21": null
},
"owl": {
"7": null,
"10": null,
"17": null,
"21": null
}
},
"17e33f4330": {
"monkey": {
"7": null,
"14": null,
"21": null,
"31": null
}
},
"17f7a6d805": {
"snail": {
"3": null,
"8": null,
"17": null,
"27": null
}
},
"180abc8378": {
"person": {
"4": null,
"14": null,
"22": null,
"30": null
},
"owl": {
"4": null,
"14": null,
"22": null,
"30": null
}
},
"183ba3d652": {
"hat": {
"2": null,
"7": null,
"12": null,
"17": null
},
"motorbike": {
"2": null,
"7": null,
"12": null,
"17": null
},
"person": {
"2": null,
"7": null,
"12": null,
"17": null
}
},
"185bf64702": {
"zebra": {
"2": null,
"9": null,
"11": null,
"17": null
}
},
"18913cc690": {
"train": {
"3": null,
"5": null,
"8": null,
"12": null
}
},
"1892651815": {
"camel": {
"2": null,
"13": null,
"23": null,
"29": null
}
},
"189ac8208a": {
"giraffe": {
"2": "1. the giraffe standing upright while facing toward a hanging feeder \n2. the giraffe extending its neck upward to reach a hanging feeder",
"5": "1. the giraffe standing upright, facing a feeding platform without visible direct interaction \n2. the giraffe extending its neck upward, reaching toward the feeding platform",
"9": "1. the giraffe standing still with its body facing straight while looking slightly upward \n2. the giraffe lowering its head and extending its neck toward a feeding platform ",
"13": "1. the giraffe standing upright, facing forward \n2. the giraffe extending its neck and reaching upward toward a hay-filled feeding basket"
}
},
"189b44e92c": {
"zebra": {
"5": null,
"8": null,
"11": null,
"16": null
}
},
"18ac264b76": {
"skateboard": {
"2": null,
"10": null,
"18": null,
"25": null
},
"person": {
"2": null,
"10": null,
"18": null,
"25": null
}
},
"18b245ab49": {
"penguin": {
"2": "1. the penguin standing upright with its wings slightly spread downward \n2. the penguin bending forward, pecking at the snow-covered ground \n3. the penguin crouching low and leaning toward the ground with its beak close to the surface \n4. the penguin standing still, facing forward with a rigid posture ",
"7": "1. the penguin pecking at the snow-covered ground with its beak \n2. the penguin lowering its head toward the snow, appearing to inspect or nibble at it \n3. the penguin crouching low and extending its beak toward the snowy surface \n4. the penguin standing upright with its body slightly tilted forward, gazing downward",
"9": "1. the penguin extending its flipper forward while leaning slightly upward \n2. the penguin crouching low to the ground, facing downward \n3. the penguin sitting on the ground while tilting its head slightly to the side \n4. the penguin standing upright, tilting its head slightly downward",
"14": "1. the penguin lying on its belly and extending its beak forward toward the snow \n2. the penguin leaning forward and pecking at the snow with its beak \n3. the penguin standing upright and turning its head slightly to the side \n4. the penguin standing upright and facing forward while remaining stationary "
}
},
"18b5cebc34": {
"mouse": {
"2": null,
"12": null,
"14": null,
"23": null
}
},
"18bad52083": {
"parrot": {
"5": "1. the parrot lowering its head toward a metallic bowl, appearing to inspect or peck at it \n2. the parrot perched on a wooden surface, gripping it with its claws while slightly leaning forward",
"12": null,
"22": "1. the parrot partially leaning over a metallic bowl \n2. the parrot perched on a wooden stand while gripping a green handle with its claws ",
"28": "1. the parrot pecking at a metallic bowl with its beak \n2. the parrot gripping a wooden perch with its claws while standing upright "
}
},
"18bb5144d5": {
"lizard": {
"9": null,
"14": null,
"25": null,
"33": null
}
},
"18c6f205c5": {
"person": {
"3": "1. standing at the front of the boat, holding a drumstick and striking a drum. \n2. paddling vigorously in synchronization with others using a rowing paddle. \n3. standing at the front of the boat, holding a drumstick and striking a drum. ",
"7": "1. standing and striking a drum with a stick on the front of a boat \n2. standing and pulling a rope near the front of a boat \n3. sitting and holding a paddle, rowing the boat",
"13": "1. standing at the front of the boat, holding a drumstick and beating a drum rhythmically.\n\n2. sitting in the boat, paddling forcefully with a paddle in coordination with others.\n\n3. standing at the back of the boat, steering with a long oar.",
"15": "1. actively drumming on a barrel-like object with one hand raised and the other holding a drumstick \n2. paddling in unison with others, pulling the paddle through the water forcefully \n3. holding and pushing a paddle into the water while rowing the boat"
}
},
"1903f9ea15": {
"bird": {
"2": "1. pecking at a dangling leaf from above. \n2. perching on a horizontal branch while facing forward. ",
"7": null,
"13": null,
"15": null
}
},
"1917b209f2": {
"horse": {
"4": null,
"6": null,
"9": null,
"16": null
},
"cow": {
"4": "3. a cow turning its head downward while standing still \n4. a cow standing upright with its head raised and looking forward",
"6": null,
"9": null,
"16": null
},
"person": {
"4": null,
"6": null,
"9": null,
"16": null
}
},
"191e74c01d": {
"deer": {
"3": null,
"10": null,
"17": null,
"25": null
}
},
"19367bb94e": {
"fish": {
"7": null,
"12": null,
"18": null,
"28": null
}
},
"193ffaa217": {
"person": {
"3": null,
"5": null,
"10": null,
"11": null
}
},
"19696b67d3": {
"cow": {
"3": null,
"6": null,
"10": null,
"17": null
}
},
"197f3ab6f3": {
"giant_panda": {
"4": null,
"10": null,
"18": null,
"31": null
}
},
"1981e763cc": {
"sheep": {
"5": "1. the sheep standing still with its head slightly lowered, facing forward \n2. the sheep turning its head upward and to the side while positioned on a rock",
"15": "1. the sheep standing still on a rock, with its head facing forward \n2. the sheep slightly leaning forward, stretching its neck to inspect or interact with a metallic arch",
"18": null,
"29": "1. the sheep lowering its head and appearing to graze or inspect the rock surface with its mouth \n2. the sheep standing upright and extending its neck upwards, reaching towards a curved metal structure "
}
},
"198afe39ae": {
"surfboard": {
"7": null,
"13": null,
"17": null,
"20": null
},
"person": {
"7": null,
"13": null,
"17": null,
"20": null
}
},
"19a6e62b9b": {
"monkey": {
"7": null,
"10": null,
"18": null,
"27": null
}
},
"19b60d5335": {
"hand": {
"5": null,
"14": null,
"24": null,
"31": null
},
"hedgehog": {
"5": null,
"14": null,
"24": null,
"31": null
}
},
"19c00c11f9": {
"surfboard": {
"7": null,
"11": null,
"18": null,
"27": null
},
"person": {
"7": null,
"11": null,
"18": null,
"27": null
}
},
"19e061eb88": {
"boat": {
"4": null,
"7": null,
"9": null,
"16": null
}
},
"19e8bc6178": {
"dog": {
"3": null,
"5": null,
"10": null,
"15": null
}
},
"19ee80dac6": {
"surfboard": {
"6": null,
"13": null,
"23": null,
"32": null
},
"person": {
"6": "1. riding a wave on a surfboard, leaning forward with their body balanced. \n3. lying on a surfboard in the water, paddling with arms extended forward. \n4. lying on a surfboard in the water, paddling with arms stroking alternately. ",
"13": "1. standing on a surfboard while maintaining balance atop a wave \n3. swimming in the water with arms extended forward \n4. sitting on a surfboard holding the edges with both hands",
"23": null,
"32": null
}
},
"1a25a9170a": {
"cow": {
"5": null,
"15": null,
"25": null,
"30": null
},
"person": {
"5": "2. a person gripping the horns of a bull while mounted on its back. \n3. a person extending both arms outward, seemingly directing or gesturing toward the bull. ",
"15": "2. a person seated on a bull, gripping its back tightly with one hand while extending the other arm for balance \n3. a person standing upright, observing the bull and rider, with arms relaxed alongside the body",
"25": "2. the person riding a bull while grasping it with one hand and raising the other arm \n3. the person standing on the ground facing the bull without performing any visible prominent action ",
"30": "2. a person seated on a bull, holding the grip of a rope with one hand while the other arm is dynamically extended outward \n3. a person standing while facing the bull rider, with one arm hanging down and the other slightly bent"
}
},
"1a359a6c1a": {
"sheep": {
"3": null,
"10": null,
"17": null,
"24": null
}
},
"1a3e87c566": {
"frog": {
"4": null,
"8": null,
"16": null,
"23": null
}
},
"1a5fe06b00": {
"bus": {
"4": null,
"6": null,
"8": null,
"11": null
}
},
"1a6c0fbd1e": {
"skateboard": {
"4": null,
"11": null,
"17": null,
"23": null
},
"person": {
"4": null,
"11": null,
"17": null,
"23": null
}
},
"1a6f3b5a4b": {
"bike": {
"5": null,
"7": null,
"10": null,
"16": null
},
"hand": {
"5": null,
"7": null,
"10": null,
"16": null
},
"sedan": {
"5": null,
"7": null,
"10": null,
"16": null
}
},
"1a8afbad92": {
"zebra": {
"2": null,
"6": null,
"8": "1. a zebra leaping forward with its front legs extended, while its hind legs push off the ground \n2. a zebra galloping forward with all four legs in motion, creating visible dust trails",
"13": null
}
},
"1a8bdc5842": {
"parrot": {
"5": null,
"13": null,
"18": null,
"27": "1. the parrot twisting its body to groom its wing with its beak \n2. the parrot standing upright on the wooden perch, leaning slightly forward "
}
},
"1a95752aca": {
"duck": {
"5": "1. the duck opening its beak toward the hand holding food \n2. the duck extending its neck while pecking at the food in the hand ",
"9": "1. the duck opening its beak widely while attempting to grasp a piece of food from a human hand \n2. the duck leaning forward while observing the food interaction nearby",
"18": "1. the duck extending its neck while leaning forward toward the water's edge \n2. the duck grasping a piece of bread with its beak from a human hand",
"24": null
}
},
"1a9c131cb7": {
"ape": {
"7": "1. the ape leaning forward with its body curved down, reaching towards the ground or grass with its front limb \n2. the ape pulling the arm of another ape with its hand while crouching low \n3. the ape squatting in a seated posture, with its arms relaxed and resting near its body",
"16": "1. the ape leaning forward, using its front limb to push or press against the back of another ape lying on the ground \n2. the ape lying on its side in the grass, remaining stationary \n3. the ape sitting upright against the wall, holding one hand close to its face as if shielding or covering it",
"22": "1. the ape grasping another ape's face with its hand \n2. the ape lying on its side while being touched by another ape \n3. the ape sitting against the wall with one hand covering its mouth",
"29": "1. The ape bending forward and extending its arm, appearing to touch or inspect the ground closely. \n2. The ape leaning forward with its head lowered, appearing to dig or grasp at the grass with its hands. \n3. The ape sitting against the wall, holding its hand over its face in a resting posture. "
}
},
"1aa3da3ee3": {
"sheep": {
"3": null,
"11": null,
"15": null,
"22": null
}
},
"1ab27ec7ea": {
"deer": {
"2": null,
"5": null,
"6": null,
"8": null
}
},
"1abf16d21d": {
"turtle": {
"3": null,
"12": null,
"18": null,
"27": null
}
},
"1acd0f993b": {
"dog": {
"7": null,
"14": null,
"25": null,
"26": null
},
"frisbee": {
"7": null,
"14": null,
"25": null,
"26": null
},
"person": {
"7": null,
"14": null,
"25": null,
"26": null
}
},
"1ad202e499": {
"lizard": {
"5": "1. the lizard grasping another lizard's body with its front limbs \n2. the lizard extending its body upward while being held",
"13": "1. the lizard arching its body while pressing its right side against the other lizard \n2. the lizard leaning forward and clasping the body of the other lizard with its front limbs ",
"25": null,
"29": "1. the lizard lifting its front body and pressing against the side of another lizard using its head and upper body \n2. the lizard standing upright while leaning its body forward, pressing its front limbs against another lizard "
}
},
"1af8d2395d": {
"airplane": {
"7": null,
"11": null,
"22": null,
"30": null
},
"person": {
"7": null,
"11": "1. Person 1 holding onto the harness straps while free-falling during a tandem skydive. \n2. Person 2 extending their limbs outward in a spread position and stabilizing their tandem partner during free-fall.",
"22": "1. the person gripping the straps of their harness while leaning forward mid-air \n2. the person holding the harness straps of the individual in front while stabilizing their body mid-air",
"30": "1. the person with extended arms and an open mouth, free-falling in a skydive \n2. the person in a tandem skydive, gripping the harness and positioned above another person"
},
"parachute": {
"7": null,
"11": null,
"22": null,
"30": null
}
},
"1afd39a1fa": {
"motorbike": {
"3": null,
"6": null,
"10": null,
"13": null
},
"hand": {
"3": null,
"6": null,
"10": null,
"13": null
}
},
"1b2d31306f": {
"lizard": {
"9": null,
"17": null,
"25": null,
"30": null
}
},
"1b3fa67f0e": {
"airplane": {
"3": null,
"5": null,
"10": null,
"11": null
}
},
"1b43fa74b4": {
"owl": {
"5": null,
"12": null,
"16": null,
"21": null
}
},
"1b73ea9fc2": {
"parrot": {
"4": null,
"7": null,
"9": null,
"11": null
}
},
"1b7e8bb255": {
"hat": {
"3": null,
"6": null,
"10": null,
"17": null
},
"skateboard": {
"3": null,
"6": null,
"10": null,
"17": null
},
"person": {
"3": null,
"6": null,
"10": null,
"17": null
}
},
"1b8680f8cd": {
"tennis_racket": {
"5": null,
"9": null,
"14": null,
"20": null
},
"person": {
"5": "2. standing in a ready athletic stance, leaning slightly forward with legs bent, preparing to receive the ball \n3. holding a tennis racket and swinging it forward, aiming to hit the ball",
"9": "2. holding a tennis racket with both hands, preparing to swing \n3. holding a tennis racket with one hand, stepping forward",
"14": "2. a person holding a tennis racket and swinging it forward in an overhead motion \n3. a person standing with knees bent and arms outstretched, appearing ready to receive or react",
"20": "2. holding a tennis racket with one hand while standing in a ready position \n3. leaning forward and holding a tennis racket with both hands"
}
},
"1b883843c0": {
"person": {
"3": "1. cycling while gripping the bike's handlebars, with an open-mouthed expression suggesting talking or shouting \n2. cycling while leaning forward and supporting a backpack strapped to the shoulders ",
"5": null,
"10": null,
"14": null
}
},
"1b8898785b": {
"monkey": {
"2": "1. the monkey hanging from a horizontal wooden bar using both arms \n2. the monkey crouching on top of a horizontal wooden bar",
"14": "1. the monkey hanging from the horizontal wooden bar using one arm \n2. the monkey crouching atop the vertical wooden post while holding onto the horizontal bar with at least one arm",
"20": "1. a monkey hanging with one arm from a horizontal wooden beam while extending its legs outward \n2. a monkey crouching on top of the wooden beam while gripping it with its front limbs",
"27": "1. the monkey climbing a vertical wooden pole with its limbs gripping the structure \n2. the monkey crouched on the horizontal wooden beam, balancing while looking downward "
}
},
"1b88ba1aa4": {
"giant_panda": {
"7": null,
"17": null,
"21": null,
"29": null
}
},
"1b96a498e5": {
"ape": {
"4": null,
"10": null,
"15": null,
"22": null
}
},
"1bbc4c274f": {
"fish": {
"3": null,
"9": null,
"13": null,
"16": null
}
},
"1bd87fe9ab": {
"train": {
"2": null,
"5": null,
"6": null,
"9": null
}
},
"1c4090c75b": {
"whale": {
"5": null,
"14": null,
"21": null,
"31": null
}
},
"1c41934f84": {
"elephant": {
"3": null,
"8": null,
"13": null,
"16": null
}
},
"1c72b04b56": {
"lion": {
"9": null,
"11": null,
"20": null,
"26": null
}
},
"1c87955a3a": {
"turtle": {
"4": null,
"11": null,
"17": null,
"24": null
},
"crocodile": {
"4": null,
"11": null,
"17": null,
"24": null
}
},
"1c9f9eb792": {
"skateboard": {
"6": null,
"11": null,
"24": null,
"32": null
},
"person": {
"6": null,
"11": null,
"24": null,
"32": null
}
},
"1ca240fede": {
"train": {
"4": null,
"6": null,
"12": null,
"17": null
}
},
"1ca5673803": {
"tennis_racket": {
"8": null,
"16": null,
"21": null,
"27": null
},
"person": {
"8": "1. holding a tennis racket with one hand while preparing for an action. \n3. holding a tennis racket with both hands and appearing to swing it toward the ball.",
"16": "1. swinging a tennis racket forward in a striking motion \n3. standing with legs bent while holding a tennis racket in both hands ",
"21": "1. crouching and holding a tennis racket with both hands while leaning forward \n3. standing upright and holding a tennis racket with one hand",
"27": "1. person leaning forward with both hands gripping a tennis racket. \n3. person standing upright while holding a tennis racket in one hand."
}
},
"1cada35274": {
"duck": {
"9": null,
"15": null,
"24": null,
"30": null
}
},
"1cb44b920d": {
"eagle": {
"2": "1. the eagle leaning forward and pecking at the nest material \n2. the eagle lying still within the nest, appearing motionless",
"14": "1. the eagle lowering its head toward the smaller eagle while gripping the nest with its talons \n2. the eagle raising its head slightly upward, facing the larger eagle",
"21": "1. the eagle leaning forward, using its beak to closely probe or inspect the area near the smaller eagle \n2. the smaller eagle holding a piece of food in its beak, tilting its head forward",
"27": "1. the eagle leaning its head forward towards the second eagle while slightly lowering its beak, as if inspecting or reaching for it \n2. the eagle chick holding its position low in the nest, with its beak slightly open"
}
},
"1cd10e62be": {
"leopard": {
"2": null,
"10": null,
"15": null,
"27": null
}
},
"1d3087d5e5": {
"fish": {
"5": null,
"15": null,
"23": null,
"30": null
}
},
"1d3685150a": {
"sign": {
"4": null,
"6": null,
"10": null,
"16": null
},
"person": {
"4": "1. the person holding a cane and walking forward \n3. the person holding a vessel in their right hand and walking",
"6": null,
"10": "1. holding a stick in one hand while standing still. \n3. walking forward with arms relaxed by the sides. ",
"16": null
}
},
"1d6ff083aa": {
"person": {
"5": null,
"8": "1. bending forward and reaching toward an object on the ground with one hand \n2. partially extending an arm outward while leaning slightly over a surface",
"11": "1. a person crouching while reaching their left arm forward toward the ground or an object \n2. a person extending their arm forward, grasping or holding a book from a shelf ",
"14": "1. leaning forward with hands extended, appearing mid-motion \n2. gripping or pressing a reflective metallic object with one hand"
}
}
} |