File size: 74,808 Bytes
556f466 |
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 |
[
{
"video": "00001.mp4",
"question": "What happened after the person took the food?",
"candidates": [
"Ate the medicine.",
"Tidied up the blanket.",
"Put down the cup/glass/bottle.",
"Took the box."
],
"answer": "Ate the medicine.",
"start": 1.5,
"end": 17.1
},
{
"video": "00002.mp4",
"question": "What happened before the person watched at the book?",
"candidates": [
"Tidied up the table.",
"Took the phone/camera.",
"Opened the closet/cabinet.",
"Washed the table."
],
"answer": "Opened the closet/cabinet.",
"start": 0.5,
"end": 11.0
},
{
"video": "00003.mp4",
"question": "What happened before the person watched at the book?",
"candidates": [
"Put down the sandwich.",
"Washed the table.",
"Opened the closet/cabinet.",
"Put down the pillow."
],
"answer": "Opened the closet/cabinet.",
"start": 14.2,
"end": 30.4
},
{
"video": "00004.mp4",
"question": "What happened after the person put down the clothes?",
"candidates": [
"Took the broom.",
"Took the blanket.",
"Opened the door.",
"Threw the towel."
],
"answer": "Threw the towel.",
"start": 3.2,
"end": 11.4
},
{
"video": "00005.mp4",
"question": "What happened after the person held the shoe?",
"candidates": [
"Opened the closet/cabinet.",
"Threw the broom.",
"Sat on the sofa/couch.",
"Washed the clothes."
],
"answer": "Sat on the sofa/couch.",
"start": 5.0,
"end": 12.3
},
{
"video": "00006.mp4",
"question": "What happened after the person held the phone/camera?",
"candidates": [
"Closed the refrigerator.",
"Put down the towel.",
"Put down the laptop.",
"Opened the window."
],
"answer": "Put down the towel.",
"start": 0.0,
"end": 10.7
},
{
"video": "00007.mp4",
"question": "What happened after the person took the phone/camera?",
"candidates": [
"Took the book.",
"Put down the pillow.",
"Closed the window.",
"Took the food."
],
"answer": "Closed the window.",
"start": 19.5,
"end": 29.3
},
{
"video": "00008.mp4",
"question": "What happened after the person opened the box?",
"candidates": [
"Threw the clothes.",
"Put down the food.",
"Sat at the table.",
"Put down the paper/notebook."
],
"answer": "Put down the paper/notebook.",
"start": 22.1,
"end": 36.2
},
{
"video": "00009.mp4",
"question": "What happened after the person sat on the bed?",
"candidates": [
"Took the phone/camera.",
"Opened the window.",
"Took the pillow.",
"Put down the broom."
],
"answer": "Put down the broom.",
"start": 0.0,
"end": 14.7
},
{
"video": "00010.mp4",
"question": "What happened before the person took the clothes?",
"candidates": [
"Threw the book.",
"Put down the bag.",
"Opened the window.",
"Put down the cup/glass/bottle."
],
"answer": "Put down the bag.",
"start": 5.6,
"end": 16.4
},
{
"video": "00011.mp4",
"question": "What happened before the person sat on the sofa/couch?",
"candidates": [
"Put down the laptop.",
"Took the paper/notebook.",
"Put down the pillow.",
"Ate the medicine."
],
"answer": "Put down the laptop.",
"start": 0.0,
"end": 7.4
},
{
"video": "00012.mp4",
"question": "What happened after the person held the blanket?",
"candidates": [
"Tidied up the table.",
"Took the dish.",
"Opened the window.",
"Took the pillow."
],
"answer": "Tidied up the table.",
"start": 0.0,
"end": 8.8
},
{
"video": "00013.mp4",
"question": "What happened before the person held the food?",
"candidates": [
"Put down the clothes.",
"Opened the laptop.",
"Put down the food.",
"Took the dish."
],
"answer": "Opened the laptop.",
"start": 0.0,
"end": 9.4
},
{
"video": "00014.mp4",
"question": "What happened after the person held the dish?",
"candidates": [
"Sat on the bed.",
"Ate the sandwich.",
"Put down the food.",
"Took the food."
],
"answer": "Put down the food.",
"start": 0.0,
"end": 17.7
},
{
"video": "00015.mp4",
"question": "What happened after the person sat on the sofa/couch?",
"candidates": [
"Ate the sandwich.",
"Put down the pillow.",
"Washed the clothes.",
"Took the bag."
],
"answer": "Took the bag.",
"start": 0.8,
"end": 13.0
},
{
"video": "00016.mp4",
"question": "What happened before the person threw the clothes?",
"candidates": [
"Opened the bag.",
"Took the shoe.",
"Threw the food.",
"Tidied up the blanket."
],
"answer": "Tidied up the blanket.",
"start": 7.8,
"end": 15.6
},
{
"video": "00017.mp4",
"question": "What happened after the person took the dish?",
"candidates": [
"Threw the shoe.",
"Put down the food.",
"Threw the pillow.",
"Tidied up the table."
],
"answer": "Tidied up the table.",
"start": 28.5,
"end": 37.0
},
{
"video": "00018.mp4",
"question": "What happened after the person sat at the table?",
"candidates": [
"Put down the cup/glass/bottle.",
"Opened the box.",
"Opened the window.",
"Closed the book."
],
"answer": "Closed the book.",
"start": 0.0,
"end": 11.5
},
{
"video": "00019.mp4",
"question": "What happened before the person took the towel?",
"candidates": [
"Closed the closet/cabinet.",
"Threw the clothes.",
"Lied on the bed.",
"Lied on the sofa/couch."
],
"answer": "Closed the closet/cabinet.",
"start": 12.3,
"end": 20.1
},
{
"video": "00020.mp4",
"question": "What happened after the person put down the food?",
"candidates": [
"Opened the bag.",
"Took the paper/notebook.",
"Threw the clothes.",
"Ate the sandwich."
],
"answer": "Took the paper/notebook.",
"start": 0.0,
"end": 16.7
},
{
"video": "00021.mp4",
"question": "What happened before the person watched at the book?",
"candidates": [
"Closed the window.",
"Took the paper/notebook.",
"Took the book.",
"Threw the shoe."
],
"answer": "Took the paper/notebook.",
"start": 16.9,
"end": 28.2
},
{
"video": "00022.mp4",
"question": "What happened before the person took the towel?",
"candidates": [
"Opened the bag.",
"Put down the phone/camera.",
"Threw the clothes.",
"Opened the closet/cabinet."
],
"answer": "Threw the clothes.",
"start": 3.4,
"end": 11.9
},
{
"video": "00023.mp4",
"question": "What happened before the person held the medicine?",
"candidates": [
"Took the dish.",
"Opened the box.",
"Threw the box.",
"Washed the window."
],
"answer": "Opened the box.",
"start": 5.0,
"end": 22.3
},
{
"video": "00024.mp4",
"question": "What happened before the person put down the clothes?",
"candidates": [
"Opened the window.",
"Tidied up the closet/cabinet.",
"Took the food.",
"Tidied up the blanket."
],
"answer": "Tidied up the blanket.",
"start": 3.0,
"end": 18.0
},
{
"video": "00025.mp4",
"question": "What happened after the person drank from the cup/glass/bottle?",
"candidates": [
"Put down the laptop.",
"Put down the cup/glass/bottle.",
"Put down the phone/camera.",
"Opened the book."
],
"answer": "Opened the book.",
"start": 1.8,
"end": 14.4
},
{
"video": "00026.mp4",
"question": "What happened before the person took the pillow?",
"candidates": [
"Sat on the floor.",
"Threw the blanket.",
"Threw the shoe.",
"Closed the door."
],
"answer": "Sat on the floor.",
"start": 0.0,
"end": 12.8
},
{
"video": "00027.mp4",
"question": "What happened before the person held the phone/camera?",
"candidates": [
"Took the laptop.",
"Sat on the sofa/couch.",
"Put down the shoe.",
"Put down the cup/glass/bottle."
],
"answer": "Took the laptop.",
"start": 1.9,
"end": 14.7
},
{
"video": "00028.mp4",
"question": "What happened before the person opened the closet/cabinet?",
"candidates": [
"Put down the dish.",
"Closed the box.",
"Closed the book.",
"Threw the shoe."
],
"answer": "Put down the dish.",
"start": 0.0,
"end": 15.1
},
{
"video": "00029.mp4",
"question": "What happened before the person closed the door?",
"candidates": [
"Put down the box.",
"Took the paper/notebook.",
"Took the towel.",
"Sat at the table."
],
"answer": "Took the towel.",
"start": 15.4,
"end": 28.3
},
{
"video": "00030.mp4",
"question": "What happened after the person held the dish?",
"candidates": [
"Put down the cup/glass/bottle.",
"Sat on the floor.",
"Took the cup/glass/bottle.",
"Threw the towel."
],
"answer": "Put down the cup/glass/bottle.",
"start": 0.0,
"end": 7.1
},
{
"video": "00031.mp4",
"question": "What happened before the person took the blanket?",
"candidates": [
"Sat on the sofa/couch.",
"Threw the box.",
"Put down the broom.",
"Opened the closet/cabinet."
],
"answer": "Sat on the sofa/couch.",
"start": 0.0,
"end": 17.9
},
{
"video": "00032.mp4",
"question": "What happened after the person sat at the table?",
"candidates": [
"Opened the book.",
"Opened the refrigerator.",
"Took the clothes.",
"Sat on the sofa/couch."
],
"answer": "Sat on the sofa/couch.",
"start": 2.6,
"end": 21.6
},
{
"video": "00033.mp4",
"question": "What happened after the person opened the closet/cabinet?",
"candidates": [
"Took the sandwich.",
"Took the dish.",
"Took the phone/camera.",
"Closed the door."
],
"answer": "Took the dish.",
"start": 3.5,
"end": 12.2
},
{
"video": "00034.mp4",
"question": "What happened after the person opened the bag?",
"candidates": [
"Put down the book.",
"Opened the book.",
"Took the book.",
"Put down the blanket."
],
"answer": "Put down the book.",
"start": 4.4,
"end": 17.0
},
{
"video": "00035.mp4",
"question": "What happened before the person held the food?",
"candidates": [
"Took the food.",
"Opened the bag.",
"Took the sandwich.",
"Tidied up the table."
],
"answer": "Opened the bag.",
"start": 15.6,
"end": 32.0
},
{
"video": "00036.mp4",
"question": "What happened before the person took the clothes?",
"candidates": [
"Washed the clothes.",
"Threw the blanket.",
"Took the towel.",
"Opened the bag."
],
"answer": "Threw the blanket.",
"start": 7.1,
"end": 21.2
},
{
"video": "00037.mp4",
"question": "What happened after the person held the sandwich?",
"candidates": [
"Took the cup/glass/bottle.",
"Put down the clothes.",
"Washed the clothes.",
"Opened the bag."
],
"answer": "Washed the clothes.",
"start": 0.0,
"end": 10.6
},
{
"video": "00038.mp4",
"question": "What happened before the person took the cup/glass/bottle?",
"candidates": [
"Threw the blanket.",
"Threw the box.",
"Put down the shoe.",
"Took the clothes."
],
"answer": "Threw the box.",
"start": 2.3,
"end": 12.3
},
{
"video": "00039.mp4",
"question": "What happened before the person held the food?",
"candidates": [
"Opened the bag.",
"Closed the closet/cabinet.",
"Opened the laptop.",
"Ate the sandwich."
],
"answer": "Closed the closet/cabinet.",
"start": 8.8,
"end": 16.9
},
{
"video": "00040.mp4",
"question": "What happened before the person opened the door?",
"candidates": [
"Tidied up the clothes.",
"Put down the bag.",
"Put down the food.",
"Opened the book."
],
"answer": "Put down the bag.",
"start": 4.3,
"end": 20.8
},
{
"video": "00041.mp4",
"question": "What happened before the person opened the door?",
"candidates": [
"Put down the paper/notebook.",
"Tidied up the blanket.",
"Sat on the floor.",
"Took the shoe."
],
"answer": "Sat on the floor.",
"start": 0.0,
"end": 18.4
},
{
"video": "00042.mp4",
"question": "What happened after the person opened the refrigerator?",
"candidates": [
"Closed the window.",
"Put down the cup/glass/bottle.",
"Took the paper/notebook.",
"Sat at the table."
],
"answer": "Took the paper/notebook.",
"start": 0.3,
"end": 20.0
},
{
"video": "00043.mp4",
"question": "What happened after the person drank from the cup/glass/bottle?",
"candidates": [
"Tidied up the table.",
"Took the bag.",
"Took the dish.",
"Threw the book."
],
"answer": "Tidied up the table.",
"start": 29.2,
"end": 37.0
},
{
"video": "00044.mp4",
"question": "What happened after the person closed the door?",
"candidates": [
"Put down the broom.",
"Put down the laptop.",
"Threw the shoe.",
"Took the picture."
],
"answer": "Threw the shoe.",
"start": 1.1,
"end": 10.5
},
{
"video": "00045.mp4",
"question": "What happened before the person took the cup/glass/bottle?",
"candidates": [
"Put down the dish.",
"Opened the book.",
"Put down the phone/camera.",
"Took the food."
],
"answer": "Put down the phone/camera.",
"start": 4.6,
"end": 12.4
},
{
"video": "00046.mp4",
"question": "What happened after the person held the food?",
"candidates": [
"Took the blanket.",
"Tidied up the table.",
"Took the book.",
"Threw the broom."
],
"answer": "Took the blanket.",
"start": 0.0,
"end": 12.5
},
{
"video": "00047.mp4",
"question": "What happened before the person washed the dish?",
"candidates": [
"Washed the table.",
"Took the cup/glass/bottle.",
"Tidied up the towel.",
"Put down the box."
],
"answer": "Put down the box.",
"start": 9.1,
"end": 27.7
},
{
"video": "00048.mp4",
"question": "What happened before the person held the mirror?",
"candidates": [
"Took the cup/glass/bottle.",
"Sat on the table.",
"Closed the closet/cabinet.",
"Opened the window."
],
"answer": "Closed the closet/cabinet.",
"start": 4.5,
"end": 16.4
},
{
"video": "00049.mp4",
"question": "What happened after the person put down the clothes?",
"candidates": [
"Tidied up the closet/cabinet.",
"Tidied up the blanket.",
"Took the phone/camera.",
"Sat on the table."
],
"answer": "Tidied up the blanket.",
"start": 0.7,
"end": 15.3
},
{
"video": "00050.mp4",
"question": "What happened after the person opened the bag?",
"candidates": [
"Sat at the table.",
"Tidied up the closet/cabinet.",
"Took the laptop.",
"Put down the cup/glass/bottle."
],
"answer": "Took the laptop.",
"start": 18.9,
"end": 29.9
},
{
"video": "00051.mp4",
"question": "What happened before the person closed the box?",
"candidates": [
"Put down the cup/glass/bottle.",
"Put down the towel.",
"Threw the box.",
"Sat on the sofa/couch."
],
"answer": "Put down the towel.",
"start": 21.1,
"end": 36.5
},
{
"video": "00052.mp4",
"question": "What happened after the person closed the door?",
"candidates": [
"Threw the broom.",
"Took the book.",
"Put down the phone/camera.",
"Put down the picture."
],
"answer": "Took the book.",
"start": 13.5,
"end": 30.0
},
{
"video": "00053.mp4",
"question": "What happened after the person put down the pillow?",
"candidates": [
"Took the picture.",
"Tidied up the table.",
"Sat on the floor.",
"Sat at the table."
],
"answer": "Took the picture.",
"start": 2.4,
"end": 17.6
},
{
"video": "00054.mp4",
"question": "What happened before the person took the blanket?",
"candidates": [
"Took the book.",
"Put down the dish.",
"Opened the closet/cabinet.",
"Put down the laptop."
],
"answer": "Put down the laptop.",
"start": 24.6,
"end": 35.0
},
{
"video": "00055.mp4",
"question": "What happened before the person put down the blanket?",
"candidates": [
"Took the bag.",
"Took the towel.",
"Tidied up the clothes.",
"Opened the box."
],
"answer": "Tidied up the clothes.",
"start": 15.6,
"end": 24.6
},
{
"video": "00056.mp4",
"question": "What happened after the person put down the clothes?",
"candidates": [
"Tidied up the blanket.",
"Threw the shoe.",
"Opened the door.",
"Put down the paper/notebook."
],
"answer": "Threw the shoe.",
"start": 5.5,
"end": 21.3
},
{
"video": "00057.mp4",
"question": "What happened after the person opened the book?",
"candidates": [
"Took the paper/notebook.",
"Put down the food.",
"Threw the clothes.",
"Took the dish."
],
"answer": "Took the paper/notebook.",
"start": 4.9,
"end": 13.9
},
{
"video": "00058.mp4",
"question": "What happened after the person sat on the floor?",
"candidates": [
"Put down the book.",
"Opened the bag.",
"Washed the clothes.",
"Took the picture."
],
"answer": "Opened the bag.",
"start": 0.0,
"end": 10.3
},
{
"video": "00059.mp4",
"question": "What happened before the person closed the book?",
"candidates": [
"Put down the phone/camera.",
"Sat at the table.",
"Put down the cup/glass/bottle.",
"Put down the broom."
],
"answer": "Put down the phone/camera.",
"start": 19.9,
"end": 27.6
},
{
"video": "00060.mp4",
"question": "What happened before the person closed the door?",
"candidates": [
"Lied on the bed.",
"Took the cup/glass/bottle.",
"Put down the blanket.",
"Closed the closet/cabinet."
],
"answer": "Lied on the bed.",
"start": 4.7,
"end": 19.7
},
{
"video": "00061.mp4",
"question": "What happened after the person closed the door?",
"candidates": [
"Took the food.",
"Put down the phone/camera.",
"Threw the book.",
"Put down the book."
],
"answer": "Put down the book.",
"start": 2.9,
"end": 14.2
},
{
"video": "00062.mp4",
"question": "What happened after the person watched at the picture?",
"candidates": [
"Opened the laptop.",
"Took the broom.",
"Opened the book.",
"Opened the closet/cabinet."
],
"answer": "Opened the book.",
"start": 3.8,
"end": 14.3
},
{
"video": "00063.mp4",
"question": "What happened after the person sat at the table?",
"candidates": [
"Put down the broom.",
"Put down the box.",
"Opened the door.",
"Closed the closet/cabinet."
],
"answer": "Put down the box.",
"start": 0.0,
"end": 13.1
},
{
"video": "00064.mp4",
"question": "What happened after the person held the dish?",
"candidates": [
"Ate the medicine.",
"Took the towel.",
"Took the phone/camera.",
"Took the paper/notebook."
],
"answer": "Took the paper/notebook.",
"start": 0.0,
"end": 7.3
},
{
"video": "00065.mp4",
"question": "What happened after the person put down the blanket?",
"candidates": [
"Took the pillow.",
"Washed the cup/glass/bottle.",
"Took the bag.",
"Washed the clothes."
],
"answer": "Washed the clothes.",
"start": 25.0,
"end": 34.0
},
{
"video": "00066.mp4",
"question": "What happened after the person put down the clothes?",
"candidates": [
"Opened the laptop.",
"Threw the broom.",
"Opened the door.",
"Closed the closet/cabinet."
],
"answer": "Opened the laptop.",
"start": 11.9,
"end": 28.1
},
{
"video": "00067.mp4",
"question": "What happened after the person took the phone/camera?",
"candidates": [
"Threw the bag.",
"Opened the bag.",
"Put down the food.",
"Put down the shoe."
],
"answer": "Put down the shoe.",
"start": 8.7,
"end": 21.4
},
{
"video": "00068.mp4",
"question": "What happened before the person held the sandwich?",
"candidates": [
"Sat at the table.",
"Put down the shoe.",
"Opened the laptop.",
"Ate the medicine."
],
"answer": "Sat at the table.",
"start": 5.2,
"end": 21.8
},
{
"video": "00069.mp4",
"question": "What happened before the person held the phone/camera?",
"candidates": [
"Put down the broom.",
"Threw the towel.",
"Opened the bag.",
"Threw the pillow."
],
"answer": "Threw the pillow.",
"start": 7.0,
"end": 26.3
},
{
"video": "00070.mp4",
"question": "What happened before the person opened the door?",
"candidates": [
"Put down the book.",
"Threw the shoe.",
"Took the book.",
"Took the clothes."
],
"answer": "Threw the shoe.",
"start": 16.1,
"end": 28.5
},
{
"video": "00071.mp4",
"question": "What happened after the person lied on the bed?",
"candidates": [
"Washed the dish.",
"Opened the laptop.",
"Put down the pillow.",
"Took the towel."
],
"answer": "Took the towel.",
"start": 0.0,
"end": 12.8
},
{
"video": "00072.mp4",
"question": "What happened after the person opened the box?",
"candidates": [
"Put down the picture.",
"Tidied up the table.",
"Lied on the floor.",
"Took the clothes."
],
"answer": "Tidied up the table.",
"start": 5.4,
"end": 19.1
},
{
"video": "00073.mp4",
"question": "What happened after the person lied on the bed?",
"candidates": [
"Tidied up the clothes.",
"Took the food.",
"Opened the book.",
"Put down the laptop."
],
"answer": "Took the food.",
"start": 0.0,
"end": 7.2
},
{
"video": "00074.mp4",
"question": "What happened after the person opened the door?",
"candidates": [
"Put down the pillow.",
"Tidied up the closet/cabinet.",
"Sat on the bed.",
"Closed the box."
],
"answer": "Tidied up the closet/cabinet.",
"start": 9.2,
"end": 27.2
},
{
"video": "00075.mp4",
"question": "What happened after the person put down the bag?",
"candidates": [
"Closed the window.",
"Closed the closet/cabinet.",
"Sat on the bed.",
"Closed the book."
],
"answer": "Sat on the bed.",
"start": 0.0,
"end": 19.8
},
{
"video": "00076.mp4",
"question": "What happened after the person held the sandwich?",
"candidates": [
"Put down the dish.",
"Put down the food.",
"Put down the towel.",
"Closed the refrigerator."
],
"answer": "Put down the dish.",
"start": 7.9,
"end": 21.4
},
{
"video": "00077.mp4",
"question": "What happened before the person closed the laptop?",
"candidates": [
"Took the bag.",
"Took the sandwich.",
"Took the food.",
"Put down the broom."
],
"answer": "Put down the broom.",
"start": 24.8,
"end": 36.1
},
{
"video": "00078.mp4",
"question": "What happened after the person held the food?",
"candidates": [
"Opened the bag.",
"Put down the bag.",
"Put down the book.",
"Lied on the floor."
],
"answer": "Put down the bag.",
"start": 17.4,
"end": 27.4
},
{
"video": "00079.mp4",
"question": "What happened after the person washed the clothes?",
"candidates": [
"Put down the blanket.",
"Took the clothes.",
"Took the cup/glass/bottle.",
"Threw the pillow."
],
"answer": "Put down the blanket.",
"start": 6.1,
"end": 13.3
},
{
"video": "00080.mp4",
"question": "What happened before the person watched at the picture?",
"candidates": [
"Opened the book.",
"Lied on the floor.",
"Washed the clothes.",
"Took the food."
],
"answer": "Lied on the floor.",
"start": 2.7,
"end": 10.7
},
{
"video": "00081.mp4",
"question": "What happened after the person held the medicine?",
"candidates": [
"Opened the refrigerator.",
"Ate the sandwich.",
"Opened the box.",
"Sat on the sofa/couch."
],
"answer": "Ate the sandwich.",
"start": 4.4,
"end": 16.1
},
{
"video": "00082.mp4",
"question": "What happened before the person closed the door?",
"candidates": [
"Ate the medicine.",
"Put down the clothes.",
"Put down the blanket.",
"Took the clothes."
],
"answer": "Put down the blanket.",
"start": 11.6,
"end": 23.9
},
{
"video": "00083.mp4",
"question": "What happened before the person tidied up the clothes?",
"candidates": [
"Opened the bag.",
"Took the sandwich.",
"Took the blanket.",
"Sat on the floor."
],
"answer": "Took the blanket.",
"start": 15.5,
"end": 33.0
},
{
"video": "00084.mp4",
"question": "What happened after the person held the book?",
"candidates": [
"Closed the closet/cabinet.",
"Took the paper/notebook.",
"Sat on the sofa/couch.",
"Closed the refrigerator."
],
"answer": "Sat on the sofa/couch.",
"start": 10.7,
"end": 21.6
},
{
"video": "00085.mp4",
"question": "What happened before the person put down the shoe?",
"candidates": [
"Opened the box.",
"Took the box.",
"Took the cup/glass/bottle.",
"Took the clothes."
],
"answer": "Opened the box.",
"start": 24.3,
"end": 31.4
},
{
"video": "00086.mp4",
"question": "What happened after the person held the food?",
"candidates": [
"Threw the towel.",
"Closed the door.",
"Opened the closet/cabinet.",
"Put down the bag."
],
"answer": "Put down the bag.",
"start": 7.6,
"end": 26.8
},
{
"video": "00087.mp4",
"question": "What happened after the person opened the closet/cabinet?",
"candidates": [
"Put down the towel.",
"Threw the shoe.",
"Closed the door.",
"Lied on the bed."
],
"answer": "Threw the shoe.",
"start": 13.5,
"end": 25.4
},
{
"video": "00088.mp4",
"question": "What happened after the person sat on the floor?",
"candidates": [
"Took the bag.",
"Took the phone/camera.",
"Took the blanket.",
"Took the box."
],
"answer": "Took the blanket.",
"start": 10.9,
"end": 18.6
},
{
"video": "00089.mp4",
"question": "What happened after the person sat on the sofa/couch?",
"candidates": [
"Opened the box.",
"Opened the door.",
"Sat on the floor.",
"Put down the clothes."
],
"answer": "Opened the box.",
"start": 0.0,
"end": 9.0
},
{
"video": "00090.mp4",
"question": "What happened after the person held the sandwich?",
"candidates": [
"Took the food.",
"Put down the food.",
"Threw the towel.",
"Tidied up the clothes."
],
"answer": "Tidied up the clothes.",
"start": 0.0,
"end": 19.1
},
{
"video": "00091.mp4",
"question": "What happened after the person threw the clothes?",
"candidates": [
"Washed the dish.",
"Opened the box.",
"Took the laptop.",
"Opened the closet/cabinet."
],
"answer": "Opened the box.",
"start": 12.0,
"end": 27.6
},
{
"video": "00092.mp4",
"question": "What happened before the person washed the clothes?",
"candidates": [
"Put down the phone/camera.",
"Put down the clothes.",
"Put down the towel.",
"Washed the window."
],
"answer": "Put down the towel.",
"start": 0.6,
"end": 16.6
},
{
"video": "00093.mp4",
"question": "What happened before the person opened the door?",
"candidates": [
"Sat at the table.",
"Took the picture.",
"Put down the book.",
"Threw the shoe."
],
"answer": "Sat at the table.",
"start": 0.0,
"end": 14.0
},
{
"video": "00094.mp4",
"question": "What happened before the person threw the clothes?",
"candidates": [
"Closed the closet/cabinet.",
"Put down the towel.",
"Put down the paper/notebook.",
"Ate the sandwich."
],
"answer": "Closed the closet/cabinet.",
"start": 18.9,
"end": 29.3
},
{
"video": "00095.mp4",
"question": "What happened after the person put down the dish?",
"candidates": [
"Ate the medicine.",
"Tidied up the table.",
"Opened the box.",
"Washed the cup/glass/bottle."
],
"answer": "Tidied up the table.",
"start": 13.8,
"end": 25.6
},
{
"video": "00096.mp4",
"question": "What happened after the person sat at the table?",
"candidates": [
"Threw the bag.",
"Closed the closet/cabinet.",
"Ate the sandwich.",
"Opened the box."
],
"answer": "Opened the box.",
"start": 6.5,
"end": 17.0
},
{
"video": "00097.mp4",
"question": "What happened before the person opened the book?",
"candidates": [
"Put down the towel.",
"Took the paper/notebook.",
"Took the bag.",
"Tidied up the table."
],
"answer": "Took the paper/notebook.",
"start": 7.4,
"end": 15.7
},
{
"video": "00098.mp4",
"question": "What happened after the person closed the door?",
"candidates": [
"Closed the box.",
"Put down the book.",
"Took the dish.",
"Took the picture."
],
"answer": "Took the dish.",
"start": 8.6,
"end": 19.9
},
{
"video": "00099.mp4",
"question": "What happened after the person opened the box?",
"candidates": [
"Put down the dish.",
"Put down the shoe.",
"Sat on the sofa/couch.",
"Put down the food."
],
"answer": "Put down the shoe.",
"start": 24.3,
"end": 31.4
},
{
"video": "00100.mp4",
"question": "What happened after the person held the blanket?",
"candidates": [
"Took the book.",
"Put down the paper/notebook.",
"Tidied up the closet/cabinet.",
"Threw the clothes."
],
"answer": "Took the book.",
"start": 3.5,
"end": 13.4
},
{
"video": "00101.mp4",
"question": "What happened after the person sat on the sofa/couch?",
"candidates": [
"Lied on the bed.",
"Opened the refrigerator.",
"Took the pillow.",
"Ate the medicine."
],
"answer": "Opened the refrigerator.",
"start": 0.0,
"end": 17.3
},
{
"video": "00102.mp4",
"question": "What happened after the person opened the closet/cabinet?",
"candidates": [
"Put down the towel.",
"Put down the clothes.",
"Put down the food.",
"Threw the shoe."
],
"answer": "Put down the towel.",
"start": 14.2,
"end": 21.8
},
{
"video": "00103.mp4",
"question": "What happened after the person put down the food?",
"candidates": [
"Opened the closet/cabinet.",
"Closed the book.",
"Put down the cup/glass/bottle.",
"Put down the phone/camera."
],
"answer": "Closed the book.",
"start": 7.9,
"end": 22.5
},
{
"video": "00104.mp4",
"question": "What happened after the person washed the clothes?",
"candidates": [
"Sat on the floor.",
"Took the laptop.",
"Put down the towel.",
"Put down the laptop."
],
"answer": "Sat on the floor.",
"start": 2.6,
"end": 16.2
},
{
"video": "00105.mp4",
"question": "What happened before the person took the phone/camera?",
"candidates": [
"Opened the window.",
"Put down the clothes.",
"Took the paper/notebook.",
"Put down the shoe."
],
"answer": "Put down the clothes.",
"start": 14.2,
"end": 26.1
},
{
"video": "00106.mp4",
"question": "What happened after the person threw the pillow?",
"candidates": [
"Tidied up the clothes.",
"Put down the laptop.",
"Tidied up the towel.",
"Washed the table."
],
"answer": "Put down the laptop.",
"start": 10.3,
"end": 19.7
},
{
"video": "00107.mp4",
"question": "What happened after the person sat at the table?",
"candidates": [
"Washed the dish.",
"Threw the broom.",
"Put down the book.",
"Took the paper/notebook."
],
"answer": "Put down the book.",
"start": 8.7,
"end": 22.5
},
{
"video": "00108.mp4",
"question": "What happened after the person ate the medicine?",
"candidates": [
"Put down the dish.",
"Washed the dish.",
"Took the cup/glass/bottle.",
"Threw the clothes."
],
"answer": "Put down the dish.",
"start": 14.2,
"end": 28.8
},
{
"video": "00109.mp4",
"question": "What happened before the person put down the clothes?",
"candidates": [
"Closed the door.",
"Took the blanket.",
"Took the paper/notebook.",
"Closed the laptop."
],
"answer": "Closed the laptop.",
"start": 12.3,
"end": 28.4
},
{
"video": "00110.mp4",
"question": "What happened after the person washed the table?",
"candidates": [
"Threw the clothes.",
"Washed the cup/glass/bottle.",
"Took the phone/camera.",
"Put down the towel."
],
"answer": "Put down the towel.",
"start": 18.6,
"end": 28.7
},
{
"video": "00111.mp4",
"question": "What happened after the person lied on the bed?",
"candidates": [
"Threw the pillow.",
"Took the book.",
"Put down the picture.",
"Closed the box."
],
"answer": "Put down the picture.",
"start": 0.0,
"end": 14.1
},
{
"video": "00112.mp4",
"question": "What happened after the person held the picture?",
"candidates": [
"Sat at the table.",
"Took the laptop.",
"Put down the dish.",
"Opened the laptop."
],
"answer": "Opened the laptop.",
"start": 13.8,
"end": 29.1
},
{
"video": "00113.mp4",
"question": "What happened before the person opened the door?",
"candidates": [
"Put down the bag.",
"Closed the book.",
"Took the shoe.",
"Washed the table."
],
"answer": "Put down the bag.",
"start": 8.1,
"end": 19.3
},
{
"video": "00114.mp4",
"question": "What happened before the person opened the refrigerator?",
"candidates": [
"Opened the bag.",
"Put down the dish.",
"Put down the food.",
"Took the clothes."
],
"answer": "Took the clothes.",
"start": 4.4,
"end": 20.8
},
{
"video": "00115.mp4",
"question": "What happened before the person put down the food?",
"candidates": [
"Put down the laptop.",
"Took the phone/camera.",
"Closed the door.",
"Opened the box."
],
"answer": "Opened the box.",
"start": 10.4,
"end": 23.3
},
{
"video": "00116.mp4",
"question": "What happened after the person lied on the floor?",
"candidates": [
"Put down the clothes.",
"Tidied up the blanket.",
"Opened the book.",
"Took the cup/glass/bottle."
],
"answer": "Took the cup/glass/bottle.",
"start": 0.0,
"end": 11.1
},
{
"video": "00117.mp4",
"question": "What happened after the person drank from the cup/glass/bottle?",
"candidates": [
"Took the towel.",
"Put down the dish.",
"Opened the book.",
"Took the dish."
],
"answer": "Took the dish.",
"start": 22.6,
"end": 31.3
},
{
"video": "00118.mp4",
"question": "What happened before the person lied on the sofa/couch?",
"candidates": [
"Took the pillow.",
"Opened the door.",
"Took the phone/camera.",
"Threw the box."
],
"answer": "Took the pillow.",
"start": 7.0,
"end": 21.0
},
{
"video": "00119.mp4",
"question": "What happened before the person opened the box?",
"candidates": [
"Tidied up the blanket.",
"Put down the dish.",
"Took the cup/glass/bottle.",
"Opened the closet/cabinet."
],
"answer": "Took the cup/glass/bottle.",
"start": 7.4,
"end": 27.1
},
{
"video": "00120.mp4",
"question": "What happened after the person put down the clothes?",
"candidates": [
"Put down the pillow.",
"Took the laptop.",
"Closed the door.",
"Closed the closet/cabinet."
],
"answer": "Took the laptop.",
"start": 6.1,
"end": 20.3
},
{
"video": "00121.mp4",
"question": "What happened before the person held the dish?",
"candidates": [
"Closed the door.",
"Put down the food.",
"Closed the refrigerator.",
"Took the food."
],
"answer": "Took the food.",
"start": 13.5,
"end": 25.3
},
{
"video": "00122.mp4",
"question": "What happened before the person drank from the cup/glass/bottle?",
"candidates": [
"Ate the sandwich.",
"Took the dish.",
"Washed the cup/glass/bottle.",
"Took the picture."
],
"answer": "Ate the sandwich.",
"start": 0.0,
"end": 8.2
},
{
"video": "00123.mp4",
"question": "What happened before the person held the broom?",
"candidates": [
"Put down the phone/camera.",
"Put down the cup/glass/bottle.",
"Washed the table.",
"Tidied up the closet/cabinet."
],
"answer": "Put down the phone/camera.",
"start": 16.4,
"end": 31.0
},
{
"video": "00124.mp4",
"question": "What happened before the person ate the sandwich?",
"candidates": [
"Sat on the floor.",
"Closed the refrigerator.",
"Closed the closet/cabinet.",
"Took the box."
],
"answer": "Closed the refrigerator.",
"start": 13.4,
"end": 29.0
},
{
"video": "00125.mp4",
"question": "What happened after the person put down the pillow?",
"candidates": [
"Put down the laptop.",
"Tidied up the blanket.",
"Closed the door.",
"Took the book."
],
"answer": "Took the book.",
"start": 13.6,
"end": 28.1
},
{
"video": "00126.mp4",
"question": "What happened after the person sat at the table?",
"candidates": [
"Put down the food.",
"Took the picture.",
"Took the cup/glass/bottle.",
"Opened the book."
],
"answer": "Opened the book.",
"start": 10.7,
"end": 24.2
},
{
"video": "00127.mp4",
"question": "What happened after the person sat on the floor?",
"candidates": [
"Took the laptop.",
"Threw the blanket.",
"Put down the pillow.",
"Took the broom."
],
"answer": "Took the broom.",
"start": 0.0,
"end": 16.4
},
{
"video": "00128.mp4",
"question": "What happened before the person put down the cup/glass/bottle?",
"candidates": [
"Took the food.",
"Sat on the bed.",
"Opened the laptop.",
"Took the book."
],
"answer": "Opened the laptop.",
"start": 3.9,
"end": 13.4
},
{
"video": "00129.mp4",
"question": "What happened before the person took the pillow?",
"candidates": [
"Washed the table.",
"Put down the bag.",
"Took the dish.",
"Ate the sandwich."
],
"answer": "Put down the bag.",
"start": 9.6,
"end": 27.8
},
{
"video": "00130.mp4",
"question": "What happened after the person opened the closet/cabinet?",
"candidates": [
"Opened the laptop.",
"Put down the food.",
"Sat on the floor.",
"Took the clothes."
],
"answer": "Took the clothes.",
"start": 3.0,
"end": 15.2
},
{
"video": "00131.mp4",
"question": "What happened after the person threw the clothes?",
"candidates": [
"Ate the sandwich.",
"Put down the clothes.",
"Took the cup/glass/bottle.",
"Took the pillow."
],
"answer": "Ate the sandwich.",
"start": 24.1,
"end": 33.0
},
{
"video": "00132.mp4",
"question": "What happened after the person held the food?",
"candidates": [
"Took the sandwich.",
"Took the phone/camera.",
"Ate the medicine.",
"Sat on the sofa/couch."
],
"answer": "Took the sandwich.",
"start": 1.8,
"end": 10.4
},
{
"video": "00133.mp4",
"question": "What happened after the person sat at the table?",
"candidates": [
"Closed the laptop.",
"Opened the door.",
"Took the sandwich.",
"Took the paper/notebook."
],
"answer": "Closed the laptop.",
"start": 0.0,
"end": 10.2
},
{
"video": "00134.mp4",
"question": "What happened after the person closed the laptop?",
"candidates": [
"Put down the sandwich.",
"Took the cup/glass/bottle.",
"Took the pillow.",
"Put down the phone/camera."
],
"answer": "Put down the phone/camera.",
"start": 4.2,
"end": 21.6
},
{
"video": "00135.mp4",
"question": "What happened before the person closed the book?",
"candidates": [
"Put down the phone/camera.",
"Ate the medicine.",
"Put down the blanket.",
"Tidied up the table."
],
"answer": "Put down the blanket.",
"start": 0.0,
"end": 16.4
},
{
"video": "00136.mp4",
"question": "What happened after the person took the shoe?",
"candidates": [
"Closed the window.",
"Sat on the sofa/couch.",
"Closed the closet/cabinet.",
"Opened the closet/cabinet."
],
"answer": "Sat on the sofa/couch.",
"start": 9.6,
"end": 20.0
},
{
"video": "00137.mp4",
"question": "What happened after the person took the food?",
"candidates": [
"Sat on the floor.",
"Put down the sandwich.",
"Took the book.",
"Ate the sandwich."
],
"answer": "Put down the sandwich.",
"start": 0.0,
"end": 12.0
},
{
"video": "00138.mp4",
"question": "What happened before the person opened the closet/cabinet?",
"candidates": [
"Closed the laptop.",
"Put down the cup/glass/bottle.",
"Put down the food.",
"Threw the bag."
],
"answer": "Closed the laptop.",
"start": 4.0,
"end": 18.4
},
{
"video": "00139.mp4",
"question": "What happened before the person opened the refrigerator?",
"candidates": [
"Took the food.",
"Took the pillow.",
"Sat on the sofa/couch.",
"Put down the pillow."
],
"answer": "Sat on the sofa/couch.",
"start": 0.0,
"end": 17.3
},
{
"video": "00140.mp4",
"question": "What happened after the person drank from the cup/glass/bottle?",
"candidates": [
"Took the shoe.",
"Washed the dish.",
"Took the bag.",
"Took the phone/camera."
],
"answer": "Took the shoe.",
"start": 0.0,
"end": 13.5
},
{
"video": "00141.mp4",
"question": "What happened before the person held the food?",
"candidates": [
"Threw the box.",
"Took the sandwich.",
"Threw the broom.",
"Tidied up the closet/cabinet."
],
"answer": "Took the sandwich.",
"start": 2.8,
"end": 17.0
},
{
"video": "00142.mp4",
"question": "What happened before the person took the cup/glass/bottle?",
"candidates": [
"Sat on the sofa/couch.",
"Put down the paper/notebook.",
"Sat on the bed.",
"Washed the table."
],
"answer": "Sat on the bed.",
"start": 0.8,
"end": 16.4
},
{
"video": "00143.mp4",
"question": "What happened after the person opened the door?",
"candidates": [
"Threw the towel.",
"Threw the blanket.",
"Put down the book.",
"Closed the book."
],
"answer": "Put down the book.",
"start": 12.3,
"end": 23.7
},
{
"video": "00144.mp4",
"question": "What happened after the person tidied up the clothes?",
"candidates": [
"Threw the blanket.",
"Opened the box.",
"Closed the window.",
"Took the broom."
],
"answer": "Took the broom.",
"start": 0.0,
"end": 10.2
},
{
"video": "00145.mp4",
"question": "What happened before the person took the phone/camera?",
"candidates": [
"Took the clothes.",
"Put down the cup/glass/bottle.",
"Put down the pillow.",
"Opened the window."
],
"answer": "Put down the pillow.",
"start": 13.6,
"end": 32.0
},
{
"video": "00146.mp4",
"question": "What happened before the person closed the box?",
"candidates": [
"Put down the food.",
"Threw the towel.",
"Took the shoe.",
"Opened the closet/cabinet."
],
"answer": "Took the shoe.",
"start": 5.3,
"end": 16.3
},
{
"video": "00147.mp4",
"question": "What happened before the person sat on the sofa/couch?",
"candidates": [
"Took the box.",
"Took the dish.",
"Threw the pillow.",
"Put down the shoe."
],
"answer": "Put down the shoe.",
"start": 11.6,
"end": 24.0
},
{
"video": "00148.mp4",
"question": "What happened before the person held the book?",
"candidates": [
"Sat on the bed.",
"Took the paper/notebook.",
"Took the picture.",
"Threw the book."
],
"answer": "Took the paper/notebook.",
"start": 7.4,
"end": 20.4
},
{
"video": "00149.mp4",
"question": "What happened before the person held the food?",
"candidates": [
"Took the book.",
"Closed the refrigerator.",
"Opened the door.",
"Put down the sandwich."
],
"answer": "Closed the refrigerator.",
"start": 8.9,
"end": 18.3
},
{
"video": "00150.mp4",
"question": "What happened after the person took the food?",
"candidates": [
"Closed the box.",
"Tidied up the closet/cabinet.",
"Sat on the sofa/couch.",
"Opened the book."
],
"answer": "Tidied up the closet/cabinet.",
"start": 12.4,
"end": 27.1
},
{
"video": "00151.mp4",
"question": "What happened before the person closed the refrigerator?",
"candidates": [
"Put down the box.",
"Put down the book.",
"Put down the dish.",
"Threw the clothes."
],
"answer": "Put down the dish.",
"start": 17.1,
"end": 27.8
},
{
"video": "00152.mp4",
"question": "What happened before the person took the food?",
"candidates": [
"Closed the laptop.",
"Sat on the sofa/couch.",
"Took the blanket.",
"Took the clothes."
],
"answer": "Closed the laptop.",
"start": 6.6,
"end": 17.6
},
{
"video": "00153.mp4",
"question": "What happened before the person sat on the sofa/couch?",
"candidates": [
"Took the clothes.",
"Put down the picture.",
"Closed the window.",
"Put down the phone/camera."
],
"answer": "Put down the phone/camera.",
"start": 28.6,
"end": 41.4
},
{
"video": "00154.mp4",
"question": "What happened before the person opened the door?",
"candidates": [
"Put down the cup/glass/bottle.",
"Threw the towel.",
"Threw the book.",
"Took the food."
],
"answer": "Threw the towel.",
"start": 18.1,
"end": 27.3
},
{
"video": "00155.mp4",
"question": "What happened after the person closed the door?",
"candidates": [
"Closed the refrigerator.",
"Tidied up the blanket.",
"Took the towel.",
"Took the cup/glass/bottle."
],
"answer": "Took the towel.",
"start": 9.8,
"end": 19.6
},
{
"video": "00156.mp4",
"question": "What happened before the person held the clothes?",
"candidates": [
"Opened the door.",
"Took the towel.",
"Threw the book.",
"Opened the bag."
],
"answer": "Took the towel.",
"start": 27.5,
"end": 36.4
},
{
"video": "00157.mp4",
"question": "What happened before the person took the phone/camera?",
"candidates": [
"Took the picture.",
"Put down the clothes.",
"Threw the clothes.",
"Put down the dish."
],
"answer": "Put down the dish.",
"start": 10.5,
"end": 25.3
},
{
"video": "00158.mp4",
"question": "What happened before the person closed the window?",
"candidates": [
"Put down the food.",
"Washed the window.",
"Sat on the sofa/couch.",
"Opened the door."
],
"answer": "Sat on the sofa/couch.",
"start": 0.0,
"end": 16.0
},
{
"video": "00159.mp4",
"question": "What happened after the person put down the towel?",
"candidates": [
"Opened the bag.",
"Closed the box.",
"Took the paper/notebook.",
"Closed the refrigerator."
],
"answer": "Closed the box.",
"start": 4.6,
"end": 19.1
},
{
"video": "00160.mp4",
"question": "What happened before the person took the book?",
"candidates": [
"Put down the laptop.",
"Opened the book.",
"Put down the paper/notebook.",
"Threw the clothes."
],
"answer": "Put down the laptop.",
"start": 17.1,
"end": 26.6
},
{
"video": "00161.mp4",
"question": "What happened before the person opened the door?",
"candidates": [
"Took the towel.",
"Took the book.",
"Opened the door.",
"Sat at the table."
],
"answer": "Took the book.",
"start": 17.3,
"end": 26.2
},
{
"video": "00162.mp4",
"question": "What happened after the person put down the laptop?",
"candidates": [
"Sat at the table.",
"Took the broom.",
"Took the book.",
"Put down the phone/camera."
],
"answer": "Took the book.",
"start": 17.1,
"end": 26.6
},
{
"video": "00163.mp4",
"question": "What happened after the person opened the door?",
"candidates": [
"Threw the box.",
"Put down the phone/camera.",
"Took the pillow.",
"Tidied up the clothes."
],
"answer": "Put down the phone/camera.",
"start": 0.0,
"end": 13.5
},
{
"video": "00164.mp4",
"question": "What happened after the person put down the food?",
"candidates": [
"Opened the closet/cabinet.",
"Put down the paper/notebook.",
"Closed the refrigerator.",
"Took the towel."
],
"answer": "Closed the refrigerator.",
"start": 4.9,
"end": 13.0
},
{
"video": "00165.mp4",
"question": "What happened before the person held the mirror?",
"candidates": [
"Took the paper/notebook.",
"Tidied up the table.",
"Sat on the bed.",
"Put down the shoe."
],
"answer": "Put down the shoe.",
"start": 2.1,
"end": 14.3
},
{
"video": "00166.mp4",
"question": "What happened after the person sat on the sofa/couch?",
"candidates": [
"Put down the laptop.",
"Put down the bag.",
"Took the pillow.",
"Threw the book."
],
"answer": "Put down the laptop.",
"start": 34.9,
"end": 42.1
},
{
"video": "00167.mp4",
"question": "What happened before the person took the dish?",
"candidates": [
"Put down the food.",
"Put down the box.",
"Took the paper/notebook.",
"Put down the blanket."
],
"answer": "Put down the blanket.",
"start": 2.8,
"end": 10.4
},
{
"video": "00168.mp4",
"question": "What happened before the person sat on the sofa/couch?",
"candidates": [
"Threw the blanket.",
"Closed the door.",
"Took the book.",
"Lied on the sofa/couch."
],
"answer": "Took the book.",
"start": 0.0,
"end": 9.4
},
{
"video": "00169.mp4",
"question": "What happened after the person took the cup/glass/bottle?",
"candidates": [
"Put down the sandwich.",
"Put down the paper/notebook.",
"Opened the refrigerator.",
"Opened the door."
],
"answer": "Put down the sandwich.",
"start": 14.8,
"end": 25.3
},
{
"video": "00170.mp4",
"question": "What happened before the person washed the window?",
"candidates": [
"Closed the door.",
"Lied on the floor.",
"Took the picture.",
"Opened the box."
],
"answer": "Closed the door.",
"start": 15.8,
"end": 32.0
},
{
"video": "00171.mp4",
"question": "What happened after the person threw the clothes?",
"candidates": [
"Took the sandwich.",
"Put down the food.",
"Put down the pillow.",
"Took the food."
],
"answer": "Put down the pillow.",
"start": 2.2,
"end": 13.4
},
{
"video": "00172.mp4",
"question": "What happened before the person put down the laptop?",
"candidates": [
"Washed the window.",
"Put down the shoe.",
"Closed the door.",
"Threw the pillow."
],
"answer": "Threw the pillow.",
"start": 10.3,
"end": 19.7
},
{
"video": "00173.mp4",
"question": "What happened before the person took the food?",
"candidates": [
"Put down the cup/glass/bottle.",
"Put down the bag.",
"Threw the pillow.",
"Closed the box."
],
"answer": "Put down the bag.",
"start": 1.7,
"end": 18.5
},
{
"video": "00174.mp4",
"question": "What happened before the person held the sandwich?",
"candidates": [
"Tidied up the blanket.",
"Closed the door.",
"Closed the refrigerator.",
"Threw the towel."
],
"answer": "Closed the refrigerator.",
"start": 13.4,
"end": 27.5
},
{
"video": "00175.mp4",
"question": "What happened after the person drank from the cup/glass/bottle?",
"candidates": [
"Threw the shoe.",
"Took the broom.",
"Put down the shoe.",
"Sat on the bed."
],
"answer": "Threw the shoe.",
"start": 4.3,
"end": 15.8
},
{
"video": "00176.mp4",
"question": "What happened after the person held the dish?",
"candidates": [
"Took the book.",
"Took the cup/glass/bottle.",
"Took the blanket.",
"Closed the closet/cabinet."
],
"answer": "Closed the closet/cabinet.",
"start": 3.5,
"end": 18.5
},
{
"video": "00177.mp4",
"question": "What happened before the person took the food?",
"candidates": [
"Threw the book.",
"Closed the door.",
"Opened the refrigerator.",
"Threw the broom."
],
"answer": "Threw the broom.",
"start": 7.6,
"end": 17.5
},
{
"video": "00178.mp4",
"question": "What happened after the person put down the clothes?",
"candidates": [
"Put down the box.",
"Washed the mirror.",
"Opened the closet/cabinet.",
"Took the pillow."
],
"answer": "Opened the closet/cabinet.",
"start": 19.7,
"end": 29.7
},
{
"video": "00179.mp4",
"question": "What happened after the person held the blanket?",
"candidates": [
"Threw the towel.",
"Took the clothes.",
"Put down the pillow.",
"Put down the food."
],
"answer": "Threw the towel.",
"start": 0.0,
"end": 11.2
},
{
"video": "00180.mp4",
"question": "What happened after the person held the clothes?",
"candidates": [
"Took the broom.",
"Threw the pillow.",
"Sat on the sofa/couch.",
"Put down the pillow."
],
"answer": "Threw the pillow.",
"start": 6.7,
"end": 16.5
},
{
"video": "00181.mp4",
"question": "What happened after the person drank from the cup/glass/bottle?",
"candidates": [
"Lied on the floor.",
"Took the broom.",
"Put down the dish.",
"Opened the bag."
],
"answer": "Put down the dish.",
"start": 20.7,
"end": 40.0
},
{
"video": "00182.mp4",
"question": "What happened before the person drank from the cup/glass/bottle?",
"candidates": [
"Put down the sandwich.",
"Took the dish.",
"Put down the food.",
"Opened the bag."
],
"answer": "Opened the bag.",
"start": 0.9,
"end": 19.3
},
{
"video": "00183.mp4",
"question": "What happened before the person put down the book?",
"candidates": [
"Ate the medicine.",
"Took the bag.",
"Tidied up the blanket.",
"Opened the bag."
],
"answer": "Took the bag.",
"start": 0.0,
"end": 17.0
},
{
"video": "00184.mp4",
"question": "What happened after the person held the laptop?",
"candidates": [
"Put down the paper/notebook.",
"Sat on the bed.",
"Threw the blanket.",
"Opened the bag."
],
"answer": "Put down the paper/notebook.",
"start": 0.0,
"end": 19.6
},
{
"video": "00185.mp4",
"question": "What happened after the person tidied up the table?",
"candidates": [
"Sat at the table.",
"Put down the dish.",
"Threw the towel.",
"Took the phone/camera."
],
"answer": "Put down the dish.",
"start": 0.0,
"end": 16.6
},
{
"video": "00186.mp4",
"question": "What happened after the person held the clothes?",
"candidates": [
"Took the bag.",
"Closed the door.",
"Opened the bag.",
"Sat on the bed."
],
"answer": "Opened the bag.",
"start": 7.2,
"end": 16.0
},
{
"video": "00187.mp4",
"question": "What happened before the person sat on the sofa/couch?",
"candidates": [
"Closed the refrigerator.",
"Put down the towel.",
"Took the shoe.",
"Sat on the table."
],
"answer": "Took the shoe.",
"start": 9.6,
"end": 20.0
},
{
"video": "00188.mp4",
"question": "What happened after the person opened the bag?",
"candidates": [
"Threw the broom.",
"Took the towel.",
"Took the dish.",
"Put down the phone/camera."
],
"answer": "Took the dish.",
"start": 16.6,
"end": 27.9
},
{
"video": "00189.mp4",
"question": "What happened after the person sat on the sofa/couch?",
"candidates": [
"Washed the mirror.",
"Took the book.",
"Took the phone/camera.",
"Sat on the sofa/couch."
],
"answer": "Took the book.",
"start": 22.5,
"end": 33.0
},
{
"video": "00190.mp4",
"question": "What happened before the person drank from the cup/glass/bottle?",
"candidates": [
"Took the sandwich.",
"Put down the clothes.",
"Put down the box.",
"Put down the shoe."
],
"answer": "Put down the box.",
"start": 7.9,
"end": 25.0
},
{
"video": "00191.mp4",
"question": "What happened before the person closed the closet/cabinet?",
"candidates": [
"Took the towel.",
"Put down the phone/camera.",
"Took the sandwich.",
"Took the dish."
],
"answer": "Took the sandwich.",
"start": 17.9,
"end": 25.0
},
{
"video": "00192.mp4",
"question": "What happened after the person took the book?",
"candidates": [
"Put down the book.",
"Put down the bag.",
"Closed the refrigerator.",
"Put down the paper/notebook."
],
"answer": "Put down the paper/notebook.",
"start": 0.1,
"end": 11.0
},
{
"video": "00193.mp4",
"question": "What happened before the person held the phone/camera?",
"candidates": [
"Tidied up the blanket.",
"Took the cup/glass/bottle.",
"Tidied up the closet/cabinet.",
"Put down the pillow."
],
"answer": "Put down the pillow.",
"start": 13.6,
"end": 32.0
},
{
"video": "00194.mp4",
"question": "What happened before the person closed the door?",
"candidates": [
"Opened the bag.",
"Put down the sandwich.",
"Put down the pillow.",
"Took the food."
],
"answer": "Put down the pillow.",
"start": 8.4,
"end": 19.9
},
{
"video": "00195.mp4",
"question": "What happened after the person put down the shoe?",
"candidates": [
"Took the paper/notebook.",
"Took the broom.",
"Opened the laptop.",
"Closed the box."
],
"answer": "Closed the box.",
"start": 24.5,
"end": 35.0
},
{
"video": "00196.mp4",
"question": "What happened before the person washed the clothes?",
"candidates": [
"Put down the blanket.",
"Opened the door.",
"Washed the clothes.",
"Lied on the sofa/couch."
],
"answer": "Put down the blanket.",
"start": 25.0,
"end": 34.0
},
{
"video": "00197.mp4",
"question": "What happened before the person took the dish?",
"candidates": [
"Put down the paper/notebook.",
"Opened the laptop.",
"Lied on the floor.",
"Opened the refrigerator."
],
"answer": "Put down the paper/notebook.",
"start": 10.9,
"end": 18.0
},
{
"video": "00198.mp4",
"question": "What happened after the person held the book?",
"candidates": [
"Put down the bag.",
"Closed the book.",
"Put down the paper/notebook.",
"Opened the door."
],
"answer": "Put down the paper/notebook.",
"start": 0.0,
"end": 10.3
},
{
"video": "00199.mp4",
"question": "What happened before the person drank from the cup/glass/bottle?",
"candidates": [
"Put down the box.",
"Took the phone/camera.",
"Threw the box.",
"Sat on the floor."
],
"answer": "Put down the box.",
"start": 1.2,
"end": 17.5
},
{
"video": "00200.mp4",
"question": "What happened before the person washed the table?",
"candidates": [
"Closed the refrigerator.",
"Put down the paper/notebook.",
"Put down the dish.",
"Put down the sandwich."
],
"answer": "Put down the paper/notebook.",
"start": 23.3,
"end": 43.2
}
] |