-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev_LCS.txt
3533 lines (3533 loc) · 140 KB
/
dev_LCS.txt
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
(
:NUMBER "9.1"
:NAME "Put Verbs"
:WORDS (arrange immerse install lodge mount place position put set situate sling stash stow)
:NON_LEVIN_WORDS (bury bury_alive deposit disarrange displace implant insert juxtapose locate park put_forward superimpose)
:COLLOCATIONS ("at" "in" "on")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "9.2.i"
:NAME "Verbs of Putting in a Spatial Configuration"
:WORDS (dangle hang lay lean perch rest sit stand suspend)
:COLLOCATIONS ("at" "in" "on")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "9.2.ii"
:NAME "Verbs of Putting in a Spatial Configuration"
:WORDS (dangle hang lay lean perch rest sit stand suspend)
:NON_LEVIN_WORDS (enfilade prop)
:COLLOCATIONS ("up" "at" "in" "on")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "9.3.a"
:NAME "Funnel Verbs - Locational"
:WORDS (channel dip dump funnel ladle push rake ram scoop scrape shake shovel siphon spoon squash squeeze squish sweep tuck wedge wipe wring)
:NON_LEVIN_WORDS (hoe sop)
:COLLOCATIONS ("with")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "9.3.b"
:NAME "Funnel Verbs - Change of State"
:WORDS (bang hammer pound shovel squash squeeze squish wad wedge wipe wring)
:COLLOCATIONS ("into")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "9.4.a.i"
:NAME "Verbs of Putting with a Specified Direction / up (particle)"
:WORDS (hoist lift raise)
:COLLOCATIONS ("up")
:COMPONENT_OF_MEANING ("UPWARD") ;; OVERLAP <<SPATIAL>>
)
(
:NUMBER "9.4.a.ii"
:NAME "Verbs of Putting with a Specified Direction / up (particle)"
:WORDS ()
:NON_LEVIN_WORDS (elevate)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING ("UPWARD") ;; BLOCK <<SPATIAL>>
)
(
:NUMBER "9.4.b.i"
:NAME "Verbs of Putting with a Specified Direction / down (particle)"
:WORDS (lower)
:COLLOCATIONS ("down")
:COMPONENT_OF_MEANING ("DOWNWARD") ;; OVERLAP <<SPATIAL>>
)
(
:NUMBER "9.4.b.ii"
:NAME "Verbs of Putting with a Specified Direction / down (particle)"
:WORDS (drop lower)
:COLLOCATIONS ("down")
:COMPONENT_OF_MEANING ("DOWNWARD") ;; OVERLAP <<SPATIAL>>
)
(
:NUMBER "9.5"
:NAME "Pour Verbs"
:WORDS (dribble drip pour slop slosh spew spill spurt)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING ("FROM" "AWAY FROM" "OUT OF") ;; BLOCK <<SPATIAL>>
)
(
:NUMBER "9.6"
:NAME "Coil Verbs"
:WORDS (coil curl loop roll spin twirl twist whirl wind)
:NON_LEVIN_WORDS (twine)
:COLLOCATIONS ("around")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "9.7.a"
:NAME "Spray/Load Verbs - Locational / Agent"
:WORDS (brush cram crowd cultivate dab daub drape drizzle dust hang heap inject jam load mound pack pile plant plaster prick pump rub scatter seed settle sew shower slather smear smudge sow spatter splash splatter spray spread sprinkle spritz squirt stack stick stock strew string stuff swab vest wash wrap)
:COLLOCATIONS ("on" "at" "onto" "into")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "9.7.b"
:NAME "Spray/Load Verbs - Locational / No Agent"
:WORDS (brush dab daub drizzle dust pump rub spatter splash splatter spray sprinkle spritz squirt)
:COLLOCATIONS ("on" "at" "onto" "into")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "9.7.c"
:NAME "Spray/Load Verbs - Locational / Agent-at"
:WORDS (brush dab daub drizzle dust pump rub spatter splash splatter spray sprinkle spritz squirt)
:NON_LEVIN_WORDS (cram)
:COLLOCATIONS ("at")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "9.7.d"
:NAME "Spray/Load Verbs - Change of State"
:WORDS (brush cram crowd cultivate dab daub drape drizzle dust hang heap inject jam load mound pack pile plant plaster prick pump rub scatter seed settle sew shower slather smear smudge sow spatter splash splatter spray spread sprinkle spritz squirt stack stick stock strew string stuff swab vest wash wrap)
:NON_LEVIN_WORDS (afforest encumber overload overstock overstuff replant roughcast sophisticate upholster)
:COLLOCATIONS ("with")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "9.8.a"
:NAME "Fill Verbs - Locational / No agent"
:WORDS (adorn anoint bandage bathe bestrew bind blanket block blot bombard carpet choke cloak clog clutter coat contaminate cover dam dapple deck decorate deluge dirty dot douse drench edge embellish emblazon encircle encrust endow enrich entangle face festoon fill fleck flood frame garland garnish imbue impregnate infect inlay interlace interlard interleave intersperse interweave inundate lard lash line litter mask mottle ornament pad pave plate plug pollute replenish repopulate riddle ring ripple robe saturate season shroud smother soak soil speckle splotch spot staff stain stipple stud suffuse surround swaddle swathe taint tile trim veil vein wreathe)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING ("IN" "ROUND" "AROUND" "ABOUT" "UPON" "ON" "AT") ;; BLOCK <<SPATIAL>>
)
(
:NUMBER "9.8.b"
:NAME "Fill Verbs - Change of State / Agent"
:WORDS (adorn anoint bandage bathe bestrew bind blanket block blot bombard carpet choke cloak clog clutter coat contaminate cover dam dapple deck decorate deluge dirty dot douse drench edge embellish emblazon encircle encrust endow enrich entangle face festoon fill fleck flood frame garland garnish imbue impregnate infect inlay interlace interlard interleave intersperse interweave inundate lard lash line litter mask mottle ornament pad pave plate plug pollute replenish repopulate riddle ring ripple robe saturate season shroud smother soak soil speckle splotch spot staff stain stipple stud suffuse surround swaddle swathe taint tile trim veil vein wreathe)
:NON_LEVIN_WORDS (blockade bomb defile disorder envelop envelope extinguish fringe grace marble nickel-plate splint sully)
:COLLOCATIONS ("in" "with")
:COMPONENT_OF_MEANING ("IN" "ROUND" "AROUND" "ABOUT" "UPON" "ON" "AT") ;; OVERLAP <<SPATIAL>>
)
(
:NUMBER "9.8.d"
:NAME "Fill Verbs - Change of State / -in"
:WORDS (bathe blanket cloak coat cover deck festoon garland line robe shroud swaddle swathe veil wreathe)
:COLLOCATIONS ("in" "with")
:COMPONENT_OF_MEANING ("IN" "ROUND" "AROUND" "ABOUT" "UPON" "ON" "AT") ;; OVERLAP <<SPATIAL>>
)
(
:NUMBER "9.8.e"
:NAME "Fill Verbs - Locational / -up"
:WORDS (bandage bind block choke clog clutter cover dam dirty fill flood litter pad soak spot stain stop)
:COLLOCATIONS ("up")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "9.9.i"
:NAME "Butter Verbs"
:WORDS (grease polish powder sand water wax)
:COLLOCATIONS ("with")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "9.9.ii"
:NAME "Butter Verbs"
:WORDS (asphalt bait blanket blindfold board bread brick bridle bronze butter buttonhole cap carpet caulk chrome cloak cork crown diaper drug feather fence flour forest frame fuel gag garland glove graffiti gravel groove halter harness heel ink label leash leaven lipstick mantle mulch muzzle nickel oil ornament panel paper parquet patch pepper perfume pitch plank plaster poison pomade poster postmark putty robe roof rosin rouge rut saddle salt salve seed sequin shawl shingle shoe shutter silver slate slipcover sod sole spice stain starch stopper stress string stucco sugar sulphur tag tar tarmac tassel thatch ticket tile turf veil veneer wallpaper whitewash wreathe yoke zipcode)
:NON_LEVIN_WORDS (aromatize black calk clay dope grease lubricate overfill polish powder sand transfuse water wax)
:COLLOCATIONS ("with")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "9.10"
:NAME "Pocket Verbs"
:WORDS (archive bag bank beach bed bench berth billet bin bottle box cage can case cellar cloister coop corral crate dock drydock file fork garage ground hangar house jail jar jug kennel land lodge pasture pen pillory pocket pot sheathe shelter shelve shoulder skewer snare spindle spit spool stable string tin trap tree warehouse)
:NON_LEVIN_WORDS (bale imprison)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING ("INTO") ;; BLOCK <<SPATIAL>>
)
(
:NUMBER "10.1"
:NAME "Remove Verbs"
:WORDS (abstract cull delete discharge disengage disgorge dislodge dismiss draw eject eliminate eradicate evict excise excommunicate expel extirpate extract extrude lop omit ostracize oust partition pry reap remove separate sever shoo subtract uproot winkle withdraw wrench)
:NON_LEVIN_WORDS (abolish annul cancel deduce deduct deflect depose dispose emit except exclude harvest infer repeal rescind retract revoke withhold)
:MISSING_WORDS (sort)
:COLLOCATIONS ("from" "off of" "off" "off of")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "10.2.a"
:NAME "Banish Verbs / -from"
:NON_LEVIN_WORDS (retract)
:MISSING_WORDS (banish bar deport detain disinter distance evacuate exhume expel export extradite recall remove restrain)
:COLLOCATIONS ("from")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "10.2.b"
:NAME "Banish Verbs / -to"
:WORDS (banish deport evacuate expel extradite recall remove)
:NON_LEVIN_WORDS (exile)
:COLLOCATIONS ("to")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "10.3.a"
:NAME "Clear Verbs - Locational"
:WORDS (clean clear drain empty)
:COLLOCATIONS ("off of" "off")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "10.3.b"
:NAME "Clear Verbs - Change of State"
:WORDS (clean clear drain empty)
:COLLOCATIONS ("of")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "10.4.1.a"
:NAME "Manner Subclass of Wipe Verbs - Locational / Source"
:WORDS (bail buff dab distill dust erase expunge flush leach lick pluck polish prune purge rinse rub scour scrape scratch scrub shave skim smooth soak squeeze strain strip suck suction swab sweep trim wash wear weed whisk winnow wipe wring)
:MISSING_WORDS (burnish chafe sieve)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING ("OFF" "OFF OF") ;; BLOCK <<SPATIAL>>
)
(
:NUMBER "10.4.1.b.i"
:NAME "Manner Subclass of Wipe Verbs - Change of State"
:WORDS (bail buff dab dust flush leach lick pluck polish prune rinse rub scour scrape scratch scrub shave skim smooth soak squeeze strain strip suck suction swab sweep trim wash wear weed whisk winnow wipe wring)
:COLLOCATIONS ("off" "off of" "out of" "from")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "10.4.1.b.ii"
:NAME "Manner Subclass of Wipe Verbs - Change of State"
:WORDS (bail buff dab distill dust erase expunge flush leach lick pluck polish prune purge rinse rub scour scrape scratch scrub shave skim smooth soak squeeze strain strip suck suction swab sweep trim wash wear weed whisk winnow wipe wring)
:NON_LEVIN_WORDS (blank repolish)
:COLLOCATIONS ("of")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "10.4.1.c"
:NAME "Manner Subclass of Wipe Verbs - Locational / Goal-at"
:WORDS (dab dust lick pluck rub scrape scratch scrub skim suck swab sweep whisk wipe)
:COLLOCATIONS ("at")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "10.4.2.a"
:NAME "Instrument Subclass of Wipe Verbs - Locational"
:WORDS (brush comb file filter hoover hose iron mop plow rake sandpaper shear shovel siphon sponge towel vacuum)
:NON_LEVIN_WORDS (lathe plough)
:COLLOCATIONS ("with")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "10.4.2.b"
:NAME "Instrument Subclass of Wipe Verbs - Change of State"
:WORDS (brush comb file filter hoover hose iron mop plow rake sandpaper shear shovel siphon sponge towel vacuum)
:COLLOCATIONS ("of")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "10.5"
:NAME "Verbs of Possessional Deprivation : Steal Verbs"
:WORDS (abduct cadge capture confiscate cop emancipate embezzle exorcise extort extract filch flog grab impound kidnap liberate lift nab pilfer pinch pirate plagiarize purloin reclaim recover redeem regain repossess rescue retrieve rustle seize smuggle snatch sneak sponge steal swipe take thieve wangle weasel winkle withdraw wrest)
:NON_LEVIN_WORDS (annex apprehend arrest conquer defeat down elicit hijack misappropriate prostrate ransom remount salvage snatch_away solicit subdue vanquish)
:COLLOCATIONS ("from")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "10.5.pan"
:NAME "Lose related Verbs"
:WORDS (ache anguish bully butcher cripple deny disown doubt forebode forfeit grieve hurt lose martyr mourn orphan outlaw relinquish sacrifice suffer surrender suspect)
:NON_LEVIN_WORDS ()
:COLLOCATIONS ()
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "10.6.a"
:NAME "Verbs of Possessional Deprivation : Cheat Verbs / -of"
:WORDS (absolve acquit balk bereave bilk bleed burgle cheat cleanse con cull cure defraud denude deplete depopulate deprive despoil disabuse disarm disencumber dispossess divest drain ease exonerate fleece free gull milk mulct pardon plunder purge purify ransack relieve render rid rifle rob sap strip swindle unburden void wean)
:NON_LEVIN_WORDS (accuse defray disinfect exempt extricate inoculate invalidate loot nullify pillage remedy unload unravel vaccinate)
:COLLOCATIONS ("of" "from" "out of" "off of" "off")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "10.6.b"
:NAME "Verbs of Possessional Deprivation : Cheat Verbs / -of habit"
:WORDS (break)
:COLLOCATIONS ("of")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "10.6.c"
:NAME "Verbs of Possessional Deprivation : Cheat Verbs / -out of"
:WORDS (burgle cheat con swindle)
:COLLOCATIONS ("out of")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "10.7"
:NAME "Pit Verbs"
:WORDS (gill gut head hull husk lint louse milk peel pinion pip pit pith pod poll pulp rind scale scalp seed shell shuck skin snail stalk stem stone string tail tassel top vein weed wind worm zest)
:MISSING_WORDS (bark beard bone burl core)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING ("FROM" "AWAY FROM" "OUT OF") ;; BLOCK <<SPATIAL>>
)
(
:NUMBER "10.8"
:NAME "Debone Verbs"
:WORDS (deaccent debone debowel debug debur declaw defang defat defeather deflea deflesh defoam defog deforest defrost defuzz degas degerm deglaze degrease degrit degum degut dehair dehead dehorn dehull dehusk deice deink delint delouse deluster demast derat derib derind desalt descale desex desprout destarch destress detassel detusk devein dewater dewax deworm)
:NON_LEVIN_WORDS (deflower disembowel unearth unreel unsheathe unveil)
:MISSING_WORDS (debark)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING ("FROM" "AWAY FROM" "OUT OF") ;; BLOCK <<SPATIAL>>
)
(
:NUMBER "10.9"
:NAME "Mine Verbs"
:WORDS (mine quarry)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING () ;; N/A <<SPATIAL>>
)
(
:NUMBER "11.1"
:NAME "Send Verbs"
:WORDS (airmail convey deliver dispatch express fedex forward hand mail pass port post return send shift ship shunt slip smuggle sneak transfer transport ups)
:NON_LEVIN_WORDS (detour freight pass_on transmit)
:COLLOCATIONS ("to" "from")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "11.2.a"
:NAME "Slide Verbs"
:WORDS (bounce float move roll slide)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING () ;; INTRANS <<SPATIAL>>
)
(
:NUMBER "11.2.b"
:NAME "Slide Verbs - Agent"
:WORDS (bounce float move roll slide)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING () ;; N/A <<SPATIAL>>
)
(
:NUMBER "11.2.c"
:NAME "Slide Verbs"
:WORDS (bounce float move roll slide)
:NON_LEVIN_WORDS (migrate route)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "11.3"
:NAME "Bring and Take Verbs"
:WORDS (bring take)
:NON_LEVIN_WORDS (import)
:COLLOCATIONS ("from" "to")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "11.4.i"
:NAME "Carry Verbs"
:WORDS (carry drag haul heave heft hoist kick lug pull push schlep shove tote tow tug)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING () ;; N/A <<SPATIAL>>
)
(
:NUMBER "11.4.ii"
:NAME "Carry Verbs"
:WORDS (carry drag haul heave heft hoist kick lug pull push schlep shove tote tow tug)
:NON_LEVIN_WORDS (underrun)
:COLLOCATIONS ("from" "to")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "11.5"
:NAME "Drive Verbs"
:WORDS (barge bus cart drive ferry fly row shuttle truck wheel wire)
:COLLOCATIONS ("from" "to")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "12.a.i"
:NAME "Verbs of Exerting Force : Push/Pull Verbs - Locational"
:WORDS (draw heave jerk press pull push shove thrust tug yank)
:MISSING_WORDS (jostle rend)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING () ;; N/A <<SPATIAL>>
)
(
:NUMBER "12.a.ii"
:NAME "Verbs of Exerting Force : Push/Pull Verbs - Locational"
:WORDS (draw heave jerk press pull push shove thrust tug yank)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "12.b"
:NAME "Verbs of Exerting Force : Push/Pull Verbs - Locational / -at"
:WORDS (draw heave jerk press pull push shove thrust tug yank)
:COLLOCATIONS ("at" "on")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "13.1.a.i"
:NAME "Give - No Exchange - Sort of Atelic"
:WORDS (lend loan rent)
:COLLOCATIONS ("to")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "13.1.a.ii"
:NAME "Give - No Exchange"
:WORDS (feed give pass pay peddle refund render repay serve)
:NON_LEVIN_WORDS (apply deal finance mortgage overpay prepay rent requite spend tender)
:COLLOCATIONS ("to")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "13.1.b.i"
:NAME "Give - Exchange"
:WORDS (lease rent)
:COLLOCATIONS ("to")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "13.1.b.ii"
:NAME "Give - Exchange"
:WORDS (sell trade)
:NON_LEVIN_WORDS (hock pawn rent)
:COLLOCATIONS ("to")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "13.2"
:NAME "Contribute Verbs"
:WORDS (administer contribute disburse distribute donate extend forfeit proffer refer reimburse relinquish remit restore return sacrifice submit surrender transfer)
:NON_LEVIN_WORDS (capitulate disclaim disown disseminate lose miscarry recapitulate release resign subscribe succumb waive)
:COLLOCATIONS ("to")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "13.3"
:NAME "Verbs of Future Having"
:WORDS (advance allocate allot assign award bequeath cede concede extend grant guarantee issue leave offer owe promise vote will yield)
:NON_LEVIN_WORDS (apportion ascribe attribute augur bestow delegate impute portion ration subdivide vaticinate)
:COLLOCATIONS ("for" "among" "to" "upon")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "13.4.1.a"
:NAME "Verbs of Fulfilling - Possessional / -to"
:WORDS (credit entrust furnish issue leave present provide serve supply trust)
:NON_LEVIN_WORDS (afford cater commit dedicate devote dispose endear)
:COLLOCATIONS ("to")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "13.4.1.b"
:NAME "Verbs of Fulfilling - Change of State / -with"
:WORDS (credit entrust furnish issue leave present provide serve supply trust)
:NON_LEVIN_WORDS (discount discredit fulfil fulfill proportion)
:COLLOCATIONS ("with")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "13.4.2"
:NAME "Equip Verbs"
:WORDS (arm burden charge compensate equip invest ply regale reward saddle)
:NON_LEVIN_WORDS (aid armor arraign assist fund help overburden rearm redress reinforce succor weight)
:COLLOCATIONS ("with")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "13.5.1.a"
:NAME "Get - No Exchange"
:WORDS (book call cash catch charter choose fetch find gain gather get hire keep leave order phone pick pluck pull reach reserve save shoot slaughter steal vote)
:NON_LEVIN_WORDS (accomplish achieve attain benefit conserve earmark find_out let prescribe profit self-perpetuate)
:COLLOCATIONS ("for")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "13.5.1.a.pan"
:NAME "Get - No Exchange"
:WORDS (book call cash catch charter choose fetch get order phone reserve text vote)
:NON_LEVIN_WORDS (accomplish achieve attain benefit conserve earmark find_out let prescribe profit self-perpetuate)
:COLLOCATIONS ("for")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "13.5.1.b.i"
:NAME "Get - Exchange"
:WORDS (lease rent)
:COLLOCATIONS ("for")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "13.5.1.b.ii"
:NAME "Get - Exchange"
:WORDS (buy earn procure secure win)
:NON_LEVIN_WORDS (lay_in)
:COLLOCATIONS ("for")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "13.5.1.b.ii.pan"
:NAME "Get - Exchange"
:WORDS (buy claim subscribe)
:NON_LEVIN_WORDS (lay_in)
:COLLOCATIONS ("for")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "13.5.2.a"
:NAME "Obtain - No Exchange (CAUSE)"
:WORDS (appropriate borrow cadge collect exact grab recover regain retrieve seize select snatch)
:NON_LEVIN_WORDS (accrue ensnare incur stockpile)
:COLLOCATIONS ("from")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "13.5.2.a.pan"
:NAME "Obtain - No Exchange (CAUSE)"
:WORDS (borrow collect grab recover retreive seize select)
:NON_LEVIN_WORDS (accrue ensnare incur stockpile)
:COLLOCATIONS ("from")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "13.5.2.b"
:NAME "Obtain - No Exchange (LET w/ benefactive)"
:WORDS (accept acquire obtain)
:COLLOCATIONS ("from")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "13.5.2.c"
:NAME "Obtain - No Exchange (LET w/out benefactive)"
:WORDS (accumulate inherit receive)
:COLLOCATIONS ("from")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "13.5.2.d"
:NAME "Obtain - Exchange"
:WORDS (purchase)
:COLLOCATIONS ("from")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "13.6.a"
:NAME "Verbs of Exchange"
:WORDS (barter change exchange substitute swap)
:NON_LEVIN_WORDS (market replace supplant switch)
:COLLOCATIONS ("with")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "13.6.b"
:NAME "Verbs of Exchange"
:WORDS (trade)
:COLLOCATIONS ("for")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "13.7"
:NAME "Berry Verbs"
:WORDS (antique berry birdnest blackberry clam crab fish fowl grouse hay log mushroom nest nut oyster pearl prawn rabbit seal shark shrimp snail snipe sponge whale whelk)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "14.a"
:NAME "Learn Verbs / -from"
:WORDS (glean learn memorize read study)
:NON_LEVIN_WORDS (assimilate browse cram demand practice practise request reread revise)
:COLLOCATIONS ("from")
:COMPONENT_OF_MEANING () ;; FILL-OPT <NON-SPATIAL>
)
(
:NUMBER "14.b"
:NAME "Learn Verbs / -of/about"
:WORDS (learn read)
:MISSING_WORDS (inquire)
:COLLOCATIONS ("of" "about")
:COMPONENT_OF_MEANING () ;; FILL-OPT <NON-SPATIAL>
)
(
:NUMBER "14.c"
:NAME "Learn Verbs / -for"
:WORDS (cram read study)
:COLLOCATIONS ("for")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <NON-SPATIAL>
)
(
:NUMBER "15.1.a"
:NAME "Hold Verbs / -by"
:WORDS (clasp clutch grasp grip handle hold wield)
:NON_LEVIN_WORDS (mishandle)
:COLLOCATIONS ("by")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "15.1.b"
:NAME "Hold Verbs / -in"
:WORDS (clasp clutch grasp grip handle hold wield)
:COLLOCATIONS ("in")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "15.2.a"
:NAME "Keep Verbs"
:WORDS (leave)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "15.2.b"
:NAME "Keep Verbs"
:WORDS (hoard keep store)
:NON_LEVIN_WORDS (garner)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "16"
:NAME "Verbs of Concealment"
:WORDS (block cloister conceal curtain hide isolate quarantine screen seclude sequester shelter)
:NON_LEVIN_WORDS (barricade buoy harbor neglect obstruct repress suppress)
:MISSING_WORDS (dissimulate)
:COLLOCATIONS ("against")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "17.1"
:NAME "Throw Verbs"
:WORDS (bash bat bunt case catapult chuck fire flick fling flip hit hurl kick knock lob loft nudge pass pitch punt shoot shove slam slap sling smash tap throw tip toss)
:NON_LEVIN_WORDS (discard pass_on)
:COLLOCATIONS ("to")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "17.2.i"
:NAME "Pelt Verbs"
:MISSING_WORDS (bombard buffet pelt shower stone)
:COLLOCATIONS ("with")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "17.2.i.pan"
:NAME "Pelt Verbs"
:WORDS (bombard buffet pelt shower stone)
:COLLOCATIONS ("with")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "17.2.ii"
:NAME "Pelt Verbs -- stone"
:WORDS (stone)
:COLLOCATIONS ("with")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "18.1.a"
:NAME "Hit Verbs - Change of State / -with"
:WORDS (bang bash batter beat bump butt dash drum hammer hit kick knock lash pound rap slap smack smash strike tamp tap thump thwack whack)
:COLLOCATIONS ("with")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "18.1.b"
:NAME "Hit Verbs - Change of State"
:WORDS (bang bash batter beat bump butt dash drum hammer hit kick knock lash pound rap slap smack smash strike tamp tap thump thwack whack)
:COLLOCATIONS ("on" "at")
:COMPONENT_OF_MEANING ("ON" "AT") ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "18.1.c"
:NAME "Hit Verbs - Locational / -at/with"
:WORDS (bang bash batter beat bump butt dash drum hammer hit kick knock lash pound rap slap smack smash strike tamp tap thump thwack whack)
:COLLOCATIONS ("at")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "18.1.d"
:NAME "Hit Verbs - Locational / against"
:WORDS (bang bash batter beat bump butt dash drum hammer hit kick knock lash pound rap slap smack smash strike tamp tap thump thwack whack)
:COLLOCATIONS ("against")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "18.1.e"
:NAME "Hit Verbs - Change of State / together"
:WORDS (bang bash batter beat bump butt dash drum hammer hit kick knock lash pound rap slap smack smash strike tamp tap thump thwack whack)
:COLLOCATIONS ("together")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "18.2.a"
:NAME "Swat Verbs"
:WORDS (bite claw paw peck punch scratch shoot slug stab swat swipe)
:COLLOCATIONS ("on")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "18.2.b"
:NAME "Swat Verbs - Locational"
:WORDS (bite claw paw peck punch scratch shoot slug stab swat swipe)
:COLLOCATIONS ("at")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "18.3"
:NAME "Spank Verbs"
:WORDS (belt birch bludgeon bonk brain cane clobber club conk cosh cudgel cuff flog knife paddle paddywhack pummel sock spank strap thrash truncheon wallop whip whisk)
:NON_LEVIN_WORDS (k.o. knock_out stab)
:COLLOCATIONS ("with")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "18.4.a"
:NAME "Nonagentive Verbs of Impact by Contact - Locational"
:WORDS (bang brush bump crash hit knock ram slam smash thud)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "18.4.b"
:NAME "Nonagentive Verbs of Impact by Contact - Change of State"
:WORDS (bang bump crash knock slam smash thud)
:COLLOCATIONS ("together")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "19.a.i"
:NAME "Poke Verbs"
:WORDS (dig jab poke prick stick)
:MISSING_WORDS (impale)
:COLLOCATIONS ("on")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "19.a.ii"
:NAME "Poke Verbs - Change of State"
:WORDS (pierce)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "19.b"
:NAME "Poke Verbs - Locational / -through"
:WORDS (dig jab pierce poke prick stick)
:COLLOCATIONS ("through")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "19.c.i"
:NAME "Poke Verbs / -with"
:WORDS (dig jab pierce poke prick stick)
:COLLOCATIONS ("with")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "19.c.ii"
:NAME "Poke Verbs - Change of State / -with"
:WORDS (pierce)
:COLLOCATIONS ("with")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "19.d"
:NAME "Poke Verbs - Locational / -with"
:WORDS (jab poke)
:COLLOCATIONS ("at" "with")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "20.a"
:NAME "Verbs of Contact : Touch Verbs / -with"
:WORDS (caress graze kiss lick nudge pat pinch prod sting stroke tickle touch)
:COLLOCATIONS ("on" "with")
:COMPONENT_OF_MEANING ("ON" "WITH") ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "20.b"
:NAME "Verbs of Contact : Touch Verbs / no -with"
:WORDS (peck)
:NON_LEVIN_WORDS (fondle twinge)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING ("AT" "ON") ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "21.1.a"
:NAME "Cut Verbs - Change of State"
:WORDS (chip cut saw scrape scratch slash)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <NON-SPATIAL>
)
(
:NUMBER "21.1.b"
:NAME "Cut Verbs - Change of State / -on"
:WORDS (chip clip cut hack hew saw scrape scratch slash snip)
:COLLOCATIONS ("on")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <NON-SPATIAL>
)
(
:NUMBER "21.1.c"
:NAME "Cut Verbs - Change of State / -on/with"
:WORDS (chip clip cut hack hew saw scrape scratch slash snip)
:COLLOCATIONS ("on" "with")
:COMPONENT_OF_MEANING ("ON" "WITH") ;; FILL-OBLIG <NON-SPATIAL>
)
(
:NUMBER "21.1.d"
:NAME "Cut Verbs - Locational"
:WORDS (chip clip cut hack hew snip)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <NON-SPATIAL>
)
(
:NUMBER "21.1.e"
:NAME "Cut Verbs - Locational / -at"
:WORDS (chip clip cut hack hew saw scrape scratch slash snip)
:COLLOCATIONS ("at")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <NON-SPATIAL>
)
(
:NUMBER "21.2.a"
:NAME "Carve Verbs - Change of State / -with"
:WORDS (bore bruise carve chip chop crop crush cube dent dice drill file fillet gash gouge grate grind mangle mash mince mow nick notch perforate prune pulverize punch shred slice slit spear squash squish)
:NON_LEVIN_WORDS (fell lance mill trample tread)
:COLLOCATIONS ("on" "with")
:COMPONENT_OF_MEANING ("ON" "WITH") ;; OVERLAP <NON-SPATIAL>
)
(
:NUMBER "21.2.b"
:NAME "Carve Verbs - Change of State / Theme and Instrument"
:WORDS (bore bruise carve chip chop crop crush cube dent dice drill file fillet gash gouge grate grind mangle mash mince mow nick notch perforate prune pulverize punch shred slice slit spear squash squish)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <NON-SPATIAL>
)
(
:NUMBER "21.2.c"
:NAME "Carve Verbs - Change of State / Instrument Only"
:WORDS (bore carve chip chop cube dice drill file gouge grate grind mash mince mow prune pulverize punch shred slice spear squash squish)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <NON-SPATIAL>
)
(
:NUMBER "22.1.a"
:NAME "Mix Verbs - Change of State / -together"
:WORDS (add blend combine commingle concatenate connect cream fuse join link merge mingle mix network pool)
:MISSING_WORDS (align alloy ally coordinate couple earth pair)
:COLLOCATIONS ("together")
:COMPONENT_OF_MEANING () ;; FILL-OPT <NON-SPATIAL>
)
(
:NUMBER "22.1.b"
:NAME "Mix Verbs - Locational / -with"
:WORDS (blend combine commingle concatenate connect cream fuse join link merge mingle mix pool)
:COLLOCATIONS ("with")
:COMPONENT_OF_MEANING () ;; FILL-OPT <NON-SPATIAL>
)
(
:NUMBER "22.1.c"
:NAME "Mix Verbs - Locational / -into"
:WORDS (blend cream mix)
:COLLOCATIONS ("into")
:COMPONENT_OF_MEANING () ;; FILL-OPT <NON-SPATIAL>
)
(
:NUMBER "22.1.d"
:NAME "Mix Verbs - Locational / -to"
:WORDS (add connect join link network)
:COLLOCATIONS ("to")
:COMPONENT_OF_MEANING () ;; FILL-OPT <NON-SPATIAL>
)
(
:NUMBER "22.2.a"
:NAME "Amalgamate Verbs - Change of State"
:WORDS (affiliate alternate amalgamate associate coalesce coincide compare confederate confuse conjoin consolidate contrast correlate criss-cross entangle entwine harmonize incorporate integrate interchange interconnect interlace interlink interlock intermingle interrelate intersperse intertwine interweave mate muddle oppose pair rhyme team total unify unite)
:NON_LEVIN_WORDS (breed couple match overlap reconcile resolve second share supplement twine)
:COLLOCATIONS ("with")
:COMPONENT_OF_MEANING () ;; FILL-OPT <NON-SPATIAL>
)
(
:NUMBER "22.2.b"
:NAME "Amalgamate Verbs - Locational / -to"
:WORDS (engage introduce marry wed)
:NON_LEVIN_WORDS (liken match oppose subject subordinate)
:COLLOCATIONS ("to")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <NON-SPATIAL>
)
(
:NUMBER "22.2.c"
:NAME "Amalgamate Verbs - Change of State"
:WORDS (affiliate alternate amalgamate associate coalesce coincide compare confederate confuse conjoin consolidate contrast correlate criss-cross entangle entwine harmonize incorporate integrate interchange interconnect interlace interlink interlock intermingle interrelate intersperse intertwine interweave mate muddle oppose pair rhyme team total unify unite)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <NON-SPATIAL>
)
(
:NUMBER "22.3.a.i"
:NAME "Shake Verbs - Locational / -with"
:WORDS (band cluster gather group herd mass pair roll shake stir)
:COLLOCATIONS ("with")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "22.3.a.ii"
:NAME "Shake Verbs - Locational / -with"
:WORDS (band beat bundle cluster collate gather glom group herd jumble lump mass package pair roll scramble shake shuffle stir whip whisk)
:COLLOCATIONS ("with")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "22.3.b.i"
:NAME "Shake Verbs - Locational / -into"
:WORDS (beat shake stir swirl whip whisk)
:COLLOCATIONS ("into")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "22.3.b.ii"
:NAME "Shake Verbs - Locational / -into"
:WORDS (beat collect scramble shake shuffle splice stir swirl whip whisk)
:COLLOCATIONS ("into")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "22.3.c.i"
:NAME "Shake Verbs - Locational / -to"
:WORDS (stick)
:COLLOCATIONS ("to")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "22.3.c.ii"
:NAME "Shake Verbs - Locational / -to"
:WORDS (append attach baste bind bond fasten fuse graft moor sew splice stick weld)
:NON_LEVIN_WORDS (affix apply gird hem quilt transplant)
:COLLOCATIONS ("to")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "22.3.d.i"
:NAME "Shake Verbs - Change of State / -together"
:WORDS (band mass stick)
:COLLOCATIONS ("together")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "22.3.d.ii"
:NAME "Shake Verbs - Change of State / -together"
:WORDS (append attach band baste beat bind bond bundle cluster collate collect fasten fuse gather glom graft group herd jumble lump mass moor package pair roll scramble sew shake shuffle splice stick stir swirl weld whip whisk)
:COLLOCATIONS ("together")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "22.4.a"
:NAME "Tape Verbs - Locational / -with"
:WORDS (anchor band belt bolt bracket buckle button cement chain clamp clasp clip epoxy fetter glue gum handcuff harness hinge hitch hook knot lace lash lasso latch leash link lock loop manacle moor muzzle nail padlock paste peg pin plaster rivet rope screw seal shackle skewer solder staple stitch strap string tack tape tether thumbtack tie trammel wire yoke zip)
:NON_LEVIN_WORDS (thread)
:COLLOCATIONS ("with")
:COMPONENT_OF_MEANING ("ROUND" "AROUND" "ABOUT") ;; OVERLAP <<SPATIAL>>
)
(
:NUMBER "22.4.b"
:NAME "Tape Verbs - Change of State / -together"
:WORDS (anchor band belt bolt bracket buckle button cement chain clamp clasp clip epoxy fetter glue gum handcuff harness hinge hitch hook knot lace lash lasso latch leash link lock loop manacle moor muzzle nail padlock paste peg pin plaster rivet rope screw seal shackle skewer solder staple stitch strap string tack tape tether thumbtack tie trammel wire yoke zip)
:NON_LEVIN_WORDS (thread)
:COLLOCATIONS ("together")
:COMPONENT_OF_MEANING ("ROUND" "AROUND" "ABOUT") ;; OVERLAP <<SPATIAL>>
)
(
:NUMBER "22.5.a"
:NAME "Cling Verbs - Locational"
:WORDS (adhere cleave cling)
:NON_LEVIN_WORDS (cohere converge)
:COLLOCATIONS ("with")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "22.5.b"
:NAME "Cling Verbs - Change of State / -together"
:WORDS (adhere cleave cling)
:COLLOCATIONS ("together")
:COMPONENT_OF_MEANING () ;; FILL-OBLIG <<SPATIAL>>
)
(
:NUMBER "23.1.a"
:NAME "Separate Verbs - Locational / -from"
:WORDS (decouple differentiate disconnect disentangle dissociate distinguish divide divorce part segregate separate sever)
:NON_LEVIN_WORDS (disassociate disjoint dismember retreat uncoil)
:COLLOCATIONS ("from")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)
(
:NUMBER "23.1.b"
:NAME "Separate Verbs - Change of State"
:WORDS (decouple differentiate disconnect disentangle dissociate distinguish divide divorce part segregate separate sever)
:NON_LEVIN_WORDS (disarticulate ramify)
:COLLOCATIONS ()
:COMPONENT_OF_MEANING () ;; INTRANS <<SPATIAL>>
)
(
:NUMBER "23.2.a"
:NAME "Split Verbs - Locational / -off (of)"
:WORDS (blow break cut draw hack hew kick knock pry pull push rip roll saw shove slip split tear tug yank)
:COLLOCATIONS ("off of" "of")
:COMPONENT_OF_MEANING () ;; FILL-OPT <<SPATIAL>>
)