File size: 395,062 Bytes
ee51a09 | 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 | {"qid": "q_binary_00915a7faf", "category": "binary", "fine_category": "action", "video": "star/Z6HEA.mp4", "video_exists": true, "question": "Did the person wash the clothes while they were holding the clothes?", "answer": "yes", "annotation": "a_binary_00915a7faf", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_015fc099c3", "category": "binary", "fine_category": "action", "video": "star/C4KZ4.mp4", "video_exists": true, "question": "Did the person write notes inside the book?", "answer": "no", "annotation": "a_binary_015fc099c3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_023cd5dfdc", "category": "binary", "fine_category": "action", "video": "star/D1NT7.mp4", "video_exists": true, "question": "Did the person shook the box while touching the box?", "answer": "no", "annotation": "a_binary_023cd5dfdc", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_02ce8fbf17", "category": "binary", "fine_category": "action", "video": "star/BE51K.mp4", "video_exists": true, "question": "Did the person sit on the bed?", "answer": "yes", "annotation": "a_binary_02ce8fbf17", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_03a76cbca9", "category": "binary", "fine_category": "action", "video": "star/5GPOJ.mp4", "video_exists": true, "question": "Did the person started reading the book aloud while writing on the paper and sitting on the sofa?", "answer": "no", "annotation": "a_binary_03a76cbca9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_05b4e5ea52", "category": "binary", "fine_category": "action", "video": "star/OZSB3.mp4", "video_exists": true, "question": "Did the person take the pillow while sitting on the chair and touching the bag?", "answer": "yes", "annotation": "a_binary_05b4e5ea52", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_05fe2c1e4d", "category": "binary", "fine_category": "action", "video": "star/SUI1X.mp4", "video_exists": true, "question": "Did the person zip up the bag?", "answer": "no", "annotation": "a_binary_05fe2c1e4d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_062b88f516", "category": "binary", "fine_category": "action", "video": "star/4JWAH.mp4", "video_exists": true, "question": "Did the person start typing on a laptop while carrying the pillow and sitting on the bed?", "answer": "no", "annotation": "a_binary_062b88f516", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0804a37a33", "category": "binary", "fine_category": "action", "video": "star/IOGR7.mp4", "video_exists": true, "question": "Did the person sit on the floor?", "answer": "yes", "annotation": "a_binary_0804a37a33", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_080d0f42d9", "category": "binary", "fine_category": "action", "video": "star/9YOI8.mp4", "video_exists": true, "question": "Did the person open the window?", "answer": "yes", "annotation": "a_binary_080d0f42d9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_085a0980c0", "category": "binary", "fine_category": "action", "video": "star/XYGU1.mp4", "video_exists": true, "question": "Did the person read aloud from the book?", "answer": "no", "annotation": "a_binary_085a0980c0", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_085d3a5e09", "category": "binary", "fine_category": "action", "video": "star/56XKK.mp4", "video_exists": true, "question": "Did the person swing the bag around while touching the door and wiping the table?", "answer": "no", "annotation": "a_binary_085d3a5e09", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_096a4c974c", "category": "binary", "fine_category": "action", "video": "star/BI6Y4.mp4", "video_exists": true, "question": "Did the person use the table for a puzzle game?", "answer": "no", "annotation": "a_binary_096a4c974c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0a1324e20b", "category": "binary", "fine_category": "action", "video": "star/SANRG.mp4", "video_exists": true, "question": "Did the person adjust the pillow while sitting on the sofa and touching the towel?", "answer": "no", "annotation": "a_binary_0a1324e20b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0b8a95e80a", "category": "binary", "fine_category": "action", "video": "star/UQ93G.mp4", "video_exists": true, "question": "Did the person fold the clothes neatly while holding the clothes?", "answer": "no", "annotation": "a_binary_0b8a95e80a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0d4cc50e8a", "category": "binary", "fine_category": "action", "video": "star/A33VQ.mp4", "video_exists": true, "question": "Did the person close the refrigerator?", "answer": "yes", "annotation": "a_binary_0d4cc50e8a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0fc7bd1581", "category": "binary", "fine_category": "action", "video": "star/K9UXS.mp4", "video_exists": true, "question": "Did the person folded the clothes while they were holding the clothes?", "answer": "no", "annotation": "a_binary_0fc7bd1581", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1028d2cb29", "category": "binary", "fine_category": "action", "video": "star/OVFR0.mp4", "video_exists": true, "question": "Did the person flip through the pages of the book while they were touching the book?", "answer": "no", "annotation": "a_binary_1028d2cb29", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1092a824c5", "category": "binary", "fine_category": "action", "video": "star/PYIA3.mp4", "video_exists": true, "question": "Did the person open the refrigerator?", "answer": "yes", "annotation": "a_binary_1092a824c5", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_10eee28120", "category": "binary", "fine_category": "action", "video": "star/M7BD4.mp4", "video_exists": true, "question": "Did the person close the laptop while holding the laptop?", "answer": "yes", "annotation": "a_binary_10eee28120", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_139329b7ed", "category": "binary", "fine_category": "action", "video": "star/6VF2L.mp4", "video_exists": true, "question": "Did the person fold the clothes neatly while standing on the floor and touching the clothes?", "answer": "no", "annotation": "a_binary_139329b7ed", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_15f0a6d1b8", "category": "binary", "fine_category": "action", "video": "star/320ZB.mp4", "video_exists": true, "question": "Did the person hang the clothes on the rack while holding the clothes?", "answer": "no", "annotation": "a_binary_15f0a6d1b8", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_16d3fb58c0", "category": "binary", "fine_category": "action", "video": "star/JBJGX.mp4", "video_exists": true, "question": "Did the person type on the laptop?", "answer": "no", "annotation": "a_binary_16d3fb58c0", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_18ed29829b", "category": "binary", "fine_category": "action", "video": "star/2LCLG.mp4", "video_exists": true, "question": "Did the person hung the bag on a hook while touching the bag?", "answer": "no", "annotation": "a_binary_18ed29829b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_19a7cdcbc8", "category": "binary", "fine_category": "action", "video": "star/BVN7J.mp4", "video_exists": true, "question": "Did the person fold the towel while touching the table and carrying the towel?", "answer": "no", "annotation": "a_binary_19a7cdcbc8", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1a2d865302", "category": "binary", "fine_category": "action", "video": "star/KNGUT.mp4", "video_exists": true, "question": "Did the person open the bag while touching the bag?", "answer": "yes", "annotation": "a_binary_1a2d865302", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1b81bb3375", "category": "binary", "fine_category": "action", "video": "star/5K0KJ.mp4", "video_exists": true, "question": "Did the person call someone with the phone/camera?", "answer": "no", "annotation": "a_binary_1b81bb3375", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1ff8a4a978", "category": "binary", "fine_category": "action", "video": "star/J7BOV.mp4", "video_exists": true, "question": "Did the person adjust the camera settings with the phone/camera?", "answer": "no", "annotation": "a_binary_1ff8a4a978", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2037ce6a37", "category": "binary", "fine_category": "action", "video": "star/TOOYI.mp4", "video_exists": true, "question": "Did the person seal shut the box?", "answer": "no", "annotation": "a_binary_2037ce6a37", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_21339d1b23", "category": "binary", "fine_category": "action", "video": "star/XQDQ4.mp4", "video_exists": true, "question": "Did the person take the cup/glass/bottle?", "answer": "yes", "annotation": "a_binary_21339d1b23", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2249e39c8b", "category": "binary", "fine_category": "action", "video": "star/U5T4M.mp4", "video_exists": true, "question": "Did the person organize the shelves with the refrigerator?", "answer": "no", "annotation": "a_binary_2249e39c8b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_22937586fe", "category": "binary", "fine_category": "action", "video": "star/XOOTA.mp4", "video_exists": true, "question": "Did the person draped the blanket over a chair while touching the vacuum and carrying the blanket?", "answer": "no", "annotation": "a_binary_22937586fe", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_22e242075d", "category": "binary", "fine_category": "action", "video": "star/IBX56.mp4", "video_exists": true, "question": "Did the person ironed the clothes?", "answer": "no", "annotation": "a_binary_22e242075d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_24f0ac6108", "category": "binary", "fine_category": "action", "video": "star/MUO4G.mp4", "video_exists": true, "question": "Did the person open the refrigerator while sitting on the table and touching the doorknob?", "answer": "yes", "annotation": "a_binary_24f0ac6108", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_274907993a", "category": "binary", "fine_category": "action", "video": "star/OB1XO.mp4", "video_exists": true, "question": "Did the person fluffed up the clothes while touching the clothes?", "answer": "no", "annotation": "a_binary_274907993a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_28eb7519ce", "category": "binary", "fine_category": "action", "video": "star/VEHER.mp4", "video_exists": true, "question": "Did the person take the box?", "answer": "yes", "annotation": "a_binary_28eb7519ce", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_295f7433d2", "category": "binary", "fine_category": "action", "video": "star/FQS7O.mp4", "video_exists": true, "question": "Did the person close the book?", "answer": "yes", "annotation": "a_binary_295f7433d2", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_296efc4560", "category": "binary", "fine_category": "action", "video": "star/01ZWG.mp4", "video_exists": true, "question": "Did the person open the laptop?", "answer": "yes", "annotation": "a_binary_296efc4560", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2c8fc1e057", "category": "binary", "fine_category": "action", "video": "star/JBJGX.mp4", "video_exists": true, "question": "Did the person close the laptop?", "answer": "yes", "annotation": "a_binary_2c8fc1e057", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2d5f86d385", "category": "binary", "fine_category": "action", "video": "star/L29HE.mp4", "video_exists": true, "question": "Did the person take the broom?", "answer": "yes", "annotation": "a_binary_2d5f86d385", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_2d650ab4af", "category": "binary", "fine_category": "action", "video": "star/1MZJF.mp4", "video_exists": true, "question": "Did the person sit on the floor?", "answer": "yes", "annotation": "a_binary_2d650ab4af", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_301cf6a8c2", "category": "binary", "fine_category": "action", "video": "star/TIPFG.mp4", "video_exists": true, "question": "Did the person put down the box while touching the chair and drinking from the cup/glass/bottle?", "answer": "yes", "annotation": "a_binary_301cf6a8c2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_302ad1459c", "category": "binary", "fine_category": "action", "video": "star/ACJBD.mp4", "video_exists": true, "question": "Did the person tidy up the clothes?", "answer": "yes", "annotation": "a_binary_302ad1459c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_305cadd6cd", "category": "binary", "fine_category": "action", "video": "star/OKYYQ.mp4", "video_exists": true, "question": "Did the person flipped through the pages with the book?", "answer": "no", "annotation": "a_binary_305cadd6cd", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_318cd413b5", "category": "binary", "fine_category": "action", "video": "star/52WDV.mp4", "video_exists": true, "question": "Did the person read aloud from the book?", "answer": "no", "annotation": "a_binary_318cd413b5", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_31a8d00b07", "category": "binary", "fine_category": "action", "video": "star/R74DE.mp4", "video_exists": true, "question": "Did the person throw the towel?", "answer": "yes", "annotation": "a_binary_31a8d00b07", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_33d9a8b07a", "category": "binary", "fine_category": "action", "video": "star/NEM29.mp4", "video_exists": true, "question": "Did the person take the bag while touching the clothes and lying on the television?", "answer": "yes", "annotation": "a_binary_33d9a8b07a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_361e79c595", "category": "binary", "fine_category": "action", "video": "star/BJXRT.mp4", "video_exists": true, "question": "Did the person fold the blanket neatly while touching the blanket?", "answer": "no", "annotation": "a_binary_361e79c595", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_36cd013e6a", "category": "binary", "fine_category": "action", "video": "star/NVGDG.mp4", "video_exists": true, "question": "Did the person sat on the sofa/couch?", "answer": "yes", "annotation": "a_binary_36cd013e6a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_373ec6b735", "category": "binary", "fine_category": "action", "video": "star/OVFR0.mp4", "video_exists": true, "question": "Did the person put down the book while they were holding the book?", "answer": "yes", "annotation": "a_binary_373ec6b735", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_375e3389ca", "category": "binary", "fine_category": "action", "video": "star/H8UJ3.mp4", "video_exists": true, "question": "Did the person read a passage aloud from the book while holding the book?", "answer": "no", "annotation": "a_binary_375e3389ca", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3aa631b23d", "category": "binary", "fine_category": "action", "video": "star/HXUI5.mp4", "video_exists": true, "question": "Did the person fold the clothes?", "answer": "no", "annotation": "a_binary_3aa631b23d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3b3becbaac", "category": "binary", "fine_category": "action", "video": "star/AS7SG.mp4", "video_exists": true, "question": "Did the person open the laptop while touching it?", "answer": "yes", "annotation": "a_binary_3b3becbaac", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3c2ee51d01", "category": "binary", "fine_category": "action", "video": "star/75RPN.mp4", "video_exists": true, "question": "Did the person fluff the pillow?", "answer": "no", "annotation": "a_binary_3c2ee51d01", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3d33401c27", "category": "binary", "fine_category": "action", "video": "star/136V6.mp4", "video_exists": true, "question": "Did the person push the sofa/couch?", "answer": "no", "annotation": "a_binary_3d33401c27", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3de2261e9d", "category": "binary", "fine_category": "action", "video": "star/BJXRT.mp4", "video_exists": true, "question": "Did the person take the blanket while they were holding the blanket?", "answer": "yes", "annotation": "a_binary_3de2261e9d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3f954992fc", "category": "binary", "fine_category": "action", "video": "star/ABHC6.mp4", "video_exists": true, "question": "Did the person fold the clothes neatly while holding the clothes?", "answer": "no", "annotation": "a_binary_3f954992fc", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_416aff78c6", "category": "binary", "fine_category": "action", "video": "star/9MNZ5.mp4", "video_exists": true, "question": "Did the person open the box while leaning on the chair and touching the table?", "answer": "yes", "annotation": "a_binary_416aff78c6", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_417b941a6f", "category": "binary", "fine_category": "action", "video": "star/98W87.mp4", "video_exists": true, "question": "Did the person put down the sandwich?", "answer": "yes", "annotation": "a_binary_417b941a6f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4279d54e06", "category": "binary", "fine_category": "action", "video": "star/3V2HJ.mp4", "video_exists": true, "question": "Did the person adjust the bag straps while having the bag on their back?", "answer": "no", "annotation": "a_binary_4279d54e06", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4466ace407", "category": "binary", "fine_category": "action", "video": "star/M7BD4.mp4", "video_exists": true, "question": "Did the person close the laptop while touching the laptop?", "answer": "yes", "annotation": "a_binary_4466ace407", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_463368bbd3", "category": "binary", "fine_category": "action", "video": "star/2KGV3.mp4", "video_exists": true, "question": "Did the person put down the sandwich while sitting on the bed and touching the paper/notebook?", "answer": "yes", "annotation": "a_binary_463368bbd3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_46770a839c", "category": "binary", "fine_category": "action", "video": "star/O18DS.mp4", "video_exists": true, "question": "Did the person read a page from the book while holding the book?", "answer": "no", "annotation": "a_binary_46770a839c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_497e419199", "category": "binary", "fine_category": "action", "video": "star/Y6P1E.mp4", "video_exists": true, "question": "Did the person open the closet/cabinet?", "answer": "yes", "annotation": "a_binary_497e419199", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_4a38a2079a", "category": "binary", "fine_category": "action", "video": "star/FM078.mp4", "video_exists": true, "question": "Did the person carefully set the box aside while holding the box?", "answer": "no", "annotation": "a_binary_4a38a2079a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4a7a8103bc", "category": "binary", "fine_category": "action", "video": "star/8W31Y.mp4", "video_exists": true, "question": "Did the person eagerly eat the food while covered by the blanket and leaning on the bed?", "answer": "no", "annotation": "a_binary_4a7a8103bc", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4ce7a682d8", "category": "binary", "fine_category": "action", "video": "star/8UCK1.mp4", "video_exists": true, "question": "Did the person paint the doors of the closet/cabinet?", "answer": "no", "annotation": "a_binary_4ce7a682d8", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_522424bb37", "category": "binary", "fine_category": "action", "video": "star/1ZBUS.mp4", "video_exists": true, "question": "Did the person dance on the table?", "answer": "no", "annotation": "a_binary_522424bb37", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5319127181", "category": "binary", "fine_category": "action", "video": "star/9B93K.mp4", "video_exists": true, "question": "Did the person wrap the sandwich while doing something with it?", "answer": "no", "annotation": "a_binary_5319127181", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5464bb5d27", "category": "binary", "fine_category": "action", "video": "star/3CLVI.mp4", "video_exists": true, "question": "Did the person fold the towel neatly while touching the towel?", "answer": "no", "annotation": "a_binary_5464bb5d27", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_55fc81c431", "category": "binary", "fine_category": "action", "video": "star/3JCEI.mp4", "video_exists": true, "question": "Did the person close the laptop while touching the laptop?", "answer": "yes", "annotation": "a_binary_55fc81c431", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_56184d2679", "category": "binary", "fine_category": "action", "video": "star/CR5G1.mp4", "video_exists": true, "question": "Did the person fold the blanket neatly instead of taking it?", "answer": "no", "annotation": "a_binary_56184d2679", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_56be440387", "category": "binary", "fine_category": "action", "video": "star/4GLAP.mp4", "video_exists": true, "question": "Did the person kick the shoe?", "answer": "no", "annotation": "a_binary_56be440387", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_58d6df096d", "category": "binary", "fine_category": "action", "video": "star/RZY2I.mp4", "video_exists": true, "question": "Did the person paint the window?", "answer": "no", "annotation": "a_binary_58d6df096d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5c846ea0f2", "category": "binary", "fine_category": "action", "video": "star/V8JOH.mp4", "video_exists": true, "question": "Did the person mixed the medicine into a drink?", "answer": "no", "annotation": "a_binary_5c846ea0f2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5ce0eafdc9", "category": "binary", "fine_category": "action", "video": "star/0OE6M.mp4", "video_exists": true, "question": "Did the person hung up the clothes?", "answer": "no", "annotation": "a_binary_5ce0eafdc9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5d229c7fd4", "category": "binary", "fine_category": "action", "video": "star/MX9XB.mp4", "video_exists": true, "question": "Did the person throw the bag while they were holding the bag?", "answer": "yes", "annotation": "a_binary_5d229c7fd4", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5d33a7b6d2", "category": "binary", "fine_category": "action", "video": "star/YFI1M.mp4", "video_exists": true, "question": "Did the person fold and stack the clothes neatly?", "answer": "no", "annotation": "a_binary_5d33a7b6d2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5ec4d30ed1", "category": "binary", "fine_category": "action", "video": "star/8SDK5.mp4", "video_exists": true, "question": "Did the person sat on the sofa/couch?", "answer": "yes", "annotation": "a_binary_5ec4d30ed1", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5f3dece79d", "category": "binary", "fine_category": "action", "video": "star/EDXBD.mp4", "video_exists": true, "question": "Did the person polish the table?", "answer": "no", "annotation": "a_binary_5f3dece79d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5fa24bebcc", "category": "binary", "fine_category": "action", "video": "star/RG0KS.mp4", "video_exists": true, "question": "Did the person tidy up with the blanket?", "answer": "yes", "annotation": "a_binary_5fa24bebcc", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5ffa92406e", "category": "binary", "fine_category": "action", "video": "star/3IRHH.mp4", "video_exists": true, "question": "Did the person read aloud from the book while holding the book?", "answer": "no", "annotation": "a_binary_5ffa92406e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_652b7fd638", "category": "binary", "fine_category": "action", "video": "star/R1RDT.mp4", "video_exists": true, "question": "Did the person jumped on the bed?", "answer": "no", "annotation": "a_binary_652b7fd638", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_672d0163e4", "category": "binary", "fine_category": "action", "video": "star/2RTH2.mp4", "video_exists": true, "question": "Did the person fold the towel neatly?", "answer": "no", "annotation": "a_binary_672d0163e4", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_675b474b9f", "category": "binary", "fine_category": "action", "video": "star/MFQ5S.mp4", "video_exists": true, "question": "Did the person reorganized the items inside the closet/cabinet?", "answer": "no", "annotation": "a_binary_675b474b9f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_68e43ede13", "category": "binary", "fine_category": "action", "video": "star/84893.mp4", "video_exists": true, "question": "Did the person fold the blanket neatly while carrying the blanket and standing on the floor?", "answer": "no", "annotation": "a_binary_68e43ede13", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6929021d46", "category": "binary", "fine_category": "action", "video": "star/E0ZBC.mp4", "video_exists": true, "question": "Did the person organize the magazines on the table while sitting on the sofa and touching the table?", "answer": "no", "annotation": "a_binary_6929021d46", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_69b3baa011", "category": "binary", "fine_category": "action", "video": "star/KRLT7.mp4", "video_exists": true, "question": "Did the person throw the clothes?", "answer": "yes", "annotation": "a_binary_69b3baa011", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6a27d25d92", "category": "binary", "fine_category": "action", "video": "star/84893.mp4", "video_exists": true, "question": "Did the person rolled up the blanket while holding the blanket?", "answer": "no", "annotation": "a_binary_6a27d25d92", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6c35c486a3", "category": "binary", "fine_category": "action", "video": "star/BFH78.mp4", "video_exists": true, "question": "Did the person write something down on the paper while touching the paper/notebook and leaning on the chair?", "answer": "no", "annotation": "a_binary_6c35c486a3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6e055f1c24", "category": "binary", "fine_category": "action", "video": "star/CSYES.mp4", "video_exists": true, "question": "Did the person put down the towel while they were holding the towel?", "answer": "yes", "annotation": "a_binary_6e055f1c24", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6e0f8ab2d9", "category": "binary", "fine_category": "action", "video": "star/41EQS.mp4", "video_exists": true, "question": "Did the person throw the bag?", "answer": "yes", "annotation": "a_binary_6e0f8ab2d9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6e30341e3d", "category": "binary", "fine_category": "action", "video": "star/SANRG.mp4", "video_exists": true, "question": "Did the person throw the blanket while leaning on the sofa and standing on the floor?", "answer": "yes", "annotation": "a_binary_6e30341e3d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_700985da8d", "category": "binary", "fine_category": "action", "video": "star/BFH78.mp4", "video_exists": true, "question": "Did the person tidy up the towel while touching the paper and sitting on the chair?", "answer": "no", "annotation": "a_binary_700985da8d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_72dd785168", "category": "binary", "fine_category": "action", "video": "star/HFTEO.mp4", "video_exists": true, "question": "Did the person fold the clothes and place them in a basket while holding the clothes?", "answer": "no", "annotation": "a_binary_72dd785168", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_73cec044ad", "category": "binary", "fine_category": "action", "video": "star/15PMU.mp4", "video_exists": true, "question": "Did the person hang up the clothes to dry?", "answer": "no", "annotation": "a_binary_73cec044ad", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7689ea55a9", "category": "binary", "fine_category": "action", "video": "star/1HZGH.mp4", "video_exists": true, "question": "Did the person lie on the sofa/couch while they were covered by the blanket and sitting on the bed?", "answer": "yes", "annotation": "a_binary_7689ea55a9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7c09688a0c", "category": "binary", "fine_category": "action", "video": "star/YXQWH.mp4", "video_exists": true, "question": "Did the person tossed the bag onto the chair while holding the bag?", "answer": "no", "annotation": "a_binary_7c09688a0c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7cb79a50e6", "category": "binary", "fine_category": "action", "video": "star/2BO2G.mp4", "video_exists": true, "question": "Did the person put down the picture while touching the book and leaning on the table?", "answer": "yes", "annotation": "a_binary_7cb79a50e6", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7ed5590914", "category": "binary", "fine_category": "action", "video": "star/9AFSH.mp4", "video_exists": true, "question": "Did the person fold the blanket neatly while sitting on the sofa and touching the chair?", "answer": "no", "annotation": "a_binary_7ed5590914", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8454696059", "category": "binary", "fine_category": "action", "video": "star/MY5CQ.mp4", "video_exists": true, "question": "Did the person close the laptop?", "answer": "yes", "annotation": "a_binary_8454696059", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_85dedb966e", "category": "binary", "fine_category": "action", "video": "star/2544C.mp4", "video_exists": true, "question": "Did the person throw the towel while being covered by it?", "answer": "yes", "annotation": "a_binary_85dedb966e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_879739afa1", "category": "binary", "fine_category": "action", "video": "star/R74DE.mp4", "video_exists": true, "question": "Did the person fold the towel neatly while covered by the towel?", "answer": "no", "annotation": "a_binary_879739afa1", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_882a7bc205", "category": "binary", "fine_category": "action", "video": "star/BN4VH.mp4", "video_exists": true, "question": "Did the person take the dish?", "answer": "yes", "annotation": "a_binary_882a7bc205", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_888672258c", "category": "binary", "fine_category": "action", "video": "star/VML1Z.mp4", "video_exists": true, "question": "Did the person take items out of the closet/cabinet?", "answer": "no", "annotation": "a_binary_888672258c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8906ada109", "category": "binary", "fine_category": "action", "video": "star/XO8NL.mp4", "video_exists": true, "question": "Did the person fold the towel neatly while holding the towel?", "answer": "no", "annotation": "a_binary_8906ada109", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_89360b806a", "category": "binary", "fine_category": "action", "video": "star/6ALEL.mp4", "video_exists": true, "question": "Did the person put down the towel while standing on the floor and leaning on the doorway?", "answer": "yes", "annotation": "a_binary_89360b806a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_89b9ece8ed", "category": "binary", "fine_category": "action", "video": "star/GKH0F.mp4", "video_exists": true, "question": "Did the person put down the bag while standing on the floor and sitting on the sofa/couch?", "answer": "yes", "annotation": "a_binary_89b9ece8ed", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8aaac254b4", "category": "binary", "fine_category": "action", "video": "star/C1DK7.mp4", "video_exists": true, "question": "Did the person close the laptop while touching the table and leaning on the chair?", "answer": "yes", "annotation": "a_binary_8aaac254b4", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8af11dc9ae", "category": "binary", "fine_category": "action", "video": "star/TRHT1.mp4", "video_exists": true, "question": "Did the person adjust the window blinds while sitting on the chair and carrying the pillow?", "answer": "no", "annotation": "a_binary_8af11dc9ae", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8b13c0b750", "category": "binary", "fine_category": "action", "video": "star/DIR8Q.mp4", "video_exists": true, "question": "Did the person check messages with the phone/camera?", "answer": "no", "annotation": "a_binary_8b13c0b750", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8b1c627937", "category": "binary", "fine_category": "action", "video": "star/IWF0U.mp4", "video_exists": true, "question": "Did the person tidied up with the blanket?", "answer": "yes", "annotation": "a_binary_8b1c627937", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8ce687c98c", "category": "binary", "fine_category": "action", "video": "star/3WMV4.mp4", "video_exists": true, "question": "Did the person eat the sandwich while drinking from the cup/glass/bottle and leaning on the window?", "answer": "yes", "annotation": "a_binary_8ce687c98c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_901ad039c3", "category": "binary", "fine_category": "action", "video": "star/U33ZS.mp4", "video_exists": true, "question": "Did the person write on a note pad while touching the table and sitting on the chair?", "answer": "no", "annotation": "a_binary_901ad039c3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9093fe89fa", "category": "binary", "fine_category": "action", "video": "star/W2LM5.mp4", "video_exists": true, "question": "Did the person sweep the floor with the broom?", "answer": "no", "annotation": "a_binary_9093fe89fa", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_913e2b2b02", "category": "binary", "fine_category": "action", "video": "star/3CAPI.mp4", "video_exists": true, "question": "Did the person throw the clothes?", "answer": "yes", "annotation": "a_binary_913e2b2b02", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9152aff421", "category": "binary", "fine_category": "action", "video": "star/8LAK1.mp4", "video_exists": true, "question": "Did the person gently stirred the food?", "answer": "no", "annotation": "a_binary_9152aff421", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9587305996", "category": "binary", "fine_category": "action", "video": "star/GN912.mp4", "video_exists": true, "question": "Did the person pass the dish to someone else?", "answer": "no", "annotation": "a_binary_9587305996", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_95e10cd1b9", "category": "binary", "fine_category": "action", "video": "star/N7GBK.mp4", "video_exists": true, "question": "Did the person put down the towel while they were holding the towel?", "answer": "yes", "annotation": "a_binary_95e10cd1b9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_95e7c4570d", "category": "binary", "fine_category": "action", "video": "star/FL6DF.mp4", "video_exists": true, "question": "Did the person take a sip from a cup while touching the blanket and sitting on the sofa/couch?", "answer": "no", "annotation": "a_binary_95e7c4570d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_97d1805056", "category": "binary", "fine_category": "action", "video": "star/SM5WL.mp4", "video_exists": true, "question": "Did the person lie on the bed while writing on the paper/notebook and covered by the blanket?", "answer": "yes", "annotation": "a_binary_97d1805056", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_98e8d1808f", "category": "binary", "fine_category": "action", "video": "star/EEGGA.mp4", "video_exists": true, "question": "Did the person fold the towel neatly while touching the towel and sitting on the chair?", "answer": "no", "annotation": "a_binary_98e8d1808f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_995e2ead33", "category": "binary", "fine_category": "action", "video": "star/KU656.mp4", "video_exists": true, "question": "Did the person stack some books on the shelf while sitting on the bed and touching the shelf?", "answer": "no", "annotation": "a_binary_995e2ead33", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9b04f4fff4", "category": "binary", "fine_category": "action", "video": "star/BPH56.mp4", "video_exists": true, "question": "Did the person garnish the dish?", "answer": "no", "annotation": "a_binary_9b04f4fff4", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9bac0d5ae3", "category": "binary", "fine_category": "action", "video": "star/R74DE.mp4", "video_exists": true, "question": "Did the person throw the towel while they were carrying the towel?", "answer": "yes", "annotation": "a_binary_9bac0d5ae3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9cbd44a03a", "category": "binary", "fine_category": "action", "video": "star/V10LX.mp4", "video_exists": true, "question": "Did the person put down the cup/glass/bottle?", "answer": "yes", "annotation": "a_binary_9cbd44a03a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9d703ac8d7", "category": "binary", "fine_category": "action", "video": "star/E6PSM.mp4", "video_exists": true, "question": "Did the person balance the box on one hand while holding the box?", "answer": "no", "annotation": "a_binary_9d703ac8d7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9e85ec43c6", "category": "binary", "fine_category": "action", "video": "star/013SD.mp4", "video_exists": true, "question": "Did the person put down the box?", "answer": "yes", "annotation": "a_binary_9e85ec43c6", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_9f23531f30", "category": "binary", "fine_category": "action", "video": "star/RQRRD.mp4", "video_exists": true, "question": "Did the person fold the clothes neatly?", "answer": "no", "annotation": "a_binary_9f23531f30", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9f63942887", "category": "binary", "fine_category": "action", "video": "star/M7BD4.mp4", "video_exists": true, "question": "Did the person close the laptop?", "answer": "yes", "annotation": "a_binary_9f63942887", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9f9c591ab5", "category": "binary", "fine_category": "action", "video": "star/IU5TH.mp4", "video_exists": true, "question": "Did the person take the bag while touching the laptop and sitting on the chair?", "answer": "yes", "annotation": "a_binary_9f9c591ab5", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a0c0855a26", "category": "binary", "fine_category": "action", "video": "star/0MFAM.mp4", "video_exists": true, "question": "Did the person sweep the floor with the broom?", "answer": "no", "annotation": "a_binary_a0c0855a26", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a25eb60647", "category": "binary", "fine_category": "action", "video": "star/OZSB3.mp4", "video_exists": true, "question": "Did the person take the pillow while leaning on the chair and touching the bag?", "answer": "yes", "annotation": "a_binary_a25eb60647", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a2eef280c1", "category": "binary", "fine_category": "action", "video": "star/U33ZS.mp4", "video_exists": true, "question": "Did the person close a book and sighed while sitting on the chair and touching the paper/notebook?", "answer": "no", "annotation": "a_binary_a2eef280c1", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a3e57dcb22", "category": "binary", "fine_category": "action", "video": "star/9MNZ5.mp4", "video_exists": true, "question": "Did the person put down the box while leaning on the chair and touching the table?", "answer": "yes", "annotation": "a_binary_a3e57dcb22", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a48bc1a6c3", "category": "binary", "fine_category": "action", "video": "star/UEC1F.mp4", "video_exists": true, "question": "Did the person take the clothes while they were touching the clothes?", "answer": "yes", "annotation": "a_binary_a48bc1a6c3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a4af3567b9", "category": "binary", "fine_category": "action", "video": "star/JVXMI.mp4", "video_exists": true, "question": "Did the person capture a selfie with the phone/camera?", "answer": "no", "annotation": "a_binary_a4af3567b9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a599a1d3bf", "category": "binary", "fine_category": "action", "video": "star/52WDV.mp4", "video_exists": true, "question": "Did the person take the clothes while touching the clothes?", "answer": "yes", "annotation": "a_binary_a599a1d3bf", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a9494ffbe9", "category": "binary", "fine_category": "action", "video": "star/G6ZOB.mp4", "video_exists": true, "question": "Did the person gently place the book on a shelf while holding the book?", "answer": "no", "annotation": "a_binary_a9494ffbe9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a9f5d48d0b", "category": "binary", "fine_category": "action", "video": "star/OEE36.mp4", "video_exists": true, "question": "Did the person put down the towel while holding the towel?", "answer": "yes", "annotation": "a_binary_a9f5d48d0b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_aad96ffb1c", "category": "binary", "fine_category": "action", "video": "star/OEE36.mp4", "video_exists": true, "question": "Did the person put down the box while they were touching the box?", "answer": "yes", "annotation": "a_binary_aad96ffb1c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ac8a5f96a9", "category": "binary", "fine_category": "action", "video": "star/DHFA6.mp4", "video_exists": true, "question": "Did the person put down the box while they were touching the box?", "answer": "yes", "annotation": "a_binary_ac8a5f96a9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ae207e1f18", "category": "binary", "fine_category": "action", "video": "star/A3OWG.mp4", "video_exists": true, "question": "Did the person swing around with the broom?", "answer": "no", "annotation": "a_binary_ae207e1f18", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b006ba8a34", "category": "binary", "fine_category": "action", "video": "star/8VSV6.mp4", "video_exists": true, "question": "Did the person set a vase on the table?", "answer": "no", "annotation": "a_binary_b006ba8a34", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b25ad0a378", "category": "binary", "fine_category": "action", "video": "star/T1CQE.mp4", "video_exists": true, "question": "Did the person put the laptop inside the bag while touching the bag and sitting on the floor?", "answer": "no", "annotation": "a_binary_b25ad0a378", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b28d425109", "category": "binary", "fine_category": "action", "video": "star/X8JVY.mp4", "video_exists": true, "question": "Did the person place the book on the shelf?", "answer": "no", "annotation": "a_binary_b28d425109", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b4234f4ba9", "category": "binary", "fine_category": "action", "video": "star/Z7QTA.mp4", "video_exists": true, "question": "Did the person carefully placed the box on a shelf while holding the box?", "answer": "no", "annotation": "a_binary_b4234f4ba9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b553eeb773", "category": "binary", "fine_category": "action", "video": "star/M2XIS.mp4", "video_exists": true, "question": "Did the person type an email on the laptop while holding it?", "answer": "no", "annotation": "a_binary_b553eeb773", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b73aa6e72f", "category": "binary", "fine_category": "action", "video": "star/JCNHL.mp4", "video_exists": true, "question": "Did the person open the box?", "answer": "yes", "annotation": "a_binary_b73aa6e72f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b872fb5eca", "category": "binary", "fine_category": "action", "video": "star/D67MQ.mp4", "video_exists": true, "question": "Did the person mop the floor?", "answer": "no", "annotation": "a_binary_b872fb5eca", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b88a2e5c1f", "category": "binary", "fine_category": "action", "video": "star/RKGG5.mp4", "video_exists": true, "question": "Did the person throw the broom?", "answer": "yes", "annotation": "a_binary_b88a2e5c1f", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_bb737bf7e4", "category": "binary", "fine_category": "action", "video": "star/L9ANI.mp4", "video_exists": true, "question": "Did the person take the towel while they were holding the towel?", "answer": "yes", "annotation": "a_binary_bb737bf7e4", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_bc79e92674", "category": "binary", "fine_category": "action", "video": "star/9OMY1.mp4", "video_exists": true, "question": "Did the person inspect the box for labels while touching the box?", "answer": "no", "annotation": "a_binary_bc79e92674", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_bcc7c3b790", "category": "binary", "fine_category": "action", "video": "star/XFRYR.mp4", "video_exists": true, "question": "Did the person sort clothes with the closet/cabinet?", "answer": "no", "annotation": "a_binary_bcc7c3b790", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_bdc2d36c6e", "category": "binary", "fine_category": "action", "video": "star/XBB9P.mp4", "video_exists": true, "question": "Did the person open the closet/cabinet?", "answer": "yes", "annotation": "a_binary_bdc2d36c6e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_bf2318159a", "category": "binary", "fine_category": "action", "video": "star/NKCXF.mp4", "video_exists": true, "question": "Did the person watch a movie on the TV while touching the pillow and sitting on the sofa/couch?", "answer": "no", "annotation": "a_binary_bf2318159a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c1d941718f", "category": "binary", "fine_category": "action", "video": "star/0BZAD.mp4", "video_exists": true, "question": "Did the person open the book while they were holding it?", "answer": "yes", "annotation": "a_binary_c1d941718f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c342f9245a", "category": "binary", "fine_category": "action", "video": "star/EM0B6.mp4", "video_exists": true, "question": "Did the person take the sandwich while drinking from the cup and sitting on the sofa?", "answer": "yes", "annotation": "a_binary_c342f9245a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c385476454", "category": "binary", "fine_category": "action", "video": "star/6PL9Z.mp4", "video_exists": true, "question": "Did the person sit on the sofa/couch?", "answer": "yes", "annotation": "a_binary_c385476454", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c3a20d4e01", "category": "binary", "fine_category": "action", "video": "star/NW0KT.mp4", "video_exists": true, "question": "Did the person close the book?", "answer": "yes", "annotation": "a_binary_c3a20d4e01", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c481f1549b", "category": "binary", "fine_category": "action", "video": "star/UF91R.mp4", "video_exists": true, "question": "Did the person adjust the screen angle while touching the laptop?", "answer": "no", "annotation": "a_binary_c481f1549b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c4e799b7e9", "category": "binary", "fine_category": "action", "video": "star/727IZ.mp4", "video_exists": true, "question": "Did the person sat at the table?", "answer": "yes", "annotation": "a_binary_c4e799b7e9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c4fb152800", "category": "binary", "fine_category": "action", "video": "star/P4HXN.mp4", "video_exists": true, "question": "Did the person hand over the laptop to someone?", "answer": "no", "annotation": "a_binary_c4fb152800", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c59e050c2f", "category": "binary", "fine_category": "action", "video": "star/15PMU.mp4", "video_exists": true, "question": "Did the person put down the clothes while they were holding the clothes?", "answer": "yes", "annotation": "a_binary_c59e050c2f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c93a0e0aa7", "category": "binary", "fine_category": "action", "video": "star/YXQWH.mp4", "video_exists": true, "question": "Did the person unpack the food?", "answer": "no", "annotation": "a_binary_c93a0e0aa7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_cb92211321", "category": "binary", "fine_category": "action", "video": "star/WLE0F.mp4", "video_exists": true, "question": "Did the person swing the bag while holding it?", "answer": "no", "annotation": "a_binary_cb92211321", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_cc59f84fdd", "category": "binary", "fine_category": "action", "video": "star/3CLVI.mp4", "video_exists": true, "question": "Did the person fold the towel neatly while touching the doorway and carrying the towel?", "answer": "no", "annotation": "a_binary_cc59f84fdd", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_cda8c06d58", "category": "binary", "fine_category": "action", "video": "star/6TNP4.mp4", "video_exists": true, "question": "Did the person open the refrigerator?", "answer": "yes", "annotation": "a_binary_cda8c06d58", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ce77fca5e2", "category": "binary", "fine_category": "action", "video": "star/4GLAP.mp4", "video_exists": true, "question": "Did the person turned the doorknob to the left while touching the doorknob and standing on the floor?", "answer": "no", "annotation": "a_binary_ce77fca5e2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ce9c2ce90b", "category": "binary", "fine_category": "action", "video": "star/IZ2XX.mp4", "video_exists": true, "question": "Did the person put down the book while they were holding the book?", "answer": "yes", "annotation": "a_binary_ce9c2ce90b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_cef7a749e2", "category": "binary", "fine_category": "action", "video": "star/VS7VS.mp4", "video_exists": true, "question": "Did the person check the index of the book while touching the book?", "answer": "no", "annotation": "a_binary_cef7a749e2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_cf36414e9f", "category": "binary", "fine_category": "action", "video": "star/HJ8U7.mp4", "video_exists": true, "question": "Did the person take the cup/glass/bottle?", "answer": "yes", "annotation": "a_binary_cf36414e9f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_cfaf09ee83", "category": "binary", "fine_category": "action", "video": "star/2LCLG.mp4", "video_exists": true, "question": "Did the person gently placed the book back on the shelf?", "answer": "no", "annotation": "a_binary_cfaf09ee83", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_cff75a8d98", "category": "binary", "fine_category": "action", "video": "star/RCD08.mp4", "video_exists": true, "question": "Did the person fold the towel neatly in a drawer?", "answer": "no", "annotation": "a_binary_cff75a8d98", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d058332837", "category": "binary", "fine_category": "action", "video": "star/1RNK6.mp4", "video_exists": true, "question": "Did the person tidy up the closet/cabinet?", "answer": "yes", "annotation": "a_binary_d058332837", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d106868f52", "category": "binary", "fine_category": "action", "video": "star/86X97.mp4", "video_exists": true, "question": "Did the person drop the book?", "answer": "no", "annotation": "a_binary_d106868f52", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d1c33a6726", "category": "binary", "fine_category": "action", "video": "star/TRHT1.mp4", "video_exists": true, "question": "Did the person hung up neatly with the clothes?", "answer": "no", "annotation": "a_binary_d1c33a6726", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d257a821a0", "category": "binary", "fine_category": "action", "video": "star/T7ST5.mp4", "video_exists": true, "question": "Did the person place the food in the pan?", "answer": "no", "annotation": "a_binary_d257a821a0", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d5164de264", "category": "binary", "fine_category": "action", "video": "star/E18UD.mp4", "video_exists": true, "question": "Did the person cook the food?", "answer": "no", "annotation": "a_binary_d5164de264", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d5cf2c55bb", "category": "binary", "fine_category": "action", "video": "star/FM5D5.mp4", "video_exists": true, "question": "Did the person smooth out the clothes while touching the clothes?", "answer": "no", "annotation": "a_binary_d5cf2c55bb", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d7d5871fdd", "category": "binary", "fine_category": "action", "video": "star/BLIFO.mp4", "video_exists": true, "question": "Did the person reorganized items with the closet/cabinet?", "answer": "no", "annotation": "a_binary_d7d5871fdd", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_dbe7aef0ee", "category": "binary", "fine_category": "action", "video": "star/5C4EK.mp4", "video_exists": true, "question": "Did the person take the paper or notebook while leaning on the chair and touching the book?", "answer": "yes", "annotation": "a_binary_dbe7aef0ee", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_dc8a4f2030", "category": "binary", "fine_category": "action", "video": "star/D87LI.mp4", "video_exists": true, "question": "Did the person turn on the laptop while touching the laptop?", "answer": "no", "annotation": "a_binary_dc8a4f2030", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_dfa396dcad", "category": "binary", "fine_category": "action", "video": "star/Q6WH2.mp4", "video_exists": true, "question": "Did the person read aloud from the book while they were holding the book?", "answer": "no", "annotation": "a_binary_dfa396dcad", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e2be9bfa88", "category": "binary", "fine_category": "action", "video": "star/AJTDO.mp4", "video_exists": true, "question": "Did the person gently place the pillow on the couch?", "answer": "no", "annotation": "a_binary_e2be9bfa88", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e59ad17dd6", "category": "binary", "fine_category": "action", "video": "star/VJG6E.mp4", "video_exists": true, "question": "Did the person type on the keyboard while touching the table and sitting on the chair?", "answer": "no", "annotation": "a_binary_e59ad17dd6", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e5f2cdf080", "category": "binary", "fine_category": "action", "video": "star/V3RAX.mp4", "video_exists": true, "question": "Did the person eat the sandwich?", "answer": "yes", "annotation": "a_binary_e5f2cdf080", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e854c08db3", "category": "binary", "fine_category": "action", "video": "star/6ALEL.mp4", "video_exists": true, "question": "Did the person throw the towel while touching the clothes and standing on the floor?", "answer": "yes", "annotation": "a_binary_e854c08db3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e8c06dd8e3", "category": "binary", "fine_category": "action", "video": "star/8MLCU.mp4", "video_exists": true, "question": "Did the person put down the box while holding the box?", "answer": "yes", "annotation": "a_binary_e8c06dd8e3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e8f12ed3b2", "category": "binary", "fine_category": "action", "video": "star/G87XG.mp4", "video_exists": true, "question": "Did the person read a passage from the book while touching the book?", "answer": "no", "annotation": "a_binary_e8f12ed3b2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ea25a72538", "category": "binary", "fine_category": "action", "video": "star/DPLMM.mp4", "video_exists": true, "question": "Did the person lie on the floor while carrying the pillow and touching the light?", "answer": "yes", "annotation": "a_binary_ea25a72538", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ea4abbd5ca", "category": "binary", "fine_category": "action", "video": "star/024PD.mp4", "video_exists": true, "question": "Did the person put down the book while they were holding it?", "answer": "yes", "annotation": "a_binary_ea4abbd5ca", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ea98fa7ac6", "category": "binary", "fine_category": "action", "video": "star/LY10X.mp4", "video_exists": true, "question": "Did the person crush the medicine?", "answer": "no", "annotation": "a_binary_ea98fa7ac6", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ec82d677e0", "category": "binary", "fine_category": "action", "video": "star/SM5WL.mp4", "video_exists": true, "question": "Did the person search for their phone while sitting on the floor and touching the blanket?", "answer": "no", "annotation": "a_binary_ec82d677e0", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_eea946d185", "category": "binary", "fine_category": "action", "video": "star/337O2.mp4", "video_exists": true, "question": "Did the person throw the clothes while they were touching the clothes?", "answer": "yes", "annotation": "a_binary_eea946d185", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_eedf452249", "category": "binary", "fine_category": "action", "video": "star/Z97SD.mp4", "video_exists": true, "question": "Did the person adjust the temperature settings with the refrigerator?", "answer": "no", "annotation": "a_binary_eedf452249", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ef3d1b5a82", "category": "binary", "fine_category": "action", "video": "star/43FG9.mp4", "video_exists": true, "question": "Did the person dusted off the clothes while holding the clothes?", "answer": "no", "annotation": "a_binary_ef3d1b5a82", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ef9e5a8c01", "category": "binary", "fine_category": "action", "video": "star/AXS82.mp4", "video_exists": true, "question": "Did the person close the book?", "answer": "yes", "annotation": "a_binary_ef9e5a8c01", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f10f5267fb", "category": "binary", "fine_category": "action", "video": "star/RCD08.mp4", "video_exists": true, "question": "Did the person wiped their forehead with the towel while holding the towel?", "answer": "no", "annotation": "a_binary_f10f5267fb", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f18e63b164", "category": "binary", "fine_category": "action", "video": "star/PON7X.mp4", "video_exists": true, "question": "Did the person eat the sandwich while touching the book and leaning on the chair?", "answer": "yes", "annotation": "a_binary_f18e63b164", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f49e43e89e", "category": "binary", "fine_category": "action", "video": "star/2XVR0.mp4", "video_exists": true, "question": "Did the person wipe dry the dish?", "answer": "no", "annotation": "a_binary_f49e43e89e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f5511ceeab", "category": "binary", "fine_category": "action", "video": "star/G87XG.mp4", "video_exists": true, "question": "Did the person put down the book while they were holding it?", "answer": "yes", "annotation": "a_binary_f5511ceeab", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fa19ed02b8", "category": "binary", "fine_category": "action", "video": "star/RXLKF.mp4", "video_exists": true, "question": "Did the person shelve the book neatly?", "answer": "no", "annotation": "a_binary_fa19ed02b8", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fa3424cfda", "category": "binary", "fine_category": "action", "video": "star/UEC1F.mp4", "video_exists": true, "question": "Did the person take the blanket while they were touching the blanket?", "answer": "yes", "annotation": "a_binary_fa3424cfda", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fa65d9ff44", "category": "binary", "fine_category": "action", "video": "star/FM5D5.mp4", "video_exists": true, "question": "Did the person fold and stack the clothes?", "answer": "no", "annotation": "a_binary_fa65d9ff44", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fb6d6414b9", "category": "binary", "fine_category": "action", "video": "star/6ZWSU.mp4", "video_exists": true, "question": "Did the person tie the shoelaces while touching the shoe and sitting on the floor?", "answer": "no", "annotation": "a_binary_fb6d6414b9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fdce26fb9a", "category": "binary", "fine_category": "action", "video": "star/MHTRY.mp4", "video_exists": true, "question": "Did the person take the towel while touching the doorway and standing on the floor?", "answer": "yes", "annotation": "a_binary_fdce26fb9a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fde9d86e10", "category": "binary", "fine_category": "action", "video": "star/PON7X.mp4", "video_exists": true, "question": "Did the person eat the sandwich?", "answer": "yes", "annotation": "a_binary_fde9d86e10", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fe3ccb29e8", "category": "binary", "fine_category": "action", "video": "star/3WMV4.mp4", "video_exists": true, "question": "Did the person eat the sandwich?", "answer": "yes", "annotation": "a_binary_fe3ccb29e8", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fe76142042", "category": "binary", "fine_category": "action", "video": "star/XOOTA.mp4", "video_exists": true, "question": "Did the person lie on the floor while covered by the blanket and touching the vacuum?", "answer": "yes", "annotation": "a_binary_fe76142042", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_00ce3714ac", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_NJRrhNrEMsk.mp4", "video_exists": true, "question": "Is the person's hair in the video yellow?", "answer": "yes", "annotation": "a_binary_00ce3714ac", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0d60b1fea3", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_EBw5-KVV_PU.mp4", "video_exists": true, "question": "Are the girl's shoes blue?", "answer": "no", "annotation": "a_binary_0d60b1fea3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0d932be375", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_J1QB1y3vXLY.mp4", "video_exists": true, "question": "Are the short-haired men's gloves blue?", "answer": "no", "annotation": "a_binary_0d932be375", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1006ea2dbd", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_sPK-sbHIb3w.mp4", "video_exists": true, "question": "Is the 69th athlete wearing white clothes?", "answer": "yes", "annotation": "a_binary_1006ea2dbd", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_10a84de2f4", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_jhy6npIdn5o.mp4", "video_exists": true, "question": "Is the person with brown hair at the beginning of the video?", "answer": "no", "annotation": "a_binary_10a84de2f4", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_13641c8d6d", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_E_UkQGk7QAE.mp4", "video_exists": true, "question": "Is the woman's hair in light blue clothes yellow?", "answer": "yes", "annotation": "a_binary_13641c8d6d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_136e89de68", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_ZJnXQw84xvo.mp4", "video_exists": true, "question": "Is the hair of the person in green clothes golden?", "answer": "yes", "annotation": "a_binary_136e89de68", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1930ab0105", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_qObVIn_GI10.mp4", "video_exists": true, "question": "Is the juicer in the video yellow?", "answer": "no", "annotation": "a_binary_1930ab0105", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1ebf2cf0d7", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_fSBX-gjPblw.mp4", "video_exists": true, "question": "Is the grandfather in the wheelchair wearing a red and white dress?", "answer": "yes", "annotation": "a_binary_1ebf2cf0d7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_24235ff8d1", "category": "binary", "fine_category": "color", "video": "activitynetqa/v__jIXs7AFTxw.mp4", "video_exists": true, "question": "Is the lamp in the video white?", "answer": "yes", "annotation": "a_binary_24235ff8d1", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_280b4901e6", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_7rwDYzqfGgU.mp4", "video_exists": true, "question": "Is the ground in the center of the site blue?", "answer": "yes", "annotation": "a_binary_280b4901e6", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2bfa58d74b", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_Aen-RfnlK3A.mp4", "video_exists": true, "question": "Is the dress in the video red?", "answer": "yes", "annotation": "a_binary_2bfa58d74b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3164cc113f", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_C5SXR9nMY3I.mp4", "video_exists": true, "question": "Is the wrapping paper blue?", "answer": "no", "annotation": "a_binary_3164cc113f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_336ed70657", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_KT8DUDFc3Xg.mp4", "video_exists": true, "question": "Are you wearing green shoes?", "answer": "no", "annotation": "a_binary_336ed70657", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_33f2b0475e", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_f8SWWURHV1M.mp4", "video_exists": true, "question": "Is the little girl wearing a red jacket?", "answer": "yes", "annotation": "a_binary_33f2b0475e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3ff5c76949", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_WNgI2qBvPrY.mp4", "video_exists": true, "question": "Is the color of the wings on the little girl's back white?", "answer": "yes", "annotation": "a_binary_3ff5c76949", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4110ad77ea", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_SYh-j9bK_ls.mp4", "video_exists": true, "question": "Are the cheerleaders wearing blue clothes?", "answer": "no", "annotation": "a_binary_4110ad77ea", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_41d89181fd", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_CDncYtx6Lwc.mp4", "video_exists": true, "question": "Is the nail polish red?", "answer": "yes", "annotation": "a_binary_41d89181fd", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_43e2ec5a51", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_IDuoF51IMJ8.mp4", "video_exists": true, "question": "Is the man with the white hat wearing purple clothes?", "answer": "yes", "annotation": "a_binary_43e2ec5a51", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4433d40fd3", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_lYP05IRcOPE.mp4", "video_exists": true, "question": "Is the staff wearing a red helmet?", "answer": "no", "annotation": "a_binary_4433d40fd3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_45edf3f8e7", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_2_H3lxMWvPo.mp4", "video_exists": true, "question": "Is the cow in the video black?", "answer": "yes", "annotation": "a_binary_45edf3f8e7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_46dd4abb16", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_JGPhQX97OSE.mp4", "video_exists": true, "question": "Is the color of the clothes on the court purple?", "answer": "no", "annotation": "a_binary_46dd4abb16", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4972fa8f68", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_I9ficvPdpZg.mp4", "video_exists": true, "question": "Is the person in white clothes using white pigment?", "answer": "yes", "annotation": "a_binary_4972fa8f68", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_49cc870159", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_xuvp0jKMqRU.mp4", "video_exists": true, "question": "Is the hair of the woman in red yellow?", "answer": "yes", "annotation": "a_binary_49cc870159", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4e19077d0d", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_QPEAp7nf2Tk.mp4", "video_exists": true, "question": "Is the hair of the person in striped pants black?", "answer": "yes", "annotation": "a_binary_4e19077d0d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4e49e70bb2", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_W2Mh01F3K5c.mp4", "video_exists": true, "question": "Is the person in white clothes wearing blue gloves?", "answer": "no", "annotation": "a_binary_4e49e70bb2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_51272c979a", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_bRgvAHL3dJk.mp4", "video_exists": true, "question": "Are the people who cook wearing light blue?", "answer": "no", "annotation": "a_binary_51272c979a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_534bc39ecb", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_svNcNLEPKMc.mp4", "video_exists": true, "question": "Is the sportsman wearing red clothes?", "answer": "no", "annotation": "a_binary_534bc39ecb", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5545ac680d", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_ZgdMnfTqblw.mp4", "video_exists": true, "question": "Is the person wearing charcoal grey pants?", "answer": "no", "annotation": "a_binary_5545ac680d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5731cd7031", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_MpeN-IVIBc4.mp4", "video_exists": true, "question": "Is the person's hair in the video brown?", "answer": "no", "annotation": "a_binary_5731cd7031", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_57db7a64b2", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_5UZ2ft8Y3sI.mp4", "video_exists": true, "question": "Is the hair color of the news host black?", "answer": "yes", "annotation": "a_binary_57db7a64b2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5812073f14", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_K1OsjA-f17E.mp4", "video_exists": true, "question": "Is the first person wearing a grey hat?", "answer": "no", "annotation": "a_binary_5812073f14", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_58219513e3", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_RLBfyIVpocE.mp4", "video_exists": true, "question": "Is the person in black clothes wearing black pants?", "answer": "yes", "annotation": "a_binary_58219513e3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_592a656a66", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_xizEiQZfJa4.mp4", "video_exists": true, "question": "Is the person in white wearing blue socks?", "answer": "no", "annotation": "a_binary_592a656a66", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_59ff89b162", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_OQEKZXv6jSw.mp4", "video_exists": true, "question": "Is the chair in the video red?", "answer": "no", "annotation": "a_binary_59ff89b162", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5c41325aac", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_bWZkD_s1940.mp4", "video_exists": true, "question": "Is the dancing girl's pants orange?", "answer": "no", "annotation": "a_binary_5c41325aac", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5c9901e635", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_vnZmsOgWs0o.mp4", "video_exists": true, "question": "Is the person wearing blue clothes?", "answer": "yes", "annotation": "a_binary_5c9901e635", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_615009bf52", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_JvPVYSb_5o8.mp4", "video_exists": true, "question": "Is the sitting person wearing white clothes?", "answer": "yes", "annotation": "a_binary_615009bf52", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_628463ef1f", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_udSHsodv3gY.mp4", "video_exists": true, "question": "Is the person's coat in the video green?", "answer": "yes", "annotation": "a_binary_628463ef1f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_676880e167", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_MAYrBia9Xnw.mp4", "video_exists": true, "question": "Is the child wearing blue clothes?", "answer": "no", "annotation": "a_binary_676880e167", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6d21d2bd2c", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_mMm1LfVb8Pg.mp4", "video_exists": true, "question": "Is the color of the weeding machine red?", "answer": "yes", "annotation": "a_binary_6d21d2bd2c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6d8019d8e4", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_uty4eGb_vvU.mp4", "video_exists": true, "question": "Is the person in red wearing blue pants?", "answer": "no", "annotation": "a_binary_6d8019d8e4", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7185038fd4", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_IToczVhbOc0.mp4", "video_exists": true, "question": "Is the hair of the man with glasses dark brown?", "answer": "no", "annotation": "a_binary_7185038fd4", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_74707c05ad", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_jt-Vnap5KP4.mp4", "video_exists": true, "question": "Do the elderly wear navy blue clothes in the video?", "answer": "no", "annotation": "a_binary_74707c05ad", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_75dfd109dd", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_S6Sg1l78IW0.mp4", "video_exists": true, "question": "Is the woman wearing blue clothes?", "answer": "no", "annotation": "a_binary_75dfd109dd", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_762e7fa320", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_r2H-cnti8GI.mp4", "video_exists": true, "question": "Is the hair of the person wearing the black and white coat black?", "answer": "yes", "annotation": "a_binary_762e7fa320", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7a3cdaee17", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_V6Sy8zpJSuc.mp4", "video_exists": true, "question": "Is the person with the hat wearing blue clothes?", "answer": "no", "annotation": "a_binary_7a3cdaee17", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7eceac4f3c", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_vBOFzuS-Djo.mp4", "video_exists": true, "question": "Is the dress of the baby with short hair pink?", "answer": "yes", "annotation": "a_binary_7eceac4f3c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8419e3368d", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_5LGh56euaZs.mp4", "video_exists": true, "question": "Is the color of the diving suit in the video navy blue?", "answer": "no", "annotation": "a_binary_8419e3368d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_849f0ab400", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_zA2zZPyYLlU.mp4", "video_exists": true, "question": "Is the ship in the video green?", "answer": "no", "annotation": "a_binary_849f0ab400", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8c29b1991f", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_FPf7mAgdy0I.mp4", "video_exists": true, "question": "Is the woman's hair in the video yellow?", "answer": "yes", "annotation": "a_binary_8c29b1991f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8fe2bf5d20", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_CDecXoRSpIc.mp4", "video_exists": true, "question": "Is the person repairing the tire wearing green pants?", "answer": "no", "annotation": "a_binary_8fe2bf5d20", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_91c171faed", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_BhgcXqWQhkQ.mp4", "video_exists": true, "question": "Is the color of the costumes of the performers on the stage black?", "answer": "yes", "annotation": "a_binary_91c171faed", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_963610d6d9", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_z6pmp8TrAVo.mp4", "video_exists": true, "question": "Is the person in the video wearing gray clothes?", "answer": "yes", "annotation": "a_binary_963610d6d9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9d625f1476", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_JbW8efAOOt0.mp4", "video_exists": true, "question": "Is the English font color at the beginning of the video white?", "answer": "yes", "annotation": "a_binary_9d625f1476", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9e2d314ab0", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_JH9qiuPCkY4.mp4", "video_exists": true, "question": "Is the final athlete wearing white clothes?", "answer": "yes", "annotation": "a_binary_9e2d314ab0", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9e72c4fab2", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_-pkfcMUIEMo.mp4", "video_exists": true, "question": "Are the leaves shown green?", "answer": "yes", "annotation": "a_binary_9e72c4fab2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9fb02e2e3b", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_ZlVydB9uUe4.mp4", "video_exists": true, "question": "Is the person in the white shirt wearing gray pants?", "answer": "yes", "annotation": "a_binary_9fb02e2e3b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a20dcf0c5b", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_V9mLJJn8Lvw.mp4", "video_exists": true, "question": "Is the table in the video yellow?", "answer": "yes", "annotation": "a_binary_a20dcf0c5b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a33d8758c8", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_ryFSf08mrkA.mp4", "video_exists": true, "question": "Is the person wearing a blue mask?", "answer": "no", "annotation": "a_binary_a33d8758c8", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a719060de5", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_390iVq_urQM.mp4", "video_exists": true, "question": "Is the person in red clothes wearing black gloves?", "answer": "yes", "annotation": "a_binary_a719060de5", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a958fdc547", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_ojTFTIwsa_c.mp4", "video_exists": true, "question": "Is the towel in the video blue?", "answer": "no", "annotation": "a_binary_a958fdc547", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_aa567b5a97", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_7F-mVWMP2vM.mp4", "video_exists": true, "question": "Is the thread woven in the video creamy beige?", "answer": "no", "annotation": "a_binary_aa567b5a97", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_af23b7a23b", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_HX6BeHLQh5s.mp4", "video_exists": true, "question": "Is the man with a tie wearing blue clothes?", "answer": "no", "annotation": "a_binary_af23b7a23b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_af8dc3af1d", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_fEBM3nPMen8.mp4", "video_exists": true, "question": "Is the color of the diving suits black?", "answer": "yes", "annotation": "a_binary_af8dc3af1d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c76ad83b9a", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_LsVCwr6qPmY.mp4", "video_exists": true, "question": "Is the person in blue wearing black pants?", "answer": "yes", "annotation": "a_binary_c76ad83b9a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c939c01059", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_8kaQq1mR2ys.mp4", "video_exists": true, "question": "Is the long-haired woman's glasses navy blue?", "answer": "no", "annotation": "a_binary_c939c01059", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ccbd2abfbb", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_P2xT7dlyX8Y.mp4", "video_exists": true, "question": "Is the person playing the violin wearing red clothes?", "answer": "no", "annotation": "a_binary_ccbd2abfbb", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_cf3571707a", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_32vYs9wKXE8.mp4", "video_exists": true, "question": "Is the comb purple?", "answer": "yes", "annotation": "a_binary_cf3571707a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d283555394", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_oGU7m7rCZ-Y.mp4", "video_exists": true, "question": "Is the man in the blue coat wearing a blue hat?", "answer": "no", "annotation": "a_binary_d283555394", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d315f02675", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_T0nCDJuikuA.mp4", "video_exists": true, "question": "Is the person in the video wearing red socks?", "answer": "yes", "annotation": "a_binary_d315f02675", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d45984d199", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_atGMJc-DZ7w.mp4", "video_exists": true, "question": "Is the bucket red?", "answer": "no", "annotation": "a_binary_d45984d199", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_dd887e95c1", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_I9ficvPdpZg.mp4", "video_exists": true, "question": "Is the woman's clothing on the stage purple?", "answer": "yes", "annotation": "a_binary_dd887e95c1", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_de192ed69c", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_PFeerDZbGn8.mp4", "video_exists": true, "question": "Is the dog's plate green?", "answer": "no", "annotation": "a_binary_de192ed69c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e4d24d1caa", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_cCimLg-8Dy4.mp4", "video_exists": true, "question": "Is the dress that helps the blindfold yellow?", "answer": "no", "annotation": "a_binary_e4d24d1caa", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e6b0d77e5a", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_pYaZLHpl_Ww.mp4", "video_exists": true, "question": "Is the person in the striped shirt's hair blonde?", "answer": "no", "annotation": "a_binary_e6b0d77e5a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_eb3ccb7835", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_oMtB-y49Yo8.mp4", "video_exists": true, "question": "Is the bowl in the video blue?", "answer": "no", "annotation": "a_binary_eb3ccb7835", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f588787a49", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_AQ3eFWxZ67U.mp4", "video_exists": true, "question": "Is the sunshade in the video red and white?", "answer": "yes", "annotation": "a_binary_f588787a49", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f60b2b8373", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_nhQTxZlzG1Q.mp4", "video_exists": true, "question": "Are the shoes of the person in black blue?", "answer": "no", "annotation": "a_binary_f60b2b8373", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f872676d1b", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_X_K7Aa3Aa-E.mp4", "video_exists": true, "question": "Is the person in white clothes wearing blue hair?", "answer": "no", "annotation": "a_binary_f872676d1b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fd5832a380", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_LjPKKqe-VO0.mp4", "video_exists": true, "question": "Is the coach wearing black clothes?", "answer": "yes", "annotation": "a_binary_fd5832a380", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fdd9aec71f", "category": "binary", "fine_category": "color", "video": "activitynetqa/v__SJOVswvGRc.mp4", "video_exists": true, "question": "Are the children in black wearing green trousers?", "answer": "no", "annotation": "a_binary_fdd9aec71f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fe7e10af11", "category": "binary", "fine_category": "color", "video": "activitynetqa/v_m731tx8N5-Y.mp4", "video_exists": true, "question": "Is the clothes of the bald person purple?", "answer": "yes", "annotation": "a_binary_fe7e10af11", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_00873532d2", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5384265688.mp4", "video_exists": true, "question": "Does the man hold up the towel in front of the baby at the beginning of the video because he is playing?", "answer": "yes", "annotation": "a_binary_00873532d2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_00f2d2f93b", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3924742603.mp4", "video_exists": true, "question": "Does the couple walk down together by holding hands?", "answer": "yes", "annotation": "a_binary_00f2d2f93b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_039a447ca3", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/12566336114.mp4", "video_exists": true, "question": "Is the girl in the blue dress dancing as she plays the harmonica?", "answer": "yes", "annotation": "a_binary_039a447ca3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_03fdae5cba", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3736642934.mp4", "video_exists": true, "question": "Is the woman with the red backpack sitting on the platform because she is admiring the scenery?", "answer": "no", "annotation": "a_binary_03fdae5cba", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0405bb058b", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/8604358723.mp4", "video_exists": true, "question": "Did the girl in red raise her hand at the end of the video to show expression?", "answer": "yes", "annotation": "a_binary_0405bb058b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0431303d6c", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/7733775996.mp4", "video_exists": true, "question": "Did the woman put the spoon into the baby's mouth after scooping something to measure the portion size?", "answer": "no", "annotation": "a_binary_0431303d6c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_04bfb8f795", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/8615395280.mp4", "video_exists": true, "question": "Is the boy sitting at the table to eat?", "answer": "yes", "annotation": "a_binary_04bfb8f795", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_09f1323476", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3078294001.mp4", "video_exists": true, "question": "Did the man in white put his finger on his face near the end as a hand gesture while talking?", "answer": "yes", "annotation": "a_binary_09f1323476", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0a133b2664", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/10226201426.mp4", "video_exists": true, "question": "Did the baby keep his legs wide apart for balance?", "answer": "yes", "annotation": "a_binary_0a133b2664", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0baa265757", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6908276603.mp4", "video_exists": true, "question": "Did a pile of fur appear on the floor near the dog and the woman because it fell off from the dog?", "answer": "yes", "annotation": "a_binary_0baa265757", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0cef1a9e8e", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5264007854.mp4", "video_exists": true, "question": "Does the lady in grey tidy her hair by sweeping it behind her ear?", "answer": "yes", "annotation": "a_binary_0cef1a9e8e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0d9a7273ae", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5810255954.mp4", "video_exists": true, "question": "Does the child touch the dog's nose to signal it's time for a walk?", "answer": "no", "annotation": "a_binary_0d9a7273ae", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0d9afb60ff", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3565236462.mp4", "video_exists": true, "question": "Is the man in black standing at a distance and staring at the man with a brown jacket because he is trying to recognize an old friend from afar?", "answer": "no", "annotation": "a_binary_0d9afb60ff", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0f05fc3263", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3078294001.mp4", "video_exists": true, "question": "Did the man in black open up his hands near the end to calm the surrounding people?", "answer": "no", "annotation": "a_binary_0f05fc3263", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1112fb1f27", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4573724995.mp4", "video_exists": true, "question": "Did the kids run to the stage to present flowers?", "answer": "yes", "annotation": "a_binary_1112fb1f27", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_11df4fae82", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4570227004.mp4", "video_exists": true, "question": "Is the girl looking towards the roof because she is checking for a hidden camera in the beginning?", "answer": "no", "annotation": "a_binary_11df4fae82", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1516f1e0a6", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/7499375636.mp4", "video_exists": true, "question": "Did the man with the black and green helmet turn the motorcycle to his left in the middle of the video to adjust his balance?", "answer": "no", "annotation": "a_binary_1516f1e0a6", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_165f3240ba", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6859121305.mp4", "video_exists": true, "question": "Did the lady in the bikini walk out of the camera because she wanted to fix her sunglasses?", "answer": "no", "annotation": "a_binary_165f3240ba", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_17be73aa2e", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4983163710.mp4", "video_exists": true, "question": "Did the woman in pink hold her left hand out to drink?", "answer": "yes", "annotation": "a_binary_17be73aa2e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_18706a20f3", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2984974097.mp4", "video_exists": true, "question": "Was the girl constantly looking at the pedal and her legs because she was scared of falling?", "answer": "yes", "annotation": "a_binary_18706a20f3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_187fbc899e", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3280713976.mp4", "video_exists": true, "question": "Is the woman nodding her head slowly while watching the men sing because she is waiting for her cue to start singing?", "answer": "no", "annotation": "a_binary_187fbc899e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1888c61453", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/8954271057.mp4", "video_exists": true, "question": "Is the cat turning its head because it is engrossed in watching the dot move on the screen?", "answer": "yes", "annotation": "a_binary_1888c61453", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1a76f45fef", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/10042935613.mp4", "video_exists": true, "question": "Did the shirtless man walk in near the middle of the video to eat the food?", "answer": "yes", "annotation": "a_binary_1a76f45fef", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1b1f2052cb", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5134543028.mp4", "video_exists": true, "question": "Did the woman look up at the man after spinning one round because she was interpreting a secret signal from above?", "answer": "no", "annotation": "a_binary_1b1f2052cb", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1bb5537e63", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/8356440828.mp4", "video_exists": true, "question": "Does the woman bend down as she is walking into the sea to feel the waves?", "answer": "yes", "annotation": "a_binary_1bb5537e63", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1e907676eb", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2957110594.mp4", "video_exists": true, "question": "Was the blanket being held on the special chair to prevent it from flying away in the wind?", "answer": "no", "annotation": "a_binary_1e907676eb", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1e9d892061", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/9299671279.mp4", "video_exists": true, "question": "Are the people dressed in thick clothing because of the winter weather?", "answer": "yes", "annotation": "a_binary_1e9d892061", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2075700d67", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5169503584.mp4", "video_exists": true, "question": "Did the man hide behind the woman's shoulder in the middle of the video because he was showing cheekiness?", "answer": "yes", "annotation": "a_binary_2075700d67", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_20eaa28677", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/8315788918.mp4", "video_exists": true, "question": "Did the man jump when the baby is on the trampoline to demonstrate a magic trick?", "answer": "no", "annotation": "a_binary_20eaa28677", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_21186fcffe", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4691227795.mp4", "video_exists": true, "question": "Is the man wiping the baby's back with a wet cloth to remove excess lotion?", "answer": "no", "annotation": "a_binary_21186fcffe", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2332a72429", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5662041273.mp4", "video_exists": true, "question": "Did the boy run back to the sofa after putting the helicopter on the table because he wanted to fly it again?", "answer": "yes", "annotation": "a_binary_2332a72429", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_23c175d1d2", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/10354698406.mp4", "video_exists": true, "question": "Did the lady not play the piano with her right hand because her right hand was injured?", "answer": "yes", "annotation": "a_binary_23c175d1d2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_28c4af4c17", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5844366740.mp4", "video_exists": true, "question": "Did the lady show affection to the boy by giving him a gentle squeeze to comfort him at the beginning of the video?", "answer": "no", "annotation": "a_binary_28c4af4c17", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_28d0d3bb2f", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/7359783390.mp4", "video_exists": true, "question": "Does the lady exercise caution while walking down by asking for directions while walking?", "answer": "no", "annotation": "a_binary_28d0d3bb2f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2afb3a7b7e", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/7499375636.mp4", "video_exists": true, "question": "Did the man with the black and green helmet move away from the scene by joining a group on skis to blend in?", "answer": "no", "annotation": "a_binary_2afb3a7b7e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2b1e694e70", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5967694182.mp4", "video_exists": true, "question": "Did the lady in white make sure that the baby in the white cap does not fall when playing in the water by explaining water safety rules?", "answer": "no", "annotation": "a_binary_2b1e694e70", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2b2f229da6", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3918022916.mp4", "video_exists": true, "question": "Do the boys move from the start of the footpath to the end by walking?", "answer": "yes", "annotation": "a_binary_2b2f229da6", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2c91489735", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5979780716.mp4", "video_exists": true, "question": "Does the man support the boy by showing a colorful toy in front of him?", "answer": "no", "annotation": "a_binary_2c91489735", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2e9a6ca8a1", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4021620287.mp4", "video_exists": true, "question": "Does the lady with the microphone raise her hand because she is signaling for silence?", "answer": "no", "annotation": "a_binary_2e9a6ca8a1", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_30ebb97260", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4087013668.mp4", "video_exists": true, "question": "Did the baby throw the orange stuff back into the bowl because she wanted to play with food?", "answer": "yes", "annotation": "a_binary_30ebb97260", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_31c7647f91", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6783165377.mp4", "video_exists": true, "question": "Does the boy in blue spread out his arms while walking because he is acting as if he's surfing?", "answer": "no", "annotation": "a_binary_31c7647f91", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_33ab2b135f", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3964215046.mp4", "video_exists": true, "question": "Are there strings attached to the dogs because they help balance while walking on narrow paths?", "answer": "no", "annotation": "a_binary_33ab2b135f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_33d5ceb227", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6036455632.mp4", "video_exists": true, "question": "Did the boy lie on the floor because it was a dance move?", "answer": "yes", "annotation": "a_binary_33d5ceb227", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_34af393614", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4255049031.mp4", "video_exists": true, "question": "Did the man stand up at the end after moving his hands to end his demonstration?", "answer": "yes", "annotation": "a_binary_34af393614", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3529ead84e", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5504913999.mp4", "video_exists": true, "question": "Is the man holding two poles because he wants to mark a boundary for a race?", "answer": "no", "annotation": "a_binary_3529ead84e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_36c840a926", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5484959983.mp4", "video_exists": true, "question": "Does the man in white and blue shirt stand near the edge of the river to check the water temperature?", "answer": "no", "annotation": "a_binary_36c840a926", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_376ae5dd3d", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/8031670968.mp4", "video_exists": true, "question": "Did the girl with the vest stand in front of the pool and look to her left because she was watching the girl with head gear?", "answer": "yes", "annotation": "a_binary_376ae5dd3d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_37a0cd8d82", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4608689081.mp4", "video_exists": true, "question": "Did the girl put the bag down on the ground because it was easier to put things in after turning her back to put the toys in?", "answer": "yes", "annotation": "a_binary_37a0cd8d82", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_37ccf61462", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5002226482.mp4", "video_exists": true, "question": "Did the girl tilt the cup because she imagined the cup was part of a juggling act?", "answer": "no", "annotation": "a_binary_37ccf61462", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_381603fee7", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2615323477.mp4", "video_exists": true, "question": "Did the man in purple carry the man in stripes together with the boy in stripes up near the end for fun?", "answer": "yes", "annotation": "a_binary_381603fee7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3a543996b6", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3565236462.mp4", "video_exists": true, "question": "Is the man with the brown jacket standing so close to the snake because he is acting as a protective shield for onlookers?", "answer": "no", "annotation": "a_binary_3a543996b6", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3bb0615a06", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5700674176.mp4", "video_exists": true, "question": "Was the lady looking in the middle because she was looking at a kite?", "answer": "yes", "annotation": "a_binary_3bb0615a06", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3c527d9b7c", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6296846645.mp4", "video_exists": true, "question": "Did the boy get down from the first chair by using the safety ladder?", "answer": "no", "annotation": "a_binary_3c527d9b7c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3e63dad2eb", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3759767103.mp4", "video_exists": true, "question": "Did the boy on the skateboard land on the road by jumping off the slope?", "answer": "yes", "annotation": "a_binary_3e63dad2eb", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_401adb32fb", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/12165974504.mp4", "video_exists": true, "question": "Does the woman put her hand on the baby's mouth repeatedly at the beginning of the video to prevent the baby from squealing too loudly?", "answer": "no", "annotation": "a_binary_401adb32fb", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_41c6e5cd66", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/11849389436.mp4", "video_exists": true, "question": "Is the boy interacting with the drum by beating it?", "answer": "yes", "annotation": "a_binary_41c6e5cd66", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_41c7ae31c4", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6096998186.mp4", "video_exists": true, "question": "Did the blonde woman hold the pair of souvenirs up in the middle of the video to show her presents?", "answer": "yes", "annotation": "a_binary_41c7ae31c4", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_42ef9257f5", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5382512601.mp4", "video_exists": true, "question": "Do the two dogs play with each other by jumping and licking each other?", "answer": "yes", "annotation": "a_binary_42ef9257f5", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_43569a6714", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/8315788918.mp4", "video_exists": true, "question": "Did the man reach for the baby because he was scared the baby will fall off when he tries to play on the trampoline himself?", "answer": "yes", "annotation": "a_binary_43569a6714", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4745273e78", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/8493226484.mp4", "video_exists": true, "question": "Did the woman move her legs up and down constantly because she was following instructions from a fitness program she was watching?", "answer": "no", "annotation": "a_binary_4745273e78", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_48483da3d9", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2914028294.mp4", "video_exists": true, "question": "Did the baby lying down in the cot start to move with his eyes closed because he was hearing a lullaby?", "answer": "no", "annotation": "a_binary_48483da3d9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_48c76f2217", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5862844345.mp4", "video_exists": true, "question": "Does the child in blue smile as he walks because he is imagining flying like a superhero?", "answer": "no", "annotation": "a_binary_48c76f2217", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4b4ddb27bb", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4753074672.mp4", "video_exists": true, "question": "Is the baby holding on to a red object and putting it near his mouth because he is comforting himself by holding an object?", "answer": "no", "annotation": "a_binary_4b4ddb27bb", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4d1d811144", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4385509313.mp4", "video_exists": true, "question": "Was the girl standing still in the living room at the beginning of the video because she was watching TV?", "answer": "yes", "annotation": "a_binary_4d1d811144", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4e10dbf82d", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/13916908806.mp4", "video_exists": true, "question": "Does the older lady show affection for the parrot by kissing it in the middle of the video?", "answer": "yes", "annotation": "a_binary_4e10dbf82d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4e415fa891", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/8059684971.mp4", "video_exists": true, "question": "Did the kid get onto the chair in the middle by climbing onto it?", "answer": "yes", "annotation": "a_binary_4e415fa891", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4fd5ad7146", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6908276603.mp4", "video_exists": true, "question": "Is the lady keeping her back comfortable by resting on a sofa?", "answer": "yes", "annotation": "a_binary_4fd5ad7146", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5102907598", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/11301174465.mp4", "video_exists": true, "question": "Did the boy change his toy truck's direction by using a stand turn?", "answer": "yes", "annotation": "a_binary_5102907598", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_52883550df", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/9935454173.mp4", "video_exists": true, "question": "Are the dogs interacting with each other because they are training?", "answer": "no", "annotation": "a_binary_52883550df", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_53e6b680b7", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3577736291.mp4", "video_exists": true, "question": "Was the boy in blue pushing the toy cart as he walked to the man to initiate a toy-pushing race?", "answer": "no", "annotation": "a_binary_53e6b680b7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_544d1be522", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5916232981.mp4", "video_exists": true, "question": "Is the baby patting the shoulder of the man in the middle of the video because the baby wants to eat?", "answer": "no", "annotation": "a_binary_544d1be522", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_561c2da3d2", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/7400171806.mp4", "video_exists": true, "question": "Did the lady look at the boy as he got closer to the water dispenser to ensure he doesn't spill water?", "answer": "no", "annotation": "a_binary_561c2da3d2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_57609dc7af", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4419096437.mp4", "video_exists": true, "question": "Did the cat open its eyes the first time because it smelled a snack?", "answer": "no", "annotation": "a_binary_57609dc7af", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5816c48969", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6490763929.mp4", "video_exists": true, "question": "Did the man in red shorts bend near the beginning with the ball because he was ready for the game?", "answer": "yes", "annotation": "a_binary_5816c48969", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_590b58d644", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6790661424.mp4", "video_exists": true, "question": "Does the baby put her legs on the car at the end because she believes she is steering the vehicle?", "answer": "no", "annotation": "a_binary_590b58d644", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5a3ff8674f", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/8388104887.mp4", "video_exists": true, "question": "Did the dog jump upwards because it wanted to catch the ball when the human took the ball from the human?", "answer": "yes", "annotation": "a_binary_5a3ff8674f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5af61f4c30", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6137750706.mp4", "video_exists": true, "question": "Did the baby girl move the toy from side to side because she was trying to open it?", "answer": "yes", "annotation": "a_binary_5af61f4c30", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5d170aa23a", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/8428551576.mp4", "video_exists": true, "question": "Does the baby listen to the iPod by changing the playlist by waving hands?", "answer": "no", "annotation": "a_binary_5d170aa23a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5fa989c142", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4859211556.mp4", "video_exists": true, "question": "Was the keyboard transported to the stage at the end because the children and a lady carried it together?", "answer": "yes", "annotation": "a_binary_5fa989c142", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5faddbd592", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4753074672.mp4", "video_exists": true, "question": "Are there people walking behind the pram in the distance because they are taking a tour?", "answer": "yes", "annotation": "a_binary_5faddbd592", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_60cbf4a383", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3530231811.mp4", "video_exists": true, "question": "Are there people sitting in front of the man in the black jacket because they are audiences?", "answer": "yes", "annotation": "a_binary_60cbf4a383", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_61e3336bd7", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/7263584256.mp4", "video_exists": true, "question": "Do the people hold onto the roller because they are painting the house?", "answer": "yes", "annotation": "a_binary_61e3336bd7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_621b1bb9cc", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4533118162.mp4", "video_exists": true, "question": "Did the girl in black hair reach out her hand in the middle of the video to put cream on the man's face?", "answer": "yes", "annotation": "a_binary_621b1bb9cc", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_625c972aa0", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5533380417.mp4", "video_exists": true, "question": "Is the man holding a baby in his hand to rock the baby to sleep?", "answer": "yes", "annotation": "a_binary_625c972aa0", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_672ded4e21", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3438416167.mp4", "video_exists": true, "question": "Does the man get the cat's attention by demonstrating a magic trick at the beginning?", "answer": "no", "annotation": "a_binary_672ded4e21", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6c3192e7b4", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3039049499.mp4", "video_exists": true, "question": "Does the girl open and close the door by sliding it?", "answer": "yes", "annotation": "a_binary_6c3192e7b4", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6ccfa176f7", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5907839036.mp4", "video_exists": true, "question": "Did the brown shirt man touch the binocular in front of him to see the scenery closer while the green striped shirt man walked past in the middle of the video?", "answer": "yes", "annotation": "a_binary_6ccfa176f7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6d305723ea", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6859121305.mp4", "video_exists": true, "question": "Did the man in grey shorts slide down when trying to kick the ball because he was performing a surprise dance move?", "answer": "no", "annotation": "a_binary_6d305723ea", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6d7985a37e", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5817868766.mp4", "video_exists": true, "question": "Is the man wearing a hat outdoors because it is part of his costume?", "answer": "yes", "annotation": "a_binary_6d7985a37e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7337d35cbb", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5700674176.mp4", "video_exists": true, "question": "Does the man in the jacket support the woman at the end of the video by presenting her with a gift to congratulate her?", "answer": "no", "annotation": "a_binary_7337d35cbb", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_751220a7f8", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3302590729.mp4", "video_exists": true, "question": "Is the man in brown trousers wearing a black cap to protect from the sun?", "answer": "yes", "annotation": "a_binary_751220a7f8", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_75f4a9d925", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2917761273.mp4", "video_exists": true, "question": "Did the kid enter happily inside the room because they were excited to see someone?", "answer": "yes", "annotation": "a_binary_75f4a9d925", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_764195df05", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/13384357414.mp4", "video_exists": true, "question": "Is the man holding the phone leaning forward to whisper instructions to the lady?", "answer": "no", "annotation": "a_binary_764195df05", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_77d59f2bf5", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3065148567.mp4", "video_exists": true, "question": "Is the man in brown stroking the dog on his lap when he moves his hand to keep the hand warm?", "answer": "no", "annotation": "a_binary_77d59f2bf5", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_78ec72704d", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6134739139.mp4", "video_exists": true, "question": "Did the girl look to her right in the middle of the video because she noticed a friend waving at her?", "answer": "no", "annotation": "a_binary_78ec72704d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_792cccd27a", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2914028294.mp4", "video_exists": true, "question": "Did the adult comfort the baby who was crying on the bed by putting a pacifier into his mouth?", "answer": "yes", "annotation": "a_binary_792cccd27a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7b063662fb", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/11081680244.mp4", "video_exists": true, "question": "Does the boy in orange pick up the thing he dropped halfway through by gesturing towards a friend for assistance?", "answer": "no", "annotation": "a_binary_7b063662fb", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7b6bac8533", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/7691220406.mp4", "video_exists": true, "question": "Did the lady in pink pass the knife to the man with white hair to proceed with the next part of the celebration?", "answer": "yes", "annotation": "a_binary_7b6bac8533", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7c086fe029", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4660653323.mp4", "video_exists": true, "question": "Did the man in the white fedora stretch his hand out to take a bottle of water?", "answer": "yes", "annotation": "a_binary_7c086fe029", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7c67224a44", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2436501360.mp4", "video_exists": true, "question": "Did the baby show that it was happy in the video by shaking its head side to side?", "answer": "no", "annotation": "a_binary_7c67224a44", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7e2aa20c75", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2942623423.mp4", "video_exists": true, "question": "Are the people moving their bodies because they are adjusting to the rhythm of a marching tune?", "answer": "no", "annotation": "a_binary_7e2aa20c75", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_80049b803e", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2837375339.mp4", "video_exists": true, "question": "Is the man talking on the camera to communicate with the audience?", "answer": "yes", "annotation": "a_binary_80049b803e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_811b73e1ff", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2670179772.mp4", "video_exists": true, "question": "Did the girl try to move towards the boy at the end of the video by crawling forward?", "answer": "yes", "annotation": "a_binary_811b73e1ff", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8154d2513e", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/8615395280.mp4", "video_exists": true, "question": "Did the boy keep his shirt clean from stains by wearing a bib?", "answer": "yes", "annotation": "a_binary_8154d2513e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_82b8b11b32", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/8189252857.mp4", "video_exists": true, "question": "Did the man in green signal to the man in red what he was referring to by stretching his hand to point when they were talking near the end?", "answer": "yes", "annotation": "a_binary_82b8b11b32", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_82de8f405f", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2554619666.mp4", "video_exists": true, "question": "Did the man in stripes and the man in blue wait for the man in grey to finalize their jogging route before they started jogging?", "answer": "no", "annotation": "a_binary_82de8f405f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8420c39a23", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/8331705246.mp4", "video_exists": true, "question": "Are the people holding sticks in their hands because they are collecting samples for research?", "answer": "no", "annotation": "a_binary_8420c39a23", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_843f5124a2", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2427419981.mp4", "video_exists": true, "question": "Are the ladies in red and white wearing a hat to coordinate a parade?", "answer": "no", "annotation": "a_binary_843f5124a2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_848d45cf20", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4964516093.mp4", "video_exists": true, "question": "Did the girl in black adjust her hat at the start by holding the rim?", "answer": "yes", "annotation": "a_binary_848d45cf20", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_86fa1ebf0d", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2597573446.mp4", "video_exists": true, "question": "Are there people sitting on the edge near the stream because they are collecting rare stones from the stream seen at the end?", "answer": "no", "annotation": "a_binary_86fa1ebf0d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_87179add0c", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4480383711.mp4", "video_exists": true, "question": "Is the hand stretched out because someone is reaching for a secret item on a shelf?", "answer": "no", "annotation": "a_binary_87179add0c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_872ed204aa", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6011836129.mp4", "video_exists": true, "question": "Do the women raise their heads in the middle of the video because they are changing position?", "answer": "yes", "annotation": "a_binary_872ed204aa", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8b937e74ea", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4862215227.mp4", "video_exists": true, "question": "Is the baby being held because the dad is practicing a balancing act by holding it high above his head?", "answer": "no", "annotation": "a_binary_8b937e74ea", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8cd2f3a9ba", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/7018743865.mp4", "video_exists": true, "question": "Is the person in dark blue pulling the white wires because they are performing some experiment with the machine?", "answer": "yes", "annotation": "a_binary_8cd2f3a9ba", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8d0be6854a", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4025182492.mp4", "video_exists": true, "question": "Is the baby wearing a hat to attend a festive parade?", "answer": "no", "annotation": "a_binary_8d0be6854a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8eb157516b", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6490763929.mp4", "video_exists": true, "question": "Do all the boys run after the man holding the ball to practice playing defense?", "answer": "no", "annotation": "a_binary_8eb157516b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_91115f8cd1", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3227968260.mp4", "video_exists": true, "question": "Are the women holding hands because they are starting a dance routine?", "answer": "no", "annotation": "a_binary_91115f8cd1", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_91d54e89ae", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3915869562.mp4", "video_exists": true, "question": "Did the biggest dog lie on its back to relax?", "answer": "yes", "annotation": "a_binary_91d54e89ae", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9271749a28", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6856233194.mp4", "video_exists": true, "question": "Are the group of people standing around because they are watching a demonstration?", "answer": "yes", "annotation": "a_binary_9271749a28", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_94511e62b8", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2687160943.mp4", "video_exists": true, "question": "Did the lady move the girl away from the chair by showing her a magic trick to distract her?", "answer": "no", "annotation": "a_binary_94511e62b8", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_95a3ad9c9a", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4407186551.mp4", "video_exists": true, "question": "Did the women hold scarfs because they were organizing a treasure hunt?", "answer": "no", "annotation": "a_binary_95a3ad9c9a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9bf6d52876", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/9755380174.mp4", "video_exists": true, "question": "Do the boy in green and the child in white dance together near the end of the video?", "answer": "yes", "annotation": "a_binary_9bf6d52876", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9cb980afcc", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/11681746823.mp4", "video_exists": true, "question": "Did the lady shake her head because she wanted to play with the baby?", "answer": "yes", "annotation": "a_binary_9cb980afcc", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9ccbad7907", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2454824548.mp4", "video_exists": true, "question": "Is the man standing at the back smiling because they are talking and joking while the man in white is buttoning his shirt?", "answer": "yes", "annotation": "a_binary_9ccbad7907", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9ee03ab58a", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5827678428.mp4", "video_exists": true, "question": "Did the man in red wear a helmet because he was performing a cycling stunt?", "answer": "yes", "annotation": "a_binary_9ee03ab58a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a17f66fd03", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/8319941339.mp4", "video_exists": true, "question": "Is the boy pressing on the keyboard to test his memory skills?", "answer": "no", "annotation": "a_binary_a17f66fd03", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a1be641de7", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5844366740.mp4", "video_exists": true, "question": "Is the lady supporting the boy by distracting him with a toy to keep him calm?", "answer": "no", "annotation": "a_binary_a1be641de7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a24c9dac4c", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5737998057.mp4", "video_exists": true, "question": "Did the baby keep looking at the toy hanging on his bed because he was interested?", "answer": "yes", "annotation": "a_binary_a24c9dac4c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a2b3dafb75", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4893901451.mp4", "video_exists": true, "question": "Is the person rocking with the baby because they are playing with the baby?", "answer": "yes", "annotation": "a_binary_a2b3dafb75", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a2f9b66a3a", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4641079421.mp4", "video_exists": true, "question": "Did the ladies smile and laugh at each other after finishing their dance because they were waiting for the applause?", "answer": "no", "annotation": "a_binary_a2f9b66a3a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a419e8c28b", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6826504502.mp4", "video_exists": true, "question": "Did the man sitting in the front seat put his hands out of the moving car in the middle of the video because he wanted to catch the breeze?", "answer": "no", "annotation": "a_binary_a419e8c28b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a520f80306", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6856233194.mp4", "video_exists": true, "question": "Did the man in red sleeves run forward to demonstrate?", "answer": "yes", "annotation": "a_binary_a520f80306", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a67691b128", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2408943262.mp4", "video_exists": true, "question": "Is there a woman in red standing and watching the boy with the rope because she is guarding the baby?", "answer": "yes", "annotation": "a_binary_a67691b128", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a7fe201615", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/9235656539.mp4", "video_exists": true, "question": "Does the lady in black follow the rhythm of the musicians by moving her body?", "answer": "yes", "annotation": "a_binary_a7fe201615", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a81a1e1b60", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4140726680.mp4", "video_exists": true, "question": "Are the two kids sitting down on the sofa because they are discussing their homework assignments?", "answer": "no", "annotation": "a_binary_a81a1e1b60", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a87188a27d", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2454824548.mp4", "video_exists": true, "question": "Is the man standing next to the man not wearing a coat relying a tie for another man because the tie needs to be neater?", "answer": "yes", "annotation": "a_binary_a87188a27d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a961e909da", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5435156153.mp4", "video_exists": true, "question": "Did the baby hold the leg of the man for support before moving forward?", "answer": "yes", "annotation": "a_binary_a961e909da", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_acbb29f200", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4021064662.mp4", "video_exists": true, "question": "Did the boy in the red hat roll over on the ground to retrieve a hidden object from the ground after running to the man in red?", "answer": "no", "annotation": "a_binary_acbb29f200", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b09a7c720c", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/7055097657.mp4", "video_exists": true, "question": "Does the man look at the screen as he sings because he is drawing inspiration from a slideshow?", "answer": "no", "annotation": "a_binary_b09a7c720c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b34603dbd6", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2454011165.mp4", "video_exists": true, "question": "Did two of the men turn around because they were dancing?", "answer": "yes", "annotation": "a_binary_b34603dbd6", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b3735e6049", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/10042935613.mp4", "video_exists": true, "question": "Did the boy in red stand up near the end of the video to grab the food?", "answer": "yes", "annotation": "a_binary_b3735e6049", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b385e7deac", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3452354871.mp4", "video_exists": true, "question": "Did the man slowly turn his shoe to check the sole for damage?", "answer": "no", "annotation": "a_binary_b385e7deac", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b6111d57d2", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5907839036.mp4", "video_exists": true, "question": "Did the green shirt man rest his hand on the fence after walking to it because he was demonstrating the fence's sturdiness to others?", "answer": "no", "annotation": "a_binary_b6111d57d2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b72e0474be", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6006751278.mp4", "video_exists": true, "question": "Did the shirtless man walk towards the kayak near the start to adjust the kayak straps?", "answer": "no", "annotation": "a_binary_b72e0474be", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b846ce086a", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3860452986.mp4", "video_exists": true, "question": "Did the lady look down at the start to check the time on her watch?", "answer": "no", "annotation": "a_binary_b846ce086a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_bad5162e99", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6063505455.mp4", "video_exists": true, "question": "Is the boy holding onto a mop because he is trying to mop the floor?", "answer": "yes", "annotation": "a_binary_bad5162e99", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_bbc5275deb", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/8782034526.mp4", "video_exists": true, "question": "Does everyone wear the same clothing to disguise themselves for a surprise party?", "answer": "no", "annotation": "a_binary_bbc5275deb", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_bc372dc653", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/12165974504.mp4", "video_exists": true, "question": "Does the baby constantly open his mouth for the woman to tap on at the beginning of the video because he wants to respond to a game?", "answer": "no", "annotation": "a_binary_bc372dc653", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_bc5e461e8b", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4068904852.mp4", "video_exists": true, "question": "Did the guy in grey raise and wave his hand in the air before touching his head as a body language to emphasize his speech?", "answer": "yes", "annotation": "a_binary_bc5e461e8b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_bca86cc2d5", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4852243052.mp4", "video_exists": true, "question": "Did the man in black transport himself up the slope using a remote-controlled skateboard?", "answer": "no", "annotation": "a_binary_bca86cc2d5", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_bd870c644c", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/8356440828.mp4", "video_exists": true, "question": "Does the man in black shorts interact with the board by using it as a shield from the sun?", "answer": "no", "annotation": "a_binary_bd870c644c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_bf88190dcd", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3263249144.mp4", "video_exists": true, "question": "Do boys eat noodles by grabbing them with their hands?", "answer": "yes", "annotation": "a_binary_bf88190dcd", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c041462464", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3818552237.mp4", "video_exists": true, "question": "Did the baby throw the food onto the floor because he was playful when he hovered his hand above the ground?", "answer": "yes", "annotation": "a_binary_c041462464", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c0fd6b938b", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5435156153.mp4", "video_exists": true, "question": "Does the baby interact with the man's shoelace by checking for patterns?", "answer": "no", "annotation": "a_binary_c0fd6b938b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c0ffdc90f0", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3736073076.mp4", "video_exists": true, "question": "Is the man moving his legs at the beginning of the video because he is shaking the babies?", "answer": "yes", "annotation": "a_binary_c0ffdc90f0", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c3662fbb9f", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3364242680.mp4", "video_exists": true, "question": "Does the baby wear thick clothing outdoors to blend in with snowy scenery for photos?", "answer": "no", "annotation": "a_binary_c3662fbb9f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c5eb1e4b47", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3760653516.mp4", "video_exists": true, "question": "Was the baby bouncing up and down near the beginning of the video because it was excited?", "answer": "yes", "annotation": "a_binary_c5eb1e4b47", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c7603e861c", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5844366740.mp4", "video_exists": true, "question": "Did the lady put her sunglasses on her head when she was not using them?", "answer": "yes", "annotation": "a_binary_c7603e861c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c7a5a7744b", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2973331780.mp4", "video_exists": true, "question": "Did the lady in black hold one hand up after singing for a while because she was adjusting her microphone?", "answer": "no", "annotation": "a_binary_c7a5a7744b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c7cf00f8a1", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6263272608.mp4", "video_exists": true, "question": "Did the girl put the toy on top of the baby near the beginning of the video to play with the baby?", "answer": "yes", "annotation": "a_binary_c7cf00f8a1", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c8cdc6ad42", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6006751278.mp4", "video_exists": true, "question": "Did the two men move the green kayak into the water because they were ready to go boating?", "answer": "yes", "annotation": "a_binary_c8cdc6ad42", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_cc234f755c", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2454824548.mp4", "video_exists": true, "question": "Is one of the persons holding flowers in his hands because he is preparing to put them into a suit?", "answer": "yes", "annotation": "a_binary_cc234f755c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_cd8804bfc1", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4316081013.mp4", "video_exists": true, "question": "Is the man in black holding the guitar not playing because he lost his pick and is looking for it?", "answer": "no", "annotation": "a_binary_cd8804bfc1", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ce561b55f5", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2400833408.mp4", "video_exists": true, "question": "Did the baby turn around after reaching the end because of the wind blowing a curtain?", "answer": "no", "annotation": "a_binary_ce561b55f5", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d22ca5d91a", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3565236462.mp4", "video_exists": true, "question": "Was the man in brown bent down at the start to retrieve a hidden message from the ground?", "answer": "no", "annotation": "a_binary_d22ca5d91a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d599e1aa4f", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3066064005.mp4", "video_exists": true, "question": "Did the woman in black open the lid of the bowl because she was ready to eat?", "answer": "yes", "annotation": "a_binary_d599e1aa4f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d88f1991d9", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2687160943.mp4", "video_exists": true, "question": "Did the baby tap her finger on the table near the end of the video to signal the music to start playing?", "answer": "no", "annotation": "a_binary_d88f1991d9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d8b0181c03", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4771138218.mp4", "video_exists": true, "question": "Did the man fiddle with the eyemask for a while at the beginning of the video because he needed to distract from nervousness at an upcoming event?", "answer": "no", "annotation": "a_binary_d8b0181c03", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d9eb9424f1", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2560182341.mp4", "video_exists": true, "question": "Do all the people smile when the camera moves towards them because they are saying hi?", "answer": "yes", "annotation": "a_binary_d9eb9424f1", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_db9df1ead0", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4641079421.mp4", "video_exists": true, "question": "Did the ladies dance differently near the end of the practice because of an unexpected change in music?", "answer": "no", "annotation": "a_binary_db9df1ead0", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_dcc6d93649", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4462691651.mp4", "video_exists": true, "question": "Is the man with spectacles standing in front of other people because he is making a public announcement?", "answer": "no", "annotation": "a_binary_dcc6d93649", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_dd9576143f", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5003718676.mp4", "video_exists": true, "question": "Did the boy drive with the blue vehicle in circles because he lost control of the car?", "answer": "yes", "annotation": "a_binary_dd9576143f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ddb30bccad", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/7771048766.mp4", "video_exists": true, "question": "Did the boy look behind after he stood up in the middle of the video to ensure nobody saw his mistake?", "answer": "no", "annotation": "a_binary_ddb30bccad", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_dee6bb4e7a", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4983922034.mp4", "video_exists": true, "question": "Is the man kicking snow because he is playing with dogs?", "answer": "yes", "annotation": "a_binary_dee6bb4e7a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_df026028bf", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4760962392.mp4", "video_exists": true, "question": "Did the girl in the white dress jump up and down after tasting the chocolate on the cake because she was hoping to join a dance competition?", "answer": "no", "annotation": "a_binary_df026028bf", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e00273ba52", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6575303259.mp4", "video_exists": true, "question": "Are the girl's hands raised in the middle of the video because she is imitating a famous statue?", "answer": "no", "annotation": "a_binary_e00273ba52", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e04c908e5c", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6908276603.mp4", "video_exists": true, "question": "Is the lady holding the dog with one hand to adjust its fur style?", "answer": "no", "annotation": "a_binary_e04c908e5c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e180d4e708", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5484959983.mp4", "video_exists": true, "question": "Did the boy in the green shirt swim towards the man in the white and blue shirt in the river to come up together?", "answer": "yes", "annotation": "a_binary_e180d4e708", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e33a039319", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/8015524320.mp4", "video_exists": true, "question": "Did the children dance with one another by mimicking each other's moves?", "answer": "yes", "annotation": "a_binary_e33a039319", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e3db7bf689", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/8493226484.mp4", "video_exists": true, "question": "Is the woman holding onto the boy constantly because he needs encouragement to try a new trick?", "answer": "no", "annotation": "a_binary_e3db7bf689", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e60bab0581", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/8059684971.mp4", "video_exists": true, "question": "Did the kid put his leg inside the chair before sitting near the end because he was preparing for a pretend game?", "answer": "no", "annotation": "a_binary_e60bab0581", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e9b77cfad9", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2535429050.mp4", "video_exists": true, "question": "Is the man in red holding the baby and bouncing the baby up and down at the start to play with the baby?", "answer": "yes", "annotation": "a_binary_e9b77cfad9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_eadff0be99", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2560182341.mp4", "video_exists": true, "question": "Are the people in the video moving left and right because of hammock swinging?", "answer": "yes", "annotation": "a_binary_eadff0be99", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_eb9853e21a", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5085607670.mp4", "video_exists": true, "question": "Did the woman in black boots know what moves to follow and guide the boy because she looked at the lady in green?", "answer": "yes", "annotation": "a_binary_eb9853e21a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ecfe4e9d09", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6755588887.mp4", "video_exists": true, "question": "Is there another man in blue with a boy in blue by the grass and squatting because they are explaining the growth of grass?", "answer": "no", "annotation": "a_binary_ecfe4e9d09", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f0d38e68db", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3704781879.mp4", "video_exists": true, "question": "Is the person wearing brown shoes putting her feet on a stool because she is resting her leg?", "answer": "yes", "annotation": "a_binary_f0d38e68db", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f1ef041b13", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3767923672.mp4", "video_exists": true, "question": "Do the man and the baby cover themselves with a coat to protect from strong sunlight?", "answer": "no", "annotation": "a_binary_f1ef041b13", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f1f1c75004", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3177541313.mp4", "video_exists": true, "question": "Is the man showing the toy to the baby and touching her cheeks to prevent the toy from falling?", "answer": "no", "annotation": "a_binary_f1f1c75004", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f22373f147", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/10008553263.mp4", "video_exists": true, "question": "Is the lady moving around the stage guided by invisible strings above her?", "answer": "no", "annotation": "a_binary_f22373f147", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f2baaee28b", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3456999399.mp4", "video_exists": true, "question": "Is the small boat behind moved around by being pushed by water pressure differences?", "answer": "no", "annotation": "a_binary_f2baaee28b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f459a4b2b8", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/5347661971.mp4", "video_exists": true, "question": "Did the lady nearest to the wall turn her head to the baby's direction because she wanted to talk to another nurse?", "answer": "yes", "annotation": "a_binary_f459a4b2b8", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f664870897", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/2727682922.mp4", "video_exists": true, "question": "Did the woman in the wedding gown point to the other side of the room and subsequently walk towards it with the man to indicate to take a picture there?", "answer": "yes", "annotation": "a_binary_f664870897", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f6ffa8a798", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/7181597283.mp4", "video_exists": true, "question": "Did the man move his hands around in front of the plane to communicate with an audience nearby using gestures?", "answer": "no", "annotation": "a_binary_f6ffa8a798", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f8762f6167", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3174267702.mp4", "video_exists": true, "question": "Did the girl in grey cover her mouth in the middle of the video because she was trying to catch a yawn?", "answer": "no", "annotation": "a_binary_f8762f6167", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f94222498c", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/4598213889.mp4", "video_exists": true, "question": "Did the lady touch the green ball near the end to create a shadow puppet show?", "answer": "no", "annotation": "a_binary_f94222498c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f98abedf44", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/7363189682.mp4", "video_exists": true, "question": "Did the man move his hands while rollerblading to maintain balance?", "answer": "no", "annotation": "a_binary_f98abedf44", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fb5507e5a7", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3278803307.mp4", "video_exists": true, "question": "Did the lady help the girl to get up on the bench at the start by telling a story about climbing mountains?", "answer": "no", "annotation": "a_binary_fb5507e5a7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fcb62aa712", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/3831844323.mp4", "video_exists": true, "question": "Is there a ball running across the field near the beginning because a man throws it?", "answer": "yes", "annotation": "a_binary_fcb62aa712", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fcdedef4dd", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6816580664.mp4", "video_exists": true, "question": "Do the two people nod their heads occasionally while talking to acknowledge each other?", "answer": "yes", "annotation": "a_binary_fcdedef4dd", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fefe0e6d14", "category": "binary", "fine_category": "context_based_explanation", "video": "nextqa/6380588875.mp4", "video_exists": true, "question": "Is the boy in green moving his body as he plays the piano because he is trying to reach a higher note?", "answer": "no", "annotation": "a_binary_fefe0e6d14", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_01d0890f67", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1098153561_concat_2.mp4", "video_exists": true, "question": "Is the speed that the forest above changing color faster than the forest below?", "answer": "yes", "annotation": "a_binary_01d0890f67", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_04349a2fa5", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1084153195.mp4", "video_exists": true, "question": "Is the rate of movement in the video at normal speed?", "answer": "yes", "annotation": "a_binary_04349a2fa5", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_06460656c1", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1100117263_reverse.mp4", "video_exists": true, "question": "Is the little lion circling downward?", "answer": "no", "annotation": "a_binary_06460656c1", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_091bc42315", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1043054206.mp4", "video_exists": true, "question": "Is the yellow car driving faster than other cars?", "answer": "yes", "annotation": "a_binary_091bc42315", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_113370a80e", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1077575504_reverse.mp4", "video_exists": true, "question": "Is the pile of salt moving in circles?", "answer": "no", "annotation": "a_binary_113370a80e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1c5d03d002", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1098153561_reverse.mp4", "video_exists": true, "question": "Is the leaves changing color from green to red?", "answer": "no", "annotation": "a_binary_1c5d03d002", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2e73701c1a", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1062609286_concat_0.mp4", "video_exists": true, "question": "Is the battery charge above increasing at the same speed as the battery charge below?", "answer": "yes", "annotation": "a_binary_2e73701c1a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3604b6ad30", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1096007487_reverse.mp4", "video_exists": true, "question": "Is the 3d cloud moving rightward from the camera's point of view?", "answer": "yes", "annotation": "a_binary_3604b6ad30", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_36fccbf38f", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1082268005.mp4", "video_exists": true, "question": "Is the planet earth assembling from toy bricks?", "answer": "yes", "annotation": "a_binary_36fccbf38f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3ba465fb90", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/3396473605.mp4", "video_exists": true, "question": "Do the five stars appear in a zigzag motion from right to left?", "answer": "no", "annotation": "a_binary_3ba465fb90", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3bf2069ad5", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1057163434_reverse.mp4", "video_exists": true, "question": "Is the chef placing it back onto the grill for toasting?", "answer": "no", "annotation": "a_binary_3bf2069ad5", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3c770fa6b7", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1089201973_reverse.mp4", "video_exists": true, "question": "Is the direction of the football in the video moving from right to left?", "answer": "yes", "annotation": "a_binary_3c770fa6b7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_491dc55c74", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1079384099.mp4", "video_exists": true, "question": "Is the 3D pixel transforming slowly from a white square into the shape of a flower, then back to a square?", "answer": "no", "annotation": "a_binary_491dc55c74", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_49a6652de9", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1083845854.mp4", "video_exists": true, "question": "Is the video playing at time-lapse speed?", "answer": "yes", "annotation": "a_binary_49a6652de9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_49c8a6d015", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/315784.mp4", "video_exists": true, "question": "Does the speedometer in the center appear to be moving in reverse?", "answer": "no", "annotation": "a_binary_49c8a6d015", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4d45071f9a", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1054494542.mp4", "video_exists": true, "question": "Is the background changing from pink to blue?", "answer": "yes", "annotation": "a_binary_4d45071f9a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4f140a84c0", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1052364490_reverse.mp4", "video_exists": true, "question": "Is the digital bar chart decreasing?", "answer": "yes", "annotation": "a_binary_4f140a84c0", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4f70a6fef1", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1111601171_reverse.mp4", "video_exists": true, "question": "Is the sphere building changing from blue to purple as it rotates slowly?", "answer": "no", "annotation": "a_binary_4f70a6fef1", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_520c4a5635", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1096238125_concat_2.mp4", "video_exists": true, "question": "Are the two people above gradually slowing down compared to the two people below?", "answer": "no", "annotation": "a_binary_520c4a5635", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_54ca517f76", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1096238125.mp4", "video_exists": true, "question": "Is the man lifting the kettlebell in a zigzag motion, unlike the woman's steady lift?", "answer": "no", "annotation": "a_binary_54ca517f76", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5bebbd76ea", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1099116143_reverse.mp4", "video_exists": true, "question": "Is the white foam disappearing from the surface of the pink liquid?", "answer": "yes", "annotation": "a_binary_5bebbd76ea", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5d1aaacb3f", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1034419625.mp4", "video_exists": true, "question": "Is the man moving from left to right?", "answer": "yes", "annotation": "a_binary_5d1aaacb3f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_66807539d2", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1090578917_reverse.mp4", "video_exists": true, "question": "Is the man leaping spinning in place?", "answer": "no", "annotation": "a_binary_66807539d2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6843bfb768", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1051211272.mp4", "video_exists": true, "question": "Is the toast with cream cheese gradually being eaten out and disappearing?", "answer": "yes", "annotation": "a_binary_6843bfb768", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6b8fd5b153", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1053334574.mp4", "video_exists": true, "question": "Is the black ink expanding from the center?", "answer": "yes", "annotation": "a_binary_6b8fd5b153", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_705cd20d34", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1081734740_reverse.mp4", "video_exists": true, "question": "Is the texture of the leaf shimmering as it turns from yellow to white?", "answer": "no", "annotation": "a_binary_705cd20d34", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_72e55cf5d6", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1086286649.mp4", "video_exists": true, "question": "Are the armored vehicles moving right to left from the camera's point of view?", "answer": "yes", "annotation": "a_binary_72e55cf5d6", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7aaf94c5ef", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1096612823_reverse.mp4", "video_exists": true, "question": "Is the video panning to the right?", "answer": "no", "annotation": "a_binary_7aaf94c5ef", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7d18a09b67", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1093573255_reverse.mp4", "video_exists": true, "question": "Is the plant reviving rapidly?", "answer": "no", "annotation": "a_binary_7d18a09b67", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_808ff0d577", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1099360359.mp4", "video_exists": true, "question": "Is the train closer to the screen accelerating dramatically in the tunnel?", "answer": "no", "annotation": "a_binary_808ff0d577", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_820906f9eb", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1077575504.mp4", "video_exists": true, "question": "Is the pile of salt spreading out?", "answer": "no", "annotation": "a_binary_820906f9eb", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_85599077ca", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1081684532_reverse.mp4", "video_exists": true, "question": "Is the direction of the asteroids in the video orbiting around a central point?", "answer": "no", "annotation": "a_binary_85599077ca", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9321a19aca", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1051211272_reverse.mp4", "video_exists": true, "question": "Is the toast with cream cheese gradually reappearing piece by piece?", "answer": "yes", "annotation": "a_binary_9321a19aca", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_987c4a2147", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1075338140_reverse.mp4", "video_exists": true, "question": "Is the ball rolling from right to left?", "answer": "yes", "annotation": "a_binary_987c4a2147", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9956b6ddc5", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1047368344_reverse.mp4", "video_exists": true, "question": "Is the girl jumping out of water?", "answer": "yes", "annotation": "a_binary_9956b6ddc5", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_99d8b00865", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1059718130.mp4", "video_exists": true, "question": "Is the sun rising?", "answer": "yes", "annotation": "a_binary_99d8b00865", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9c52846152", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1077507593.mp4", "video_exists": true, "question": "Is the speed of the video in slow motion?", "answer": "yes", "annotation": "a_binary_9c52846152", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9df5d3bf8e", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1077575504_concat_1.mp4", "video_exists": true, "question": "Is the pile of salt above growing at the same speed as the pile of salt below?", "answer": "no", "annotation": "a_binary_9df5d3bf8e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9e0d5b6942", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1054494542_reverse.mp4", "video_exists": true, "question": "Is the background changing from blue to pink?", "answer": "yes", "annotation": "a_binary_9e0d5b6942", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9edfd725c4", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1093948229.mp4", "video_exists": true, "question": "Are the golden particles merging smoothly into clusters?", "answer": "no", "annotation": "a_binary_9edfd725c4", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a3bc8ed08a", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1096238125_concat_1.mp4", "video_exists": true, "question": "Is the speed of the two people above lifting the kettlebell gradually accelerating compared to the two people below?", "answer": "no", "annotation": "a_binary_a3bc8ed08a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ab57f398a2", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1047368344.mp4", "video_exists": true, "question": "Is the girl dancing on the water?", "answer": "no", "annotation": "a_binary_ab57f398a2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b0ed806fc5", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1099984801_reverse.mp4", "video_exists": true, "question": "Is the movement of the clouds accelerating rapidly towards the horizon?", "answer": "no", "annotation": "a_binary_b0ed806fc5", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b18c89d22f", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1024867412_reverse.mp4", "video_exists": true, "question": "Is the car veering slightly right before continuing straight?", "answer": "no", "annotation": "a_binary_b18c89d22f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b837b58fde", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1042819039.mp4", "video_exists": true, "question": "Is the speed of the video time-lapse?", "answer": "yes", "annotation": "a_binary_b837b58fde", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_bc53d38088", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1084736389.mp4", "video_exists": true, "question": "Is the face morphing into a gorilla face before becoming human?", "answer": "no", "annotation": "a_binary_bc53d38088", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_bdb1a9b7aa", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1055981522.mp4", "video_exists": true, "question": "Is the 3d shapes turning into spheres?", "answer": "yes", "annotation": "a_binary_bdb1a9b7aa", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_bfbced00ff", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1099811331.mp4", "video_exists": true, "question": "Is the 3d heart rotating slowly?", "answer": "no", "annotation": "a_binary_bfbced00ff", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c2f424567f", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1103623921.mp4", "video_exists": true, "question": "Is the video playing at normal speed?", "answer": "yes", "annotation": "a_binary_c2f424567f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_cd27e24c52", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1100319395_concat_2.mp4", "video_exists": true, "question": "Is the speed of the white circle above slower than the white circle below?", "answer": "yes", "annotation": "a_binary_cd27e24c52", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d248752df9", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1058498242_reverse.mp4", "video_exists": true, "question": "Is the 3D pixels changing from the shape of a man into a cuboid?", "answer": "yes", "annotation": "a_binary_d248752df9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d27be4f0af", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1086105089.mp4", "video_exists": true, "question": "Is the building collapsing slowly?", "answer": "no", "annotation": "a_binary_d27be4f0af", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d9d3a2fa85", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1063373449_reverse.mp4", "video_exists": true, "question": "Is the coronavirus replicating rapidly spreading through cells?", "answer": "no", "annotation": "a_binary_d9d3a2fa85", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_dc49c7fd98", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1100319395_reverse.mp4", "video_exists": true, "question": "Is the circular pattern moving counter-clockwise?", "answer": "yes", "annotation": "a_binary_dc49c7fd98", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ebc1da4b89", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1058498242.mp4", "video_exists": true, "question": "Is the 3D pixels changing from a cuboid into the shape of a man?", "answer": "yes", "annotation": "a_binary_ebc1da4b89", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ebe37ed213", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1099984801.mp4", "video_exists": true, "question": "Is the movement of the clouds towards the camera?", "answer": "yes", "annotation": "a_binary_ebe37ed213", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ed38242353", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1075338140.mp4", "video_exists": true, "question": "Is the ball swaying side to side?", "answer": "no", "annotation": "a_binary_ed38242353", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_eedfc11bcd", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1086105089_reverse.mp4", "video_exists": true, "question": "Is the building being renovated to add floors?", "answer": "no", "annotation": "a_binary_eedfc11bcd", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_efd02be7e3", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1059462749_reverse.mp4", "video_exists": true, "question": "Is the person moving upwards?", "answer": "yes", "annotation": "a_binary_efd02be7e3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fa7205a022", "category": "binary", "fine_category": "dynamic_attribute", "video": "tempcompass/1100397435_reverse.mp4", "video_exists": true, "question": "Is the robot vacuum cleaner moving in circles around the center of the room?", "answer": "no", "annotation": "a_binary_fa7205a022", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0146dc9271", "category": "binary", "fine_category": "dynamic_relation", "video": "vcgbd/v6zelV6qTYM.mp4", "video_exists": true, "question": "Did the user configure game settings on Hamachi before starting the server?", "answer": "yes", "annotation": "a_binary_0146dc9271", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_10880beb4c", "category": "binary", "fine_category": "dynamic_relation", "video": "star/OQ54Y.mp4", "video_exists": true, "question": "Did the person close the door after eating something from the refrigerator after they opened it?", "answer": "no", "annotation": "a_binary_10880beb4c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_45ba5ea7fa", "category": "binary", "fine_category": "dynamic_relation", "video": "vcgbd/S3TRdPVsCSw.mp4", "video_exists": true, "question": "Did the video focus on the white four-door Catalina with a powerful engine before discussing the Ford muscle car's performance and safety features?", "answer": "yes", "annotation": "a_binary_45ba5ea7fa", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4a3c40f3f6", "category": "binary", "fine_category": "dynamic_relation", "video": "vcgbd/Si7nZJ7ESOs.mp4", "video_exists": true, "question": "Did the man prepare the sugar syrup before adding the biscuit pieces to the blender?", "answer": "yes", "annotation": "a_binary_4a3c40f3f6", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4dba250940", "category": "binary", "fine_category": "dynamic_relation", "video": "star/DPLMM.mp4", "video_exists": true, "question": "Did the person stand on the floor before taking the pillow?", "answer": "no", "annotation": "a_binary_4dba250940", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4ec55490d9", "category": "binary", "fine_category": "dynamic_relation", "video": "star/HCM5Y.mp4", "video_exists": true, "question": "Did the person lie on the floor after touching their shoes before opening the door?", "answer": "no", "annotation": "a_binary_4ec55490d9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_512da422eb", "category": "binary", "fine_category": "dynamic_relation", "video": "vcgbd/jxrSJvrUzY8.mp4", "video_exists": true, "question": "Did the narrator unbox the Amoi mobile phone before explaining its features?", "answer": "yes", "annotation": "a_binary_512da422eb", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_55ecbaca27", "category": "binary", "fine_category": "dynamic_relation", "video": "vcgbd/pKyuhPI83YU.mp4", "video_exists": true, "question": "Did the woman explain the process of crafting with wool before beginning the demonstration?", "answer": "yes", "annotation": "a_binary_55ecbaca27", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_69be13b860", "category": "binary", "fine_category": "dynamic_relation", "video": "vcgbd/C6415VWsJv4.mp4", "video_exists": true, "question": "Did Srikanth discuss his readiness for the World Championship before reflecting on his past performances in major tournaments?", "answer": "yes", "annotation": "a_binary_69be13b860", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6a93eb7bdd", "category": "binary", "fine_category": "dynamic_relation", "video": "vcgbd/-U_fAWTaoRc.mp4", "video_exists": true, "question": "Did the reporter ask the player about the match before the exciting clips of the football game were shown?", "answer": "yes", "annotation": "a_binary_6a93eb7bdd", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6dedcf486f", "category": "binary", "fine_category": "dynamic_relation", "video": "vcgbd/DWMI05VnbNw.mp4", "video_exists": true, "question": "Did the narrator explain the system optimization features before introducing disk cleanup and defragmentation?", "answer": "yes", "annotation": "a_binary_6dedcf486f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_72b7e7f88f", "category": "binary", "fine_category": "dynamic_relation", "video": "vcgbd/1J86gGzMCkQ.mp4", "video_exists": true, "question": "Did the Lego designers discuss the features of the Lego temple before showcasing the final design?", "answer": "yes", "annotation": "a_binary_72b7e7f88f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_86352501c7", "category": "binary", "fine_category": "dynamic_relation", "video": "star/KV99H.mp4", "video_exists": true, "question": "Did the person start reading the book after holding the shoe?", "answer": "no", "annotation": "a_binary_86352501c7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_86ca3c234c", "category": "binary", "fine_category": "dynamic_relation", "video": "star/7HSZJ.mp4", "video_exists": true, "question": "Did the person hang up the towel after watching outside the window?", "answer": "no", "annotation": "a_binary_86ca3c234c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8fb18da563", "category": "binary", "fine_category": "dynamic_relation", "video": "vcgbd/57T7Yp-u-EE.mp4", "video_exists": true, "question": "Did Zeratul inform Raynor about the fate of Kerrigan before leaving the ship?", "answer": "yes", "annotation": "a_binary_8fb18da563", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9440e0be0f", "category": "binary", "fine_category": "dynamic_relation", "video": "vcgbd/3ZgQV7EGx0I.mp4", "video_exists": true, "question": "Did Gayle Hil-Suber share her experience with hepatitis C before Dr. Malek Mahmoudi discussed the disease's complications?", "answer": "yes", "annotation": "a_binary_9440e0be0f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_96d5231b66", "category": "binary", "fine_category": "dynamic_relation", "video": "vcgbd/f6t6U14I_BU.mp4", "video_exists": true, "question": "Did Bouna Sarr engage with the media after the match?", "answer": "yes", "annotation": "a_binary_96d5231b66", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9ef18ca798", "category": "binary", "fine_category": "dynamic_relation", "video": "vcgbd/MZ3hxQS3-lw.mp4", "video_exists": true, "question": "Did the narrator mention the significance of the Bilwa tree before explaining its medicinal uses?", "answer": "yes", "annotation": "a_binary_9ef18ca798", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9fd8626a9b", "category": "binary", "fine_category": "dynamic_relation", "video": "vcgbd/Abuse013_x264.mp4", "video_exists": true, "question": "Did the teacher begin the dance class before exhibiting aggressive behavior toward the children?", "answer": "yes", "annotation": "a_binary_9fd8626a9b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b3ed99ccb7", "category": "binary", "fine_category": "dynamic_relation", "video": "star/3CLVI.mp4", "video_exists": true, "question": "Did the person close the door again before tidying up the blanket after opening the door?", "answer": "no", "annotation": "a_binary_b3ed99ccb7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ba683f1aff", "category": "binary", "fine_category": "dynamic_relation", "video": "vcgbd/A02SFOu8LqA.mp4", "video_exists": true, "question": "Did the girl express her nervousness about the event before discussing her role as an actor?", "answer": "yes", "annotation": "a_binary_ba683f1aff", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d3bb1e1e3d", "category": "binary", "fine_category": "dynamic_relation", "video": "vcgbd/_aLwiGYolFc.mp4", "video_exists": true, "question": "Did the speaker introduce the concept of 'norgeln' before explaining the new peer review process?", "answer": "yes", "annotation": "a_binary_d3bb1e1e3d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d6238da96c", "category": "binary", "fine_category": "dynamic_relation", "video": "star/RJIEO.mp4", "video_exists": true, "question": "Did the person pick up the bag after sitting on the bed?", "answer": "no", "annotation": "a_binary_d6238da96c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d95f87b635", "category": "binary", "fine_category": "dynamic_relation", "video": "vcgbd/6i6xNFPQ5to.mp4", "video_exists": true, "question": "Did the presenter compare the Samsung Galaxy Note 7 to the Samsung Galaxy S7 Edge before discussing the Note 7's features?", "answer": "yes", "annotation": "a_binary_d95f87b635", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e33640f5b3", "category": "binary", "fine_category": "dynamic_relation", "video": "star/81YUE.mp4", "video_exists": true, "question": "Did the person pick up the clothes after lying on the bed?", "answer": "no", "annotation": "a_binary_e33640f5b3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e885118b40", "category": "binary", "fine_category": "dynamic_relation", "video": "vcgbd/iuTuMe-HlWg.mp4", "video_exists": true, "question": "Did Christina Cravero showcase various clothing items for holiday parties before discussing the accessories?", "answer": "yes", "annotation": "a_binary_e885118b40", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_00eb4fa748", "category": "binary", "fine_category": "factual_prediction", "video": "star/NEM29.mp4", "video_exists": true, "question": "Will the person look at the map next?", "answer": "no", "annotation": "a_binary_00eb4fa748", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_01a490a70a", "category": "binary", "fine_category": "factual_prediction", "video": "star/L9ANI.mp4", "video_exists": true, "question": "Will the person take the towel next?", "answer": "yes", "annotation": "a_binary_01a490a70a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_01b7300a2f", "category": "binary", "fine_category": "factual_prediction", "video": "star/3ZC4Y.mp4", "video_exists": true, "question": "Will the person start cooking dinner next?", "answer": "no", "annotation": "a_binary_01b7300a2f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_06c314bb9b", "category": "binary", "fine_category": "factual_prediction", "video": "star/3N1I2.mp4", "video_exists": true, "question": "Will the person turn off the light next?", "answer": "no", "annotation": "a_binary_06c314bb9b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_073d7a46b7", "category": "binary", "fine_category": "factual_prediction", "video": "star/VJG6E.mp4", "video_exists": true, "question": "Will the person open the laptop next?", "answer": "yes", "annotation": "a_binary_073d7a46b7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_078425db0b", "category": "binary", "fine_category": "factual_prediction", "video": "star/55AH5.mp4", "video_exists": true, "question": "Will the person grab a book next?", "answer": "no", "annotation": "a_binary_078425db0b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_082fd5c896", "category": "binary", "fine_category": "factual_prediction", "video": "star/DQEC3.mp4", "video_exists": true, "question": "Will the person open the bag next?", "answer": "yes", "annotation": "a_binary_082fd5c896", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_093e5c0c91", "category": "binary", "fine_category": "factual_prediction", "video": "star/C6LW1.mp4", "video_exists": true, "question": "Will the person put down the bag next after they watch outside the window?", "answer": "no", "annotation": "a_binary_093e5c0c91", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0b9806d7b3", "category": "binary", "fine_category": "factual_prediction", "video": "star/LY10X.mp4", "video_exists": true, "question": "Will the person eat the medicine next?", "answer": "yes", "annotation": "a_binary_0b9806d7b3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0c0df6ee4b", "category": "binary", "fine_category": "factual_prediction", "video": "star/RCD08.mp4", "video_exists": true, "question": "Will the person throw the book next?", "answer": "no", "annotation": "a_binary_0c0df6ee4b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0d4e8b015e", "category": "binary", "fine_category": "factual_prediction", "video": "star/CCCUJ.mp4", "video_exists": true, "question": "Will the person put down the book next after they turn on the light?", "answer": "no", "annotation": "a_binary_0d4e8b015e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0d797e7464", "category": "binary", "fine_category": "factual_prediction", "video": "star/92UB5.mp4", "video_exists": true, "question": "Will the person put down the pillow next?", "answer": "yes", "annotation": "a_binary_0d797e7464", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1721d68cb2", "category": "binary", "fine_category": "factual_prediction", "video": "star/NYHD7.mp4", "video_exists": true, "question": "Will the person take the jacket next?", "answer": "no", "annotation": "a_binary_1721d68cb2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_18986e8f59", "category": "binary", "fine_category": "factual_prediction", "video": "star/U0X4P.mp4", "video_exists": true, "question": "Will the person throw the book next after they watch outside the window?", "answer": "no", "annotation": "a_binary_18986e8f59", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_199c6ecfd6", "category": "binary", "fine_category": "factual_prediction", "video": "star/RKGG5.mp4", "video_exists": true, "question": "Will the person lie on the lawn chair next after they hold the broom?", "answer": "no", "annotation": "a_binary_199c6ecfd6", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1b531ab639", "category": "binary", "fine_category": "factual_prediction", "video": "star/OQ54Y.mp4", "video_exists": true, "question": "Will the person open the refrigerator next after they take the food?", "answer": "yes", "annotation": "a_binary_1b531ab639", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1b67319881", "category": "binary", "fine_category": "factual_prediction", "video": "star/TOOYI.mp4", "video_exists": true, "question": "Will the person close the box next?", "answer": "yes", "annotation": "a_binary_1b67319881", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_1ba2fc45b4", "category": "binary", "fine_category": "factual_prediction", "video": "star/HOYUT.mp4", "video_exists": true, "question": "Will the person take the blanket next after they hold the clothes?", "answer": "no", "annotation": "a_binary_1ba2fc45b4", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1bd2f362b0", "category": "binary", "fine_category": "factual_prediction", "video": "star/WLA52.mp4", "video_exists": true, "question": "Will the person put down the laptop next after they take the clothes?", "answer": "no", "annotation": "a_binary_1bd2f362b0", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1ca85d4d7c", "category": "binary", "fine_category": "factual_prediction", "video": "star/D8OSC.mp4", "video_exists": true, "question": "Will the person put down the broom next?", "answer": "yes", "annotation": "a_binary_1ca85d4d7c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1ce4b8b054", "category": "binary", "fine_category": "factual_prediction", "video": "star/G87XG.mp4", "video_exists": true, "question": "Will the person put down the book next?", "answer": "yes", "annotation": "a_binary_1ce4b8b054", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_20c669632b", "category": "binary", "fine_category": "factual_prediction", "video": "star/OE751.mp4", "video_exists": true, "question": "Will the person take the blanket next?", "answer": "yes", "annotation": "a_binary_20c669632b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_220c6579d7", "category": "binary", "fine_category": "factual_prediction", "video": "star/NV4FC.mp4", "video_exists": true, "question": "Will the person throw the bag next after they put down the clothes?", "answer": "no", "annotation": "a_binary_220c6579d7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2333187dfc", "category": "binary", "fine_category": "factual_prediction", "video": "star/727IZ.mp4", "video_exists": true, "question": "Will the person put down the paper/notebook next after they close the door?", "answer": "yes", "annotation": "a_binary_2333187dfc", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_29f52d3b06", "category": "binary", "fine_category": "factual_prediction", "video": "star/CJ58B.mp4", "video_exists": true, "question": "Will the person put down the remote control next after they watch the television?", "answer": "no", "annotation": "a_binary_29f52d3b06", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2a57c5e5a2", "category": "binary", "fine_category": "factual_prediction", "video": "star/V3RAX.mp4", "video_exists": true, "question": "Will the person tidy up the clothes next?", "answer": "yes", "annotation": "a_binary_2a57c5e5a2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2ae9d1981c", "category": "binary", "fine_category": "factual_prediction", "video": "star/AJTDO.mp4", "video_exists": true, "question": "Will the person throw the water bottle next after they put down the towel?", "answer": "no", "annotation": "a_binary_2ae9d1981c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2bd63bee99", "category": "binary", "fine_category": "factual_prediction", "video": "star/L9J5I.mp4", "video_exists": true, "question": "Will the person take the paper/notebook next after they put down the food?", "answer": "yes", "annotation": "a_binary_2bd63bee99", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2ec00d6b01", "category": "binary", "fine_category": "factual_prediction", "video": "star/V54TI.mp4", "video_exists": true, "question": "Will the person take the magazine next?", "answer": "no", "annotation": "a_binary_2ec00d6b01", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2f129679c9", "category": "binary", "fine_category": "factual_prediction", "video": "star/432NL.mp4", "video_exists": true, "question": "Will the person eat the medicine next after they take the food?", "answer": "yes", "annotation": "a_binary_2f129679c9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3014b1eb83", "category": "binary", "fine_category": "factual_prediction", "video": "star/Z97SD.mp4", "video_exists": true, "question": "Will the person adjust the fridge shelves next with the refrigerator?", "answer": "no", "annotation": "a_binary_3014b1eb83", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3014c4d086", "category": "binary", "fine_category": "factual_prediction", "video": "star/M7BD4.mp4", "video_exists": true, "question": "Will the person close the laptop next?", "answer": "yes", "annotation": "a_binary_3014c4d086", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_321326cded", "category": "binary", "fine_category": "factual_prediction", "video": "star/OY3LS.mp4", "video_exists": true, "question": "Will the person put down the laptop next?", "answer": "yes", "annotation": "a_binary_321326cded", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_329da57ad7", "category": "binary", "fine_category": "factual_prediction", "video": "star/T1CQE.mp4", "video_exists": true, "question": "Will the person adjust the chair next?", "answer": "no", "annotation": "a_binary_329da57ad7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_360d5a340a", "category": "binary", "fine_category": "factual_prediction", "video": "star/JCNHL.mp4", "video_exists": true, "question": "Will the person open the box next?", "answer": "yes", "annotation": "a_binary_360d5a340a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_37303c27b0", "category": "binary", "fine_category": "factual_prediction", "video": "star/Z7KC1.mp4", "video_exists": true, "question": "Will the person take the broom next?", "answer": "yes", "annotation": "a_binary_37303c27b0", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_37a1720828", "category": "binary", "fine_category": "factual_prediction", "video": "star/MA15X.mp4", "video_exists": true, "question": "Will the person shake out the blanket next?", "answer": "no", "annotation": "a_binary_37a1720828", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_37a2e4914a", "category": "binary", "fine_category": "factual_prediction", "video": "star/TVCQF.mp4", "video_exists": true, "question": "Will the person open the drawer next after they drink from the cup/glass/bottle?", "answer": "no", "annotation": "a_binary_37a2e4914a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_37c4897bca", "category": "binary", "fine_category": "factual_prediction", "video": "star/UYZKX.mp4", "video_exists": true, "question": "Will the person throw the blanket next after they grasp onto the doorknob?", "answer": "yes", "annotation": "a_binary_37c4897bca", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_380eb6777f", "category": "binary", "fine_category": "factual_prediction", "video": "star/1FIGA.mp4", "video_exists": true, "question": "Will the person put down the pen next after they open the box?", "answer": "no", "annotation": "a_binary_380eb6777f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3879f5e07b", "category": "binary", "fine_category": "factual_prediction", "video": "star/D1NT7.mp4", "video_exists": true, "question": "Will the person take the blanket next?", "answer": "yes", "annotation": "a_binary_3879f5e07b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3898edb25d", "category": "binary", "fine_category": "factual_prediction", "video": "star/WOD0G.mp4", "video_exists": true, "question": "Will the person hang the clothes on a rack next?", "answer": "no", "annotation": "a_binary_3898edb25d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3927cf77d7", "category": "binary", "fine_category": "factual_prediction", "video": "star/Q6WH2.mp4", "video_exists": true, "question": "Will the person open the book next?", "answer": "yes", "annotation": "a_binary_3927cf77d7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3f6ca3fffd", "category": "binary", "fine_category": "factual_prediction", "video": "star/TOOYI.mp4", "video_exists": true, "question": "Will the person close the drawer next?", "answer": "no", "annotation": "a_binary_3f6ca3fffd", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_418759ac07", "category": "binary", "fine_category": "factual_prediction", "video": "star/TCN06.mp4", "video_exists": true, "question": "Will the person tidy up the blanket next?", "answer": "yes", "annotation": "a_binary_418759ac07", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_42ed86fefd", "category": "binary", "fine_category": "factual_prediction", "video": "star/RG0KS.mp4", "video_exists": true, "question": "Will the person take the shoe next?", "answer": "yes", "annotation": "a_binary_42ed86fefd", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_43b555e79d", "category": "binary", "fine_category": "factual_prediction", "video": "star/F9YMU.mp4", "video_exists": true, "question": "Will the person start writing a letter next?", "answer": "no", "annotation": "a_binary_43b555e79d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_44262ec477", "category": "binary", "fine_category": "factual_prediction", "video": "star/DQEC3.mp4", "video_exists": true, "question": "Will the person adjust their glasses next?", "answer": "no", "annotation": "a_binary_44262ec477", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_488e2534a2", "category": "binary", "fine_category": "factual_prediction", "video": "star/Y79PC.mp4", "video_exists": true, "question": "Will the person reach for a drink next?", "answer": "no", "annotation": "a_binary_488e2534a2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4b4f7b8302", "category": "binary", "fine_category": "factual_prediction", "video": "star/RKGG5.mp4", "video_exists": true, "question": "Will the person lie on the sofa/couch next after they throw the broom?", "answer": "yes", "annotation": "a_binary_4b4f7b8302", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4c6821e1d8", "category": "binary", "fine_category": "factual_prediction", "video": "star/HOZ76.mp4", "video_exists": true, "question": "Will the person open the book next?", "answer": "yes", "annotation": "a_binary_4c6821e1d8", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4ea43c6f20", "category": "binary", "fine_category": "factual_prediction", "video": "star/2544C.mp4", "video_exists": true, "question": "Will the person put down the towel next?", "answer": "yes", "annotation": "a_binary_4ea43c6f20", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_506c7534d1", "category": "binary", "fine_category": "factual_prediction", "video": "star/NM65M.mp4", "video_exists": true, "question": "Will the person throw the blanket next after they take the pillow?", "answer": "yes", "annotation": "a_binary_506c7534d1", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_56a01921c3", "category": "binary", "fine_category": "factual_prediction", "video": "star/J6TVB.mp4", "video_exists": true, "question": "Will the person put the dish down next?", "answer": "yes", "annotation": "a_binary_56a01921c3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_56f3e707e3", "category": "binary", "fine_category": "factual_prediction", "video": "star/727IZ.mp4", "video_exists": true, "question": "Will the person sit at the table next after they close the closet/cabinet?", "answer": "yes", "annotation": "a_binary_56f3e707e3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_57acbbe4fe", "category": "binary", "fine_category": "factual_prediction", "video": "star/M1TZR.mp4", "video_exists": true, "question": "Will the person put down the sandwich next after they hold the dish?", "answer": "yes", "annotation": "a_binary_57acbbe4fe", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_59c975ce99", "category": "binary", "fine_category": "factual_prediction", "video": "star/2GQDN.mp4", "video_exists": true, "question": "Will the person eat the sandwich next?", "answer": "yes", "annotation": "a_binary_59c975ce99", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5d146b8abf", "category": "binary", "fine_category": "factual_prediction", "video": "star/NM65M.mp4", "video_exists": true, "question": "Will the person pick up the phone next?", "answer": "no", "annotation": "a_binary_5d146b8abf", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5e1610c95c", "category": "binary", "fine_category": "factual_prediction", "video": "star/LY10X.mp4", "video_exists": true, "question": "Will the person pour the medicine into a glass next?", "answer": "no", "annotation": "a_binary_5e1610c95c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6304fe2eb6", "category": "binary", "fine_category": "factual_prediction", "video": "star/L9J5I.mp4", "video_exists": true, "question": "Will the person pick up the pen next?", "answer": "no", "annotation": "a_binary_6304fe2eb6", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6516fc6661", "category": "binary", "fine_category": "factual_prediction", "video": "star/937EW.mp4", "video_exists": true, "question": "Will the person place the book on the table next?", "answer": "no", "annotation": "a_binary_6516fc6661", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_677693f48a", "category": "binary", "fine_category": "factual_prediction", "video": "star/7TA23.mp4", "video_exists": true, "question": "Will the person put down the shoe next?", "answer": "yes", "annotation": "a_binary_677693f48a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6c255805ee", "category": "binary", "fine_category": "factual_prediction", "video": "star/WV9FZ.mp4", "video_exists": true, "question": "Will the person sit at the table next after they hold the food?", "answer": "yes", "annotation": "a_binary_6c255805ee", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6d78f0ee56", "category": "binary", "fine_category": "factual_prediction", "video": "star/8LAK1.mp4", "video_exists": true, "question": "Will the person take the shoe next?", "answer": "yes", "annotation": "a_binary_6d78f0ee56", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6f8d3548ca", "category": "binary", "fine_category": "factual_prediction", "video": "star/65UVU.mp4", "video_exists": true, "question": "Will the person put down the bag next after they open the door?", "answer": "no", "annotation": "a_binary_6f8d3548ca", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6ff47b2adf", "category": "binary", "fine_category": "factual_prediction", "video": "star/9PXC0.mp4", "video_exists": true, "question": "Will the person open the suitcase next?", "answer": "no", "annotation": "a_binary_6ff47b2adf", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_71b759bad2", "category": "binary", "fine_category": "factual_prediction", "video": "star/UEP20.mp4", "video_exists": true, "question": "Will the person reach for the book next?", "answer": "no", "annotation": "a_binary_71b759bad2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_751a36c9b7", "category": "binary", "fine_category": "factual_prediction", "video": "star/4P13T.mp4", "video_exists": true, "question": "Will the person start the computer next?", "answer": "no", "annotation": "a_binary_751a36c9b7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_758a8929fe", "category": "binary", "fine_category": "factual_prediction", "video": "star/FETME.mp4", "video_exists": true, "question": "Will the person close the book next after they take the paper/notebook?", "answer": "yes", "annotation": "a_binary_758a8929fe", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_75b29eac74", "category": "binary", "fine_category": "factual_prediction", "video": "star/IUOC0.mp4", "video_exists": true, "question": "Will the person place the sandwich in the fridge next?", "answer": "no", "annotation": "a_binary_75b29eac74", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_764c695a8b", "category": "binary", "fine_category": "factual_prediction", "video": "star/9BCZU.mp4", "video_exists": true, "question": "Will the person take the phone next?", "answer": "no", "annotation": "a_binary_764c695a8b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_76803889df", "category": "binary", "fine_category": "factual_prediction", "video": "star/RCD08.mp4", "video_exists": true, "question": "Will the person throw the towel next?", "answer": "yes", "annotation": "a_binary_76803889df", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7ead9956ef", "category": "binary", "fine_category": "factual_prediction", "video": "star/6UDGS.mp4", "video_exists": true, "question": "Will the person close the refrigerator next after they hold the shoe?", "answer": "no", "annotation": "a_binary_7ead9956ef", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7f6b8fe9e7", "category": "binary", "fine_category": "factual_prediction", "video": "star/WLA52.mp4", "video_exists": true, "question": "Will the person close the window next?", "answer": "no", "annotation": "a_binary_7f6b8fe9e7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7f94471938", "category": "binary", "fine_category": "factual_prediction", "video": "star/YACA8.mp4", "video_exists": true, "question": "Will the person take the shoe next after they put down the clothes?", "answer": "yes", "annotation": "a_binary_7f94471938", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_82b7b2e78f", "category": "binary", "fine_category": "factual_prediction", "video": "star/AFTMI.mp4", "video_exists": true, "question": "Will the person take the pillow next?", "answer": "yes", "annotation": "a_binary_82b7b2e78f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_871a54773f", "category": "binary", "fine_category": "factual_prediction", "video": "star/DQEC3.mp4", "video_exists": true, "question": "Will the person open the drawer next after they tidy up the closet/cabinet?", "answer": "no", "annotation": "a_binary_871a54773f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_87aa205642", "category": "binary", "fine_category": "factual_prediction", "video": "star/03M0K.mp4", "video_exists": true, "question": "Will the person open the drawer beside the desk next?", "answer": "no", "annotation": "a_binary_87aa205642", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8838e85371", "category": "binary", "fine_category": "factual_prediction", "video": "star/Y79PC.mp4", "video_exists": true, "question": "Will the person throw the magazine next after they watch outside the window?", "answer": "no", "annotation": "a_binary_8838e85371", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8d20db0009", "category": "binary", "fine_category": "factual_prediction", "video": "star/D1NT7.mp4", "video_exists": true, "question": "Will the person take the box next?", "answer": "yes", "annotation": "a_binary_8d20db0009", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8dd88f527a", "category": "binary", "fine_category": "factual_prediction", "video": "star/ATV2F.mp4", "video_exists": true, "question": "Will the person put down the blanket next?", "answer": "yes", "annotation": "a_binary_8dd88f527a", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_8f1a62288a", "category": "binary", "fine_category": "factual_prediction", "video": "star/YCGJS.mp4", "video_exists": true, "question": "Will the person pick up a book from the floor next?", "answer": "no", "annotation": "a_binary_8f1a62288a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_94ed343ce1", "category": "binary", "fine_category": "factual_prediction", "video": "star/XLR4B.mp4", "video_exists": true, "question": "Will the person sit at the table next?", "answer": "yes", "annotation": "a_binary_94ed343ce1", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_967fb5cccb", "category": "binary", "fine_category": "factual_prediction", "video": "star/OA9W5.mp4", "video_exists": true, "question": "Will the person put down the sandwich next?", "answer": "yes", "annotation": "a_binary_967fb5cccb", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_98282f82d1", "category": "binary", "fine_category": "factual_prediction", "video": "star/GPR89.mp4", "video_exists": true, "question": "Will the person put down the paper/notebook next?", "answer": "yes", "annotation": "a_binary_98282f82d1", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_99a0b400ad", "category": "binary", "fine_category": "factual_prediction", "video": "star/NJANX.mp4", "video_exists": true, "question": "Will the person wash the carpet next after they put down the box?", "answer": "no", "annotation": "a_binary_99a0b400ad", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_99b11bd91d", "category": "binary", "fine_category": "factual_prediction", "video": "star/VS7VS.mp4", "video_exists": true, "question": "Will the person throw the pen next after they take the paper/notebook?", "answer": "no", "annotation": "a_binary_99b11bd91d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9b17e0d16b", "category": "binary", "fine_category": "factual_prediction", "video": "star/XPDI1.mp4", "video_exists": true, "question": "Will the person take the dish next?", "answer": "yes", "annotation": "a_binary_9b17e0d16b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9b4a3307ac", "category": "binary", "fine_category": "factual_prediction", "video": "star/P2UBC.mp4", "video_exists": true, "question": "Will the person take the shoe next after they lie on the sofa/couch?", "answer": "yes", "annotation": "a_binary_9b4a3307ac", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a0bc10fedc", "category": "binary", "fine_category": "factual_prediction", "video": "star/K71S1.mp4", "video_exists": true, "question": "Will the person take the blanket next?", "answer": "yes", "annotation": "a_binary_a0bc10fedc", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a23a0f606f", "category": "binary", "fine_category": "factual_prediction", "video": "star/A0ZW3.mp4", "video_exists": true, "question": "Will the person turn off the monitor next?", "answer": "no", "annotation": "a_binary_a23a0f606f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a322395d83", "category": "binary", "fine_category": "factual_prediction", "video": "star/9XXJ7.mp4", "video_exists": true, "question": "Will the person pick up the remote control next?", "answer": "no", "annotation": "a_binary_a322395d83", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a37b925141", "category": "binary", "fine_category": "factual_prediction", "video": "star/FQS7O.mp4", "video_exists": true, "question": "Will the person answer a phone call next?", "answer": "no", "annotation": "a_binary_a37b925141", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a3b0ceae2a", "category": "binary", "fine_category": "factual_prediction", "video": "star/UYZKX.mp4", "video_exists": true, "question": "Will the person throw the pillow next?", "answer": "no", "annotation": "a_binary_a3b0ceae2a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a4a669e8e3", "category": "binary", "fine_category": "factual_prediction", "video": "star/UYZKX.mp4", "video_exists": true, "question": "Will the person throw the blanket next after they open the closet/cabinet?", "answer": "yes", "annotation": "a_binary_a4a669e8e3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a72aa63b73", "category": "binary", "fine_category": "factual_prediction", "video": "star/65UVU.mp4", "video_exists": true, "question": "Will the person put down the box next?", "answer": "yes", "annotation": "a_binary_a72aa63b73", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a7b1791e13", "category": "binary", "fine_category": "factual_prediction", "video": "star/FL6DF.mp4", "video_exists": true, "question": "Will the person adjust the pillow next?", "answer": "no", "annotation": "a_binary_a7b1791e13", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a83f2d04ed", "category": "binary", "fine_category": "factual_prediction", "video": "star/MA15X.mp4", "video_exists": true, "question": "Will the person stand up and stretch next?", "answer": "no", "annotation": "a_binary_a83f2d04ed", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_aa359e5881", "category": "binary", "fine_category": "factual_prediction", "video": "star/CCCUJ.mp4", "video_exists": true, "question": "Will the person put down the pair of glasses next after they turn on the light?", "answer": "no", "annotation": "a_binary_aa359e5881", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_aad85d50d9", "category": "binary", "fine_category": "factual_prediction", "video": "star/7SXQS.mp4", "video_exists": true, "question": "Will the person cover the floor with the blanket next?", "answer": "no", "annotation": "a_binary_aad85d50d9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_aaf05c35dc", "category": "binary", "fine_category": "factual_prediction", "video": "star/ZAJAJ.mp4", "video_exists": true, "question": "Will the person close the laptop next?", "answer": "no", "annotation": "a_binary_aaf05c35dc", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ad19108a00", "category": "binary", "fine_category": "factual_prediction", "video": "star/TAGEG.mp4", "video_exists": true, "question": "Will the person open the closet/cabinet next?", "answer": "yes", "annotation": "a_binary_ad19108a00", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_addb168d93", "category": "binary", "fine_category": "factual_prediction", "video": "star/KV99H.mp4", "video_exists": true, "question": "Will the person put down the book next?", "answer": "yes", "annotation": "a_binary_addb168d93", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ae6621ead9", "category": "binary", "fine_category": "factual_prediction", "video": "star/1FIGA.mp4", "video_exists": true, "question": "Will the person put down the book next?", "answer": "yes", "annotation": "a_binary_ae6621ead9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b06c98e887", "category": "binary", "fine_category": "factual_prediction", "video": "star/3DO95.mp4", "video_exists": true, "question": "Will the person take the book next?", "answer": "yes", "annotation": "a_binary_b06c98e887", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b20d3444ee", "category": "binary", "fine_category": "factual_prediction", "video": "star/432NL.mp4", "video_exists": true, "question": "Will the person eat the medicine next?", "answer": "yes", "annotation": "a_binary_b20d3444ee", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_b52e2c2971", "category": "binary", "fine_category": "factual_prediction", "video": "star/KFI7N.mp4", "video_exists": true, "question": "Will the person throw the broom next?", "answer": "yes", "annotation": "a_binary_b52e2c2971", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_be7da89aeb", "category": "binary", "fine_category": "factual_prediction", "video": "star/CSLEP.mp4", "video_exists": true, "question": "Will the person take the suitcase next?", "answer": "no", "annotation": "a_binary_be7da89aeb", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c07363d27c", "category": "binary", "fine_category": "factual_prediction", "video": "star/Z97SD.mp4", "video_exists": true, "question": "Will the person close the refrigerator next?", "answer": "yes", "annotation": "a_binary_c07363d27c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c26e6d32d4", "category": "binary", "fine_category": "factual_prediction", "video": "star/U3ANG.mp4", "video_exists": true, "question": "Will the person put down the book next?", "answer": "yes", "annotation": "a_binary_c26e6d32d4", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c43b98d028", "category": "binary", "fine_category": "factual_prediction", "video": "star/P4HXN.mp4", "video_exists": true, "question": "Will the person put down the laundry basket next after they wash the clothes?", "answer": "no", "annotation": "a_binary_c43b98d028", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c49dac6fc5", "category": "binary", "fine_category": "factual_prediction", "video": "star/O2OUX.mp4", "video_exists": true, "question": "Will the person close the tablet cover next?", "answer": "no", "annotation": "a_binary_c49dac6fc5", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c61f731797", "category": "binary", "fine_category": "factual_prediction", "video": "star/IUOC0.mp4", "video_exists": true, "question": "Will the person eat the sandwich next after they close the door?", "answer": "yes", "annotation": "a_binary_c61f731797", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c630ecf880", "category": "binary", "fine_category": "factual_prediction", "video": "star/G87XG.mp4", "video_exists": true, "question": "Will the person put down the book next after they sit on the chair?", "answer": "yes", "annotation": "a_binary_c630ecf880", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_cdb6902267", "category": "binary", "fine_category": "factual_prediction", "video": "star/ACJBD.mp4", "video_exists": true, "question": "Will the person put down the blanket next?", "answer": "yes", "annotation": "a_binary_cdb6902267", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_cea8f65333", "category": "binary", "fine_category": "factual_prediction", "video": "star/DH66I.mp4", "video_exists": true, "question": "Will the person open the toolbox next?", "answer": "no", "annotation": "a_binary_cea8f65333", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d0d8c503a2", "category": "binary", "fine_category": "factual_prediction", "video": "star/6KIA4.mp4", "video_exists": true, "question": "Will the person wash the silverware/utensils next after they take the dish?", "answer": "no", "annotation": "a_binary_d0d8c503a2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d229abc95f", "category": "binary", "fine_category": "factual_prediction", "video": "star/8IPWO.mp4", "video_exists": true, "question": "Will the person start writing a note next?", "answer": "no", "annotation": "a_binary_d229abc95f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d33252e358", "category": "binary", "fine_category": "factual_prediction", "video": "star/S1J2Q.mp4", "video_exists": true, "question": "Will the person close the refrigerator next?", "answer": "yes", "annotation": "a_binary_d33252e358", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d4340b9c89", "category": "binary", "fine_category": "factual_prediction", "video": "star/CCCUJ.mp4", "video_exists": true, "question": "Will the person close the book next?", "answer": "no", "annotation": "a_binary_d4340b9c89", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d461f5f9fb", "category": "binary", "fine_category": "factual_prediction", "video": "star/IHSRC.mp4", "video_exists": true, "question": "Will the person take the picture next?", "answer": "yes", "annotation": "a_binary_d461f5f9fb", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d4650f6fec", "category": "binary", "fine_category": "factual_prediction", "video": "star/XZ9C0.mp4", "video_exists": true, "question": "Will the person take the laptop next?", "answer": "yes", "annotation": "a_binary_d4650f6fec", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d7012b2633", "category": "binary", "fine_category": "factual_prediction", "video": "star/ZS9XR.mp4", "video_exists": true, "question": "Will the person eat the medicine next?", "answer": "yes", "annotation": "a_binary_d7012b2633", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d98f00189d", "category": "binary", "fine_category": "factual_prediction", "video": "star/5MF9Y.mp4", "video_exists": true, "question": "Will the person take the mop next after they hold the broom?", "answer": "no", "annotation": "a_binary_d98f00189d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_dd082d056a", "category": "binary", "fine_category": "factual_prediction", "video": "star/BGQIF.mp4", "video_exists": true, "question": "Will the person put the food down next?", "answer": "yes", "annotation": "a_binary_dd082d056a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_dd735254a8", "category": "binary", "fine_category": "factual_prediction", "video": "star/6B93R.mp4", "video_exists": true, "question": "Will the person take the cup/glass/bottle after they put down the food?", "answer": "yes", "annotation": "a_binary_dd735254a8", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e0309c3cb4", "category": "binary", "fine_category": "factual_prediction", "video": "star/432NL.mp4", "video_exists": true, "question": "Will the person eat the medicine next after they close the refrigerator?", "answer": "yes", "annotation": "a_binary_e0309c3cb4", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e4c35a0bf2", "category": "binary", "fine_category": "factual_prediction", "video": "star/XPDI1.mp4", "video_exists": true, "question": "Will the person take the keys next?", "answer": "no", "annotation": "a_binary_e4c35a0bf2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e56566151b", "category": "binary", "fine_category": "factual_prediction", "video": "star/DH66I.mp4", "video_exists": true, "question": "Will the person pick up the keys next?", "answer": "no", "annotation": "a_binary_e56566151b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e98c9bbe05", "category": "binary", "fine_category": "factual_prediction", "video": "star/W0XPU.mp4", "video_exists": true, "question": "Will the person place the sandwich on a plate next?", "answer": "no", "annotation": "a_binary_e98c9bbe05", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ed724980a1", "category": "binary", "fine_category": "factual_prediction", "video": "star/2WGSN.mp4", "video_exists": true, "question": "Will the person pick up the glass next?", "answer": "no", "annotation": "a_binary_ed724980a1", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f7748f9c4f", "category": "binary", "fine_category": "factual_prediction", "video": "star/NNG97.mp4", "video_exists": true, "question": "Will the person start typing on the laptop next?", "answer": "no", "annotation": "a_binary_f7748f9c4f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f7e489b006", "category": "binary", "fine_category": "factual_prediction", "video": "star/CSLEP.mp4", "video_exists": true, "question": "Will the person take the blanket after they lie on the bed?", "answer": "no", "annotation": "a_binary_f7e489b006", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f858445e54", "category": "binary", "fine_category": "factual_prediction", "video": "star/6ZWSU.mp4", "video_exists": true, "question": "Will the person put down the shoe next?", "answer": "yes", "annotation": "a_binary_f858445e54", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_fc64a9db89", "category": "binary", "fine_category": "factual_prediction", "video": "star/5X5DT.mp4", "video_exists": true, "question": "Will the person pick up the phone next?", "answer": "no", "annotation": "a_binary_fc64a9db89", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fde127c4ce", "category": "binary", "fine_category": "factual_prediction", "video": "star/EO6OI.mp4", "video_exists": true, "question": "Will the person put down the pen next?", "answer": "no", "annotation": "a_binary_fde127c4ce", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fef186849b", "category": "binary", "fine_category": "factual_prediction", "video": "star/TPSUY.mp4", "video_exists": true, "question": "Will the person tidy up the clothes next after they hold the broom?", "answer": "yes", "annotation": "a_binary_fef186849b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ff5ed9d0d6", "category": "binary", "fine_category": "factual_prediction", "video": "star/ZS9XR.mp4", "video_exists": true, "question": "Will the person store the medicine carefully next?", "answer": "no", "annotation": "a_binary_ff5ed9d0d6", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0cf1c07638", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/v_dw7LOz17Omg_c032_01.mp4", "video_exists": true, "question": "Does the right team initiate a fast break after the cross of the left team?", "answer": "no", "annotation": "a_binary_0cf1c07638", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_11f391165c", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/lrwiYiFGQZE_E_004478_004516.mp4", "video_exists": true, "question": "Do the players perform a triple lutz jump after performing the giant circle backward?", "answer": "no", "annotation": "a_binary_11f391165c", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_1670f3b2b5", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/v_2Dw9QNH5KtU_c008_01.mp4", "video_exists": true, "question": "Does the left team defend by attempting a baseball double play maneuver to gain a strategic advantage?", "answer": "no", "annotation": "a_binary_1670f3b2b5", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_186f600661", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/Pond water microorganism under microscope.mp4", "video_exists": true, "question": "Are the microorganisms trying to achieve homeostasis?", "answer": "yes", "annotation": "a_binary_186f600661", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_1e566c85fc", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/f6k7PBGgeb4_E_004513_004584.mp4", "video_exists": true, "question": "Do the players perform a giant circle backward?", "answer": "yes", "annotation": "a_binary_1e566c85fc", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_25350dbce8", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/science_v30.mp4", "video_exists": true, "question": "Is the correspondence between the line segments and the function terms that the inner segment is cosine(theta) and the outer segment is sine(pi theta)?", "answer": "no", "annotation": "a_binary_25350dbce8", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_27c91f3e91", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/mc_2mhKpoxU.mp4", "video_exists": true, "question": "According to the World Economic Situation and Prospects as of mid-2008 report, is the expected global economic growth rate for 2018 and 2019 3.2%?", "answer": "yes", "annotation": "a_binary_27c91f3e91", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_27f3cbcc4f", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/science_v30.mp4", "video_exists": true, "question": "Does the endpoint of the curve reach the starting point eventually due to rotational symmetry?", "answer": "no", "annotation": "a_binary_27f3cbcc4f", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_2881a731dc", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/v_00HRwkvvjtQ_c003_02.mp4", "video_exists": true, "question": "Does the left team gain a score in the video by converting a penalty kick?", "answer": "no", "annotation": "a_binary_2881a731dc", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_2a4ffca21c", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/Tendons.mp4", "video_exists": true, "question": "Is it difficult to model tendons because they lie beneath the skin and thus are difficult to visualize?", "answer": "yes", "annotation": "a_binary_2a4ffca21c", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_31c9810b95", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/TBsWos4T4OE_E_001505_001589.mp4", "video_exists": true, "question": "Do the players perform salto backward piked before executing a tuck jump?", "answer": "no", "annotation": "a_binary_31c9810b95", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_3202f1a962", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/v_hDBjIvCw7Kk_c005_01.mp4", "video_exists": true, "question": "Is the defensive rebound of the left team unsuccessful because the left team's defensive setup failed due to zone agility principles applied by the right team?", "answer": "no", "annotation": "a_binary_3202f1a962", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_38af6d933f", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/v_fCc2IXTBIxw_c009_00.mp4", "video_exists": true, "question": "Do the players perform an aerobic gymnastics straddle jump before the explosive push up?", "answer": "yes", "annotation": "a_binary_38af6d933f", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_3a2a89f0dc", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/science_v14.mp4", "video_exists": true, "question": "Are the components used to locate the street in order composed of a license plate, street signs, and sky reflection?", "answer": "no", "annotation": "a_binary_3a2a89f0dc", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_3c04cfb89b", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/R9XUGR-VlTg_E_008869_008972.mp4", "video_exists": true, "question": "Do the players perform the hop with 1 turn and leg elevated to maintain balance in 2 instances?", "answer": "no", "annotation": "a_binary_3c04cfb89b", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_43ee56ff5d", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/CGB9VqSCRLU&list=PL1HIh25sbqZnkA1T09UtVHoyjYaMJuK0a.mp4", "video_exists": true, "question": "Do you find the position of the nose in this video by relating the eye-nose distance with respect to the measured eye distances?", "answer": "yes", "annotation": "a_binary_43ee56ff5d", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_44931e012c", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/Launching a homemade rocket.mp4", "video_exists": true, "question": "Is the model rocket only a 1:10 scale because it could be difficult to acquire funding for a large rocket?", "answer": "yes", "annotation": "a_binary_44931e012c", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_4c2961fad1", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/POPSICLE STICKS CHAIN REACTION.mp4", "video_exists": true, "question": "Are the popsicles flying through the air because the tension and friction holding them together is being released?", "answer": "yes", "annotation": "a_binary_4c2961fad1", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_4e94ff871b", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/sci_vid11.mp4", "video_exists": true, "question": "Are the shaggy inkcap mushroom's spores spread as its liquified cap seeps into the ground?", "answer": "yes", "annotation": "a_binary_4e94ff871b", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_50aedff39f", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/youtube_6.mp4", "video_exists": true, "question": "Did the second mechanic adjust the wheel's camber and caster?", "answer": "no", "annotation": "a_binary_50aedff39f", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_569b902665", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/DyZ2qj6x1UE_E_003965_004064.mp4", "video_exists": true, "question": "Do the players perform a round-off after performing 1 turn on one leg, free leg optional below horizontal?", "answer": "yes", "annotation": "a_binary_569b902665", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_58f61cfbea", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/science_v30.mp4", "video_exists": true, "question": "Does it need the sum of the two terms to demonstrate that Pi is irrational because visualizing any one of the terms alone would result in a simple circle?", "answer": "yes", "annotation": "a_binary_58f61cfbea", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_59c6cc49f0", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/FqcRztINQhw.mp4", "video_exists": true, "question": "Is water forced into a bottle filled with water because of air pressure?", "answer": "yes", "annotation": "a_binary_59c6cc49f0", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_5b7166e490", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/lrwiYiFGQZE_E_004478_004516.mp4", "video_exists": true, "question": "Do the players perform a tucked salto to transition into a full turn before performing counter straddle over high bar to hang?", "answer": "no", "annotation": "a_binary_5b7166e490", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_5d253a89cd", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/f6k7PBGgeb4_E_004513_004584.mp4", "video_exists": true, "question": "Is the video about the Uneven Bar?", "answer": "yes", "annotation": "a_binary_5d253a89cd", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_5d8e968384", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/v_07uuHJ9yXBw_c039_00.mp4", "video_exists": true, "question": "Is the cross of the right team unsuccessful?", "answer": "yes", "annotation": "a_binary_5d8e968384", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_6287d62192", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/v_dFYr67eNMwA_c005_01.mp4", "video_exists": true, "question": "Is the scissors leap a dominant move in figure skating?", "answer": "no", "annotation": "a_binary_6287d62192", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_65852d83bc", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/Ferrofluid Display - Programmable Liquid Metal Professional Exhibit.mp4", "video_exists": true, "question": "Does the magnetic substance have to be in liquid form because it maintains its magnetic properties only when in liquid form?", "answer": "no", "annotation": "a_binary_65852d83bc", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_65c620f9b1", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/v_dw7LOz17Omg_c032_01.mp4", "video_exists": true, "question": "Is the cause of the right team doing saving because the player blocked a potential game-winning field goal?", "answer": "no", "annotation": "a_binary_65c620f9b1", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_6853ac9fc7", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/v_00HRwkvvjtQ_c003_02.mp4", "video_exists": true, "question": "Does any team score in the video?", "answer": "yes", "annotation": "a_binary_6853ac9fc7", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_68c24d5a93", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/p6gJEyy0OrA.mp4", "video_exists": true, "question": "Is the main job of the baton to keep the time in a strict way, with all beats starting and landing on the same line?", "answer": "yes", "annotation": "a_binary_68c24d5a93", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_6cacf19cf9", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/v_dChHNGIfm4Y_c004_00.mp4", "video_exists": true, "question": "Are the players in the video practicing rugby on a sandy field?", "answer": "no", "annotation": "a_binary_6cacf19cf9", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_737a28ef45", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/science_v11.mp4", "video_exists": true, "question": "Does RNA polymerase reproduce the DNA by folding the DNA into smaller segments?", "answer": "no", "annotation": "a_binary_737a28ef45", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_73f78581cb", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/X4sQ9aENtEo.mp4", "video_exists": true, "question": "Does a broken light bulb wire conduct electricity finally because the ions in the saltwater trigger a chemical reaction that repairs the broken wire's structure?", "answer": "no", "annotation": "a_binary_73f78581cb", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_76f87c7aeb", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/9Nk-MR-XNwE.mp4", "video_exists": true, "question": "Are the two circular plates used to rotate the interconnected rods, allowing the rods to rotate at the connection and enabling the elbow mechanism to transmit power and motion?", "answer": "yes", "annotation": "a_binary_76f87c7aeb", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_7ae02a1deb", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/v_ApPxnw_Jffg_c006_00.mp4", "video_exists": true, "question": "Does the left team spike successfully?", "answer": "yes", "annotation": "a_binary_7ae02a1deb", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_7cb4407bdf", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/v_00HRwkvvjtQ_c003_02.mp4", "video_exists": true, "question": "Does any team gain a point because the referee declared a draw without any scoring?", "answer": "no", "annotation": "a_binary_7cb4407bdf", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_7e4b13c3f0", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/Timelapse- Fire Ant Colony Rebuilding After a Storm.mp4", "video_exists": true, "question": "Was the anthill destroyed in the storm because the rainwater caused the soil to grow heavy and collapse inwards?", "answer": "yes", "annotation": "a_binary_7e4b13c3f0", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_87fb36db94", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/CGB9VqSCRLU&list=PL1HIh25sbqZnkA1T09UtVHoyjYaMJuK0a.mp4", "video_exists": true, "question": "Is the reason to start with the eyes when drawing a face to maintain anatomical accuracy by aligning facial symmetry with the eyes' natural focal length?", "answer": "no", "annotation": "a_binary_87fb36db94", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_8f2e8a371e", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/Uvfpy-gqJgI.mp4", "video_exists": true, "question": "Is the drum stick pushed by the thumb, providing the necessary leverage seen in classical percussion techniques during the second step of the first trick?", "answer": "no", "annotation": "a_binary_8f2e8a371e", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_9336ef5e2b", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/efvgHn4Iq0M.mp4", "video_exists": true, "question": "Is 100 dollars the denomination of currency predominantly displayed in the video?", "answer": "yes", "annotation": "a_binary_9336ef5e2b", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_9409f8326a", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/R9XUGR-VlTg_E_008869_008972.mp4", "video_exists": true, "question": "Do the players perform a double layout with a full twisting leap after performing double salto backward stretched with 2 twist?", "answer": "no", "annotation": "a_binary_9409f8326a", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_982b85c436", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/science_v29.mp4", "video_exists": true, "question": "Does the video demonstrate that Bromine is dense by using a spectrometer to calculate the density?", "answer": "no", "annotation": "a_binary_982b85c436", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_9f27e7fb70", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/v_2Dw9QNH5KtU_c008_01.mp4", "video_exists": true, "question": "Is the video about volleyball?", "answer": "yes", "annotation": "a_binary_9f27e7fb70", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_ad60503c0a", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/youtube_22.mp4", "video_exists": true, "question": "Does the robot fail to clean the tabletop because it picks up a glass filled with water and spills the water?", "answer": "yes", "annotation": "a_binary_ad60503c0a", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_ad6ac0da76", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/v_bhWjlAEICp8_c018_00.mp4", "video_exists": true, "question": "Is the left team's spike unsuccessful?", "answer": "yes", "annotation": "a_binary_ad6ac0da76", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_b28a34c51a", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/v_K5PFNpiP5aY_c008_00.mp4", "video_exists": true, "question": "Is the reason for the defensive rebound of the left team that the ball was intercepted during a dribbling move?", "answer": "no", "annotation": "a_binary_b28a34c51a", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_bced368210", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/4mzbybgzoJo_E_000366_000469.mp4", "video_exists": true, "question": "Do the players perform a 3 turn in tuck stand with the torso leaning backwards to initiate the switch leap to ring position?", "answer": "no", "annotation": "a_binary_bced368210", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_bd78c7bf0f", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/ego_01.mp4", "video_exists": true, "question": "Does the man need to do the step shown in the video because the wooden board needs to be reinforced to support structural load, which is unrelated to cutting?", "answer": "no", "annotation": "a_binary_bd78c7bf0f", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_bf33fea35f", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/v_icDf81dWZHw_c003_01.mp4", "video_exists": true, "question": "Is the reason for the defensive rebound of the left team a basketball 2-point shot?", "answer": "yes", "annotation": "a_binary_bf33fea35f", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_c210ab61be", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/dCWnQg-Trr0.mp4", "video_exists": true, "question": "Does the light bulb light up because the magnetic field created by the Earth's rotation induced a current in the circuit?", "answer": "no", "annotation": "a_binary_c210ab61be", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_c2854653b7", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/science_v24.mp4", "video_exists": true, "question": "Is India's territory safe on the south side because all three sides are protected by the sea?", "answer": "yes", "annotation": "a_binary_c2854653b7", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_d9e55cfa36", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/DyZ2qj6x1UE_E_003965_004064.mp4", "video_exists": true, "question": "Do the players perform a pirouette for precision after performing salto sideward tucked, take off from one leg to side stand?", "answer": "no", "annotation": "a_binary_d9e55cfa36", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_e102e1b1c8", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/science_v10.mp4", "video_exists": true, "question": "Is the chemical equation for the experiment Pb(No3)2 + 2KI -> PbI2 + 2KNO3?", "answer": "yes", "annotation": "a_binary_e102e1b1c8", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_e9db3d5d89", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/DyZ2qj6x1UE_E_003965_004064.mp4", "video_exists": true, "question": "Do the players perform a round-off before performing a double salto backward tucked?", "answer": "yes", "annotation": "a_binary_e9db3d5d89", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_e9eabe43c9", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/v_hDBjIvCw7Kk_c005_01.mp4", "video_exists": true, "question": "Does no team gain a point?", "answer": "yes", "annotation": "a_binary_e9eabe43c9", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_f1b158f262", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/Ferrofluid Display - Programmable Liquid Metal Professional Exhibit.mp4", "video_exists": true, "question": "Is the Ferrofluid more magnetic when it is frozen?", "answer": "no", "annotation": "a_binary_f1b158f262", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_fbbf42d273", "category": "binary", "fine_category": "knowledge_based_explanation", "video": "mmworld/v_4RKB-3ER_GA_c016_01.mp4", "video_exists": true, "question": "Do the players perform a pirouette, demonstrating balance principles?", "answer": "no", "annotation": "a_binary_fbbf42d273", "link": "exact", "dup_count": 2, "flags": ["duplicate_rows"], "status": "partial"}
{"qid": "q_binary_00e6776322", "category": "binary", "fine_category": "location", "video": "nextqa/5602364659.mp4", "video_exists": true, "question": "Are the dad and baby playing in the playing area?", "answer": "yes", "annotation": "a_binary_00e6776322", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_02442af1dd", "category": "binary", "fine_category": "location", "video": "nextqa/4124400853.mp4", "video_exists": true, "question": "Is this video taken in a bedroom?", "answer": "yes", "annotation": "a_binary_02442af1dd", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0680d22cfc", "category": "binary", "fine_category": "location", "video": "nextqa/5445670939.mp4", "video_exists": true, "question": "Are the people hanging out in an office?", "answer": "no", "annotation": "a_binary_0680d22cfc", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0a614c3798", "category": "binary", "fine_category": "location", "video": "nextqa/7824310242.mp4", "video_exists": true, "question": "Is this video taken in a hospital ward?", "answer": "yes", "annotation": "a_binary_0a614c3798", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_134ccfc35b", "category": "binary", "fine_category": "location", "video": "nextqa/11944072804.mp4", "video_exists": true, "question": "Is the location an art gallery?", "answer": "no", "annotation": "a_binary_134ccfc35b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_143645ef7f", "category": "binary", "fine_category": "location", "video": "nextqa/7964565242.mp4", "video_exists": true, "question": "Does the water come from the ocean shore?", "answer": "no", "annotation": "a_binary_143645ef7f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_169c6d369a", "category": "binary", "fine_category": "location", "video": "nextqa/7957216542.mp4", "video_exists": true, "question": "Is the girl hanging out in the reading corner?", "answer": "yes", "annotation": "a_binary_169c6d369a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_18b8ae0ef9", "category": "binary", "fine_category": "location", "video": "nextqa/9012054196.mp4", "video_exists": true, "question": "Is this video taken in a swimming pool?", "answer": "no", "annotation": "a_binary_18b8ae0ef9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1a98ee0818", "category": "binary", "fine_category": "location", "video": "nextqa/8686938112.mp4", "video_exists": true, "question": "Are they riding their bike on shopping mall parking lot?", "answer": "no", "annotation": "a_binary_1a98ee0818", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1aeae40ccc", "category": "binary", "fine_category": "location", "video": "nextqa/6577341237.mp4", "video_exists": true, "question": "Is this video taken in a cafe?", "answer": "yes", "annotation": "a_binary_1aeae40ccc", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1c864bde4b", "category": "binary", "fine_category": "location", "video": "nextqa/5032479143.mp4", "video_exists": true, "question": "Is this video taken in a concert hall?", "answer": "no", "annotation": "a_binary_1c864bde4b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_222514d5da", "category": "binary", "fine_category": "location", "video": "nextqa/10652030225.mp4", "video_exists": true, "question": "Is the activity being carried out in martial arts?", "answer": "yes", "annotation": "a_binary_222514d5da", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2499d81d65", "category": "binary", "fine_category": "location", "video": "nextqa/8227806049.mp4", "video_exists": true, "question": "Does the man kiss the baby on the balcony?", "answer": "no", "annotation": "a_binary_2499d81d65", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_265f799546", "category": "binary", "fine_category": "location", "video": "nextqa/3751613141.mp4", "video_exists": true, "question": "Is this happening at a farm?", "answer": "no", "annotation": "a_binary_265f799546", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_27dfd8d767", "category": "binary", "fine_category": "location", "video": "nextqa/4254626112.mp4", "video_exists": true, "question": "Is the place where the kids are dancing a living room?", "answer": "yes", "annotation": "a_binary_27dfd8d767", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2c63e92897", "category": "binary", "fine_category": "location", "video": "nextqa/9402994355.mp4", "video_exists": true, "question": "Is this video taken at home?", "answer": "yes", "annotation": "a_binary_2c63e92897", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2d426f5cdc", "category": "binary", "fine_category": "location", "video": "nextqa/2440996945.mp4", "video_exists": true, "question": "Is this video taken in a bedroom?", "answer": "yes", "annotation": "a_binary_2d426f5cdc", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_31556cd499", "category": "binary", "fine_category": "location", "video": "nextqa/11169386614.mp4", "video_exists": true, "question": "Is this happening in a basketball court?", "answer": "yes", "annotation": "a_binary_31556cd499", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_35f1dff609", "category": "binary", "fine_category": "location", "video": "nextqa/4684348177.mp4", "video_exists": true, "question": "Is this happening in a desert camp?", "answer": "no", "annotation": "a_binary_35f1dff609", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3b15fb439b", "category": "binary", "fine_category": "location", "video": "nextqa/3121452683.mp4", "video_exists": true, "question": "Are they dancing in a beachside venue?", "answer": "no", "annotation": "a_binary_3b15fb439b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3b21d8ed8d", "category": "binary", "fine_category": "location", "video": "nextqa/3216757365.mp4", "video_exists": true, "question": "Is this happening on a porch?", "answer": "yes", "annotation": "a_binary_3b21d8ed8d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3f15bb2575", "category": "binary", "fine_category": "location", "video": "nextqa/6447803681.mp4", "video_exists": true, "question": "Is this happening in a bedroom?", "answer": "yes", "annotation": "a_binary_3f15bb2575", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4063031c77", "category": "binary", "fine_category": "location", "video": "nextqa/4460322604.mp4", "video_exists": true, "question": "Are the people hanging out in the living room?", "answer": "yes", "annotation": "a_binary_4063031c77", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_436b96aa80", "category": "binary", "fine_category": "location", "video": "nextqa/2574703259.mp4", "video_exists": true, "question": "Is this video taken inside a car?", "answer": "no", "annotation": "a_binary_436b96aa80", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_45f50afbde", "category": "binary", "fine_category": "location", "video": "nextqa/2969688375.mp4", "video_exists": true, "question": "Are the people hanging out in a beachside cafe?", "answer": "no", "annotation": "a_binary_45f50afbde", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_47aea5095f", "category": "binary", "fine_category": "location", "video": "nextqa/5478970215.mp4", "video_exists": true, "question": "Is this video taken in an art gallery?", "answer": "no", "annotation": "a_binary_47aea5095f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_47e52eb25e", "category": "binary", "fine_category": "location", "video": "nextqa/2639225467.mp4", "video_exists": true, "question": "Are the people hanging out in a gymnasium?", "answer": "no", "annotation": "a_binary_47e52eb25e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_49baf5c0cc", "category": "binary", "fine_category": "location", "video": "nextqa/3487251005.mp4", "video_exists": true, "question": "Is this video taken in a room?", "answer": "yes", "annotation": "a_binary_49baf5c0cc", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4a0f36d63b", "category": "binary", "fine_category": "location", "video": "nextqa/4967866673.mp4", "video_exists": true, "question": "Is this location a pond?", "answer": "yes", "annotation": "a_binary_4a0f36d63b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5307a767af", "category": "binary", "fine_category": "location", "video": "nextqa/3885216493.mp4", "video_exists": true, "question": "Is this screen projected on a tv?", "answer": "yes", "annotation": "a_binary_5307a767af", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_54891249e0", "category": "binary", "fine_category": "location", "video": "nextqa/4980235136.mp4", "video_exists": true, "question": "Is this place a bus terminal?", "answer": "yes", "annotation": "a_binary_54891249e0", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_56cc012857", "category": "binary", "fine_category": "location", "video": "nextqa/3430723284.mp4", "video_exists": true, "question": "Are the people at an airport?", "answer": "no", "annotation": "a_binary_56cc012857", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_57d55d9456", "category": "binary", "fine_category": "location", "video": "nextqa/8132052550.mp4", "video_exists": true, "question": "Is this likely occurring in a city square?", "answer": "no", "annotation": "a_binary_57d55d9456", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5d1598beb9", "category": "binary", "fine_category": "location", "video": "nextqa/9598464461.mp4", "video_exists": true, "question": "Is this place a zoo?", "answer": "yes", "annotation": "a_binary_5d1598beb9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5db7a18b1b", "category": "binary", "fine_category": "location", "video": "nextqa/5509677964.mp4", "video_exists": true, "question": "Is this video taken in a museum?", "answer": "no", "annotation": "a_binary_5db7a18b1b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5dd646ccbd", "category": "binary", "fine_category": "location", "video": "nextqa/2433368517.mp4", "video_exists": true, "question": "Is this video taken outside a circus tent?", "answer": "no", "annotation": "a_binary_5dd646ccbd", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5dee8c958b", "category": "binary", "fine_category": "location", "video": "nextqa/4273509832.mp4", "video_exists": true, "question": "Is this place a corporate office?", "answer": "no", "annotation": "a_binary_5dee8c958b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_60a46eef6c", "category": "binary", "fine_category": "location", "video": "nextqa/3889087646.mp4", "video_exists": true, "question": "Is this video taken in a marketplace?", "answer": "no", "annotation": "a_binary_60a46eef6c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6439a8013a", "category": "binary", "fine_category": "location", "video": "nextqa/6071633426.mp4", "video_exists": true, "question": "Is this video taken in an oceanfront?", "answer": "no", "annotation": "a_binary_6439a8013a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_69394b6959", "category": "binary", "fine_category": "location", "video": "nextqa/5953341392.mp4", "video_exists": true, "question": "Is the baby sitting in a hotel lobby?", "answer": "no", "annotation": "a_binary_69394b6959", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6a0f9e9376", "category": "binary", "fine_category": "location", "video": "nextqa/2967931618.mp4", "video_exists": true, "question": "Is this happening in a library?", "answer": "no", "annotation": "a_binary_6a0f9e9376", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6c2230d83c", "category": "binary", "fine_category": "location", "video": "nextqa/2855649995.mp4", "video_exists": true, "question": "Is the girl carrying out the activity in the kitchen?", "answer": "yes", "annotation": "a_binary_6c2230d83c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6da2b114cb", "category": "binary", "fine_category": "location", "video": "nextqa/7375575700.mp4", "video_exists": true, "question": "Are the dogs hanging out at the train station?", "answer": "no", "annotation": "a_binary_6da2b114cb", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6dacf0783c", "category": "binary", "fine_category": "location", "video": "nextqa/4032969415.mp4", "video_exists": true, "question": "Are the men singing in a museum gallery?", "answer": "no", "annotation": "a_binary_6dacf0783c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_71dc0df021", "category": "binary", "fine_category": "location", "video": "nextqa/8545885849.mp4", "video_exists": true, "question": "Is the boy sitting on the rooftop?", "answer": "no", "annotation": "a_binary_71dc0df021", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_72fbc9a599", "category": "binary", "fine_category": "location", "video": "nextqa/2956081853.mp4", "video_exists": true, "question": "Is this happening at an amusement park?", "answer": "no", "annotation": "a_binary_72fbc9a599", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7ad9a5a0af", "category": "binary", "fine_category": "location", "video": "nextqa/3492285627.mp4", "video_exists": true, "question": "Is the food on the table?", "answer": "yes", "annotation": "a_binary_7ad9a5a0af", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7d3ebeee3f", "category": "binary", "fine_category": "location", "video": "nextqa/12078592673.mp4", "video_exists": true, "question": "Is this activity being held while preparing pizza?", "answer": "yes", "annotation": "a_binary_7d3ebeee3f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_827d86e604", "category": "binary", "fine_category": "location", "video": "nextqa/4914358389.mp4", "video_exists": true, "question": "Is this video taken in a grocery store?", "answer": "no", "annotation": "a_binary_827d86e604", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_83039cac53", "category": "binary", "fine_category": "location", "video": "nextqa/4794935391.mp4", "video_exists": true, "question": "Is this video taken in an aquarium?", "answer": "no", "annotation": "a_binary_83039cac53", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_83eca5de71", "category": "binary", "fine_category": "location", "video": "nextqa/3425409935.mp4", "video_exists": true, "question": "Is this happening on the pavement?", "answer": "yes", "annotation": "a_binary_83eca5de71", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8693888fe7", "category": "binary", "fine_category": "location", "video": "nextqa/10734790773.mp4", "video_exists": true, "question": "Is this happening in an amusement park?", "answer": "no", "annotation": "a_binary_8693888fe7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8b5acc878f", "category": "binary", "fine_category": "location", "video": "nextqa/8696216243.mp4", "video_exists": true, "question": "Is this happening in an arcade?", "answer": "no", "annotation": "a_binary_8b5acc878f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8ca70107f6", "category": "binary", "fine_category": "location", "video": "nextqa/13516621384.mp4", "video_exists": true, "question": "Is this video taken in a forest?", "answer": "yes", "annotation": "a_binary_8ca70107f6", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8d293905f8", "category": "binary", "fine_category": "location", "video": "nextqa/2924847675.mp4", "video_exists": true, "question": "Are both of them at the airport?", "answer": "no", "annotation": "a_binary_8d293905f8", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8e53b52578", "category": "binary", "fine_category": "location", "video": "nextqa/4924794333.mp4", "video_exists": true, "question": "Does the baby rest her hands on the steering wheel?", "answer": "no", "annotation": "a_binary_8e53b52578", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8f6f80c1a0", "category": "binary", "fine_category": "location", "video": "nextqa/6068969659.mp4", "video_exists": true, "question": "Is this video taken at a shopping mall?", "answer": "no", "annotation": "a_binary_8f6f80c1a0", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8fd4031c70", "category": "binary", "fine_category": "location", "video": "nextqa/4405746537.mp4", "video_exists": true, "question": "Are the children sitting on a floor mat?", "answer": "yes", "annotation": "a_binary_8fd4031c70", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9bd9970e22", "category": "binary", "fine_category": "location", "video": "nextqa/4740545679.mp4", "video_exists": true, "question": "Is this happening in an art gallery?", "answer": "no", "annotation": "a_binary_9bd9970e22", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9c50bdabde", "category": "binary", "fine_category": "location", "video": "nextqa/3416303524.mp4", "video_exists": true, "question": "Is this location a university campus?", "answer": "no", "annotation": "a_binary_9c50bdabde", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a205cbfdd6", "category": "binary", "fine_category": "location", "video": "nextqa/12299711406.mp4", "video_exists": true, "question": "Is this happening in a kitchen?", "answer": "yes", "annotation": "a_binary_a205cbfdd6", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a3d9f09ba7", "category": "binary", "fine_category": "location", "video": "nextqa/5297426137.mp4", "video_exists": true, "question": "Is this video taken in a room?", "answer": "yes", "annotation": "a_binary_a3d9f09ba7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a6d7a1a16d", "category": "binary", "fine_category": "location", "video": "nextqa/3705663920.mp4", "video_exists": true, "question": "Is this video taken in an art gallery?", "answer": "no", "annotation": "a_binary_a6d7a1a16d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ac6164fc43", "category": "binary", "fine_category": "location", "video": "nextqa/2406887888.mp4", "video_exists": true, "question": "Is this happening in a living room?", "answer": "yes", "annotation": "a_binary_ac6164fc43", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b0aff521f8", "category": "binary", "fine_category": "location", "video": "nextqa/5402233708.mp4", "video_exists": true, "question": "Is this video taken in a beach?", "answer": "no", "annotation": "a_binary_b0aff521f8", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b337ac8410", "category": "binary", "fine_category": "location", "video": "nextqa/4039239344.mp4", "video_exists": true, "question": "Is this video taken in a bookstore?", "answer": "no", "annotation": "a_binary_b337ac8410", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b37f4c1eca", "category": "binary", "fine_category": "location", "video": "nextqa/3804458046.mp4", "video_exists": true, "question": "Is this place located outside a house?", "answer": "yes", "annotation": "a_binary_b37f4c1eca", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b5527dc6a1", "category": "binary", "fine_category": "location", "video": "nextqa/5646554288.mp4", "video_exists": true, "question": "Is this video taken in a library?", "answer": "no", "annotation": "a_binary_b5527dc6a1", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b8aae87c7e", "category": "binary", "fine_category": "location", "video": "nextqa/4922092172.mp4", "video_exists": true, "question": "Is this video taken in a museum?", "answer": "no", "annotation": "a_binary_b8aae87c7e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_bb825d1e60", "category": "binary", "fine_category": "location", "video": "nextqa/3525178080.mp4", "video_exists": true, "question": "Is this video taken in a forest?", "answer": "yes", "annotation": "a_binary_bb825d1e60", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_bc1386bf92", "category": "binary", "fine_category": "location", "video": "nextqa/7492345390.mp4", "video_exists": true, "question": "Is this video taken in a living room?", "answer": "yes", "annotation": "a_binary_bc1386bf92", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c0b24a3224", "category": "binary", "fine_category": "location", "video": "nextqa/2792202513.mp4", "video_exists": true, "question": "Does the girl in pink get down from a plank at the end?", "answer": "yes", "annotation": "a_binary_c0b24a3224", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c870cb881f", "category": "binary", "fine_category": "location", "video": "nextqa/5353486947.mp4", "video_exists": true, "question": "Is this happening in a living room?", "answer": "yes", "annotation": "a_binary_c870cb881f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_cbf669b3a7", "category": "binary", "fine_category": "location", "video": "nextqa/2676529856.mp4", "video_exists": true, "question": "Is this video taken in a beach?", "answer": "no", "annotation": "a_binary_cbf669b3a7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_cd17167c73", "category": "binary", "fine_category": "location", "video": "nextqa/3747890905.mp4", "video_exists": true, "question": "Are the people hanging out in the living room?", "answer": "yes", "annotation": "a_binary_cd17167c73", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d32c7012d2", "category": "binary", "fine_category": "location", "video": "nextqa/3079724515.mp4", "video_exists": true, "question": "Is this video taken in a playground?", "answer": "yes", "annotation": "a_binary_d32c7012d2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d392049311", "category": "binary", "fine_category": "location", "video": "nextqa/2657975235.mp4", "video_exists": true, "question": "Is this place a hut?", "answer": "yes", "annotation": "a_binary_d392049311", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d3cbcad908", "category": "binary", "fine_category": "location", "video": "nextqa/3122394310.mp4", "video_exists": true, "question": "Are the people dancing in the frontyard?", "answer": "yes", "annotation": "a_binary_d3cbcad908", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d5a3ace66e", "category": "binary", "fine_category": "location", "video": "nextqa/8568772570.mp4", "video_exists": true, "question": "Is this video taken near the lake?", "answer": "yes", "annotation": "a_binary_d5a3ace66e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d5f5247890", "category": "binary", "fine_category": "location", "video": "nextqa/4854593577.mp4", "video_exists": true, "question": "Is this happening in a music studio?", "answer": "no", "annotation": "a_binary_d5f5247890", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d6a9134f19", "category": "binary", "fine_category": "location", "video": "nextqa/4903593284.mp4", "video_exists": true, "question": "Is this video taken on a stage?", "answer": "yes", "annotation": "a_binary_d6a9134f19", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d7f6ab9a39", "category": "binary", "fine_category": "location", "video": "nextqa/6339181867.mp4", "video_exists": true, "question": "Is this video taken in a bedroom?", "answer": "yes", "annotation": "a_binary_d7f6ab9a39", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d9f6fb9aae", "category": "binary", "fine_category": "location", "video": "nextqa/2836465095.mp4", "video_exists": true, "question": "Are they performing on a stage?", "answer": "yes", "annotation": "a_binary_d9f6fb9aae", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e01dc9e02d", "category": "binary", "fine_category": "location", "video": "nextqa/4397841774.mp4", "video_exists": true, "question": "Is the boy hanging out in a library?", "answer": "no", "annotation": "a_binary_e01dc9e02d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e126c8bd0b", "category": "binary", "fine_category": "location", "video": "nextqa/3377611214.mp4", "video_exists": true, "question": "Is this video taken inside a modern art museum?", "answer": "no", "annotation": "a_binary_e126c8bd0b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e2bc243000", "category": "binary", "fine_category": "location", "video": "nextqa/5219491835.mp4", "video_exists": true, "question": "Is the baby rested in a baby trolley?", "answer": "yes", "annotation": "a_binary_e2bc243000", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e7725623f7", "category": "binary", "fine_category": "location", "video": "nextqa/4226455621.mp4", "video_exists": true, "question": "Is this likely to be occurring in a living room?", "answer": "yes", "annotation": "a_binary_e7725623f7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ed5f3889c2", "category": "binary", "fine_category": "location", "video": "nextqa/4463062358.mp4", "video_exists": true, "question": "Is the baby lying on a bed?", "answer": "yes", "annotation": "a_binary_ed5f3889c2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ede7152eda", "category": "binary", "fine_category": "location", "video": "nextqa/2906386126.mp4", "video_exists": true, "question": "Are they performing in a concert venue?", "answer": "no", "annotation": "a_binary_ede7152eda", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f065c170c8", "category": "binary", "fine_category": "location", "video": "nextqa/3776883679.mp4", "video_exists": true, "question": "Is this place a park?", "answer": "yes", "annotation": "a_binary_f065c170c8", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f52cf0de86", "category": "binary", "fine_category": "location", "video": "nextqa/5849071543.mp4", "video_exists": true, "question": "Are the people cycling on a shopping mall?", "answer": "no", "annotation": "a_binary_f52cf0de86", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f6ceb92ba1", "category": "binary", "fine_category": "location", "video": "nextqa/2984088185.mp4", "video_exists": true, "question": "Is this happening at a train station?", "answer": "no", "annotation": "a_binary_f6ceb92ba1", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f80c98a7ba", "category": "binary", "fine_category": "location", "video": "nextqa/3599210242.mp4", "video_exists": true, "question": "Is the man in orange riding his bicycle on a mountain trail?", "answer": "yes", "annotation": "a_binary_f80c98a7ba", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f9dc66e7a3", "category": "binary", "fine_category": "location", "video": "nextqa/6199427603.mp4", "video_exists": true, "question": "Is this happening in a piano room?", "answer": "yes", "annotation": "a_binary_f9dc66e7a3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fa24beacf9", "category": "binary", "fine_category": "location", "video": "nextqa/6706220611.mp4", "video_exists": true, "question": "Is the pillow kept in a garage?", "answer": "no", "annotation": "a_binary_fa24beacf9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fa918cefbd", "category": "binary", "fine_category": "location", "video": "nextqa/4015487071.mp4", "video_exists": true, "question": "Is this video taken in a conference room?", "answer": "yes", "annotation": "a_binary_fa918cefbd", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fa9a9e0632", "category": "binary", "fine_category": "location", "video": "nextqa/6134687264.mp4", "video_exists": true, "question": "Does the child crawl to the end of the video out of the room?", "answer": "yes", "annotation": "a_binary_fa9a9e0632", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fe998944a4", "category": "binary", "fine_category": "location", "video": "nextqa/10905462446.mp4", "video_exists": true, "question": "Is this place outdoors?", "answer": "yes", "annotation": "a_binary_fe998944a4", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ff88eccc29", "category": "binary", "fine_category": "location", "video": "nextqa/7173743064.mp4", "video_exists": true, "question": "Are the boys hanging out roadside?", "answer": "yes", "annotation": "a_binary_ff88eccc29", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0124a581cc", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_VSsZZZHn1L0.mp4", "video_exists": true, "question": "Are there 3 people in the video?", "answer": "no", "annotation": "a_binary_0124a581cc", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0378de6172", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_UvOEuhS0V3E.mp4", "video_exists": true, "question": "Are there 2 long hair women in the video?", "answer": "no", "annotation": "a_binary_0378de6172", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_03813b1309", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_uty4eGb_vvU.mp4", "video_exists": true, "question": "Are there 2 women in red in the video?", "answer": "no", "annotation": "a_binary_03813b1309", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_046570392b", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_mixxaL3Bdv8.mp4", "video_exists": true, "question": "Are there 5 people walking on stilts in the video?", "answer": "no", "annotation": "a_binary_046570392b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_05fcf3d8cd", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_nnEPsdA0080.mp4", "video_exists": true, "question": "Are there 10 people on the boat in the video?", "answer": "no", "annotation": "a_binary_05fcf3d8cd", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0a49cf825c", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_gWTndmDHZQc.mp4", "video_exists": true, "question": "Are there 5 people in the video?", "answer": "no", "annotation": "a_binary_0a49cf825c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0cc1997cd9", "category": "binary", "fine_category": "number", "video": "nextqa/2776910060.mp4", "video_exists": true, "question": "Are there six dogs in the video?", "answer": "no", "annotation": "a_binary_0cc1997cd9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0d9efb8fa4", "category": "binary", "fine_category": "number", "video": "nextqa/5547902371.mp4", "video_exists": true, "question": "Were there nine children?", "answer": "no", "annotation": "a_binary_0d9efb8fa4", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0ecb865d2e", "category": "binary", "fine_category": "number", "video": "nextqa/5706585620.mp4", "video_exists": true, "question": "Are there ten horses in the video?", "answer": "no", "annotation": "a_binary_0ecb865d2e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_153ec3fd07", "category": "binary", "fine_category": "number", "video": "nextqa/3477094374.mp4", "video_exists": true, "question": "Are there five people involved in the video?", "answer": "no", "annotation": "a_binary_153ec3fd07", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_17654f24f5", "category": "binary", "fine_category": "number", "video": "nextqa/6557505435.mp4", "video_exists": true, "question": "Are there five dogs?", "answer": "no", "annotation": "a_binary_17654f24f5", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_28ae001669", "category": "binary", "fine_category": "number", "video": "nextqa/6128079946.mp4", "video_exists": true, "question": "Are there five people mainly involved in the video?", "answer": "no", "annotation": "a_binary_28ae001669", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2d4c352959", "category": "binary", "fine_category": "number", "video": "nextqa/3042965654.mp4", "video_exists": true, "question": "Are there eight people in the video?", "answer": "no", "annotation": "a_binary_2d4c352959", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2e11d9b788", "category": "binary", "fine_category": "number", "video": "nextqa/5325035068.mp4", "video_exists": true, "question": "Are there three people involved in the video?", "answer": "no", "annotation": "a_binary_2e11d9b788", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_338c1512ce", "category": "binary", "fine_category": "number", "video": "nextqa/3606510307.mp4", "video_exists": true, "question": "Were eight people filmed?", "answer": "no", "annotation": "a_binary_338c1512ce", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_34ca62856a", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_ldAHwbF8uWI.mp4", "video_exists": true, "question": "Are there 4 people's games in the wrenches?", "answer": "no", "annotation": "a_binary_34ca62856a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_37cb0270f2", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_Feq-2NIDl94.mp4", "video_exists": true, "question": "Were 8 fingers dyed altogether?", "answer": "no", "annotation": "a_binary_37cb0270f2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3a9229c26c", "category": "binary", "fine_category": "number", "video": "nextqa/3628972520.mp4", "video_exists": true, "question": "Are there six people in the video?", "answer": "no", "annotation": "a_binary_3a9229c26c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3cd0e47334", "category": "binary", "fine_category": "number", "video": "nextqa/7161543663.mp4", "video_exists": true, "question": "Are there twelve men?", "answer": "no", "annotation": "a_binary_3cd0e47334", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3ef4fda86c", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_4_jDgRsOGvY.mp4", "video_exists": true, "question": "Are there 5 people in the video?", "answer": "no", "annotation": "a_binary_3ef4fda86c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3f5a3138c8", "category": "binary", "fine_category": "number", "video": "nextqa/12299711406.mp4", "video_exists": true, "question": "Are there eight people involved in the video?", "answer": "no", "annotation": "a_binary_3f5a3138c8", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_41befb0ac4", "category": "binary", "fine_category": "number", "video": "nextqa/3118473217.mp4", "video_exists": true, "question": "Are there ten children presented?", "answer": "no", "annotation": "a_binary_41befb0ac4", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4339479fca", "category": "binary", "fine_category": "number", "video": "nextqa/7198714574.mp4", "video_exists": true, "question": "Were six people filmed in total?", "answer": "no", "annotation": "a_binary_4339479fca", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4376ad08ea", "category": "binary", "fine_category": "number", "video": "nextqa/4180380438.mp4", "video_exists": true, "question": "Are there eight people?", "answer": "no", "annotation": "a_binary_4376ad08ea", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_43e9f83a52", "category": "binary", "fine_category": "number", "video": "nextqa/3509821194.mp4", "video_exists": true, "question": "Are there three performers?", "answer": "no", "annotation": "a_binary_43e9f83a52", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_48beaccd4a", "category": "binary", "fine_category": "number", "video": "nextqa/2805028487.mp4", "video_exists": true, "question": "Are there three ladies filmed?", "answer": "no", "annotation": "a_binary_48beaccd4a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4b4adc0feb", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_Ynvd8OuXKGw.mp4", "video_exists": true, "question": "Are there 2 people dancing in the video?", "answer": "no", "annotation": "a_binary_4b4adc0feb", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_53c9755cbd", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_03c6QhTMDSs.mp4", "video_exists": true, "question": "Are there 2 people in the video?", "answer": "no", "annotation": "a_binary_53c9755cbd", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_546686513c", "category": "binary", "fine_category": "number", "video": "nextqa/5913320110.mp4", "video_exists": true, "question": "Are there eight people on stage?", "answer": "no", "annotation": "a_binary_546686513c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_558371918f", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_Y05GAiavfOg.mp4", "video_exists": true, "question": "Are there 3 people in the video?", "answer": "no", "annotation": "a_binary_558371918f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5be3dc1922", "category": "binary", "fine_category": "number", "video": "nextqa/6199427603.mp4", "video_exists": true, "question": "Are there six people involved in the video?", "answer": "no", "annotation": "a_binary_5be3dc1922", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5ce3f4603c", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_4LpqPUWHH5k.mp4", "video_exists": true, "question": "Are there 4 coaches that have appeared in the video?", "answer": "no", "annotation": "a_binary_5ce3f4603c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5e436f2758", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_DHjoAOus3xM.mp4", "video_exists": true, "question": "Are there 5 people on the two ships?", "answer": "no", "annotation": "a_binary_5e436f2758", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_63eff9bdb4", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_jBlG0L_M96g.mp4", "video_exists": true, "question": "Are there 2 people in the video?", "answer": "no", "annotation": "a_binary_63eff9bdb4", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_64b9df2c06", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_y0ca-LbQErY.mp4", "video_exists": true, "question": "Are there 3 people in the video?", "answer": "no", "annotation": "a_binary_64b9df2c06", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6fed6f4b68", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_kBTqTp0SKq8.mp4", "video_exists": true, "question": "Are there 5 children with a stick?", "answer": "no", "annotation": "a_binary_6fed6f4b68", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_73f42c7792", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_ivAvKRQQy1Q.mp4", "video_exists": true, "question": "Are there 3 pots in the video?", "answer": "no", "annotation": "a_binary_73f42c7792", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_77dd18426f", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_7lxP-hWFA24.mp4", "video_exists": true, "question": "Are there 2 individuals playing the guitar in the video?", "answer": "no", "annotation": "a_binary_77dd18426f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7b7a987bad", "category": "binary", "fine_category": "number", "video": "nextqa/4830393131.mp4", "video_exists": true, "question": "Are there three children?", "answer": "no", "annotation": "a_binary_7b7a987bad", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7f1daaacf4", "category": "binary", "fine_category": "number", "video": "nextqa/2916577028.mp4", "video_exists": true, "question": "Are there four players?", "answer": "no", "annotation": "a_binary_7f1daaacf4", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8170911e08", "category": "binary", "fine_category": "number", "video": "nextqa/7174056178.mp4", "video_exists": true, "question": "Are there four people involved in the video?", "answer": "no", "annotation": "a_binary_8170911e08", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_826ffd839b", "category": "binary", "fine_category": "number", "video": "nextqa/4536434821.mp4", "video_exists": true, "question": "Are there ten birds involved in the video?", "answer": "no", "annotation": "a_binary_826ffd839b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_85935144ed", "category": "binary", "fine_category": "number", "video": "nextqa/5832442216.mp4", "video_exists": true, "question": "Are there five people present for the game?", "answer": "no", "annotation": "a_binary_85935144ed", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_86087d016d", "category": "binary", "fine_category": "number", "video": "nextqa/5564473671.mp4", "video_exists": true, "question": "Are there eight people shooting together?", "answer": "no", "annotation": "a_binary_86087d016d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_87d748725f", "category": "binary", "fine_category": "number", "video": "nextqa/9012054196.mp4", "video_exists": true, "question": "Are there ten people sitting near the table?", "answer": "no", "annotation": "a_binary_87d748725f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_89d93ebbea", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_mZYWfmsYQPA.mp4", "video_exists": true, "question": "Are there 2 people in the video?", "answer": "no", "annotation": "a_binary_89d93ebbea", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8a496dfab7", "category": "binary", "fine_category": "number", "video": "nextqa/5866947362.mp4", "video_exists": true, "question": "Are there five people involved in the video?", "answer": "no", "annotation": "a_binary_8a496dfab7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8e165590b2", "category": "binary", "fine_category": "number", "video": "nextqa/9072405003.mp4", "video_exists": true, "question": "Did the cat touch the stick eight times?", "answer": "no", "annotation": "a_binary_8e165590b2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8efe953f6f", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_gkwLhml3mnA.mp4", "video_exists": true, "question": "Are there 4 people in the video?", "answer": "no", "annotation": "a_binary_8efe953f6f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8ff1026854", "category": "binary", "fine_category": "number", "video": "nextqa/8696216243.mp4", "video_exists": true, "question": "Are there six people involved in the video?", "answer": "no", "annotation": "a_binary_8ff1026854", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_918597332c", "category": "binary", "fine_category": "number", "video": "activitynetqa/v__zqj6daJo9U.mp4", "video_exists": true, "question": "Are there 6 people in the video?", "answer": "no", "annotation": "a_binary_918597332c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_93088ad391", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_nhQTxZlzG1Q.mp4", "video_exists": true, "question": "Are there 3 people in the video?", "answer": "no", "annotation": "a_binary_93088ad391", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9395fc81ef", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_rGOOlcdpfLg.mp4", "video_exists": true, "question": "Are there 3 people in the video?", "answer": "no", "annotation": "a_binary_9395fc81ef", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9428b65421", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_Jix3poZOeZA.mp4", "video_exists": true, "question": "Are there 3 people in the video?", "answer": "no", "annotation": "a_binary_9428b65421", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_943dde6915", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_GOhmWfR8QBM.mp4", "video_exists": true, "question": "Are there 4 people in the video?", "answer": "no", "annotation": "a_binary_943dde6915", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_95f02812cf", "category": "binary", "fine_category": "number", "video": "nextqa/4954732488.mp4", "video_exists": true, "question": "Are there six people filmed in the car?", "answer": "no", "annotation": "a_binary_95f02812cf", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9809099d8e", "category": "binary", "fine_category": "number", "video": "nextqa/5699922217.mp4", "video_exists": true, "question": "Are there nine people in the video?", "answer": "no", "annotation": "a_binary_9809099d8e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a31f9918de", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_Gfu8e6R6jUU.mp4", "video_exists": true, "question": "Are there 8 people in the video?", "answer": "no", "annotation": "a_binary_a31f9918de", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a4b18d7704", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_SjlILJ2st-I.mp4", "video_exists": true, "question": "Are there 10 players in the video game?", "answer": "no", "annotation": "a_binary_a4b18d7704", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a8a4eea79a", "category": "binary", "fine_category": "number", "video": "nextqa/5012237466.mp4", "video_exists": true, "question": "Were there two children?", "answer": "no", "annotation": "a_binary_a8a4eea79a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_aa0314eb31", "category": "binary", "fine_category": "number", "video": "nextqa/3992773451.mp4", "video_exists": true, "question": "Does the boy swim nine rounds?", "answer": "no", "annotation": "a_binary_aa0314eb31", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ac5a68a7f0", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_lPw_BRbPw5s.mp4", "video_exists": true, "question": "Are there 4 people in the video?", "answer": "no", "annotation": "a_binary_ac5a68a7f0", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_af29aa6444", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_E_UkQGk7QAE.mp4", "video_exists": true, "question": "Are there 5 children in a light blue dress?", "answer": "no", "annotation": "a_binary_af29aa6444", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b01b451bf9", "category": "binary", "fine_category": "number", "video": "nextqa/5864047618.mp4", "video_exists": true, "question": "Are there nine people involved in the video?", "answer": "no", "annotation": "a_binary_b01b451bf9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b0a752801e", "category": "binary", "fine_category": "number", "video": "nextqa/9289576155.mp4", "video_exists": true, "question": "Are there five cats?", "answer": "no", "annotation": "a_binary_b0a752801e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b0d82a3b0d", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_Nb6AQxxrihA.mp4", "video_exists": true, "question": "Are there 3 people in the video?", "answer": "no", "annotation": "a_binary_b0d82a3b0d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b1aa7b9e7b", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_Db2Dnt2OOo0.mp4", "video_exists": true, "question": "Are there 2 people in the video?", "answer": "no", "annotation": "a_binary_b1aa7b9e7b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b4f222f5c0", "category": "binary", "fine_category": "number", "video": "nextqa/2530293734.mp4", "video_exists": true, "question": "Are there six people that appear in the video?", "answer": "no", "annotation": "a_binary_b4f222f5c0", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b6aa0d19da", "category": "binary", "fine_category": "number", "video": "nextqa/7693297646.mp4", "video_exists": true, "question": "Are there three people in the video?", "answer": "no", "annotation": "a_binary_b6aa0d19da", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_bb82684ae0", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_LYTWYSqsTCE.mp4", "video_exists": true, "question": "Are there 3 people in the video?", "answer": "no", "annotation": "a_binary_bb82684ae0", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c478a0f3d6", "category": "binary", "fine_category": "number", "video": "nextqa/4135845237.mp4", "video_exists": true, "question": "Are there eight people in the video?", "answer": "no", "annotation": "a_binary_c478a0f3d6", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d322fe7037", "category": "binary", "fine_category": "number", "video": "nextqa/8224490794.mp4", "video_exists": true, "question": "Are there four babies in the video?", "answer": "no", "annotation": "a_binary_d322fe7037", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_dd7d274fde", "category": "binary", "fine_category": "number", "video": "nextqa/13503538465.mp4", "video_exists": true, "question": "Are there five children?", "answer": "no", "annotation": "a_binary_dd7d274fde", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_dea4fbada8", "category": "binary", "fine_category": "number", "video": "nextqa/7276759062.mp4", "video_exists": true, "question": "Are there five dogs?", "answer": "no", "annotation": "a_binary_dea4fbada8", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_df1791c400", "category": "binary", "fine_category": "number", "video": "nextqa/6246539463.mp4", "video_exists": true, "question": "Are there seven birds involved in the video?", "answer": "no", "annotation": "a_binary_df1791c400", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_dfa251b419", "category": "binary", "fine_category": "number", "video": "nextqa/8392813576.mp4", "video_exists": true, "question": "Are there four people involved in the video?", "answer": "no", "annotation": "a_binary_dfa251b419", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e241df0ae9", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_3uaQ0cULMgc.mp4", "video_exists": true, "question": "Are there 8 people in the video?", "answer": "no", "annotation": "a_binary_e241df0ae9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e29717970b", "category": "binary", "fine_category": "number", "video": "nextqa/3702630327.mp4", "video_exists": true, "question": "Did the man pick up eight paddles?", "answer": "no", "annotation": "a_binary_e29717970b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_eb99dfd27b", "category": "binary", "fine_category": "number", "video": "nextqa/4177758139.mp4", "video_exists": true, "question": "Are there three children in the video?", "answer": "no", "annotation": "a_binary_eb99dfd27b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ebe51d1020", "category": "binary", "fine_category": "number", "video": "nextqa/9711707112.mp4", "video_exists": true, "question": "Were six people filmed?", "answer": "no", "annotation": "a_binary_ebe51d1020", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ee02718e72", "category": "binary", "fine_category": "number", "video": "activitynetqa/v_zxpQHLwZCug.mp4", "video_exists": true, "question": "Are there 2 people in the video?", "answer": "no", "annotation": "a_binary_ee02718e72", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f86e3da654", "category": "binary", "fine_category": "number", "video": "nextqa/7492345390.mp4", "video_exists": true, "question": "Are there four people in the video?", "answer": "no", "annotation": "a_binary_f86e3da654", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ff1598e219", "category": "binary", "fine_category": "number", "video": "nextqa/3842392593.mp4", "video_exists": true, "question": "Does the dog jump up eight times in total?", "answer": "no", "annotation": "a_binary_ff1598e219", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ffd3f2e17d", "category": "binary", "fine_category": "number", "video": "nextqa/7375575700.mp4", "video_exists": true, "question": "Are there eight dogs in the video?", "answer": "no", "annotation": "a_binary_ffd3f2e17d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3363641a18", "category": "binary", "fine_category": "object", "video": "star/PZD7Z.mp4", "video_exists": true, "question": "Did the person put down the broom?", "answer": "yes", "annotation": "a_binary_3363641a18", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_05fcfbefd7", "category": "binary", "fine_category": "ocr", "video": "vtvqa/04233.mp4", "video_exists": true, "question": "Is AASS PILSNER cheaper than GLOBAL PALE ALE?", "answer": "yes", "annotation": "a_binary_05fcfbefd7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0617db70b6", "category": "binary", "fine_category": "ocr", "video": "vtvqa/01776.mp4", "video_exists": true, "question": "Is “diner” what's written?", "answer": "no", "annotation": "a_binary_0617db70b6", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_07a3f59386", "category": "binary", "fine_category": "ocr", "video": "vtvqa/02741.mp4", "video_exists": true, "question": "Is it true that they are at the Aston Vega Fubball Club?", "answer": "no", "annotation": "a_binary_07a3f59386", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0ac5e0d8c2", "category": "binary", "fine_category": "ocr", "video": "vtvqa/07365.mp4", "video_exists": true, "question": "Does he have 8 First Aid Kits?", "answer": "no", "annotation": "a_binary_0ac5e0d8c2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_20a16a592c", "category": "binary", "fine_category": "ocr", "video": "vtvqa/03929.mp4", "video_exists": true, "question": "Is the speed limit on the yellow sign 28 mph?", "answer": "no", "annotation": "a_binary_20a16a592c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_23b4dce572", "category": "binary", "fine_category": "ocr", "video": "vtvqa/07284.mp4", "video_exists": true, "question": "Is the discount given for the SUSTAGEN product 20% off?", "answer": "yes", "annotation": "a_binary_23b4dce572", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_26a574ea06", "category": "binary", "fine_category": "ocr", "video": "vtvqa/05892.mp4", "video_exists": true, "question": "Is the information from Wikipedia?", "answer": "yes", "annotation": "a_binary_26a574ea06", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2a3dfeb7bb", "category": "binary", "fine_category": "ocr", "video": "vtvqa/04790.mp4", "video_exists": true, "question": "Does the Finest Ceylon Tea cost 7.48?", "answer": "no", "annotation": "a_binary_2a3dfeb7bb", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2b6c9728e7", "category": "binary", "fine_category": "ocr", "video": "vtvqa/06004.mp4", "video_exists": true, "question": "Is \"waterbarn\" written on light blue?", "answer": "no", "annotation": "a_binary_2b6c9728e7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_344f52d250", "category": "binary", "fine_category": "ocr", "video": "vtvqa/06388.mp4", "video_exists": true, "question": "Is the Notification Center introduced?", "answer": "yes", "annotation": "a_binary_344f52d250", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3e6b9ed22f", "category": "binary", "fine_category": "ocr", "video": "vtvqa/07798.mp4", "video_exists": true, "question": "Did EDG get 2 kills?", "answer": "yes", "annotation": "a_binary_3e6b9ed22f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_43893849f9", "category": "binary", "fine_category": "ocr", "video": "vtvqa/05891.mp4", "video_exists": true, "question": "Is he offering them honey?", "answer": "no", "annotation": "a_binary_43893849f9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4a473d17db", "category": "binary", "fine_category": "ocr", "video": "vtvqa/01253.mp4", "video_exists": true, "question": "Is the person most likely to buy \"ALASKA WILD THINGS\" at the end of the video?", "answer": "no", "annotation": "a_binary_4a473d17db", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4b3573baa5", "category": "binary", "fine_category": "ocr", "video": "vtvqa/01780.mp4", "video_exists": true, "question": "Is “the bakery store” placed at the bottom of Michael's?", "answer": "no", "annotation": "a_binary_4b3573baa5", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5198f3038b", "category": "binary", "fine_category": "ocr", "video": "vtvqa/00228.mp4", "video_exists": true, "question": "Did <<E4JOKER>> kill YAGIZ?", "answer": "yes", "annotation": "a_binary_5198f3038b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5834c3ca34", "category": "binary", "fine_category": "ocr", "video": "vtvqa/02253.mp4", "video_exists": true, "question": "Is the price of the theragun pro $599?", "answer": "yes", "annotation": "a_binary_5834c3ca34", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_617645ba2f", "category": "binary", "fine_category": "ocr", "video": "vtvqa/00169.mp4", "video_exists": true, "question": "Is the girl mentioning \"Jingwon\"?", "answer": "no", "annotation": "a_binary_617645ba2f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_663e5547db", "category": "binary", "fine_category": "ocr", "video": "vtvqa/07555.mp4", "video_exists": true, "question": "Is his shirt white?", "answer": "yes", "annotation": "a_binary_663e5547db", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_698004f90c", "category": "binary", "fine_category": "ocr", "video": "vtvqa/01149.mp4", "video_exists": true, "question": "Is “Lofoten Islands” written in white font on the map?", "answer": "yes", "annotation": "a_binary_698004f90c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7085357b89", "category": "binary", "fine_category": "ocr", "video": "vtvqa/07798.mp4", "video_exists": true, "question": "Is the HP of BeryL 1270?", "answer": "no", "annotation": "a_binary_7085357b89", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_78a338ce93", "category": "binary", "fine_category": "ocr", "video": "vtvqa/05637.mp4", "video_exists": true, "question": "Is the word on the left of 'nature' 'delight'?", "answer": "yes", "annotation": "a_binary_78a338ce93", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7d85e2b025", "category": "binary", "fine_category": "ocr", "video": "vtvqa/07730.mp4", "video_exists": true, "question": "Is the exit number and letter from the left second sign \"Exit 35A\"?", "answer": "yes", "annotation": "a_binary_7d85e2b025", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7fbbe36403", "category": "binary", "fine_category": "ocr", "video": "vtvqa/00161.mp4", "video_exists": true, "question": "Is ropz the one who killed mezii?", "answer": "yes", "annotation": "a_binary_7fbbe36403", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_87f14a1fd4", "category": "binary", "fine_category": "ocr", "video": "vtvqa/03872.mp4", "video_exists": true, "question": "Is the number of the white truck 23?", "answer": "no", "annotation": "a_binary_87f14a1fd4", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8a72c6bbaa", "category": "binary", "fine_category": "ocr", "video": "vtvqa/05789.mp4", "video_exists": true, "question": "Does the team that loses the round have the abbreviation 'GF'?", "answer": "no", "annotation": "a_binary_8a72c6bbaa", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9419161832", "category": "binary", "fine_category": "ocr", "video": "vtvqa/04761.mp4", "video_exists": true, "question": "Are they waiting for Steven?", "answer": "yes", "annotation": "a_binary_9419161832", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_96d5c26100", "category": "binary", "fine_category": "ocr", "video": "vtvqa/00992.mp4", "video_exists": true, "question": "Is the store below the word 'walk' HAWKERS?", "answer": "yes", "annotation": "a_binary_96d5c26100", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9ec6aeed4b", "category": "binary", "fine_category": "ocr", "video": "vtvqa/01484.mp4", "video_exists": true, "question": "Is the white arrow pointing at the left saying \"ONE WAY\"?", "answer": "yes", "annotation": "a_binary_9ec6aeed4b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a2277772b1", "category": "binary", "fine_category": "ocr", "video": "vtvqa/08181.mp4", "video_exists": true, "question": "Is the cost of the R1S Rivian $70,000?", "answer": "yes", "annotation": "a_binary_a2277772b1", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a4e87e10cf", "category": "binary", "fine_category": "ocr", "video": "vtvqa/07877.mp4", "video_exists": true, "question": "Is “To 82” written on the blue sign?", "answer": "no", "annotation": "a_binary_a4e87e10cf", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a552d97f82", "category": "binary", "fine_category": "ocr", "video": "vtvqa/06024.mp4", "video_exists": true, "question": "Is the word \"NO\" in red font?", "answer": "yes", "annotation": "a_binary_a552d97f82", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a7786ed82d", "category": "binary", "fine_category": "ocr", "video": "vtvqa/05333.mp4", "video_exists": true, "question": "Is the section number shown at last \"8\"?", "answer": "no", "annotation": "a_binary_a7786ed82d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ae01accdfc", "category": "binary", "fine_category": "ocr", "video": "vtvqa/00135.mp4", "video_exists": true, "question": "Is “PRDDR” the first brand of all nine brands?", "answer": "no", "annotation": "a_binary_ae01accdfc", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ae4df32477", "category": "binary", "fine_category": "ocr", "video": "vtvqa/01744.mp4", "video_exists": true, "question": "Is the GM OF COMPLEX Cornell Brown?", "answer": "yes", "annotation": "a_binary_ae4df32477", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b18ece7d2d", "category": "binary", "fine_category": "ocr", "video": "vtvqa/01581.mp4", "video_exists": true, "question": "Is the outdoor temperature 64°?", "answer": "yes", "annotation": "a_binary_b18ece7d2d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b8d2129773", "category": "binary", "fine_category": "ocr", "video": "vtvqa/00797.mp4", "video_exists": true, "question": "Is the highest point labelled in the chart as \"2.0\"?", "answer": "no", "annotation": "a_binary_b8d2129773", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_bd12ae3992", "category": "binary", "fine_category": "ocr", "video": "vtvqa/00284.mp4", "video_exists": true, "question": "Is \"stop\" written on the road?", "answer": "yes", "annotation": "a_binary_bd12ae3992", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_cb2b994d4e", "category": "binary", "fine_category": "ocr", "video": "vtvqa/01253.mp4", "video_exists": true, "question": "Is the original cost of ALASKA WILD WINGS $5.99?", "answer": "no", "annotation": "a_binary_cb2b994d4e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_cdc4449811", "category": "binary", "fine_category": "ocr", "video": "vtvqa/06049.mp4", "video_exists": true, "question": "Is the name of the salon \"D\\'Minelys Beauty Salon\"?", "answer": "yes", "annotation": "a_binary_cdc4449811", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d01c846c12", "category": "binary", "fine_category": "ocr", "video": "vtvqa/03386.mp4", "video_exists": true, "question": "Is “OCEANS HEARTAGE” written beside the earth?", "answer": "no", "annotation": "a_binary_d01c846c12", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d4030deca1", "category": "binary", "fine_category": "ocr", "video": "vtvqa/00360.mp4", "video_exists": true, "question": "Is the score of Cleveland 77?", "answer": "yes", "annotation": "a_binary_d4030deca1", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d459bfdd22", "category": "binary", "fine_category": "ocr", "video": "vtvqa/07527.mp4", "video_exists": true, "question": "Is the word after 'traditional' in the subtitles 'painting'?", "answer": "no", "annotation": "a_binary_d459bfdd22", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d518692851", "category": "binary", "fine_category": "ocr", "video": "vtvqa/02073.mp4", "video_exists": true, "question": "Is \"QUALITY TILE Corp.\" written on the green sign?", "answer": "yes", "annotation": "a_binary_d518692851", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ddbf045010", "category": "binary", "fine_category": "ocr", "video": "vtvqa/01061.mp4", "video_exists": true, "question": "Is the brand of this sofa \"THOMASVILLE\"?", "answer": "yes", "annotation": "a_binary_ddbf045010", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_deff106277", "category": "binary", "fine_category": "ocr", "video": "vtvqa/00992.mp4", "video_exists": true, "question": "Is 'PARTA' the store below the word 'home'?", "answer": "no", "annotation": "a_binary_deff106277", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e8085832f6", "category": "binary", "fine_category": "ocr", "video": "vtvqa/08502.mp4", "video_exists": true, "question": "Is this place at the side of America that is labeled as \"NORDH\"?", "answer": "no", "annotation": "a_binary_e8085832f6", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ebb1db38dd", "category": "binary", "fine_category": "ocr", "video": "vtvqa/02033.mp4", "video_exists": true, "question": "Is the first document dated 02/15/2022?", "answer": "yes", "annotation": "a_binary_ebb1db38dd", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ee609a7a79", "category": "binary", "fine_category": "ocr", "video": "vtvqa/00135.mp4", "video_exists": true, "question": "Is the last brand of all nine brands \"D&Q\"?", "answer": "no", "annotation": "a_binary_ee609a7a79", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f9b6cd7dd0", "category": "binary", "fine_category": "ocr", "video": "vtvqa/03849.mp4", "video_exists": true, "question": "Is the number of the athlete who got the assist 8?", "answer": "no", "annotation": "a_binary_f9b6cd7dd0", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0c50e8e323", "category": "binary", "fine_category": "sequence", "video": "videomme/ntdzrNKRH4g.mp4", "video_exists": true, "question": "Is the correct sequence of different products appearing in the video: Dress pants, Scrunch socks, Earrings?", "answer": "yes", "annotation": "a_binary_0bfa42aaf3", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0f06a78d15", "category": "binary", "fine_category": "sequence", "video": "videomme/GLW9omJfAdk.mp4", "video_exists": true, "question": "Was his life journey borned with a humble background, entered the upper class and then lived in seclusion in a farmhouse according to the video?", "answer": "yes", "annotation": "a_binary_2b37f936ae", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1058bb5a8c", "category": "binary", "fine_category": "sequence", "video": "videomme/CxBbw8eT624.mp4", "video_exists": true, "question": "Is the name of the brain-computer interface company introduced at the end of the video Neurobridge Dynamics?", "answer": "no", "annotation": "a_binary_e35d120eb7", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_14847b92bc", "category": "binary", "fine_category": "sequence", "video": "videomme/MYxL_JLseC8.mp4", "video_exists": true, "question": "Is the sequence of topics introduced in the video: Different types of grills, Outdoor kitchen configurations, Lighting considerations, Cooking options, Venting?", "answer": "no", "annotation": "a_binary_42ea735247", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1d978a265a", "category": "binary", "fine_category": "sequence", "video": "videomme/XkFulQe9EVE.mp4", "video_exists": true, "question": "Does the male protagonist stay the longest time in the afternoon in the lecture hall, canteen, library?", "answer": "no", "annotation": "a_binary_e2af0ef896", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2d2798ddba", "category": "binary", "fine_category": "sequence", "video": "videomme/u4TU2A7eVj8.mp4", "video_exists": true, "question": "Did the female lead barely speak during daytime working hours on Tuesday, when a major client meeting took place?", "answer": "no", "annotation": "a_binary_b754f4deae", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_370f51ae68", "category": "binary", "fine_category": "sequence", "video": "videomme/QopYbLq-zIQ.mp4", "video_exists": true, "question": "Is the order in which the host tastes the sandwiches made by the contestants: Salt Hank, Owen, Albert?", "answer": "no", "annotation": "a_binary_493c807feb", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_42bb5d0340", "category": "binary", "fine_category": "sequence", "video": "videomme/kij9GXWdmik.mp4", "video_exists": true, "question": "Is the second step in the production process to chop into small cubes?", "answer": "no", "annotation": "a_binary_ca789fa211", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_46d38737f1", "category": "binary", "fine_category": "sequence", "video": "videomme/D0ZMmQjKn2Q.mp4", "video_exists": true, "question": "Do the events happen in the order: Mr. Bean and Irma go to the seaside, Mr. Bean attends a hypnotism show, Mr. Bean falls in love with the singer Roxy, and Mr. Bean builds his own metal detector to hunt for treasure?", "answer": "yes", "annotation": "a_binary_3a6c7052fe", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_48bd0d4bf1", "category": "binary", "fine_category": "sequence", "video": "videomme/4od5mdtEp-E.mp4", "video_exists": true, "question": "Does the Ignite suffer a crushing defeat on Day 3 after Jesse's tryout?", "answer": "yes", "annotation": "a_binary_6294307ab0", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5741a073fc", "category": "binary", "fine_category": "sequence", "video": "videomme/7Hk9jct2ozY.mp4", "video_exists": true, "question": "Is the sequence of events presented in the video: The nucleus is introduced, Cell division, Base pairing?", "answer": "yes", "annotation": "a_binary_2fd43c1c29", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_59039e6c7c", "category": "binary", "fine_category": "sequence", "video": "videomme/gfikT_O4v9A.mp4", "video_exists": true, "question": "Is the order in which the topics are introduced in the video: The concept of the personal fat threshold, How to grow fat cells, The relationship between insulin and diet?", "answer": "yes", "annotation": "a_binary_820c54b093", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5c8cc322ec", "category": "binary", "fine_category": "sequence", "video": "videomme/pmF41T52nJs.mp4", "video_exists": true, "question": "Is the order of the types of weathering in the video: Mechanical weathering, chemical weathering, and biological weathering?", "answer": "yes", "annotation": "a_binary_2567c01efa", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5f61e5d465", "category": "binary", "fine_category": "sequence", "video": "videomme/elprD1hnDyU.mp4", "video_exists": true, "question": "Does the video describe the heroine's Tuesday exercise items and their order as Weighted walking lunges, hack squat, dropset, superset, standing calf raises?", "answer": "no", "annotation": "a_binary_1517c307c4", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7301f3793f", "category": "binary", "fine_category": "sequence", "video": "videomme/uC8TK7GH85o.mp4", "video_exists": true, "question": "Is the first minute of the video about Napoleon's culinary preferences?", "answer": "no", "annotation": "a_binary_3079420cfe", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_79096a537a", "category": "binary", "fine_category": "sequence", "video": "videomme/pQIGOTs6XWg.mp4", "video_exists": true, "question": "Did the boy finally return home ready to rest at about 12:20 am at midnight?", "answer": "yes", "annotation": "a_binary_e1da0a5bd8", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7f2803a5e5", "category": "binary", "fine_category": "sequence", "video": "videomme/1evyOuQz-jM.mp4", "video_exists": true, "question": "Is the jewellery piece being introduced when she takes off her coat a brooch?", "answer": "no", "annotation": "a_binary_fb33aa2c3c", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_82b5e4235a", "category": "binary", "fine_category": "sequence", "video": "videomme/UGMDV82m3Ro.mp4", "video_exists": true, "question": "Does the red parrot appear after the musical performance at the end of the video?", "answer": "no", "annotation": "a_binary_34aad34254", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_88c7ae5463", "category": "binary", "fine_category": "sequence", "video": "videomme/pQIGOTs6XWg.mp4", "video_exists": true, "question": "Is the correct order of the boy's daily itinerary: Attend classes, go to private tutoring facilities for counselling, go to study halls to continue studying?", "answer": "yes", "annotation": "a_binary_e1da0a5bd8", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8c5ff40b2a", "category": "binary", "fine_category": "sequence", "video": "videomme/EQ-67udZEeg.mp4", "video_exists": true, "question": "Is the correct order for the three indices presented in the video: Dow Jones, S&P 500, Nasdaq?", "answer": "yes", "annotation": "a_binary_b3ab828b36", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9141694ce2", "category": "binary", "fine_category": "sequence", "video": "videomme/MZdvZBy1bE8.mp4", "video_exists": true, "question": "Is the order of events in the video: The magician pulls a card out of his phone, the magician pulls the silk through the middle of the screen, the icons fall off the screen onto the magician's hand, the phone goes inside the bottle, the magician visually removes the torchlight from his phone?", "answer": "yes", "annotation": "a_binary_bd20f4b9a2", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9e7ff89049", "category": "binary", "fine_category": "sequence", "video": "videomme/QPzmsQ86_HM.mp4", "video_exists": true, "question": "Are the events in the order: Go to the rooftop to eat, Participation in online meeting, Searching with Google?", "answer": "no", "annotation": "a_binary_14e83bab34", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a4c3788d76", "category": "binary", "fine_category": "sequence", "video": "videomme/axGscDVdHWg.mp4", "video_exists": true, "question": "Are the steps to decorate a Christmas tree: Add the nature, Fix the area you want to camouflage, Add Ornaments, Fluff the branches according to your liking, Frost with Icicles to finish, Assemble the tree, and add lights if necessary?", "answer": "no", "annotation": "a_binary_6231073e82", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b4aff0ae33", "category": "binary", "fine_category": "sequence", "video": "videomme/WViSvPFUVd8.mp4", "video_exists": true, "question": "Is the order of the six tips in the video: Eat at home, Meal plan, Buy in bulk, Clip coupons, Freeze leftovers, Cook once, eat twice?", "answer": "no", "annotation": "a_binary_f254b4e63e", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b9125a841f", "category": "binary", "fine_category": "sequence", "video": "videomme/54k2g9ddy4M.mp4", "video_exists": true, "question": "Is the fourth-to-last news item in this video about the launch of a groundbreaking space telescope?", "answer": "no", "annotation": "a_binary_8b960ae053", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b9ec6d9f0d", "category": "binary", "fine_category": "sequence", "video": "videomme/HwnB8aCn8yE.mp4", "video_exists": true, "question": "Is Dryopithecus considered the earliest stage of human evolution according to the video?", "answer": "yes", "annotation": "a_binary_8013a901de", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_bd99135967", "category": "binary", "fine_category": "sequence", "video": "videomme/x-ccfWcbht4.mp4", "video_exists": true, "question": "Is the correct chronological order of appearances: Met Gala, The Greatest Showman, Dune London Screening?", "answer": "yes", "annotation": "a_binary_d1122fcadb", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c75feab732", "category": "binary", "fine_category": "sequence", "video": "videomme/UIX6f0xMQ2U.mp4", "video_exists": true, "question": "Is the order in which the long jump processes appear in the video: Birmingham 2018, Shanghai 2018, Rome 2018, London 2018?", "answer": "no", "annotation": "a_binary_dadec2ebb1", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c83062494b", "category": "binary", "fine_category": "sequence", "video": "videomme/Ei-TcECJVXU.mp4", "video_exists": true, "question": "Is the order in which the following is introduced in the video: How to supply oxygen, The motion of ISS, Fireflies on ISS, The communication between ISS and The Earth?", "answer": "yes", "annotation": "a_binary_52aab293fc", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d7e66931a9", "category": "binary", "fine_category": "sequence", "video": "videomme/FkZn5u3MIiY.mp4", "video_exists": true, "question": "Is a black-and-white photo shown later in the video?", "answer": "yes", "annotation": "a_binary_8904020528", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_debbf1275d", "category": "binary", "fine_category": "sequence", "video": "videomme/K37YKK9h9pA.mp4", "video_exists": true, "question": "Is the correct chronological order of what Bart does on his first day in the video after arriving in Salt Lake City: Gym workout, breakfast, outdoor bison watching together?", "answer": "yes", "annotation": "a_binary_88b058851d", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_df026aa998", "category": "binary", "fine_category": "sequence", "video": "videomme/kq9Q9-U0vrc.mp4", "video_exists": true, "question": "Does a man in military uniform appear during a demonstration of military equipment in the video?", "answer": "no", "annotation": "a_binary_68fe06b50b", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e4c433c981", "category": "binary", "fine_category": "sequence", "video": "videomme/Bkheu99K5lY.mp4", "video_exists": true, "question": "Is the correct order of events: Creating basic background, Drawing the pads of the water lilies, Add a few flowers to the painting, Building up the texture of the painting even more?", "answer": "yes", "annotation": "a_binary_3b253b8570", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e509ebd7a9", "category": "binary", "fine_category": "sequence", "video": "videomme/iPi-QNYgAa4.mp4", "video_exists": true, "question": "Is the order in which the video presents the events: Application of respiratory cells to cardiovascular cure therapy, Nanorobots for haemostasis, The use of nanorobots in cancer treatment?", "answer": "no", "annotation": "a_binary_ae04e21c6f", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f2fdbac7d7", "category": "binary", "fine_category": "sequence", "video": "videomme/rL9JCz7S8Jg.mp4", "video_exists": true, "question": "Is the second goal in the game scored shortly after the first goal?", "answer": "no", "annotation": "a_binary_aef2cadbbd", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f74933ba97", "category": "binary", "fine_category": "sequence", "video": "videomme/HZJXPm0nhgY.mp4", "video_exists": true, "question": "Is the order of tools used in the video: Brush, Iron scrubber, Cotton swabs, Card?", "answer": "yes", "annotation": "a_binary_44953d5cf5", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fb38261b4d", "category": "binary", "fine_category": "sequence", "video": "videomme/lAgwMGRvJrM.mp4", "video_exists": true, "question": "Is the order of introduction in the video: Kilonova, SN-1987A, Type 1a Supernova?", "answer": "no", "annotation": "a_binary_83e07dd371", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fbddd75f21", "category": "binary", "fine_category": "sequence", "video": "videomme/08km9Yqbt-A.mp4", "video_exists": true, "question": "Is the total eclipse supposed to occur on April 8, 2024, in the video?", "answer": "yes", "annotation": "a_binary_715eea760c", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fdcf207a47", "category": "binary", "fine_category": "sequence", "video": "videomme/jdQ-20JEmgc.mp4", "video_exists": true, "question": "Did the team in red dominate throughout the match, seizing the lead after being 2 goals down at the beginning of the video?", "answer": "no", "annotation": "a_binary_265cb7daf6", "link": "video", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_007c153039", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_0k6GFx2ZCg8.mp4", "video_exists": true, "question": "Is a bookshelf behind the person in the video?", "answer": "no", "annotation": "a_binary_007c153039", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_043d4f794f", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_IDuoF51IMJ8.mp4", "video_exists": true, "question": "Is the concession stand behind the basketball hoop?", "answer": "no", "annotation": "a_binary_043d4f794f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_044aa3982b", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_nhQTxZlzG1Q.mp4", "video_exists": true, "question": "Is there a wooden platform under the feet of the person in black clothes?", "answer": "no", "annotation": "a_binary_044aa3982b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0470eaaf07", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_Oyycph_Ukfg.mp4", "video_exists": true, "question": "Is a stool under the sitting person?", "answer": "yes", "annotation": "a_binary_0470eaaf07", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_077be0ddcc", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_87F9xGaMwCw.mp4", "video_exists": true, "question": "Is there a wall on the right of the person in black clothes?", "answer": "yes", "annotation": "a_binary_077be0ddcc", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_08dfa79ca3", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_FmfAB-ppHBs.mp4", "video_exists": true, "question": "Is a window at the rear of the smoke?", "answer": "no", "annotation": "a_binary_08dfa79ca3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_08fe28226a", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_X_K7Aa3Aa-E.mp4", "video_exists": true, "question": "Is there a fire pile in front of the person in white clothes?", "answer": "yes", "annotation": "a_binary_08fe28226a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0b49386e6a", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_OFTkwnSh-sQ.mp4", "video_exists": true, "question": "Is a garden in front of the person wearing yellow clothes?", "answer": "no", "annotation": "a_binary_0b49386e6a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0cc9580cae", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_3oy4P1gyU4k.mp4", "video_exists": true, "question": "Is a couch in front of the second person appearing in the video?", "answer": "no", "annotation": "a_binary_0cc9580cae", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0cdb45e5ab", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_vzUeFzhVYLg.mp4", "video_exists": true, "question": "Is a helicopter above the pool?", "answer": "no", "annotation": "a_binary_0cdb45e5ab", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0d8669044f", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_fQ1OuD7x3to.mp4", "video_exists": true, "question": "Is a hat on the black man's shoulder?", "answer": "no", "annotation": "a_binary_0d8669044f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0f2ff2dca9", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_HJWwqjLf1I4.mp4", "video_exists": true, "question": "Is seaweed under the person wearing yellow?", "answer": "yes", "annotation": "a_binary_0f2ff2dca9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_0f7d78401b", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_-pkfcMUIEMo.mp4", "video_exists": true, "question": "Is a bicycle behind the person?", "answer": "no", "annotation": "a_binary_0f7d78401b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_12c5a8ec9a", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_gNUCdXGxp0w.mp4", "video_exists": true, "question": "Is there a horse underneath the person wearing a green vest?", "answer": "yes", "annotation": "a_binary_12c5a8ec9a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_163d398db0", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_V9mLJJn8Lvw.mp4", "video_exists": true, "question": "Is a laptop below the book at the beginning of the video?", "answer": "no", "annotation": "a_binary_163d398db0", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1843bc2c34", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_e0yLhjXQIXI.mp4", "video_exists": true, "question": "Is a river under the purple trousers girl's feet?", "answer": "no", "annotation": "a_binary_1843bc2c34", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1b4da5364d", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_fEBM3nPMen8.mp4", "video_exists": true, "question": "Is there a fish behind the person in the video?", "answer": "yes", "annotation": "a_binary_1b4da5364d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1bd235b379", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_n832gDqfWl4.mp4", "video_exists": true, "question": "Is there a lake behind the person in the video?", "answer": "no", "annotation": "a_binary_1bd235b379", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1cb8cc9f27", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_4LF0hL-mgks.mp4", "video_exists": true, "question": "Is there a garden in front of the person who appeared at the beginning of the video?", "answer": "no", "annotation": "a_binary_1cb8cc9f27", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1e663eb834", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_elD1P_1oiUk.mp4", "video_exists": true, "question": "Is a house on the left side of the river?", "answer": "no", "annotation": "a_binary_1e663eb834", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_1f8a13f0e2", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_atGMJc-DZ7w.mp4", "video_exists": true, "question": "Is the basin on the left side of the little girl who is kneeling?", "answer": "yes", "annotation": "a_binary_1f8a13f0e2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_20d9efa3f4", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_JcAAwYpJhm8.mp4", "video_exists": true, "question": "Is there a pool in front of the child?", "answer": "yes", "annotation": "a_binary_20d9efa3f4", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_21c6a59b88", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_vFO70WwrQgE.mp4", "video_exists": true, "question": "Is the foot of the person wearing the red pants at the beginning of the video in the parking lot?", "answer": "yes", "annotation": "a_binary_21c6a59b88", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2279540912", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_auO4r3De6vc.mp4", "video_exists": true, "question": "Is a vending machine behind the judges' seats?", "answer": "no", "annotation": "a_binary_2279540912", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2bd42ed217", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_v6DdLg_Xnkg.mp4", "video_exists": true, "question": "Is a wooden cabinet behind the curly woman?", "answer": "no", "annotation": "a_binary_2bd42ed217", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2cb4bd5fb3", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_FADShG5lyB8.mp4", "video_exists": true, "question": "Is there fitness equipment under the foot of the man?", "answer": "yes", "annotation": "a_binary_2cb4bd5fb3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_2f3f2fdb72", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_a2IvS0xbNGQ.mp4", "video_exists": true, "question": "Is a sandy beach under the person in orange clothes?", "answer": "no", "annotation": "a_binary_2f3f2fdb72", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_317c349420", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_4UdxT6Zmero.mp4", "video_exists": true, "question": "Is there grassland in front of the house?", "answer": "yes", "annotation": "a_binary_317c349420", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_31e07d0232", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_qiupddjDHDg.mp4", "video_exists": true, "question": "Is the roof under the person in a blue coat?", "answer": "yes", "annotation": "a_binary_31e07d0232", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_34f81b5418", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_S6Sg1l78IW0.mp4", "video_exists": true, "question": "Is a lamp behind the woman standing?", "answer": "no", "annotation": "a_binary_34f81b5418", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_35aff89c95", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_Nb6AQxxrihA.mp4", "video_exists": true, "question": "Is there a table in front of the person in the video?", "answer": "yes", "annotation": "a_binary_35aff89c95", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_36941fb8f3", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_i6wR9_tkg6A.mp4", "video_exists": true, "question": "Is a bookshelf behind the people in green clothes?", "answer": "no", "annotation": "a_binary_36941fb8f3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_380e41ef38", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_Zt9qvbUnNhc.mp4", "video_exists": true, "question": "Is there a pond on the right side of the person wearing red shorts?", "answer": "yes", "annotation": "a_binary_380e41ef38", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_39a7833d77", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_X6CBZwwRdQQ.mp4", "video_exists": true, "question": "Is there a chair on the right of the person in black clothes?", "answer": "yes", "annotation": "a_binary_39a7833d77", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_3d3db15e9f", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_IMMoglaJ3RY.mp4", "video_exists": true, "question": "Is there an enclosure behind a short hair man?", "answer": "yes", "annotation": "a_binary_3d3db15e9f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_462a974f19", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_w4pO-1-FG5w.mp4", "video_exists": true, "question": "Is a bookshelf behind the boy?", "answer": "no", "annotation": "a_binary_462a974f19", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_48a255b13f", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_7dXqXFoju2M.mp4", "video_exists": true, "question": "Is there a mirror in front of a long-haired woman?", "answer": "yes", "annotation": "a_binary_48a255b13f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4a70fe7b34", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_BhgcXqWQhkQ.mp4", "video_exists": true, "question": "Is there a curtain and a large potted plant behind the people on the stage?", "answer": "no", "annotation": "a_binary_4a70fe7b34", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_4ada2d56a8", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_cnMvMvVBXiI.mp4", "video_exists": true, "question": "Is there a door behind the car in the video?", "answer": "yes", "annotation": "a_binary_4ada2d56a8", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_54ae6138d0", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_otMw5GJWYWs.mp4", "video_exists": true, "question": "Is a coffee table in front of the person in black clothes?", "answer": "no", "annotation": "a_binary_54ae6138d0", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_585e35e307", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_j81ndpMC9gI.mp4", "video_exists": true, "question": "Is there a garden behind the woman in the video?", "answer": "no", "annotation": "a_binary_585e35e307", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5a89c718a9", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_H2fG7JRRMAs.mp4", "video_exists": true, "question": "Is there a small plant in front of the person in black?", "answer": "no", "annotation": "a_binary_5a89c718a9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_5d94dcd80a", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_OYEKKzQjaJI.mp4", "video_exists": true, "question": "Is a garden behind the person in the video?", "answer": "no", "annotation": "a_binary_5d94dcd80a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_610c4cd01d", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_Q5HdVXF390c.mp4", "video_exists": true, "question": "Is there beer in front of the person in a plaid shirt?", "answer": "yes", "annotation": "a_binary_610c4cd01d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_62d29f4844", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_wcxEkMoOmBk.mp4", "video_exists": true, "question": "Is a lamp behind the woman in the blue dress?", "answer": "no", "annotation": "a_binary_62d29f4844", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_633afe6a82", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_CfqnHsp6olc.mp4", "video_exists": true, "question": "Is the audiences stand above the football field?", "answer": "yes", "annotation": "a_binary_633afe6a82", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_64c4e91d01", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_5k2Ot6-wOgc.mp4", "video_exists": true, "question": "Is there a bowling pin in front of the person in black?", "answer": "yes", "annotation": "a_binary_64c4e91d01", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6773a7cc13", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_GgnM5RGNtDE.mp4", "video_exists": true, "question": "Is there a rope under the foot of the man in blue short sleeves?", "answer": "yes", "annotation": "a_binary_6773a7cc13", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_691831deba", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_SidTquTAtyk.mp4", "video_exists": true, "question": "Is a sandy beach under the person in black clothes?", "answer": "no", "annotation": "a_binary_691831deba", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_6dcea74006", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_pVoM_kUQ4_E.mp4", "video_exists": true, "question": "Is there a table under the pumpkin?", "answer": "yes", "annotation": "a_binary_6dcea74006", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_71bb7592d8", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_8IrulONeC28.mp4", "video_exists": true, "question": "Is there a woman in red clothes on the left side of the yellow man at the beginning of the video?", "answer": "yes", "annotation": "a_binary_71bb7592d8", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_72c6072c7e", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_LsVCwr6qPmY.mp4", "video_exists": true, "question": "Is an iron on the right side of the person in blue?", "answer": "yes", "annotation": "a_binary_72c6072c7e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_74ae973af7", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_Mk7Yjq1U8OI.mp4", "video_exists": true, "question": "Is a flower bed on the right side of the person with blue pants in the first picture?", "answer": "no", "annotation": "a_binary_74ae973af7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7a4331d936", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_zA2zZPyYLlU.mp4", "video_exists": true, "question": "Is there water in front of the boat in the video?", "answer": "yes", "annotation": "a_binary_7a4331d936", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7ba6c9d965", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_BkDbDnvoL28.mp4", "video_exists": true, "question": "Is a garden bench in front of the audience?", "answer": "no", "annotation": "a_binary_7ba6c9d965", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_7f0ae0b592", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_kBTqTp0SKq8.mp4", "video_exists": true, "question": "Is there a wall behind the person in blue?", "answer": "yes", "annotation": "a_binary_7f0ae0b592", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_81a7999083", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v__G4EVIG9YaE.mp4", "video_exists": true, "question": "Is there a tree in front of the girl in the video?", "answer": "yes", "annotation": "a_binary_81a7999083", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_851c6178ab", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_8teo_0gxzgk.mp4", "video_exists": true, "question": "Is a bicycle on the left side of the white man?", "answer": "no", "annotation": "a_binary_851c6178ab", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_85e21872ac", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_1QIUV7WYKXg.mp4", "video_exists": true, "question": "Is a lake on the left of the athlete?", "answer": "no", "annotation": "a_binary_85e21872ac", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8ced3bbd2c", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_AQ3eFWxZ67U.mp4", "video_exists": true, "question": "Is there a bookcase behind the person sitting in the office in the video?", "answer": "yes", "annotation": "a_binary_8ced3bbd2c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_8f7a0695d8", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_cCimLg-8Dy4.mp4", "video_exists": true, "question": "Is a bookshelf behind the chair?", "answer": "no", "annotation": "a_binary_8f7a0695d8", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_90d9310ab6", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_T3mcQnlsmq4.mp4", "video_exists": true, "question": "Is there a lamp in front of the person in the video?", "answer": "no", "annotation": "a_binary_90d9310ab6", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_91a02aba4d", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_teffBaLEZQg.mp4", "video_exists": true, "question": "Is there a cabinet behind the person in a blue hat?", "answer": "yes", "annotation": "a_binary_91a02aba4d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_92a78ced80", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_eVkp83uGf3Y.mp4", "video_exists": true, "question": "Is there a safety net behind the man in a red vest?", "answer": "yes", "annotation": "a_binary_92a78ced80", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_934b9d5149", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_ZnKB0U96ZI4.mp4", "video_exists": true, "question": "Is the person wearing red shorts playing tennis?", "answer": "yes", "annotation": "a_binary_934b9d5149", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_94a783ee3f", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_SjlILJ2st-I.mp4", "video_exists": true, "question": "Is a snack stand on the right of the player?", "answer": "no", "annotation": "a_binary_94a783ee3f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9580e960ff", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_2UhbDOd43zU.mp4", "video_exists": true, "question": "Is there a table and chair on the right of the person in white clothes?", "answer": "yes", "annotation": "a_binary_9580e960ff", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_98bc8ff2b0", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_IToczVhbOc0.mp4", "video_exists": true, "question": "Is there pads under the bald woman's left hand?", "answer": "yes", "annotation": "a_binary_98bc8ff2b0", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9ac3f0bef7", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_Db9VWkgMpbE.mp4", "video_exists": true, "question": "Is a bookcase filled with books in front of the woman in the video?", "answer": "no", "annotation": "a_binary_9ac3f0bef7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9ca5ca76f1", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_QdmcjM2fluo.mp4", "video_exists": true, "question": "Is there a tree in front of the person in a black coat?", "answer": "yes", "annotation": "a_binary_9ca5ca76f1", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9d5e35338c", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_16bJAOf1SJI.mp4", "video_exists": true, "question": "Is a bookshelf in front of the person wearing the blue and white plaid?", "answer": "no", "annotation": "a_binary_9d5e35338c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_9e26518aa1", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_qlK-c7hRqcA.mp4", "video_exists": true, "question": "Is a park on the right side of the blue car?", "answer": "no", "annotation": "a_binary_9e26518aa1", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a13d360293", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_Feq-2NIDl94.mp4", "video_exists": true, "question": "Is a lamp in front of the woman?", "answer": "no", "annotation": "a_binary_a13d360293", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a4198c9220", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_ZsVfa3JIUNU.mp4", "video_exists": true, "question": "Is the front of the person wearing black glasses a microphone?", "answer": "yes", "annotation": "a_binary_a4198c9220", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a4c230f965", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_hG4VsZQQ2_c.mp4", "video_exists": true, "question": "Is a brick wall behind the people of Zhangmutou?", "answer": "no", "annotation": "a_binary_a4c230f965", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a5ca669bf5", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_V-46E7jMm-Y.mp4", "video_exists": true, "question": "Is a wooden deck under the foot of the old man wearing a black sweater?", "answer": "no", "annotation": "a_binary_a5ca669bf5", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_a61f07f434", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_BWAedc31WdY.mp4", "video_exists": true, "question": "Is a flower vase next to the sink?", "answer": "no", "annotation": "a_binary_a61f07f434", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ab77693684", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_GcjzvBatqb4.mp4", "video_exists": true, "question": "Is there a tree in front of the person wearing orange clothes?", "answer": "no", "annotation": "a_binary_ab77693684", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_abc87c1d43", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_pKOy4HJwCqo.mp4", "video_exists": true, "question": "Is a rock under the feet of the person in white clothes?", "answer": "no", "annotation": "a_binary_abc87c1d43", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ac0b9b507a", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_KsFid_YVsn0.mp4", "video_exists": true, "question": "Is there a tree in front of the video at the beginning with the woman?", "answer": "yes", "annotation": "a_binary_ac0b9b507a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ad2d1c36ff", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_Co_cpZWbzFk.mp4", "video_exists": true, "question": "Is there a house behind the audience?", "answer": "yes", "annotation": "a_binary_ad2d1c36ff", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b01514d046", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_GjcRJzPjbRI.mp4", "video_exists": true, "question": "Is the front of the person wearing a yellow vest facing a scoreboard?", "answer": "yes", "annotation": "a_binary_b01514d046", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b2da26b3c7", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_09ocXmGF-T4.mp4", "video_exists": true, "question": "Is there a carrot in front of the boy?", "answer": "yes", "annotation": "a_binary_b2da26b3c7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b6df2cc581", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_sRNqK_QZbMs.mp4", "video_exists": true, "question": "Is an equipment bag on the left side of the athlete with a black helmet?", "answer": "no", "annotation": "a_binary_b6df2cc581", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b8791bbff7", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_-YwrMtiqHKg.mp4", "video_exists": true, "question": "Is there a ceiling on top of the person in the video?", "answer": "yes", "annotation": "a_binary_b8791bbff7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_b9eed2d10a", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_gWTndmDHZQc.mp4", "video_exists": true, "question": "Is a television in front of the person in a black shirt?", "answer": "no", "annotation": "a_binary_b9eed2d10a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_bb7a68e00b", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_m731tx8N5-Y.mp4", "video_exists": true, "question": "Is there a microphone on the right side of the bald person?", "answer": "yes", "annotation": "a_binary_bb7a68e00b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c36734b9a6", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_FEOdYNR4gls.mp4", "video_exists": true, "question": "Is there a wall on the woman's right side?", "answer": "yes", "annotation": "a_binary_c36734b9a6", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c36aa7a2d5", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_WPYQ27GjFKc.mp4", "video_exists": true, "question": "Is a lamp on the left side on the table?", "answer": "no", "annotation": "a_binary_c36aa7a2d5", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c3e8b1b6b3", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_dU7jG8G5li0.mp4", "video_exists": true, "question": "Is a plate under the cake?", "answer": "no", "annotation": "a_binary_c3e8b1b6b3", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c4d196ef3f", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_Ki13JIVwMdk.mp4", "video_exists": true, "question": "Is there a carpet behind the black and white hair dog?", "answer": "yes", "annotation": "a_binary_c4d196ef3f", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_c8503e849e", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_JGPhQX97OSE.mp4", "video_exists": true, "question": "Is an ocean in front of the audience?", "answer": "no", "annotation": "a_binary_c8503e849e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_cbcb5c9b2e", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_an1R4BP97JY.mp4", "video_exists": true, "question": "Is a watering can in front of the fertilizer in the video?", "answer": "no", "annotation": "a_binary_cbcb5c9b2e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_cbeb98d376", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_1dDAcUliXrQ.mp4", "video_exists": true, "question": "Is a feathered pat in the hands of those in pink?", "answer": "yes", "annotation": "a_binary_cbeb98d376", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_cf0df1e031", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_b6QSzGwI9m4.mp4", "video_exists": true, "question": "Is a protective pad underneath the elbow?", "answer": "yes", "annotation": "a_binary_cf0df1e031", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d159883999", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_uWfQcDvel84.mp4", "video_exists": true, "question": "Is there a wooden deck under the feet of the man with a hat?", "answer": "no", "annotation": "a_binary_d159883999", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d3e82c8a3d", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_DUi-hLMpQQo.mp4", "video_exists": true, "question": "Is there a horse under the girl in the jeans?", "answer": "yes", "annotation": "a_binary_d3e82c8a3d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d4f6ba79f2", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_eQ0sW4hJ9zU.mp4", "video_exists": true, "question": "Are there two houses to the left of the street behind the black people?", "answer": "no", "annotation": "a_binary_d4f6ba79f2", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d783371222", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_qZMcbBsQorE.mp4", "video_exists": true, "question": "Is a disk in front of the person in a gray vest?", "answer": "yes", "annotation": "a_binary_d783371222", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d90a22e491", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_MDsJa6Yitwc.mp4", "video_exists": true, "question": "Is the wall on the right side of the person wearing gray clothes facing the camera?", "answer": "yes", "annotation": "a_binary_d90a22e491", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_d9e2853ff6", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_stdtUoog49I.mp4", "video_exists": true, "question": "Is a line of trees on the right side of the parade?", "answer": "no", "annotation": "a_binary_d9e2853ff6", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_de20c0c2a4", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_0e7d39SwHCA.mp4", "video_exists": true, "question": "Is a windmill on the right side of the person wearing purple clothes?", "answer": "no", "annotation": "a_binary_de20c0c2a4", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_de43d52f9c", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_HPKHDze6XfA.mp4", "video_exists": true, "question": "Is a garden on the right side of the car that is opened?", "answer": "no", "annotation": "a_binary_de43d52f9c", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e6540b06d9", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_sqv3M6MPKjQ.mp4", "video_exists": true, "question": "Is a wardrobe behind the child?", "answer": "no", "annotation": "a_binary_e6540b06d9", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e714c8eb84", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_SYh-j9bK_ls.mp4", "video_exists": true, "question": "Is the audience behind the cheerleaders?", "answer": "yes", "annotation": "a_binary_e714c8eb84", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e726ffd541", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_mnNgZ-D5cKc.mp4", "video_exists": true, "question": "Is a statue in front of the person in white clothes?", "answer": "no", "annotation": "a_binary_e726ffd541", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_e99a119a85", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_-p7aui3nAnc.mp4", "video_exists": true, "question": "Is a musical band in front of the child holding a plastic bag?", "answer": "no", "annotation": "a_binary_e99a119a85", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ea81dbc375", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_ZAX6OojMg38.mp4", "video_exists": true, "question": "Is a bicycle in front of the person in red clothes?", "answer": "no", "annotation": "a_binary_ea81dbc375", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ebfa1b6b4a", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_YMOYyt3kSOs.mp4", "video_exists": true, "question": "Is there a network in front of the person in white clothes?", "answer": "yes", "annotation": "a_binary_ebfa1b6b4a", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_ee53e9e86b", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_I16FTpQQiic.mp4", "video_exists": true, "question": "Is there a tree behind the person in red?", "answer": "yes", "annotation": "a_binary_ee53e9e86b", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f0a1c51e1e", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_eMgC7I-GcgA.mp4", "video_exists": true, "question": "Is a sand dune in front of the surfers?", "answer": "no", "annotation": "a_binary_f0a1c51e1e", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f0f05986d4", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_e0yu4WgiZUM.mp4", "video_exists": true, "question": "Is a lamp post on the right side of the man?", "answer": "no", "annotation": "a_binary_f0f05986d4", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f2bed51365", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_tzP0lKSUv_o.mp4", "video_exists": true, "question": "Is a bench on the right of the athlete?", "answer": "no", "annotation": "a_binary_f2bed51365", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f32fac37c8", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_Vhn4SuPhu-0.mp4", "video_exists": true, "question": "Is there a bed under the white man's body?", "answer": "yes", "annotation": "a_binary_f32fac37c8", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f415b35c5d", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_UzmsAb15Bso.mp4", "video_exists": true, "question": "Is there a skate under the foot of the person wearing a sweater?", "answer": "yes", "annotation": "a_binary_f415b35c5d", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f6d6f9b028", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_j6BCgvUusWs.mp4", "video_exists": true, "question": "Is a stack of chips in front of the dealer?", "answer": "no", "annotation": "a_binary_f6d6f9b028", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f80db82986", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_DHjoAOus3xM.mp4", "video_exists": true, "question": "Is sand under the ship?", "answer": "no", "annotation": "a_binary_f80db82986", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f9158794f7", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_nDM4E9CD_y0.mp4", "video_exists": true, "question": "Is there a house on the left of the person in the video?", "answer": "yes", "annotation": "a_binary_f9158794f7", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_f91ecfed35", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_2bQx5igckJc.mp4", "video_exists": true, "question": "Is it true that behind the head of the blond hair are both hands?", "answer": "yes", "annotation": "a_binary_f91ecfed35", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
{"qid": "q_binary_fe534da2ed", "category": "binary", "fine_category": "static_relation", "video": "activitynetqa/v_v0azz4XzW_s.mp4", "video_exists": true, "question": "Is there a stone in front of the person in the video?", "answer": "yes", "annotation": "a_binary_fe534da2ed", "link": "exact", "dup_count": 1, "flags": [], "status": "ok"}
|