-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathverb_all.txt
8503 lines (8503 loc) · 514 KB
/
verb_all.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"convolute"" ""convoluting"" ""convoluted" "convoluted"
"fawn"" ""fawns"" ""fawning"" ""fawned" "fawned"
"foul"" ""fouls"" ""fouling"" ""fouled" "fouled"
"escribe"" ""escribes"" ""escribing"" ""escribed" "escribed"
"prefix"" ""prefixes"" ""prefixing"" ""prefixed" "prefixed"
"forgather"" ""forgathers"" ""forgathering"" ""forgathered" "forgathered"
"preface"" ""prefaces"" ""prefacing"" ""prefaced" "prefaced"
"renegue"" ""renegues"" ""reneguing"" ""renegued" "renegued"
"underachieve"" ""underachieves"" ""underachieving"" ""underachieved" "underachieved"
"shamble"" ""shambles"" ""shambling"" ""shambled" "shambled"
"conjure"" ""conjures"" ""conjuring"" ""conjured" "conjured"
"regularize"" ""regularizes"" ""regularizing"" ""regularized" "regularized"
"ruck"" ""rucks"" ""rucking"" ""rucked" "rucked"
"rupture"" ""ruptures"" ""rupturing"" ""ruptured" "ruptured"
"rouse"" ""rouses"" ""rousing"" ""roused" "roused"
"scold"" ""scolds"" ""scolding"" ""scolded" "scolded"
"quadruple"" ""quadruples"" ""quadrupling"" ""quadrupled" "quadrupled"
"outwit"" ""outwits"" ""outwitting"" ""outwitted" "outwitted"
"tingle"" ""tingles"" ""tingling"" ""tingled" "tingled"
"sputter"" ""sputters"" ""sputtering"" ""sputtered" "sputtered"
"angulate"" ""angulates"" ""angulating"" ""angulated" "angulated"
"antecede"" ""antecedes"" ""anteceding"" ""anteceded" "anteceded"
"swivel"" ""swivels"" ""swiveling"" ""swiveled" "swiveled"
"bellyache"" ""bellyaches"" ""bellyaching"" ""bellyached" "bellyached"
"jemmy"" ""jemmies"" ""jemmying"" ""jemmied" "jemmied"
"stipulate"" ""stipulates"" ""stipulating"" ""stipulated" "stipulated"
"befoul"" ""befouls"" ""befouling"" ""befouled" "befouled"
"yellow"" ""yellows"" ""yellowing"" ""yellowed" "yellowed"
"detrude"" ""detrudes"" ""detruding"" ""detruded" "detruded"
"unify"" ""unifies"" ""unifying"" ""unified" "unified"
"semaphore"" ""semaphores"" ""semaphoring"" ""semaphored" "semaphored"
"disturb"" ""disturbs"" ""disturbing"" ""disturbed" "disturbed"
"prize"" ""prizes"" ""prizing"" ""prized" "prized"
"buttonhole"" ""buttonholes"" ""buttonholing"" ""buttonholed" "buttonholed"
"understock"" ""understocks"" ""understocking"" ""understocked" "understocked"
"disburden"" ""disburdens"" ""disburdening"" ""disburdened" "disburdened"
"fritter"" ""fritters"" ""frittering"" ""frittered" "frittered"
"orientate"" ""orientates"" ""orientating"" ""orientated" "orientated"
"charter"" ""charters"" ""chartering"" ""chartered" "chartered"
"tolerate"" ""tolerates"" ""tolerating"" ""tolerated" "tolerated"
"pulse"" ""pulses"" ""pulsing"" ""pulsed" "pulsed"
"second"" ""seconds"" ""seconding"" ""seconded" "seconded"
"tether"" ""tethers"" ""tethering"" ""tethered" "tethered"
"hoick"" ""hoicks"" ""hoicking"" ""hoicked" "hoicked"
"blouse"" ""blouses"" ""blousing"" ""bloused" "bloused"
"intermingle"" ""intermingles"" ""intermingling"" ""intermingled" "intermingled"
"thunder"" ""thunders"" ""thundering"" ""thundered" "thundered"
"boogie"" ""boogies"" ""boogieing"" ""boogied" "boogied"
"decry"" ""decries"" ""decrying"" ""decried" "decried"
"succumb"" ""succumbs"" ""succumbing"" ""succumbed" "succumbed"
"cull"" ""culls"" ""culling"" ""culled" "culled"
"crouch"" ""crouches"" ""crouching"" ""crouched" "crouched"
"avert"" ""averts"" ""averting"" ""averted" "averted"
"dogear"" ""dogears"" ""dogearing"" ""dogeared" "dogeared"
"splinter"" ""splinters"" ""splintering"" ""splintered" "splintered"
"herd"" ""herds"" ""herding"" ""herded" "herded"
"chine"" ""chines"" ""chining"" ""chined" "chined"
"freezedry"" ""freezedries"" ""freezedrying"" ""freezedried" "freezedried"
"shriek"" ""shrieks"" ""shrieking"" ""shrieked" "shrieked"
"chink"" ""chinks"" ""chinking"" ""chinked" "chinked"
"deodorize"" ""deodorizes"" ""deodorizing"" ""deodorized" "deodorized"
"elaborate"" ""elaborates"" ""elaborating"" ""elaborated" "elaborated"
"yield"" ""yields"" ""yielding"" ""yielded" "yielded"
"force-ripe"" ""force-ripes"" ""force-riping"" ""force-riped" "force-riped"
"scutter"" ""scutters"" ""scuttering"" ""scuttered" "scuttered"
"rebel"" ""rebels"" ""rebelling"" ""rebelled" "rebelled"
"exuviate"" ""exuviates"" ""exuviating"" ""exuviated" "exuviated"
"misprize"" ""misprizes"" ""misprizing"" ""misprized" "misprized"
"divide"" ""divides"" ""dividing"" ""divided" "divided"
"lengthen"" ""lengthens"" ""lengthening"" ""lengthened" "lengthened"
"replace"" ""replaces"" ""replacing"" ""replaced" "replaced"
"telemeter"" ""telemeters"" ""telemetering"" ""telemetered" "telemetered"
"perennate"" ""perennates"" ""perennating"" ""perennated" "perennated"
"blunge"" ""blunges"" ""blunging"" ""blunged" "blunged"
"discommon"" ""discommons"" ""discommoning"" ""discommoned" "discommoned"
"browse"" ""browses"" ""browsing"" ""browsed" "browsed"
"exhort"" ""exhorts"" ""exhorting"" ""exhorted" "exhorted"
"gradate"" ""gradates"" ""gradating"" ""gradated" "gradated"
"untie"" ""unties"" ""untying"" ""untied" "untied"
"telegraph"" ""telegraphs"" ""telegraphing"" ""telegraphed" "telegraphed"
"strike"" ""strikes"" ""striking"" ""struck" "struck"
"relay"" ""relays"" ""relaying"" ""relayed" "relayed"
"desalt"" ""desalts"" ""desalting"" ""desalted" "desalted"
"mesmerize"" ""mesmerizes"" ""mesmerizing"" ""mesmerized" "mesmerized"
"sortie"" ""sorties"" ""sortieing"" ""sortied" "sortied"
"holp"" ""holps"" ""holping"" ""holped" "holped"
"glass"" ""glasses"" ""glassing"" ""glassed" "glassed"
"export"" ""exports"" ""exporting"" ""exported" "exported"
"hurl"" ""hurls"" ""hurling"" ""hurled" "hurled"
"hole"" ""holes"" ""holing"" ""holed" "holed"
"hold"" ""holds"" ""holding"" ""held" "held"
"unpack"" ""unpacks"" ""unpacking"" ""unpacked" "unpacked"
"simper"" ""simpers"" ""simpering"" ""simpered" "simpered"
"pursue"" ""pursues"" ""pursuing"" ""pursued" "pursued"
"debark"" ""debarks"" ""debarking"" ""debarked" "debarked"
"sweeten"" ""sweetens"" ""sweetening"" ""sweetened" "sweetened"
"straddle"" ""straddles"" ""straddling"" ""straddled" "straddled"
"hamshackle"" ""hamshackles"" ""hamshackling"" ""hamshackled" "hamshackled"
"vow"" ""vows"" ""vowing"" ""vowed" "vowed"
"reword"" ""rewords"" ""rewording"" ""reworded" "reworded"
"shelve"" ""shelves"" ""shelving"" ""shelved" "shelved"
"exhale"" ""exhales"" ""exhaling"" ""exhaled" "exhaled"
"rework"" ""reworks"" ""reworking"" ""reworked" "reworked"
"scavenge"" ""scavenges"" ""scavenging"" ""scavenged" "scavenged"
"phrase"" ""phrases"" ""phrasing"" ""phrased" "phrased"
"triple"" ""triples"" ""tripling"" ""tripled" "tripled"
"wane"" ""wanes"" ""waning"" ""waned" "waned"
"wank"" ""wanks"" ""wanking"" ""wanked" "wanked"
"malign"" ""maligns"" ""maligning"" ""maligned" "maligned"
"caution"" ""cautions"" ""cautioning"" ""cautioned" "cautioned"
"want"" ""wants"" ""wanting"" ""wanted" "wanted"
"truncheon"" ""truncheons"" ""truncheoning"" ""truncheoned" "truncheoned"
"dele"" ""deles"" ""deleing"" ""deled" "deled"
"reprove"" ""reproves"" ""reproving"" ""reproved" "reproved"
"dyke"" ""dykes"" ""dyking"" ""dyked" "dyked"
"hog"" ""hogs"" ""hogging"" ""hogged" "hogged"
"hoe"" ""hoes"" ""hoing"" ""hoed" "hoed"
"hob"" ""hobs"" ""hobbing"" ""hobbed" "hobbed"
"unclothe"" ""unclothes"" ""unclothing"" ""unclothed" "unclothed"
"dimple"" ""dimples"" ""dimpling"" ""dimpled" "dimpled"
"travel"" ""travels"" ""travelling"" ""travelled" "travelled"
"peregrinate"" ""peregrinates"" ""peregrinating"" ""peregrinated" "peregrinated"
"damage"" ""damages"" ""damaging"" ""damaged" "damaged"
"cutback"" ""cutbacks"" ""cutbacking"" ""cutbacked" "cutbacked"
"revisit"" ""revisits"" ""revisiting"" ""revisited" "revisited"
"machine"" ""machines"" ""machining"" ""machined" "machined"
"playback"" ""playbacks"" ""playbacking"" ""playbacked" "playbacked"
"hop"" ""hops"" ""hopping"" ""hopped" "hopped"
"hyposensitize"" ""hyposensitizes"" ""hyposensitizing"" ""hyposensitized" "hyposensitized"
"classify"" ""classifies"" ""classifying"" ""classified" "classified"
"turmoil"" ""turmoils"" ""turmoiling"" ""turmoiled" "turmoiled"
"swing"" ""swings"" ""swinging"" ""swung" "swung"
"outfight"" ""outfights"" ""outfighting"" ""outfought" "outfought"
"diagram"" ""diagrams"" ""diagramming"" ""diagrammed" "diagrammed"
"wrong"" ""wrongs"" ""wronging"" ""wronged" "wronged"
"chump"" ""chumps"" ""chumping"" ""chumped" "chumped"
"warble"" ""warbles"" ""warbling"" ""warbled" "warbled"
"marginalize"" ""marginalizes"" ""marginalizing"" ""marginalized" "marginalized"
"scourge"" ""scourges"" ""scourging"" ""scourged" "scourged"
"revolt"" ""revolts"" ""revolting"" ""revolted" "revolted"
"season"" ""seasons"" ""seasoning"" ""seasoned" "seasoned"
"wink"" ""winks"" ""winking"" ""winked" "winked"
"wing"" ""wings"" ""winging"" ""winged" "winged"
"squint"" ""squints"" ""squinting"" ""squinted" "squinted"
"wine"" ""wines"" ""wining"" ""wined" "wined"
"triturate"" ""triturates"" ""triturating"" ""triturated" "triturated"
"transect"" ""transects"" ""transecting"" ""transected" "transected"
"confederate"" ""confederates"" ""confederating"" ""confederated" "confederated"
"vary"" ""varies"" ""varying"" ""varied" "varied"
"stagemanage"" ""stagemanages"" ""stagemanaging"" ""stagemanaged" "stagemanaged"
"handcuff"" ""handcuffs"" ""handcuffing"" ""handcuffed" "handcuffed"
"butcher"" ""butchers"" ""butchering"" ""butchered" "butchered"
"wrought"" ""wroughts"" ""wroughting"" ""wroughted" "wroughted"
"contuse"" ""contuses"" ""contusing"" ""contused" "contused"
"entrammel"" ""entrammels"" ""entrammelling"" ""entrammelled" "entrammelled"
"fix"" ""fixes"" ""fixing"" ""fixed" "fixed"
"baste"" ""bastes"" ""basting"" ""basted" "basted"
"secede"" ""secedes"" ""seceding"" ""seceded" "seceded"
"fib"" ""fibs"" ""fibbing"" ""fibbed" "fibbed"
"fig"" ""figs"" ""figging"" ""figged" "figged"
"transvalue"" ""transvalues"" ""transvaluing"" ""transvalued" "transvalued"
"fin"" ""fins"" ""finning"" ""finned" "finned"
"undercut"" ""undercuts"" ""undercutting"" ""undercut" "undercut"
"glorify"" ""glorifies"" ""glorifying"" ""glorified" "glorified"
"unpeg"" ""unpegs"" ""unpegging"" ""unpegged" "unpegged"
"enrich"" ""enriches"" ""enriching"" ""enriched" "enriched"
"slate"" ""slates"" ""slating"" ""slated" "slated"
"decarbonize"" ""decarbonizes"" ""decarbonizing"" ""decarbonized" "decarbonized"
"commemorate"" ""commemorates"" ""commemorating"" ""commemorated" "commemorated"
"memorialize"" ""memorializes"" ""memorializing"" ""memorialized" "memorialized"
"confute"" ""confutes"" ""confuting"" ""confuted" "confuted"
"interrupt"" ""interrupts"" ""interrupting"" ""interrupted" "interrupted"
"silver"" ""silvers"" ""silvering"" ""silvered" "silvered"
"rumour"" ""rumours"" ""rumouring"" ""rumoured" "rumoured"
"defecate"" ""defecates"" ""defecating"" ""defecated" "defecated"
"debut"" ""debuts"" ""debuting"" ""debuted" "debuted"
"debus"" ""debuses"" ""debusing"" ""debused" "debused"
"debug"" ""debugs"" ""debugging"" ""debugged" "debugged"
"gumshoe"" ""gumshoes"" ""gumshoeing"" ""gumshoed" "gumshoed"
"toll"" ""tolls"" ""tolling"" ""tolled" "tolled"
"telescope"" ""telescopes"" ""telescoping"" ""telescoped" "telescoped"
"swathe"" ""swathing"" ""swathed" "swathed"
"garment"" ""garments"" ""garmenting"" ""garmented" "garmented"
"exhume"" ""exhumes"" ""exhuming"" ""exhumed" "exhumed"
"whizz"" ""whizzes"" ""whizzing"" ""whizzed" "whizzed"
"ameliorate"" ""ameliorates"" ""ameliorating"" ""ameliorated" "ameliorated"
"allay"" ""allays"" ""allaying"" ""allayed" "allayed"
"whirr"" ""whirs"" ""whirring"" ""whirred" "whirred"
"ring"" ""rings"" ""ringing"" ""rung" "rung"
"overwrite"" ""overwrites"" ""overwriting"" ""overwrote" "overwritten"
"smirk"" ""smirks"" ""smirking"" ""smirked" "smirked"
"waive"" ""waives"" ""waiving"" ""waived" "waived"
"freeze"" ""freezes"" ""freezing"" ""froze" "frozen"
"mason"" ""masons"" ""masoning"" ""masoned" "masoned"
"unclog"" ""unclogs"" ""unclogging"" ""unclogged" "unclogged"
"nomadize"" ""nomadizes"" ""nomadizing"" ""nomadized" "nomadized"
"encourage"" ""encourages"" ""encouraging"" ""encouraged" "encouraged"
"adapt"" ""adapts"" ""adapting"" ""adapted" "adapted"
"teeter"" ""teeters"" ""teetering"" ""teetered" "teetered"
"smart"" ""smarts"" ""smarting"" ""smarted" "smarted"
"waddle"" ""waddles"" ""waddling"" ""waddled" "waddled"
"roquet"" ""roquets"" ""roqueting"" ""roqueted" "roqueted"
"inscribe"" ""inscribes"" ""inscribing"" ""inscribed" "inscribed"
"outmarch"" ""outmarches"" ""outmarching"" ""outmarched" "outmarched"
"broil"" ""broils"" ""broiling"" ""broiled" "broiled"
"knit"" ""knits"" ""knitting"" ""knitted" "knitted"
"quickstep"" ""quicksteps"" ""quickstepping"" ""quickstepped" "quickstepped"
"interpage"" ""interpages"" ""interpaging"" ""interpaged" "interpaged"
"superscribe"" ""superscribes"" ""superscribing"" ""superscribed" "superscribed"
"connive"" ""connives"" ""conniving"" ""connived" "connived"
"machinegun"" ""machineguns"" ""machineguning"" ""machineguned" "machineguned"
"untread"" ""untreads"" ""untreading"" ""untrod" "untrodden"
"spindle"" ""spindles"" ""spindling"" ""spindled" "spindled"
"symbolize"" ""symbolizes"" ""symbolizing"" ""symbolized" "symbolized"
"stripe"" ""stripes"" ""striping"" ""striped" "striped"
"deforce"" ""deforces"" ""deforcing"" ""deforced" "deforced"
"ogle"" ""ogles"" ""ogling"" ""ogled" "ogled"
"haggle"" ""haggles"" ""haggling"" ""haggled" "haggled"
"goggle"" ""goggles"" ""goggling"" ""goggled" "goggled"
"misplace"" ""misplaces"" ""misplacing"" ""misplaced" "misplaced"
"procreate"" ""procreates"" ""procreating"" ""procreated" "procreated"
"wash"" ""washes"" ""washing"" ""washed" "washed"
"instruct"" ""instructs"" ""instructing"" ""instructed" "instructed"
"declaim"" ""declaims"" ""declaiming"" ""declaimed" "declaimed"
"service"" ""services"" ""servicing"" ""serviced" "serviced"
"replevin"" ""replevins"" ""replevining"" ""replevined" "replevined"
"aircondition"" ""airconditions"" ""airconditioning"" ""airconditioned" "airconditioned"
"traumatize"" ""traumatizes"" ""traumatizing"" ""traumatized" "traumatized"
"rone"" ""rones"" ""roning"" ""roned" "roned"
"stack"" ""stacks"" ""stacking"" ""stacked" "stacked"
"master"" ""masters"" ""mastering"" ""mastered" "mastered"
"underlie"" ""underlies"" ""underlying"" ""underlay" "underlain"
"postulate"" ""postulates"" ""postulating"" ""postulated" "postulated"
"bitter"" ""bitters"" ""bittering"" ""bittered" "bittered"
"listen"" ""listens"" ""listening"" ""listened" "listened"
"abirritate"" ""abirritates"" ""abirritating"" ""abirritated" "abirritated"
"enthrall"" ""enthrals"" ""enthralling"" ""enthralled" "enthralled"
"supercalender"" ""supercalenders"" ""supercalendering"" ""supercalendered" "supercalendered"
"innerve"" ""innerves"" ""innerving"" ""innerved" "innerved"
"emaciate"" ""emaciates"" ""emaciating"" ""emaciated" "emaciated"
"task"" ""tasks"" ""tasking"" ""tasked" "tasked"
"crawl"" ""crawls"" ""crawling"" ""crawled" "crawled"
"white"" ""whites"" ""whiting"" ""whited" "whited"
"trek"" ""treks"" ""trekking"" ""trekked" "trekked"
"outlay"" ""outlays"" ""outlaying"" ""outlaid" "outlaid"
"outlaw"" ""outlaws"" ""outlawing"" ""outlawed" "outlawed"
"tree"" ""trees"" ""treeing"" ""treed" "treed"
"project"" ""projects"" ""projecting"" ""projected" "projected"
"enwind"" ""enwinds"" ""enwinding"" ""enwound" "enwound"
"idle"" ""idles"" ""idling"" ""idled" "idled"
"endure"" ""endures"" ""enduring"" ""endured" "endured"
"halve"" ""halving"" ""halved" "halved"
"acclaim"" ""acclaims"" ""acclaiming"" ""acclaimed" "acclaimed"
"napalm"" ""napalms"" ""napalming"" ""napalmed" "napalmed"
"hug"" ""hugs"" ""hugging"" ""hugged" "hugged"
"urinate"" ""urinates"" ""urinating"" ""urinated" "urinated"
"preponderate"" ""preponderates"" ""preponderating"" ""preponderated" "preponderated"
"kayo"" ""kayos"" ""kayoing"" ""kayoed" "kayoed"
"alkalize"" ""alkalizes"" ""alkalizing"" ""alkalized" "alkalized"
"gripe"" ""gripes"" ""griping"" ""griped" "griped"
"indite"" ""indites"" ""inditing"" ""indited" "indited"
"ambuscade"" ""ambuscades"" ""ambuscading"" ""ambuscaded" "ambuscaded"
"pander"" ""panders"" ""pandering"" ""pandered" "pandered"
"shall"" ""shalls"" ""shalling"" ""shalled" "shalled" "shan't"" """" """ ""
"overscore"" ""overscores"" ""overscoring"" ""overscored" "overscored"
"object"" ""objects"" ""objecting"" ""objected" "objected"
"impropriate"" ""impropriates"" ""impropriating"" ""impropriated" "impropriated"
"simplify"" ""simplifies"" ""simplifying"" ""simplified" "simplified"
"mouth"" ""mouths"" ""mouthing"" ""mouthed" "mouthed"
"addict"" ""addicts"" ""addicting"" ""addicted" "addicted"
"letter"" ""letters"" ""lettering"" ""lettered" "lettered"
"fluster"" ""flusters"" ""flustering"" ""flustered" "flustered"
"shalt"" ""shalts"" ""shalting"" ""shalted" "shalted"
"encipher"" ""enciphers"" ""enciphering"" ""enciphered" "enciphered"
"dummy"" ""dummies"" ""dummying"" ""dummied" "dummied"
"upend"" ""upends"" ""upending"" ""upended" "upended"
"nasalize"" ""nasalizes"" ""nasalizing"" ""nasalized" "nasalized"
"foist"" ""foists"" ""foisting"" ""foisted" "foisted"
"camp"" ""camps"" ""camping"" ""camped" "camped"
"departmentalize"" ""departmentalizes"" ""departmentalizing"" ""departmentalized" "departmentalized"
"nettle"" ""nettles"" ""nettling"" ""nettled" "nettled"
"disaffect"" ""disaffects"" ""disaffecting"" ""disaffected" "disaffected"
"consummate"" ""consummates"" ""consummating"" ""consummated" "consummated"
"screak"" ""screaks"" ""screaking"" ""screaked" "screaked"
"scream"" ""screams"" ""screaming"" ""screamed" "screamed"
"marvel"" ""marvels"" ""marvelling"" ""marvelled" "marvelled"
"mortise"" ""mortises"" ""mortising"" ""mortised" "mortised"
"incorporate"" ""incorporates"" ""incorporating"" ""incorporated" "incorporated"
"bomb"" ""bombs"" ""bombing"" ""bombed" "bombed"
"dicker"" ""dickers"" ""dickering"" ""dickered" "dickered"
"prig"" ""prigs"" ""prigging"" ""prigged" "prigged"
"reschedule"" ""reschedules"" ""rescheduling"" ""rescheduled" "rescheduled"
"concentre"" ""concentres"" ""concentring"" ""concentred" "concentred"
"striate"" ""striates"" ""striating"" ""striated" "striated"
"participate"" ""participates"" ""participating"" ""participated" "participated"
"caper"" ""capers"" ""capering"" ""capered" "capered"
"busy"" ""busies"" ""busying"" ""busied" "busied"
"headline"" ""headlines"" ""headlining"" ""headlined" "headlined"
"faradize"" ""faradizes"" ""faradizing"" ""faradized" "faradized"
"bust"" ""busts"" ""busting"" ""busted" "busted"
"busk"" ""busks"" ""busking"" ""busked" "busked"
"bush"" ""bushes"" ""bushing"" ""bushed" "bushed"
"rick"" ""ricks"" ""ricking"" ""ricked" "ricked"
"mend"" ""mends"" ""mending"" ""mended" "mended"
"rice"" ""rices"" ""ricing"" ""riced" "riced"
"plate"" ""plates"" ""plating"" ""plated" "plated"
"Gallicize"" ""Gallicizes"" ""Gallicizing"" ""Gallicized" "Gallicized"
"remarry"" ""remarries"" ""remarrying"" ""remarried" "remarried"
"preempt"" ""preempts"" ""preempting"" ""preempted" "preempted"
"denounce"" ""denounces"" ""denouncing"" ""denounced" "denounced"
"ceil"" ""ceils"" ""ceiling"" ""ceiled" "ceiled"
"pocket"" ""pockets"" ""pocketing"" ""pocketed" "pocketed"
"euphonize"" ""euphonizes"" ""euphonizing"" ""euphonized" "euphonized"
"cushion"" ""cushions"" ""cushioning"" ""cushioned" "cushioned"
"relish"" ""relishes"" ""relishing"" ""relished" "relished"
"enrobe"" ""enrobes"" ""enrobing"" ""enrobed" "enrobed"
"patch"" ""patches"" ""patching"" ""patched" "patched"
"release"" ""releases"" ""releasing"" ""released" "released"
"urticate"" ""urticates"" ""urticating"" ""urticated" "urticated"
"hasten"" ""hastens"" ""hastening"" ""hastened" "hastened"
"respond"" ""responds"" ""responding"" ""responded" "responded"
"traverse"" ""traverses"" ""traversing"" ""traversed" "traversed"
"fair"" ""fairs"" ""fairing"" ""faired" "faired"
"clew"" ""clews"" ""clewing"" ""clewed" "clewed"
"result"" ""results"" ""resulting"" ""resulted" "resulted"
"clem"" ""clems"" ""clemming"" ""clemmed" "clemmed"
"fail"" ""fails"" ""failing"" ""failed" "failed"
"internationalize"" ""internationalizes"" ""internationalizing"" ""internationalized" "internationalized"
"cockle"" ""cockles"" ""cockling"" ""cockled" "cockled"
"hammer"" ""hammers"" ""hammering"" ""hammered" "hammered"
"best"" ""bests"" ""besting"" ""bested" "bested"
"irk"" ""irks"" ""irking"" ""irked" "irked"
"flagellate"" ""flagellates"" ""flagellating"" ""flagellated" "flagellated"
"scorn"" ""scorns"" ""scorning"" ""scorned" "scorned"
"vociferate"" ""vociferates"" ""vociferating"" ""vociferated" "vociferated"
"pirate"" ""pirates"" ""pirating"" ""pirated" "pirated"
"hopple"" ""hopples"" ""hoppling"" ""hoppled" "hoppled"
"wage"" ""wages"" ""waging"" ""waged" "waged"
"pigstick"" ""pigsticks"" ""pigsticking"" ""pigsticked" "pigsticked"
"extend"" ""extends"" ""extending"" ""extended" "extended"
"quadruplicate"" ""quadruplicates"" ""quadruplicating"" ""quadruplicated" "quadruplicated"
"personalize"" ""personalizes"" ""personalizing"" ""personalized" "personalized"
"reconstitute"" ""reconstitutes"" ""reconstituting"" ""reconstituted" "reconstituted"
"wheelbarrow"" ""wheelbarrows"" ""wheelbarrowing"" ""wheelbarrowed" "wheelbarrowed"
"downgrade"" ""downgrades"" ""downgrading"" ""downgraded" "downgraded"
"wherrit"" ""wherrits"" ""wherriting"" ""wherrited" "wherrited"
"pity"" ""pities"" ""pitying"" ""pitied" "pitied"
"veer"" ""veers"" ""veering"" ""veered" "veered"
"disdain"" ""disdains"" ""disdaining"" ""disdained" "disdained"
"incense"" ""incenses"" ""incensing"" ""incensed" "incensed"
"pith"" ""piths"" ""pithing"" ""pithed" "pithed"
"sublime"" ""sublimes"" ""subliming"" ""sublimed" "sublimed"
"argue"" ""argues"" ""arguing"" ""argued" "argued"
"tinge"" ""tinges"" ""tingeing"" ""tinged" "tinged"
"schmooze"" ""schmoozes"" ""schmoozing"" ""schmoozed" "schmoozed"
"eradicate"" ""eradicates"" ""eradicating"" ""eradicated" "eradicated"
"rehash"" ""rehashes"" ""rehashing"" ""rehashed" "rehashed"
"vail"" ""vails"" ""vailing"" ""vailed" "vailed"
"extravasate"" ""extravasates"" ""extravasating"" ""extravasated" "extravasated"
"agglomerate"" ""agglomerates"" ""agglomerating"" ""agglomerated" "agglomerated"
"factorize"" ""factorizes"" ""factorizing"" ""factorized" "factorized"
"escalade"" ""escalades"" ""escalading"" ""escaladed" "escaladed"
"vitrify"" ""vitrifies"" ""vitrifying"" ""vitrified" "vitrified"
"penalize"" ""penalizes"" ""penalizing"" ""penalized" "penalized"
"vellicate"" ""vellicates"" ""vellicating"" ""vellicated" "vellicated"
"bewilder"" ""bewilders"" ""bewildering"" ""bewildered" "bewildered"
"parley"" ""parleys"" ""parleying"" ""parleyed" "parleyed"
"chrome"" ""chromes"" ""chroming"" ""chromed" "chromed"
"slay"" ""slays"" ""slaying"" ""slew" "slain"
"subside"" ""subsides"" ""subsiding"" ""subsided" "subsided"
"advert"" ""adverts"" ""adverting"" ""adverted" "adverted"
"privilege"" ""privileges"" ""privileging"" ""privileged" "privileged"
"fry"" ""fries"" ""frying"" ""fried" "fried"
"mothball"" ""mothballs"" ""mothballing"" ""mothballed" "mothballed"
"counterattack"" ""counterattacks"" ""counterattacking"" ""counterattacked" "counterattacked"
"dry"" ""dries"" ""drying"" ""dried" "dried"
"retrospect"" ""retrospects"" ""retrospecting"" ""retrospected" "retrospected"
"spit"" ""spits"" ""spitting"" ""spit" "spit"
"intermarry"" ""intermarries"" ""intermarrying"" ""intermarried" "intermarried"
"wish"" ""wishes"" ""wishing"" ""wished" "wished"
"snap"" ""snaps"" ""snapping"" ""snapped" "snapped"
"joust"" ""jousts"" ""jousting"" ""jousted" "jousted"
"lift"" ""lifts"" ""lifting"" ""lifted" "lifted"
"incommode"" ""incommodes"" ""incommoding"" ""incommoded" "incommoded"
"toboggan"" ""toboggans"" ""tobogganing"" ""tobogganed" "tobogganed"
"dote"" ""dotes"" ""doting"" ""doted" "doted"
"spin"" ""spins"" ""spinning"" ""spun" "spun"
"excorciate"" ""excorciates"" ""excorciating"" ""excorciated" "excorciated"
"chill"" ""chills"" ""chilling"" ""chilled" "chilled"
"iodize"" ""iodizes"" ""iodizing"" ""iodized" "iodized"
"dissect"" ""dissects"" ""dissecting"" ""dissected" "dissected"
"overweigh"" ""overweighs"" ""overweighing"" ""overweighed" "overweighed"
"employ"" ""employs"" ""employing"" ""employed" "employed"
"prostrate"" ""prostrates"" ""prostrating"" ""prostrated" "prostrated"
"bin"" ""bins"" ""binning"" ""binned" "binned"
"phosphoresce"" ""phosphoresces"" ""phosphorescing"" ""phosphoresced" "phosphoresced"
"characterize"" ""characterizes"" ""characterizing"" ""characterized" "characterized"
"elicit"" ""elicits"" ""eliciting"" ""elicited" "elicited"
"transfuse"" ""transfuses"" ""transfusing"" ""transfused" "transfused"
"hone"" ""hones"" ""honing"" ""honed" "honed"
"credit"" ""credits"" ""crediting"" ""credited" "credited"
"remand"" ""remands"" ""remanding"" ""remanded" "remanded"
"decant"" ""decants"" ""decanting"" ""decanted" "decanted"
"split"" ""splits"" ""splitting"" ""split" "split"
"heathenize"" ""heathenizes"" ""heathenizing"" ""heathenized" "heathenized"
"personify"" ""personifies"" ""personifying"" ""personified" "personified"
"pipette"" ""pipettes"" ""pipetting"" ""pipetted" "pipetted"
"refit"" ""refits"" ""refitting"" ""refitted" "refitted"
"misdoubt"" ""misdoubts"" ""misdoubting"" ""misdoubted" "misdoubted"
"titivate"" ""titivates"" ""titivating"" ""titivated" "titivated"
"supper"" ""suppers"" ""suppering"" ""suppered" "suppered"
"tope"" ""topes"" ""toping"" ""toped" "toped"
"tune"" ""tunes"" ""tuning"" ""tuned" "tuned"
"furlough"" ""furloughs"" ""furloughing"" ""furloughed" "furloughed"
"jargonize"" ""jargonizes"" ""jargonizing"" ""jargonized" "jargonized"
"cannibalize"" ""cannibalizes"" ""cannibalizing"" ""cannibalized" "cannibalized"
"unhook"" ""unhooks"" ""unhooking"" ""unhooked" "unhooked"
"subpoena"" ""subpoenas"" ""subpoenaing"" ""subpoenaed" "subpoenaed"
"abound"" ""abounds"" ""abounding"" ""abounded" "abounded"
"bellow"" ""bellows"" ""bellowing"" ""bellowed" "bellowed"
"distribute"" ""distributes"" ""distributing"" ""distributed" "distributed"
"beset"" ""besets"" ""besetting"" ""beset" "beset"
"disguise"" ""disguises"" ""disguising"" ""disguised" "disguised"
"prognosticate"" ""prognosticates"" ""prognosticating"" ""prognosticated" "prognosticated"
"plight"" ""plights"" ""plighting"" ""plighted" "plighted"
"brandish"" ""brandishes"" ""brandishing"" ""brandished" "brandished"
"lasso"" ""lassos"" ""lassoing"" ""lassoed" "lassoed"
"indue"" ""indues"" ""induing"" ""indued" "indued"
"ham"" ""hams"" ""hamming"" ""hammed" "hammed"
"aquaplane"" ""aquaplanes"" ""aquaplaning"" ""aquaplaned" "aquaplaned"
"ease"" ""eases"" ""easing"" ""eased" "eased"
"hay"" ""hays"" ""haying"" ""hayed" "hayed"
"falter"" ""falters"" ""faltering"" ""faltered" "faltered"
"hat"" ""hats"" ""hatting"" ""hatted" "hatted"
"haw"" ""haws"" ""hawing"" ""hawed" "hawed"
"footle"" ""footles"" ""footling"" ""footled" "footled"
"testfire"" ""testfires"" ""testfiring"" ""testfired" "testfired"
"collectivize"" ""collectivizes"" ""collectivizing"" ""collectivized" "collectivized"
"birth"" ""births"" ""birthing"" ""birthed" "birthed"
"roister"" ""roisters"" ""roistering"" ""roistered" "roistered"
"shadow"" ""shadows"" ""shadowing"" ""shadowed" "shadowed"
"summons"" ""summonses"" ""summonsing"" ""summonsed" "summonsed"
"desire"" ""desires"" ""desiring"" ""desired" "desired"
"seek"" ""seeks"" ""seeking"" ""sought" "sought"
"disaccustom"" ""disaccustoms"" ""disaccustoming"" ""disaccustomed" "disaccustomed"
"altercate"" ""altercates"" ""altercating"" ""altercated" "altercated"
"remind"" ""reminds"" ""reminding"" ""reminded" "reminded"
"sectarianize"" ""sectarianizes"" ""sectarianizing"" ""sectarianized" "sectarianized"
"prologue"" ""prologues"" ""prologuing"" ""prologued" "prologued"
"right"" ""rights"" ""righting"" ""righted" "righted"
"crowd"" ""crowds"" ""crowding"" ""crowded" "crowded"
"people"" ""peoples"" ""peopling"" ""peopled" "peopled"
"scathe"" ""scathes"" ""scathing"" ""scathed" "scathed"
"crown"" ""crowns"" ""crowning"" ""crowned" "crowned"
"outgeneral"" ""outgenerals"" ""outgeneralling"" ""outgeneralled" "outgeneralled"
"mishit"" ""mishits"" ""mishitting"" ""mishit" "mishit"
"desensitize"" ""desensitizes"" ""desensitizing"" ""desensitized" "desensitized"
"demineralize"" ""demineralizes"" ""demineralizing"" ""demineralized" "demineralized"
"prick"" ""pricks"" ""pricking"" ""pricked" "pricked"
"animate"" ""animates"" ""animating"" ""animated" "animated"
"creep"" ""creeps"" ""creeping"" ""crept" "crept"
"chorus"" ""choruses"" ""chorusing"" ""chorused" "chorused"
"blackleg"" ""blacklegs"" ""blacklegging"" ""blacklegged" "blacklegged"
"rehearse"" ""rehearses"" ""rehearsing"" ""rehearsed" "rehearsed"
"fox"" ""foxes"" ""foxing"" ""foxed" "foxed"
"subclass"" ""subclasses"" ""subclassing"" ""subclassed" "subclassed"
"fog"" ""fogs"" ""fogging"" ""fogged" "fogged"
"fob"" ""fobs"" ""fobbing"" ""fobbed" "fobbed"
"germinate"" ""germinates"" ""germinating"" ""germinated" "germinated"
"preside"" ""presides"" ""presiding"" ""presided" "presided"
"collet"" ""collets"" ""colleting"" ""colleted" "colleted"
"trampoline"" ""trampolines"" ""trampolining"" ""trampolined" "trampolined"
"regorge"" ""regorges"" ""regorging"" ""regorged" "regorged"
"yoke"" ""yokes"" ""yoking"" ""yoked" "yoked"
"digitalize"" ""digitalizes"" ""digitalizing"" ""digitalized" "digitalized"
"intenerate"" ""intenerates"" ""intenerating"" ""intenerated" "intenerated"
"slither"" ""slithers"" ""slithering"" ""slithered" "slithered"
"lackey"" ""lackeys"" ""lackeying"" ""lackeyed" "lackeyed"
"autotomize"" ""autotomizes"" ""autotomizing"" ""autotomized" "autotomized"
"recollect"" ""recollects"" ""recollecting"" ""recollected" "recollected"
"reticulate"" ""reticulates"" ""reticulating"" ""reticulated" "reticulated"
"Platonize"" ""Platonizes"" ""Platonizing"" ""Platonized" "Platonized"
"meddle"" ""meddles"" ""meddling"" ""meddled" "meddled"
"sob"" ""sobs"" ""sobbing"" ""sobbed" "sobbed"
"overshadow"" ""overshadows"" ""overshadowing"" ""overshadowed" "overshadowed"
"honeymoon"" ""honeymoons"" ""honeymooning"" ""honeymooned" "honeymooned"
"overgrow"" ""overgrows"" ""overgrowing"" ""overgrew" "overgrown"
"administer"" ""administers"" ""administering"" ""administered" "administered"
"multiply"" ""multiplies"" ""multiplying"" ""multiplied" "multiplied"
"inhume"" ""inhumes"" ""inhuming"" ""inhumed" "inhumed"
"swelter"" ""swelters"" ""sweltering"" ""sweltered" "sweltered"
"sow"" ""sows"" ""sowing"" ""sowed" "sown"
"mambo"" ""mambos"" ""mamboing"" ""mamboed" "mamboed"
"resile"" ""resiles"" ""resiling"" ""resiled" "resiled"
"nid-nod"" ""nid-nods"" ""nid-nodding"" ""nid-nodded" "nid-nodded"
"suffice"" ""suffices"" ""sufficing"" ""sufficed" "sufficed"
"decussate"" ""decussates"" ""decussating"" ""decussated" "decussated"
"tame"" ""tames"" ""taming"" ""tamed" "tamed"
"avail"" ""avails"" ""availing"" ""availed" "availed"
"furcate"" ""furcates"" ""furcating"" ""furcated" "furcated"
"tamp"" ""tamps"" ""tamping"" ""tamped" "tamped"
"overhand"" ""overhands"" ""overhanding"" ""overhanded" "overhanded"
"overhang"" ""overhangs"" ""overhanging"" ""overhung" "overhung"
"subtend"" ""subtends"" ""subtending"" ""subtended" "subtended"
"bowse"" ""bowses"" ""bowsing"" ""bowsed" "bowsed"
"offer"" ""offers"" ""offering"" ""offered" "offered"
"unroot"" ""unroots"" ""unrooting"" ""unrooted" "unrooted"
"straggle"" ""straggles"" ""straggling"" ""straggled" "straggled"
"safeguard"" ""safeguards"" ""safeguarding"" ""safeguarded" "safeguarded"
"duel"" ""duels"" ""duelling"" ""duelled" "duelled"
"misinform"" ""misinforms"" ""misinforming"" ""misinformed" "misinformed"
"transliterate"" ""transliterates"" ""transliterating"" ""transliterated" "transliterated"
"pontificate"" ""pontificates"" ""pontificating"" ""pontificated" "pontificated"
"communize"" ""communizes"" ""communizing"" ""communized" "communized"
"discountenance"" ""discountenances"" ""discountenancing"" ""discountenanced" "discountenanced"
"disgrace"" ""disgraces"" ""disgracing"" ""disgraced" "disgraced"
"sight"" ""sights"" ""sighting"" ""sighted" "sighted"
"suborn"" ""suborns"" ""suborning"" ""suborned" "suborned"
"unnerve"" ""unnerves"" ""unnerving"" ""unnerved" "unnerved"
"grabble"" ""grabbles"" ""grabbling"" ""grabbled" "grabbled"
"crumble"" ""crumbles"" ""crumbling"" ""crumbled" "crumbled"
"soothe"" ""soothes"" ""soothing"" ""soothed" "soothed"
"exist"" ""exists"" ""existing"" ""existed" "existed"
"splotch"" ""splotches"" ""splotching"" ""splotched" "splotched"
"blackmarket"" ""blackmarkets"" ""blackmarketing"" ""blackmarketed" "blackmarketed"
"leer"" ""leers"" ""leering"" ""leered" "leered"
"floor"" ""floors"" ""flooring"" ""floored" "floored"
"canonize"" ""canonizes"" ""canonizing"" ""canonized" "canonized"
"relax"" ""relaxes"" ""relaxing"" ""relaxed" "relaxed"
"flood"" ""floods"" ""flooding"" ""flooded" "flooded"
"desecrate"" ""desecrates"" ""desecrating"" ""desecrated" "desecrated"
"plasmolyze"" ""plasmolyzes"" ""plasmolyzing"" ""plasmolyzed" "plasmolyzed"
"snick"" ""snicks"" ""snicking"" ""snicked" "snicked"
"smell"" ""smells"" ""smelling"" ""smelt" "smelled"
"circumcise"" ""circumcises"" ""circumcising"" ""circumcised" "circumcised"
"valuate"" ""valuates"" ""valuating"" ""valuated" "valuated"
"asterisk"" ""asterisks"" ""asterisking"" ""asterisked" "asterisked"
"superadd"" ""superadds"" ""superadding"" ""superadded" "superadded"
"substract"" ""substracts"" ""substracting"" ""substracted" "substracted"
"foxhunt"" ""foxhunts"" ""foxhunting"" ""foxhunted" "foxhunted"
"objectify"" ""objectifies"" ""objectifying"" ""objectified" "objectified"
"snooze"" ""snoozes"" ""snoozing"" ""snoozed" "snoozed"
"intrust"" ""intrusts"" ""intrusting"" ""intrusted" "intrusted"
"hurt"" ""hurts"" ""hurting"" ""hurt" "hurt"
"warn"" ""warns"" ""warning"" ""warned" "warned"
"diadem"" ""diadems"" ""diademing"" ""diademed" "diademed"
"time"" ""times"" ""timing"" ""timed" "timed"
"push"" ""pushes"" ""pushing"" ""pushed" "pushed"
"frenzy"" ""frenzies"" ""frenzying"" ""frenzied" "frenzied"
"gown"" ""gowns"" ""gowning"" ""gowned" "gowned"
"moither"" ""moithers"" ""moithering"" ""moithered" "moithered"
"chain"" ""chains"" ""chaining"" ""chained" "chained"
"interspace"" ""interspaces"" ""interspacing"" ""interspaced" "interspaced"
"ruddle"" ""ruddles"" ""ruddling"" ""ruddled" "ruddled"
"avalanche"" ""avalanches"" ""avalanching"" ""avalanched" "avalanched"
"peninsulate"" ""peninsulates"" ""peninsulating"" ""peninsulated" "peninsulated"
"convoy"" ""convoys"" ""convoying"" ""convoyed" "convoyed"
"chair"" ""chairs"" ""chairing"" ""chaired" "chaired"
"retrofit"" ""retrofits"" ""retrofitting"" ""retrofitted" "retrofitted"
"vet"" ""vets"" ""vetting"" ""vetted" "vetted"
"freelance"" ""freelances"" ""freelancing"" ""freelanced" "freelanced"
"vex"" ""vexes"" ""vexing"" ""vexed" "vexed"
"crater"" ""craters"" ""cratering"" ""cratered" "cratered"
"syllogize"" ""syllogizes"" ""syllogizing"" ""syllogized" "syllogized"
"splutter"" ""splutters"" ""spluttering"" ""spluttered" "spluttered"
"persevere"" ""perseveres"" ""persevering"" ""persevered" "persevered"
"ingather"" ""ingathers"" ""ingathering"" ""ingathered" "ingathered"
"jerk"" ""jerks"" ""jerking"" ""jerked" "jerked"
"argufy"" ""argufies"" ""argufying"" ""argufied" "argufied"
"refinance"" ""refinances"" ""refinancing"" ""refinanced" "refinanced"
"embark"" ""embarks"" ""embarking"" ""embarked" "embarked"
"rook"" ""rooks"" ""rooking"" ""rooked" "rooked"
"mourn"" ""mourns"" ""mourning"" ""mourned" "mourned"
"bustle"" ""bustles"" ""bustling"" ""bustled" "bustled"
"exact"" ""exacts"" ""exacting"" ""exacted" "exacted"
"overstock"" ""overstocks"" ""overstocking"" ""overstocked" "overstocked"
"giftwrap"" ""giftwraps"" ""giftwrapping"" ""giftwrapped" "giftwrapped"
"disembody"" ""disembodies"" ""disembodying"" ""disembodied" "disembodied"
"re-cede"" ""re-cedes"" ""re-ceding"" ""receded" "re-ceded"
"tricycle"" ""tricycles"" ""tricycling"" ""tricycled" "tricycled"
"tear"" ""tears"" ""tearing"" ""tore" "torn"
"folk-dance"" ""folk-dances"" ""folk-dancing"" ""folk-danced" "folk-danced"
"overarch"" ""overarches"" ""overarching"" ""overarched" "overarched"
"larn"" ""larns"" ""larning"" ""larned" "larned"
"leave"" ""leaves"" ""leaving"" ""leaved" "leaved"
"settle"" ""settles"" ""settling"" ""settled" "settled"
"stockade"" ""stockades"" ""stockading"" ""stockaded" "stockaded"
"insufflate"" ""insufflates"" ""insufflating"" ""insufflated" "insufflated"
"skewer"" ""skewers"" ""skewering"" ""skewered" "skewered"
"gasify"" ""gasifies"" ""gasifying"" ""gasified" "gasified"
"re-join"" ""re-joins"" ""re-joining"" ""rejoined" "re-joined"
"torrify"" ""torrifies"" ""torrifying"" ""torrified" "torrified"
"sigh"" ""sighs"" ""sighing"" ""sighed" "sighed"
"sign"" ""signs"" ""signing"" ""signed" "signed"
"Islamize"" ""Islamizes"" ""Islamizing"" ""Islamized" "Islamized"
"educate"" ""educates"" ""educating"" ""educated" "educated"
"sequestrate"" ""sequestrates"" ""sequestrating"" ""sequestrated" "sequestrated"
"convulse"" ""convulses"" ""convulsing"" ""convulsed" "convulsed"
"melt"" ""melts"" ""melting"" ""melted" "molten"
"wriggle"" ""wriggles"" ""wriggling"" ""wriggled" "wriggled"
"jog-trot"" ""jog-trots"" ""jog-trotting"" ""jog-trotted" "jog-trotted"
"boost"" ""boosts"" ""boosting"" ""boosted" "boosted"
"accoutre"" ""accoutres"" ""accoutring"" ""accoutred" "accoutred"
"osmose"" ""osmoses"" ""osmosing"" ""osmosed" "osmosed"
"abscond"" ""absconds"" ""absconding"" ""absconded" "absconded"
"honour"" ""honours"" ""honouring"" ""honoured" "honoured"
"contemplate"" ""contemplates"" ""contemplating"" ""contemplated" "contemplated"
"snack"" ""snacks"" ""snacking"" ""snacked" "snacked"
"splice"" ""splices"" ""splicing"" ""spliced" "spliced"
"address"" ""addresses"" ""addressing"" ""addrest" "addrest"
"sublease"" ""subleases"" ""subleasing"" ""subleased" "subleased"
"enroll"" ""enrols"" ""enrolling"" ""enrolled" "enrolled"
"halogenate"" ""halogenates"" ""halogenating"" ""halogenated" "halogenated"
"fledge"" ""fledges"" ""fledging"" ""fledged" "fledged"
"root"" ""roots"" ""rooting"" ""rooted" "rooted"
"queue"" ""queues"" ""queueing"" ""queueed" "queueed"
"coextend"" ""coextends"" ""coextending"" ""coextended" "coextended"
"solarize"" ""solarizes"" ""solarizing"" ""solarized" "solarized"
"roughdry"" ""roughdries"" ""roughdrying"" ""roughdried" "roughdried"
"etherify"" ""etherifies"" ""etherifying"" ""etherified" "etherified"
"respite"" ""respites"" ""respiting"" ""respited" "respited"
"love"" ""loves"" ""loving"" ""loved" "loved"
"proportion"" ""proportions"" ""proportioning"" ""proportioned" "proportioned"
"prefer"" ""prefers"" ""preferring"" ""preferred" "preferred"
"bloody"" ""bloodies"" ""bloodying"" ""bloodied" "bloodied"
"abash"" ""abashes"" ""abashing"" ""abashed" "abashed"
"fake"" ""fakes"" ""faking"" ""faked" "faked"
"encyst"" ""encysts"" ""encysting"" ""encysted" "encysted"
"unlash"" ""unlashes"" ""unlashing"" ""unlashed" "unlashed"
"abase"" ""abases"" ""abasing"" ""abased" "abased"
"engrail"" ""engrails"" ""engrailing"" ""engrailed" "engrailed"
"dangle"" ""dangles"" ""dangling"" ""dangled" "dangled"
"crash-dive"" ""crash-dives'"" ""crash-diving"" ""crash-dived" "crash-dived"
"annunciate"" ""annunciates"" ""annunciating"" ""annunciated" "annunciated"
"afford"" ""affords"" ""affording"" ""afforded" "afforded"
"reprise"" ""reprises"" ""reprising"" ""reprised" "reprised"
"refrain"" ""refrains"" ""refraining"" ""refrained" "refrained"
"degrade"" ""degrades"" ""degrading"" ""degraded" "degraded"
"involve"" ""involves"" ""involving"" ""involved" "involved"
"embower"" ""embowers"" ""embowering"" ""embowered" "embowered"
"pretend"" ""pretends"" ""pretending"" ""pretended" "pretended"
"strain"" ""strains"" ""straining"" ""strained" "strained"
"dissimilate"" ""dissimilates"" ""dissimilating"" ""dissimilated" "dissimilated"
"dispossess"" ""dispossesses"" ""dispossessing"" ""dispossessed" "dispossessed"
"circumambulate"" ""circumambulates"" ""circumambulating"" ""circumambulated" "circumambulated"
"reforest"" ""reforests"" ""reforesting"" ""reforested" "reforested"
"deschool"" ""deschools"" ""deschooling"" ""deschooled" "deschooled"
"parachute"" ""parachutes"" ""parachuting"" ""parachuted" "parachuted"
"reestablish"" ""reestablishes"" ""reestablishing"" ""reestablished" "reestablished"
"evite"" ""evites"" ""eviting"" ""evited" "evited"
"emotionalize"" ""emotionalizes"" ""emotionalizing"" ""emotionalized" "emotionalized"
"disprize"" ""disprizes"" ""disprizing"" ""disprized" "disprized"
"winter"" ""winters"" ""wintering"" ""wintered" "wintered"
"ambush"" ""ambushes"" ""ambushing"" ""ambushed" "ambushed"
"crossrefer"" ""crossrefers"" ""crossrefering"" ""crossrefered" "crossrefered"
"splodge"" ""splodges"" ""splodging"" ""splodged" "splodged"
"cavil"" ""cavils"" ""cavilling"" ""cavilled" "cavilled"
"overissue"" ""overissues"" ""overissuing"" ""overissued" "overissued"
"spot"" ""spots"" ""spotting"" ""spotted" "spotcheck"
"rehabilitate"" ""rehabilitates"" ""rehabilitating"" ""rehabilitated" "rehabilitated"
"dropkick"" ""dropkicks"" ""dropkicking"" ""dropkicked" "dropkicked"
"outthink"" ""outthinks"" ""outthinking"" ""outthought" "outthought"
"date"" ""dates"" ""dating"" ""dated" "dated"
"suck"" ""sucks"" ""sucking"" ""sucked" "sucked"
"journalize"" ""journalizes"" ""journalizing"" ""journalized" "journalized"
"stress"" ""stresses"" ""stressing"" ""stressed" "stressed"
"correlate"" ""correlates"" ""correlating"" ""correlated" "correlated"
"truck"" ""trucks"" ""trucking"" ""trucked" "trucked"
"skirmish"" ""skirmishes"" ""skirmishing"" ""skirmished" "skirmished"
"feature"" ""features"" ""featuring"" ""featured" "featured"
"course"" ""courses"" ""coursing"" ""coursed" "coursed"
"yearn"" ""yearns"" ""yearning"" ""yearned" "yearned"
"bastardize"" ""bastardizes"" ""bastardizing"" ""bastardized" "bastardized"
"horrify"" ""horrifies"" ""horrifying"" ""horrified" "horrified"
"mishear"" ""mishears"" ""mishearing"" ""misheard" "misheard"
"bulldoze"" ""bulldozes"" ""bulldozing"" ""bulldozed" "bulldozed"
"jig"" ""jigs"" ""jigging"" ""jigged" "jigged"
"derive"" ""derives"" ""deriving"" ""derived" "derived"
"disconnect"" ""disconnects"" ""disconnecting"" ""disconnected" "disconnected"
"solace"" ""solaces"" ""solacing"" ""solaced" "solaced"
"stroll"" ""strolls"" ""strolling"" ""strolled" "strolled"
"thump"" ""thumps"" ""thumping"" ""thumped" "thumped"
"petition"" ""petitions"" ""petitioning"" ""petitioned" "petitioned"
"apron"" ""aprons"" ""aproning"" ""aproned" "aproned"
"smarten"" ""smartens"" ""smartening"" ""smartened" "smartened"
"babysit"" ""babysits"" ""babysitting"" ""babysat" "babysat"
"bedevil"" ""bedevils"" ""bedevilling"" ""bedevilled" "bedevilled"
"sublimate"" ""sublimates"" ""sublimating"" ""sublimated" "sublimated"
"hiccough"" ""hiccoughs"" ""hiccoughing"" ""hiccoughed" "hiccoughed"
"plunk"" ""plunks"" ""plunking"" ""plunked" "plunked"
"revert"" ""reverts"" ""reverting"" ""reverted" "reverted"
"englut"" ""engluts"" ""englutting"" ""englutted" "englutted"
"amnesty"" ""amnesties"" ""amnestying"" ""amnestied" "amnestied"
"quarter"" ""quarters"" ""quartering"" ""quartered" "quartered"
"revere"" ""reveres"" ""revering"" ""revered" "revered"
"turtle"" ""turtles"" ""turtling"" ""turtled" "turtled"
"concertina"" ""concertinas"" ""concertinaing"" ""concertinaed" "concertinaed"
"square"" ""squares"" ""squaring"" ""squared" "squared"
"retrieve"" ""retrieves"" ""retrieving"" ""retrieved" "retrieved"
"edify"" ""edifies"" ""edifying"" ""edified" "edified"
"receipt"" ""receipts"" ""receipting"" ""receipted" "receipted"
"fireproof"" ""fireproofs"" ""fireproofing"" ""fireproofed" "fireproofed"
"asseverate"" ""asseverates"" ""asseverating"" ""asseverated" "asseverated"
"inhere"" ""inheres"" ""inhering"" ""inhered" "inhered"
"beetle"" ""beetles"" ""beetling"" ""beetled" "beetled"
"propitiate"" ""propitiates"" ""propitiating"" ""propitiated" "propitiated"
"troll"" ""trolls"" ""trolling"" ""trolled" "trolled"
"jounce"" ""jounces"" ""jouncing"" ""jounced" "jounced"
"besprinkle"" ""besprinkles"" ""besprinkling"" ""besprinkled" "besprinkled"
"abide"" ""abides"" ""abiding"" ""abode" "abode"
"spur"" ""spurs"" ""spurring"" ""spurred" "spurred"
"intermix"" ""intermixes"" ""intermixing"" ""intermixed" "intermixed"
"intermit"" ""intermits"" ""intermitting"" ""intermitted" "intermitted"
"hibernate"" ""hibernates"" ""hibernating"" ""hibernated" "hibernated"
"dumfound"" ""dumfounds"" ""dumfounding"" ""dumfounded" "dumfounded"
"Braille"" ""Brailles"" ""Brailling"" ""Brailled" "Brailled"
"envelop"" ""envelops"" ""enveloping"" ""enveloped" "enveloped"
"reshuffle"" ""reshuffles"" ""reshuffling"" ""reshuffled" "reshuffled"
"disrespect"" ""disrespects"" ""disrespecting"" ""disrespected" "disrespected"
"snooker"" ""snookers"" ""snookering"" ""snookered" "snookered"
"jockey"" ""jockeys"" ""jockeying"" ""jockeyed" "jockeyed"
"mime"" ""mimes"" ""miming"" ""mimed" "mimed"
"remainder"" ""remainders"" ""remaindering"" ""remaindered" "remaindered"
"dog-paddle"" ""dog-paddles"" ""dog-paddling"" ""dog-paddled" "dog-paddled"
"gaff"" ""gaffs"" ""gaffing"" ""gaffed" "gaffed"
"bluepencil"" ""bluepencils"" ""bluepenciling"" ""bluepenciled" "bluepenciled"
"chevy"" ""chevies"" ""chevying"" ""chevied" "chevied"
"initiate"" ""initiates"" ""initiating"" ""initiated" "initiated"
"enkindle"" ""enkindles"" ""enkindling"" ""enkindled" "enkindled"
"punt"" ""punts"" ""punting"" ""punted" "punted"
"calque"" ""calques"" ""calquing"" ""calqued" "calqued"
"solubilize"" ""solubilizes"" ""solubilizing"" ""solubilized" "solubilized"
"neglect"" ""neglects"" ""neglecting"" ""neglected" "neglected"
"sock"" ""socks"" ""socking"" ""socked" "socked"
"unloosen"" ""unlooses"" ""unloosing"" ""unloosened" "unloosened"
"potter"" ""potters"" ""pottering"" ""pottered" "pottered"
"reopen"" ""reopens"" ""reopening"" ""reopened" "reopened"
"sjambok"" ""sjamboks"" ""sjamboking"" ""sjamboked" "sjamboked"
"submit"" ""submits"" ""submitting"" ""submitted" "submitted"
"croup"" ""croups"" ""crouping"" ""crouped" "crouped"
"open"" ""opens"" ""opening"" ""opened" "opened"
"summarize"" ""summarizes"" ""summarizing"" ""summarized" "summarized"
"languish"" ""languishes"" ""languishing"" ""languished" "languished"
"bite"" ""bites"" ""biting"" ""bited" "bitten"
"dandify"" ""dandifies"" ""dandifying"" ""dandified" "dandified"
"indicate"" ""indicates"" ""indicating"" ""indicated" "indicated"
"shiver"" ""shivers"" ""shivering"" ""shivered" "shivered"
"draft"" ""drafting"" ""drafted" "drafted"
"dissipate"" ""dissipates"" ""dissipating"" ""dissipated" "dissipated"
"convene"" ""convenes"" ""convening"" ""convened" "convened"
"cite"" ""cites"" ""citing"" ""cited" "cited"
"unmoor"" ""unmoors"" ""unmooring"" ""unmoored" "unmoored"
"demonetize"" ""demonetizes"" ""demonetizing"" ""demonetized" "demonetized"
"blazon"" ""blazons"" ""blazoning"" ""blazoned" "blazoned"
"bump-start"" ""bump-starts"" ""bump-starting"" ""bump-started" "bump-started"
"re-act"" ""re-acts"" ""re-acting"" ""reacted" "re-acted"
"snatch"" ""snatches"" ""snatching"" ""snatched" "snatched"
"indwell"" ""indwells"" ""indwelling"" ""indwelt" "indwelt"
"poultice"" ""poultices"" ""poulticing"" ""poulticed" "poulticed"
"carbonize"" ""carbonizes"" ""carbonizing"" ""carbonized" "carbonized"
"translate"" ""translates"" ""translating"" ""translated" "translated"
"cower"" ""cowers"" ""cowering"" ""cowered" "cowered"
"stammer"" ""stammers"" ""stammering"" ""stammered" "stammered"
"winkle"" ""winkles"" ""winkling"" ""winkled" "winkled"
"Africanize"" ""Africanizes"" ""Africanizing"" ""Africanized" "Africanized"
"prospect"" ""prospects"" ""prospecting"" ""prospected" "prospected"
"smutch"" ""smutches"" ""smutching"" ""smutched" "smutched"
"sag"" ""sags"" ""sagging"" ""sagged" "sagged"
"necrose"" ""necroses"" ""necrosing"" ""necrosed" "necrosed"
"say"" ""says"" ""saying"" ""said" "said"
"sap"" ""saps"" ""sapping"" ""sapped" "sapped"
"saw"" ""saws"" ""sawing"" ""sawed" "sawn"
"perplex"" ""perplexes"" ""perplexing"" ""perplexed" "perplexed"
"aspirate"" ""aspirates"" ""aspirating"" ""aspirated" "aspirated"
"knead"" ""kneads"" ""kneading"" ""kneaded" "kneaded"
"retroact"" ""retroacts"" ""retroacting"" ""retroacted" "retroacted"
"note"" ""notes"" ""noting"" ""noted" "noted"
"unlearn"" ""unlearns"" ""unlearning"" ""unlearnt" "unlearnt"
"maintain"" ""maintains"" ""maintaining"" ""maintained" "maintained"
"take"" ""takes"" ""taking"" ""took" "taken"
"destroy"" ""destroys"" ""destroying"" ""destroyed" "destroyed"
"coincide"" ""coincides"" ""coinciding"" ""coincided" "coincided"
"unfix"" ""unfixes"" ""unfixing"" ""unfixed" "unfixed"
"buffer"" ""buffers"" ""buffering"" ""buffered" "buffered"
"slump"" ""slumps"" ""slumping"" ""slumped" "slumped"
"compress"" ""compresses"" ""compressing"" ""compressed" "compressed"
"buffet"" ""buffets"" ""buffeting"" ""buffeted" "buffeted"
"abut"" ""abuts"" ""abutting"" ""abutted" "abutted"
"crochet"" ""crochets"" ""crocheting"" ""crocheted" "crocheted"
"putput"" ""putputs"" ""putputting"" ""putputted" "putputted"
"hot-press"" ""hot-presses"" ""hot-pressing"" ""hot-pressed" "hot-pressed"
"chomp"" ""chomps"" ""chomping"" ""chomped" "chomped"
"illuse"" ""illuses"" ""illusing"" ""illused" "illused"
"operate"" ""operates"" ""operating"" ""operated" "operated"
"enamel"" ""enamels"" ""enamelling"" ""enamelled" "enamelled"
"energize"" ""energizes"" ""energizing"" ""energized" "energized"
"average"" ""averages"" ""averaging"" ""averaged" "averaged"
"drive"" ""drives"" ""driving"" ""drove" "driven"
"wind"" ""winds"" ""winding"" ""wound" "wound"
"axe"" ""axes"" ""axing"" ""axed" "axed"
"salt"" ""salts"" ""salting"" ""salted" "salted"
"intoxicate"" ""intoxicates"" ""intoxicating"" ""intoxicated" "intoxicated"
"tumefy"" ""tumefies"" ""tumefying"" ""tumefied" "tumefied"
"infuriate"" ""infuriates"" ""infuriating"" ""infuriated" "infuriated"
"mince"" ""minces"" ""mincing"" ""minced" "minced"
"merit"" ""merits"" ""meriting"" ""merited" "merited"
"underlet"" ""underlets"" ""underletting"" ""underlet" "underlet"
"dialogize"" ""dialogizes"" ""dialogizing"" ""dialogized" "dialogized"
"slot"" ""slots"" ""slotting"" ""slotted" "slotted"
"outspan"" ""outspans"" ""outspanning"" ""outspanned" "outspanned"
"slop"" ""slops"" ""slopping"" ""slopped" "slopped"
"transact"" ""transacts"" ""transacting"" ""transacted" "transacted"
"cloak"" ""cloaks"" ""cloaking"" ""cloaked" "cloaked"
"short"" ""shorts"" ""shorting"" ""shorted" "shorted"
"debunk"" ""debunks"" ""debunking"" ""debunked" "debunked"
"slog"" ""slogs"" ""slogging"" ""slogged" "slogged"
"outrage"" ""outrages"" ""outraging"" ""outraged" "outraged"
"robe"" ""robes"" ""robing"" ""robed" "robed"
"dispute"" ""disputes"" ""disputing"" ""disputed" "disputed"
"clank"" ""clanks"" ""clanking"" ""clanked" "clanked"
"digitize"" ""digitizes"" ""digitizing"" ""digitized" "digitized"
"clang"" ""clangs"" ""clanging"" ""clanged" "clanged"
"submerse"" ""submerses"" ""submersing"" ""submersed" "submersed"
"yammer"" ""yammers"" ""yammering"" ""yammered" "yammered"
"prime"" ""primes"" ""priming"" ""primed" "primed"
"disrate"" ""disrates"" ""disrating"" ""disrated" "disrated"
"pimp"" ""pimps"" ""pimping"" ""pimped" "pimped"
"assimilate"" ""assimilates"" ""assimilating"" ""assimilated" "assimilated"
"brominate"" ""brominates"" ""brominating"" ""brominated" "brominated"
"borrow"" ""borrows"" ""borrowing"" ""borrowed" "borrowed"
"batfowl"" ""batfowls"" ""batfowling"" ""batfowled" "batfowled"
"spancel"" ""spancels"" ""spancelling"" ""spancelled" "spancelled"
"primp"" ""primps"" ""primping"" ""primped" "primped"
"fortify"" ""fortifies"" ""fortifying"" ""fortified" "fortified"
"disparage"" ""disparages"" ""disparaging"" ""disparaged" "disparaged"
"vision"" ""visions"" ""visioning"" ""visioned" "visioned"
"keyboard"" ""keyboards"" ""keyboarding"" ""keyboarded" "keyboarded"
"espy"" ""espies"" ""espying"" ""espied" "espied"
"expiate"" ""expiates"" ""expiating"" ""expiated" "expiated"
"plummet"" ""plummets"" ""plummeting"" ""plummeted" "plummeted"
"interpellate"" ""interpellates"" ""interpellating"" ""interpellated" "interpellated"
"diddle"" ""diddles"" ""diddling"" ""diddled" "diddled"
"bootleg"" ""bootlegs"" ""bootlegging"" ""bootlegged" "bootlegged"
"denizen"" ""denizens"" ""denizening"" ""denizened" "denizened"
"heterodyne"" ""heterodynes"" ""heterodyning"" ""heterodyned" "heterodyned"
"mope"" ""mopes"" ""moping"" ""moped" "moped"
"presage"" ""presages"" ""presaging"" ""presaged" "presaged"
"forsake"" ""forsakes"" ""forsaking"" ""forsook" "forsaken"
"gutturalize"" ""gutturalizes"" ""gutturalizing"" ""gutturalized" "gutturalized"
"distrain"" ""distrains"" ""distraining"" ""distrained" "distrained"
"screen"" ""screens"" ""screening"" ""screened" "screened"
"dome"" ""domes"" ""doming"" ""domed" "domed"
"concentrate"" ""concentrates"" ""concentrating"" ""concentrated" "concentrated"
"spare"" ""spares"" ""sparing"" ""spared" "spared"
"spark"" ""sparks"" ""sparking"" ""sparked" "sparked"
"undermine"" ""undermines"" ""undermining"" ""undermined" "undermined"
"quack"" ""quacks"" ""quacking"" ""quacked" "quacked"
"oust"" ""ousts"" ""ousting"" ""ousted" "ousted"
"fit"" ""fits"" ""fitting"" ""fitted" "fitted"
"belie"" ""belies"" ""belying"" ""belied" "belied"
"checkrow"" ""checkrows"" ""checkrowing"" ""checkrowed" "checkrowed"
"calumniate"" ""calumniates"" ""calumniating"" ""calumniated" "calumniated"
"allowance"" ""allowances"" ""allowancing"" ""allowanced" "allowanced"
"riddle"" ""riddles"" ""riddling"" ""riddled" "riddled"
"twit"" ""twits"" ""twitting"" ""twitted" "twitted"
"eternize"" ""eternizes"" ""eternizing"" ""eternized" "eternized"
"twin"" ""twins"" ""twinning"" ""twinned" "twinned"
"article"" ""articles"" ""articling"" ""articled" "articled"
"ante"" ""antes"" ""anteing"" ""anteed" "anteed"
"false-card"" ""false-cards"" ""false-carding"" ""false-carded" "false-carded"
"twig"" ""twigs"" ""twigging"" ""twigged" "twigged"
"boat"" ""boats"" ""boating"" ""boated" "boated"
"airmail"" ""airmails"" ""airmailing"" ""airmailed" "airmailed"
"stretch"" ""stretches"" ""stretching"" ""stretched" "stretched"
"vacation"" ""vacations"" ""vacationing"" ""vacationed" "vacationed"
"concede"" ""concedes"" ""conceding"" ""conceded" "conceded"
"cupel"" ""cupels"" ""cupeling"" ""cupeled" "cupeled"
"luff"" ""luffs"" ""luffing"" ""luffed" "luffed"
"enable"" ""enables"" ""enabling"" ""enabled" "enabled"
"disaccredit"" ""disaccredits"" ""disaccrediting"" ""disaccredited" "disaccredited"
"observe"" ""observes"" ""observing"" ""observed" "observed"
"transmogrify"" ""transmogrifies"" ""transmogrifying"" ""transmogrified" "transmogrified"
"stalemate"" ""stalemates"" ""stalemating"" ""stalemated" "stalemated"
"diffuse"" ""diffuses"" ""diffusing"" ""diffused" "diffused"
"infold"" ""infolds"" ""infolding"" ""infolded" "infolded"
"maladminister"" ""maladministers"" ""maladministering"" ""maladministered" "maladministered"
"trepan"" ""trepans"" ""trepanning"" ""trepanned" "trepanned"
"single"" ""singles"" ""singling"" ""singled" "singled"
"hypertrophy"" ""hypertrophies"" ""hypertrophying"" ""hypertrophied" "hypertrophied"
"coextrude"" ""coextrudes"" ""coextruding"" ""coextruded" "coextruded"
"hawse"" ""hawses"" ""hawsing"" ""hawsed" "hawsed"
"chamois"" ""chamoises"" ""chamoising"" ""chamoised" "chamoised"
"girth"" ""girths"" ""girthing"" ""girthed" "girthed"
"discolour"" ""discolours"" ""discolouring"" ""discoloured" "discoloured"
"canoe"" ""canoes"" ""canoeing"" ""canoed" "canoed"
"purse"" ""purses"" ""pursing"" ""pursed" "pursed"
"blat"" ""blats"" ""blatting"" ""blatted" "blatted"
"blah"" ""blahs"" ""blahing"" ""blahed" "blahed"
"cagmag"" ""cagmags"" ""cagmaging"" ""cagmaged" "cagmaged"
"imbricate"" ""imbricates"" ""imbricating"" ""imbricated" "imbricated"
"blab"" ""blabs"" ""blabbing"" ""blabbed" "blabbed"
"fame"" ""fames"" ""faming"" ""famed" "famed"
"gemmate"" ""gemmates"" ""gemmating"" ""gemmated" "gemmated"
"reanimate"" ""reanimates"" ""reanimating"" ""reanimated" "reanimated"
"excogitate"" ""excogitates"" ""excogitating"" ""excogitated" "excogitated"
"furbelow"" ""furbelows"" ""furbelowing"" ""furbelowed" "furbelowed"
"geminate"" ""geminates"" ""geminating"" ""geminated" "geminated"
"unionize"" ""unionizes"" ""unionizing"" ""unionized" "unionized"
"nuzzle"" ""nuzzles"" ""nuzzling"" ""nuzzled" "nuzzled"
"defy"" ""defies"" ""defying"" ""defied" "defied"
"deflate"" ""deflates"" ""deflating"" ""deflated" "deflated"
"bulletproof"" ""bulletproofs"" ""bulletproofing"" ""bulletproofed" "bulletproofed"
"barber"" ""barbers"" ""barbering"" ""barbered" "barbered"
"disown"" ""disowns"" ""disowning"" ""disowned" "disowned"
"microfilm"" ""microfilms"" ""microfilming"" ""microfilmed" "microfilmed"
"recapture"" ""recaptures"" ""recapturing"" ""recaptured" "recaptured"
"tuft"" ""tufts"" ""tufting"" ""tufted" "tufted"
"clobber"" ""clobbers"" ""clobbering"" ""clobbered" "clobbered"
"dimension"" ""dimensions"" ""dimensioning"" ""dimensioned" "dimensioned"
"summer"" ""summers"" ""summering"" ""summered" "summered"
"manifold"" ""manifolds"" ""manifolding"" ""manifolded" "manifolded"
"poach"" ""poaches"" ""poaching"" ""poached" "poached"
"sceptre"" ""sceptres"" ""sceptring"" ""sceptred" "sceptred"
"disconcert"" ""disconcerts"" ""disconcerting"" ""disconcerted" "disconcerted"
"slime"" ""slimes"" ""sliming"" ""slimed" "slimed"
"rest"" ""rests"" ""resting"" ""rested" "rested"
"amalgamate"" ""amalgamates"" ""amalgamating"" ""amalgamated" "amalgamated"
"apostatize"" ""apostatizes"" ""apostatizing"" ""apostatized" "apostatized"
"disperse"" ""disperses"" ""dispersing"" ""dispersed" "dispersed"
"vamp"" ""vamps"" ""vamping"" ""vamped" "vamped"
"jitter"" ""jitters"" ""jittering"" ""jittered" "jittered"
"parlay"" ""parlays"" ""parlaying"" ""parlayed" "parlayed"
"underline"" ""underlines"" ""underlining"" ""underlined" "underlined"
"uncap"" ""uncaps"" ""uncapping"" ""uncapped" "uncapped"
"forebode"" ""forebodes"" ""foreboding"" ""foreboded" "foreboded"
"overthrow"" ""overthrows"" ""overthrowing"" ""overthrew" "overthrown"
"overcompensate"" ""overcompensates"" ""overcompensating"" ""overcompensated" "overcompensated"
"cerebrate"" ""cerebrates"" ""cerebrating"" ""cerebrated" "cerebrated"
"rejoin"" ""rejoins"" ""rejoining"" ""rejoined" "rejoined"
"dart"" ""darts"" ""darting"" ""darted" "darted"
"dark"" ""darks"" ""darking"" ""darked" "darked"
"drydock"" ""drydocks"" ""drydocking"" ""drydocked" "drydocked"
"snarl"" ""snarls"" ""snarling"" ""snarled" "snarled"
"traffic"" ""traffics"" ""trafficking"" ""trafficked" "trafficked"
"bandage"" ""bandages"" ""bandaging"" ""bandaged" "bandaged"
"vacuum"" ""vacuums"" ""vacuuming"" ""vacuumed" "vacuumed"
"snare"" ""snares"" ""snaring"" ""snared" "snared"
"dare"" ""dares"" ""daring"" ""dared" "dared" "daren't"" """" """ ""
"clam"" ""clams"" ""clamming"" ""clammed" "clammed"
"expunge"" ""expunges"" ""expunging"" ""expunged" "expunged"
"clad"" ""clads"" ""cladding"" ""clad" "clad"
"shutter"" ""shutters"" ""shuttering"" ""shuttered" "shuttered"
"gimme"" ""gimmes"" ""gimming"" ""gimmed" "gimmed"
"immolate"" ""immolates"" ""immolating"" ""immolated" "immolated"
"clay"" ""clays"" ""claying"" ""clayed" "clayed"
"claw"" ""claws"" ""clawing"" ""clawed" "clawed"
"inter"" ""inters"" ""interring"" ""interred" "interred"
"kennel"" ""kennels"" ""kennelling"" ""kennelled" "kennelled"
"clap"" ""claps"" ""clapping"" ""clapped" "clapped"
"obstruct"" ""obstructs"" ""obstructing"" ""obstructed" "obstructed"
"sulphuret"" ""sulphurets"" ""sulphuretting"" ""sulphuretted" "sulphuretted"
"grub"" ""grubs"" ""grubbing"" ""grubbed" "grubbed"
"gaggle"" ""gaggles"" ""gaggling"" ""gaggled" "gaggled"
"wattle"" ""wattles"" ""wattling"" ""wattled" "wattled"
"winch"" ""winches"" ""winching"" ""winched" "winched"
"asperse"" ""asperses"" ""aspersing"" ""aspersed" "aspersed"
"vivisect"" ""vivisects"" ""vivisecting"" ""vivisected" "vivisected"
"surtax"" ""surtaxes"" ""surtaxing"" ""surtaxed" "surtaxed"
"divine"" ""divines"" ""divining"" ""divined" "divined"
"about-ship"" ""about-ships"" ""about-shipping"" ""about-shipped" "about-shipped"
"authenticate"" ""authenticates"" ""authenticating"" ""authenticated" "authenticated"
"tote"" ""totes"" ""toting"" ""toted" "toted"
"stanchion"" ""stanchions"" ""stanchioning"" ""stanchioned" "stanchioned"
"tube"" ""tubes"" ""tubing"" ""tubed" "tubed"
"exit"" ""exits"" ""exiting"" ""exited" "exited"
"crenellate"" ""crenellates"" ""crenellating"" ""crenellated" "crenellated"
"situate"" ""situates"" ""situating"" ""situated" "situated"
"outfoot"" ""outfoots"" ""outfooting"" ""outfooted" "outfooted"
"squabble"" ""squabbles"" ""squabbling"" ""squabbled" "squabbled"
"power"" ""powers"" ""powering"" ""powered" "powered"
"intimate"" ""intimates"" ""intimating"" ""intimated" "intimated"
"ration"" ""rations"" ""rationing"" ""rationed" "rationed"
"poise"" ""poises"" ""poising"" ""poised" "poised"
"throwback"" ""throwbacks"" ""throwbacking"" ""throwbacked" "throwbacked"
"stone"" ""stones"" ""stoning"" ""stoned" "stoned"
"package"" ""packages"" ""packaging"" ""packaged" "packaged"
"mediate"" ""mediates"" ""mediating"" ""mediated" "mediated"
"fishtail"" ""fishtails"" ""fishtailing"" ""fishtailed" "fishtailed"
"municipalize"" ""municipalizes"" ""municipalizing"" ""municipalized" "municipalized"
"act"" ""acts"" ""acting"" ""acted" "acted"
"mean"" ""means"" ""meaning"" ""meant" "meant"
"individualize"" ""individualizes"" ""individualizing"" ""individualized" "individualized"
"rebuild"" ""rebuilds"" ""rebuilding"" ""rebuilt" "rebuilt"
"impregnate"" ""impregnates"" ""impregnating"" ""impregnated" "impregnated"
"yabber"" ""yabbers"" ""yabbering"" ""yabbered" "yabbered"
"potentiate"" ""potentiates"" ""potentiating"" ""potentiated" "potentiated"
"image"" ""images"" ""imaging"" ""imaged" "imaged"
"acuminate"" ""acuminates"" ""acuminating"" ""acuminated" "acuminated"
"inculcate"" ""inculcates"" ""inculcating"" ""inculcated" "inculcated"
"bodycheck"" ""bodychecks"" ""bodychecking"" ""bodychecked" "bodychecked"