-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathe_lemma.txt
14761 lines (14761 loc) · 411 KB
/
e_lemma.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
a -> an
A-bomb -> A-bombs
abacus -> abacuses
abandon -> abandons abandoning abandoned
abase -> abases abasing abased
abate -> abates abating abated
abbess -> abbesses
abbey -> abbeys
abbot -> abbots
abbreviate -> abbreviates abbreviating abbreviated
abbreviation -> abbreviations
abdicate -> abdicates abdicating abdicated
abdomen -> abdomens
abduct -> abducts abducting abducted
aberration -> aberrations
abet -> abets abetting abetted
abhor -> abhors abhorring abhorred
abide -> abode abided abides abiding
ability -> abilities
abjure -> abjures abjuring abjured
able -> abler ablest
abnormality -> abnormalities
abode -> abodes
abolish -> abolishes abolishing abolished
abolitionist -> abolitionists
abominate -> abominates abominating abominated
abomination -> abominations
Aborigine -> Aborigines
abort -> aborts aborting aborted
abortion -> abortions
abortionist -> abortionists
abound -> abounds abounding abounded
about-turn -> about-turns
abrasion -> abrasions
abrasive -> abrasives
abridge -> abridges abridging abridged
abrogate -> abrogates abrogating abrogated
abscess -> abscesses
abscond -> absconds absconding absconded
abseil -> abseils abseiling abseiled
absence -> absences
absent -> absents absenting absented
absentee -> absentees
absolute -> absolutes
absolve -> absolves absolving absolved
absorb -> absorbs absorbing absorbed
abstain -> abstains abstaining abstained
abstention -> abstentions
abstract -> abstracts abstracting abstracted
abstraction -> abstractions
abuse -> abuses abusing abused
abut -> abuts abutting abutted
abyss -> abysses
acacia -> acacias
academic -> academics
academy -> academies
accede -> accedes acceding acceded
accelerate -> accelerates accelerating accelerated
acceleration -> accelerations
accelerator -> accelerators
accent -> accents accenting accented
accentuate -> accentuates accentuating accentuated
accept -> accepts accepting accepted
acceptance -> acceptances
access -> accesses accessing accessed
accessory -> accessories
accident -> accidents
acclaim -> acclaims acclaiming acclaimed
acclimatize -> acclimatizes acclimatizing acclimatized
accolade -> accolades
accommodate -> accommodates accommodating accommodated
accommodation -> accommodations
accompaniment -> accompaniments
accompanist -> accompanists
accompany -> accompanies accompanying accompanied
accomplice -> accomplices
accomplish -> accomplishes accomplishing accomplished
accomplishment -> accomplishments
accord -> accords according accorded
accordion -> accordions
accost -> accosts accosting accosted
account -> accounts accounting accounted
accountant -> accountants
accredit -> accredits accrediting accredited
accretion -> accretions
accrue -> accrues accruing accrued
accumulate -> accumulates accumulating accumulated
accumulation -> accumulations
accusation -> accusations
accuse -> accuses accusing accused
accuser -> accusers
accustom -> accustoms accustoming accustomed
ace -> aces
ache -> aches aching ached
achieve -> achieves achieving achieved
achievement -> achievements
acid -> acids
acknowledge -> acknowledges acknowledging acknowledged
acknowledgement -> acknowledgements
acolyte -> acolytes
acorn -> acorns
acoustic -> acoustics
acquaint -> acquaints acquainting acquainted
acquaintance -> acquaintances
acquiesce -> acquiesces acquiescing acquiesced
acquire -> acquires acquiring acquired
acquisition -> acquisitions
acquit -> acquits acquitting acquitted
acquittal -> acquittals
acre -> acres
acrobat -> acrobats
acrobatic -> acrobatics
acronym -> acronyms
acrostic -> acrostics
acrylic -> acrylics
act -> acts acting acted
action -> actions
activate -> activates activating activated
activist -> activists
activity -> activities
actor -> actors
actress -> actresses
actuary -> actuaries
actuate -> actuates actuating actuated
ad -> ads
ad-lib -> ad-libs ad-libbing ad-libbed
adapt -> adapts adapting adapted
adaptation -> adaptations
adaptor -> adaptors
add -> adds adding added
addendum -> addenda
adder -> adders
addict -> addicts
addiction -> addictions
addition -> additions
additive -> additives
addle -> addles addling addled
address -> addresses addressing addressed
addressee -> addressees
adduce -> adduces adducing adduced
adept -> adepts
adhere -> adheres adhering adhered
adherent -> adherents
adhesive -> adhesives
adieu -> adieux adieus
adjective -> adjectives
adjoin -> adjoins adjoining adjoined
adjourn -> adjourns adjourning adjourned
adjournment -> adjournments
adjudge -> adjudges adjudging adjudged
adjudicate -> adjudicates adjudicating adjudicated
adjudicator -> adjudicators
adjunct -> adjuncts
adjure -> adjures adjuring adjured
adjust -> adjusts adjusting adjusted
adjustment -> adjustments
adjutant -> adjutants
administer -> administers administering administered
administration -> administrations
administrator -> administrators
admiral -> admirals
admire -> admires admiring admired
admirer -> admirers
admission -> admissions
admit -> admits admitting admitted
admonish -> admonishes admonishing admonished
admonition -> admonitions
adolescent -> adolescents
adopt -> adopts adopting adopted
adore -> adores adoring adored
adorn -> adorns adorning adorned
adornment -> adornments
adult -> adults
adulterate -> adulterates adulterating adulterated
adulterer -> adulterers
adulteress -> adulteresses
adultery -> adulteries
advance -> advances advancing advanced
advantage -> advantages
adventure -> adventures
adventurer -> adventurers
adverb -> adverbs
adversary -> adversaries
adversity -> adversities
advert -> adverts
advertise -> advertises advertising advertised
advertisement -> advertisements
advertiser -> advertisers
advise -> advises advising advised
adviser -> advisers
advocate -> advocates advocating advocated
adze -> adzes
aeon -> aeons
aerate -> aerates aerating aerated
aerial -> aerials
aerodrome -> aerodromes
aerodynamic -> aerodynamics
aeroplane -> aeroplanes
aerosol -> aerosols
aesthete -> aesthetes
aesthetic -> aesthetics
affair -> affairs
affect -> affects affecting affected
affectation -> affectations
affection -> affections
affidavit -> affidavits
affiliate -> affiliates affiliating affiliated
affiliation -> affiliations
affinity -> affinities
affirm -> affirms affirming affirmed
affirmation -> affirmations
affirmative -> affirmatives
affix -> affixes affixing affixed
afflict -> afflicts afflicting afflicted
affliction -> afflictions
afford -> affords affording afforded
affray -> affrays
affront -> affronts affronting affronted
Afghan -> Afghans
African -> Africans
Afrikaner -> Afrikaners
Afro -> Afros
after -> afters
after-effect -> after-effects
afternoon -> afternoons
aftertaste -> aftertastes
afterthought -> afterthoughts
agate -> agates
age -> ages ageing aged
agency -> agencies
agenda -> agendas
agent -> agents
agglomeration -> agglomerations
aggravate -> aggravates aggravating aggravated
aggregate -> aggregates aggregating aggregated.
aggressor -> aggressors
agitate -> agitates agitating agitated
agitator -> agitators
AGM -> AGMs
agnostic -> agnostics
agonize -> agonizes agonizing agonized
agony -> agonies
agoraphobic -> agoraphobics
agree -> agrees agreeing agreed
agreement -> agreements
agriculturalist -> agriculturalists
aid -> aids aiding aided
aide -> aides
aide-de-camp -> aides-de-camp
ail -> ails ailing ailed
aileron -> ailerons
ailment -> ailments
aim -> aims aiming aimed
air -> airs airing aired
air-conditioner -> air-conditioners
airbed -> airbeds
airbrick -> airbricks
airbus -> airbuses
aircrew -> aircrews
airfield -> airfields
airgun -> airguns
airlane -> airlanes
airletter -> airletters
airlift -> airlifts airlifting airlifted
airline -> airlines
airliner -> airliners
airlock -> airlocks
airman -> airmen
airplane -> airplanes
airport -> airports
airship -> airships
airspeed -> airspeeds
airstrike -> airstrikes
airstrip -> airstrips
airway -> airways
airwoman -> airwomen
airy -> airier airiest
aisle -> aisles
aitch -> aitches
alarm -> alarms alarming alarmed
alarmist -> alarmists
Albanian -> Albanians
albatross -> albatrosses
albino -> albinos
album -> albums
albumen -> albumens
alchemist -> alchemists
alcoholic -> alcoholics
alcove -> alcoves
alder -> alders
alderman -> aldermen
ale -> ales
alert -> alerts alerting alerted
Algerian -> Algerians
algorithm -> algorithms
alias -> aliases
alibi -> alibis
alien -> aliens
alienate -> alienates alienating alienated
alight -> alights alighting alighted alit
align -> aligns aligning aligned
alignment -> alignments
alkali -> alkalis
all-rounder -> all-rounders.
allay -> allays allaying allayed
allegation -> allegations
allege -> alleges alleging alleged
allegiance -> allegiances
allegory -> allegories
allergy -> allergies
alleviate -> alleviates alleviating alleviated
alley -> alleys
alleyway -> alleyways
alliance -> alliances
alligator -> alligators
allocate -> allocates allocating allocated
allocation -> allocations
allot -> allots allotting allotted
allotment -> allotments
allow -> allows allowing allowed
allowance -> allowances
alloy -> alloys
allude -> alludes alluding alluded
allusion -> allusions
ally -> !allies allying allied
ally -> allies allying allied
ally -> allies allying allied
almanac -> almanacs
almond -> almonds
almshouse -> almshouses
alpha -> alphas
alphabet -> alphabets
alpine -> alpines
Alsatian -> Alsatians
also-ran -> also-rans
altar -> altars
alter -> alters altering altered
alteration -> alterations
altercation -> altercations
alternate -> alternates alternating alternated
alternative -> alternatives
alternator -> alternators
altimeter -> altimeters
altitude -> altitudes
alto -> altos
alumna -> alumnae
alumnus -> alumni
amalgam -> amalgams
amalgamate -> amalgamates amalgamating amalgamated
amanuensis -> amanuenses
amass -> amasses amassing amassed
amateur -> amateurs
amaze -> amazes amazing amazed
ambassador -> ambassadors
ambiguity -> ambiguities
ambition -> ambitions
amble -> ambles ambling ambled
ambulance -> ambulances
ambulanceman -> ambulancemen
ambush -> ambushes ambushing ambushed
ameliorate -> ameliorates ameliorating ameliorated
amend -> amends amending amended
amendment -> amendments
amenity -> amenities
American -> Americans
Americanism -> Americanisms
Americanize -> Americanizes Americanizing Americanized
amethyst -> amethysts
amnesty -> amnesties
amoeba -> amoebas amoebae
amount -> amounts amounting amounted
amour -> amours
amp -> amps
ampere -> amperes
amphetamine -> amphetamines
amphibian -> amphibians
amphitheatre -> amphitheatres
amplifier -> amplifiers
amplify -> amplifies amplifying amplified
ampoule -> ampoules
amputate -> amputates amputating amputated
amulet -> amulets
amuse -> amuses amusing amused
amusement -> amusements
anachronism -> anachronisms
anaesthetic -> anaesthetics
anaesthetist -> anaesthetists
anaesthetize -> anaesthetizes anaesthetizing anaesthetized
anagram -> anagrams
analgesic -> analgesics
analogue -> analogues
analogy -> analogies
analyse -> analyses analysing analysed
analysis -> analyses
analyst -> analysts
analytic -> analytical
anarchist -> anarchists
anatomist -> anatomists
anatomy -> anatomies
ancestor -> ancestors
ancestry -> ancestries
anchor -> anchors anchoring anchored
anchorage -> anchorages
anchovy -> anchovies
ancient -> ancients
andante -> andantes
anecdote -> anecdotes
anemone -> anemones
anesthesiologist -> anesthesiologists
anesthetic -> anesthetics
anesthetist -> anesthetists
anesthetize -> anesthetizes anesthetizing anesthetized
angel -> angels
anger -> angers angering angered
angle -> angles angling angled
angler -> anglers
anglicize -> anglicizes anglicizing anglicized
Anglo-Saxon -> Anglo-Saxons
angry -> angrier angriest
animal -> animals
animate -> animates animating animated
animator -> animators
animosity -> animosities
ankle -> ankles
annex -> annexes annexing annexed
annihilate -> annihilates annihilating annihilated
anniversary -> anniversaries
annotate -> annotates annotating annotated
annotation -> annotations
announce -> announces announcing announced
announcement -> announcements
announcer -> announcers
annoy -> annoys annoying annoyed
annoyance -> annoyances
annual -> annuals
annuity -> annuities
annul -> annuls annulling annulled
anode -> anodes
anodyne -> anodynes
anoint -> anoints anointing anointed
anomaly -> anomalies
anorak -> anoraks
answer -> answers answering answered
ant -> ants
ant-eater -> ant-eaters
antagonist -> antagonists
antagonize -> antagonizes antagonizing antagonized
antecedent -> antecedents
antechamber -> antechambers
antedate -> antedates antedating antedated
antelope -> antelopes
antenatal -> antenatals
antenna -> antennae antennas
anteroom -> anterooms
anthem -> anthems
anthology -> anthologies
anthropoid -> anthropoids
anti-Semite -> anti-Semites
antibiotic -> antibiotics
antibody -> antibodies
anticipate -> anticipates anticipating anticipated
anticlimax -> anticlimaxes
anticyclone -> anticyclones
antidote -> antidotes
antigen -> antigens
antihero -> antiheroes
antihistamine -> antihistamines
antimacassar -> antimacassars
antipathy -> antipathies
antiquarian -> antiquarians
antiquary -> antiquaries
antique -> antiques
antiquity -> antiquities
antiseptic -> antiseptics
antithesis -> antitheses
antitoxin -> antitoxins
antler -> antlers
antonym -> antonyms
anus -> anuses
anvil -> anvils
anxiety -> anxieties
aorta -> aortas
apartment -> apartments
ape -> apes aping aped
aperitif -> aperitifs
aperture -> apertures
apex -> apexes
aphid -> aphids
aphorism -> aphorisms
aphrodisiac -> aphrodisiacs
apologia -> apologias
apologist -> apologists
apologize -> apologizes apologizing apologized
apology -> apologies
apostate -> apostates
apostle -> apostles
apostrophe -> apostrophes
apothecary -> apothecaries
apotheosis -> apotheoses
appal -> appals appalling appalled
apparatus -> apparatuses
apparition -> apparitions
appeal -> appeals appealing appealed
appear -> appears appearing appeared
appearance -> appearances
appease -> appeases appeasing appeased
appellation -> appellations
append -> appends appending appended
appendage -> appendages
appendix -> appendices
appendix -> appendices appendixes
appertain -> appertains appertaining appertained
appetite -> appetites
appetizer -> appetizers
applaud -> applauds applauding applauded
apple -> apples
appliance -> appliances
applicant -> applicants
application -> applications
apply -> applies applying applied
appoint -> appoints appointing appointed
appointee -> appointees
appointment -> appointments
apportion -> apportions apportioning apportioned
appraisal -> appraisals
appraise -> appraises appraising appraised
appreciate -> appreciates appreciating appreciated
appreciation -> appreciations
apprehend -> apprehends apprehending apprehended
apprehension -> apprehensions
apprentice -> apprentices apprenticing apprenticed
apprenticeship -> apprenticeships
apprise -> apprises apprising apprised
approach -> approaches approaching approached
appropriate -> appropriates appropriating appropriated
appropriation -> appropriations
approve -> approves approving approved
approximate -> approximates approximating approximated
approximation -> approximations
apricot -> apricots
apron -> aprons
aptitude -> aptitudes
aqualung -> aqualungs
aquamarine -> aquamarines
aquarium -> aquaria aquariums
aqueduct -> aqueducts
Arab -> Arabs
arabesque -> arabesques
arbiter -> arbiters
arbitrate -> arbitrates arbitrating arbitrated
arbitrator -> arbitrators
arbour -> arbours
arc -> arcs arcing arced
arcade -> arcades
arch -> arches arching arched
archangel -> archangels
archbishop -> archbishops
archdeacon -> archdeacons
archdiocese -> archdioceses
archer -> archers
archetype -> archetypes
archipelago -> archipelagos
architect -> architects
archive -> archives
archivist -> archivists
archway -> archways
area -> areas
arena -> arenas
Argentinian -> Argentinians
argot -> argots
argue -> argues arguing argued
argument -> arguments
aria -> arias
arise -> arises arising arose arisen
aristocracy -> aristocracies
aristocrat -> aristocrats
arm -> arms arming armed
armada -> armadas
armadillo -> armadillos
armament -> armaments
armband -> armbands
armchair -> armchairs
armful -> armfuls
armhole -> armholes
armistice -> armistices
armourer -> armourers
armoury -> armouries
armpit -> armpits
army -> armies
aroma -> aromas
arouse -> arouses arousing aroused
arraign -> arraigns arraigning arraigned
arrange -> arranges arranging arranged
arrangement -> arrangements
array -> arrays arraying arrayed
arrest -> arrests arresting arrested
arrival -> arrivals
arrive -> arrives arriving arrived
arrogate -> arrogates arrogating arrogated
arrow -> arrows
arrowhead -> arrowheads
arse -> arses arsing arsed
arsehole -> arseholes
arsenal -> arsenals
art -> arts
artefact -> artefacts
artery -> arteries
arthritic -> arthritics
artichoke -> artichokes
article -> articles
articulate -> articulates articulating articulated
articulation -> articulations
artifice -> artifices
artisan -> artisans
artist -> artists
artiste -> artistes
ascend -> ascends ascending ascended
ascent -> ascents
ascertain -> ascertains ascertaining ascertained
ascetic -> ascetics
ascribe -> ascribes ascribing ascribed
ash -> ashes
ashcan -> ashcans
ashtray -> ashtrays
Asian -> Asians
aside -> asides
ask -> asks asking asked
aspect -> aspects
aspen -> aspens
asphalt -> asphalts asphalting asphalted
asphyxiate -> asphyxiates asphyxiating asphyxiated
aspirant -> aspirants
aspirate -> aspirates aspirating aspirated
aspiration -> aspirations
aspire -> aspires aspiring aspired
aspirin -> aspirins
ass -> asses
assail -> assails assailing assailed
assailant -> assailants
assassin -> assassins
assassinate -> assassinates assassinating assassinated
assault -> assaults assaulting assaulted
assay -> assays assaying assayed
assemblage -> assemblages
assemble -> assembles assembling assembled
assembly -> assemblies
assent -> assents assenting assented
assert -> asserts asserting asserted
assess -> assesses assessing assessed
assessment -> assessments
assessor -> assessors
asset -> assets
assign -> assigns assigning assigned
assignation -> assignations
assignment -> assignments
assimilate -> assimilates assimilating assimilated
assist -> assists assisting assisted
assistant -> assistants
associate -> associates associating associated
association -> associations
assortment -> assortments
assuage -> assuages assuaging assuaged
assume -> assumes assuming assumed
assumption -> assumptions
assurance -> assurances
assure -> assures assuring assured
aster -> asters
asterisk -> asterisks asterisking asterisked
asteroid -> asteroids
asthmatic -> asthmatics
astonish -> astonishes astonishing astonished
astound -> astounds astounding astounded
astringent -> astringents
astrologer -> astrologers
astronaut -> astronauts
astronomer -> astronomers
asylum -> asylums
atheist -> atheists
athlete -> athletes
athletic -> athletics
atlas -> atlases
atmosphere -> atmospheres
atoll -> atolls
atom -> atoms
atomize -> atomizes atomizing atomized
atomizer -> atomizers
atone -> atones atoning atoned
atrocity -> atrocities
atrophy -> atrophies atrophying atrophied
attach -> attaches attaching attached
attache -> attaches
attachment -> attachments
attack -> attacks attacking attacked
attain -> attains attaining attained
attainment -> attainments
attempt -> attempts attempting attempted
attend -> attends attending attended
attendance -> attendances
attendant -> attendants
attention -> attentions
attenuate -> attenuates attenuating attenuated
attest -> attests attesting attested
attestation -> attestations
attic -> attics
attitude -> attitudes
attorney -> attorneys
attract -> attracts attracting attracted
attraction -> attractions
attribute -> attributes attributing attributed
aubergine -> aubergines
auction -> auctions auctioning auctioned
auctioneer -> auctioneers
audience -> audiences
audio-typist -> audio-typists
audit -> audits auditing audited
audition -> auditions auditioning auditioned
auditor -> auditors
auditorium -> auditoriums auditoria
augment -> augments augmenting augmented
augur -> augurs auguring augured
augury -> auguries
auk -> auks
aunt -> aunts
auntie -> aunties
aura -> auras
austerity -> austerities
Australian -> Australians
Austrian -> Austrians
autarchy -> autarchies
authenticate -> authenticates authenticating authenticated
author -> authors authoring authored
authoress -> authoresses
authoritarian -> authoritarians
authority -> authorities
authorization -> authorizations
authorize -> authorizes authorizing authorized
auto -> autos
autobahn -> autobahns
autobiography -> autobiographies
autocracy -> autocracies
autocrat -> autocrats
autocue -> autocues
autograph -> autographs autographing autographed
automat -> automats
automate -> automates automating automated
automatic -> automatics
automaton -> automatons automata
automobile -> automobiles
autopsy -> autopsies
autumn -> autumns
auxiliary -> auxiliaries
avail -> avails availing availed
avalanche -> avalanches
avenge -> avenges avenging avenged
avenue -> avenues
aver -> avers averring averred
average -> averages averaging averaged
aversion -> aversions
avert -> averts averting averted
aviary -> aviaries
aviator -> aviators
avocado -> avocados
avocet -> avocets
avoid -> avoids avoiding avoided
avow -> avows avowing avowed
avowal -> avowals
await -> awaits awaiting awaited
awake -> awakes awaking awoke awoken
awaken -> awakens awakening awakened
awakening -> awakenings
award -> awards awarding awarded
awe -> awes awed
awning -> awnings
axe -> axes axing axed
axiom -> axioms
axis -> axes
axle -> axles
aye -> ayes
BA -> BAs
babble -> babbles babbling babbled
babe -> babes
baboon -> baboons
baby -> babies
baby-minder -> baby-minders
baby-sit -> baby-sits baby-sitting baby-sat
baby-sitter -> baby-sitters
bachelor -> bachelors
back -> backs backing backed
back-comb -> back-combs back-combing back-combed
back-pedal -> back-pedals back-pedalling back-pedalled
backbench -> backbenches
backbencher -> backbenchers
backbite -> backbites backbit backbitten backbiting
backbone -> backbones
backcloth -> backcloths
backdate -> backdates backdating backdated
backdrop -> backdrops
backer -> backers
backfire -> backfires backfiring backfired
background -> backgrounds
backhand -> backhands
backhander -> backhanders
backing -> backings
backlog -> backlogs
backpack -> backpacks
backside -> backsides
backslide -> backslides backslid backsliding backslidden
backtrack -> backtracks backtracking backtracked
backwater -> backwaters
bad -> worse worst
baddy -> baddies
badge -> badges
badger -> badgers badgering badgered
baffle -> baffles baffling baffled
bag -> bags bagging bagged
bagatelle -> bagatelles
baggy -> baggier baggiest
Bahamian -> Bahamians
Bahraini -> Bahrainis
bail -> bails bailing bailed
bailiff -> bailiffs
bairn -> bairns
bait -> baits baiting baited
bake -> bakes baking baked
baker -> bakers
bakery -> bakeries
balaclava -> balaclavas
balalaika -> balalaikas
balance -> balances balancing balanced
balcony -> balconies
bald -> balder baldest
bale -> bales baling baled
balk -> balks balking balked
ball -> balls balling balled
ballad -> ballads
ballcock -> ballcocks
ballerina -> ballerinas
ballet -> ballets
ballistic -> ballistics
balloon -> balloons ballooning ballooned
ballot -> ballots balloting balloted
ballpoint -> ballpoints
ballroom -> ballrooms
balm -> balms
balmy -> balmier balmiest
balustrade -> balustrades
bamboo -> bamboos
bamboozle -> bamboozles bamboozling bamboozled
ban -> bans banning banned
banana -> bananas
band -> bands banding banded
Band-Aid -> Band-Aids
bandage -> bandages bandaging bandaged
bandanna -> bandannas
bandit -> bandits
bandsman -> bandsmen
bandstand -> bandstands
bandy -> bandies bandying bandied
bang -> bangs banging banged
banger -> bangers
Bangladeshi -> Bangladeshis
bangle -> bangles
banish -> banishes banishing banished
banister -> banisters
banjo -> banjos banjoes
bank -> banks banking banked
banker -> bankers
banknote -> banknotes
bankroll -> bankrolls bankrolling bankrolled
bankrupt -> bankrupts bankrupting bankrupted
bankruptcy -> bankruptcies
banner -> banners
bannister -> bannisters
banquet -> banquets
banshee -> banshees
bantam -> bantams
banter -> banters bantering bantered
banyan -> banyans
baptism -> baptisms
Baptist -> Baptists
baptize -> baptizes baptizing baptized
bar -> bars barring barred
bar-room -> bar-room
barb -> barbs
barbarian -> barbarians
barbarity -> barbarities
barbecue -> barbecues barbecuing barbecued
barber -> barbers barbering barbered
barbiturate -> barbiturates
bard -> bards
bare -> barer barest bares baring bared
bargain -> bargains bargaining bargained
barge -> barges barging barged
bargee -> bargees
baritone -> baritones
bark -> barks barking barked
barmaid -> barmaids
barman -> barmen
barmy -> barmier barmiest
barn -> barns
barnacle -> barnacles
barnyard -> barnyards
barometer -> barometers
baron -> barons
baroness -> baronesses
baronet -> baronets
baronetcy -> baronetcies
barony -> baronies
barque -> barques
barrack -> barracks barracking barracked
barracuda -> barracudas
barrage -> barrages
barrel -> barrels
barricade -> barricades barricading barricaded
barrier -> barriers
barrister -> barristers
barrow -> barrows
bartender -> bartenders
barter -> barters bartering bartered
bas-relief -> bas-reliefs
base -> bases basing based baser basest
baseline -> baselines
basement -> basements
bash -> bashes bashing bashed
basic -> basics
basilica -> basilicas
basin -> basins
basis -> bases
bask -> basks basking basked
basket -> baskets
bass -> basses
bassoon -> bassoons
bastard -> bastards
baste -> bastes basting basted
bastion -> bastions
bat -> bats batting batted
batch -> batches
bath -> baths bathing bathed
bath-towel -> bath-towels
bathe -> bathes bathing bathed
bather -> bathers
bathmat -> bathmats
bathrobe -> bathrobes
bathroom -> bathrooms
bathtub -> bathtubs
batik -> batiks
batman -> batmen
baton -> batons
batsman -> batsmen
battalion -> battalions
batten -> battens battening battened
batter -> batters battering battered
battering -> batterings
battery -> batteries
battle -> battles battling battled
battle-axe -> battle-axes
battlefield -> battlefields
battleground -> battlegrounds
battleship -> battleships
batty -> battier battiest
bauble -> baubles
bawdy -> bawdier bawdiest
bawl -> bawls bawling bawled
bay -> bays baying bayed
bayonet -> bayonets bayoneting bayoneted
bazaar -> bazaars
bazooka -> bazookas
be -> am are is was were being been 'm m
beach -> beaches beaching beached
beachcomber -> beachcombers
beachhead -> beachheads
beacon -> beacons
bead -> beads
beady -> beadier beadiest
beagle -> beagles
beak -> beaks
beaker -> beakers
beam -> beams beaming beamed
bean -> beans
beanpole -> beanpoles
beansprout -> beansprouts
bear -> bears bearing bore borne
beard -> beards
bearer -> bearers
bearing -> bearings
bearskin -> bearskins
beast -> beasts
beat -> beats beating beaten
beater -> beaters
beatify -> beatifies beatifying beatified
beating -> beatings
beatnik -> beatniks
beau -> beaux beaus
beaut -> beauts
beautician -> beauticians
beautify -> beautifies beautifying beautified
beauty -> beauties
beaver -> beavers
beck -> becks
beckon -> beckons beckoning beckoned