2:- module(framenet,[fnpattern/4]).    3
    4fnpattern(immerse, 9010000, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
    5fnpattern(immerse, 9010000, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
    6fnpattern(lodge, 9010000, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
    7fnpattern(lodge, 9010000, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
    8fnpattern(position, 9010000, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
    9fnpattern(position, 9010000, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   10fnpattern(situate, 9010000, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   11fnpattern(situate, 9010000, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   12fnpattern(deposit, 9010100, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   13fnpattern(deposit, 9010100, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   14fnpattern(insert, 9010100, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   15fnpattern(insert, 9010100, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   16fnpattern(stash, 9010100, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   17fnpattern(stash, 9010100, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   18fnpattern(stow, 9010100, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   19fnpattern(stow, 9010100, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   20fnpattern(place, 9010200, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   21fnpattern(place, 9010200, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   22fnpattern(put, 9010200, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   23fnpattern(put, 9010200, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   24fnpattern(set, 9010200, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   25fnpattern(set, 9010200, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   26fnpattern(lay, 9020000, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   27fnpattern(lay, 9020000, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   28fnpattern(hang, 9020100, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   29fnpattern(hang, 9020100, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   30fnpattern(lean, 9020100, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   31fnpattern(lean, 9020100, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   32fnpattern(perch, 9020100, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   33fnpattern(perch, 9020100, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   34fnpattern(rest, 9020100, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   35fnpattern(rest, 9020100, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   36fnpattern(sit, 9020100, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   37fnpattern(sit, 9020100, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   38fnpattern(stand, 9020100, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   39fnpattern(stand, 9020100, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   40fnpattern(tuck, 9030200, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme', 'Cause': 'Cause']).
   41fnpattern(ram, 9030210, 'Cause_impact', ['Agent': 'Agent', 'Theme': 'Impactor', 'Destination': 'Impactee']).
   42fnpattern(dribble, 9050000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Goal']).
   43fnpattern(dribble, 9050000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Area']).
   44fnpattern(drip, 9050000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Goal']).
   45fnpattern(drip, 9050000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Area']).
   46fnpattern(spew, 9050000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Goal']).
   47fnpattern(spew, 9050000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Area']).
   48fnpattern(spill, 9050000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Goal']).
   49fnpattern(spill, 9050000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Area']).
   50fnpattern(spin, 9060000, 'Cause_to_move_in_place', ['Agent': 'Agent', 'Theme': 'Theme', 'Location': 'Fixed_location']).
   51fnpattern(spin, 9060000, 'Cause_to_move_in_place', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Fixed_location']).
   52fnpattern(spin, 9060000, 'Cause_to_move_in_place', ['Agent': 'Cause', 'Theme': 'Theme', 'Location': 'Fixed_location']).
   53fnpattern(spin, 9060000, 'Cause_to_move_in_place', ['Agent': 'Cause', 'Theme': 'Body_part', 'Location': 'Fixed_location']).
   54fnpattern(twirl, 9060100, 'Cause_to_move_in_place', ['Agent': 'Agent', 'Theme': 'Theme', 'Location': 'Fixed_location']).
   55fnpattern(twirl, 9060100, 'Cause_to_move_in_place', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Fixed_location']).
   56fnpattern(twirl, 9060100, 'Cause_to_move_in_place', ['Agent': 'Cause', 'Theme': 'Theme', 'Location': 'Fixed_location']).
   57fnpattern(twirl, 9060100, 'Cause_to_move_in_place', ['Agent': 'Cause', 'Theme': 'Body_part', 'Location': 'Fixed_location']).
   58fnpattern(brush, 9070100, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   59fnpattern(brush, 9070100, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   60fnpattern(brush, 9070100, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   61fnpattern(drizzle, 9070100, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   62fnpattern(drizzle, 9070100, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   63fnpattern(drizzle, 9070100, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   64fnpattern(hang, 9070100, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   65fnpattern(hang, 9070100, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   66fnpattern(hang, 9070100, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   67fnpattern(plaster, 9070100, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   68fnpattern(pump, 9070100, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   69fnpattern(rub, 9070100, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   70fnpattern(rub, 9070100, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   71fnpattern(scatter, 9070100, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   72fnpattern(seed, 9070100, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   73fnpattern(shower, 9070100, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   74fnpattern(shower, 9070100, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   75fnpattern(shower, 9070100, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   76fnpattern(smear, 9070100, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   77fnpattern(smear, 9070100, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   78fnpattern(smear, 9070100, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   79fnpattern(sow, 9070100, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   80fnpattern(spatter, 9070100, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   81fnpattern(splash, 9070100, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   82fnpattern(splatter, 9070100, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   83fnpattern(spray, 9070100, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   84fnpattern(spread, 9070100, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   85fnpattern(sprinkle, 9070100, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   86fnpattern(squirt, 9070100, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   87fnpattern(stick, 9070100, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   88fnpattern(stick, 9070100, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   89fnpattern(strew, 9070100, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   90fnpattern(wrap, 9070100, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   91fnpattern(wrap, 9070100, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   92fnpattern(wrap, 9070100, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   93fnpattern(cram, 9070110, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   94fnpattern(cram, 9070110, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   95fnpattern(cram, 9070110, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
   96fnpattern(crowd, 9070110, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   97fnpattern(jam, 9070110, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   98fnpattern(jam, 9070110, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
   99fnpattern(jam, 9070110, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
  100fnpattern(pack, 9070110, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  101fnpattern(pack, 9070110, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  102fnpattern(pack, 9070110, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
  103fnpattern(pile, 9070110, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  104fnpattern(pile, 9070110, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  105fnpattern(pile, 9070110, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
  106fnpattern(dab, 9070200, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  107fnpattern(dab, 9070200, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  108fnpattern(dab, 9070200, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
  109fnpattern(daub, 9070200, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  110fnpattern(daub, 9070200, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  111fnpattern(daub, 9070200, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
  112fnpattern(drape, 9070200, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  113fnpattern(drape, 9070200, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  114fnpattern(drape, 9070200, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
  115fnpattern(dust, 9070200, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  116fnpattern(dust, 9070200, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  117fnpattern(dust, 9070200, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
  118fnpattern(heap, 9070200, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  119fnpattern(heap, 9070200, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  120fnpattern(heap, 9070200, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
  121fnpattern(load, 9070200, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  122fnpattern(load, 9070200, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  123fnpattern(load, 9070200, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
  124fnpattern(adorn, 9080000, 'Adorning', ['Destination': 'Location', 'Theme': 'Theme']).
  125fnpattern(adorn, 9080000, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  126fnpattern(anoint, 9080000, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  127fnpattern(blanket, 9080000, 'Adorning', ['Destination': 'Location', 'Theme': 'Theme']).
  128fnpattern(cloak, 9080000, 'Adorning', ['Destination': 'Location', 'Theme': 'Theme']).
  129fnpattern(coat, 9080000, 'Adorning', ['Destination': 'Location', 'Theme': 'Theme']).
  130fnpattern(coat, 9080000, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  131fnpattern(cover, 9080000, 'Adorning', ['Destination': 'Location', 'Theme': 'Theme']).
  132fnpattern(cover, 9080000, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  133fnpattern(deck, 9080000, 'Adorning', ['Destination': 'Location', 'Theme': 'Theme']).
  134fnpattern(decorate, 9080000, 'Adorning', ['Destination': 'Location', 'Theme': 'Theme']).
  135fnpattern(dot, 9080000, 'Adorning', ['Destination': 'Location', 'Theme': 'Theme']).
  136fnpattern(douse, 9080000, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  137fnpattern(embellish, 9080000, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  138fnpattern(encircle, 9080000, 'Adorning', ['Destination': 'Location', 'Theme': 'Theme']).
  139fnpattern(festoon, 9080000, 'Adorning', ['Destination': 'Location', 'Theme': 'Theme']).
  140fnpattern(fill, 9080000, 'Adorning', ['Destination': 'Location', 'Theme': 'Theme']).
  141fnpattern(fill, 9080000, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  142fnpattern(flood, 9080000, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  143fnpattern(inject, 9080000, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  144fnpattern(inject, 9080000, 'Placing', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  145fnpattern(inject, 9080000, 'Placing', ['Agent': 'Cause', 'Destination': 'Goal', 'Theme': 'Theme']).
  146fnpattern(line, 9080000, 'Adorning', ['Destination': 'Location', 'Theme': 'Theme']).
  147fnpattern(pave, 9080000, 'Adorning', ['Destination': 'Location', 'Theme': 'Theme']).
  148fnpattern(pave, 9080000, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  149fnpattern(stud, 9080000, 'Adorning', ['Destination': 'Location', 'Theme': 'Theme']).
  150fnpattern(suffuse, 9080000, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  151fnpattern(tile, 9080000, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  152fnpattern(asphalt, 9090000, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  153fnpattern(blanket, 9090000, 'Adorning', ['Destination': 'Location', 'Theme': 'Theme']).
  154fnpattern(butter, 9090000, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  155fnpattern(cloak, 9090000, 'Adorning', ['Destination': 'Location', 'Theme': 'Theme']).
  156fnpattern(panel, 9090000, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  157fnpattern(plaster, 9090000, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  158fnpattern(seed, 9090000, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  159fnpattern(ticket, 9090000, 'Fining', ['Agent': 'Speaker', 'Destination': 'Payer', 'Theme': 'Fine']).
  160fnpattern(tile, 9090000, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  161fnpattern(wallpaper, 9090000, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  162fnpattern(wreathe, 9090000, 'Adorning', ['Destination': 'Location', 'Theme': 'Theme']).
  163fnpattern(archive, 9100000, 'Placing', ['Agent': 'Agent', 'Location': 'Goal', 'Theme': 'Theme']).
  164fnpattern(archive, 9100000, 'Placing', ['Agent': 'Cause', 'Location': 'Goal', 'Theme': 'Theme']).
  165fnpattern(bag, 9100000, 'Placing', ['Agent': 'Agent', 'Location': 'Goal', 'Theme': 'Theme']).
  166fnpattern(bag, 9100000, 'Placing', ['Agent': 'Cause', 'Location': 'Goal', 'Theme': 'Theme']).
  167fnpattern(billet, 9100000, 'Placing', ['Agent': 'Agent', 'Location': 'Goal', 'Theme': 'Theme']).
  168fnpattern(billet, 9100000, 'Placing', ['Agent': 'Cause', 'Location': 'Goal', 'Theme': 'Theme']).
  169fnpattern(bin, 9100000, 'Placing', ['Agent': 'Agent', 'Location': 'Goal', 'Theme': 'Theme']).
  170fnpattern(bin, 9100000, 'Placing', ['Agent': 'Cause', 'Location': 'Goal', 'Theme': 'Theme']).
  171fnpattern(bottle, 9100000, 'Placing', ['Agent': 'Agent', 'Location': 'Goal', 'Theme': 'Theme']).
  172fnpattern(bottle, 9100000, 'Placing', ['Agent': 'Cause', 'Location': 'Goal', 'Theme': 'Theme']).
  173fnpattern(box, 9100000, 'Placing', ['Agent': 'Agent', 'Location': 'Goal', 'Theme': 'Theme']).
  174fnpattern(box, 9100000, 'Placing', ['Agent': 'Cause', 'Location': 'Goal', 'Theme': 'Theme']).
  175fnpattern(cage, 9100000, 'Placing', ['Agent': 'Agent', 'Location': 'Goal', 'Theme': 'Theme']).
  176fnpattern(cage, 9100000, 'Placing', ['Agent': 'Cause', 'Location': 'Goal', 'Theme': 'Theme']).
  177fnpattern(crate, 9100000, 'Placing', ['Agent': 'Agent', 'Location': 'Goal', 'Theme': 'Theme']).
  178fnpattern(crate, 9100000, 'Placing', ['Agent': 'Cause', 'Location': 'Goal', 'Theme': 'Theme']).
  179fnpattern(file, 9100000, 'Placing', ['Agent': 'Agent', 'Location': 'Goal', 'Theme': 'Theme']).
  180fnpattern(file, 9100000, 'Placing', ['Agent': 'Cause', 'Location': 'Goal', 'Theme': 'Theme']).
  181fnpattern(garage, 9100000, 'Placing', ['Agent': 'Agent', 'Location': 'Goal', 'Theme': 'Theme']).
  182fnpattern(garage, 9100000, 'Placing', ['Agent': 'Cause', 'Location': 'Goal', 'Theme': 'Theme']).
  183fnpattern(imprison, 9100000, 'Cause_confinement', ['Agent': 'Agent', 'Location': 'Goal', 'Theme': 'Theme']).
  184fnpattern(imprison, 9100000, 'Cause_confinement', ['Agent': 'Cause', 'Location': 'Goal', 'Theme': 'Theme']).
  185fnpattern(pocket, 9100000, 'Placing', ['Agent': 'Agent', 'Location': 'Goal', 'Theme': 'Theme']).
  186fnpattern(pocket, 9100000, 'Placing', ['Agent': 'Cause', 'Location': 'Goal', 'Theme': 'Theme']).
  187fnpattern(pot, 9100000, 'Placing', ['Agent': 'Agent', 'Location': 'Goal', 'Theme': 'Theme']).
  188fnpattern(pot, 9100000, 'Placing', ['Agent': 'Cause', 'Location': 'Goal', 'Theme': 'Theme']).
  189fnpattern(sheathe, 9100000, 'Placing', ['Agent': 'Agent', 'Location': 'Goal', 'Theme': 'Theme']).
  190fnpattern(sheathe, 9100000, 'Placing', ['Agent': 'Cause', 'Location': 'Goal', 'Theme': 'Theme']).
  191fnpattern(shelve, 9100000, 'Placing', ['Agent': 'Agent', 'Location': 'Goal', 'Theme': 'Theme']).
  192fnpattern(shelve, 9100000, 'Placing', ['Agent': 'Cause', 'Location': 'Goal', 'Theme': 'Theme']).
  193fnpattern(shoulder, 9100000, 'Placing', ['Agent': 'Agent', 'Location': 'Goal', 'Theme': 'Theme']).
  194fnpattern(shoulder, 9100000, 'Placing', ['Agent': 'Cause', 'Location': 'Goal', 'Theme': 'Theme']).
  195fnpattern(warehouse, 9100000, 'Placing', ['Agent': 'Agent', 'Location': 'Goal', 'Theme': 'Theme']).
  196fnpattern(warehouse, 9100000, 'Placing', ['Agent': 'Cause', 'Location': 'Goal', 'Theme': 'Theme']).
  197fnpattern(lodge, 9100100, 'Placing', ['Agent': 'Agent', 'Location': 'Goal', 'Theme': 'Theme']).
  198fnpattern(lodge, 9100100, 'Placing', ['Agent': 'Cause', 'Location': 'Goal', 'Theme': 'Theme']).
  199fnpattern(stable, 9100100, 'Placing', ['Agent': 'Agent', 'Location': 'Goal', 'Theme': 'Theme']).
  200fnpattern(stable, 9100100, 'Placing', ['Agent': 'Cause', 'Location': 'Goal', 'Theme': 'Theme']).
  201fnpattern(depose, 10010000, 'Change_of_leadership', ['Agent': 'Selector', 'Theme': 'Old_leader', 'Source': 'Role']).
  202fnpattern(depose, 10010000, 'Change_of_leadership', ['Agent': 'Selector', 'Theme': 'Old_order', 'Source': 'Role']).
  203fnpattern(dislodge, 10010000, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  204fnpattern(dislodge, 10010000, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  205fnpattern(eject, 10010000, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  206fnpattern(eject, 10010000, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  207fnpattern(eliminate, 10010000, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  208fnpattern(eliminate, 10010000, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  209fnpattern(evict, 10010000, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  210fnpattern(evict, 10010000, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  211fnpattern(excise, 10010000, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  212fnpattern(excise, 10010000, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  213fnpattern(expel, 10010000, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  214fnpattern(expel, 10010000, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  215fnpattern(extract, 10010000, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  216fnpattern(extract, 10010000, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  217fnpattern(oust, 10010000, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  218fnpattern(oust, 10010000, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  219fnpattern(remove, 10010000, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  220fnpattern(remove, 10010000, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  221fnpattern(withdraw, 10010000, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  222fnpattern(withdraw, 10010000, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  223fnpattern(evacuate, 10020000, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  224fnpattern(evacuate, 10020000, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  225fnpattern(expel, 10020000, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  226fnpattern(expel, 10020000, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  227fnpattern(remove, 10020000, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  228fnpattern(remove, 10020000, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  229fnpattern(clear, 10030100, 'Emptying', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  230fnpattern(clear, 10030100, 'Emptying', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  231fnpattern(clear, 10030100, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  232fnpattern(clear, 10030100, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  233fnpattern(drain, 10030100, 'Emptying', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  234fnpattern(drain, 10030100, 'Emptying', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  235fnpattern(drain, 10030100, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  236fnpattern(drain, 10030100, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  237fnpattern(empty, 10030100, 'Emptying', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  238fnpattern(empty, 10030100, 'Emptying', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  239fnpattern(empty, 10030100, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  240fnpattern(empty, 10030100, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  241fnpattern(expunge, 10041000, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  242fnpattern(expunge, 10041000, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  243fnpattern(purge, 10041000, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  244fnpattern(purge, 10041000, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  245fnpattern(shave, 10041000, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  246fnpattern(shave, 10041000, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  247fnpattern(skim, 10041000, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  248fnpattern(skim, 10041000, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  249fnpattern(dust, 10041100, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  250fnpattern(dust, 10041100, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  251fnpattern(pluck, 10041100, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  252fnpattern(pluck, 10041100, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  253fnpattern(rinse, 10041100, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  254fnpattern(rinse, 10041100, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  255fnpattern(strip, 10041100, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  256fnpattern(strip, 10041100, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  257fnpattern(wash, 10041100, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  258fnpattern(wash, 10041100, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  259fnpattern(abduct, 10050000, 'Kidnapping', ['Agent': 'Perpetrator', 'Theme': 'Victim']).
  260fnpattern(confiscate, 10050000, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source', 'Beneficiary': 'Goal']).
  261fnpattern(confiscate, 10050000, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source', 'Beneficiary': 'Goal']).
  262fnpattern(embezzle, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source', 'Beneficiary': 'Purpose']).
  263fnpattern(embezzle, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source', 'Beneficiary': 'Reason']).
  264fnpattern(embezzle, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Victim', 'Beneficiary': 'Purpose']).
  265fnpattern(embezzle, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Victim', 'Beneficiary': 'Reason']).
  266fnpattern(filch, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source', 'Beneficiary': 'Purpose']).
  267fnpattern(filch, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source', 'Beneficiary': 'Reason']).
  268fnpattern(filch, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Victim', 'Beneficiary': 'Purpose']).
  269fnpattern(filch, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Victim', 'Beneficiary': 'Reason']).
  270fnpattern(kidnap, 10050000, 'Kidnapping', ['Agent': 'Perpetrator', 'Theme': 'Victim']).
  271fnpattern(lift, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source', 'Beneficiary': 'Purpose']).
  272fnpattern(lift, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source', 'Beneficiary': 'Reason']).
  273fnpattern(lift, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Victim', 'Beneficiary': 'Purpose']).
  274fnpattern(lift, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Victim', 'Beneficiary': 'Reason']).
  275fnpattern(misappropriate, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source', 'Beneficiary': 'Purpose']).
  276fnpattern(misappropriate, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source', 'Beneficiary': 'Reason']).
  277fnpattern(misappropriate, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Victim', 'Beneficiary': 'Purpose']).
  278fnpattern(misappropriate, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Victim', 'Beneficiary': 'Reason']).
  279fnpattern(pilfer, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source', 'Beneficiary': 'Purpose']).
  280fnpattern(pilfer, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source', 'Beneficiary': 'Reason']).
  281fnpattern(pilfer, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Victim', 'Beneficiary': 'Purpose']).
  282fnpattern(pilfer, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Victim', 'Beneficiary': 'Reason']).
  283fnpattern(pinch, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source', 'Beneficiary': 'Purpose']).
  284fnpattern(pinch, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source', 'Beneficiary': 'Reason']).
  285fnpattern(pinch, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Victim', 'Beneficiary': 'Purpose']).
  286fnpattern(pinch, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Victim', 'Beneficiary': 'Reason']).
  287fnpattern(pirate, 10050000, 'Piracy', ['Agent': 'Perpetrator', 'Theme': 'Vehicle']).
  288fnpattern(purloin, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source', 'Beneficiary': 'Purpose']).
  289fnpattern(purloin, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source', 'Beneficiary': 'Reason']).
  290fnpattern(purloin, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Victim', 'Beneficiary': 'Purpose']).
  291fnpattern(purloin, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Victim', 'Beneficiary': 'Reason']).
  292fnpattern(smuggle, 10050000, 'Smuggling', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source', 'Beneficiary': 'Goal']).
  293fnpattern(snatch, 10050000, 'Kidnapping', ['Agent': 'Perpetrator', 'Theme': 'Victim']).
  294fnpattern(snatch, 10050000, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source', 'Beneficiary': 'Goal']).
  295fnpattern(snatch, 10050000, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source', 'Beneficiary': 'Goal']).
  296fnpattern(snatch, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source', 'Beneficiary': 'Purpose']).
  297fnpattern(snatch, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source', 'Beneficiary': 'Reason']).
  298fnpattern(snatch, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Victim', 'Beneficiary': 'Purpose']).
  299fnpattern(snatch, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Victim', 'Beneficiary': 'Reason']).
  300fnpattern(steal, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source', 'Beneficiary': 'Purpose']).
  301fnpattern(steal, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source', 'Beneficiary': 'Reason']).
  302fnpattern(steal, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Victim', 'Beneficiary': 'Purpose']).
  303fnpattern(steal, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Victim', 'Beneficiary': 'Reason']).
  304fnpattern(swipe, 10050000, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source', 'Beneficiary': 'Goal']).
  305fnpattern(swipe, 10050000, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source', 'Beneficiary': 'Goal']).
  306fnpattern(swipe, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source', 'Beneficiary': 'Purpose']).
  307fnpattern(swipe, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source', 'Beneficiary': 'Reason']).
  308fnpattern(swipe, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Victim', 'Beneficiary': 'Purpose']).
  309fnpattern(swipe, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Victim', 'Beneficiary': 'Reason']).
  310fnpattern(take, 10050000, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source', 'Beneficiary': 'Goal']).
  311fnpattern(take, 10050000, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source', 'Beneficiary': 'Goal']).
  312fnpattern(thieve, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source', 'Beneficiary': 'Purpose']).
  313fnpattern(thieve, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source', 'Beneficiary': 'Reason']).
  314fnpattern(thieve, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Victim', 'Beneficiary': 'Purpose']).
  315fnpattern(thieve, 10050000, 'Theft', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Victim', 'Beneficiary': 'Reason']).
  316fnpattern(cure, 10060000, 'Cure', ['Agent': 'Healer', 'Theme': 'Affliction', 'Source': 'Patient']).
  317fnpattern(cure, 10060000, 'Cure', ['Agent': 'Healer', 'Theme': 'Body_part', 'Source': 'Patient']).
  318fnpattern(denude, 10060000, 'Emptying', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  319fnpattern(denude, 10060000, 'Emptying', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  320fnpattern(divest, 10060000, 'Emptying', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  321fnpattern(divest, 10060000, 'Emptying', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  322fnpattern(purge, 10060000, 'Emptying', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  323fnpattern(purge, 10060000, 'Emptying', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  324fnpattern(purge, 10060000, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  325fnpattern(purge, 10060000, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  326fnpattern(rid, 10060000, 'Emptying', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  327fnpattern(rid, 10060000, 'Emptying', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  328fnpattern(rob, 10060000, 'Robbery', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Victim']).
  329fnpattern(rob, 10060000, 'Robbery', ['Agent': 'Perpetrator', 'Theme': 'Goods', 'Source': 'Source']).
  330fnpattern(strip, 10060000, 'Emptying', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  331fnpattern(strip, 10060000, 'Emptying', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  332fnpattern(strip, 10060000, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  333fnpattern(strip, 10060000, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  334fnpattern(void, 10060000, 'Emptying', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  335fnpattern(void, 10060000, 'Emptying', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  336fnpattern(drain, 10060100, 'Emptying', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  337fnpattern(drain, 10060100, 'Emptying', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  338fnpattern(drain, 10060100, 'Removing', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  339fnpattern(drain, 10060100, 'Removing', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  340fnpattern(ease, 10060100, 'Cure', ['Agent': 'Healer', 'Theme': 'Affliction', 'Source': 'Patient']).
  341fnpattern(ease, 10060100, 'Cure', ['Agent': 'Healer', 'Theme': 'Body_part', 'Source': 'Patient']).
  342fnpattern(bone, 10070000, 'Emptying', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  343fnpattern(bone, 10070000, 'Emptying', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  344fnpattern(core, 10070000, 'Emptying', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  345fnpattern(core, 10070000, 'Emptying', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  346fnpattern(gut, 10070000, 'Emptying', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  347fnpattern(gut, 10070000, 'Emptying', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  348fnpattern(peel, 10070000, 'Emptying', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  349fnpattern(peel, 10070000, 'Emptying', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  350fnpattern(scalp, 10070000, 'Emptying', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  351fnpattern(scalp, 10070000, 'Emptying', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  352fnpattern(skin, 10070000, 'Emptying', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  353fnpattern(skin, 10070000, 'Emptying', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  354fnpattern(debug, 10080000, 'Emptying', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  355fnpattern(debug, 10080000, 'Emptying', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  356fnpattern(deforest, 10080000, 'Emptying', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  357fnpattern(deforest, 10080000, 'Emptying', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  358fnpattern(defrost, 10080000, 'Emptying', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  359fnpattern(defrost, 10080000, 'Emptying', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  360fnpattern(degrease, 10080000, 'Emptying', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  361fnpattern(degrease, 10080000, 'Emptying', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  362fnpattern(delouse, 10080000, 'Emptying', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  363fnpattern(delouse, 10080000, 'Emptying', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  364fnpattern(descale, 10080000, 'Emptying', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  365fnpattern(descale, 10080000, 'Emptying', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source']).
  366fnpattern(dispatch, 11010000, 'Sending', ['Agent': 'Sender', 'Theme': 'Theme', 'Destination': 'Goal']).
  367fnpattern(dispatch, 11010000, 'Sending', ['Agent': 'Sender', 'Theme': 'Theme', 'Destination': 'Recipient']).
  368fnpattern(post, 11010000, 'Sending', ['Agent': 'Sender', 'Theme': 'Theme', 'Destination': 'Goal']).
  369fnpattern(post, 11010000, 'Sending', ['Agent': 'Sender', 'Theme': 'Theme', 'Destination': 'Recipient']).
  370fnpattern(forward, 11010100, 'Sending', ['Agent': 'Sender', 'Theme': 'Theme', 'Destination': 'Goal']).
  371fnpattern(forward, 11010100, 'Sending', ['Agent': 'Sender', 'Theme': 'Theme', 'Destination': 'Recipient']).
  372fnpattern(mail, 11010100, 'Sending', ['Agent': 'Sender', 'Theme': 'Theme', 'Destination': 'Goal']).
  373fnpattern(mail, 11010100, 'Sending', ['Agent': 'Sender', 'Theme': 'Theme', 'Destination': 'Recipient']).
  374fnpattern(send, 11010100, 'Sending', ['Agent': 'Sender', 'Theme': 'Theme', 'Destination': 'Goal']).
  375fnpattern(send, 11010100, 'Sending', ['Agent': 'Sender', 'Theme': 'Theme', 'Destination': 'Recipient']).
  376fnpattern(ship, 11010100, 'Sending', ['Agent': 'Sender', 'Theme': 'Theme', 'Destination': 'Goal']).
  377fnpattern(ship, 11010100, 'Sending', ['Agent': 'Sender', 'Theme': 'Theme', 'Destination': 'Recipient']).
  378fnpattern(drag, 11040000, 'Cause_motion', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  379fnpattern(drag, 11040000, 'Cause_motion', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  380fnpattern(tug, 11040000, 'Cause_motion', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  381fnpattern(tug, 11040000, 'Cause_motion', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  382fnpattern(push, 11040110, 'Cause_motion', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  383fnpattern(push, 11040110, 'Cause_motion', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  384fnpattern(shove, 11040110, 'Cause_motion', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  385fnpattern(shove, 11040110, 'Cause_motion', ['Agent': 'Cause', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  386fnpattern(pull, 12000100, 'Manipulation', ['Agent': 'Agent', 'Theme': 'Entity']).
  387fnpattern(tug, 12000100, 'Manipulation', ['Agent': 'Agent', 'Theme': 'Entity']).
  388fnpattern(yank, 12000100, 'Manipulation', ['Agent': 'Agent', 'Theme': 'Entity']).
  389fnpattern(push, 12000110, 'Manipulation', ['Agent': 'Agent', 'Theme': 'Entity']).
  390fnpattern(thrust, 12000110, 'Cause_motion', ['Agent': 'Agent', 'Theme': 'Theme']).
  391fnpattern(pass, 13010000, 'Giving', ['Agent': 'Donor', 'Theme': 'Theme', 'Recipient': 'Recipient']).
  392fnpattern(give, 13010100, 'Giving', ['Agent': 'Donor', 'Theme': 'Theme', 'Recipient': 'Recipient']).
  393fnpattern(lease, 13010100, 'Commerce_buy', ['Agent': 'Buyer', 'Theme': 'Goods']).
  394fnpattern(lease, 13010100, 'Commerce_sell', ['Agent': 'Seller', 'Theme': 'Goods']).
  395fnpattern(rent, 13010100, 'Commerce_buy', ['Agent': 'Buyer', 'Theme': 'Goods']).
  396fnpattern(rent, 13010100, 'Commerce_sell', ['Agent': 'Seller', 'Theme': 'Goods']).
  397fnpattern(sell, 13010100, 'Commerce_sell', ['Agent': 'Seller', 'Theme': 'Goods']).
  398fnpattern(pay, 13010110, 'Commerce_pay', ['Agent': 'Seller', 'Recipient': 'Buyer', 'Theme': 'Goods', 'Asset': 'Money']).
  399fnpattern(donate, 13020110, 'Giving', ['Agent': 'Donor', 'Theme': 'Theme', 'Recipient': 'Recipient']).
  400fnpattern(donate, 13020110, 'Giving', ['Cause': 'Donor', 'Theme': 'Theme', 'Recipient': 'Recipient']).
  401fnpattern(disburse, 13020200, 'Commerce_pay', ['Agent': 'Seller', 'Recipient': 'Buyer', 'Theme': 'Goods']).
  402fnpattern(disburse, 13020200, 'Commerce_pay', ['Agent': 'Cause', 'Recipient': 'Buyer', 'Theme': 'Goods']).
  403fnpattern(bequeath, 13030000, 'Giving', ['Agent': 'Donor', 'Theme': 'Theme', 'Recipient': 'Recipient']).
  404fnpattern(charge, 13042000, 'Commerce_collect', ['Agent': 'Buyer', 'Theme': 'Goods']).
  405fnpattern(buy, 13051000, 'Commerce_buy', ['Agent': 'Buyer', 'Theme': 'Goods']).
  406fnpattern(call, 13051000, 'Claim_ownership', ['Agent': 'Claimant', 'Theme': 'Property', 'Beneficiary': 'Beneficiary']).
  407fnpattern(hire, 13051000, 'Hiring', ['Agent': 'Employer', 'Theme': 'Employee']).
  408fnpattern(lease, 13051000, 'Commerce_buy', ['Agent': 'Buyer', 'Theme': 'Goods']).
  409fnpattern(order, 13051000, 'Request', ['Agent': 'Speaker', 'Theme': 'Message', 'Source': 'Addressee']).
  410fnpattern(pick, 13051000, 'Choosing', ['Agent': 'Cognizer', 'Theme': 'Chosen']).
  411fnpattern(rent, 13051000, 'Commerce_buy', ['Agent': 'Buyer', 'Theme': 'Goods']).
  412fnpattern(secure, 13051000, 'Getting', ['Agent': 'Recipient', 'Theme': 'Theme', 'Source': 'Source']).
  413fnpattern(gain, 13051100, 'Getting', ['Agent': 'Recipient', 'Theme': 'Theme', 'Source': 'Source']).
  414fnpattern(get, 13051100, 'Getting', ['Agent': 'Recipient', 'Theme': 'Theme', 'Source': 'Source']).
  415fnpattern(accept, 13052000, 'Receiving', ['Agent': 'Donor', 'Theme': 'Theme']).
  416fnpattern(collect, 13052000, 'Commerce_collect', ['Agent': 'Buyer', 'Source': 'Seller', 'Theme': 'Goods', 'Asset': 'Money']).
  417fnpattern(receive, 13052000, 'Receiving', ['Agent': 'Donor', 'Theme': 'Theme']).
  418fnpattern(seize, 13052000, 'Taking', ['Agent': 'Agent', 'Theme': 'Theme', 'Source': 'Source']).
  419fnpattern(select, 13052000, 'Choosing', ['Agent': 'Cognizer', 'Theme': 'Chosen']).
  420fnpattern(acquire, 13052100, 'Getting', ['Agent': 'Recipient', 'Theme': 'Theme', 'Source': 'Source']).
  421fnpattern(obtain, 13052100, 'Getting', ['Agent': 'Recipient', 'Theme': 'Theme', 'Source': 'Source']).
  422fnpattern(purchase, 13052100, 'Commerce_buy', ['Agent': 'Buyer', 'Theme': 'Goods']).
  423fnpattern(replace, 13060000, 'Replacing', ['Agent': 'Agent', 'Theme': 'Old', 'Theme2': 'New', 'Beneficiary': 'Purpose']).
  424fnpattern(replace, 13060000, 'Replacing', ['Agent': 'Agent', 'Theme': 'Old', 'Theme2': 'New', 'Beneficiary': 'Reason']).
  425fnpattern(replace, 13060000, 'Replacing', ['Agent': 'Agent', 'Theme1': 'Old', 'Theme2': 'New', 'Beneficiary': 'Purpose']).
  426fnpattern(replace, 13060000, 'Replacing', ['Agent': 'Agent', 'Theme1': 'Old', 'Theme2': 'New', 'Beneficiary': 'Reason']).
  427fnpattern(acquire, 14000000, 'Getting', ['Agent': 'Recipient', 'Topic': 'Theme', 'Source': 'Source']).
  428fnpattern(read, 14000100, 'Reading', ['Agent': 'Reader', 'Topic': 'Text']).
  429fnpattern(study, 14000100, 'Education_teaching', ['Agent': 'Student', 'Topic': 'Subject', 'Source': 'Teacher']).
  430fnpattern(read, 14000210, 'Reading', ['Agent': 'Reader', 'Topic': 'Text']).
  431fnpattern(clasp, 15010100, 'Manipulation', ['Agent': 'Agent', 'Theme': 'Entity']).
  432fnpattern(clutch, 15010100, 'Manipulation', ['Agent': 'Agent', 'Theme': 'Entity']).
  433fnpattern(grasp, 15010100, 'Manipulation', ['Agent': 'Agent', 'Theme': 'Entity']).
  434fnpattern(grip, 15010100, 'Manipulation', ['Agent': 'Agent', 'Theme': 'Entity']).
  435fnpattern(block, 16000000, 'Eclipse', ['Agent': 'Obstruction', 'Patient': 'Eclipsed']).
  436fnpattern(conceal, 16000000, 'Eclipse', ['Agent': 'Obstruction', 'Patient': 'Eclipsed']).
  437fnpattern(hide, 16000000, 'Eclipse', ['Agent': 'Obstruction', 'Patient': 'Eclipsed']).
  438fnpattern(screen, 16000000, 'Eclipse', ['Agent': 'Obstruction', 'Patient': 'Eclipsed']).
  439fnpattern(hide, 16000100, 'Eclipse', ['Agent': 'Obstruction', 'Patient': 'Eclipsed']).
  440fnpattern(discard, 17010000, 'Removing', ['Agent': 'Agent', 'Cause': 'Cause', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  441fnpattern(chuck, 17010100, 'Cause_motion', ['Agent': 'Agent', 'Cause': 'Cause', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  442fnpattern(fire, 17010100, 'Shoot_projectiles', ['Agent': 'Agent', 'Theme': 'Projectile', 'Source': 'Firearm']).
  443fnpattern(fling, 17010100, 'Cause_motion', ['Agent': 'Agent', 'Cause': 'Cause', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  444fnpattern(hit, 17010100, 'Cause_impact', ['Agent': 'Agent', 'Theme': 'Impactor', 'Destination': 'Impactee']).
  445fnpattern(hit, 17010100, 'Cause_impact', ['Cause': 'Agent', 'Theme': 'Impactor', 'Destination': 'Impactee']).
  446fnpattern(hurl, 17010100, 'Cause_motion', ['Agent': 'Agent', 'Cause': 'Cause', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  447fnpattern(nudge, 17010100, 'Cause_motion', ['Agent': 'Agent', 'Cause': 'Cause', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  448fnpattern(pitch, 17010100, 'Cause_motion', ['Agent': 'Agent', 'Cause': 'Cause', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  449fnpattern(shoot, 17010100, 'Shoot_projectiles', ['Agent': 'Agent', 'Theme': 'Projectile', 'Source': 'Firearm']).
  450fnpattern(shove, 17010100, 'Cause_motion', ['Agent': 'Agent', 'Cause': 'Cause', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  451fnpattern(slam, 17010100, 'Cause_impact', ['Agent': 'Agent', 'Theme': 'Impactor', 'Destination': 'Impactee']).
  452fnpattern(slam, 17010100, 'Cause_impact', ['Cause': 'Agent', 'Theme': 'Impactor', 'Destination': 'Impactee']).
  453fnpattern(slap, 17010100, 'Cause_impact', ['Agent': 'Agent', 'Theme': 'Impactor', 'Destination': 'Impactee']).
  454fnpattern(slap, 17010100, 'Cause_impact', ['Cause': 'Agent', 'Theme': 'Impactor', 'Destination': 'Impactee']).
  455fnpattern(catapult, 17010110, 'Cause_motion', ['Agent': 'Agent', 'Cause': 'Cause', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  456fnpattern(throw, 17010110, 'Cause_motion', ['Agent': 'Agent', 'Cause': 'Cause', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  457fnpattern(toss, 17010110, 'Cause_motion', ['Agent': 'Agent', 'Cause': 'Cause', 'Theme': 'Theme', 'Source': 'Source', 'Destination': 'Goal']).
  458fnpattern(buffet, 17020000, 'Cause_harm', ['Agent': 'Agent', 'Theme': 'Victim']).
  459fnpattern(buffet, 17020000, 'Cause_harm', ['Agent': 'Agent', 'Theme': 'Body_part']).
  460fnpattern(buffet, 17020000, 'Cause_harm', ['Agent': 'Cause', 'Theme': 'Victim']).
  461fnpattern(buffet, 17020000, 'Cause_harm', ['Agent': 'Cause', 'Theme': 'Body_part']).
  462fnpattern(pelt, 17020000, 'Cause_harm', ['Agent': 'Agent', 'Theme': 'Victim']).
  463fnpattern(pelt, 17020000, 'Cause_harm', ['Agent': 'Agent', 'Theme': 'Body_part']).
  464fnpattern(pelt, 17020000, 'Cause_harm', ['Agent': 'Cause', 'Theme': 'Victim']).
  465fnpattern(pelt, 17020000, 'Cause_harm', ['Agent': 'Cause', 'Theme': 'Body_part']).
  466fnpattern(stone, 17020000, 'Cause_harm', ['Agent': 'Agent', 'Theme': 'Victim']).
  467fnpattern(stone, 17020000, 'Cause_harm', ['Agent': 'Agent', 'Theme': 'Body_part']).
  468fnpattern(stone, 17020000, 'Cause_harm', ['Agent': 'Cause', 'Theme': 'Victim']).
  469fnpattern(stone, 17020000, 'Cause_harm', ['Agent': 'Cause', 'Theme': 'Body_part']).
  470fnpattern(bang, 18010100, 'Cause_impact', ['Agent': 'Agent', 'Instrument': 'Impactor', 'Patient': 'Impactee']).
  471fnpattern(bang, 18010100, 'Impact', ['Instrument': 'Impactor', 'Patient': 'Impactee']).
  472fnpattern(bash, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  473fnpattern(bash, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  474fnpattern(bash, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  475fnpattern(bash, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  476fnpattern(batter, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  477fnpattern(batter, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  478fnpattern(batter, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  479fnpattern(batter, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  480fnpattern(beat, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  481fnpattern(beat, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  482fnpattern(beat, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  483fnpattern(beat, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  484fnpattern(bump, 18010100, 'Impact', ['Instrument': 'Impactor', 'Patient': 'Impactee']).
  485fnpattern(butt, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  486fnpattern(butt, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  487fnpattern(butt, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  488fnpattern(butt, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  489fnpattern(click, 18010100, 'Cause_impact', ['Agent': 'Agent', 'Instrument': 'Impactor', 'Patient': 'Impactee']).
  490fnpattern(click, 18010100, 'Impact', ['Instrument': 'Impactor', 'Patient': 'Impactee']).
  491fnpattern(hammer, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  492fnpattern(hammer, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  493fnpattern(hammer, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  494fnpattern(hammer, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  495fnpattern(hit, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  496fnpattern(hit, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  497fnpattern(hit, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  498fnpattern(hit, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  499fnpattern(hit, 18010100, 'Cause_impact', ['Agent': 'Agent', 'Instrument': 'Impactor', 'Patient': 'Impactee']).
  500fnpattern(hit, 18010100, 'Hit_target', ['Agent': 'Agent', 'Patient': 'Target']).
  501fnpattern(hit, 18010100, 'Hit_target', ['Instrument': 'Agent', 'Patient': 'Target']).
  502fnpattern(hit, 18010100, 'Impact', ['Instrument': 'Impactor', 'Patient': 'Impactee']).
  503fnpattern(kick, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  504fnpattern(kick, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  505fnpattern(kick, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  506fnpattern(kick, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  507fnpattern(knock, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  508fnpattern(knock, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  509fnpattern(knock, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  510fnpattern(knock, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  511fnpattern(lash, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  512fnpattern(lash, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  513fnpattern(lash, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  514fnpattern(lash, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  515fnpattern(rap, 18010100, 'Cause_impact', ['Agent': 'Agent', 'Instrument': 'Impactor', 'Patient': 'Impactee']).
  516fnpattern(rap, 18010100, 'Impact', ['Instrument': 'Impactor', 'Patient': 'Impactee']).
  517fnpattern(slap, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  518fnpattern(slap, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  519fnpattern(slap, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  520fnpattern(slap, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  521fnpattern(slap, 18010100, 'Cause_impact', ['Agent': 'Agent', 'Instrument': 'Impactor', 'Patient': 'Impactee']).
  522fnpattern(slap, 18010100, 'Impact', ['Instrument': 'Impactor', 'Patient': 'Impactee']).
  523fnpattern(smack, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  524fnpattern(smack, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  525fnpattern(smack, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  526fnpattern(smack, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  527fnpattern(smack, 18010100, 'Cause_impact', ['Agent': 'Agent', 'Instrument': 'Impactor', 'Patient': 'Impactee']).
  528fnpattern(smack, 18010100, 'Impact', ['Instrument': 'Impactor', 'Patient': 'Impactee']).
  529fnpattern(strike, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  530fnpattern(strike, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  531fnpattern(strike, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  532fnpattern(strike, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  533fnpattern(strike, 18010100, 'Cause_impact', ['Agent': 'Agent', 'Instrument': 'Impactor', 'Patient': 'Impactee']).
  534fnpattern(strike, 18010100, 'Impact', ['Instrument': 'Impactor', 'Patient': 'Impactee']).
  535fnpattern(thump, 18010100, 'Cause_impact', ['Agent': 'Agent', 'Instrument': 'Impactor', 'Patient': 'Impactee']).
  536fnpattern(thump, 18010100, 'Impact', ['Instrument': 'Impactor', 'Patient': 'Impactee']).
  537fnpattern(thwack, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  538fnpattern(thwack, 18010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  539fnpattern(thwack, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  540fnpattern(thwack, 18010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  541fnpattern(claw, 18020000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  542fnpattern(claw, 18020000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  543fnpattern(claw, 18020000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  544fnpattern(claw, 18020000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  545fnpattern(punch, 18020000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  546fnpattern(punch, 18020000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  547fnpattern(punch, 18020000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  548fnpattern(punch, 18020000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  549fnpattern(stab, 18020000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  550fnpattern(stab, 18020000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  551fnpattern(stab, 18020000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  552fnpattern(stab, 18020000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  553fnpattern(belt, 18030000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  554fnpattern(belt, 18030000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  555fnpattern(belt, 18030000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  556fnpattern(belt, 18030000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  557fnpattern(bludgeon, 18030000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  558fnpattern(bludgeon, 18030000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  559fnpattern(bludgeon, 18030000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  560fnpattern(bludgeon, 18030000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  561fnpattern(club, 18030000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  562fnpattern(club, 18030000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  563fnpattern(club, 18030000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  564fnpattern(club, 18030000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  565fnpattern(cudgel, 18030000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  566fnpattern(cudgel, 18030000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  567fnpattern(cudgel, 18030000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  568fnpattern(cudgel, 18030000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  569fnpattern(cuff, 18030000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  570fnpattern(cuff, 18030000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  571fnpattern(cuff, 18030000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  572fnpattern(cuff, 18030000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  573fnpattern(knife, 18030000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  574fnpattern(knife, 18030000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  575fnpattern(knife, 18030000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  576fnpattern(knife, 18030000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  577fnpattern(pummel, 18030000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  578fnpattern(pummel, 18030000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  579fnpattern(pummel, 18030000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  580fnpattern(pummel, 18030000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  581fnpattern(whip, 18030000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  582fnpattern(whip, 18030000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  583fnpattern(whip, 18030000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  584fnpattern(whip, 18030000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  585fnpattern(hit, 18040000, 'Impact', ['Theme': 'Impactor', 'Location': 'Impactee']).
  586fnpattern(bang, 18040100, 'Impact', ['Theme': 'Impactor', 'Location': 'Impactee']).
  587fnpattern(bump, 18040100, 'Impact', ['Theme': 'Impactor', 'Location': 'Impactee']).
  588fnpattern(crash, 18040100, 'Impact', ['Theme': 'Impactor', 'Location': 'Impactee']).
  589fnpattern(slam, 18040100, 'Impact', ['Theme': 'Impactor', 'Location': 'Impactee']).
  590fnpattern(smash, 18040100, 'Impact', ['Theme': 'Impactor', 'Location': 'Impactee']).
  591fnpattern(thud, 18040100, 'Impact', ['Theme': 'Impactor', 'Location': 'Impactee']).
  592fnpattern(jab, 19000000, 'Cause_harm', ['Agent': 'Agent', 'Destination': 'Victim']).
  593fnpattern(jab, 19000000, 'Cause_harm', ['Agent': 'Agent', 'Destination': 'Body_part']).
  594fnpattern(jab, 19000000, 'Cause_harm', ['Agent': 'Cause', 'Destination': 'Victim']).
  595fnpattern(jab, 19000000, 'Cause_harm', ['Agent': 'Cause', 'Destination': 'Body_part']).
  596fnpattern(graze, 20000100, 'Cause_impact', ['Agent': 'Agent', 'Instrument': 'Impactor', 'Experiencer': 'Impactee']).
  597fnpattern(graze, 20000100, 'Impact', ['Instrument': 'Impactor', 'Experiencer': 'Impactee']).
  598fnpattern(chip, 21010100, 'Damaging', ['Agent': 'Agent', 'Patient': 'Patient']).
  599fnpattern(cut, 21010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  600fnpattern(cut, 21010100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  601fnpattern(cut, 21010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  602fnpattern(cut, 21010100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  603fnpattern(cut, 21010100, 'Experience_bodily_harm', ['Agent': 'Agent', 'Patient': 'Patient', 'Instrument': 'Injuring_entity']).
  604fnpattern(scratch, 21010100, 'Damaging', ['Agent': 'Agent', 'Patient': 'Patient']).
  605fnpattern(bruise, 21020100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  606fnpattern(bruise, 21020100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  607fnpattern(bruise, 21020100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  608fnpattern(bruise, 21020100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  609fnpattern(chip, 21020100, 'Damaging', ['Agent': 'Agent', 'Patient': 'Patient']).
  610fnpattern(crush, 21020100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  611fnpattern(crush, 21020100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  612fnpattern(crush, 21020100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  613fnpattern(crush, 21020100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  614fnpattern(crush, 21020100, 'Grinding', ['Agent': 'Grinder', 'Patient': 'Undergoer', 'Instrument': 'Instrument']).
  615fnpattern(dent, 21020100, 'Damaging', ['Agent': 'Agent', 'Patient': 'Patient']).
  616fnpattern(gash, 21020100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  617fnpattern(gash, 21020100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  618fnpattern(gash, 21020100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  619fnpattern(gash, 21020100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  620fnpattern(grate, 21020100, 'Grinding', ['Agent': 'Grinder', 'Patient': 'Undergoer', 'Instrument': 'Instrument']).
  621fnpattern(grind, 21020100, 'Grinding', ['Agent': 'Grinder', 'Patient': 'Undergoer', 'Instrument': 'Instrument']).
  622fnpattern(nick, 21020100, 'Damaging', ['Agent': 'Agent', 'Patient': 'Patient']).
  623fnpattern(pulverize, 21020100, 'Grinding', ['Agent': 'Grinder', 'Patient': 'Undergoer', 'Instrument': 'Instrument']).
  624fnpattern(shred, 21020100, 'Cause_to_fragment', ['Agent': 'Agent', 'Patient': 'Whole_patient']).
  625fnpattern(shred, 21020100, 'Grinding', ['Agent': 'Grinder', 'Patient': 'Undergoer', 'Instrument': 'Instrument']).
  626fnpattern(slice, 21020100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  627fnpattern(slice, 21020100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  628fnpattern(slice, 21020100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  629fnpattern(slice, 21020100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  630fnpattern(squash, 21020100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  631fnpattern(squash, 21020100, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  632fnpattern(squash, 21020100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  633fnpattern(squash, 21020100, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  634fnpattern(chop, 21020200, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  635fnpattern(chop, 21020200, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  636fnpattern(chop, 21020200, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  637fnpattern(chop, 21020200, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  638fnpattern(mill, 21020200, 'Grinding', ['Agent': 'Grinder', 'Patient': 'Undergoer', 'Instrument': 'Instrument']).
  639fnpattern(punch, 21020200, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  640fnpattern(punch, 21020200, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  641fnpattern(punch, 21020200, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  642fnpattern(punch, 21020200, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  643fnpattern(spear, 21020200, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
  644fnpattern(spear, 21020200, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
  645fnpattern(spear, 21020200, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
  646fnpattern(spear, 21020200, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
  647fnpattern(blend, 22010110, 'Amalgamation', ['Patient1': 'Part_1', 'Patient2': 'Part_2']).
  648fnpattern(blend, 22010110, 'Cause_to_amalgamate', ['Agent': 'Agent', 'Patient1': 'Part_1', 'Patient2': 'Part_2']).
  649fnpattern(combine, 22010110, 'Amalgamation', ['Patient1': 'Part_1', 'Patient2': 'Part_2']).
  650fnpattern(combine, 22010110, 'Cause_to_amalgamate', ['Agent': 'Agent', 'Patient1': 'Part_1', 'Patient2': 'Part_2']).
  651fnpattern(commingle, 22010110, 'Amalgamation', ['Patient1': 'Part_1', 'Patient2': 'Part_2']).
  652fnpattern(commingle, 22010110, 'Cause_to_amalgamate', ['Agent': 'Agent', 'Patient1': 'Part_1', 'Patient2': 'Part_2']).
  653fnpattern(fuse, 22010110, 'Amalgamation', ['Patient1': 'Part_1', 'Patient2': 'Part_2']).
  654fnpattern(fuse, 22010110, 'Cause_to_amalgamate', ['Agent': 'Agent', 'Patient1': 'Part_1', 'Patient2': 'Part_2']).
  655fnpattern(merge, 22010110, 'Amalgamation', ['Patient1': 'Part_1', 'Patient2': 'Part_2']).
  656fnpattern(merge, 22010110, 'Cause_to_amalgamate', ['Agent': 'Agent', 'Patient1': 'Part_1', 'Patient2': 'Part_2']).
  657fnpattern(mix, 22010110, 'Cause_to_amalgamate', ['Agent': 'Agent', 'Patient1': 'Part_1', 'Patient2': 'Part_2']).
  658fnpattern(connect, 22010210, 'Make_cognitive_connection', ['Agent': 'Cognizer', 'Patient1': 'Concept_1', 'Patient2': 'Concept_2']).
  659fnpattern(join, 22010210, 'Cause_to_amalgamate', ['Agent': 'Agent', 'Patient1': 'Part_1', 'Patient2': 'Part_2']).
  660fnpattern(link, 22010210, 'Make_cognitive_connection', ['Agent': 'Cognizer', 'Patient1': 'Concept_1', 'Patient2': 'Concept_2']).
  661fnpattern(match, 22020100, 'Compatibility', ['Patient1': 'Item_1', 'Patient2': 'Item_2', 'Patient': 'Items']).
  662fnpattern(amalgamate, 22020110, 'Amalgamation', ['Patient1': 'Part_1', 'Patient2': 'Part_2']).
  663fnpattern(amalgamate, 22020110, 'Cause_to_amalgamate', ['Agent': 'Agent', 'Patient1': 'Part_1', 'Patient2': 'Part_2']).
  664fnpattern(harmonize, 22020210, 'Compatibility', ['Patient1': 'Item_1', 'Patient2': 'Item_2', 'Patient': 'Items']).
  665fnpattern(rhyme, 22020210, 'Compatibility', ['Patient1': 'Item_1', 'Patient2': 'Item_2', 'Patient': 'Items']).
  666fnpattern(unify, 22020210, 'Amalgamation', ['Patient1': 'Part_1', 'Patient2': 'Part_2']).
  667fnpattern(unify, 22020210, 'Cause_to_amalgamate', ['Agent': 'Agent', 'Patient1': 'Part_1', 'Patient2': 'Part_2']).
  668fnpattern(unite, 22020210, 'Amalgamation', ['Patient1': 'Part_1', 'Patient2': 'Part_2']).
  669fnpattern(unite, 22020210, 'Cause_to_amalgamate', ['Agent': 'Agent', 'Patient1': 'Part_1', 'Patient2': 'Part_2']).
  670fnpattern(lump, 22030100, 'Cause_to_amalgamate', ['Agent': 'Agent', 'Patient1': 'Part_1', 'Patient2': 'Part_2']).
  671fnpattern(fuse, 22030110, 'Amalgamation', ['Patient1': 'Part_1', 'Patient2': 'Part_2']).
  672fnpattern(fuse, 22030110, 'Cause_to_amalgamate', ['Agent': 'Agent', 'Patient1': 'Part_1', 'Patient2': 'Part_2']).
  673fnpattern(sew, 22030200, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  674fnpattern(stick, 22030200, 'Inchoative_attaching', ['Patient1': 'Connector', 'Patient2': 'Goal']).
  675fnpattern(attach, 22030210, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  676fnpattern(attach, 22030210, 'Inchoative_attaching', ['Patient1': 'Connector', 'Patient2': 'Goal']).
  677fnpattern(bind, 22030210, 'Inchoative_attaching', ['Patient1': 'Connector', 'Patient2': 'Goal']).
  678fnpattern(bond, 22030210, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  679fnpattern(fasten, 22030210, 'Inchoative_attaching', ['Patient1': 'Connector', 'Patient2': 'Goal']).
  680fnpattern(moor, 22030210, 'Inchoative_attaching', ['Patient1': 'Connector', 'Patient2': 'Goal']).
  681fnpattern(weld, 22030210, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  682fnpattern(anchor, 22040000, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  683fnpattern(cement, 22040000, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  684fnpattern(chain, 22040000, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  685fnpattern(fetter, 22040000, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  686fnpattern(glue, 22040000, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  687fnpattern(handcuff, 22040000, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  688fnpattern(hitch, 22040000, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  689fnpattern(hook, 22040000, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  690fnpattern(lash, 22040000, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  691fnpattern(manacle, 22040000, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  692fnpattern(moor, 22040000, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  693fnpattern(nail, 22040000, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  694fnpattern(pin, 22040000, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  695fnpattern(plaster, 22040000, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  696fnpattern(rivet, 22040000, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  697fnpattern(shackle, 22040000, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  698fnpattern(solder, 22040000, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  699fnpattern(staple, 22040000, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  700fnpattern(tack, 22040000, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  701fnpattern(tape, 22040000, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  702fnpattern(tether, 22040000, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  703fnpattern(tie, 22040000, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Connector', 'Patient2': 'Goal']).
  704fnpattern(divide, 23010100, 'Separation', ['Agent': 'Agent', 'Patient1': 'Part_1', 'Patient2': 'Part_2']).
  705fnpattern(segregate, 23010100, 'Separation', ['Agent': 'Agent', 'Patient1': 'Part_1', 'Patient2': 'Part_2']).
  706fnpattern(part, 23010200, 'Separation', ['Agent': 'Agent', 'Patient1': 'Part_1', 'Patient2': 'Part_2']).
  707fnpattern(separate, 23010200, 'Separation', ['Agent': 'Agent', 'Patient1': 'Part_1', 'Patient2': 'Part_2']).
  708fnpattern(break, 23020000, 'Cause_to_fragment', ['Agent': 'Agent', 'Patient1': 'Whole_patient']).
  709fnpattern(rip, 23020000, 'Cause_to_fragment', ['Agent': 'Agent', 'Patient1': 'Whole_patient']).
  710fnpattern(split, 23020000, 'Separation', ['Patient1': 'Part_1', 'Patient2': 'Part_2']).
  711fnpattern(tear, 23020000, 'Cause_to_fragment', ['Agent': 'Agent', 'Patient1': 'Whole_patient']).
  712fnpattern(detach, 23030000, 'Attaching', ['Agent': 'Agent', 'Patient1': 'Item', 'Patient2': 'Goal']).
  713fnpattern(dismantle, 23030000, 'Destroying', ['Agent': 'Agent', 'Patient': 'Undergoer']).
  714fnpattern(dismantle, 23030000, 'Destroying', ['Agent': 'Destroyer', 'Patient': 'Undergoer']).
  715fnpattern(partition, 23030000, 'Separation', ['Agent': 'Agent', 'Patient1': 'Part_1', 'Patient2': 'Part_2']).
  716fnpattern(unbuckle, 23030000, 'Closure', ['Agent': 'Agent', 'Patient1': 'Fastener', 'Patient2': 'Containing_object']).
  717fnpattern(unfasten, 23030000, 'Closure', ['Agent': 'Agent', 'Patient1': 'Fastener', 'Patient2': 'Containing_object']).
  718fnpattern(unscrew, 23030000, 'Closure', ['Agent': 'Agent', 'Patient1': 'Fastener', 'Patient2': 'Containing_object']).
  719fnpattern(unzip, 23030000, 'Closure', ['Agent': 'Agent', 'Patient1': 'Fastener', 'Patient2': 'Containing_object']).
  720fnpattern(dye, 24000000, 'Processing_materials', ['Agent': 'Agent', 'Theme': 'Material']).
  721fnpattern(glaze, 24000000, 'Filling', ['Agent': 'Agent', 'Theme': 'Theme']).
  722fnpattern(paint, 24000000, 'Filling', ['Agent': 'Agent', 'Theme': 'Theme']).
  723fnpattern(stain, 24000000, 'Processing_materials', ['Agent': 'Agent', 'Theme': 'Material']).
  724fnpattern(varnish, 24000000, 'Filling', ['Agent': 'Agent', 'Theme': 'Theme']).
  725fnpattern(etch, 25010000, 'Processing_materials', ['Agent': 'Agent', 'Destination': 'Material']).
  726fnpattern(copy, 25020000, 'Duplication', ['Theme': 'Copy', 'Agent': 'Creator']).
  727fnpattern(forge, 25020000, 'Imitation', ['Theme': 'Text', 'Agent': 'Author']).
  728fnpattern(misspell, 25020000, 'Spelling_and_pronouncing', ['Theme': 'Formal_realization', 'Agent': 'Speaker', 'Destination': 'Context']).
  729fnpattern(print, 25020000, 'Text_creation', ['Theme': 'Text', 'Agent': 'Author']).
  730fnpattern(spell, 25020000, 'Spelling_and_pronouncing', ['Theme': 'Formal_realization', 'Agent': 'Speaker', 'Destination': 'Context']).
  731fnpattern(type, 25020000, 'Text_creation', ['Theme': 'Text', 'Agent': 'Author']).
  732fnpattern(write, 25020000, 'Text_creation', ['Theme': 'Text', 'Agent': 'Author']).
  733fnpattern(gild, 25030000, 'Filling', ['Agent': 'Agent', 'Destination': 'Goal', 'Theme': 'Theme']).
  734fnpattern(chronicle, 25040000, 'Text_creation', ['Theme': 'Text', 'Agent': 'Author', 'Destination': 'Addressee']).
  735fnpattern(chronicle, 25040000, 'Text_creation', ['Theme': 'Text', 'Agent': 'Author', 'Destination': 'Place']).
  736fnpattern(copy, 25040000, 'Duplication', ['Theme': 'Copy', 'Agent': 'Creator']).
  737fnpattern(forge, 25040000, 'Imitation', ['Theme': 'Copy', 'Agent': 'Creator']).
  738fnpattern(photocopy, 25040000, 'Duplication', ['Theme': 'Copy', 'Agent': 'Creator']).
  739fnpattern(type, 25040000, 'Text_creation', ['Theme': 'Text', 'Agent': 'Author', 'Destination': 'Addressee']).
  740fnpattern(type, 25040000, 'Text_creation', ['Theme': 'Text', 'Agent': 'Author', 'Destination': 'Place']).
  741fnpattern(assemble, 26010000, 'Building', ['Material': 'Components', 'Product': 'Created_entity', 'Agent': 'Agent']).
  742fnpattern(bake, 26010000, 'Cooking_creation', ['Product': 'Produced_food', 'Agent': 'Cook']).
  743fnpattern(cook, 26010000, 'Cooking_creation', ['Product': 'Produced_food', 'Agent': 'Cook']).
  744fnpattern(cook_up, 26010000, 'Invention', ['Product': 'Invention', 'Agent': 'Cognizer']).
  745fnpattern(formulate, 26010000, 'Invention', ['Product': 'Invention', 'Agent': 'Cognizer']).
  746fnpattern(hatch, 26010000, 'Invention', ['Product': 'Invention', 'Agent': 'Cognizer']).
  747fnpattern(build, 26010100, 'Building', ['Material': 'Components', 'Product': 'Created_entity', 'Agent': 'Agent']).
  748fnpattern(make, 26010100, 'Building', ['Material': 'Components', 'Product': 'Created_entity', 'Agent': 'Agent']).
  749fnpattern(make, 26010100, 'Cooking_creation', ['Product': 'Produced_food', 'Agent': 'Cook']).
  750fnpattern(make, 26010100, 'Intentionally_create', ['Product': 'Created_entity', 'Agent': 'Creator']).
  751fnpattern(make, 26010100, 'Manufacturing', ['Product': 'Product', 'Agent': 'Manufacturer']).
  752fnpattern(develop, 26020000, 'Coming_to_be', ['Product': 'Entity', 'Material': 'Components']).
  753fnpattern(hatch, 26020000, 'Invention', ['Product': 'Invention', 'Agent': 'Cognizer']).
  754fnpattern(bake, 26030100, 'Cooking_creation', ['Product': 'Produced_food', 'Agent': 'Cook']).
  755fnpattern(cook, 26030100, 'Cooking_creation', ['Product': 'Produced_food', 'Agent': 'Cook']).
  756fnpattern(light, 26030100, 'Setting_fire', ['Product': 'Flamables', 'Agent': 'Kindler']).
  757fnpattern(prepare, 26030100, 'Cooking_creation', ['Product': 'Produced_food', 'Agent': 'Cook']).
  758fnpattern(coin, 26040000, 'Achieving_first', ['Product': 'New_idea', 'Agent': 'Cognizer']).
  759fnpattern(coin, 26040000, 'Invention', ['Product': 'Invention', 'Agent': 'Cognizer']).
  760fnpattern(compose, 26040000, 'Text_creation', ['Product': 'Text', 'Agent': 'Author']).
  761fnpattern(concoct, 26040000, 'Cooking_creation', ['Product': 'Produced_food', 'Material': 'Ingredients', 'Agent': 'Cook']).
  762fnpattern(concoct, 26040000, 'Invention', ['Product': 'Invention', 'Agent': 'Cognizer']).
  763fnpattern(construct, 26040000, 'Building', ['Product': 'Created_entity', 'Material': 'Components', 'Agent': 'Agent']).
  764fnpattern(contrive, 26040000, 'Invention', ['Product': 'Invention', 'Agent': 'Cognizer']).
  765fnpattern(create, 26040000, 'Intentionally_create', ['Product': 'Created_entity', 'Agent': 'Creator']).
  766fnpattern(invent, 26040000, 'Achieving_first', ['Product': 'New_idea', 'Agent': 'Cognizer']).
  767fnpattern(invent, 26040000, 'Invention', ['Product': 'Invention', 'Agent': 'Cognizer']).
  768fnpattern(manufacture, 26040000, 'Manufacturing', ['Product': 'Product', 'Material': 'Resource', 'Agent': 'Manufacturer']).
  769fnpattern(produce, 26040000, 'Manufacturing', ['Product': 'Product', 'Material': 'Resource', 'Agent': 'Manufacturer']).
  770fnpattern(design, 26040100, 'Invention', ['Product': 'Invention', 'Agent': 'Cognizer']).
  771fnpattern(stage, 26040100, 'Behind_the_scenes', ['Product': 'Production', 'Material': 'Medium', 'Agent': 'Artist']).
  772fnpattern(bend, 26050000, 'Reshaping', ['Product': 'Result', 'Material': 'Undergoer', 'Agent': 'Deformer']).
  773fnpattern(fold, 26050000, 'Reshaping', ['Product': 'Result', 'Material': 'Undergoer', 'Agent': 'Deformer']).
  774fnpattern(knead, 26050000, 'Manipulation', ['Agent': 'Agent', 'Product': 'Entity']).
  775fnpattern(squash, 26050000, 'Reshaping', ['Product': 'Result', 'Material': 'Undergoer', 'Agent': 'Deformer']).
  776fnpattern(squeeze, 26050000, 'Manipulation', ['Agent': 'Agent', 'Product': 'Entity']).
  777fnpattern(squish, 26050000, 'Reshaping', ['Product': 'Result', 'Material': 'Undergoer', 'Agent': 'Deformer']).
  778fnpattern(deform, 26061000, 'Reshaping', ['Agent': 'Deformer', 'Material': 'Undergoer', 'Product': 'Result']).
  779fnpattern(translate, 26061000, 'Categorization', ['Agent': 'Cognizer', 'Patient': 'Item', 'Product': 'Category']).
  780fnpattern(switch, 26062100, 'Replacing', ['Agent': 'Agent', 'Source': 'Old', 'Destination': 'New']).
  781fnpattern(direct, 26070100, 'Behind_the_scenes', ['Agent': 'Artist', 'Theme': 'Production', 'Beneficiary': 'Studio']).
  782fnpattern(improvise, 26070100, 'Invention', ['Agent': 'Cognizer', 'Theme': 'Invention']).
  783fnpattern(play, 26070110, 'Performers_and_roles', ['Agent': 'Performer', 'Theme': 'Performance', 'Beneficiary': 'Audience']).
  784fnpattern(compose, 26070200, 'Text_creation', ['Agent': 'Author', 'Theme': 'Text', 'Beneficiary': 'Purpose']).
  785fnpattern(produce, 26070200, 'Behind_the_scenes', ['Agent': 'Artist', 'Theme': 'Production', 'Beneficiary': 'Studio']).
  786fnpattern(write, 26070210, 'Text_creation', ['Agent': 'Author', 'Theme': 'Text', 'Beneficiary': 'Purpose']).
  787fnpattern(cause, 27000000, 'Causation', ['Theme1': 'Cause', 'Theme2': 'Effect']).
  788fnpattern(create, 27000000, 'Cause_to_start', ['Theme1': 'Cause', 'Theme2': 'Effect']).
  789fnpattern(engender, 27000000, 'Cause_to_start', ['Theme1': 'Cause', 'Theme2': 'Effect']).
  790fnpattern(generate, 27000000, 'Cause_to_start', ['Theme1': 'Cause', 'Theme2': 'Effect']).
  791fnpattern(sire, 27000000, 'Birth', ['Theme1': 'Mother', 'Theme2': 'Child']).
  792fnpattern(calve, 28000000, 'Birth', ['Agent': 'Parents', 'Patient': 'Child']).
  793fnpattern(spawn, 28000000, 'Birth', ['Agent': 'Parents', 'Patient': 'Child']).
  794fnpattern(whelp, 28000000, 'Birth', ['Agent': 'Parents', 'Patient': 'Child']).
  795fnpattern(appoint, 29010100, 'Change_of_leadership', ['Agent': 'Selector', 'Theme': 'New_leader', 'Predicate': 'Role']).
  796fnpattern(elect, 29010100, 'Change_of_leadership', ['Agent': 'Selector', 'Theme': 'New_leader', 'Predicate': 'Role']).
  797fnpattern(name, 29010100, 'Name_conferral', ['Agent': 'Agent', 'Theme': 'Entity', 'Predicate': 'Name']).
  798fnpattern(imagine, 29010200, 'Awareness', ['Agent': 'Cognizer', 'Theme': 'Content']).
  799fnpattern(reckon, 29010200, 'Awareness', ['Agent': 'Cognizer', 'Theme': 'Content']).
  800fnpattern(depict, 29020000, 'Communicate_categorization', ['Agent': 'Speaker', 'Theme': 'Item', 'Predicate': 'Category']).
  801fnpattern(cite, 29020100, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Role']).
  802fnpattern(class, 29020100, 'Categorization', ['Agent': 'Cognizer', 'Theme': 'Item', 'Predicate': 'Category']).
  803fnpattern(classify, 29020100, 'Categorization', ['Agent': 'Cognizer', 'Theme': 'Item', 'Predicate': 'Category']).
  804fnpattern(count, 29020100, 'Categorization', ['Agent': 'Cognizer', 'Theme': 'Item', 'Predicate': 'Category']).
  805fnpattern(address, 29020200, 'Speak_on_topic', ['Agent': 'Speaker', 'Theme': 'Topic']).
  806fnpattern(address, 29020200, 'Topic', ['Agent': 'Communicator', 'Theme': 'Topic']).
  807fnpattern(appreciate, 29020200, 'Judgment', ['Agent': 'Cognizer', 'Theme': 'Evaluee', 'Predicate': 'Role']).
  808fnpattern(characterize, 29020200, 'Communicate_categorization', ['Agent': 'Speaker', 'Theme': 'Item', 'Predicate': 'Category']).
  809fnpattern(know, 29020200, 'Awareness', ['Agent': 'Cognizer', 'Theme': 'Content']).
  810fnpattern(perceive, 29020200, 'Categorization', ['Agent': 'Cognizer', 'Theme': 'Item', 'Predicate': 'Category']).
  811fnpattern(recollect, 29020200, 'Memory', ['Agent': 'Cognizer', 'Theme': 'Content']).
  812fnpattern(regard, 29020200, 'Categorization', ['Agent': 'Cognizer', 'Theme': 'Item', 'Predicate': 'Category']).
  813fnpattern(remember, 29020200, 'Memory', ['Agent': 'Cognizer', 'Theme': 'Content']).
  814fnpattern(treat, 29020200, 'Communicate_categorization', ['Agent': 'Speaker', 'Theme': 'Item', 'Predicate': 'Category']).
  815fnpattern(treat, 29020200, 'Topic', ['Agent': 'Communicator', 'Theme': 'Topic']).
  816fnpattern(value, 29020200, 'Judgment', ['Agent': 'Cognizer', 'Theme': 'Evaluee', 'Predicate': 'Role']).
  817fnpattern(portray, 29020300, 'Communicate_categorization', ['Agent': 'Speaker', 'Theme': 'Item', 'Predicate': 'Category']).
  818fnpattern(praise, 29020300, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Role']).
  819fnpattern(represent, 29020300, 'Communicate_categorization', ['Agent': 'Speaker', 'Theme': 'Item', 'Predicate': 'Category']).
  820fnpattern(stigmatize, 29020300, 'Judgment', ['Agent': 'Cognizer', 'Theme': 'Evaluee', 'Predicate': 'Role']).
  821fnpattern(characterize, 29020400, 'Communicate_categorization', ['Agent': 'Speaker', 'Theme': 'Item', 'Predicate': 'Category']).
  822fnpattern(define, 29020400, 'Communicate_categorization', ['Agent': 'Speaker', 'Theme': 'Item', 'Predicate': 'Category']).
  823fnpattern(describe, 29020400, 'Communicate_categorization', ['Agent': 'Speaker', 'Theme': 'Item', 'Predicate': 'Category']).
  824fnpattern(dub, 29030000, 'Name_conferral', ['Agent': 'Speaker', 'Theme': 'Entity', 'Predicate': 'Name']).
  825fnpattern(baptize, 29030100, 'Name_conferral', ['Agent': 'Speaker', 'Theme': 'Entity', 'Predicate': 'Name']).
  826fnpattern(christen, 29030100, 'Name_conferral', ['Agent': 'Speaker', 'Theme': 'Entity', 'Predicate': 'Name']).
  827fnpattern(name, 29030100, 'Name_conferral', ['Agent': 'Speaker', 'Theme': 'Entity', 'Predicate': 'Name']).
  828fnpattern(nickname, 29030100, 'Name_conferral', ['Agent': 'Speaker', 'Theme': 'Entity', 'Predicate': 'Name']).
  829fnpattern(avow, 29040100, 'Statement', ['Agent': 'Speaker', 'Theme': 'Addressee', 'Predicate': 'Message']).
  830fnpattern(confess, 29040100, 'Statement', ['Agent': 'Speaker', 'Theme': 'Addressee', 'Predicate': 'Message']).
  831fnpattern(declare, 29040100, 'Statement', ['Agent': 'Speaker', 'Theme': 'Addressee', 'Predicate': 'Message']).
  832fnpattern(profess, 29040100, 'Statement', ['Agent': 'Speaker', 'Theme': 'Addressee', 'Predicate': 'Message']).
  833fnpattern(believe, 29040200, 'Awareness', ['Agent': 'Cognizer', 'Theme': 'Content']).
  834fnpattern(find, 29040200, 'Becoming_aware', ['Agent': 'Cognizer', 'Theme': 'Phenomenon', 'Predicate': 'State']).
  835fnpattern(presume, 29040200, 'Awareness', ['Agent': 'Cognizer', 'Theme': 'Content']).
  836fnpattern(think, 29040200, 'Awareness', ['Agent': 'Cognizer', 'Theme': 'Content']).
  837fnpattern(conjecture, 29050100, 'Statement', ['Agent': 'Speaker', 'Theme': 'Addressee', 'Predicate': 'Message']).
  838fnpattern(doubt, 29050100, 'Certainty', ['Agent': 'Cognizer', 'Theme': 'Content']).
  839fnpattern(foresee, 29050100, 'Expectation', ['Agent': 'Cognizer', 'Theme': 'Phenomenon']).
  840fnpattern(foresee, 29050100, 'Expectation', ['Agent': 'Cognizer', 'Theme': 'Topic']).
  841fnpattern(foretell, 29050100, 'Predicting', ['Agent': 'Speaker', 'Theme': 'Eventuality']).
  842fnpattern(guess, 29050100, 'Coming_to_believe', ['Agent': 'Cognizer', 'Theme': 'Content']).
  843fnpattern(know, 29050100, 'Awareness', ['Agent': 'Cognizer', 'Theme': 'Content']).
  844fnpattern(prophesy, 29050100, 'Predicting', ['Agent': 'Speaker', 'Theme': 'Eventuality']).
  845fnpattern(realize, 29050100, 'Coming_to_believe', ['Agent': 'Cognizer', 'Theme': 'Content']).
  846fnpattern(recognize, 29050100, 'Becoming_aware', ['Agent': 'Cognizer', 'Theme': 'Phenomenon', 'Predicate': 'State']).
  847fnpattern(surmise, 29050100, 'Coming_to_believe', ['Agent': 'Cognizer', 'Theme': 'Content']).
  848fnpattern(suspect, 29050100, 'Awareness', ['Agent': 'Cognizer', 'Theme': 'Content']).
  849fnpattern(vaticinate, 29050100, 'Predicting', ['Agent': 'Speaker', 'Theme': 'Eventuality']).
  850fnpattern(admit, 29050200, 'Statement', ['Agent': 'Speaker', 'Theme': 'Addressee', 'Predicate': 'Message']).
  851fnpattern(assert, 29050200, 'Statement', ['Agent': 'Speaker', 'Theme': 'Addressee', 'Predicate': 'Message']).
  852fnpattern(discover, 29050200, 'Becoming_aware', ['Agent': 'Cognizer', 'Theme': 'Phenomenon', 'Predicate': 'State']).
  853fnpattern(maintain, 29050200, 'Statement', ['Agent': 'Speaker', 'Theme': 'Addressee', 'Predicate': 'Message']).
  854fnpattern(rate, 29060000, 'Assessing', ['Agent': 'Assessor']).
  855fnpattern(volunteer, 29080000, 'Commitment', ['Agent': 'Speaker', 'Theme': 'Addressee']).
  856fnpattern(bully, 29080100, 'Manipulate_into_doing', ['Agent': 'Manipulator', 'Theme': 'Victim']).
  857fnpattern(butcher, 29080100, 'Killing', ['Agent': 'Killer', 'Theme': 'Victim']).
  858fnpattern(clerk, 29080100, 'Being_employed', ['Agent': 'Employee', 'Theme': 'Task']).
  859fnpattern(escort, 29080100, 'Cotheme', ['Agent': 'Source', 'Theme': 'New_leader']).
  860fnpattern(host, 29080100, 'Social_event', ['Agent': 'Host', 'Theme': 'Social_event']).
  861fnpattern(partner, 29080100, 'Collaboration', ['Agent': 'Partners', 'Theme': 'Undertaking']).
  862fnpattern(pioneer, 29080100, 'Achieving_first', ['Agent': 'Cognizer', 'Theme': 'New_idea']).
  863fnpattern(shepherd, 29080100, 'Cotheme', ['Agent': 'Source', 'Theme': 'New_leader']).
  864fnpattern(tutor, 29080100, 'Education_teaching', ['Agent': 'Teacher', 'Theme': 'Student']).
  865fnpattern(usher, 29080100, 'Cotheme', ['Agent': 'Source', 'Theme': 'New_leader']).
  866fnpattern(volunteer, 29080100, 'Commitment', ['Agent': 'Speaker', 'Theme': 'Addressee']).
  867fnpattern(star, 29080110, 'Performers_and_roles', ['Agent': 'Performer', 'Theme': 'Audience']).
  868fnpattern(consider, 29090111, 'Categorization', ['Agent': 'Cognizer', 'Theme': 'Item', 'Predicate': 'Category']).
  869fnpattern(consider, 29090111, 'Cogitation', ['Agent': 'Cognizer', 'Theme': 'Topic']).
  870fnpattern(detect, 30010000, 'Perception_experience', ['Experiencer': 'Perceiver', 'Stimulus': 'Phenomenon']).
  871fnpattern(discern, 30010000, 'Becoming_aware', ['Experiencer': 'Cognizer', 'Stimulus': 'Phenomenon']).
  872fnpattern(feel, 30010000, 'Perception_experience', ['Experiencer': 'Perceiver', 'Stimulus': 'Phenomenon']).
  873fnpattern(notice, 30010000, 'Becoming_aware', ['Experiencer': 'Cognizer', 'Stimulus': 'Phenomenon']).
  874fnpattern(see, 30010000, 'Perception_experience', ['Experiencer': 'Perceiver', 'Stimulus': 'Phenomenon']).
  875fnpattern(sense, 30010000, 'Perception_experience', ['Experiencer': 'Perceiver', 'Stimulus': 'Phenomenon']).
  876fnpattern(smell, 30010000, 'Perception_experience', ['Experiencer': 'Perceiver', 'Stimulus': 'Phenomenon']).
  877fnpattern(taste, 30010000, 'Perception_experience', ['Experiencer': 'Perceiver', 'Stimulus': 'Phenomenon']).
  878fnpattern(hear, 30010100, 'Perception_experience', ['Experiencer': 'Perceiver', 'Stimulus': 'Phenomenon']).
  879fnpattern(descry, 30020000, 'Becoming_aware', ['Experiencer': 'Cognizer', 'Stimulus': 'Phenomenon']).
  880fnpattern(discover, 30020000, 'Becoming_aware', ['Experiencer': 'Cognizer', 'Stimulus': 'Phenomenon']).
  881fnpattern(espy, 30020000, 'Becoming_aware', ['Experiencer': 'Cognizer', 'Stimulus': 'Phenomenon']).
  882fnpattern(experience, 30020000, 'Feeling', ['Experiencer': 'Experiencer', 'Stimulus': 'Emotion']).
  883fnpattern(experience, 30020000, 'Feeling', ['Experiencer': 'Experiencer', 'Stimulus': 'Emotional_state']).
  884fnpattern(note, 30020000, 'Becoming_aware', ['Experiencer': 'Cognizer', 'Stimulus': 'Phenomenon']).
  885fnpattern(observe, 30020000, 'Perception_active', ['Experiencer': 'Perceiver_agentive', 'Stimulus': 'Phenomenon']).
  886fnpattern(overhear, 30020000, 'Perception_experience', ['Experiencer': 'Perceiver_passive', 'Stimulus': 'Phenomenon']).
  887fnpattern(perceive, 30020000, 'Perception_experience', ['Experiencer': 'Perceiver_passive', 'Stimulus': 'Phenomenon']).
  888fnpattern(peruse, 30020000, 'Reading', ['Experiencer': 'Reader', 'Stimulus': 'Text']).
  889fnpattern(peruse, 30020000, 'Scrutiny', ['Experiencer': 'Cognizer', 'Stimulus': 'Phenomenon']).
  890fnpattern(recognize, 30020000, 'Becoming_aware', ['Experiencer': 'Cognizer', 'Stimulus': 'Phenomenon']).
  891fnpattern(sniff, 30020000, 'Perception_active', ['Experiencer': 'Perceiver_agentive', 'Stimulus': 'Phenomenon']).
  892fnpattern(spot, 30020000, 'Becoming_aware', ['Experiencer': 'Cognizer', 'Stimulus': 'Phenomenon']).
  893fnpattern(spy, 30020000, 'Perception_active', ['Experiencer': 'Perceiver_agentive', 'Stimulus': 'Phenomenon']).
  894fnpattern(view, 30020000, 'Perception_active', ['Experiencer': 'Perceiver_agentive', 'Stimulus': 'Phenomenon']).
  895fnpattern(watch, 30020000, 'Perception_active', ['Experiencer': 'Perceiver_agentive', 'Stimulus': 'Phenomenon']).
  896fnpattern(gaze, 30030000, 'Perception_active', ['Experiencer': 'Perceiver_agentive', 'Stimulus': 'Phenomenon']).
  897fnpattern(glance, 30030000, 'Perception_active', ['Experiencer': 'Perceiver_agentive', 'Stimulus': 'Phenomenon']).
  898fnpattern(listen, 30030000, 'Perception_active', ['Experiencer': 'Perceiver_agentive', 'Stimulus': 'Phenomenon']).
  899fnpattern(look, 30030000, 'Perception_active', ['Experiencer': 'Perceiver_agentive', 'Stimulus': 'Phenomenon']).
  900fnpattern(peek, 30030000, 'Perception_active', ['Experiencer': 'Perceiver_agentive', 'Stimulus': 'Phenomenon']).
  901fnpattern(peep, 30030000, 'Perception_active', ['Experiencer': 'Perceiver_agentive', 'Stimulus': 'Phenomenon']).
  902fnpattern(peer, 30030000, 'Perception_active', ['Experiencer': 'Perceiver_agentive', 'Stimulus': 'Phenomenon']).
  903fnpattern(sniff, 30030000, 'Perception_active', ['Experiencer': 'Perceiver_agentive', 'Stimulus': 'Phenomenon']).
  904fnpattern(squint, 30030000, 'Perception_active', ['Experiencer': 'Perceiver_agentive', 'Stimulus': 'Phenomenon']).
  905fnpattern(stare, 30030000, 'Perception_active', ['Experiencer': 'Perceiver_agentive', 'Stimulus': 'Phenomenon']).
  906fnpattern(feel, 30040000, 'Appearance', ['Experiencer': 'Perceiver_passive', 'Stimulus': 'Phenomenon']).
  907fnpattern(feel, 30040000, 'Perception_active', ['Experiencer': 'Perceiver_agentive', 'Stimulus': 'Phenomenon']).
  908fnpattern(look, 30040000, 'Appearance', ['Experiencer': 'Perceiver_passive', 'Stimulus': 'Phenomenon']).
  909fnpattern(look, 30040000, 'Perception_active', ['Experiencer': 'Perceiver_agentive', 'Stimulus': 'Phenomenon']).
  910fnpattern(smell, 30040000, 'Appearance', ['Experiencer': 'Perceiver_passive', 'Stimulus': 'Phenomenon']).
  911fnpattern(smell, 30040000, 'Perception_active', ['Experiencer': 'Perceiver_agentive', 'Stimulus': 'Phenomenon']).
  912fnpattern(sound, 30040000, 'Appearance', ['Experiencer': 'Perceiver_passive', 'Stimulus': 'Phenomenon']).
  913fnpattern(taste, 30040000, 'Appearance', ['Experiencer': 'Perceiver_passive', 'Stimulus': 'Phenomenon']).
  914fnpattern(taste, 30040000, 'Perception_active', ['Experiencer': 'Perceiver_agentive', 'Stimulus': 'Phenomenon']).
  915fnpattern(abash, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  916fnpattern(aggravate, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  917fnpattern(aggrieve, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  918fnpattern(alarm, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  919fnpattern(amaze, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  920fnpattern(anger, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  921fnpattern(annoy, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  922fnpattern(antagonize, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  923fnpattern(astonish, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  924fnpattern(astound, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  925fnpattern(baffle, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  926fnpattern(beguile, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  927fnpattern(bewilder, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  928fnpattern(bewitch, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  929fnpattern(bore, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  930fnpattern(calm, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  931fnpattern(captivate, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  932fnpattern(charm, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  933fnpattern(cheer, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  934fnpattern(comfort, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  935fnpattern(confuse, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  936fnpattern(console, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  937fnpattern(dazzle, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  938fnpattern(delight, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  939fnpattern(depress, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  940fnpattern(disappoint, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  941fnpattern(discomfit, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  942fnpattern(disconcert, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  943fnpattern(discourage, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  944fnpattern(dishearten, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  945fnpattern(displease, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  946fnpattern(distress, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  947fnpattern(disturb, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  948fnpattern(embarrass, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  949fnpattern(enchant, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  950fnpattern(enrage, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  951fnpattern(entertain, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  952fnpattern(enthrall, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  953fnpattern(exasperate, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  954fnpattern(excite, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  955fnpattern(exhilarate, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  956fnpattern(fascinate, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  957fnpattern(faze, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  958fnpattern(flabbergast, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  959fnpattern(floor, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  960fnpattern(fluster, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  961fnpattern(frighten, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  962fnpattern(frustrate, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  963fnpattern(gall, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  964fnpattern(gladden, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  965fnpattern(gratify, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  966fnpattern(grieve, 31010000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Cause': 'Content']).
  967fnpattern(hearten, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  968fnpattern(humiliate, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  969fnpattern(impress, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  970fnpattern(incense, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  971fnpattern(infuriate, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  972fnpattern(interest, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  973fnpattern(intimidate, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  974fnpattern(intrigue, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  975fnpattern(irk, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  976fnpattern(irritate, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  977fnpattern(madden, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  978fnpattern(mollify, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  979fnpattern(mortify, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  980fnpattern(mystify, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  981fnpattern(nettle, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  982fnpattern(offend, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  983fnpattern(pacify, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  984fnpattern(perplex, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  985fnpattern(perturb, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  986fnpattern(placate, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  987fnpattern(puzzle, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  988fnpattern(rankle, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  989fnpattern(reassure, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  990fnpattern(repel, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  991fnpattern(revolt, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  992fnpattern(rile, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  993fnpattern(sadden, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  994fnpattern(satisfy, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  995fnpattern(scare, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  996fnpattern(shake, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  997fnpattern(shame, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  998fnpattern(shock, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
  999fnpattern(sicken, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1000fnpattern(sober, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1001fnpattern(solace, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1002fnpattern(soothe, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1003fnpattern(spook, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1004fnpattern(startle, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1005fnpattern(stimulate, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1006fnpattern(sting, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1007fnpattern(stir, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1008fnpattern(stun, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1009fnpattern(stupefy, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1010fnpattern(surprise, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1011fnpattern(terrify, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1012fnpattern(thrill, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1013fnpattern(tickle, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1014fnpattern(torment, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1015fnpattern(torture, 31010000, 'Cause_harm', ['Experiencer': 'Victim', 'Cause': 'Agent']).
 1016fnpattern(torture, 31010000, 'Cause_harm', ['Experiencer': 'Victim', 'Cause': 'Cause']).
 1017fnpattern(trouble, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1018fnpattern(unnerve, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1019fnpattern(unsettle, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1020fnpattern(vex, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1021fnpattern(wow, 31010000, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1022fnpattern(abhor, 31020000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Theme': 'Content']).
 1023fnpattern(admire, 31020000, 'Judgment', ['Experiencer': 'Cognizer', 'Theme': 'Evaluee', 'Predicate': 'Role']).
 1024fnpattern(adore, 31020000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Theme': 'Content']).
 1025fnpattern(affirm, 31020000, 'Statement', ['Experiencer': 'Speaker', 'Theme': 'Message', 'Predicate': 'Topic']).
 1026fnpattern(affirm, 31020000, 'Statement', ['Experiencer': 'Speaker', 'Theme': 'Message', 'Predicate': 'Medium']).
 1027fnpattern(appreciate, 31020000, 'Judgment', ['Experiencer': 'Cognizer', 'Theme': 'Evaluee', 'Predicate': 'Role']).
 1028fnpattern(deify, 31020000, 'Judgment', ['Experiencer': 'Cognizer', 'Theme': 'Evaluee', 'Predicate': 'Role']).
 1029fnpattern(deplore, 31020000, 'Judgment', ['Experiencer': 'Cognizer', 'Theme': 'Evaluee', 'Predicate': 'Role']).
 1030fnpattern(despise, 31020000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Theme': 'Content']).
 1031fnpattern(detest, 31020000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Theme': 'Content']).
 1032fnpattern(disdain, 31020000, 'Judgment', ['Experiencer': 'Cognizer', 'Theme': 'Evaluee', 'Predicate': 'Role']).
 1033fnpattern(dislike, 31020000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Theme': 'Content']).
 1034fnpattern(dread, 31020000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Theme': 'Content']).
 1035fnpattern(enjoy, 31020000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Theme': 'Content']).
 1036fnpattern(envy, 31020000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Theme': 'Content']).
 1037fnpattern(esteem, 31020000, 'Judgment', ['Experiencer': 'Cognizer', 'Theme': 'Evaluee', 'Predicate': 'Role']).
 1038fnpattern(exalt, 31020000, 'Judgment', ['Experiencer': 'Cognizer', 'Theme': 'Evaluee', 'Predicate': 'Role']).
 1039fnpattern(execrate, 31020000, 'Judgment_communication', ['Experiencer': 'Communicator', 'Theme': 'Evaluee']).
 1040fnpattern(fancy, 31020000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Theme': 'Content']).
 1041fnpattern(fear, 31020000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Theme': 'Content']).
 1042fnpattern(hate, 31020000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Theme': 'Content']).
 1043fnpattern(like, 31020000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Theme': 'Content']).
 1044fnpattern(loathe, 31020000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Theme': 'Content']).
 1045fnpattern(love, 31020000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Theme': 'Content']).
 1046fnpattern(mourn, 31020000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Theme': 'Content']).
 1047fnpattern(pity, 31020000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Theme': 'Content']).
 1048fnpattern(prefer, 31020000, 'Partiality', ['Experiencer': 'Judge', 'Theme': 'Dispute', 'Predicate': 'Side_2']).
 1049fnpattern(prefer, 31020000, 'Partiality', ['Experiencer': 'Judge', 'Theme': 'Dispute', 'Predicate': 'Manifestation_of_bias']).
 1050fnpattern(prefer, 31020000, 'Partiality', ['Experiencer': 'Judge', 'Theme': 'Sides', 'Predicate': 'Side_2']).
 1051fnpattern(prefer, 31020000, 'Partiality', ['Experiencer': 'Judge', 'Theme': 'Sides', 'Predicate': 'Manifestation_of_bias']).
 1052fnpattern(prefer, 31020000, 'Partiality', ['Experiencer': 'Judge', 'Theme': 'Side_1', 'Predicate': 'Side_2']).
 1053fnpattern(prefer, 31020000, 'Partiality', ['Experiencer': 'Judge', 'Theme': 'Side_1', 'Predicate': 'Manifestation_of_bias']).
 1054fnpattern(prefer, 31020000, 'Preference', ['Experiencer': 'Experiencer', 'Theme': 'Event', 'Predicate': 'Location_of_event']).
 1055fnpattern(prefer, 31020000, 'Preference', ['Experiencer': 'Experiencer', 'Theme': 'Event', 'Predicate': 'Contrast']).
 1056fnpattern(prefer, 31020000, 'Preference', ['Experiencer': 'Experiencer', 'Theme': 'Focal_participant', 'Predicate': 'Location_of_event']).
 1057fnpattern(prefer, 31020000, 'Preference', ['Experiencer': 'Experiencer', 'Theme': 'Focal_participant', 'Predicate': 'Contrast']).
 1058fnpattern(prize, 31020000, 'Judgment', ['Experiencer': 'Cognizer', 'Theme': 'Evaluee', 'Predicate': 'Role']).
 1059fnpattern(reaffirm, 31020000, 'Statement', ['Experiencer': 'Speaker', 'Theme': 'Message', 'Predicate': 'Topic']).
 1060fnpattern(reaffirm, 31020000, 'Statement', ['Experiencer': 'Speaker', 'Theme': 'Message', 'Predicate': 'Medium']).
 1061fnpattern(regret, 31020000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Theme': 'Content']).
 1062fnpattern(relish, 31020000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Theme': 'Content']).
 1063fnpattern(resent, 31020000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Theme': 'Content']).
 1064fnpattern(respect, 31020000, 'Judgment', ['Experiencer': 'Cognizer', 'Theme': 'Evaluee', 'Predicate': 'Role']).
 1065fnpattern(revere, 31020000, 'Judgment', ['Experiencer': 'Cognizer', 'Theme': 'Evaluee', 'Predicate': 'Role']).
 1066fnpattern(rue, 31020000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Theme': 'Content']).
 1067fnpattern(value, 31020000, 'Judgment', ['Experiencer': 'Cognizer', 'Theme': 'Evaluee', 'Predicate': 'Role']).
 1068fnpattern(cheer, 31030100, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1069fnpattern(gladden, 31030100, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1070fnpattern(madden, 31030100, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1071fnpattern(sicken, 31030100, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1072fnpattern(thrill, 31030100, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1073fnpattern(fear, 31030300, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Cause': 'Content']).
 1074fnpattern(grieve, 31030300, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Cause': 'Content']).
 1075fnpattern(mourn, 31030300, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Cause': 'Content']).
 1076fnpattern(delight, 31030500, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1077fnpattern(delight, 31030500, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Cause': 'Content']).
 1078fnpattern(luxuriate, 31030500, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Cause': 'Content']).
 1079fnpattern(despair, 31030600, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Cause': 'Content']).
 1080fnpattern(disapprove, 31030600, 'Judgment', ['Experiencer': 'Cognizer', 'Cause': 'Evaluee']).
 1081fnpattern(sicken, 31030600, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1082fnpattern(anger, 31030800, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1083fnpattern(delight, 31030800, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1084fnpattern(delight, 31030800, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Cause': 'Content']).
 1085fnpattern(grieve, 31030800, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Cause': 'Content']).
 1086fnpattern(meditate, 31030800, 'Cogitation', ['Experiencer': 'Cognizer', 'Cause': 'Topic']).
 1087fnpattern(mourn, 31030800, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Cause': 'Content']).
 1088fnpattern(muse, 31030800, 'Cogitation', ['Experiencer': 'Cognizer', 'Cause': 'Topic']).
 1089fnpattern(puzzle, 31030800, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1090fnpattern(reflect, 31030800, 'Cogitation', ['Experiencer': 'Cognizer', 'Cause': 'Topic']).
 1091fnpattern(ruminate, 31030800, 'Cogitation', ['Experiencer': 'Cognizer', 'Cause': 'Topic']).
 1092fnpattern(thrill, 31030900, 'Experiencer_obj', ['Experiencer': 'Experiencer', 'Cause': 'Stimulus']).
 1093fnpattern(covet, 32010000, 'Desiring', ['Experiencer': 'Experiencer', 'Event': 'Theme']).
 1094fnpattern(covet, 32010000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Event': 'Content', 'Attribute': 'Reason']).
 1095fnpattern(crave, 32010000, 'Desiring', ['Experiencer': 'Experiencer', 'Event': 'Theme']).
 1096fnpattern(crave, 32010000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Event': 'Content', 'Attribute': 'Reason']).
 1097fnpattern(desire, 32010000, 'Desiring', ['Experiencer': 'Experiencer', 'Event': 'Theme']).
 1098fnpattern(desire, 32010000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Event': 'Content', 'Attribute': 'Reason']).
 1099fnpattern(fancy, 32010000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Event': 'Content', 'Attribute': 'Reason']).
 1100fnpattern(want, 32010000, 'Desiring', ['Experiencer': 'Experiencer', 'Event': 'Theme']).
 1101fnpattern(want, 32010000, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Event': 'Content', 'Attribute': 'Reason']).
 1102fnpattern(prefer, 32010100, 'Partiality', ['Experiencer': 'Judge', 'Theme': 'Dispute', 'Attribute': 'Side_2', 'Predicate': 'Manifestation_of_bias']).
 1103fnpattern(prefer, 32010100, 'Partiality', ['Experiencer': 'Judge', 'Theme': 'Sides', 'Attribute': 'Side_2', 'Predicate': 'Manifestation_of_bias']).
 1104fnpattern(prefer, 32010100, 'Partiality', ['Experiencer': 'Judge', 'Theme': 'Side_1', 'Attribute': 'Side_2', 'Predicate': 'Manifestation_of_bias']).
 1105fnpattern(prefer, 32010100, 'Preference', ['Experiencer': 'Experiencer', 'Theme': 'Event', 'Predicate': 'Location_of_event']).
 1106fnpattern(prefer, 32010100, 'Preference', ['Experiencer': 'Experiencer', 'Theme': 'Event', 'Predicate': 'Contrast']).
 1107fnpattern(prefer, 32010100, 'Preference', ['Experiencer': 'Experiencer', 'Theme': 'Focal_participant', 'Predicate': 'Location_of_event']).
 1108fnpattern(prefer, 32010100, 'Preference', ['Experiencer': 'Experiencer', 'Theme': 'Focal_participant', 'Predicate': 'Contrast']).
 1109fnpattern(crave, 32020100, 'Desiring', ['Experiencer': 'Experiencer', 'Event': 'Theme']).
 1110fnpattern(crave, 32020100, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Event': 'Content']).
 1111fnpattern(hanker, 32020100, 'Desiring', ['Experiencer': 'Experiencer', 'Event': 'Theme']).
 1112fnpattern(hanker, 32020100, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Event': 'Content']).
 1113fnpattern(hope, 32020100, 'Desiring', ['Experiencer': 'Experiencer', 'Event': 'Theme']).
 1114fnpattern(hunger, 32020100, 'Desiring', ['Experiencer': 'Experiencer', 'Event': 'Theme']).
 1115fnpattern(long, 32020100, 'Desiring', ['Experiencer': 'Experiencer', 'Event': 'Theme']).
 1116fnpattern(long, 32020100, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Event': 'Content']).
 1117fnpattern(lust, 32020100, 'Desiring', ['Experiencer': 'Experiencer', 'Event': 'Theme']).
 1118fnpattern(pine, 32020100, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Event': 'Content']).
 1119fnpattern(thirst, 32020100, 'Desiring', ['Experiencer': 'Experiencer', 'Event': 'Theme']).
 1120fnpattern(wish, 32020100, 'Desiring', ['Experiencer': 'Experiencer', 'Event': 'Theme']).
 1121fnpattern(yearn, 32020100, 'Desiring', ['Experiencer': 'Experiencer', 'Event': 'Theme']).
 1122fnpattern(yearn, 32020100, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Event': 'Content']).
 1123fnpattern(hanker, 32020200, 'Desiring', ['Experiencer': 'Experiencer', 'Event': 'Theme']).
 1124fnpattern(lust, 32020200, 'Desiring', ['Experiencer': 'Experiencer', 'Event': 'Theme']).
 1125fnpattern(thirst, 32020200, 'Desiring', ['Experiencer': 'Experiencer', 'Event': 'Theme']).
 1126fnpattern(yearn, 32020200, 'Experiencer_subj', ['Experiencer': 'Experiencer', 'Event': 'Content']).
 1127fnpattern(acclaim, 33000000, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1128fnpattern(applaud, 33000000, 'Judgment', ['Agent': 'Cognizer', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1129fnpattern(assault, 33000000, 'Attack', ['Agent': 'Assailant', 'Theme': 'Victim', 'Predicate': 'Reason']).
 1130fnpattern(assault, 33000000, 'Attack', ['Agent': 'Assailant', 'Theme': 'Victim', 'Predicate': 'Purpose']).
 1131fnpattern(attack, 33000000, 'Attack', ['Agent': 'Assailant', 'Theme': 'Victim', 'Predicate': 'Reason']).
 1132fnpattern(attack, 33000000, 'Attack', ['Agent': 'Assailant', 'Theme': 'Victim', 'Predicate': 'Purpose']).
 1133fnpattern(belittle, 33000000, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1134fnpattern(blame, 33000000, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1135fnpattern(castigate, 33000000, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1136fnpattern(censure, 33000000, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1137fnpattern(chastise, 33000000, 'Judgment_direct_address', ['Agent': 'Communicator', 'Theme': 'Addressee', 'Predicate': 'Reason']).
 1138fnpattern(chide, 33000000, 'Judgment_direct_address', ['Agent': 'Communicator', 'Theme': 'Addressee', 'Predicate': 'Reason']).
 1139fnpattern(commend, 33000000, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1140fnpattern(compliment, 33000000, 'Judgment_direct_address', ['Agent': 'Communicator', 'Theme': 'Addressee', 'Predicate': 'Reason']).
 1141fnpattern(condemn, 33000000, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1142fnpattern(condone, 33000000, 'Forgiveness', ['Agent': 'Judge', 'Theme': 'Evaluee', 'Predicate': 'Offense']).
 1143fnpattern(criticize, 33000000, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1144fnpattern(decry, 33000000, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1145fnpattern(denigrate, 33000000, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1146fnpattern(denounce, 33000000, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1147fnpattern(deprecate, 33000000, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1148fnpattern(deride, 33000000, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1149fnpattern(disparage, 33000000, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1150fnpattern(doubt, 33000000, 'Certainty', ['Agent': 'Cognizer', 'Theme': 'Content']).
 1151fnpattern(doubt, 33000000, 'Certainty', ['Agent': 'Cognizer', 'Theme': 'Topic']).
 1152fnpattern(excoriate, 33000000, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1153fnpattern(excuse, 33000000, 'Forgiveness', ['Agent': 'Judge', 'Theme': 'Evaluee', 'Predicate': 'Offense']).
 1154fnpattern(extol, 33000000, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1155fnpattern(fault, 33000000, 'Judgment', ['Agent': 'Cognizer', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1156fnpattern(forgive, 33000000, 'Forgiveness', ['Agent': 'Judge', 'Theme': 'Evaluee', 'Predicate': 'Offense']).
 1157fnpattern(gibe, 33000000, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1158fnpattern(herald, 33000000, 'Heralding', ['Agent': 'Communicator', 'Theme': 'Event']).
 1159fnpattern(herald, 33000000, 'Heralding', ['Agent': 'Communicator', 'Theme': 'Individual']).
 1160fnpattern(indict, 33000000, 'Notification_of_charges', ['Agent': 'Arraign_authority', 'Theme': 'Accused', 'Predicate': 'Charges']).
 1161fnpattern(indict, 33000000, 'Notification_of_charges', ['Agent': 'Arraign_authority', 'Theme': 'Accused', 'Predicate': 'Containing_event']).
 1162fnpattern(laud, 33000000, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1163fnpattern(mock, 33000000, 'Judgment', ['Agent': 'Cognizer', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1164fnpattern(mock, 33000000, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1165fnpattern(pardon, 33000000, 'Forgiveness', ['Agent': 'Judge', 'Theme': 'Evaluee', 'Predicate': 'Offense']).
 1166fnpattern(praise, 33000000, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1167fnpattern(punish, 33000000, 'Rewards_and_punishments', ['Agent': 'Agent', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1168fnpattern(rebuke, 33000000, 'Judgment_direct_address', ['Agent': 'Communicator', 'Theme': 'Addressee', 'Predicate': 'Reason']).
 1169fnpattern(recompense, 33000000, 'Rewards_and_punishments', ['Agent': 'Agent', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1170fnpattern(reprimand, 33000000, 'Judgment_direct_address', ['Agent': 'Communicator', 'Theme': 'Addressee', 'Predicate': 'Reason']).
 1171fnpattern(reproach, 33000000, 'Judgment_direct_address', ['Agent': 'Communicator', 'Theme': 'Addressee', 'Predicate': 'Reason']).
 1172fnpattern(reprove, 33000000, 'Judgment_direct_address', ['Agent': 'Communicator', 'Theme': 'Addressee', 'Predicate': 'Reason']).
 1173fnpattern(reward, 33000000, 'Rewards_and_punishments', ['Agent': 'Agent', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1174fnpattern(ridicule, 33000000, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1175fnpattern(sanction, 33000000, 'Grant_permission', ['Agent': 'Grantor', 'Theme': 'Grantee', 'Predicate': 'Action']).
 1176fnpattern(scold, 33000000, 'Judgment_direct_address', ['Agent': 'Communicator', 'Theme': 'Addressee', 'Predicate': 'Reason']).
 1177fnpattern(scorn, 33000000, 'Judgment', ['Agent': 'Cognizer', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 1178fnpattern(thank, 33000000, 'Judgment_direct_address', ['Agent': 'Communicator', 'Theme': 'Addressee', 'Predicate': 'Reason']).
 1179fnpattern(upbraid, 33000000, 'Judgment_direct_address', ['Agent': 'Communicator', 'Theme': 'Addressee', 'Predicate': 'Reason']).
 1180fnpattern(analyse, 34000000, 'Scrutiny', ['Agent': 'Cognizer', 'Theme': 'Ground', 'Attribute': 'Phenomenon']).
 1181fnpattern(assess, 34000000, 'Assessing', ['Agent': 'Assessor', 'Theme': 'Phenomenon', 'Attribute': 'Feature']).
 1182fnpattern(evaluate, 34000000, 'Assessing', ['Agent': 'Assessor', 'Theme': 'Phenomenon', 'Attribute': 'Feature']).
 1183fnpattern(scrutinize, 34000000, 'Scrutiny', ['Agent': 'Cognizer', 'Theme': 'Ground', 'Attribute': 'Phenomenon']).
 1184fnpattern(study, 34000000, 'Scrutiny', ['Agent': 'Cognizer', 'Theme': 'Ground', 'Attribute': 'Phenomenon']).
 1185fnpattern(feel, 35010000, 'Seeking', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Sought_entity']).
 1186fnpattern(hunt, 35010000, 'Seeking', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Sought_entity']).
 1187fnpattern(check, 35020000, 'Scrutiny', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Phenomenon']).
 1188fnpattern(comb, 35020000, 'Seeking', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Sought_entity']).
 1189fnpattern(probe, 35020000, 'Scrutiny', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Phenomenon']).
 1190fnpattern(scour, 35020000, 'Seeking', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Sought_entity']).
 1191fnpattern(scout, 35020000, 'Scrutiny', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Phenomenon']).
 1192fnpattern(search, 35020000, 'Scrutiny', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Phenomenon']).
 1193fnpattern(sift, 35020000, 'Scrutiny', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Phenomenon']).
 1194fnpattern(watch, 35020000, 'Seeking', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Sought_entity']).
 1195fnpattern(examine, 35040000, 'Scrutiny', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Phenomenon']).
 1196fnpattern(frisk, 35040000, 'Seeking', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Sought_entity']).
 1197fnpattern(inspect, 35040000, 'Scrutiny', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Phenomenon']).
 1198fnpattern(investigate, 35040000, 'Scrutiny', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Phenomenon']).
 1199fnpattern(ransack, 35040000, 'Seeking', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Sought_entity']).
 1200fnpattern(scan, 35040000, 'Scrutiny', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Phenomenon']).
 1201fnpattern(scrutinize, 35040000, 'Scrutiny', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Phenomenon']).
 1202fnpattern(survey, 35040000, 'Scrutiny', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Phenomenon']).
 1203fnpattern(test, 35040000, 'Operational_testing', ['Agent': 'Tester', 'Location': 'Product', 'Theme': 'Unwanted_characteristics']).
 1204fnpattern(test, 35040000, 'Operational_testing', ['Agent': 'Tester', 'Location': 'Tested_property', 'Theme': 'Unwanted_characteristics']).
 1205fnpattern(forage, 35050000, 'Seeking', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Sought_entity']).
 1206fnpattern(fumble, 35050000, 'Seeking', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Sought_entity']).
 1207fnpattern(grope, 35050000, 'Seeking', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Sought_entity']).
 1208fnpattern(listen, 35050000, 'Seeking', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Sought_entity']).
 1209fnpattern(look, 35050000, 'Scrutiny', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Phenomenon']).
 1210fnpattern(rummage, 35050000, 'Scrutiny', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Phenomenon']).
 1211fnpattern(nose, 35060000, 'Seeking', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Sought_entity']).
 1212fnpattern(seek, 35060000, 'Seeking', ['Agent': 'Cognizer', 'Location': 'Ground', 'Theme': 'Sought_entity']).
 1213fnpattern(intermix, 36010000, 'Amalgamation', ['Actor1': 'Parts', 'Actor2': 'Part_2', 'Theme': 'Whole']).
 1214fnpattern(intermix, 36010000, 'Amalgamation', ['Actor1': 'Part_1', 'Actor2': 'Part_2', 'Theme': 'Whole']).
 1215fnpattern(agree, 36010100, 'Compatibility', ['Actor1': 'Item1', 'Actor2': 'Item2', 'Theme': 'Parameter']).
 1216fnpattern(collaborate, 36010100, 'Collaboration', ['Actor1': 'Partner1', 'Actor2': 'Partner2', 'Theme': 'Undertaking']).
 1217fnpattern(cooperate, 36010100, 'Collaboration', ['Actor1': 'Partner1', 'Actor2': 'Partner2', 'Theme': 'Undertaking']).
 1218fnpattern(argue, 36010200, 'Quarreling', ['Actor1': 'Arguer1', 'Actor2': 'Arguer2', 'Theme': 'Issue']).
 1219fnpattern(bicker, 36010200, 'Quarreling', ['Actor1': 'Arguer1', 'Actor2': 'Arguer2', 'Theme': 'Issue']).
 1220fnpattern(brawl, 36010200, 'Hostile_encounter', ['Actor1': 'Side1', 'Actor2': 'Side2', 'Theme': 'Issue']).
 1221fnpattern(clash, 36010200, 'Hostile_encounter', ['Actor1': 'Side1', 'Actor2': 'Side2', 'Theme': 'Issue']).
 1222fnpattern(compete, 36010200, 'Competition', ['Actor1': 'Participant1', 'Actor2': 'Participant2', 'Theme': 'Competition']).
 1223fnpattern(duel, 36010200, 'Hostile_encounter', ['Actor1': 'Side1', 'Actor2': 'Side2', 'Theme': 'Issue']).
 1224fnpattern(quarrel, 36010200, 'Quarreling', ['Actor1': 'Arguer1', 'Actor2': 'Arguer2', 'Theme': 'Issue']).
 1225fnpattern(quibble, 36010200, 'Quarreling', ['Actor1': 'Arguer1', 'Actor2': 'Arguer2', 'Theme': 'Issue']).
 1226fnpattern(scuffle, 36010200, 'Hostile_encounter', ['Actor1': 'Side1', 'Actor2': 'Side2', 'Theme': 'Issue']).
 1227fnpattern(skirmish, 36010200, 'Hostile_encounter', ['Actor1': 'Side1', 'Actor2': 'Side2', 'Theme': 'Issue']).
 1228fnpattern(squabble, 36010200, 'Quarreling', ['Actor1': 'Arguer1', 'Actor2': 'Arguer2', 'Theme': 'Issue']).
 1229fnpattern(war, 36010200, 'Hostile_encounter', ['Actor1': 'Side1', 'Actor2': 'Side2', 'Theme': 'Issue']).
 1230fnpattern(wrangle, 36010200, 'Quarreling', ['Actor1': 'Arguer1', 'Actor2': 'Arguer2', 'Theme': 'Issue']).
 1231fnpattern(court, 36020000, 'Personal_relationship', ['Actor1': 'Partner1', 'Actor2': 'Partner2']).
 1232fnpattern(date, 36020000, 'Personal_relationship', ['Actor1': 'Partner1', 'Actor2': 'Partner2']).
 1233fnpattern(divorce, 36020000, 'Forming_relationships', ['Actor1': 'Partner1', 'Actor2': 'Partner2']).
 1234fnpattern(marry, 36020000, 'Forming_relationships', ['Actor1': 'Partner1', 'Actor2': 'Partner2']).
 1235fnpattern(play, 36030100, 'Competition', ['Actor1': 'Participant1', 'Actor2': 'Participant2']).
 1236fnpattern(battle, 36030200, 'Hostile_encounter', ['Actor1': 'Side1', 'Actor2': 'Side2']).
 1237fnpattern(fight, 36030200, 'Hostile_encounter', ['Actor1': 'Side1', 'Actor2': 'Side2']).
 1238fnpattern(fight, 36030200, 'Quarreling', ['Actor1': 'Arguer1', 'Actor2': 'Arguer2']).
 1239fnpattern(communicate, 36040100, 'Communication', ['Actor': 'Communicator', 'Actor2': 'Addressee', 'Topic': 'Message']).
 1240fnpattern(communicate, 36040100, 'Communication', ['Actor': 'Communicator', 'Actor2': 'Addressee', 'Topic': 'Topic']).
 1241fnpattern(communicate, 36040100, 'Communication', ['Actor1': 'Communicator', 'Actor2': 'Addressee', 'Topic': 'Message']).
 1242fnpattern(communicate, 36040100, 'Communication', ['Actor1': 'Communicator', 'Actor2': 'Addressee', 'Topic': 'Topic']).
 1243fnpattern(demonstrate, 37010000, 'Reasoning', ['Agent': 'Arguer', 'Topic': 'Content', 'Recipient': 'Addressee']).
 1244fnpattern(explain, 37010000, 'Justifying', ['Agent': 'Agent', 'Topic': 'State_of_affairs']).
 1245fnpattern(explain, 37010000, 'Justifying', ['Agent': 'Agent', 'Topic': 'Act']).
 1246fnpattern(explain, 37010000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1247fnpattern(explain, 37010000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1248fnpattern(preach, 37010000, 'Speak_on_topic', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Audience']).
 1249fnpattern(preach, 37010000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1250fnpattern(preach, 37010000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1251fnpattern(read, 37010100, 'Hear', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Hearer']).
 1252fnpattern(read, 37010100, 'Hear', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Hearer']).
 1253fnpattern(show, 37010110, 'Reasoning', ['Agent': 'Arguer', 'Topic': 'Content', 'Recipient': 'Addressee']).
 1254fnpattern(tell, 37010111, 'Reporting', ['Agent': 'Informer', 'Topic': 'Behavior', 'Recipient': 'Authorities']).
 1255fnpattern(tell, 37010111, 'Request', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1256fnpattern(tell, 37010111, 'Request', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1257fnpattern(tell, 37010111, 'Telling', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1258fnpattern(tell, 37010111, 'Telling', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1259fnpattern(write, 37010111, 'Contacting', ['Agent': 'Communicator', 'Topic': 'Communication', 'Recipient': 'Addressee']).
 1260fnpattern(write, 37010111, 'Contacting', ['Agent': 'Communicator', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1261fnpattern(write, 37010111, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1262fnpattern(write, 37010111, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1263fnpattern(ask, 37010111, 'Questioning', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1264fnpattern(ask, 37010111, 'Questioning', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1265fnpattern(ask, 37010111, 'Request', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1266fnpattern(ask, 37010111, 'Request', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1267fnpattern(inquire, 37012000, 'Questioning', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1268fnpattern(inquire, 37012000, 'Questioning', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1269fnpattern(tell, 37020000, 'Reporting', ['Agent': 'Informer', 'Topic': 'Behavior', 'Recipient': 'Authorities']).
 1270fnpattern(tell, 37020000, 'Request', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1271fnpattern(tell, 37020000, 'Request', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1272fnpattern(tell, 37020000, 'Telling', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1273fnpattern(tell, 37020000, 'Telling', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1274fnpattern(babble, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1275fnpattern(babble, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1276fnpattern(bark, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1277fnpattern(bark, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1278fnpattern(bawl, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1279fnpattern(bawl, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1280fnpattern(bellow, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1281fnpattern(bellow, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1282fnpattern(bleat, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1283fnpattern(bleat, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1284fnpattern(bray, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1285fnpattern(bray, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1286fnpattern(burble, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1287fnpattern(burble, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1288fnpattern(cackle, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1289fnpattern(cackle, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1290fnpattern(chant, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1291fnpattern(chant, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1292fnpattern(chatter, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1293fnpattern(chatter, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1294fnpattern(chirp, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1295fnpattern(chirp, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1296fnpattern(cluck, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1297fnpattern(cluck, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1298fnpattern(coo, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1299fnpattern(coo, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1300fnpattern(croak, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1301fnpattern(croak, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1302fnpattern(croon, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1303fnpattern(croon, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1304fnpattern(crow, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1305fnpattern(crow, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1306fnpattern(cry, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1307fnpattern(cry, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1308fnpattern(drawl, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1309fnpattern(drawl, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1310fnpattern(drone, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1311fnpattern(drone, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1312fnpattern(gabble, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1313fnpattern(gabble, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1314fnpattern(gibber, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1315fnpattern(gibber, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1316fnpattern(groan, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1317fnpattern(groan, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1318fnpattern(growl, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1319fnpattern(growl, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1320fnpattern(grumble, 37030000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1321fnpattern(grumble, 37030000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1322fnpattern(grunt, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1323fnpattern(grunt, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1324fnpattern(hiss, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1325fnpattern(hiss, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1326fnpattern(hoot, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1327fnpattern(hoot, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1328fnpattern(howl, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1329fnpattern(howl, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1330fnpattern(jabber, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1331fnpattern(jabber, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1332fnpattern(lisp, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1333fnpattern(lisp, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1334fnpattern(moan, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1335fnpattern(moan, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1336fnpattern(mumble, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1337fnpattern(mumble, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1338fnpattern(murmur, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1339fnpattern(murmur, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1340fnpattern(mutter, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1341fnpattern(mutter, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1342fnpattern(prattle, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1343fnpattern(prattle, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1344fnpattern(purr, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1345fnpattern(purr, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1346fnpattern(rasp, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1347fnpattern(rasp, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1348fnpattern(roar, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1349fnpattern(roar, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1350fnpattern(rumble, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1351fnpattern(rumble, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1352fnpattern(scream, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1353fnpattern(scream, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1354fnpattern(screech, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1355fnpattern(screech, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1356fnpattern(shout, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1357fnpattern(shout, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1358fnpattern(shriek, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1359fnpattern(shriek, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1360fnpattern(sing, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1361fnpattern(sing, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1362fnpattern(snarl, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1363fnpattern(snarl, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1364fnpattern(splutter, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1365fnpattern(splutter, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1366fnpattern(squawk, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1367fnpattern(squawk, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1368fnpattern(squeak, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1369fnpattern(squeak, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1370fnpattern(squeal, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1371fnpattern(squeal, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1372fnpattern(stammer, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1373fnpattern(stammer, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1374fnpattern(stutter, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1375fnpattern(stutter, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1376fnpattern(thunder, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1377fnpattern(thunder, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1378fnpattern(trill, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1379fnpattern(trill, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1380fnpattern(trumpet, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1381fnpattern(trumpet, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1382fnpattern(twitter, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1383fnpattern(twitter, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1384fnpattern(wail, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1385fnpattern(wail, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1386fnpattern(warble, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1387fnpattern(warble, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1388fnpattern(wheeze, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1389fnpattern(wheeze, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1390fnpattern(whimper, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1391fnpattern(whimper, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1392fnpattern(whine, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1393fnpattern(whine, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1394fnpattern(whisper, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1395fnpattern(whisper, 37030000, 'Communication_manner', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1396fnpattern(whoop, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1397fnpattern(whoop, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1398fnpattern(yell, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1399fnpattern(yell, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1400fnpattern(yelp, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1401fnpattern(yelp, 37030000, 'Communication_noise', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1402fnpattern(cable, 37040000, 'Communication_means', ['Agent': 'Communicator', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1403fnpattern(cable, 37040000, 'Communication_means', ['Agent': 'Communicator', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1404fnpattern(cable, 37040000, 'Contacting', ['Agent': 'Communicator', 'Topic': 'Communication', 'Recipient': 'Addressee']).
 1405fnpattern(cable, 37040000, 'Contacting', ['Agent': 'Communicator', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1406fnpattern(e-mail, 37040000, 'Contacting', ['Agent': 'Communicator', 'Topic': 'Communication', 'Recipient': 'Addressee']).
 1407fnpattern(e-mail, 37040000, 'Contacting', ['Agent': 'Communicator', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1408fnpattern(fax, 37040000, 'Contacting', ['Agent': 'Communicator', 'Topic': 'Communication', 'Recipient': 'Addressee']).
 1409fnpattern(fax, 37040000, 'Contacting', ['Agent': 'Communicator', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1410fnpattern(phone, 37040000, 'Communication_means', ['Agent': 'Communicator', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1411fnpattern(phone, 37040000, 'Communication_means', ['Agent': 'Communicator', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1412fnpattern(phone, 37040000, 'Contacting', ['Agent': 'Communicator', 'Topic': 'Communication', 'Recipient': 'Addressee']).
 1413fnpattern(phone, 37040000, 'Contacting', ['Agent': 'Communicator', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1414fnpattern(radio, 37040000, 'Communication_means', ['Agent': 'Communicator', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1415fnpattern(radio, 37040000, 'Communication_means', ['Agent': 'Communicator', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1416fnpattern(radio, 37040000, 'Contacting', ['Agent': 'Communicator', 'Topic': 'Communication', 'Recipient': 'Addressee']).
 1417fnpattern(radio, 37040000, 'Contacting', ['Agent': 'Communicator', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1418fnpattern(semaphore, 37040000, 'Communication_means', ['Agent': 'Communicator', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1419fnpattern(semaphore, 37040000, 'Communication_means', ['Agent': 'Communicator', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1420fnpattern(telegraph, 37040000, 'Communication_means', ['Agent': 'Communicator', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1421fnpattern(telegraph, 37040000, 'Communication_means', ['Agent': 'Communicator', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1422fnpattern(telegraph, 37040000, 'Contacting', ['Agent': 'Communicator', 'Topic': 'Communication', 'Recipient': 'Addressee']).
 1423fnpattern(telegraph, 37040000, 'Contacting', ['Agent': 'Communicator', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1424fnpattern(telephone, 37040000, 'Communication_means', ['Agent': 'Communicator', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1425fnpattern(telephone, 37040000, 'Communication_means', ['Agent': 'Communicator', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1426fnpattern(telephone, 37040000, 'Contacting', ['Agent': 'Communicator', 'Topic': 'Communication', 'Recipient': 'Addressee']).
 1427fnpattern(telephone, 37040000, 'Contacting', ['Agent': 'Communicator', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1428fnpattern(telex, 37040000, 'Communication_means', ['Agent': 'Communicator', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1429fnpattern(telex, 37040000, 'Communication_means', ['Agent': 'Communicator', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1430fnpattern(telex, 37040000, 'Contacting', ['Agent': 'Communicator', 'Topic': 'Communication', 'Recipient': 'Addressee']).
 1431fnpattern(telex, 37040000, 'Contacting', ['Agent': 'Communicator', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1432fnpattern(wire, 37040000, 'Communication_means', ['Agent': 'Communicator', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1433fnpattern(wire, 37040000, 'Communication_means', ['Agent': 'Communicator', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1434fnpattern(speak, 37050000, 'Statement', ['Actor1': 'Speaker', 'Topic': 'Message', 'Actor2': 'Addressee']).
 1435fnpattern(speak, 37050000, 'Statement', ['Actor1': 'Speaker', 'Topic': 'Topic', 'Actor2': 'Addressee']).
 1436fnpattern(talk, 37050000, 'Statement', ['Actor1': 'Speaker', 'Topic': 'Message', 'Actor2': 'Addressee']).
 1437fnpattern(talk, 37050000, 'Statement', ['Actor1': 'Speaker', 'Topic': 'Topic', 'Actor2': 'Addressee']).
 1438fnpattern(chat, 37060000, 'Chatting', ['Actor1': 'Interlocutor1', 'Actor2': 'Interlocutor2', 'Topic': 'Topic']).
 1439fnpattern(converse, 37060000, 'Chatting', ['Actor1': 'Interlocutor1', 'Actor2': 'Interlocutor2', 'Topic': 'Topic']).
 1440fnpattern(gab, 37060000, 'Chatting', ['Actor1': 'Interlocutor1', 'Actor2': 'Interlocutor2', 'Topic': 'Topic']).
 1441fnpattern(gossip, 37060000, 'Chatting', ['Actor1': 'Interlocutor1', 'Actor2': 'Interlocutor2', 'Topic': 'Topic']).
 1442fnpattern(announce, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1443fnpattern(announce, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1444fnpattern(claim, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1445fnpattern(claim, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1446fnpattern(confess, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1447fnpattern(confess, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1448fnpattern(confide, 37070000, 'Telling', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1449fnpattern(confide, 37070000, 'Telling', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1450fnpattern(convey, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1451fnpattern(convey, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1452fnpattern(declare, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1453fnpattern(declare, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1454fnpattern(disclose, 37070000, 'Reveal_secret', ['Agent': 'Speaker', 'Topic': 'Information', 'Recipient': 'Addressee']).
 1455fnpattern(exclaim, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1456fnpattern(exclaim, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1457fnpattern(insist, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1458fnpattern(insist, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1459fnpattern(mention, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1460fnpattern(mention, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1461fnpattern(proclaim, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1462fnpattern(proclaim, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1463fnpattern(propose, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1464fnpattern(propose, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1465fnpattern(recount, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1466fnpattern(recount, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1467fnpattern(reiterate, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1468fnpattern(reiterate, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1469fnpattern(relate, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1470fnpattern(relate, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1471fnpattern(reply, 37070000, 'Communication_response', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1472fnpattern(reply, 37070000, 'Communication_response', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1473fnpattern(reply, 37070000, 'Communication_response', ['Agent': 'Speaker', 'Topic': 'Trigger', 'Recipient': 'Addressee']).
 1474fnpattern(respond, 37070000, 'Communication_response', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1475fnpattern(respond, 37070000, 'Communication_response', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1476fnpattern(respond, 37070000, 'Communication_response', ['Agent': 'Speaker', 'Topic': 'Trigger', 'Recipient': 'Addressee']).
 1477fnpattern(retort, 37070000, 'Communication_response', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1478fnpattern(retort, 37070000, 'Communication_response', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1479fnpattern(retort, 37070000, 'Communication_response', ['Agent': 'Speaker', 'Topic': 'Trigger', 'Recipient': 'Addressee']).
 1480fnpattern(reveal, 37070000, 'Reveal_secret', ['Agent': 'Speaker', 'Topic': 'Information', 'Recipient': 'Addressee']).
 1481fnpattern(say, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1482fnpattern(say, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1483fnpattern(state, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1484fnpattern(state, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1485fnpattern(suggest, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1486fnpattern(suggest, 37070000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1487fnpattern(utter, 37070000, 'Text_creation', ['Agent': 'Author', 'Topic': 'Text', 'Recipient': 'Addressee']).
 1488fnpattern(voice, 37070000, 'Expressing_publicly', ['Agent': 'Communucator', 'Topic': 'Content', 'Recipient': 'Addressee']).
 1489fnpattern(remark, 37070100, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1490fnpattern(remark, 37070100, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1491fnpattern(report, 37070100, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1492fnpattern(report, 37070100, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1493fnpattern(boast, 37080000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1494fnpattern(boast, 37080000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1495fnpattern(brag, 37080000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1496fnpattern(brag, 37080000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1497fnpattern(complain, 37080000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1498fnpattern(complain, 37080000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1499fnpattern(gripe, 37080000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1500fnpattern(gripe, 37080000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1501fnpattern(grumble, 37080000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1502fnpattern(grumble, 37080000, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1503fnpattern(assure, 37090000, 'Telling', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1504fnpattern(assure, 37090000, 'Telling', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1505fnpattern(inform, 37090000, 'Telling', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1506fnpattern(inform, 37090000, 'Telling', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1507fnpattern(notify, 37090000, 'Telling', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1508fnpattern(notify, 37090000, 'Telling', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1509fnpattern(admonish, 37090100, 'Attempt_suasion', ['Agent': 'Speaker', 'Topic': 'Content', 'Recipient': 'Addressee']).
 1510fnpattern(admonish, 37090100, 'Attempt_suasion', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1511fnpattern(advise, 37090100, 'Telling', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1512fnpattern(advise, 37090100, 'Telling', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1513fnpattern(caution, 37090100, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1514fnpattern(caution, 37090100, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1515fnpattern(lecture, 37110100, 'Speak_on_topic', ['Agent': 'Speaker', 'Topic': 'Content', 'Recipient': 'Audience']).
 1516fnpattern(comment, 37110110, 'Statement', ['Agent': 'Speaker', 'Topic': 'Message', 'Recipient': 'Addressee']).
 1517fnpattern(comment, 37110110, 'Statement', ['Agent': 'Speaker', 'Topic': 'Topic', 'Recipient': 'Addressee']).
 1518fnpattern(bark, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1519fnpattern(bark, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1520fnpattern(bark, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1521fnpattern(bark, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1522fnpattern(bark, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1523fnpattern(bark, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1524fnpattern(bellow, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1525fnpattern(bellow, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1526fnpattern(bellow, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1527fnpattern(bellow, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1528fnpattern(bellow, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1529fnpattern(bellow, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1530fnpattern(bleat, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1531fnpattern(bleat, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1532fnpattern(bleat, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1533fnpattern(bleat, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1534fnpattern(bleat, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1535fnpattern(bleat, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1536fnpattern(bray, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1537fnpattern(bray, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1538fnpattern(bray, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1539fnpattern(bray, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1540fnpattern(bray, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1541fnpattern(bray, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1542fnpattern(cackle, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1543fnpattern(cackle, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1544fnpattern(cackle, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1545fnpattern(cackle, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1546fnpattern(cackle, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1547fnpattern(cackle, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1548fnpattern(caw, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1549fnpattern(caw, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1550fnpattern(chatter, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1551fnpattern(chatter, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1552fnpattern(cheep, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1553fnpattern(cheep, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1554fnpattern(chirp, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1555fnpattern(chirp, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1556fnpattern(chirp, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1557fnpattern(chirp, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1558fnpattern(chirp, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1559fnpattern(chirp, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1560fnpattern(chirrup, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1561fnpattern(chirrup, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1562fnpattern(chirrup, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1563fnpattern(chirrup, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1564fnpattern(cluck, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1565fnpattern(cluck, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1566fnpattern(cluck, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1567fnpattern(cluck, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1568fnpattern(coo, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1569fnpattern(coo, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1570fnpattern(coo, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1571fnpattern(coo, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1572fnpattern(coo, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1573fnpattern(coo, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1574fnpattern(croak, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1575fnpattern(croak, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1576fnpattern(croak, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1577fnpattern(croak, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1578fnpattern(croak, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1579fnpattern(croak, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1580fnpattern(crow, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1581fnpattern(crow, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1582fnpattern(crow, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1583fnpattern(crow, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1584fnpattern(drone, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1585fnpattern(drone, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1586fnpattern(drone, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1587fnpattern(drone, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1588fnpattern(drone, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1589fnpattern(drone, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1590fnpattern(gobble, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1591fnpattern(gobble, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1592fnpattern(groan, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1593fnpattern(groan, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1594fnpattern(groan, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1595fnpattern(groan, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1596fnpattern(growl, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1597fnpattern(growl, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1598fnpattern(growl, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1599fnpattern(growl, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1600fnpattern(growl, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1601fnpattern(growl, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1602fnpattern(grunt, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1603fnpattern(grunt, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1604fnpattern(grunt, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1605fnpattern(grunt, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1606fnpattern(grunt, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1607fnpattern(grunt, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1608fnpattern(hiss, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1609fnpattern(hiss, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1610fnpattern(hiss, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1611fnpattern(hiss, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1612fnpattern(hiss, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1613fnpattern(hiss, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1614fnpattern(hoot, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1615fnpattern(hoot, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1616fnpattern(hoot, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1617fnpattern(hoot, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1618fnpattern(hoot, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1619fnpattern(hoot, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1620fnpattern(howl, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1621fnpattern(howl, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1622fnpattern(howl, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1623fnpattern(howl, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1624fnpattern(howl, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1625fnpattern(howl, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1626fnpattern(mew, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1627fnpattern(mew, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1628fnpattern(moan, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1629fnpattern(moan, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1630fnpattern(moan, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1631fnpattern(moan, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1632fnpattern(moan, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1633fnpattern(moan, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1634fnpattern(moo, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1635fnpattern(moo, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1636fnpattern(neigh, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1637fnpattern(neigh, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1638fnpattern(peep, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1639fnpattern(peep, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1640fnpattern(purr, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1641fnpattern(purr, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1642fnpattern(purr, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1643fnpattern(purr, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1644fnpattern(purr, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1645fnpattern(purr, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1646fnpattern(quack, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1647fnpattern(quack, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1648fnpattern(rattle, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1649fnpattern(rattle, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1650fnpattern(rattle, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1651fnpattern(rattle, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1652fnpattern(rattle, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1653fnpattern(rattle, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1654fnpattern(roar, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1655fnpattern(roar, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1656fnpattern(roar, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1657fnpattern(roar, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1658fnpattern(roar, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1659fnpattern(roar, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1660fnpattern(rumble, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1661fnpattern(rumble, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1662fnpattern(rumble, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1663fnpattern(rumble, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1664fnpattern(squawk, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1665fnpattern(squawk, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1666fnpattern(squawk, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1667fnpattern(squawk, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1668fnpattern(squawk, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1669fnpattern(squawk, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1670fnpattern(squeak, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1671fnpattern(squeak, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1672fnpattern(squeak, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1673fnpattern(squeak, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1674fnpattern(squeak, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1675fnpattern(squeak, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1676fnpattern(squeal, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1677fnpattern(squeal, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1678fnpattern(squeal, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1679fnpattern(squeal, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1680fnpattern(squeal, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1681fnpattern(squeal, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1682fnpattern(thunder, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1683fnpattern(thunder, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1684fnpattern(thunder, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1685fnpattern(thunder, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1686fnpattern(thunder, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1687fnpattern(thunder, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1688fnpattern(trill, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1689fnpattern(trill, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1690fnpattern(trill, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1691fnpattern(trill, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1692fnpattern(tweet, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1693fnpattern(tweet, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1694fnpattern(twitter, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1695fnpattern(twitter, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1696fnpattern(twitter, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1697fnpattern(twitter, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1698fnpattern(twitter, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1699fnpattern(twitter, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1700fnpattern(ululate, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1701fnpattern(ululate, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1702fnpattern(wail, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1703fnpattern(wail, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1704fnpattern(wail, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1705fnpattern(wail, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1706fnpattern(wail, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1707fnpattern(wail, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1708fnpattern(warble, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1709fnpattern(warble, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1710fnpattern(warble, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1711fnpattern(warble, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1712fnpattern(wheeze, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1713fnpattern(wheeze, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1714fnpattern(wheeze, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1715fnpattern(wheeze, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1716fnpattern(whimper, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1717fnpattern(whimper, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1718fnpattern(whimper, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1719fnpattern(whimper, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1720fnpattern(whimper, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1721fnpattern(whimper, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1722fnpattern(whine, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1723fnpattern(whine, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1724fnpattern(whine, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1725fnpattern(whine, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1726fnpattern(whine, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1727fnpattern(whine, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1728fnpattern(whinny, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1729fnpattern(whinny, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1730fnpattern(whistle, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1731fnpattern(whistle, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1732fnpattern(yap, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1733fnpattern(yap, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1734fnpattern(yell, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1735fnpattern(yell, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1736fnpattern(yell, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1737fnpattern(yell, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1738fnpattern(yelp, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1739fnpattern(yelp, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1740fnpattern(yelp, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1741fnpattern(yelp, 38000000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1742fnpattern(yelp, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1743fnpattern(yelp, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1744fnpattern(yowl, 38000000, 'Make_noise', ['Agent': 'Noisy_event', 'Theme': 'Sound']).
 1745fnpattern(yowl, 38000000, 'Make_noise', ['Agent': 'Sound_source', 'Theme': 'Sound']).
 1746fnpattern(eat, 39010100, 'Ingestion', ['Agent': 'Ingestor', 'Instrument': 'Instrument', 'Source': 'Ingestibles']).
 1747fnpattern(drink, 39010200, 'Ingestion', ['Agent': 'Ingestor', 'Instrument': 'Instrument', 'Source': 'Ingestibles']).
 1748fnpattern(masticate, 39020100, 'Grinding', ['Agent': 'Grinder', 'Patient': 'Undergoer']).
 1749fnpattern(munch, 39020100, 'Ingestion', ['Agent': 'Ingestor', 'Patient': 'Ingestibles']).
 1750fnpattern(nibble, 39020100, 'Ingestion', ['Agent': 'Ingestor', 'Patient': 'Ingestibles']).
 1751fnpattern(sip, 39020200, 'Ingestion', ['Agent': 'Ingestor', 'Patient': 'Ingestibles']).
 1752fnpattern(slurp, 39020200, 'Ingestion', ['Agent': 'Ingestor', 'Patient': 'Ingestibles']).
 1753fnpattern(gobble, 39030100, 'Ingestion', ['Agent': 'Ingestor', 'Patient': 'Ingestibles']).
 1754fnpattern(gulp, 39030200, 'Ingestion', ['Agent': 'Ingestor', 'Patient': 'Ingestibles']).
 1755fnpattern(guzzle, 39030200, 'Ingestion', ['Agent': 'Ingestor', 'Patient': 'Ingestibles']).
 1756fnpattern(quaff, 39030200, 'Ingestion', ['Agent': 'Ingestor', 'Patient': 'Ingestibles']).
 1757fnpattern(swig, 39030200, 'Ingestion', ['Agent': 'Ingestor', 'Patient': 'Ingestibles']).
 1758fnpattern(consume, 39040100, 'Ingestion', ['Agent': 'Ingestor', 'Patient': 'Ingestibles']).
 1759fnpattern(devour, 39040100, 'Ingestion', ['Agent': 'Ingestor', 'Patient': 'Ingestibles']).
 1760fnpattern(ingest, 39040100, 'Ingestion', ['Agent': 'Ingestor', 'Patient': 'Ingestibles']).
 1761fnpattern(imbibe, 39040200, 'Ingestion', ['Agent': 'Ingestor', 'Patient': 'Ingestibles']).
 1762fnpattern(swill, 39040200, 'Ingestion', ['Agent': 'Ingestor', 'Patient': 'Ingestibles']).
 1763fnpattern(breakfast, 39050000, 'Ingestion', ['Agent': 'Ingestor', 'Patient': 'Ingestibles']).
 1764fnpattern(dine, 39050000, 'Ingestion', ['Agent': 'Ingestor', 'Patient': 'Ingestibles']).
 1765fnpattern(feast, 39050000, 'Ingestion', ['Agent': 'Ingestor', 'Patient': 'Ingestibles']).
 1766fnpattern(lunch, 39050000, 'Ingestion', ['Agent': 'Ingestor', 'Patient': 'Ingestibles']).
 1767fnpattern(nosh, 39050000, 'Ingestion', ['Agent': 'Ingestor', 'Patient': 'Ingestibles']).
 1768fnpattern(snack, 39050000, 'Ingestion', ['Agent': 'Ingestor', 'Patient': 'Ingestibles']).
 1769fnpattern(sup, 39050000, 'Ingestion', ['Agent': 'Ingestor', 'Patient': 'Ingestibles']).
 1770fnpattern(feed, 39060000, 'Ingestion', ['Agent': 'Ingestor', 'Patient': 'Ingestibles']).
 1771fnpattern(feed, 39070000, 'Ingestion', ['Agent': 'Ingestor', 'Patient': 'Ingestibles']).
 1772fnpattern(belch, 40011000, 'Excreting', ['Agent': 'Excreter']).
 1773fnpattern(burp, 40011000, 'Excreting', ['Agent': 'Excreter']).
 1774fnpattern(fart, 40011000, 'Excreting', ['Agent': 'Excreter']).
 1775fnpattern(dribble, 40012000, 'Fluidic_motion', ['Theme': 'Fluid']).
 1776fnpattern(puke, 40012000, 'Excreting', ['Agent': 'Excreter', 'Theme': 'Excreta']).
 1777fnpattern(sweat, 40012000, 'Excreting', ['Agent': 'Excreter', 'Theme': 'Excreta']).
 1778fnpattern(vomit, 40012000, 'Excreting', ['Agent': 'Excreter', 'Theme': 'Excreta']).
 1779fnpattern(breathe, 40012100, 'Breathing', ['Agent': 'Agent', 'Theme': 'Air']).
 1780fnpattern(defecate, 40012100, 'Excreting', ['Agent': 'Excreter', 'Theme': 'Excreta']).
 1781fnpattern(retch, 40012100, 'Excreting', ['Agent': 'Excreter', 'Theme': 'Excreta']).
 1782fnpattern(exhale, 40013100, 'Breathing', ['Agent': 'Agent', 'Theme': 'Air']).
 1783fnpattern(exhale, 40013100, 'Emitting', ['Agent': 'Source_emitter', 'Theme': 'Emission']).
 1784fnpattern(inhale, 40013200, 'Breathing', ['Agent': 'Agent', 'Theme': 'Air']).
 1785fnpattern(cackle, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1786fnpattern(cackle, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1787fnpattern(cackle, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1788fnpattern(cackle, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1789fnpattern(chuckle, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1790fnpattern(chuckle, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1791fnpattern(chuckle, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1792fnpattern(chuckle, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1793fnpattern(cry, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1794fnpattern(cry, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1795fnpattern(cry, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1796fnpattern(cry, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1797fnpattern(frown, 40020000, 'Making_faces', ['Agent': 'Agent', 'Cause': 'Internal_cause']).
 1798fnpattern(gasp, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1799fnpattern(gasp, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1800fnpattern(gasp, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1801fnpattern(gasp, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1802fnpattern(grimace, 40020000, 'Making_faces', ['Agent': 'Agent', 'Cause': 'Internal_cause']).
 1803fnpattern(grin, 40020000, 'Making_faces', ['Agent': 'Agent', 'Cause': 'Internal_cause']).
 1804fnpattern(groan, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1805fnpattern(groan, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1806fnpattern(groan, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1807fnpattern(groan, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1808fnpattern(growl, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1809fnpattern(growl, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1810fnpattern(growl, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1811fnpattern(growl, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1812fnpattern(howl, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1813fnpattern(howl, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1814fnpattern(howl, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1815fnpattern(howl, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1816fnpattern(moan, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1817fnpattern(moan, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1818fnpattern(moan, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1819fnpattern(moan, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1820fnpattern(pout, 40020000, 'Making_faces', ['Agent': 'Agent', 'Cause': 'Internal_cause']).
 1821fnpattern(scoff, 40020000, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Cause': 'Topic', 'Recipient': 'Addressee']).
 1822fnpattern(scoff, 40020000, 'Judgment_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Cause': 'Reason', 'Recipient': 'Addressee']).
 1823fnpattern(scowl, 40020000, 'Making_faces', ['Agent': 'Agent', 'Cause': 'Internal_cause']).
 1824fnpattern(simper, 40020000, 'Communication_manner', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1825fnpattern(simper, 40020000, 'Communication_manner', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1826fnpattern(simper, 40020000, 'Communication_manner', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1827fnpattern(simper, 40020000, 'Communication_manner', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1828fnpattern(smile, 40020000, 'Making_faces', ['Agent': 'Agent', 'Cause': 'Internal_cause']).
 1829fnpattern(smirk, 40020000, 'Making_faces', ['Agent': 'Agent', 'Cause': 'Internal_cause']).
 1830fnpattern(snort, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1831fnpattern(snort, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1832fnpattern(snort, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1833fnpattern(snort, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1834fnpattern(titter, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Cause': 'Addressee']).
 1835fnpattern(titter, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1836fnpattern(titter, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Cause': 'Addressee']).
 1837fnpattern(titter, 40020000, 'Communication_noise', ['Agent': 'Speaker', 'Theme': 'Topic', 'Recipient': 'Addressee']).
 1838fnpattern(wag, 40031000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1839fnpattern(beckon, 40031100, 'Gesture', ['Agent': 'Communicator', 'Patient': 'Body_part', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1840fnpattern(beckon, 40031100, 'Gesture', ['Agent': 'Communicator', 'Patient': 'Body_part', 'Theme': 'Indicated_entity', 'Recipient': 'Addressee']).
 1841fnpattern(blink, 40031100, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1842fnpattern(clap, 40031100, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1843fnpattern(gesture, 40031100, 'Gesture', ['Agent': 'Communicator', 'Patient': 'Body_part', 'Theme': 'Message', 'Recipient': 'Addressee']).
 1844fnpattern(gesture, 40031100, 'Gesture', ['Agent': 'Communicator', 'Patient': 'Body_part', 'Theme': 'Indicated_entity', 'Recipient': 'Addressee']).
 1845fnpattern(nod, 40031100, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1846fnpattern(shrug, 40031100, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1847fnpattern(wave, 40031100, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1848fnpattern(wink, 40031100, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1849fnpattern(arch, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1850fnpattern(bat, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1851fnpattern(cock, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1852fnpattern(crane, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1853fnpattern(cross, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1854fnpattern(flap, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1855fnpattern(flex, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1856fnpattern(flutter, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1857fnpattern(gnash, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1858fnpattern(grind, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1859fnpattern(hang, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1860fnpattern(hunch, 40032000, 'Posture', ['Agent': 'Agent']).
 1861fnpattern(pucker, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1862fnpattern(purse, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1863fnpattern(roll, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1864fnpattern(shake, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1865fnpattern(shuffle, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1866fnpattern(smack, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1867fnpattern(stamp, 40032000, 'Self_motion', ['Agent': 'Self_mover']).
 1868fnpattern(stretch, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1869fnpattern(toss, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1870fnpattern(twitch, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1871fnpattern(wag, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1872fnpattern(waggle, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1873fnpattern(wiggle, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1874fnpattern(wrinkle, 40032000, 'Body_movement', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1875fnpattern(bob, 40033000, 'Body_movement', ['Agent': 'Agent']).
 1876fnpattern(kneel, 40033000, 'Body_movement', ['Agent': 'Agent']).
 1877fnpattern(catnap, 40040000, 'Sleep', ['Agent': 'Sleeper']).
 1878fnpattern(doze, 40040000, 'Sleep', ['Agent': 'Sleeper']).
 1879fnpattern(drowse, 40040000, 'Sleep', ['Agent': 'Sleeper']).
 1880fnpattern(nap, 40040000, 'Sleep', ['Agent': 'Sleeper']).
 1881fnpattern(sleep, 40040000, 'Sleep', ['Agent': 'Sleeper']).
 1882fnpattern(slumber, 40040000, 'Sleep', ['Agent': 'Sleeper']).
 1883fnpattern(snooze, 40040000, 'Sleep', ['Agent': 'Sleeper']).
 1884fnpattern(shake, 40060000, 'Body_movement', ['Experiencer': 'Agent']).
 1885fnpattern(shiver, 40060000, 'Body_movement', ['Experiencer': 'Agent']).
 1886fnpattern(shudder, 40060000, 'Body_movement', ['Experiencer': 'Agent']).
 1887fnpattern(writhe, 40060000, 'Body_movement', ['Experiencer': 'Agent']).
 1888fnpattern(asphyxiate, 40070000, 'Death', ['Agent': 'Cause', 'Theme': 'Protagonist']).
 1889fnpattern(drown, 40070000, 'Death', ['Agent': 'Cause', 'Theme': 'Protagonist']).
 1890fnpattern(starve, 40070000, 'Death', ['Agent': 'Cause', 'Theme': 'Protagonist']).
 1891fnpattern(starve, 40070000, 'Killing', ['Agent': 'Cause', 'Theme': 'Victim']).
 1892fnpattern(starve, 40070000, 'Killing', ['Agent': 'Killer', 'Theme': 'Victim']).
 1893fnpattern(suffocate, 40070000, 'Death', ['Agent': 'Cause', 'Theme': 'Protagonist']).
 1894fnpattern(hurt, 40081000, 'Perception_body', ['Experiencer': 'Experiencer', 'Patient': 'Body_part']).
 1895fnpattern(itch, 40081000, 'Perception_body', ['Experiencer': 'Experiencer', 'Patient': 'Body_part']).
 1896fnpattern(ache, 40082000, 'Perception_body', ['Experiencer': 'Experiencer', 'Patient': 'Body_part']).
 1897fnpattern(burn, 40082000, 'Perception_body', ['Experiencer': 'Experiencer', 'Patient': 'Body_part']).
 1898fnpattern(prickle, 40082000, 'Perception_body', ['Experiencer': 'Experiencer', 'Patient': 'Body_part']).
 1899fnpattern(smart, 40082000, 'Perception_body', ['Experiencer': 'Experiencer', 'Patient': 'Body_part']).
 1900fnpattern(sting, 40082000, 'Perception_body', ['Experiencer': 'Experiencer', 'Patient': 'Body_part']).
 1901fnpattern(tickle, 40082000, 'Perception_body', ['Experiencer': 'Experiencer', 'Patient': 'Body_part']).
 1902fnpattern(tingle, 40082000, 'Perception_body', ['Experiencer': 'Experiencer', 'Patient': 'Body_part']).
 1903fnpattern(stub, 40083100, 'Experience_bodily_harm', ['Experiencer': 'Experiencer', 'Patient': 'Body_part']).
 1904fnpattern(break, 40083110, 'Experience_bodily_harm', ['Experiencer': 'Experiencer', 'Patient': 'Body_part']).
 1905fnpattern(pull, 40083110, 'Experience_bodily_harm', ['Experiencer': 'Experiencer', 'Patient': 'Body_part']).
 1906fnpattern(sprain, 40083110, 'Experience_bodily_harm', ['Experiencer': 'Experiencer', 'Patient': 'Body_part']).
 1907fnpattern(twist, 40083110, 'Experience_bodily_harm', ['Experiencer': 'Experiencer', 'Patient': 'Body_part']).
 1908fnpattern(burn, 40083200, 'Experience_bodily_harm', ['Experiencer': 'Experiencer', 'Patient': 'Body_part']).
 1909fnpattern(cut, 40083200, 'Experience_bodily_harm', ['Experiencer': 'Experiencer', 'Patient': 'Body_part']).
 1910fnpattern(hurt, 40083200, 'Experience_bodily_harm', ['Experiencer': 'Experiencer', 'Patient': 'Body_part']).
 1911fnpattern(injure, 40083200, 'Experience_bodily_harm', ['Experiencer': 'Experiencer', 'Patient': 'Body_part']).
 1912fnpattern(strain, 40083200, 'Experience_bodily_harm', ['Experiencer': 'Experiencer', 'Patient': 'Body_part']).
 1913fnpattern(bathe, 41011000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1914fnpattern(bathe, 41011000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Patient']).
 1915fnpattern(shave, 41011000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1916fnpattern(shave, 41011000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Patient']).
 1917fnpattern(shower, 41011000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1918fnpattern(shower, 41011000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Patient']).
 1919fnpattern(wash, 41011000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1920fnpattern(wash, 41011000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Patient']).
 1921fnpattern(groom, 41012000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1922fnpattern(groom, 41012000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Patient']).
 1923fnpattern(floss, 41021000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1924fnpattern(floss, 41021000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Patient']).
 1925fnpattern(shave, 41021000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1926fnpattern(shave, 41021000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Patient']).
 1927fnpattern(wash, 41021000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1928fnpattern(wash, 41021000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Patient']).
 1929fnpattern(comb, 41022000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1930fnpattern(comb, 41022000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Patient']).
 1931fnpattern(curl, 41022000, 'Hair_configuration', ['Patient': 'Hair']).
 1932fnpattern(manicure, 41022000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1933fnpattern(manicure, 41022000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Patient']).
 1934fnpattern(plait, 41022000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1935fnpattern(plait, 41022000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Patient']).
 1936fnpattern(pluck, 41022000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1937fnpattern(pluck, 41022000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Patient']).
 1938fnpattern(shampoo, 41022000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1939fnpattern(shampoo, 41022000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Patient']).
 1940fnpattern(soap, 41022000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1941fnpattern(soap, 41022000, 'Grooming', ['Agent': 'Agent', 'Patient': 'Patient']).
 1942fnpattern(assassinate, 42010000, 'Killing', ['Agent': 'Killer', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1943fnpattern(assassinate, 42010000, 'Killing', ['Agent': 'Cause', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1944fnpattern(butcher, 42010000, 'Killing', ['Agent': 'Killer', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1945fnpattern(butcher, 42010000, 'Killing', ['Agent': 'Cause', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1946fnpattern(eliminate, 42010000, 'Killing', ['Agent': 'Killer', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1947fnpattern(eliminate, 42010000, 'Killing', ['Agent': 'Cause', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1948fnpattern(execute, 42010000, 'Execution', ['Agent': 'Executioner', 'Patient': 'Executed']).
 1949fnpattern(liquidate, 42010000, 'Killing', ['Agent': 'Killer', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1950fnpattern(liquidate, 42010000, 'Killing', ['Agent': 'Cause', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1951fnpattern(massacre, 42010000, 'Killing', ['Agent': 'Killer', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1952fnpattern(massacre, 42010000, 'Killing', ['Agent': 'Cause', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1953fnpattern(murder, 42010000, 'Killing', ['Agent': 'Killer', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1954fnpattern(murder, 42010000, 'Killing', ['Agent': 'Cause', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1955fnpattern(slaughter, 42010000, 'Killing', ['Agent': 'Killer', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1956fnpattern(slaughter, 42010000, 'Killing', ['Agent': 'Cause', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1957fnpattern(slay, 42010000, 'Killing', ['Agent': 'Killer', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1958fnpattern(slay, 42010000, 'Killing', ['Agent': 'Cause', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1959fnpattern(kill, 42010100, 'Killing', ['Agent': 'Killer', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1960fnpattern(kill, 42010100, 'Killing', ['Agent': 'Cause', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1961fnpattern(asphyxiate, 42020000, 'Killing', ['Agent': 'Killer', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1962fnpattern(asphyxiate, 42020000, 'Killing', ['Agent': 'Cause', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1963fnpattern(crucify, 42020000, 'Killing', ['Agent': 'Killer', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1964fnpattern(crucify, 42020000, 'Killing', ['Agent': 'Cause', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1965fnpattern(drown, 42020000, 'Killing', ['Agent': 'Killer', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1966fnpattern(drown, 42020000, 'Killing', ['Agent': 'Cause', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1967fnpattern(electrocute, 42020000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
 1968fnpattern(electrocute, 42020000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1969fnpattern(electrocute, 42020000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
 1970fnpattern(electrocute, 42020000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
 1971fnpattern(garrotte, 42020000, 'Killing', ['Agent': 'Killer', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1972fnpattern(garrotte, 42020000, 'Killing', ['Agent': 'Cause', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1973fnpattern(hang, 42020000, 'Execution', ['Agent': 'Executioner', 'Patient': 'Executed']).
 1974fnpattern(knife, 42020000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
 1975fnpattern(knife, 42020000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1976fnpattern(knife, 42020000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
 1977fnpattern(knife, 42020000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
 1978fnpattern(smother, 42020000, 'Killing', ['Agent': 'Killer', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1979fnpattern(smother, 42020000, 'Killing', ['Agent': 'Cause', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1980fnpattern(stab, 42020000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Victim']).
 1981fnpattern(stab, 42020000, 'Cause_harm', ['Agent': 'Agent', 'Patient': 'Body_part']).
 1982fnpattern(stab, 42020000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Victim']).
 1983fnpattern(stab, 42020000, 'Cause_harm', ['Agent': 'Cause', 'Patient': 'Body_part']).
 1984fnpattern(suffocate, 42020000, 'Killing', ['Agent': 'Killer', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1985fnpattern(suffocate, 42020000, 'Killing', ['Agent': 'Cause', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 1986fnpattern(flame, 43010000, 'Light_movement', ['Agent': 'Emitter', 'Theme': 'Beam', 'Location': 'Source']).
 1987fnpattern(flame, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Figure', 'Location': 'Ground']).
 1988fnpattern(flame, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Light', 'Location': 'Ground']).
 1989fnpattern(flare, 43010000, 'Light_movement', ['Agent': 'Emitter', 'Theme': 'Beam', 'Location': 'Source']).
 1990fnpattern(flare, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Figure', 'Location': 'Ground']).
 1991fnpattern(flare, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Light', 'Location': 'Ground']).
 1992fnpattern(flash, 43010000, 'Light_movement', ['Agent': 'Emitter', 'Theme': 'Beam', 'Location': 'Source']).
 1993fnpattern(flash, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Figure', 'Location': 'Ground']).
 1994fnpattern(flash, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Light', 'Location': 'Ground']).
 1995fnpattern(flicker, 43010000, 'Light_movement', ['Agent': 'Emitter', 'Theme': 'Beam', 'Location': 'Source']).
 1996fnpattern(flicker, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Figure', 'Location': 'Ground']).
 1997fnpattern(flicker, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Light', 'Location': 'Ground']).
 1998fnpattern(gleam, 43010000, 'Light_movement', ['Agent': 'Emitter', 'Theme': 'Beam', 'Location': 'Source']).
 1999fnpattern(gleam, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Figure', 'Location': 'Ground']).
 2000fnpattern(gleam, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Light', 'Location': 'Ground']).
 2001fnpattern(glimmer, 43010000, 'Light_movement', ['Agent': 'Emitter', 'Theme': 'Beam', 'Location': 'Source']).
 2002fnpattern(glimmer, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Figure', 'Location': 'Ground']).
 2003fnpattern(glimmer, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Light', 'Location': 'Ground']).
 2004fnpattern(glint, 43010000, 'Light_movement', ['Agent': 'Emitter', 'Theme': 'Beam', 'Location': 'Source']).
 2005fnpattern(glint, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Figure', 'Location': 'Ground']).
 2006fnpattern(glint, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Light', 'Location': 'Ground']).
 2007fnpattern(glisten, 43010000, 'Light_movement', ['Agent': 'Emitter', 'Theme': 'Beam', 'Location': 'Source']).
 2008fnpattern(glisten, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Figure', 'Location': 'Ground']).
 2009fnpattern(glisten, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Light', 'Location': 'Ground']).
 2010fnpattern(glitter, 43010000, 'Light_movement', ['Agent': 'Emitter', 'Theme': 'Beam', 'Location': 'Source']).
 2011fnpattern(glitter, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Figure', 'Location': 'Ground']).
 2012fnpattern(glitter, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Light', 'Location': 'Ground']).
 2013fnpattern(glow, 43010000, 'Light_movement', ['Agent': 'Emitter', 'Theme': 'Beam', 'Location': 'Source']).
 2014fnpattern(glow, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Figure', 'Location': 'Ground']).
 2015fnpattern(glow, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Light', 'Location': 'Ground']).
 2016fnpattern(scintillate, 43010000, 'Light_movement', ['Agent': 'Emitter', 'Theme': 'Beam', 'Location': 'Source']).
 2017fnpattern(scintillate, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Figure', 'Location': 'Ground']).
 2018fnpattern(scintillate, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Light', 'Location': 'Ground']).
 2019fnpattern(shimmer, 43010000, 'Light_movement', ['Agent': 'Emitter', 'Theme': 'Beam', 'Location': 'Source']).
 2020fnpattern(shimmer, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Figure', 'Location': 'Ground']).
 2021fnpattern(shimmer, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Light', 'Location': 'Ground']).
 2022fnpattern(shine, 43010000, 'Light_movement', ['Agent': 'Emitter', 'Theme': 'Beam', 'Location': 'Source']).
 2023fnpattern(shine, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Figure', 'Location': 'Ground']).
 2024fnpattern(shine, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Light', 'Location': 'Ground']).
 2025fnpattern(sparkle, 43010000, 'Light_movement', ['Agent': 'Emitter', 'Theme': 'Beam', 'Location': 'Source']).
 2026fnpattern(sparkle, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Figure', 'Location': 'Ground']).
 2027fnpattern(sparkle, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Light', 'Location': 'Ground']).
 2028fnpattern(twinkle, 43010000, 'Light_movement', ['Agent': 'Emitter', 'Theme': 'Beam', 'Location': 'Source']).
 2029fnpattern(twinkle, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Figure', 'Location': 'Ground']).
 2030fnpattern(twinkle, 43010000, 'Location_of_light', ['Agent': 'Cause_to_shine', 'Theme': 'Light', 'Location': 'Ground']).
 2031fnpattern(bang, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2032fnpattern(buzz, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2033fnpattern(chug, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2034fnpattern(clack, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2035fnpattern(clang, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2036fnpattern(clank, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2037fnpattern(clatter, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2038fnpattern(click, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2039fnpattern(clink, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2040fnpattern(clump, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2041fnpattern(clunk, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2042fnpattern(crackle, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2043fnpattern(crash, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2044fnpattern(creak, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2045fnpattern(crunch, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2046fnpattern(fizz, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2047fnpattern(gurgle, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2048fnpattern(hiss, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2049fnpattern(howl, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2050fnpattern(patter, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2051fnpattern(ping, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2052fnpattern(purr, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2053fnpattern(putter, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2054fnpattern(roar, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2055fnpattern(rumble, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2056fnpattern(rustle, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2057fnpattern(screech, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2058fnpattern(splash, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2059fnpattern(splutter, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2060fnpattern(squelch, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2061fnpattern(swish, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2062fnpattern(thud, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2063fnpattern(thump, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2064fnpattern(thunder, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2065fnpattern(wheeze, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2066fnpattern(whine, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2067fnpattern(whir, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2068fnpattern(zing, 43020000, 'Motion_noise', ['Theme': 'Theme', 'Location': 'Area']).
 2069fnpattern(reek, 43030000, 'Chemical-sense_description', ['Theme': 'Sensory_attribute', 'Location': 'Source']).
 2070fnpattern(smell, 43030000, 'Chemical-sense_description', ['Theme': 'Sensory_attribute', 'Location': 'Source']).
 2071fnpattern(stink, 43030000, 'Chemical-sense_description', ['Theme': 'Sensory_attribute', 'Location': 'Source']).
 2072fnpattern(belch, 43040000, 'Excreting', ['Theme': 'Excreta', 'Source': 'Excreter']).
 2073fnpattern(bubble, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Goal']).
 2074fnpattern(bubble, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Area']).
 2075fnpattern(dribble, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Goal']).
 2076fnpattern(dribble, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Area']).
 2077fnpattern(drip, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Goal']).
 2078fnpattern(drip, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Area']).
 2079fnpattern(emanate, 43040000, 'Emanating', ['Theme': 'Emission', 'Source': 'Source', 'Location': 'Goal']).
 2080fnpattern(emanate, 43040000, 'Emanating', ['Theme': 'Emission', 'Source': 'Source', 'Location': 'Path']).
 2081fnpattern(exude, 43040000, 'Emanating', ['Theme': 'Emission', 'Source': 'Source', 'Location': 'Goal']).
 2082fnpattern(exude, 43040000, 'Emanating', ['Theme': 'Emission', 'Source': 'Source', 'Location': 'Path']).
 2083fnpattern(exude, 43040000, 'Emitting', ['Theme': 'Emission', 'Source': 'Source_emitter', 'Location': 'Goal']).
 2084fnpattern(exude, 43040000, 'Emitting', ['Theme': 'Emission', 'Source': 'Source_emitter', 'Location': 'Path']).
 2085fnpattern(gush, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Goal']).
 2086fnpattern(gush, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Area']).
 2087fnpattern(leak, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Goal']).
 2088fnpattern(leak, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Area']).
 2089fnpattern(ooze, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Goal']).
 2090fnpattern(ooze, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Area']).
 2091fnpattern(pour, 43040000, 'Mass_motion', ['Theme': 'Mass_theme', 'Source': 'Source', 'Location': 'Goal']).
 2092fnpattern(pour, 43040000, 'Mass_motion', ['Theme': 'Mass_theme', 'Source': 'Source', 'Location': 'Area']).
 2093fnpattern(pour, 43040000, 'Mass_motion', ['Theme': 'Mass_theme', 'Source': 'Source', 'Location': 'Path']).
 2094fnpattern(radiate, 43040000, 'Emanating', ['Theme': 'Emission', 'Source': 'Source', 'Location': 'Goal']).
 2095fnpattern(radiate, 43040000, 'Emanating', ['Theme': 'Emission', 'Source': 'Source', 'Location': 'Path']).
 2096fnpattern(radiate, 43040000, 'Emitting', ['Theme': 'Emission', 'Source': 'Source_emitter', 'Location': 'Goal']).
 2097fnpattern(radiate, 43040000, 'Emitting', ['Theme': 'Emission', 'Source': 'Source_emitter', 'Location': 'Path']).
 2098fnpattern(seep, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Goal']).
 2099fnpattern(seep, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Area']).
 2100fnpattern(spew, 43040000, 'Excreting', ['Theme': 'Excreta', 'Source': 'Excreter']).
 2101fnpattern(spew, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Goal']).
 2102fnpattern(spew, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Area']).
 2103fnpattern(spill, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Goal']).
 2104fnpattern(spill, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Area']).
 2105fnpattern(spout, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Goal']).
 2106fnpattern(spout, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Area']).
 2107fnpattern(spurt, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Goal']).
 2108fnpattern(spurt, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Area']).
 2109fnpattern(squirt, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Goal']).
 2110fnpattern(squirt, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Area']).
 2111fnpattern(stream, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Goal']).
 2112fnpattern(stream, 43040000, 'Fluidic_motion', ['Theme': 'Fluid', 'Source': 'Source', 'Location': 'Area']).
 2113fnpattern(stream, 43040000, 'Mass_motion', ['Theme': 'Mass_theme', 'Source': 'Source', 'Location': 'Goal']).
 2114fnpattern(stream, 43040000, 'Mass_motion', ['Theme': 'Mass_theme', 'Source': 'Source', 'Location': 'Area']).
 2115fnpattern(stream, 43040000, 'Mass_motion', ['Theme': 'Mass_theme', 'Source': 'Source', 'Location': 'Path']).
 2116fnpattern(sweat, 43040000, 'Excreting', ['Theme': 'Excreta', 'Source': 'Excreter']).
 2117fnpattern(annihilate, 44000000, 'Destroying', ['Agent': 'Cause', 'Patient': 'Undergoer']).
 2118fnpattern(annihilate, 44000000, 'Destroying', ['Agent': 'Destroyer', 'Patient': 'Undergoer']).
 2119fnpattern(damage, 44000000, 'Damaging', ['Agent': 'Agent', 'Patient': 'Patient']).
 2120fnpattern(damage, 44000000, 'Damaging', ['Agent': 'Cause', 'Patient': 'Patient']).
 2121fnpattern(demolish, 44000000, 'Destroying', ['Agent': 'Cause', 'Patient': 'Undergoer']).
 2122fnpattern(demolish, 44000000, 'Destroying', ['Agent': 'Destroyer', 'Patient': 'Undergoer']).
 2123fnpattern(destroy, 44000000, 'Destroying', ['Agent': 'Cause', 'Patient': 'Undergoer']).
 2124fnpattern(destroy, 44000000, 'Destroying', ['Agent': 'Destroyer', 'Patient': 'Undergoer']).
 2125fnpattern(devastate, 44000000, 'Destroying', ['Agent': 'Cause', 'Patient': 'Undergoer']).
 2126fnpattern(devastate, 44000000, 'Destroying', ['Agent': 'Destroyer', 'Patient': 'Undergoer']).
 2127fnpattern(obliterate, 44000000, 'Destroying', ['Agent': 'Cause', 'Patient': 'Undergoer']).
 2128fnpattern(obliterate, 44000000, 'Destroying', ['Agent': 'Destroyer', 'Patient': 'Undergoer']).
 2129fnpattern(raze, 44000000, 'Destroying', ['Agent': 'Cause', 'Patient': 'Undergoer']).
 2130fnpattern(raze, 44000000, 'Destroying', ['Agent': 'Destroyer', 'Patient': 'Undergoer']).
 2131fnpattern(shatter, 44000000, 'Cause_to_fragment', ['Agent': 'Agent', 'Patient': 'Whole_patient']).
 2132fnpattern(break, 45010000, 'Cause_to_fragment', ['Agent': 'Agent', 'Patient': 'Patient']).
 2133fnpattern(chip, 45010000, 'Damaging', ['Agent': 'Agent', 'Patient': 'Patient']).
 2134fnpattern(fracture, 45010000, 'Cause_to_fragment', ['Agent': 'Agent', 'Patient': 'Patient']).
 2135fnpattern(rip, 45010000, 'Cause_to_fragment', ['Agent': 'Agent', 'Patient': 'Patient']).
 2136fnpattern(shatter, 45010000, 'Cause_to_fragment', ['Agent': 'Agent', 'Patient': 'Patient']).
 2137fnpattern(smash, 45010000, 'Cause_to_fragment', ['Agent': 'Agent', 'Patient': 'Patient']).
 2138fnpattern(snap, 45010000, 'Cause_to_fragment', ['Agent': 'Agent', 'Patient': 'Patient']).
 2139fnpattern(splinter, 45010000, 'Cause_to_fragment', ['Agent': 'Agent', 'Patient': 'Patient']).
 2140fnpattern(split, 45010000, 'Separation', ['Agent': 'Agent', 'Patient': 'Whole', 'Oblique': 'Parts']).
 2141fnpattern(split, 45010000, 'Separation', ['Agent': 'Cause', 'Patient': 'Whole', 'Oblique': 'Parts']).
 2142fnpattern(tear, 45010000, 'Cause_to_fragment', ['Agent': 'Agent', 'Patient': 'Patient']).
 2143fnpattern(bend, 45020000, 'Reshaping', ['Agent': 'Cause', 'Patient': 'Undergoer', 'Instrument': 'Instrument']).
 2144fnpattern(bend, 45020000, 'Reshaping', ['Agent': 'Deformer', 'Patient': 'Undergoer', 'Instrument': 'Instrument']).
 2145fnpattern(crumple, 45020000, 'Reshaping', ['Agent': 'Cause', 'Patient': 'Undergoer', 'Instrument': 'Instrument']).
 2146fnpattern(crumple, 45020000, 'Reshaping', ['Agent': 'Deformer', 'Patient': 'Undergoer', 'Instrument': 'Instrument']).
 2147fnpattern(fold, 45020000, 'Reshaping', ['Agent': 'Cause', 'Patient': 'Undergoer', 'Instrument': 'Instrument']).
 2148fnpattern(fold, 45020000, 'Reshaping', ['Agent': 'Deformer', 'Patient': 'Undergoer', 'Instrument': 'Instrument']).
 2149fnpattern(bake, 45030000, 'Absorb_heat', ['Agent': 'Heat_source', 'Patient': 'Entity']).
 2150fnpattern(bake, 45030000, 'Apply_heat', ['Agent': 'Cook', 'Patient': 'Food', 'Instrument': 'Heating_instrument']).
 2151fnpattern(bake, 45030000, 'Cooking_creation', ['Agent': 'Cook', 'Patient': 'Ingredients', 'Instrument': 'Heating_instrument']).
 2152fnpattern(blanch, 45030000, 'Apply_heat', ['Agent': 'Cook', 'Patient': 'Food', 'Instrument': 'Heating_instrument']).
 2153fnpattern(boil, 45030000, 'Absorb_heat', ['Agent': 'Heat_source', 'Patient': 'Entity']).
 2154fnpattern(boil, 45030000, 'Apply_heat', ['Agent': 'Cook', 'Patient': 'Food', 'Instrument': 'Heating_instrument']).
 2155fnpattern(braise, 45030000, 'Apply_heat', ['Agent': 'Cook', 'Patient': 'Food', 'Instrument': 'Heating_instrument']).
 2156fnpattern(broil, 45030000, 'Apply_heat', ['Agent': 'Cook', 'Patient': 'Food', 'Instrument': 'Heating_instrument']).
 2157fnpattern(brown, 45030000, 'Apply_heat', ['Agent': 'Cook', 'Patient': 'Food', 'Instrument': 'Heating_instrument']).
 2158fnpattern(coddle, 45030000, 'Apply_heat', ['Agent': 'Cook', 'Patient': 'Food', 'Instrument': 'Heating_instrument']).
 2159fnpattern(cook, 45030000, 'Absorb_heat', ['Agent': 'Heat_source', 'Patient': 'Entity']).
 2160fnpattern(cook, 45030000, 'Apply_heat', ['Agent': 'Cook', 'Patient': 'Food', 'Instrument': 'Heating_instrument']).
 2161fnpattern(cook, 45030000, 'Cooking_creation', ['Agent': 'Cook', 'Patient': 'Ingredients', 'Instrument': 'Heating_instrument']).
 2162fnpattern(fry, 45030000, 'Absorb_heat', ['Agent': 'Heat_source', 'Patient': 'Entity']).
 2163fnpattern(fry, 45030000, 'Apply_heat', ['Agent': 'Cook', 'Patient': 'Food', 'Instrument': 'Heating_instrument']).
 2164fnpattern(grill, 45030000, 'Apply_heat', ['Agent': 'Cook', 'Patient': 'Food', 'Instrument': 'Heating_instrument']).
 2165fnpattern(microwave, 45030000, 'Apply_heat', ['Agent': 'Cook', 'Patient': 'Food', 'Instrument': 'Heating_instrument']).
 2166fnpattern(parboil, 45030000, 'Apply_heat', ['Agent': 'Cook', 'Patient': 'Food', 'Instrument': 'Heating_instrument']).
 2167fnpattern(poach, 45030000, 'Apply_heat', ['Agent': 'Cook', 'Patient': 'Food', 'Instrument': 'Heating_instrument']).
 2168fnpattern(reheat, 45030000, 'Cause_temperature_change', ['Agent': 'Agent', 'Patient': 'Item', 'Instrument': 'Hot_Cold_source']).
 2169fnpattern(reheat, 45030000, 'Cause_temperature_change', ['Agent': 'Cause', 'Patient': 'Item', 'Instrument': 'Hot_Cold_source']).
 2170fnpattern(reheat, 45030000, 'Inchoative_change_of_temperature', ['Agent': 'Cause', 'Patient': 'Item', 'Instrument': 'Hot_Cold_source']).
 2171fnpattern(roast, 45030000, 'Apply_heat', ['Agent': 'Cook', 'Patient': 'Food', 'Instrument': 'Heating_instrument']).
 2172fnpattern(saute, 45030000, 'Apply_heat', ['Agent': 'Cook', 'Patient': 'Food', 'Instrument': 'Heating_instrument']).
 2173fnpattern(scald, 45030000, 'Apply_heat', ['Agent': 'Cook', 'Patient': 'Food', 'Instrument': 'Heating_instrument']).
 2174fnpattern(simmer, 45030000, 'Absorb_heat', ['Agent': 'Heat_source', 'Patient': 'Entity']).
 2175fnpattern(simmer, 45030000, 'Apply_heat', ['Agent': 'Cook', 'Patient': 'Food', 'Instrument': 'Heating_instrument']).
 2176fnpattern(steam, 45030000, 'Apply_heat', ['Agent': 'Cook', 'Patient': 'Food', 'Instrument': 'Heating_instrument']).
 2177fnpattern(stew, 45030000, 'Absorb_heat', ['Agent': 'Heat_source', 'Patient': 'Entity']).
 2178fnpattern(stew, 45030000, 'Apply_heat', ['Agent': 'Cook', 'Patient': 'Food', 'Instrument': 'Heating_instrument']).
 2179fnpattern(toast, 45030000, 'Apply_heat', ['Agent': 'Cook', 'Patient': 'Food', 'Instrument': 'Heating_instrument']).
 2180fnpattern(abrade, 45040000, 'Experience_bodily_harm', ['Agent': 'Experiencer', 'Patient': 'Body_part', 'Instrument': 'Injuring_entity']).
 2181fnpattern(advance, 45040000, 'Change_position_on_a_scale', ['Patient': 'Attribute']).
 2182fnpattern(awake, 45040000, 'Waking_up', ['Patient': 'Sleeper']).
 2183fnpattern(awaken, 45040000, 'Cause_to_wake', ['Agent': 'Agent', 'Patient': 'Sleeper', 'Instrument': 'Instrument']).
 2184fnpattern(awaken, 45040000, 'Cause_to_wake', ['Agent': 'Cause', 'Patient': 'Sleeper', 'Instrument': 'Instrument']).
 2185fnpattern(bisect, 45040000, 'Separation', ['Agent': 'Agent', 'Patient': 'Whole', 'Instrument': 'Instrument']).
 2186fnpattern(bisect, 45040000, 'Separation', ['Agent': 'Cause', 'Patient': 'Whole', 'Instrument': 'Instrument']).
 2187fnpattern(botch, 45040000, 'Bungling', ['Agent': 'Agent', 'Patient': 'Patient', 'Instrument': 'Instrument']).
 2188fnpattern(botch, 45040000, 'Bungling', ['Agent': 'Agent', 'Patient': 'Action', 'Instrument': 'Instrument']).
 2189fnpattern(categorize, 45040000, 'Categorization', ['Agent': 'Cognizer', 'Patient': 'Item']).
 2190fnpattern(chill, 45040000, 'Cause_temperature_change', ['Agent': 'Cause', 'Patient': 'Item', 'Instrument': 'Hot_Cold_source']).
 2191fnpattern(chill, 45040000, 'Cause_temperature_change', ['Agent': 'Agent', 'Patient': 'Item', 'Instrument': 'Hot_Cold_source']).
 2192fnpattern(chill, 45040000, 'Inchoative_change_of_temperature', ['Patient': 'Item']).
 2193fnpattern(circumcise, 45040000, 'Rite', ['Agent': 'Leader', 'Patient': 'Member', 'Instrument': 'Instrument']).
 2194fnpattern(circumcise, 45040000, 'Rite', ['Agent': 'Leader', 'Patient': 'Object', 'Instrument': 'Instrument']).
 2195fnpattern(circumcise, 45040000, 'Rite', ['Agent': 'Guardian', 'Patient': 'Member', 'Instrument': 'Instrument']).
 2196fnpattern(circumcise, 45040000, 'Rite', ['Agent': 'Guardian', 'Patient': 'Object', 'Instrument': 'Instrument']).
 2197fnpattern(clear, 45040000, 'Emptying', ['Agent': 'Agent', 'Instrument': 'Theme', 'Patient': 'Source']).
 2198fnpattern(clear, 45040000, 'Emptying', ['Agent': 'Cause', 'Instrument': 'Theme', 'Patient': 'Source']).
 2199fnpattern(coagulate, 45040000, 'Change_of_consistency', ['Patient': 'Undergoer']).
 2200fnpattern(conciliate, 45040000, 'Experiencer_obj', ['Agent': 'Stimulus', 'Patient': 'Experiencer', 'Instrument': 'Means']).
 2201fnpattern(condense, 45040000, 'Change_of_phase', ['Patient': 'Undergoer']).
 2202fnpattern(contract, 45040000, 'Expansion', ['Patient': 'Item']).
 2203fnpattern(cool, 45040000, 'Cause_temperature_change', ['Agent': 'Cause', 'Patient': 'Item', 'Instrument': 'Hot_Cold_source']).
 2204fnpattern(cool, 45040000, 'Cause_temperature_change', ['Agent': 'Agent', 'Patient': 'Item', 'Instrument': 'Hot_Cold_source']).
 2205fnpattern(cool, 45040000, 'Inchoative_change_of_temperature', ['Patient': 'Item']).
 2206fnpattern(corrode, 45040000, 'Corroding', ['Patient': 'Undergoer']).
 2207fnpattern(curdle, 45040000, 'Cause_change_of_consistency', ['Agent': 'Agent', 'Patient': 'Undergoer', 'Instrument': 'Instrument']).
 2208fnpattern(curdle, 45040000, 'Cause_change_of_consistency', ['Agent': 'Agent', 'Patient': 'Undergoer', 'Instrument': 'Change_agent']).
 2209fnpattern(curdle, 45040000, 'Cause_change_of_consistency', ['Agent': 'Agent', 'Patient': 'Undergoer', 'Instrument': 'Means']).
 2210fnpattern(curdle, 45040000, 'Cause_change_of_consistency', ['Agent': 'Cause', 'Patient': 'Undergoer', 'Instrument': 'Instrument']).
 2211fnpattern(curdle, 45040000, 'Cause_change_of_consistency', ['Agent': 'Cause', 'Patient': 'Undergoer', 'Instrument': 'Change_agent']).
 2212fnpattern(curdle, 45040000, 'Cause_change_of_consistency', ['Agent': 'Cause', 'Patient': 'Undergoer', 'Instrument': 'Means']).
 2213fnpattern(curdle, 45040000, 'Change_of_consistency', ['Patient': 'Undergoer']).
 2214fnpattern(dampen, 45040000, 'Cause_to_be_wet', ['Agent': 'Agent', 'Instrument': 'Liquid', 'Patient': 'Undergoer']).
 2215fnpattern(dampen, 45040000, 'Cause_to_be_wet', ['Agent': 'Cause', 'Instrument': 'Liquid', 'Patient': 'Undergoer']).
 2216fnpattern(decompose, 45040000, 'Rotting', ['Patient': 'Undergoer']).
 2217fnpattern(decrease, 45040000, 'Cause_change_of_scalar_position', ['Agent': 'Agent', 'Patient': 'Attribute']).
 2218fnpattern(decrease, 45040000, 'Cause_change_of_scalar_position', ['Agent': 'Cause', 'Patient': 'Attribute']).
 2219fnpattern(decrease, 45040000, 'Change_position_on_a_scale', ['Patient': 'Attribute']).
 2220fnpattern(defrost, 45040000, 'Cause_change_of_phase', ['Agent': 'Agent', 'Patient': 'Undergoer']).
 2221fnpattern(defrost, 45040000, 'Cause_change_of_phase', ['Agent': 'Cause', 'Patient': 'Undergoer']).
 2222fnpattern(defrost, 45040000, 'Change_of_phase', ['Patient': 'Undergoer']).
 2223fnpattern(dehumidify, 45040000, 'Cause_to_be_dry', ['Agent': 'Agent', 'Instrument': 'Instrument', 'Patient': 'Dryee']).
 2224fnpattern(dehumidify, 45040000, 'Cause_to_be_dry', ['Agent': 'Cause', 'Instrument': 'Instrument', 'Patient': 'Dryee']).
 2225fnpattern(dehydrate, 45040000, 'Cause_to_be_dry', ['Agent': 'Agent', 'Instrument': 'Instrument', 'Patient': 'Dryee']).
 2226fnpattern(dehydrate, 45040000, 'Cause_to_be_dry', ['Agent': 'Cause', 'Instrument': 'Instrument', 'Patient': 'Dryee']).
 2227fnpattern(desiccate, 45040000, 'Cause_to_be_dry', ['Agent': 'Agent', 'Instrument': 'Instrument', 'Patient': 'Dryee']).
 2228fnpattern(desiccate, 45040000, 'Cause_to_be_dry', ['Agent': 'Cause', 'Instrument': 'Instrument', 'Patient': 'Dryee']).
 2229fnpattern(diminish, 45040000, 'Change_position_on_a_scale', ['Patient': 'Attribute']).
 2230fnpattern(disperse, 45040000, 'Dispersal', ['Agent': 'Agent', 'Patient': 'Individuals', 'Instrument': 'Means']).
 2231fnpattern(disperse, 45040000, 'Dispersal', ['Agent': 'Cause', 'Patient': 'Individuals', 'Instrument': 'Means']).
 2232fnpattern(divide, 45040000, 'Separation', ['Agent': 'Agent', 'Patient': 'Whole', 'Instrument': 'Instrument']).
 2233fnpattern(divide, 45040000, 'Separation', ['Agent': 'Cause', 'Patient': 'Whole', 'Instrument': 'Instrument']).
 2234fnpattern(double, 45040000, 'Change_position_on_a_scale', ['Patient': 'Attribute']).
 2235fnpattern(drain, 45040000, 'Emptying', ['Agent': 'Agent', 'Instrument': 'Theme', 'Patient': 'Source']).
 2236fnpattern(drain, 45040000, 'Emptying', ['Agent': 'Cause', 'Instrument': 'Theme', 'Patient': 'Source']).
 2237fnpattern(dry, 45040000, 'Cause_to_be_dry', ['Agent': 'Agent', 'Instrument': 'Instrument', 'Patient': 'Dryee']).
 2238fnpattern(dry, 45040000, 'Cause_to_be_dry', ['Agent': 'Cause', 'Instrument': 'Instrument', 'Patient': 'Dryee']).
 2239fnpattern(ease, 45040000, 'Cure', ['Agent': 'Healer', 'Instrument': 'Treatment', 'Patient': 'Affliction']).
 2240fnpattern(ease, 45040000, 'Cure', ['Agent': 'Healer', 'Instrument': 'Treatment', 'Patient': 'Patient']).
 2241fnpattern(ease, 45040000, 'Cure', ['Agent': 'Healer', 'Instrument': 'Treatment', 'Patient': 'Body_part']).
 2242fnpattern(ease, 45040000, 'Cure', ['Agent': 'Healer', 'Instrument': 'Medication', 'Patient': 'Affliction']).
 2243fnpattern(ease, 45040000, 'Cure', ['Agent': 'Healer', 'Instrument': 'Medication', 'Patient': 'Patient']).
 2244fnpattern(ease, 45040000, 'Cure', ['Agent': 'Healer', 'Instrument': 'Medication', 'Patient': 'Body_part']).
 2245fnpattern(embalm, 45040000, 'Preserving', ['Agent': 'Agent', 'Patient': 'Undergoer', 'Instrument': 'Medium']).
 2246fnpattern(embitter, 45040000, 'Experiencer_obj', ['Agent': 'Stimulus', 'Patient': 'Experiencer', 'Instrument': 'Means']).
 2247fnpattern(empty, 45040000, 'Emptying', ['Agent': 'Agent', 'Instrument': 'Theme', 'Patient': 'Source']).
 2248fnpattern(empty, 45040000, 'Emptying', ['Agent': 'Cause', 'Instrument': 'Theme', 'Patient': 'Source']).
 2249fnpattern(enlarge, 45040000, 'Cause_expansion', ['Agent': 'Agent', 'Patient': 'Item']).
 2250fnpattern(enlarge, 45040000, 'Cause_expansion', ['Agent': 'Cause', 'Patient': 'Item']).
 2251fnpattern(enlarge, 45040000, 'Expansion', ['Patient': 'Item']).
 2252fnpattern(evaporate, 45040000, 'Cause_change_of_phase', ['Agent': 'Agent', 'Patient': 'Undergoer']).
 2253fnpattern(evaporate, 45040000, 'Cause_change_of_phase', ['Agent': 'Cause', 'Patient': 'Undergoer']).
 2254fnpattern(evaporate, 45040000, 'Change_of_phase', ['Patient': 'Undergoer']).
 2255fnpattern(expand, 45040000, 'Expansion', ['Patient': 'Item']).
 2256fnpattern(explode, 45040000, 'Change_position_on_a_scale', ['Patient': 'Attribute']).
 2257fnpattern(fill, 45040000, 'Filling', ['Agent': 'Agent', 'Patient': 'Goal', 'Instrument': 'Theme']).
 2258fnpattern(flatten, 45040000, 'Reshaping', ['Agent': 'Deformer', 'Instrument': 'Instrument', 'Patient': 'Undergoer']).
 2259fnpattern(flatten, 45040000, 'Reshaping', ['Agent': 'Cause', 'Instrument': 'Instrument', 'Patient': 'Undergoer']).
 2260fnpattern(flood, 45040000, 'Filling', ['Agent': 'Agent', 'Patient': 'Goal', 'Instrument': 'Theme']).
 2261fnpattern(freeze, 45040000, 'Cause_change_of_phase', ['Agent': 'Agent', 'Patient': 'Undergoer']).
 2262fnpattern(freeze, 45040000, 'Cause_change_of_phase', ['Agent': 'Cause', 'Patient': 'Undergoer']).
 2263fnpattern(freeze, 45040000, 'Change_of_phase', ['Patient': 'Undergoer']).
 2264fnpattern(fuse, 45040000, 'Amalgamation', ['Patient': 'Parts']).
 2265fnpattern(fuse, 45040000, 'Cause_to_amalgamate', ['Agent': 'Agent', 'Patient': 'Parts']).
 2266fnpattern(grow, 45040000, 'Change_position_on_a_scale', ['Patient': 'Attribute']).
 2267fnpattern(harden, 45040000, 'Cause_change_of_consistency', ['Agent': 'Agent', 'Patient': 'Undergoer', 'Instrument': 'Instrument']).
 2268fnpattern(harden, 45040000, 'Cause_change_of_consistency', ['Agent': 'Agent', 'Patient': 'Undergoer', 'Instrument': 'Change_agent']).
 2269fnpattern(harden, 45040000, 'Cause_change_of_consistency', ['Agent': 'Agent', 'Patient': 'Undergoer', 'Instrument': 'Means']).
 2270fnpattern(harden, 45040000, 'Cause_change_of_consistency', ['Agent': 'Cause', 'Patient': 'Undergoer', 'Instrument': 'Instrument']).
 2271fnpattern(harden, 45040000, 'Cause_change_of_consistency', ['Agent': 'Cause', 'Patient': 'Undergoer', 'Instrument': 'Change_agent']).
 2272fnpattern(harden, 45040000, 'Cause_change_of_consistency', ['Agent': 'Cause', 'Patient': 'Undergoer', 'Instrument': 'Means']).
 2273fnpattern(harden, 45040000, 'Change_of_consistency', ['Patient': 'Undergoer']).
 2274fnpattern(heal, 45040000, 'Cure', ['Agent': 'Healer', 'Instrument': 'Treatment', 'Patient': 'Affliction']).
 2275fnpattern(heal, 45040000, 'Cure', ['Agent': 'Healer', 'Instrument': 'Treatment', 'Patient': 'Patient']).
 2276fnpattern(heal, 45040000, 'Cure', ['Agent': 'Healer', 'Instrument': 'Treatment', 'Patient': 'Body_part']).
 2277fnpattern(heal, 45040000, 'Cure', ['Agent': 'Healer', 'Instrument': 'Medication', 'Patient': 'Affliction']).
 2278fnpattern(heal, 45040000, 'Cure', ['Agent': 'Healer', 'Instrument': 'Medication', 'Patient': 'Patient']).
 2279fnpattern(heal, 45040000, 'Cure', ['Agent': 'Healer', 'Instrument': 'Medication', 'Patient': 'Body_part']).
 2280fnpattern(heat, 45040000, 'Cause_temperature_change', ['Agent': 'Cause', 'Patient': 'Item', 'Instrument': 'Hot_Cold_source']).
 2281fnpattern(heat, 45040000, 'Cause_temperature_change', ['Agent': 'Agent', 'Patient': 'Item', 'Instrument': 'Hot_Cold_source']).
 2282fnpattern(heat, 45040000, 'Inchoative_change_of_temperature', ['Patient': 'Item']).
 2283fnpattern(humidify, 45040000, 'Cause_to_be_wet', ['Agent': 'Agent', 'Instrument': 'Liquid', 'Patient': 'Undergoer']).
 2284fnpattern(humidify, 45040000, 'Cause_to_be_wet', ['Agent': 'Cause', 'Instrument': 'Liquid', 'Patient': 'Undergoer']).
 2285fnpattern(hush, 45040000, 'Become_silent', ['Patient': 'Expressor']).
 2286fnpattern(hush, 45040000, 'Become_silent', ['Patient': 'Speaker']).
 2287fnpattern(hush, 45040000, 'Silencing', ['Agent': 'Agent', 'Patient': 'Speaker', 'Instrument': 'Instrument']).
 2288fnpattern(hush, 45040000, 'Silencing', ['Agent': 'Agent', 'Patient': 'Speaker', 'Instrument': 'Means']).
 2289fnpattern(hush, 45040000, 'Silencing', ['Agent': 'Agent', 'Patient': 'Expressor', 'Instrument': 'Instrument']).
 2290fnpattern(hush, 45040000, 'Silencing', ['Agent': 'Agent', 'Patient': 'Expressor', 'Instrument': 'Means']).
 2291fnpattern(ignite, 45040000, 'Setting_fire', ['Agent': 'Kindler', 'Patients': 'Flame', 'Patient': 'Flammables']).
 2292fnpattern(ignite, 45040000, 'Setting_fire', ['Agent': 'Cause', 'Patients': 'Flame', 'Patient': 'Flammables']).
 2293fnpattern(increase, 45040000, 'Cause_change_of_scalar_position', ['Agent': 'Agent', 'Patient': 'Attribute']).
 2294fnpattern(increase, 45040000, 'Cause_change_of_scalar_position', ['Agent': 'Cause', 'Patient': 'Attribute']).
 2295fnpattern(increase, 45040000, 'Change_position_on_a_scale', ['Patient': 'Attribute']).
 2296fnpattern(inflate, 45040000, 'Cause_expansion', ['Agent': 'Agent', 'Patient': 'Item']).
 2297fnpattern(inflate, 45040000, 'Cause_expansion', ['Agent': 'Cause', 'Patient': 'Item']).
 2298fnpattern(kindle, 45040000, 'Setting_fire', ['Agent': 'Kindler', 'Patients': 'Flame', 'Patient': 'Flammables']).
 2299fnpattern(kindle, 45040000, 'Setting_fire', ['Agent': 'Cause', 'Patients': 'Flame', 'Patient': 'Flammables']).
 2300fnpattern(lengthen, 45040000, 'Cause_expansion', ['Agent': 'Agent', 'Patient': 'Item']).
 2301fnpattern(lengthen, 45040000, 'Cause_expansion', ['Agent': 'Cause', 'Patient': 'Item']).
 2302fnpattern(light, 45040000, 'Setting_fire', ['Agent': 'Kindler', 'Patients': 'Flame', 'Patient': 'Flammables']).
 2303fnpattern(light, 45040000, 'Setting_fire', ['Agent': 'Cause', 'Patients': 'Flame', 'Patient': 'Flammables']).
 2304fnpattern(liquefy, 45040000, 'Cause_change_of_phase', ['Agent': 'Agent', 'Patient': 'Undergoer']).
 2305fnpattern(liquefy, 45040000, 'Cause_change_of_phase', ['Agent': 'Cause', 'Patient': 'Undergoer']).
 2306fnpattern(liquefy, 45040000, 'Change_of_phase', ['Patient': 'Undergoer']).
 2307fnpattern(magnify, 45040000, 'Cause_expansion', ['Agent': 'Agent', 'Patient': 'Item']).
 2308fnpattern(magnify, 45040000, 'Cause_expansion', ['Agent': 'Cause', 'Patient': 'Item']).
 2309fnpattern(melt, 45040000, 'Cause_change_of_phase', ['Agent': 'Agent', 'Patient': 'Undergoer']).
 2310fnpattern(melt, 45040000, 'Cause_change_of_phase', ['Agent': 'Cause', 'Patient': 'Undergoer']).
 2311fnpattern(melt, 45040000, 'Change_of_phase', ['Patient': 'Undergoer']).
 2312fnpattern(moisten, 45040000, 'Cause_to_be_wet', ['Agent': 'Agent', 'Instrument': 'Liquid', 'Patient': 'Undergoer']).
 2313fnpattern(moisten, 45040000, 'Cause_to_be_wet', ['Agent': 'Cause', 'Instrument': 'Liquid', 'Patient': 'Undergoer']).
 2314fnpattern(narrow, 45040000, 'Cause_expansion', ['Agent': 'Agent', 'Patient': 'Item']).
 2315fnpattern(narrow, 45040000, 'Cause_expansion', ['Agent': 'Cause', 'Patient': 'Item']).
 2316fnpattern(obscure, 45040000, 'Eclipse', ['Agent': 'Obstruction', 'Patient': 'Eclipsed']).
 2317fnpattern(oxidize, 45040000, 'Corroding_caused', ['Agent': 'Cause', 'Patient': 'Undergoer']).
 2318fnpattern(putrefy, 45040000, 'Rotting', ['Patient': 'Undergoer']).
 2319fnpattern(quiet, 45040000, 'Become_silent', ['Patient': 'Expressor']).
 2320fnpattern(quiet, 45040000, 'Become_silent', ['Patient': 'Speaker']).
 2321fnpattern(quiet, 45040000, 'Silencing', ['Agent': 'Agent', 'Patient': 'Speaker', 'Instrument': 'Instrument']).
 2322fnpattern(quiet, 45040000, 'Silencing', ['Agent': 'Agent', 'Patient': 'Speaker', 'Instrument': 'Means']).
 2323fnpattern(quiet, 45040000, 'Silencing', ['Agent': 'Agent', 'Patient': 'Expressor', 'Instrument': 'Instrument']).
 2324fnpattern(quiet, 45040000, 'Silencing', ['Agent': 'Agent', 'Patient': 'Expressor', 'Instrument': 'Means']).
 2325fnpattern(reproduce, 45040000, 'Duplication', ['Agent': 'Copy', 'Patient': 'Original']).
 2326fnpattern(reproduce, 45040000, 'Duplication', ['Agent': 'Creator', 'Patient': 'Original']).
 2327fnpattern(shrink, 45040000, 'Cause_expansion', ['Agent': 'Agent', 'Patient': 'Item']).
 2328fnpattern(shrink, 45040000, 'Cause_expansion', ['Agent': 'Cause', 'Patient': 'Item']).
 2329fnpattern(shrink, 45040000, 'Expansion', ['Patient': 'Item']).
 2330fnpattern(silence, 45040000, 'Become_silent', ['Patient': 'Expressor']).
 2331fnpattern(silence, 45040000, 'Become_silent', ['Patient': 'Speaker']).
 2332fnpattern(silence, 45040000, 'Killing', ['Agent': 'Killer', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 2333fnpattern(silence, 45040000, 'Killing', ['Agent': 'Cause', 'Patient': 'Victim', 'Instrument': 'Instrument']).
 2334fnpattern(silence, 45040000, 'Silencing', ['Agent': 'Agent', 'Patient': 'Speaker', 'Instrument': 'Instrument']).
 2335fnpattern(silence, 45040000, 'Silencing', ['Agent': 'Agent', 'Patient': 'Speaker', 'Instrument': 'Means']).
 2336fnpattern(silence, 45040000, 'Silencing', ['Agent': 'Agent', 'Patient': 'Expressor', 'Instrument': 'Instrument']).
 2337fnpattern(silence, 45040000, 'Silencing', ['Agent': 'Agent', 'Patient': 'Expressor', 'Instrument': 'Means']).
 2338fnpattern(soak, 45040000, 'Cause_to_be_wet', ['Agent': 'Agent', 'Instrument': 'Liquid', 'Patient': 'Undergoer']).
 2339fnpattern(soak, 45040000, 'Cause_to_be_wet', ['Agent': 'Cause', 'Instrument': 'Liquid', 'Patient': 'Undergoer']).
 2340fnpattern(soften, 45040000, 'Cause_change_of_consistency', ['Agent': 'Agent', 'Patient': 'Undergoer', 'Instrument': 'Instrument']).
 2341fnpattern(soften, 45040000, 'Cause_change_of_consistency', ['Agent': 'Agent', 'Patient': 'Undergoer', 'Instrument': 'Change_agent']).
 2342fnpattern(soften, 45040000, 'Cause_change_of_consistency', ['Agent': 'Agent', 'Patient': 'Undergoer', 'Instrument': 'Means']).
 2343fnpattern(soften, 45040000, 'Cause_change_of_consistency', ['Agent': 'Cause', 'Patient': 'Undergoer', 'Instrument': 'Instrument']).
 2344fnpattern(soften, 45040000, 'Cause_change_of_consistency', ['Agent': 'Cause', 'Patient': 'Undergoer', 'Instrument': 'Change_agent']).
 2345fnpattern(soften, 45040000, 'Cause_change_of_consistency', ['Agent': 'Cause', 'Patient': 'Undergoer', 'Instrument': 'Means']).
 2346fnpattern(soften, 45040000, 'Change_of_consistency', ['Patient': 'Undergoer']).
 2347fnpattern(solidify, 45040000, 'Change_of_phase', ['Patient': 'Undergoer']).
 2348fnpattern(stretch, 45040000, 'Expansion', ['Patient': 'Item']).
 2349fnpattern(thaw, 45040000, 'Cause_change_of_phase', ['Agent': 'Agent', 'Patient': 'Undergoer']).
 2350fnpattern(thaw, 45040000, 'Cause_change_of_phase', ['Agent': 'Cause', 'Patient': 'Undergoer']).
 2351fnpattern(thaw, 45040000, 'Change_of_phase', ['Patient': 'Undergoer']).
 2352fnpattern(thicken, 45040000, 'Cause_change_of_consistency', ['Agent': 'Agent', 'Patient': 'Undergoer', 'Instrument': 'Instrument']).
 2353fnpattern(thicken, 45040000, 'Cause_change_of_consistency', ['Agent': 'Agent', 'Patient': 'Undergoer', 'Instrument': 'Change_agent']).
 2354fnpattern(thicken, 45040000, 'Cause_change_of_consistency', ['Agent': 'Agent', 'Patient': 'Undergoer', 'Instrument': 'Means']).
 2355fnpattern(thicken, 45040000, 'Cause_change_of_consistency', ['Agent': 'Cause', 'Patient': 'Undergoer', 'Instrument': 'Instrument']).
 2356fnpattern(thicken, 45040000, 'Cause_change_of_consistency', ['Agent': 'Cause', 'Patient': 'Undergoer', 'Instrument': 'Change_agent']).
 2357fnpattern(thicken, 45040000, 'Cause_change_of_consistency', ['Agent': 'Cause', 'Patient': 'Undergoer', 'Instrument': 'Means']).
 2358fnpattern(thicken, 45040000, 'Change_of_consistency', ['Patient': 'Undergoer']).
 2359fnpattern(thin, 45040000, 'Cause_change_of_consistency', ['Agent': 'Agent', 'Patient': 'Undergoer', 'Instrument': 'Instrument']).
 2360fnpattern(thin, 45040000, 'Cause_change_of_consistency', ['Agent': 'Agent', 'Patient': 'Undergoer', 'Instrument': 'Change_agent']).
 2361fnpattern(thin, 45040000, 'Cause_change_of_consistency', ['Agent': 'Agent', 'Patient': 'Undergoer', 'Instrument': 'Means']).
 2362fnpattern(thin, 45040000, 'Cause_change_of_consistency', ['Agent': 'Cause', 'Patient': 'Undergoer', 'Instrument': 'Instrument']).
 2363fnpattern(thin, 45040000, 'Cause_change_of_consistency', ['Agent': 'Cause', 'Patient': 'Undergoer', 'Instrument': 'Change_agent']).
 2364fnpattern(thin, 45040000, 'Cause_change_of_consistency', ['Agent': 'Cause', 'Patient': 'Undergoer', 'Instrument': 'Means']).
 2365fnpattern(triple, 45040000, 'Change_position_on_a_scale', ['Patient': 'Attribute']).
 2366fnpattern(vaporize, 45040000, 'Change_of_phase', ['Patient': 'Undergoer']).
 2367fnpattern(wake, 45040000, 'Cause_to_wake', ['Agent': 'Agent', 'Patient': 'Sleeper', 'Instrument': 'Instrument']).
 2368fnpattern(wake, 45040000, 'Cause_to_wake', ['Agent': 'Cause', 'Patient': 'Sleeper', 'Instrument': 'Instrument']).
 2369fnpattern(wake, 45040000, 'Waking_up', ['Patient': 'Sleeper']).
 2370fnpattern(warm, 45040000, 'Cause_temperature_change', ['Agent': 'Cause', 'Patient': 'Item', 'Instrument': 'Hot_Cold_source']).
 2371fnpattern(warm, 45040000, 'Cause_temperature_change', ['Agent': 'Agent', 'Patient': 'Item', 'Instrument': 'Hot_Cold_source']).
 2372fnpattern(warm, 45040000, 'Inchoative_change_of_temperature', ['Patient': 'Item']).
 2373fnpattern(warp, 45040000, 'Reshaping', ['Agent': 'Deformer', 'Instrument': 'Instrument', 'Patient': 'Undergoer']).
 2374fnpattern(warp, 45040000, 'Reshaping', ['Agent': 'Cause', 'Instrument': 'Instrument', 'Patient': 'Undergoer']).
 2375fnpattern(wet, 45040000, 'Cause_to_be_wet', ['Agent': 'Agent', 'Instrument': 'Liquid', 'Patient': 'Undergoer']).
 2376fnpattern(wet, 45040000, 'Cause_to_be_wet', ['Agent': 'Cause', 'Instrument': 'Liquid', 'Patient': 'Undergoer']).
 2377fnpattern(widen, 45040000, 'Cause_expansion', ['Agent': 'Agent', 'Patient': 'Item']).
 2378fnpattern(widen, 45040000, 'Cause_expansion', ['Agent': 'Cause', 'Patient': 'Item']).
 2379fnpattern(corrode, 45050000, 'Corroding', ['Patient': 'Undergoer']).
 2380fnpattern(corrode, 45050000, 'Corroding_caused', ['Patient': 'Undergoer']).
 2381fnpattern(decay, 45050000, 'Rotting', ['Patient': 'Undergoer']).
 2382fnpattern(rot, 45050000, 'Rotting', ['Patient': 'Undergoer']).
 2383fnpattern(rust, 45050000, 'Corroding', ['Patient': 'Undergoer']).
 2384fnpattern(spoil, 45050000, 'Rotting', ['Patient': 'Undergoer']).
 2385fnpattern(swell, 45050000, 'Cause_change_of_scalar_position', ['Patient': 'Attribute']).
 2386fnpattern(swell, 45050000, 'Cause_expansion', ['Patient': 'Item']).
 2387fnpattern(tarnish, 45050000, 'Corroding_caused', ['Patient': 'Undergoer']).
 2388fnpattern(decline, 45060100, 'Change_position_on_a_scale', ['Patient': 'Item', 'Attribute': 'Attribute', 'Extent': 'Difference']).
 2389fnpattern(decrease, 45060100, 'Cause_change_of_scalar_position', ['Patient': 'Item', 'Attribute': 'Attribute', 'Extent': 'Difference']).
 2390fnpattern(decrease, 45060100, 'Change_position_on_a_scale', ['Patient': 'Item', 'Attribute': 'Attribute', 'Extent': 'Difference']).
 2391fnpattern(diminish, 45060100, 'Change_position_on_a_scale', ['Patient': 'Item', 'Attribute': 'Attribute', 'Extent': 'Difference']).
 2392fnpattern(drop, 45060100, 'Change_position_on_a_scale', ['Patient': 'Item', 'Attribute': 'Attribute', 'Extent': 'Difference']).
 2393fnpattern(fall, 45060100, 'Change_position_on_a_scale', ['Patient': 'Item', 'Attribute': 'Attribute', 'Extent': 'Difference']).
 2394fnpattern(fluctuate, 45060100, 'Change_position_on_a_scale', ['Patient': 'Item', 'Attribute': 'Attribute', 'Extent': 'Difference']).
 2395fnpattern(gain, 45060100, 'Change_position_on_a_scale', ['Patient': 'Item', 'Attribute': 'Attribute', 'Extent': 'Difference']).
 2396fnpattern(grow, 45060100, 'Change_position_on_a_scale', ['Patient': 'Item', 'Attribute': 'Attribute', 'Extent': 'Difference']).
 2397fnpattern(increase, 45060100, 'Cause_change_of_scalar_position', ['Patient': 'Item', 'Attribute': 'Attribute', 'Extent': 'Difference']).
 2398fnpattern(increase, 45060100, 'Change_position_on_a_scale', ['Patient': 'Item', 'Attribute': 'Attribute', 'Extent': 'Difference']).
 2399fnpattern(jump, 45060100, 'Change_position_on_a_scale', ['Patient': 'Item', 'Attribute': 'Attribute', 'Extent': 'Difference']).
 2400fnpattern(lower, 45060100, 'Cause_change_of_scalar_position', ['Patient': 'Item', 'Attribute': 'Attribute', 'Extent': 'Difference']).
 2401fnpattern(plummet, 45060100, 'Change_position_on_a_scale', ['Patient': 'Item', 'Attribute': 'Attribute', 'Extent': 'Difference']).
 2402fnpattern(rise, 45060100, 'Change_position_on_a_scale', ['Patient': 'Item', 'Attribute': 'Attribute', 'Extent': 'Difference']).
 2403fnpattern(rocket, 45060100, 'Change_position_on_a_scale', ['Patient': 'Item', 'Attribute': 'Attribute', 'Extent': 'Difference']).
 2404fnpattern(soar, 45060100, 'Change_position_on_a_scale', ['Patient': 'Item', 'Attribute': 'Attribute', 'Extent': 'Difference']).
 2405fnpattern(swell, 45060100, 'Cause_change_of_scalar_position', ['Patient': 'Item', 'Attribute': 'Attribute', 'Extent': 'Difference']).
 2406fnpattern(swell, 45060100, 'Cause_expansion', ['Patient': 'Item', 'Attribute': 'Dimension', 'Extent': 'Size_change']).
 2407fnpattern(tumble, 45060100, 'Change_position_on_a_scale', ['Patient': 'Item', 'Attribute': 'Attribute', 'Extent': 'Difference']).
 2408fnpattern(camp, 46000000, 'Residence', ['Theme': 'Resident', 'Location': 'Goal']).
 2409fnpattern(camp, 46000000, 'Residence', ['Theme': 'Resident', 'Location': 'Location']).
 2410fnpattern(camp, 46000000, 'Residence', ['Theme': 'Co-resident', 'Location': 'Goal']).
 2411fnpattern(camp, 46000000, 'Residence', ['Theme': 'Co-resident', 'Location': 'Location']).
 2412fnpattern(dwell, 46000000, 'Residence', ['Theme': 'Resident', 'Location': 'Goal']).
 2413fnpattern(dwell, 46000000, 'Residence', ['Theme': 'Resident', 'Location': 'Location']).
 2414fnpattern(dwell, 46000000, 'Residence', ['Theme': 'Co-resident', 'Location': 'Goal']).
 2415fnpattern(dwell, 46000000, 'Residence', ['Theme': 'Co-resident', 'Location': 'Location']).
 2416fnpattern(live, 46000000, 'Residence', ['Theme': 'Resident', 'Location': 'Goal']).
 2417fnpattern(live, 46000000, 'Residence', ['Theme': 'Resident', 'Location': 'Location']).
 2418fnpattern(live, 46000000, 'Residence', ['Theme': 'Co-resident', 'Location': 'Goal']).
 2419fnpattern(live, 46000000, 'Residence', ['Theme': 'Co-resident', 'Location': 'Location']).
 2420fnpattern(lodge, 46000000, 'Residence', ['Theme': 'Resident', 'Location': 'Goal']).
 2421fnpattern(lodge, 46000000, 'Residence', ['Theme': 'Resident', 'Location': 'Location']).
 2422fnpattern(lodge, 46000000, 'Residence', ['Theme': 'Co-resident', 'Location': 'Goal']).
 2423fnpattern(lodge, 46000000, 'Residence', ['Theme': 'Co-resident', 'Location': 'Location']).
 2424fnpattern(reside, 46000000, 'Residence', ['Theme': 'Resident', 'Location': 'Goal']).
 2425fnpattern(reside, 46000000, 'Residence', ['Theme': 'Resident', 'Location': 'Location']).
 2426fnpattern(reside, 46000000, 'Residence', ['Theme': 'Co-resident', 'Location': 'Goal']).
 2427fnpattern(reside, 46000000, 'Residence', ['Theme': 'Co-resident', 'Location': 'Location']).
 2428fnpattern(stay, 46000000, 'Residence', ['Theme': 'Resident', 'Location': 'Goal']).
 2429fnpattern(stay, 46000000, 'Residence', ['Theme': 'Resident', 'Location': 'Location']).
 2430fnpattern(stay, 46000000, 'Residence', ['Theme': 'Co-resident', 'Location': 'Goal']).
 2431fnpattern(stay, 46000000, 'Residence', ['Theme': 'Co-resident', 'Location': 'Location']).
 2432fnpattern(exist, 47010100, 'Existence', ['Theme': 'Entity']).
 2433fnpattern(persist, 47010100, 'Process_continue', ['Theme': 'Event', 'Location': 'Goal']).
 2434fnpattern(persist, 47010100, 'Process_continue', ['Theme': 'Event', 'Location': 'Place']).
 2435fnpattern(cascade, 47020000, 'Fluidic_motion', ['Theme': 'Fluid', 'Location': 'Goal']).
 2436fnpattern(cascade, 47020000, 'Fluidic_motion', ['Theme': 'Fluid', 'Location': 'Area']).
 2437fnpattern(corrode, 47020000, 'Corroding', ['Theme': 'Undergoer']).
 2438fnpattern(decay, 47020000, 'Rotting', ['Theme': 'Undergoer']).
 2439fnpattern(decompose, 47020000, 'Rotting', ['Theme': 'Undergoer']).
 2440fnpattern(fester, 47020000, 'Rotting', ['Theme': 'Undergoer']).
 2441fnpattern(fizz, 47020000, 'Motion_noise', ['Location': 'Area', 'Theme': 'Theme']).
 2442fnpattern(fizz, 47020000, 'Motion_noise', ['Location': 'Goal', 'Theme': 'Theme']).
 2443fnpattern(flow, 47020000, 'Fluidic_motion', ['Theme': 'Fluid', 'Location': 'Goal']).
 2444fnpattern(flow, 47020000, 'Fluidic_motion', ['Theme': 'Fluid', 'Location': 'Area']).
 2445fnpattern(rot, 47020000, 'Rotting', ['Theme': 'Undergoer']).
 2446fnpattern(rust, 47020000, 'Corroding', ['Theme': 'Undergoer']).
 2447fnpattern(spread, 47020000, 'Dispersal', ['Theme': 'Individuals', 'Location': 'Source']).
 2448fnpattern(spread, 47020000, 'Dispersal', ['Theme': 'Individuals', 'Location': 'Goal_area']).
 2449fnpattern(stream, 47020000, 'Fluidic_motion', ['Theme': 'Fluid', 'Location': 'Goal']).
 2450fnpattern(stream, 47020000, 'Fluidic_motion', ['Theme': 'Fluid', 'Location': 'Area']).
 2451fnpattern(tarnish, 47020000, 'Corroding_caused', ['Theme': 'Undergoer']).
 2452fnpattern(trickle, 47020000, 'Fluidic_motion', ['Theme': 'Fluid', 'Location': 'Goal']).
 2453fnpattern(trickle, 47020000, 'Fluidic_motion', ['Theme': 'Fluid', 'Location': 'Area']).
 2454fnpattern(bob, 47030000, 'Body_movement', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Goal']).
 2455fnpattern(bob, 47030000, 'Body_movement', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Area']).
 2456fnpattern(creep, 47030000, 'Self_motion', ['Location': 'Area', 'Theme': 'Self_mover']).
 2457fnpattern(creep, 47030000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2458fnpattern(dance, 47030000, 'Self_motion', ['Location': 'Area', 'Theme': 'Self_mover']).
 2459fnpattern(dance, 47030000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2460fnpattern(drift, 47030000, 'Motion', ['Location': 'Area', 'Theme': 'Self_mover']).
 2461fnpattern(drift, 47030000, 'Motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2462fnpattern(flap, 47030000, 'Body_movement', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Goal']).
 2463fnpattern(flap, 47030000, 'Body_movement', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Area']).
 2464fnpattern(float, 47030000, 'Motion', ['Location': 'Area', 'Theme': 'Self_mover']).
 2465fnpattern(float, 47030000, 'Motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2466fnpattern(flutter, 47030000, 'Body_movement', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Goal']).
 2467fnpattern(flutter, 47030000, 'Body_movement', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Area']).
 2468fnpattern(jiggle, 47030000, 'Body_movement', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Goal']).
 2469fnpattern(jiggle, 47030000, 'Body_movement', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Area']).
 2470fnpattern(rotate, 47030000, 'Cause_to_move_in_place', ['Agent': 'Agent', 'Theme': 'Theme', 'Location': 'Fixed_location']).
 2471fnpattern(rotate, 47030000, 'Cause_to_move_in_place', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Fixed_location']).
 2472fnpattern(rotate, 47030000, 'Cause_to_move_in_place', ['Agent': 'Cause', 'Theme': 'Theme', 'Location': 'Fixed_location']).
 2473fnpattern(rotate, 47030000, 'Cause_to_move_in_place', ['Agent': 'Cause', 'Theme': 'Body_part', 'Location': 'Fixed_location']).
 2474fnpattern(rotate, 47030000, 'Moving_in_place', ['Theme': 'Theme', 'Location': 'Fixed_location']).
 2475fnpattern(shake, 47030000, 'Body_movement', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Goal']).
 2476fnpattern(shake, 47030000, 'Body_movement', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Area']).
 2477fnpattern(shake, 47030000, 'Cause_to_move_in_place', ['Agent': 'Agent', 'Theme': 'Theme', 'Location': 'Fixed_location']).
 2478fnpattern(shake, 47030000, 'Cause_to_move_in_place', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Fixed_location']).
 2479fnpattern(shake, 47030000, 'Cause_to_move_in_place', ['Agent': 'Cause', 'Theme': 'Theme', 'Location': 'Fixed_location']).
 2480fnpattern(shake, 47030000, 'Cause_to_move_in_place', ['Agent': 'Cause', 'Theme': 'Body_part', 'Location': 'Fixed_location']).
 2481fnpattern(shake, 47030000, 'Moving_in_place', ['Theme': 'Theme', 'Location': 'Fixed_location']).
 2482fnpattern(totter, 47030000, 'Self_motion', ['Location': 'Area', 'Theme': 'Self_mover']).
 2483fnpattern(totter, 47030000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2484fnpattern(vibrate, 47030000, 'Cause_to_move_in_place', ['Agent': 'Agent', 'Theme': 'Theme', 'Location': 'Fixed_location']).
 2485fnpattern(vibrate, 47030000, 'Cause_to_move_in_place', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Fixed_location']).
 2486fnpattern(vibrate, 47030000, 'Cause_to_move_in_place', ['Agent': 'Cause', 'Theme': 'Theme', 'Location': 'Fixed_location']).
 2487fnpattern(vibrate, 47030000, 'Cause_to_move_in_place', ['Agent': 'Cause', 'Theme': 'Body_part', 'Location': 'Fixed_location']).
 2488fnpattern(vibrate, 47030000, 'Moving_in_place', ['Theme': 'Theme', 'Location': 'Fixed_location']).
 2489fnpattern(wave, 47030000, 'Body_movement', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Goal']).
 2490fnpattern(wave, 47030000, 'Body_movement', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Area']).
 2491fnpattern(wiggle, 47030000, 'Body_movement', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Goal']).
 2492fnpattern(wiggle, 47030000, 'Body_movement', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Area']).
 2493fnpattern(writhe, 47030000, 'Body_movement', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Goal']).
 2494fnpattern(writhe, 47030000, 'Body_movement', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Area']).
 2495fnpattern(echo, 47040000, 'Sound_movement', ['Theme': 'Sound', 'Location': 'Sound_source']).
 2496fnpattern(resound, 47040000, 'Sound_movement', ['Theme': 'Sound', 'Location': 'Sound_source']).
 2497fnpattern(reverberate, 47040000, 'Sound_movement', ['Theme': 'Sound', 'Location': 'Sound_source']).
 2498fnpattern(bustle, 47051100, 'Self_motion', ['Location': 'Goal', 'Theme': 'Self_mover']).
 2499fnpattern(bustle, 47051100, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2500fnpattern(crawl, 47051100, 'Abundance', ['Theme': 'Theme', 'Location': 'Location']).
 2501fnpattern(crawl, 47051100, 'Self_motion', ['Location': 'Goal', 'Theme': 'Self_mover']).
 2502fnpattern(crawl, 47051100, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2503fnpattern(creep, 47051100, 'Self_motion', ['Location': 'Goal', 'Theme': 'Self_mover']).
 2504fnpattern(creep, 47051100, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2505fnpattern(run, 47051100, 'Self_motion', ['Location': 'Goal', 'Theme': 'Self_mover']).
 2506fnpattern(run, 47051100, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2507fnpattern(swarm, 47051100, 'Abundance', ['Theme': 'Theme', 'Location': 'Location']).
 2508fnpattern(swarm, 47051100, 'Mass_motion', ['Theme': 'Mass_theme', 'Location': 'Goal']).
 2509fnpattern(swarm, 47051100, 'Mass_motion', ['Theme': 'Mass_theme', 'Location': 'Location']).
 2510fnpattern(swim, 47051100, 'Self_motion', ['Location': 'Goal', 'Theme': 'Self_mover']).
 2511fnpattern(swim, 47051100, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2512fnpattern(teem, 47051100, 'Abundance', ['Theme': 'Theme', 'Location': 'Location']).
 2513fnpattern(teem, 47051100, 'Mass_motion', ['Theme': 'Mass_theme', 'Location': 'Goal']).
 2514fnpattern(teem, 47051100, 'Mass_motion', ['Theme': 'Mass_theme', 'Location': 'Location']).
 2515fnpattern(throng, 47051100, 'Abundance', ['Theme': 'Theme', 'Location': 'Location']).
 2516fnpattern(throng, 47051200, 'Mass_motion', ['Theme': 'Mass_theme', 'Location': 'Goal']).
 2517fnpattern(throng, 47051200, 'Mass_motion', ['Theme': 'Mass_theme', 'Location': 'Location']).
 2518fnpattern(assemble, 47052000, 'Congregating', ['Theme': 'Individuals']).
 2519fnpattern(assemble, 47052000, 'Gathering_up', ['Agent': 'Agent', 'Theme': 'Individuals']).
 2520fnpattern(collect, 47052000, 'Commerce_collect', ['Agent': 'Buyer', 'Theme': 'Goods']).
 2521fnpattern(congregate, 47052000, 'Congregating', ['Theme': 'Individuals']).
 2522fnpattern(convene, 47052000, 'Congregating', ['Theme': 'Individuals']).
 2523fnpattern(convene, 47052000, 'Gathering_up', ['Agent': 'Agent', 'Theme': 'Individuals']).
 2524fnpattern(flock, 47052000, 'Mass_motion', ['Theme': 'Mass_theme']).
 2525fnpattern(gather, 47052000, 'Congregating', ['Theme': 'Individuals']).
 2526fnpattern(gather, 47052000, 'Gathering_up', ['Agent': 'Agent', 'Theme': 'Individuals']).
 2527fnpattern(herd, 47052000, 'Gathering_up', ['Agent': 'Agent', 'Theme': 'Individuals']).
 2528fnpattern(bend, 47060000, 'Posture', ['Theme': 'Theme', 'Location': 'Location']).
 2529fnpattern(crouch, 47060000, 'Posture', ['Theme': 'Theme', 'Location': 'Location']).
 2530fnpattern(kneel, 47060000, 'Posture', ['Theme': 'Theme', 'Location': 'Location']).
 2531fnpattern(lean, 47060000, 'Posture', ['Theme': 'Theme', 'Location': 'Location']).
 2532fnpattern(lie, 47060000, 'Posture', ['Theme': 'Theme', 'Location': 'Location']).
 2533fnpattern(sit, 47060000, 'Posture', ['Theme': 'Theme', 'Location': 'Location']).
 2534fnpattern(slouch, 47060000, 'Posture', ['Theme': 'Theme', 'Location': 'Location']).
 2535fnpattern(sprawl, 47060000, 'Posture', ['Theme': 'Theme', 'Location': 'Location']).
 2536fnpattern(squat, 47060000, 'Posture', ['Theme': 'Theme', 'Location': 'Location']).
 2537fnpattern(stand, 47060000, 'Posture', ['Theme': 'Theme', 'Location': 'Location']).
 2538fnpattern(stoop, 47060000, 'Posture', ['Theme': 'Theme', 'Location': 'Location']).
 2539fnpattern(cascade, 47070000, 'Fluidic_motion', ['Theme': 'Fluid', 'Location': 'Goal']).
 2540fnpattern(cascade, 47070000, 'Fluidic_motion', ['Theme': 'Fluid', 'Location': 'Area']).
 2541fnpattern(climb, 47070000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2542fnpattern(climb, 47070000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2543fnpattern(crawl, 47070000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2544fnpattern(crawl, 47070000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2545fnpattern(drop, 47070000, 'Motion_directional', ['Theme': 'Theme', 'Location': 'Goal']).
 2546fnpattern(drop, 47070000, 'Motion_directional', ['Theme': 'Theme', 'Location': 'Area']).
 2547fnpattern(drop, 47070000, 'Motion_directional', ['Theme': 'Theme', 'Location': 'Path']).
 2548fnpattern(drop, 47070000, 'Path_shape', ['Theme': 'Road', 'Location': 'Path']).
 2549fnpattern(drop, 47070000, 'Path_shape', ['Theme': 'Road', 'Location': 'Area']).
 2550fnpattern(go, 47070000, 'Motion', ['Theme': 'Theme', 'Location': 'Goal']).
 2551fnpattern(go, 47070000, 'Motion', ['Theme': 'Theme', 'Location': 'Area']).
 2552fnpattern(meander, 47070000, 'Path_shape', ['Theme': 'Road', 'Location': 'Path']).
 2553fnpattern(meander, 47070000, 'Path_shape', ['Theme': 'Road', 'Location': 'Area']).
 2554fnpattern(meander, 47070000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2555fnpattern(meander, 47070000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2556fnpattern(plunge, 47070000, 'Motion_directional', ['Theme': 'Theme', 'Location': 'Goal']).
 2557fnpattern(plunge, 47070000, 'Motion_directional', ['Theme': 'Theme', 'Location': 'Area']).
 2558fnpattern(plunge, 47070000, 'Motion_directional', ['Theme': 'Theme', 'Location': 'Path']).
 2559fnpattern(run, 47070000, 'Fluidic_motion', ['Theme': 'Fluid', 'Location': 'Goal']).
 2560fnpattern(run, 47070000, 'Fluidic_motion', ['Theme': 'Fluid', 'Location': 'Area']).
 2561fnpattern(run, 47070000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2562fnpattern(run, 47070000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2563fnpattern(straggle, 47070000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2564fnpattern(straggle, 47070000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2565fnpattern(stretch, 47070000, 'Expansion', ['Theme': 'Item']).
 2566fnpattern(swerve, 47070000, 'Path_shape', ['Theme': 'Road', 'Location': 'Path']).
 2567fnpattern(swerve, 47070000, 'Path_shape', ['Theme': 'Road', 'Location': 'Area']).
 2568fnpattern(veer, 47070000, 'Path_shape', ['Theme': 'Road', 'Location': 'Path']).
 2569fnpattern(veer, 47070000, 'Path_shape', ['Theme': 'Road', 'Location': 'Area']).
 2570fnpattern(wander, 47070000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2571fnpattern(wander, 47070000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2572fnpattern(weave, 47070000, 'Path_shape', ['Theme': 'Road', 'Location': 'Path']).
 2573fnpattern(weave, 47070000, 'Path_shape', ['Theme': 'Road', 'Location': 'Area']).
 2574fnpattern(wind, 47070000, 'Path_shape', ['Theme': 'Road', 'Location': 'Path']).
 2575fnpattern(wind, 47070000, 'Path_shape', ['Theme': 'Road', 'Location': 'Area']).
 2576fnpattern(blanket, 47080000, 'Adorning', ['Theme1': 'Theme', 'Theme2': 'Location']).
 2577fnpattern(cap, 47080000, 'Closure', ['Theme1': 'Fastener', 'Theme2': 'Containing_object']).
 2578fnpattern(contain, 47080000, 'Containing', ['Theme1': 'Container', 'Theme2': 'Contents']).
 2579fnpattern(cover, 47080000, 'Adorning', ['Theme1': 'Theme', 'Theme2': 'Location']).
 2580fnpattern(encircle, 47080000, 'Adorning', ['Theme1': 'Theme', 'Theme2': 'Location']).
 2581fnpattern(fill, 47080000, 'Adorning', ['Theme1': 'Theme', 'Theme2': 'Location']).
 2582fnpattern(follow, 47080000, 'Cotheme', ['Theme1': 'Theme', 'Theme2': 'Cotheme']).
 2583fnpattern(line, 47080000, 'Adorning', ['Theme1': 'Theme', 'Theme2': 'Location']).
 2584fnpattern(traverse, 47080000, 'Path_shape', ['Theme1': 'Theme', 'Theme2': 'Road']).
 2585fnpattern(appear, 48011000, 'Coming_to_be', ['Theme': 'Entity', 'Location': 'Place']).
 2586fnpattern(appear, 48011000, 'Coming_to_be', ['Theme': 'Entity', 'Location': 'Time']).
 2587fnpattern(arise, 48011000, 'Coming_to_be', ['Theme': 'Entity', 'Location': 'Place']).
 2588fnpattern(arise, 48011000, 'Coming_to_be', ['Theme': 'Entity', 'Location': 'Time']).
 2589fnpattern(develop, 48011000, 'Coming_to_be', ['Theme': 'Entity', 'Location': 'Place']).
 2590fnpattern(develop, 48011000, 'Coming_to_be', ['Theme': 'Entity', 'Location': 'Time']).
 2591fnpattern(emerge, 48011000, 'Coming_to_be', ['Theme': 'Entity', 'Location': 'Place']).
 2592fnpattern(emerge, 48011000, 'Coming_to_be', ['Theme': 'Entity', 'Location': 'Time']).
 2593fnpattern(erupt, 48011000, 'Process_start', ['Theme': 'Event', 'Location': 'Place']).
 2594fnpattern(erupt, 48011000, 'Process_start', ['Theme': 'Event', 'Location': 'Time']).
 2595fnpattern(form, 48011000, 'Coming_to_be', ['Theme': 'Entity', 'Location': 'Place']).
 2596fnpattern(form, 48011000, 'Coming_to_be', ['Theme': 'Entity', 'Location': 'Time']).
 2597fnpattern(materialize, 48011000, 'Coming_to_be', ['Theme': 'Entity', 'Location': 'Place']).
 2598fnpattern(materialize, 48011000, 'Coming_to_be', ['Theme': 'Entity', 'Location': 'Time']).
 2599fnpattern(assert, 48012000, 'Statement', ['Theme': 'Topic', 'Agent': 'Speaker', 'Recipient': 'Addressee']).
 2600fnpattern(assert, 48012000, 'Statement', ['Theme': 'Message', 'Agent': 'Speaker', 'Recipient': 'Addressee']).
 2601fnpattern(declare, 48012000, 'Statement', ['Theme': 'Topic', 'Agent': 'Speaker', 'Recipient': 'Addressee']).
 2602fnpattern(declare, 48012000, 'Statement', ['Theme': 'Message', 'Agent': 'Speaker', 'Recipient': 'Addressee']).
 2603fnpattern(expose, 48012000, 'Reveal_secret', ['Theme': 'Topic', 'Agent': 'Speaker', 'Recipient': 'Addressee']).
 2604fnpattern(expose, 48012000, 'Reveal_secret', ['Theme': 'Information', 'Agent': 'Speaker', 'Recipient': 'Addressee']).
 2605fnpattern(express, 48012000, 'Statement', ['Theme': 'Topic', 'Agent': 'Speaker', 'Recipient': 'Addressee']).
 2606fnpattern(express, 48012000, 'Statement', ['Theme': 'Message', 'Agent': 'Speaker', 'Recipient': 'Addressee']).
 2607fnpattern(suggest, 48012000, 'Statement', ['Theme': 'Topic', 'Agent': 'Speaker', 'Recipient': 'Addressee']).
 2608fnpattern(suggest, 48012000, 'Statement', ['Theme': 'Message', 'Agent': 'Speaker', 'Recipient': 'Addressee']).
 2609fnpattern(die, 48020000, 'Death', ['Theme': 'Protagonist']).
 2610fnpattern(disappear, 48020000, 'Departing', ['Theme': 'Theme', 'Location': 'Source']).
 2611fnpattern(expire, 48020000, 'Death', ['Theme': 'Protagonist']).
 2612fnpattern(perish, 48020000, 'Death', ['Theme': 'Protagonist']).
 2613fnpattern(vanish, 48020000, 'Departing', ['Theme': 'Theme', 'Location': 'Source']).
 2614fnpattern(befall, 48030000, 'Catastrophe', ['Theme': 'Undesirable_event', 'Location': 'Place']).
 2615fnpattern(befall, 48030000, 'Catastrophe', ['Theme': 'Undesirable_event', 'Location': 'Time']).
 2616fnpattern(chance, 48030000, 'Daring', ['Theme': 'Action', 'Location': 'Place']).
 2617fnpattern(chance, 48030000, 'Daring', ['Theme': 'Action', 'Location': 'Time']).
 2618fnpattern(happen, 48030000, 'Event', ['Theme': 'Event', 'Location': 'Place']).
 2619fnpattern(happen, 48030000, 'Event', ['Theme': 'Event', 'Location': 'Time']).
 2620fnpattern(occur, 48030000, 'Event', ['Theme': 'Event', 'Location': 'Place']).
 2621fnpattern(occur, 48030000, 'Event', ['Theme': 'Event', 'Location': 'Time']).
 2622fnpattern(fidget, 49000000, 'Body_movement', ['Agent': 'Entity', 'Patient': 'Body_part']).
 2623fnpattern(flap, 49000000, 'Body_movement', ['Agent': 'Entity', 'Patient': 'Body_part']).
 2624fnpattern(totter, 49000000, 'Self_motion', ['Patient': 'Self_mover']).
 2625fnpattern(twitch, 49000000, 'Body_movement', ['Agent': 'Entity', 'Patient': 'Body_part']).
 2626fnpattern(waggle, 49000000, 'Body_movement', ['Agent': 'Entity', 'Patient': 'Body_part']).
 2627fnpattern(wiggle, 49000000, 'Body_movement', ['Agent': 'Entity', 'Patient': 'Body_part']).
 2628fnpattern(wriggle, 49000000, 'Body_movement', ['Agent': 'Entity', 'Patient': 'Body_part']).
 2629fnpattern(wriggle, 49000000, 'Self_motion', ['Patient': 'Self_mover']).
 2630fnpattern(bend, 50000000, 'Change_posture', ['Agent': 'Protagonist']).
 2631fnpattern(crouch, 50000000, 'Change_posture', ['Agent': 'Protagonist']).
 2632fnpattern(kneel, 50000000, 'Change_posture', ['Agent': 'Protagonist']).
 2633fnpattern(lean, 50000000, 'Change_posture', ['Agent': 'Protagonist']).
 2634fnpattern(lie, 50000000, 'Change_posture', ['Agent': 'Protagonist']).
 2635fnpattern(rise, 50000000, 'Change_posture', ['Agent': 'Protagonist']).
 2636fnpattern(sit, 50000000, 'Change_posture', ['Agent': 'Protagonist']).
 2637fnpattern(slouch, 50000000, 'Change_posture', ['Agent': 'Protagonist']).
 2638fnpattern(sprawl, 50000000, 'Change_posture', ['Agent': 'Protagonist']).
 2639fnpattern(squat, 50000000, 'Change_posture', ['Agent': 'Protagonist']).
 2640fnpattern(stand, 50000000, 'Change_posture', ['Agent': 'Protagonist']).
 2641fnpattern(stoop, 50000000, 'Change_posture', ['Agent': 'Protagonist']).
 2642fnpattern(ascend, 51010100, 'Path_shape', ['Theme': 'Theme', 'Location': 'Path']).
 2643fnpattern(ascend, 51010100, 'Path_shape', ['Theme': 'Theme', 'Location': 'Road']).
 2644fnpattern(climb, 51010100, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2645fnpattern(climb, 51010100, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2646fnpattern(cross, 51010100, 'Path_shape', ['Theme': 'Theme', 'Location': 'Path']).
 2647fnpattern(cross, 51010100, 'Path_shape', ['Theme': 'Theme', 'Location': 'Road']).
 2648fnpattern(depart, 51010100, 'Departing', ['Theme': 'Theme', 'Location': 'Source']).
 2649fnpattern(depart, 51010100, 'Departing', ['Theme': 'Theme', 'Location': 'Path']).
 2650fnpattern(descend, 51010100, 'Path_shape', ['Theme': 'Theme', 'Location': 'Path']).
 2651fnpattern(descend, 51010100, 'Path_shape', ['Theme': 'Theme', 'Location': 'Road']).
 2652fnpattern(enter, 51010100, 'Arriving', ['Theme': 'Theme', 'Location': 'Goal']).
 2653fnpattern(enter, 51010100, 'Arriving', ['Theme': 'Theme', 'Location': 'Path']).
 2654fnpattern(enter, 51010100, 'Path_shape', ['Theme': 'Theme', 'Location': 'Path']).
 2655fnpattern(enter, 51010100, 'Path_shape', ['Theme': 'Theme', 'Location': 'Road']).
 2656fnpattern(escape, 51010100, 'Departing', ['Theme': 'Theme', 'Location': 'Source']).
 2657fnpattern(escape, 51010100, 'Departing', ['Theme': 'Theme', 'Location': 'Path']).
 2658fnpattern(escape, 51010100, 'Escaping', ['Theme': 'Theme', 'Location': 'Undesirable_location']).
 2659fnpattern(exit, 51010100, 'Departing', ['Theme': 'Theme', 'Location': 'Source']).
 2660fnpattern(exit, 51010100, 'Departing', ['Theme': 'Theme', 'Location': 'Path']).
 2661fnpattern(exit, 51010100, 'Path_shape', ['Theme': 'Theme', 'Location': 'Path']).
 2662fnpattern(exit, 51010100, 'Path_shape', ['Theme': 'Theme', 'Location': 'Road']).
 2663fnpattern(flee, 51010100, 'Escaping', ['Theme': 'Theme', 'Location': 'Undesirable_location']).
 2664fnpattern(flee, 51010100, 'Evading', ['Theme': 'Evader']).
 2665fnpattern(leave, 51010100, 'Departing', ['Theme': 'Theme', 'Location': 'Source']).
 2666fnpattern(leave, 51010100, 'Departing', ['Theme': 'Theme', 'Location': 'Path']).
 2667fnpattern(leave, 51010100, 'Path_shape', ['Theme': 'Theme', 'Location': 'Path']).
 2668fnpattern(leave, 51010100, 'Path_shape', ['Theme': 'Theme', 'Location': 'Road']).
 2669fnpattern(vacate, 51010100, 'Departing', ['Theme': 'Theme', 'Location': 'Source']).
 2670fnpattern(vacate, 51010100, 'Departing', ['Theme': 'Theme', 'Location': 'Path']).
 2671fnpattern(vacate, 51010100, 'Quitting_a_place', ['Theme': 'Theme', 'Location': 'Source']).
 2672fnpattern(vacate, 51010100, 'Quitting_a_place', ['Theme': 'Theme', 'Location': 'Path']).
 2673fnpattern(approach, 51010200, 'Arriving', ['Theme': 'Theme', 'Location': 'Goal']).
 2674fnpattern(approach, 51010200, 'Arriving', ['Theme': 'Theme', 'Location': 'Path']).
 2675fnpattern(come, 51010200, 'Arriving', ['Theme': 'Theme', 'Location': 'Goal']).
 2676fnpattern(come, 51010200, 'Arriving', ['Theme': 'Theme', 'Location': 'Path']).
 2677fnpattern(fall, 51010200, 'Motion_directional', ['Location': 'Area', 'Theme': 'Theme']).
 2678fnpattern(fall, 51010200, 'Motion_directional', ['Theme': 'Theme', 'Location': 'Goal']).
 2679fnpattern(go, 51010200, 'Motion', ['Location': 'Area', 'Theme': 'Theme']).
 2680fnpattern(go, 51010200, 'Motion', ['Theme': 'Theme', 'Location': 'Goal']).
 2681fnpattern(plunge, 51010200, 'Motion_directional', ['Location': 'Area', 'Theme': 'Theme']).
 2682fnpattern(plunge, 51010200, 'Motion_directional', ['Theme': 'Theme', 'Location': 'Goal']).
 2683fnpattern(return, 51010200, 'Arriving', ['Theme': 'Theme', 'Location': 'Goal']).
 2684fnpattern(return, 51010200, 'Arriving', ['Theme': 'Theme', 'Location': 'Path']).
 2685fnpattern(rise, 51010200, 'Path_shape', ['Theme': 'Theme', 'Location': 'Path']).
 2686fnpattern(rise, 51010200, 'Path_shape', ['Theme': 'Theme', 'Location': 'Road']).
 2687fnpattern(arrive, 51010210, 'Arriving', ['Theme': 'Theme', 'Location': 'Goal']).
 2688fnpattern(arrive, 51010210, 'Arriving', ['Theme': 'Theme', 'Location': 'Path']).
 2689fnpattern(abandon, 51020000, 'Departing', ['Theme': 'Theme', 'Source': 'Source']).
 2690fnpattern(desert, 51020100, 'Departing', ['Theme': 'Theme', 'Source': 'Source']).
 2691fnpattern(leave, 51020100, 'Departing', ['Theme': 'Theme', 'Source': 'Source']).
 2692fnpattern(drift, 51031000, 'Motion', ['Location': 'Area', 'Theme': 'Theme']).
 2693fnpattern(drift, 51031000, 'Motion', ['Theme': 'Theme', 'Location': 'Goal']).
 2694fnpattern(drop, 51031000, 'Motion_directional', ['Location': 'Area', 'Theme': 'Theme']).
 2695fnpattern(drop, 51031000, 'Motion_directional', ['Theme': 'Theme', 'Location': 'Goal']).
 2696fnpattern(drop, 51031000, 'Path_shape', ['Theme': 'Theme', 'Location': 'Path']).
 2697fnpattern(drop, 51031000, 'Path_shape', ['Theme': 'Theme', 'Location': 'Road']).
 2698fnpattern(float, 51031000, 'Motion', ['Location': 'Area', 'Theme': 'Theme']).
 2699fnpattern(float, 51031000, 'Motion', ['Theme': 'Theme', 'Location': 'Goal']).
 2700fnpattern(glide, 51031000, 'Motion', ['Location': 'Area', 'Theme': 'Theme']).
 2701fnpattern(glide, 51031000, 'Motion', ['Theme': 'Theme', 'Location': 'Goal']).
 2702fnpattern(move, 51031000, 'Motion', ['Location': 'Area', 'Theme': 'Theme']).
 2703fnpattern(move, 51031000, 'Motion', ['Theme': 'Theme', 'Location': 'Goal']).
 2704fnpattern(roll, 51031000, 'Motion', ['Location': 'Area', 'Theme': 'Theme']).
 2705fnpattern(roll, 51031000, 'Motion', ['Theme': 'Theme', 'Location': 'Goal']).
 2706fnpattern(rotate, 51031000, 'Cause_to_move_in_place', ['Agent': 'Agent', 'Theme': 'Theme', 'Location': 'Fixed_location']).
 2707fnpattern(rotate, 51031000, 'Cause_to_move_in_place', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Fixed_location']).
 2708fnpattern(rotate, 51031000, 'Cause_to_move_in_place', ['Agent': 'Cause', 'Theme': 'Theme', 'Location': 'Fixed_location']).
 2709fnpattern(rotate, 51031000, 'Cause_to_move_in_place', ['Agent': 'Cause', 'Theme': 'Body_part', 'Location': 'Fixed_location']).
 2710fnpattern(rotate, 51031000, 'Moving_in_place', ['Theme': 'Theme', 'Location': 'Fixed_location']).
 2711fnpattern(spin, 51031000, 'Cause_to_move_in_place', ['Agent': 'Agent', 'Theme': 'Theme', 'Location': 'Fixed_location']).
 2712fnpattern(spin, 51031000, 'Cause_to_move_in_place', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Fixed_location']).
 2713fnpattern(spin, 51031000, 'Cause_to_move_in_place', ['Agent': 'Cause', 'Theme': 'Theme', 'Location': 'Fixed_location']).
 2714fnpattern(spin, 51031000, 'Cause_to_move_in_place', ['Agent': 'Cause', 'Theme': 'Body_part', 'Location': 'Fixed_location']).
 2715fnpattern(swing, 51031000, 'Path_shape', ['Theme': 'Theme', 'Location': 'Path']).
 2716fnpattern(swing, 51031000, 'Path_shape', ['Theme': 'Theme', 'Location': 'Road']).
 2717fnpattern(turn, 51031000, 'Cause_to_move_in_place', ['Agent': 'Agent', 'Theme': 'Theme', 'Location': 'Fixed_location']).
 2718fnpattern(turn, 51031000, 'Cause_to_move_in_place', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Fixed_location']).
 2719fnpattern(turn, 51031000, 'Cause_to_move_in_place', ['Agent': 'Cause', 'Theme': 'Theme', 'Location': 'Fixed_location']).
 2720fnpattern(turn, 51031000, 'Cause_to_move_in_place', ['Agent': 'Cause', 'Theme': 'Body_part', 'Location': 'Fixed_location']).
 2721fnpattern(twirl, 51031000, 'Cause_to_move_in_place', ['Agent': 'Agent', 'Theme': 'Theme', 'Location': 'Fixed_location']).
 2722fnpattern(twirl, 51031000, 'Cause_to_move_in_place', ['Agent': 'Agent', 'Theme': 'Body_part', 'Location': 'Fixed_location']).
 2723fnpattern(twirl, 51031000, 'Cause_to_move_in_place', ['Agent': 'Cause', 'Theme': 'Theme', 'Location': 'Fixed_location']).
 2724fnpattern(twirl, 51031000, 'Cause_to_move_in_place', ['Agent': 'Cause', 'Theme': 'Body_part', 'Location': 'Fixed_location']).
 2725fnpattern(twirl, 51031000, 'Moving_in_place', ['Theme': 'Theme', 'Location': 'Fixed_location']).
 2726fnpattern(wind, 51031000, 'Path_shape', ['Theme': 'Theme', 'Location': 'Path']).
 2727fnpattern(wind, 51031000, 'Path_shape', ['Theme': 'Theme', 'Location': 'Road']).
 2728fnpattern(amble, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2729fnpattern(amble, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2730fnpattern(amble, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2731fnpattern(bolt, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2732fnpattern(bolt, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2733fnpattern(bolt, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2734fnpattern(bound, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2735fnpattern(bound, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2736fnpattern(bound, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2737fnpattern(canter, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2738fnpattern(canter, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2739fnpattern(canter, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2740fnpattern(clamber, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2741fnpattern(clamber, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2742fnpattern(clamber, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2743fnpattern(climb, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2744fnpattern(climb, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2745fnpattern(climb, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2746fnpattern(coast, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2747fnpattern(coast, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2748fnpattern(coast, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2749fnpattern(crawl, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2750fnpattern(crawl, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2751fnpattern(crawl, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2752fnpattern(creep, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2753fnpattern(creep, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2754fnpattern(creep, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2755fnpattern(dart, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2756fnpattern(dart, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2757fnpattern(dart, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2758fnpattern(dash, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2759fnpattern(dash, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2760fnpattern(dash, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2761fnpattern(drift, 51032000, 'Motion', ['Location': 'Area', 'Theme': 'Theme']).
 2762fnpattern(drift, 51032000, 'Motion', ['Theme': 'Theme', 'Location': 'Goal']).
 2763fnpattern(flit, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2764fnpattern(flit, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2765fnpattern(flit, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2766fnpattern(float, 51032000, 'Motion', ['Location': 'Area', 'Theme': 'Theme']).
 2767fnpattern(float, 51032000, 'Motion', ['Theme': 'Theme', 'Location': 'Goal']).
 2768fnpattern(fly, 51032000, 'Motion', ['Location': 'Area', 'Theme': 'Theme']).
 2769fnpattern(fly, 51032000, 'Motion', ['Theme': 'Theme', 'Location': 'Goal']).
 2770fnpattern(frolic, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2771fnpattern(frolic, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2772fnpattern(frolic, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2773fnpattern(gambol, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2774fnpattern(gambol, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2775fnpattern(gambol, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2776fnpattern(glide, 51032000, 'Motion', ['Location': 'Area', 'Theme': 'Theme']).
 2777fnpattern(glide, 51032000, 'Motion', ['Theme': 'Theme', 'Location': 'Goal']).
 2778fnpattern(hasten, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2779fnpattern(hasten, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2780fnpattern(hasten, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2781fnpattern(hike, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2782fnpattern(hike, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2783fnpattern(hike, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2784fnpattern(hobble, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2785fnpattern(hobble, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2786fnpattern(hobble, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2787fnpattern(hurry, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2788fnpattern(hurry, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2789fnpattern(hurry, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2790fnpattern(jog, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2791fnpattern(jog, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2792fnpattern(jog, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2793fnpattern(jump, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2794fnpattern(jump, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2795fnpattern(jump, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2796fnpattern(leap, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2797fnpattern(leap, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2798fnpattern(leap, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2799fnpattern(limp, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2800fnpattern(limp, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2801fnpattern(limp, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2802fnpattern(lope, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2803fnpattern(lope, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2804fnpattern(lope, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2805fnpattern(lumber, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2806fnpattern(lumber, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2807fnpattern(lumber, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2808fnpattern(lurch, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2809fnpattern(lurch, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2810fnpattern(lurch, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2811fnpattern(march, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2812fnpattern(march, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2813fnpattern(march, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2814fnpattern(meander, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2815fnpattern(meander, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2816fnpattern(meander, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2817fnpattern(mince, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2818fnpattern(mince, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2819fnpattern(mince, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2820fnpattern(mosey, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2821fnpattern(mosey, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2822fnpattern(mosey, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2823fnpattern(pad, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2824fnpattern(pad, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2825fnpattern(pad, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2826fnpattern(parade, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2827fnpattern(parade, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2828fnpattern(parade, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2829fnpattern(plod, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2830fnpattern(plod, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2831fnpattern(plod, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2832fnpattern(prance, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2833fnpattern(prance, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2834fnpattern(prance, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2835fnpattern(promenade, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2836fnpattern(promenade, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2837fnpattern(promenade, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2838fnpattern(prowl, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2839fnpattern(prowl, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2840fnpattern(prowl, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2841fnpattern(roam, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2842fnpattern(roam, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2843fnpattern(roam, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2844fnpattern(roll, 51032000, 'Motion', ['Location': 'Area', 'Theme': 'Theme']).
 2845fnpattern(roll, 51032000, 'Motion', ['Theme': 'Theme', 'Location': 'Goal']).
 2846fnpattern(romp, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2847fnpattern(romp, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2848fnpattern(romp, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2849fnpattern(run, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2850fnpattern(run, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2851fnpattern(run, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2852fnpattern(rush, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2853fnpattern(rush, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2854fnpattern(rush, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2855fnpattern(sashay, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2856fnpattern(sashay, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2857fnpattern(sashay, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2858fnpattern(saunter, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2859fnpattern(saunter, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2860fnpattern(saunter, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2861fnpattern(scamper, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2862fnpattern(scamper, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2863fnpattern(scamper, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2864fnpattern(scoot, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2865fnpattern(scoot, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2866fnpattern(scoot, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2867fnpattern(scramble, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2868fnpattern(scramble, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2869fnpattern(scramble, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2870fnpattern(scurry, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2871fnpattern(scurry, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2872fnpattern(scurry, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2873fnpattern(scuttle, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2874fnpattern(scuttle, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2875fnpattern(scuttle, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2876fnpattern(shuffle, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2877fnpattern(shuffle, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2878fnpattern(shuffle, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2879fnpattern(sidle, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2880fnpattern(sidle, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2881fnpattern(sidle, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2882fnpattern(skip, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2883fnpattern(skip, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2884fnpattern(skip, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2885fnpattern(skulk, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2886fnpattern(skulk, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2887fnpattern(skulk, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2888fnpattern(sleepwalk, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2889fnpattern(sleepwalk, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2890fnpattern(sleepwalk, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2891fnpattern(slink, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2892fnpattern(slink, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2893fnpattern(slink, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2894fnpattern(slither, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2895fnpattern(slither, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2896fnpattern(slither, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2897fnpattern(slog, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2898fnpattern(slog, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2899fnpattern(slog, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2900fnpattern(sneak, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2901fnpattern(sneak, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2902fnpattern(sneak, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2903fnpattern(stagger, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2904fnpattern(stagger, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2905fnpattern(stagger, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2906fnpattern(step, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2907fnpattern(step, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2908fnpattern(step, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2909fnpattern(stomp, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2910fnpattern(stomp, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2911fnpattern(stomp, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2912fnpattern(stride, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2913fnpattern(stride, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2914fnpattern(stride, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2915fnpattern(stroll, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2916fnpattern(stroll, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2917fnpattern(stroll, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2918fnpattern(strut, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2919fnpattern(strut, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2920fnpattern(strut, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2921fnpattern(stumble, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2922fnpattern(stumble, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2923fnpattern(stumble, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2924fnpattern(swagger, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2925fnpattern(swagger, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2926fnpattern(swagger, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2927fnpattern(swim, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2928fnpattern(swim, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2929fnpattern(swim, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2930fnpattern(tack, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2931fnpattern(tack, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2932fnpattern(tack, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2933fnpattern(tiptoe, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2934fnpattern(tiptoe, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2935fnpattern(tiptoe, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2936fnpattern(toddle, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2937fnpattern(toddle, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2938fnpattern(toddle, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2939fnpattern(totter, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2940fnpattern(totter, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2941fnpattern(totter, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2942fnpattern(tour, 51032000, 'Travel', ['Theme': 'Traveler', 'Location': 'Area']).
 2943fnpattern(tour, 51032000, 'Travel', ['Theme': 'Traveler', 'Location': 'Goal']).
 2944fnpattern(tour, 51032000, 'Travel', ['Theme': 'Traveler', 'Location': 'Path']).
 2945fnpattern(traipse, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2946fnpattern(traipse, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2947fnpattern(traipse, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2948fnpattern(tramp, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2949fnpattern(tramp, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2950fnpattern(tramp, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2951fnpattern(trek, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2952fnpattern(trek, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2953fnpattern(trek, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2954fnpattern(troop, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2955fnpattern(troop, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2956fnpattern(troop, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2957fnpattern(trot, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2958fnpattern(trot, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2959fnpattern(trot, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2960fnpattern(trudge, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2961fnpattern(trudge, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2962fnpattern(trudge, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2963fnpattern(trundle, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2964fnpattern(trundle, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2965fnpattern(trundle, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2966fnpattern(vault, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2967fnpattern(vault, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2968fnpattern(vault, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2969fnpattern(waddle, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2970fnpattern(waddle, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2971fnpattern(waddle, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2972fnpattern(wade, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2973fnpattern(wade, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2974fnpattern(wade, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2975fnpattern(walk, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2976fnpattern(walk, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2977fnpattern(walk, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2978fnpattern(wander, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 2979fnpattern(wander, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Path']).
 2980fnpattern(wander, 51032000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 2981fnpattern(balloon, 51041000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 2982fnpattern(balloon, 51041000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 2983fnpattern(boat, 51041000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 2984fnpattern(boat, 51041000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 2985fnpattern(caravan, 51041000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 2986fnpattern(caravan, 51041000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 2987fnpattern(jet, 51041000, 'Ride_vehicle', ['Agent': 'Vehicle', 'Theme': 'Theme', 'Location': 'Area']).
 2988fnpattern(jet, 51041000, 'Ride_vehicle', ['Agent': 'Vehicle', 'Theme': 'Theme', 'Location': 'Goal']).
 2989fnpattern(motor, 51041000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 2990fnpattern(motor, 51041000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 2991fnpattern(parachute, 51041000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 2992fnpattern(parachute, 51041000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 2993fnpattern(punt, 51041000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 2994fnpattern(punt, 51041000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 2995fnpattern(sledge, 51041000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 2996fnpattern(sledge, 51041000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 2997fnpattern(taxi, 51041000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 2998fnpattern(taxi, 51041000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 2999fnpattern(taxi, 51041000, 'Ride_vehicle', ['Agent': 'Vehicle', 'Theme': 'Theme', 'Location': 'Area']).
 3000fnpattern(taxi, 51041000, 'Ride_vehicle', ['Agent': 'Vehicle', 'Theme': 'Theme', 'Location': 'Goal']).
 3001fnpattern(bicycle, 51041100, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 3002fnpattern(bicycle, 51041100, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 3003fnpattern(bike, 51041100, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 3004fnpattern(bike, 51041100, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 3005fnpattern(canoe, 51041100, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 3006fnpattern(canoe, 51041100, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 3007fnpattern(cycle, 51041100, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 3008fnpattern(cycle, 51041100, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 3009fnpattern(raft, 51041100, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 3010fnpattern(raft, 51041100, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 3011fnpattern(skate, 51041100, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 3012fnpattern(skate, 51041100, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 3013fnpattern(toboggan, 51041100, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 3014fnpattern(toboggan, 51041100, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 3015fnpattern(cruise, 51042000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 3016fnpattern(cruise, 51042000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 3017fnpattern(cruise, 51042000, 'Ride_vehicle', ['Agent': 'Vehicle', 'Theme': 'Theme', 'Location': 'Area']).
 3018fnpattern(cruise, 51042000, 'Ride_vehicle', ['Agent': 'Vehicle', 'Theme': 'Theme', 'Location': 'Goal']).
 3019fnpattern(drive, 51042000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 3020fnpattern(drive, 51042000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 3021fnpattern(fly, 51042000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 3022fnpattern(fly, 51042000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 3023fnpattern(fly, 51042000, 'Ride_vehicle', ['Agent': 'Vehicle', 'Theme': 'Theme', 'Location': 'Area']).
 3024fnpattern(fly, 51042000, 'Ride_vehicle', ['Agent': 'Vehicle', 'Theme': 'Theme', 'Location': 'Goal']).
 3025fnpattern(paddle, 51042000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 3026fnpattern(paddle, 51042000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 3027fnpattern(pedal, 51042000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 3028fnpattern(pedal, 51042000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 3029fnpattern(ride, 51042000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 3030fnpattern(ride, 51042000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 3031fnpattern(row, 51042000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 3032fnpattern(row, 51042000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 3033fnpattern(sail, 51042000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 3034fnpattern(sail, 51042000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 3035fnpattern(sail, 51042000, 'Ride_vehicle', ['Agent': 'Vehicle', 'Theme': 'Theme', 'Location': 'Area']).
 3036fnpattern(sail, 51042000, 'Ride_vehicle', ['Agent': 'Vehicle', 'Theme': 'Theme', 'Location': 'Goal']).
 3037fnpattern(tack, 51042000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Area']).
 3038fnpattern(tack, 51042000, 'Operate_vehicle', ['Agent': 'Driver', 'Theme': 'Vehicle', 'Location': 'Goal']).
 3039fnpattern(voyage, 51042000, 'Travel', ['Agent': 'Traveler', 'Theme': 'Co-participant', 'Location': 'Area']).
 3040fnpattern(voyage, 51042000, 'Travel', ['Agent': 'Traveler', 'Theme': 'Co-participant', 'Location': 'Goal']).
 3041fnpattern(voyage, 51042000, 'Travel', ['Agent': 'Traveler', 'Theme': 'Co-participant', 'Location': 'Path']).
 3042fnpattern(voyage, 51042000, 'Travel', ['Agent': 'Traveler', 'Theme': 'Baggage', 'Location': 'Area']).
 3043fnpattern(voyage, 51042000, 'Travel', ['Agent': 'Traveler', 'Theme': 'Baggage', 'Location': 'Goal']).
 3044fnpattern(voyage, 51042000, 'Travel', ['Agent': 'Traveler', 'Theme': 'Baggage', 'Location': 'Path']).
 3045fnpattern(bop, 51050000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 3046fnpattern(bop, 51050000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 3047fnpattern(dance, 51050000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 3048fnpattern(dance, 51050000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 3049fnpattern(shuffle, 51050000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 3050fnpattern(shuffle, 51050000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 3051fnpattern(waltz, 51050000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Area']).
 3052fnpattern(waltz, 51050000, 'Self_motion', ['Theme': 'Self_mover', 'Location': 'Goal']).
 3053fnpattern(chase, 51060000, 'Cotheme', ['Agent': 'Theme', 'Theme': 'Cotheme']).
 3054fnpattern(follow, 51060000, 'Cotheme', ['Agent': 'Theme', 'Theme': 'Cotheme']).
 3055fnpattern(pursue, 51060000, 'Cotheme', ['Agent': 'Theme', 'Theme': 'Cotheme']).
 3056fnpattern(shadow, 51060000, 'Cotheme', ['Agent': 'Theme', 'Theme': 'Cotheme']).
 3057fnpattern(tail, 51060000, 'Cotheme', ['Agent': 'Theme', 'Theme': 'Cotheme']).
 3058fnpattern(track, 51060000, 'Cotheme', ['Agent': 'Theme', 'Theme': 'Cotheme']).
 3059fnpattern(trail, 51060000, 'Cotheme', ['Agent': 'Theme', 'Theme': 'Cotheme']).
 3060fnpattern(accompany, 51070000, 'Cotheme', ['Agent': 'Theme', 'Theme': 'Cotheme']).
 3061fnpattern(conduct, 51070000, 'Cotheme', ['Agent': 'Theme', 'Theme': 'Cotheme']).
 3062fnpattern(escort, 51070000, 'Cotheme', ['Agent': 'Theme', 'Theme': 'Cotheme']).
 3063fnpattern(guide, 51070000, 'Cotheme', ['Agent': 'Theme', 'Theme': 'Cotheme']).
 3064fnpattern(lead, 51070000, 'Cotheme', ['Agent': 'Theme', 'Theme': 'Cotheme']).
 3065fnpattern(shepherd, 51070000, 'Cotheme', ['Agent': 'Theme', 'Theme': 'Cotheme']).
 3066fnpattern(reach, 51080000, 'Arriving', ['Theme': 'Theme', 'Location': 'Goal']).
 3067fnpattern(reach, 51080000, 'Arriving', ['Theme': 'Theme', 'Location': 'Path']).
 3068fnpattern(avoid, 52000000, 'Avoiding', ['Agent': 'Agent', 'Theme': 'Undesirable_situation', 'Location': 'Place']).
 3069fnpattern(avoid, 52000000, 'Avoiding', ['Agent': 'Agent', 'Location': 'Undesirable_situation']).
 3070fnpattern(avoid, 52000000, 'Preventing', ['Agent': 'Preventing_cause', 'Theme': 'Event']).
 3071fnpattern(dodge, 52000000, 'Avoiding', ['Agent': 'Agent', 'Theme': 'Undesirable_situation', 'Location': 'Place']).
 3072fnpattern(dodge, 52000000, 'Avoiding', ['Agent': 'Agent', 'Location': 'Undesirable_situation']).
 3073fnpattern(duck, 52000000, 'Avoiding', ['Agent': 'Agent', 'Theme': 'Undesirable_situation', 'Location': 'Place']).
 3074fnpattern(duck, 52000000, 'Avoiding', ['Agent': 'Agent', 'Location': 'Undesirable_situation']).
 3075fnpattern(elude, 52000000, 'Evading', ['Agent': 'Evader', 'Theme': 'Pursuer']).
 3076fnpattern(eschew, 52000000, 'Avoiding', ['Agent': 'Agent', 'Theme': 'Undesirable_situation', 'Location': 'Place']).
 3077fnpattern(eschew, 52000000, 'Avoiding', ['Agent': 'Agent', 'Location': 'Undesirable_situation']).
 3078fnpattern(evade, 52000000, 'Avoiding', ['Agent': 'Agent', 'Theme': 'Undesirable_situation', 'Location': 'Place']).
 3079fnpattern(evade, 52000000, 'Avoiding', ['Agent': 'Agent', 'Location': 'Undesirable_situation']).
 3080fnpattern(evade, 52000000, 'Evading', ['Agent': 'Evader', 'Theme': 'Pursuer']).
 3081fnpattern(shun, 52000000, 'Avoiding', ['Agent': 'Agent', 'Theme': 'Undesirable_situation', 'Location': 'Place']).
 3082fnpattern(shun, 52000000, 'Avoiding', ['Agent': 'Agent', 'Location': 'Undesirable_situation']).
 3083fnpattern(sidestep, 52000000, 'Avoiding', ['Agent': 'Agent', 'Theme': 'Undesirable_situation', 'Location': 'Place']).
 3084fnpattern(sidestep, 52000000, 'Avoiding', ['Agent': 'Agent', 'Location': 'Undesirable_situation']).
 3085fnpattern(equivocate, 53010000, 'Prevarication', ['Agent': 'Speaker', 'Theme': 'Topic']).
 3086fnpattern(delay, 53010100, 'Hindering', ['Agent': 'Agent', 'Theme': 'Action']).
 3087fnpattern(measure, 54010000, 'Dimension', ['Theme': 'Object', 'Value': 'Measurement']).
 3088fnpattern(total, 54010000, 'Adding_up', ['Agent': 'Cognizer', 'Theme': 'Numbers', 'Value': 'Result']).
 3089fnpattern(total, 54010000, 'Amounting_to', ['Theme': 'Attribute', 'Value': 'Value']).
 3090fnpattern(weigh, 54010000, 'Dimension', ['Theme': 'Object', 'Value': 'Measurement']).
 3091fnpattern(cost, 54020000, 'Expensiveness', ['Theme': 'Goods', 'Value': 'Asset', 'Benefactor': 'Payer']).
 3092fnpattern(contain, 54030000, 'Containing', ['Location': 'Container', 'Theme': 'Contents']).
 3093fnpattern(hold, 54030000, 'Containing', ['Location': 'Container', 'Theme': 'Contents']).
 3094fnpattern(assess, 54040000, 'Assessing', ['Agent': 'Assessor', 'Theme': 'Feature', 'Value': 'Value']).
 3095fnpattern(peg, 54040000, 'Categorization', ['Agent': 'Cognizer', 'Theme': 'Item', 'Value': 'Category']).
 3096fnpattern(rate, 54040000, 'Assessing', ['Agent': 'Assessor', 'Theme': 'Feature', 'Value': 'Value']).
 3097fnpattern(scrimp, 54050000, 'Frugality', ['Agent': 'Resouce_controller', 'Theme': 'Resouce']).
 3098fnpattern(begin, 55010100, 'Activity_start', ['Agent': 'Agent', 'Theme': 'Activity', 'Time': 'Time']).
 3099fnpattern(resume, 55010100, 'Process_resume', ['Theme': 'Process', 'Time': 'Time']).
 3100fnpattern(start, 55010100, 'Activity_start', ['Agent': 'Agent', 'Theme': 'Activity', 'Time': 'Time']).
 3101fnpattern(start, 55010100, 'Process_start', ['Theme': 'Event', 'Time': 'Time']).
 3102fnpattern(keep, 55010210, 'Activity_ongoing', ['Agent': 'Agent', 'Theme': 'Activity']).
 3103fnpattern(continue, 55010221, 'Activity_ongoing', ['Agent': 'Agent', 'Theme': 'Activity']).
 3104fnpattern(continue, 55010221, 'Process_continue', ['Theme': 'Event', 'Time': 'Time']).
 3105fnpattern(end, 55010300, 'Process_end', ['Theme': 'Process']).
 3106fnpattern(finish, 55010300, 'Activity_finish', ['Agent': 'Agent', 'Theme': 'Activity']).
 3107fnpattern(discontinue, 55020000, 'Process_stop', ['Theme': 'Process']).
 3108fnpattern(quit, 55020000, 'Process_stop', ['Theme': 'Process']).
 3109fnpattern(halt, 55040000, 'Activity_stop', ['Agent': 'Agent', 'Theme': 'Activity', 'Instrument': 'Means']).
 3110fnpattern(halt, 55040000, 'Halt', ['Theme': 'Activity', 'Instrument': 'Means']).
 3111fnpattern(terminate, 55040000, 'Activity_finish', ['Agent': 'Agent', 'Theme': 'Activity', 'Instrument': 'Means']).
 3112fnpattern(terminate, 55040000, 'Activity_stop', ['Agent': 'Agent', 'Theme': 'Activity', 'Instrument': 'Means']).
 3113fnpattern(terminate, 55040000, 'Firing', ['Agent': 'Employer', 'Theme': 'Employee']).
 3114fnpattern(terminate, 55040000, 'Killing', ['Agent': 'Killer', 'Theme': 'Victim', 'Instrument': 'Instrument']).
 3115fnpattern(terminate, 55040000, 'Killing', ['Agent': 'Killer', 'Theme': 'Victim', 'Instrument': 'Means']).
 3116fnpattern(terminate, 55040000, 'Killing', ['Agent': 'Cause', 'Theme': 'Victim', 'Instrument': 'Instrument']).
 3117fnpattern(terminate, 55040000, 'Killing', ['Agent': 'Cause', 'Theme': 'Victim', 'Instrument': 'Means']).
 3118fnpattern(drizzle, 57000000, 'Precipitation', ['Theme': 'Precipitation']).
 3119fnpattern(hail, 57000000, 'Precipitation', ['Theme': 'Precipitation']).
 3120fnpattern(rain, 57000000, 'Precipitation', ['Theme': 'Precipitation']).
 3121fnpattern(sleet, 57000000, 'Precipitation', ['Theme': 'Precipitation']).
 3122fnpattern(snow, 57000000, 'Precipitation', ['Theme': 'Precipitation']).
 3123fnpattern(sprinkle, 57000000, 'Precipitation', ['Theme': 'Precipitation']).
 3124fnpattern(storm, 57000000, 'Weather', ['': '']).
 3125fnpattern(implore, 58000000, 'Request', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Message']).
 3126fnpattern(implore, 58000000, 'Request', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Topic']).
 3127fnpattern(persuade, 58000000, 'Suasion', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Content']).
 3128fnpattern(persuade, 58000000, 'Suasion', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Text']).
 3129fnpattern(persuade, 58000000, 'Suasion', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Topic']).
 3130fnpattern(urge, 58000000, 'Request', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Message']).
 3131fnpattern(urge, 58000000, 'Request', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Topic']).
 3132fnpattern(commission, 59000000, 'Employing', ['Agent': 'Employer', 'Patient': 'Employee', 'Proposition': 'Field']).
 3133fnpattern(commission, 59000000, 'Employing', ['Agent': 'Employer', 'Patient': 'Employee', 'Proposition': 'Position']).
 3134fnpattern(commission, 59000000, 'Employing', ['Agent': 'Employer', 'Patient': 'Employee', 'Proposition': 'Task']).
 3135fnpattern(commission, 59000000, 'Hiring', ['Agent': 'Employer', 'Patient': 'Employee', 'Proposition': 'Position']).
 3136fnpattern(commission, 59000000, 'Hiring', ['Agent': 'Employer', 'Patient': 'Employee', 'Proposition': 'Task']).
 3137fnpattern(dare, 59000000, 'Daring', ['Agent': 'Agent', 'Proposition': 'Action']).
 3138fnpattern(incite, 59000000, 'Talking_into', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Content']).
 3139fnpattern(incite, 59000000, 'Talking_into', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Goods']).
 3140fnpattern(induce, 59000000, 'Talking_into', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Content']).
 3141fnpattern(induce, 59000000, 'Talking_into', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Goods']).
 3142fnpattern(mislead, 59000000, 'Prevarication', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Topic']).
 3143fnpattern(press, 59000000, 'Attempt_suasion', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Content']).
 3144fnpattern(press, 59000000, 'Attempt_suasion', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Topic']).
 3145fnpattern(pressure, 59000000, 'Attempt_suasion', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Content']).
 3146fnpattern(pressure, 59000000, 'Attempt_suasion', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Topic']).
 3147fnpattern(spur, 59000000, 'Attempt_suasion', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Content']).
 3148fnpattern(spur, 59000000, 'Attempt_suasion', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Topic']).
 3149fnpattern(tempt, 59000000, 'Attempt_suasion', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Content']).
 3150fnpattern(tempt, 59000000, 'Attempt_suasion', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Topic']).
 3151fnpattern(cajole, 59000100, 'Attempt_suasion', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Content']).
 3152fnpattern(cajole, 59000100, 'Attempt_suasion', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Topic']).
 3153fnpattern(deceive, 59000100, 'Prevarication', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Topic']).
 3154fnpattern(fool, 59000100, 'Prevarication', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Topic']).
 3155fnpattern(hoodwink, 59000100, 'Prevarication', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Topic']).
 3156fnpattern(wheedle, 59000100, 'Attempt_suasion', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Content']).
 3157fnpattern(wheedle, 59000100, 'Attempt_suasion', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Topic']).
 3158fnpattern(permit, 60000000, 'Grant_permission', ['Agent': 'Grantor', 'Patient': 'Grantee', 'Proposition': 'Action']).
 3159fnpattern(permit, 60000000, 'Permitting', ['Agent': 'Principle', 'Patient': 'State_of_affairs']).
 3160fnpattern(permit, 60000000, 'Permitting', ['Agent': 'Principle', 'Proposition': 'State_of_affairs']).
 3161fnpattern(command, 60000100, 'Request', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Message']).
 3162fnpattern(demand, 60000100, 'Request', ['Agent': 'Speaker', 'Patient': 'Addressee', 'Proposition': 'Message']).
 3163fnpattern(aim, 62000000, 'Purpose', ['Experiencer': 'Agent', 'Theme': 'Goal']).
 3164fnpattern(aim, 62000000, 'Purpose', ['Experiencer': 'Agent', 'Theme': 'Attribute']).
 3165fnpattern(aim, 62000000, 'Purpose', ['Experiencer': 'Agent', 'Theme': 'Value']).
 3166fnpattern(expect, 62000000, 'Expectation', ['Experiencer': 'Cognizer', 'Theme': 'Phenomenon']).
 3167fnpattern(expect, 62000000, 'Expectation', ['Experiencer': 'Cognizer', 'Theme': 'Topic']).
 3168fnpattern(intend, 62000000, 'Purpose', ['Experiencer': 'Agent', 'Theme': 'Goal']).
 3169fnpattern(intend, 62000000, 'Purpose', ['Experiencer': 'Agent', 'Theme': 'Attribute']).
 3170fnpattern(intend, 62000000, 'Purpose', ['Experiencer': 'Agent', 'Theme': 'Value']).
 3171fnpattern(allow, 64000000, 'Permitting', ['Agent': 'Principle', 'Theme': 'State_of_affairs']).
 3172fnpattern(permit, 64000000, 'Permitting', ['Agent': 'Principle', 'Theme': 'State_of_affairs']).
 3173fnpattern(allow, 65000000, 'Permitting', ['Agent': 'Principle', 'Theme': 'State_of_affairs']).
 3174fnpattern(allow, 65000000, 'Permitting', ['Agent': 'Principle', 'Location': 'State_of_affairs']).
 3175fnpattern(permit, 65000000, 'Grant_permission', ['Agent': 'Grantor', 'Theme': 'Grantee', 'Location': 'Action']).
 3176fnpattern(permit, 65000000, 'Grant_permission', ['Agent': 'Grantor', 'Theme': 'Grantee', 'Location': 'Place']).
 3177fnpattern(permit, 65000000, 'Permitting', ['Agent': 'Principle', 'Theme': 'State_of_affairs']).
 3178fnpattern(permit, 65000000, 'Permitting', ['Agent': 'Principle', 'Location': 'State_of_affairs']).
 3179fnpattern(waste, 66000100, 'Frugality', ['Agent': 'Resource_controller', 'Theme': 'Resource']).
 3180fnpattern(waste, 66000100, 'Frugality', ['Agent': 'Resource_controller', 'Theme': 'Behavior']).
 3181fnpattern(ban, 67000000, 'Prohibiting', ['Agent': 'Principle', 'Theme': 'State_of_affairs']).
 3182fnpattern(dissuade, 67000000, 'Suasion', ['Agent': 'Speaker', 'Theme': 'Addressee']).
 3183fnpattern(dissuade, 67000000, 'Suasion', ['Agent': 'Speaker', 'Theme': 'Content']).
 3184fnpattern(dissuade, 67000000, 'Suasion', ['Agent': 'Speaker', 'Theme': 'Topic']).
 3185fnpattern(dissuade, 67000000, 'Suasion', ['Agent': 'Text', 'Theme': 'Addressee']).
 3186fnpattern(dissuade, 67000000, 'Suasion', ['Agent': 'Text', 'Theme': 'Content']).
 3187fnpattern(dissuade, 67000000, 'Suasion', ['Agent': 'Text', 'Theme': 'Topic']).
 3188fnpattern(forbid, 67000000, 'Deny_permission', ['Agent': 'Authority', 'Theme': 'Protagonist']).
 3189fnpattern(forbid, 67000000, 'Deny_permission', ['Agent': 'Authority', 'Theme': 'Action']).
 3190fnpattern(forbid, 67000000, 'Prohibiting', ['Agent': 'Principle', 'Theme': 'State_of_affairs']).
 3191fnpattern(prevent, 67000000, 'Preventing', ['Agent': 'Preventing_cause', 'Theme': 'Event']).
 3192fnpattern(prevent, 67000000, 'Thwarting', ['Agent': 'Preventing_cause', 'Theme': 'Protagonist']).
 3193fnpattern(prevent, 67000000, 'Thwarting', ['Agent': 'Preventing_cause', 'Theme': 'Action']).
 3194fnpattern(prohibit, 67000000, 'Deny_permission', ['Agent': 'Authority', 'Theme': 'Protagonist']).
 3195fnpattern(prohibit, 67000000, 'Deny_permission', ['Agent': 'Authority', 'Theme': 'Action']).
 3196fnpattern(prohibit, 67000000, 'Preventing', ['Agent': 'Preventing_cause', 'Theme': 'Event']).
 3197fnpattern(prohibit, 67000000, 'Prohibiting', ['Agent': 'Principle', 'Theme': 'State_of_affairs']).
 3198fnpattern(waste, 68000000, 'Frugality', ['Agent': 'Resource_controller', 'Asset': 'Resource', 'Theme': 'Behavior']).
 3199fnpattern(desist, 69000000, 'Avoiding', ['Agent': 'Agent', 'Theme': 'Undesirable_situation']).
 3200fnpattern(desist, 69000000, 'Process_stop', ['Agent': 'Cause', 'Theme': 'Process']).
 3201fnpattern(desist, 69000000, 'Process_stop', ['Agent': 'Reason', 'Theme': 'Process']).
 3202fnpattern(depend, 70000000, 'Reliance', ['Agent': 'Protagonist', 'Theme': 'Means']).
 3203fnpattern(depend, 70000000, 'Reliance', ['Agent': 'Protagonist', 'Theme': 'Instrument']).
 3204fnpattern(depend, 70000000, 'Reliance', ['Agent': 'Protagonist', 'Theme': 'Intermediary']).
 3205fnpattern(depend, 70000000, 'Reliance', ['Agent': 'Protagonist', 'Theme': 'Benefit']).
 3206fnpattern(depend, 70000000, 'Reliance', ['Agent': 'Protagonist', 'Theme': 'Purpose']).
 3207fnpattern(rely, 70000000, 'Reliance', ['Agent': 'Protagonist', 'Theme': 'Means']).
 3208fnpattern(rely, 70000000, 'Reliance', ['Agent': 'Protagonist', 'Theme': 'Instrument']).
 3209fnpattern(rely, 70000000, 'Reliance', ['Agent': 'Protagonist', 'Theme': 'Intermediary']).
 3210fnpattern(rely, 70000000, 'Reliance', ['Agent': 'Protagonist', 'Theme': 'Benefit']).
 3211fnpattern(rely, 70000000, 'Reliance', ['Agent': 'Protagonist', 'Theme': 'Purpose']).
 3212fnpattern(collude, 71000000, 'Collaboration', ['Actor': 'Partners', 'Actor1': 'Partner_1', 'Actor2': 'Partner_2', 'Theme': 'Undertaking']).
 3213fnpattern(conspire, 71000000, 'Collaboration', ['Actor': 'Partners', 'Actor1': 'Partner_1', 'Actor2': 'Partner_2', 'Theme': 'Undertaking']).
 3214fnpattern(retaliate, 71000000, 'Revenge', ['Actor': 'Avenger', 'Actor2': 'Offender', 'Theme': 'Punishment']).
 3215fnpattern(retaliate, 71000000, 'Revenge', ['Actor': 'Avenger', 'Actor2': 'Injury', 'Theme': 'Punishment']).
 3216fnpattern(retaliate, 71000000, 'Revenge', ['Actor': 'Avenger', 'Actor2': 'Injured_Party', 'Theme': 'Punishment']).
 3217fnpattern(retaliate, 71000000, 'Revenge', ['Actor': 'Avenger', 'Actor2': 'Instrument', 'Theme': 'Punishment']).
 3218fnpattern(retaliate, 71000000, 'Revenge', ['Actor1': 'Avenger', 'Actor2': 'Offender', 'Theme': 'Punishment']).
 3219fnpattern(retaliate, 71000000, 'Revenge', ['Actor1': 'Avenger', 'Actor2': 'Injury', 'Theme': 'Punishment']).
 3220fnpattern(retaliate, 71000000, 'Revenge', ['Actor1': 'Avenger', 'Actor2': 'Injured_Party', 'Theme': 'Punishment']).
 3221fnpattern(retaliate, 71000000, 'Revenge', ['Actor1': 'Avenger', 'Actor2': 'Instrument', 'Theme': 'Punishment']).
 3222fnpattern(sin, 71000000, 'Misdeed', ['Actor': 'Wrongdoer', 'Actor2': 'Injured_party', 'Theme': 'Misdeed']).
 3223fnpattern(sin, 71000000, 'Misdeed', ['Actor1': 'Wrongdoer', 'Actor2': 'Injured_party', 'Theme': 'Misdeed']).
 3224fnpattern(team_up, 71000000, 'Collaboration', ['Actor': 'Partners', 'Actor1': 'Partner_1', 'Actor2': 'Partner_2', 'Theme': 'Undertaking']).
 3225fnpattern(succor, 72000000, 'Assistance', ['Agent': 'Helper', 'Beneficiary': 'Benefitted_party', 'Theme': 'Goal']).
 3226fnpattern(succor, 72000000, 'Assistance', ['Agent': 'Helper', 'Beneficiary': 'Benefitted_party', 'Theme': 'Focal_entity']).
 3227fnpattern(abet, 72000100, 'Assistance', ['Agent': 'Helper', 'Beneficiary': 'Benefitted_party', 'Theme': 'Goal']).
 3228fnpattern(abet, 72000100, 'Assistance', ['Agent': 'Helper', 'Beneficiary': 'Benefitted_party', 'Theme': 'Focal_entity']).
 3229fnpattern(assist, 72000100, 'Assistance', ['Agent': 'Helper', 'Beneficiary': 'Benefitted_party', 'Theme': 'Goal']).
 3230fnpattern(assist, 72000100, 'Assistance', ['Agent': 'Helper', 'Beneficiary': 'Benefitted_party', 'Theme': 'Focal_entity']).
 3231fnpattern(help, 72000100, 'Assistance', ['Agent': 'Helper', 'Beneficiary': 'Benefitted_party', 'Theme': 'Goal']).
 3232fnpattern(help, 72000100, 'Assistance', ['Agent': 'Helper', 'Beneficiary': 'Benefitted_party', 'Theme': 'Focal_entity']).
 3233fnpattern(participate, 73000200, 'Participation', ['Actor': 'Participants', 'Actor1': 'Participant_1', 'Actor2': 'Participant_2', 'Theme': 'Event']).
 3234fnpattern(participate, 73000200, 'Participation', ['Actor': 'Participants', 'Actor1': 'Participant_1', 'Actor2': 'Participant_2', 'Theme': 'Institution']).
 3235fnpattern(confine, 76000000, 'Cause_confinement', ['Cause': 'Agent', 'Patient': 'Theme', 'Proposition': 'Goal']).
 3236fnpattern(confine, 76000000, 'Cause_confinement', ['Cause': 'Cause', 'Patient': 'Theme', 'Proposition': 'Goal']).
 3237fnpattern(constrain, 76000000, 'Hindering', ['Cause': 'Agent', 'Patient': 'Item', 'Proposition': 'Attribute']).
 3238fnpattern(constrain, 76000000, 'Hindering', ['Cause': 'Agent', 'Patient': 'Item', 'Proposition': 'Path']).
 3239fnpattern(constrain, 76000000, 'Hindering', ['Cause': 'Agent', 'Patient': 'Item', 'Proposition': 'Value_1']).
 3240fnpattern(constrain, 76000000, 'Hindering', ['Cause': 'Agent', 'Patient': 'Item', 'Proposition': 'Value_2']).
 3241fnpattern(constrain, 76000000, 'Hindering', ['Cause': 'Agent', 'Patient': 'Item', 'Proposition': 'Means']).
 3242fnpattern(constrain, 76000000, 'Hindering', ['Cause': 'Cause', 'Patient': 'Item', 'Proposition': 'Attribute']).
 3243fnpattern(constrain, 76000000, 'Hindering', ['Cause': 'Cause', 'Patient': 'Item', 'Proposition': 'Path']).
 3244fnpattern(constrain, 76000000, 'Hindering', ['Cause': 'Cause', 'Patient': 'Item', 'Proposition': 'Value_1']).
 3245fnpattern(constrain, 76000000, 'Hindering', ['Cause': 'Cause', 'Patient': 'Item', 'Proposition': 'Value_2']).
 3246fnpattern(constrain, 76000000, 'Hindering', ['Cause': 'Cause', 'Patient': 'Item', 'Proposition': 'Means']).
 3247fnpattern(restrict, 76000000, 'Cause_confinement', ['Cause': 'Agent', 'Patient': 'Theme', 'Proposition': 'Goal']).
 3248fnpattern(restrict, 76000000, 'Cause_confinement', ['Cause': 'Cause', 'Patient': 'Theme', 'Proposition': 'Goal']).
 3249fnpattern(understand, 77000000, 'Awareness', ['Agent': 'Cognizer', 'Proposition': 'Content']).
 3250fnpattern(understand, 77000000, 'Awareness', ['Agent': 'Cognizer', 'Proposition': 'Topic']).
 3251fnpattern(imply, 78000000, 'Evidence', ['Cause': 'Support', 'Recipient': 'Cognizer', 'Topic': 'Proposition']).
 3252fnpattern(predict, 78000000, 'Predicting', ['Cause': 'Evidence', 'Topic': 'Eventuality']).
 3253fnpattern(predict, 78000000, 'Predicting', ['Cause': 'Speaker', 'Topic': 'Eventuality']).
 3254fnpattern(indicate, 78000100, 'Communication', ['Cause': 'Communicator', 'Recipient': 'Addressee', 'Topic': 'Message']).
 3255fnpattern(indicate, 78000100, 'Communication', ['Cause': 'Communicator', 'Recipient': 'Addressee', 'Topic': 'Topic']).
 3256fnpattern(indicate, 78000100, 'Evidence', ['Cause': 'Support', 'Recipient': 'Cognizer', 'Topic': 'Proposition']).
 3257fnpattern(indicate, 78000100, 'Sign', ['Cause': 'Indicator', 'Topic': 'Indicated']).
 3258fnpattern(confirm, 78000110, 'Evidence', ['Cause': 'Support', 'Recipient': 'Cognizer', 'Topic': 'Proposition']).
 3259fnpattern(confirm, 78000110, 'Statement', ['Cause': 'Speaker', 'Recipient': 'Addressee', 'Topic': 'Message']).
 3260fnpattern(confirm, 78000110, 'Statement', ['Cause': 'Speaker', 'Recipient': 'Addressee', 'Topic': 'Topic']).
 3261fnpattern(confirm, 78000110, 'Verification', ['Cause': 'Inspector', 'Topic': 'Unconfirmed_content']).
 3262fnpattern(confirm, 78000110, 'Verification', ['Cause': 'Medium', 'Topic': 'Unconfirmed_content']).
 3263fnpattern(prove, 78000110, 'Evidence', ['Cause': 'Support', 'Recipient': 'Cognizer', 'Topic': 'Proposition']).
 3264fnpattern(prove, 78000110, 'Reasoning', ['Cause': 'Support', 'Recipient': 'Addressee', 'Topic': 'Content']).
 3265fnpattern(prove, 78000110, 'Reasoning', ['Cause': 'Arguer', 'Recipient': 'Addressee', 'Topic': 'Content']).
 3266fnpattern(acquit, 80000100, 'Verdict', ['Cause': 'Judge', 'Source': 'Defendant', 'Theme': 'Charges']).
 3267fnpattern(acquit, 80000100, 'Verdict', ['Cause': 'Reason', 'Source': 'Defendant', 'Theme': 'Charges']).
 3268fnpattern(accuse, 81000000, 'Judgement', ['Agent': 'Cognizer', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 3269fnpattern(accuse, 81000000, 'Judgement_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Reason']).
 3270fnpattern(accuse, 81000000, 'Judgement_communication', ['Agent': 'Communicator', 'Theme': 'Evaluee', 'Predicate': 'Topic']).
 3271fnpattern(accuse, 81000000, 'Notification_of_charges', ['Agent': 'Arraign_authority', 'Theme': 'Accused', 'Predicate': 'Charges']).
 3272fnpattern(retire, 82000300, 'Quitting', ['Agent': 'Employee', 'Source': 'Position']).
 3273fnpattern(retire, 82000300, 'Quitting', ['Agent': 'Employee', 'Source': 'Field']).
 3274fnpattern(retreat, 82000300, 'Departing', ['Agent': 'Theme', 'Source': 'Source']).
 3275fnpattern(retreat, 82000300, 'Quitting_a_place', ['Agent': 'Self_mover', 'Source': 'Source']).
 3276fnpattern(learn, 84000110, 'Becoming_aware', ['Agent': 'Cognizer', 'Theme': 'Phenomenon', 'Source': 'Means']).
 3277fnpattern(learn, 84000110, 'Becoming_aware', ['Agent': 'Cognizer', 'Theme': 'Phenomenon', 'Source': 'Instrument']).
 3278fnpattern(learn, 84000110, 'Becoming_aware', ['Agent': 'Cognizer', 'Theme': 'Topic', 'Source': 'Means']).
 3279fnpattern(learn, 84000110, 'Becoming_aware', ['Agent': 'Cognizer', 'Theme': 'Topic', 'Source': 'Instrument']).
 3280fnpattern(learn, 84000110, 'Coming_to_believe', ['Agent': 'Cognizer', 'Theme': 'Content', 'Source': 'Evidence']).
 3281fnpattern(learn, 84000110, 'Coming_to_believe', ['Agent': 'Cognizer', 'Theme': 'Content', 'Source': 'Means']).
 3282fnpattern(learn, 84000110, 'Coming_to_believe', ['Agent': 'Cognizer', 'Theme': 'Topic', 'Source': 'Evidence']).
 3283fnpattern(learn, 84000110, 'Coming_to_believe', ['Agent': 'Cognizer', 'Theme': 'Topic', 'Source': 'Means']).
 3284fnpattern(learn, 84000110, 'Education_teaching', ['Agent': 'Student', 'Theme': 'Subject', 'Source': 'Teacher']).
 3285fnpattern(learn, 84000110, 'Education_teaching', ['Agent': 'Student', 'Theme': 'Subject', 'Source': 'Institution']).
 3286fnpattern(learn, 84000110, 'Education_teaching', ['Agent': 'Student', 'Theme': 'Subject', 'Source': 'Course']).
 3287fnpattern(learn, 84000110, 'Education_teaching', ['Agent': 'Student', 'Theme': 'Subject', 'Source': 'Material']).
 3288fnpattern(learn, 84000110, 'Education_teaching', ['Agent': 'Student', 'Theme': 'Skill', 'Source': 'Teacher']).
 3289fnpattern(learn, 84000110, 'Education_teaching', ['Agent': 'Student', 'Theme': 'Skill', 'Source': 'Institution']).
 3290fnpattern(learn, 84000110, 'Education_teaching', ['Agent': 'Student', 'Theme': 'Skill', 'Source': 'Course']).
 3291fnpattern(learn, 84000110, 'Education_teaching', ['Agent': 'Student', 'Theme': 'Skill', 'Source': 'Material']).
 3292fnpattern(learn, 84000110, 'Education_teaching', ['Agent': 'Student', 'Theme': 'Role', 'Source': 'Teacher']).
 3293fnpattern(learn, 84000110, 'Education_teaching', ['Agent': 'Student', 'Theme': 'Role', 'Source': 'Institution']).
 3294fnpattern(learn, 84000110, 'Education_teaching', ['Agent': 'Student', 'Theme': 'Role', 'Source': 'Course']).
 3295fnpattern(learn, 84000110, 'Education_teaching', ['Agent': 'Student', 'Theme': 'Role', 'Source': 'Material']).
 3296fnpattern(learn, 84000110, 'Education_teaching', ['Agent': 'Student', 'Theme': 'Precept', 'Source': 'Teacher']).
 3297fnpattern(learn, 84000110, 'Education_teaching', ['Agent': 'Student', 'Theme': 'Precept', 'Source': 'Institution']).
 3298fnpattern(learn, 84000110, 'Education_teaching', ['Agent': 'Student', 'Theme': 'Precept', 'Source': 'Course']).
 3299fnpattern(learn, 84000110, 'Education_teaching', ['Agent': 'Student', 'Theme': 'Precept', 'Source': 'Material']).
 3300fnpattern(learn, 84000110, 'Education_teaching', ['Agent': 'Student', 'Theme': 'Fact', 'Source': 'Teacher']).
 3301fnpattern(learn, 84000110, 'Education_teaching', ['Agent': 'Student', 'Theme': 'Fact', 'Source': 'Institution']).
 3302fnpattern(learn, 84000110, 'Education_teaching', ['Agent': 'Student', 'Theme': 'Fact', 'Source': 'Course']).
 3303fnpattern(learn, 84000110, 'Education_teaching', ['Agent': 'Student', 'Theme': 'Fact', 'Source': 'Material']).
 3304fnpattern(learn, 84000110, 'Memorization', ['Agent': 'Cognizer', 'Theme': 'Pattern']).
 3305fnpattern(defend, 85000000, 'Defend', ['Agent': 'Defender', 'Theme': 'Victim', 'Proposition': 'Assailant']).
 3306fnpattern(defend, 85000000, 'Defend', ['Agent': 'Defender', 'Proposition': 'Victim']).
 3307fnpattern(defend, 85000000, 'Justifying', ['Agent': 'Agent', 'Theme': 'Act', 'Proposition': 'State_of_affairs']).
 3308fnpattern(defend, 85000000, 'Justifying', ['Agent': 'Agent', 'Proposition': 'Act']).
 3309fnpattern(wonder, 88000100, 'Cogitation', ['Eperiencer': 'Cognizer', 'Cause': 'Topic']).
 3310fnpattern(cohere, 89000000, 'Compatibility', ['Actor': 'Item_1', 'Proposition': 'Item_2']).
 3311fnpattern(cohere, 89000000, 'Compatibility', ['Actor': 'Item_1', 'Proposition': 'Parameter']).
 3312fnpattern(cohere, 89000000, 'Compatibility', ['Actor': 'Items', 'Proposition': 'Item_2']).
 3313fnpattern(cohere, 89000000, 'Compatibility', ['Actor': 'Items', 'Proposition': 'Parameter']).
 3314fnpattern(jibe, 89000000, 'Compatibility', ['Actor': 'Item_1', 'Proposition': 'Item_2']).
 3315fnpattern(jibe, 89000000, 'Compatibility', ['Actor': 'Item_1', 'Proposition': 'Parameter']).
 3316fnpattern(jibe, 89000000, 'Compatibility', ['Actor': 'Items', 'Proposition': 'Item_2']).
 3317fnpattern(jibe, 89000000, 'Compatibility', ['Actor': 'Items', 'Proposition': 'Parameter']).
 3318fnpattern(square, 89000000, 'Compatibility', ['Actor': 'Item_1', 'Proposition': 'Item_2']).
 3319fnpattern(square, 89000000, 'Compatibility', ['Actor': 'Item_1', 'Proposition': 'Parameter']).
 3320fnpattern(square, 89000000, 'Compatibility', ['Actor': 'Items', 'Proposition': 'Item_2']).
 3321fnpattern(square, 89000000, 'Compatibility', ['Actor': 'Items', 'Proposition': 'Parameter']).
 3322fnpattern(outstrip, 90000000, 'Surpassing', ['Theme1': 'Profiled_item', 'Theme2': 'Standard_item', 'Attribute': 'Attribute']).
 3323fnpattern(outstrip, 90000000, 'Surpassing', ['Theme1': 'Profiled_item', 'Theme2': 'Standard_item', 'Attribute': 'Extent']).
 3324fnpattern(outstrip, 90000000, 'Surpassing', ['Theme1': 'Profiled_item', 'Theme2': 'Standard_item', 'Attribute': 'Standard_attribute']).
 3325fnpattern(outstrip, 90000000, 'Surpassing', ['Theme1': 'Profiled_item', 'Theme2': 'Standard_item', 'Attribute': 'Profiled_attribute']).
 3326fnpattern(surpass, 90000000, 'Surpassing', ['Theme1': 'Profiled_item', 'Theme2': 'Standard_item', 'Attribute': 'Attribute']).
 3327fnpattern(surpass, 90000000, 'Surpassing', ['Theme1': 'Profiled_item', 'Theme2': 'Standard_item', 'Attribute': 'Extent']).
 3328fnpattern(surpass, 90000000, 'Surpassing', ['Theme1': 'Profiled_item', 'Theme2': 'Standard_item', 'Attribute': 'Standard_attribute']).
 3329fnpattern(surpass, 90000000, 'Surpassing', ['Theme1': 'Profiled_item', 'Theme2': 'Standard_item', 'Attribute': 'Profiled_attribute']).
 3330fnpattern(commit, 92000100, 'Institutionalization', ['Agent': 'Authority', 'Theme': 'Patient', 'Destination': 'Facility']).
 3331fnpattern(confine, 92000100, 'Cause_confinement', ['Agent': 'Agent', 'Theme': 'Theme', 'Destination': 'Goal']).
 3332fnpattern(confine, 92000100, 'Cause_confinement', ['Agent': 'Cause', 'Theme': 'Theme', 'Destination': 'Goal']).
 3333fnpattern(venture, 94000000, 'Daring', ['Agent': 'Agent', 'Theme': 'Action']).
 3334fnpattern(venture, 94000000, 'Statement', ['Agent': 'Speaker', 'Theme': 'Message']).
 3335fnpattern(venture, 94000000, 'Statement', ['Agent': 'Speaker', 'Theme': 'Medium']).
 3336fnpattern(venture, 94000000, 'Statement', ['Agent': 'Speaker', 'Theme': 'Topic']).
 3337fnpattern(chance, 94000100, 'Daring', ['Agent': 'Agent', 'Theme': 'Action']).
 3338fnpattern(hazard, 94000100, 'Daring', ['Agent': 'Agent', 'Theme': 'Action']).
 3339fnpattern(hazard, 94000100, 'Statement', ['Agent': 'Speaker', 'Theme': 'Message']).
 3340fnpattern(hazard, 94000100, 'Statement', ['Agent': 'Speaker', 'Theme': 'Medium']).
 3341fnpattern(hazard, 94000100, 'Statement', ['Agent': 'Speaker', 'Theme': 'Topic']).
 3342fnpattern(risk, 94000100, 'Daring', ['Agent': 'Agent', 'Theme': 'Action'])