File size: 83,301 Bytes
a99274a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 | [
{
"Questions": "Does the lexical unit \"React, Reaction, Response, Meet and Respond\", labeled as a \"verb\", belong to the Rewards and punishments frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Enforce and Enforcement\", labeled as a \"noun\", belong to the Rewards and punishments frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"reward, punish, discipline and recompense\", labeled as a \"verb\", belong to the Rewards and punishments frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"punishment [penalty], punishment [act], reward and penalty\", labeled as a \"noun\", belong to the Rewards and punishments frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Collar, Nab, Apprehend, Bust and Arrest\", labeled as a \"adjective\", belong to the Rewards and punishments frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"punitive and disciplinary\", labeled as a \"adjective\", belong to the Rewards and punishments frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"gather, throng, band together, come together and gang together\", labeled as a \"verb\", belong to the Come together frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Beckon, Motion, Gesture, Nod and Gesticulate\", labeled as a \"verb\", belong to the Come together frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Apprehend, Nab, Arrest, Collar and Bust\", labeled as a \"verb\", belong to the Come together frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Enforce and Enforcement\", labeled as a \"verb\", belong to the Come together frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"convene\", labeled as a \"verb\", belong to the Come together frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"congregate, assemble, amass, meet and band\", labeled as a \"verb\", belong to the Come together frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"try\", labeled as a \"verb\", belong to the Attempt means frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Kill, Eliminate, Behead, Annihilate and Assassinate\", labeled as a \"verb\", belong to the Attempt means frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"acknowledge, come back and retort\", labeled as a \"verb\", belong to the Communication response frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Lodge, Stay, Guest, Stay and Room\", labeled as a \"noun\", belong to the Communication response frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"riposte, reaction and retort\", labeled as a \"noun\", belong to the Communication response frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"respond, reply, rejoin, counter and answer\", labeled as a \"verb\", belong to the Communication response frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Carry, Cart, Lug, Wheel and Haul\", labeled as a \"verb\", belong to the Communication response frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Carjacking, Hijacking, Hijack, Hijacker and Hijacked\", labeled as a \"noun\", belong to the Communication response frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"reply, comeback, rejoinder, answer and response\", labeled as a \"noun\", belong to the Communication response frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Room, Stay, Lodge, Guest and Stay\", labeled as a \"verb\", belong to the Communication response frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Smuggling, Contraband, Smuggle, Smuggler and Contraband\", labeled as a \"verb\", belong to the Replacing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"switch\", labeled as a \"verb\", belong to the Replacing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"replacement and substitution\", labeled as a \"noun\", belong to the Replacing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"substitute, swap out, replace, exchange and change\", labeled as a \"verb\", belong to the Replacing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Lodge, Reside, Stay, Resident and Dwell\", labeled as a \"verb\", belong to the Replacing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Answer, Rejoin, Answer, Comeback and Counter\", labeled as a \"noun\", belong to the Replacing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"gift, hand over, fob off, hand out and give out\", labeled as a \"verb\", belong to the Giving frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"donate, pass, endow, give and foist\", labeled as a \"verb\", belong to the Giving frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Cart, Carry, Wheel, Haul and Lug\", labeled as a \"verb\", belong to the Giving frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Rejoin, Counter, Comeback, Answer and Answer\", labeled as a \"verb\", belong to the Giving frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"bequeath, hand in, pass out, treat and hand\", labeled as a \"verb\", belong to the Giving frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"advance, leave, volunteer, will and contribute\", labeled as a \"verb\", belong to the Giving frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"contribution, charity, donation, donor and gift\", labeled as a \"noun\", belong to the Giving frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Kill, Assassinate, Eliminate, Behead and Annihilate\", labeled as a \"verb\", belong to the Giving frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Amble, Back, Bop, Barge and Bound\", labeled as a \"noun\", belong to the Giving frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Band together, Come together, Gather, Gang together and Throng\", labeled as a \"verb\", belong to the Giving frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"confer (upon)\", labeled as a \"verb\", belong to the Giving frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Fund, Finance, Support, Bankroll and Back\", labeled as a \"noun\", belong to the Giving frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"bequest\", labeled as a \"noun\", belong to the Giving frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Beckon, Gesture, Gesticulate, Motion and Nod\", labeled as a \"verb\", belong to the Giving frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Haul, Carry, Cart, Wheel and Lug\", labeled as a \"verb\", belong to the Execute plan frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Transpire, Occur, Happen, Development and Take place\", labeled as a \"noun\", belong to the Execute plan frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"implementation, force [into force] and effect [into effect]\", labeled as a \"noun\", belong to the Execute plan frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"implement and institute\", labeled as a \"verb\", belong to the Execute plan frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Collar, Arrest, Bust, Nab and Apprehend\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"shoulder, edge, swing, rove and nance\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"traipse, totter, swim, tiptoe and toddle\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Beckon, Gesticulate, Motion, Nod and Gesture\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"hiker\", labeled as a \"noun\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"gallivant, hike, hasten, hitchhike and gambol\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"lope, lunge, lumber, leap and limp\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Filch, Steal, Snitch, Pilfer and Purloin\", labeled as a \"noun\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"trek, tramp, tread, troop and trip\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Summarize, Outline, Boil down, Sum up and Synopsis\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"storm, drive, make a beeline, venture and walk\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"crawl, walk, ramble, way and swim\", labeled as a \"noun\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"goose-step, skim, proceed, sidle and slop\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"lurch, meander, mince, march and mosey\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"fly, stalk, make, head and repair\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Grab, Seize, Seizure, Commandeer and Take\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Finance, Fund, Back, Bankroll and Support\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Impact, Influence, Influence, Effect and Affect\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"trot, vault, waddle, trundle and trudge\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Back, Bop, Amble, Bound and Barge\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Lodge, Resident, Stay, Reside and Dwell\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"jog, hurry, hobble, jump and hop\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"whisk, slip, press and shrink\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"waltz, wade, slosh, wriggle and wander\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Assassinate, Eliminate, Annihilate, Behead and Kill\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Take, Seize, Seizure, Grab and Commandeer\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"romp, prowl, promenade, roam and prance\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"enroute\", labeled as a \"adjective\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"amble, back, barge, bop and bound\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"scurry, shuffle, scoot, scuttle and scramble\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Rape, Sexually assault, Raped, Rape and Rapist\", labeled as a \"noun\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"clamber, bustle, canter, burrow and caper\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Try and Give try\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Lodge, Stay, Guest, Stay and Room\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Bust, Arrest, Nab, Collar and Apprehend\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Affect, Impact, Influence, Effect and Influence\", labeled as a \"noun\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Bound, Bop, Barge, Amble and Back\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Collar, Nab, Arrest, Apprehend and Bust\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"plod, parade, pad, pace and pounce\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"slouch, rip, take to the air, advance and file\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Contact, Write in, Contact, Reach and Write\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"flit, frolic, flounce, dash and dart\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"en route\", labeled as a \"adverb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Bankroll, Support, Fund, Finance and Back\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Lodge, Stay, Stay, Room and Guest\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"dance, creep, crawl, clomp and climb\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Annihilate, Assassinate, Eliminate, Behead and Kill\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Do, Do something (to/with) and Do what (to/with)\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"sail, cruise, taxi, coast and tack\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Do, Do what (to/with) and Do something (to/with)\", labeled as a \"noun\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Resident, Stay, Reside, Dwell and Lodge\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"straggle, stomp, stagger, steal and step\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Rape, Sexually assault, Raped, Rapist and Rape\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Speech, Communication [act], Indicate, Communicate and Signal\", labeled as a \"adverb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"slink, sleepwalk, skulk, slalom and skip\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Back, Support, Finance, Bankroll and Fund\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Bop, Amble, Back, Bound and Barge\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Raped, Rape, Rapist, Rape and Sexually assault\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"run, saunter, sashay, rush and scamper\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Influence, Effect, Impact, Affect and Influence\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"stroll, step, shuffle, sprint and slog\", labeled as a \"noun\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"dash, march, scramble, hike and jaunt\", labeled as a \"noun\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"stride, stroll, swagger, strut and stumble\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Snitch, Filch, Purloin, Steal and Pilfer\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Give try and Try\", labeled as a \"adjective\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"sneak, spring, sprint, slither and slog\", labeled as a \"verb\", belong to the Self motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"effect, influence, power and impact\", labeled as a \"noun\", belong to the Objective influence frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Apprehend, Collar, Bust, Arrest and Nab\", labeled as a \"verb\", belong to the Objective influence frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"affect, impact and influence\", labeled as a \"verb\", belong to the Objective influence frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Dwell, Resident, Reside, Lodge and Stay\", labeled as a \"noun\", belong to the Objective influence frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Carry, Wheel, Lug, Cart and Haul\", labeled as a \"noun\", belong to the Communication frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"communication [act], communication [entity], codeword, speech and contact\", labeled as a \"noun\", belong to the Communication frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"share\", labeled as a \"verb\", belong to the Communication frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Replacement, Replace, Substitute, Swap out and Substitution\", labeled as a \"verb\", belong to the Communication frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Convene, Assemble and Meet\", labeled as a \"verb\", belong to the Communication frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"say, communicate, signal, indicate and convey\", labeled as a \"verb\", belong to the Communication frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"password\", labeled as a \"noun\", belong to the Communication frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Test, Assessment, Examine, Test and Examination\", labeled as a \"noun\", belong to the Communication frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Test, Test, Examine, Examination and Assessment\", labeled as a \"noun\", belong to the Attack frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Back, Fund, Finance, Support and Bankroll\", labeled as a \"verb\", belong to the Attack frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Gather, Band together, Come together, Gang together and Throng\", labeled as a \"adjective\", belong to the Attack frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"bombard\", labeled as a \"verb\", belong to the Attack frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"safire, SAF, airstrike, assailant and drive-by\", labeled as a \"noun\", belong to the Attack frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"infiltration, raid, small arms fire, fire and attacker\", labeled as a \"noun\", belong to the Attack frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Take, Seizure, Commandeer, Seize and Grab\", labeled as a \"noun\", belong to the Attack frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"raid, infiltrate, bomb, assail and hit\", labeled as a \"verb\", belong to the Attack frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"onset, incursion, assault, attack and offensive\", labeled as a \"noun\", belong to the Attack frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Hijacking, Hijacked, Hijack, Carjacking and Hijacker\", labeled as a \"noun\", belong to the Attack frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"attack, assault, fall (upon), lay (into) and charge\", labeled as a \"verb\", belong to the Attack frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"set (upon), storm, jump, strike and ambush\", labeled as a \"verb\", belong to the Attack frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Gather, Band together, Gang together, Throng and Come together\", labeled as a \"verb\", belong to the Attack frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"strike, bombing, charge, onslaught and ambush\", labeled as a \"noun\", belong to the Attack frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"offensive\", labeled as a \"adjective\", belong to the Attack frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Guest, Lodge, Stay, Room and Stay\", labeled as a \"noun\", belong to the Attack frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"bombardment\", labeled as a \"noun\", belong to the Attack frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Bankroll, Fund, Support, Back and Finance\", labeled as a \"noun\", belong to the Attack frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Donation, Foist, Donate, Give and Donor\", labeled as a \"verb\", belong to the Attack frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Give, Donate, Donation, Donor and Foist\", labeled as a \"verb\", belong to the Attack frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Give try and Try\", labeled as a \"noun\", belong to the Arriving frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Influence, Effect, Impact, Influence and Affect\", labeled as a \"noun\", belong to the Arriving frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"visit, arrival, return, entrance and approach\", labeled as a \"noun\", belong to the Arriving frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Eliminate, Kill, Annihilate, Behead and Assassinate\", labeled as a \"verb\", belong to the Arriving frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"make it, reach, make, get and visit\", labeled as a \"verb\", belong to the Arriving frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"crest, appear, hit, descend (on) and find\", labeled as a \"verb\", belong to the Arriving frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"entry and influx\", labeled as a \"noun\", belong to the Arriving frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Bust, Nab, Apprehend, Arrest and Collar\", labeled as a \"verb\", belong to the Arriving frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"approach, arrive, return, enter and come\", labeled as a \"verb\", belong to the Arriving frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Steal, Snitch, Purloin, Pilfer and Filch\", labeled as a \"verb\", belong to the Arriving frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Sexually assault, Raped, Rape, Rapist and Rape\", labeled as a \"verb\", belong to the Escaping frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Give try and Try\", labeled as a \"noun\", belong to the Escaping frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Comeback, Counter, Answer, Rejoin and Answer\", labeled as a \"verb\", belong to the Escaping frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"evacuate, fly the coop, bust out, get out and escape\", labeled as a \"verb\", belong to the Escaping frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"evacuation\", labeled as a \"noun\", belong to the Escaping frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"get free, get loose and scarper\", labeled as a \"verb\", belong to the Escaping frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Examination, Assessment, Examine, Test and Test\", labeled as a \"verb\", belong to the Appointing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"name\", labeled as a \"verb\", belong to the Appointing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"accredited\", labeled as a \"adjective\", belong to the Appointing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Donate, Donation, Foist, Give and Donor\", labeled as a \"verb\", belong to the Appointing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Response, Respond, Reaction, Meet and React\", labeled as a \"adjective\", belong to the Appointing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"accredit, appoint, designate, finger and tap\", labeled as a \"verb\", belong to the Appointing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Reach, Contact, Write in, Contact and Write\", labeled as a \"verb\", belong to the Assemble frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"meet, convene and assemble\", labeled as a \"verb\", belong to the Assemble frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"suffer\", labeled as a \"verb\", belong to the Eventive affecting frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"happen, strike, hit, what become (of) and see\", labeled as a \"verb\", belong to the Eventive affecting frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Sum up, Synopsis, Boil down, Outline and Summarize\", labeled as a \"verb\", belong to the Eventive affecting frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Back, Finance, Bankroll, Fund and Support\", labeled as a \"verb\", belong to the Eventive affecting frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Try and Give try\", labeled as a \"noun\", belong to the Enforcing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"enforce\", labeled as a \"verb\", belong to the Enforcing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"enforcement\", labeled as a \"noun\", belong to the Enforcing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Stay, Dwell, Resident, Reside and Lodge\", labeled as a \"verb\", belong to the Enforcing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"engage and execute\", labeled as a \"verb\", belong to the Intentionally act frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"act, deed, move, agent and actor\", labeled as a \"noun\", belong to the Intentionally act frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Kill, Eliminate, Behead, Assassinate and Annihilate\", labeled as a \"noun\", belong to the Intentionally act frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"perform, do, act, conduct and carry out\", labeled as a \"verb\", belong to the Intentionally act frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Hijack, Hijacker, Hijacking, Hijacked and Carjacking\", labeled as a \"noun\", belong to the Intentionally act frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Abet, Helpful, Help, Succor and Assist\", labeled as a \"verb\", belong to the Intentionally act frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Meet, Convene and Assemble\", labeled as a \"verb\", belong to the Intentionally act frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"doing, step, action, activity and measures\", labeled as a \"noun\", belong to the Intentionally act frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"vanish, skedaddle, leave, exit and emerge\", labeled as a \"verb\", belong to the Departing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Collar, Nab, Arrest, Bust and Apprehend\", labeled as a \"verb\", belong to the Departing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"vamoose, escape, disappear, decamp and depart\", labeled as a \"verb\", belong to the Departing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Smuggling, Smuggle, Smuggler, Contraband and Contraband\", labeled as a \"noun\", belong to the Departing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Happen, Development, Take place, Transpire and Occur\", labeled as a \"verb\", belong to the Departing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"departure, escape, disappearance, exit and exodus\", labeled as a \"noun\", belong to the Departing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Cart, Haul, Carry, Wheel and Lug\", labeled as a \"adjective\", belong to the Rape frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"rape and sexually assault\", labeled as a \"verb\", belong to the Rape frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"rapist and rape\", labeled as a \"noun\", belong to the Rape frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Stay, Stay, Guest, Lodge and Room\", labeled as a \"noun\", belong to the Rape frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"raped\", labeled as a \"adjective\", belong to the Rape frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Reward, Reward, Disciplinary, Discipline and Punish\", labeled as a \"verb\", belong to the Rape frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"abandon, leave and forget\", labeled as a \"verb\", belong to the Abandonment frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Give try and Try\", labeled as a \"noun\", belong to the Abandonment frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Blow, Go, Glide, Drift and Move\", labeled as a \"verb\", belong to the Abandonment frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"abandoned\", labeled as a \"adjective\", belong to the Abandonment frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Use, Use, Employ, Operate and Avail oneself\", labeled as a \"adjective\", belong to the Abandonment frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"abandonment\", labeled as a \"noun\", belong to the Abandonment frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Stay, Reside, Resident, Lodge and Dwell\", labeled as a \"noun\", belong to the Response frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"reaction and response\", labeled as a \"noun\", belong to the Response frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"respond, act (on), react and meet\", labeled as a \"verb\", belong to the Response frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Provision, Supply, Provision, Provide and Supply\", labeled as a \"verb\", belong to the Response frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"do, do what (to/with) and do something (to/with)\", labeled as a \"verb\", belong to the Intentionally affect frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Reaction, Respond, Response, Meet and React\", labeled as a \"verb\", belong to the Intentionally affect frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"pirate, carjack and hijack\", labeled as a \"verb\", belong to the Piracy frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Stay, Dwell, Reside, Lodge and Resident\", labeled as a \"verb\", belong to the Piracy frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"piracy, hijacking, hijacker and carjacking\", labeled as a \"noun\", belong to the Piracy frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"hijacked\", labeled as a \"adjective\", belong to the Piracy frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Arrest, Nab, Apprehend, Bust and Collar\", labeled as a \"adjective\", belong to the Piracy frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Enforcement and Enforce\", labeled as a \"noun\", belong to the Piracy frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Sexually assault, Rapist, Raped, Rape and Rape\", labeled as a \"verb\", belong to the Exchange frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"switch, change, swap, exchange and trade\", labeled as a \"verb\", belong to the Exchange frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Force [into force], Implementation, Institute, Implement and Effect [into effect]\", labeled as a \"noun\", belong to the Exchange frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"trade, swap and exchange\", labeled as a \"noun\", belong to the Exchange frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Pilfer, Steal, Snitch, Purloin and Filch\", labeled as a \"verb\", belong to the Committing crime frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"commission and crime\", labeled as a \"noun\", belong to the Committing crime frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"perpetrate and commit\", labeled as a \"verb\", belong to the Committing crime frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Sum up, Outline, Boil down, Synopsis and Summarize\", labeled as a \"noun\", belong to the Committing crime frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Carjacking, Hijacking, Hijack, Hijacker and Hijacked\", labeled as a \"verb\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"deadly, fatal and lethal\", labeled as a \"adjective\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"smothering, killer, infanticide, slaying and massacre\", labeled as a \"noun\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"slayer, immolation, fratricide, murderer and slaughterer\", labeled as a \"noun\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Enforce and Enforcement\", labeled as a \"noun\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Influence, Effect, Influence, Impact and Affect\", labeled as a \"verb\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"murder, slay, liquidate, exterminate and drown\", labeled as a \"verb\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Hijacking, Hijacker, Hijacked, Carjacking and Hijack\", labeled as a \"verb\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Motion, Gesticulate, Nod, Beckon and Gesture\", labeled as a \"adjective\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Seize, Take, Commandeer, Seizure and Grab\", labeled as a \"noun\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"destroy, take out, silence and do in\", labeled as a \"verb\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"garrotte, massacre, slaughter, lynch and butcher\", labeled as a \"verb\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Try and Give try\", labeled as a \"verb\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"euthanasia, suicide, liquidation, annihilation and homicide\", labeled as a \"noun\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"murder, crucifixion, killing, liquidator and slaughter\", labeled as a \"noun\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Enforcement and Enforce\", labeled as a \"noun\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"blood-bath, assassin, suffocation, decapitation and extermination\", labeled as a \"noun\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Effect, Influence, Impact, Influence and Affect\", labeled as a \"verb\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Grab, Commandeer, Take, Seizure and Seize\", labeled as a \"noun\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"matricide, shooting, regicide, holocaust and pogrom\", labeled as a \"noun\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"crucify, euthanize, dispatch, decapitate and suicide\", labeled as a \"verb\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"kill, behead, assassinate, annihilate and eliminate\", labeled as a \"verb\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Commandeer, Grab, Seize, Seizure and Take\", labeled as a \"noun\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Filch, Purloin, Steal, Pilfer and Snitch\", labeled as a \"verb\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"genocide, assassination, carnage, beheading and butchery\", labeled as a \"noun\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Rejoin, Answer, Answer, Counter and Comeback\", labeled as a \"noun\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Steal, Purloin, Filch, Snitch and Pilfer\", labeled as a \"noun\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"suffocate, smother, terminate, asphyxiate and starve\", labeled as a \"verb\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"patricide, fatality and bloodshed\", labeled as a \"noun\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Provide, Supply, Supply, Provision and Provision\", labeled as a \"noun\", belong to the Killing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Replace, Replacement, Substitution, Swap out and Substitute\", labeled as a \"verb\", belong to the Residence frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"shack up and bivouac\", labeled as a \"verb\", belong to the Residence frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Donor, Foist, Donation, Give and Donate\", labeled as a \"verb\", belong to the Residence frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"camp, squatter, room-mate, resident and inhabitant\", labeled as a \"noun\", belong to the Residence frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Come together, Gather, Gang together, Throng and Band together\", labeled as a \"verb\", belong to the Residence frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"camped\", labeled as a \"adjective\", belong to the Residence frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"occupant, camper, dweller, bivouac and tenant\", labeled as a \"noun\", belong to the Residence frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"room, squat, live, occupy and camp\", labeled as a \"verb\", belong to the Residence frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"lodge, inhabit, stay, dwell and reside\", labeled as a \"verb\", belong to the Residence frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Donate, Donation, Give, Donor and Foist\", labeled as a \"noun\", belong to the Residence frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Band together, Gather, Come together, Gang together and Throng\", labeled as a \"adjective\", belong to the Residence frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Implement, Implementation, Force [into force], Effect [into effect] and Institute\", labeled as a \"noun\", belong to the Residence frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"drive, fly, take, hump and transport\", labeled as a \"verb\", belong to the Bringing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"paddle, motor, row, jet and convey\", labeled as a \"verb\", belong to the Bringing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"transport\", labeled as a \"noun\", belong to the Bringing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"cart, carry, haul, lug and wheel\", labeled as a \"verb\", belong to the Bringing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"mobile and portable\", labeled as a \"adjective\", belong to the Bringing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"get, fetch, bike, bring and bear\", labeled as a \"verb\", belong to the Bringing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Annihilate, Eliminate, Behead, Assassinate and Kill\", labeled as a \"noun\", belong to the Bringing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Hijacker, Hijacked, Hijacking, Carjacking and Hijack\", labeled as a \"verb\", belong to the Bringing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Bop, Bound, Back, Amble and Barge\", labeled as a \"verb\", belong to the Bringing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"tote, trundle, ferry, truck and schlep\", labeled as a \"verb\", belong to the Bringing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Contact, Write in, Contact, Write and Reach\", labeled as a \"verb\", belong to the Bringing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Back, Support, Bankroll, Finance and Fund\", labeled as a \"verb\", belong to the Bringing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Collar, Bust, Apprehend, Arrest and Nab\", labeled as a \"verb\", belong to the Bringing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Fund, Bankroll, Finance, Back and Support\", labeled as a \"verb\", belong to the Bringing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Barge, Back, Bop, Bound and Amble\", labeled as a \"adjective\", belong to the Bringing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"shuttle, bus and airlift\", labeled as a \"verb\", belong to the Bringing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"get through and call in\", labeled as a \"verb\", belong to the Contacting frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Test, Test, Assessment, Examine and Examination\", labeled as a \"verb\", belong to the Contacting frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"telegraph, page, fax, radio and cable\", labeled as a \"verb\", belong to the Contacting frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"telex, mail, telephone, get in touch and ring up\", labeled as a \"verb\", belong to the Contacting frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"write in, write, contact, reach and e-mail\", labeled as a \"verb\", belong to the Contacting frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Use, Operate, Use, Avail oneself and Employ\", labeled as a \"verb\", belong to the Contacting frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Reaction, Meet, Respond, React and Response\", labeled as a \"noun\", belong to the Contacting frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Commandeer, Seize, Grab, Seizure and Take\", labeled as a \"verb\", belong to the Contacting frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Bankroll, Support, Back, Fund and Finance\", labeled as a \"verb\", belong to the Contacting frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"contact and call\", labeled as a \"noun\", belong to the Contacting frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Pilfer, Snitch, Steal, Purloin and Filch\", labeled as a \"verb\", belong to the Contacting frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"call, phone in, phone, ring and call up\", labeled as a \"verb\", belong to the Contacting frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Take, Seizure, Grab, Seize and Commandeer\", labeled as a \"verb\", belong to the Funding frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"fund, back, finance, support and bankroll\", labeled as a \"verb\", belong to the Funding frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Indicate, Communicate, Speech, Signal and Communication [act]\", labeled as a \"noun\", belong to the Arrest frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"cop, summons and book\", labeled as a \"verb\", belong to the Arrest frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"collar, apprehend, nab, bust and arrest\", labeled as a \"verb\", belong to the Arrest frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"bust, apprehension and arrest\", labeled as a \"noun\", belong to the Arrest frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Seizure, Seize, Grab, Take and Commandeer\", labeled as a \"verb\", belong to the Arrest frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Grab, Seizure, Seize, Commandeer and Take\", labeled as a \"verb\", belong to the Arrest frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Counter, Rejoin, Answer, Comeback and Answer\", labeled as a \"verb\", belong to the Abusing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"abusive\", labeled as a \"adjective\", belong to the Abusing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"abuse, batter and maltreat\", labeled as a \"verb\", belong to the Abusing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Boil down, Summarize, Sum up, Outline and Synopsis\", labeled as a \"adjective\", belong to the Abusing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"maltreatment, domestic violence and abuse\", labeled as a \"noun\", belong to the Abusing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Reaction, Meet, Respond, React and Response\", labeled as a \"noun\", belong to the Abusing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Kill, Annihilate, Assassinate, Behead and Eliminate\", labeled as a \"noun\", belong to the Visiting frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"visit and revisit\", labeled as a \"verb\", belong to the Visiting frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"visit, call and visitor\", labeled as a \"noun\", belong to the Visiting frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Operate, Employ, Use, Avail oneself and Use\", labeled as a \"verb\", belong to the Visiting frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Examination, Test, Test, Assessment and Examine\", labeled as a \"noun\", belong to the Taking frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"seizure\", labeled as a \"noun\", belong to the Taking frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"grab, take, commandeer and seize\", labeled as a \"verb\", belong to the Taking frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Succor, Help, Helpful, Abet and Assist\", labeled as a \"verb\", belong to the Taking frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Communicate, Speech, Signal, Communication [act] and Indicate\", labeled as a \"verb\", belong to the Temporary stay frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"stay\", labeled as a \"noun\", belong to the Temporary stay frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Sexually assault, Rape, Rapist, Raped and Rape\", labeled as a \"verb\", belong to the Temporary stay frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"quarter, stay over, sleep over and board\", labeled as a \"verb\", belong to the Temporary stay frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Stay, Reside, Resident, Lodge and Dwell\", labeled as a \"noun\", belong to the Temporary stay frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"stay, guest, overnight, lodge and room\", labeled as a \"verb\", belong to the Temporary stay frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Test, Examine, Test, Examination and Assessment\", labeled as a \"adjective\", belong to the Theft frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Donate, Give, Donor, Donation and Foist\", labeled as a \"noun\", belong to the Theft frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Stay, Stay, Guest, Lodge and Room\", labeled as a \"verb\", belong to the Theft frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"bag, flog, cop, rustle and abstract\", labeled as a \"verb\", belong to the Theft frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"pilfering, embezzlement, embezzler, shoplifting and peculation\", labeled as a \"noun\", belong to the Theft frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Raped, Rapist, Rape, Sexually assault and Rape\", labeled as a \"verb\", belong to the Theft frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Lodge, Room, Stay, Stay and Guest\", labeled as a \"verb\", belong to the Theft frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"abstraction\", labeled as a \"noun\", belong to the Theft frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"misappropriate, nick, pickpocket, shoplift and embezzle\", labeled as a \"verb\", belong to the Theft frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"stealing, larceny, heist, snatch and misappropriation\", labeled as a \"noun\", belong to the Theft frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"pinch, lift, thieve, snatch and swipe\", labeled as a \"verb\", belong to the Theft frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Do something (to/with), Do and Do what (to/with)\", labeled as a \"noun\", belong to the Theft frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"abscond (with) and make off (with)\", labeled as a \"verb\", belong to the Theft frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Finance, Support, Bankroll, Fund and Back\", labeled as a \"verb\", belong to the Theft frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Contraband, Contraband, Smuggling, Smuggler and Smuggle\", labeled as a \"verb\", belong to the Theft frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Avail oneself, Use, Operate, Employ and Use\", labeled as a \"noun\", belong to the Theft frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Lug, Cart, Wheel, Carry and Haul\", labeled as a \"noun\", belong to the Theft frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"stolen, light-fingered and thieving\", labeled as a \"adjective\", belong to the Theft frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"snatcher, pilferer, cutpurse, pickpocket and thief\", labeled as a \"noun\", belong to the Theft frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Try and Give try\", labeled as a \"noun\", belong to the Theft frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"stealer, thieving, shoplifter, theft and pilferage\", labeled as a \"noun\", belong to the Theft frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"purloin, filch, snitch, steal and pilfer\", labeled as a \"verb\", belong to the Theft frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"examine and test\", labeled as a \"verb\", belong to the Examination frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"assessment, test, examination and exam\", labeled as a \"noun\", belong to the Examination frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Operate, Use, Employ, Avail oneself and Use\", labeled as a \"verb\", belong to the Examination frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Back, Fund, Support, Bankroll and Finance\", labeled as a \"noun\", belong to the Examination frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"hang, put to death, execute and guillotine\", labeled as a \"verb\", belong to the Execution frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Give try and Try\", labeled as a \"noun\", belong to the Execution frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"guillotining and hanging\", labeled as a \"noun\", belong to the Execution frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"executioner, headsman, execution, hangman and firing squad\", labeled as a \"noun\", belong to the Execution frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Rape, Raped, Rape, Sexually assault and Rapist\", labeled as a \"noun\", belong to the Execution frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Contact, Reach, Contact, Write and Write in\", labeled as a \"verb\", belong to the Execution frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Sexually assault, Rape, Rape, Raped and Rapist\", labeled as a \"noun\", belong to the Assistance frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"serve, aid and abet, cater and help out\", labeled as a \"verb\", belong to the Assistance frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"help, aid [entity], aid [act] and assistance\", labeled as a \"noun\", belong to the Assistance frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"helpful\", labeled as a \"adjective\", belong to the Assistance frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"aid, assist, help, succor and abet\", labeled as a \"verb\", belong to the Assistance frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Move, Blow, Go, Glide and Drift\", labeled as a \"verb\", belong to the Assistance frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Hijacker, Carjacking, Hijacking, Hijacked and Hijack\", labeled as a \"verb\", belong to the Assistance frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Force [into force], Institute, Implement, Effect [into effect] and Implementation\", labeled as a \"adjective\", belong to the Assistance frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"motion, beckon, gesture, nod and gesticulate\", labeled as a \"verb\", belong to the Gesture frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"signal and wave\", labeled as a \"verb\", belong to the Gesture frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Disciplinary, Discipline, Reward, Punish and Reward\", labeled as a \"noun\", belong to the Gesture frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Provision, Supply, Supply, Provide and Provision\", labeled as a \"verb\", belong to the Gesture frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"signal\", labeled as a \"noun\", belong to the Gesture frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Back, Amble, Barge, Bound and Bop\", labeled as a \"verb\", belong to the Gesture frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"fix up, fuel, afford, furnish and issue\", labeled as a \"verb\", belong to the Supply frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Implementation, Institute, Force [into force], Implement and Effect [into effect]\", labeled as a \"verb\", belong to the Supply frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"supply, equipment, supplier and provision\", labeled as a \"noun\", belong to the Supply frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"provide, outfit, equip, supply and provision\", labeled as a \"verb\", belong to the Supply frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Carjacking, Hijacking, Hijack, Hijacker and Hijacked\", labeled as a \"noun\", belong to the Supply frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Stay, Guest, Lodge, Room and Stay\", labeled as a \"verb\", belong to the Supply frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"operational\", labeled as a \"adjective\", belong to the Using frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Wheel, Lug, Cart, Haul and Carry\", labeled as a \"adjective\", belong to the Using frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Go, Glide, Blow, Move and Drift\", labeled as a \"verb\", belong to the Using frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Trade, Swap, Swap, Exchange and Exchange\", labeled as a \"noun\", belong to the Using frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"utilise and exercise\", labeled as a \"verb\", belong to the Using frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"application, utilisation, use, employment and operation\", labeled as a \"noun\", belong to the Using frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"operate, avail oneself, apply, use and employ\", labeled as a \"verb\", belong to the Using frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Swap, Exchange, Exchange, Trade and Swap\", labeled as a \"verb\", belong to the Using frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"smuggler, smuggling and contraband\", labeled as a \"noun\", belong to the Smuggling frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"contraband\", labeled as a \"adjective\", belong to the Smuggling frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Guest, Lodge, Room, Stay and Stay\", labeled as a \"verb\", belong to the Smuggling frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"smuggle\", labeled as a \"verb\", belong to the Smuggling frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Lodge, Resident, Reside, Stay and Dwell\", labeled as a \"noun\", belong to the Smuggling frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Gesticulate, Nod, Gesture, Motion and Beckon\", labeled as a \"adjective\", belong to the Smuggling frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Implementation, Institute, Force [into force], Effect [into effect] and Implement\", labeled as a \"verb\", belong to the Supporting frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"buttress, bolster and support\", labeled as a \"verb\", belong to the Supporting frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"set down, touch down and land\", labeled as a \"verb\", belong to the Vehicle landing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Succor, Help, Assist, Helpful and Abet\", labeled as a \"verb\", belong to the Vehicle landing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Bust, Arrest, Apprehend, Collar and Nab\", labeled as a \"noun\", belong to the Summarizing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Communication [act], Speech, Signal, Indicate and Communicate\", labeled as a \"verb\", belong to the Summarizing frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"sum up, boil down, outline and summarize\", labeled as a \"verb\", belong to the Summarizing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"synopsis\", labeled as a \"noun\", belong to the Summarizing frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Rape, Rape, Raped, Sexually assault and Rapist\", labeled as a \"noun\", belong to the Getting frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Lug, Cart, Wheel, Carry and Haul\", labeled as a \"verb\", belong to the Getting frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Comeback, Answer, Rejoin, Counter and Answer\", labeled as a \"verb\", belong to the Getting frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"acquisition [act], procurement [act] and acquisition [entity]\", labeled as a \"noun\", belong to the Getting frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"score, procure and win\", labeled as a \"verb\", belong to the Getting frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"get, acquire, secure, obtain and gain\", labeled as a \"verb\", belong to the Getting frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Abet, Help, Helpful, Assist and Succor\", labeled as a \"verb\", belong to the Motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Hijacked, Carjacking, Hijacking, Hijack and Hijacker\", labeled as a \"verb\", belong to the Motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"travel, swing and come\", labeled as a \"verb\", belong to the Motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"circle, weave, spiral, zigzag and wind\", labeled as a \"verb\", belong to the Motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Take place, Development, Transpire, Happen and Occur\", labeled as a \"verb\", belong to the Motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"soar, fly, roll, coast and float\", labeled as a \"verb\", belong to the Motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Seize, Commandeer, Seizure, Grab and Take\", labeled as a \"verb\", belong to the Motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Assist, Helpful, Succor, Help and Abet\", labeled as a \"verb\", belong to the Motion frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"drift, glide, go, blow and move\", labeled as a \"verb\", belong to the Motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"swerve, undulate, snake, meander and slide\", labeled as a \"verb\", belong to the Motion frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"incident, development, event and episode\", labeled as a \"noun\", belong to the Event frame? Please respond with yes or no.",
"Answers": "Yes"
},
{
"Questions": "Does the lexical unit \"Hijack, Hijacked, Carjacking, Hijacking and Hijacker\", labeled as a \"noun\", belong to the Event frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"Carjacking, Hijacked, Hijacker, Hijacking and Hijack\", labeled as a \"verb\", belong to the Event frame? Please respond with yes or no.",
"Answers": "No"
},
{
"Questions": "Does the lexical unit \"transpire, take place, occur, happen and go on\", labeled as a \"verb\", belong to the Event frame? Please respond with yes or no.",
"Answers": "Yes"
}
] |